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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3232 const unsigned EltBitWidth = Op.getValueSizeInBits();
3235 Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth);
3236 Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth);
3239 Known = Known.trunc(EltBitWidth);
3246 const unsigned EltBitWidth = VecVT.getScalarSizeInBits();
3248 // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know
3250 if (BitWidth > EltBitWidth)
3251 Known = Known.trunc(EltBitWidth);
3262 if (BitWidth > EltBitWidth)
3897 const unsigned EltBitWidth
[all...]
H A DTargetLowering.cpp1858 unsigned EltBitWidth = Src.getScalarValueSizeInBits(); local
1866 // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know
1869 if (BitWidth > EltBitWidth)
1870 DemandedSrcBits = DemandedSrcBits.trunc(EltBitWidth);
1888 if (BitWidth > EltBitWidth)
H A DDAGCombiner.cpp5278 unsigned EltBitWidth = Vector->getValueType(0).getScalarSizeInBits(); local
5283 if (EltBitWidth > SplatBitSize)
5284 for (SplatValue = SplatValue.zextOrTrunc(EltBitWidth);
5285 SplatBitSize < EltBitWidth; SplatBitSize = SplatBitSize * 2)
5290 if ((SplatBitSize % EltBitWidth) == 0) {
5291 Constant = APInt::getAllOnesValue(EltBitWidth);
5292 for (unsigned i = 0, n = (SplatBitSize / EltBitWidth); i < n; ++i)
5293 Constant &= SplatValue.extractBits(EltBitWidth, i * EltBitWidth);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12748 int EltBitWidth = VOuter.getScalarValueSizeInBits();
12751 int BeginOffset = Idx * EltBitWidth;
12752 int EndOffset = BeginOffset + NumSubElts * EltBitWidth;
[all...]

Completed in 393 milliseconds