OSDN Git Service

* cfgcleanup.c (try_head_merge_bb): If get_condition returns
[pf3gnuchains/gcc-fork.git] / gcc / hwint.h
1 /* HOST_WIDE_INT definitions for the GNU compiler.
2    Copyright (C) 1998, 2002, 2004, 2008, 2009, 2010
3    Free Software Foundation, Inc.
4
5    This file is part of GCC.
6
7    Provide definitions for macros which depend on HOST_BITS_PER_INT
8    and HOST_BITS_PER_LONG.  */
9
10 #ifndef GCC_HWINT_H
11 #define GCC_HWINT_H
12
13 /* This describes the machine the compiler is hosted on.  */
14 #define HOST_BITS_PER_CHAR  CHAR_BIT
15 #define HOST_BITS_PER_SHORT (CHAR_BIT * SIZEOF_SHORT)
16 #define HOST_BITS_PER_INT   (CHAR_BIT * SIZEOF_INT)
17 #define HOST_BITS_PER_LONG  (CHAR_BIT * SIZEOF_LONG)
18
19 /* The string that should be inserted into a printf style format to
20    indicate a "long" operand.  */
21 #ifndef HOST_LONG_FORMAT
22 #define HOST_LONG_FORMAT "l"
23 #endif
24
25 /* The string that should be inserted into a printf style format to
26    indicate a "long long" operand.  */
27 #ifndef HOST_LONG_LONG_FORMAT
28 #define HOST_LONG_LONG_FORMAT "ll"
29 #endif
30
31 /* If HAVE_LONG_LONG and SIZEOF_LONG_LONG aren't defined, but
32    GCC_VERSION >= 3000, assume this is the second or later stage of a
33    bootstrap, we do have long long, and it's 64 bits.  (This is
34    required by C99; we do have some ports that violate that assumption
35    but they're all cross-compile-only.)  Just in case, force a
36    constraint violation if that assumption is incorrect.  */
37 #if !defined HAVE_LONG_LONG
38 # if GCC_VERSION >= 3000
39 #  define HAVE_LONG_LONG 1
40 #  define SIZEOF_LONG_LONG 8
41 extern char sizeof_long_long_must_be_8[sizeof(long long) == 8 ? 1 : -1];
42 # endif
43 #endif
44
45 #ifdef HAVE_LONG_LONG
46 # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF_LONG_LONG)
47 #endif
48 #ifdef HAVE___INT64
49 # define HOST_BITS_PER___INT64 (CHAR_BIT * SIZEOF___INT64)
50 #endif
51
52 /* Set HOST_WIDE_INT.  This should be the widest efficient host
53    integer type.  It can be 32 or 64 bits, except that if we are
54    targeting a machine with 64-bit size_t then it has to be 64 bits.
55
56    With a sane ABI, 'long' is the largest efficient host integer type.
57    Thus, we use that unless we have to use 'long long' or '__int64'
58    because we're targeting a 64-bit machine from a 32-bit host.  */
59
60 #if HOST_BITS_PER_LONG >= 64 || !defined NEED_64BIT_HOST_WIDE_INT
61 #   define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG
62 #   define HOST_WIDE_INT long
63 #else
64 # if HOST_BITS_PER_LONGLONG >= 64
65 #   define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONGLONG
66 #   define HOST_WIDE_INT long long
67 # else
68 #  if HOST_BITS_PER___INT64 >= 64
69 #   define HOST_BITS_PER_WIDE_INT HOST_BITS_PER___INT64
70 #   define HOST_WIDE_INT __int64
71 #  else
72     #error "Unable to find a suitable type for HOST_WIDE_INT"
73 #  endif
74 # endif
75 #endif
76
77 /* Various printf format strings for HOST_WIDE_INT.  */
78
79 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
80 # define HOST_WIDE_INT_PRINT HOST_LONG_FORMAT
81 # define HOST_WIDE_INT_PRINT_C "L"
82 # define HOST_WIDE_INT_1 1L
83   /* 'long' might be 32 or 64 bits, and the number of leading zeroes
84      must be tweaked accordingly.  */
85 # if HOST_BITS_PER_WIDE_INT == 64
86 #  define HOST_WIDE_INT_PRINT_DOUBLE_HEX \
87      "0x%" HOST_LONG_FORMAT "x%016" HOST_LONG_FORMAT "x"
88 # else
89 #  define HOST_WIDE_INT_PRINT_DOUBLE_HEX \
90      "0x%" HOST_LONG_FORMAT "x%08" HOST_LONG_FORMAT "x"
91 # endif
92 #else
93 # define HOST_WIDE_INT_PRINT HOST_LONG_LONG_FORMAT
94 # define HOST_WIDE_INT_PRINT_C "LL"
95 # define HOST_WIDE_INT_1 1LL
96   /* We can assume that 'long long' is at least 64 bits.  */
97 # define HOST_WIDE_INT_PRINT_DOUBLE_HEX \
98     "0x%" HOST_LONG_LONG_FORMAT "x%016" HOST_LONG_LONG_FORMAT "x"
99 #endif /* HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG */
100
101 #define HOST_WIDE_INT_PRINT_DEC "%" HOST_WIDE_INT_PRINT "d"
102 #define HOST_WIDE_INT_PRINT_DEC_C HOST_WIDE_INT_PRINT_DEC HOST_WIDE_INT_PRINT_C
103 #define HOST_WIDE_INT_PRINT_UNSIGNED "%" HOST_WIDE_INT_PRINT "u"
104 #define HOST_WIDE_INT_PRINT_HEX "%#" HOST_WIDE_INT_PRINT "x"
105
106 /* Set HOST_WIDEST_INT.  This is a 64-bit type unless the compiler
107    in use has no 64-bit type at all; in that case it's 32 bits.  */
108
109 #if HOST_BITS_PER_WIDE_INT >= 64 \
110     || (HOST_BITS_PER_LONGLONG < 64 && HOST_BITS_PER___INT64 < 64)
111 # define HOST_WIDEST_INT                      HOST_WIDE_INT
112 # define HOST_BITS_PER_WIDEST_INT             HOST_BITS_PER_WIDE_INT
113 # define HOST_WIDEST_INT_PRINT                HOST_WIDE_INT_PRINT
114 # define HOST_WIDEST_INT_PRINT_DEC            HOST_WIDE_INT_PRINT_DEC
115 # define HOST_WIDEST_INT_PRINT_DEC_C          HOST_WIDE_INT_PRINT_DEC_C
116 # define HOST_WIDEST_INT_PRINT_UNSIGNED       HOST_WIDE_INT_PRINT_UNSIGNED
117 # define HOST_WIDEST_INT_PRINT_HEX            HOST_WIDE_INT_PRINT_HEX
118 # define HOST_WIDEST_INT_PRINT_DOUBLE_HEX     HOST_WIDE_INT_PRINT_DOUBLE_HEX
119 #else
120 # if HOST_BITS_PER_LONGLONG >= 64
121 #  define HOST_BITS_PER_WIDEST_INT            HOST_BITS_PER_LONGLONG
122 #  define HOST_WIDEST_INT                     long long
123 # else
124 #  if HOST_BITS_PER___INT64 >= 64
125 #   define HOST_BITS_PER_WIDEST_INT           HOST_BITS_PER___INT64
126 #   define HOST_WIDEST_INT                    __int64
127 #  else
128     #error "This line should be impossible to reach"
129 #  endif
130 # endif
131 # define HOST_WIDEST_INT_PRINT                HOST_LONG_LONG_FORMAT
132 # define HOST_WIDEST_INT_PRINT_DEC            "%" HOST_LONG_LONG_FORMAT "d"
133 # define HOST_WIDEST_INT_PRINT_DEC_C          "%" HOST_LONG_LONG_FORMAT "dLL"
134 # define HOST_WIDEST_INT_PRINT_UNSIGNED       "%" HOST_LONG_LONG_FORMAT "u"
135 # define HOST_WIDEST_INT_PRINT_HEX            "%#" HOST_LONG_LONG_FORMAT "x"
136 # define HOST_WIDEST_INT_PRINT_DOUBLE_HEX     \
137     "0x%" HOST_LONG_LONG_FORMAT "x%016" HOST_LONG_LONG_FORMAT "x"
138 #endif
139
140 /* Define HOST_WIDEST_FAST_INT to the widest integer type supported
141    efficiently in hardware.  (That is, the widest integer type that fits
142    in a hardware register.)  Normally this is "long" but on some hosts it
143    should be "long long" or "__int64".  This is no convenient way to
144    autodetect this, so such systems must set a flag in config.host; see there
145    for details.  */
146
147 #ifdef USE_LONG_LONG_FOR_WIDEST_FAST_INT
148 #  ifdef HAVE_LONG_LONG
149 #    define HOST_WIDEST_FAST_INT long long
150 #    define HOST_BITS_PER_WIDEST_FAST_INT HOST_BITS_PER_LONGLONG
151 #  elif defined (HAVE___INT64)
152 #    define HOST_WIDEST_FAST_INT __int64
153 #    define HOST_BITS_PER_WIDEST_FAST_INT HOST_BITS_PER___INT64
154 #  else
155 #    error "Your host said it wanted to use long long or __int64 but neither"
156 #    error "exist"
157 #  endif
158 #else
159 #  define HOST_WIDEST_FAST_INT long
160 #  define HOST_BITS_PER_WIDEST_FAST_INT HOST_BITS_PER_LONG
161 #endif
162
163 /* Inline functions operating on HOST_WIDE_INT.  */
164 #if GCC_VERSION < 3004
165
166 extern int clz_hwi (unsigned HOST_WIDE_INT x);
167 extern int ctz_hwi (unsigned HOST_WIDE_INT x);
168 extern int ffs_hwi (unsigned HOST_WIDE_INT x);
169
170 /* Return log2, or -1 if not exact.  */
171 extern int exact_log2                  (unsigned HOST_WIDE_INT);
172
173 /* Return floor of log2, with -1 for zero.  */
174 extern int floor_log2                  (unsigned HOST_WIDE_INT);
175
176 #else /* GCC_VERSION >= 3004 */
177
178 /* For convenience, define 0 -> word_size.  */
179 static inline int
180 clz_hwi (unsigned HOST_WIDE_INT x)
181 {
182   if (x == 0)
183     return HOST_BITS_PER_WIDE_INT;
184 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
185   return __builtin_clzl (x);
186 # elif HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONGLONG
187   return __builtin_clzll (x);
188 # else
189   return __builtin_clz (x);
190 # endif
191 }
192
193 static inline int
194 ctz_hwi (unsigned HOST_WIDE_INT x)
195 {
196   if (x == 0)
197     return HOST_BITS_PER_WIDE_INT;
198 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
199   return __builtin_ctzl (x);
200 # elif HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONGLONG
201   return __builtin_ctzll (x);
202 # else
203   return __builtin_ctz (x);
204 # endif
205 }
206
207 static inline int
208 ffs_hwi (unsigned HOST_WIDE_INT x)
209 {
210 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
211   return __builtin_ffsl (x);
212 # elif HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONGLONG
213   return __builtin_ffsll (x);
214 # else
215   return __builtin_ffs (x);
216 # endif
217 }
218
219 static inline int
220 floor_log2 (unsigned HOST_WIDE_INT x)
221 {
222   return HOST_BITS_PER_WIDE_INT - 1 - clz_hwi (x);
223 }
224
225 static inline int
226 exact_log2 (unsigned HOST_WIDE_INT x)
227 {
228   return x == (x & -x) && x ? ctz_hwi (x) : -1;
229 }
230
231 #endif /* GCC_VERSION >= 3004 */
232
233 #define HOST_WIDE_INT_MIN (HOST_WIDE_INT) \
234   ((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT - 1))
235 #define HOST_WIDE_INT_MAX (~(HOST_WIDE_INT_MIN))
236
237 extern HOST_WIDE_INT abs_hwi (HOST_WIDE_INT);
238 extern unsigned HOST_WIDE_INT absu_hwi (HOST_WIDE_INT);
239 extern HOST_WIDE_INT gcd (HOST_WIDE_INT, HOST_WIDE_INT);
240 extern HOST_WIDE_INT pos_mul_hwi (HOST_WIDE_INT, HOST_WIDE_INT);
241 extern HOST_WIDE_INT mul_hwi (HOST_WIDE_INT, HOST_WIDE_INT);
242 extern HOST_WIDE_INT least_common_multiple (HOST_WIDE_INT, HOST_WIDE_INT);
243
244 #endif /* ! GCC_HWINT_H */