Home | History | Annotate | Download | only in Analysis

Lines Matching defs:ShiftAmount

2357         unsigned ShiftAmount = CI2->getValue().countLeadingOnes() - 1;
2358 Lower = CI2->getValue().shl(ShiftAmount);
2362 unsigned ShiftAmount = CI2->getValue().countLeadingZeros() - 1;
2364 Upper = CI2->getValue().shl(ShiftAmount) + 1;
2373 unsigned ShiftAmount = Width - 1;
2375 ShiftAmount = CI2->getValue().countTrailingZeros();
2376 Lower = CI2->getValue().lshr(ShiftAmount);
2387 unsigned ShiftAmount = Width - 1;
2389 ShiftAmount = CI2->getValue().countTrailingZeros();
2393 Upper = CI2->getValue().ashr(ShiftAmount) + 1;
2396 Lower = CI2->getValue().ashr(ShiftAmount);