Home
last modified time | relevance | path

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

/art/runtime/arch/mips64/
Dfault_handler_mips64.cc42 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
45 *out_sp = static_cast<uintptr_t>(sc->sc_regs[mips64::SP]); in GetMethodAndReturnPcAndSp()
46 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
47 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
55 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kMips64)); in GetMethodAndReturnPcAndSp()
60 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips/
Dfault_handler_mips.cc41 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
44 *out_sp = static_cast<uintptr_t>(sc->sc_regs[mips::SP]); in GetMethodAndReturnPcAndSp()
45 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
46 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
54 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kMips)); in GetMethodAndReturnPcAndSp()
59 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc43 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
46 *out_sp = static_cast<uintptr_t>(sc->sp); in GetMethodAndReturnPcAndSp()
47 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
48 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
56 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm64)); in GetMethodAndReturnPcAndSp()
61 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm/
Dfault_handler_arm.cc50 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
53 *out_sp = static_cast<uintptr_t>(sc->arm_sp); in GetMethodAndReturnPcAndSp()
54 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp()
55 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
63 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm)); in GetMethodAndReturnPcAndSp()
68 *out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/x86/
Dfault_handler_x86.cc282 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
284 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()
285 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp()
286 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
295 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86_64)); in GetMethodAndReturnPcAndSp()
297 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86)); in GetMethodAndReturnPcAndSp()
303 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/
Dfault_handler.h58 uintptr_t* out_return_pc, uintptr_t* out_sp)