Lines Matching refs:fasttrap_getreg
224 static ulong_t fasttrap_getreg(struct regs *, uint_t);
237 * avoid a call to fasttrap_getreg(), and safely use rp->r_sp
252 argv[i] = fasttrap_getreg(rp, R_O0 + x + inc);
265 argv[i] = fasttrap_getreg(rp, R_O0 + x + inc);
333 uintptr_t arg0 = fasttrap_getreg(rp, R_I0);
334 uintptr_t arg1 = fasttrap_getreg(rp, R_I1);
335 uintptr_t arg2 = fasttrap_getreg(rp, R_I2);
336 uintptr_t arg3 = fasttrap_getreg(rp, R_I3);
337 uintptr_t arg4 = fasttrap_getreg(rp, R_I4);
394 uintptr_t arg0 = fasttrap_getreg(rp, R_I0);
395 uintptr_t arg1 = fasttrap_getreg(rp, R_I1);
396 uintptr_t arg2 = fasttrap_getreg(rp, R_I2);
397 uintptr_t arg3 = fasttrap_getreg(rp, R_I3);
592 value = fasttrap_getreg(rp, RS1(tp->ftt_instr)) + imm;
594 value = fasttrap_getreg(rp, RS1(tp->ftt_instr)) +
595 fasttrap_getreg(rp, RS2(tp->ftt_instr));
629 target = fasttrap_getreg(rp, RS1(tp->ftt_instr)) + imm;
631 target = fasttrap_getreg(rp, RS1(tp->ftt_instr)) +
632 fasttrap_getreg(rp, RS2(tp->ftt_instr));
651 value = fasttrap_getreg(rp, RS1(tp->ftt_instr)) | imm;
653 value = fasttrap_getreg(rp, RS1(tp->ftt_instr)) |
654 fasttrap_getreg(rp, RS2(tp->ftt_instr));
831 value = (int64_t)fasttrap_getreg(rp, reg);
911 npc = fasttrap_getreg(rp, rs1) + imm;
916 npc = fasttrap_getreg(rp, rs1) +
917 fasttrap_getreg(rp, rs2);
1384 fasttrap_getreg(struct regs *rp, uint_t reg)