Home | History | Annotate | Download | only in src

Lines Matching refs:Pc

14431 SafepointEntry Code::GetSafepointEntry(Address pc) {
14433 return table.FindEntry(pc);
14513 // Subtract one because the current PC is one instruction after the call site.
14551 void Code::PrintDeoptLocation(FILE* out, const char* str, Address pc) {
14552 Deoptimizer::DeoptInfo info = Deoptimizer::GetDeoptInfo(this, pc);
14563 bool Code::CanDeoptAt(Address pc) {
14568 if (deopt_data->Pc(i)->value() == -1) continue;
14569 Address address = code_start_address + deopt_data->Pc(i)->value();
14570 if (address == pc && deopt_data->BytecodeOffset(i) != BailoutId::None()) {
14626 // pc-relative jumps to the off-heap instruction stream and are thus
14694 void print_pc(std::ostream& os, int pc) {
14695 if (pc == -1) {
14698 os << std::hex << pc << std::dec;
14720 os << " index bytecode-offset pc";
14727 print_pc(os, Pc(i)->value());
15023 os << "Source positions:\n pc offset position\n";