/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/base/bounds.h
82 строки
3 KB
Michaël Zasso
deps: update V8 to 14.6.202.33
24 апр 2026, 19:01
Не верифицирован
24 апр 2026, 19:01
f1e0b83
Код
Авторство
О чём код?
// 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 <typename T, typename U> requires((std::is_integral_v<T> || std::is_enum_v<T>) && (std::is_integral_v<U> || std::is_enum_v<U>)) && (sizeof(U) <= sizeof(T)) inline constexpr bool IsInRange(T value, U lower_limit, U higher_limit) { DCHECK_LE(lower_limit, higher_limit); using unsigned_T = std::make_unsigned_t<T>; // Use static_cast to support enum classes. return static_cast<unsigned_T>(static_cast<unsigned_T>(value) - static_cast<unsigned_T>(lower_limit)) <= static_cast<unsigned_T>(static_cast<unsigned_T>(higher_limit) - static_cast<unsigned_T>(lower_limit)); } // Overload IsInRange for pointers. This can't be constexpr because of // reinterpret_cast. inline bool IsInRange(void* value, void* lower_limit, void* higher_limit) { DCHECK_LE(lower_limit, higher_limit); return base::IsInRange(reinterpret_cast<uintptr_t>(value), reinterpret_cast<uintptr_t>(lower_limit), reinterpret_cast<uintptr_t>(higher_limit)); } // Like IsInRange but for the half-open range [lower_limit, higher_limit). template <typename T, typename U> requires((std::is_integral_v<T> || std::is_enum_v<T>) && (std::is_integral_v<U> || std::is_enum_v<U>)) && (sizeof(U) <= sizeof(T)) inline constexpr bool IsInHalfOpenRange(T value, U lower_limit, U higher_limit) { DCHECK_LE(lower_limit, higher_limit); using unsigned_T = std::make_unsigned_t<T>; // Use static_cast to support enum classes. return static_cast<unsigned_T>(static_cast<unsigned_T>(value) - static_cast<unsigned_T>(lower_limit)) < static_cast<unsigned_T>(static_cast<unsigned_T>(higher_limit) - static_cast<unsigned_T>(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 <typename T> inline constexpr bool IsInBounds(T index, T length, T max) requires std::is_unsigned_v<T> { 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 <typename T> 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_