2018-08-22 00:53:22 +05:30
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
|
|
|
#include <stdnoreturn.h>
|
|
|
|
|
2018-08-29 08:16:20 +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 COLD __attribute__((cold))
|
|
|
|
#define UNUSED __attribute__((unused))
|
|
|
|
#define EXPORT __attribute__((visibility("default")))
|
|
|
|
|
2018-08-25 12:39:09 +05:30
|
|
|
static inline int ffzl(long x) {
|
|
|
|
return __builtin_ffsl(~x);
|
|
|
|
}
|
|
|
|
|
2018-08-22 00:53:22 +05:30
|
|
|
COLD noreturn void fatal_error(const char *s);
|
|
|
|
|
|
|
|
#endif
|