HomeSort by relevance Sort by last modified time
    Searched refs:instruction_size (Results 1 - 16 of 16) sorted by null

  /external/v8/src/
code-reference.cc 31 int CodeReference::instruction_size() const { function in class:v8::internal::CodeReference
code-reference.h 30 int instruction_size() const;
disassembler.cc 62 if (0 <= offs && offs < code_.instruction_size()) {
  /external/v8/src/profiler/
profiler-listener.cc 29 rec->instruction_size = 1;
43 rec->instruction_size = code->InstructionSize();
57 rec->instruction_size = code->InstructionSize();
75 rec->instruction_size = code->InstructionSize();
108 rec->instruction_size = abstract_code->InstructionSize();
122 rec->instruction_size = code->instructions().length();
166 rec->instruction_size = 1;
179 rec->instruction_size = code->InstructionSize();
189 rec->instruction_size = 1;
cpu-profiler-inl.h 19 code_map->AddCode(instruction_start, entry, instruction_size);
cpu-profiler.h 58 unsigned instruction_size; member in class:v8::internal::CodeCreateEventRecord
  /external/compiler-rt/lib/interception/
interception_win.cc 555 size_t instruction_size = GetInstructionSize(address + cursor); local
556 if (!instruction_size)
558 cursor += instruction_size;
642 size_t instruction_size = GetInstructionSize(old_func); local
643 if (instruction_size < kShortJumpInstructionLength ||
649 uptr trampoline_length = instruction_size + kDirectBranchLength;
653 CopyInstructions(trampoline, old_func, instruction_size);
654 WriteDirectBranch(trampoline + instruction_size,
655 old_func + instruction_size);
  /external/v8/src/wasm/
wasm-code-manager.cc 231 size_t instruction_size = body_size; local
232 if (constant_pool_offset_ && constant_pool_offset_ < instruction_size) {
233 instruction_size = constant_pool_offset_;
235 if (safepoint_table_offset_ && safepoint_table_offset_ < instruction_size) {
236 instruction_size = safepoint_table_offset_;
238 if (handler_table_offset_ && handler_table_offset_ < instruction_size) {
239 instruction_size = handler_table_offset_;
241 DCHECK_LT(0, instruction_size);
242 os << "Instructions (size = " << instruction_size << ")\n"; local
244 instructions().start() + instruction_size,
    [all...]
  /external/v8/src/snapshot/
snapshot-common.cc 520 int instruction_size = 0; local
525 instruction_size += size;
544 PrintF(" Instruction size: %d\n", instruction_size);
546 static_cast<int>(size() - metadata_size - instruction_size));
  /art/compiler/utils/x86/
assembler_x86.h 838 void EmitLabel(Label* label, int instruction_size);
assembler_x86.cc     [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.h 925 void EmitLabel(Label* label, int instruction_size);
    [all...]
assembler_x86_64.cc     [all...]
  /external/v8/tools/
grokdump.py     [all...]
  /external/swiftshader/third_party/subzero/src/
IceAssemblerX86Base.h 767 void emitLabel(Label *label, intptr_t instruction_size);
    [all...]
IceAssemblerX86BaseImpl.h     [all...]

Completed in 481 milliseconds