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