Makefile.in: Update.
[gcc.git] / gcc / c-cppbuiltin.c
1 /* Define builtin-in macros for the C family front ends.
2 Copyright (C) 2002, 2003 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "flags.h"
27 #include "real.h"
28 #include "c-common.h"
29 #include "c-pragma.h"
30 #include "output.h"
31 #include "except.h" /* For USING_SJLJ_EXCEPTIONS. */
32 #include "toplev.h"
33
34 #ifndef REGISTER_PREFIX
35 #define REGISTER_PREFIX ""
36 #endif
37
38 static void builtin_define_std PARAMS ((const char *));
39 static void builtin_define_with_value_n PARAMS ((const char *, const char *,
40 size_t));
41 static void builtin_define_with_int_value PARAMS ((const char *,
42 HOST_WIDE_INT));
43 static void builtin_define_with_hex_fp_value PARAMS ((const char *, tree,
44 int, const char *,
45 const char *));
46 static void builtin_define_type_max PARAMS ((const char *, tree, int));
47 static void builtin_define_type_precision PARAMS ((const char *, tree));
48 static void builtin_define_float_constants PARAMS ((const char *,
49 const char *, tree));
50 static void define__GNUC__ PARAMS ((void));
51
52 /* Define NAME with value TYPE precision. */
53 static void
54 builtin_define_type_precision (name, type)
55 const char *name;
56 tree type;
57 {
58 builtin_define_with_int_value (name, TYPE_PRECISION (type));
59 }
60
61 /* Define the float.h constants for TYPE using NAME_PREFIX and FP_SUFFIX. */
62 static void
63 builtin_define_float_constants (name_prefix, fp_suffix, type)
64 const char *name_prefix;
65 const char *fp_suffix;
66 tree type;
67 {
68 /* Used to convert radix-based values to base 10 values in several cases.
69
70 In the max_exp -> max_10_exp conversion for 128-bit IEEE, we need at
71 least 6 significant digits for correct results. Using the fraction
72 formed by (log(2)*1e6)/(log(10)*1e6) overflows a 32-bit integer as an
73 intermediate; perhaps someone can find a better approximation, in the
74 mean time, I suspect using doubles won't harm the bootstrap here. */
75
76 const double log10_2 = .30102999566398119521;
77 double log10_b;
78 const struct real_format *fmt;
79
80 char name[64], buf[128];
81 int dig, min_10_exp, max_10_exp;
82 int decimal_dig;
83
84 fmt = real_format_for_mode[TYPE_MODE (type) - QFmode];
85
86 /* The radix of the exponent representation. */
87 if (type == float_type_node)
88 builtin_define_with_int_value ("__FLT_RADIX__", fmt->b);
89 log10_b = log10_2 * fmt->log2_b;
90
91 /* The number of radix digits, p, in the floating-point significand. */
92 sprintf (name, "__%s_MANT_DIG__", name_prefix);
93 builtin_define_with_int_value (name, fmt->p);
94
95 /* The number of decimal digits, q, such that any floating-point number
96 with q decimal digits can be rounded into a floating-point number with
97 p radix b digits and back again without change to the q decimal digits,
98
99 p log10 b if b is a power of 10
100 floor((p - 1) log10 b) otherwise
101 */
102 dig = (fmt->p - 1) * log10_b;
103 sprintf (name, "__%s_DIG__", name_prefix);
104 builtin_define_with_int_value (name, dig);
105
106 /* The minimum negative int x such that b**(x-1) is a normalized float. */
107 sprintf (name, "__%s_MIN_EXP__", name_prefix);
108 sprintf (buf, "(%d)", fmt->emin);
109 builtin_define_with_value (name, buf, 0);
110
111 /* The minimum negative int x such that 10**x is a normalized float,
112
113 ceil (log10 (b ** (emin - 1)))
114 = ceil (log10 (b) * (emin - 1))
115
116 Recall that emin is negative, so the integer truncation calculates
117 the ceiling, not the floor, in this case. */
118 min_10_exp = (fmt->emin - 1) * log10_b;
119 sprintf (name, "__%s_MIN_10_EXP__", name_prefix);
120 sprintf (buf, "(%d)", min_10_exp);
121 builtin_define_with_value (name, buf, 0);
122
123 /* The maximum int x such that b**(x-1) is a representable float. */
124 sprintf (name, "__%s_MAX_EXP__", name_prefix);
125 builtin_define_with_int_value (name, fmt->emax);
126
127 /* The maximum int x such that 10**x is in the range of representable
128 finite floating-point numbers,
129
130 floor (log10((1 - b**-p) * b**emax))
131 = floor (log10(1 - b**-p) + log10(b**emax))
132 = floor (log10(1 - b**-p) + log10(b)*emax)
133
134 The safest thing to do here is to just compute this number. But since
135 we don't link cc1 with libm, we cannot. We could implement log10 here
136 a series expansion, but that seems too much effort because:
137
138 Note that the first term, for all extant p, is a number exceedingly close
139 to zero, but slightly negative. Note that the second term is an integer
140 scaling an irrational number, and that because of the floor we are only
141 interested in its integral portion.
142
143 In order for the first term to have any effect on the integral portion
144 of the second term, the second term has to be exceedingly close to an
145 integer itself (e.g. 123.000000000001 or something). Getting a result
146 that close to an integer requires that the irrational multiplicand have
147 a long series of zeros in its expansion, which doesn't occur in the
148 first 20 digits or so of log10(b).
149
150 Hand-waving aside, crunching all of the sets of constants above by hand
151 does not yield a case for which the first term is significant, which
152 in the end is all that matters. */
153 max_10_exp = fmt->emax * log10_b;
154 sprintf (name, "__%s_MAX_10_EXP__", name_prefix);
155 builtin_define_with_int_value (name, max_10_exp);
156
157 /* The number of decimal digits, n, such that any floating-point number
158 can be rounded to n decimal digits and back again without change to
159 the value.
160
161 p * log10(b) if b is a power of 10
162 ceil(1 + p * log10(b)) otherwise
163
164 The only macro we care about is this number for the widest supported
165 floating type, but we want this value for rendering constants below. */
166 {
167 double d_decimal_dig = 1 + fmt->p * log10_b;
168 decimal_dig = d_decimal_dig;
169 if (decimal_dig < d_decimal_dig)
170 decimal_dig++;
171 }
172 if (type == long_double_type_node)
173 builtin_define_with_int_value ("__DECIMAL_DIG__", decimal_dig);
174
175 /* Since, for the supported formats, B is always a power of 2, we
176 construct the following numbers directly as a hexadecimal
177 constants. */
178
179 /* The maximum representable finite floating-point number,
180 (1 - b**-p) * b**emax */
181 {
182 int i, n;
183 char *p;
184
185 strcpy (buf, "0x0.");
186 n = fmt->p * fmt->log2_b;
187 for (i = 0, p = buf + 4; i + 3 < n; i += 4)
188 *p++ = 'f';
189 if (i < n)
190 *p++ = "08ce"[n - i];
191 sprintf (p, "p%d", fmt->emax * fmt->log2_b);
192 }
193 sprintf (name, "__%s_MAX__", name_prefix);
194 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix);
195
196 /* The minimum normalized positive floating-point number,
197 b**(emin-1). */
198 sprintf (name, "__%s_MIN__", name_prefix);
199 sprintf (buf, "0x1p%d", (fmt->emin - 1) * fmt->log2_b);
200 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix);
201
202 /* The difference between 1 and the least value greater than 1 that is
203 representable in the given floating point type, b**(1-p). */
204 sprintf (name, "__%s_EPSILON__", name_prefix);
205 sprintf (buf, "0x1p%d", (1 - fmt->p) * fmt->log2_b);
206 builtin_define_with_hex_fp_value (name, type, decimal_dig, buf, fp_suffix);
207
208 /* For C++ std::numeric_limits<T>::denorm_min. The minimum denormalized
209 positive floating-point number, b**(emin-p). Zero for formats that
210 don't support denormals. */
211 sprintf (name, "__%s_DENORM_MIN__", name_prefix);
212 if (fmt->has_denorm)
213 {
214 sprintf (buf, "0x1p%d", (fmt->emin - fmt->p) * fmt->log2_b);
215 builtin_define_with_hex_fp_value (name, type, decimal_dig,
216 buf, fp_suffix);
217 }
218 else
219 {
220 sprintf (buf, "0.0%s", fp_suffix);
221 builtin_define_with_value (name, buf, 0);
222 }
223
224 /* For C++ std::numeric_limits<T>::has_infinity. */
225 sprintf (name, "__%s_HAS_INFINITY__", name_prefix);
226 builtin_define_with_int_value (name,
227 MODE_HAS_INFINITIES (TYPE_MODE (type)));
228 /* For C++ std::numeric_limits<T>::has_quiet_NaN. We do not have a
229 predicate to distinguish a target that has both quiet and
230 signalling NaNs from a target that has only quiet NaNs or only
231 signalling NaNs, so we assume that a target that has any kind of
232 NaN has quiet NaNs. */
233 sprintf (name, "__%s_HAS_QUIET_NAN__", name_prefix);
234 builtin_define_with_int_value (name, MODE_HAS_NANS (TYPE_MODE (type)));
235 }
236
237 /* Define __GNUC__, __GNUC_MINOR__ and __GNUC_PATCHLEVEL__. */
238 static void
239 define__GNUC__ ()
240 {
241 /* The format of the version string, enforced below, is
242 ([^0-9]*-)?[0-9]+[.][0-9]+([.][0-9]+)?([- ].*)? */
243 const char *q, *v = version_string;
244
245 while (*v && ! ISDIGIT (*v))
246 v++;
247 if (!*v || (v > version_string && v[-1] != '-'))
248 abort ();
249
250 q = v;
251 while (ISDIGIT (*v))
252 v++;
253 builtin_define_with_value_n ("__GNUC__", q, v - q);
254 if (c_language == clk_cplusplus)
255 builtin_define_with_value_n ("__GNUG__", q, v - q);
256
257 if (*v != '.' || !ISDIGIT (v[1]))
258 abort ();
259 q = ++v;
260 while (ISDIGIT (*v))
261 v++;
262 builtin_define_with_value_n ("__GNUC_MINOR__", q, v - q);
263
264 if (*v == '.')
265 {
266 if (!ISDIGIT (v[1]))
267 abort ();
268 q = ++v;
269 while (ISDIGIT (*v))
270 v++;
271 builtin_define_with_value_n ("__GNUC_PATCHLEVEL__", q, v - q);
272 }
273 else
274 builtin_define_with_value_n ("__GNUC_PATCHLEVEL__", "0", 1);
275
276 if (*v && *v != ' ' && *v != '-')
277 abort ();
278 }
279
280 /* Hook that registers front end and target-specific built-ins. */
281 void
282 cb_register_builtins (pfile)
283 cpp_reader *pfile;
284 {
285 /* -undef turns off target-specific built-ins. */
286 if (flag_undef)
287 return;
288
289 define__GNUC__ ();
290
291 /* For stddef.h. They require macros defined in c-common.c. */
292 c_stddef_cpp_builtins ();
293
294 if (c_language == clk_cplusplus)
295 {
296 if (SUPPORTS_ONE_ONLY)
297 cpp_define (pfile, "__GXX_WEAK__=1");
298 else
299 cpp_define (pfile, "__GXX_WEAK__=0");
300 if (flag_exceptions)
301 cpp_define (pfile, "__EXCEPTIONS");
302 if (warn_deprecated)
303 cpp_define (pfile, "__DEPRECATED");
304 }
305
306 /* represents the C++ ABI version, always defined so it can be used while
307 preprocessing C and assembler. */
308 cpp_define (pfile, "__GXX_ABI_VERSION=102");
309
310 /* libgcc needs to know this. */
311 if (USING_SJLJ_EXCEPTIONS)
312 cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
313
314 /* limits.h needs to know these. */
315 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node, 0);
316 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node, 0);
317 builtin_define_type_max ("__INT_MAX__", integer_type_node, 0);
318 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node, 1);
319 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node, 2);
320 builtin_define_type_max ("__WCHAR_MAX__", wchar_type_node, 0);
321
322 builtin_define_type_precision ("__CHAR_BIT__", char_type_node);
323
324 /* float.h needs to know these. */
325
326 builtin_define_with_int_value ("__FLT_EVAL_METHOD__",
327 TARGET_FLT_EVAL_METHOD);
328
329 builtin_define_float_constants ("FLT", "F", float_type_node);
330 builtin_define_float_constants ("DBL", "", double_type_node);
331 builtin_define_float_constants ("LDBL", "L", long_double_type_node);
332
333 /* For use in assembly language. */
334 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
335 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
336
337 /* Misc. */
338 builtin_define_with_value ("__VERSION__", version_string, 1);
339
340 /* Other target-independent built-ins determined by command-line
341 options. */
342 if (optimize_size)
343 cpp_define (pfile, "__OPTIMIZE_SIZE__");
344 if (optimize)
345 cpp_define (pfile, "__OPTIMIZE__");
346
347 if (flag_hosted)
348 cpp_define (pfile, "__STDC_HOSTED__=1");
349 else
350 cpp_define (pfile, "__STDC_HOSTED__=0");
351
352 if (fast_math_flags_set_p ())
353 cpp_define (pfile, "__FAST_MATH__");
354 if (flag_really_no_inline)
355 cpp_define (pfile, "__NO_INLINE__");
356 if (flag_signaling_nans)
357 cpp_define (pfile, "__SUPPORT_SNAN__");
358 if (flag_finite_math_only)
359 cpp_define (pfile, "__FINITE_MATH_ONLY__=1");
360 else
361 cpp_define (pfile, "__FINITE_MATH_ONLY__=0");
362
363 if (flag_iso)
364 cpp_define (pfile, "__STRICT_ANSI__");
365
366 if (!flag_signed_char)
367 cpp_define (pfile, "__CHAR_UNSIGNED__");
368
369 if (c_language == clk_cplusplus && TREE_UNSIGNED (wchar_type_node))
370 cpp_define (pfile, "__WCHAR_UNSIGNED__");
371
372 /* Make the choice of ObjC runtime visible to source code. */
373 if (flag_objc && flag_next_runtime)
374 cpp_define (pfile, "__NEXT_RUNTIME__");
375
376 /* A straightforward target hook doesn't work, because of problems
377 linking that hook's body when part of non-C front ends. */
378 # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
379 # define preprocessing_trad_p() (cpp_get_options (pfile)->traditional)
380 # define builtin_define(TXT) cpp_define (pfile, TXT)
381 # define builtin_assert(TXT) cpp_assert (pfile, TXT)
382 TARGET_CPU_CPP_BUILTINS ();
383 TARGET_OS_CPP_BUILTINS ();
384 }
385
386 /* Pass an object-like macro. If it doesn't lie in the user's
387 namespace, defines it unconditionally. Otherwise define a version
388 with two leading underscores, and another version with two leading
389 and trailing underscores, and define the original only if an ISO
390 standard was not nominated.
391
392 e.g. passing "unix" defines "__unix", "__unix__" and possibly
393 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
394 "_mips". */
395 static void
396 builtin_define_std (macro)
397 const char *macro;
398 {
399 size_t len = strlen (macro);
400 char *buff = alloca (len + 5);
401 char *p = buff + 2;
402 char *q = p + len;
403
404 /* prepend __ (or maybe just _) if in user's namespace. */
405 memcpy (p, macro, len + 1);
406 if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
407 {
408 if (*p != '_')
409 *--p = '_';
410 if (p[1] != '_')
411 *--p = '_';
412 }
413 cpp_define (parse_in, p);
414
415 /* If it was in user's namespace... */
416 if (p != buff + 2)
417 {
418 /* Define the macro with leading and following __. */
419 if (q[-1] != '_')
420 *q++ = '_';
421 if (q[-2] != '_')
422 *q++ = '_';
423 *q = '\0';
424 cpp_define (parse_in, p);
425
426 /* Finally, define the original macro if permitted. */
427 if (!flag_iso)
428 cpp_define (parse_in, macro);
429 }
430 }
431
432 /* Pass an object-like macro and a value to define it to. The third
433 parameter says whether or not to turn the value into a string
434 constant. */
435 void
436 builtin_define_with_value (macro, expansion, is_str)
437 const char *macro;
438 const char *expansion;
439 int is_str;
440 {
441 char *buf;
442 size_t mlen = strlen (macro);
443 size_t elen = strlen (expansion);
444 size_t extra = 2; /* space for an = and a NUL */
445
446 if (is_str)
447 extra += 2; /* space for two quote marks */
448
449 buf = alloca (mlen + elen + extra);
450 if (is_str)
451 sprintf (buf, "%s=\"%s\"", macro, expansion);
452 else
453 sprintf (buf, "%s=%s", macro, expansion);
454
455 cpp_define (parse_in, buf);
456 }
457
458 /* Pass an object-like macro and a value to define it to. The third
459 parameter is the length of the expansion. */
460 static void
461 builtin_define_with_value_n (macro, expansion, elen)
462 const char *macro;
463 const char *expansion;
464 size_t elen;
465 {
466 char *buf;
467 size_t mlen = strlen (macro);
468
469 /* Space for an = and a NUL. */
470 buf = alloca (mlen + elen + 2);
471 memcpy (buf, macro, mlen);
472 buf[mlen]= '=';
473 memcpy (buf + mlen + 1, expansion, elen);
474 buf[mlen + elen + 1] = '\0';
475
476 cpp_define (parse_in, buf);
477 }
478
479 /* Pass an object-like macro and an integer value to define it to. */
480 static void
481 builtin_define_with_int_value (macro, value)
482 const char *macro;
483 HOST_WIDE_INT value;
484 {
485 char *buf;
486 size_t mlen = strlen (macro);
487 size_t vlen = 18;
488 size_t extra = 2; /* space for = and NUL. */
489
490 buf = alloca (mlen + vlen + extra);
491 memcpy (buf, macro, mlen);
492 buf[mlen] = '=';
493 sprintf (buf + mlen + 1, HOST_WIDE_INT_PRINT_DEC, value);
494
495 cpp_define (parse_in, buf);
496 }
497
498 /* Pass an object-like macro a hexadecimal floating-point value. */
499 static void
500 builtin_define_with_hex_fp_value (macro, type, digits, hex_str, fp_suffix)
501 const char *macro;
502 tree type ATTRIBUTE_UNUSED;
503 int digits;
504 const char *hex_str;
505 const char *fp_suffix;
506 {
507 REAL_VALUE_TYPE real;
508 char dec_str[64], buf[256];
509
510 /* Hex values are really cool and convenient, except that they're
511 not supported in strict ISO C90 mode. First, the "p-" sequence
512 is not valid as part of a preprocessor number. Second, we get a
513 pedwarn from the preprocessor, which has no context, so we can't
514 suppress the warning with __extension__.
515
516 So instead what we do is construct the number in hex (because
517 it's easy to get the exact correct value), parse it as a real,
518 then print it back out as decimal. */
519
520 real_from_string (&real, hex_str);
521 real_to_decimal (dec_str, &real, sizeof (dec_str), digits, 0);
522
523 sprintf (buf, "%s=%s%s", macro, dec_str, fp_suffix);
524 cpp_define (parse_in, buf);
525 }
526
527 /* Define MAX for TYPE based on the precision of the type. IS_LONG is
528 1 for type "long" and 2 for "long long". We have to handle
529 unsigned types, since wchar_t might be unsigned. */
530
531 static void
532 builtin_define_type_max (macro, type, is_long)
533 const char *macro;
534 tree type;
535 int is_long;
536 {
537 static const char *const values[]
538 = { "127", "255",
539 "32767", "65535",
540 "2147483647", "4294967295",
541 "9223372036854775807", "18446744073709551615",
542 "170141183460469231731687303715884105727",
543 "340282366920938463463374607431768211455" };
544 static const char *const suffixes[] = { "", "U", "L", "UL", "LL", "ULL" };
545
546 const char *value, *suffix;
547 char *buf;
548 size_t idx;
549
550 /* Pre-rendering the values mean we don't have to futz with printing a
551 multi-word decimal value. There are also a very limited number of
552 precisions that we support, so it's really a waste of time. */
553 switch (TYPE_PRECISION (type))
554 {
555 case 8: idx = 0; break;
556 case 16: idx = 2; break;
557 case 32: idx = 4; break;
558 case 64: idx = 6; break;
559 case 128: idx = 8; break;
560 default: abort ();
561 }
562
563 value = values[idx + TREE_UNSIGNED (type)];
564 suffix = suffixes[is_long * 2 + TREE_UNSIGNED (type)];
565
566 buf = alloca (strlen (macro) + 1 + strlen (value) + strlen (suffix) + 1);
567 sprintf (buf, "%s=%s%s", macro, value, suffix);
568
569 cpp_define (parse_in, buf);
570 }