Merge branch 'brian' of ssh://demsky.eecs.uci.edu/home/git/constraint_compiler into...
[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
20 /*
21 extern int model_out;
22 extern int model_err;
23 extern int switch_alloc;
24
25 #define model_dprintf(fd, fmt, ...) do { switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = 0; } while (0)
26
27 #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
28
29 #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
30
31 */
32
33 #define model_print printf
34
35 #define NEXTPOW2(x) (1<<(sizeof(uint)*8-__builtin_clz(x-1)))
36 #define NUMBITS(x) ((x==0) ? 0 : 8*sizeof(x)-__builtin_clz(x))
37
38 #ifdef CONFIG_DEBUG
39 #define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ## __VA_ARGS__); } while (0)
40 #define DBG() DEBUG("\n")
41 #define DBG_ENABLED() (1)
42 #else
43 #define DEBUG(fmt, ...)
44 #define DBG()
45 #define DBG_ENABLED() (0)
46 #endif
47
48 void assert_hook(void);
49
50 #ifdef CONFIG_ASSERT
51 #define ASSERT(expr) \
52         do { \
53                 if (!(expr)) { \
54                         fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
55                         /* print_trace(); // Trace printing may cause dynamic memory allocation */ \
56                         assert_hook();                           \
57                         exit(EXIT_FAILURE); \
58                 } \
59         } while (0)
60 #else
61 #define ASSERT(expr) \
62         do { } while (0)
63 #endif/* CONFIG_ASSERT */
64
65 #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
66
67 void print_trace(void);
68 #endif/* __COMMON_H__ */