Bug was introduced in proxy variable changes
[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
22 #if 0
23 extern int model_out;
24 extern int model_err;
25 extern int switch_alloc;
26
27 #define model_dprintf(fd, fmt, ...) do { int oldsw = switch_alloc; switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = oldsw; } while (0)
28
29 #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
30 #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
31 #else
32 #define model_print printf
33 #endif
34
35
36
37 #define NEXTPOW2(x) ((x == 1) ? 1 : (1 << (sizeof(uint) * 8 - __builtin_clz(x - 1))))
38 #define NUMBITS(x) ((x == 0) ? 0 : 8 * sizeof(x) - __builtin_clz(x))
39
40 #ifdef CONFIG_DEBUG
41 #define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ## __VA_ARGS__); } while (0)
42 #define DBG() DEBUG("\n")
43 #define DBG_ENABLED() (1)
44 #else
45 #define DEBUG(fmt, ...)
46 #define DBG()
47 #define DBG_ENABLED() (0)
48 #endif
49
50 void assert_hook(void);
51
52 #ifdef CONFIG_ASSERT
53 #define ASSERT(expr) \
54         do { \
55                 if (!(expr)) { \
56                         fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
57                         /* print_trace(); // Trace printing may cause dynamic memory allocation */ \
58                         assert_hook();                                                                                                   \
59                         exit(EXIT_FAILURE);     \
60                 }       \
61         } while (0)
62 #else
63 #define ASSERT(expr) \
64         do { } while (0)
65 #endif/* CONFIG_ASSERT */
66
67 #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
68
69 void print_trace(void);
70
71 static inline long long getTimeNano() {
72         struct timespec time;
73         clock_gettime(CLOCK_REALTIME, &time);
74         return time.tv_sec * 1000000000 + time.tv_nsec;
75 }
76 #endif/* __COMMON_H__ */