Searched refs:handler_table_size (Results 1 – 14 of 14) sorted by relevance
/third_party/node/deps/v8/src/codegen/ |
D | code-desc.cc | 28 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()
|
D | handler-table.cc | 23 : 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()
|
D | code-desc.h | 57 int handler_table_size = 0; variable
|
D | handler-table.h | 61 HandlerTable(Address handler_table, int handler_table_size,
|
/third_party/node/deps/v8/src/interpreter/ |
D | handler-table-builder.cc | 20 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/ |
D | maglev-compiler.cc | 160 if (toplevel_compilation_unit_->bytecode().handler_table_size() > 0) { in Compile()
|
/third_party/node/deps/v8/src/objects/ |
D | code-inl.h | 472 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()
|
D | code.h | 342 inline int handler_table_size() const;
|
/third_party/node/deps/v8/src/compiler/ |
D | heap-refs.h | 811 int handler_table_size() const;
|
D | heap-refs.cc | 1368 int BytecodeArrayRef::handler_table_size() const { in handler_table_size() function in v8::internal::compiler::BytecodeArrayRef
|
D | bytecode-graph-builder.cc | 4209 bytecode_array().handler_table_size(), in ExitThenEnterExceptionHandlers()
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-code-manager.h | 277 int handler_table_size() const;
|
D | wasm-code-manager.cc | 164 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/ |
D | frames.cc | 2153 if (!code->IsAnonymous() && code->handler_table_size() > 0) { in LookupExceptionHandlerInTable()
|