Home | History | Annotate | Download | only in mips

Lines Matching refs:r_base

50  *   addiu r_base, rRA, <table> - <BaseLabel>    ; table relative to BaseLabel
51 addu r_end, r_end, r_base ; end of table
54 * beq r_base, r_end, done
55 * lw r_key, 0(r_base)
56 * addu r_base, 8
58 * lw r_disp, -4(r_base)
104 RegStorage r_base = AllocTemp();
105 NewLIR4(kMipsDelta, r_base.GetReg(), 0, WrapPointer(base_label), WrapPointer(tab_rec));
106 OpRegRegReg(kOpAdd, r_end, r_end, r_base);
114 LIR* exit_branch = OpCmpBranch(kCondEq, r_base, r_end, NULL);
115 Load32Disp(r_base, 0, r_key);
116 OpRegImm(kOpAdd, r_base, 8);
119 Load32Disp(r_base, -4, r_disp);
197 RegStorage r_base = AllocTemp();
198 NewLIR4(kMipsDelta, r_base.GetReg(), 0, WrapPointer(base_label), WrapPointer(tab_rec));
202 LoadBaseIndexed(r_base, r_key, r_disp, 2, k32);