hardened_malloc/util.h

62 lines
1.3 KiB
C
Raw Normal View History

2018-08-22 00:53:22 +05:30
#ifndef UTIL_H
#define UTIL_H
#include <stddef.h>
#include <stdint.h>
// C11 noreturn doesn't work in C++
#define noreturn __attribute__((noreturn))
2018-08-22 00:53:22 +05:30
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
2018-08-22 00:53:22 +05:30
#define min(x, y) ({ \
__typeof__(x) _x = (x); \
__typeof__(y) _y = (y); \
(void) (&_x == &_y); \
_x < _y ? _x : _y; })
#define max(x, y) ({ \
__typeof__(x) _x = (x); \
__typeof__(y) _y = (y); \
(void) (&_x == &_y); \
_x > _y ? _x : _y; })
2018-08-22 00:53:22 +05:30
#define COLD __attribute__((cold))
#define UNUSED __attribute__((unused))
#define EXPORT __attribute__((visibility("default")))
2018-10-04 01:30:11 +05:30
#define STRINGIFY(s) #s
#define ALIAS(f) __attribute__((alias(STRINGIFY(f))))
2018-08-30 00:36:49 +05:30
static inline int ffzl(unsigned long x) {
2018-08-25 12:39:09 +05:30
return __builtin_ffsl(~x);
}
static inline size_t align(size_t size, size_t align) {
size_t mask = align - 1;
return (size + mask) & ~mask;
}
2018-08-22 00:53:22 +05:30
COLD noreturn void fatal_error(const char *s);
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef unsigned __int128 u128;
2022-01-17 01:31:51 +05:30
#define U64_WIDTH 64
#if CONFIG_SEAL_METADATA
#ifdef __GLIBC__
#define USE_PKEY
#else
#error "CONFIG_SEAL_METADATA requires Memory Protection Key support"
#endif
#endif // CONFIG_SEAL_METADATA
2018-08-22 00:53:22 +05:30
#endif