Halide 21.0.0
Halide compiler and libraries
Loading...
Searching...
No Matches
Util.h
Go to the documentation of this file.
1// Always use assert, even if llvm-config defines NDEBUG
2#ifdef NDEBUG
3#undef NDEBUG
4#include <assert.h>
5#define NDEBUG
6#else
7#include <cassert>
8#endif
9
10#ifndef HALIDE_UTIL_H
11#define HALIDE_UTIL_H
12
13/** \file
14 * Various utility functions used internally Halide. */
15
16#include <cmath>
17#include <cstdint>
18#include <cstring>
19#include <functional>
20#include <limits>
21#include <sstream>
22#include <string>
23#include <utility>
24#include <vector>
25
27
28#ifdef Halide_STATIC_DEFINE
29#define HALIDE_EXPORT
30#else
31#if defined(_MSC_VER)
32// Halide_EXPORTS is quietly defined by CMake when building a shared library
33#ifdef Halide_EXPORTS
34#define HALIDE_EXPORT __declspec(dllexport)
35#else
36#define HALIDE_EXPORT __declspec(dllimport)
37#endif
38#else
39#define HALIDE_EXPORT __attribute__((visibility("default")))
40#endif
41#endif
42
43// If we're in user code, we don't want certain functions to be inlined.
44#if defined(COMPILING_HALIDE) || defined(BUILDING_PYTHON)
45#define HALIDE_NO_USER_CODE_INLINE
46#else
47#define HALIDE_NO_USER_CODE_INLINE HALIDE_NEVER_INLINE
48#endif
49
50// Clang uses __has_feature() for sanitizers...
51#if defined(__has_feature)
52#if __has_feature(address_sanitizer)
53#define HALIDE_INTERNAL_USING_ASAN
54#endif
55#if __has_feature(memory_sanitizer)
56#define HALIDE_INTERNAL_USING_MSAN
57#endif
58#if __has_feature(thread_sanitizer)
59#define HALIDE_INTERNAL_USING_TSAN
60#endif
61#if __has_feature(coverage_sanitizer)
62#define HALIDE_INTERNAL_USING_COVSAN
63#endif
64#if __has_feature(undefined_behavior_sanitizer)
65#define HALIDE_INTERNAL_USING_UBSAN
66#endif
67#endif
68
69// ...but GCC/MSVC don't like __has_feature, so handle them separately.
70// (Only AddressSanitizer for now, not sure if any others are well-supported
71// outside of Clang.
72#if defined(__SANITIZE_ADDRESS__) && !defined(HALIDE_INTERNAL_USING_ASAN)
73#define HALIDE_INTERNAL_USING_ASAN
74#endif
75
76namespace Halide {
77
78/** Load a plugin in the form of a dynamic library (e.g. for custom autoschedulers).
79 * If the string doesn't contain any . characters, the proper prefix and/or suffix
80 * for the platform will be added:
81 *
82 * foo -> libfoo.so (Linux/OSX/etc -- note that .dylib is not supported)
83 * foo -> foo.dll (Windows)
84 *
85 * otherwise, it is assumed to be an appropriate pathname.
86 *
87 * Any error in loading will assert-fail. */
88void load_plugin(const std::string &lib_name);
89
90namespace Internal {
91
92/** Some numeric conversions are UB if the value won't fit in the result;
93 * safe_numeric_cast<>() is meant as a drop-in replacement for a C/C++ cast
94 * that adds well-defined behavior for the UB cases, attempting to mimic
95 * common implementation behavior as much as possible.
96 */
97template<typename DST, typename SRC,
98 typename std::enable_if<std::is_floating_point<SRC>::value>::type * = nullptr>
100 if (std::is_integral<DST>::value) {
101 // Treat float -> int as a saturating cast; this is handled
102 // in different ways by different compilers, so an arbitrary but safe
103 // choice like this is reasonable.
104 if (s < (SRC)std::numeric_limits<DST>::min()) {
105 return std::numeric_limits<DST>::min();
106 }
107 if (s > (SRC)std::numeric_limits<DST>::max()) {
108 return std::numeric_limits<DST>::max();
109 }
110 }
111 return (DST)s;
112}
113
114template<typename DST, typename SRC,
115 typename std::enable_if<std::is_integral<SRC>::value>::type * = nullptr>
116DST safe_numeric_cast(SRC s) {
117 if (std::is_integral<DST>::value) {
118 // any-int -> signed-int is technically UB if value won't fit;
119 // in practice, common compilers implement such conversions as done below
120 // (as verified by exhaustive testing on Clang for x86-64). We could
121 // probably continue to rely on that behavior, but making it explicit
122 // avoids possible wrather of UBSan and similar debug helpers.
123 // (Yes, using sizeof for this comparison is a little odd for the uint->int
124 // case, but the intent is to match existing common behavior, which this does.)
125 if (std::is_integral<SRC>::value && std::is_signed<DST>::value && sizeof(DST) < sizeof(SRC)) {
126 using UnsignedSrc = typename std::make_unsigned<SRC>::type;
127 return (DST)(s & (UnsignedSrc)(-1));
128 }
129 }
130 return (DST)s;
131}
132
133/** An aggressive form of reinterpret cast used for correct type-punning. */
134template<typename DstType, typename SrcType>
135DstType reinterpret_bits(const SrcType &src) {
136 static_assert(sizeof(SrcType) == sizeof(DstType), "Types must be same size");
137 DstType dst;
138 memcpy(&dst, &src, sizeof(SrcType));
139 return dst;
140}
141
142/** Get value of an environment variable. Returns its value
143 * is defined in the environment. If the var is not defined, an empty string
144 * is returned.
145 */
146std::string get_env_variable(char const *env_var_name);
147
148/** Get the name of the currently running executable. Platform-specific.
149 * If program name cannot be retrieved, function returns an empty string. */
151
152/** Generate a unique name starting with the given prefix. It's unique
153 * relative to all other strings returned by unique_name in this
154 * process.
155 *
156 * The single-character version always appends a numeric suffix to the
157 * character.
158 *
159 * The string version will either return the input as-is (with high
160 * probability on the first time it is called with that input), or
161 * replace any existing '$' characters with underscores, then add a
162 * '$' sign and a numeric suffix to it.
163 *
164 * Note that unique_name('f') therefore differs from
165 * unique_name("f"). The former returns something like f123, and the
166 * latter returns either f or f$123.
167 */
168// @{
169std::string unique_name(char prefix);
170std::string unique_name(const std::string &prefix);
171// @}
172
173/** Test if the first string starts with the second string */
174bool starts_with(const std::string &str, const std::string &prefix);
175
176/** Test if the first string ends with the second string */
177bool ends_with(const std::string &str, const std::string &suffix);
178
179/** Replace all matches of the second string in the first string with the last string.
180 * The string to search-and-replace in is passed by value, offering the ability to
181 * std::move() a string in if you're not interested in keeping the original string.
182 * This is useful when the original string does not contain the find-string, causing
183 * this function to return the same string without any copies being made. */
184std::string replace_all(std::string str, const std::string &find, const std::string &replace);
185
186/** Split the source string using 'delim' as the divider. */
187std::vector<std::string> split_string(const std::string &source, const std::string &delim);
188
189/** Join the source vector using 'delim' as the divider. */
190template<typename T>
191std::string join_strings(const std::vector<T> &sources, const std::string &delim) {
192 size_t sz = 0;
193 if (!sources.empty()) {
194 sz += delim.size() * (sources.size() - 1);
195 }
196 for (const auto &s : sources) {
197 sz += s.size();
198 }
199 std::string result;
200 result.reserve(sz);
201 bool need_delim = false;
202 for (const auto &s : sources) {
203 if (need_delim) {
204 result += delim;
205 }
206 result += s;
207 need_delim = true;
208 }
209 return result;
210}
211
212/** Perform a left fold of a vector. Returns a default-constructed
213 * vector element if the vector is empty. Similar to std::accumulate
214 * but with a less clunky syntax. */
215template<typename T, typename Fn>
216T fold_left(const std::vector<T> &vec, Fn f) {
217 T result;
218 if (vec.empty()) {
219 return result;
220 }
221 result = vec[0];
222 for (size_t i = 1; i < vec.size(); i++) {
223 result = f(result, vec[i]);
224 }
225 return result;
226}
227
228/** Returns a right fold of a vector. Returns a default-constructed
229 * vector element if the vector is empty. */
230template<typename T, typename Fn>
231T fold_right(const std::vector<T> &vec, Fn f) {
232 T result;
233 if (vec.empty()) {
234 return result;
235 }
236 result = vec.back();
237 for (size_t i = vec.size() - 1; i > 0; i--) {
238 result = f(vec[i - 1], result);
239 }
240 return result;
241}
242
243template<typename... T>
244struct meta_and : std::true_type {};
245
246template<typename T1, typename... Args>
247struct meta_and<T1, Args...> : std::integral_constant<bool, T1::value && meta_and<Args...>::value> {};
248
249template<typename... T>
250struct meta_or : std::false_type {};
251
252template<typename T1, typename... Args>
253struct meta_or<T1, Args...> : std::integral_constant<bool, T1::value || meta_or<Args...>::value> {};
254
255template<typename To, typename... Args>
256struct all_are_convertible : meta_and<std::is_convertible<Args, To>...> {};
257
258/** Returns base name and fills in namespaces, outermost one first in vector. */
259std::string extract_namespaces(const std::string &name, std::vector<std::string> &namespaces);
260
261/** Like extract_namespaces(), but strip and discard the namespaces, returning base name only */
262std::string strip_namespaces(const std::string &name);
263
271
272/** Create a unique file with a name of the form prefixXXXXXsuffix in an arbitrary
273 * (but writable) directory; this is typically /tmp, but the specific
274 * location is not guaranteed. (Note that the exact form of the file name
275 * may vary; in particular, the suffix may be ignored on Windows.)
276 * The file is created (but not opened), thus this can be called from
277 * different threads (or processes, e.g. when building with parallel make)
278 * without risking collision. Note that if this file is used as a temporary
279 * file, the caller is responsibly for deleting it. Neither the prefix nor suffix
280 * may contain a directory separator.
281 */
282std::string file_make_temp(const std::string &prefix, const std::string &suffix);
283
284/** Create a unique directory in an arbitrary (but writable) directory; this is
285 * typically somewhere inside /tmp, but the specific location is not guaranteed.
286 * The directory will be empty (i.e., this will never return /tmp itself,
287 * but rather a new directory inside /tmp). The caller is responsible for removing the
288 * directory after use.
289 */
290std::string dir_make_temp();
291
292/** Wrapper for access(). Quietly ignores errors. */
293bool file_exists(const std::string &name);
294
295/** assert-fail if the file doesn't exist. useful primarily for testing purposes. */
296void assert_file_exists(const std::string &name);
297
298/** assert-fail if the file DOES exist. useful primarily for testing purposes. */
299void assert_no_file_exists(const std::string &name);
300
301/** Wrapper for unlink(). Asserts upon error. */
302void file_unlink(const std::string &name);
303
304/** Wrapper for unlink(). Quietly ignores errors. */
305void file_unlink(const std::string &name);
306
307/** Ensure that no file with this path exists. If such a file
308 * exists and cannot be removed, assert-fail. */
309void ensure_no_file_exists(const std::string &name);
310
311/** Wrapper for rmdir(). Asserts upon error. */
312void dir_rmdir(const std::string &name);
313
314/** Wrapper for stat(). Asserts upon error. */
315FileStat file_stat(const std::string &name);
316
317/** Read the entire contents of a file into a vector<char>. The file
318 * is read in binary mode. Errors trigger an assertion failure. */
319std::vector<char> read_entire_file(const std::string &pathname);
320
321/** Create or replace the contents of a file with a given pointer-and-length
322 * of memory. If the file doesn't exist, it is created; if it does exist, it
323 * is completely overwritten. Any error triggers an assertion failure. */
324void write_entire_file(const std::string &pathname, const void *source, size_t source_len);
325
326inline void write_entire_file(const std::string &pathname, const std::vector<char> &source) {
327 write_entire_file(pathname, source.data(), source.size());
328}
329
330/** A simple utility class that creates a temporary file in its ctor and
331 * deletes that file in its dtor; this is useful for temporary files that you
332 * want to ensure are deleted when exiting a certain scope. Since this is essentially
333 * just an RAII wrapper around file_make_temp() and file_unlink(), it has the same
334 * failure modes (i.e.: assertion upon error).
335 */
336class TemporaryFile final {
337public:
338 TemporaryFile(const std::string &prefix, const std::string &suffix)
339 : temp_path(file_make_temp(prefix, suffix)) {
340 }
341 const std::string &pathname() const {
342 return temp_path;
343 }
345 if (do_unlink) {
346 file_unlink(temp_path);
347 }
348 }
349 // You can call this if you want to defeat the automatic deletion;
350 // this is rarely what you want to do (since it defeats the purpose
351 // of this class), but can be quite handy for debugging purposes.
352 void detach() {
353 do_unlink = false;
354 }
355
356private:
357 const std::string temp_path;
358 bool do_unlink = true;
359
360public:
361 TemporaryFile(const TemporaryFile &) = delete;
365};
366
367/** Routines to test if math would overflow for signed integers with
368 * the given number of bits. */
369// @{
370bool add_would_overflow(int bits, int64_t a, int64_t b);
371bool sub_would_overflow(int bits, int64_t a, int64_t b);
372bool mul_would_overflow(int bits, int64_t a, int64_t b);
373// @}
374
375/** Routines to perform arithmetic on signed types without triggering signed
376 * overflow. If overflow would occur, sets result to zero, and returns
377 * false. Otherwise set result to the correct value, and returns true. */
378// @{
382// @}
383
384/** Helper class for saving/restoring variable values on the stack, to allow
385 * for early-exit that preserves correctness */
386template<typename T>
388 T &var;
390 /** Preserve the old value, restored at dtor time */
392 : var(var), old_value(var) {
393 }
394 /** Preserve the old value, then set the var to a new value. */
395 ScopedValue(T &var, const T &new_value)
396 : var(var), old_value(var) {
397 var = new_value;
398 }
400 var = old_value;
401 }
402 operator T() const {
403 return old_value;
404 }
405 // allow move but not copy
406 ScopedValue(const ScopedValue &that) = delete;
407 ScopedValue(ScopedValue &&that) noexcept = default;
408};
409
410// Helpers for timing blocks of code. Put 'TIC;' at the start and
411// 'TOC;' at the end. Timing is reported at the toc via
412// debug(0). The calls can be nested and will pretty-print
413// appropriately. Took this idea from matlab via Jon Barron.
414//
415// Note that this uses global state internally, and is not thread-safe
416// at all. Only use it for single-threaded debugging sessions.
417
418void halide_tic_impl(const char *file, int line);
419void halide_toc_impl(const char *file, int line);
420#define HALIDE_TIC Halide::Internal::halide_tic_impl(__FILE__, __LINE__)
421#define HALIDE_TOC Halide::Internal::halide_toc_impl(__FILE__, __LINE__)
422#ifdef COMPILING_HALIDE
423#define TIC HALIDE_TIC
424#define TOC HALIDE_TOC
425#endif
426
427// statically cast a value from one type to another: this is really just
428// some syntactic sugar around static_cast<>() to avoid compiler warnings
429// regarding 'bool' in some compliation configurations.
430template<typename TO>
432 template<typename FROM>
433 constexpr static TO value(const FROM &from) {
434 if constexpr (std::is_same<TO, bool>::value) {
435 return from != 0;
436 } else {
437 return static_cast<TO>(from);
438 }
439 }
440};
441
442// Like std::is_convertible, but with additional tests for arithmetic types:
443// ensure that the value will roundtrip losslessly (e.g., no integer truncation
444// or dropping of fractional parts).
445template<typename TO>
447 template<typename FROM>
448 constexpr static bool value(const FROM &from) {
449 if constexpr (std::is_convertible<FROM, TO>::value) {
450 if constexpr (std::is_arithmetic<TO>::value &&
451 std::is_arithmetic<FROM>::value &&
452 !std::is_same<TO, FROM>::value) {
453 const TO to = static_cast<TO>(from);
454 const FROM roundtripped = static_cast<FROM>(to);
455 return roundtripped == from;
456 } else {
457 return true;
458 }
459 } else {
460 return false;
461 }
462 }
463};
464
465template<typename T>
468};
469
470template<typename T>
472 return std::rbegin(i.range);
473}
474
475template<typename T>
477 return std::rend(i.range);
478}
479
480/**
481 * Reverse-order adaptor for range-based for-loops.
482 * TODO: Replace with std::ranges::reverse_view when upgrading to C++20.
483 */
484template<typename T>
486 return {range};
487}
488
489/** Emit a version of a string that is a valid identifier in C (. is replaced with _)
490 * If prefix_underscore is true (the default), an underscore will be prepended if the
491 * input starts with an alphabetic character to avoid reserved word clashes.
492 */
493std::string c_print_name(const std::string &name, bool prefix_underscore = true);
494
495/** Return the LLVM_VERSION against which this libHalide is compiled. This is provided
496 * only for internal tests which need to verify behavior; please don't use this outside
497 * of Halide tests. */
499
500} // namespace Internal
501
502/** Set how much stack the compiler should use for compilation in
503 * bytes. This can also be set through the environment variable
504 * HL_COMPILER_STACK_SIZE, though this function takes precedence. A
505 * value of zero causes the compiler to just use the calling stack for
506 * all compilation tasks.
507 *
508 * Calling this or setting the environment variable should not be
509 * necessary. It is provided for three kinds of testing:
510 *
511 * First, Halide uses it in our internal tests to make sure
512 * we're not using a silly amount of stack size on some
513 * canary programs to avoid stack usage regressions.
514 *
515 * Second, if you have a mysterious crash inside a generator, you can
516 * set a larger stack size as a way to test if it's a stack
517 * overflow. Perhaps our default stack size is not large enough for
518 * your program and schedule. Use this call or the environment var as
519 * a workaround, and then open a bug with a reproducer at
520 * github.com/halide/Halide/issues so that we can determine what's
521 * going wrong that is causing your code to use so much stack.
522 *
523 * Third, perhaps using a side-stack is causing problems with
524 * sanitizing, debugging, or profiling tools. If this is a problem,
525 * you can set HL_COMPILER_STACK_SIZE to zero to make Halide stay on
526 * the main thread's stack.
527 */
529
530/** The default amount of stack used for lowering and codegen. 32 MB
531 * ought to be enough for anyone. */
532constexpr size_t default_compiler_stack_size = 32 * 1024 * 1024;
533
534/** Return how much stack size the compiler should use for calls that
535 * go through run_with_large_stack below. Currently that's lowering
536 * and codegen. If no call to set_compiler_stack_size has been made,
537 * this checks the value of the environment variable
538 * HL_COMPILER_STACK_SIZE. If that's unset, it returns
539 * default_compiler_stack_size, defined above. */
541
542namespace Internal {
543
544/** Call the given action in a platform-specific context that
545 * provides at least the stack space returned by
546 * get_compiler_stack_size. If that value is zero, just calls the
547 * function on the calling thread. Otherwise on Windows this
548 * uses a Fiber, and on other platforms it uses swapcontext. */
549void run_with_large_stack(const std::function<void()> &action);
550
551/** Portable versions of popcount, count-leading-zeros, and
552 count-trailing-zeros. */
553// @{
557// @}
558
559/** Return an integer 2^n, for some n, which is >= x. Argument x must be > 0. */
561 return static_cast<int64_t>(1) << static_cast<int64_t>(std::ceil(std::log2(x)));
562}
563
564template<typename T>
565inline T align_up(T x, int n) {
566 return (x + n - 1) / n * n;
567}
568
569} // namespace Internal
570} // namespace Halide
571
572#endif
This file declares the routines used by Halide internally in its runtime.
#define HALIDE_MUST_USE_RESULT
TemporaryFile & operator=(TemporaryFile &&)=delete
TemporaryFile(TemporaryFile &&)=delete
TemporaryFile & operator=(const TemporaryFile &)=delete
const std::string & pathname() const
Definition Util.h:341
TemporaryFile(const TemporaryFile &)=delete
TemporaryFile(const std::string &prefix, const std::string &suffix)
Definition Util.h:338
void assert_file_exists(const std::string &name)
assert-fail if the file doesn't exist.
T align_up(T x, int n)
Definition Util.h:565
int ctz64(uint64_t x)
void file_unlink(const std::string &name)
Wrapper for unlink().
bool ends_with(const std::string &str, const std::string &suffix)
Test if the first string ends with the second string.
auto begin(reverse_adaptor< T > i)
Definition Util.h:471
void run_with_large_stack(const std::function< void()> &action)
Call the given action in a platform-specific context that provides at least the stack space returned ...
void write_entire_file(const std::string &pathname, const void *source, size_t source_len)
Create or replace the contents of a file with a given pointer-and-length of memory.
std::vector< char > read_entire_file(const std::string &pathname)
Read the entire contents of a file into a vector<char>.
std::string join_strings(const std::vector< T > &sources, const std::string &delim)
Join the source vector using 'delim' as the divider.
Definition Util.h:191
std::string file_make_temp(const std::string &prefix, const std::string &suffix)
Create a unique file with a name of the form prefixXXXXXsuffix in an arbitrary (but writable) directo...
std::string replace_all(std::string str, const std::string &find, const std::string &replace)
Replace all matches of the second string in the first string with the last string.
int get_llvm_version()
Return the LLVM_VERSION against which this libHalide is compiled.
void dir_rmdir(const std::string &name)
Wrapper for rmdir().
std::string c_print_name(const std::string &name, bool prefix_underscore=true)
Emit a version of a string that is a valid identifier in C (.
int clz64(uint64_t x)
void halide_toc_impl(const char *file, int line)
HALIDE_MUST_USE_RESULT bool add_with_overflow(int bits, int64_t a, int64_t b, int64_t *result)
Routines to perform arithmetic on signed types without triggering signed overflow.
bool sub_would_overflow(int bits, int64_t a, int64_t b)
std::string get_env_variable(char const *env_var_name)
Get value of an environment variable.
bool add_would_overflow(int bits, int64_t a, int64_t b)
Routines to test if math would overflow for signed integers with the given number of bits.
std::string extract_namespaces(const std::string &name, std::vector< std::string > &namespaces)
Returns base name and fills in namespaces, outermost one first in vector.
HALIDE_MUST_USE_RESULT bool mul_with_overflow(int bits, int64_t a, int64_t b, int64_t *result)
void ensure_no_file_exists(const std::string &name)
Ensure that no file with this path exists.
DstType reinterpret_bits(const SrcType &src)
An aggressive form of reinterpret cast used for correct type-punning.
Definition Util.h:135
bool mul_would_overflow(int bits, int64_t a, int64_t b)
FileStat file_stat(const std::string &name)
Wrapper for stat().
std::vector< std::string > split_string(const std::string &source, const std::string &delim)
Split the source string using 'delim' as the divider.
T fold_left(const std::vector< T > &vec, Fn f)
Perform a left fold of a vector.
Definition Util.h:216
std::string unique_name(char prefix)
Generate a unique name starting with the given prefix.
reverse_adaptor< T > reverse_view(T &&range)
Reverse-order adaptor for range-based for-loops.
Definition Util.h:485
std::string running_program_name()
Get the name of the currently running executable.
DST safe_numeric_cast(SRC s)
Some numeric conversions are UB if the value won't fit in the result; safe_numeric_cast<>() is meant ...
Definition Util.h:99
void assert_no_file_exists(const std::string &name)
assert-fail if the file DOES exist.
std::string dir_make_temp()
Create a unique directory in an arbitrary (but writable) directory; this is typically somewhere insid...
int popcount64(uint64_t x)
Portable versions of popcount, count-leading-zeros, and count-trailing-zeros.
int64_t next_power_of_two(int64_t x)
Return an integer 2^n, for some n, which is >= x.
Definition Util.h:560
HALIDE_MUST_USE_RESULT bool sub_with_overflow(int bits, int64_t a, int64_t b, int64_t *result)
auto end(reverse_adaptor< T > i)
Definition Util.h:476
void halide_tic_impl(const char *file, int line)
bool starts_with(const std::string &str, const std::string &prefix)
Test if the first string starts with the second string.
std::string strip_namespaces(const std::string &name)
Like extract_namespaces(), but strip and discard the namespaces, returning base name only.
T fold_right(const std::vector< T > &vec, Fn f)
Returns a right fold of a vector.
Definition Util.h:231
bool file_exists(const std::string &name)
Wrapper for access().
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
constexpr size_t default_compiler_stack_size
The default amount of stack used for lowering and codegen.
Definition Util.h:532
size_t get_compiler_stack_size()
Return how much stack size the compiler should use for calls that go through run_with_large_stack bel...
void load_plugin(const std::string &lib_name)
Load a plugin in the form of a dynamic library (e.g.
void set_compiler_stack_size(size_t)
Set how much stack the compiler should use for compilation in bytes.
unsigned __INT64_TYPE__ uint64_t
signed __INT64_TYPE__ int64_t
void * memcpy(void *s1, const void *s2, size_t n)
unsigned __INT32_TYPE__ uint32_t
static constexpr bool value(const FROM &from)
Definition Util.h:448
ScopedValue(T &var, const T &new_value)
Preserve the old value, then set the var to a new value.
Definition Util.h:395
ScopedValue(ScopedValue &&that) noexcept=default
ScopedValue(T &var)
Preserve the old value, restored at dtor time.
Definition Util.h:391
ScopedValue(const ScopedValue &that)=delete
static constexpr TO value(const FROM &from)
Definition Util.h:433