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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp429 APInt InputDemandedBits = DemandedMask.trunc(SrcBitWidth); local
434 InputDemandedBits.setBit(SrcBitWidth-1);
437 if (SimplifyDemandedBits(I, 0, InputDemandedBits, InputKnown, Depth + 1))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1627 APInt InputDemandedBits = DemandedBits.getLoBits(ExVTBits);
1631 InputDemandedBits.setBit(ExVTBits - 1);
1633 if (SimplifyDemandedBits(Op0, InputDemandedBits, Known, TLO, Depth + 1))
H A DSelectionDAG.cpp2959 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits);
2965 InputDemandedBits |= InSignMask;
2968 Known.One &= InputDemandedBits;
2969 Known.Zero &= InputDemandedBits;

Completed in 131 milliseconds