Searched refs:InstructionStart (Results 1 – 18 of 18) sorted by relevance
/external/v8/src/profiler/ |
D | profiler-listener.cc | 37 rec->instruction_start = code->InstructionStart(); in CodeCreateEvent() 41 code->InstructionStart()); in CodeCreateEvent() 51 rec->instruction_start = code->InstructionStart(); in CodeCreateEvent() 55 code->InstructionStart()); in CodeCreateEvent() 67 rec->instruction_start = code->InstructionStart(); in CodeCreateEvent() 72 code->InstructionStart()); in CodeCreateEvent() 86 rec->instruction_start = abstract_code->InstructionStart(); in CodeCreateEvent() 105 std::move(line_table), abstract_code->InstructionStart()); in CodeCreateEvent() 129 rec->from_instruction_start = from->InstructionStart(); in CodeMoveEvent() 130 rec->to_instruction_start = to->InstructionStart(); in CodeMoveEvent() [all …]
|
D | cpu-profiler.cc | 434 rec->instruction_start = builtins->builtin(id)->InstructionStart(); in LogBuiltins()
|
/external/v8/src/ |
D | log.cc | 328 WriteLogRecordedBuffer(static_cast<uintptr_t>(code->InstructionStart()), in LogRecordedBuffer() 382 static_cast<uintptr_t>(code->InstructionStart()); in CodeCreateEvent() 402 static_cast<uintptr_t>(code->InstructionStart()); in CodeCreateEvent() 423 static_cast<uintptr_t>(code->InstructionStart()); in CodeCreateEvent() 447 static_cast<uintptr_t>(code->InstructionStart()); in CodeCreateEvent() 469 static_cast<uintptr_t>(code->InstructionStart()); in RegExpCodeCreateEvent() 586 event.code_address = code->InstructionStart(); in LogRecordedBuffer() 590 LogWriteBytes(reinterpret_cast<const char*>(code->InstructionStart()), in LogRecordedBuffer() 608 event.from_address = from->InstructionStart(); in CodeMoveEvent() 609 event.to_address = to->InstructionStart(); in CodeMoveEvent() [all …]
|
D | perf-jit.cc | 226 uint8_t* code_pointer = reinterpret_cast<uint8_t*>(code->InstructionStart()); in LogRecordedBuffer() 342 debug_info.address_ = code->InstructionStart(); in LogWriteDebugInfo() 363 Address code_start = code->InstructionStart(); in LogWriteDebugInfo()
|
D | code-reference.cc | 20 ? js_code_->InstructionStart() in instruction_start()
|
D | frames.cc | 398 DCHECK_GE(pc(), result->InstructionStart()); in LookupCode() 407 unsigned pc_offset = static_cast<unsigned>(pc - holder->InstructionStart()); in IteratePc() 412 pc = holder->InstructionStart() + pc_offset; in IteratePc() 780 int code_offset = static_cast<int>(pc() - code->InstructionStart()); in position() 989 int pc_offset = static_cast<int>(pc() - code->InstructionStart()); in LookupExceptionHandlerInTable() 1063 int offset = static_cast<int>(pc() - code->InstructionStart()); in Summarize() 1149 code_offset = static_cast<int>(frame->pc() - code->InstructionStart()); in PrintTop() 1207 code_offset = static_cast<int>(frame->pc() - code->InstructionStart()); in CollectTopFrameForICStats() 1535 int pc_offset = static_cast<int>(pc() - code->InstructionStart()); in LookupExceptionHandlerInTable()
|
D | handler-table.cc | 17 : HandlerTable(code->InstructionStart(), code->handler_table_offset()) {} in HandlerTable()
|
D | safepoint-table.cc | 54 : SafepointTable(code->InstructionStart(), code->safepoint_table_offset(), in SafepointTable()
|
D | deoptimizer.cc | 1033 static_cast<intptr_t>(dispatch_builtin->InstructionStart())); in DoComputeInterpretedFrame() 1057 static_cast<intptr_t>(continuation->InstructionStart())); in DoComputeInterpretedFrame() 1153 adaptor_trampoline->InstructionStart() + in DoComputeArgumentsAdaptorFrame() 1302 Address start = construct_stub->InstructionStart(); in DoComputeConstructStubFrame() 1337 static_cast<intptr_t>(continuation->InstructionStart())); in DoComputeConstructStubFrame() 1730 static_cast<intptr_t>(continue_to_builtin->InstructionStart())); in DoComputeBuiltinContinuation() 1735 static_cast<intptr_t>(continuation->InstructionStart())); in DoComputeBuiltinContinuation() 2274 CHECK(code->InstructionStart() <= pc && pc <= code->InstructionEnd()); in GetDeoptInfo()
|
D | isolate.cc | 492 static_cast<int>(exit_frame->pc() - code->InstructionStart()); in AppendBuiltinExitFrame() 1302 return FoundHandler(nullptr, code->InstructionStart(), in Throw() 1365 return FoundHandler(nullptr, code->InstructionStart(), offset, in Throw() 1389 return FoundHandler(nullptr, code->InstructionStart(), offset, in Throw() 1422 return FoundHandler(context, code->InstructionStart(), 0, in Throw() 1455 return FoundHandler(nullptr, code->InstructionStart(), 0, in Throw() 1659 offset = static_cast<int>(frame->pc() - code->InstructionStart()); in Throw()
|
D | reloc-info.cc | 507 CHECK(target >= code->InstructionStart()); in Verify()
|
D | gdb-jit.cc | 984 return static_cast<uintptr_t>(code_->InstructionStart()); in CodeStart()
|
D | objects-debug.cc | 1107 CHECK(IsAligned(InstructionStart(), kCodeAlignment)); in CodeVerify()
|
D | objects.cc | 14566 Address code_start_address = InstructionStart(); in CanDeoptAt() 15003 DisassembleCodeRange(isolate, os, this, InstructionStart(), code_size, in Disassemble() 15011 intptr_t* ptr = reinterpret_cast<intptr_t*>(InstructionStart() + in Disassemble() 15044 os << reinterpret_cast<const void*>(InstructionStart() + pc_offset) in Disassemble()
|
/external/v8/src/objects/ |
D | code-inl.h | 91 Address AbstractCode::InstructionStart() { in InstructionStart() function 93 return GetCode()->InstructionStart(); in InstructionStart() 240 Address Code::InstructionStart() const { in InstructionStart() function 537 return InstructionStart() + offset; in constant_pool()
|
D | code.h | 231 inline Address InstructionStart() const; 527 inline Address InstructionStart();
|
/external/v8/src/wasm/ |
D | wasm-code-manager.cc | 470 reinterpret_cast<byte*>(code->InstructionStart()), in AddAnonymousCode() 489 intptr_t delta = ret->instruction_start() - code->InstructionStart(); in AddAnonymousCode()
|
/external/v8/src/ic/ |
D | ic.cc | 134 code_offset = static_cast<int>(pc() - function->code()->InstructionStart()); in TraceIC()
|