879c1f2cf40613a7e3333a101a8d6f2be2ceba16
[satune.git] / src / common.h
1 /*      Copyright (c) 2015 Regents of the University of California
2  *
3  *      Author: Brian Demsky <bdemsky@uci.edu>
4  *
5  *      This program is free software; you can redistribute it and/or
6  *      modify it under the terms of the GNU General Public License
7  *      version 2 as published by the Free Software Foundation.
8  */
9
10 /** @file common.h
11  *  @brief General purpose macros.
12  */
13
14 #ifndef __COMMON_H__
15 #define __COMMON_H__
16
17 #include <stdio.h>
18 #include "config.h"
19 #include "time.h"
20
21 #define NANOSEC 1000000000.0
22
23 #if 0
24 extern int model_out;
25 extern int model_err;
26 extern int switch_alloc;
27
28 #define model_dprintf(fd, fmt, ...) do { int oldsw = switch_alloc; switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = oldsw; } while (0)
29
30 #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
31 #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
32 #else
33 #define model_print printf
34 #endif
35
36
37
38 #define NEXTPOW2(x) ((x == 1) ? 1 : (1 << (sizeof(uint) * 8 - __builtin_clz(x - 1))))
39 #define NUMBITS(x) ((x == 0) ? 0 : 8 * sizeof(x) - __builtin_clz(x))
40
41 #ifdef CONFIG_DEBUG
42 #define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ## __VA_ARGS__); } while (0)
43 #define DBG() DEBUG("\n")
44 #define LOG(fmt, ...) do {model_print(fmt, ## __VA_ARGS__);} while (0)
45 #define DBG_ENABLED() (1)
46 #else
47 #define DEBUG(fmt, ...)
48 #define DBG()
49 #define DBG_ENABLED() (0)
50 #endif
51
52 void assert_hook(void);
53
54 #ifdef CONFIG_ASSERT
55 #define ASSERT(expr) \
56         do { \
57                 if (!(expr)) { \
58                         fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
59                         /* print_trace(); // Trace printing may cause dynamic memory allocation */ \
60                         assert_hook();                           \
61                         exit(EXIT_FAILURE); \
62                 } \
63         } while (0)
64 #else
65 #define ASSERT(expr) \
66         do { } while (0)
67 #endif/* CONFIG_ASSERT */
68
69 #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
70
71 void print_trace(void);
72
73 static inline long long getTimeNano() {
74         struct timespec time;
75         clock_gettime(CLOCK_REALTIME, &time);
76         return time.tv_sec * 1000000000 + time.tv_nsec;
77 }
78 #endif/* __COMMON_H__ */