Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
overflow.h
Go to the documentation of this file.
1
6
7#pragma once
8
9#include <assert.h>
10#include <limits.h>
11#include <stdbool.h>
12#include <stddef.h>
13#include <stdint.h>
14
22static inline bool sadd_overflow(int a, int b, int *res) {
23 assert(res != NULL);
24
25 // delegate to hardware optimized implementations where possible
26#if defined(__clang__) && \
27 (__clang_major__ > 3 || \
28 (__clang_major__ == 3 && __clang_minor__ > 7)) // Clang ≥ 3.8
29 return __builtin_sadd_overflow(a, b, res);
30#elif defined(__GNUC__) && __GNUC__ > 4 // GCC ≥ 5
31 return __builtin_sadd_overflow(a, b, res);
32#endif
33
34 if (a > 0 && INT_MAX - a < b) {
35 return true;
36 }
37 if (a < 0 && INT_MIN - a > b) {
38 return true;
39 }
40
41 *res = a + b;
42 return false;
43}
44
51static inline bool u64add_overflow(uint64_t a, uint64_t b, uint64_t *res) {
52 assert(res != NULL);
53
54 // delegate to hardware optimized implementations where possible
55#if defined(__clang__) && \
56 (__clang_major__ > 3 || \
57 (__clang_major__ == 3 && __clang_minor__ > 7)) // Clang ≥ 3.8
58 return __builtin_add_overflow(a, b, res);
59#elif defined(__GNUC__) && __GNUC__ > 4 // GCC ≥ 5
60 return __builtin_add_overflow(a, b, res);
61#endif
62
63 if (UINT64_MAX - a < b) {
64 return true;
65 }
66
67 *res = a + b;
68 return false;
69}
70
77static inline bool u64mul_overflow(uint64_t a, uint64_t b, uint64_t *res) {
78 assert(res != NULL);
79
80 // delegate to hardware optimized implementations where possible
81#if defined(__clang__) && \
82 (__clang_major__ > 3 || \
83 (__clang_major__ == 3 && __clang_minor__ > 7)) // Clang ≥ 3.8
84 return __builtin_mul_overflow(a, b, res);
85#elif defined(__GNUC__) && __GNUC__ > 4 // GCC ≥ 5
86 return __builtin_mul_overflow(a, b, res);
87#endif
88
89 if (a > 0 && UINT64_MAX / a < b) {
90 return true;
91 }
92
93 *res = a * b;
94 return false;
95}
node NULL
Definition grammar.y:163
static bool sadd_overflow(int a, int b, int *res)
Definition overflow.h:22
static bool u64mul_overflow(uint64_t a, uint64_t b, uint64_t *res)
Definition overflow.h:77
static bool u64add_overflow(uint64_t a, uint64_t b, uint64_t *res)
Definition overflow.h:51