2018-08-21 15:23:22 -04:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
2023-06-10 14:58:20 -04:00
|
|
|
#include <stdbool.h>
|
2022-01-16 14:41:46 -05:00
|
|
|
#include <stddef.h>
|
2018-10-04 14:25:16 -04:00
|
|
|
#include <stdint.h>
|
2021-11-23 15:59:52 -05:00
|
|
|
|
|
|
|
// C11 noreturn doesn't work in C++
|
|
|
|
#define noreturn __attribute__((noreturn))
|
2018-08-21 15:23:22 -04:00
|
|
|
|
2018-08-28 22:46:20 -04:00
|
|
|
#define likely(x) __builtin_expect(!!(x), 1)
|
|
|
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
2018-08-21 15:23:22 -04:00
|
|
|
|
2018-10-18 15:19:54 -04:00
|
|
|
#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-21 15:23:22 -04:00
|
|
|
#define COLD __attribute__((cold))
|
|
|
|
#define UNUSED __attribute__((unused))
|
|
|
|
#define EXPORT __attribute__((visibility("default")))
|
|
|
|
|
2018-10-03 16:00:11 -04:00
|
|
|
#define STRINGIFY(s) #s
|
|
|
|
#define ALIAS(f) __attribute__((alias(STRINGIFY(f))))
|
2018-08-29 15:06:49 -04:00
|
|
|
|
2022-01-16 15:39:59 -05:00
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
typedef unsigned __int128 u128;
|
|
|
|
|
2022-01-16 14:05:59 -05:00
|
|
|
#define U64_WIDTH 64
|
|
|
|
|
2022-01-16 15:39:59 -05:00
|
|
|
static inline int ffz64(u64 x) {
|
|
|
|
return __builtin_ffsll(~x);
|
2018-08-25 03:09:09 -04:00
|
|
|
}
|
|
|
|
|
2022-01-16 16:28:24 -05:00
|
|
|
// parameter must not be 0
|
|
|
|
static inline int clz64(u64 x) {
|
|
|
|
return __builtin_clzll(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// parameter must not be 0
|
2022-01-16 14:05:59 -05:00
|
|
|
static inline u64 log2u64(u64 x) {
|
|
|
|
return U64_WIDTH - clz64(x) - 1;
|
|
|
|
}
|
|
|
|
|
2022-01-16 14:41:46 -05:00
|
|
|
static inline size_t align(size_t size, size_t align) {
|
|
|
|
size_t mask = align - 1;
|
|
|
|
return (size + mask) & ~mask;
|
|
|
|
}
|
|
|
|
|
2018-08-21 15:23:22 -04:00
|
|
|
COLD noreturn void fatal_error(const char *s);
|
|
|
|
|
2019-08-18 01:56:20 -04:00
|
|
|
#if CONFIG_SEAL_METADATA
|
2019-03-26 01:45:15 -04:00
|
|
|
|
|
|
|
#ifdef __GLIBC__
|
2018-10-19 21:29:40 -04:00
|
|
|
#define USE_PKEY
|
2020-03-29 07:41:18 -04:00
|
|
|
#else
|
2019-03-26 01:45:15 -04:00
|
|
|
#error "CONFIG_SEAL_METADATA requires Memory Protection Key support"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // CONFIG_SEAL_METADATA
|
|
|
|
|
2018-08-21 15:23:22 -04:00
|
|
|
#endif
|