Home
last modified time | relevance | path

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

/art/compiler/dex/quick/x86/
Dint_x86.cc69 case kCondNe: return kX86CondNe; in X86ConditionEncoding()
100 if ((check_value == 0) && (cond == kCondEq || cond == kCondNe)) { in OpCmpImmBranch()
189 case kCondNe: in GenFusedLongCmpBranch()
289 return OpCondBranch((target == NULL) ? kCondNe : kCondEq, target); in OpTestSuspend()
Dfp_x86.cc314 case kCondNe: in GenFusedFPCmpBranch()
/art/compiler/dex/quick/mips/
Dint_mips.cc53 LIR* branch = OpCmpImmBranch(kCondNe, rl_result.low_reg, 0, NULL); in GenCmpLong()
76 case kCondNe: in OpCmpBranch()
150 case kCondNe: opc = kMipsBnez; break; in OpCmpImmBranch()
308 return OpCmpImmBranch((target == NULL) ? kCondEq : kCondNe, rMIPS_SUSPEND, 0, target); in OpTestSuspend()
Dcall_mips.cc117 OpCmpBranch(kCondNe, rl_src.low_reg, r_key, loop_label); in GenSparseSwitch()
/art/compiler/dex/quick/arm/
Dint_arm.cc134 case kCondNe: in GenFusedLongCmpImmBranch()
142 condition = kCondNe; in GenFusedLongCmpImmBranch()
151 OpCmpImmBranch(kCondNe, high_reg, val_hi, target); in GenFusedLongCmpImmBranch()
275 OpCondBranch(kCondNe, not_taken); in GenFusedLongCmpBranch()
277 case kCondNe: in GenFusedLongCmpBranch()
278 OpCondBranch(kCondNe, taken); in GenFusedLongCmpBranch()
596 return OpCondBranch((target == NULL) ? kCondEq : kCondNe, target); in OpTestSuspend()
Dcall_arm.cc355 OpCondBranch(kCondNe, target); in GenSparseSwitch()
486 OpIT(kCondNe, "T"); in GenMonitorEnter()
Dfp_arm.cc200 case kCondNe: in GenFusedFPCmpBranch()
Dtarget_arm.cc200 case kCondNe: res = kArmCondNe; break; in ArmConditionEncoding()
/art/compiler/dex/quick/
Dgen_common.cc95 cond = kCondNe; in GenCompareAndBranch()
149 cond = kCondNe; in GenCompareZeroAndBranch()
377 LIR* branch_over = OpCmpImmBranch(kCondNe, rBase, 0, NULL); in GenSput()
459 LIR* branch_over = OpCmpImmBranch(kCondNe, rBase, 0, NULL); in GenSget()
841 LIR* branch = OpCmpImmBranch(kCondNe, TargetReg(kRet0), 0, NULL); in GenConstString()
928 ne_branchover = OpCmpBranch(kCondNe, check_class, object_class, NULL); in GenInstanceofFinal()
977 LIR* hop_branch = OpCmpImmBranch(kCondNe, class_reg, 0, NULL); in GenInstanceofCallingHelper()
1010 branchover = OpCmpBranch(kCondNe, TargetReg(kArg1), TargetReg(kArg2), NULL); in GenInstanceofCallingHelper()
1114 LIR* hop_branch = OpCmpImmBranch(kCondNe, class_reg, 0, NULL); in GenCheckCast()
Dcodegen_util.cc927 case kCondNe: res = kCondNe; break; in FlipComparisonOrder()
/art/compiler/dex/
Dcompiler_enums.h200 kCondNe, // not equal enumerator
Dmir_optimization.cc243 ccode = kCondNe; in BasicBlockOpt()
/art/compiler/dex/portable/
Dmir_to_gbc.cc302 case kCondNe: res = irb_->CreateICmpNE(src1, src2); break; in ConvertCompare()
908 ConvertCompareAndBranch(bb, mir, kCondNe, rl_src[0], rl_src[1]); in ConvertMIRNode()
926 ConvertCompareZeroAndBranch(bb, mir, kCondNe, rl_src[0]); in ConvertMIRNode()