Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp444 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/
DInstCombineSimplifyDemanded.cpp490 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-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp379 APInt InputDemandedBits = DemandedMask.trunc(SrcBitWidth); in SimplifyDemandedUseBits() local
384 InputDemandedBits.setBit(SrcBitWidth-1); in SimplifyDemandedUseBits()
387 if (SimplifyDemandedBits(I, 0, InputDemandedBits, InputKnown, Depth + 1)) in SimplifyDemandedUseBits()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1605 APInt InputDemandedBits = in SimplifyDemandedBits() local
1612 InputDemandedBits |= InSignBit; in SimplifyDemandedBits()
1614 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
DSelectionDAG.cpp1826 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/
DTargetLowering.cpp903 APInt InputDemandedBits = in SimplifyDemandedBits() local
910 InputDemandedBits |= InSignBit; in SimplifyDemandedBits()
912 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
DSelectionDAG.cpp2217 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); in computeKnownBits() local
2223 InputDemandedBits |= InSignBit; in computeKnownBits()
2226 KnownOne &= InputDemandedBits; in computeKnownBits()
2227 KnownZero &= InputDemandedBits; in computeKnownBits()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1012 APInt InputDemandedBits = NewMask.getLoBits(ExVTBits); in SimplifyDemandedBits() local
1016 InputDemandedBits.setBit(ExVTBits - 1); in SimplifyDemandedBits()
1018 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, in SimplifyDemandedBits()
DSelectionDAG.cpp2618 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); in computeKnownBits() local
2624 InputDemandedBits |= InSignMask; in computeKnownBits()
2627 Known.One &= InputDemandedBits; in computeKnownBits()
2628 Known.Zero &= InputDemandedBits; in computeKnownBits()