/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/wasm/compilation-hints-generation.h
25 строк
808 B
Michaël Zasso
deps: update V8 to 14.6.202.33
24 апр 2026, 19:01
Не верифицирован
24 апр 2026, 19:01
f1e0b83
Код
Авторство
О чём код?
// Copyright 2025 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_WASM_COMPILATION_HINTS_GENERATION_H_ #define V8_WASM_COMPILATION_HINTS_GENERATION_H_ #if !V8_ENABLE_WEBASSEMBLY #error This header should only be included if WebAssembly is enabled. #endif // !V8_ENABLE_WEBASSEMBLY #include "src/base/macros.h" namespace v8::internal::wasm { class NativeModule; class ZoneBuffer; V8_EXPORT_PRIVATE void EmitCompilationHintsToBuffer( ZoneBuffer& buffer, NativeModule* native_module); void WriteCompilationHintsToFile(ZoneBuffer& buffer, NativeModule* native_module); } // namespace v8::internal::wasm #endif // V8_WASM_COMPILATION_HINTS_GENERATION_H_