Searched refs:kCondEq (Results 1 - 18 of 18) sorted by relevance

/art/compiler/dex/quick/arm/
H A Dint_arm.cc144 LIR* branch3 = OpCondBranch(kCondEq, nullptr);
178 if (val == 0 && (ccode == kCondEq || ccode == kCondNe)) {
187 case kCondEq:
189 OpCmpImmBranch(kCondNe, high_reg, val_hi, (ccode == kCondEq) ? not_taken : taken);
225 if ((true_val == 0 && code == kCondEq) ||
230 LoadConstant(rs_dest, code == kCondEq ? false_val : true_val);
257 // Change kCondNe to kCondEq for the special cases below.
259 ccode = kCondEq;
263 if (cheap_false_val && ccode == kCondEq && (true_val == 0 || true_val == -1)) {
269 } else if (cheap_false_val && ccode == kCondEq
[all...]
H A Dcall_arm.cc90 LIR* it = OpIT(kCondEq, "");
160 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, nullptr);
174 LIR* lock_success_branch = OpCmpImmBranch(kCondEq, rs_r1, 0, nullptr);
207 LIR* it = OpIT(kCondEq, "");
242 null_check_branch = OpCmpImmBranch(kCondEq, rs_r0, 0, nullptr);
265 unlock_success_branch = OpCmpImmBranch(kCondEq, rs_r2, 0, nullptr);
300 LIR* it = OpIT(kCondEq, "EE");
314 LIR* it = OpIT(kCondEq, "");
H A Dfp_arm.cc266 case kCondEq:
347 it = OpIT(kCondEq, "");
H A Dtarget_arm.cc246 case kCondEq: res = kArmCondEq; break;
/art/compiler/dex/quick/
H A Dgen_common.cc84 LIR* branch = OpCmpImmBranch(kCondEq, r_result, 0, nullptr);
113 unresolved_branch = OpCmpImmBranch(kCondEq, r_base, 0, nullptr);
192 LIR* branch = OpCmpImmBranch(kCondEq, reg, 0, nullptr);
284 LIR* branch = OpCmpImmBranch(kCondEq, reg, 0, nullptr);
355 cond = kCondEq;
402 if (constant_value == 0 && (cond == kCondEq || cond == kCondNe)) {
419 cond = kCondEq;
1168 LIR* null_branchover = OpCmpImmBranch(kCondEq, object.reg, 0, nullptr);
1197 LIR* it = OpIT(kCondEq, ""); // if-convert the test
1201 GenSelectConst32(check_class, object_class, kCondEq,
[all...]
H A Dcodegen_util.cc338 LIR* branch_over = OpCmpImmBranch(kCondEq, val_reg, 0, nullptr);
1000 case kCondEq: res = kCondEq; break;
1016 case kCondEq: res = kCondNe; break;
1017 case kCondNe: res = kCondEq; break;
H A Dgen_invoke.cc1124 LIR* data_null_check_branch = OpCmpImmBranch(kCondEq, rl_data.reg, 0, nullptr);
1157 LIR* string_null_check_branch = OpCmpImmBranch(kCondEq, rl_string.reg, 0, nullptr);
1410 LIR* cmp_null_check_branch = OpCmpImmBranch(kCondEq, reg_cmp, 0, nullptr);
/art/compiler/dex/quick/arm64/
H A Dcall_arm64.cc171 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, nullptr);
185 LIR* lock_success_branch = OpCmpImmBranch(kCondEq, rs_w3, 0, nullptr);
224 null_check_branch = OpCmpImmBranch(kCondEq, rs_x0, 0, nullptr);
248 unlock_success_branch = OpCmpImmBranch(kCondEq, rs_w1, 0, nullptr);
H A Dint_arm64.cc242 if (val == 0 && (ccode == kCondEq || ccode == kCondNe)) {
849 LIR* src_check_branch = OpCmpImmBranch(kCondEq, rs_src, 0, nullptr);
850 LIR* dst_check_branch = OpCmpImmBranch(kCondEq, rs_dst, 0, nullptr);
853 LIR* src_dst_same = OpCmpBranch(kCondEq, rs_src, rs_dst, nullptr);
907 LIR* jmp_to_ret = OpCmpImmBranch(kCondEq, rs_length, 0, nullptr);
1019 LIR* cmp_branch = OpCmpImmBranch(target == nullptr ? kCondNe: kCondEq, r_tmp, 0, target);
H A Dfp_arm64.cc249 case kCondEq:
H A Dtarget_arm64.cc193 case kCondEq: res = kArmCondEq; break;
/art/compiler/dex/
H A Dcompiler_enums.h453 kCondEq, // equal enumerator in enum:art::ConditionCode
H A Dmir_optimization.cc227 kCondEq, kCondNe, kCondLt, kCondGe, kCondGt, kCondLe
237 static_assert(ConditionCodeForIfCcZ(Instruction::IF_EQZ) == kCondEq, "if_eqz ccode"); member in namespace:art
/art/compiler/dex/quick/mips/
H A Dint_mips.cc90 case kCondEq:
161 case kCondEq: opc = kMipsBeqz; break;
456 return OpCmpImmBranch((target == nullptr) ? kCondEq : kCondNe, TargetPtrReg(kSuspend), 0, target);
H A Dcall_mips.cc118 LIR* exit_branch = OpCmpBranch(kCondEq, r_base, r_end, nullptr);
/art/compiler/dex/quick/x86/
H A Dtarget_x86.cc1138 LIR* src_dst_same = OpCmpBranch(kCondEq, rs_rAX, rs_rCX, nullptr);
1139 LIR* src_null_branch = OpCmpImmBranch(kCondEq, rs_rAX, 0, nullptr);
1140 LIR* dst_null_branch = OpCmpImmBranch(kCondEq, rs_rCX, 0, nullptr);
1212 LIR* jmp_to_begin_loop = OpCmpImmBranch(kCondEq, rs_rCX, 0, nullptr);
1220 LIR* jmp_to_ret = OpCmpImmBranch(kCondEq, rs_rDX, 0, nullptr);
H A Dint_x86.cc77 case kCondEq: return kX86CondEq;
110 if ((check_value == 0) && (cond == kCondEq || cond == kCondNe)) {
300 * For ccode == kCondEq:
358 * For ccode == kCondEq:
432 case kCondEq:
457 bool is_equality_test = ccode == kCondEq || ccode == kCondNe;
1494 GenDivZeroCheck(kCondEq);
1589 return OpCondBranch((target == nullptr) ? kCondNe : kCondEq, target);
3025 LIR* null_branchover = OpCmpImmBranch(kCondEq, object.reg, 0, nullptr);
H A Dfp_x86.cc534 case kCondEq:

Completed in 233 milliseconds