blob: 312ac150925e989366dab4fd108774008a5edfb6 [file] [log] [blame]
Tommi Rantaladc680c02012-09-19 12:12:16 +03001/* libunwind - a platform-independent unwind library
2 Copyright (C) 2001-2005 Hewlett-Packard Co
3 Copyright (C) 2007 David Mosberger-Tang
4 Contributed by David Mosberger-Tang <dmosberger@gmail.com>
5
6This file is part of libunwind.
7
8Permission is hereby granted, free of charge, to any person obtaining
9a copy of this software and associated documentation files (the
10"Software"), to deal in the Software without restriction, including
11without limitation the rights to use, copy, modify, merge, publish,
12distribute, sublicense, and/or sell copies of the Software, and to
13permit persons to whom the Software is furnished to do so, subject to
14the following conditions:
15
16The above copyright notice and this permission notice shall be
17included in all copies or substantial portions of the Software.
18
19THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
26
27/* Compiler specific useful bits that are used in libunwind, and also in the
28 * tests. */
29
30#ifndef COMPILER_H
31#define COMPILER_H
32
33#ifdef __GNUC__
Tommi Rantala26fc1562012-09-19 13:59:41 +030034# define ALIGNED(x) __attribute__((aligned(x)))
Tommi Rantala7d471b12012-09-19 13:48:33 +030035# define CONST_ATTR __attribute__((__const__))
Tommi Rantaladc680c02012-09-19 12:12:16 +030036# define UNUSED __attribute__((unused))
Tommi Rantalae3e49dc2012-09-19 12:39:26 +030037# define NOINLINE __attribute__((noinline))
Tommi Rantaladc680c02012-09-19 12:12:16 +030038# define NORETURN __attribute__((noreturn))
39# define ALIAS(name) __attribute__((alias (#name)))
40# if (__GNUC__ > 3) || (__GNUC__ == 3 && __GNUC_MINOR__ > 2)
41# define ALWAYS_INLINE inline __attribute__((always_inline))
42# define HIDDEN __attribute__((visibility ("hidden")))
43# define PROTECTED __attribute__((visibility ("protected")))
44# else
45# define ALWAYS_INLINE
46# define HIDDEN
47# define PROTECTED
48# endif
Tommi Rantalae0653f92012-09-19 14:44:33 +030049# define WEAK __attribute__((weak))
Tommi Rantaladc680c02012-09-19 12:12:16 +030050# if (__GNUC__ >= 3)
51# define likely(x) __builtin_expect ((x), 1)
52# define unlikely(x) __builtin_expect ((x), 0)
53# else
54# define likely(x) (x)
55# define unlikely(x) (x)
56# endif
57#else
Tommi Rantala26fc1562012-09-19 13:59:41 +030058# define ALIGNED(x)
Tommi Rantaladc680c02012-09-19 12:12:16 +030059# define ALWAYS_INLINE
Tommi Rantala7d471b12012-09-19 13:48:33 +030060# define CONST_ATTR
Tommi Rantaladc680c02012-09-19 12:12:16 +030061# define UNUSED
Tommi Rantalae3e49dc2012-09-19 12:39:26 +030062# define NOINLINE
Tommi Rantaladc680c02012-09-19 12:12:16 +030063# define NORETURN
64# define ALIAS(name)
65# define HIDDEN
66# define PROTECTED
Tommi Rantalae0653f92012-09-19 14:44:33 +030067# define WEAK
Tommi Rantaladc680c02012-09-19 12:12:16 +030068# define likely(x) (x)
69# define unlikely(x) (x)
70#endif
71
72#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
73
74#endif /* COMPILER_H */