Home
last modified time | relevance | path

Searched refs:out_sp (Results 1 – 6 of 6) sorted by relevance

/art/runtime/arch/mips/
Dfault_handler_mips.cc44 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
47 *out_sp = static_cast<uintptr_t>(sc->sc_regs[29]); // SP register in GetMethodAndReturnPcAndSp()
48 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
49 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
57 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kMips)); in GetMethodAndReturnPcAndSp()
62 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips64/
Dfault_handler_mips64.cc44 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
47 *out_sp = static_cast<uintptr_t>(sc->sc_regs[29]); // SP register in GetMethodAndReturnPcAndSp()
48 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
49 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
57 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kMips64)); in GetMethodAndReturnPcAndSp()
62 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc58 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
61 *out_sp = static_cast<uintptr_t>(sc->sp); in GetMethodAndReturnPcAndSp()
62 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
63 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
71 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm64)); in GetMethodAndReturnPcAndSp()
76 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm/
Dfault_handler_arm.cc69 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
72 *out_sp = static_cast<uintptr_t>(sc->arm_sp); in GetMethodAndReturnPcAndSp()
73 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
74 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
82 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm)); in GetMethodAndReturnPcAndSp()
87 *out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/x86/
Dfault_handler_x86.cc253 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
255 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()
256 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp()
257 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
266 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86_64)); in GetMethodAndReturnPcAndSp()
268 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86)); in GetMethodAndReturnPcAndSp()
274 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/
Dfault_handler.h59 uintptr_t* out_return_pc, uintptr_t* out_sp)