Home
last modified time | relevance | path

Searched refs:handler_table_offset (Results 1 - 25 of 35) sorted by relevance

12

/third_party/node/deps/v8/src/codegen/
H A Dcode-desc.cc14 int safepoint_table_offset, int handler_table_offset, in Initialize()
27 desc->handler_table_offset = handler_table_offset; in Initialize()
28 desc->handler_table_size = desc->constant_pool_offset - handler_table_offset; in Initialize()
32 desc->handler_table_offset - safepoint_table_offset; in Initialize()
55 desc->handler_table_offset); in Verify()
57 DCHECK_EQ(desc->handler_table_size + desc->handler_table_offset, in Verify()
13 Initialize(CodeDesc* desc, Assembler* assembler, int safepoint_table_offset, int handler_table_offset, int constant_pool_offset, int code_comments_offset, int reloc_info_offset) Initialize() argument
H A Dcode-desc.h33 int safepoint_table_offset, int handler_table_offset,
56 int handler_table_offset = 0; member in v8::internal::CodeDesc
74 return handler_table_offset - instruction_size(); in handler_table_offset_relative()
/third_party/node/deps/v8/src/snapshot/embedded/
H A Dembedded-data-inl.h45 DCHECK_LE(desc.handler_table_offset, data_size_); in SafepointTableStartOf()
53 DCHECK_LE(desc.handler_table_offset, desc.constant_pool_offset); in SafepointTableSizeOf()
55 DCHECK_LE(desc.handler_table_offset, desc.code_comments_offset_offset); in SafepointTableSizeOf()
57 return desc.handler_table_offset; in SafepointTableSizeOf()
63 const uint8_t* result = RawMetadata() + desc.handler_table_offset; in HandlerTableStartOf()
64 DCHECK_LE(desc.handler_table_offset, data_size_); in HandlerTableStartOf()
72 DCHECK_LE(desc.handler_table_offset, desc.constant_pool_offset); in HandlerTableSizeOf()
73 return desc.constant_pool_offset - desc.handler_table_offset; in HandlerTableSizeOf()
75 DCHECK_LE(desc.handler_table_offset, desc.code_comments_offset_offset); in HandlerTableSizeOf()
76 return desc.code_comments_offset_offset - desc.handler_table_offset; in HandlerTableSizeOf()
[all...]
H A Dembedded-data.h194 uint32_t handler_table_offset; member
209 STATIC_ASSERT(offsetof(LayoutDescription, handler_table_offset) ==
H A Dembedded-data.cc309 layout_desc.handler_table_offset = in FromIsolate()
310 raw_data_size + static_cast<uint32_t>(code.handler_table_offset()); in FromIsolate()
/third_party/node/deps/v8/src/wasm/
H A Dwasm-code-manager.h282 int handler_table_offset() const { return handler_table_offset_; } in handler_table_offset() function in v8::internal::wasm::final
391 int handler_table_offset, int constant_pool_offset, in WasmCode()
412 handler_table_offset_(handler_table_offset),
416 DCHECK_LE(handler_table_offset, unpadded_binary_size);
664 int handler_table_offset, int constant_pool_offset,
388 WasmCode(NativeModule* native_module, int index, base::Vector<byte> instructions, int stack_slots, uint32_t tagged_parameter_slots, int safepoint_table_offset, int handler_table_offset, int constant_pool_offset, int code_comments_offset, int unpadded_binary_size, base::Vector<const byte> protected_instructions_data, base::Vector<const byte> reloc_info, base::Vector<const byte> source_position_table, Kind kind, ExecutionTier tier, ForDebugging for_debugging) WasmCode() argument
H A Dwasm-code-manager.cc1095 const int handler_table_offset = base_offset + code->handler_table_offset(); in AddCodeForTesting() local
1139 handler_table_offset, // handler_table_offset in AddCodeForTesting()
1227 const int handler_table_offset = desc.handler_table_offset; in AddCodeWithCodeSpace() local
1270 safepoint_table_offset, handler_table_offset, constant_pool_offset, in AddCodeWithCodeSpace()
1423 int handler_table_offset, int constant_pool_offset, in AddDeserializedCode()
1433 safepoint_table_offset, handler_table_offset, constant_pool_offset, in AddDeserializedCode()
1504 jump_table_size, // handler_table_offset in CreateEmptyJumpTableInRegionLocked()
1420 AddDeserializedCode( int index, base::Vector<byte> instructions, int stack_slots, uint32_t tagged_parameter_slots, int safepoint_table_offset, int handler_table_offset, int constant_pool_offset, int code_comments_offset, int unpadded_binary_size, base::Vector<const byte> protected_instructions_data, base::Vector<const byte> reloc_info, base::Vector<const byte> source_position_table, WasmCode::Kind kind, ExecutionTier tier) AddDeserializedCode() argument
[all...]
H A Dwasm-serialization.cc365 writer->Write(code->handler_table_offset()); in WriteCode()
720 int handler_table_offset = reader->Read<int>(); in ReadCode() local
760 safepoint_table_offset, handler_table_offset, constant_pool_offset, in ReadCode()
/third_party/node/deps/v8/src/builtins/
H A Dsetup-builtins-internal.cc101 int handler_table_offset = 0; in BuildWithMacroAssembler() local
108 handler_table_offset = HandlerTable::EmitReturnTableStart(&masm); in BuildWithMacroAssembler()
115 handler_table_offset); in BuildWithMacroAssembler()
/third_party/node/deps/v8/src/objects/
H A Dcode-inl.h150 INT_ACCESSORS(Code, handler_table_offset, kHandlerTableOffsetOffset)
460 DCHECK_GE(handler_table_offset() - safepoint_table_offset(), 0); in safepoint_table_size()
461 return handler_table_offset() - safepoint_table_offset(); in safepoint_table_size()
469 : raw_metadata_start() + handler_table_offset(); in HandlerTableAddress()
473 DCHECK_GE(constant_pool_offset() - handler_table_offset(), 0); in handler_table_size()
474 return constant_pool_offset() - handler_table_offset(); in handler_table_size()
H A Dcode.h240 // | | <-- MS + handler_table_offset()
273 // | ... | <-- MS + handler_table_offset()
337 // [handler_table_offset]: The offset where the exception handler table
339 inline int handler_table_offset() const;
/third_party/node/deps/v8/src/codegen/s390/
H A Dassembler-s390.cc386 int handler_table_offset) { in GetCode()
410 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
412 : handler_table_offset; in GetCode()
384 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument
H A Dassembler-s390.h236 int handler_table_offset);
/third_party/node/deps/v8/src/compiler/backend/
H A Dcode-generator.h168 size_t handler_table_offset() const { return handler_table_offset_; } in handler_table_offset() function in v8::internal::compiler::final
/third_party/node/deps/v8/src/codegen/loong64/
H A Dassembler-loong64.cc191 int handler_table_offset) { in GetCode()
217 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
219 : handler_table_offset; in GetCode()
189 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument
H A Dassembler-loong64.h135 int handler_table_offset);
/third_party/node/deps/v8/src/codegen/ppc/
H A Dassembler-ppc.cc253 int handler_table_offset) { in GetCode()
279 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
281 : handler_table_offset; in GetCode()
251 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument
H A Dassembler-ppc.h191 int handler_table_offset);
/third_party/node/deps/v8/src/diagnostics/
H A Dobjects-debug.cc1106 CHECK_LE(safepoint_table_offset(), handler_table_offset()); in CodeVerify()
1107 CHECK_LE(handler_table_offset(), constant_pool_offset()); in CodeVerify()
/third_party/node/deps/v8/src/codegen/mips/
H A Dassembler-mips.cc314 int handler_table_offset) { in GetCode()
340 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
342 : handler_table_offset; in GetCode()
312 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument
/third_party/node/deps/v8/src/codegen/ia32/
H A Dassembler-ia32.cc340 int handler_table_offset) { in GetCode()
366 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
368 : handler_table_offset; in GetCode()
338 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument
/third_party/node/deps/v8/src/codegen/x64/
H A Dassembler-x64.cc375 int handler_table_offset) { in GetCode()
404 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
406 : handler_table_offset; in GetCode()
373 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument
/third_party/node/deps/v8/src/codegen/arm/
H A Dassembler-arm.h323 int handler_table_offset);
/third_party/node/deps/v8/src/compiler/
H A Dpipeline.cc3071 static_cast<int>(code_generator->handler_table_offset())); in GenerateCodeForWasmNativeStub()
3193 static_cast<int>(code_generator->handler_table_offset())); in GenerateCodeForWasmFunction()
/third_party/node/deps/v8/src/codegen/arm64/
H A Dassembler-arm64.cc391 int handler_table_offset) { in GetCode()
417 const int handler_table_offset2 = (handler_table_offset == kNoHandlerTable) in GetCode()
419 : handler_table_offset; in GetCode()
389 GetCode(Isolate* isolate, CodeDesc* desc, SafepointTableBuilder* safepoint_table_builder, int handler_table_offset) GetCode() argument

Completed in 86 milliseconds

12