Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DValueTracking.cpp1211 unsigned SubBitWidth = SrcVecTy->getScalarSizeInBits(); in computeKnownBitsFromOperator() local
1212 if (BitWidth % SubBitWidth == 0) { in computeKnownBitsFromOperator()
1228 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBitsFromOperator()
1235 KnownBits KnownSrc(SubBitWidth); in computeKnownBitsFromOperator()
1240 Known.insertBits(KnownSrc, ShiftElt * SubBitWidth); in computeKnownBitsFromOperator()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3124 unsigned SubBitWidth = SubVT.getScalarSizeInBits(); in computeKnownBits() local
3131 if (BitWidth == SubBitWidth) { in computeKnownBits()
3139 if ((BitWidth % SubBitWidth) == 0) { in computeKnownBits()
3146 unsigned SubScale = BitWidth / SubBitWidth; in computeKnownBits()
3156 Known.insertBits(Known2, SubBitWidth * Shifts); in computeKnownBits()
3161 if ((SubBitWidth % BitWidth) == 0) { in computeKnownBits()
3167 unsigned SubScale = SubBitWidth / BitWidth; in computeKnownBits()