Lines Matching refs:dest

231 prgregset_32ton(klwp_t *lwp, prgregset32_t src, prgregset_t dest)  in prgregset_32ton()  argument
235 dest[R_G0] = SET_LOWER_32(0, src[R_G0]); in prgregset_32ton()
236 dest[R_G1] = SET_LOWER_32(r->r_g1, src[R_G1]); in prgregset_32ton()
237 dest[R_G2] = SET_LOWER_32(r->r_g2, src[R_G2]); in prgregset_32ton()
238 dest[R_G3] = SET_LOWER_32(r->r_g3, src[R_G3]); in prgregset_32ton()
239 dest[R_G4] = SET_LOWER_32(r->r_g4, src[R_G4]); in prgregset_32ton()
240 dest[R_G5] = SET_LOWER_32(r->r_g5, src[R_G5]); in prgregset_32ton()
241 dest[R_G6] = SET_LOWER_32(r->r_g6, src[R_G6]); in prgregset_32ton()
242 dest[R_G7] = SET_LOWER_32(r->r_g7, src[R_G7]); in prgregset_32ton()
244 dest[R_O0] = SET_LOWER_32(r->r_o0, src[R_O0]); in prgregset_32ton()
245 dest[R_O1] = SET_LOWER_32(r->r_o1, src[R_O1]); in prgregset_32ton()
246 dest[R_O2] = SET_LOWER_32(r->r_o2, src[R_O2]); in prgregset_32ton()
247 dest[R_O3] = SET_LOWER_32(r->r_o3, src[R_O3]); in prgregset_32ton()
248 dest[R_O4] = SET_LOWER_32(r->r_o4, src[R_O4]); in prgregset_32ton()
249 dest[R_O5] = SET_LOWER_32(r->r_o5, src[R_O5]); in prgregset_32ton()
250 dest[R_O6] = SET_LOWER_32(r->r_o6, src[R_O6]); in prgregset_32ton()
251 dest[R_O7] = SET_LOWER_32(r->r_o7, src[R_O7]); in prgregset_32ton()
256 dest[R_L0] = SET_LOWER_32(rw->rw_local[0], src[R_L0]); in prgregset_32ton()
257 dest[R_L1] = SET_LOWER_32(rw->rw_local[1], src[R_L1]); in prgregset_32ton()
258 dest[R_L2] = SET_LOWER_32(rw->rw_local[2], src[R_L2]); in prgregset_32ton()
259 dest[R_L3] = SET_LOWER_32(rw->rw_local[3], src[R_L3]); in prgregset_32ton()
260 dest[R_L4] = SET_LOWER_32(rw->rw_local[4], src[R_L4]); in prgregset_32ton()
261 dest[R_L5] = SET_LOWER_32(rw->rw_local[5], src[R_L5]); in prgregset_32ton()
262 dest[R_L6] = SET_LOWER_32(rw->rw_local[6], src[R_L6]); in prgregset_32ton()
263 dest[R_L7] = SET_LOWER_32(rw->rw_local[7], src[R_L7]); in prgregset_32ton()
265 dest[R_I0] = SET_LOWER_32(rw->rw_in[0], src[R_I0]); in prgregset_32ton()
266 dest[R_I1] = SET_LOWER_32(rw->rw_in[1], src[R_I1]); in prgregset_32ton()
267 dest[R_I2] = SET_LOWER_32(rw->rw_in[2], src[R_I2]); in prgregset_32ton()
268 dest[R_I3] = SET_LOWER_32(rw->rw_in[3], src[R_I3]); in prgregset_32ton()
269 dest[R_I4] = SET_LOWER_32(rw->rw_in[4], src[R_I4]); in prgregset_32ton()
270 dest[R_I5] = SET_LOWER_32(rw->rw_in[5], src[R_I5]); in prgregset_32ton()
271 dest[R_I6] = SET_LOWER_32(rw->rw_in[6], src[R_I6]); in prgregset_32ton()
272 dest[R_I7] = SET_LOWER_32(rw->rw_in[7], src[R_I7]); in prgregset_32ton()
274 dest[R_L0] = (uint32_t)src[R_L0]; in prgregset_32ton()
275 dest[R_L1] = (uint32_t)src[R_L1]; in prgregset_32ton()
276 dest[R_L2] = (uint32_t)src[R_L2]; in prgregset_32ton()
277 dest[R_L3] = (uint32_t)src[R_L3]; in prgregset_32ton()
278 dest[R_L4] = (uint32_t)src[R_L4]; in prgregset_32ton()
279 dest[R_L5] = (uint32_t)src[R_L5]; in prgregset_32ton()
280 dest[R_L6] = (uint32_t)src[R_L6]; in prgregset_32ton()
281 dest[R_L7] = (uint32_t)src[R_L7]; in prgregset_32ton()
283 dest[R_I0] = (uint32_t)src[R_I0]; in prgregset_32ton()
284 dest[R_I1] = (uint32_t)src[R_I1]; in prgregset_32ton()
285 dest[R_I2] = (uint32_t)src[R_I2]; in prgregset_32ton()
286 dest[R_I3] = (uint32_t)src[R_I3]; in prgregset_32ton()
287 dest[R_I4] = (uint32_t)src[R_I4]; in prgregset_32ton()
288 dest[R_I5] = (uint32_t)src[R_I5]; in prgregset_32ton()
289 dest[R_I6] = (uint32_t)src[R_I6]; in prgregset_32ton()
290 dest[R_I7] = (uint32_t)src[R_I7]; in prgregset_32ton()
293 dest[R_CCR] = ((r->r_tstate >> TSTATE_CCR_SHIFT) & CCR_XCC) | in prgregset_32ton()
296 dest[R_PC] = SET_LOWER_32(r->r_pc, src[R_PC]); in prgregset_32ton()
297 dest[R_nPC] = SET_LOWER_32(r->r_npc, src[R_nPC]); in prgregset_32ton()
298 dest[R_Y] = (uint32_t)src[R_Y]; in prgregset_32ton()
300 dest[R_ASI] = (r->r_tstate >> TSTATE_ASI_SHIFT) & TSTATE_ASI_MASK; in prgregset_32ton()
301 dest[R_FPRS] = lwptofpu(lwp)->fpu_fprs; in prgregset_32ton()