Home
last modified time | relevance | path

Searched refs:CmpVal (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp1880 uint64_t Mask, uint64_t CmpVal, in getTestUnderMaskCond() argument
1899 if (CmpVal == 0) { in getTestUnderMaskCond()
1905 if (EffectivelyUnsigned && CmpVal > 0 && CmpVal <= Low) { in getTestUnderMaskCond()
1911 if (EffectivelyUnsigned && CmpVal < Low) { in getTestUnderMaskCond()
1919 if (CmpVal == Mask) { in getTestUnderMaskCond()
1925 if (EffectivelyUnsigned && CmpVal >= Mask - Low && CmpVal < Mask) { in getTestUnderMaskCond()
1931 if (EffectivelyUnsigned && CmpVal > Mask - Low && CmpVal <= Mask) { in getTestUnderMaskCond()
1939 if (EffectivelyUnsigned && CmpVal >= Mask - High && CmpVal < High) { in getTestUnderMaskCond()
1945 if (EffectivelyUnsigned && CmpVal > Mask - High && CmpVal <= High) { in getTestUnderMaskCond()
1955 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == Low) in getTestUnderMaskCond()
[all …]
/external/llvm/lib/Target/AMDGPU/
DAMDGPUISelDAGToDAG.cpp1383 SDValue CmpVal = Mem->getOperand(2); in SelectATOMIC_CMP_SWAP() local
1388 CmpVal, VAddr, SRsrc, SOffset, Offset, SLC, Mem->getChain() in SelectATOMIC_CMP_SWAP()
1401 SDValue CmpVal = Mem->getOperand(2); in SelectATOMIC_CMP_SWAP() local
1403 CmpVal, SRsrc, SOffset, Offset, SLC, Mem->getChain() in SelectATOMIC_CMP_SWAP()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp3437 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local
3439 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst()
3441 unsigned CmpVal = ValToCheck.countTrailingZeros() - 1; in visitICmpInst() local
3443 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst()
3481 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local
3483 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst()
3485 unsigned CmpVal = ValToCheck.countTrailingZeros(); in visitICmpInst() local
3487 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst()
4221 APInt CmpVal = APInt::getOneBitSet(TypeBits, ShAmt); in visitICmpInst() local
4222 return new ICmpInst(Pred, Xor, Builder->getInt(CmpVal)); in visitICmpInst()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1969 unsigned CmpVal = Op0KnownZeroInverted.countTrailingZeros(); in visitICmpInst() local
1971 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst()
2006 unsigned CmpVal = Op0KnownZeroInverted.countTrailingZeros(); in visitICmpInst() local
2008 ConstantInt::get(X->getType(), CmpVal)); in visitICmpInst()
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1159 Value *CmpVal = Constant::getNullValue(ShadowTy); in instrumentAddress() local
1163 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); in instrumentAddress()
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsISelLowering.cpp1181 unsigned CmpVal = MI->getOperand(2).getReg(); in EmitAtomicCmpSwapPartword() local
1255 .addReg(CmpVal).addImm(MaskImm); in EmitAtomicCmpSwapPartword()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp1497 unsigned CmpVal = MI.getOperand(2).getReg(); in emitAtomicCmpSwapPartword() local
1588 .addReg(CmpVal).addImm(MaskImm); in emitAtomicCmpSwapPartword()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelLowering.cpp3109 static bool isUndefOrEqual(int Val, int CmpVal) { in isUndefOrEqual() argument
3110 if (Val < 0 || Val == CmpVal) in isUndefOrEqual()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp4215 static bool isUndefOrEqual(int Val, int CmpVal) { in isUndefOrEqual() argument
4216 return (Val < 0 || Val == CmpVal); in isUndefOrEqual()