Home
last modified time | relevance | path

Searched refs:InputDemandedBits (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp491 APInt InputDemandedBits = DemandedMask & in SimplifyDemandedUseBits() local
498 InputDemandedBits.setBit(SrcBitWidth-1); in SimplifyDemandedUseBits()
500 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth); in SimplifyDemandedUseBits()
503 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits, KnownZero, in SimplifyDemandedUseBits()
506 InputDemandedBits = InputDemandedBits.zext(BitWidth); in SimplifyDemandedUseBits()
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp862 APInt InputDemandedBits = in SimplifyDemandedBits() local
869 InputDemandedBits |= InSignBit; in SimplifyDemandedBits()
871 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
DSelectionDAG.cpp2243 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); in computeKnownBits() local
2249 InputDemandedBits |= InSignBit; in computeKnownBits()
2252 KnownOne &= InputDemandedBits; in computeKnownBits()
2253 KnownZero &= InputDemandedBits; in computeKnownBits()