Lines Matching refs:OpCmpImmBranch

189       OpCmpImmBranch(kCondNe, high_reg, val_hi, (ccode == kCondEq) ? not_taken : taken);  in GenFusedLongCmpImmBranch()
192 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken); in GenFusedLongCmpImmBranch()
193 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken); in GenFusedLongCmpImmBranch()
197 OpCmpImmBranch(kCondLt, high_reg, val_hi, taken); in GenFusedLongCmpImmBranch()
198 OpCmpImmBranch(kCondGt, high_reg, val_hi, not_taken); in GenFusedLongCmpImmBranch()
202 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken); in GenFusedLongCmpImmBranch()
203 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken); in GenFusedLongCmpImmBranch()
207 OpCmpImmBranch(kCondGt, high_reg, val_hi, taken); in GenFusedLongCmpImmBranch()
208 OpCmpImmBranch(kCondLt, high_reg, val_hi, not_taken); in GenFusedLongCmpImmBranch()
214 OpCmpImmBranch(ccode, low_reg, val_lo, taken); in GenFusedLongCmpImmBranch()
380 LIR* ArmMir2Lir::OpCmpImmBranch(ConditionCode cond, RegStorage reg, int check_value, LIR* target) { in OpCmpImmBranch() function in art::ArmMir2Lir
1018 LIR* src_check_branch = OpCmpImmBranch(kCondEq, rs_src, 0, nullptr); in GenInlinedArrayCopyCharArray()
1019 LIR* dst_check_branch = OpCmpImmBranch(kCondEq, rs_dst, 0, nullptr); in GenInlinedArrayCopyCharArray()
1025 LIR* len_neg_or_too_big = OpCmpImmBranch(kCondHi, rs_length, kLargeArrayThreshold, nullptr); in GenInlinedArrayCopyCharArray()
1030 LIR* src_pos_negative = OpCmpImmBranch(kCondLt, rs_pos, 0, nullptr); in GenInlinedArrayCopyCharArray()
1036 LIR* dst_pos_negative = OpCmpImmBranch(kCondLt, rs_pos, 0, nullptr); in GenInlinedArrayCopyCharArray()
1055 LIR* jmp_to_begin_loop = OpCmpImmBranch(kCondEq, rs_tmp, 0, nullptr); in GenInlinedArrayCopyCharArray()
1062 LIR* jmp_to_ret = OpCmpImmBranch(kCondEq, rs_length, 0, nullptr); in GenInlinedArrayCopyCharArray()
1174 LIR* cmp_branch = OpCmpImmBranch((target == nullptr) ? kCondNe : kCondEq, t_reg, in OpTestSuspend()