Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Analysis/
H A DValueTracking.cpp1240 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits(); in computeKnownBitsFromOperator() local
1241 if (BitWidth % SubBitWidth == 0) { in computeKnownBitsFromOperator()
1257 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBitsFromOperator()
1264 KnownBits KnownSrc(SubBitWidth); in computeKnownBitsFromOperator()
1269 Known.insertBits(KnownSrc, ShiftElt * SubBitWidth); in computeKnownBitsFromOperator()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3085 unsigned SubBitWidth = SubVT.getScalarSizeInBits(); in computeKnownBits() local
3092 if (BitWidth == SubBitWidth) { in computeKnownBits()
3100 if ((BitWidth % SubBitWidth) == 0) { in computeKnownBits()
3107 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBits()
3117 Known.insertBits(Known2, SubBitWidth * Shifts); in computeKnownBits()
3122 if ((SubBitWidth % BitWidth) == 0) { in computeKnownBits()
3128 unsigned SubScale = SubBitWidth / BitWidth; in computeKnownBits()