![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include "src/compiler/bytecode-graph-builder.h"#include <optional>#include "src/ast/ast.h"#include "src/codegen/source-position-table.h"#include "src/codegen/tick-counter.h"#include "src/common/assert-scope.h"#include "src/compiler/bytecode-analysis.h"#include "src/compiler/common-operator.h"#include "src/compiler/compilation-dependencies.h"#include "src/compiler/compiler-source-position-table.h"#include "src/compiler/js-heap-broker.h"#include "src/compiler/js-type-hint-lowering.h"#include "src/compiler/linkage.h"#include "src/compiler/node-matchers.h"#include "src/compiler/node-observer.h"#include "src/compiler/node-origin-table.h"#include "src/compiler/operator-properties.h"#include "src/compiler/simplified-operator.h"#include "src/compiler/state-values-utils.h"#include "src/interpreter/bytecode-array-iterator.h"#include "src/interpreter/bytecode-flags-and-tokens.h"#include "src/interpreter/bytecode-register.h"#include "src/interpreter/bytecodes.h"#include "src/objects/elements-kind.h"#include "src/objects/js-generator.h"#include "src/objects/literal-objects-inl.h"#include "src/objects/scope-info.h"#include "src/objects/template-objects-inl.h"Go to the source code of this file.
Namespaces | |
| namespace | v8 |
| namespace | v8::internal |
| namespace | v8::internal::compiler |
Macros | |
| #define | DECLARE_VISIT_BYTECODE(name, ...) |
| #define | BYTECODE_CASE(name, ...) |
| #define | SHORT_STAR_VISITOR(Name, ...) |
| #define | DEBUG_BREAK(Name, ...) |
Functions | |
| void | v8::internal::compiler::BuildGraphFromBytecode (JSHeapBroker *broker, Zone *local_zone, SharedFunctionInfoRef shared_info, BytecodeArrayRef bytecode, FeedbackCellRef feedback_cell, BytecodeOffset osr_offset, JSGraph *jsgraph, CallFrequency const &invocation_frequency, SourcePositionTable *source_positions, NodeOriginTable *node_origins, int inlining_id, CodeKind code_kind, BytecodeGraphBuilderFlags flags, TickCounter *tick_counter, ObserveNodeInfo const &observe_node_info) |
| #define BYTECODE_CASE | ( | name, | |
| ... ) |
| #define DEBUG_BREAK | ( | Name, | |
| ... ) |
Definition at line 3774 of file bytecode-graph-builder.cc.
| #define DECLARE_VISIT_BYTECODE | ( | name, | |
| ... ) |
Definition at line 450 of file bytecode-graph-builder.cc.
| #define SHORT_STAR_VISITOR | ( | Name, | |
| ... ) |
Definition at line 1577 of file bytecode-graph-builder.cc.