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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp455 APInt InputDemandedBits = DemandedMask & local
462 InputDemandedBits.setBit(SrcBitWidth-1);
464 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth);
467 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits,
470 InputDemandedBits = InputDemandedBits.zext(BitWidth);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp823 APInt InputDemandedBits = local
830 InputDemandedBits |= InSignBit;
832 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits,
H A DSelectionDAG.cpp2117 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); local
2123 InputDemandedBits |= InSignBit;
2126 KnownOne &= InputDemandedBits;
2127 KnownZero &= InputDemandedBits;

Completed in 1798 milliseconds