Lines Matching refs:grp

44 gcore_getgregs(mdb_klwp_t *lwp, gregset_t grp)  in gcore_getgregs()  argument
58 grp[REG_RDI] = rp->r_rdi; in gcore_getgregs()
59 grp[REG_RSI] = rp->r_rsi; in gcore_getgregs()
60 grp[REG_RDX] = rp->r_rdx; in gcore_getgregs()
61 grp[REG_RCX] = rp->r_rcx; in gcore_getgregs()
62 grp[REG_R8] = rp->r_r8; in gcore_getgregs()
63 grp[REG_R9] = rp->r_r9; in gcore_getgregs()
64 grp[REG_RAX] = rp->r_rax; in gcore_getgregs()
65 grp[REG_RBX] = rp->r_rbx; in gcore_getgregs()
66 grp[REG_RBP] = rp->r_rbp; in gcore_getgregs()
67 grp[REG_R10] = rp->r_r10; in gcore_getgregs()
68 grp[REG_R11] = rp->r_r11; in gcore_getgregs()
69 grp[REG_R12] = rp->r_r12; in gcore_getgregs()
70 grp[REG_R13] = rp->r_r13; in gcore_getgregs()
71 grp[REG_R14] = rp->r_r14; in gcore_getgregs()
72 grp[REG_R15] = rp->r_r15; in gcore_getgregs()
73 grp[REG_FSBASE] = pcb->pcb_fsbase; in gcore_getgregs()
74 grp[REG_GSBASE] = pcb->pcb_gsbase; in gcore_getgregs()
76 grp[REG_DS] = pcb->pcb_ds; in gcore_getgregs()
77 grp[REG_ES] = pcb->pcb_es; in gcore_getgregs()
78 grp[REG_FS] = pcb->pcb_fs; in gcore_getgregs()
79 grp[REG_GS] = pcb->pcb_gs; in gcore_getgregs()
81 grp[REG_DS] = rp->r_ds; in gcore_getgregs()
82 grp[REG_ES] = rp->r_es; in gcore_getgregs()
83 grp[REG_FS] = rp->r_fs; in gcore_getgregs()
84 grp[REG_GS] = rp->r_gs; in gcore_getgregs()
86 grp[REG_TRAPNO] = rp->r_trapno; in gcore_getgregs()
87 grp[REG_ERR] = rp->r_err; in gcore_getgregs()
88 grp[REG_RIP] = rp->r_rip; in gcore_getgregs()
89 grp[REG_CS] = rp->r_cs; in gcore_getgregs()
90 grp[REG_SS] = rp->r_ss; in gcore_getgregs()
91 grp[REG_RFL] = rp->r_rfl; in gcore_getgregs()
92 grp[REG_RSP] = rp->r_rsp; in gcore_getgregs()
94 bcopy(&rp->r_gs, grp, sizeof (gregset_t)); in gcore_getgregs()