1 /* Define builtin-in macros for all front ends that perform preprocessing
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
28 #include "cpp-id-data.h"
29 #include "cppbuiltin.h"
33 /* Parse a BASEVER version string of the format "major.minor.patchlevel"
34 or "major.minor" to extract its components. */
36 parse_basever (int *major
, int *minor
, int *patchlevel
)
38 static int s_major
= -1, s_minor
, s_patchlevel
;
41 if (sscanf (BASEVER
, "%d.%d.%d", &s_major
, &s_minor
, &s_patchlevel
) != 3)
43 sscanf (BASEVER
, "%d.%d", &s_major
, &s_minor
);
54 *patchlevel
= s_patchlevel
;
58 /* Define __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__ and __VERSION__. */
60 define__GNUC__ (cpp_reader
*pfile
)
62 int major
, minor
, patchlevel
;
64 parse_basever (&major
, &minor
, &patchlevel
);
65 cpp_define_formatted (pfile
, "__GNUC__=%d", major
);
66 cpp_define_formatted (pfile
, "__GNUC_MINOR__=%d", minor
);
67 cpp_define_formatted (pfile
, "__GNUC_PATCHLEVEL__=%d", patchlevel
);
68 cpp_define_formatted (pfile
, "__VERSION__=\"%s\"", version_string
);
69 cpp_define_formatted (pfile
, "__ATOMIC_RELAXED=%d", MEMMODEL_RELAXED
);
70 cpp_define_formatted (pfile
, "__ATOMIC_SEQ_CST=%d", MEMMODEL_SEQ_CST
);
71 cpp_define_formatted (pfile
, "__ATOMIC_ACQUIRE=%d", MEMMODEL_ACQUIRE
);
72 cpp_define_formatted (pfile
, "__ATOMIC_RELEASE=%d", MEMMODEL_RELEASE
);
73 cpp_define_formatted (pfile
, "__ATOMIC_ACQ_REL=%d", MEMMODEL_ACQ_REL
);
74 cpp_define_formatted (pfile
, "__ATOMIC_CONSUME=%d", MEMMODEL_CONSUME
);
78 /* Define various built-in CPP macros that depend on language-independent
81 define_builtin_macros_for_compilation_flags (cpp_reader
*pfile
)
85 cpp_define_formatted (pfile
, "__pic__=%d", flag_pic
);
86 cpp_define_formatted (pfile
, "__PIC__=%d", flag_pic
);
90 cpp_define_formatted (pfile
, "__pie__=%d", flag_pie
);
91 cpp_define_formatted (pfile
, "__PIE__=%d", flag_pie
);
95 cpp_define (pfile
, "__OPTIMIZE_SIZE__");
97 cpp_define (pfile
, "__OPTIMIZE__");
99 if (fast_math_flags_set_p (&global_options
))
100 cpp_define (pfile
, "__FAST_MATH__");
101 if (flag_signaling_nans
)
102 cpp_define (pfile
, "__SUPPORT_SNAN__");
104 cpp_define_formatted (pfile
, "__FINITE_MATH_ONLY__=%d",
105 flag_finite_math_only
);
109 /* Define built-in macros for LP64 targets. */
111 define_builtin_macros_for_lp64 (cpp_reader
*pfile
)
113 if (TYPE_PRECISION (long_integer_type_node
) == 64
114 && POINTER_SIZE
== 64
115 && TYPE_PRECISION (integer_type_node
) == 32)
117 cpp_define (pfile
, "_LP64");
118 cpp_define (pfile
, "__LP64__");
123 /* Define macros for size of basic C types. */
125 define_builtin_macros_for_type_sizes (cpp_reader
*pfile
)
127 #define define_type_sizeof(NAME, TYPE) \
128 cpp_define_formatted (pfile, NAME"="HOST_WIDE_INT_PRINT_DEC, \
129 tree_low_cst (TYPE_SIZE_UNIT (TYPE), 1))
131 define_type_sizeof ("__SIZEOF_INT__", integer_type_node
);
132 define_type_sizeof ("__SIZEOF_LONG__", long_integer_type_node
);
133 define_type_sizeof ("__SIZEOF_LONG_LONG__", long_long_integer_type_node
);
134 define_type_sizeof ("__SIZEOF_SHORT__", short_integer_type_node
);
135 define_type_sizeof ("__SIZEOF_FLOAT__", float_type_node
);
136 define_type_sizeof ("__SIZEOF_DOUBLE__", double_type_node
);
137 define_type_sizeof ("__SIZEOF_LONG_DOUBLE__", long_double_type_node
);
138 define_type_sizeof ("__SIZEOF_SIZE_T__", size_type_node
);
140 #undef define_type_sizeof
142 cpp_define_formatted (pfile
, "__CHAR_BIT__=%u",
143 TYPE_PRECISION (char_type_node
));
144 cpp_define_formatted (pfile
, "__BIGGEST_ALIGNMENT__=%d",
145 BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
);
147 /* Define constants useful for implementing endian.h. */
148 cpp_define (pfile
, "__ORDER_LITTLE_ENDIAN__=1234");
149 cpp_define (pfile
, "__ORDER_BIG_ENDIAN__=4321");
150 cpp_define (pfile
, "__ORDER_PDP_ENDIAN__=3412");
152 if (WORDS_BIG_ENDIAN
== BYTES_BIG_ENDIAN
)
153 cpp_define_formatted (pfile
, "__BYTE_ORDER__=%s",
155 ? "__ORDER_BIG_ENDIAN__"
156 : "__ORDER_LITTLE_ENDIAN__"));
159 /* Assert that we're only dealing with the PDP11 case. */
160 gcc_assert (!BYTES_BIG_ENDIAN
);
161 gcc_assert (WORDS_BIG_ENDIAN
);
163 cpp_define (pfile
, "__BYTE_ORDER__=__ORDER_PDP_ENDIAN__");
166 cpp_define_formatted (pfile
, "__FLOAT_WORD_ORDER__=%s",
167 (targetm
.float_words_big_endian ()
168 ? "__ORDER_BIG_ENDIAN__"
169 : "__ORDER_LITTLE_ENDIAN__"));
171 /* ptr_type_node can't be used here since ptr_mode is only set when
172 toplev calls backend_init which is not done with -E switch. */
173 cpp_define_formatted (pfile
, "__SIZEOF_POINTER__=%d",
174 POINTER_SIZE
/ BITS_PER_UNIT
);
178 /* Define macros builtins common to all language performing CPP
181 define_language_independent_builtin_macros (cpp_reader
*pfile
)
183 define__GNUC__ (pfile
);
184 define_builtin_macros_for_compilation_flags (pfile
);
185 define_builtin_macros_for_lp64 (pfile
);
186 define_builtin_macros_for_type_sizes (pfile
);