/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/compiler/basic-block-call-graph-profiler.h
38 строк
1 KB
Michaël Zasso
deps: update V8 to 14.6.202.33
24 апр 2026, 19:01
Не верифицирован
24 апр 2026, 19:01
f1e0b83
Код
Авторство
О чём код?
// Copyright 2014 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_COMPILER_BASIC_BLOCK_CALL_GRAPH_PROFILER_H_ #define V8_COMPILER_BASIC_BLOCK_CALL_GRAPH_PROFILER_H_ #include "src/diagnostics/basic-block-profiler.h" #include "src/utils/allocation.h" namespace v8 { namespace internal { class OptimizedCompilationInfo; namespace compiler { class TFGraph; class Schedule; namespace turboshaft { class Graph; } // namespace turboshaft // A profiler which works when reorder_builtins flag was set as true, it will // store the call graph between builtins, the call graph will be used to reorder // builtins. class BasicBlockCallGraphProfiler : public AllStatic { public: static void StoreCallGraph(OptimizedCompilationInfo* info, const turboshaft::Graph& graph); }; } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_BASIC_BLOCK_CALL_GRAPH_PROFILER_H_