Home
last modified time | relevance | path

Searched refs:instruction_size (Results 1 - 25 of 33) sorted by relevance

12

/third_party/node/deps/v8/src/codegen/
H A Dcode-desc.h68 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 Dcode-reference.cc26 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 Dcode-desc.cc19 desc->instr_size = assembler->instruction_size(); in Initialize()
H A Dcode-reference.h34 int instruction_size() const;
H A Dassembler.h283 int instruction_size() const { return pc_offset(); } in instruction_size() function in v8::internal::AssemblerBase
/third_party/node/deps/v8/src/profiler/
H A Dprofiler-listener.cc53 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 Dcpu-profiler-inl.h18 code_map->AddCode(instruction_start, entry, instruction_size); in UpdateCodeMap()
58 code_map->AddCode(instruction_start, entry, instruction_size); in UpdateCodeMap()
H A Dcpu-profiler.h59 unsigned instruction_size; member in v8::internal::CodeCreateEventRecord
100 unsigned instruction_size; member in v8::internal::ReportBuiltinEventRecord
H A Dcpu-profiler.cc417 rec->instruction_size = code.InstructionSize(); in LogBuiltins()
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dsfwoff2.c950 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 Dunwinding-info-win64.cc208 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 Ddisassembler.cc99 if (0 <= offs && offs < code_.instruction_size()) { in NameOfAddress()
/third_party/node/deps/v8/src/snapshot/embedded/
H A Dembedded-data.cc295 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 Dwasm-code-manager.cc391 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 Dadded_function_reducer.cpp268 assert(modified_add_function.instruction_size() > 0 && in ReplayAdaptedTransformations()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dadded_function_reducer.cpp268 assert(modified_add_function.instruction_size() > 0 && in ReplayAdaptedTransformations()
/third_party/spirv-tools/source/fuzz/
H A Dadded_function_reducer.cpp268 assert(modified_add_function.instruction_size() > 0 && in ReplayAdaptedTransformations()
/third_party/node/deps/v8/src/codegen/s390/
H A Dassembler-s390.cc407 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 Dgrokdump.py1737 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 Dassembler-loong64.cc214 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 Dassembler-ppc.cc276 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 DIceAssemblerX8632.h900 void emitLabel(Label *label, intptr_t instruction_size);
H A DIceAssemblerX8664.h896 void emitLabel(Label *label, intptr_t instruction_size);
/third_party/node/deps/v8/src/codegen/mips/
H A Dassembler-mips.cc337 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 Dassembler-ia32.cc363 const int instruction_size = pc_offset(); in GetCode() local
364 const int code_comments_offset = instruction_size - code_comments_size; in GetCode()

Completed in 45 milliseconds

12