Home
last modified time | relevance | path

Searched refs:kCondNe (Results 1 – 20 of 20) sorted by relevance

/art/compiler/dex/quick/arm/
Dcall_arm.cc90 OpCondBranch(kCondNe, target); in GenLargeSparseSwitch()
199 LIR* not_unlocked_branch = OpCmpImmBranch(kCondNe, rs_r1, 0, NULL); in GenMonitorEnter()
233 it = OpIT(kCondNe, "T"); in GenMonitorEnter()
269 LIR* slow_unlock_branch = OpCmpBranch(kCondNe, rs_r1, rs_r2, NULL); in GenMonitorExit()
Dint_arm.cc167 if (val == 0 && (ccode == kCondEq || ccode == kCondNe)) { in GenFusedLongCmpImmBranch()
177 case kCondNe: in GenFusedLongCmpImmBranch()
178 OpCmpImmBranch(kCondNe, high_reg, val_hi, (ccode == kCondEq) ? not_taken : taken); in GenFusedLongCmpImmBranch()
214 (false_val == 0 && code == kCondNe)) { in GenSelectConst32()
217 LIR* it = OpIT(kCondNe, ""); in GenSelectConst32()
245 if (ccode == kCondNe) { in GenSelect()
253 LIR* it = OpIT(true_val == 0 ? kCondNe : kCondUge, ""); in GenSelect()
331 OpCondBranch(kCondNe, not_taken); in GenFusedLongCmpBranch()
333 case kCondNe: in GenFusedLongCmpBranch()
334 OpCondBranch(kCondNe, taken); in GenFusedLongCmpBranch()
[all …]
Dfp_arm.cc236 case kCondNe: in GenFusedFPCmpBranch()
Dtarget_arm.cc246 case kCondNe: res = kArmCondNe; break; in ArmConditionEncoding()
Dutility_arm.cc1123 OpCmpImmBranch(kCondNe, r_temp, 0, fail_target); in StoreBaseDisp()
/art/compiler/dex/quick/arm64/
Dcall_arm64.cc82 OpCondBranch(kCondNe, loop_entry); in GenLargeSparseSwitch()
211 LIR* not_unlocked_branch = OpCmpImmBranch(kCondNe, rs_w3, 0, NULL); in GenMonitorEnter()
258 LIR* slow_unlock_branch = OpCmpBranch(kCondNe, rs_w1, rs_w2, NULL); in GenMonitorExit()
Dint_arm64.cc233 if (val == 0 && (ccode == kCondEq || ccode == kCondNe)) { in GenFusedLongCmpBranch()
771 LIR* early_exit = OpCondBranch(kCondNe, NULL); in GenInlinedCas()
775 OpCondBranch(kCondNe, loop); in GenInlinedCas()
880 LIR* jmp_to_loop = OpCmpImmBranch(kCondNe, rs_length, 0, nullptr); in GenInlinedArrayCopyCharArray()
938 return OpCondBranch((target == NULL) ? kCondEq : kCondNe, target); in OpTestSuspend()
Dfp_arm64.cc222 case kCondNe: in GenFusedFPCmpBranch()
Dtarget_arm64.cc192 case kCondNe: res = kArmCondNe; break; in ArmConditionEncoding()
/art/compiler/dex/quick/mips/
Dint_mips.cc54 LIR* branch = OpCmpImmBranch(kCondNe, rl_result.reg, 0, NULL); in GenCmpLong()
76 case kCondNe: in OpCmpBranch()
149 case kCondNe: opc = kMipsBnez; break; in OpCmpImmBranch()
365 return OpCmpImmBranch((target == NULL) ? kCondEq : kCondNe, rs_rMIPS_SUSPEND, 0, target); in OpTestSuspend()
Dcall_mips.cc117 OpCmpBranch(kCondNe, rl_src.reg, r_key, loop_label); in GenLargeSparseSwitch()
/art/compiler/dex/
Dcompiler_enums.h337 kCondNe, // not equal enumerator
Dmir_optimization.cc209 kCondEq, kCondNe, kCondLt, kCondGe, kCondGt, kCondLe
224 COMPILE_ASSERT(ConditionCodeForIfCcZ(Instruction::IF_NEZ) == kCondNe, check_if_nez_ccode);
/art/compiler/dex/quick/
Dcodegen_util.cc942 case kCondNe: res = kCondNe; break; in FlipComparisonOrder()
957 case kCondEq: res = kCondNe; break; in NegateComparison()
958 case kCondNe: res = kCondEq; break; in NegateComparison()
Dgen_common.cc225 cond = kCondNe; in GenCompareAndBranch()
269 if (constant_value == 0 && (cond == kCondEq || cond == kCondNe)) { in GenCompareAndBranch()
290 cond = kCondNe; in GenCompareZeroAndBranch()
1290 LIR* branch = OpCmpImmBranch(kCondNe, TargetReg(kArg0, kRef), 0, nullptr); in GenCheckCast()
1305 LIR* branch2 = OpCmpBranch(kCondNe, TargetReg(kArg1, kRef), class_reg, nullptr); in GenCheckCast()
Dgen_invoke.cc1208 slow_path_branch = OpCondBranch(kCondNe, nullptr); in GenInlinedReferenceGetReferent()
1211 slow_path_branch = OpCmpImmBranch(kCondNe, reg_slow_path, 0, nullptr); in GenInlinedReferenceGetReferent()
/art/compiler/dex/quick/x86/
Dint_x86.cc75 case kCondNe: return kX86CondNe; in X86ConditionEncoding()
107 if ((check_value == 0) && (cond == kCondEq || cond == kCondNe)) { in OpCmpImmBranch()
429 case kCondNe: in GenFusedLongCmpBranch()
453 bool is_equality_test = ccode == kCondEq || ccode == kCondNe; in GenFusedLongCmpImmBranch()
1232 return OpCondBranch((target == NULL) ? kCondNe : kCondEq, target); in OpTestSuspend()
Dfp_x86.cc521 case kCondNe: in GenFusedFPCmpBranch()
Dtarget_x86.cc1401 LIR* failed_branch = OpCondBranch(kCondNe, nullptr); in GenInlinedIndexOf()
/art/compiler/dex/portable/
Dmir_to_gbc.cc319 case kCondNe: res = irb_->CreateICmpNE(src1, src2); break; in ConvertCompare()
925 ConvertCompareAndBranch(bb, mir, kCondNe, rl_src[0], rl_src[1]); in ConvertMIRNode()
943 ConvertCompareZeroAndBranch(bb, mir, kCondNe, rl_src[0]); in ConvertMIRNode()