Home
last modified time | relevance | path

Searched refs:EltBitWidth (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3822 const unsigned EltBitWidth = Op.getValueSizeInBits(); in computeKnownBits() local
3825 Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth); in computeKnownBits()
3826 Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth); in computeKnownBits()
3829 Known = Known.trunc(EltBitWidth); in computeKnownBits()
3839 const unsigned EltBitWidth = VecVT.getScalarSizeInBits(); in computeKnownBits() local
3844 if (BitWidth > EltBitWidth) in computeKnownBits()
3845 Known = Known.trunc(EltBitWidth); in computeKnownBits()
3856 if (BitWidth > EltBitWidth) in computeKnownBits()
4697 const unsigned EltBitWidth = Op.getOperand(0).getScalarValueSizeInBits(); in ComputeNumSignBits() local
4703 if (BitWidth != EltBitWidth) in ComputeNumSignBits()
H A DTargetLowering.cpp2609 unsigned EltBitWidth = Src.getScalarValueSizeInBits(); in SimplifyDemandedBits() local
2624 if (BitWidth > EltBitWidth) in SimplifyDemandedBits()
2625 DemandedSrcBits = DemandedSrcBits.trunc(EltBitWidth); in SimplifyDemandedBits()
2642 if (BitWidth > EltBitWidth) in SimplifyDemandedBits()
H A DDAGCombiner.cpp7108 unsigned EltBitWidth = Vector->getValueType(0).getScalarSizeInBits(); in visitAND() local
7120 HasAnyUndefs, EltBitWidth, IsBigEndian); in visitAND()
7124 if (IsSplat && (SplatBitSize % EltBitWidth) == 0) { in visitAND()
7133 Constant = APInt::getAllOnes(EltBitWidth); in visitAND()
7134 for (unsigned i = 0, n = (SplatBitSize / EltBitWidth); i < n; ++i) in visitAND()
7135 Constant &= SplatValue.extractBits(EltBitWidth, i * EltBitWidth); in visitAND()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12399 unsigned EltBitWidth = V.getScalarValueSizeInBits(); in lowerShuffleAsBroadcast() local
12401 unsigned BeginOffset = Idx * EltBitWidth; in lowerShuffleAsBroadcast()
12408 int EltBitWidth = VOuter.getScalarValueSizeInBits(); in lowerShuffleAsBroadcast() local
12411 int BeginOffset = Idx * EltBitWidth; in lowerShuffleAsBroadcast()
12412 int EndOffset = BeginOffset + NumSubElts * EltBitWidth; in lowerShuffleAsBroadcast()
45308 unsigned EltBitWidth = VT.getScalarSizeInBits(); in combineSelect() local
45310 TLI.isTypeLegal(VT) && ((Subtarget.hasAVX() && EltBitWidth == 32) || in combineSelect()
45311 (Subtarget.hasAVX2() && EltBitWidth == 64) || in combineSelect()
45322 ShlVals.push_back(EltBitWidth - 1 - in combineSelect()
48266 unsigned EltBitWidth = VT.getScalarSizeInBits(); in combineAndMaskToShift() local
[all …]