Home
last modified time | relevance | path

Searched refs:handler_table_size (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dcode-desc.cc28 desc->handler_table_size = desc->constant_pool_offset - handler_table_offset; in Initialize()
56 DCHECK_GE(desc->handler_table_size, 0); in Verify()
57 DCHECK_EQ(desc->handler_table_size + desc->handler_table_offset, in Verify()
Dhandler-table.cc23 : HandlerTable(code.HandlerTableAddress(), code.handler_table_size(), in HandlerTable()
28 : HandlerTable(code->handler_table(), code->handler_table_size(), in HandlerTable()
39 HandlerTable::HandlerTable(Address handler_table, int handler_table_size, in HandlerTable() argument
41 : number_of_entries_(handler_table_size / EntrySizeFromMode(encoding_mode) / in HandlerTable()
52 handler_table_size % in HandlerTable()
Dcode-desc.h57 int handler_table_size = 0; variable
Dhandler-table.h61 HandlerTable(Address handler_table, int handler_table_size,
/third_party/node/deps/v8/src/interpreter/
Dhandler-table-builder.cc20 int handler_table_size = static_cast<int>(entries_.size()); in ToHandlerTable() local
22 HandlerTable::LengthForRange(handler_table_size), AllocationType::kOld); in ToHandlerTable()
24 for (int i = 0; i < handler_table_size; ++i) { in ToHandlerTable()
/third_party/node/deps/v8/src/maglev/
Dmaglev-compiler.cc160 if (toplevel_compilation_unit_->bytecode().handler_table_size() > 0) { in Compile()
/third_party/node/deps/v8/src/objects/
Dcode-inl.h472 int Code::handler_table_size() const { in handler_table_size() function
477 bool Code::has_handler_table() const { return handler_table_size() > 0; } in has_handler_table()
Dcode.h342 inline int handler_table_size() const;
/third_party/node/deps/v8/src/compiler/
Dheap-refs.h811 int handler_table_size() const;
Dheap-refs.cc1368 int BytecodeArrayRef::handler_table_size() const { in handler_table_size() function in v8::internal::compiler::BytecodeArrayRef
Dbytecode-graph-builder.cc4209 bytecode_array().handler_table_size(), in ExitThenEnterExceptionHandlers()
/third_party/node/deps/v8/src/wasm/
Dwasm-code-manager.h277 int handler_table_size() const;
Dwasm-code-manager.cc164 int WasmCode::handler_table_size() const { in handler_table_size() function in v8::internal::wasm::WasmCode
410 if (handler_table_size() > 0) { in Disassemble()
/third_party/node/deps/v8/src/execution/
Dframes.cc2153 if (!code->IsAnonymous() && code->handler_table_size() > 0) { in LookupExceptionHandlerInTable()