Searched refs:CmpVal (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 1827 uint64_t Mask, uint64_t CmpVal, in getTestUnderMaskCond() argument 1846 if (CmpVal == 0) { in getTestUnderMaskCond() 1852 if (EffectivelyUnsigned && CmpVal <= Low) { in getTestUnderMaskCond() 1858 if (EffectivelyUnsigned && CmpVal < Low) { in getTestUnderMaskCond() 1866 if (CmpVal == Mask) { in getTestUnderMaskCond() 1872 if (EffectivelyUnsigned && CmpVal >= Mask - Low && CmpVal < Mask) { in getTestUnderMaskCond() 1878 if (EffectivelyUnsigned && CmpVal > Mask - Low && CmpVal <= Mask) { in getTestUnderMaskCond() 1886 if (EffectivelyUnsigned && CmpVal >= Mask - High && CmpVal < High) { in getTestUnderMaskCond() 1892 if (EffectivelyUnsigned && CmpVal > Mask - High && CmpVal <= High) { in getTestUnderMaskCond() 1902 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == Low) in getTestUnderMaskCond() [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2999 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local 3001 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 3003 unsigned CmpVal = ValToCheck.countTrailingZeros() - 1; in visitICmpInst() local 3005 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 3043 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local 3045 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 3047 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local 3049 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst() 3762 APInt CmpVal = APInt::getOneBitSet(TypeBits, ShAmt); in visitICmpInst() local 3763 return new ICmpInst(Pred, Xor, Builder->getInt(CmpVal)); in visitICmpInst()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 1089 Value *CmpVal = Constant::getNullValue(ShadowTy); in instrumentAddress() local 1093 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); in instrumentAddress()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 1424 unsigned CmpVal = MI->getOperand(2).getReg(); in emitAtomicCmpSwapPartword() local 1502 .addReg(CmpVal).addImm(MaskImm); in emitAtomicCmpSwapPartword()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 4224 static bool isUndefOrEqual(int Val, int CmpVal) { in isUndefOrEqual() argument 4225 return (Val < 0 || Val == CmpVal); in isUndefOrEqual()
|