Home
last modified time | relevance | path

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

/art/runtime/arch/mips64/
Dfault_handler_mips64.cc43 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
59 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[4]); // A0 register in GetMethodAndReturnPcAndSp()
62 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips/
Dfault_handler_mips.cc43 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
59 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[4]); // A0 register in GetMethodAndReturnPcAndSp()
62 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm/
Dfault_handler_arm.cc68 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
84 *out_method = reinterpret_cast<ArtMethod*>(sc->arm_r0); in GetMethodAndReturnPcAndSp()
87 *out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
101 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
/art/runtime/arch/x86/
Dfault_handler_x86.cc252 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
271 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD); in GetMethodAndReturnPcAndSp()
274 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
282 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
289 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc57 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
73 *out_method = reinterpret_cast<ArtMethod*>(sc->regs[0]); in GetMethodAndReturnPcAndSp()
76 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/
Dfault_handler.h58 void GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, ArtMethod** out_method,