Home | History | Annotate | Download | only in src

Lines Matching defs:gregs

105   uint64_t gregs[32];
133 uint32_t gregs[19];
341 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
342 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
343 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
345 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
346 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
347 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
351 // Old GLibc ARM versions used a gregs[] array to access the register
353 state.pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
354 state.sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
355 state.fp = reinterpret_cast<Address>(mcontext.gregs[R11]);
364 state.sp = reinterpret_cast<Address>(mcontext.gregs[29]);
365 state.fp = reinterpret_cast<Address>(mcontext.gregs[30]);
402 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_PC]);
403 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_SP]);
404 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_FP]);