// Copyright 2019 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_BASE_BOUNDS_H_ #define V8_BASE_BOUNDS_H_ #include "include/v8config.h" #include "src/base/macros.h" namespace v8 { namespace base { // Checks if value is in range [lower_limit, higher_limit] using a single // branch. template inline constexpr bool IsInRange(T value, U lower_limit, U higher_limit) { CONSTEXPR_DCHECK(lower_limit <= higher_limit); STATIC_ASSERT(sizeof(U) <= sizeof(T)); using unsigned_T = typename std::make_unsigned::type; // Use static_cast to support enum classes. return static_cast(static_cast(value) - static_cast(lower_limit)) <= static_cast(static_cast(higher_limit) - static_cast(lower_limit)); } // Checks if [index, index+length) is in range [0, max). Note that this check // works even if {index+length} would wrap around. template ::value>::type> inline constexpr bool IsInBounds(T index, T length, T max) { return length <= max && index <= (max - length); } // Checks if [index, index+length) is in range [0, max). If not, {length} is // clamped to its valid range. Note that this check works even if // {index+length} would wrap around. template inline bool ClampToBounds(T index, T* length, T max) { if (index > max) { *length = 0; return false; } T avail = max - index; bool oob = *length > avail; if (oob) *length = avail; return !oob; } } // namespace base } // namespace v8 #endif // V8_BASE_BOUNDS_H_