Home | History | Annotate | Download | only in arm64

Lines Matching refs:temp_reg

287 LIR* Arm64Mir2Lir::OpCmpMemImmBranch(ConditionCode cond, RegStorage temp_reg,
292 // Always compare 32-bit value no matter what temp_reg is.
293 if (temp_reg.Is64Bit()) {
294 temp_reg = As32BitReg(temp_reg);
296 Load32Disp(base_reg, offset, temp_reg);
297 LIR* branch = OpCmpImmBranch(cond, temp_reg, check_value, target);