Searched refs:r_disp (Results 1 - 3 of 3) sorted by relevance

/art/compiler/dex/quick/mips/
H A Dcall_mips.cc66 * lw r_disp, -4(r_base)
67 * addu rRA, r_disp
122 RegStorage r_disp = AllocTemp(); local
123 Load32Disp(r_base, -4, r_disp);
125 OpRegRegReg(kOpAdd, rs_ra, rs_ra, r_disp);
140 * lw r_disp, [rRA, r_val]
141 * addu rRA, r_disp
201 RegStorage r_disp = AllocTemp(); local
202 LoadBaseIndexed(r_base, r_key, r_disp, 2, k32);
206 OpRegRegReg(kOpAdd, rs_ra, rs_ra, r_disp);
[all...]
/art/compiler/dex/quick/arm/
H A Dcall_arm.cc49 * ldmia r_base!, {r_key, r_disp}
53 * add rARM_PC, r_disp ; This is the branch from which we compute displacement
72 RegStorage r_disp = AllocTemp(); local
73 // Make sure r_key's register number is less than r_disp's number for ldmia
74 if (r_key.GetReg() > r_disp.GetReg()) {
75 RegStorage tmp = r_disp;
76 r_disp = r_key;
87 NewLIR2(kThumb2LdmiaWB, r_base.GetReg(), (1 << r_key.GetRegNum()) | (1 << r_disp.GetRegNum()));
91 LIR* switch_branch = NewLIR1(kThumb2AddPCR, r_disp.GetReg());
/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc46 * ldp r_key, r_disp, [r_base], #8
51 * add r_base, r_disp
71 RegStorage r_disp = AllocTemp(); local
83 NewLIR4(kA64LdpPost4rrXD, r_key.GetReg(), r_disp.GetReg(), r_base.GetReg(), 2);
95 OpRegRegRegExtend(kOpAdd, r_base, r_base, As64BitReg(r_disp), kA64Sxtw, 0U);

Completed in 807 milliseconds