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

/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp491 APInt InputDemandedBits = DemandedMask & local
498 InputDemandedBits.setBit(SrcBitWidth-1);
500 InputDemandedBits = InputDemandedBits.trunc(SrcBitWidth);
503 if (SimplifyDemandedBits(I->getOperandUse(0), InputDemandedBits, KnownZero,
506 InputDemandedBits = InputDemandedBits.zext(BitWidth);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp856 APInt InputDemandedBits = local
863 InputDemandedBits |= InSignBit;
865 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits,
H A DSelectionDAG.cpp2234 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); local
2240 InputDemandedBits |= InSignBit;
2243 KnownOne &= InputDemandedBits;
2244 KnownZero &= InputDemandedBits;

Completed in 83 milliseconds