Searched defs:out_sp (Results 1 - 4 of 4) sorted by relevance

/art/runtime/arch/mips/
H A Dfault_handler_mips.cc37 uintptr_t* out_return_pc, uintptr_t* out_sp) {
35 GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, mirror::ArtMethod** out_method, uintptr_t* out_return_pc, uintptr_t* out_sp) argument
/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc56 uintptr_t* out_return_pc, uintptr_t* out_sp) {
59 *out_sp = static_cast<uintptr_t>(sc->sp);
60 VLOG(signals) << "sp: " << *out_sp;
61 if (*out_sp == 0) {
69 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm64));
74 *out_method = (reinterpret_cast<StackReference<mirror::ArtMethod>* >(*out_sp)[0]).AsMirrorPtr();
54 GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, mirror::ArtMethod** out_method, uintptr_t* out_return_pc, uintptr_t* out_sp) argument
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc69 uintptr_t* out_return_pc, uintptr_t* out_sp) {
72 *out_sp = static_cast<uintptr_t>(sc->arm_sp);
73 VLOG(signals) << "sp: " << *out_sp;
74 if (*out_sp == 0) {
82 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm));
87 *out_method = reinterpret_cast<mirror::ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]);
67 GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, mirror::ArtMethod** out_method, uintptr_t* out_return_pc, uintptr_t* out_sp) argument
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc246 uintptr_t* out_return_pc, uintptr_t* out_sp) {
248 *out_sp = static_cast<uintptr_t>(uc->CTX_ESP);
249 VLOG(signals) << "sp: " << std::hex << *out_sp; local
250 if (*out_sp == 0) {
259 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86_64));
261 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86));
267 *out_method = (reinterpret_cast<StackReference<mirror::ArtMethod>* >(*out_sp)[0]).AsMirrorPtr();
244 GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, mirror::ArtMethod** out_method, uintptr_t* out_return_pc, uintptr_t* out_sp) argument

Completed in 181 milliseconds