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

/openbsd-current/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3678 const unsigned EltBitWidth = Op.getValueSizeInBits();
3681 Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth);
3682 Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth);
3685 Known = Known.trunc(EltBitWidth);
3695 const unsigned EltBitWidth = VecVT.getScalarSizeInBits();
3698 // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know
3700 if (BitWidth > EltBitWidth)
3701 Known = Known.trunc(EltBitWidth);
3712 if (BitWidth > EltBitWidth)
4415 const unsigned EltBitWidth
[all...]
H A DTargetLowering.cpp2437 unsigned EltBitWidth = Src.getScalarValueSizeInBits(); local
2449 // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know
2452 if (BitWidth > EltBitWidth)
2453 DemandedSrcBits = DemandedSrcBits.trunc(EltBitWidth);
2470 if (BitWidth > EltBitWidth)
H A DDAGCombiner.cpp6412 unsigned EltBitWidth = Vector->getValueType(0).getScalarSizeInBits(); local
6417 if (EltBitWidth > SplatBitSize)
6418 for (SplatValue = SplatValue.zextOrTrunc(EltBitWidth);
6419 SplatBitSize < EltBitWidth; SplatBitSize = SplatBitSize * 2)
6424 if ((SplatBitSize % EltBitWidth) == 0) {
6425 Constant = APInt::getAllOnes(EltBitWidth);
6426 for (unsigned i = 0, n = (SplatBitSize / EltBitWidth); i < n; ++i)
6427 Constant &= SplatValue.extractBits(EltBitWidth, i * EltBitWidth);
/openbsd-current/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp14829 unsigned EltBitWidth = V.getScalarValueSizeInBits();
14831 unsigned BeginOffset = Idx * EltBitWidth;
14838 int EltBitWidth = VOuter.getScalarValueSizeInBits();
14841 int BeginOffset = Idx * EltBitWidth;
14842 int EndOffset = BeginOffset + NumSubElts * EltBitWidth;
[all...]

Completed in 410 milliseconds