Home
last modified time | relevance | path

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

/art/runtime/arch/arm64/
Dfault_handler_arm64.cc56 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
59 *out_sp = static_cast<uintptr_t>(sc->sp); in GetMethodAndReturnPcAndSp()
60 VLOG(signals) << "sp: " << *out_sp; in GetMethodAndReturnPcAndSp()
61 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
69 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm64)); in GetMethodAndReturnPcAndSp()
74 *out_method = (reinterpret_cast<StackReference<mirror::ArtMethod>* >(*out_sp)[0]).AsMirrorPtr(); 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<mirror::ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/x86/
Dfault_handler_x86.cc246 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
248 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP); in GetMethodAndReturnPcAndSp()
249 VLOG(signals) << "sp: " << std::hex << *out_sp; in GetMethodAndReturnPcAndSp()
250 if (*out_sp == 0) { in GetMethodAndReturnPcAndSp()
259 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86_64)); in GetMethodAndReturnPcAndSp()
261 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86)); in GetMethodAndReturnPcAndSp()
267 *out_method = (reinterpret_cast<StackReference<mirror::ArtMethod>* >(*out_sp)[0]).AsMirrorPtr(); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips/
Dfault_handler_mips.cc37 uintptr_t* out_return_pc, uintptr_t* out_sp) { in GetMethodAndReturnPcAndSp() argument
/art/runtime/
Dfault_handler.h55 uintptr_t* out_return_pc, uintptr_t* out_sp)