Home | History | Annotate | Download | only in src

Lines Matching refs:gregs

96   uint64_t gregs[32];
124 uint32_t gregs[19];
143 uint64_t gregs[23];
375 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
376 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
377 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
379 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
380 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
381 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
385 // Old GLibc ARM versions used a gregs[] array to access the register
387 state.pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
388 state.sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
389 state.fp = reinterpret_cast<Address>(mcontext.gregs[R11]);
403 state.sp = reinterpret_cast<Address>(mcontext.gregs[29]);
404 state.fp = reinterpret_cast<Address>(mcontext.gregs[30]);
407 state.sp = reinterpret_cast<Address>(mcontext.gregs[29]);
408 state.fp = reinterpret_cast<Address>(mcontext.gregs[30]);
467 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_PC]);
468 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_SP]);
469 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_FP]);