Searched defs:InputDemandedBits (Results 1 - 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp444 APInt InputDemandedBits = DemandedMask & local
451 InputDemandedBits.setBit(SrcBitWidth-1);
453 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth);
456 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits,
459 InputDemandedBits = InputDemandedBits.zext(BitWidth);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp490 APInt InputDemandedBits = DemandedMask & local
497 InputDemandedBits.setBit(SrcBitWidth-1);
499 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth);
502 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits, KnownZero,
505 InputDemandedBits = InputDemandedBits.zext(BitWidth);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1605 APInt InputDemandedBits = local
1612 InputDemandedBits |= InSignBit;
1614 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits,
H A DSelectionDAG.cpp1826 APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits); local
1832 InputDemandedBits |= InSignBit;
1834 ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp903 APInt InputDemandedBits = local
910 InputDemandedBits |= InSignBit;
912 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits,
H A DSelectionDAG.cpp2217 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); local
2223 InputDemandedBits |= InSignBit;
2226 KnownOne &= InputDemandedBits;
2227 KnownZero &= InputDemandedBits;

Completed in 790 milliseconds