Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1195 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits(); in computeKnownBitsFromOperator() local
1196 if (BitWidth % SubBitWidth == 0) { in computeKnownBitsFromOperator()
1212 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBitsFromOperator()
1219 KnownBits KnownSrc(SubBitWidth); in computeKnownBitsFromOperator()
1224 Known.insertBits(KnownSrc, ShiftElt * SubBitWidth); in computeKnownBitsFromOperator()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2924 unsigned SubBitWidth = SubVT.getScalarSizeInBits(); in computeKnownBits() local
2931 if (BitWidth == SubBitWidth) { in computeKnownBits()
2939 if ((BitWidth % SubBitWidth) == 0) { in computeKnownBits()
2946 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBits()
2956 Known.insertBits(Known2, SubBitWidth * Shifts); in computeKnownBits()
2961 if ((SubBitWidth % BitWidth) == 0) { in computeKnownBits()
2967 unsigned SubScale = SubBitWidth / BitWidth; in computeKnownBits()