Searched defs:pc (Results 1 - 10 of 10) sorted by relevance

/art/runtime/
H A Dmonitor_android.cc80 uint32_t pc; local
81 mirror::ArtMethod* m = self->GetCurrentMethod(&pc);
84 TranslateLocation(m, pc, filename, line_number);
H A Dstack.h339 void SetTopQuickFramePc(uintptr_t pc) { argument
341 top_quick_frame_pc_ = pc;
H A Dthread.h329 void SetTopOfStack(void* stack, uintptr_t pc) { argument
332 managed_stack_.SetTopQuickFramePc(pc);
778 // Additional stack used by method instrumentation to store method and return pc values.
/art/compiler/dex/quick/arm/
H A Dassemble_arm.cc60 * t -> pc-relative target
118 "add", "!0C, pc, #!1E", 2),
229 | IS_LOAD | NEEDS_FIXUP, "ldr", "!0C, [pc, #!1E]", 2),
979 "ldrd", "!0C, !1C, [pc, #!2E]", 4),
1002 * discover that pc-relative displacements may not fit the selected
1048 uintptr_t pc = (lir->offset + 4) & ~3; local
1050 int delta = target - pc;
1058 LOG(FATAL) << "Unexpected pc-rel offset " << delta;
1106 uintptr_t pc = lir->offset + 4; local
1108 int delta = target - pc;
1156 uintptr_t pc = lir->offset + 4; local
1167 uintptr_t pc = lir->offset + 4; local
1178 uintptr_t pc = lir->offset + 4; local
[all...]
/art/compiler/dex/quick/mips/
H A Dassemble_mips.cc62 * t -> pc-relative target
63 * T -> pc-region target
412 "addiu", "ra,pc,8", 4),
511 * discover that pc-relative displacements may not fit the selected
533 * two pc-relative locations into a the target register
581 uintptr_t pc = lir->offset + 4; local
583 int delta = target - pc;
595 uintptr_t pc = lir->offset + 4; local
597 int delta = target - pc;
609 uintptr_t pc local
[all...]
/art/compiler/utils/mips/
H A Dconstants_mips.h100 // Use the At(pc) function to create references to Instr.
101 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } argument
/art/compiler/dex/quick/x86/
H A Dassemble_x86.cc1159 * discover that pc-relative displacements may not fit the selected
1183 uintptr_t pc; local
1185 pc = lir->offset + 2 /* opcode + rel8 */;
1187 pc = lir->offset + 6 /* 2 byte opcode + rel32 */;
1190 delta = target - pc;
1213 uintptr_t pc = lir->offset + 6 /* 2 byte opcode + rel32 */; local
1215 int delta = target - pc;
1230 uintptr_t pc; local
1232 pc = lir->offset + 2 /* opcode + rel8 */;
1234 pc
1259 uintptr_t pc = lir->offset + 5 /* opcode + rel32 */; local
[all...]
/art/compiler/utils/x86/
H A Dconstants_x86.h116 // Use the At(pc) function to create references to Instr.
117 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } argument
/art/compiler/utils/arm/
H A Dconstants_arm.h437 // Use the At(pc) function to create references to Instr.
438 static Instr* At(uword pc) { return reinterpret_cast<Instr*>(pc); } argument
/art/runtime/verifier/
H A Dmethod_verifier.cc1387 // If we're doing FindLocksAtDexPc, check whether we're at the dex pc we care about.
1388 // We want the state _before_ the instruction, for the case where the dex pc we're
4102 bool MethodVerifier::IsSafeCast(MethodReference ref, uint32_t pc) { argument
4111 MethodVerifier::MethodSafeCastSet::const_iterator cast_it = it->second->find(pc);

Completed in 140 milliseconds