Home | History | Annotate | Download | only in arm64

Lines Matching refs:reinterpret_cast

44   struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
45 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
49 sc->regs[0] = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
51 sc->pc = reinterpret_cast<uintptr_t>(longjmp);
57 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context);
58 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
67 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(sc->fault_address);
68 uintptr_t* overflow_addr = reinterpret_cast<uintptr_t*>(
69 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kArm64));
71 *out_method = reinterpret_cast<mirror::ArtMethod*>(sc->regs[0]);
74 *out_method = (reinterpret_cast<StackReference<mirror::ArtMethod>* >(*out_sp)[0]).AsMirrorPtr();
80 << static_cast<void*>(reinterpret_cast<uint8_t*>(sc->pc));
90 struct ucontext *uc = reinterpret_cast<struct ucontext*>(context);
91 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
95 sc->pc = reinterpret_cast<uintptr_t>(art_quick_throw_null_pointer_exception);
114 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context);
115 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
116 uint8_t* ptr2 = reinterpret_cast<uint8_t*>(sc->pc);
120 uint32_t inst2 = *reinterpret_cast<uint32_t*>(ptr2);
132 uint32_t inst1 = *reinterpret_cast<uint32_t*>(ptr1);
148 sc->pc = reinterpret_cast<uintptr_t>(art_quick_implicit_suspend);
159 struct ucontext *uc = reinterpret_cast<struct ucontext *>(context);
160 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext);
186 sc->pc = reinterpret_cast<uintptr_t>(art_quick_throw_stack_overflow);