bit_util: Do nothing in RotateRight if the rotation amount is zero
Without this sanitizing it's possible to perform a shift with a shift amount that's the same size as the type being shifted. This actually occurs when decoding ORR variants. We could get fancier here and make this branchless, but we don't really use RotateRight in any performance intensive areas.
This commit is contained in:
parent
9128988dc3
commit
ade595e377
1 changed files with 5 additions and 0 deletions
|
@ -130,6 +130,11 @@ inline T Replicate(T value, size_t element_size) {
|
|||
template <typename T>
|
||||
inline T RotateRight(T value, size_t amount) {
|
||||
amount %= BitSize<T>();
|
||||
|
||||
if (amount == 0) {
|
||||
return value;
|
||||
}
|
||||
|
||||
auto x = static_cast<std::make_unsigned_t<T>>(value);
|
||||
return static_cast<T>((x >> amount) | (x << (BitSize<T>() - amount)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue