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