2018-08-21 15:23:22 -04:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
2018-10-04 14:25:16 -04:00
|
|
|
#include <stdint.h>
|
2018-08-21 15:23:22 -04:00
|
|
|
#include <stdnoreturn.h>
|
|
|
|
|
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
|
|
|
|
|
|
|
#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
|
|
|
|
2018-08-25 03:09:09 -04:00
|
|
|
static inline int ffzl(long x) {
|
|
|
|
return __builtin_ffsl(~x);
|
|
|
|
}
|
|
|
|
|
2018-08-21 15:23:22 -04:00
|
|
|
COLD noreturn void fatal_error(const char *s);
|
|
|
|
|
2018-10-04 14:25:16 -04:00
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
typedef unsigned __int128 u128;
|
|
|
|
|
2018-08-21 15:23:22 -04:00
|
|
|
#endif
|