Home
last modified time | relevance | path

Searched refs:InstructionStart (Results 1 – 18 of 18) sorted by relevance

/external/v8/src/profiler/
Dprofiler-listener.cc37 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 …]
Dcpu-profiler.cc434 rec->instruction_start = builtins->builtin(id)->InstructionStart(); in LogBuiltins()
/external/v8/src/
Dlog.cc328 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 …]
Dperf-jit.cc226 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()
Dcode-reference.cc20 ? js_code_->InstructionStart() in instruction_start()
Dframes.cc398 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()
Dhandler-table.cc17 : HandlerTable(code->InstructionStart(), code->handler_table_offset()) {} in HandlerTable()
Dsafepoint-table.cc54 : SafepointTable(code->InstructionStart(), code->safepoint_table_offset(), in SafepointTable()
Ddeoptimizer.cc1033 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()
Disolate.cc492 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()
Dreloc-info.cc507 CHECK(target >= code->InstructionStart()); in Verify()
Dgdb-jit.cc984 return static_cast<uintptr_t>(code_->InstructionStart()); in CodeStart()
Dobjects-debug.cc1107 CHECK(IsAligned(InstructionStart(), kCodeAlignment)); in CodeVerify()
Dobjects.cc14566 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/
Dcode-inl.h91 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()
Dcode.h231 inline Address InstructionStart() const;
527 inline Address InstructionStart();
/external/v8/src/wasm/
Dwasm-code-manager.cc470 reinterpret_cast<byte*>(code->InstructionStart()), in AddAnonymousCode()
489 intptr_t delta = ret->instruction_start() - code->InstructionStart(); in AddAnonymousCode()
/external/v8/src/ic/
Dic.cc134 code_offset = static_cast<int>(pc() - function->code()->InstructionStart()); in TraceIC()