Home
last modified time | relevance | path

Searched refs:SubBitWidth (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1356 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits(); in computeKnownBitsFromOperator() local
1357 if (BitWidth % SubBitWidth == 0) { in computeKnownBitsFromOperator()
1373 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBitsFromOperator()
1380 KnownBits KnownSrc(SubBitWidth); in computeKnownBitsFromOperator()
1385 Known.insertBits(KnownSrc, ShiftElt * SubBitWidth); in computeKnownBitsFromOperator()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3605 unsigned SubBitWidth = SubVT.getScalarSizeInBits(); in computeKnownBits() local
3612 if (BitWidth == SubBitWidth) { in computeKnownBits()
3620 if ((BitWidth % SubBitWidth) == 0) { in computeKnownBits()
3627 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBits()
3637 Known.insertBits(Known2, SubBitWidth * Shifts); in computeKnownBits()
3642 if ((SubBitWidth % BitWidth) == 0) { in computeKnownBits()
3648 unsigned SubScale = SubBitWidth / BitWidth; in computeKnownBits()