Searched refs:InputDemandedBits (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineSimplifyDemanded.cpp | 444 APInt InputDemandedBits = DemandedMask & in SimplifyDemandedUseBits() local 451 InputDemandedBits.setBit(SrcBitWidth-1); in SimplifyDemandedUseBits() 453 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth); in SimplifyDemandedUseBits() 456 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits, in SimplifyDemandedUseBits() 459 InputDemandedBits = InputDemandedBits.zext(BitWidth); in SimplifyDemandedUseBits()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSimplifyDemanded.cpp | 490 APInt InputDemandedBits = DemandedMask & in SimplifyDemandedUseBits() local 497 InputDemandedBits.setBit(SrcBitWidth-1); in SimplifyDemandedUseBits() 499 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth); in SimplifyDemandedUseBits() 502 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits, KnownZero, in SimplifyDemandedUseBits() 505 InputDemandedBits = InputDemandedBits.zext(BitWidth); in SimplifyDemandedUseBits()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1605 APInt InputDemandedBits = in SimplifyDemandedBits() local 1612 InputDemandedBits |= InSignBit; in SimplifyDemandedBits() 1614 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
|
D | SelectionDAG.cpp | 1826 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits); in ComputeMaskedBits() local 1832 InputDemandedBits |= InSignBit; in ComputeMaskedBits() 1834 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits, in ComputeMaskedBits()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 903 APInt InputDemandedBits = in SimplifyDemandedBits() local 910 InputDemandedBits |= InSignBit; in SimplifyDemandedBits() 912 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
|
D | SelectionDAG.cpp | 2217 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); in computeKnownBits() local 2223 InputDemandedBits |= InSignBit; in computeKnownBits() 2226 KnownOne &= InputDemandedBits; in computeKnownBits() 2227 KnownZero &= InputDemandedBits; in computeKnownBits()
|