Go to the documentation of this file. 1 #ifndef SPECIFIC_UCONTEXT_MANIP 2 #define SPECIFIC_UCONTEXT_MANIP 8 # define UC_REGS(uc, reg) (uc.uc_mcontext.uc_regs->gregs[reg]) 10 # define UC_REGS(uc, reg) (uc.uc_mcontext.gp_regs[reg]) 13 #define UC_REG_IP(uc) UC_REGS(uc, PPC_REG_PC) 14 #define UC_REG_FP(uc) UC_REGS(uc, PPC_REG_FP) 15 #define UC_REG_SP(uc) UC_REGS(uc, PPC_REG_SP) 17 #endif // SPECIFIC_UCONTEXT_MANIP