Searched refs:MulWidth (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp4601 unsigned MulWidth; local
4604 MulWidth = WidthB;
4607 MulWidth = WidthA;
4619 // Check if truncation ignores bits above MulWidth.
4621 if (TruncWidth > MulWidth)
4624 // Check if AND ignores bits above MulWidth.
4629 if (CVal.getBitWidth() - CVal.countLeadingZeros() > MulWidth)
4649 // cmp eq/neq mulval, and(mulval, mask), mask selects low MulWidth bits.
4658 if (MaskWidth == MulWidth)
4669 APInt MaxVal = APInt::getMaxValue(MulWidth);
[all...]

Completed in 127 milliseconds