/third_party/node/deps/v8/src/codegen/ |
H A D | code-desc.h | 68 int instruction_size() const { return safepoint_table_offset; } in instruction_size() function in v8::internal::CodeDesc 69 int metadata_size() const { return body_size() - instruction_size(); } in metadata_size() 71 return safepoint_table_offset - instruction_size(); in safepoint_table_offset_relative() 74 return handler_table_offset - instruction_size(); in handler_table_offset_relative() 77 return constant_pool_offset - instruction_size(); in constant_pool_offset_relative() 80 return code_comments_offset - instruction_size(); in code_comments_offset_relative()
|
H A D | code-reference.cc | 26 int instruction_size() const { return code->InstructionSize(); } in instruction_size() function 46 int instruction_size() const { return code->instructions().length(); } in instruction_size() function 69 int instruction_size() const { return code_desc->instr_size; } in instruction_size() function 115 DISPATCH(int, instruction_size)
|
H A D | code-desc.cc | 19 desc->instr_size = assembler->instruction_size(); in Initialize()
|
H A D | code-reference.h | 34 int instruction_size() const;
|
H A D | assembler.h | 283 int instruction_size() const { return pc_offset(); } in instruction_size() function in v8::internal::AssemblerBase
|
/third_party/node/deps/v8/src/profiler/ |
H A D | profiler-listener.cc | 53 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent() 68 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent() 87 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent() 227 rec->instruction_size = abstract_code->InstructionSize(); in CodeCreateEvent() 246 rec->instruction_size = code->instructions().length(); in CodeCreateEvent() 257 rec->instruction_size = 1; in CallbackEvent() 268 rec->instruction_size = 1; in GetterCallbackEvent() 279 rec->instruction_size = 1; in SetterCallbackEvent() 292 rec->instruction_size = code->InstructionSize(); in RegExpCodeCreateEvent()
|
H A D | cpu-profiler-inl.h | 18 code_map->AddCode(instruction_start, entry, instruction_size); in UpdateCodeMap() 58 code_map->AddCode(instruction_start, entry, instruction_size); in UpdateCodeMap()
|
H A D | cpu-profiler.h | 59 unsigned instruction_size; member in v8::internal::CodeCreateEventRecord 100 unsigned instruction_size; member in v8::internal::ReportBuiltinEventRecord
|
H A D | cpu-profiler.cc | 417 rec->instruction_size = code.InstructionSize(); in LogBuiltins()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | sfwoff2.c | 950 FT_UShort instruction_size = 0; in reconstruct_glyf() local 969 READ_255USHORT( instruction_size ) ) in reconstruct_glyf() 974 size_needed = 12 + composite_size + instruction_size; in reconstruct_glyf() 1009 WRITE_USHORT( pointer, instruction_size ); in reconstruct_glyf() 1013 FT_STREAM_READ( glyph_buf + glyph_size, instruction_size ) ) in reconstruct_glyf() 1016 substreams[INSTRUCTION_STREAM].offset += instruction_size; in reconstruct_glyf() 1017 glyph_size += instruction_size; in reconstruct_glyf() 1031 FT_UShort instruction_size; in reconstruct_glyf() local 1091 READ_255USHORT( instruction_size ) ) in reconstruct_glyf() 1102 instruction_size; in reconstruct_glyf() [all...] |
/third_party/node/deps/v8/src/diagnostics/ |
H A D | unwinding-info-win64.cc | 208 DCHECK_LE(masm.instruction_size(), sizeof(record->exception_thunk)); in InitUnwindingRecord() 210 masm.instruction_size()); in InitUnwindingRecord() 486 DCHECK_LE(masm.instruction_size(), sizeof(record->exception_thunk)); 488 masm.instruction_size());
|
H A D | disassembler.cc | 99 if (0 <= offs && offs < code_.instruction_size()) { in NameOfAddress()
|
/third_party/node/deps/v8/src/snapshot/embedded/ |
H A D | embedded-data.cc | 295 uint32_t instruction_size = in FromIsolate() local 305 layout_desc.instruction_length = instruction_size; in FromIsolate() 321 raw_code_size += PadAndAlignCode(instruction_size); in FromIsolate()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-code-manager.cc | 391 int instruction_size = unpadded_binary_size_; in Disassemble() local 392 if (constant_pool_offset_ < instruction_size) { in Disassemble() 393 instruction_size = constant_pool_offset_; in Disassemble() 395 if (safepoint_table_offset_ && safepoint_table_offset_ < instruction_size) { in Disassemble() 396 instruction_size = safepoint_table_offset_; in Disassemble() 398 if (handler_table_offset_ < instruction_size) { in Disassemble() 399 instruction_size = handler_table_offset_; in Disassemble() 401 DCHECK_LT(0, instruction_size); in Disassemble() 404 os << "Instructions (size = " << instruction_size << ")\n"; in Disassemble() local 406 instructions().begin() + instruction_size, in Disassemble() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | added_function_reducer.cpp | 268 assert(modified_add_function.instruction_size() > 0 && in ReplayAdaptedTransformations()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | added_function_reducer.cpp | 268 assert(modified_add_function.instruction_size() > 0 && in ReplayAdaptedTransformations()
|
/third_party/spirv-tools/source/fuzz/ |
H A D | added_function_reducer.cpp | 268 assert(modified_add_function.instruction_size() > 0 && in ReplayAdaptedTransformations()
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | assembler-s390.cc | 407 const int instruction_size = pc_offset(); in GetCode() local 408 const int code_comments_offset = instruction_size - code_comments_size; in GetCode()
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 1737 self.instruction_size = \ 1741 lines = self.heap.reader.GetDisasmLines(self.entry, self.instruction_size) 1744 p.Print("instruction_size: %d" % self.instruction_size)
|
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | assembler-loong64.cc | 214 const int instruction_size = pc_offset(); in GetCode() local 215 const int code_comments_offset = instruction_size - code_comments_size; in GetCode()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc.cc | 276 const int instruction_size = pc_offset(); in GetCode() local 277 const int code_comments_offset = instruction_size - code_comments_size; in GetCode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerX8632.h | 900 void emitLabel(Label *label, intptr_t instruction_size);
|
H A D | IceAssemblerX8664.h | 896 void emitLabel(Label *label, intptr_t instruction_size);
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.cc | 337 const int instruction_size = pc_offset(); in GetCode() local 338 const int code_comments_offset = instruction_size - code_comments_size; in GetCode()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.cc | 363 const int instruction_size = pc_offset(); in GetCode() local 364 const int code_comments_offset = instruction_size - code_comments_size; in GetCode()
|