Searched refs:CmpVal (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 1468 uint64_t Mask, uint64_t CmpVal, in getTestUnderMaskCond() argument 1487 if (CmpVal == 0) { in getTestUnderMaskCond() 1493 if (EffectivelyUnsigned && CmpVal <= Low) { in getTestUnderMaskCond() 1499 if (EffectivelyUnsigned && CmpVal < Low) { in getTestUnderMaskCond() 1507 if (CmpVal == Mask) { in getTestUnderMaskCond() 1513 if (EffectivelyUnsigned && CmpVal >= Mask - Low && CmpVal < Mask) { in getTestUnderMaskCond() 1519 if (EffectivelyUnsigned && CmpVal > Mask - Low && CmpVal <= Mask) { in getTestUnderMaskCond() 1527 if (EffectivelyUnsigned && CmpVal >= Mask - High && CmpVal < High) { in getTestUnderMaskCond() 1533 if (EffectivelyUnsigned && CmpVal > Mask - High && CmpVal <= High) { in getTestUnderMaskCond() 1543 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == Low) in getTestUnderMaskCond() [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2905 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local 2907 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 2909 unsigned CmpVal = ValToCheck.countTrailingZeros() - 1; in visitICmpInst() local 2911 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 2950 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local 2952 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 2954 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local 2956 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 3627 APInt CmpVal = APInt::getOneBitSet(TypeBits, ShAmt); in visitICmpInst() local 3628 return new ICmpInst(Pred, Xor, Builder->getInt(CmpVal)); in visitICmpInst()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 1043 Value *CmpVal = Constant::getNullValue(ShadowTy); in instrumentAddress() local 1047 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); in instrumentAddress()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 1391 unsigned CmpVal = MI->getOperand(2).getReg(); in emitAtomicCmpSwapPartword() local 1470 .addReg(CmpVal).addImm(MaskImm); in emitAtomicCmpSwapPartword()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelLowering.cpp | 3563 APFloat CmpVal = CCmp->getValueAPF(); in selectCCOpsAreFMaxCompatible() local 3564 CmpVal.convert(APFloat::IEEEdouble, APFloat::rmNearestTiesToEven, &Lossy); in selectCCOpsAreFMaxCompatible() 3565 return CResult->getValueAPF().bitwiseIsEqual(CmpVal); in selectCCOpsAreFMaxCompatible()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 3799 static bool isUndefOrEqual(int Val, int CmpVal) { in isUndefOrEqual() argument 3800 return (Val < 0 || Val == CmpVal); in isUndefOrEqual()
|