Searched refs:SrcDemandedBits (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp864 APInt SrcDemandedBits = DemandedBits.zextOrSelf(SrcBitWidth); local
865 if (SimplifyDemandedBits(Src, SrcDemandedBits, SrcKnown, TLO, Depth + 1))
2229 APInt SrcDemandedBits = APInt::getNullValue(SrcEltSizeInBits); local
2233 SrcDemandedBits.setBits(Ofs, Ofs + EltSizeInBits);
2237 if (SimplifyDemandedBits(Src, SrcDemandedBits, Known, TLO, Depth + 1))
H A DSelectionDAG.cpp2208 APInt SrcDemandedBits = DemandedBits << Amt;
2210 GetDemandedBits(V.getOperand(0), SrcDemandedBits))
2235 APInt SrcDemandedBits = DemandedBits.trunc(SrcBitWidth);
2236 if (SDValue DemandedSrc = GetDemandedBits(Src, SrcDemandedBits))

Completed in 178 milliseconds