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

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

Completed in 87 milliseconds