Searched refs:kCondNe (Results 1 – 13 of 13) sorted by relevance
/art/compiler/dex/quick/x86/ |
D | int_x86.cc | 69 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()
|
D | fp_x86.cc | 314 case kCondNe: in GenFusedFPCmpBranch()
|
/art/compiler/dex/quick/mips/ |
D | int_mips.cc | 53 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()
|
D | call_mips.cc | 117 OpCmpBranch(kCondNe, rl_src.low_reg, r_key, loop_label); in GenSparseSwitch()
|
/art/compiler/dex/quick/arm/ |
D | int_arm.cc | 134 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()
|
D | call_arm.cc | 355 OpCondBranch(kCondNe, target); in GenSparseSwitch() 486 OpIT(kCondNe, "T"); in GenMonitorEnter()
|
D | fp_arm.cc | 200 case kCondNe: in GenFusedFPCmpBranch()
|
D | target_arm.cc | 200 case kCondNe: res = kArmCondNe; break; in ArmConditionEncoding()
|
/art/compiler/dex/quick/ |
D | gen_common.cc | 95 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()
|
D | codegen_util.cc | 927 case kCondNe: res = kCondNe; break; in FlipComparisonOrder()
|
/art/compiler/dex/ |
D | compiler_enums.h | 200 kCondNe, // not equal enumerator
|
D | mir_optimization.cc | 243 ccode = kCondNe; in BasicBlockOpt()
|
/art/compiler/dex/portable/ |
D | mir_to_gbc.cc | 302 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()
|