Home | History | Annotate | Download | only in src

Lines Matching refs:gregs

102   uint64_t gregs[32];
130 uint32_t gregs[19];
332 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
333 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
334 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
336 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
337 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
338 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
342 // Old GLibc ARM versions used a gregs[] array to access the register
344 state.pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
345 state.sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
346 state.fp = reinterpret_cast<Address>(mcontext.gregs[R11]);
355 state.sp = reinterpret_cast<Address>(mcontext.gregs[29]);
356 state.fp = reinterpret_cast<Address>(mcontext.gregs[30]);
415 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_PC]);
416 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_SP]);
417 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_FP]);