Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp1045 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits(); in computeKnownBitsFromOperator() local
1046 if (BitWidth % SubBitWidth == 0) { in computeKnownBitsFromOperator()
1062 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBitsFromOperator()
1069 KnownBits KnownSrc(SubBitWidth); in computeKnownBitsFromOperator()
1074 Known.insertBits(KnownSrc, ShiftElt * SubBitWidth); in computeKnownBitsFromOperator()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3255 unsigned SubBitWidth = SubVT.getScalarSizeInBits(); in computeKnownBits() local
3262 if (BitWidth == SubBitWidth) { in computeKnownBits()
3270 if ((BitWidth % SubBitWidth) == 0) { in computeKnownBits()
3277 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBits()
3287 Known.insertBits(Known2, SubBitWidth * Shifts); in computeKnownBits()
3292 if ((SubBitWidth % BitWidth) == 0) { in computeKnownBits()
3298 unsigned SubScale = SubBitWidth / BitWidth; in computeKnownBits()