Lines Matching defs:rs
129 getgregs(ulwp_t *ulwp, gregset_t rs)
134 rs[REG_RBX] = status.pr_reg[REG_RBX];
135 rs[REG_R12] = status.pr_reg[REG_R12];
136 rs[REG_R13] = status.pr_reg[REG_R13];
137 rs[REG_R14] = status.pr_reg[REG_R14];
138 rs[REG_R15] = status.pr_reg[REG_R15];
139 rs[REG_RBP] = status.pr_reg[REG_RBP];
140 rs[REG_RSP] = status.pr_reg[REG_RSP];
141 rs[REG_RIP] = status.pr_reg[REG_RIP];
143 rs[REG_RBX] = 0;
144 rs[REG_R12] = 0;
145 rs[REG_R13] = 0;
146 rs[REG_R14] = 0;
147 rs[REG_R15] = 0;
148 rs[REG_RBP] = 0;
149 rs[REG_RSP] = 0;
150 rs[REG_RIP] = 0;
155 setgregs(ulwp_t *ulwp, gregset_t rs)
160 status.pr_reg[REG_RBX] = rs[REG_RBX];
161 status.pr_reg[REG_R12] = rs[REG_R12];
162 status.pr_reg[REG_R13] = rs[REG_R13];
163 status.pr_reg[REG_R14] = rs[REG_R14];
164 status.pr_reg[REG_R15] = rs[REG_R15];
165 status.pr_reg[REG_RBP] = rs[REG_RBP];
166 status.pr_reg[REG_RSP] = rs[REG_RSP];
167 status.pr_reg[REG_RIP] = rs[REG_RIP];
173 __csigsetjmp(sigjmp_buf env, int savemask, gregset_t rs)
195 (void) memcpy(ucp->uc_mcontext.gregs, rs, _NGREG * sizeof (greg_t));