Lines Matching full:gp

15 #define COPY2(X,Y) regs->gp[X] = mc->gregs[REG_##Y]  in get_regs_from_mc()
16 #define COPY(X) regs->gp[X] = mc->gregs[REG_##X] in get_regs_from_mc()
17 #define COPY_SEG(X) regs->gp[X] = mc->gregs[REG_##X] & 0xffff; in get_regs_from_mc()
18 #define COPY_SEG_CPL3(X) regs->gp[X] = (mc->gregs[REG_##X] & 0xffff) | 3; in get_regs_from_mc()
29 #define COPY2(X,Y) regs->gp[X/sizeof(unsigned long)] = mc->gregs[REG_##Y] in get_regs_from_mc()
30 #define COPY(X) regs->gp[X/sizeof(unsigned long)] = mc->gregs[REG_##X] in get_regs_from_mc()
38 regs->gp[SS / sizeof(unsigned long)] = mc->gregs[REG_CSGSFS] >> 48; in get_regs_from_mc()
59 #define COPY2(X,Y) mc->gregs[REG_##Y] = regs->gp[X] in get_mc_from_regs()
60 #define COPY(X) mc->gregs[REG_##X] = regs->gp[X] in get_mc_from_regs()
61 #define COPY_SEG(X) mc->gregs[REG_##X] = regs->gp[X] & 0xffff; in get_mc_from_regs()
62 #define COPY_SEG_CPL3(X) mc->gregs[REG_##X] = (regs->gp[X] & 0xffff) | 3; in get_mc_from_regs()
69 #define COPY2(X,Y) mc->gregs[REG_##Y] = regs->gp[X/sizeof(unsigned long)] in get_mc_from_regs()
70 #define COPY(X) mc->gregs[REG_##X] = regs->gp[X/sizeof(unsigned long)] in get_mc_from_regs()
78 mc->gregs[REG_CSGSFS] |= (regs->gp[SS / sizeof(unsigned long)] & 0xffff) << 48; in get_mc_from_regs()
249 if (data->arch_data.fs_base != regs->gp[FS_BASE / sizeof(unsigned long)]) { in set_stub_state()
250 data->arch_data.fs_base = regs->gp[FS_BASE / sizeof(unsigned long)]; in set_stub_state()
253 if (data->arch_data.gs_base != regs->gp[GS_BASE / sizeof(unsigned long)]) { in set_stub_state()
254 data->arch_data.gs_base = regs->gp[GS_BASE / sizeof(unsigned long)]; in set_stub_state()