Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp454 APInt InputDemandedBits = DemandedMask & in SimplifyDemandedUseBits() local
461 InputDemandedBits.setBit(SrcBitWidth-1); in SimplifyDemandedUseBits()
463 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth); in SimplifyDemandedUseBits()
466 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits, in SimplifyDemandedUseBits()
469 InputDemandedBits = InputDemandedBits.zext(BitWidth); in SimplifyDemandedUseBits()
/freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp818 APInt InputDemandedBits = in SimplifyDemandedBits() local
825 InputDemandedBits |= InSignBit; in SimplifyDemandedBits()
827 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
DSelectionDAG.cpp1968 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); in ComputeMaskedBits() local
1974 InputDemandedBits |= InSignBit; in ComputeMaskedBits()
1977 KnownOne &= InputDemandedBits; in ComputeMaskedBits()
1978 KnownZero &= InputDemandedBits; in ComputeMaskedBits()