main: rework preprocessor invocation
[cparser] / adt / util.h
1 /*
2  * This file is part of cparser.
3  * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
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  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18  * 02111-1307, USA.
19  */
20
21 /**
22  * @file
23  * @date    16.03.2007
24  * @brief   Various utility functions that wrap compiler specific extensions
25  * @author  Matthias Braun
26  */
27 #ifndef _FIRM_UTIL_H_
28 #define _FIRM_UTIL_H_
29
30 /**
31  * Asserts that the constant expression x is not zero at compiletime. name has
32  * to be a unique identifier.
33  *
34  * @note This uses the fact, that double case labels are not allowed.
35  */
36 #define COMPILETIME_ASSERT(x, name) \
37         static __attribute__((unused)) void compiletime_assert_##name (int h) { \
38                 switch(h) { case 0: case (x): {} } \
39         }
40
41 /**
42  * Indicates to the compiler that the value of x is very likely 1
43  * @note Only use this in speed critical code and when you are sure x is often 1
44  */
45 #define LIKELY(x)   __builtin_expect((x), 1)
46 /**
47  * Indicates to the compiler that it's very likely that x is 0
48  * @note Only use this in speed critical code and when you are sure x is often 0
49  */
50 #define UNLIKELY(x) __builtin_expect((x), 0)
51
52 #define lengthof(x) (sizeof(x) / sizeof(*(x)))
53
54 #define endof(x) ((x) + lengthof(x))
55
56 #endif