Home | History | Annotate | Download | only in src

Lines Matching defs:mcontext

1045   mcontext_t& mcontext = ucontext->uc_mcontext;
1048 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
1049 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
1050 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
1052 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
1053 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
1054 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
1058 sample->pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
1059 sample->sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
1060 sample->fp = reinterpret_cast<Address>(mcontext.gregs[R11]);
1062 sample->pc = reinterpret_cast<Address>(mcontext.arm_pc);
1063 sample->sp = reinterpret_cast<Address>(mcontext.arm_sp);
1064 sample->fp = reinterpret_cast<Address>(mcontext.arm_fp);
1067 sample->pc = reinterpret_cast<Address>(mcontext.pc);
1068 sample->sp = reinterpret_cast<Address>(mcontext.gregs[29]);
1069 sample->fp = reinterpret_cast<Address>(mcontext.gregs[30]);