Home
last modified time | relevance | path

Searched refs:instruction_size (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/profiler/
Dprofiler-listener.cc29 rec->instruction_size = 1; in CallbackEvent()
43 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
57 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
75 rec->instruction_size = code->InstructionSize(); in CodeCreateEvent()
108 rec->instruction_size = abstract_code->InstructionSize(); in CodeCreateEvent()
122 rec->instruction_size = code->instructions().length(); in CodeCreateEvent()
166 rec->instruction_size = 1; in GetterCallbackEvent()
179 rec->instruction_size = code->InstructionSize(); in RegExpCodeCreateEvent()
189 rec->instruction_size = 1; in SetterCallbackEvent()
Dcpu-profiler-inl.h19 code_map->AddCode(instruction_start, entry, instruction_size); in UpdateCodeMap()
Dcpu-profiler.h58 unsigned instruction_size; variable
/external/compiler-rt/lib/interception/
Dinterception_win.cc555 size_t instruction_size = GetInstructionSize(address + cursor); in RoundUpToInstrBoundary() local
556 if (!instruction_size) in RoundUpToInstrBoundary()
558 cursor += instruction_size; in RoundUpToInstrBoundary()
642 size_t instruction_size = GetInstructionSize(old_func); in OverrideFunctionWithHotPatch() local
643 if (instruction_size < kShortJumpInstructionLength || in OverrideFunctionWithHotPatch()
649 uptr trampoline_length = instruction_size + kDirectBranchLength; in OverrideFunctionWithHotPatch()
653 CopyInstructions(trampoline, old_func, instruction_size); in OverrideFunctionWithHotPatch()
654 WriteDirectBranch(trampoline + instruction_size, in OverrideFunctionWithHotPatch()
655 old_func + instruction_size); in OverrideFunctionWithHotPatch()
/external/v8/src/wasm/
Dwasm-code-manager.cc231 size_t instruction_size = body_size; in Disassemble() local
232 if (constant_pool_offset_ && constant_pool_offset_ < instruction_size) { in Disassemble()
233 instruction_size = constant_pool_offset_; in Disassemble()
235 if (safepoint_table_offset_ && safepoint_table_offset_ < instruction_size) { in Disassemble()
236 instruction_size = safepoint_table_offset_; in Disassemble()
238 if (handler_table_offset_ && handler_table_offset_ < instruction_size) { in Disassemble()
239 instruction_size = handler_table_offset_; in Disassemble()
241 DCHECK_LT(0, instruction_size); in Disassemble()
242 os << "Instructions (size = " << instruction_size << ")\n"; in Disassemble()
244 instructions().start() + instruction_size, in Disassemble()
/external/v8/src/
Dcode-reference.cc31 int CodeReference::instruction_size() const { in instruction_size() function in v8::internal::CodeReference
Dcode-reference.h30 int instruction_size() const;
Ddisassembler.cc62 if (0 <= offs && offs < code_.instruction_size()) { in NameOfAddress()
/external/v8/src/snapshot/
Dsnapshot-common.cc520 int instruction_size = 0; in PrintStatistics() local
525 instruction_size += size; in PrintStatistics()
544 PrintF(" Instruction size: %d\n", instruction_size); in PrintStatistics()
546 static_cast<int>(size() - metadata_size - instruction_size)); in PrintStatistics()
/external/v8/tools/
Dgrokdump.py1693 self.instruction_size = \
1697 lines = self.heap.reader.GetDisasmLines(self.entry, self.instruction_size)
1700 p.Print("instruction_size: %d" % self.instruction_size)
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX86Base.h767 void emitLabel(Label *label, intptr_t instruction_size);
DIceAssemblerX86BaseImpl.h3967 intptr_t instruction_size) { in emitLabel() argument
3971 emitInt32(offset - instruction_size); in emitLabel()