Searched defs:mcontext (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-ppc32-linux.c108 struct vki_mcontext mcontext; member in struct:nonrt_sigframe
143 VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
179 VG_TRACK(pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
760 stack_mcontext(&frame->mcontext, tst, False/*!use_rt_sigreturn*/, faultaddr);
911 mc = &frame->mcontext;
/external/v8/src/
H A Dplatform-freebsd.cc700 mcontext_t& mcontext = ucontext->uc_mcontext; local
703 sample->pc = reinterpret_cast<Address>(mcontext.mc_eip);
704 sample->sp = reinterpret_cast<Address>(mcontext.mc_esp);
705 sample->fp = reinterpret_cast<Address>(mcontext.mc_ebp);
707 sample->pc = reinterpret_cast<Address>(mcontext.mc_rip);
708 sample->sp = reinterpret_cast<Address>(mcontext.mc_rsp);
709 sample->fp = reinterpret_cast<Address>(mcontext.mc_rbp);
711 sample->pc = reinterpret_cast<Address>(mcontext.mc_r15);
712 sample->sp = reinterpret_cast<Address>(mcontext.mc_r13);
713 sample->fp = reinterpret_cast<Address>(mcontext
[all...]
H A Dplatform-linux.cc1050 mcontext_t& mcontext = ucontext->uc_mcontext; local
1053 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
1054 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
1055 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
1057 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
1058 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
1059 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
1063 sample->pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
1064 sample->sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
1065 sample->fp = reinterpret_cast<Address>(mcontext
[all...]
H A Dplatform-openbsd.cc755 mcontext_t& mcontext = ucontext->uc_mcontext; local
757 sample->pc = reinterpret_cast<Address>(mcontext.__gregs[_REG_EIP]);
758 sample->sp = reinterpret_cast<Address>(mcontext.__gregs[_REG_ESP]);
759 sample->fp = reinterpret_cast<Address>(mcontext.__gregs[_REG_EBP]);
761 sample->pc = reinterpret_cast<Address>(mcontext.__gregs[_REG_RIP]);
762 sample->sp = reinterpret_cast<Address>(mcontext.__gregs[_REG_RSP]);
763 sample->fp = reinterpret_cast<Address>(mcontext.__gregs[_REG_RBP]);
H A Dplatform-solaris.cc692 mcontext_t& mcontext = ucontext->uc_mcontext; local
695 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_PC]);
696 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_SP]);
697 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_FP]);

Completed in 70 milliseconds