Lines Matching refs:sc

44   struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);  in GetMethodAndReturnPcAndSp()  local
45 *out_sp = static_cast<uintptr_t>(sc->sp); in GetMethodAndReturnPcAndSp()
53 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(sc->fault_address); in GetMethodAndReturnPcAndSp()
57 *out_method = reinterpret_cast<ArtMethod*>(sc->regs[0]); in GetMethodAndReturnPcAndSp()
66 << static_cast<void*>(reinterpret_cast<uint8_t*>(sc->pc)); in GetMethodAndReturnPcAndSp()
68 *out_return_pc = sc->pc + 4; in GetMethodAndReturnPcAndSp()
80 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action() local
83 sc->sp -= sizeof(uintptr_t); in Action()
84 *reinterpret_cast<uintptr_t*>(sc->sp) = sc->pc + 4; in Action()
85 sc->regs[30] = reinterpret_cast<uintptr_t>(info->si_addr); in Action()
87 sc->pc = reinterpret_cast<uintptr_t>(art_quick_throw_null_pointer_exception_from_signal); in Action()
109 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action() local
110 uint8_t* ptr2 = reinterpret_cast<uint8_t*>(sc->pc); in Action()
141 sc->regs[30] = sc->pc + 4; in Action()
142 sc->pc = reinterpret_cast<uintptr_t>(art_quick_implicit_suspend); in Action()
155 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); in Action() local
157 VLOG(signals) << "sigcontext: " << std::hex << sc; in Action()
159 uintptr_t sp = sc->sp; in Action()
162 uintptr_t fault_addr = sc->fault_address; in Action()
181 sc->pc = reinterpret_cast<uintptr_t>(art_quick_throw_stack_overflow); in Action()