OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:out_sp
(Results
1 - 2
of
2
) sorted by null
/art/runtime/arch/arm/
fault_handler_arm.cc
50
uintptr_t* out_return_pc, uintptr_t*
out_sp
) {
53
*
out_sp
= static_cast<uintptr_t>(sc->arm_sp);
54
VLOG(signals) << "sp: " << std::hex << *
out_sp
;
local
55
if (*
out_sp
== 0) {
63
reinterpret_cast<uint8_t*>(*
out_sp
) - GetStackOverflowReservedBytes(kArm));
68
*out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*
out_sp
)[0]);
/art/runtime/arch/x86/
fault_handler_x86.cc
282
uintptr_t* out_return_pc, uintptr_t*
out_sp
) {
284
*
out_sp
= static_cast<uintptr_t>(uc->CTX_ESP);
285
VLOG(signals) << "sp: " << std::hex << *
out_sp
;
local
286
if (*
out_sp
== 0) {
295
reinterpret_cast<uint8_t*>(*
out_sp
) - GetStackOverflowReservedBytes(kX86_64));
297
reinterpret_cast<uint8_t*>(*
out_sp
) - GetStackOverflowReservedBytes(kX86));
303
*out_method = *reinterpret_cast<ArtMethod**>(*
out_sp
);
Completed in 2866 milliseconds