]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-family/c-common.c
* lib/lto.exp (lto_prune_warns): Also accept leading single quote.
[thirdparty/gcc.git] / gcc / c-family / c-common.c
CommitLineData
b30f223b 1/* Subroutines shared by all languages that are variants of C.
1574ef13 2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
c75c517d 3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
09812622 4 Free Software Foundation, Inc.
b30f223b 5
1322177d 6This file is part of GCC.
b30f223b 7
1322177d
LB
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
9dcd6f09 10Software Foundation; either version 3, or (at your option) any later
1322177d 11version.
b30f223b 12
1322177d
LB
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
b30f223b
RS
17
18You should have received a copy of the GNU General Public License
9dcd6f09
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
b30f223b 21
7a3b4887
SB
22/* FIXME: Still need to include rtl.h here (via expr.h) in a front-end file.
23 Pretend this is a back-end file. */
24#undef IN_GCC_FRONTEND
25
b30f223b 26#include "config.h"
670ee920 27#include "system.h"
4977bab6
ZW
28#include "coretypes.h"
29#include "tm.h"
d9b2742a 30#include "intl.h"
b30f223b 31#include "tree.h"
b30f223b 32#include "flags.h"
d6f4ec51 33#include "output.h"
e2af664c 34#include "c-pragma.h"
1526a060 35#include "ggc.h"
8f17b5c5 36#include "c-common.h"
7bdb32b9 37#include "tm_p.h"
235cfbc4 38#include "obstack.h"
c8724862 39#include "cpplib.h"
12a68f1f 40#include "target.h"
7afff7cf 41#include "langhooks.h"
d57a4b98 42#include "tree-inline.h"
5f1989e6 43#include "toplev.h"
148e4216 44#include "diagnostic.h"
6de9cd9a
DN
45#include "tree-iterator.h"
46#include "hashtab.h"
c31b8e1b 47#include "tree-mudflap.h"
d974312d 48#include "opts.h"
ce91e74c 49#include "cgraph.h"
1f1d5130 50#include "target-def.h"
6b2b8871 51#include "libfuncs.h"
cb60f38d 52
d347d97e
SB
53#include "expr.h" /* For vector_mode_valid_p */
54
81a75f0f 55cpp_reader *parse_in; /* Declared in c-pragma.h. */
c8724862 56
7f4edbcb 57/* The following symbols are subsumed in the c_global_trees array, and
d125d268 58 listed here individually for documentation purposes.
7f4edbcb
BS
59
60 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
61
62 tree short_integer_type_node;
63 tree long_integer_type_node;
64 tree long_long_integer_type_node;
a6766312 65 tree int128_integer_type_node;
7f4edbcb
BS
66
67 tree short_unsigned_type_node;
68 tree long_unsigned_type_node;
69 tree long_long_unsigned_type_node;
a6766312 70 tree int128_unsigned_type_node;
7f4edbcb 71
de7df9eb
JM
72 tree truthvalue_type_node;
73 tree truthvalue_false_node;
74 tree truthvalue_true_node;
7f4edbcb
BS
75
76 tree ptrdiff_type_node;
77
78 tree unsigned_char_type_node;
79 tree signed_char_type_node;
80 tree wchar_type_node;
7f4edbcb 81
b6baa67d
KVH
82 tree char16_type_node;
83 tree char32_type_node;
84
7f4edbcb
BS
85 tree float_type_node;
86 tree double_type_node;
87 tree long_double_type_node;
88
89 tree complex_integer_type_node;
90 tree complex_float_type_node;
91 tree complex_double_type_node;
92 tree complex_long_double_type_node;
93
9a8ce21f
JG
94 tree dfloat32_type_node;
95 tree dfloat64_type_node;
96 tree_dfloat128_type_node;
97
7f4edbcb
BS
98 tree intQI_type_node;
99 tree intHI_type_node;
100 tree intSI_type_node;
101 tree intDI_type_node;
102 tree intTI_type_node;
103
104 tree unsigned_intQI_type_node;
105 tree unsigned_intHI_type_node;
106 tree unsigned_intSI_type_node;
107 tree unsigned_intDI_type_node;
108 tree unsigned_intTI_type_node;
109
110 tree widest_integer_literal_type_node;
111 tree widest_unsigned_literal_type_node;
112
113 Nodes for types `void *' and `const void *'.
114
115 tree ptr_type_node, const_ptr_type_node;
116
117 Nodes for types `char *' and `const char *'.
118
119 tree string_type_node, const_string_type_node;
120
121 Type `char[SOMENUMBER]'.
122 Used when an array of char is needed and the size is irrelevant.
123
124 tree char_array_type_node;
125
126 Type `int[SOMENUMBER]' or something like it.
127 Used when an array of int needed and the size is irrelevant.
128
129 tree int_array_type_node;
130
131 Type `wchar_t[SOMENUMBER]' or something like it.
132 Used when a wide string literal is created.
133
134 tree wchar_array_type_node;
135
b6baa67d
KVH
136 Type `char16_t[SOMENUMBER]' or something like it.
137 Used when a UTF-16 string literal is created.
138
139 tree char16_array_type_node;
140
141 Type `char32_t[SOMENUMBER]' or something like it.
142 Used when a UTF-32 string literal is created.
143
144 tree char32_array_type_node;
145
7f4edbcb
BS
146 Type `int ()' -- used for implicit declaration of functions.
147
148 tree default_function_type;
149
7f4edbcb
BS
150 A VOID_TYPE node, packaged in a TREE_LIST.
151
152 tree void_list_node;
153
684d9f3b 154 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
0ba8a114
NS
155 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
156 VAR_DECLS, but C++ does.)
63ad61ed 157
0ba8a114 158 tree function_name_decl_node;
684d9f3b 159 tree pretty_function_name_decl_node;
0ba8a114
NS
160 tree c99_function_name_decl_node;
161
162 Stack of nested function name VAR_DECLs.
35b1a6fa 163
0ba8a114 164 tree saved_function_name_decls;
63ad61ed 165
7f4edbcb
BS
166*/
167
168tree c_global_trees[CTI_MAX];
17211ab5 169\f
4078b403
NB
170/* Switches common to the C front ends. */
171
63973df3
NB
172/* Nonzero means don't output line number information. */
173
174char flag_no_line_commands;
175
176/* Nonzero causes -E output not to be done, but directives such as
177 #define that have side effects are still obeyed. */
178
179char flag_no_output;
180
181/* Nonzero means dump macros in some fashion. */
182
183char flag_dump_macros;
184
185/* Nonzero means pass #include lines through to the output. */
186
187char flag_dump_includes;
188
c0d578e6
GK
189/* Nonzero means process PCH files while preprocessing. */
190
191bool flag_pch_preprocess;
192
17211ab5
GK
193/* The file name to which we should write a precompiled header, or
194 NULL if no header will be written in this compile. */
195
196const char *pch_file;
197
3df89291
NB
198/* Nonzero if an ISO standard was selected. It rejects macros in the
199 user's namespace. */
200int flag_iso;
201
35b1a6fa 202/* Warn about #pragma directives that are not recognized. */
4078b403 203
35b1a6fa 204int warn_unknown_pragmas; /* Tri state variable. */
4078b403 205
4078b403
NB
206/* Warn about format/argument anomalies in calls to formatted I/O functions
207 (*printf, *scanf, strftime, strfmon, etc.). */
208
209int warn_format;
210
4078b403
NB
211/* C/ObjC language option variables. */
212
213
4078b403
NB
214/* Nonzero means allow type mismatches in conditional expressions;
215 just make their values `void'. */
216
217int flag_cond_mismatch;
218
219/* Nonzero means enable C89 Amendment 1 features. */
220
221int flag_isoc94;
222
2778d766 223/* Nonzero means use the ISO C99 (or C1X) dialect of C. */
4078b403
NB
224
225int flag_isoc99;
226
2778d766
JM
227/* Nonzero means use the ISO C1X dialect of C. */
228
229int flag_isoc1x;
230
6614fd40 231/* Nonzero means that we have builtin functions, and main is an int. */
4078b403
NB
232
233int flag_hosted = 1;
234
4078b403
NB
235
236/* ObjC language option variables. */
237
238
4078b403
NB
239/* Tells the compiler that this is a special run. Do not perform any
240 compiling, instead we are to test some platform dependent features
241 and output a C header file with appropriate definitions. */
242
243int print_struct_values;
244
fa10beec 245/* Tells the compiler what is the constant string class for ObjC. */
4078b403
NB
246
247const char *constant_string_class_name;
248
4078b403
NB
249
250/* C++ language option variables. */
251
252
4078b403
NB
253/* Nonzero means generate separate instantiation control files and
254 juggle them at link time. */
255
256int flag_use_repository;
257
c1ae8be5 258/* The C++ dialect being used. C++98 is the default. */
966541e3 259
c1ae8be5 260enum cxx_dialect cxx_dialect = cxx98;
966541e3 261
4afe7ad7
JM
262/* Maximum template instantiation depth. This limit exists to limit the
263 time it takes to notice infinite template instantiations; the default
264 value of 1024 is likely to be in the next C++ standard. */
4078b403 265
4afe7ad7 266int max_tinst_depth = 1024;
4078b403
NB
267
268
269
f09f1de5
MM
270/* The elements of `ridpointers' are identifier nodes for the reserved
271 type names and storage classes. It is indexed by a RID_... value. */
272tree *ridpointers;
273
c2255bc4 274tree (*make_fname_decl) (location_t, tree, int);
2ce07e2d 275
7d882b83
ILT
276/* Nonzero means don't warn about problems that occur when the code is
277 executed. */
278int c_inhibit_evaluation_warnings;
e78a3b42 279
148e4216
JM
280/* Whether lexing has been completed, so subsequent preprocessor
281 errors should use the compiler's input_location. */
282bool done_lexing = false;
283
ec5c56db 284/* Information about how a function name is generated. */
0ba8a114
NS
285struct fname_var_t
286{
8b60264b
KG
287 tree *const decl; /* pointer to the VAR_DECL. */
288 const unsigned rid; /* RID number for the identifier. */
289 const int pretty; /* How pretty is it? */
0ba8a114
NS
290};
291
ec5c56db 292/* The three ways of getting then name of the current function. */
0ba8a114
NS
293
294const struct fname_var_t fname_vars[] =
295{
ec5c56db 296 /* C99 compliant __func__, must be first. */
0ba8a114 297 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
ec5c56db 298 /* GCC __FUNCTION__ compliant. */
0ba8a114 299 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
ec5c56db 300 /* GCC __PRETTY_FUNCTION__ compliant. */
0ba8a114
NS
301 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
302 {NULL, 0, 0},
303};
304
928c19bb 305static tree c_fully_fold_internal (tree expr, bool, bool *, bool *);
a6c0a76c
SB
306static tree check_case_value (tree);
307static bool check_case_bounds (tree, tree, tree *, tree *);
4724b3de 308
35b1a6fa
AJ
309static tree handle_packed_attribute (tree *, tree, tree, int, bool *);
310static tree handle_nocommon_attribute (tree *, tree, tree, int, bool *);
311static tree handle_common_attribute (tree *, tree, tree, int, bool *);
312static tree handle_noreturn_attribute (tree *, tree, tree, int, bool *);
52bf96d2
JH
313static tree handle_hot_attribute (tree *, tree, tree, int, bool *);
314static tree handle_cold_attribute (tree *, tree, tree, int, bool *);
35b1a6fa 315static tree handle_noinline_attribute (tree *, tree, tree, int, bool *);
86631ea3 316static tree handle_noclone_attribute (tree *, tree, tree, int, bool *);
35b1a6fa
AJ
317static tree handle_always_inline_attribute (tree *, tree, tree, int,
318 bool *);
d752cfdb
JJ
319static tree handle_gnu_inline_attribute (tree *, tree, tree, int, bool *);
320static tree handle_artificial_attribute (tree *, tree, tree, int, bool *);
0691d1d4 321static tree handle_flatten_attribute (tree *, tree, tree, int, bool *);
d2af6a68 322static tree handle_error_attribute (tree *, tree, tree, int, bool *);
35b1a6fa
AJ
323static tree handle_used_attribute (tree *, tree, tree, int, bool *);
324static tree handle_unused_attribute (tree *, tree, tree, int, bool *);
ce91e74c
JH
325static tree handle_externally_visible_attribute (tree *, tree, tree, int,
326 bool *);
35b1a6fa
AJ
327static tree handle_const_attribute (tree *, tree, tree, int, bool *);
328static tree handle_transparent_union_attribute (tree *, tree, tree,
329 int, bool *);
330static tree handle_constructor_attribute (tree *, tree, tree, int, bool *);
331static tree handle_destructor_attribute (tree *, tree, tree, int, bool *);
332static tree handle_mode_attribute (tree *, tree, tree, int, bool *);
333static tree handle_section_attribute (tree *, tree, tree, int, bool *);
334static tree handle_aligned_attribute (tree *, tree, tree, int, bool *);
335static tree handle_weak_attribute (tree *, tree, tree, int, bool *) ;
336static tree handle_alias_attribute (tree *, tree, tree, int, bool *);
a0203ca7 337static tree handle_weakref_attribute (tree *, tree, tree, int, bool *) ;
35b1a6fa
AJ
338static tree handle_visibility_attribute (tree *, tree, tree, int,
339 bool *);
340static tree handle_tls_model_attribute (tree *, tree, tree, int,
341 bool *);
342static tree handle_no_instrument_function_attribute (tree *, tree,
343 tree, int, bool *);
344static tree handle_malloc_attribute (tree *, tree, tree, int, bool *);
6e9a3221 345static tree handle_returns_twice_attribute (tree *, tree, tree, int, bool *);
35b1a6fa
AJ
346static tree handle_no_limit_stack_attribute (tree *, tree, tree, int,
347 bool *);
348static tree handle_pure_attribute (tree *, tree, tree, int, bool *);
dcd6de6d 349static tree handle_novops_attribute (tree *, tree, tree, int, bool *);
35b1a6fa
AJ
350static tree handle_deprecated_attribute (tree *, tree, tree, int,
351 bool *);
352static tree handle_vector_size_attribute (tree *, tree, tree, int,
353 bool *);
354static tree handle_nonnull_attribute (tree *, tree, tree, int, bool *);
355static tree handle_nothrow_attribute (tree *, tree, tree, int, bool *);
356static tree handle_cleanup_attribute (tree *, tree, tree, int, bool *);
72954a4f
JM
357static tree handle_warn_unused_result_attribute (tree *, tree, tree, int,
358 bool *);
3d091dac 359static tree handle_sentinel_attribute (tree *, tree, tree, int, bool *);
b5d32c25 360static tree handle_type_generic_attribute (tree *, tree, tree, int, bool *);
51bc54a6 361static tree handle_alloc_size_attribute (tree *, tree, tree, int, bool *);
5779e713 362static tree handle_target_attribute (tree *, tree, tree, int, bool *);
ab442df7 363static tree handle_optimize_attribute (tree *, tree, tree, int, bool *);
0b7b376d 364static tree handle_fnspec_attribute (tree *, tree, tree, int, bool *);
35b1a6fa 365
94a0dd7b 366static void check_function_nonnull (tree, int, tree *);
35b1a6fa
AJ
367static void check_nonnull_arg (void *, tree, unsigned HOST_WIDE_INT);
368static bool nonnull_check_p (tree, unsigned HOST_WIDE_INT);
369static bool get_nonnull_operand (tree, unsigned HOST_WIDE_INT *);
d07605f5 370static int resort_field_decl_cmp (const void *, const void *);
b34c7881 371
eea1139b
ILT
372/* Reserved words. The third field is a mask: keywords are disabled
373 if they match the mask.
374
375 Masks for languages:
376 C --std=c89: D_C99 | D_CXXONLY | D_OBJC | D_CXX_OBJC
377 C --std=c99: D_CXXONLY | D_OBJC
378 ObjC is like C except that D_OBJC and D_CXX_OBJC are not set
379 C++ --std=c98: D_CONLY | D_CXXOX | D_OBJC
380 C++ --std=c0x: D_CONLY | D_OBJC
381 ObjC++ is like C++ except that D_OBJC is not set
382
383 If -fno-asm is used, D_ASM is added to the mask. If
384 -fno-gnu-keywords is used, D_EXT is added. If -fno-asm and C in
385 C89 mode, D_EXT89 is added for both -fno-asm and -fno-gnu-keywords.
2696a995 386 In C with -Wc++-compat, we warn if D_CXXWARN is set. */
eea1139b
ILT
387
388const struct c_common_resword c_common_reswords[] =
389{
390 { "_Bool", RID_BOOL, D_CONLY },
391 { "_Complex", RID_COMPLEX, 0 },
fa5da7de 392 { "_Imaginary", RID_IMAGINARY, D_CONLY },
eea1139b
ILT
393 { "_Decimal32", RID_DFLOAT32, D_CONLY | D_EXT },
394 { "_Decimal64", RID_DFLOAT64, D_CONLY | D_EXT },
395 { "_Decimal128", RID_DFLOAT128, D_CONLY | D_EXT },
396 { "_Fract", RID_FRACT, D_CONLY | D_EXT },
397 { "_Accum", RID_ACCUM, D_CONLY | D_EXT },
398 { "_Sat", RID_SAT, D_CONLY | D_EXT },
32912286 399 { "_Static_assert", RID_STATIC_ASSERT, D_CONLY },
eea1139b
ILT
400 { "__FUNCTION__", RID_FUNCTION_NAME, 0 },
401 { "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME, 0 },
402 { "__alignof", RID_ALIGNOF, 0 },
403 { "__alignof__", RID_ALIGNOF, 0 },
404 { "__asm", RID_ASM, 0 },
405 { "__asm__", RID_ASM, 0 },
406 { "__attribute", RID_ATTRIBUTE, 0 },
407 { "__attribute__", RID_ATTRIBUTE, 0 },
408 { "__builtin_choose_expr", RID_CHOOSE_EXPR, D_CONLY },
409 { "__builtin_offsetof", RID_OFFSETOF, 0 },
410 { "__builtin_types_compatible_p", RID_TYPES_COMPATIBLE_P, D_CONLY },
411 { "__builtin_va_arg", RID_VA_ARG, 0 },
412 { "__complex", RID_COMPLEX, 0 },
413 { "__complex__", RID_COMPLEX, 0 },
414 { "__const", RID_CONST, 0 },
415 { "__const__", RID_CONST, 0 },
416 { "__decltype", RID_DECLTYPE, D_CXXONLY },
417 { "__extension__", RID_EXTENSION, 0 },
418 { "__func__", RID_C99_FUNCTION_NAME, 0 },
419 { "__has_nothrow_assign", RID_HAS_NOTHROW_ASSIGN, D_CXXONLY },
420 { "__has_nothrow_constructor", RID_HAS_NOTHROW_CONSTRUCTOR, D_CXXONLY },
421 { "__has_nothrow_copy", RID_HAS_NOTHROW_COPY, D_CXXONLY },
422 { "__has_trivial_assign", RID_HAS_TRIVIAL_ASSIGN, D_CXXONLY },
423 { "__has_trivial_constructor", RID_HAS_TRIVIAL_CONSTRUCTOR, D_CXXONLY },
424 { "__has_trivial_copy", RID_HAS_TRIVIAL_COPY, D_CXXONLY },
425 { "__has_trivial_destructor", RID_HAS_TRIVIAL_DESTRUCTOR, D_CXXONLY },
426 { "__has_virtual_destructor", RID_HAS_VIRTUAL_DESTRUCTOR, D_CXXONLY },
a6766312 427 { "__int128", RID_INT128, 0 },
eea1139b
ILT
428 { "__is_abstract", RID_IS_ABSTRACT, D_CXXONLY },
429 { "__is_base_of", RID_IS_BASE_OF, D_CXXONLY },
430 { "__is_class", RID_IS_CLASS, D_CXXONLY },
431 { "__is_convertible_to", RID_IS_CONVERTIBLE_TO, D_CXXONLY },
432 { "__is_empty", RID_IS_EMPTY, D_CXXONLY },
433 { "__is_enum", RID_IS_ENUM, D_CXXONLY },
434 { "__is_pod", RID_IS_POD, D_CXXONLY },
435 { "__is_polymorphic", RID_IS_POLYMORPHIC, D_CXXONLY },
c32097d8
JM
436 { "__is_standard_layout", RID_IS_STD_LAYOUT, D_CXXONLY },
437 { "__is_trivial", RID_IS_TRIVIAL, D_CXXONLY },
eea1139b
ILT
438 { "__is_union", RID_IS_UNION, D_CXXONLY },
439 { "__imag", RID_IMAGPART, 0 },
440 { "__imag__", RID_IMAGPART, 0 },
441 { "__inline", RID_INLINE, 0 },
442 { "__inline__", RID_INLINE, 0 },
443 { "__label__", RID_LABEL, 0 },
444 { "__null", RID_NULL, 0 },
445 { "__real", RID_REALPART, 0 },
446 { "__real__", RID_REALPART, 0 },
447 { "__restrict", RID_RESTRICT, 0 },
448 { "__restrict__", RID_RESTRICT, 0 },
449 { "__signed", RID_SIGNED, 0 },
450 { "__signed__", RID_SIGNED, 0 },
451 { "__thread", RID_THREAD, 0 },
452 { "__typeof", RID_TYPEOF, 0 },
453 { "__typeof__", RID_TYPEOF, 0 },
454 { "__volatile", RID_VOLATILE, 0 },
455 { "__volatile__", RID_VOLATILE, 0 },
f4e8a943 456 { "alignof", RID_ALIGNOF, D_CXXONLY | D_CXX0X | D_CXXWARN },
eea1139b
ILT
457 { "asm", RID_ASM, D_ASM },
458 { "auto", RID_AUTO, 0 },
03c3034e 459 { "bool", RID_BOOL, D_CXXONLY | D_CXXWARN },
eea1139b
ILT
460 { "break", RID_BREAK, 0 },
461 { "case", RID_CASE, 0 },
2696a995 462 { "catch", RID_CATCH, D_CXX_OBJC | D_CXXWARN },
eea1139b 463 { "char", RID_CHAR, 0 },
2696a995
KG
464 { "char16_t", RID_CHAR16, D_CXXONLY | D_CXX0X | D_CXXWARN },
465 { "char32_t", RID_CHAR32, D_CXXONLY | D_CXX0X | D_CXXWARN },
466 { "class", RID_CLASS, D_CXX_OBJC | D_CXXWARN },
eea1139b 467 { "const", RID_CONST, 0 },
7ecbca9d 468 { "constexpr", RID_CONSTEXPR, D_CXXONLY | D_CXX0X | D_CXXWARN },
eea1139b
ILT
469 { "const_cast", RID_CONSTCAST, D_CXXONLY | D_CXXWARN },
470 { "continue", RID_CONTINUE, 0 },
2696a995 471 { "decltype", RID_DECLTYPE, D_CXXONLY | D_CXX0X | D_CXXWARN },
eea1139b 472 { "default", RID_DEFAULT, 0 },
2696a995 473 { "delete", RID_DELETE, D_CXXONLY | D_CXXWARN },
eea1139b
ILT
474 { "do", RID_DO, 0 },
475 { "double", RID_DOUBLE, 0 },
476 { "dynamic_cast", RID_DYNCAST, D_CXXONLY | D_CXXWARN },
477 { "else", RID_ELSE, 0 },
478 { "enum", RID_ENUM, 0 },
2696a995
KG
479 { "explicit", RID_EXPLICIT, D_CXXONLY | D_CXXWARN },
480 { "export", RID_EXPORT, D_CXXONLY | D_CXXWARN },
eea1139b 481 { "extern", RID_EXTERN, 0 },
2696a995 482 { "false", RID_FALSE, D_CXXONLY | D_CXXWARN },
eea1139b
ILT
483 { "float", RID_FLOAT, 0 },
484 { "for", RID_FOR, 0 },
2696a995 485 { "friend", RID_FRIEND, D_CXXONLY | D_CXXWARN },
eea1139b
ILT
486 { "goto", RID_GOTO, 0 },
487 { "if", RID_IF, 0 },
488 { "inline", RID_INLINE, D_EXT89 },
489 { "int", RID_INT, 0 },
490 { "long", RID_LONG, 0 },
491 { "mutable", RID_MUTABLE, D_CXXONLY | D_CXXWARN },
2696a995
KG
492 { "namespace", RID_NAMESPACE, D_CXXONLY | D_CXXWARN },
493 { "new", RID_NEW, D_CXXONLY | D_CXXWARN },
0a766368 494 { "noexcept", RID_NOEXCEPT, D_CXXONLY | D_CXX0X | D_CXXWARN },
14c2101d 495 { "nullptr", RID_NULLPTR, D_CXXONLY | D_CXX0X | D_CXXWARN },
2696a995
KG
496 { "operator", RID_OPERATOR, D_CXXONLY | D_CXXWARN },
497 { "private", RID_PRIVATE, D_CXX_OBJC | D_CXXWARN },
498 { "protected", RID_PROTECTED, D_CXX_OBJC | D_CXXWARN },
499 { "public", RID_PUBLIC, D_CXX_OBJC | D_CXXWARN },
eea1139b
ILT
500 { "register", RID_REGISTER, 0 },
501 { "reinterpret_cast", RID_REINTCAST, D_CXXONLY | D_CXXWARN },
502 { "restrict", RID_RESTRICT, D_CONLY | D_C99 },
503 { "return", RID_RETURN, 0 },
504 { "short", RID_SHORT, 0 },
505 { "signed", RID_SIGNED, 0 },
506 { "sizeof", RID_SIZEOF, 0 },
507 { "static", RID_STATIC, 0 },
508 { "static_assert", RID_STATIC_ASSERT, D_CXXONLY | D_CXX0X | D_CXXWARN },
509 { "static_cast", RID_STATCAST, D_CXXONLY | D_CXXWARN },
510 { "struct", RID_STRUCT, 0 },
511 { "switch", RID_SWITCH, 0 },
2696a995
KG
512 { "template", RID_TEMPLATE, D_CXXONLY | D_CXXWARN },
513 { "this", RID_THIS, D_CXXONLY | D_CXXWARN },
514 { "throw", RID_THROW, D_CXX_OBJC | D_CXXWARN },
515 { "true", RID_TRUE, D_CXXONLY | D_CXXWARN },
516 { "try", RID_TRY, D_CXX_OBJC | D_CXXWARN },
eea1139b 517 { "typedef", RID_TYPEDEF, 0 },
2696a995
KG
518 { "typename", RID_TYPENAME, D_CXXONLY | D_CXXWARN },
519 { "typeid", RID_TYPEID, D_CXXONLY | D_CXXWARN },
eea1139b
ILT
520 { "typeof", RID_TYPEOF, D_ASM | D_EXT },
521 { "union", RID_UNION, 0 },
522 { "unsigned", RID_UNSIGNED, 0 },
2696a995
KG
523 { "using", RID_USING, D_CXXONLY | D_CXXWARN },
524 { "virtual", RID_VIRTUAL, D_CXXONLY | D_CXXWARN },
eea1139b
ILT
525 { "void", RID_VOID, 0 },
526 { "volatile", RID_VOLATILE, 0 },
527 { "wchar_t", RID_WCHAR, D_CXXONLY },
528 { "while", RID_WHILE, 0 },
529 /* These Objective-C keywords are recognized only immediately after
530 an '@'. */
531 { "compatibility_alias", RID_AT_ALIAS, D_OBJC },
532 { "defs", RID_AT_DEFS, D_OBJC },
533 { "encode", RID_AT_ENCODE, D_OBJC },
534 { "end", RID_AT_END, D_OBJC },
535 { "implementation", RID_AT_IMPLEMENTATION, D_OBJC },
536 { "interface", RID_AT_INTERFACE, D_OBJC },
537 { "protocol", RID_AT_PROTOCOL, D_OBJC },
538 { "selector", RID_AT_SELECTOR, D_OBJC },
539 { "finally", RID_AT_FINALLY, D_OBJC },
540 { "synchronized", RID_AT_SYNCHRONIZED, D_OBJC },
541 /* These are recognized only in protocol-qualifier context
542 (see above) */
543 { "bycopy", RID_BYCOPY, D_OBJC },
544 { "byref", RID_BYREF, D_OBJC },
545 { "in", RID_IN, D_OBJC },
546 { "inout", RID_INOUT, D_OBJC },
547 { "oneway", RID_ONEWAY, D_OBJC },
548 { "out", RID_OUT, D_OBJC },
549};
550
551const unsigned int num_c_common_reswords =
552 sizeof c_common_reswords / sizeof (struct c_common_resword);
553
349ae713
NB
554/* Table of machine-independent attributes common to all C-like languages. */
555const struct attribute_spec c_common_attribute_table[] =
556{
557 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
558 { "packed", 0, 0, false, false, false,
35b1a6fa 559 handle_packed_attribute },
349ae713
NB
560 { "nocommon", 0, 0, true, false, false,
561 handle_nocommon_attribute },
562 { "common", 0, 0, true, false, false,
563 handle_common_attribute },
564 /* FIXME: logically, noreturn attributes should be listed as
565 "false, true, true" and apply to function types. But implementing this
566 would require all the places in the compiler that use TREE_THIS_VOLATILE
567 on a decl to identify non-returning functions to be located and fixed
568 to check the function type instead. */
569 { "noreturn", 0, 0, true, false, false,
570 handle_noreturn_attribute },
571 { "volatile", 0, 0, true, false, false,
572 handle_noreturn_attribute },
573 { "noinline", 0, 0, true, false, false,
574 handle_noinline_attribute },
86631ea3
MJ
575 { "noclone", 0, 0, true, false, false,
576 handle_noclone_attribute },
349ae713
NB
577 { "always_inline", 0, 0, true, false, false,
578 handle_always_inline_attribute },
4eb7fd83
JJ
579 { "gnu_inline", 0, 0, true, false, false,
580 handle_gnu_inline_attribute },
d752cfdb
JJ
581 { "artificial", 0, 0, true, false, false,
582 handle_artificial_attribute },
0691d1d4 583 { "flatten", 0, 0, true, false, false,
c22cacf3 584 handle_flatten_attribute },
349ae713
NB
585 { "used", 0, 0, true, false, false,
586 handle_used_attribute },
587 { "unused", 0, 0, false, false, false,
588 handle_unused_attribute },
ce91e74c
JH
589 { "externally_visible", 0, 0, true, false, false,
590 handle_externally_visible_attribute },
349ae713
NB
591 /* The same comments as for noreturn attributes apply to const ones. */
592 { "const", 0, 0, true, false, false,
593 handle_const_attribute },
594 { "transparent_union", 0, 0, false, false, false,
595 handle_transparent_union_attribute },
fc8600f9 596 { "constructor", 0, 1, true, false, false,
349ae713 597 handle_constructor_attribute },
fc8600f9 598 { "destructor", 0, 1, true, false, false,
349ae713
NB
599 handle_destructor_attribute },
600 { "mode", 1, 1, false, true, false,
601 handle_mode_attribute },
602 { "section", 1, 1, true, false, false,
603 handle_section_attribute },
604 { "aligned", 0, 1, false, false, false,
605 handle_aligned_attribute },
606 { "weak", 0, 0, true, false, false,
607 handle_weak_attribute },
608 { "alias", 1, 1, true, false, false,
609 handle_alias_attribute },
a0203ca7
AO
610 { "weakref", 0, 1, true, false, false,
611 handle_weakref_attribute },
349ae713
NB
612 { "no_instrument_function", 0, 0, true, false, false,
613 handle_no_instrument_function_attribute },
614 { "malloc", 0, 0, true, false, false,
615 handle_malloc_attribute },
6e9a3221
AN
616 { "returns_twice", 0, 0, true, false, false,
617 handle_returns_twice_attribute },
349ae713
NB
618 { "no_stack_limit", 0, 0, true, false, false,
619 handle_no_limit_stack_attribute },
620 { "pure", 0, 0, true, false, false,
621 handle_pure_attribute },
dcd6de6d
ZD
622 /* For internal use (marking of builtins) only. The name contains space
623 to prevent its usage in source code. */
624 { "no vops", 0, 0, true, false, false,
625 handle_novops_attribute },
9b86d6bb 626 { "deprecated", 0, 1, false, false, false,
349ae713
NB
627 handle_deprecated_attribute },
628 { "vector_size", 1, 1, false, true, false,
629 handle_vector_size_attribute },
d7afec4b 630 { "visibility", 1, 1, false, false, false,
349ae713 631 handle_visibility_attribute },
dce81a1a
JJ
632 { "tls_model", 1, 1, true, false, false,
633 handle_tls_model_attribute },
b34c7881
JT
634 { "nonnull", 0, -1, false, true, true,
635 handle_nonnull_attribute },
39f2f3c8
RS
636 { "nothrow", 0, 0, true, false, false,
637 handle_nothrow_attribute },
d18b1ed8 638 { "may_alias", 0, 0, false, true, false, NULL },
0bfa5f65
RH
639 { "cleanup", 1, 1, true, false, false,
640 handle_cleanup_attribute },
72954a4f
JM
641 { "warn_unused_result", 0, 0, false, true, true,
642 handle_warn_unused_result_attribute },
254986c7 643 { "sentinel", 0, 1, false, true, true,
3d091dac 644 handle_sentinel_attribute },
b5d32c25
KG
645 /* For internal use (marking of builtins) only. The name contains space
646 to prevent its usage in source code. */
647 { "type generic", 0, 0, false, true, true,
648 handle_type_generic_attribute },
51bc54a6
DM
649 { "alloc_size", 1, 2, false, true, true,
650 handle_alloc_size_attribute },
52bf96d2
JH
651 { "cold", 0, 0, true, false, false,
652 handle_cold_attribute },
653 { "hot", 0, 0, true, false, false,
654 handle_hot_attribute },
d2af6a68
JJ
655 { "warning", 1, 1, true, false, false,
656 handle_error_attribute },
657 { "error", 1, 1, true, false, false,
658 handle_error_attribute },
5779e713
MM
659 { "target", 1, -1, true, false, false,
660 handle_target_attribute },
ab442df7
MM
661 { "optimize", 1, -1, true, false, false,
662 handle_optimize_attribute },
0b7b376d
RG
663 /* For internal use (marking of builtins and runtime functions) only.
664 The name contains space to prevent its usage in source code. */
665 { "fn spec", 1, 1, false, true, true,
666 handle_fnspec_attribute },
349ae713
NB
667 { NULL, 0, 0, false, false, false, NULL }
668};
669
670/* Give the specifications for the format attributes, used by C and all
95bd1dd7 671 descendants. */
349ae713
NB
672
673const struct attribute_spec c_common_format_attribute_table[] =
674{
675 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
676 { "format", 3, 3, false, true, true,
677 handle_format_attribute },
678 { "format_arg", 1, 1, false, true, true,
679 handle_format_arg_attribute },
680 { NULL, 0, 0, false, false, false, NULL }
681};
682
36c5e70a 683/* Return identifier for address space AS. */
3ef0694c 684
36c5e70a
BE
685const char *
686c_addr_space_name (addr_space_t as)
687{
3ef0694c
UW
688 int rid = RID_FIRST_ADDR_SPACE + as;
689 gcc_assert (ridpointers [rid]);
690 return IDENTIFIER_POINTER (ridpointers [rid]);
36c5e70a
BE
691}
692
ec5c56db 693/* Push current bindings for the function name VAR_DECLS. */
7da551a2
RS
694
695void
35b1a6fa 696start_fname_decls (void)
7da551a2 697{
0ba8a114
NS
698 unsigned ix;
699 tree saved = NULL_TREE;
35b1a6fa 700
0ba8a114
NS
701 for (ix = 0; fname_vars[ix].decl; ix++)
702 {
703 tree decl = *fname_vars[ix].decl;
7da551a2 704
0ba8a114
NS
705 if (decl)
706 {
7d60be94 707 saved = tree_cons (decl, build_int_cst (NULL_TREE, ix), saved);
0ba8a114
NS
708 *fname_vars[ix].decl = NULL_TREE;
709 }
710 }
711 if (saved || saved_function_name_decls)
712 /* Normally they'll have been NULL, so only push if we've got a
713 stack, or they are non-NULL. */
714 saved_function_name_decls = tree_cons (saved, NULL_TREE,
715 saved_function_name_decls);
716}
717
325c3691
RH
718/* Finish up the current bindings, adding them into the current function's
719 statement tree. This must be done _before_ finish_stmt_tree is called.
720 If there is no current function, we must be at file scope and no statements
721 are involved. Pop the previous bindings. */
0ba8a114
NS
722
723void
35b1a6fa 724finish_fname_decls (void)
0ba8a114
NS
725{
726 unsigned ix;
325c3691 727 tree stmts = NULL_TREE;
0ba8a114
NS
728 tree stack = saved_function_name_decls;
729
730 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
325c3691 731 append_to_statement_list (TREE_VALUE (stack), &stmts);
35b1a6fa 732
325c3691 733 if (stmts)
0ba8a114 734 {
325c3691 735 tree *bodyp = &DECL_SAVED_TREE (current_function_decl);
bfaba7a9 736
325c3691
RH
737 if (TREE_CODE (*bodyp) == BIND_EXPR)
738 bodyp = &BIND_EXPR_BODY (*bodyp);
6cce57b0 739
86ad3aa9 740 append_to_statement_list_force (*bodyp, &stmts);
325c3691 741 *bodyp = stmts;
0ba8a114 742 }
35b1a6fa 743
0ba8a114
NS
744 for (ix = 0; fname_vars[ix].decl; ix++)
745 *fname_vars[ix].decl = NULL_TREE;
35b1a6fa 746
0ba8a114 747 if (stack)
7da551a2 748 {
ec5c56db 749 /* We had saved values, restore them. */
0ba8a114
NS
750 tree saved;
751
752 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
753 {
754 tree decl = TREE_PURPOSE (saved);
755 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
35b1a6fa 756
0ba8a114
NS
757 *fname_vars[ix].decl = decl;
758 }
759 stack = TREE_CHAIN (stack);
7da551a2 760 }
0ba8a114
NS
761 saved_function_name_decls = stack;
762}
763
6cce57b0 764/* Return the text name of the current function, suitably prettified
0d0bc036 765 by PRETTY_P. Return string must be freed by caller. */
0ba8a114
NS
766
767const char *
35b1a6fa 768fname_as_string (int pretty_p)
0ba8a114 769{
47ab33b2 770 const char *name = "top level";
0d0bc036 771 char *namep;
46c2514e
TT
772 int vrb = 2, len;
773 cpp_string cstr = { 0, 0 }, strname;
47ab33b2 774
3f75a254 775 if (!pretty_p)
47ab33b2
MA
776 {
777 name = "";
778 vrb = 0;
779 }
780
781 if (current_function_decl)
ae2bcd98 782 name = lang_hooks.decl_printable_name (current_function_decl, vrb);
47ab33b2 783
46c2514e 784 len = strlen (name) + 3; /* Two for '"'s. One for NULL. */
0d0bc036 785
46c2514e
TT
786 namep = XNEWVEC (char, len);
787 snprintf (namep, len, "\"%s\"", name);
788 strname.text = (unsigned char *) namep;
789 strname.len = len - 1;
0d0bc036 790
b6baa67d 791 if (cpp_interpret_string (parse_in, &strname, 1, &cstr, CPP_STRING))
46c2514e
TT
792 {
793 XDELETEVEC (namep);
794 return (const char *) cstr.text;
0d0bc036 795 }
0d0bc036
AH
796
797 return namep;
0ba8a114
NS
798}
799
0ba8a114
NS
800/* Return the VAR_DECL for a const char array naming the current
801 function. If the VAR_DECL has not yet been created, create it
802 now. RID indicates how it should be formatted and IDENTIFIER_NODE
803 ID is its name (unfortunately C and C++ hold the RID values of
804 keywords in different places, so we can't derive RID from ID in
3ba09659
AH
805 this language independent code. LOC is the location of the
806 function. */
0ba8a114
NS
807
808tree
3ba09659 809fname_decl (location_t loc, unsigned int rid, tree id)
0ba8a114
NS
810{
811 unsigned ix;
812 tree decl = NULL_TREE;
813
814 for (ix = 0; fname_vars[ix].decl; ix++)
815 if (fname_vars[ix].rid == rid)
816 break;
817
818 decl = *fname_vars[ix].decl;
819 if (!decl)
7da551a2 820 {
8d3e27d1
DJ
821 /* If a tree is built here, it would normally have the lineno of
822 the current statement. Later this tree will be moved to the
823 beginning of the function and this line number will be wrong.
824 To avoid this problem set the lineno to 0 here; that prevents
4b7e68e7 825 it from appearing in the RTL. */
325c3691 826 tree stmts;
3c20847b 827 location_t saved_location = input_location;
3c20847b 828 input_location = UNKNOWN_LOCATION;
35b1a6fa 829
325c3691 830 stmts = push_stmt_list ();
c2255bc4 831 decl = (*make_fname_decl) (loc, id, fname_vars[ix].pretty);
325c3691
RH
832 stmts = pop_stmt_list (stmts);
833 if (!IS_EMPTY_STMT (stmts))
834 saved_function_name_decls
835 = tree_cons (decl, stmts, saved_function_name_decls);
0ba8a114 836 *fname_vars[ix].decl = decl;
3c20847b 837 input_location = saved_location;
7da551a2 838 }
0ba8a114 839 if (!ix && !current_function_decl)
3ba09659 840 pedwarn (loc, 0, "%qD is not defined outside of function scope", decl);
6cce57b0 841
0ba8a114 842 return decl;
7da551a2
RS
843}
844
b84a3874 845/* Given a STRING_CST, give it a suitable array-of-chars data type. */
b30f223b
RS
846
847tree
35b1a6fa 848fix_string_type (tree value)
b30f223b 849{
b84a3874
RH
850 int length = TREE_STRING_LENGTH (value);
851 int nchars;
c162c75e
MA
852 tree e_type, i_type, a_type;
853
b57062ca 854 /* Compute the number of elements, for the array type. */
b6baa67d
KVH
855 if (TREE_TYPE (value) == char_array_type_node || !TREE_TYPE (value))
856 {
857 nchars = length;
858 e_type = char_type_node;
859 }
860 else if (TREE_TYPE (value) == char16_array_type_node)
861 {
862 nchars = length / (TYPE_PRECISION (char16_type_node) / BITS_PER_UNIT);
863 e_type = char16_type_node;
864 }
865 else if (TREE_TYPE (value) == char32_array_type_node)
866 {
867 nchars = length / (TYPE_PRECISION (char32_type_node) / BITS_PER_UNIT);
868 e_type = char32_type_node;
869 }
870 else
871 {
872 nchars = length / (TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT);
873 e_type = wchar_type_node;
874 }
b30f223b 875
89a42ac8
ZW
876 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
877 limit in C++98 Annex B is very large (65536) and is not normative,
878 so we do not diagnose it (warn_overlength_strings is forced off
879 in c_common_post_options). */
880 if (warn_overlength_strings)
881 {
882 const int nchars_max = flag_isoc99 ? 4095 : 509;
883 const int relevant_std = flag_isoc99 ? 99 : 90;
884 if (nchars - 1 > nchars_max)
885 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
886 separate the %d from the 'C'. 'ISO' should not be
887 translated, but it may be moved after 'C%d' in languages
888 where modifiers follow nouns. */
509c9d60 889 pedwarn (input_location, OPT_Woverlength_strings,
fcf73884 890 "string length %qd is greater than the length %qd "
89a42ac8
ZW
891 "ISO C%d compilers are required to support",
892 nchars - 1, nchars_max, relevant_std);
893 }
1326a48b 894
cfb10bd3
GDR
895 /* Create the array type for the string constant. The ISO C++
896 standard says that a string literal has type `const char[N]' or
897 `const wchar_t[N]'. We use the same logic when invoked as a C
898 front-end with -Wwrite-strings.
899 ??? We should change the type of an expression depending on the
900 state of a warning flag. We should just be warning -- see how
901 this is handled in the C++ front-end for the deprecated implicit
902 conversion from string literals to `char*' or `wchar_t*'.
c162c75e
MA
903
904 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
905 array type being the unqualified version of that type.
906 Therefore, if we are constructing an array of const char, we must
907 construct the matching unqualified array type first. The C front
908 end does not require this, but it does no harm, so we do it
909 unconditionally. */
7d60be94 910 i_type = build_index_type (build_int_cst (NULL_TREE, nchars - 1));
c162c75e 911 a_type = build_array_type (e_type, i_type);
cfb10bd3 912 if (c_dialect_cxx() || warn_write_strings)
46df2823 913 a_type = c_build_qualified_type (a_type, TYPE_QUAL_CONST);
d9cf7c82 914
c162c75e 915 TREE_TYPE (value) = a_type;
ccd4c832 916 TREE_CONSTANT (value) = 1;
3521b33c 917 TREE_READONLY (value) = 1;
b30f223b
RS
918 TREE_STATIC (value) = 1;
919 return value;
920}
921\f
928c19bb
JM
922/* Fully fold EXPR, an expression that was not folded (beyond integer
923 constant expressions and null pointer constants) when being built
924 up. If IN_INIT, this is in a static initializer and certain
925 changes are made to the folding done. Clear *MAYBE_CONST if
926 MAYBE_CONST is not NULL and EXPR is definitely not a constant
927 expression because it contains an evaluated operator (in C99) or an
928 operator outside of sizeof returning an integer constant (in C90)
929 not permitted in constant expressions, or because it contains an
930 evaluated arithmetic overflow. (*MAYBE_CONST should typically be
931 set to true by callers before calling this function.) Return the
932 folded expression. Function arguments have already been folded
933 before calling this function, as have the contents of SAVE_EXPR,
934 TARGET_EXPR, BIND_EXPR, VA_ARG_EXPR, OBJ_TYPE_REF and
935 C_MAYBE_CONST_EXPR. */
936
937tree
938c_fully_fold (tree expr, bool in_init, bool *maybe_const)
939{
940 tree ret;
8ce94e44 941 tree eptype = NULL_TREE;
928c19bb
JM
942 bool dummy = true;
943 bool maybe_const_itself = true;
db3927fb 944 location_t loc = EXPR_LOCATION (expr);
928c19bb
JM
945
946 /* This function is not relevant to C++ because C++ folds while
947 parsing, and may need changes to be correct for C++ when C++
948 stops folding while parsing. */
949 if (c_dialect_cxx ())
950 gcc_unreachable ();
951
952 if (!maybe_const)
953 maybe_const = &dummy;
8ce94e44
JM
954 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
955 {
956 eptype = TREE_TYPE (expr);
957 expr = TREE_OPERAND (expr, 0);
958 }
928c19bb
JM
959 ret = c_fully_fold_internal (expr, in_init, maybe_const,
960 &maybe_const_itself);
8ce94e44 961 if (eptype)
db3927fb 962 ret = fold_convert_loc (loc, eptype, ret);
928c19bb
JM
963 *maybe_const &= maybe_const_itself;
964 return ret;
965}
966
967/* Internal helper for c_fully_fold. EXPR and IN_INIT are as for
968 c_fully_fold. *MAYBE_CONST_OPERANDS is cleared because of operands
969 not permitted, while *MAYBE_CONST_ITSELF is cleared because of
970 arithmetic overflow (for C90, *MAYBE_CONST_OPERANDS is carried from
971 both evaluated and unevaluated subexpressions while
972 *MAYBE_CONST_ITSELF is carried from only evaluated
973 subexpressions). */
974
975static tree
976c_fully_fold_internal (tree expr, bool in_init, bool *maybe_const_operands,
977 bool *maybe_const_itself)
978{
979 tree ret = expr;
980 enum tree_code code = TREE_CODE (expr);
981 enum tree_code_class kind = TREE_CODE_CLASS (code);
982 location_t loc = EXPR_LOCATION (expr);
983 tree op0, op1, op2, op3;
984 tree orig_op0, orig_op1, orig_op2;
985 bool op0_const = true, op1_const = true, op2_const = true;
986 bool op0_const_self = true, op1_const_self = true, op2_const_self = true;
987 bool nowarning = TREE_NO_WARNING (expr);
f5178456 988 int unused_p;
928c19bb
JM
989
990 /* This function is not relevant to C++ because C++ folds while
991 parsing, and may need changes to be correct for C++ when C++
992 stops folding while parsing. */
993 if (c_dialect_cxx ())
994 gcc_unreachable ();
995
996 /* Constants, declarations, statements, errors, SAVE_EXPRs and
997 anything else not counted as an expression cannot usefully be
998 folded further at this point. */
999 if (!IS_EXPR_CODE_CLASS (kind)
1000 || kind == tcc_statement
1001 || code == SAVE_EXPR)
1002 return expr;
1003
1004 /* Operands of variable-length expressions (function calls) have
1005 already been folded, as have __builtin_* function calls, and such
1006 expressions cannot occur in constant expressions. */
1007 if (kind == tcc_vl_exp)
1008 {
1009 *maybe_const_operands = false;
1010 ret = fold (expr);
1011 goto out;
1012 }
1013
1014 if (code == C_MAYBE_CONST_EXPR)
1015 {
1016 tree pre = C_MAYBE_CONST_EXPR_PRE (expr);
1017 tree inner = C_MAYBE_CONST_EXPR_EXPR (expr);
1018 if (C_MAYBE_CONST_EXPR_NON_CONST (expr))
1019 *maybe_const_operands = false;
1020 if (C_MAYBE_CONST_EXPR_INT_OPERANDS (expr))
1021 *maybe_const_itself = false;
1022 if (pre && !in_init)
1023 ret = build2 (COMPOUND_EXPR, TREE_TYPE (expr), pre, inner);
1024 else
1025 ret = inner;
1026 goto out;
1027 }
1028
1029 /* Assignment, increment, decrement, function call and comma
1030 operators, and statement expressions, cannot occur in constant
1031 expressions if evaluated / outside of sizeof. (Function calls
1032 were handled above, though VA_ARG_EXPR is treated like a function
1033 call here, and statement expressions are handled through
1034 C_MAYBE_CONST_EXPR to avoid folding inside them.) */
1035 switch (code)
1036 {
1037 case MODIFY_EXPR:
1038 case PREDECREMENT_EXPR:
1039 case PREINCREMENT_EXPR:
1040 case POSTDECREMENT_EXPR:
1041 case POSTINCREMENT_EXPR:
1042 case COMPOUND_EXPR:
1043 *maybe_const_operands = false;
1044 break;
1045
1046 case VA_ARG_EXPR:
1047 case TARGET_EXPR:
1048 case BIND_EXPR:
1049 case OBJ_TYPE_REF:
1050 *maybe_const_operands = false;
1051 ret = fold (expr);
1052 goto out;
1053
1054 default:
1055 break;
1056 }
1057
1058 /* Fold individual tree codes as appropriate. */
1059 switch (code)
1060 {
1061 case COMPOUND_LITERAL_EXPR:
1062 /* Any non-constancy will have been marked in a containing
1063 C_MAYBE_CONST_EXPR; there is no more folding to do here. */
1064 goto out;
1065
1066 case COMPONENT_REF:
1067 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1068 op1 = TREE_OPERAND (expr, 1);
1069 op2 = TREE_OPERAND (expr, 2);
1070 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1071 maybe_const_itself);
e5a94231 1072 STRIP_TYPE_NOPS (op0);
928c19bb
JM
1073 if (op0 != orig_op0)
1074 ret = build3 (COMPONENT_REF, TREE_TYPE (expr), op0, op1, op2);
1075 if (ret != expr)
1076 {
1077 TREE_READONLY (ret) = TREE_READONLY (expr);
1078 TREE_THIS_VOLATILE (ret) = TREE_THIS_VOLATILE (expr);
1079 }
1080 goto out;
1081
1082 case ARRAY_REF:
1083 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1084 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1085 op2 = TREE_OPERAND (expr, 2);
1086 op3 = TREE_OPERAND (expr, 3);
1087 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1088 maybe_const_itself);
e5a94231 1089 STRIP_TYPE_NOPS (op0);
928c19bb
JM
1090 op1 = c_fully_fold_internal (op1, in_init, maybe_const_operands,
1091 maybe_const_itself);
e5a94231 1092 STRIP_TYPE_NOPS (op1);
928c19bb
JM
1093 op1 = decl_constant_value_for_optimization (op1);
1094 if (op0 != orig_op0 || op1 != orig_op1)
1095 ret = build4 (ARRAY_REF, TREE_TYPE (expr), op0, op1, op2, op3);
1096 if (ret != expr)
1097 {
1098 TREE_READONLY (ret) = TREE_READONLY (expr);
1099 TREE_SIDE_EFFECTS (ret) = TREE_SIDE_EFFECTS (expr);
1100 TREE_THIS_VOLATILE (ret) = TREE_THIS_VOLATILE (expr);
1101 }
1102 ret = fold (ret);
1103 goto out;
1104
1105 case COMPOUND_EXPR:
1106 case MODIFY_EXPR:
1107 case PREDECREMENT_EXPR:
1108 case PREINCREMENT_EXPR:
1109 case POSTDECREMENT_EXPR:
1110 case POSTINCREMENT_EXPR:
1111 case PLUS_EXPR:
1112 case MINUS_EXPR:
1113 case MULT_EXPR:
1114 case POINTER_PLUS_EXPR:
1115 case TRUNC_DIV_EXPR:
1116 case CEIL_DIV_EXPR:
1117 case FLOOR_DIV_EXPR:
1118 case TRUNC_MOD_EXPR:
1119 case RDIV_EXPR:
1120 case EXACT_DIV_EXPR:
1121 case LSHIFT_EXPR:
1122 case RSHIFT_EXPR:
1123 case BIT_IOR_EXPR:
1124 case BIT_XOR_EXPR:
1125 case BIT_AND_EXPR:
1126 case LT_EXPR:
1127 case LE_EXPR:
1128 case GT_EXPR:
1129 case GE_EXPR:
1130 case EQ_EXPR:
1131 case NE_EXPR:
1132 case COMPLEX_EXPR:
1133 case TRUTH_AND_EXPR:
1134 case TRUTH_OR_EXPR:
1135 case TRUTH_XOR_EXPR:
1136 case UNORDERED_EXPR:
1137 case ORDERED_EXPR:
1138 case UNLT_EXPR:
1139 case UNLE_EXPR:
1140 case UNGT_EXPR:
1141 case UNGE_EXPR:
1142 case UNEQ_EXPR:
1143 /* Binary operations evaluating both arguments (increment and
1144 decrement are binary internally in GCC). */
1145 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1146 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1147 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1148 maybe_const_itself);
e5a94231 1149 STRIP_TYPE_NOPS (op0);
928c19bb
JM
1150 if (code != MODIFY_EXPR
1151 && code != PREDECREMENT_EXPR
1152 && code != PREINCREMENT_EXPR
1153 && code != POSTDECREMENT_EXPR
1154 && code != POSTINCREMENT_EXPR)
1155 op0 = decl_constant_value_for_optimization (op0);
1156 /* The RHS of a MODIFY_EXPR was fully folded when building that
1157 expression for the sake of conversion warnings. */
1158 if (code != MODIFY_EXPR)
1159 op1 = c_fully_fold_internal (op1, in_init, maybe_const_operands,
1160 maybe_const_itself);
e5a94231 1161 STRIP_TYPE_NOPS (op1);
928c19bb
JM
1162 op1 = decl_constant_value_for_optimization (op1);
1163 if (op0 != orig_op0 || op1 != orig_op1 || in_init)
1164 ret = in_init
db3927fb
AH
1165 ? fold_build2_initializer_loc (loc, code, TREE_TYPE (expr), op0, op1)
1166 : fold_build2_loc (loc, code, TREE_TYPE (expr), op0, op1);
928c19bb
JM
1167 else
1168 ret = fold (expr);
f5178456
RS
1169 if (TREE_OVERFLOW_P (ret)
1170 && !TREE_OVERFLOW_P (op0)
1171 && !TREE_OVERFLOW_P (op1))
1172 overflow_warning (EXPR_LOCATION (expr), ret);
928c19bb
JM
1173 goto out;
1174
1175 case INDIRECT_REF:
1176 case FIX_TRUNC_EXPR:
1177 case FLOAT_EXPR:
1178 CASE_CONVERT:
1179 case NON_LVALUE_EXPR:
1180 case NEGATE_EXPR:
1181 case BIT_NOT_EXPR:
1182 case TRUTH_NOT_EXPR:
1183 case ADDR_EXPR:
1184 case CONJ_EXPR:
1185 case REALPART_EXPR:
1186 case IMAGPART_EXPR:
1187 /* Unary operations. */
1188 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1189 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1190 maybe_const_itself);
e5a94231 1191 STRIP_TYPE_NOPS (op0);
928c19bb
JM
1192 if (code != ADDR_EXPR && code != REALPART_EXPR && code != IMAGPART_EXPR)
1193 op0 = decl_constant_value_for_optimization (op0);
1194 if (op0 != orig_op0 || in_init)
1195 ret = in_init
db3927fb
AH
1196 ? fold_build1_initializer_loc (loc, code, TREE_TYPE (expr), op0)
1197 : fold_build1_loc (loc, code, TREE_TYPE (expr), op0);
928c19bb
JM
1198 else
1199 ret = fold (expr);
1200 if (code == INDIRECT_REF
1201 && ret != expr
1202 && TREE_CODE (ret) == INDIRECT_REF)
1203 {
1204 TREE_READONLY (ret) = TREE_READONLY (expr);
1205 TREE_SIDE_EFFECTS (ret) = TREE_SIDE_EFFECTS (expr);
1206 TREE_THIS_VOLATILE (ret) = TREE_THIS_VOLATILE (expr);
1207 }
f5178456
RS
1208 switch (code)
1209 {
1210 case FIX_TRUNC_EXPR:
1211 case FLOAT_EXPR:
1212 CASE_CONVERT:
1213 /* Don't warn about explicit conversions. We will already
1214 have warned about suspect implicit conversions. */
1215 break;
1216
1217 default:
1218 if (TREE_OVERFLOW_P (ret) && !TREE_OVERFLOW_P (op0))
1219 overflow_warning (EXPR_LOCATION (expr), ret);
1220 break;
1221 }
928c19bb
JM
1222 goto out;
1223
1224 case TRUTH_ANDIF_EXPR:
1225 case TRUTH_ORIF_EXPR:
1226 /* Binary operations not necessarily evaluating both
1227 arguments. */
1228 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1229 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1230 op0 = c_fully_fold_internal (op0, in_init, &op0_const, &op0_const_self);
e5a94231 1231 STRIP_TYPE_NOPS (op0);
f5178456
RS
1232
1233 unused_p = (op0 == (code == TRUTH_ANDIF_EXPR
1234 ? truthvalue_false_node
1235 : truthvalue_true_node));
1236 c_inhibit_evaluation_warnings += unused_p;
928c19bb 1237 op1 = c_fully_fold_internal (op1, in_init, &op1_const, &op1_const_self);
e5a94231 1238 STRIP_TYPE_NOPS (op1);
f5178456
RS
1239 c_inhibit_evaluation_warnings -= unused_p;
1240
928c19bb
JM
1241 if (op0 != orig_op0 || op1 != orig_op1 || in_init)
1242 ret = in_init
db3927fb
AH
1243 ? fold_build2_initializer_loc (loc, code, TREE_TYPE (expr), op0, op1)
1244 : fold_build2_loc (loc, code, TREE_TYPE (expr), op0, op1);
928c19bb
JM
1245 else
1246 ret = fold (expr);
1247 *maybe_const_operands &= op0_const;
1248 *maybe_const_itself &= op0_const_self;
1249 if (!(flag_isoc99
1250 && op0_const
1251 && op0_const_self
1252 && (code == TRUTH_ANDIF_EXPR
1253 ? op0 == truthvalue_false_node
1254 : op0 == truthvalue_true_node)))
1255 *maybe_const_operands &= op1_const;
1256 if (!(op0_const
1257 && op0_const_self
1258 && (code == TRUTH_ANDIF_EXPR
1259 ? op0 == truthvalue_false_node
1260 : op0 == truthvalue_true_node)))
1261 *maybe_const_itself &= op1_const_self;
1262 goto out;
1263
1264 case COND_EXPR:
1265 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1266 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1267 orig_op2 = op2 = TREE_OPERAND (expr, 2);
1268 op0 = c_fully_fold_internal (op0, in_init, &op0_const, &op0_const_self);
f5178456 1269
e5a94231 1270 STRIP_TYPE_NOPS (op0);
f5178456 1271 c_inhibit_evaluation_warnings += (op0 == truthvalue_false_node);
928c19bb 1272 op1 = c_fully_fold_internal (op1, in_init, &op1_const, &op1_const_self);
e5a94231 1273 STRIP_TYPE_NOPS (op1);
f5178456
RS
1274 c_inhibit_evaluation_warnings -= (op0 == truthvalue_false_node);
1275
1276 c_inhibit_evaluation_warnings += (op0 == truthvalue_true_node);
928c19bb 1277 op2 = c_fully_fold_internal (op2, in_init, &op2_const, &op2_const_self);
e5a94231 1278 STRIP_TYPE_NOPS (op2);
f5178456
RS
1279 c_inhibit_evaluation_warnings -= (op0 == truthvalue_true_node);
1280
928c19bb 1281 if (op0 != orig_op0 || op1 != orig_op1 || op2 != orig_op2)
db3927fb 1282 ret = fold_build3_loc (loc, code, TREE_TYPE (expr), op0, op1, op2);
928c19bb
JM
1283 else
1284 ret = fold (expr);
1285 *maybe_const_operands &= op0_const;
1286 *maybe_const_itself &= op0_const_self;
1287 if (!(flag_isoc99
1288 && op0_const
1289 && op0_const_self
1290 && op0 == truthvalue_false_node))
1291 *maybe_const_operands &= op1_const;
1292 if (!(op0_const
1293 && op0_const_self
1294 && op0 == truthvalue_false_node))
1295 *maybe_const_itself &= op1_const_self;
1296 if (!(flag_isoc99
1297 && op0_const
1298 && op0_const_self
1299 && op0 == truthvalue_true_node))
1300 *maybe_const_operands &= op2_const;
1301 if (!(op0_const
1302 && op0_const_self
1303 && op0 == truthvalue_true_node))
1304 *maybe_const_itself &= op2_const_self;
1305 goto out;
1306
8ce94e44
JM
1307 case EXCESS_PRECISION_EXPR:
1308 /* Each case where an operand with excess precision may be
1309 encountered must remove the EXCESS_PRECISION_EXPR around
1310 inner operands and possibly put one around the whole
1311 expression or possibly convert to the semantic type (which
1312 c_fully_fold does); we cannot tell at this stage which is
1313 appropriate in any particular case. */
1314 gcc_unreachable ();
1315
928c19bb
JM
1316 default:
1317 /* Various codes may appear through folding built-in functions
1318 and their arguments. */
1319 goto out;
1320 }
1321
1322 out:
1323 /* Some folding may introduce NON_LVALUE_EXPRs; all lvalue checks
1324 have been done by this point, so remove them again. */
1325 nowarning |= TREE_NO_WARNING (ret);
1326 STRIP_TYPE_NOPS (ret);
1327 if (nowarning && !TREE_NO_WARNING (ret))
1328 {
1329 if (!CAN_HAVE_LOCATION_P (ret))
1330 ret = build1 (NOP_EXPR, TREE_TYPE (ret), ret);
1331 TREE_NO_WARNING (ret) = 1;
1332 }
1333 if (ret != expr)
1334 protected_set_expr_location (ret, loc);
1335 return ret;
1336}
1337
1338/* If not optimizing, EXP is not a VAR_DECL, or EXP has array type,
1339 return EXP. Otherwise, return either EXP or its known constant
1340 value (if it has one), but return EXP if EXP has mode BLKmode. ???
1341 Is the BLKmode test appropriate? */
1342
1343tree
1344decl_constant_value_for_optimization (tree exp)
1345{
1346 tree ret;
1347
1348 /* This function is only used by C, for c_fully_fold and other
1349 optimization, and may not be correct for C++. */
1350 if (c_dialect_cxx ())
1351 gcc_unreachable ();
1352
1353 if (!optimize
1354 || TREE_CODE (exp) != VAR_DECL
1355 || TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE
1356 || DECL_MODE (exp) == BLKmode)
1357 return exp;
1358
1359 ret = decl_constant_value (exp);
1360 /* Avoid unwanted tree sharing between the initializer and current
1361 function's body where the tree can be modified e.g. by the
1362 gimplifier. */
1363 if (ret != exp && TREE_STATIC (exp))
1364 ret = unshare_expr (ret);
1365 return ret;
1366}
1367
d74154d5
RS
1368/* Print a warning if a constant expression had overflow in folding.
1369 Invoke this function on every expression that the language
1370 requires to be a constant expression.
1371 Note the ANSI C standard says it is erroneous for a
1372 constant expression to overflow. */
96571883
BK
1373
1374void
35b1a6fa 1375constant_expression_warning (tree value)
393eda6a 1376{
b8698a0f 1377 if (warn_overflow && pedantic
393eda6a
MLI
1378 && (TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1379 || TREE_CODE (value) == FIXED_CST
1380 || TREE_CODE (value) == VECTOR_CST
1381 || TREE_CODE (value) == COMPLEX_CST)
1382 && TREE_OVERFLOW (value))
509c9d60 1383 pedwarn (input_location, OPT_Woverflow, "overflow in constant expression");
393eda6a
MLI
1384}
1385
1386/* The same as above but print an unconditional error. */
1387void
1388constant_expression_error (tree value)
96571883 1389{
c05f751c 1390 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
ab22c1fa 1391 || TREE_CODE (value) == FIXED_CST
69ef87e2 1392 || TREE_CODE (value) == VECTOR_CST
c05f751c 1393 || TREE_CODE (value) == COMPLEX_CST)
393eda6a
MLI
1394 && TREE_OVERFLOW (value))
1395 error ("overflow in constant expression");
d74154d5
RS
1396}
1397
59c0753d
MLI
1398/* Print a warning if an expression had overflow in folding and its
1399 operands hadn't.
1400
d74154d5
RS
1401 Invoke this function on every expression that
1402 (1) appears in the source code, and
59c0753d 1403 (2) is a constant expression that overflowed, and
d74154d5 1404 (3) is not already checked by convert_and_check;
59c0753d
MLI
1405 however, do not invoke this function on operands of explicit casts
1406 or when the expression is the result of an operator and any operand
1407 already overflowed. */
d74154d5
RS
1408
1409void
c2255bc4 1410overflow_warning (location_t loc, tree value)
d74154d5 1411{
7d882b83
ILT
1412 if (c_inhibit_evaluation_warnings != 0)
1413 return;
59c0753d
MLI
1414
1415 switch (TREE_CODE (value))
69ef87e2 1416 {
59c0753d 1417 case INTEGER_CST:
c2255bc4 1418 warning_at (loc, OPT_Woverflow, "integer overflow in expression");
59c0753d 1419 break;
b8698a0f 1420
59c0753d 1421 case REAL_CST:
c2255bc4
AH
1422 warning_at (loc, OPT_Woverflow,
1423 "floating point overflow in expression");
59c0753d 1424 break;
b8698a0f 1425
ab22c1fa 1426 case FIXED_CST:
c2255bc4 1427 warning_at (loc, OPT_Woverflow, "fixed-point overflow in expression");
ab22c1fa
CF
1428 break;
1429
59c0753d 1430 case VECTOR_CST:
c2255bc4 1431 warning_at (loc, OPT_Woverflow, "vector overflow in expression");
59c0753d 1432 break;
b8698a0f 1433
59c0753d
MLI
1434 case COMPLEX_CST:
1435 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST)
c2255bc4
AH
1436 warning_at (loc, OPT_Woverflow,
1437 "complex integer overflow in expression");
59c0753d 1438 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST)
c2255bc4
AH
1439 warning_at (loc, OPT_Woverflow,
1440 "complex floating point overflow in expression");
59c0753d
MLI
1441 break;
1442
1443 default:
1444 break;
69ef87e2 1445 }
d74154d5
RS
1446}
1447
ca409efd
MLI
1448/* Warn about uses of logical || / && operator in a context where it
1449 is likely that the bitwise equivalent was intended by the
1450 programmer. We have seen an expression in which CODE is a binary
a243fb4a
MLI
1451 operator used to combine expressions OP_LEFT and OP_RIGHT, which before folding
1452 had CODE_LEFT and CODE_RIGHT, into an expression of type TYPE. */
63a08740 1453void
a243fb4a 1454warn_logical_operator (location_t location, enum tree_code code, tree type,
b8698a0f 1455 enum tree_code code_left, tree op_left,
ca409efd 1456 enum tree_code ARG_UNUSED (code_right), tree op_right)
63a08740 1457{
a243fb4a
MLI
1458 int or_op = (code == TRUTH_ORIF_EXPR || code == TRUTH_OR_EXPR);
1459 int in0_p, in1_p, in_p;
1460 tree low0, low1, low, high0, high1, high, lhs, rhs, tem;
1461 bool strict_overflow_p = false;
1462
ca409efd
MLI
1463 if (code != TRUTH_ANDIF_EXPR
1464 && code != TRUTH_AND_EXPR
1465 && code != TRUTH_ORIF_EXPR
1466 && code != TRUTH_OR_EXPR)
1467 return;
1468
1469 /* Warn if &&/|| are being used in a context where it is
1470 likely that the bitwise equivalent was intended by the
1471 programmer. That is, an expression such as op && MASK
1472 where op should not be any boolean expression, nor a
1473 constant, and mask seems to be a non-boolean integer constant. */
1474 if (!truth_value_p (code_left)
1475 && INTEGRAL_TYPE_P (TREE_TYPE (op_left))
1476 && !CONSTANT_CLASS_P (op_left)
1477 && !TREE_NO_WARNING (op_left)
1478 && TREE_CODE (op_right) == INTEGER_CST
1479 && !integer_zerop (op_right)
1480 && !integer_onep (op_right))
63a08740 1481 {
a243fb4a 1482 if (or_op)
ca409efd
MLI
1483 warning_at (location, OPT_Wlogical_op, "logical %<or%>"
1484 " applied to non-boolean constant");
1485 else
1486 warning_at (location, OPT_Wlogical_op, "logical %<and%>"
1487 " applied to non-boolean constant");
1488 TREE_NO_WARNING (op_left) = true;
a243fb4a
MLI
1489 return;
1490 }
1491
1492 /* We do not warn for constants because they are typical of macro
1493 expansions that test for features. */
1494 if (CONSTANT_CLASS_P (op_left) || CONSTANT_CLASS_P (op_right))
1495 return;
1496
1497 /* This warning only makes sense with logical operands. */
1498 if (!(truth_value_p (TREE_CODE (op_left))
1499 || INTEGRAL_TYPE_P (TREE_TYPE (op_left)))
1500 || !(truth_value_p (TREE_CODE (op_right))
1501 || INTEGRAL_TYPE_P (TREE_TYPE (op_right))))
1502 return;
1503
1504 lhs = make_range (op_left, &in0_p, &low0, &high0, &strict_overflow_p);
1505 rhs = make_range (op_right, &in1_p, &low1, &high1, &strict_overflow_p);
1506
1507 if (lhs && TREE_CODE (lhs) == C_MAYBE_CONST_EXPR)
1508 lhs = C_MAYBE_CONST_EXPR_EXPR (lhs);
1509
1510 if (rhs && TREE_CODE (rhs) == C_MAYBE_CONST_EXPR)
1511 rhs = C_MAYBE_CONST_EXPR_EXPR (rhs);
b8698a0f 1512
a243fb4a
MLI
1513 /* If this is an OR operation, invert both sides; we will invert
1514 again at the end. */
1515 if (or_op)
1516 in0_p = !in0_p, in1_p = !in1_p;
b8698a0f 1517
a243fb4a 1518 /* If both expressions are the same, if we can merge the ranges, and we
ae8af500
L
1519 can build the range test, return it or it inverted. */
1520 if (lhs && rhs && operand_equal_p (lhs, rhs, 0)
a243fb4a
MLI
1521 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
1522 in1_p, low1, high1)
db3927fb
AH
1523 && 0 != (tem = build_range_check (UNKNOWN_LOCATION,
1524 type, lhs, in_p, low, high)))
a243fb4a
MLI
1525 {
1526 if (TREE_CODE (tem) != INTEGER_CST)
1527 return;
1528
1529 if (or_op)
1530 warning_at (location, OPT_Wlogical_op,
1531 "logical %<or%> "
1532 "of collectively exhaustive tests is always true");
1533 else
1534 warning_at (location, OPT_Wlogical_op,
1535 "logical %<and%> "
1536 "of mutually exclusive tests is always false");
63a08740
DM
1537 }
1538}
1539
1540
de9c56a4
RG
1541/* Print a warning about casts that might indicate violation
1542 of strict aliasing rules if -Wstrict-aliasing is used and
3f0a2a47
DM
1543 strict aliasing mode is in effect. OTYPE is the original
1544 TREE_TYPE of EXPR, and TYPE the type we're casting to. */
de9c56a4 1545
79bedddc 1546bool
3f0a2a47 1547strict_aliasing_warning (tree otype, tree type, tree expr)
de9c56a4 1548{
255d3827
RG
1549 /* Strip pointer conversion chains and get to the correct original type. */
1550 STRIP_NOPS (expr);
1551 otype = TREE_TYPE (expr);
1552
ac7ee6ad
RG
1553 if (!(flag_strict_aliasing
1554 && POINTER_TYPE_P (type)
1555 && POINTER_TYPE_P (otype)
1556 && !VOID_TYPE_P (TREE_TYPE (type)))
1557 /* If the type we are casting to is a ref-all pointer
1558 dereferencing it is always valid. */
1559 || TYPE_REF_CAN_ALIAS_ALL (type))
79bedddc
SR
1560 return false;
1561
1562 if ((warn_strict_aliasing > 1) && TREE_CODE (expr) == ADDR_EXPR
de9c56a4 1563 && (DECL_P (TREE_OPERAND (expr, 0))
79bedddc 1564 || handled_component_p (TREE_OPERAND (expr, 0))))
de9c56a4
RG
1565 {
1566 /* Casting the address of an object to non void pointer. Warn
1567 if the cast breaks type based aliasing. */
79bedddc
SR
1568 if (!COMPLETE_TYPE_P (TREE_TYPE (type)) && warn_strict_aliasing == 2)
1569 {
1570 warning (OPT_Wstrict_aliasing, "type-punning to incomplete type "
1571 "might break strict-aliasing rules");
1572 return true;
1573 }
de9c56a4
RG
1574 else
1575 {
b8698a0f 1576 /* warn_strict_aliasing >= 3. This includes the default (3).
79bedddc 1577 Only warn if the cast is dereferenced immediately. */
4862826d 1578 alias_set_type set1 =
79bedddc 1579 get_alias_set (TREE_TYPE (TREE_OPERAND (expr, 0)));
4862826d 1580 alias_set_type set2 = get_alias_set (TREE_TYPE (type));
de9c56a4 1581
4653cae5
RG
1582 if (set1 != set2 && set2 != 0
1583 && (set1 == 0 || !alias_sets_conflict_p (set1, set2)))
79bedddc
SR
1584 {
1585 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1586 "pointer will break strict-aliasing rules");
1587 return true;
1588 }
1589 else if (warn_strict_aliasing == 2
836f7794 1590 && !alias_sets_must_conflict_p (set1, set2))
79bedddc
SR
1591 {
1592 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1593 "pointer might break strict-aliasing rules");
1594 return true;
1595 }
de9c56a4
RG
1596 }
1597 }
79bedddc
SR
1598 else
1599 if ((warn_strict_aliasing == 1) && !VOID_TYPE_P (TREE_TYPE (otype)))
1600 {
1601 /* At this level, warn for any conversions, even if an address is
1602 not taken in the same statement. This will likely produce many
1603 false positives, but could be useful to pinpoint problems that
1604 are not revealed at higher levels. */
4862826d
ILT
1605 alias_set_type set1 = get_alias_set (TREE_TYPE (otype));
1606 alias_set_type set2 = get_alias_set (TREE_TYPE (type));
1607 if (!COMPLETE_TYPE_P (type)
836f7794 1608 || !alias_sets_must_conflict_p (set1, set2))
79bedddc
SR
1609 {
1610 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1611 "pointer might break strict-aliasing rules");
1612 return true;
1613 }
1614 }
1615
1616 return false;
de9c56a4
RG
1617}
1618
a1e45ff0
DM
1619/* Warn for unlikely, improbable, or stupid DECL declarations
1620 of `main'. */
1621
1622void
1623check_main_parameter_types (tree decl)
1624{
1625 tree args;
1626 int argct = 0;
1627
1628 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl)); args;
1629 args = TREE_CHAIN (args))
1630 {
1631 tree type = args ? TREE_VALUE (args) : 0;
1632
d8e1d619 1633 if (type == void_type_node || type == error_mark_node )
a1e45ff0
DM
1634 break;
1635
1636 ++argct;
1637 switch (argct)
1638 {
1639 case 1:
1640 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
b8698a0f 1641 pedwarn (input_location, OPT_Wmain, "first argument of %q+D should be %<int%>",
4003301d 1642 decl);
a1e45ff0
DM
1643 break;
1644
1645 case 2:
1646 if (TREE_CODE (type) != POINTER_TYPE
1647 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
1648 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
1649 != char_type_node))
509c9d60 1650 pedwarn (input_location, OPT_Wmain, "second argument of %q+D should be %<char **%>",
4003301d 1651 decl);
a1e45ff0
DM
1652 break;
1653
1654 case 3:
1655 if (TREE_CODE (type) != POINTER_TYPE
1656 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
1657 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
1658 != char_type_node))
509c9d60 1659 pedwarn (input_location, OPT_Wmain, "third argument of %q+D should probably be "
4003301d 1660 "%<char **%>", decl);
a1e45ff0
DM
1661 break;
1662 }
1663 }
1664
1665 /* It is intentional that this message does not mention the third
1666 argument because it's only mentioned in an appendix of the
1667 standard. */
1668 if (argct > 0 && (argct < 2 || argct > 3))
509c9d60 1669 pedwarn (input_location, OPT_Wmain, "%q+D takes only zero or two arguments", decl);
a1e45ff0
DM
1670}
1671
f83c7f63
DJ
1672/* True if pointers to distinct types T1 and T2 can be converted to
1673 each other without an explicit cast. Only returns true for opaque
1674 vector types. */
1675bool
1676vector_targets_convertible_p (const_tree t1, const_tree t2)
1677{
1678 if (TREE_CODE (t1) == VECTOR_TYPE && TREE_CODE (t2) == VECTOR_TYPE
b6fc2cdb 1679 && (TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
f83c7f63
DJ
1680 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
1681 return true;
1682
1683 return false;
1684}
1685
00c8e9f6
MS
1686/* True if vector types T1 and T2 can be converted to each other
1687 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
1688 can only be converted with -flax-vector-conversions yet that is not
1689 in effect, emit a note telling the user about that option if such
1690 a note has not previously been emitted. */
1691bool
58f9752a 1692vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note)
cc27e657 1693{
00c8e9f6 1694 static bool emitted_lax_note = false;
14e765da
JM
1695 bool convertible_lax;
1696
b6fc2cdb 1697 if ((TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
14e765da
JM
1698 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
1699 return true;
1700
1701 convertible_lax =
1702 (tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2))
1703 && (TREE_CODE (TREE_TYPE (t1)) != REAL_TYPE ||
1704 TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
1705 && (INTEGRAL_TYPE_P (TREE_TYPE (t1))
1706 == INTEGRAL_TYPE_P (TREE_TYPE (t2))));
00c8e9f6
MS
1707
1708 if (!convertible_lax || flag_lax_vector_conversions)
1709 return convertible_lax;
1710
1711 if (TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
cf7bc668 1712 && lang_hooks.types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
00c8e9f6
MS
1713 return true;
1714
1715 if (emit_lax_note && !emitted_lax_note)
1716 {
1717 emitted_lax_note = true;
1f5b3869 1718 inform (input_location, "use -flax-vector-conversions to permit "
00c8e9f6
MS
1719 "conversions between vectors with differing "
1720 "element types or numbers of subparts");
1721 }
1722
1723 return false;
cc27e657
PB
1724}
1725
6715192c
MLI
1726/* This is a helper function of build_binary_op.
1727
1728 For certain operations if both args were extended from the same
1729 smaller type, do the arithmetic in that type and then extend.
1730
1731 BITWISE indicates a bitwise operation.
1732 For them, this optimization is safe only if
1733 both args are zero-extended or both are sign-extended.
1734 Otherwise, we might change the result.
1735 Eg, (short)-1 | (unsigned short)-1 is (int)-1
b8698a0f 1736 but calculated in (unsigned short) it would be (unsigned short)-1.
6715192c
MLI
1737*/
1738tree shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise)
1739{
1740 int unsigned0, unsigned1;
1741 tree arg0, arg1;
1742 int uns;
1743 tree type;
1744
1745 /* Cast OP0 and OP1 to RESULT_TYPE. Doing so prevents
1746 excessive narrowing when we call get_narrower below. For
1747 example, suppose that OP0 is of unsigned int extended
1748 from signed char and that RESULT_TYPE is long long int.
1749 If we explicitly cast OP0 to RESULT_TYPE, OP0 would look
1750 like
b8698a0f 1751
6715192c
MLI
1752 (long long int) (unsigned int) signed_char
1753
1754 which get_narrower would narrow down to
b8698a0f 1755
6715192c 1756 (unsigned int) signed char
b8698a0f 1757
6715192c
MLI
1758 If we do not cast OP0 first, get_narrower would return
1759 signed_char, which is inconsistent with the case of the
1760 explicit cast. */
1761 op0 = convert (result_type, op0);
1762 op1 = convert (result_type, op1);
1763
1764 arg0 = get_narrower (op0, &unsigned0);
1765 arg1 = get_narrower (op1, &unsigned1);
1766
1767 /* UNS is 1 if the operation to be done is an unsigned one. */
1768 uns = TYPE_UNSIGNED (result_type);
1769
1770 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
1771 but it *requires* conversion to FINAL_TYPE. */
b8698a0f 1772
6715192c
MLI
1773 if ((TYPE_PRECISION (TREE_TYPE (op0))
1774 == TYPE_PRECISION (TREE_TYPE (arg0)))
1775 && TREE_TYPE (op0) != result_type)
1776 unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
1777 if ((TYPE_PRECISION (TREE_TYPE (op1))
1778 == TYPE_PRECISION (TREE_TYPE (arg1)))
1779 && TREE_TYPE (op1) != result_type)
1780 unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
b8698a0f 1781
6715192c 1782 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
b8698a0f 1783
6715192c
MLI
1784 /* For bitwise operations, signedness of nominal type
1785 does not matter. Consider only how operands were extended. */
1786 if (bitwise)
1787 uns = unsigned0;
b8698a0f 1788
6715192c
MLI
1789 /* Note that in all three cases below we refrain from optimizing
1790 an unsigned operation on sign-extended args.
1791 That would not be valid. */
b8698a0f 1792
6715192c
MLI
1793 /* Both args variable: if both extended in same way
1794 from same width, do it in that width.
1795 Do it unsigned if args were zero-extended. */
1796 if ((TYPE_PRECISION (TREE_TYPE (arg0))
1797 < TYPE_PRECISION (result_type))
1798 && (TYPE_PRECISION (TREE_TYPE (arg1))
1799 == TYPE_PRECISION (TREE_TYPE (arg0)))
1800 && unsigned0 == unsigned1
1801 && (unsigned0 || !uns))
1802 return c_common_signed_or_unsigned_type
1803 (unsigned0, common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
1804
1805 else if (TREE_CODE (arg0) == INTEGER_CST
1806 && (unsigned1 || !uns)
1807 && (TYPE_PRECISION (TREE_TYPE (arg1))
1808 < TYPE_PRECISION (result_type))
1809 && (type
1810 = c_common_signed_or_unsigned_type (unsigned1,
1811 TREE_TYPE (arg1)))
1812 && !POINTER_TYPE_P (type)
1813 && int_fits_type_p (arg0, type))
1814 return type;
1815
1816 else if (TREE_CODE (arg1) == INTEGER_CST
1817 && (unsigned0 || !uns)
1818 && (TYPE_PRECISION (TREE_TYPE (arg0))
1819 < TYPE_PRECISION (result_type))
1820 && (type
1821 = c_common_signed_or_unsigned_type (unsigned0,
1822 TREE_TYPE (arg0)))
1823 && !POINTER_TYPE_P (type)
1824 && int_fits_type_p (arg1, type))
1825 return type;
1826
1827 return result_type;
1828}
1829
422c3a54 1830/* Warns if the conversion of EXPR to TYPE may alter a value.
07231d4f 1831 This is a helper function for warnings_for_convert_and_check. */
422c3a54
MLI
1832
1833static void
1834conversion_warning (tree type, tree expr)
1835{
1836 bool give_warning = false;
1837
0011dedb
MLI
1838 int i;
1839 const int expr_num_operands = TREE_OPERAND_LENGTH (expr);
374035cb 1840 tree expr_type = TREE_TYPE (expr);
6312e84d
MLI
1841 location_t loc = EXPR_HAS_LOCATION (expr)
1842 ? EXPR_LOCATION (expr) : input_location;
422c3a54 1843
7060db96
MLI
1844 if (!warn_conversion && !warn_sign_conversion)
1845 return;
1846
0011dedb
MLI
1847 /* If any operand is artificial, then this expression was generated
1848 by the compiler and we do not warn. */
1849 for (i = 0; i < expr_num_operands; i++)
1850 {
1851 tree op = TREE_OPERAND (expr, i);
1bfb8f51 1852 if (op && DECL_P (op) && DECL_ARTIFICIAL (op))
0011dedb
MLI
1853 return;
1854 }
1855
374035cb 1856 switch (TREE_CODE (expr))
422c3a54 1857 {
374035cb
MLI
1858 case EQ_EXPR:
1859 case NE_EXPR:
1860 case LE_EXPR:
1861 case GE_EXPR:
1862 case LT_EXPR:
1863 case GT_EXPR:
1864 case TRUTH_ANDIF_EXPR:
1865 case TRUTH_ORIF_EXPR:
1866 case TRUTH_AND_EXPR:
1867 case TRUTH_OR_EXPR:
1868 case TRUTH_XOR_EXPR:
1869 case TRUTH_NOT_EXPR:
1870 /* Conversion from boolean to a signed:1 bit-field (which only
1871 can hold the values 0 and -1) doesn't lose information - but
1872 it does change the value. */
b8698a0f 1873 if (TYPE_PRECISION (type) == 1 && !TYPE_UNSIGNED (type))
6312e84d
MLI
1874 warning_at (loc, OPT_Wconversion,
1875 "conversion to %qT from boolean expression", type);
374035cb
MLI
1876 return;
1877
1878 case REAL_CST:
1879 case INTEGER_CST:
1880
422c3a54
MLI
1881 /* Warn for real constant that is not an exact integer converted
1882 to integer type. */
374035cb 1883 if (TREE_CODE (expr_type) == REAL_TYPE
422c3a54
MLI
1884 && TREE_CODE (type) == INTEGER_TYPE)
1885 {
374035cb 1886 if (!real_isinteger (TREE_REAL_CST_PTR (expr), TYPE_MODE (expr_type)))
422c3a54
MLI
1887 give_warning = true;
1888 }
91c41804 1889 /* Warn for an integer constant that does not fit into integer type. */
374035cb 1890 else if (TREE_CODE (expr_type) == INTEGER_TYPE
422c3a54 1891 && TREE_CODE (type) == INTEGER_TYPE
91c41804
RS
1892 && !int_fits_type_p (expr, type))
1893 {
b8698a0f 1894 if (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)
374035cb 1895 && tree_int_cst_sgn (expr) < 0)
6312e84d
MLI
1896 warning_at (loc, OPT_Wsign_conversion, "negative integer"
1897 " implicitly converted to unsigned type");
374035cb 1898 else if (!TYPE_UNSIGNED (type) && TYPE_UNSIGNED (expr_type))
6312e84d
MLI
1899 warning_at (loc, OPT_Wsign_conversion, "conversion of unsigned"
1900 " constant value to negative integer");
7060db96
MLI
1901 else
1902 give_warning = true;
91c41804 1903 }
422c3a54
MLI
1904 else if (TREE_CODE (type) == REAL_TYPE)
1905 {
1906 /* Warn for an integer constant that does not fit into real type. */
374035cb 1907 if (TREE_CODE (expr_type) == INTEGER_TYPE)
422c3a54
MLI
1908 {
1909 REAL_VALUE_TYPE a = real_value_from_int_cst (0, expr);
1910 if (!exact_real_truncate (TYPE_MODE (type), &a))
1911 give_warning = true;
1912 }
1913 /* Warn for a real constant that does not fit into a smaller
1914 real type. */
374035cb
MLI
1915 else if (TREE_CODE (expr_type) == REAL_TYPE
1916 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
422c3a54
MLI
1917 {
1918 REAL_VALUE_TYPE a = TREE_REAL_CST (expr);
1919 if (!exact_real_truncate (TYPE_MODE (type), &a))
1920 give_warning = true;
1921 }
1922 }
1923
1924 if (give_warning)
6312e84d
MLI
1925 warning_at (loc, OPT_Wconversion,
1926 "conversion to %qT alters %qT constant value",
1927 type, expr_type);
374035cb
MLI
1928
1929 return;
1930
1931 case COND_EXPR:
1932 {
1933 /* In case of COND_EXPR, if both operands are constants or
1934 COND_EXPR, then we do not care about the type of COND_EXPR,
1935 only about the conversion of each operand. */
1936 tree op1 = TREE_OPERAND (expr, 1);
1937 tree op2 = TREE_OPERAND (expr, 2);
1938
b8698a0f 1939 if ((TREE_CODE (op1) == REAL_CST || TREE_CODE (op1) == INTEGER_CST
374035cb
MLI
1940 || TREE_CODE (op1) == COND_EXPR)
1941 && (TREE_CODE (op2) == REAL_CST || TREE_CODE (op2) == INTEGER_CST
1942 || TREE_CODE (op2) == COND_EXPR))
1943 {
1944 conversion_warning (type, op1);
1945 conversion_warning (type, op2);
1946 return;
1947 }
1948 /* Fall through. */
1949 }
1950
1951 default: /* 'expr' is not a constant. */
6715192c 1952
422c3a54 1953 /* Warn for real types converted to integer types. */
6715192c 1954 if (TREE_CODE (expr_type) == REAL_TYPE
422c3a54
MLI
1955 && TREE_CODE (type) == INTEGER_TYPE)
1956 give_warning = true;
1957
6715192c 1958 else if (TREE_CODE (expr_type) == INTEGER_TYPE
422c3a54
MLI
1959 && TREE_CODE (type) == INTEGER_TYPE)
1960 {
cfdaefec 1961 /* Don't warn about unsigned char y = 0xff, x = (int) y; */
c00e8b06 1962 expr = get_unwidened (expr, 0);
6715192c 1963 expr_type = TREE_TYPE (expr);
cfdaefec 1964
6715192c 1965 /* Don't warn for short y; short x = ((int)y & 0xff); */
b8698a0f
L
1966 if (TREE_CODE (expr) == BIT_AND_EXPR
1967 || TREE_CODE (expr) == BIT_IOR_EXPR
6715192c
MLI
1968 || TREE_CODE (expr) == BIT_XOR_EXPR)
1969 {
374035cb
MLI
1970 /* If both args were extended from a shortest type,
1971 use that type if that is safe. */
b8698a0f
L
1972 expr_type = shorten_binary_op (expr_type,
1973 TREE_OPERAND (expr, 0),
1974 TREE_OPERAND (expr, 1),
6715192c
MLI
1975 /* bitwise */1);
1976
6715192c
MLI
1977 if (TREE_CODE (expr) == BIT_AND_EXPR)
1978 {
1979 tree op0 = TREE_OPERAND (expr, 0);
1980 tree op1 = TREE_OPERAND (expr, 1);
9c591bd0
MLI
1981 bool unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
1982 bool unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
1983
1984 /* If one of the operands is a non-negative constant
1985 that fits in the target type, then the type of the
1986 other operand does not matter. */
6715192c
MLI
1987 if ((TREE_CODE (op0) == INTEGER_CST
1988 && int_fits_type_p (op0, c_common_signed_type (type))
1989 && int_fits_type_p (op0, c_common_unsigned_type (type)))
1990 || (TREE_CODE (op1) == INTEGER_CST
374035cb 1991 && int_fits_type_p (op1, c_common_signed_type (type))
b8698a0f 1992 && int_fits_type_p (op1,
374035cb 1993 c_common_unsigned_type (type))))
6715192c 1994 return;
9c591bd0
MLI
1995 /* If constant is unsigned and fits in the target
1996 type, then the result will also fit. */
1997 else if ((TREE_CODE (op0) == INTEGER_CST
b8698a0f 1998 && unsigned0
9c591bd0
MLI
1999 && int_fits_type_p (op0, type))
2000 || (TREE_CODE (op1) == INTEGER_CST
2001 && unsigned1
2002 && int_fits_type_p (op1, type)))
2003 return;
6715192c
MLI
2004 }
2005 }
422c3a54 2006 /* Warn for integer types converted to smaller integer types. */
b8698a0f 2007 if (TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
7060db96
MLI
2008 give_warning = true;
2009
2010 /* When they are the same width but different signedness,
2011 then the value may change. */
374035cb 2012 else if ((TYPE_PRECISION (type) == TYPE_PRECISION (expr_type)
6715192c 2013 && TYPE_UNSIGNED (expr_type) != TYPE_UNSIGNED (type))
7060db96
MLI
2014 /* Even when converted to a bigger type, if the type is
2015 unsigned but expr is signed, then negative values
2016 will be changed. */
6715192c 2017 || (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)))
6312e84d
MLI
2018 warning_at (loc, OPT_Wsign_conversion, "conversion to %qT from %qT "
2019 "may change the sign of the result",
2020 type, expr_type);
422c3a54
MLI
2021 }
2022
2023 /* Warn for integer types converted to real types if and only if
2024 all the range of values of the integer type cannot be
2025 represented by the real type. */
6715192c 2026 else if (TREE_CODE (expr_type) == INTEGER_TYPE
422c3a54
MLI
2027 && TREE_CODE (type) == REAL_TYPE)
2028 {
58076e21
MLI
2029 tree type_low_bound, type_high_bound;
2030 REAL_VALUE_TYPE real_low_bound, real_high_bound;
2031
2032 /* Don't warn about char y = 0xff; float x = (int) y; */
2033 expr = get_unwidened (expr, 0);
2034 expr_type = TREE_TYPE (expr);
2035
2036 type_low_bound = TYPE_MIN_VALUE (expr_type);
2037 type_high_bound = TYPE_MAX_VALUE (expr_type);
2038 real_low_bound = real_value_from_int_cst (0, type_low_bound);
2039 real_high_bound = real_value_from_int_cst (0, type_high_bound);
422c3a54
MLI
2040
2041 if (!exact_real_truncate (TYPE_MODE (type), &real_low_bound)
2042 || !exact_real_truncate (TYPE_MODE (type), &real_high_bound))
2043 give_warning = true;
2044 }
2045
2046 /* Warn for real types converted to smaller real types. */
6715192c 2047 else if (TREE_CODE (expr_type) == REAL_TYPE
422c3a54 2048 && TREE_CODE (type) == REAL_TYPE
374035cb 2049 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
422c3a54
MLI
2050 give_warning = true;
2051
2052
2053 if (give_warning)
6312e84d
MLI
2054 warning_at (loc, OPT_Wconversion,
2055 "conversion to %qT from %qT may alter its value",
2056 type, expr_type);
422c3a54
MLI
2057 }
2058}
2059
07231d4f
MLI
2060/* Produce warnings after a conversion. RESULT is the result of
2061 converting EXPR to TYPE. This is a helper function for
2062 convert_and_check and cp_convert_and_check. */
d74154d5 2063
07231d4f
MLI
2064void
2065warnings_for_convert_and_check (tree type, tree expr, tree result)
d74154d5 2066{
91c41804
RS
2067 if (TREE_CODE (expr) == INTEGER_CST
2068 && (TREE_CODE (type) == INTEGER_TYPE
2069 || TREE_CODE (type) == ENUMERAL_TYPE)
2070 && !int_fits_type_p (expr, type))
2071 {
422c3a54
MLI
2072 /* Do not diagnose overflow in a constant expression merely
2073 because a conversion overflowed. */
91c41804 2074 if (TREE_OVERFLOW (result))
d95787e6
RS
2075 TREE_OVERFLOW (result) = TREE_OVERFLOW (expr);
2076
91c41804 2077 if (TYPE_UNSIGNED (type))
422c3a54 2078 {
91c41804
RS
2079 /* This detects cases like converting -129 or 256 to
2080 unsigned char. */
2081 if (!int_fits_type_p (expr, c_common_signed_type (type)))
2082 warning (OPT_Woverflow,
2083 "large integer implicitly truncated to unsigned type");
7060db96 2084 else
91c41804
RS
2085 conversion_warning (type, expr);
2086 }
b8698a0f 2087 else if (!int_fits_type_p (expr, c_common_unsigned_type (type)))
f73fe417
MLI
2088 warning (OPT_Woverflow,
2089 "overflow in implicit constant conversion");
2090 /* No warning for converting 0x80000000 to int. */
2091 else if (pedantic
2092 && (TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE
2093 || TYPE_PRECISION (TREE_TYPE (expr))
2094 != TYPE_PRECISION (type)))
2095 warning (OPT_Woverflow,
2096 "overflow in implicit constant conversion");
2097
7060db96 2098 else
f73fe417 2099 conversion_warning (type, expr);
d74154d5 2100 }
ab22c1fa
CF
2101 else if ((TREE_CODE (result) == INTEGER_CST
2102 || TREE_CODE (result) == FIXED_CST) && TREE_OVERFLOW (result))
91c41804
RS
2103 warning (OPT_Woverflow,
2104 "overflow in implicit constant conversion");
7060db96 2105 else
91c41804 2106 conversion_warning (type, expr);
07231d4f
MLI
2107}
2108
2109
2110/* Convert EXPR to TYPE, warning about conversion problems with constants.
2111 Invoke this function on every expression that is converted implicitly,
2112 i.e. because of language rules and not because of an explicit cast. */
2113
2114tree
2115convert_and_check (tree type, tree expr)
2116{
2117 tree result;
8ce94e44
JM
2118 tree expr_for_warning;
2119
2120 /* Convert from a value with possible excess precision rather than
2121 via the semantic type, but do not warn about values not fitting
2122 exactly in the semantic type. */
2123 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
2124 {
2125 tree orig_type = TREE_TYPE (expr);
2126 expr = TREE_OPERAND (expr, 0);
2127 expr_for_warning = convert (orig_type, expr);
2128 if (orig_type == type)
2129 return expr_for_warning;
2130 }
2131 else
2132 expr_for_warning = expr;
07231d4f
MLI
2133
2134 if (TREE_TYPE (expr) == type)
2135 return expr;
b8698a0f 2136
07231d4f
MLI
2137 result = convert (type, expr);
2138
7d882b83
ILT
2139 if (c_inhibit_evaluation_warnings == 0
2140 && !TREE_OVERFLOW_P (expr)
2141 && result != error_mark_node)
8ce94e44 2142 warnings_for_convert_and_check (type, expr_for_warning, result);
07231d4f 2143
91c41804 2144 return result;
96571883
BK
2145}
2146\f
235cfbc4
BS
2147/* A node in a list that describes references to variables (EXPR), which are
2148 either read accesses if WRITER is zero, or write accesses, in which case
2149 WRITER is the parent of EXPR. */
2150struct tlist
2151{
2152 struct tlist *next;
2153 tree expr, writer;
2154};
2155
2156/* Used to implement a cache the results of a call to verify_tree. We only
2157 use this for SAVE_EXPRs. */
2158struct tlist_cache
2159{
2160 struct tlist_cache *next;
2161 struct tlist *cache_before_sp;
2162 struct tlist *cache_after_sp;
2163 tree expr;
2683ed8d
BS
2164};
2165
235cfbc4
BS
2166/* Obstack to use when allocating tlist structures, and corresponding
2167 firstobj. */
2168static struct obstack tlist_obstack;
2169static char *tlist_firstobj = 0;
2170
2171/* Keep track of the identifiers we've warned about, so we can avoid duplicate
2172 warnings. */
2173static struct tlist *warned_ids;
2174/* SAVE_EXPRs need special treatment. We process them only once and then
2175 cache the results. */
2176static struct tlist_cache *save_expr_cache;
2177
35b1a6fa
AJ
2178static void add_tlist (struct tlist **, struct tlist *, tree, int);
2179static void merge_tlist (struct tlist **, struct tlist *, int);
2180static void verify_tree (tree, struct tlist **, struct tlist **, tree);
2181static int warning_candidate_p (tree);
1e4ae551 2182static bool candidate_equal_p (const_tree, const_tree);
35b1a6fa
AJ
2183static void warn_for_collisions (struct tlist *);
2184static void warn_for_collisions_1 (tree, tree, struct tlist *, int);
2185static struct tlist *new_tlist (struct tlist *, tree, tree);
2683ed8d 2186
235cfbc4
BS
2187/* Create a new struct tlist and fill in its fields. */
2188static struct tlist *
35b1a6fa 2189new_tlist (struct tlist *next, tree t, tree writer)
235cfbc4
BS
2190{
2191 struct tlist *l;
5d038c4c 2192 l = XOBNEW (&tlist_obstack, struct tlist);
235cfbc4
BS
2193 l->next = next;
2194 l->expr = t;
2195 l->writer = writer;
2196 return l;
2197}
2198
2199/* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
2200 is nonnull, we ignore any node we find which has a writer equal to it. */
2201
2202static void
35b1a6fa 2203add_tlist (struct tlist **to, struct tlist *add, tree exclude_writer, int copy)
235cfbc4
BS
2204{
2205 while (add)
2206 {
2207 struct tlist *next = add->next;
3f75a254 2208 if (!copy)
235cfbc4 2209 add->next = *to;
1e4ae551 2210 if (!exclude_writer || !candidate_equal_p (add->writer, exclude_writer))
235cfbc4
BS
2211 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
2212 add = next;
2213 }
2214}
2215
2216/* Merge the nodes of ADD into TO. This merging process is done so that for
2217 each variable that already exists in TO, no new node is added; however if
2218 there is a write access recorded in ADD, and an occurrence on TO is only
2219 a read access, then the occurrence in TO will be modified to record the
2220 write. */
2683ed8d
BS
2221
2222static void
35b1a6fa 2223merge_tlist (struct tlist **to, struct tlist *add, int copy)
235cfbc4
BS
2224{
2225 struct tlist **end = to;
2226
2227 while (*end)
2228 end = &(*end)->next;
2229
2230 while (add)
2231 {
2232 int found = 0;
2233 struct tlist *tmp2;
2234 struct tlist *next = add->next;
2235
2236 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
1e4ae551 2237 if (candidate_equal_p (tmp2->expr, add->expr))
235cfbc4
BS
2238 {
2239 found = 1;
3f75a254 2240 if (!tmp2->writer)
235cfbc4
BS
2241 tmp2->writer = add->writer;
2242 }
3f75a254 2243 if (!found)
235cfbc4
BS
2244 {
2245 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
2246 end = &(*end)->next;
2247 *end = 0;
2248 }
2249 add = next;
2250 }
2251}
2252
2253/* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
2254 references in list LIST conflict with it, excluding reads if ONLY writers
2255 is nonzero. */
2256
2257static void
35b1a6fa
AJ
2258warn_for_collisions_1 (tree written, tree writer, struct tlist *list,
2259 int only_writes)
235cfbc4
BS
2260{
2261 struct tlist *tmp;
2262
2263 /* Avoid duplicate warnings. */
2264 for (tmp = warned_ids; tmp; tmp = tmp->next)
1e4ae551 2265 if (candidate_equal_p (tmp->expr, written))
235cfbc4
BS
2266 return;
2267
2268 while (list)
2269 {
1e4ae551
MLI
2270 if (candidate_equal_p (list->expr, written)
2271 && !candidate_equal_p (list->writer, writer)
2272 && (!only_writes || list->writer))
235cfbc4
BS
2273 {
2274 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
ca085fd7
MLI
2275 warning_at (EXPR_HAS_LOCATION (writer)
2276 ? EXPR_LOCATION (writer) : input_location,
2277 OPT_Wsequence_point, "operation on %qE may be undefined",
2278 list->expr);
235cfbc4
BS
2279 }
2280 list = list->next;
2281 }
2282}
2283
2284/* Given a list LIST of references to variables, find whether any of these
2285 can cause conflicts due to missing sequence points. */
2286
2287static void
35b1a6fa 2288warn_for_collisions (struct tlist *list)
235cfbc4
BS
2289{
2290 struct tlist *tmp;
35b1a6fa 2291
235cfbc4
BS
2292 for (tmp = list; tmp; tmp = tmp->next)
2293 {
2294 if (tmp->writer)
2295 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
2296 }
2297}
2298
684d9f3b 2299/* Return nonzero if X is a tree that can be verified by the sequence point
235cfbc4
BS
2300 warnings. */
2301static int
35b1a6fa 2302warning_candidate_p (tree x)
2683ed8d 2303{
1e4ae551
MLI
2304 /* !VOID_TYPE_P (TREE_TYPE (x)) is workaround for cp/tree.c
2305 (lvalue_p) crash on TRY/CATCH. */
2306 return !(DECL_P (x) && DECL_ARTIFICIAL (x))
2307 && TREE_TYPE (x) && !VOID_TYPE_P (TREE_TYPE (x)) && lvalue_p (x);
2308}
2309
2310/* Return nonzero if X and Y appear to be the same candidate (or NULL) */
2311static bool
2312candidate_equal_p (const_tree x, const_tree y)
2313{
2314 return (x == y) || (x && y && operand_equal_p (x, y, 0));
235cfbc4 2315}
2683ed8d 2316
235cfbc4
BS
2317/* Walk the tree X, and record accesses to variables. If X is written by the
2318 parent tree, WRITER is the parent.
2319 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
2320 expression or its only operand forces a sequence point, then everything up
2321 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
2322 in PNO_SP.
2323 Once we return, we will have emitted warnings if any subexpression before
2324 such a sequence point could be undefined. On a higher level, however, the
2325 sequence point may not be relevant, and we'll merge the two lists.
2326
2327 Example: (b++, a) + b;
2328 The call that processes the COMPOUND_EXPR will store the increment of B
2329 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
2330 processes the PLUS_EXPR will need to merge the two lists so that
2331 eventually, all accesses end up on the same list (and we'll warn about the
2332 unordered subexpressions b++ and b.
2333
2334 A note on merging. If we modify the former example so that our expression
2335 becomes
2336 (b++, b) + a
2337 care must be taken not simply to add all three expressions into the final
2338 PNO_SP list. The function merge_tlist takes care of that by merging the
2339 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
2340 way, so that no more than one access to B is recorded. */
2683ed8d 2341
235cfbc4 2342static void
35b1a6fa
AJ
2343verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp,
2344 tree writer)
235cfbc4
BS
2345{
2346 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
2347 enum tree_code code;
6615c446 2348 enum tree_code_class cl;
2683ed8d 2349
f9e1917e
JM
2350 /* X may be NULL if it is the operand of an empty statement expression
2351 ({ }). */
2352 if (x == NULL)
2353 return;
2354
235cfbc4
BS
2355 restart:
2356 code = TREE_CODE (x);
e3a64162 2357 cl = TREE_CODE_CLASS (code);
2683ed8d 2358
235cfbc4 2359 if (warning_candidate_p (x))
1e4ae551 2360 *pno_sp = new_tlist (*pno_sp, x, writer);
235cfbc4
BS
2361
2362 switch (code)
2363 {
52a84e42
BS
2364 case CONSTRUCTOR:
2365 return;
2366
235cfbc4
BS
2367 case COMPOUND_EXPR:
2368 case TRUTH_ANDIF_EXPR:
2369 case TRUTH_ORIF_EXPR:
2370 tmp_before = tmp_nosp = tmp_list3 = 0;
2371 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
2372 warn_for_collisions (tmp_nosp);
2373 merge_tlist (pbefore_sp, tmp_before, 0);
2374 merge_tlist (pbefore_sp, tmp_nosp, 0);
2375 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
2376 merge_tlist (pbefore_sp, tmp_list3, 0);
2377 return;
2378
2379 case COND_EXPR:
2380 tmp_before = tmp_list2 = 0;
2381 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
2382 warn_for_collisions (tmp_list2);
2383 merge_tlist (pbefore_sp, tmp_before, 0);
2384 merge_tlist (pbefore_sp, tmp_list2, 1);
2385
2386 tmp_list3 = tmp_nosp = 0;
2387 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
2388 warn_for_collisions (tmp_nosp);
2389 merge_tlist (pbefore_sp, tmp_list3, 0);
2390
2391 tmp_list3 = tmp_list2 = 0;
2392 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
2393 warn_for_collisions (tmp_list2);
2394 merge_tlist (pbefore_sp, tmp_list3, 0);
2395 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
2396 two first, to avoid warning for (a ? b++ : b++). */
2397 merge_tlist (&tmp_nosp, tmp_list2, 0);
2398 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
2399 return;
2400
2683ed8d
BS
2401 case PREDECREMENT_EXPR:
2402 case PREINCREMENT_EXPR:
2403 case POSTDECREMENT_EXPR:
2404 case POSTINCREMENT_EXPR:
235cfbc4
BS
2405 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
2406 return;
2407
2408 case MODIFY_EXPR:
2409 tmp_before = tmp_nosp = tmp_list3 = 0;
2410 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
2411 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
2412 /* Expressions inside the LHS are not ordered wrt. the sequence points
2413 in the RHS. Example:
2414 *a = (a++, 2)
2415 Despite the fact that the modification of "a" is in the before_sp
2416 list (tmp_before), it conflicts with the use of "a" in the LHS.
2417 We can handle this by adding the contents of tmp_list3
2418 to those of tmp_before, and redoing the collision warnings for that
2419 list. */
2420 add_tlist (&tmp_before, tmp_list3, x, 1);
2421 warn_for_collisions (tmp_before);
2422 /* Exclude the LHS itself here; we first have to merge it into the
2423 tmp_nosp list. This is done to avoid warning for "a = a"; if we
2424 didn't exclude the LHS, we'd get it twice, once as a read and once
2425 as a write. */
2426 add_tlist (pno_sp, tmp_list3, x, 0);
2427 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
2428
2429 merge_tlist (pbefore_sp, tmp_before, 0);
2430 if (warning_candidate_p (TREE_OPERAND (x, 0)))
2431 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
2432 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
2433 return;
2683ed8d
BS
2434
2435 case CALL_EXPR:
235cfbc4
BS
2436 /* We need to warn about conflicts among arguments and conflicts between
2437 args and the function address. Side effects of the function address,
2438 however, are not ordered by the sequence point of the call. */
5039610b
SL
2439 {
2440 call_expr_arg_iterator iter;
2441 tree arg;
b8698a0f 2442 tmp_before = tmp_nosp = 0;
5039610b
SL
2443 verify_tree (CALL_EXPR_FN (x), &tmp_before, &tmp_nosp, NULL_TREE);
2444 FOR_EACH_CALL_EXPR_ARG (arg, iter, x)
2445 {
2446 tmp_list2 = tmp_list3 = 0;
2447 verify_tree (arg, &tmp_list2, &tmp_list3, NULL_TREE);
2448 merge_tlist (&tmp_list3, tmp_list2, 0);
2449 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
2450 }
2451 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
2452 warn_for_collisions (tmp_before);
2453 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
2454 return;
2455 }
2683ed8d
BS
2456
2457 case TREE_LIST:
2458 /* Scan all the list, e.g. indices of multi dimensional array. */
2459 while (x)
2460 {
235cfbc4
BS
2461 tmp_before = tmp_nosp = 0;
2462 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
2463 merge_tlist (&tmp_nosp, tmp_before, 0);
2464 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
2683ed8d
BS
2465 x = TREE_CHAIN (x);
2466 }
235cfbc4 2467 return;
2683ed8d 2468
235cfbc4
BS
2469 case SAVE_EXPR:
2470 {
2471 struct tlist_cache *t;
2472 for (t = save_expr_cache; t; t = t->next)
1e4ae551 2473 if (candidate_equal_p (t->expr, x))
235cfbc4 2474 break;
2683ed8d 2475
3f75a254 2476 if (!t)
2683ed8d 2477 {
5d038c4c 2478 t = XOBNEW (&tlist_obstack, struct tlist_cache);
235cfbc4
BS
2479 t->next = save_expr_cache;
2480 t->expr = x;
2481 save_expr_cache = t;
2482
2483 tmp_before = tmp_nosp = 0;
2484 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
2485 warn_for_collisions (tmp_nosp);
2486
2487 tmp_list3 = 0;
2488 while (tmp_nosp)
2489 {
2490 struct tlist *t = tmp_nosp;
2491 tmp_nosp = t->next;
2492 merge_tlist (&tmp_list3, t, 0);
2493 }
2494 t->cache_before_sp = tmp_before;
2495 t->cache_after_sp = tmp_list3;
2683ed8d 2496 }
235cfbc4
BS
2497 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
2498 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
2499 return;
2500 }
2683ed8d 2501
528c22f4
MLI
2502 case ADDR_EXPR:
2503 x = TREE_OPERAND (x, 0);
2504 if (DECL_P (x))
2505 return;
2506 writer = 0;
2507 goto restart;
2508
6615c446
JO
2509 default:
2510 /* For other expressions, simply recurse on their operands.
c22cacf3 2511 Manual tail recursion for unary expressions.
6615c446
JO
2512 Other non-expressions need not be processed. */
2513 if (cl == tcc_unary)
2514 {
6615c446
JO
2515 x = TREE_OPERAND (x, 0);
2516 writer = 0;
2517 goto restart;
2518 }
2519 else if (IS_EXPR_CODE_CLASS (cl))
2520 {
2521 int lp;
5039610b 2522 int max = TREE_OPERAND_LENGTH (x);
6615c446
JO
2523 for (lp = 0; lp < max; lp++)
2524 {
2525 tmp_before = tmp_nosp = 0;
2526 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, 0);
2527 merge_tlist (&tmp_nosp, tmp_before, 0);
2528 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
2529 }
2530 }
2531 return;
2683ed8d 2532 }
2683ed8d
BS
2533}
2534
8d9afc4e 2535/* Try to warn for undefined behavior in EXPR due to missing sequence
2683ed8d
BS
2536 points. */
2537
24e47c76 2538DEBUG_FUNCTION void
35b1a6fa 2539verify_sequence_points (tree expr)
2683ed8d 2540{
235cfbc4 2541 struct tlist *before_sp = 0, *after_sp = 0;
2683ed8d 2542
235cfbc4
BS
2543 warned_ids = 0;
2544 save_expr_cache = 0;
2545 if (tlist_firstobj == 0)
2683ed8d 2546 {
235cfbc4 2547 gcc_obstack_init (&tlist_obstack);
28dab132 2548 tlist_firstobj = (char *) obstack_alloc (&tlist_obstack, 0);
2683ed8d
BS
2549 }
2550
235cfbc4
BS
2551 verify_tree (expr, &before_sp, &after_sp, 0);
2552 warn_for_collisions (after_sp);
2553 obstack_free (&tlist_obstack, tlist_firstobj);
2683ed8d 2554}
b30f223b
RS
2555\f
2556/* Validate the expression after `case' and apply default promotions. */
2557
a6c0a76c 2558static tree
35b1a6fa 2559check_case_value (tree value)
b30f223b
RS
2560{
2561 if (value == NULL_TREE)
2562 return value;
2563
ed248cf7
JM
2564 /* ??? Can we ever get nops here for a valid case value? We
2565 shouldn't for C. */
8493738b 2566 STRIP_TYPE_NOPS (value);
56cb9733
MM
2567 /* In C++, the following is allowed:
2568
2569 const int i = 3;
2570 switch (...) { case i: ... }
2571
2572 So, we try to reduce the VALUE to a constant that way. */
37fa72e9 2573 if (c_dialect_cxx ())
56cb9733
MM
2574 {
2575 value = decl_constant_value (value);
2576 STRIP_TYPE_NOPS (value);
2577 value = fold (value);
2578 }
b30f223b 2579
522ddfa2
JM
2580 if (TREE_CODE (value) == INTEGER_CST)
2581 /* Promote char or short to int. */
2582 value = perform_integral_promotions (value);
2583 else if (value != error_mark_node)
b30f223b
RS
2584 {
2585 error ("case label does not reduce to an integer constant");
2586 value = error_mark_node;
2587 }
b30f223b 2588
bc690db1
RS
2589 constant_expression_warning (value);
2590
b30f223b
RS
2591 return value;
2592}
2593\f
a6c0a76c 2594/* See if the case values LOW and HIGH are in the range of the original
89dbed81 2595 type (i.e. before the default conversion to int) of the switch testing
a6c0a76c
SB
2596 expression.
2597 TYPE is the promoted type of the testing expression, and ORIG_TYPE is
2a7e31df 2598 the type before promoting it. CASE_LOW_P is a pointer to the lower
a6c0a76c
SB
2599 bound of the case label, and CASE_HIGH_P is the upper bound or NULL
2600 if the case is not a case range.
2601 The caller has to make sure that we are not called with NULL for
89dbed81 2602 CASE_LOW_P (i.e. the default case).
0fa2e4df 2603 Returns true if the case label is in range of ORIG_TYPE (saturated or
a6c0a76c
SB
2604 untouched) or false if the label is out of range. */
2605
2606static bool
2607check_case_bounds (tree type, tree orig_type,
2608 tree *case_low_p, tree *case_high_p)
2609{
2610 tree min_value, max_value;
2611 tree case_low = *case_low_p;
2612 tree case_high = case_high_p ? *case_high_p : case_low;
2613
2614 /* If there was a problem with the original type, do nothing. */
2615 if (orig_type == error_mark_node)
2616 return true;
2617
2618 min_value = TYPE_MIN_VALUE (orig_type);
2619 max_value = TYPE_MAX_VALUE (orig_type);
2620
2621 /* Case label is less than minimum for type. */
2622 if (tree_int_cst_compare (case_low, min_value) < 0
2623 && tree_int_cst_compare (case_high, min_value) < 0)
2624 {
d4ee4d25 2625 warning (0, "case label value is less than minimum value for type");
a6c0a76c
SB
2626 return false;
2627 }
9f63daea 2628
a6c0a76c
SB
2629 /* Case value is greater than maximum for type. */
2630 if (tree_int_cst_compare (case_low, max_value) > 0
2631 && tree_int_cst_compare (case_high, max_value) > 0)
2632 {
d4ee4d25 2633 warning (0, "case label value exceeds maximum value for type");
a6c0a76c
SB
2634 return false;
2635 }
2636
2637 /* Saturate lower case label value to minimum. */
2638 if (tree_int_cst_compare (case_high, min_value) >= 0
2639 && tree_int_cst_compare (case_low, min_value) < 0)
2640 {
d4ee4d25 2641 warning (0, "lower value in case label range"
a6c0a76c
SB
2642 " less than minimum value for type");
2643 case_low = min_value;
2644 }
9f63daea 2645
a6c0a76c
SB
2646 /* Saturate upper case label value to maximum. */
2647 if (tree_int_cst_compare (case_low, max_value) <= 0
2648 && tree_int_cst_compare (case_high, max_value) > 0)
2649 {
d4ee4d25 2650 warning (0, "upper value in case label range"
a6c0a76c
SB
2651 " exceeds maximum value for type");
2652 case_high = max_value;
2653 }
2654
2655 if (*case_low_p != case_low)
2656 *case_low_p = convert (type, case_low);
2657 if (case_high_p && *case_high_p != case_high)
2658 *case_high_p = convert (type, case_high);
2659
2660 return true;
2661}
2662\f
b30f223b
RS
2663/* Return an integer type with BITS bits of precision,
2664 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2665
2666tree
35b1a6fa 2667c_common_type_for_size (unsigned int bits, int unsignedp)
b30f223b 2668{
a311b52c
JM
2669 if (bits == TYPE_PRECISION (integer_type_node))
2670 return unsignedp ? unsigned_type_node : integer_type_node;
2671
3fc7e390 2672 if (bits == TYPE_PRECISION (signed_char_type_node))
b30f223b
RS
2673 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2674
3fc7e390 2675 if (bits == TYPE_PRECISION (short_integer_type_node))
b30f223b
RS
2676 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2677
3fc7e390 2678 if (bits == TYPE_PRECISION (long_integer_type_node))
b30f223b
RS
2679 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2680
3fc7e390 2681 if (bits == TYPE_PRECISION (long_long_integer_type_node))
b30f223b
RS
2682 return (unsignedp ? long_long_unsigned_type_node
2683 : long_long_integer_type_node);
2684
a6766312
KT
2685 if (int128_integer_type_node
2686 && bits == TYPE_PRECISION (int128_integer_type_node))
2687 return (unsignedp ? int128_unsigned_type_node
2688 : int128_integer_type_node);
2689
835f9b4d
GRK
2690 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
2691 return (unsignedp ? widest_unsigned_literal_type_node
2692 : widest_integer_literal_type_node);
2693
3fc7e390
RS
2694 if (bits <= TYPE_PRECISION (intQI_type_node))
2695 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2696
2697 if (bits <= TYPE_PRECISION (intHI_type_node))
2698 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2699
2700 if (bits <= TYPE_PRECISION (intSI_type_node))
2701 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2702
2703 if (bits <= TYPE_PRECISION (intDI_type_node))
2704 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2705
b30f223b
RS
2706 return 0;
2707}
2708
ab22c1fa
CF
2709/* Return a fixed-point type that has at least IBIT ibits and FBIT fbits
2710 that is unsigned if UNSIGNEDP is nonzero, otherwise signed;
2711 and saturating if SATP is nonzero, otherwise not saturating. */
2712
2713tree
2714c_common_fixed_point_type_for_size (unsigned int ibit, unsigned int fbit,
2715 int unsignedp, int satp)
2716{
2717 enum machine_mode mode;
2718 if (ibit == 0)
2719 mode = unsignedp ? UQQmode : QQmode;
2720 else
2721 mode = unsignedp ? UHAmode : HAmode;
2722
2723 for (; mode != VOIDmode; mode = GET_MODE_WIDER_MODE (mode))
2724 if (GET_MODE_IBIT (mode) >= ibit && GET_MODE_FBIT (mode) >= fbit)
2725 break;
2726
2727 if (mode == VOIDmode || !targetm.scalar_mode_supported_p (mode))
2728 {
2729 sorry ("GCC cannot support operators with integer types and "
2730 "fixed-point types that have too many integral and "
2731 "fractional bits together");
2732 return 0;
2733 }
2734
2735 return c_common_type_for_mode (mode, satp);
2736}
2737
d1d3865f
ZW
2738/* Used for communication between c_common_type_for_mode and
2739 c_register_builtin_type. */
2740static GTY(()) tree registered_builtin_types;
2741
b30f223b
RS
2742/* Return a data type that has machine mode MODE.
2743 If the mode is an integer,
ab22c1fa
CF
2744 then UNSIGNEDP selects between signed and unsigned types.
2745 If the mode is a fixed-point mode,
2746 then UNSIGNEDP selects between saturating and nonsaturating types. */
b30f223b
RS
2747
2748tree
35b1a6fa 2749c_common_type_for_mode (enum machine_mode mode, int unsignedp)
b30f223b 2750{
d1d3865f
ZW
2751 tree t;
2752
a311b52c
JM
2753 if (mode == TYPE_MODE (integer_type_node))
2754 return unsignedp ? unsigned_type_node : integer_type_node;
2755
b30f223b
RS
2756 if (mode == TYPE_MODE (signed_char_type_node))
2757 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2758
2759 if (mode == TYPE_MODE (short_integer_type_node))
2760 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2761
b30f223b
RS
2762 if (mode == TYPE_MODE (long_integer_type_node))
2763 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2764
2765 if (mode == TYPE_MODE (long_long_integer_type_node))
2766 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
2767
a6766312
KT
2768 if (int128_integer_type_node
2769 && mode == TYPE_MODE (int128_integer_type_node))
2770 return unsignedp ? int128_unsigned_type_node : int128_integer_type_node;
2771
835f9b4d 2772 if (mode == TYPE_MODE (widest_integer_literal_type_node))
d125d268 2773 return unsignedp ? widest_unsigned_literal_type_node
6de9cd9a 2774 : widest_integer_literal_type_node;
835f9b4d 2775
0afeef64 2776 if (mode == QImode)
3fc7e390
RS
2777 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2778
0afeef64 2779 if (mode == HImode)
3fc7e390
RS
2780 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2781
0afeef64 2782 if (mode == SImode)
3fc7e390
RS
2783 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2784
0afeef64 2785 if (mode == DImode)
3fc7e390
RS
2786 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2787
21a9616b 2788#if HOST_BITS_PER_WIDE_INT >= 64
a6d7e156
JL
2789 if (mode == TYPE_MODE (intTI_type_node))
2790 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
21a9616b 2791#endif
a6d7e156 2792
b30f223b
RS
2793 if (mode == TYPE_MODE (float_type_node))
2794 return float_type_node;
2795
2796 if (mode == TYPE_MODE (double_type_node))
2797 return double_type_node;
2798
2799 if (mode == TYPE_MODE (long_double_type_node))
2800 return long_double_type_node;
2801
ff42324e
NS
2802 if (mode == TYPE_MODE (void_type_node))
2803 return void_type_node;
9f63daea 2804
b30f223b 2805 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
19b3ffbc
DD
2806 return (unsignedp
2807 ? make_unsigned_type (GET_MODE_PRECISION (mode))
2808 : make_signed_type (GET_MODE_PRECISION (mode)));
b30f223b
RS
2809
2810 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
19b3ffbc
DD
2811 return (unsignedp
2812 ? make_unsigned_type (GET_MODE_PRECISION (mode))
2813 : make_signed_type (GET_MODE_PRECISION (mode)));
b30f223b 2814
7e7e470f
RH
2815 if (COMPLEX_MODE_P (mode))
2816 {
2817 enum machine_mode inner_mode;
2818 tree inner_type;
2819
2820 if (mode == TYPE_MODE (complex_float_type_node))
2821 return complex_float_type_node;
2822 if (mode == TYPE_MODE (complex_double_type_node))
2823 return complex_double_type_node;
2824 if (mode == TYPE_MODE (complex_long_double_type_node))
2825 return complex_long_double_type_node;
2826
2827 if (mode == TYPE_MODE (complex_integer_type_node) && !unsignedp)
2828 return complex_integer_type_node;
2829
2830 inner_mode = GET_MODE_INNER (mode);
2831 inner_type = c_common_type_for_mode (inner_mode, unsignedp);
2832 if (inner_type != NULL_TREE)
2833 return build_complex_type (inner_type);
2834 }
2835 else if (VECTOR_MODE_P (mode))
4a5eab38
PB
2836 {
2837 enum machine_mode inner_mode = GET_MODE_INNER (mode);
2838 tree inner_type = c_common_type_for_mode (inner_mode, unsignedp);
2839 if (inner_type != NULL_TREE)
2840 return build_vector_type_for_mode (inner_type, mode);
0afeef64 2841 }
4061f623 2842
9a8ce21f
JG
2843 if (mode == TYPE_MODE (dfloat32_type_node))
2844 return dfloat32_type_node;
2845 if (mode == TYPE_MODE (dfloat64_type_node))
2846 return dfloat64_type_node;
2847 if (mode == TYPE_MODE (dfloat128_type_node))
2848 return dfloat128_type_node;
2849
ab22c1fa
CF
2850 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode))
2851 {
2852 if (mode == TYPE_MODE (short_fract_type_node))
2853 return unsignedp ? sat_short_fract_type_node : short_fract_type_node;
2854 if (mode == TYPE_MODE (fract_type_node))
2855 return unsignedp ? sat_fract_type_node : fract_type_node;
2856 if (mode == TYPE_MODE (long_fract_type_node))
2857 return unsignedp ? sat_long_fract_type_node : long_fract_type_node;
2858 if (mode == TYPE_MODE (long_long_fract_type_node))
2859 return unsignedp ? sat_long_long_fract_type_node
2860 : long_long_fract_type_node;
2861
2862 if (mode == TYPE_MODE (unsigned_short_fract_type_node))
2863 return unsignedp ? sat_unsigned_short_fract_type_node
2864 : unsigned_short_fract_type_node;
2865 if (mode == TYPE_MODE (unsigned_fract_type_node))
2866 return unsignedp ? sat_unsigned_fract_type_node
2867 : unsigned_fract_type_node;
2868 if (mode == TYPE_MODE (unsigned_long_fract_type_node))
2869 return unsignedp ? sat_unsigned_long_fract_type_node
2870 : unsigned_long_fract_type_node;
2871 if (mode == TYPE_MODE (unsigned_long_long_fract_type_node))
2872 return unsignedp ? sat_unsigned_long_long_fract_type_node
2873 : unsigned_long_long_fract_type_node;
2874
2875 if (mode == TYPE_MODE (short_accum_type_node))
2876 return unsignedp ? sat_short_accum_type_node : short_accum_type_node;
2877 if (mode == TYPE_MODE (accum_type_node))
2878 return unsignedp ? sat_accum_type_node : accum_type_node;
2879 if (mode == TYPE_MODE (long_accum_type_node))
2880 return unsignedp ? sat_long_accum_type_node : long_accum_type_node;
2881 if (mode == TYPE_MODE (long_long_accum_type_node))
2882 return unsignedp ? sat_long_long_accum_type_node
2883 : long_long_accum_type_node;
2884
2885 if (mode == TYPE_MODE (unsigned_short_accum_type_node))
2886 return unsignedp ? sat_unsigned_short_accum_type_node
2887 : unsigned_short_accum_type_node;
2888 if (mode == TYPE_MODE (unsigned_accum_type_node))
2889 return unsignedp ? sat_unsigned_accum_type_node
2890 : unsigned_accum_type_node;
2891 if (mode == TYPE_MODE (unsigned_long_accum_type_node))
2892 return unsignedp ? sat_unsigned_long_accum_type_node
2893 : unsigned_long_accum_type_node;
2894 if (mode == TYPE_MODE (unsigned_long_long_accum_type_node))
2895 return unsignedp ? sat_unsigned_long_long_accum_type_node
2896 : unsigned_long_long_accum_type_node;
2897
2898 if (mode == QQmode)
2899 return unsignedp ? sat_qq_type_node : qq_type_node;
2900 if (mode == HQmode)
2901 return unsignedp ? sat_hq_type_node : hq_type_node;
2902 if (mode == SQmode)
2903 return unsignedp ? sat_sq_type_node : sq_type_node;
2904 if (mode == DQmode)
2905 return unsignedp ? sat_dq_type_node : dq_type_node;
2906 if (mode == TQmode)
2907 return unsignedp ? sat_tq_type_node : tq_type_node;
2908
2909 if (mode == UQQmode)
2910 return unsignedp ? sat_uqq_type_node : uqq_type_node;
2911 if (mode == UHQmode)
2912 return unsignedp ? sat_uhq_type_node : uhq_type_node;
2913 if (mode == USQmode)
2914 return unsignedp ? sat_usq_type_node : usq_type_node;
2915 if (mode == UDQmode)
2916 return unsignedp ? sat_udq_type_node : udq_type_node;
2917 if (mode == UTQmode)
2918 return unsignedp ? sat_utq_type_node : utq_type_node;
2919
2920 if (mode == HAmode)
2921 return unsignedp ? sat_ha_type_node : ha_type_node;
2922 if (mode == SAmode)
2923 return unsignedp ? sat_sa_type_node : sa_type_node;
2924 if (mode == DAmode)
2925 return unsignedp ? sat_da_type_node : da_type_node;
2926 if (mode == TAmode)
2927 return unsignedp ? sat_ta_type_node : ta_type_node;
2928
2929 if (mode == UHAmode)
2930 return unsignedp ? sat_uha_type_node : uha_type_node;
2931 if (mode == USAmode)
2932 return unsignedp ? sat_usa_type_node : usa_type_node;
2933 if (mode == UDAmode)
2934 return unsignedp ? sat_uda_type_node : uda_type_node;
2935 if (mode == UTAmode)
2936 return unsignedp ? sat_uta_type_node : uta_type_node;
2937 }
2938
d1d3865f
ZW
2939 for (t = registered_builtin_types; t; t = TREE_CHAIN (t))
2940 if (TYPE_MODE (TREE_VALUE (t)) == mode)
2941 return TREE_VALUE (t);
2942
b30f223b
RS
2943 return 0;
2944}
693a6128 2945
12753674
RE
2946tree
2947c_common_unsigned_type (tree type)
2948{
2949 return c_common_signed_or_unsigned_type (1, type);
2950}
2951
693a6128
GRK
2952/* Return a signed type the same as TYPE in other respects. */
2953
2954tree
35b1a6fa 2955c_common_signed_type (tree type)
693a6128 2956{
ceef8ce4 2957 return c_common_signed_or_unsigned_type (0, type);
693a6128
GRK
2958}
2959
2960/* Return a type the same as TYPE except unsigned or
2961 signed according to UNSIGNEDP. */
2962
2963tree
35b1a6fa 2964c_common_signed_or_unsigned_type (int unsignedp, tree type)
693a6128 2965{
c74a03d2 2966 tree type1;
693a6128 2967
c74a03d2
RAE
2968 /* This block of code emulates the behavior of the old
2969 c_common_unsigned_type. In particular, it returns
2970 long_unsigned_type_node if passed a long, even when a int would
2971 have the same size. This is necessary for warnings to work
2972 correctly in archs where sizeof(int) == sizeof(long) */
2973
2974 type1 = TYPE_MAIN_VARIANT (type);
2975 if (type1 == signed_char_type_node || type1 == char_type_node || type1 == unsigned_char_type_node)
2976 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2977 if (type1 == integer_type_node || type1 == unsigned_type_node)
2978 return unsignedp ? unsigned_type_node : integer_type_node;
2979 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2980 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2981 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2982 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2983 if (type1 == long_long_integer_type_node || type1 == long_long_unsigned_type_node)
2984 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
a6766312
KT
2985 if (int128_integer_type_node
2986 && (type1 == int128_integer_type_node
2987 || type1 == int128_unsigned_type_node))
2988 return unsignedp ? int128_unsigned_type_node : int128_integer_type_node;
c74a03d2
RAE
2989 if (type1 == widest_integer_literal_type_node || type1 == widest_unsigned_literal_type_node)
2990 return unsignedp ? widest_unsigned_literal_type_node : widest_integer_literal_type_node;
2991#if HOST_BITS_PER_WIDE_INT >= 64
2992 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2993 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2994#endif
2995 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2996 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2997 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2998 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2999 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
3000 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3001 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
3002 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3003
70d3fcab
AH
3004#define C_COMMON_FIXED_TYPES(NAME) \
3005 if (type1 == short_ ## NAME ## _type_node \
3006 || type1 == unsigned_short_ ## NAME ## _type_node) \
3007 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
3008 : short_ ## NAME ## _type_node; \
3009 if (type1 == NAME ## _type_node \
3010 || type1 == unsigned_ ## NAME ## _type_node) \
3011 return unsignedp ? unsigned_ ## NAME ## _type_node \
3012 : NAME ## _type_node; \
3013 if (type1 == long_ ## NAME ## _type_node \
3014 || type1 == unsigned_long_ ## NAME ## _type_node) \
3015 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
3016 : long_ ## NAME ## _type_node; \
3017 if (type1 == long_long_ ## NAME ## _type_node \
3018 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
3019 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
3020 : long_long_ ## NAME ## _type_node;
3021
3022#define C_COMMON_FIXED_MODE_TYPES(NAME) \
3023 if (type1 == NAME ## _type_node \
3024 || type1 == u ## NAME ## _type_node) \
3025 return unsignedp ? u ## NAME ## _type_node \
3026 : NAME ## _type_node;
3027
3028#define C_COMMON_FIXED_TYPES_SAT(NAME) \
3029 if (type1 == sat_ ## short_ ## NAME ## _type_node \
3030 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
3031 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
3032 : sat_ ## short_ ## NAME ## _type_node; \
3033 if (type1 == sat_ ## NAME ## _type_node \
3034 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
3035 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
3036 : sat_ ## NAME ## _type_node; \
3037 if (type1 == sat_ ## long_ ## NAME ## _type_node \
3038 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
3039 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
3040 : sat_ ## long_ ## NAME ## _type_node; \
3041 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
3042 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
3043 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
3044 : sat_ ## long_long_ ## NAME ## _type_node;
3045
3046#define C_COMMON_FIXED_MODE_TYPES_SAT(NAME) \
3047 if (type1 == sat_ ## NAME ## _type_node \
3048 || type1 == sat_ ## u ## NAME ## _type_node) \
3049 return unsignedp ? sat_ ## u ## NAME ## _type_node \
3050 : sat_ ## NAME ## _type_node;
3051
3052 C_COMMON_FIXED_TYPES (fract);
3053 C_COMMON_FIXED_TYPES_SAT (fract);
3054 C_COMMON_FIXED_TYPES (accum);
3055 C_COMMON_FIXED_TYPES_SAT (accum);
3056
3057 C_COMMON_FIXED_MODE_TYPES (qq);
3058 C_COMMON_FIXED_MODE_TYPES (hq);
3059 C_COMMON_FIXED_MODE_TYPES (sq);
3060 C_COMMON_FIXED_MODE_TYPES (dq);
3061 C_COMMON_FIXED_MODE_TYPES (tq);
3062 C_COMMON_FIXED_MODE_TYPES_SAT (qq);
3063 C_COMMON_FIXED_MODE_TYPES_SAT (hq);
3064 C_COMMON_FIXED_MODE_TYPES_SAT (sq);
3065 C_COMMON_FIXED_MODE_TYPES_SAT (dq);
3066 C_COMMON_FIXED_MODE_TYPES_SAT (tq);
3067 C_COMMON_FIXED_MODE_TYPES (ha);
3068 C_COMMON_FIXED_MODE_TYPES (sa);
3069 C_COMMON_FIXED_MODE_TYPES (da);
3070 C_COMMON_FIXED_MODE_TYPES (ta);
3071 C_COMMON_FIXED_MODE_TYPES_SAT (ha);
3072 C_COMMON_FIXED_MODE_TYPES_SAT (sa);
3073 C_COMMON_FIXED_MODE_TYPES_SAT (da);
3074 C_COMMON_FIXED_MODE_TYPES_SAT (ta);
ab22c1fa 3075
bc15d0ef
JM
3076 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
3077 the precision; they have precision set to match their range, but
3078 may use a wider mode to match an ABI. If we change modes, we may
3079 wind up with bad conversions. For INTEGER_TYPEs in C, must check
3080 the precision as well, so as to yield correct results for
3081 bit-field types. C++ does not have these separate bit-field
3082 types, and producing a signed or unsigned variant of an
3083 ENUMERAL_TYPE may cause other problems as well. */
3084
1e204133
RAE
3085 if (!INTEGRAL_TYPE_P (type)
3086 || TYPE_UNSIGNED (type) == unsignedp)
3087 return type;
3088
bc15d0ef
JM
3089#define TYPE_OK(node) \
3090 (TYPE_MODE (type) == TYPE_MODE (node) \
41b81065 3091 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
bc15d0ef 3092 if (TYPE_OK (signed_char_type_node))
693a6128 3093 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
bc15d0ef 3094 if (TYPE_OK (integer_type_node))
693a6128 3095 return unsignedp ? unsigned_type_node : integer_type_node;
bc15d0ef 3096 if (TYPE_OK (short_integer_type_node))
693a6128 3097 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
bc15d0ef 3098 if (TYPE_OK (long_integer_type_node))
693a6128 3099 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
bc15d0ef 3100 if (TYPE_OK (long_long_integer_type_node))
693a6128
GRK
3101 return (unsignedp ? long_long_unsigned_type_node
3102 : long_long_integer_type_node);
a6766312
KT
3103 if (int128_integer_type_node && TYPE_OK (int128_integer_type_node))
3104 return (unsignedp ? int128_unsigned_type_node
3105 : int128_integer_type_node);
bc15d0ef 3106 if (TYPE_OK (widest_integer_literal_type_node))
693a6128
GRK
3107 return (unsignedp ? widest_unsigned_literal_type_node
3108 : widest_integer_literal_type_node);
4a063bec
RH
3109
3110#if HOST_BITS_PER_WIDE_INT >= 64
bc15d0ef 3111 if (TYPE_OK (intTI_type_node))
4a063bec
RH
3112 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3113#endif
bc15d0ef 3114 if (TYPE_OK (intDI_type_node))
4a063bec 3115 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
bc15d0ef 3116 if (TYPE_OK (intSI_type_node))
4a063bec 3117 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
bc15d0ef 3118 if (TYPE_OK (intHI_type_node))
4a063bec 3119 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
bc15d0ef 3120 if (TYPE_OK (intQI_type_node))
4a063bec 3121 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
bc15d0ef 3122#undef TYPE_OK
4a063bec 3123
41b81065 3124 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
693a6128 3125}
9649812a 3126
38a4afee
MM
3127/* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
3128
3129tree
3130c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width, int unsignedp)
3131{
3132 /* Extended integer types of the same width as a standard type have
3133 lesser rank, so those of the same width as int promote to int or
3134 unsigned int and are valid for printf formats expecting int or
3135 unsigned int. To avoid such special cases, avoid creating
3136 extended integer types for bit-fields if a standard integer type
3137 is available. */
3138 if (width == TYPE_PRECISION (integer_type_node))
3139 return unsignedp ? unsigned_type_node : integer_type_node;
3140 if (width == TYPE_PRECISION (signed_char_type_node))
3141 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3142 if (width == TYPE_PRECISION (short_integer_type_node))
3143 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3144 if (width == TYPE_PRECISION (long_integer_type_node))
3145 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3146 if (width == TYPE_PRECISION (long_long_integer_type_node))
3147 return (unsignedp ? long_long_unsigned_type_node
3148 : long_long_integer_type_node);
a6766312
KT
3149 if (int128_integer_type_node
3150 && width == TYPE_PRECISION (int128_integer_type_node))
3151 return (unsignedp ? int128_unsigned_type_node
3152 : int128_integer_type_node);
38a4afee
MM
3153 return build_nonstandard_integer_type (width, unsignedp);
3154}
3155
9649812a
MM
3156/* The C version of the register_builtin_type langhook. */
3157
3158void
3159c_register_builtin_type (tree type, const char* name)
3160{
3161 tree decl;
3162
c2255bc4
AH
3163 decl = build_decl (UNKNOWN_LOCATION,
3164 TYPE_DECL, get_identifier (name), type);
9649812a
MM
3165 DECL_ARTIFICIAL (decl) = 1;
3166 if (!TYPE_NAME (type))
3167 TYPE_NAME (type) = decl;
3168 pushdecl (decl);
d1d3865f
ZW
3169
3170 registered_builtin_types = tree_cons (0, type, registered_builtin_types);
9649812a 3171}
6acfe908 3172\f
78ef5b89 3173/* Print an error message for invalid operands to arith operation
ba47d38d
AH
3174 CODE with TYPE0 for operand 0, and TYPE1 for operand 1.
3175 LOCATION is the location of the message. */
b30f223b
RS
3176
3177void
ba47d38d
AH
3178binary_op_error (location_t location, enum tree_code code,
3179 tree type0, tree type1)
b30f223b 3180{
b3694847 3181 const char *opname;
89c78d7d 3182
b30f223b
RS
3183 switch (code)
3184 {
b30f223b
RS
3185 case PLUS_EXPR:
3186 opname = "+"; break;
3187 case MINUS_EXPR:
3188 opname = "-"; break;
3189 case MULT_EXPR:
3190 opname = "*"; break;
3191 case MAX_EXPR:
3192 opname = "max"; break;
3193 case MIN_EXPR:
3194 opname = "min"; break;
3195 case EQ_EXPR:
3196 opname = "=="; break;
3197 case NE_EXPR:
3198 opname = "!="; break;
3199 case LE_EXPR:
3200 opname = "<="; break;
3201 case GE_EXPR:
3202 opname = ">="; break;
3203 case LT_EXPR:
3204 opname = "<"; break;
3205 case GT_EXPR:
3206 opname = ">"; break;
3207 case LSHIFT_EXPR:
3208 opname = "<<"; break;
3209 case RSHIFT_EXPR:
3210 opname = ">>"; break;
3211 case TRUNC_MOD_EXPR:
047de90b 3212 case FLOOR_MOD_EXPR:
b30f223b
RS
3213 opname = "%"; break;
3214 case TRUNC_DIV_EXPR:
047de90b 3215 case FLOOR_DIV_EXPR:
b30f223b
RS
3216 opname = "/"; break;
3217 case BIT_AND_EXPR:
3218 opname = "&"; break;
3219 case BIT_IOR_EXPR:
3220 opname = "|"; break;
3221 case TRUTH_ANDIF_EXPR:
3222 opname = "&&"; break;
3223 case TRUTH_ORIF_EXPR:
3224 opname = "||"; break;
3225 case BIT_XOR_EXPR:
3226 opname = "^"; break;
6d819282 3227 default:
37b2f290 3228 gcc_unreachable ();
b30f223b 3229 }
ba47d38d
AH
3230 error_at (location,
3231 "invalid operands to binary %s (have %qT and %qT)", opname,
3232 type0, type1);
b30f223b
RS
3233}
3234\f
3235/* Subroutine of build_binary_op, used for comparison operations.
3236 See if the operands have both been converted from subword integer types
3237 and, if so, perhaps change them both back to their original type.
94dccd9d
RS
3238 This function is also responsible for converting the two operands
3239 to the proper common type for comparison.
b30f223b
RS
3240
3241 The arguments of this function are all pointers to local variables
3242 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
3243 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
3244
3245 If this function returns nonzero, it means that the comparison has
3246 a constant value. What this function returns is an expression for
3247 that value. */
3248
3249tree
35b1a6fa
AJ
3250shorten_compare (tree *op0_ptr, tree *op1_ptr, tree *restype_ptr,
3251 enum tree_code *rescode_ptr)
b30f223b 3252{
b3694847 3253 tree type;
b30f223b
RS
3254 tree op0 = *op0_ptr;
3255 tree op1 = *op1_ptr;
3256 int unsignedp0, unsignedp1;
3257 int real1, real2;
3258 tree primop0, primop1;
3259 enum tree_code code = *rescode_ptr;
3260
3261 /* Throw away any conversions to wider types
3262 already present in the operands. */
3263
3264 primop0 = get_narrower (op0, &unsignedp0);
3265 primop1 = get_narrower (op1, &unsignedp1);
3266
3267 /* Handle the case that OP0 does not *contain* a conversion
3268 but it *requires* conversion to FINAL_TYPE. */
3269
3270 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
8df83eae 3271 unsignedp0 = TYPE_UNSIGNED (TREE_TYPE (op0));
b30f223b 3272 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
8df83eae 3273 unsignedp1 = TYPE_UNSIGNED (TREE_TYPE (op1));
b30f223b
RS
3274
3275 /* If one of the operands must be floated, we cannot optimize. */
3276 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
3277 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
3278
3279 /* If first arg is constant, swap the args (changing operation
5af6001b
RK
3280 so value is preserved), for canonicalization. Don't do this if
3281 the second arg is 0. */
b30f223b 3282
5af6001b 3283 if (TREE_CONSTANT (primop0)
ab22c1fa
CF
3284 && !integer_zerop (primop1) && !real_zerop (primop1)
3285 && !fixed_zerop (primop1))
b30f223b 3286 {
b3694847
SS
3287 tree tem = primop0;
3288 int temi = unsignedp0;
b30f223b
RS
3289 primop0 = primop1;
3290 primop1 = tem;
3291 tem = op0;
3292 op0 = op1;
3293 op1 = tem;
3294 *op0_ptr = op0;
3295 *op1_ptr = op1;
3296 unsignedp0 = unsignedp1;
3297 unsignedp1 = temi;
3298 temi = real1;
3299 real1 = real2;
3300 real2 = temi;
3301
3302 switch (code)
3303 {
3304 case LT_EXPR:
3305 code = GT_EXPR;
3306 break;
3307 case GT_EXPR:
3308 code = LT_EXPR;
3309 break;
3310 case LE_EXPR:
3311 code = GE_EXPR;
3312 break;
3313 case GE_EXPR:
3314 code = LE_EXPR;
3315 break;
6d819282
MK
3316 default:
3317 break;
b30f223b
RS
3318 }
3319 *rescode_ptr = code;
3320 }
3321
3322 /* If comparing an integer against a constant more bits wide,
3323 maybe we can deduce a value of 1 or 0 independent of the data.
3324 Or else truncate the constant now
3325 rather than extend the variable at run time.
3326
3327 This is only interesting if the constant is the wider arg.
3328 Also, it is not safe if the constant is unsigned and the
3329 variable arg is signed, since in this case the variable
3330 would be sign-extended and then regarded as unsigned.
3331 Our technique fails in this case because the lowest/highest
3332 possible unsigned results don't follow naturally from the
3333 lowest/highest possible values of the variable operand.
3334 For just EQ_EXPR and NE_EXPR there is another technique that
3335 could be used: see if the constant can be faithfully represented
3336 in the other operand's type, by truncating it and reextending it
3337 and see if that preserves the constant's value. */
3338
3339 if (!real1 && !real2
ab22c1fa 3340 && TREE_CODE (TREE_TYPE (primop0)) != FIXED_POINT_TYPE
b30f223b
RS
3341 && TREE_CODE (primop1) == INTEGER_CST
3342 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
3343 {
3344 int min_gt, max_gt, min_lt, max_lt;
3345 tree maxval, minval;
3346 /* 1 if comparison is nominally unsigned. */
8df83eae 3347 int unsignedp = TYPE_UNSIGNED (*restype_ptr);
b30f223b
RS
3348 tree val;
3349
ceef8ce4
NB
3350 type = c_common_signed_or_unsigned_type (unsignedp0,
3351 TREE_TYPE (primop0));
8bbd5685 3352
b30f223b
RS
3353 maxval = TYPE_MAX_VALUE (type);
3354 minval = TYPE_MIN_VALUE (type);
3355
3356 if (unsignedp && !unsignedp0)
ceef8ce4 3357 *restype_ptr = c_common_signed_type (*restype_ptr);
b30f223b
RS
3358
3359 if (TREE_TYPE (primop1) != *restype_ptr)
fae1b38d 3360 {
af9c6659
NS
3361 /* Convert primop1 to target type, but do not introduce
3362 additional overflow. We know primop1 is an int_cst. */
b8fca551 3363 primop1 = force_fit_type_double (*restype_ptr,
9589f23e
AS
3364 tree_to_double_int (primop1),
3365 0, TREE_OVERFLOW (primop1));
fae1b38d 3366 }
b30f223b
RS
3367 if (type != *restype_ptr)
3368 {
3369 minval = convert (*restype_ptr, minval);
3370 maxval = convert (*restype_ptr, maxval);
3371 }
3372
3373 if (unsignedp && unsignedp0)
3374 {
3375 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
3376 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
3377 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
3378 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
3379 }
3380 else
3381 {
3382 min_gt = INT_CST_LT (primop1, minval);
3383 max_gt = INT_CST_LT (primop1, maxval);
3384 min_lt = INT_CST_LT (minval, primop1);
3385 max_lt = INT_CST_LT (maxval, primop1);
3386 }
3387
3388 val = 0;
3389 /* This used to be a switch, but Genix compiler can't handle that. */
3390 if (code == NE_EXPR)
3391 {
3392 if (max_lt || min_gt)
de7df9eb 3393 val = truthvalue_true_node;
b30f223b
RS
3394 }
3395 else if (code == EQ_EXPR)
3396 {
3397 if (max_lt || min_gt)
de7df9eb 3398 val = truthvalue_false_node;
b30f223b
RS
3399 }
3400 else if (code == LT_EXPR)
3401 {
3402 if (max_lt)
de7df9eb 3403 val = truthvalue_true_node;
b30f223b 3404 if (!min_lt)
de7df9eb 3405 val = truthvalue_false_node;
b30f223b
RS
3406 }
3407 else if (code == GT_EXPR)
3408 {
3409 if (min_gt)
de7df9eb 3410 val = truthvalue_true_node;
b30f223b 3411 if (!max_gt)
de7df9eb 3412 val = truthvalue_false_node;
b30f223b
RS
3413 }
3414 else if (code == LE_EXPR)
3415 {
3416 if (!max_gt)
de7df9eb 3417 val = truthvalue_true_node;
b30f223b 3418 if (min_gt)
de7df9eb 3419 val = truthvalue_false_node;
b30f223b
RS
3420 }
3421 else if (code == GE_EXPR)
3422 {
3423 if (!min_lt)
de7df9eb 3424 val = truthvalue_true_node;
b30f223b 3425 if (max_lt)
de7df9eb 3426 val = truthvalue_false_node;
b30f223b
RS
3427 }
3428
3429 /* If primop0 was sign-extended and unsigned comparison specd,
3430 we did a signed comparison above using the signed type bounds.
3431 But the comparison we output must be unsigned.
3432
3433 Also, for inequalities, VAL is no good; but if the signed
3434 comparison had *any* fixed result, it follows that the
3435 unsigned comparison just tests the sign in reverse
3436 (positive values are LE, negative ones GE).
3437 So we can generate an unsigned comparison
3438 against an extreme value of the signed type. */
3439
3440 if (unsignedp && !unsignedp0)
3441 {
3442 if (val != 0)
3443 switch (code)
3444 {
3445 case LT_EXPR:
3446 case GE_EXPR:
3447 primop1 = TYPE_MIN_VALUE (type);
3448 val = 0;
3449 break;
3450
3451 case LE_EXPR:
3452 case GT_EXPR:
3453 primop1 = TYPE_MAX_VALUE (type);
3454 val = 0;
3455 break;
6d819282
MK
3456
3457 default:
3458 break;
b30f223b 3459 }
12753674 3460 type = c_common_unsigned_type (type);
b30f223b
RS
3461 }
3462
5c5b2283 3463 if (TREE_CODE (primop0) != INTEGER_CST)
b30f223b 3464 {
de7df9eb 3465 if (val == truthvalue_false_node)
f6aa72dd 3466 warning (OPT_Wtype_limits, "comparison is always false due to limited range of data type");
de7df9eb 3467 if (val == truthvalue_true_node)
f6aa72dd 3468 warning (OPT_Wtype_limits, "comparison is always true due to limited range of data type");
b30f223b
RS
3469 }
3470
3471 if (val != 0)
3472 {
3473 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3474 if (TREE_SIDE_EFFECTS (primop0))
53fb4de3 3475 return build2 (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
b30f223b
RS
3476 return val;
3477 }
3478
3479 /* Value is not predetermined, but do the comparison
3480 in the type of the operand that is not constant.
3481 TYPE is already properly set. */
3482 }
9a8ce21f
JG
3483
3484 /* If either arg is decimal float and the other is float, find the
3485 proper common type to use for comparison. */
3486 else if (real1 && real2
3487 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
3488 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1)))))
3489 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
3490
b30f223b 3491 else if (real1 && real2
766f6c30
RS
3492 && (TYPE_PRECISION (TREE_TYPE (primop0))
3493 == TYPE_PRECISION (TREE_TYPE (primop1))))
b30f223b
RS
3494 type = TREE_TYPE (primop0);
3495
3496 /* If args' natural types are both narrower than nominal type
3497 and both extend in the same manner, compare them
3498 in the type of the wider arg.
3499 Otherwise must actually extend both to the nominal
3500 common type lest different ways of extending
3501 alter the result.
3502 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
3503
3504 else if (unsignedp0 == unsignedp1 && real1 == real2
3505 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
3506 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
3507 {
3508 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
ceef8ce4 3509 type = c_common_signed_or_unsigned_type (unsignedp0
8df83eae 3510 || TYPE_UNSIGNED (*restype_ptr),
ceef8ce4 3511 type);
b30f223b
RS
3512 /* Make sure shorter operand is extended the right way
3513 to match the longer operand. */
ceef8ce4
NB
3514 primop0
3515 = convert (c_common_signed_or_unsigned_type (unsignedp0,
3516 TREE_TYPE (primop0)),
3517 primop0);
3518 primop1
3519 = convert (c_common_signed_or_unsigned_type (unsignedp1,
3520 TREE_TYPE (primop1)),
3521 primop1);
b30f223b
RS
3522 }
3523 else
3524 {
3525 /* Here we must do the comparison on the nominal type
3526 using the args exactly as we received them. */
3527 type = *restype_ptr;
3528 primop0 = op0;
3529 primop1 = op1;
3530
3531 if (!real1 && !real2 && integer_zerop (primop1)
8df83eae 3532 && TYPE_UNSIGNED (*restype_ptr))
b30f223b
RS
3533 {
3534 tree value = 0;
3535 switch (code)
3536 {
3537 case GE_EXPR:
f6aa72dd
MLI
3538 /* All unsigned values are >= 0, so we warn. However,
3539 if OP0 is a constant that is >= 0, the signedness of
3540 the comparison isn't an issue, so suppress the
3541 warning. */
3542 if (warn_type_limits && !in_system_header
3f75a254
JM
3543 && !(TREE_CODE (primop0) == INTEGER_CST
3544 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
3545 primop0))))
b8698a0f 3546 warning (OPT_Wtype_limits,
f6aa72dd 3547 "comparison of unsigned expression >= 0 is always true");
de7df9eb 3548 value = truthvalue_true_node;
b30f223b
RS
3549 break;
3550
3551 case LT_EXPR:
f6aa72dd 3552 if (warn_type_limits && !in_system_header
3f75a254
JM
3553 && !(TREE_CODE (primop0) == INTEGER_CST
3554 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
3555 primop0))))
b8698a0f 3556 warning (OPT_Wtype_limits,
f6aa72dd 3557 "comparison of unsigned expression < 0 is always false");
de7df9eb 3558 value = truthvalue_false_node;
6d819282
MK
3559 break;
3560
3561 default:
3562 break;
b30f223b
RS
3563 }
3564
3565 if (value != 0)
3566 {
3567 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3568 if (TREE_SIDE_EFFECTS (primop0))
53fb4de3
RS
3569 return build2 (COMPOUND_EXPR, TREE_TYPE (value),
3570 primop0, value);
b30f223b
RS
3571 return value;
3572 }
3573 }
3574 }
3575
3576 *op0_ptr = convert (type, primop0);
3577 *op1_ptr = convert (type, primop1);
3578
de7df9eb 3579 *restype_ptr = truthvalue_type_node;
b30f223b
RS
3580
3581 return 0;
3582}
3583\f
7552da58
JJ
3584/* Return a tree for the sum or difference (RESULTCODE says which)
3585 of pointer PTROP and integer INTOP. */
3586
3587tree
db3927fb
AH
3588pointer_int_sum (location_t loc, enum tree_code resultcode,
3589 tree ptrop, tree intop)
7552da58 3590{
6ac01510 3591 tree size_exp, ret;
7552da58 3592
7552da58 3593 /* The result is a pointer of the same type that is being added. */
7552da58
JJ
3594 tree result_type = TREE_TYPE (ptrop);
3595
3596 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
3597 {
b8698a0f 3598 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
fcf73884 3599 "pointer of type %<void *%> used in arithmetic");
7552da58
JJ
3600 size_exp = integer_one_node;
3601 }
3602 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
3603 {
b8698a0f 3604 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
fcf73884 3605 "pointer to a function used in arithmetic");
7552da58
JJ
3606 size_exp = integer_one_node;
3607 }
3608 else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
3609 {
b8698a0f 3610 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
fcf73884 3611 "pointer to member function used in arithmetic");
7552da58
JJ
3612 size_exp = integer_one_node;
3613 }
7552da58
JJ
3614 else
3615 size_exp = size_in_bytes (TREE_TYPE (result_type));
3616
6ac01510
ILT
3617 /* We are manipulating pointer values, so we don't need to warn
3618 about relying on undefined signed overflow. We disable the
3619 warning here because we use integer types so fold won't know that
3620 they are really pointers. */
3621 fold_defer_overflow_warnings ();
3622
7552da58
JJ
3623 /* If what we are about to multiply by the size of the elements
3624 contains a constant term, apply distributive law
3625 and multiply that constant term separately.
3626 This helps produce common subexpressions. */
7552da58 3627 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
3f75a254 3628 && !TREE_CONSTANT (intop)
7552da58
JJ
3629 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
3630 && TREE_CONSTANT (size_exp)
3631 /* If the constant comes from pointer subtraction,
3632 skip this optimization--it would cause an error. */
3633 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
3634 /* If the constant is unsigned, and smaller than the pointer size,
3635 then we must skip this optimization. This is because it could cause
3636 an overflow error if the constant is negative but INTOP is not. */
3f75a254 3637 && (!TYPE_UNSIGNED (TREE_TYPE (intop))
7552da58
JJ
3638 || (TYPE_PRECISION (TREE_TYPE (intop))
3639 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
3640 {
3641 enum tree_code subcode = resultcode;
3642 tree int_type = TREE_TYPE (intop);
3643 if (TREE_CODE (intop) == MINUS_EXPR)
3644 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
3645 /* Convert both subexpression types to the type of intop,
3646 because weird cases involving pointer arithmetic
3647 can result in a sum or difference with different type args. */
ba47d38d
AH
3648 ptrop = build_binary_op (EXPR_LOCATION (TREE_OPERAND (intop, 1)),
3649 subcode, ptrop,
7552da58
JJ
3650 convert (int_type, TREE_OPERAND (intop, 1)), 1);
3651 intop = convert (int_type, TREE_OPERAND (intop, 0));
3652 }
3653
3654 /* Convert the integer argument to a type the same size as sizetype
3655 so the multiply won't overflow spuriously. */
7552da58 3656 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
8df83eae 3657 || TYPE_UNSIGNED (TREE_TYPE (intop)) != TYPE_UNSIGNED (sizetype))
35b1a6fa 3658 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
8df83eae 3659 TYPE_UNSIGNED (sizetype)), intop);
7552da58
JJ
3660
3661 /* Replace the integer argument with a suitable product by the object size.
9e9ef331
EB
3662 Do this multiplication as signed, then convert to the appropriate type
3663 for the pointer operation and disregard an overflow that occured only
3664 because of the sign-extension change in the latter conversion. */
3665 {
3666 tree t = build_binary_op (loc,
3667 MULT_EXPR, intop,
3668 convert (TREE_TYPE (intop), size_exp), 1);
3669 intop = convert (sizetype, t);
3670 if (TREE_OVERFLOW_P (intop) && !TREE_OVERFLOW (t))
3671 intop = build_int_cst_wide (TREE_TYPE (intop), TREE_INT_CST_LOW (intop),
3672 TREE_INT_CST_HIGH (intop));
3673 }
5be014d5 3674
280f1ffa 3675 /* Create the sum or difference. */
5be014d5 3676 if (resultcode == MINUS_EXPR)
db3927fb 3677 intop = fold_build1_loc (loc, NEGATE_EXPR, sizetype, intop);
7552da58 3678
db3927fb 3679 ret = fold_build2_loc (loc, POINTER_PLUS_EXPR, result_type, ptrop, intop);
6ac01510
ILT
3680
3681 fold_undefer_and_ignore_overflow_warnings ();
3682
3683 return ret;
7552da58
JJ
3684}
3685\f
e5a94231
JM
3686/* Wrap a C_MAYBE_CONST_EXPR around an expression that is fully folded
3687 and if NON_CONST is known not to be permitted in an evaluated part
3688 of a constant expression. */
3689
3690tree
3691c_wrap_maybe_const (tree expr, bool non_const)
3692{
3693 bool nowarning = TREE_NO_WARNING (expr);
3694 location_t loc = EXPR_LOCATION (expr);
3695
3696 /* This should never be called for C++. */
3697 if (c_dialect_cxx ())
3698 gcc_unreachable ();
3699
3700 /* The result of folding may have a NOP_EXPR to set TREE_NO_WARNING. */
3701 STRIP_TYPE_NOPS (expr);
3702 expr = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (expr), NULL, expr);
3703 C_MAYBE_CONST_EXPR_NON_CONST (expr) = non_const;
3704 if (nowarning)
3705 TREE_NO_WARNING (expr) = 1;
3706 protected_set_expr_location (expr, loc);
3707
3708 return expr;
3709}
3710
928c19bb
JM
3711/* Wrap a SAVE_EXPR around EXPR, if appropriate. Like save_expr, but
3712 for C folds the inside expression and wraps a C_MAYBE_CONST_EXPR
3713 around the SAVE_EXPR if needed so that c_fully_fold does not need
3714 to look inside SAVE_EXPRs. */
3715
3716tree
3717c_save_expr (tree expr)
3718{
3719 bool maybe_const = true;
3720 if (c_dialect_cxx ())
3721 return save_expr (expr);
3722 expr = c_fully_fold (expr, false, &maybe_const);
3723 expr = save_expr (expr);
3724 if (!maybe_const)
e5a94231 3725 expr = c_wrap_maybe_const (expr, true);
928c19bb
JM
3726 return expr;
3727}
3728
b3c6d2ea
ILT
3729/* Return whether EXPR is a declaration whose address can never be
3730 NULL. */
3731
3732bool
58f9752a 3733decl_with_nonnull_addr_p (const_tree expr)
b3c6d2ea
ILT
3734{
3735 return (DECL_P (expr)
3736 && (TREE_CODE (expr) == PARM_DECL
3737 || TREE_CODE (expr) == LABEL_DECL
3738 || !DECL_WEAK (expr)));
3739}
3740
b30f223b 3741/* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
85498824
JM
3742 or for an `if' or `while' statement or ?..: exp. It should already
3743 have been validated to be of suitable type; otherwise, a bad
3744 diagnostic may result.
b30f223b 3745
ba47d38d
AH
3746 The EXPR is located at LOCATION.
3747
b30f223b
RS
3748 This preparation consists of taking the ordinary
3749 representation of an expression expr and producing a valid tree
3750 boolean expression describing whether expr is nonzero. We could
de7df9eb 3751 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
b30f223b
RS
3752 but we optimize comparisons, &&, ||, and !.
3753
de7df9eb 3754 The resulting type should always be `truthvalue_type_node'. */
b30f223b
RS
3755
3756tree
ba47d38d 3757c_common_truthvalue_conversion (location_t location, tree expr)
b30f223b 3758{
b30f223b
RS
3759 switch (TREE_CODE (expr))
3760 {
d1a7edaf 3761 case EQ_EXPR: case NE_EXPR: case UNEQ_EXPR: case LTGT_EXPR:
6f312d18
ZW
3762 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
3763 case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
3764 case ORDERED_EXPR: case UNORDERED_EXPR:
90ec750d
RS
3765 if (TREE_TYPE (expr) == truthvalue_type_node)
3766 return expr;
c2255bc4 3767 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
90ec750d 3768 TREE_OPERAND (expr, 0), TREE_OPERAND (expr, 1));
c2255bc4 3769 goto ret;
90ec750d 3770
b30f223b
RS
3771 case TRUTH_ANDIF_EXPR:
3772 case TRUTH_ORIF_EXPR:
3773 case TRUTH_AND_EXPR:
3774 case TRUTH_OR_EXPR:
9379fac9 3775 case TRUTH_XOR_EXPR:
90ec750d
RS
3776 if (TREE_TYPE (expr) == truthvalue_type_node)
3777 return expr;
c2255bc4 3778 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
b8698a0f 3779 c_common_truthvalue_conversion (location,
c2255bc4
AH
3780 TREE_OPERAND (expr, 0)),
3781 c_common_truthvalue_conversion (location,
3782 TREE_OPERAND (expr, 1)));
3783 goto ret;
18c0f675 3784
18d00205 3785 case TRUTH_NOT_EXPR:
90ec750d
RS
3786 if (TREE_TYPE (expr) == truthvalue_type_node)
3787 return expr;
c2255bc4
AH
3788 expr = build1 (TREE_CODE (expr), truthvalue_type_node,
3789 c_common_truthvalue_conversion (location,
3790 TREE_OPERAND (expr, 0)));
3791 goto ret;
18d00205 3792
b30f223b
RS
3793 case ERROR_MARK:
3794 return expr;
3795
3796 case INTEGER_CST:
d95787e6
RS
3797 return integer_zerop (expr) ? truthvalue_false_node
3798 : truthvalue_true_node;
b30f223b
RS
3799
3800 case REAL_CST:
010c4d9c
RS
3801 return real_compare (NE_EXPR, &TREE_REAL_CST (expr), &dconst0)
3802 ? truthvalue_true_node
3803 : truthvalue_false_node;
b30f223b 3804
ab22c1fa
CF
3805 case FIXED_CST:
3806 return fixed_compare (NE_EXPR, &TREE_FIXED_CST (expr),
3807 &FCONST0 (TYPE_MODE (TREE_TYPE (expr))))
3808 ? truthvalue_true_node
3809 : truthvalue_false_node;
3810
90ec750d 3811 case FUNCTION_DECL:
c9f9eb5d 3812 expr = build_unary_op (location, ADDR_EXPR, expr, 0);
90ec750d
RS
3813 /* Fall through. */
3814
b30f223b 3815 case ADDR_EXPR:
1998463c 3816 {
f6f08360 3817 tree inner = TREE_OPERAND (expr, 0);
b3c6d2ea 3818 if (decl_with_nonnull_addr_p (inner))
1998463c 3819 {
b3c6d2ea 3820 /* Common Ada/Pascal programmer's mistake. */
ba47d38d
AH
3821 warning_at (location,
3822 OPT_Waddress,
3823 "the address of %qD will always evaluate as %<true%>",
3824 inner);
1998463c
SB
3825 return truthvalue_true_node;
3826 }
33766b66 3827 break;
1998463c 3828 }
b30f223b 3829
766f6c30 3830 case COMPLEX_EXPR:
c2255bc4 3831 expr = build_binary_op (EXPR_LOCATION (expr),
ba47d38d 3832 (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
b839fb3f 3833 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
ba47d38d
AH
3834 c_common_truthvalue_conversion (location,
3835 TREE_OPERAND (expr, 0)),
3836 c_common_truthvalue_conversion (location,
3837 TREE_OPERAND (expr, 1)),
766f6c30 3838 0);
c2255bc4 3839 goto ret;
766f6c30 3840
b30f223b
RS
3841 case NEGATE_EXPR:
3842 case ABS_EXPR:
3843 case FLOAT_EXPR:
8ce94e44 3844 case EXCESS_PRECISION_EXPR:
da7d8304 3845 /* These don't change whether an object is nonzero or zero. */
ba47d38d 3846 return c_common_truthvalue_conversion (location, TREE_OPERAND (expr, 0));
b30f223b
RS
3847
3848 case LROTATE_EXPR:
3849 case RROTATE_EXPR:
da7d8304 3850 /* These don't change whether an object is zero or nonzero, but
b30f223b
RS
3851 we can't ignore them if their second arg has side-effects. */
3852 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
c2255bc4
AH
3853 {
3854 expr = build2 (COMPOUND_EXPR, truthvalue_type_node,
3855 TREE_OPERAND (expr, 1),
b8698a0f 3856 c_common_truthvalue_conversion
c2255bc4
AH
3857 (location, TREE_OPERAND (expr, 0)));
3858 goto ret;
3859 }
b30f223b 3860 else
ba47d38d
AH
3861 return c_common_truthvalue_conversion (location,
3862 TREE_OPERAND (expr, 0));
b57062ca 3863
b30f223b
RS
3864 case COND_EXPR:
3865 /* Distribute the conversion into the arms of a COND_EXPR. */
928c19bb 3866 if (c_dialect_cxx ())
c2255bc4 3867 {
db3927fb 3868 expr = fold_build3_loc (location, COND_EXPR, truthvalue_type_node,
c2255bc4
AH
3869 TREE_OPERAND (expr, 0),
3870 c_common_truthvalue_conversion (location,
3871 TREE_OPERAND (expr,
3872 1)),
3873 c_common_truthvalue_conversion (location,
3874 TREE_OPERAND (expr,
3875 2)));
3876 goto ret;
3877 }
928c19bb 3878 else
c2255bc4
AH
3879 {
3880 /* Folding will happen later for C. */
3881 expr = build3 (COND_EXPR, truthvalue_type_node,
3882 TREE_OPERAND (expr, 0),
3883 c_common_truthvalue_conversion (location,
3884 TREE_OPERAND (expr, 1)),
3885 c_common_truthvalue_conversion (location,
3886 TREE_OPERAND (expr, 2)));
3887 goto ret;
3888 }
b30f223b 3889
1043771b 3890 CASE_CONVERT:
b30f223b
RS
3891 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
3892 since that affects how `default_conversion' will behave. */
3893 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
3894 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
3895 break;
b30f223b
RS
3896 /* If this is widening the argument, we can ignore it. */
3897 if (TYPE_PRECISION (TREE_TYPE (expr))
3898 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
ba47d38d
AH
3899 return c_common_truthvalue_conversion (location,
3900 TREE_OPERAND (expr, 0));
b30f223b
RS
3901 break;
3902
e2aab13d 3903 case MODIFY_EXPR:
fbc8d2d3
ILT
3904 if (!TREE_NO_WARNING (expr)
3905 && warn_parentheses)
3906 {
3907 warning (OPT_Wparentheses,
3908 "suggest parentheses around assignment used as truth value");
3909 TREE_NO_WARNING (expr) = 1;
3910 }
e2aab13d 3911 break;
b57062ca 3912
6d819282
MK
3913 default:
3914 break;
b30f223b
RS
3915 }
3916
f0b996c5 3917 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
f0b8d9aa 3918 {
928c19bb 3919 tree t = c_save_expr (expr);
c2255bc4 3920 expr = (build_binary_op
ba47d38d
AH
3921 (EXPR_LOCATION (expr),
3922 (TREE_SIDE_EFFECTS (expr)
f0b8d9aa 3923 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
c9f9eb5d
AH
3924 c_common_truthvalue_conversion
3925 (location,
3926 build_unary_op (location, REALPART_EXPR, t, 0)),
3927 c_common_truthvalue_conversion
3928 (location,
3929 build_unary_op (location, IMAGPART_EXPR, t, 0)),
f0b8d9aa 3930 0));
c2255bc4 3931 goto ret;
f0b8d9aa 3932 }
f0b996c5 3933
ab22c1fa
CF
3934 if (TREE_CODE (TREE_TYPE (expr)) == FIXED_POINT_TYPE)
3935 {
3936 tree fixed_zero_node = build_fixed (TREE_TYPE (expr),
3937 FCONST0 (TYPE_MODE
3938 (TREE_TYPE (expr))));
ca80e52b 3939 return build_binary_op (location, NE_EXPR, expr, fixed_zero_node, 1);
ab22c1fa 3940 }
c2255bc4
AH
3941 else
3942 return build_binary_op (location, NE_EXPR, expr, integer_zero_node, 1);
ab22c1fa 3943
c2255bc4
AH
3944 ret:
3945 protected_set_expr_location (expr, location);
3946 return expr;
b30f223b
RS
3947}
3948\f
9bc15050
RG
3949static void def_builtin_1 (enum built_in_function fncode,
3950 const char *name,
3951 enum built_in_class fnclass,
3952 tree fntype, tree libtype,
3953 bool both_p, bool fallback_p, bool nonansi_p,
3954 tree fnattrs, bool implicit_p);
fc2aaf30 3955
3932261a
MM
3956
3957/* Apply the TYPE_QUALS to the new DECL. */
3958
3959void
35b1a6fa 3960c_apply_type_quals_to_decl (int type_quals, tree decl)
3932261a 3961{
4b011bbf 3962 tree type = TREE_TYPE (decl);
9f63daea 3963
5a6159dd
AP
3964 if (type == error_mark_node)
3965 return;
4b011bbf
JM
3966
3967 if (((type_quals & TYPE_QUAL_CONST)
3968 || (type && TREE_CODE (type) == REFERENCE_TYPE))
3969 /* An object declared 'const' is only readonly after it is
3970 initialized. We don't have any way of expressing this currently,
3971 so we need to be conservative and unset TREE_READONLY for types
3972 with constructors. Otherwise aliasing code will ignore stores in
3973 an inline constructor. */
3974 && !(type && TYPE_NEEDS_CONSTRUCTING (type)))
3932261a
MM
3975 TREE_READONLY (decl) = 1;
3976 if (type_quals & TYPE_QUAL_VOLATILE)
3977 {
3978 TREE_SIDE_EFFECTS (decl) = 1;
3979 TREE_THIS_VOLATILE (decl) = 1;
3980 }
6946bc60 3981 if (type_quals & TYPE_QUAL_RESTRICT)
3932261a 3982 {
4b011bbf
JM
3983 while (type && TREE_CODE (type) == ARRAY_TYPE)
3984 /* Allow 'restrict' on arrays of pointers.
3985 FIXME currently we just ignore it. */
3986 type = TREE_TYPE (type);
3987 if (!type
3988 || !POINTER_TYPE_P (type)
3989 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type)))
bda67431 3990 error ("invalid use of %<restrict%>");
3932261a
MM
3991 }
3992}
3993
6de9cd9a
DN
3994/* Hash function for the problem of multiple type definitions in
3995 different files. This must hash all types that will compare
3996 equal via comptypes to the same value. In practice it hashes
9cf737f8 3997 on some of the simple stuff and leaves the details to comptypes. */
6de9cd9a
DN
3998
3999static hashval_t
4000c_type_hash (const void *p)
4001{
4002 int i = 0;
4003 int shift, size;
741ac903 4004 const_tree const t = (const_tree) p;
6de9cd9a
DN
4005 tree t2;
4006 switch (TREE_CODE (t))
4007 {
8c27b7d4 4008 /* For pointers, hash on pointee type plus some swizzling. */
325c3691
RH
4009 case POINTER_TYPE:
4010 return c_type_hash (TREE_TYPE (t)) ^ 0x3003003;
4011 /* Hash on number of elements and total size. */
4012 case ENUMERAL_TYPE:
4013 shift = 3;
4014 t2 = TYPE_VALUES (t);
4015 break;
4016 case RECORD_TYPE:
4017 shift = 0;
4018 t2 = TYPE_FIELDS (t);
4019 break;
4020 case QUAL_UNION_TYPE:
4021 shift = 1;
4022 t2 = TYPE_FIELDS (t);
4023 break;
4024 case UNION_TYPE:
4025 shift = 2;
4026 t2 = TYPE_FIELDS (t);
4027 break;
4028 default:
366de0ce 4029 gcc_unreachable ();
6de9cd9a
DN
4030 }
4031 for (; t2; t2 = TREE_CHAIN (t2))
4032 i++;
6fc3c3c0
TT
4033 /* We might have a VLA here. */
4034 if (TREE_CODE (TYPE_SIZE (t)) != INTEGER_CST)
4035 size = 0;
4036 else
4037 size = TREE_INT_CST_LOW (TYPE_SIZE (t));
6de9cd9a
DN
4038 return ((size << 24) | (i << shift));
4039}
4040
4fe52ce9
DJ
4041static GTY((param_is (union tree_node))) htab_t type_hash_table;
4042
41472af8 4043/* Return the typed-based alias set for T, which may be an expression
3bdf5ad1 4044 or a type. Return -1 if we don't do anything special. */
41472af8 4045
4862826d 4046alias_set_type
35b1a6fa 4047c_common_get_alias_set (tree t)
41472af8 4048{
08bc2431 4049 tree u;
6de9cd9a 4050 PTR *slot;
35b1a6fa 4051
cb9c2485
JM
4052 /* For VLAs, use the alias set of the element type rather than the
4053 default of alias set 0 for types compared structurally. */
4054 if (TYPE_P (t) && TYPE_STRUCTURAL_EQUALITY_P (t))
4055 {
4056 if (TREE_CODE (t) == ARRAY_TYPE)
4057 return get_alias_set (TREE_TYPE (t));
4058 return -1;
4059 }
4060
08bc2431
MM
4061 /* Permit type-punning when accessing a union, provided the access
4062 is directly through the union. For example, this code does not
4063 permit taking the address of a union member and then storing
4064 through it. Even the type-punning allowed here is a GCC
4065 extension, albeit a common and useful one; the C standard says
4066 that such accesses have implementation-defined behavior. */
4067 for (u = t;
4068 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
4069 u = TREE_OPERAND (u, 0))
4070 if (TREE_CODE (u) == COMPONENT_REF
4071 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
4072 return 0;
ece32014 4073
74d86f4f 4074 /* That's all the expressions we handle specially. */
3f75a254 4075 if (!TYPE_P (t))
74d86f4f
RH
4076 return -1;
4077
95bd1dd7 4078 /* The C standard guarantees that any object may be accessed via an
74d86f4f
RH
4079 lvalue that has character type. */
4080 if (t == char_type_node
4081 || t == signed_char_type_node
4082 || t == unsigned_char_type_node)
3bdf5ad1 4083 return 0;
3932261a 4084
f824e5c3
RK
4085 /* The C standard specifically allows aliasing between signed and
4086 unsigned variants of the same type. We treat the signed
4087 variant as canonical. */
8df83eae 4088 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
8f215dce 4089 {
ceef8ce4 4090 tree t1 = c_common_signed_type (t);
f824e5c3 4091
8f215dce
JJ
4092 /* t1 == t can happen for boolean nodes which are always unsigned. */
4093 if (t1 != t)
4094 return get_alias_set (t1);
4095 }
3bdf5ad1 4096 else if (POINTER_TYPE_P (t))
02af3af6 4097 {
3bdf5ad1 4098 tree t1;
02af3af6
MS
4099
4100 /* Unfortunately, there is no canonical form of a pointer type.
4101 In particular, if we have `typedef int I', then `int *', and
4102 `I *' are different types. So, we have to pick a canonical
4103 representative. We do this below.
d125d268 4104
b61148dd
MM
4105 Technically, this approach is actually more conservative that
4106 it needs to be. In particular, `const int *' and `int *'
684d9f3b 4107 should be in different alias sets, according to the C and C++
b61148dd
MM
4108 standard, since their types are not the same, and so,
4109 technically, an `int **' and `const int **' cannot point at
4110 the same thing.
4111
6de9cd9a 4112 But, the standard is wrong. In particular, this code is
b61148dd
MM
4113 legal C++:
4114
c22cacf3
MS
4115 int *ip;
4116 int **ipp = &ip;
4117 const int* const* cipp = ipp;
b61148dd 4118
6de9cd9a 4119 And, it doesn't make sense for that to be legal unless you
b61148dd
MM
4120 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
4121 the pointed-to types. This issue has been reported to the
4122 C++ committee. */
12e1243e 4123 t1 = build_type_no_quals (t);
3bdf5ad1
RK
4124 if (t1 != t)
4125 return get_alias_set (t1);
02af3af6 4126 }
ece32014 4127
6de9cd9a
DN
4128 /* Handle the case of multiple type nodes referring to "the same" type,
4129 which occurs with IMA. These share an alias set. FIXME: Currently only
4130 C90 is handled. (In C99 type compatibility is not transitive, which
4131 complicates things mightily. The alias set splay trees can theoretically
4132 represent this, but insertion is tricky when you consider all the
4133 different orders things might arrive in.) */
4134
4135 if (c_language != clk_c || flag_isoc99)
4136 return -1;
4137
9cf737f8 4138 /* Save time if there's only one input file. */
d974312d 4139 if (num_in_fnames == 1)
6de9cd9a
DN
4140 return -1;
4141
4142 /* Pointers need special handling if they point to any type that
4143 needs special handling (below). */
4144 if (TREE_CODE (t) == POINTER_TYPE)
4145 {
4146 tree t2;
4147 /* Find bottom type under any nested POINTERs. */
9f63daea 4148 for (t2 = TREE_TYPE (t);
762f7d9d
TT
4149 TREE_CODE (t2) == POINTER_TYPE;
4150 t2 = TREE_TYPE (t2))
4151 ;
9f63daea 4152 if (TREE_CODE (t2) != RECORD_TYPE
762f7d9d
TT
4153 && TREE_CODE (t2) != ENUMERAL_TYPE
4154 && TREE_CODE (t2) != QUAL_UNION_TYPE
4155 && TREE_CODE (t2) != UNION_TYPE)
4156 return -1;
6de9cd9a 4157 if (TYPE_SIZE (t2) == 0)
762f7d9d 4158 return -1;
6de9cd9a
DN
4159 }
4160 /* These are the only cases that need special handling. */
9f63daea 4161 if (TREE_CODE (t) != RECORD_TYPE
6de9cd9a
DN
4162 && TREE_CODE (t) != ENUMERAL_TYPE
4163 && TREE_CODE (t) != QUAL_UNION_TYPE
4164 && TREE_CODE (t) != UNION_TYPE
4165 && TREE_CODE (t) != POINTER_TYPE)
4166 return -1;
4167 /* Undefined? */
4168 if (TYPE_SIZE (t) == 0)
4169 return -1;
4170
9f63daea 4171 /* Look up t in hash table. Only one of the compatible types within each
6de9cd9a
DN
4172 alias set is recorded in the table. */
4173 if (!type_hash_table)
4fe52ce9 4174 type_hash_table = htab_create_ggc (1021, c_type_hash,
6de9cd9a
DN
4175 (htab_eq) lang_hooks.types_compatible_p,
4176 NULL);
4177 slot = htab_find_slot (type_hash_table, t, INSERT);
4178 if (*slot != NULL)
6a3203c8
AP
4179 {
4180 TYPE_ALIAS_SET (t) = TYPE_ALIAS_SET ((tree)*slot);
4181 return TYPE_ALIAS_SET ((tree)*slot);
4182 }
6de9cd9a
DN
4183 else
4184 /* Our caller will assign and record (in t) a new alias set; all we need
4185 to do is remember t in the hash table. */
4186 *slot = t;
4187
3bdf5ad1 4188 return -1;
41472af8 4189}
0213a355 4190\f
c2255bc4
AH
4191/* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where
4192 the second parameter indicates which OPERATOR is being applied.
4193 The COMPLAIN flag controls whether we should diagnose possibly
4194 ill-formed constructs or not. LOC is the location of the SIZEOF or
4195 TYPEOF operator. */
03a08664 4196
0213a355 4197tree
c2255bc4
AH
4198c_sizeof_or_alignof_type (location_t loc,
4199 tree type, bool is_sizeof, int complain)
0213a355 4200{
fa72b064
GDR
4201 const char *op_name;
4202 tree value = NULL;
4203 enum tree_code type_code = TREE_CODE (type);
35b1a6fa 4204
03a08664 4205 op_name = is_sizeof ? "sizeof" : "__alignof__";
35b1a6fa 4206
fa72b064 4207 if (type_code == FUNCTION_TYPE)
0213a355 4208 {
03a08664 4209 if (is_sizeof)
fa72b064 4210 {
ea793912 4211 if (complain && (pedantic || warn_pointer_arith))
b8698a0f 4212 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
fcf73884 4213 "invalid application of %<sizeof%> to a function type");
5ade1ed2
DG
4214 else if (!complain)
4215 return error_mark_node;
fa72b064
GDR
4216 value = size_one_node;
4217 }
4218 else
4219 value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
4220 }
4221 else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
4222 {
35b1a6fa 4223 if (type_code == VOID_TYPE
ea793912 4224 && complain && (pedantic || warn_pointer_arith))
b8698a0f 4225 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
fcf73884 4226 "invalid application of %qs to a void type", op_name);
5ade1ed2
DG
4227 else if (!complain)
4228 return error_mark_node;
fa72b064 4229 value = size_one_node;
0213a355 4230 }
0213a355
JM
4231 else if (!COMPLETE_TYPE_P (type))
4232 {
ea793912 4233 if (complain)
c2255bc4
AH
4234 error_at (loc, "invalid application of %qs to incomplete type %qT ",
4235 op_name, type);
cb6addf4 4236 return error_mark_node;
0213a355
JM
4237 }
4238 else
fa72b064 4239 {
03a08664 4240 if (is_sizeof)
fa72b064 4241 /* Convert in case a char is more than one unit. */
db3927fb
AH
4242 value = size_binop_loc (loc, CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
4243 size_int (TYPE_PRECISION (char_type_node)
4244 / BITS_PER_UNIT));
fa72b064 4245 else
a4e9ffe5 4246 value = size_int (TYPE_ALIGN_UNIT (type));
fa72b064 4247 }
0213a355 4248
fa72b064
GDR
4249 /* VALUE will have an integer type with TYPE_IS_SIZETYPE set.
4250 TYPE_IS_SIZETYPE means that certain things (like overflow) will
4251 never happen. However, this node should really have type
4252 `size_t', which is just a typedef for an ordinary integer type. */
db3927fb 4253 value = fold_convert_loc (loc, size_type_node, value);
4094f4d2 4254 gcc_assert (!TYPE_IS_SIZETYPE (TREE_TYPE (value)));
35b1a6fa 4255
fa72b064 4256 return value;
0213a355
JM
4257}
4258
4259/* Implement the __alignof keyword: Return the minimum required
837edd5f
GK
4260 alignment of EXPR, measured in bytes. For VAR_DECLs,
4261 FUNCTION_DECLs and FIELD_DECLs return DECL_ALIGN (which can be set
c2255bc4
AH
4262 from an "aligned" __attribute__ specification). LOC is the
4263 location of the ALIGNOF operator. */
7f4edbcb 4264
0213a355 4265tree
c2255bc4 4266c_alignof_expr (location_t loc, tree expr)
0213a355
JM
4267{
4268 tree t;
4269
837edd5f 4270 if (VAR_OR_FUNCTION_DECL_P (expr))
a4e9ffe5 4271 t = size_int (DECL_ALIGN_UNIT (expr));
35b1a6fa 4272
0213a355
JM
4273 else if (TREE_CODE (expr) == COMPONENT_REF
4274 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
4275 {
c2255bc4 4276 error_at (loc, "%<__alignof%> applied to a bit-field");
0213a355
JM
4277 t = size_one_node;
4278 }
4279 else if (TREE_CODE (expr) == COMPONENT_REF
173bf5be 4280 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
a4e9ffe5 4281 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr, 1)));
35b1a6fa 4282
0213a355
JM
4283 else if (TREE_CODE (expr) == INDIRECT_REF)
4284 {
4285 tree t = TREE_OPERAND (expr, 0);
4286 tree best = t;
4287 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
35b1a6fa 4288
1043771b 4289 while (CONVERT_EXPR_P (t)
173bf5be 4290 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
0213a355
JM
4291 {
4292 int thisalign;
4293
4294 t = TREE_OPERAND (t, 0);
4295 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
4296 if (thisalign > bestalign)
4297 best = t, bestalign = thisalign;
4298 }
c2255bc4 4299 return c_alignof (loc, TREE_TYPE (TREE_TYPE (best)));
0213a355
JM
4300 }
4301 else
c2255bc4 4302 return c_alignof (loc, TREE_TYPE (expr));
0213a355 4303
db3927fb 4304 return fold_convert_loc (loc, size_type_node, t);
0213a355
JM
4305}
4306\f
df061a43
RS
4307/* Handle C and C++ default attributes. */
4308
4309enum built_in_attribute
4310{
4311#define DEF_ATTR_NULL_TREE(ENUM) ENUM,
4312#define DEF_ATTR_INT(ENUM, VALUE) ENUM,
4313#define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
4314#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
df061a43
RS
4315#include "builtin-attrs.def"
4316#undef DEF_ATTR_NULL_TREE
4317#undef DEF_ATTR_INT
4318#undef DEF_ATTR_IDENT
4319#undef DEF_ATTR_TREE_LIST
df061a43
RS
4320 ATTR_LAST
4321};
4322
4323static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
4324
35b1a6fa 4325static void c_init_attributes (void);
df061a43 4326
a0274e3e 4327enum c_builtin_type
7f4edbcb 4328{
10841285
MM
4329#define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
4330#define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
4331#define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
4332#define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
4333#define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4334#define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
10a0d495 4335#define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
a0274e3e
JJ
4336#define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) NAME,
4337#define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) NAME,
10841285
MM
4338#define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
4339#define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
4340#define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
08291658 4341#define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
10a0d495
JJ
4342#define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4343#define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG6) \
4344 NAME,
10841285
MM
4345#define DEF_POINTER_TYPE(NAME, TYPE) NAME,
4346#include "builtin-types.def"
4347#undef DEF_PRIMITIVE_TYPE
4348#undef DEF_FUNCTION_TYPE_0
4349#undef DEF_FUNCTION_TYPE_1
4350#undef DEF_FUNCTION_TYPE_2
4351#undef DEF_FUNCTION_TYPE_3
4352#undef DEF_FUNCTION_TYPE_4
10a0d495
JJ
4353#undef DEF_FUNCTION_TYPE_5
4354#undef DEF_FUNCTION_TYPE_6
a0274e3e 4355#undef DEF_FUNCTION_TYPE_7
10841285
MM
4356#undef DEF_FUNCTION_TYPE_VAR_0
4357#undef DEF_FUNCTION_TYPE_VAR_1
4358#undef DEF_FUNCTION_TYPE_VAR_2
08291658 4359#undef DEF_FUNCTION_TYPE_VAR_3
10a0d495
JJ
4360#undef DEF_FUNCTION_TYPE_VAR_4
4361#undef DEF_FUNCTION_TYPE_VAR_5
10841285 4362#undef DEF_POINTER_TYPE
a0274e3e
JJ
4363 BT_LAST
4364};
4365
4366typedef enum c_builtin_type builtin_type;
10841285 4367
a0274e3e
JJ
4368/* A temporary array for c_common_nodes_and_builtins. Used in
4369 communication with def_fn_type. */
4370static tree builtin_types[(int) BT_LAST + 1];
10841285 4371
a0274e3e
JJ
4372/* A helper function for c_common_nodes_and_builtins. Build function type
4373 for DEF with return type RET and N arguments. If VAR is true, then the
4374 function should be variadic after those N arguments.
4375
4376 Takes special care not to ICE if any of the types involved are
4377 error_mark_node, which indicates that said type is not in fact available
4378 (see builtin_type_for_size). In which case the function type as a whole
4379 should be error_mark_node. */
4380
4381static void
4382def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
4383{
4384 tree args = NULL, t;
4385 va_list list;
4386 int i;
4387
4388 va_start (list, n);
4389 for (i = 0; i < n; ++i)
4390 {
d75d71e0 4391 builtin_type a = (builtin_type) va_arg (list, int);
a0274e3e
JJ
4392 t = builtin_types[a];
4393 if (t == error_mark_node)
4394 goto egress;
4395 args = tree_cons (NULL_TREE, t, args);
4396 }
4397 va_end (list);
4398
4399 args = nreverse (args);
4400 if (!var)
4401 args = chainon (args, void_list_node);
4402
4403 t = builtin_types[ret];
4404 if (t == error_mark_node)
4405 goto egress;
4406 t = build_function_type (t, args);
4407
4408 egress:
4409 builtin_types[def] = t;
4410}
4411
c6d86fce
ILT
4412/* Build builtin functions common to both C and C++ language
4413 frontends. */
4414
4415static void
4416c_define_builtins (tree va_list_ref_type_node, tree va_list_arg_type_node)
4417{
4418#define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
4419 builtin_types[ENUM] = VALUE;
4420#define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
4421 def_fn_type (ENUM, RETURN, 0, 0);
4422#define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
4423 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
4424#define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
4425 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
4426#define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4427 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
4428#define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4429 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
4430#define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4431 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4432#define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4433 ARG6) \
4434 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
4435#define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4436 ARG6, ARG7) \
4437 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
4438#define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
4439 def_fn_type (ENUM, RETURN, 1, 0);
4440#define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
4441 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
4442#define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
4443 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
4444#define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4445 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
4446#define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4447 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
4448#define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4449 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4450#define DEF_POINTER_TYPE(ENUM, TYPE) \
4451 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
4452
4453#include "builtin-types.def"
4454
4455#undef DEF_PRIMITIVE_TYPE
4456#undef DEF_FUNCTION_TYPE_1
4457#undef DEF_FUNCTION_TYPE_2
4458#undef DEF_FUNCTION_TYPE_3
4459#undef DEF_FUNCTION_TYPE_4
4460#undef DEF_FUNCTION_TYPE_5
4461#undef DEF_FUNCTION_TYPE_6
4462#undef DEF_FUNCTION_TYPE_VAR_0
4463#undef DEF_FUNCTION_TYPE_VAR_1
4464#undef DEF_FUNCTION_TYPE_VAR_2
4465#undef DEF_FUNCTION_TYPE_VAR_3
4466#undef DEF_FUNCTION_TYPE_VAR_4
4467#undef DEF_FUNCTION_TYPE_VAR_5
4468#undef DEF_POINTER_TYPE
4469 builtin_types[(int) BT_LAST] = NULL_TREE;
4470
4471 c_init_attributes ();
4472
4473#define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
4474 NONANSI_P, ATTRS, IMPLICIT, COND) \
4475 if (NAME && COND) \
4476 def_builtin_1 (ENUM, NAME, CLASS, \
4477 builtin_types[(int) TYPE], \
4478 builtin_types[(int) LIBTYPE], \
4479 BOTH_P, FALLBACK_P, NONANSI_P, \
4480 built_in_attributes[(int) ATTRS], IMPLICIT);
4481#include "builtins.def"
4482#undef DEF_BUILTIN
4483
8de7ef2a
UB
4484 targetm.init_builtins ();
4485
384c400a 4486 build_common_builtin_nodes ();
c6d86fce 4487
c6d86fce
ILT
4488 if (flag_mudflap)
4489 mudflap_init ();
4490}
4491
c1b61fca
JM
4492/* Like get_identifier, but avoid warnings about null arguments when
4493 the argument may be NULL for targets where GCC lacks stdint.h type
4494 information. */
4495
4496static inline tree
4497c_get_ident (const char *id)
4498{
4499 return get_identifier (id);
4500}
4501
a0274e3e
JJ
4502/* Build tree nodes and builtin functions common to both C and C++ language
4503 frontends. */
4504
4505void
4506c_common_nodes_and_builtins (void)
4507{
b6baa67d
KVH
4508 int char16_type_size;
4509 int char32_type_size;
eaa7c03f
JM
4510 int wchar_type_size;
4511 tree array_domain_type;
9f720c3e 4512 tree va_list_ref_type_node;
daf68dd7 4513 tree va_list_arg_type_node;
d3707adb 4514
eaa7c03f 4515 /* Define `int' and `char' first so that dbx will output them first. */
6496a589 4516 record_builtin_type (RID_INT, NULL, integer_type_node);
eaa7c03f
JM
4517 record_builtin_type (RID_CHAR, "char", char_type_node);
4518
4519 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
4520 "unsigned long", "long long unsigned" and "unsigned short" were in C++
4521 but not C. Are the conditionals here needed? */
37fa72e9 4522 if (c_dialect_cxx ())
6496a589 4523 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
eaa7c03f
JM
4524 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
4525 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
4526 record_builtin_type (RID_MAX, "long unsigned int",
4527 long_unsigned_type_node);
a6766312
KT
4528 if (int128_integer_type_node != NULL_TREE)
4529 {
4530 record_builtin_type (RID_INT128, "__int128",
4531 int128_integer_type_node);
4532 record_builtin_type (RID_MAX, "__int128 unsigned",
4533 int128_unsigned_type_node);
4534 }
37fa72e9 4535 if (c_dialect_cxx ())
eaa7c03f
JM
4536 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
4537 record_builtin_type (RID_MAX, "long long int",
4538 long_long_integer_type_node);
4539 record_builtin_type (RID_MAX, "long long unsigned int",
4540 long_long_unsigned_type_node);
37fa72e9 4541 if (c_dialect_cxx ())
eaa7c03f
JM
4542 record_builtin_type (RID_MAX, "long long unsigned",
4543 long_long_unsigned_type_node);
4544 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
4545 record_builtin_type (RID_MAX, "short unsigned int",
4546 short_unsigned_type_node);
37fa72e9 4547 if (c_dialect_cxx ())
eaa7c03f
JM
4548 record_builtin_type (RID_MAX, "unsigned short",
4549 short_unsigned_type_node);
4550
4551 /* Define both `signed char' and `unsigned char'. */
4552 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
4553 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
4554
b0c48229
NB
4555 /* These are types that c_common_type_for_size and
4556 c_common_type_for_mode use. */
c2255bc4
AH
4557 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4558 TYPE_DECL, NULL_TREE,
ae2bcd98 4559 intQI_type_node));
c2255bc4
AH
4560 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4561 TYPE_DECL, NULL_TREE,
ae2bcd98 4562 intHI_type_node));
c2255bc4
AH
4563 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4564 TYPE_DECL, NULL_TREE,
ae2bcd98 4565 intSI_type_node));
c2255bc4
AH
4566 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4567 TYPE_DECL, NULL_TREE,
ae2bcd98 4568 intDI_type_node));
eaa7c03f 4569#if HOST_BITS_PER_WIDE_INT >= 64
1e1b8649 4570 if (targetm.scalar_mode_supported_p (TImode))
c2255bc4
AH
4571 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4572 TYPE_DECL,
1e1b8649
AP
4573 get_identifier ("__int128_t"),
4574 intTI_type_node));
eaa7c03f 4575#endif
c2255bc4
AH
4576 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4577 TYPE_DECL, NULL_TREE,
ae2bcd98 4578 unsigned_intQI_type_node));
c2255bc4
AH
4579 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4580 TYPE_DECL, NULL_TREE,
ae2bcd98 4581 unsigned_intHI_type_node));
c2255bc4
AH
4582 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4583 TYPE_DECL, NULL_TREE,
ae2bcd98 4584 unsigned_intSI_type_node));
c2255bc4
AH
4585 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4586 TYPE_DECL, NULL_TREE,
ae2bcd98 4587 unsigned_intDI_type_node));
eaa7c03f 4588#if HOST_BITS_PER_WIDE_INT >= 64
1e1b8649 4589 if (targetm.scalar_mode_supported_p (TImode))
c2255bc4
AH
4590 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4591 TYPE_DECL,
1e1b8649
AP
4592 get_identifier ("__uint128_t"),
4593 unsigned_intTI_type_node));
eaa7c03f
JM
4594#endif
4595
4596 /* Create the widest literal types. */
4597 widest_integer_literal_type_node
4598 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
c2255bc4
AH
4599 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4600 TYPE_DECL, NULL_TREE,
ae2bcd98 4601 widest_integer_literal_type_node));
eaa7c03f
JM
4602
4603 widest_unsigned_literal_type_node
4604 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
c2255bc4
AH
4605 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4606 TYPE_DECL, NULL_TREE,
ae2bcd98 4607 widest_unsigned_literal_type_node));
eaa7c03f
JM
4608
4609 /* `unsigned long' is the standard type for sizeof.
4610 Note that stddef.h uses `unsigned long',
4611 and this must agree, even if long and int are the same size. */
c9f8536c 4612 size_type_node =
eaa7c03f 4613 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
c9f8536c
MM
4614 signed_size_type_node = c_common_signed_type (size_type_node);
4615 set_sizetype (size_type_node);
eaa7c03f 4616
d1c38823
ZD
4617 pid_type_node =
4618 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE)));
4619
eaa7c03f
JM
4620 build_common_tree_nodes_2 (flag_short_double);
4621
6496a589
KG
4622 record_builtin_type (RID_FLOAT, NULL, float_type_node);
4623 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
eaa7c03f
JM
4624 record_builtin_type (RID_MAX, "long double", long_double_type_node);
4625
9a8ce21f
JG
4626 /* Only supported decimal floating point extension if the target
4627 actually supports underlying modes. */
b8698a0f 4628 if (targetm.scalar_mode_supported_p (SDmode)
9a8ce21f
JG
4629 && targetm.scalar_mode_supported_p (DDmode)
4630 && targetm.scalar_mode_supported_p (TDmode))
4631 {
4632 record_builtin_type (RID_DFLOAT32, NULL, dfloat32_type_node);
4633 record_builtin_type (RID_DFLOAT64, NULL, dfloat64_type_node);
4634 record_builtin_type (RID_DFLOAT128, NULL, dfloat128_type_node);
4635 }
4636
ab22c1fa
CF
4637 if (targetm.fixed_point_supported_p ())
4638 {
4639 record_builtin_type (RID_MAX, "short _Fract", short_fract_type_node);
4640 record_builtin_type (RID_FRACT, NULL, fract_type_node);
4641 record_builtin_type (RID_MAX, "long _Fract", long_fract_type_node);
4642 record_builtin_type (RID_MAX, "long long _Fract",
4643 long_long_fract_type_node);
4644 record_builtin_type (RID_MAX, "unsigned short _Fract",
4645 unsigned_short_fract_type_node);
4646 record_builtin_type (RID_MAX, "unsigned _Fract",
4647 unsigned_fract_type_node);
4648 record_builtin_type (RID_MAX, "unsigned long _Fract",
4649 unsigned_long_fract_type_node);
4650 record_builtin_type (RID_MAX, "unsigned long long _Fract",
4651 unsigned_long_long_fract_type_node);
4652 record_builtin_type (RID_MAX, "_Sat short _Fract",
4653 sat_short_fract_type_node);
4654 record_builtin_type (RID_MAX, "_Sat _Fract", sat_fract_type_node);
4655 record_builtin_type (RID_MAX, "_Sat long _Fract",
4656 sat_long_fract_type_node);
4657 record_builtin_type (RID_MAX, "_Sat long long _Fract",
4658 sat_long_long_fract_type_node);
4659 record_builtin_type (RID_MAX, "_Sat unsigned short _Fract",
4660 sat_unsigned_short_fract_type_node);
4661 record_builtin_type (RID_MAX, "_Sat unsigned _Fract",
4662 sat_unsigned_fract_type_node);
4663 record_builtin_type (RID_MAX, "_Sat unsigned long _Fract",
4664 sat_unsigned_long_fract_type_node);
4665 record_builtin_type (RID_MAX, "_Sat unsigned long long _Fract",
4666 sat_unsigned_long_long_fract_type_node);
4667 record_builtin_type (RID_MAX, "short _Accum", short_accum_type_node);
4668 record_builtin_type (RID_ACCUM, NULL, accum_type_node);
4669 record_builtin_type (RID_MAX, "long _Accum", long_accum_type_node);
4670 record_builtin_type (RID_MAX, "long long _Accum",
4671 long_long_accum_type_node);
4672 record_builtin_type (RID_MAX, "unsigned short _Accum",
4673 unsigned_short_accum_type_node);
4674 record_builtin_type (RID_MAX, "unsigned _Accum",
4675 unsigned_accum_type_node);
4676 record_builtin_type (RID_MAX, "unsigned long _Accum",
4677 unsigned_long_accum_type_node);
4678 record_builtin_type (RID_MAX, "unsigned long long _Accum",
4679 unsigned_long_long_accum_type_node);
4680 record_builtin_type (RID_MAX, "_Sat short _Accum",
4681 sat_short_accum_type_node);
4682 record_builtin_type (RID_MAX, "_Sat _Accum", sat_accum_type_node);
4683 record_builtin_type (RID_MAX, "_Sat long _Accum",
4684 sat_long_accum_type_node);
4685 record_builtin_type (RID_MAX, "_Sat long long _Accum",
4686 sat_long_long_accum_type_node);
4687 record_builtin_type (RID_MAX, "_Sat unsigned short _Accum",
4688 sat_unsigned_short_accum_type_node);
4689 record_builtin_type (RID_MAX, "_Sat unsigned _Accum",
4690 sat_unsigned_accum_type_node);
4691 record_builtin_type (RID_MAX, "_Sat unsigned long _Accum",
4692 sat_unsigned_long_accum_type_node);
4693 record_builtin_type (RID_MAX, "_Sat unsigned long long _Accum",
4694 sat_unsigned_long_long_accum_type_node);
4695
4696 }
4697
c2255bc4
AH
4698 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4699 TYPE_DECL,
ae2bcd98
RS
4700 get_identifier ("complex int"),
4701 complex_integer_type_node));
c2255bc4
AH
4702 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4703 TYPE_DECL,
ae2bcd98
RS
4704 get_identifier ("complex float"),
4705 complex_float_type_node));
c2255bc4
AH
4706 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4707 TYPE_DECL,
ae2bcd98
RS
4708 get_identifier ("complex double"),
4709 complex_double_type_node));
4710 lang_hooks.decls.pushdecl
c2255bc4
AH
4711 (build_decl (UNKNOWN_LOCATION,
4712 TYPE_DECL, get_identifier ("complex long double"),
43577e6b 4713 complex_long_double_type_node));
eaa7c03f 4714
498c0f27
JJ
4715 if (c_dialect_cxx ())
4716 /* For C++, make fileptr_type_node a distinct void * type until
4717 FILE type is defined. */
8dd16ecc 4718 fileptr_type_node = build_variant_type_copy (ptr_type_node);
498c0f27 4719
6496a589 4720 record_builtin_type (RID_VOID, NULL, void_type_node);
eaa7c03f 4721
06d40de8
DG
4722 /* Set the TYPE_NAME for any variants that were built before
4723 record_builtin_type gave names to the built-in types. */
4724 {
4725 tree void_name = TYPE_NAME (void_type_node);
4726 TYPE_NAME (void_type_node) = NULL_TREE;
4727 TYPE_NAME (build_qualified_type (void_type_node, TYPE_QUAL_CONST))
4728 = void_name;
4729 TYPE_NAME (void_type_node) = void_name;
4730 }
4731
8c27b7d4 4732 /* This node must not be shared. */
4a90aeeb 4733 void_zero_node = make_node (INTEGER_CST);
10841285
MM
4734 TREE_TYPE (void_zero_node) = void_type_node;
4735
eaa7c03f
JM
4736 void_list_node = build_void_list_node ();
4737
4738 /* Make a type to be the domain of a few array types
4739 whose domains don't really matter.
4740 200 is small enough that it always fits in size_t
4741 and large enough that it can hold most function names for the
4742 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
4743 array_domain_type = build_index_type (size_int (200));
4744
4745 /* Make a type for arrays of characters.
4746 With luck nothing will ever really depend on the length of this
4747 array type. */
4748 char_array_type_node
4749 = build_array_type (char_type_node, array_domain_type);
4750
4751 /* Likewise for arrays of ints. */
4752 int_array_type_node
4753 = build_array_type (integer_type_node, array_domain_type);
4754
10841285
MM
4755 string_type_node = build_pointer_type (char_type_node);
4756 const_string_type_node
4757 = build_pointer_type (build_qualified_type
4758 (char_type_node, TYPE_QUAL_CONST));
4759
eaa7c03f 4760 /* This is special for C++ so functions can be overloaded. */
a11eba95 4761 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
eaa7c03f
JM
4762 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
4763 wchar_type_size = TYPE_PRECISION (wchar_type_node);
207bf79d 4764 underlying_wchar_type_node = wchar_type_node;
37fa72e9 4765 if (c_dialect_cxx ())
eaa7c03f 4766 {
8df83eae 4767 if (TYPE_UNSIGNED (wchar_type_node))
eaa7c03f
JM
4768 wchar_type_node = make_unsigned_type (wchar_type_size);
4769 else
4770 wchar_type_node = make_signed_type (wchar_type_size);
4771 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
4772 }
eaa7c03f
JM
4773
4774 /* This is for wide string constants. */
4775 wchar_array_type_node
4776 = build_array_type (wchar_type_node, array_domain_type);
4777
b6baa67d
KVH
4778 /* Define 'char16_t'. */
4779 char16_type_node = get_identifier (CHAR16_TYPE);
4780 char16_type_node = TREE_TYPE (identifier_global_value (char16_type_node));
4781 char16_type_size = TYPE_PRECISION (char16_type_node);
4782 if (c_dialect_cxx ())
4783 {
4784 char16_type_node = make_unsigned_type (char16_type_size);
4785
4786 if (cxx_dialect == cxx0x)
4787 record_builtin_type (RID_CHAR16, "char16_t", char16_type_node);
4788 }
4789
4790 /* This is for UTF-16 string constants. */
4791 char16_array_type_node
4792 = build_array_type (char16_type_node, array_domain_type);
4793
4794 /* Define 'char32_t'. */
4795 char32_type_node = get_identifier (CHAR32_TYPE);
4796 char32_type_node = TREE_TYPE (identifier_global_value (char32_type_node));
4797 char32_type_size = TYPE_PRECISION (char32_type_node);
4798 if (c_dialect_cxx ())
4799 {
4800 char32_type_node = make_unsigned_type (char32_type_size);
4801
4802 if (cxx_dialect == cxx0x)
4803 record_builtin_type (RID_CHAR32, "char32_t", char32_type_node);
4804 }
4805
4806 /* This is for UTF-32 string constants. */
4807 char32_array_type_node
4808 = build_array_type (char32_type_node, array_domain_type);
4809
5fd8e536
JM
4810 wint_type_node =
4811 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
4812
4813 intmax_type_node =
4814 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
4815 uintmax_type_node =
4816 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
4817
207bf79d
JM
4818 if (SIG_ATOMIC_TYPE)
4819 sig_atomic_type_node =
c1b61fca 4820 TREE_TYPE (identifier_global_value (c_get_ident (SIG_ATOMIC_TYPE)));
207bf79d
JM
4821 if (INT8_TYPE)
4822 int8_type_node =
c1b61fca 4823 TREE_TYPE (identifier_global_value (c_get_ident (INT8_TYPE)));
207bf79d
JM
4824 if (INT16_TYPE)
4825 int16_type_node =
c1b61fca 4826 TREE_TYPE (identifier_global_value (c_get_ident (INT16_TYPE)));
207bf79d
JM
4827 if (INT32_TYPE)
4828 int32_type_node =
c1b61fca 4829 TREE_TYPE (identifier_global_value (c_get_ident (INT32_TYPE)));
207bf79d
JM
4830 if (INT64_TYPE)
4831 int64_type_node =
c1b61fca 4832 TREE_TYPE (identifier_global_value (c_get_ident (INT64_TYPE)));
207bf79d
JM
4833 if (UINT8_TYPE)
4834 uint8_type_node =
c1b61fca 4835 TREE_TYPE (identifier_global_value (c_get_ident (UINT8_TYPE)));
207bf79d
JM
4836 if (UINT16_TYPE)
4837 uint16_type_node =
c1b61fca 4838 TREE_TYPE (identifier_global_value (c_get_ident (UINT16_TYPE)));
207bf79d
JM
4839 if (UINT32_TYPE)
4840 c_uint32_type_node =
c1b61fca 4841 TREE_TYPE (identifier_global_value (c_get_ident (UINT32_TYPE)));
207bf79d
JM
4842 if (UINT64_TYPE)
4843 c_uint64_type_node =
c1b61fca 4844 TREE_TYPE (identifier_global_value (c_get_ident (UINT64_TYPE)));
207bf79d
JM
4845 if (INT_LEAST8_TYPE)
4846 int_least8_type_node =
c1b61fca 4847 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST8_TYPE)));
207bf79d
JM
4848 if (INT_LEAST16_TYPE)
4849 int_least16_type_node =
c1b61fca 4850 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST16_TYPE)));
207bf79d
JM
4851 if (INT_LEAST32_TYPE)
4852 int_least32_type_node =
c1b61fca 4853 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST32_TYPE)));
207bf79d
JM
4854 if (INT_LEAST64_TYPE)
4855 int_least64_type_node =
c1b61fca 4856 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST64_TYPE)));
207bf79d
JM
4857 if (UINT_LEAST8_TYPE)
4858 uint_least8_type_node =
c1b61fca 4859 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST8_TYPE)));
207bf79d
JM
4860 if (UINT_LEAST16_TYPE)
4861 uint_least16_type_node =
c1b61fca 4862 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST16_TYPE)));
207bf79d
JM
4863 if (UINT_LEAST32_TYPE)
4864 uint_least32_type_node =
c1b61fca 4865 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST32_TYPE)));
207bf79d
JM
4866 if (UINT_LEAST64_TYPE)
4867 uint_least64_type_node =
c1b61fca 4868 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST64_TYPE)));
207bf79d
JM
4869 if (INT_FAST8_TYPE)
4870 int_fast8_type_node =
c1b61fca 4871 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST8_TYPE)));
207bf79d
JM
4872 if (INT_FAST16_TYPE)
4873 int_fast16_type_node =
c1b61fca 4874 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST16_TYPE)));
207bf79d
JM
4875 if (INT_FAST32_TYPE)
4876 int_fast32_type_node =
c1b61fca 4877 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST32_TYPE)));
207bf79d
JM
4878 if (INT_FAST64_TYPE)
4879 int_fast64_type_node =
c1b61fca 4880 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST64_TYPE)));
207bf79d
JM
4881 if (UINT_FAST8_TYPE)
4882 uint_fast8_type_node =
c1b61fca 4883 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST8_TYPE)));
207bf79d
JM
4884 if (UINT_FAST16_TYPE)
4885 uint_fast16_type_node =
c1b61fca 4886 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST16_TYPE)));
207bf79d
JM
4887 if (UINT_FAST32_TYPE)
4888 uint_fast32_type_node =
c1b61fca 4889 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST32_TYPE)));
207bf79d
JM
4890 if (UINT_FAST64_TYPE)
4891 uint_fast64_type_node =
c1b61fca 4892 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST64_TYPE)));
207bf79d
JM
4893 if (INTPTR_TYPE)
4894 intptr_type_node =
c1b61fca 4895 TREE_TYPE (identifier_global_value (c_get_ident (INTPTR_TYPE)));
207bf79d
JM
4896 if (UINTPTR_TYPE)
4897 uintptr_type_node =
c1b61fca 4898 TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE)));
207bf79d 4899
5fd8e536
JM
4900 default_function_type = build_function_type (integer_type_node, NULL_TREE);
4901 ptrdiff_type_node
4902 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
12753674 4903 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
5fd8e536 4904
ae2bcd98 4905 lang_hooks.decls.pushdecl
c2255bc4
AH
4906 (build_decl (UNKNOWN_LOCATION,
4907 TYPE_DECL, get_identifier ("__builtin_va_list"),
43577e6b 4908 va_list_type_node));
d4048208
KT
4909 if (targetm.enum_va_list)
4910 {
4911 int l;
4912 const char *pname;
4913 tree ptype;
35cbb299 4914
d4048208
KT
4915 for (l = 0; targetm.enum_va_list (l, &pname, &ptype); ++l)
4916 {
4917 lang_hooks.decls.pushdecl
4918 (build_decl (UNKNOWN_LOCATION,
4919 TYPE_DECL, get_identifier (pname),
4920 ptype));
4921
4922 }
4923 }
daf68dd7 4924
daf68dd7 4925 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
9f720c3e
GK
4926 {
4927 va_list_arg_type_node = va_list_ref_type_node =
4928 build_pointer_type (TREE_TYPE (va_list_type_node));
4929 }
daf68dd7 4930 else
9f720c3e
GK
4931 {
4932 va_list_arg_type_node = va_list_type_node;
4933 va_list_ref_type_node = build_reference_type (va_list_type_node);
4934 }
35b1a6fa 4935
c6d86fce
ILT
4936 if (!flag_preprocess_only)
4937 c_define_builtins (va_list_ref_type_node, va_list_arg_type_node);
4677862a 4938
5b47282c 4939 main_identifier_node = get_identifier ("main");
b2f97e4a
MM
4940
4941 /* Create the built-in __null node. It is important that this is
4942 not shared. */
4943 null_node = make_node (INTEGER_CST);
4944 TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0);
a0274e3e
JJ
4945
4946 /* Since builtin_types isn't gc'ed, don't export these nodes. */
4947 memset (builtin_types, 0, sizeof (builtin_types));
7f4edbcb 4948}
d3707adb 4949
3b2db49f
MM
4950/* The number of named compound-literals generated thus far. */
4951static GTY(()) int compound_literal_number;
4952
4953/* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
4954
4955void
4956set_compound_literal_name (tree decl)
4957{
4958 char *name;
4959 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal",
4960 compound_literal_number);
4961 compound_literal_number++;
4962 DECL_NAME (decl) = get_identifier (name);
4963}
4964
d3707adb 4965tree
c2255bc4 4966build_va_arg (location_t loc, tree expr, tree type)
d3707adb 4967{
c2255bc4
AH
4968 expr = build1 (VA_ARG_EXPR, type, expr);
4969 SET_EXPR_LOCATION (expr, loc);
4970 return expr;
d3707adb 4971}
fc2aaf30
JM
4972
4973
7d14c755
JM
4974/* Linked list of disabled built-in functions. */
4975
4976typedef struct disabled_builtin
4977{
4978 const char *name;
4979 struct disabled_builtin *next;
4980} disabled_builtin;
4981static disabled_builtin *disabled_builtins = NULL;
4982
35b1a6fa 4983static bool builtin_function_disabled_p (const char *);
7d14c755
JM
4984
4985/* Disable a built-in function specified by -fno-builtin-NAME. If NAME
4986 begins with "__builtin_", give an error. */
4987
4988void
35b1a6fa 4989disable_builtin_function (const char *name)
7d14c755
JM
4990{
4991 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
bda67431 4992 error ("cannot disable built-in function %qs", name);
7d14c755
JM
4993 else
4994 {
1ad463f4
BI
4995 disabled_builtin *new_disabled_builtin = XNEW (disabled_builtin);
4996 new_disabled_builtin->name = name;
4997 new_disabled_builtin->next = disabled_builtins;
4998 disabled_builtins = new_disabled_builtin;
7d14c755
JM
4999 }
5000}
5001
5002
5003/* Return true if the built-in function NAME has been disabled, false
5004 otherwise. */
5005
5006static bool
35b1a6fa 5007builtin_function_disabled_p (const char *name)
7d14c755
JM
5008{
5009 disabled_builtin *p;
5010 for (p = disabled_builtins; p != NULL; p = p->next)
5011 {
5012 if (strcmp (name, p->name) == 0)
5013 return true;
5014 }
5015 return false;
5016}
5017
5018
9bc15050
RG
5019/* Worker for DEF_BUILTIN.
5020 Possibly define a builtin function with one or two names.
5021 Does not declare a non-__builtin_ function if flag_no_builtin, or if
5022 nonansi_p and flag_no_nonansi_builtin. */
fc2aaf30 5023
9bc15050
RG
5024static void
5025def_builtin_1 (enum built_in_function fncode,
5026 const char *name,
5027 enum built_in_class fnclass,
5028 tree fntype, tree libtype,
5029 bool both_p, bool fallback_p, bool nonansi_p,
5030 tree fnattrs, bool implicit_p)
fc2aaf30 5031{
9bc15050
RG
5032 tree decl;
5033 const char *libname;
5034
a0274e3e
JJ
5035 if (fntype == error_mark_node)
5036 return;
5037
9bc15050
RG
5038 gcc_assert ((!both_p && !fallback_p)
5039 || !strncmp (name, "__builtin_",
5040 strlen ("__builtin_")));
5041
5042 libname = name + strlen ("__builtin_");
c79efc4d
RÁE
5043 decl = add_builtin_function (name, fntype, fncode, fnclass,
5044 (fallback_p ? libname : NULL),
5045 fnattrs);
9bc15050
RG
5046 if (both_p
5047 && !flag_no_builtin && !builtin_function_disabled_p (libname)
7d14c755 5048 && !(nonansi_p && flag_no_nonansi_builtin))
c79efc4d
RÁE
5049 add_builtin_function (libname, libtype, fncode, fnclass,
5050 NULL, fnattrs);
7f685e17 5051
9bc15050
RG
5052 built_in_decls[(int) fncode] = decl;
5053 if (implicit_p)
5054 implicit_built_in_decls[(int) fncode] = decl;
fc2aaf30 5055}
c530479e 5056\f
d72040f5
RH
5057/* Nonzero if the type T promotes to int. This is (nearly) the
5058 integral promotions defined in ISO C99 6.3.1.1/2. */
5059
5060bool
58f9752a 5061c_promoting_integer_type_p (const_tree t)
d72040f5
RH
5062{
5063 switch (TREE_CODE (t))
5064 {
5065 case INTEGER_TYPE:
5066 return (TYPE_MAIN_VARIANT (t) == char_type_node
5067 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
5068 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
5069 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
c6c04fca
RL
5070 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
5071 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
d72040f5
RH
5072
5073 case ENUMERAL_TYPE:
5074 /* ??? Technically all enumerations not larger than an int
5075 promote to an int. But this is used along code paths
5076 that only want to notice a size change. */
5077 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
5078
5079 case BOOLEAN_TYPE:
5080 return 1;
5081
5082 default:
5083 return 0;
5084 }
5085}
5086
c530479e
RH
5087/* Return 1 if PARMS specifies a fixed number of parameters
5088 and none of their types is affected by default promotions. */
5089
5090int
58f9752a 5091self_promoting_args_p (const_tree parms)
c530479e 5092{
58f9752a 5093 const_tree t;
c530479e
RH
5094 for (t = parms; t; t = TREE_CHAIN (t))
5095 {
b3694847 5096 tree type = TREE_VALUE (t);
7e8176d7 5097
694fea20
VR
5098 if (type == error_mark_node)
5099 continue;
5100
c530479e
RH
5101 if (TREE_CHAIN (t) == 0 && type != void_type_node)
5102 return 0;
5103
5104 if (type == 0)
5105 return 0;
5106
5107 if (TYPE_MAIN_VARIANT (type) == float_type_node)
5108 return 0;
5109
d72040f5 5110 if (c_promoting_integer_type_p (type))
c530479e
RH
5111 return 0;
5112 }
5113 return 1;
5114}
5eda3d66 5115
12ea3302
GDR
5116/* Recursively remove any '*' or '&' operator from TYPE. */
5117tree
5118strip_pointer_operator (tree t)
5119{
5120 while (POINTER_TYPE_P (t))
5121 t = TREE_TYPE (t);
5122 return t;
5123}
5124
ba992967
SP
5125/* Recursively remove pointer or array type from TYPE. */
5126tree
5127strip_pointer_or_array_types (tree t)
5128{
5129 while (TREE_CODE (t) == ARRAY_TYPE || POINTER_TYPE_P (t))
5130 t = TREE_TYPE (t);
5131 return t;
5132}
5133
8f17b5c5
MM
5134/* Used to compare case labels. K1 and K2 are actually tree nodes
5135 representing case labels, or NULL_TREE for a `default' label.
5136 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
5137 K2, and 0 if K1 and K2 are equal. */
5138
5139int
35b1a6fa 5140case_compare (splay_tree_key k1, splay_tree_key k2)
8f17b5c5
MM
5141{
5142 /* Consider a NULL key (such as arises with a `default' label) to be
5143 smaller than anything else. */
5144 if (!k1)
5145 return k2 ? -1 : 0;
5146 else if (!k2)
5147 return k1 ? 1 : 0;
5148
5149 return tree_int_cst_compare ((tree) k1, (tree) k2);
5150}
5151
c2255bc4
AH
5152/* Process a case label, located at LOC, for the range LOW_VALUE
5153 ... HIGH_VALUE. If LOW_VALUE and HIGH_VALUE are both NULL_TREE
5154 then this case label is actually a `default' label. If only
5155 HIGH_VALUE is NULL_TREE, then case label was declared using the
5156 usual C/C++ syntax, rather than the GNU case range extension.
5157 CASES is a tree containing all the case ranges processed so far;
5158 COND is the condition for the switch-statement itself. Returns the
5159 CASE_LABEL_EXPR created, or ERROR_MARK_NODE if no CASE_LABEL_EXPR
5160 is created. */
8f17b5c5
MM
5161
5162tree
c2255bc4 5163c_add_case_label (location_t loc, splay_tree cases, tree cond, tree orig_type,
a6c0a76c 5164 tree low_value, tree high_value)
8f17b5c5
MM
5165{
5166 tree type;
5167 tree label;
5168 tree case_label;
5169 splay_tree_node node;
5170
5171 /* Create the LABEL_DECL itself. */
c2255bc4 5172 label = create_artificial_label (loc);
8f17b5c5
MM
5173
5174 /* If there was an error processing the switch condition, bail now
5175 before we get more confused. */
5176 if (!cond || cond == error_mark_node)
6de9cd9a 5177 goto error_out;
8f17b5c5 5178
35b1a6fa
AJ
5179 if ((low_value && TREE_TYPE (low_value)
5180 && POINTER_TYPE_P (TREE_TYPE (low_value)))
8f17b5c5
MM
5181 || (high_value && TREE_TYPE (high_value)
5182 && POINTER_TYPE_P (TREE_TYPE (high_value))))
522ddfa2 5183 {
c2255bc4 5184 error_at (loc, "pointers are not permitted as case values");
522ddfa2
JM
5185 goto error_out;
5186 }
8f17b5c5
MM
5187
5188 /* Case ranges are a GNU extension. */
fcf73884 5189 if (high_value)
b8698a0f 5190 pedwarn (loc, OPT_pedantic,
fcf73884 5191 "range expressions in switch statements are non-standard");
8f17b5c5
MM
5192
5193 type = TREE_TYPE (cond);
5194 if (low_value)
5195 {
5196 low_value = check_case_value (low_value);
5197 low_value = convert_and_check (type, low_value);
c0e22534
NS
5198 if (low_value == error_mark_node)
5199 goto error_out;
8f17b5c5
MM
5200 }
5201 if (high_value)
5202 {
5203 high_value = check_case_value (high_value);
5204 high_value = convert_and_check (type, high_value);
c0e22534
NS
5205 if (high_value == error_mark_node)
5206 goto error_out;
8f17b5c5
MM
5207 }
5208
c0e22534
NS
5209 if (low_value && high_value)
5210 {
5211 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
c22cacf3
MS
5212 really a case range, even though it was written that way.
5213 Remove the HIGH_VALUE to simplify later processing. */
c0e22534
NS
5214 if (tree_int_cst_equal (low_value, high_value))
5215 high_value = NULL_TREE;
5216 else if (!tree_int_cst_lt (low_value, high_value))
c2255bc4 5217 warning_at (loc, 0, "empty range specified");
c0e22534 5218 }
8f17b5c5 5219
a6c0a76c
SB
5220 /* See if the case is in range of the type of the original testing
5221 expression. If both low_value and high_value are out of range,
5222 don't insert the case label and return NULL_TREE. */
5223 if (low_value
3f75a254
JM
5224 && !check_case_bounds (type, orig_type,
5225 &low_value, high_value ? &high_value : NULL))
a6c0a76c
SB
5226 return NULL_TREE;
5227
8f17b5c5
MM
5228 /* Look up the LOW_VALUE in the table of case labels we already
5229 have. */
5230 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
5231 /* If there was not an exact match, check for overlapping ranges.
5232 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
5233 that's a `default' label and the only overlap is an exact match. */
5234 if (!node && (low_value || high_value))
5235 {
5236 splay_tree_node low_bound;
5237 splay_tree_node high_bound;
5238
5239 /* Even though there wasn't an exact match, there might be an
5240 overlap between this case range and another case range.
5241 Since we've (inductively) not allowed any overlapping case
5242 ranges, we simply need to find the greatest low case label
5243 that is smaller that LOW_VALUE, and the smallest low case
5244 label that is greater than LOW_VALUE. If there is an overlap
5245 it will occur in one of these two ranges. */
5246 low_bound = splay_tree_predecessor (cases,
5247 (splay_tree_key) low_value);
5248 high_bound = splay_tree_successor (cases,
5249 (splay_tree_key) low_value);
5250
5251 /* Check to see if the LOW_BOUND overlaps. It is smaller than
5252 the LOW_VALUE, so there is no need to check unless the
5253 LOW_BOUND is in fact itself a case range. */
5254 if (low_bound
5255 && CASE_HIGH ((tree) low_bound->value)
5256 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
5257 low_value) >= 0)
5258 node = low_bound;
5259 /* Check to see if the HIGH_BOUND overlaps. The low end of that
5260 range is bigger than the low end of the current range, so we
5261 are only interested if the current range is a real range, and
5262 not an ordinary case label. */
35b1a6fa 5263 else if (high_bound
8f17b5c5
MM
5264 && high_value
5265 && (tree_int_cst_compare ((tree) high_bound->key,
5266 high_value)
5267 <= 0))
5268 node = high_bound;
5269 }
5270 /* If there was an overlap, issue an error. */
5271 if (node)
5272 {
8c161995 5273 tree duplicate = CASE_LABEL ((tree) node->value);
8f17b5c5
MM
5274
5275 if (high_value)
5276 {
c2255bc4
AH
5277 error_at (loc, "duplicate (or overlapping) case value");
5278 error_at (DECL_SOURCE_LOCATION (duplicate),
5279 "this is the first entry overlapping that value");
8f17b5c5
MM
5280 }
5281 else if (low_value)
5282 {
c2255bc4
AH
5283 error_at (loc, "duplicate case value") ;
5284 error_at (DECL_SOURCE_LOCATION (duplicate), "previously used here");
8f17b5c5
MM
5285 }
5286 else
5287 {
c2255bc4
AH
5288 error_at (loc, "multiple default labels in one switch");
5289 error_at (DECL_SOURCE_LOCATION (duplicate),
5290 "this is the first default label");
8f17b5c5 5291 }
6de9cd9a 5292 goto error_out;
8f17b5c5
MM
5293 }
5294
5295 /* Add a CASE_LABEL to the statement-tree. */
c2255bc4 5296 case_label = add_stmt (build_case_label (loc, low_value, high_value, label));
8f17b5c5 5297 /* Register this case label in the splay tree. */
35b1a6fa 5298 splay_tree_insert (cases,
8f17b5c5
MM
5299 (splay_tree_key) low_value,
5300 (splay_tree_value) case_label);
5301
5302 return case_label;
6de9cd9a
DN
5303
5304 error_out:
9e14e18f 5305 /* Add a label so that the back-end doesn't think that the beginning of
6de9cd9a 5306 the switch is unreachable. Note that we do not add a case label, as
41806d92 5307 that just leads to duplicates and thence to failure later on. */
6de9cd9a
DN
5308 if (!cases->root)
5309 {
c2255bc4
AH
5310 tree t = create_artificial_label (loc);
5311 add_stmt (build_stmt (loc, LABEL_EXPR, t));
6de9cd9a
DN
5312 }
5313 return error_mark_node;
5314}
5315
5316/* Subroutines of c_do_switch_warnings, called via splay_tree_foreach.
5317 Used to verify that case values match up with enumerator values. */
5318
5319static void
5320match_case_to_enum_1 (tree key, tree type, tree label)
5321{
5322 char buf[2 + 2*HOST_BITS_PER_WIDE_INT/4 + 1];
5323
5324 /* ??? Not working too hard to print the double-word value.
5325 Should perhaps be done with %lwd in the diagnostic routines? */
5326 if (TREE_INT_CST_HIGH (key) == 0)
5327 snprintf (buf, sizeof (buf), HOST_WIDE_INT_PRINT_UNSIGNED,
5328 TREE_INT_CST_LOW (key));
5329 else if (!TYPE_UNSIGNED (type)
5330 && TREE_INT_CST_HIGH (key) == -1
5331 && TREE_INT_CST_LOW (key) != 0)
5332 snprintf (buf, sizeof (buf), "-" HOST_WIDE_INT_PRINT_UNSIGNED,
5333 -TREE_INT_CST_LOW (key));
5334 else
5335 snprintf (buf, sizeof (buf), HOST_WIDE_INT_PRINT_DOUBLE_HEX,
3d57d7ce
DK
5336 (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (key),
5337 (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (key));
6de9cd9a
DN
5338
5339 if (TYPE_NAME (type) == 0)
c5d75364
MLI
5340 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label)),
5341 warn_switch ? OPT_Wswitch : OPT_Wswitch_enum,
5342 "case value %qs not in enumerated type",
5343 buf);
6de9cd9a 5344 else
c5d75364
MLI
5345 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label)),
5346 warn_switch ? OPT_Wswitch : OPT_Wswitch_enum,
5347 "case value %qs not in enumerated type %qT",
5348 buf, type);
6de9cd9a
DN
5349}
5350
c782c2fe
RS
5351/* Subroutine of c_do_switch_warnings, called via splay_tree_foreach.
5352 Used to verify that case values match up with enumerator values. */
5353
6de9cd9a
DN
5354static int
5355match_case_to_enum (splay_tree_node node, void *data)
5356{
5357 tree label = (tree) node->value;
28dab132 5358 tree type = (tree) data;
6de9cd9a
DN
5359
5360 /* Skip default case. */
5361 if (!CASE_LOW (label))
5362 return 0;
5363
c782c2fe 5364 /* If CASE_LOW_SEEN is not set, that means CASE_LOW did not appear
6de9cd9a 5365 when we did our enum->case scan. Reset our scratch bit after. */
c782c2fe 5366 if (!CASE_LOW_SEEN (label))
6de9cd9a
DN
5367 match_case_to_enum_1 (CASE_LOW (label), type, label);
5368 else
c782c2fe 5369 CASE_LOW_SEEN (label) = 0;
6de9cd9a 5370
c782c2fe
RS
5371 /* If CASE_HIGH is non-null, we have a range. If CASE_HIGH_SEEN is
5372 not set, that means that CASE_HIGH did not appear when we did our
5373 enum->case scan. Reset our scratch bit after. */
6de9cd9a
DN
5374 if (CASE_HIGH (label))
5375 {
c782c2fe
RS
5376 if (!CASE_HIGH_SEEN (label))
5377 match_case_to_enum_1 (CASE_HIGH (label), type, label);
5378 else
5379 CASE_HIGH_SEEN (label) = 0;
6de9cd9a
DN
5380 }
5381
5382 return 0;
5383}
5384
fbc315db
ILT
5385/* Handle -Wswitch*. Called from the front end after parsing the
5386 switch construct. */
5387/* ??? Should probably be somewhere generic, since other languages
5388 besides C and C++ would want this. At the moment, however, C/C++
5389 are the only tree-ssa languages that support enumerations at all,
5390 so the point is moot. */
6de9cd9a 5391
fbc315db
ILT
5392void
5393c_do_switch_warnings (splay_tree cases, location_t switch_location,
5394 tree type, tree cond)
6de9cd9a 5395{
9f63daea 5396 splay_tree_node default_node;
c782c2fe
RS
5397 splay_tree_node node;
5398 tree chain;
6de9cd9a
DN
5399
5400 if (!warn_switch && !warn_switch_enum && !warn_switch_default)
5401 return;
5402
6de9cd9a 5403 default_node = splay_tree_lookup (cases, (splay_tree_key) NULL);
44c21c7f 5404 if (!default_node)
fab922b1
MLI
5405 warning_at (switch_location, OPT_Wswitch_default,
5406 "switch missing default case");
6de9cd9a 5407
c782c2fe
RS
5408 /* From here on, we only care about about enumerated types. */
5409 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
5410 return;
5411
cdb88468
ILT
5412 /* From here on, we only care about -Wswitch and -Wswitch-enum. */
5413 if (!warn_switch_enum && !warn_switch)
c782c2fe
RS
5414 return;
5415
cdb88468
ILT
5416 /* Check the cases. Warn about case values which are not members of
5417 the enumerated type. For -Wswitch-enum, or for -Wswitch when
5418 there is no default case, check that exactly all enumeration
5419 literals are covered by the cases. */
5420
c782c2fe
RS
5421 /* Clearing COND if it is not an integer constant simplifies
5422 the tests inside the loop below. */
5423 if (TREE_CODE (cond) != INTEGER_CST)
5424 cond = NULL_TREE;
5425
5426 /* The time complexity here is O(N*lg(N)) worst case, but for the
5427 common case of monotonically increasing enumerators, it is
5428 O(N), since the nature of the splay tree will keep the next
5429 element adjacent to the root at all times. */
6de9cd9a 5430
c782c2fe
RS
5431 for (chain = TYPE_VALUES (type); chain; chain = TREE_CHAIN (chain))
5432 {
5433 tree value = TREE_VALUE (chain);
adf2edec
DG
5434 if (TREE_CODE (value) == CONST_DECL)
5435 value = DECL_INITIAL (value);
c782c2fe
RS
5436 node = splay_tree_lookup (cases, (splay_tree_key) value);
5437 if (node)
6de9cd9a 5438 {
c782c2fe
RS
5439 /* Mark the CASE_LOW part of the case entry as seen. */
5440 tree label = (tree) node->value;
5441 CASE_LOW_SEEN (label) = 1;
5442 continue;
5443 }
5444
5445 /* Even though there wasn't an exact match, there might be a
fa10beec 5446 case range which includes the enumerator's value. */
c782c2fe
RS
5447 node = splay_tree_predecessor (cases, (splay_tree_key) value);
5448 if (node && CASE_HIGH ((tree) node->value))
5449 {
5450 tree label = (tree) node->value;
5451 int cmp = tree_int_cst_compare (CASE_HIGH (label), value);
5452 if (cmp >= 0)
6de9cd9a 5453 {
c782c2fe
RS
5454 /* If we match the upper bound exactly, mark the CASE_HIGH
5455 part of the case entry as seen. */
5456 if (cmp == 0)
5457 CASE_HIGH_SEEN (label) = 1;
5458 continue;
6de9cd9a
DN
5459 }
5460 }
5461
c782c2fe
RS
5462 /* We've now determined that this enumerated literal isn't
5463 handled by the case labels of the switch statement. */
6de9cd9a 5464
c782c2fe
RS
5465 /* If the switch expression is a constant, we only really care
5466 about whether that constant is handled by the switch. */
5467 if (cond && tree_int_cst_compare (cond, value))
5468 continue;
6de9cd9a 5469
683d6ff9 5470 /* If there is a default_node, the only relevant option is
cdb88468 5471 Wswitch-enum. Otherwise, if both are enabled then we prefer
683d6ff9
MLI
5472 to warn using -Wswitch because -Wswitch is enabled by -Wall
5473 while -Wswitch-enum is explicit. */
cdb88468
ILT
5474 warning_at (switch_location,
5475 (default_node || !warn_switch
5476 ? OPT_Wswitch_enum
5477 : OPT_Wswitch),
5478 "enumeration value %qE not handled in switch",
5479 TREE_PURPOSE (chain));
6de9cd9a 5480 }
c782c2fe
RS
5481
5482 /* Warn if there are case expressions that don't correspond to
5483 enumerators. This can occur since C and C++ don't enforce
5484 type-checking of assignments to enumeration variables.
5485
5486 The time complexity here is now always O(N) worst case, since
5487 we should have marked both the lower bound and upper bound of
5488 every disjoint case label, with CASE_LOW_SEEN and CASE_HIGH_SEEN
5489 above. This scan also resets those fields. */
683d6ff9 5490
c782c2fe 5491 splay_tree_foreach (cases, match_case_to_enum, type);
8f17b5c5
MM
5492}
5493
6b665219 5494/* Finish an expression taking the address of LABEL (an
6a3799eb
AH
5495 IDENTIFIER_NODE). Returns an expression for the address.
5496
5497 LOC is the location for the expression returned. */
15b732b2 5498
35b1a6fa 5499tree
6a3799eb 5500finish_label_address_expr (tree label, location_t loc)
15b732b2
NB
5501{
5502 tree result;
5503
509c9d60 5504 pedwarn (input_location, OPT_pedantic, "taking the address of a label is non-standard");
15b732b2 5505
6b665219
MM
5506 if (label == error_mark_node)
5507 return error_mark_node;
5508
15b732b2
NB
5509 label = lookup_label (label);
5510 if (label == NULL_TREE)
5511 result = null_pointer_node;
5512 else
5513 {
5514 TREE_USED (label) = 1;
5515 result = build1 (ADDR_EXPR, ptr_type_node, label);
5805e48d 5516 /* The current function is not necessarily uninlinable.
15b732b2
NB
5517 Computed gotos are incompatible with inlining, but the value
5518 here could be used only in a diagnostic, for example. */
6a3799eb 5519 protected_set_expr_location (result, loc);
15b732b2
NB
5520 }
5521
5522 return result;
5523}
19552aa5
JM
5524\f
5525
5526/* Given a boolean expression ARG, return a tree representing an increment
5527 or decrement (as indicated by CODE) of ARG. The front end must check for
5528 invalid cases (e.g., decrement in C++). */
5529tree
35b1a6fa 5530boolean_increment (enum tree_code code, tree arg)
19552aa5
JM
5531{
5532 tree val;
b5119fa1 5533 tree true_res = build_int_cst (TREE_TYPE (arg), 1);
37fa72e9 5534
19552aa5
JM
5535 arg = stabilize_reference (arg);
5536 switch (code)
5537 {
5538 case PREINCREMENT_EXPR:
53fb4de3 5539 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
19552aa5
JM
5540 break;
5541 case POSTINCREMENT_EXPR:
53fb4de3 5542 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
19552aa5 5543 arg = save_expr (arg);
53fb4de3
RS
5544 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
5545 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
19552aa5
JM
5546 break;
5547 case PREDECREMENT_EXPR:
53fb4de3 5548 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
db3927fb 5549 invert_truthvalue_loc (input_location, arg));
19552aa5
JM
5550 break;
5551 case POSTDECREMENT_EXPR:
53fb4de3 5552 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
db3927fb 5553 invert_truthvalue_loc (input_location, arg));
19552aa5 5554 arg = save_expr (arg);
53fb4de3
RS
5555 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
5556 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
19552aa5
JM
5557 break;
5558 default:
366de0ce 5559 gcc_unreachable ();
19552aa5
JM
5560 }
5561 TREE_SIDE_EFFECTS (val) = 1;
5562 return val;
5563}
03dc0325 5564\f
207bf79d
JM
5565/* Built-in macros for stddef.h and stdint.h, that require macros
5566 defined in this file. */
460bd0e3 5567void
35b1a6fa 5568c_stddef_cpp_builtins(void)
3df89291 5569{
5279d739
ZW
5570 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
5571 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
5572 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
5573 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
85291069
JM
5574 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE, 0);
5575 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE, 0);
c466b2cd
KVH
5576 builtin_define_with_value ("__CHAR16_TYPE__", CHAR16_TYPE, 0);
5577 builtin_define_with_value ("__CHAR32_TYPE__", CHAR32_TYPE, 0);
207bf79d
JM
5578 if (SIG_ATOMIC_TYPE)
5579 builtin_define_with_value ("__SIG_ATOMIC_TYPE__", SIG_ATOMIC_TYPE, 0);
5580 if (INT8_TYPE)
5581 builtin_define_with_value ("__INT8_TYPE__", INT8_TYPE, 0);
5582 if (INT16_TYPE)
5583 builtin_define_with_value ("__INT16_TYPE__", INT16_TYPE, 0);
5584 if (INT32_TYPE)
5585 builtin_define_with_value ("__INT32_TYPE__", INT32_TYPE, 0);
5586 if (INT64_TYPE)
5587 builtin_define_with_value ("__INT64_TYPE__", INT64_TYPE, 0);
5588 if (UINT8_TYPE)
5589 builtin_define_with_value ("__UINT8_TYPE__", UINT8_TYPE, 0);
5590 if (UINT16_TYPE)
5591 builtin_define_with_value ("__UINT16_TYPE__", UINT16_TYPE, 0);
5592 if (UINT32_TYPE)
5593 builtin_define_with_value ("__UINT32_TYPE__", UINT32_TYPE, 0);
5594 if (UINT64_TYPE)
5595 builtin_define_with_value ("__UINT64_TYPE__", UINT64_TYPE, 0);
5596 if (INT_LEAST8_TYPE)
5597 builtin_define_with_value ("__INT_LEAST8_TYPE__", INT_LEAST8_TYPE, 0);
5598 if (INT_LEAST16_TYPE)
5599 builtin_define_with_value ("__INT_LEAST16_TYPE__", INT_LEAST16_TYPE, 0);
5600 if (INT_LEAST32_TYPE)
5601 builtin_define_with_value ("__INT_LEAST32_TYPE__", INT_LEAST32_TYPE, 0);
5602 if (INT_LEAST64_TYPE)
5603 builtin_define_with_value ("__INT_LEAST64_TYPE__", INT_LEAST64_TYPE, 0);
5604 if (UINT_LEAST8_TYPE)
5605 builtin_define_with_value ("__UINT_LEAST8_TYPE__", UINT_LEAST8_TYPE, 0);
5606 if (UINT_LEAST16_TYPE)
5607 builtin_define_with_value ("__UINT_LEAST16_TYPE__", UINT_LEAST16_TYPE, 0);
5608 if (UINT_LEAST32_TYPE)
5609 builtin_define_with_value ("__UINT_LEAST32_TYPE__", UINT_LEAST32_TYPE, 0);
5610 if (UINT_LEAST64_TYPE)
5611 builtin_define_with_value ("__UINT_LEAST64_TYPE__", UINT_LEAST64_TYPE, 0);
5612 if (INT_FAST8_TYPE)
5613 builtin_define_with_value ("__INT_FAST8_TYPE__", INT_FAST8_TYPE, 0);
5614 if (INT_FAST16_TYPE)
5615 builtin_define_with_value ("__INT_FAST16_TYPE__", INT_FAST16_TYPE, 0);
5616 if (INT_FAST32_TYPE)
5617 builtin_define_with_value ("__INT_FAST32_TYPE__", INT_FAST32_TYPE, 0);
5618 if (INT_FAST64_TYPE)
5619 builtin_define_with_value ("__INT_FAST64_TYPE__", INT_FAST64_TYPE, 0);
5620 if (UINT_FAST8_TYPE)
5621 builtin_define_with_value ("__UINT_FAST8_TYPE__", UINT_FAST8_TYPE, 0);
5622 if (UINT_FAST16_TYPE)
5623 builtin_define_with_value ("__UINT_FAST16_TYPE__", UINT_FAST16_TYPE, 0);
5624 if (UINT_FAST32_TYPE)
5625 builtin_define_with_value ("__UINT_FAST32_TYPE__", UINT_FAST32_TYPE, 0);
5626 if (UINT_FAST64_TYPE)
5627 builtin_define_with_value ("__UINT_FAST64_TYPE__", UINT_FAST64_TYPE, 0);
5628 if (INTPTR_TYPE)
5629 builtin_define_with_value ("__INTPTR_TYPE__", INTPTR_TYPE, 0);
5630 if (UINTPTR_TYPE)
5631 builtin_define_with_value ("__UINTPTR_TYPE__", UINTPTR_TYPE, 0);
676997cf
RH
5632}
5633
6431177a 5634static void
35b1a6fa 5635c_init_attributes (void)
6431177a
JM
5636{
5637 /* Fill in the built_in_attributes array. */
4a90aeeb 5638#define DEF_ATTR_NULL_TREE(ENUM) \
6431177a 5639 built_in_attributes[(int) ENUM] = NULL_TREE;
4a90aeeb 5640#define DEF_ATTR_INT(ENUM, VALUE) \
7d60be94 5641 built_in_attributes[(int) ENUM] = build_int_cst (NULL_TREE, VALUE);
6431177a
JM
5642#define DEF_ATTR_IDENT(ENUM, STRING) \
5643 built_in_attributes[(int) ENUM] = get_identifier (STRING);
5644#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
5645 built_in_attributes[(int) ENUM] \
5646 = tree_cons (built_in_attributes[(int) PURPOSE], \
5647 built_in_attributes[(int) VALUE], \
5648 built_in_attributes[(int) CHAIN]);
6431177a
JM
5649#include "builtin-attrs.def"
5650#undef DEF_ATTR_NULL_TREE
5651#undef DEF_ATTR_INT
5652#undef DEF_ATTR_IDENT
5653#undef DEF_ATTR_TREE_LIST
03dc0325 5654}
26f943fd 5655
943f82e7
JM
5656/* Returns TRUE iff the attribute indicated by ATTR_ID takes a plain
5657 identifier as an argument, so the front end shouldn't look it up. */
5658
5659bool
564a129d 5660attribute_takes_identifier_p (const_tree attr_id)
943f82e7 5661{
564a129d
JM
5662 if (is_attribute_p ("mode", attr_id)
5663 || is_attribute_p ("format", attr_id)
5664 || is_attribute_p ("cleanup", attr_id))
5665 return true;
5666 else
5667 return targetm.attribute_takes_identifier_p (attr_id);
943f82e7
JM
5668}
5669
349ae713
NB
5670/* Attribute handlers common to C front ends. */
5671
5672/* Handle a "packed" attribute; arguments as in
5673 struct attribute_spec.handler. */
5674
5675static tree
e18476eb 5676handle_packed_attribute (tree *node, tree name, tree ARG_UNUSED (args),
a742c759 5677 int flags, bool *no_add_attrs)
349ae713 5678{
c6e4cc53 5679 if (TYPE_P (*node))
349ae713
NB
5680 {
5681 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
8dd16ecc 5682 *node = build_variant_type_copy (*node);
c6e4cc53 5683 TYPE_PACKED (*node) = 1;
349ae713
NB
5684 }
5685 else if (TREE_CODE (*node) == FIELD_DECL)
646c0835 5686 {
2cd36c22
AN
5687 if (TYPE_ALIGN (TREE_TYPE (*node)) <= BITS_PER_UNIT
5688 /* Still pack bitfields. */
5689 && ! DECL_INITIAL (*node))
646c0835
NS
5690 warning (OPT_Wattributes,
5691 "%qE attribute ignored for field of type %qT",
5692 name, TREE_TYPE (*node));
5693 else
5694 DECL_PACKED (*node) = 1;
5695 }
349ae713 5696 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
c6e4cc53
NS
5697 used for DECL_REGISTER. It wouldn't mean anything anyway.
5698 We can't set DECL_PACKED on the type of a TYPE_DECL, because
5699 that changes what the typedef is typing. */
349ae713
NB
5700 else
5701 {
5c498b10 5702 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
5703 *no_add_attrs = true;
5704 }
5705
5706 return NULL_TREE;
5707}
5708
5709/* Handle a "nocommon" attribute; arguments as in
5710 struct attribute_spec.handler. */
5711
5712static tree
35b1a6fa 5713handle_nocommon_attribute (tree *node, tree name,
e18476eb
BI
5714 tree ARG_UNUSED (args),
5715 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
5716{
5717 if (TREE_CODE (*node) == VAR_DECL)
5718 DECL_COMMON (*node) = 0;
5719 else
5720 {
5c498b10 5721 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
5722 *no_add_attrs = true;
5723 }
5724
5725 return NULL_TREE;
5726}
5727
5728/* Handle a "common" attribute; arguments as in
5729 struct attribute_spec.handler. */
5730
5731static tree
e18476eb
BI
5732handle_common_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5733 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
5734{
5735 if (TREE_CODE (*node) == VAR_DECL)
5736 DECL_COMMON (*node) = 1;
5737 else
5738 {
5c498b10 5739 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
5740 *no_add_attrs = true;
5741 }
5742
5743 return NULL_TREE;
5744}
5745
5746/* Handle a "noreturn" attribute; arguments as in
5747 struct attribute_spec.handler. */
5748
5749static tree
e18476eb
BI
5750handle_noreturn_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5751 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
5752{
5753 tree type = TREE_TYPE (*node);
5754
5755 /* See FIXME comment in c_common_attribute_table. */
5756 if (TREE_CODE (*node) == FUNCTION_DECL)
5757 TREE_THIS_VOLATILE (*node) = 1;
5758 else if (TREE_CODE (type) == POINTER_TYPE
5759 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
5760 TREE_TYPE (*node)
5761 = build_pointer_type
5762 (build_type_variant (TREE_TYPE (type),
c29726e2 5763 TYPE_READONLY (TREE_TYPE (type)), 1));
349ae713
NB
5764 else
5765 {
5c498b10 5766 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
5767 *no_add_attrs = true;
5768 }
5769
5770 return NULL_TREE;
5771}
5772
52bf96d2
JH
5773/* Handle a "hot" and attribute; arguments as in
5774 struct attribute_spec.handler. */
5775
5776static tree
5777handle_hot_attribute (tree *node, tree name, tree ARG_UNUSED (args),
ab442df7 5778 int ARG_UNUSED (flags), bool *no_add_attrs)
52bf96d2
JH
5779{
5780 if (TREE_CODE (*node) == FUNCTION_DECL)
5781 {
5782 if (lookup_attribute ("cold", DECL_ATTRIBUTES (*node)) != NULL)
5783 {
5784 warning (OPT_Wattributes, "%qE attribute conflicts with attribute %s",
5785 name, "cold");
5786 *no_add_attrs = true;
5787 }
5779e713
MM
5788 /* Most of the rest of the hot processing is done later with
5789 lookup_attribute. */
52bf96d2
JH
5790 }
5791 else
5792 {
5793 warning (OPT_Wattributes, "%qE attribute ignored", name);
5794 *no_add_attrs = true;
5795 }
5796
5797 return NULL_TREE;
5798}
5799/* Handle a "cold" and attribute; arguments as in
5800 struct attribute_spec.handler. */
5801
5802static tree
5803handle_cold_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5804 int ARG_UNUSED (flags), bool *no_add_attrs)
5805{
5806 if (TREE_CODE (*node) == FUNCTION_DECL)
5807 {
5808 if (lookup_attribute ("hot", DECL_ATTRIBUTES (*node)) != NULL)
5809 {
5810 warning (OPT_Wattributes, "%qE attribute conflicts with attribute %s",
5811 name, "hot");
5812 *no_add_attrs = true;
5813 }
5779e713
MM
5814 /* Most of the rest of the cold processing is done later with
5815 lookup_attribute. */
52bf96d2
JH
5816 }
5817 else
5818 {
5819 warning (OPT_Wattributes, "%qE attribute ignored", name);
5820 *no_add_attrs = true;
5821 }
5822
5823 return NULL_TREE;
5824}
5825
349ae713
NB
5826/* Handle a "noinline" attribute; arguments as in
5827 struct attribute_spec.handler. */
5828
5829static tree
35b1a6fa 5830handle_noinline_attribute (tree *node, tree name,
e18476eb
BI
5831 tree ARG_UNUSED (args),
5832 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
5833{
5834 if (TREE_CODE (*node) == FUNCTION_DECL)
5835 DECL_UNINLINABLE (*node) = 1;
5836 else
5837 {
5c498b10 5838 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
5839 *no_add_attrs = true;
5840 }
5841
5842 return NULL_TREE;
5843}
5844
86631ea3
MJ
5845/* Handle a "noclone" attribute; arguments as in
5846 struct attribute_spec.handler. */
5847
5848static tree
5849handle_noclone_attribute (tree *node, tree name,
5850 tree ARG_UNUSED (args),
5851 int ARG_UNUSED (flags), bool *no_add_attrs)
5852{
5853 if (TREE_CODE (*node) != FUNCTION_DECL)
5854 {
5855 warning (OPT_Wattributes, "%qE attribute ignored", name);
5856 *no_add_attrs = true;
5857 }
5858
5859 return NULL_TREE;
5860}
5861
349ae713
NB
5862/* Handle a "always_inline" attribute; arguments as in
5863 struct attribute_spec.handler. */
5864
5865static tree
35b1a6fa 5866handle_always_inline_attribute (tree *node, tree name,
e18476eb
BI
5867 tree ARG_UNUSED (args),
5868 int ARG_UNUSED (flags),
a742c759 5869 bool *no_add_attrs)
349ae713
NB
5870{
5871 if (TREE_CODE (*node) == FUNCTION_DECL)
5872 {
c536a6a7
RG
5873 /* Set the attribute and mark it for disregarding inline
5874 limits. */
5875 DECL_DISREGARD_INLINE_LIMITS (*node) = 1;
349ae713
NB
5876 }
5877 else
5878 {
5c498b10 5879 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713 5880 *no_add_attrs = true;
4eb7fd83
JJ
5881 }
5882
5883 return NULL_TREE;
5884}
5885
5886/* Handle a "gnu_inline" attribute; arguments as in
5887 struct attribute_spec.handler. */
5888
5889static tree
5890handle_gnu_inline_attribute (tree *node, tree name,
5891 tree ARG_UNUSED (args),
5892 int ARG_UNUSED (flags),
5893 bool *no_add_attrs)
5894{
5895 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
5896 {
5897 /* Do nothing else, just set the attribute. We'll get at
5898 it later with lookup_attribute. */
5899 }
5900 else
5901 {
5902 warning (OPT_Wattributes, "%qE attribute ignored", name);
5903 *no_add_attrs = true;
349ae713
NB
5904 }
5905
5906 return NULL_TREE;
5907}
5908
d752cfdb
JJ
5909/* Handle an "artificial" attribute; arguments as in
5910 struct attribute_spec.handler. */
5911
5912static tree
5913handle_artificial_attribute (tree *node, tree name,
5914 tree ARG_UNUSED (args),
5915 int ARG_UNUSED (flags),
5916 bool *no_add_attrs)
5917{
5918 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
5919 {
5920 /* Do nothing else, just set the attribute. We'll get at
5921 it later with lookup_attribute. */
5922 }
5923 else
5924 {
5925 warning (OPT_Wattributes, "%qE attribute ignored", name);
5926 *no_add_attrs = true;
5927 }
5928
5929 return NULL_TREE;
5930}
5931
0691d1d4
RG
5932/* Handle a "flatten" attribute; arguments as in
5933 struct attribute_spec.handler. */
5934
5935static tree
5936handle_flatten_attribute (tree *node, tree name,
c22cacf3
MS
5937 tree args ATTRIBUTE_UNUSED,
5938 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
0691d1d4
RG
5939{
5940 if (TREE_CODE (*node) == FUNCTION_DECL)
5941 /* Do nothing else, just set the attribute. We'll get at
5942 it later with lookup_attribute. */
5943 ;
5944 else
5945 {
5946 warning (OPT_Wattributes, "%qE attribute ignored", name);
5947 *no_add_attrs = true;
5948 }
5949
5950 return NULL_TREE;
5951}
5952
d2af6a68
JJ
5953/* Handle a "warning" or "error" attribute; arguments as in
5954 struct attribute_spec.handler. */
5955
5956static tree
5957handle_error_attribute (tree *node, tree name, tree args,
5958 int ARG_UNUSED (flags), bool *no_add_attrs)
5959{
5960 if (TREE_CODE (*node) == FUNCTION_DECL
5961 || TREE_CODE (TREE_VALUE (args)) == STRING_CST)
5962 /* Do nothing else, just set the attribute. We'll get at
5963 it later with lookup_attribute. */
5964 ;
5965 else
5966 {
5967 warning (OPT_Wattributes, "%qE attribute ignored", name);
5968 *no_add_attrs = true;
5969 }
5970
5971 return NULL_TREE;
5972}
0691d1d4 5973
349ae713
NB
5974/* Handle a "used" attribute; arguments as in
5975 struct attribute_spec.handler. */
5976
5977static tree
e18476eb
BI
5978handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args),
5979 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713 5980{
d7ddbe24
RH
5981 tree node = *pnode;
5982
5983 if (TREE_CODE (node) == FUNCTION_DECL
5984 || (TREE_CODE (node) == VAR_DECL && TREE_STATIC (node)))
4d7d0451 5985 {
4d7d0451 5986 TREE_USED (node) = 1;
8e3e233b 5987 DECL_PRESERVE_P (node) = 1;
ebfbbdc5
JJ
5988 if (TREE_CODE (node) == VAR_DECL)
5989 DECL_READ_P (node) = 1;
4d7d0451 5990 }
349ae713
NB
5991 else
5992 {
5c498b10 5993 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
5994 *no_add_attrs = true;
5995 }
5996
5997 return NULL_TREE;
5998}
5999
6000/* Handle a "unused" attribute; arguments as in
6001 struct attribute_spec.handler. */
6002
6003static tree
e18476eb
BI
6004handle_unused_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6005 int flags, bool *no_add_attrs)
349ae713
NB
6006{
6007 if (DECL_P (*node))
6008 {
6009 tree decl = *node;
6010
6011 if (TREE_CODE (decl) == PARM_DECL
6012 || TREE_CODE (decl) == VAR_DECL
6013 || TREE_CODE (decl) == FUNCTION_DECL
6014 || TREE_CODE (decl) == LABEL_DECL
6015 || TREE_CODE (decl) == TYPE_DECL)
ebfbbdc5
JJ
6016 {
6017 TREE_USED (decl) = 1;
6018 if (TREE_CODE (decl) == VAR_DECL
6019 || TREE_CODE (decl) == PARM_DECL)
6020 DECL_READ_P (decl) = 1;
6021 }
349ae713
NB
6022 else
6023 {
5c498b10 6024 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6025 *no_add_attrs = true;
6026 }
6027 }
6028 else
6029 {
6030 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
8dd16ecc 6031 *node = build_variant_type_copy (*node);
349ae713
NB
6032 TREE_USED (*node) = 1;
6033 }
6034
6035 return NULL_TREE;
6036}
6037
ce91e74c
JH
6038/* Handle a "externally_visible" attribute; arguments as in
6039 struct attribute_spec.handler. */
6040
6041static tree
6042handle_externally_visible_attribute (tree *pnode, tree name,
6043 tree ARG_UNUSED (args),
6044 int ARG_UNUSED (flags),
6045 bool *no_add_attrs)
6046{
6047 tree node = *pnode;
6048
343d4b27 6049 if (TREE_CODE (node) == FUNCTION_DECL || TREE_CODE (node) == VAR_DECL)
ce91e74c 6050 {
343d4b27
JJ
6051 if ((!TREE_STATIC (node) && TREE_CODE (node) != FUNCTION_DECL
6052 && !DECL_EXTERNAL (node)) || !TREE_PUBLIC (node))
6053 {
6054 warning (OPT_Wattributes,
6055 "%qE attribute have effect only on public objects", name);
6056 *no_add_attrs = true;
6057 }
ce91e74c 6058 }
ce91e74c
JH
6059 else
6060 {
6061 warning (OPT_Wattributes, "%qE attribute ignored", name);
6062 *no_add_attrs = true;
6063 }
6064
6065 return NULL_TREE;
6066}
6067
349ae713
NB
6068/* Handle a "const" attribute; arguments as in
6069 struct attribute_spec.handler. */
6070
6071static tree
e18476eb
BI
6072handle_const_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6073 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
6074{
6075 tree type = TREE_TYPE (*node);
6076
6077 /* See FIXME comment on noreturn in c_common_attribute_table. */
6078 if (TREE_CODE (*node) == FUNCTION_DECL)
6079 TREE_READONLY (*node) = 1;
6080 else if (TREE_CODE (type) == POINTER_TYPE
6081 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
6082 TREE_TYPE (*node)
6083 = build_pointer_type
6084 (build_type_variant (TREE_TYPE (type), 1,
6085 TREE_THIS_VOLATILE (TREE_TYPE (type))));
6086 else
6087 {
5c498b10 6088 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6089 *no_add_attrs = true;
6090 }
6091
6092 return NULL_TREE;
6093}
6094
6095/* Handle a "transparent_union" attribute; arguments as in
6096 struct attribute_spec.handler. */
6097
6098static tree
35b1a6fa 6099handle_transparent_union_attribute (tree *node, tree name,
e18476eb 6100 tree ARG_UNUSED (args), int flags,
a742c759 6101 bool *no_add_attrs)
349ae713 6102{
4009f2e7 6103 tree type;
52dd234b
RH
6104
6105 *no_add_attrs = true;
349ae713 6106
4009f2e7
JM
6107 if (TREE_CODE (*node) == TYPE_DECL)
6108 node = &TREE_TYPE (*node);
6109 type = *node;
349ae713 6110
52dd234b 6111 if (TREE_CODE (type) == UNION_TYPE)
349ae713 6112 {
52dd234b
RH
6113 /* When IN_PLACE is set, leave the check for FIELDS and MODE to
6114 the code in finish_struct. */
349ae713 6115 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
52dd234b
RH
6116 {
6117 if (TYPE_FIELDS (type) == NULL_TREE
6118 || TYPE_MODE (type) != DECL_MODE (TYPE_FIELDS (type)))
6119 goto ignored;
6120
6121 /* A type variant isn't good enough, since we don't a cast
6122 to such a type removed as a no-op. */
6123 *node = type = build_duplicate_type (type);
6124 }
6125
ebf0bf7f 6126 TYPE_TRANSPARENT_AGGR (type) = 1;
52dd234b 6127 return NULL_TREE;
349ae713
NB
6128 }
6129
52dd234b
RH
6130 ignored:
6131 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6132 return NULL_TREE;
6133}
6134
fc8600f9
MM
6135/* Subroutine of handle_{con,de}structor_attribute. Evaluate ARGS to
6136 get the requested priority for a constructor or destructor,
6137 possibly issuing diagnostics for invalid or reserved
6138 priorities. */
6139
6140static priority_type
6141get_priority (tree args, bool is_destructor)
6142{
6143 HOST_WIDE_INT pri;
b2f4bed8 6144 tree arg;
fc8600f9
MM
6145
6146 if (!args)
6147 return DEFAULT_INIT_PRIORITY;
b8698a0f 6148
f6fc5c86
MM
6149 if (!SUPPORTS_INIT_PRIORITY)
6150 {
6151 if (is_destructor)
6152 error ("destructor priorities are not supported");
6153 else
6154 error ("constructor priorities are not supported");
6155 return DEFAULT_INIT_PRIORITY;
6156 }
6157
b2f4bed8
MM
6158 arg = TREE_VALUE (args);
6159 if (!host_integerp (arg, /*pos=*/0)
6160 || !INTEGRAL_TYPE_P (TREE_TYPE (arg)))
fc8600f9
MM
6161 goto invalid;
6162
6163 pri = tree_low_cst (TREE_VALUE (args), /*pos=*/0);
6164 if (pri < 0 || pri > MAX_INIT_PRIORITY)
6165 goto invalid;
6166
6167 if (pri <= MAX_RESERVED_INIT_PRIORITY)
6168 {
6169 if (is_destructor)
6170 warning (0,
6171 "destructor priorities from 0 to %d are reserved "
b8698a0f 6172 "for the implementation",
fc8600f9
MM
6173 MAX_RESERVED_INIT_PRIORITY);
6174 else
6175 warning (0,
6176 "constructor priorities from 0 to %d are reserved "
b8698a0f 6177 "for the implementation",
fc8600f9
MM
6178 MAX_RESERVED_INIT_PRIORITY);
6179 }
6180 return pri;
6181
6182 invalid:
6183 if (is_destructor)
6184 error ("destructor priorities must be integers from 0 to %d inclusive",
6185 MAX_INIT_PRIORITY);
6186 else
6187 error ("constructor priorities must be integers from 0 to %d inclusive",
6188 MAX_INIT_PRIORITY);
6189 return DEFAULT_INIT_PRIORITY;
6190}
6191
349ae713
NB
6192/* Handle a "constructor" attribute; arguments as in
6193 struct attribute_spec.handler. */
6194
6195static tree
fc8600f9 6196handle_constructor_attribute (tree *node, tree name, tree args,
e18476eb 6197 int ARG_UNUSED (flags),
a742c759 6198 bool *no_add_attrs)
349ae713
NB
6199{
6200 tree decl = *node;
6201 tree type = TREE_TYPE (decl);
6202
6203 if (TREE_CODE (decl) == FUNCTION_DECL
6204 && TREE_CODE (type) == FUNCTION_TYPE
6205 && decl_function_context (decl) == 0)
6206 {
fc8600f9 6207 priority_type priority;
349ae713 6208 DECL_STATIC_CONSTRUCTOR (decl) = 1;
fc8600f9
MM
6209 priority = get_priority (args, /*is_destructor=*/false);
6210 SET_DECL_INIT_PRIORITY (decl, priority);
349ae713
NB
6211 TREE_USED (decl) = 1;
6212 }
6213 else
6214 {
5c498b10 6215 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6216 *no_add_attrs = true;
6217 }
6218
6219 return NULL_TREE;
6220}
6221
6222/* Handle a "destructor" attribute; arguments as in
6223 struct attribute_spec.handler. */
6224
6225static tree
fc8600f9 6226handle_destructor_attribute (tree *node, tree name, tree args,
e18476eb 6227 int ARG_UNUSED (flags),
a742c759 6228 bool *no_add_attrs)
349ae713
NB
6229{
6230 tree decl = *node;
6231 tree type = TREE_TYPE (decl);
6232
6233 if (TREE_CODE (decl) == FUNCTION_DECL
6234 && TREE_CODE (type) == FUNCTION_TYPE
6235 && decl_function_context (decl) == 0)
6236 {
fc8600f9 6237 priority_type priority;
349ae713 6238 DECL_STATIC_DESTRUCTOR (decl) = 1;
fc8600f9
MM
6239 priority = get_priority (args, /*is_destructor=*/true);
6240 SET_DECL_FINI_PRIORITY (decl, priority);
349ae713
NB
6241 TREE_USED (decl) = 1;
6242 }
6243 else
6244 {
5c498b10 6245 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6246 *no_add_attrs = true;
6247 }
6248
6249 return NULL_TREE;
6250}
6251
6252/* Handle a "mode" attribute; arguments as in
6253 struct attribute_spec.handler. */
6254
6255static tree
e18476eb
BI
6256handle_mode_attribute (tree *node, tree name, tree args,
6257 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
6258{
6259 tree type = *node;
88388a52 6260 tree ident = TREE_VALUE (args);
349ae713
NB
6261
6262 *no_add_attrs = true;
6263
88388a52 6264 if (TREE_CODE (ident) != IDENTIFIER_NODE)
5c498b10 6265 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6266 else
6267 {
6268 int j;
88388a52 6269 const char *p = IDENTIFIER_POINTER (ident);
349ae713
NB
6270 int len = strlen (p);
6271 enum machine_mode mode = VOIDmode;
6272 tree typefm;
6dd53648 6273 bool valid_mode;
349ae713
NB
6274
6275 if (len > 4 && p[0] == '_' && p[1] == '_'
6276 && p[len - 1] == '_' && p[len - 2] == '_')
6277 {
28dab132 6278 char *newp = (char *) alloca (len - 1);
349ae713
NB
6279
6280 strcpy (newp, &p[2]);
6281 newp[len - 4] = '\0';
6282 p = newp;
6283 }
6284
6285 /* Change this type to have a type with the specified mode.
6286 First check for the special modes. */
3f75a254 6287 if (!strcmp (p, "byte"))
349ae713
NB
6288 mode = byte_mode;
6289 else if (!strcmp (p, "word"))
6290 mode = word_mode;
3f75a254 6291 else if (!strcmp (p, "pointer"))
349ae713 6292 mode = ptr_mode;
c7ff6e7a
AK
6293 else if (!strcmp (p, "libgcc_cmp_return"))
6294 mode = targetm.libgcc_cmp_return_mode ();
6295 else if (!strcmp (p, "libgcc_shift_count"))
6296 mode = targetm.libgcc_shift_count_mode ();
7b0518e3
UW
6297 else if (!strcmp (p, "unwind_word"))
6298 mode = targetm.unwind_word_mode ();
349ae713
NB
6299 else
6300 for (j = 0; j < NUM_MACHINE_MODES; j++)
6301 if (!strcmp (p, GET_MODE_NAME (j)))
61f03aba
RH
6302 {
6303 mode = (enum machine_mode) j;
6304 break;
6305 }
349ae713
NB
6306
6307 if (mode == VOIDmode)
4a5eab38 6308 {
88388a52 6309 error ("unknown machine mode %qE", ident);
4a5eab38
PB
6310 return NULL_TREE;
6311 }
6312
6dd53648
RH
6313 valid_mode = false;
6314 switch (GET_MODE_CLASS (mode))
4a5eab38 6315 {
6dd53648
RH
6316 case MODE_INT:
6317 case MODE_PARTIAL_INT:
6318 case MODE_FLOAT:
9a8ce21f 6319 case MODE_DECIMAL_FLOAT:
ab22c1fa
CF
6320 case MODE_FRACT:
6321 case MODE_UFRACT:
6322 case MODE_ACCUM:
6323 case MODE_UACCUM:
6dd53648
RH
6324 valid_mode = targetm.scalar_mode_supported_p (mode);
6325 break;
6326
6327 case MODE_COMPLEX_INT:
6328 case MODE_COMPLEX_FLOAT:
6329 valid_mode = targetm.scalar_mode_supported_p (GET_MODE_INNER (mode));
6330 break;
6331
6332 case MODE_VECTOR_INT:
6333 case MODE_VECTOR_FLOAT:
ab22c1fa
CF
6334 case MODE_VECTOR_FRACT:
6335 case MODE_VECTOR_UFRACT:
6336 case MODE_VECTOR_ACCUM:
6337 case MODE_VECTOR_UACCUM:
5c498b10
DD
6338 warning (OPT_Wattributes, "specifying vector types with "
6339 "__attribute__ ((mode)) is deprecated");
6340 warning (OPT_Wattributes,
6341 "use __attribute__ ((vector_size)) instead");
6dd53648
RH
6342 valid_mode = vector_mode_valid_p (mode);
6343 break;
4a5eab38 6344
6dd53648
RH
6345 default:
6346 break;
6347 }
6348 if (!valid_mode)
6349 {
9e637a26 6350 error ("unable to emulate %qs", p);
6dd53648
RH
6351 return NULL_TREE;
6352 }
4a5eab38 6353
6dd53648 6354 if (POINTER_TYPE_P (type))
cb2a532e 6355 {
36c5e70a 6356 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (type));
6dd53648
RH
6357 tree (*fn)(tree, enum machine_mode, bool);
6358
36c5e70a 6359 if (!targetm.addr_space.valid_pointer_mode (mode, as))
cb2a532e 6360 {
9e637a26 6361 error ("invalid pointer mode %qs", p);
cb2a532e
AH
6362 return NULL_TREE;
6363 }
6364
c22cacf3 6365 if (TREE_CODE (type) == POINTER_TYPE)
6dd53648 6366 fn = build_pointer_type_for_mode;
4977bab6 6367 else
6dd53648
RH
6368 fn = build_reference_type_for_mode;
6369 typefm = fn (TREE_TYPE (type), mode, false);
cb2a532e 6370 }
6dd53648 6371 else
ab22c1fa
CF
6372 {
6373 /* For fixed-point modes, we need to test if the signness of type
6374 and the machine mode are consistent. */
6375 if (ALL_FIXED_POINT_MODE_P (mode)
6376 && TYPE_UNSIGNED (type) != UNSIGNED_FIXED_POINT_MODE_P (mode))
6377 {
6378 error ("signness of type and machine mode %qs don't match", p);
6379 return NULL_TREE;
6380 }
6381 /* For fixed-point modes, we need to pass saturating info. */
6382 typefm = lang_hooks.types.type_for_mode (mode,
6383 ALL_FIXED_POINT_MODE_P (mode) ? TYPE_SATURATING (type)
6384 : TYPE_UNSIGNED (type));
6385 }
ec8465a5 6386
6dd53648
RH
6387 if (typefm == NULL_TREE)
6388 {
61f03aba 6389 error ("no data type for mode %qs", p);
6dd53648
RH
6390 return NULL_TREE;
6391 }
ec8465a5
RK
6392 else if (TREE_CODE (type) == ENUMERAL_TYPE)
6393 {
6394 /* For enumeral types, copy the precision from the integer
6395 type returned above. If not an INTEGER_TYPE, we can't use
6396 this mode for this type. */
6397 if (TREE_CODE (typefm) != INTEGER_TYPE)
6398 {
61f03aba 6399 error ("cannot use mode %qs for enumeral types", p);
ec8465a5
RK
6400 return NULL_TREE;
6401 }
6402
99db1ef0
RH
6403 if (flags & ATTR_FLAG_TYPE_IN_PLACE)
6404 {
6405 TYPE_PRECISION (type) = TYPE_PRECISION (typefm);
6406 typefm = type;
6407 }
6408 else
6409 {
6410 /* We cannot build a type variant, as there's code that assumes
6411 that TYPE_MAIN_VARIANT has the same mode. This includes the
6412 debug generators. Instead, create a subrange type. This
6413 results in all of the enumeral values being emitted only once
6414 in the original, and the subtype gets them by reference. */
6415 if (TYPE_UNSIGNED (type))
6416 typefm = make_unsigned_type (TYPE_PRECISION (typefm));
6417 else
6418 typefm = make_signed_type (TYPE_PRECISION (typefm));
6419 TREE_TYPE (typefm) = type;
6420 }
ec8465a5 6421 }
a2d36602
RH
6422 else if (VECTOR_MODE_P (mode)
6423 ? TREE_CODE (type) != TREE_CODE (TREE_TYPE (typefm))
6424 : TREE_CODE (type) != TREE_CODE (typefm))
61f03aba
RH
6425 {
6426 error ("mode %qs applied to inappropriate type", p);
6427 return NULL_TREE;
6428 }
6429
6dd53648 6430 *node = typefm;
349ae713
NB
6431 }
6432
6433 return NULL_TREE;
6434}
6435
6436/* Handle a "section" attribute; arguments as in
6437 struct attribute_spec.handler. */
6438
6439static tree
e18476eb
BI
6440handle_section_attribute (tree *node, tree ARG_UNUSED (name), tree args,
6441 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
6442{
6443 tree decl = *node;
6444
6445 if (targetm.have_named_sections)
6446 {
9fb32434
CT
6447 user_defined_section_attribute = true;
6448
349ae713
NB
6449 if ((TREE_CODE (decl) == FUNCTION_DECL
6450 || TREE_CODE (decl) == VAR_DECL)
6451 && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
6452 {
6453 if (TREE_CODE (decl) == VAR_DECL
6454 && current_function_decl != NULL_TREE
3f75a254 6455 && !TREE_STATIC (decl))
349ae713 6456 {
b8698a0f 6457 error_at (DECL_SOURCE_LOCATION (decl),
c5d75364
MLI
6458 "section attribute cannot be specified for "
6459 "local variables");
349ae713
NB
6460 *no_add_attrs = true;
6461 }
6462
6463 /* The decl may have already been given a section attribute
6464 from a previous declaration. Ensure they match. */
6465 else if (DECL_SECTION_NAME (decl) != NULL_TREE
6466 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
6467 TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
6468 {
dee15844
JM
6469 error ("section of %q+D conflicts with previous declaration",
6470 *node);
349ae713
NB
6471 *no_add_attrs = true;
6472 }
feb60f03
NS
6473 else if (TREE_CODE (decl) == VAR_DECL
6474 && !targetm.have_tls && targetm.emutls.tmpl_section
6475 && DECL_THREAD_LOCAL_P (decl))
6476 {
6477 error ("section of %q+D cannot be overridden", *node);
6478 *no_add_attrs = true;
6479 }
349ae713
NB
6480 else
6481 DECL_SECTION_NAME (decl) = TREE_VALUE (args);
6482 }
6483 else
6484 {
dee15844 6485 error ("section attribute not allowed for %q+D", *node);
349ae713
NB
6486 *no_add_attrs = true;
6487 }
6488 }
6489 else
6490 {
c5d75364
MLI
6491 error_at (DECL_SOURCE_LOCATION (*node),
6492 "section attributes are not supported for this target");
349ae713
NB
6493 *no_add_attrs = true;
6494 }
6495
6496 return NULL_TREE;
6497}
6498
6499/* Handle a "aligned" attribute; arguments as in
6500 struct attribute_spec.handler. */
6501
6502static tree
e18476eb 6503handle_aligned_attribute (tree *node, tree ARG_UNUSED (name), tree args,
a742c759 6504 int flags, bool *no_add_attrs)
349ae713
NB
6505{
6506 tree decl = NULL_TREE;
6507 tree *type = NULL;
6508 int is_type = 0;
6509 tree align_expr = (args ? TREE_VALUE (args)
6e4f1168 6510 : size_int (ATTRIBUTE_ALIGNED_VALUE / BITS_PER_UNIT));
349ae713
NB
6511 int i;
6512
6513 if (DECL_P (*node))
6514 {
6515 decl = *node;
6516 type = &TREE_TYPE (decl);
6517 is_type = TREE_CODE (*node) == TYPE_DECL;
6518 }
6519 else if (TYPE_P (*node))
6520 type = node, is_type = 1;
6521
349ae713
NB
6522 if (TREE_CODE (align_expr) != INTEGER_CST)
6523 {
6524 error ("requested alignment is not a constant");
6525 *no_add_attrs = true;
6526 }
6527 else if ((i = tree_log2 (align_expr)) == -1)
6528 {
6529 error ("requested alignment is not a power of 2");
6530 *no_add_attrs = true;
6531 }
d9223014 6532 else if (i >= HOST_BITS_PER_INT - BITS_PER_UNIT_LOG)
349ae713
NB
6533 {
6534 error ("requested alignment is too large");
6535 *no_add_attrs = true;
6536 }
6537 else if (is_type)
6538 {
0f559c16
JM
6539 if ((flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
6540 /* OK, modify the type in place. */;
349ae713
NB
6541 /* If we have a TYPE_DECL, then copy the type, so that we
6542 don't accidentally modify a builtin type. See pushdecl. */
0f559c16
JM
6543 else if (decl && TREE_TYPE (decl) != error_mark_node
6544 && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
349ae713
NB
6545 {
6546 tree tt = TREE_TYPE (decl);
8dd16ecc 6547 *type = build_variant_type_copy (*type);
349ae713
NB
6548 DECL_ORIGINAL_TYPE (decl) = tt;
6549 TYPE_NAME (*type) = decl;
6550 TREE_USED (*type) = TREE_USED (decl);
6551 TREE_TYPE (decl) = *type;
6552 }
0f559c16 6553 else
8dd16ecc 6554 *type = build_variant_type_copy (*type);
349ae713 6555
d9223014 6556 TYPE_ALIGN (*type) = (1U << i) * BITS_PER_UNIT;
349ae713
NB
6557 TYPE_USER_ALIGN (*type) = 1;
6558 }
837edd5f 6559 else if (! VAR_OR_FUNCTION_DECL_P (decl)
349ae713
NB
6560 && TREE_CODE (decl) != FIELD_DECL)
6561 {
dee15844 6562 error ("alignment may not be specified for %q+D", decl);
349ae713
NB
6563 *no_add_attrs = true;
6564 }
837edd5f 6565 else if (TREE_CODE (decl) == FUNCTION_DECL
d9223014 6566 && DECL_ALIGN (decl) > (1U << i) * BITS_PER_UNIT)
837edd5f
GK
6567 {
6568 if (DECL_USER_ALIGN (decl))
6569 error ("alignment for %q+D was previously specified as %d "
6570 "and may not be decreased", decl,
6571 DECL_ALIGN (decl) / BITS_PER_UNIT);
6572 else
6573 error ("alignment for %q+D must be at least %d", decl,
6574 DECL_ALIGN (decl) / BITS_PER_UNIT);
6575 *no_add_attrs = true;
6576 }
349ae713
NB
6577 else
6578 {
d9223014 6579 DECL_ALIGN (decl) = (1U << i) * BITS_PER_UNIT;
349ae713
NB
6580 DECL_USER_ALIGN (decl) = 1;
6581 }
6582
6583 return NULL_TREE;
6584}
6585
6586/* Handle a "weak" attribute; arguments as in
6587 struct attribute_spec.handler. */
6588
6589static tree
55af93a8 6590handle_weak_attribute (tree *node, tree name,
e18476eb
BI
6591 tree ARG_UNUSED (args),
6592 int ARG_UNUSED (flags),
6593 bool * ARG_UNUSED (no_add_attrs))
349ae713 6594{
55af93a8 6595 if (TREE_CODE (*node) == FUNCTION_DECL
6b4e94bc
RG
6596 && DECL_DECLARED_INLINE_P (*node))
6597 {
6598 error ("inline function %q+D cannot be declared weak", *node);
6599 *no_add_attrs = true;
6600 }
6601 else if (TREE_CODE (*node) == FUNCTION_DECL
6602 || TREE_CODE (*node) == VAR_DECL)
55af93a8
DS
6603 declare_weak (*node);
6604 else
6605 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6606
6607 return NULL_TREE;
6608}
6609
6610/* Handle an "alias" attribute; arguments as in
6611 struct attribute_spec.handler. */
6612
6613static tree
35b1a6fa 6614handle_alias_attribute (tree *node, tree name, tree args,
e18476eb 6615 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
6616{
6617 tree decl = *node;
6618
feab5a67
JM
6619 if (TREE_CODE (decl) != FUNCTION_DECL && TREE_CODE (decl) != VAR_DECL)
6620 {
6621 warning (OPT_Wattributes, "%qE attribute ignored", name);
6622 *no_add_attrs = true;
6623 }
6624 else if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
b8698a0f 6625 || (TREE_CODE (decl) != FUNCTION_DECL
a9b0b825
GK
6626 && TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
6627 /* A static variable declaration is always a tentative definition,
6628 but the alias is a non-tentative definition which overrides. */
b8698a0f 6629 || (TREE_CODE (decl) != FUNCTION_DECL
a9b0b825 6630 && ! TREE_PUBLIC (decl) && DECL_INITIAL (decl)))
349ae713 6631 {
dee15844 6632 error ("%q+D defined both normally and as an alias", decl);
349ae713
NB
6633 *no_add_attrs = true;
6634 }
f6a76b9f
RH
6635
6636 /* Note that the very first time we process a nested declaration,
6637 decl_function_context will not be set. Indeed, *would* never
6638 be set except for the DECL_INITIAL/DECL_EXTERNAL frobbery that
6639 we do below. After such frobbery, pushdecl would set the context.
6640 In any case, this is never what we want. */
6641 else if (decl_function_context (decl) == 0 && current_function_decl == NULL)
349ae713
NB
6642 {
6643 tree id;
6644
6645 id = TREE_VALUE (args);
6646 if (TREE_CODE (id) != STRING_CST)
6647 {
40b97a2e 6648 error ("alias argument not a string");
349ae713
NB
6649 *no_add_attrs = true;
6650 return NULL_TREE;
6651 }
6652 id = get_identifier (TREE_STRING_POINTER (id));
6653 /* This counts as a use of the object pointed to. */
6654 TREE_USED (id) = 1;
6655
6656 if (TREE_CODE (decl) == FUNCTION_DECL)
6657 DECL_INITIAL (decl) = error_mark_node;
6658 else
6de9cd9a 6659 {
a0203ca7
AO
6660 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
6661 DECL_EXTERNAL (decl) = 1;
6662 else
6663 DECL_EXTERNAL (decl) = 0;
6de9cd9a
DN
6664 TREE_STATIC (decl) = 1;
6665 }
349ae713
NB
6666 }
6667 else
6668 {
5c498b10 6669 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6670 *no_add_attrs = true;
6671 }
6672
6673 return NULL_TREE;
6674}
6675
a0203ca7
AO
6676/* Handle a "weakref" attribute; arguments as in struct
6677 attribute_spec.handler. */
6678
6679static tree
6680handle_weakref_attribute (tree *node, tree ARG_UNUSED (name), tree args,
6681 int flags, bool *no_add_attrs)
6682{
6683 tree attr = NULL_TREE;
6684
e1cf56b1
AO
6685 /* We must ignore the attribute when it is associated with
6686 local-scoped decls, since attribute alias is ignored and many
6687 such symbols do not even have a DECL_WEAK field. */
e7b012c0
JJ
6688 if (decl_function_context (*node)
6689 || current_function_decl
6690 || (TREE_CODE (*node) != VAR_DECL && TREE_CODE (*node) != FUNCTION_DECL))
e1cf56b1
AO
6691 {
6692 warning (OPT_Wattributes, "%qE attribute ignored", name);
6693 *no_add_attrs = true;
6694 return NULL_TREE;
6695 }
6696
a0203ca7
AO
6697 /* The idea here is that `weakref("name")' mutates into `weakref,
6698 alias("name")', and weakref without arguments, in turn,
6699 implicitly adds weak. */
6700
6701 if (args)
6702 {
6703 attr = tree_cons (get_identifier ("alias"), args, attr);
6704 attr = tree_cons (get_identifier ("weakref"), NULL_TREE, attr);
6705
6706 *no_add_attrs = true;
a9b0b825
GK
6707
6708 decl_attributes (node, attr, flags);
a0203ca7
AO
6709 }
6710 else
6711 {
6712 if (lookup_attribute ("alias", DECL_ATTRIBUTES (*node)))
c5d75364
MLI
6713 error_at (DECL_SOURCE_LOCATION (*node),
6714 "weakref attribute must appear before alias attribute");
a0203ca7 6715
a9b0b825
GK
6716 /* Can't call declare_weak because it wants this to be TREE_PUBLIC,
6717 and that isn't supported; and because it wants to add it to
6718 the list of weak decls, which isn't helpful. */
6719 DECL_WEAK (*node) = 1;
a0203ca7
AO
6720 }
6721
a0203ca7
AO
6722 return NULL_TREE;
6723}
6724
349ae713
NB
6725/* Handle an "visibility" attribute; arguments as in
6726 struct attribute_spec.handler. */
6727
6728static tree
35b1a6fa 6729handle_visibility_attribute (tree *node, tree name, tree args,
e18476eb 6730 int ARG_UNUSED (flags),
b9e75696 6731 bool *ARG_UNUSED (no_add_attrs))
349ae713
NB
6732{
6733 tree decl = *node;
968b41a1 6734 tree id = TREE_VALUE (args);
b9e75696 6735 enum symbol_visibility vis;
349ae713 6736
d7afec4b
ND
6737 if (TYPE_P (*node))
6738 {
b9e75696
JM
6739 if (TREE_CODE (*node) == ENUMERAL_TYPE)
6740 /* OK */;
6741 else if (TREE_CODE (*node) != RECORD_TYPE && TREE_CODE (*node) != UNION_TYPE)
6742 {
6743 warning (OPT_Wattributes, "%qE attribute ignored on non-class types",
6744 name);
6745 return NULL_TREE;
6746 }
6747 else if (TYPE_FIELDS (*node))
6748 {
6749 error ("%qE attribute ignored because %qT is already defined",
6750 name, *node);
6751 return NULL_TREE;
6752 }
d7afec4b 6753 }
3f75a254 6754 else if (decl_function_context (decl) != 0 || !TREE_PUBLIC (decl))
349ae713 6755 {
5c498b10 6756 warning (OPT_Wattributes, "%qE attribute ignored", name);
968b41a1 6757 return NULL_TREE;
349ae713 6758 }
349ae713 6759
968b41a1
MA
6760 if (TREE_CODE (id) != STRING_CST)
6761 {
40b97a2e 6762 error ("visibility argument not a string");
968b41a1 6763 return NULL_TREE;
349ae713 6764 }
9f63daea 6765
d7afec4b
ND
6766 /* If this is a type, set the visibility on the type decl. */
6767 if (TYPE_P (decl))
6768 {
6769 decl = TYPE_NAME (decl);
3f75a254 6770 if (!decl)
c22cacf3 6771 return NULL_TREE;
e8233ac2
AP
6772 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6773 {
5c498b10 6774 warning (OPT_Wattributes, "%qE attribute ignored on types",
e8233ac2
AP
6775 name);
6776 return NULL_TREE;
6777 }
d7afec4b 6778 }
349ae713 6779
968b41a1 6780 if (strcmp (TREE_STRING_POINTER (id), "default") == 0)
b9e75696 6781 vis = VISIBILITY_DEFAULT;
968b41a1 6782 else if (strcmp (TREE_STRING_POINTER (id), "internal") == 0)
b9e75696 6783 vis = VISIBILITY_INTERNAL;
968b41a1 6784 else if (strcmp (TREE_STRING_POINTER (id), "hidden") == 0)
b9e75696 6785 vis = VISIBILITY_HIDDEN;
968b41a1 6786 else if (strcmp (TREE_STRING_POINTER (id), "protected") == 0)
b9e75696 6787 vis = VISIBILITY_PROTECTED;
968b41a1 6788 else
b9e75696
JM
6789 {
6790 error ("visibility argument must be one of \"default\", \"hidden\", \"protected\" or \"internal\"");
6791 vis = VISIBILITY_DEFAULT;
6792 }
6793
6794 if (DECL_VISIBILITY_SPECIFIED (decl)
3a687f8b
MM
6795 && vis != DECL_VISIBILITY (decl))
6796 {
6797 tree attributes = (TYPE_P (*node)
6798 ? TYPE_ATTRIBUTES (*node)
6799 : DECL_ATTRIBUTES (decl));
6800 if (lookup_attribute ("visibility", attributes))
6801 error ("%qD redeclared with different visibility", decl);
6802 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6803 && lookup_attribute ("dllimport", attributes))
6804 error ("%qD was declared %qs which implies default visibility",
6805 decl, "dllimport");
6806 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6807 && lookup_attribute ("dllexport", attributes))
6808 error ("%qD was declared %qs which implies default visibility",
6809 decl, "dllexport");
6810 }
b9e75696
JM
6811
6812 DECL_VISIBILITY (decl) = vis;
d7afec4b
ND
6813 DECL_VISIBILITY_SPECIFIED (decl) = 1;
6814
b9e75696
JM
6815 /* Go ahead and attach the attribute to the node as well. This is needed
6816 so we can determine whether we have VISIBILITY_DEFAULT because the
6817 visibility was not specified, or because it was explicitly overridden
6818 from the containing scope. */
968b41a1 6819
349ae713
NB
6820 return NULL_TREE;
6821}
6822
b2ca3702
MM
6823/* Determine the ELF symbol visibility for DECL, which is either a
6824 variable or a function. It is an error to use this function if a
6825 definition of DECL is not available in this translation unit.
6826 Returns true if the final visibility has been determined by this
6827 function; false if the caller is free to make additional
6828 modifications. */
6829
6830bool
6831c_determine_visibility (tree decl)
6832{
4094f4d2
NS
6833 gcc_assert (TREE_CODE (decl) == VAR_DECL
6834 || TREE_CODE (decl) == FUNCTION_DECL);
b2ca3702
MM
6835
6836 /* If the user explicitly specified the visibility with an
6837 attribute, honor that. DECL_VISIBILITY will have been set during
6838 the processing of the attribute. We check for an explicit
6839 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
6840 to distinguish the use of an attribute from the use of a "#pragma
6841 GCC visibility push(...)"; in the latter case we still want other
6842 considerations to be able to overrule the #pragma. */
3a687f8b
MM
6843 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl))
6844 || (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6845 && (lookup_attribute ("dllimport", DECL_ATTRIBUTES (decl))
6846 || lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))))
b2ca3702
MM
6847 return true;
6848
b9e75696
JM
6849 /* Set default visibility to whatever the user supplied with
6850 visibility_specified depending on #pragma GCC visibility. */
6851 if (!DECL_VISIBILITY_SPECIFIED (decl))
6852 {
09812622
JJ
6853 if (visibility_options.inpragma
6854 || DECL_VISIBILITY (decl) != default_visibility)
6855 {
6856 DECL_VISIBILITY (decl) = default_visibility;
6857 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
6858 /* If visibility changed and DECL already has DECL_RTL, ensure
6859 symbol flags are updated. */
6860 if (((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
6861 || TREE_CODE (decl) == FUNCTION_DECL)
6862 && DECL_RTL_SET_P (decl))
6863 make_decl_rtl (decl);
6864 }
b9e75696 6865 }
b2ca3702
MM
6866 return false;
6867}
6868
dce81a1a
JJ
6869/* Handle an "tls_model" attribute; arguments as in
6870 struct attribute_spec.handler. */
6871
6872static tree
35b1a6fa 6873handle_tls_model_attribute (tree *node, tree name, tree args,
e18476eb 6874 int ARG_UNUSED (flags), bool *no_add_attrs)
dce81a1a 6875{
c2f7fa15 6876 tree id;
dce81a1a 6877 tree decl = *node;
c2f7fa15 6878 enum tls_model kind;
dce81a1a 6879
c2f7fa15
SB
6880 *no_add_attrs = true;
6881
5006381c 6882 if (TREE_CODE (decl) != VAR_DECL || !DECL_THREAD_LOCAL_P (decl))
dce81a1a 6883 {
5c498b10 6884 warning (OPT_Wattributes, "%qE attribute ignored", name);
c2f7fa15 6885 return NULL_TREE;
dce81a1a 6886 }
dce81a1a 6887
c2f7fa15
SB
6888 kind = DECL_TLS_MODEL (decl);
6889 id = TREE_VALUE (args);
6890 if (TREE_CODE (id) != STRING_CST)
6891 {
6892 error ("tls_model argument not a string");
6893 return NULL_TREE;
dce81a1a
JJ
6894 }
6895
c2f7fa15
SB
6896 if (!strcmp (TREE_STRING_POINTER (id), "local-exec"))
6897 kind = TLS_MODEL_LOCAL_EXEC;
6898 else if (!strcmp (TREE_STRING_POINTER (id), "initial-exec"))
6899 kind = TLS_MODEL_INITIAL_EXEC;
6900 else if (!strcmp (TREE_STRING_POINTER (id), "local-dynamic"))
6901 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
6902 else if (!strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
6903 kind = TLS_MODEL_GLOBAL_DYNAMIC;
6904 else
6905 error ("tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
6906
6907 DECL_TLS_MODEL (decl) = kind;
dce81a1a
JJ
6908 return NULL_TREE;
6909}
6910
349ae713
NB
6911/* Handle a "no_instrument_function" attribute; arguments as in
6912 struct attribute_spec.handler. */
6913
6914static tree
35b1a6fa 6915handle_no_instrument_function_attribute (tree *node, tree name,
e18476eb
BI
6916 tree ARG_UNUSED (args),
6917 int ARG_UNUSED (flags),
a742c759 6918 bool *no_add_attrs)
349ae713
NB
6919{
6920 tree decl = *node;
6921
6922 if (TREE_CODE (decl) != FUNCTION_DECL)
6923 {
c5d75364
MLI
6924 error_at (DECL_SOURCE_LOCATION (decl),
6925 "%qE attribute applies only to functions", name);
349ae713
NB
6926 *no_add_attrs = true;
6927 }
6928 else if (DECL_INITIAL (decl))
6929 {
c5d75364
MLI
6930 error_at (DECL_SOURCE_LOCATION (decl),
6931 "can%'t set %qE attribute after definition", name);
349ae713
NB
6932 *no_add_attrs = true;
6933 }
6934 else
6935 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
6936
6937 return NULL_TREE;
6938}
6939
6940/* Handle a "malloc" attribute; arguments as in
6941 struct attribute_spec.handler. */
6942
6943static tree
e18476eb
BI
6944handle_malloc_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6945 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713 6946{
3425638a
JM
6947 if (TREE_CODE (*node) == FUNCTION_DECL
6948 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (*node))))
349ae713 6949 DECL_IS_MALLOC (*node) = 1;
349ae713
NB
6950 else
6951 {
5c498b10 6952 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
6953 *no_add_attrs = true;
6954 }
6955
6956 return NULL_TREE;
6957}
6958
51bc54a6
DM
6959/* Handle a "alloc_size" attribute; arguments as in
6960 struct attribute_spec.handler. */
6961
6962static tree
6963handle_alloc_size_attribute (tree *node, tree ARG_UNUSED (name), tree args,
6964 int ARG_UNUSED (flags), bool *no_add_attrs)
6965{
f3f75f69 6966 unsigned arg_count = type_num_arguments (*node);
51bc54a6
DM
6967 for (; args; args = TREE_CHAIN (args))
6968 {
6969 tree position = TREE_VALUE (args);
6970
6971 if (TREE_CODE (position) != INTEGER_CST
b8698a0f 6972 || TREE_INT_CST_HIGH (position)
51bc54a6
DM
6973 || TREE_INT_CST_LOW (position) < 1
6974 || TREE_INT_CST_LOW (position) > arg_count )
6975 {
b8698a0f 6976 warning (OPT_Wattributes,
51bc54a6
DM
6977 "alloc_size parameter outside range");
6978 *no_add_attrs = true;
6979 return NULL_TREE;
6980 }
6981 }
6982 return NULL_TREE;
6983}
6984
0b7b376d
RG
6985/* Handle a "fn spec" attribute; arguments as in
6986 struct attribute_spec.handler. */
6987
6988static tree
6989handle_fnspec_attribute (tree *node ATTRIBUTE_UNUSED, tree ARG_UNUSED (name),
6990 tree args, int ARG_UNUSED (flags),
6991 bool *no_add_attrs ATTRIBUTE_UNUSED)
6992{
6993 gcc_assert (args
6994 && TREE_CODE (TREE_VALUE (args)) == STRING_CST
6995 && !TREE_CHAIN (args));
6996 return NULL_TREE;
6997}
6998
6e9a3221
AN
6999/* Handle a "returns_twice" attribute; arguments as in
7000 struct attribute_spec.handler. */
7001
7002static tree
7003handle_returns_twice_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7004 int ARG_UNUSED (flags), bool *no_add_attrs)
7005{
7006 if (TREE_CODE (*node) == FUNCTION_DECL)
7007 DECL_IS_RETURNS_TWICE (*node) = 1;
7008 else
7009 {
5c498b10 7010 warning (OPT_Wattributes, "%qE attribute ignored", name);
6e9a3221
AN
7011 *no_add_attrs = true;
7012 }
7013
7014 return NULL_TREE;
7015}
7016
349ae713
NB
7017/* Handle a "no_limit_stack" attribute; arguments as in
7018 struct attribute_spec.handler. */
7019
7020static tree
35b1a6fa 7021handle_no_limit_stack_attribute (tree *node, tree name,
e18476eb
BI
7022 tree ARG_UNUSED (args),
7023 int ARG_UNUSED (flags),
a742c759 7024 bool *no_add_attrs)
349ae713
NB
7025{
7026 tree decl = *node;
7027
7028 if (TREE_CODE (decl) != FUNCTION_DECL)
7029 {
c5d75364
MLI
7030 error_at (DECL_SOURCE_LOCATION (decl),
7031 "%qE attribute applies only to functions", name);
349ae713
NB
7032 *no_add_attrs = true;
7033 }
7034 else if (DECL_INITIAL (decl))
7035 {
c5d75364
MLI
7036 error_at (DECL_SOURCE_LOCATION (decl),
7037 "can%'t set %qE attribute after definition", name);
349ae713
NB
7038 *no_add_attrs = true;
7039 }
7040 else
7041 DECL_NO_LIMIT_STACK (decl) = 1;
7042
7043 return NULL_TREE;
7044}
7045
7046/* Handle a "pure" attribute; arguments as in
7047 struct attribute_spec.handler. */
7048
7049static tree
e18476eb
BI
7050handle_pure_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7051 int ARG_UNUSED (flags), bool *no_add_attrs)
349ae713
NB
7052{
7053 if (TREE_CODE (*node) == FUNCTION_DECL)
becfd6e5 7054 DECL_PURE_P (*node) = 1;
349ae713
NB
7055 /* ??? TODO: Support types. */
7056 else
7057 {
5c498b10 7058 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
7059 *no_add_attrs = true;
7060 }
7061
7062 return NULL_TREE;
7063}
7064
dcd6de6d
ZD
7065/* Handle a "no vops" attribute; arguments as in
7066 struct attribute_spec.handler. */
7067
7068static tree
7069handle_novops_attribute (tree *node, tree ARG_UNUSED (name),
7070 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
7071 bool *ARG_UNUSED (no_add_attrs))
7072{
7073 gcc_assert (TREE_CODE (*node) == FUNCTION_DECL);
7074 DECL_IS_NOVOPS (*node) = 1;
7075 return NULL_TREE;
7076}
7077
349ae713
NB
7078/* Handle a "deprecated" attribute; arguments as in
7079 struct attribute_spec.handler. */
35b1a6fa 7080
349ae713 7081static tree
35b1a6fa 7082handle_deprecated_attribute (tree *node, tree name,
9b86d6bb 7083 tree args, int flags,
a742c759 7084 bool *no_add_attrs)
349ae713
NB
7085{
7086 tree type = NULL_TREE;
7087 int warn = 0;
c51a1ba9 7088 tree what = NULL_TREE;
35b1a6fa 7089
9b86d6bb
L
7090 if (!args)
7091 *no_add_attrs = true;
7092 else if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
7093 {
7094 error ("deprecated message is not a string");
7095 *no_add_attrs = true;
7096 }
7097
349ae713
NB
7098 if (DECL_P (*node))
7099 {
7100 tree decl = *node;
7101 type = TREE_TYPE (decl);
35b1a6fa 7102
349ae713
NB
7103 if (TREE_CODE (decl) == TYPE_DECL
7104 || TREE_CODE (decl) == PARM_DECL
7105 || TREE_CODE (decl) == VAR_DECL
7106 || TREE_CODE (decl) == FUNCTION_DECL
7107 || TREE_CODE (decl) == FIELD_DECL)
7108 TREE_DEPRECATED (decl) = 1;
7109 else
7110 warn = 1;
7111 }
7112 else if (TYPE_P (*node))
7113 {
7114 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
8dd16ecc 7115 *node = build_variant_type_copy (*node);
349ae713
NB
7116 TREE_DEPRECATED (*node) = 1;
7117 type = *node;
7118 }
7119 else
7120 warn = 1;
35b1a6fa 7121
349ae713
NB
7122 if (warn)
7123 {
7124 *no_add_attrs = true;
7125 if (type && TYPE_NAME (type))
7126 {
7127 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
c51a1ba9 7128 what = TYPE_NAME (*node);
349ae713
NB
7129 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7130 && DECL_NAME (TYPE_NAME (type)))
c51a1ba9 7131 what = DECL_NAME (TYPE_NAME (type));
349ae713
NB
7132 }
7133 if (what)
5c498b10 7134 warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what);
349ae713 7135 else
5c498b10 7136 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
7137 }
7138
7139 return NULL_TREE;
7140}
7141
349ae713
NB
7142/* Handle a "vector_size" attribute; arguments as in
7143 struct attribute_spec.handler. */
7144
7145static tree
35b1a6fa 7146handle_vector_size_attribute (tree *node, tree name, tree args,
e18476eb 7147 int ARG_UNUSED (flags),
a742c759 7148 bool *no_add_attrs)
349ae713
NB
7149{
7150 unsigned HOST_WIDE_INT vecsize, nunits;
26277d41 7151 enum machine_mode orig_mode;
4a5eab38 7152 tree type = *node, new_type, size;
349ae713
NB
7153
7154 *no_add_attrs = true;
7155
4a5eab38 7156 size = TREE_VALUE (args);
4a5eab38 7157
3f75a254 7158 if (!host_integerp (size, 1))
349ae713 7159 {
5c498b10 7160 warning (OPT_Wattributes, "%qE attribute ignored", name);
349ae713
NB
7161 return NULL_TREE;
7162 }
7163
7164 /* Get the vector size (in bytes). */
4a5eab38 7165 vecsize = tree_low_cst (size, 1);
349ae713
NB
7166
7167 /* We need to provide for vector pointers, vector arrays, and
7168 functions returning vectors. For example:
7169
7170 __attribute__((vector_size(16))) short *foo;
7171
7172 In this case, the mode is SI, but the type being modified is
7173 HI, so we need to look further. */
7174
7175 while (POINTER_TYPE_P (type)
7176 || TREE_CODE (type) == FUNCTION_TYPE
43dc123f 7177 || TREE_CODE (type) == METHOD_TYPE
270e749d
JJ
7178 || TREE_CODE (type) == ARRAY_TYPE
7179 || TREE_CODE (type) == OFFSET_TYPE)
349ae713
NB
7180 type = TREE_TYPE (type);
7181
7182 /* Get the mode of the type being modified. */
7183 orig_mode = TYPE_MODE (type);
7184
270e749d
JJ
7185 if ((!INTEGRAL_TYPE_P (type)
7186 && !SCALAR_FLOAT_TYPE_P (type)
7187 && !FIXED_POINT_TYPE_P (type))
3d8bf70f 7188 || (!SCALAR_FLOAT_MODE_P (orig_mode)
ab22c1fa
CF
7189 && GET_MODE_CLASS (orig_mode) != MODE_INT
7190 && !ALL_SCALAR_FIXED_POINT_MODE_P (orig_mode))
e4e5261f
AP
7191 || !host_integerp (TYPE_SIZE_UNIT (type), 1)
7192 || TREE_CODE (type) == BOOLEAN_TYPE)
349ae713 7193 {
c51a1ba9 7194 error ("invalid vector type for attribute %qE", name);
349ae713
NB
7195 return NULL_TREE;
7196 }
7197
ee8960e5
JJ
7198 if (vecsize % tree_low_cst (TYPE_SIZE_UNIT (type), 1))
7199 {
7200 error ("vector size not an integral multiple of component size");
7201 return NULL;
7202 }
7203
7204 if (vecsize == 0)
7205 {
7206 error ("zero vector size");
7207 return NULL;
7208 }
7209
349ae713
NB
7210 /* Calculate how many units fit in the vector. */
7211 nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
26277d41 7212 if (nunits & (nunits - 1))
349ae713 7213 {
26277d41 7214 error ("number of components of the vector not a power of two");
349ae713
NB
7215 return NULL_TREE;
7216 }
7217
26277d41 7218 new_type = build_vector_type (type, nunits);
349ae713
NB
7219
7220 /* Build back pointers if needed. */
5dc11954 7221 *node = lang_hooks.types.reconstruct_complex_type (*node, new_type);
349ae713
NB
7222
7223 return NULL_TREE;
7224}
7225
b34c7881
JT
7226/* Handle the "nonnull" attribute. */
7227static tree
e18476eb
BI
7228handle_nonnull_attribute (tree *node, tree ARG_UNUSED (name),
7229 tree args, int ARG_UNUSED (flags),
a742c759 7230 bool *no_add_attrs)
b34c7881
JT
7231{
7232 tree type = *node;
7233 unsigned HOST_WIDE_INT attr_arg_num;
7234
7235 /* If no arguments are specified, all pointer arguments should be
95bd1dd7 7236 non-null. Verify a full prototype is given so that the arguments
b34c7881 7237 will have the correct types when we actually check them later. */
3f75a254 7238 if (!args)
b34c7881 7239 {
3f75a254 7240 if (!TYPE_ARG_TYPES (type))
b34c7881
JT
7241 {
7242 error ("nonnull attribute without arguments on a non-prototype");
6de9cd9a 7243 *no_add_attrs = true;
b34c7881
JT
7244 }
7245 return NULL_TREE;
7246 }
7247
7248 /* Argument list specified. Verify that each argument number references
7249 a pointer argument. */
7250 for (attr_arg_num = 1; args; args = TREE_CHAIN (args))
7251 {
7252 tree argument;
6de9cd9a 7253 unsigned HOST_WIDE_INT arg_num = 0, ck_num;
b34c7881 7254
3f75a254 7255 if (!get_nonnull_operand (TREE_VALUE (args), &arg_num))
b34c7881 7256 {
40b97a2e 7257 error ("nonnull argument has invalid operand number (argument %lu)",
b34c7881
JT
7258 (unsigned long) attr_arg_num);
7259 *no_add_attrs = true;
7260 return NULL_TREE;
7261 }
7262
7263 argument = TYPE_ARG_TYPES (type);
7264 if (argument)
7265 {
7266 for (ck_num = 1; ; ck_num++)
7267 {
3f75a254 7268 if (!argument || ck_num == arg_num)
b34c7881
JT
7269 break;
7270 argument = TREE_CHAIN (argument);
7271 }
7272
3f75a254 7273 if (!argument
b34c7881
JT
7274 || TREE_CODE (TREE_VALUE (argument)) == VOID_TYPE)
7275 {
40b97a2e 7276 error ("nonnull argument with out-of-range operand number (argument %lu, operand %lu)",
b34c7881
JT
7277 (unsigned long) attr_arg_num, (unsigned long) arg_num);
7278 *no_add_attrs = true;
7279 return NULL_TREE;
7280 }
7281
6de9cd9a 7282 if (TREE_CODE (TREE_VALUE (argument)) != POINTER_TYPE)
b34c7881 7283 {
40b97a2e 7284 error ("nonnull argument references non-pointer operand (argument %lu, operand %lu)",
b34c7881
JT
7285 (unsigned long) attr_arg_num, (unsigned long) arg_num);
7286 *no_add_attrs = true;
7287 return NULL_TREE;
7288 }
7289 }
7290 }
7291
7292 return NULL_TREE;
7293}
7294
7295/* Check the argument list of a function call for null in argument slots
94a0dd7b
SL
7296 that are marked as requiring a non-null pointer argument. The NARGS
7297 arguments are passed in the array ARGARRAY.
7298*/
b34c7881
JT
7299
7300static void
94a0dd7b 7301check_function_nonnull (tree attrs, int nargs, tree *argarray)
b34c7881 7302{
94a0dd7b
SL
7303 tree a, args;
7304 int i;
b34c7881
JT
7305
7306 for (a = attrs; a; a = TREE_CHAIN (a))
7307 {
7308 if (is_attribute_p ("nonnull", TREE_PURPOSE (a)))
7309 {
6de9cd9a 7310 args = TREE_VALUE (a);
b34c7881 7311
6de9cd9a
DN
7312 /* Walk the argument list. If we encounter an argument number we
7313 should check for non-null, do it. If the attribute has no args,
7314 then every pointer argument is checked (in which case the check
b34c7881 7315 for pointer type is done in check_nonnull_arg). */
94a0dd7b 7316 for (i = 0; i < nargs; i++)
6de9cd9a 7317 {
94a0dd7b 7318 if (!args || nonnull_check_p (args, i + 1))
dfd0a3de 7319 check_function_arguments_recurse (check_nonnull_arg, NULL,
94a0dd7b
SL
7320 argarray[i],
7321 i + 1);
6de9cd9a 7322 }
b34c7881
JT
7323 }
7324 }
7325}
7326
254986c7 7327/* Check that the Nth argument of a function call (counting backwards
94a0dd7b
SL
7328 from the end) is a (pointer)0. The NARGS arguments are passed in the
7329 array ARGARRAY. */
3d091dac
KG
7330
7331static void
94a0dd7b 7332check_function_sentinel (tree attrs, int nargs, tree *argarray, tree typelist)
3d091dac
KG
7333{
7334 tree attr = lookup_attribute ("sentinel", attrs);
7335
7336 if (attr)
7337 {
94a0dd7b
SL
7338 int len = 0;
7339 int pos = 0;
7340 tree sentinel;
c22cacf3 7341
94a0dd7b
SL
7342 /* Skip over the named arguments. */
7343 while (typelist && len < nargs)
c22cacf3 7344 {
94a0dd7b
SL
7345 typelist = TREE_CHAIN (typelist);
7346 len++;
7347 }
254986c7 7348
94a0dd7b
SL
7349 if (TREE_VALUE (attr))
7350 {
7351 tree p = TREE_VALUE (TREE_VALUE (attr));
7352 pos = TREE_INT_CST_LOW (p);
7353 }
254986c7 7354
94a0dd7b
SL
7355 /* The sentinel must be one of the varargs, i.e.
7356 in position >= the number of fixed arguments. */
7357 if ((nargs - 1 - pos) < len)
7358 {
7359 warning (OPT_Wformat,
7360 "not enough variable arguments to fit a sentinel");
7361 return;
3d091dac 7362 }
94a0dd7b
SL
7363
7364 /* Validate the sentinel. */
7365 sentinel = argarray[nargs - 1 - pos];
7366 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel))
7367 || !integer_zerop (sentinel))
7368 /* Although __null (in C++) is only an integer we allow it
7369 nevertheless, as we are guaranteed that it's exactly
7370 as wide as a pointer, and we don't want to force
7371 users to cast the NULL they have written there.
7372 We warn with -Wstrict-null-sentinel, though. */
7373 && (warn_strict_null_sentinel || null_node != sentinel))
7374 warning (OPT_Wformat, "missing sentinel in function call");
3d091dac
KG
7375 }
7376}
7377
b34c7881
JT
7378/* Helper for check_function_nonnull; given a list of operands which
7379 must be non-null in ARGS, determine if operand PARAM_NUM should be
7380 checked. */
7381
7382static bool
35b1a6fa 7383nonnull_check_p (tree args, unsigned HOST_WIDE_INT param_num)
b34c7881 7384{
6de9cd9a 7385 unsigned HOST_WIDE_INT arg_num = 0;
b34c7881
JT
7386
7387 for (; args; args = TREE_CHAIN (args))
7388 {
366de0ce
NS
7389 bool found = get_nonnull_operand (TREE_VALUE (args), &arg_num);
7390
7391 gcc_assert (found);
b34c7881
JT
7392
7393 if (arg_num == param_num)
7394 return true;
7395 }
7396 return false;
7397}
7398
7399/* Check that the function argument PARAM (which is operand number
7400 PARAM_NUM) is non-null. This is called by check_function_nonnull
7401 via check_function_arguments_recurse. */
7402
7403static void
e18476eb 7404check_nonnull_arg (void * ARG_UNUSED (ctx), tree param,
35b1a6fa 7405 unsigned HOST_WIDE_INT param_num)
b34c7881
JT
7406{
7407 /* Just skip checking the argument if it's not a pointer. This can
7408 happen if the "nonnull" attribute was given without an operand
7409 list (which means to check every pointer argument). */
7410
7411 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
7412 return;
7413
7414 if (integer_zerop (param))
30480ec4
DD
7415 warning (OPT_Wnonnull, "null argument where non-null required "
7416 "(argument %lu)", (unsigned long) param_num);
b34c7881
JT
7417}
7418
7419/* Helper for nonnull attribute handling; fetch the operand number
7420 from the attribute argument list. */
7421
7422static bool
35b1a6fa 7423get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
b34c7881 7424{
f6d1c3a6 7425 /* Verify the arg number is a constant. */
b34c7881
JT
7426 if (TREE_CODE (arg_num_expr) != INTEGER_CST
7427 || TREE_INT_CST_HIGH (arg_num_expr) != 0)
7428 return false;
7429
7430 *valp = TREE_INT_CST_LOW (arg_num_expr);
7431 return true;
7432}
39f2f3c8
RS
7433
7434/* Handle a "nothrow" attribute; arguments as in
7435 struct attribute_spec.handler. */
7436
7437static tree
e18476eb
BI
7438handle_nothrow_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7439 int ARG_UNUSED (flags), bool *no_add_attrs)
39f2f3c8
RS
7440{
7441 if (TREE_CODE (*node) == FUNCTION_DECL)
7442 TREE_NOTHROW (*node) = 1;
7443 /* ??? TODO: Support types. */
7444 else
7445 {
5c498b10 7446 warning (OPT_Wattributes, "%qE attribute ignored", name);
39f2f3c8
RS
7447 *no_add_attrs = true;
7448 }
7449
7450 return NULL_TREE;
7451}
0bfa5f65
RH
7452
7453/* Handle a "cleanup" attribute; arguments as in
7454 struct attribute_spec.handler. */
7455
7456static tree
35b1a6fa 7457handle_cleanup_attribute (tree *node, tree name, tree args,
e18476eb 7458 int ARG_UNUSED (flags), bool *no_add_attrs)
0bfa5f65
RH
7459{
7460 tree decl = *node;
7461 tree cleanup_id, cleanup_decl;
7462
7463 /* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
7464 for global destructors in C++. This requires infrastructure that
7465 we don't have generically at the moment. It's also not a feature
7466 we'd be missing too much, since we do have attribute constructor. */
7467 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl))
7468 {
5c498b10 7469 warning (OPT_Wattributes, "%qE attribute ignored", name);
0bfa5f65
RH
7470 *no_add_attrs = true;
7471 return NULL_TREE;
7472 }
7473
7474 /* Verify that the argument is a function in scope. */
7475 /* ??? We could support pointers to functions here as well, if
7476 that was considered desirable. */
7477 cleanup_id = TREE_VALUE (args);
7478 if (TREE_CODE (cleanup_id) != IDENTIFIER_NODE)
7479 {
40b97a2e 7480 error ("cleanup argument not an identifier");
0bfa5f65
RH
7481 *no_add_attrs = true;
7482 return NULL_TREE;
7483 }
10e6657a 7484 cleanup_decl = lookup_name (cleanup_id);
0bfa5f65
RH
7485 if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL)
7486 {
40b97a2e 7487 error ("cleanup argument not a function");
0bfa5f65
RH
7488 *no_add_attrs = true;
7489 return NULL_TREE;
7490 }
7491
35b1a6fa 7492 /* That the function has proper type is checked with the
0bfa5f65
RH
7493 eventual call to build_function_call. */
7494
7495 return NULL_TREE;
7496}
72954a4f
JM
7497
7498/* Handle a "warn_unused_result" attribute. No special handling. */
7499
7500static tree
7501handle_warn_unused_result_attribute (tree *node, tree name,
e18476eb
BI
7502 tree ARG_UNUSED (args),
7503 int ARG_UNUSED (flags), bool *no_add_attrs)
72954a4f
JM
7504{
7505 /* Ignore the attribute for functions not returning any value. */
7506 if (VOID_TYPE_P (TREE_TYPE (*node)))
7507 {
5c498b10 7508 warning (OPT_Wattributes, "%qE attribute ignored", name);
72954a4f
JM
7509 *no_add_attrs = true;
7510 }
7511
7512 return NULL_TREE;
7513}
3d091dac
KG
7514
7515/* Handle a "sentinel" attribute. */
7516
7517static tree
254986c7 7518handle_sentinel_attribute (tree *node, tree name, tree args,
3d091dac
KG
7519 int ARG_UNUSED (flags), bool *no_add_attrs)
7520{
7521 tree params = TYPE_ARG_TYPES (*node);
7522
7523 if (!params)
7524 {
5c498b10
DD
7525 warning (OPT_Wattributes,
7526 "%qE attribute requires prototypes with named arguments", name);
3d091dac 7527 *no_add_attrs = true;
3d091dac 7528 }
254986c7
KG
7529 else
7530 {
7531 while (TREE_CHAIN (params))
7532 params = TREE_CHAIN (params);
3d091dac 7533
254986c7 7534 if (VOID_TYPE_P (TREE_VALUE (params)))
c22cacf3 7535 {
5c498b10
DD
7536 warning (OPT_Wattributes,
7537 "%qE attribute only applies to variadic functions", name);
254986c7
KG
7538 *no_add_attrs = true;
7539 }
7540 }
c22cacf3 7541
254986c7 7542 if (args)
3d091dac 7543 {
254986c7
KG
7544 tree position = TREE_VALUE (args);
7545
254986c7 7546 if (TREE_CODE (position) != INTEGER_CST)
c22cacf3 7547 {
b8698a0f 7548 warning (OPT_Wattributes,
aa86a51b 7549 "requested position is not an integer constant");
254986c7
KG
7550 *no_add_attrs = true;
7551 }
7552 else
c22cacf3 7553 {
254986c7
KG
7554 if (tree_int_cst_lt (position, integer_zero_node))
7555 {
aa86a51b
DM
7556 warning (OPT_Wattributes,
7557 "requested position is less than zero");
254986c7
KG
7558 *no_add_attrs = true;
7559 }
7560 }
3d091dac 7561 }
c22cacf3 7562
3d091dac
KG
7563 return NULL_TREE;
7564}
b5d32c25
KG
7565
7566/* Handle a "type_generic" attribute. */
7567
7568static tree
7569handle_type_generic_attribute (tree *node, tree ARG_UNUSED (name),
7570 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
7571 bool * ARG_UNUSED (no_add_attrs))
7572{
3bf5906b 7573 tree params;
b8698a0f 7574
3bf5906b
KG
7575 /* Ensure we have a function type. */
7576 gcc_assert (TREE_CODE (*node) == FUNCTION_TYPE);
b8698a0f 7577
3bf5906b
KG
7578 params = TYPE_ARG_TYPES (*node);
7579 while (params && ! VOID_TYPE_P (TREE_VALUE (params)))
7580 params = TREE_CHAIN (params);
7581
7582 /* Ensure we have a variadic function. */
7583 gcc_assert (!params);
b5d32c25
KG
7584
7585 return NULL_TREE;
7586}
ab442df7 7587
5779e713 7588/* Handle a "target" attribute. */
ab442df7
MM
7589
7590static tree
5779e713 7591handle_target_attribute (tree *node, tree name, tree args, int flags,
ab442df7
MM
7592 bool *no_add_attrs)
7593{
7594 /* Ensure we have a function type. */
7595 if (TREE_CODE (*node) != FUNCTION_DECL)
7596 {
7597 warning (OPT_Wattributes, "%qE attribute ignored", name);
7598 *no_add_attrs = true;
7599 }
ab442df7
MM
7600 else if (! targetm.target_option.valid_attribute_p (*node, name, args,
7601 flags))
7602 *no_add_attrs = true;
7603
7604 return NULL_TREE;
7605}
7606
7607/* Arguments being collected for optimization. */
7608typedef const char *const_char_p; /* For DEF_VEC_P. */
7609DEF_VEC_P(const_char_p);
7610DEF_VEC_ALLOC_P(const_char_p, gc);
7611static GTY(()) VEC(const_char_p, gc) *optimize_args;
7612
7613
7614/* Inner function to convert a TREE_LIST to argv string to parse the optimize
7615 options in ARGS. ATTR_P is true if this is for attribute(optimize), and
7616 false for #pragma GCC optimize. */
7617
7618bool
7619parse_optimize_options (tree args, bool attr_p)
7620{
7621 bool ret = true;
7622 unsigned opt_argc;
7623 unsigned i;
cbc19f39 7624 int saved_flag_strict_aliasing;
ab442df7 7625 const char **opt_argv;
6e2f1956
JM
7626 struct cl_decoded_option *decoded_options;
7627 unsigned int decoded_options_count;
ab442df7
MM
7628 tree ap;
7629
7630 /* Build up argv vector. Just in case the string is stored away, use garbage
7631 collected strings. */
7632 VEC_truncate (const_char_p, optimize_args, 0);
7633 VEC_safe_push (const_char_p, gc, optimize_args, NULL);
7634
7635 for (ap = args; ap != NULL_TREE; ap = TREE_CHAIN (ap))
7636 {
7637 tree value = TREE_VALUE (ap);
7638
7639 if (TREE_CODE (value) == INTEGER_CST)
7640 {
7641 char buffer[20];
7642 sprintf (buffer, "-O%ld", (long) TREE_INT_CST_LOW (value));
7643 VEC_safe_push (const_char_p, gc, optimize_args, ggc_strdup (buffer));
7644 }
7645
7646 else if (TREE_CODE (value) == STRING_CST)
7647 {
7648 /* Split string into multiple substrings. */
7649 size_t len = TREE_STRING_LENGTH (value);
7650 char *p = ASTRDUP (TREE_STRING_POINTER (value));
7651 char *end = p + len;
7652 char *comma;
7653 char *next_p = p;
7654
7655 while (next_p != NULL)
7656 {
7657 size_t len2;
7658 char *q, *r;
7659
7660 p = next_p;
7661 comma = strchr (p, ',');
7662 if (comma)
7663 {
7664 len2 = comma - p;
7665 *comma = '\0';
7666 next_p = comma+1;
7667 }
7668 else
7669 {
7670 len2 = end - p;
7671 next_p = NULL;
7672 }
7673
a9429e29 7674 r = q = (char *) ggc_alloc_atomic (len2 + 3);
ab442df7
MM
7675
7676 /* If the user supplied -Oxxx or -fxxx, only allow -Oxxx or -fxxx
7677 options. */
7678 if (*p == '-' && p[1] != 'O' && p[1] != 'f')
7679 {
7680 ret = false;
7681 if (attr_p)
7682 warning (OPT_Wattributes,
7683 "Bad option %s to optimize attribute.", p);
7684 else
7685 warning (OPT_Wpragmas,
7686 "Bad option %s to pragma attribute", p);
7687 continue;
7688 }
7689
7690 if (*p != '-')
7691 {
7692 *r++ = '-';
7693
7694 /* Assume that Ox is -Ox, a numeric value is -Ox, a s by
7695 itself is -Os, and any other switch begins with a -f. */
7696 if ((*p >= '0' && *p <= '9')
7697 || (p[0] == 's' && p[1] == '\0'))
7698 *r++ = 'O';
7699 else if (*p != 'O')
7700 *r++ = 'f';
7701 }
7702
7703 memcpy (r, p, len2);
7704 r[len2] = '\0';
7705 VEC_safe_push (const_char_p, gc, optimize_args, q);
7706 }
7707
7708 }
7709 }
7710
7711 opt_argc = VEC_length (const_char_p, optimize_args);
7712 opt_argv = (const char **) alloca (sizeof (char *) * (opt_argc + 1));
7713
7714 for (i = 1; i < opt_argc; i++)
7715 opt_argv[i] = VEC_index (const_char_p, optimize_args, i);
7716
cbc19f39
JJ
7717 saved_flag_strict_aliasing = flag_strict_aliasing;
7718
ab442df7 7719 /* Now parse the options. */
6e2f1956
JM
7720 decode_options (opt_argc, opt_argv, &decoded_options,
7721 &decoded_options_count);
ab442df7 7722
2b7e2984
SE
7723 targetm.override_options_after_change();
7724
cbc19f39
JJ
7725 /* Don't allow changing -fstrict-aliasing. */
7726 flag_strict_aliasing = saved_flag_strict_aliasing;
7727
ab442df7
MM
7728 VEC_truncate (const_char_p, optimize_args, 0);
7729 return ret;
7730}
7731
7732/* For handling "optimize" attribute. arguments as in
7733 struct attribute_spec.handler. */
7734
7735static tree
7736handle_optimize_attribute (tree *node, tree name, tree args,
7737 int ARG_UNUSED (flags), bool *no_add_attrs)
7738{
7739 /* Ensure we have a function type. */
7740 if (TREE_CODE (*node) != FUNCTION_DECL)
7741 {
7742 warning (OPT_Wattributes, "%qE attribute ignored", name);
7743 *no_add_attrs = true;
7744 }
7745 else
7746 {
7747 struct cl_optimization cur_opts;
7748 tree old_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node);
7749
7750 /* Save current options. */
7751 cl_optimization_save (&cur_opts);
7752
7753 /* If we previously had some optimization options, use them as the
7754 default. */
7755 if (old_opts)
7756 cl_optimization_restore (TREE_OPTIMIZATION (old_opts));
7757
7758 /* Parse options, and update the vector. */
7759 parse_optimize_options (args, true);
7760 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node)
7761 = build_optimization_node ();
7762
7763 /* Restore current options. */
7764 cl_optimization_restore (&cur_opts);
7765 }
7766
7767 return NULL_TREE;
7768}
b34c7881 7769\f
94a0dd7b
SL
7770/* Check for valid arguments being passed to a function.
7771 ATTRS is a list of attributes. There are NARGS arguments in the array
7772 ARGARRAY. TYPELIST is the list of argument types for the function.
7773 */
b34c7881 7774void
94a0dd7b 7775check_function_arguments (tree attrs, int nargs, tree *argarray, tree typelist)
b34c7881
JT
7776{
7777 /* Check for null being passed in a pointer argument that must be
7778 non-null. We also need to do this if format checking is enabled. */
7779
7780 if (warn_nonnull)
94a0dd7b 7781 check_function_nonnull (attrs, nargs, argarray);
b34c7881
JT
7782
7783 /* Check for errors in format strings. */
7784
7876a414 7785 if (warn_format || warn_missing_format_attribute)
94a0dd7b 7786 check_function_format (attrs, nargs, argarray);
7876a414
KG
7787
7788 if (warn_format)
94a0dd7b 7789 check_function_sentinel (attrs, nargs, argarray, typelist);
b34c7881
JT
7790}
7791
7792/* Generic argument checking recursion routine. PARAM is the argument to
7793 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
7794 once the argument is resolved. CTX is context for the callback. */
7795void
35b1a6fa
AJ
7796check_function_arguments_recurse (void (*callback)
7797 (void *, tree, unsigned HOST_WIDE_INT),
7798 void *ctx, tree param,
7799 unsigned HOST_WIDE_INT param_num)
b34c7881 7800{
1043771b 7801 if (CONVERT_EXPR_P (param)
1344f9a3
JM
7802 && (TYPE_PRECISION (TREE_TYPE (param))
7803 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param, 0)))))
b34c7881
JT
7804 {
7805 /* Strip coercion. */
7806 check_function_arguments_recurse (callback, ctx,
6de9cd9a 7807 TREE_OPERAND (param, 0), param_num);
b34c7881
JT
7808 return;
7809 }
7810
7811 if (TREE_CODE (param) == CALL_EXPR)
7812 {
5039610b 7813 tree type = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param)));
b34c7881
JT
7814 tree attrs;
7815 bool found_format_arg = false;
7816
7817 /* See if this is a call to a known internationalization function
7818 that modifies a format arg. Such a function may have multiple
7819 format_arg attributes (for example, ngettext). */
7820
7821 for (attrs = TYPE_ATTRIBUTES (type);
7822 attrs;
7823 attrs = TREE_CHAIN (attrs))
7824 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
7825 {
5039610b 7826 tree inner_arg;
b34c7881
JT
7827 tree format_num_expr;
7828 int format_num;
7829 int i;
5039610b 7830 call_expr_arg_iterator iter;
b34c7881
JT
7831
7832 /* Extract the argument number, which was previously checked
7833 to be valid. */
7834 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
b34c7881 7835
366de0ce
NS
7836 gcc_assert (TREE_CODE (format_num_expr) == INTEGER_CST
7837 && !TREE_INT_CST_HIGH (format_num_expr));
b34c7881
JT
7838
7839 format_num = TREE_INT_CST_LOW (format_num_expr);
7840
5039610b
SL
7841 for (inner_arg = first_call_expr_arg (param, &iter), i = 1;
7842 inner_arg != 0;
7843 inner_arg = next_call_expr_arg (&iter), i++)
b34c7881
JT
7844 if (i == format_num)
7845 {
7846 check_function_arguments_recurse (callback, ctx,
5039610b 7847 inner_arg, param_num);
b34c7881
JT
7848 found_format_arg = true;
7849 break;
7850 }
7851 }
7852
7853 /* If we found a format_arg attribute and did a recursive check,
7854 we are done with checking this argument. Otherwise, we continue
7855 and this will be considered a non-literal. */
7856 if (found_format_arg)
7857 return;
7858 }
7859
7860 if (TREE_CODE (param) == COND_EXPR)
7861 {
7862 /* Check both halves of the conditional expression. */
7863 check_function_arguments_recurse (callback, ctx,
6de9cd9a 7864 TREE_OPERAND (param, 1), param_num);
b34c7881 7865 check_function_arguments_recurse (callback, ctx,
6de9cd9a 7866 TREE_OPERAND (param, 2), param_num);
b34c7881
JT
7867 return;
7868 }
7869
7870 (*callback) (ctx, param, param_num);
7871}
e2500fed 7872
a98c2819
MLI
7873/* Checks for a builtin function FNDECL that the number of arguments
7874 NARGS against the required number REQUIRED and issues an error if
7875 there is a mismatch. Returns true if the number of arguments is
7876 correct, otherwise false. */
83322951
RG
7877
7878static bool
a98c2819 7879builtin_function_validate_nargs (tree fndecl, int nargs, int required)
83322951
RG
7880{
7881 if (nargs < required)
7882 {
a98c2819
MLI
7883 error_at (input_location,
7884 "not enough arguments to function %qE", fndecl);
83322951
RG
7885 return false;
7886 }
7887 else if (nargs > required)
7888 {
a98c2819
MLI
7889 error_at (input_location,
7890 "too many arguments to function %qE", fndecl);
83322951
RG
7891 return false;
7892 }
7893 return true;
7894}
7895
7896/* Verifies the NARGS arguments ARGS to the builtin function FNDECL.
7897 Returns false if there was an error, otherwise true. */
7898
7899bool
7900check_builtin_function_arguments (tree fndecl, int nargs, tree *args)
7901{
7902 if (!DECL_BUILT_IN (fndecl)
7903 || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
7904 return true;
7905
7906 switch (DECL_FUNCTION_CODE (fndecl))
7907 {
7908 case BUILT_IN_CONSTANT_P:
a98c2819 7909 return builtin_function_validate_nargs (fndecl, nargs, 1);
83322951
RG
7910
7911 case BUILT_IN_ISFINITE:
7912 case BUILT_IN_ISINF:
05f41289 7913 case BUILT_IN_ISINF_SIGN:
83322951
RG
7914 case BUILT_IN_ISNAN:
7915 case BUILT_IN_ISNORMAL:
a98c2819 7916 if (builtin_function_validate_nargs (fndecl, nargs, 1))
83322951
RG
7917 {
7918 if (TREE_CODE (TREE_TYPE (args[0])) != REAL_TYPE)
7919 {
7920 error ("non-floating-point argument in call to "
7921 "function %qE", fndecl);
7922 return false;
7923 }
7924 return true;
7925 }
7926 return false;
7927
7928 case BUILT_IN_ISGREATER:
7929 case BUILT_IN_ISGREATEREQUAL:
7930 case BUILT_IN_ISLESS:
7931 case BUILT_IN_ISLESSEQUAL:
7932 case BUILT_IN_ISLESSGREATER:
7933 case BUILT_IN_ISUNORDERED:
a98c2819 7934 if (builtin_function_validate_nargs (fndecl, nargs, 2))
83322951
RG
7935 {
7936 enum tree_code code0, code1;
7937 code0 = TREE_CODE (TREE_TYPE (args[0]));
7938 code1 = TREE_CODE (TREE_TYPE (args[1]));
7939 if (!((code0 == REAL_TYPE && code1 == REAL_TYPE)
7940 || (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
7941 || (code0 == INTEGER_TYPE && code1 == REAL_TYPE)))
7942 {
7943 error ("non-floating-point arguments in call to "
7944 "function %qE", fndecl);
7945 return false;
7946 }
7947 return true;
7948 }
7949 return false;
7950
3bf5906b 7951 case BUILT_IN_FPCLASSIFY:
a98c2819 7952 if (builtin_function_validate_nargs (fndecl, nargs, 6))
3bf5906b
KG
7953 {
7954 unsigned i;
b8698a0f 7955
3bf5906b
KG
7956 for (i=0; i<5; i++)
7957 if (TREE_CODE (args[i]) != INTEGER_CST)
7958 {
7959 error ("non-const integer argument %u in call to function %qE",
7960 i+1, fndecl);
7961 return false;
7962 }
7963
7964 if (TREE_CODE (TREE_TYPE (args[5])) != REAL_TYPE)
7965 {
7966 error ("non-floating-point argument in call to function %qE",
7967 fndecl);
7968 return false;
7969 }
7970 return true;
7971 }
7972 return false;
7973
83322951
RG
7974 default:
7975 return true;
7976 }
7977}
7978
d07605f5
AP
7979/* Function to help qsort sort FIELD_DECLs by name order. */
7980
7981int
7982field_decl_cmp (const void *x_p, const void *y_p)
7983{
28dab132
BI
7984 const tree *const x = (const tree *const) x_p;
7985 const tree *const y = (const tree *const) y_p;
7986
d07605f5
AP
7987 if (DECL_NAME (*x) == DECL_NAME (*y))
7988 /* A nontype is "greater" than a type. */
7989 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
7990 if (DECL_NAME (*x) == NULL_TREE)
7991 return -1;
7992 if (DECL_NAME (*y) == NULL_TREE)
7993 return 1;
7994 if (DECL_NAME (*x) < DECL_NAME (*y))
7995 return -1;
7996 return 1;
7997}
7998
7999static struct {
8000 gt_pointer_operator new_value;
8001 void *cookie;
8002} resort_data;
8003
8004/* This routine compares two fields like field_decl_cmp but using the
8005pointer operator in resort_data. */
8006
8007static int
8008resort_field_decl_cmp (const void *x_p, const void *y_p)
8009{
28dab132
BI
8010 const tree *const x = (const tree *const) x_p;
8011 const tree *const y = (const tree *const) y_p;
d07605f5
AP
8012
8013 if (DECL_NAME (*x) == DECL_NAME (*y))
8014 /* A nontype is "greater" than a type. */
8015 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
8016 if (DECL_NAME (*x) == NULL_TREE)
8017 return -1;
8018 if (DECL_NAME (*y) == NULL_TREE)
8019 return 1;
8020 {
8021 tree d1 = DECL_NAME (*x);
8022 tree d2 = DECL_NAME (*y);
8023 resort_data.new_value (&d1, resort_data.cookie);
8024 resort_data.new_value (&d2, resort_data.cookie);
8025 if (d1 < d2)
8026 return -1;
8027 }
8028 return 1;
8029}
8030
8031/* Resort DECL_SORTED_FIELDS because pointers have been reordered. */
8032
8033void
8034resort_sorted_fields (void *obj,
e18476eb 8035 void * ARG_UNUSED (orig_obj),
6de9cd9a
DN
8036 gt_pointer_operator new_value,
8037 void *cookie)
d07605f5 8038{
e18476eb 8039 struct sorted_fields_type *sf = (struct sorted_fields_type *) obj;
d07605f5
AP
8040 resort_data.new_value = new_value;
8041 resort_data.cookie = cookie;
8042 qsort (&sf->elts[0], sf->len, sizeof (tree),
6de9cd9a 8043 resort_field_decl_cmp);
d07605f5
AP
8044}
8045
0a3ee0fd
GDR
8046/* Subroutine of c_parse_error.
8047 Return the result of concatenating LHS and RHS. RHS is really
8048 a string literal, its first character is indicated by RHS_START and
3292fb42 8049 RHS_SIZE is its length (including the terminating NUL character).
0a3ee0fd
GDR
8050
8051 The caller is responsible for deleting the returned pointer. */
8052
8053static char *
8054catenate_strings (const char *lhs, const char *rhs_start, int rhs_size)
8055{
8056 const int lhs_size = strlen (lhs);
8057 char *result = XNEWVEC (char, lhs_size + rhs_size);
8058 strncpy (result, lhs, lhs_size);
8059 strncpy (result + lhs_size, rhs_start, rhs_size);
8060 return result;
8061}
8062
4b794eaf 8063/* Issue the error given by GMSGID, indicating that it occurred before
4bb8ca28
MM
8064 TOKEN, which had the associated VALUE. */
8065
8066void
b8698a0f 8067c_parse_error (const char *gmsgid, enum cpp_ttype token_type,
cfc93532 8068 tree value, unsigned char token_flags)
4bb8ca28 8069{
0a3ee0fd
GDR
8070#define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
8071
8072 char *message = NULL;
4bb8ca28 8073
cfc93532 8074 if (token_type == CPP_EOF)
4b794eaf 8075 message = catenate_messages (gmsgid, " at end of input");
b8698a0f
L
8076 else if (token_type == CPP_CHAR
8077 || token_type == CPP_WCHAR
cfc93532
MLI
8078 || token_type == CPP_CHAR16
8079 || token_type == CPP_CHAR32)
4bb8ca28
MM
8080 {
8081 unsigned int val = TREE_INT_CST_LOW (value);
b6baa67d
KVH
8082 const char *prefix;
8083
cfc93532 8084 switch (token_type)
b6baa67d
KVH
8085 {
8086 default:
8087 prefix = "";
8088 break;
8089 case CPP_WCHAR:
8090 prefix = "L";
8091 break;
8092 case CPP_CHAR16:
8093 prefix = "u";
8094 break;
8095 case CPP_CHAR32:
8096 prefix = "U";
8097 break;
8098 }
8099
4bb8ca28 8100 if (val <= UCHAR_MAX && ISGRAPH (val))
c22cacf3 8101 message = catenate_messages (gmsgid, " before %s'%c'");
4bb8ca28 8102 else
c22cacf3 8103 message = catenate_messages (gmsgid, " before %s'\\x%x'");
0a3ee0fd 8104
b6baa67d 8105 error (message, prefix, val);
0a3ee0fd
GDR
8106 free (message);
8107 message = NULL;
4bb8ca28 8108 }
b8698a0f
L
8109 else if (token_type == CPP_STRING
8110 || token_type == CPP_WSTRING
cfc93532 8111 || token_type == CPP_STRING16
2c6e3f55
JJ
8112 || token_type == CPP_STRING32
8113 || token_type == CPP_UTF8STRING)
4b794eaf 8114 message = catenate_messages (gmsgid, " before string constant");
cfc93532 8115 else if (token_type == CPP_NUMBER)
4b794eaf 8116 message = catenate_messages (gmsgid, " before numeric constant");
cfc93532 8117 else if (token_type == CPP_NAME)
0a3ee0fd 8118 {
4b794eaf 8119 message = catenate_messages (gmsgid, " before %qE");
c51a1ba9 8120 error (message, value);
0a3ee0fd
GDR
8121 free (message);
8122 message = NULL;
8123 }
cfc93532 8124 else if (token_type == CPP_PRAGMA)
bc4071dd 8125 message = catenate_messages (gmsgid, " before %<#pragma%>");
cfc93532 8126 else if (token_type == CPP_PRAGMA_EOL)
bc4071dd 8127 message = catenate_messages (gmsgid, " before end of line");
cfc93532 8128 else if (token_type < N_TTYPES)
0a3ee0fd 8129 {
4b794eaf 8130 message = catenate_messages (gmsgid, " before %qs token");
cfc93532 8131 error (message, cpp_type2name (token_type, token_flags));
0a3ee0fd
GDR
8132 free (message);
8133 message = NULL;
8134 }
4bb8ca28 8135 else
4b794eaf 8136 error (gmsgid);
0a3ee0fd
GDR
8137
8138 if (message)
8139 {
8140 error (message);
8141 free (message);
8142 }
c22cacf3 8143#undef catenate_messages
4bb8ca28
MM
8144}
8145
87cf0651
SB
8146/* Mapping for cpp message reasons to the options that enable them. */
8147
8148struct reason_option_codes_t
8149{
8150 const int reason; /* cpplib message reason. */
8151 const int option_code; /* gcc option that controls this message. */
8152};
8153
8154static const struct reason_option_codes_t option_codes[] = {
8155 {CPP_W_DEPRECATED, OPT_Wdeprecated},
8156 {CPP_W_COMMENTS, OPT_Wcomments},
8157 {CPP_W_TRIGRAPHS, OPT_Wtrigraphs},
8158 {CPP_W_MULTICHAR, OPT_Wmultichar},
8159 {CPP_W_TRADITIONAL, OPT_Wtraditional},
8160 {CPP_W_LONG_LONG, OPT_Wlong_long},
8161 {CPP_W_ENDIF_LABELS, OPT_Wendif_labels},
8162 {CPP_W_VARIADIC_MACROS, OPT_Wvariadic_macros},
8163 {CPP_W_BUILTIN_MACRO_REDEFINED, OPT_Wbuiltin_macro_redefined},
8164 {CPP_W_UNDEF, OPT_Wundef},
8165 {CPP_W_UNUSED_MACROS, OPT_Wunused_macros},
8166 {CPP_W_CXX_OPERATOR_NAMES, OPT_Wc___compat},
8167 {CPP_W_NORMALIZE, OPT_Wnormalized_},
8168 {CPP_W_INVALID_PCH, OPT_Winvalid_pch},
8169 {CPP_W_WARNING_DIRECTIVE, OPT_Wcpp},
8170 {CPP_W_NONE, 0}
8171};
8172
8173/* Return the gcc option code associated with the reason for a cpp
8174 message, or 0 if none. */
8175
8176static int
8177c_option_controlling_cpp_error (int reason)
8178{
8179 const struct reason_option_codes_t *entry;
8180
8181 for (entry = option_codes; entry->reason != CPP_W_NONE; entry++)
8182 {
8183 if (entry->reason == reason)
8184 return entry->option_code;
8185 }
8186 return 0;
8187}
8188
148e4216 8189/* Callback from cpp_error for PFILE to print diagnostics from the
87cf0651
SB
8190 preprocessor. The diagnostic is of type LEVEL, with REASON set
8191 to the reason code if LEVEL is represents a warning, at location
148e4216
JM
8192 LOCATION unless this is after lexing and the compiler's location
8193 should be used instead, with column number possibly overridden by
8194 COLUMN_OVERRIDE if not zero; MSG is the translated message and AP
8195 the arguments. Returns true if a diagnostic was emitted, false
8196 otherwise. */
8197
8198bool
87cf0651 8199c_cpp_error (cpp_reader *pfile ATTRIBUTE_UNUSED, int level, int reason,
148e4216
JM
8200 location_t location, unsigned int column_override,
8201 const char *msg, va_list *ap)
8202{
8203 diagnostic_info diagnostic;
8204 diagnostic_t dlevel;
5f0f4a3b 8205 bool save_warn_system_headers = global_dc->warn_system_headers;
148e4216
JM
8206 bool ret;
8207
8208 switch (level)
8209 {
8210 case CPP_DL_WARNING_SYSHDR:
8211 if (flag_no_output)
8212 return false;
5f0f4a3b 8213 global_dc->warn_system_headers = 1;
148e4216
JM
8214 /* Fall through. */
8215 case CPP_DL_WARNING:
8216 if (flag_no_output)
8217 return false;
8218 dlevel = DK_WARNING;
8219 break;
8220 case CPP_DL_PEDWARN:
8221 if (flag_no_output && !flag_pedantic_errors)
8222 return false;
8223 dlevel = DK_PEDWARN;
8224 break;
8225 case CPP_DL_ERROR:
8226 dlevel = DK_ERROR;
8227 break;
8228 case CPP_DL_ICE:
8229 dlevel = DK_ICE;
8230 break;
8231 case CPP_DL_NOTE:
8232 dlevel = DK_NOTE;
8233 break;
47580d22
JM
8234 case CPP_DL_FATAL:
8235 dlevel = DK_FATAL;
8236 break;
148e4216
JM
8237 default:
8238 gcc_unreachable ();
8239 }
8240 if (done_lexing)
8241 location = input_location;
8242 diagnostic_set_info_translated (&diagnostic, msg, ap,
8243 location, dlevel);
8244 if (column_override)
8245 diagnostic_override_column (&diagnostic, column_override);
87cf0651
SB
8246 diagnostic_override_option_index (&diagnostic,
8247 c_option_controlling_cpp_error (reason));
148e4216
JM
8248 ret = report_diagnostic (&diagnostic);
8249 if (level == CPP_DL_WARNING_SYSHDR)
5f0f4a3b 8250 global_dc->warn_system_headers = save_warn_system_headers;
148e4216
JM
8251 return ret;
8252}
8253
c5ff069d
ZW
8254/* Convert a character from the host to the target execution character
8255 set. cpplib handles this, mostly. */
8256
8257HOST_WIDE_INT
8258c_common_to_target_charset (HOST_WIDE_INT c)
8259{
8260 /* Character constants in GCC proper are sign-extended under -fsigned-char,
8261 zero-extended under -fno-signed-char. cpplib insists that characters
8262 and character constants are always unsigned. Hence we must convert
8263 back and forth. */
8264 cppchar_t uc = ((cppchar_t)c) & ((((cppchar_t)1) << CHAR_BIT)-1);
8265
8266 uc = cpp_host_to_exec_charset (parse_in, uc);
8267
8268 if (flag_signed_char)
8269 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE)
8270 >> (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE);
8271 else
8272 return uc;
8273}
8274
ee8a6a3e 8275/* Build the result of __builtin_offsetof. EXPR is a nested sequence of
6d4d7b0e
PB
8276 component references, with STOP_REF, or alternatively an INDIRECT_REF of
8277 NULL, at the bottom; much like the traditional rendering of offsetof as a
8278 macro. Returns the folded and properly cast result. */
ee8a6a3e
RH
8279
8280static tree
6d4d7b0e 8281fold_offsetof_1 (tree expr, tree stop_ref)
ee8a6a3e
RH
8282{
8283 enum tree_code code = PLUS_EXPR;
8284 tree base, off, t;
8285
6d4d7b0e
PB
8286 if (expr == stop_ref && TREE_CODE (expr) != ERROR_MARK)
8287 return size_zero_node;
8288
ee8a6a3e
RH
8289 switch (TREE_CODE (expr))
8290 {
8291 case ERROR_MARK:
8292 return expr;
8293
545b7d8c
VR
8294 case VAR_DECL:
8295 error ("cannot apply %<offsetof%> to static data member %qD", expr);
8296 return error_mark_node;
8297
6d4d7b0e 8298 case CALL_EXPR:
8d5f60ac 8299 case TARGET_EXPR:
6d4d7b0e
PB
8300 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
8301 return error_mark_node;
8302
6d4d7b0e
PB
8303 case NOP_EXPR:
8304 case INDIRECT_REF:
61c3c490
DS
8305 if (!integer_zerop (TREE_OPERAND (expr, 0)))
8306 {
8307 error ("cannot apply %<offsetof%> to a non constant address");
8308 return error_mark_node;
8309 }
8310 return size_zero_node;
6d4d7b0e 8311
ee8a6a3e 8312 case COMPONENT_REF:
6d4d7b0e 8313 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
ee8a6a3e
RH
8314 if (base == error_mark_node)
8315 return base;
8316
8317 t = TREE_OPERAND (expr, 1);
8318 if (DECL_C_BIT_FIELD (t))
8319 {
8320 error ("attempt to take address of bit-field structure "
c51a1ba9 8321 "member %qD", t);
ee8a6a3e
RH
8322 return error_mark_node;
8323 }
db3927fb
AH
8324 off = size_binop_loc (input_location, PLUS_EXPR, DECL_FIELD_OFFSET (t),
8325 size_int (tree_low_cst (DECL_FIELD_BIT_OFFSET (t),
8326 1)
8327 / BITS_PER_UNIT));
ee8a6a3e
RH
8328 break;
8329
8330 case ARRAY_REF:
6d4d7b0e 8331 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
ee8a6a3e
RH
8332 if (base == error_mark_node)
8333 return base;
8334
8335 t = TREE_OPERAND (expr, 1);
8336 if (TREE_CODE (t) == INTEGER_CST && tree_int_cst_sgn (t) < 0)
8337 {
8338 code = MINUS_EXPR;
db3927fb 8339 t = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (t), t);
ee8a6a3e
RH
8340 }
8341 t = convert (sizetype, t);
8342 off = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (TREE_TYPE (expr)), t);
61c3c490
DS
8343
8344 /* Check if the offset goes beyond the upper bound of the array. */
d32599a6
JJ
8345 if (code == PLUS_EXPR && TREE_CODE (t) == INTEGER_CST)
8346 {
8347 tree upbound = array_ref_up_bound (expr);
8348 if (upbound != NULL_TREE
8349 && TREE_CODE (upbound) == INTEGER_CST
8350 && !tree_int_cst_equal (upbound,
8351 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
8352 {
8353 upbound = size_binop (PLUS_EXPR, upbound,
8354 build_int_cst (TREE_TYPE (upbound), 1));
8355 if (tree_int_cst_lt (upbound, t))
8356 {
8357 tree v;
8358
8359 for (v = TREE_OPERAND (expr, 0);
8360 TREE_CODE (v) == COMPONENT_REF;
8361 v = TREE_OPERAND (v, 0))
8362 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v, 0)))
8363 == RECORD_TYPE)
8364 {
8365 tree fld_chain = TREE_CHAIN (TREE_OPERAND (v, 1));
8366 for (; fld_chain; fld_chain = TREE_CHAIN (fld_chain))
8367 if (TREE_CODE (fld_chain) == FIELD_DECL)
8368 break;
8369
8370 if (fld_chain)
8371 break;
8372 }
8373 /* Don't warn if the array might be considered a poor
8374 man's flexible array member with a very permissive
8375 definition thereof. */
8376 if (TREE_CODE (v) == ARRAY_REF
8377 || TREE_CODE (v) == COMPONENT_REF)
8378 warning (OPT_Warray_bounds,
8379 "index %E denotes an offset "
8380 "greater than size of %qT",
8381 t, TREE_TYPE (TREE_OPERAND (expr, 0)));
8382 }
8383 }
8384 }
ee8a6a3e
RH
8385 break;
8386
1916c916
VR
8387 case COMPOUND_EXPR:
8388 /* Handle static members of volatile structs. */
8389 t = TREE_OPERAND (expr, 1);
8390 gcc_assert (TREE_CODE (t) == VAR_DECL);
8391 return fold_offsetof_1 (t, stop_ref);
8392
ee8a6a3e 8393 default:
366de0ce 8394 gcc_unreachable ();
ee8a6a3e
RH
8395 }
8396
8397 return size_binop (code, base, off);
8398}
8399
8400tree
6d4d7b0e 8401fold_offsetof (tree expr, tree stop_ref)
ee8a6a3e
RH
8402{
8403 /* Convert back from the internal sizetype to size_t. */
6d4d7b0e 8404 return convert (size_type_node, fold_offsetof_1 (expr, stop_ref));
ee8a6a3e
RH
8405}
8406
d166d4c3
AK
8407/* Warn for A ?: C expressions (with B omitted) where A is a boolean
8408 expression, because B will always be true. */
8409
8410void
8411warn_for_omitted_condop (location_t location, tree cond)
8412{
8413 if (truth_value_p (TREE_CODE (cond)))
8414 warning_at (location, OPT_Wparentheses,
8415 "the omitted middle operand in ?: will always be %<true%>, "
8416 "suggest explicit middle operand");
8417}
8418
37dc0d8d 8419/* Print an error message for an invalid lvalue. USE says
5ae9ba3e
MM
8420 how the lvalue is being used and so selects the error message. */
8421
37dc0d8d
JM
8422void
8423lvalue_error (enum lvalue_use use)
5ae9ba3e 8424{
37dc0d8d 8425 switch (use)
5ae9ba3e 8426 {
37dc0d8d 8427 case lv_assign:
5d352b2d 8428 error ("lvalue required as left operand of assignment");
37dc0d8d
JM
8429 break;
8430 case lv_increment:
5d352b2d 8431 error ("lvalue required as increment operand");
37dc0d8d
JM
8432 break;
8433 case lv_decrement:
5d352b2d 8434 error ("lvalue required as decrement operand");
37dc0d8d
JM
8435 break;
8436 case lv_addressof:
5d352b2d 8437 error ("lvalue required as unary %<&%> operand");
37dc0d8d
JM
8438 break;
8439 case lv_asm:
5d352b2d 8440 error ("lvalue required in asm statement");
37dc0d8d
JM
8441 break;
8442 default:
8443 gcc_unreachable ();
5ae9ba3e 8444 }
5ae9ba3e 8445}
aab038d5
RH
8446\f
8447/* *PTYPE is an incomplete array. Complete it with a domain based on
8448 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
8449 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8450 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
8451
8452int
8453complete_array_type (tree *ptype, tree initial_value, bool do_default)
8454{
8455 tree maxindex, type, main_type, elt, unqual_elt;
8456 int failure = 0, quals;
06d40de8 8457 hashval_t hashcode = 0;
aab038d5
RH
8458
8459 maxindex = size_zero_node;
8460 if (initial_value)
8461 {
8462 if (TREE_CODE (initial_value) == STRING_CST)
8463 {
8464 int eltsize
8465 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
8466 maxindex = size_int (TREE_STRING_LENGTH (initial_value)/eltsize - 1);
8467 }
8468 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
8469 {
4038c495 8470 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (initial_value);
aab038d5 8471
4038c495 8472 if (VEC_empty (constructor_elt, v))
aab038d5
RH
8473 {
8474 if (pedantic)
8475 failure = 3;
8476 maxindex = integer_minus_one_node;
8477 }
8478 else
8479 {
8480 tree curindex;
4038c495
GB
8481 unsigned HOST_WIDE_INT cnt;
8482 constructor_elt *ce;
cff7525f 8483 bool fold_p = false;
aab038d5 8484
4038c495 8485 if (VEC_index (constructor_elt, v, 0)->index)
db3927fb
AH
8486 maxindex = fold_convert_loc (input_location, sizetype,
8487 VEC_index (constructor_elt,
8488 v, 0)->index);
aab038d5
RH
8489 curindex = maxindex;
8490
4038c495
GB
8491 for (cnt = 1;
8492 VEC_iterate (constructor_elt, v, cnt, ce);
8493 cnt++)
aab038d5 8494 {
cff7525f 8495 bool curfold_p = false;
4038c495 8496 if (ce->index)
cff7525f 8497 curindex = ce->index, curfold_p = true;
aab038d5 8498 else
cff7525f
JH
8499 {
8500 if (fold_p)
8501 curindex = fold_convert (sizetype, curindex);
db3927fb
AH
8502 curindex = size_binop (PLUS_EXPR, curindex,
8503 size_one_node);
cff7525f 8504 }
aab038d5 8505 if (tree_int_cst_lt (maxindex, curindex))
cff7525f 8506 maxindex = curindex, fold_p = curfold_p;
aab038d5 8507 }
cff7525f
JH
8508 if (fold_p)
8509 maxindex = fold_convert (sizetype, maxindex);
aab038d5
RH
8510 }
8511 }
8512 else
8513 {
8514 /* Make an error message unless that happened already. */
8515 if (initial_value != error_mark_node)
8516 failure = 1;
8517 }
8518 }
8519 else
8520 {
8521 failure = 2;
8522 if (!do_default)
8523 return failure;
8524 }
8525
8526 type = *ptype;
8527 elt = TREE_TYPE (type);
8528 quals = TYPE_QUALS (strip_array_types (elt));
8529 if (quals == 0)
8530 unqual_elt = elt;
8531 else
36c5e70a 8532 unqual_elt = c_build_qualified_type (elt, KEEP_QUAL_ADDR_SPACE (quals));
aab038d5
RH
8533
8534 /* Using build_distinct_type_copy and modifying things afterward instead
8535 of using build_array_type to create a new type preserves all of the
8536 TYPE_LANG_FLAG_? bits that the front end may have set. */
8537 main_type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
8538 TREE_TYPE (main_type) = unqual_elt;
8539 TYPE_DOMAIN (main_type) = build_index_type (maxindex);
8540 layout_type (main_type);
8541
06d40de8
DG
8542 /* Make sure we have the canonical MAIN_TYPE. */
8543 hashcode = iterative_hash_object (TYPE_HASH (unqual_elt), hashcode);
b8698a0f 8544 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (main_type)),
06d40de8
DG
8545 hashcode);
8546 main_type = type_hash_canon (hashcode, main_type);
8547
9ae165a0
DG
8548 /* Fix the canonical type. */
8549 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type))
8550 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type)))
8551 SET_TYPE_STRUCTURAL_EQUALITY (main_type);
8552 else if (TYPE_CANONICAL (TREE_TYPE (main_type)) != TREE_TYPE (main_type)
8553 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type))
8554 != TYPE_DOMAIN (main_type)))
b8698a0f 8555 TYPE_CANONICAL (main_type)
9ae165a0
DG
8556 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type)),
8557 TYPE_CANONICAL (TYPE_DOMAIN (main_type)));
8558 else
8559 TYPE_CANONICAL (main_type) = main_type;
8560
aab038d5
RH
8561 if (quals == 0)
8562 type = main_type;
8563 else
8564 type = c_build_qualified_type (main_type, quals);
8565
7bfcb402
JM
8566 if (COMPLETE_TYPE_P (type)
8567 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
8568 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
8569 {
8570 error ("size of array is too large");
8571 /* If we proceed with the array type as it is, we'll eventually
8572 crash in tree_low_cst(). */
8573 type = error_mark_node;
8574 }
8575
aab038d5
RH
8576 *ptype = type;
8577 return failure;
8578}
5ae9ba3e 8579
48ae6c13
RH
8580\f
8581/* Used to help initialize the builtin-types.def table. When a type of
8582 the correct size doesn't exist, use error_mark_node instead of NULL.
8583 The later results in segfaults even when a decl using the type doesn't
8584 get invoked. */
8585
8586tree
8587builtin_type_for_size (int size, bool unsignedp)
8588{
8589 tree type = lang_hooks.types.type_for_size (size, unsignedp);
8590 return type ? type : error_mark_node;
8591}
8592
8593/* A helper function for resolve_overloaded_builtin in resolving the
8594 overloaded __sync_ builtins. Returns a positive power of 2 if the
8595 first operand of PARAMS is a pointer to a supported data type.
8596 Returns 0 if an error is encountered. */
8597
8598static int
bbbbb16a 8599sync_resolve_size (tree function, VEC(tree,gc) *params)
48ae6c13
RH
8600{
8601 tree type;
8602 int size;
8603
bbbbb16a 8604 if (VEC_empty (tree, params))
48ae6c13
RH
8605 {
8606 error ("too few arguments to function %qE", function);
8607 return 0;
8608 }
8609
bbbbb16a 8610 type = TREE_TYPE (VEC_index (tree, params, 0));
48ae6c13
RH
8611 if (TREE_CODE (type) != POINTER_TYPE)
8612 goto incompatible;
8613
8614 type = TREE_TYPE (type);
8615 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
8616 goto incompatible;
8617
8618 size = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
a0274e3e 8619 if (size == 1 || size == 2 || size == 4 || size == 8 || size == 16)
48ae6c13
RH
8620 return size;
8621
8622 incompatible:
8623 error ("incompatible type for argument %d of %qE", 1, function);
8624 return 0;
8625}
8626
c22cacf3 8627/* A helper function for resolve_overloaded_builtin. Adds casts to
48ae6c13
RH
8628 PARAMS to make arguments match up with those of FUNCTION. Drops
8629 the variadic arguments at the end. Returns false if some error
8630 was encountered; true on success. */
8631
8632static bool
bbbbb16a 8633sync_resolve_params (tree orig_function, tree function, VEC(tree, gc) *params)
48ae6c13
RH
8634{
8635 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
8636 tree ptype;
bbbbb16a 8637 unsigned int parmnum;
48ae6c13
RH
8638
8639 /* We've declared the implementation functions to use "volatile void *"
8640 as the pointer parameter, so we shouldn't get any complaints from the
8641 call to check_function_arguments what ever type the user used. */
8642 arg_types = TREE_CHAIN (arg_types);
bbbbb16a 8643 ptype = TREE_TYPE (TREE_TYPE (VEC_index (tree, params, 0)));
48ae6c13
RH
8644
8645 /* For the rest of the values, we need to cast these to FTYPE, so that we
8646 don't get warnings for passing pointer types, etc. */
bbbbb16a 8647 parmnum = 0;
48ae6c13
RH
8648 while (arg_types != void_list_node)
8649 {
8650 tree val;
8651
bbbbb16a
ILT
8652 ++parmnum;
8653 if (VEC_length (tree, params) <= parmnum)
48ae6c13
RH
8654 {
8655 error ("too few arguments to function %qE", orig_function);
8656 return false;
8657 }
8658
8659 /* ??? Ideally for the first conversion we'd use convert_for_assignment
8660 so that we get warnings for anything that doesn't match the pointer
8661 type. This isn't portable across the C and C++ front ends atm. */
bbbbb16a 8662 val = VEC_index (tree, params, parmnum);
48ae6c13
RH
8663 val = convert (ptype, val);
8664 val = convert (TREE_VALUE (arg_types), val);
bbbbb16a 8665 VEC_replace (tree, params, parmnum, val);
48ae6c13
RH
8666
8667 arg_types = TREE_CHAIN (arg_types);
48ae6c13
RH
8668 }
8669
8670 /* The definition of these primitives is variadic, with the remaining
8671 being "an optional list of variables protected by the memory barrier".
8672 No clue what that's supposed to mean, precisely, but we consider all
8673 call-clobbered variables to be protected so we're safe. */
bbbbb16a 8674 VEC_truncate (tree, params, parmnum + 1);
48ae6c13
RH
8675
8676 return true;
8677}
8678
c22cacf3 8679/* A helper function for resolve_overloaded_builtin. Adds a cast to
48ae6c13
RH
8680 RESULT to make it match the type of the first pointer argument in
8681 PARAMS. */
8682
8683static tree
bbbbb16a 8684sync_resolve_return (tree first_param, tree result)
48ae6c13 8685{
bbbbb16a 8686 tree ptype = TREE_TYPE (TREE_TYPE (first_param));
99db1ef0 8687 ptype = TYPE_MAIN_VARIANT (ptype);
48ae6c13
RH
8688 return convert (ptype, result);
8689}
8690
8691/* Some builtin functions are placeholders for other expressions. This
8692 function should be called immediately after parsing the call expression
8693 before surrounding code has committed to the type of the expression.
8694
c2255bc4
AH
8695 LOC is the location of the builtin call.
8696
48ae6c13
RH
8697 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
8698 PARAMS is the argument list for the call. The return value is non-null
8699 when expansion is complete, and null if normal processing should
8700 continue. */
8701
8702tree
c2255bc4 8703resolve_overloaded_builtin (location_t loc, tree function, VEC(tree,gc) *params)
48ae6c13
RH
8704{
8705 enum built_in_function orig_code = DECL_FUNCTION_CODE (function);
58646b77
PB
8706 switch (DECL_BUILT_IN_CLASS (function))
8707 {
8708 case BUILT_IN_NORMAL:
8709 break;
8710 case BUILT_IN_MD:
8711 if (targetm.resolve_overloaded_builtin)
c2255bc4 8712 return targetm.resolve_overloaded_builtin (loc, function, params);
58646b77 8713 else
c22cacf3 8714 return NULL_TREE;
58646b77
PB
8715 default:
8716 return NULL_TREE;
8717 }
c22cacf3 8718
58646b77 8719 /* Handle BUILT_IN_NORMAL here. */
48ae6c13
RH
8720 switch (orig_code)
8721 {
8722 case BUILT_IN_FETCH_AND_ADD_N:
8723 case BUILT_IN_FETCH_AND_SUB_N:
8724 case BUILT_IN_FETCH_AND_OR_N:
8725 case BUILT_IN_FETCH_AND_AND_N:
8726 case BUILT_IN_FETCH_AND_XOR_N:
8727 case BUILT_IN_FETCH_AND_NAND_N:
8728 case BUILT_IN_ADD_AND_FETCH_N:
8729 case BUILT_IN_SUB_AND_FETCH_N:
8730 case BUILT_IN_OR_AND_FETCH_N:
8731 case BUILT_IN_AND_AND_FETCH_N:
8732 case BUILT_IN_XOR_AND_FETCH_N:
8733 case BUILT_IN_NAND_AND_FETCH_N:
8734 case BUILT_IN_BOOL_COMPARE_AND_SWAP_N:
8735 case BUILT_IN_VAL_COMPARE_AND_SWAP_N:
8736 case BUILT_IN_LOCK_TEST_AND_SET_N:
8737 case BUILT_IN_LOCK_RELEASE_N:
8738 {
8739 int n = sync_resolve_size (function, params);
bbbbb16a 8740 tree new_function, first_param, result;
48ae6c13
RH
8741
8742 if (n == 0)
8743 return error_mark_node;
8744
8745 new_function = built_in_decls[orig_code + exact_log2 (n) + 1];
8746 if (!sync_resolve_params (function, new_function, params))
8747 return error_mark_node;
8748
bbbbb16a 8749 first_param = VEC_index (tree, params, 0);
c2255bc4 8750 result = build_function_call_vec (loc, new_function, params, NULL);
48ae6c13
RH
8751 if (orig_code != BUILT_IN_BOOL_COMPARE_AND_SWAP_N
8752 && orig_code != BUILT_IN_LOCK_RELEASE_N)
bbbbb16a 8753 result = sync_resolve_return (first_param, result);
48ae6c13
RH
8754
8755 return result;
8756 }
8757
8758 default:
58646b77 8759 return NULL_TREE;
48ae6c13
RH
8760 }
8761}
8762
5bed876a
AH
8763/* Ignoring their sign, return true if two scalar types are the same. */
8764bool
8765same_scalar_type_ignoring_signedness (tree t1, tree t2)
8766{
8767 enum tree_code c1 = TREE_CODE (t1), c2 = TREE_CODE (t2);
8768
ab22c1fa
CF
8769 gcc_assert ((c1 == INTEGER_TYPE || c1 == REAL_TYPE || c1 == FIXED_POINT_TYPE)
8770 && (c2 == INTEGER_TYPE || c2 == REAL_TYPE
8771 || c2 == FIXED_POINT_TYPE));
5bed876a
AH
8772
8773 /* Equality works here because c_common_signed_type uses
8774 TYPE_MAIN_VARIANT. */
12753674
RE
8775 return c_common_signed_type (t1)
8776 == c_common_signed_type (t2);
5bed876a
AH
8777}
8778
104f8784
KG
8779/* Check for missing format attributes on function pointers. LTYPE is
8780 the new type or left-hand side type. RTYPE is the old type or
8781 right-hand side type. Returns TRUE if LTYPE is missing the desired
8782 attribute. */
8783
8784bool
8785check_missing_format_attribute (tree ltype, tree rtype)
8786{
8787 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
8788 tree ra;
8789
8790 for (ra = TYPE_ATTRIBUTES (ttr); ra; ra = TREE_CHAIN (ra))
8791 if (is_attribute_p ("format", TREE_PURPOSE (ra)))
8792 break;
8793 if (ra)
8794 {
8795 tree la;
8796 for (la = TYPE_ATTRIBUTES (ttl); la; la = TREE_CHAIN (la))
8797 if (is_attribute_p ("format", TREE_PURPOSE (la)))
8798 break;
8799 return !la;
8800 }
8801 else
8802 return false;
8803}
8804
ff6b6641
GDR
8805/* Subscripting with type char is likely to lose on a machine where
8806 chars are signed. So warn on any machine, but optionally. Don't
8807 warn for unsigned char since that type is safe. Don't warn for
8808 signed char because anyone who uses that must have done so
8809 deliberately. Furthermore, we reduce the false positive load by
8810 warning only for non-constant value of type char. */
8811
8812void
8813warn_array_subscript_with_type_char (tree index)
8814{
8815 if (TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node
8816 && TREE_CODE (index) != INTEGER_CST)
8817 warning (OPT_Wchar_subscripts, "array subscript has type %<char%>");
8818}
8819
2a67bec2
ILT
8820/* Implement -Wparentheses for the unexpected C precedence rules, to
8821 cover cases like x + y << z which readers are likely to
8822 misinterpret. We have seen an expression in which CODE is a binary
100d537d
MLI
8823 operator used to combine expressions ARG_LEFT and ARG_RIGHT, which
8824 before folding had CODE_LEFT and CODE_RIGHT. CODE_LEFT and
8825 CODE_RIGHT may be ERROR_MARK, which means that that side of the
8826 expression was not formed using a binary or unary operator, or it
8827 was enclosed in parentheses. */
2a67bec2
ILT
8828
8829void
100d537d 8830warn_about_parentheses (enum tree_code code,
fb3e178a 8831 enum tree_code code_left, tree arg_left,
100d537d 8832 enum tree_code code_right, tree arg_right)
2a67bec2
ILT
8833{
8834 if (!warn_parentheses)
8835 return;
8836
100d537d
MLI
8837 /* This macro tests that the expression ARG with original tree code
8838 CODE appears to be a boolean expression. or the result of folding a
8839 boolean expression. */
8840#define APPEARS_TO_BE_BOOLEAN_EXPR_P(CODE, ARG) \
8841 (truth_value_p (TREE_CODE (ARG)) \
8842 || TREE_CODE (TREE_TYPE (ARG)) == BOOLEAN_TYPE \
8843 /* Folding may create 0 or 1 integers from other expressions. */ \
8844 || ((CODE) != INTEGER_CST \
8845 && (integer_onep (ARG) || integer_zerop (ARG))))
8846
b8698a0f 8847 switch (code)
2a67bec2 8848 {
100d537d
MLI
8849 case LSHIFT_EXPR:
8850 if (code_left == PLUS_EXPR || code_right == PLUS_EXPR)
2a67bec2 8851 warning (OPT_Wparentheses,
100d537d
MLI
8852 "suggest parentheses around %<+%> inside %<<<%>");
8853 else if (code_left == MINUS_EXPR || code_right == MINUS_EXPR)
8854 warning (OPT_Wparentheses,
8855 "suggest parentheses around %<-%> inside %<<<%>");
8856 return;
2a67bec2 8857
100d537d
MLI
8858 case RSHIFT_EXPR:
8859 if (code_left == PLUS_EXPR || code_right == PLUS_EXPR)
2a67bec2 8860 warning (OPT_Wparentheses,
100d537d
MLI
8861 "suggest parentheses around %<+%> inside %<>>%>");
8862 else if (code_left == MINUS_EXPR || code_right == MINUS_EXPR)
8863 warning (OPT_Wparentheses,
8864 "suggest parentheses around %<-%> inside %<>>%>");
8865 return;
2a67bec2 8866
100d537d
MLI
8867 case TRUTH_ORIF_EXPR:
8868 if (code_left == TRUTH_ANDIF_EXPR || code_right == TRUTH_ANDIF_EXPR)
8869 warning (OPT_Wparentheses,
8870 "suggest parentheses around %<&&%> within %<||%>");
8871 return;
8872
8873 case BIT_IOR_EXPR:
2a67bec2
ILT
8874 if (code_left == BIT_AND_EXPR || code_left == BIT_XOR_EXPR
8875 || code_left == PLUS_EXPR || code_left == MINUS_EXPR
8876 || code_right == BIT_AND_EXPR || code_right == BIT_XOR_EXPR
8877 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
8878 warning (OPT_Wparentheses,
100d537d 8879 "suggest parentheses around arithmetic in operand of %<|%>");
2a67bec2 8880 /* Check cases like x|y==z */
100d537d
MLI
8881 else if (TREE_CODE_CLASS (code_left) == tcc_comparison
8882 || TREE_CODE_CLASS (code_right) == tcc_comparison)
2a67bec2 8883 warning (OPT_Wparentheses,
100d537d
MLI
8884 "suggest parentheses around comparison in operand of %<|%>");
8885 /* Check cases like !x | y */
8886 else if (code_left == TRUTH_NOT_EXPR
8887 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
a231ffe5 8888 warning (OPT_Wparentheses, "suggest parentheses around operand of "
100d537d
MLI
8889 "%<!%> or change %<|%> to %<||%> or %<!%> to %<~%>");
8890 return;
2a67bec2 8891
100d537d 8892 case BIT_XOR_EXPR:
2a67bec2
ILT
8893 if (code_left == BIT_AND_EXPR
8894 || code_left == PLUS_EXPR || code_left == MINUS_EXPR
8895 || code_right == BIT_AND_EXPR
8896 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
8897 warning (OPT_Wparentheses,
100d537d 8898 "suggest parentheses around arithmetic in operand of %<^%>");
2a67bec2 8899 /* Check cases like x^y==z */
100d537d
MLI
8900 else if (TREE_CODE_CLASS (code_left) == tcc_comparison
8901 || TREE_CODE_CLASS (code_right) == tcc_comparison)
2a67bec2 8902 warning (OPT_Wparentheses,
100d537d
MLI
8903 "suggest parentheses around comparison in operand of %<^%>");
8904 return;
2a67bec2 8905
100d537d
MLI
8906 case BIT_AND_EXPR:
8907 if (code_left == PLUS_EXPR || code_right == PLUS_EXPR)
8908 warning (OPT_Wparentheses,
8909 "suggest parentheses around %<+%> in operand of %<&%>");
8910 else if (code_left == MINUS_EXPR || code_right == MINUS_EXPR)
2a67bec2 8911 warning (OPT_Wparentheses,
100d537d 8912 "suggest parentheses around %<-%> in operand of %<&%>");
2a67bec2 8913 /* Check cases like x&y==z */
100d537d
MLI
8914 else if (TREE_CODE_CLASS (code_left) == tcc_comparison
8915 || TREE_CODE_CLASS (code_right) == tcc_comparison)
2a67bec2 8916 warning (OPT_Wparentheses,
100d537d
MLI
8917 "suggest parentheses around comparison in operand of %<&%>");
8918 /* Check cases like !x & y */
8919 else if (code_left == TRUTH_NOT_EXPR
8920 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
a231ffe5 8921 warning (OPT_Wparentheses, "suggest parentheses around operand of "
100d537d
MLI
8922 "%<!%> or change %<&%> to %<&&%> or %<!%> to %<~%>");
8923 return;
2a67bec2 8924
100d537d 8925 case EQ_EXPR:
e7917d06
DM
8926 if (TREE_CODE_CLASS (code_left) == tcc_comparison
8927 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8928 warning (OPT_Wparentheses,
100d537d
MLI
8929 "suggest parentheses around comparison in operand of %<==%>");
8930 return;
8931 case NE_EXPR:
8932 if (TREE_CODE_CLASS (code_left) == tcc_comparison
8933 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8934 warning (OPT_Wparentheses,
8935 "suggest parentheses around comparison in operand of %<!=%>");
8936 return;
8937
8938 default:
8939 if (TREE_CODE_CLASS (code) == tcc_comparison
8940 && ((TREE_CODE_CLASS (code_left) == tcc_comparison
fb3e178a
JJ
8941 && code_left != NE_EXPR && code_left != EQ_EXPR
8942 && INTEGRAL_TYPE_P (TREE_TYPE (arg_left)))
100d537d 8943 || (TREE_CODE_CLASS (code_right) == tcc_comparison
fb3e178a
JJ
8944 && code_right != NE_EXPR && code_right != EQ_EXPR
8945 && INTEGRAL_TYPE_P (TREE_TYPE (arg_right)))))
100d537d 8946 warning (OPT_Wparentheses, "comparisons like %<X<=Y<=Z%> do not "
e7917d06 8947 "have their mathematical meaning");
100d537d 8948 return;
e7917d06 8949 }
100d537d 8950#undef NOT_A_BOOLEAN_EXPR_P
2a67bec2
ILT
8951}
8952
c616e51b
MLI
8953/* If LABEL (a LABEL_DECL) has not been used, issue a warning. */
8954
8955void
8956warn_for_unused_label (tree label)
8957{
8958 if (!TREE_USED (label))
8959 {
8960 if (DECL_INITIAL (label))
8961 warning (OPT_Wunused_label, "label %q+D defined but not used", label);
8962 else
8963 warning (OPT_Wunused_label, "label %q+D declared but not defined", label);
8964 }
8965}
ff6b6641 8966
1f1d5130
MS
8967#ifndef TARGET_HAS_TARGETCM
8968struct gcc_targetcm targetcm = TARGETCM_INITIALIZER;
8969#endif
8970
c9f9eb5d
AH
8971/* Warn for division by zero according to the value of DIVISOR. LOC
8972 is the location of the division operator. */
2e9cb75e
MLI
8973
8974void
c9f9eb5d 8975warn_for_div_by_zero (location_t loc, tree divisor)
2e9cb75e 8976{
ab22c1fa
CF
8977 /* If DIVISOR is zero, and has integral or fixed-point type, issue a warning
8978 about division by zero. Do not issue a warning if DIVISOR has a
2e9cb75e
MLI
8979 floating-point type, since we consider 0.0/0.0 a valid way of
8980 generating a NaN. */
7d882b83 8981 if (c_inhibit_evaluation_warnings == 0
ab22c1fa 8982 && (integer_zerop (divisor) || fixed_zerop (divisor)))
c9f9eb5d 8983 warning_at (loc, OPT_Wdiv_by_zero, "division by zero");
2e9cb75e
MLI
8984}
8985
2d12797c
MLI
8986/* Subroutine of build_binary_op. Give warnings for comparisons
8987 between signed and unsigned quantities that may fail. Do the
8988 checking based on the original operand trees ORIG_OP0 and ORIG_OP1,
8989 so that casts will be considered, but default promotions won't
ba47d38d
AH
8990 be.
8991
8992 LOCATION is the location of the comparison operator.
2d12797c
MLI
8993
8994 The arguments of this function map directly to local variables
8995 of build_binary_op. */
8996
b8698a0f 8997void
ba47d38d 8998warn_for_sign_compare (location_t location,
b8698a0f
L
8999 tree orig_op0, tree orig_op1,
9000 tree op0, tree op1,
2d12797c
MLI
9001 tree result_type, enum tree_code resultcode)
9002{
9003 int op0_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op0));
9004 int op1_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op1));
9005 int unsignedp0, unsignedp1;
b8698a0f 9006
2d12797c
MLI
9007 /* In C++, check for comparison of different enum types. */
9008 if (c_dialect_cxx()
9009 && TREE_CODE (TREE_TYPE (orig_op0)) == ENUMERAL_TYPE
9010 && TREE_CODE (TREE_TYPE (orig_op1)) == ENUMERAL_TYPE
9011 && TYPE_MAIN_VARIANT (TREE_TYPE (orig_op0))
ead51d36 9012 != TYPE_MAIN_VARIANT (TREE_TYPE (orig_op1)))
2d12797c 9013 {
ba47d38d
AH
9014 warning_at (location,
9015 OPT_Wsign_compare, "comparison between types %qT and %qT",
9016 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1));
2d12797c
MLI
9017 }
9018
9019 /* Do not warn if the comparison is being done in a signed type,
9020 since the signed type will only be chosen if it can represent
9021 all the values of the unsigned type. */
9022 if (!TYPE_UNSIGNED (result_type))
9023 /* OK */;
9024 /* Do not warn if both operands are unsigned. */
9025 else if (op0_signed == op1_signed)
9026 /* OK */;
9027 else
9028 {
ead51d36 9029 tree sop, uop, base_type;
2d12797c 9030 bool ovf;
ead51d36 9031
2d12797c
MLI
9032 if (op0_signed)
9033 sop = orig_op0, uop = orig_op1;
b8698a0f 9034 else
2d12797c
MLI
9035 sop = orig_op1, uop = orig_op0;
9036
b8698a0f 9037 STRIP_TYPE_NOPS (sop);
2d12797c 9038 STRIP_TYPE_NOPS (uop);
ead51d36
JJ
9039 base_type = (TREE_CODE (result_type) == COMPLEX_TYPE
9040 ? TREE_TYPE (result_type) : result_type);
2d12797c
MLI
9041
9042 /* Do not warn if the signed quantity is an unsuffixed integer
9043 literal (or some static constant expression involving such
9044 literals or a conditional expression involving such literals)
9045 and it is non-negative. */
9046 if (tree_expr_nonnegative_warnv_p (sop, &ovf))
9047 /* OK */;
9048 /* Do not warn if the comparison is an equality operation, the
9049 unsigned quantity is an integral constant, and it would fit
9050 in the result if the result were signed. */
9051 else if (TREE_CODE (uop) == INTEGER_CST
9052 && (resultcode == EQ_EXPR || resultcode == NE_EXPR)
ead51d36 9053 && int_fits_type_p (uop, c_common_signed_type (base_type)))
2d12797c
MLI
9054 /* OK */;
9055 /* In C, do not warn if the unsigned quantity is an enumeration
9056 constant and its maximum value would fit in the result if the
9057 result were signed. */
9058 else if (!c_dialect_cxx() && TREE_CODE (uop) == INTEGER_CST
9059 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYPE
9060 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (uop)),
ead51d36 9061 c_common_signed_type (base_type)))
2d12797c 9062 /* OK */;
b8698a0f 9063 else
ba47d38d 9064 warning_at (location,
b8698a0f 9065 OPT_Wsign_compare,
ba47d38d 9066 "comparison between signed and unsigned integer expressions");
2d12797c 9067 }
b8698a0f 9068
2d12797c
MLI
9069 /* Warn if two unsigned values are being compared in a size larger
9070 than their original size, and one (and only one) is the result of
9071 a `~' operator. This comparison will always fail.
b8698a0f 9072
2d12797c
MLI
9073 Also warn if one operand is a constant, and the constant does not
9074 have all bits set that are set in the ~ operand when it is
9075 extended. */
9076
9077 op0 = get_narrower (op0, &unsignedp0);
9078 op1 = get_narrower (op1, &unsignedp1);
b8698a0f 9079
2d12797c
MLI
9080 if ((TREE_CODE (op0) == BIT_NOT_EXPR)
9081 ^ (TREE_CODE (op1) == BIT_NOT_EXPR))
9082 {
9083 if (TREE_CODE (op0) == BIT_NOT_EXPR)
9084 op0 = get_narrower (TREE_OPERAND (op0, 0), &unsignedp0);
9085 if (TREE_CODE (op1) == BIT_NOT_EXPR)
9086 op1 = get_narrower (TREE_OPERAND (op1, 0), &unsignedp1);
9087
9088 if (host_integerp (op0, 0) || host_integerp (op1, 0))
9089 {
9090 tree primop;
9091 HOST_WIDE_INT constant, mask;
9092 int unsignedp;
9093 unsigned int bits;
b8698a0f 9094
2d12797c
MLI
9095 if (host_integerp (op0, 0))
9096 {
9097 primop = op1;
9098 unsignedp = unsignedp1;
9099 constant = tree_low_cst (op0, 0);
9100 }
9101 else
9102 {
9103 primop = op0;
9104 unsignedp = unsignedp0;
9105 constant = tree_low_cst (op1, 0);
9106 }
b8698a0f 9107
2d12797c
MLI
9108 bits = TYPE_PRECISION (TREE_TYPE (primop));
9109 if (bits < TYPE_PRECISION (result_type)
9110 && bits < HOST_BITS_PER_LONG && unsignedp)
9111 {
9112 mask = (~ (HOST_WIDE_INT) 0) << bits;
9113 if ((mask & constant) != mask)
9114 {
9115 if (constant == 0)
b8698a0f 9116 warning (OPT_Wsign_compare,
2d12797c
MLI
9117 "promoted ~unsigned is always non-zero");
9118 else
b8698a0f 9119 warning_at (location, OPT_Wsign_compare,
ba47d38d 9120 "comparison of promoted ~unsigned with constant");
2d12797c
MLI
9121 }
9122 }
9123 }
9124 else if (unsignedp0 && unsignedp1
9125 && (TYPE_PRECISION (TREE_TYPE (op0))
9126 < TYPE_PRECISION (result_type))
9127 && (TYPE_PRECISION (TREE_TYPE (op1))
9128 < TYPE_PRECISION (result_type)))
ba47d38d 9129 warning_at (location, OPT_Wsign_compare,
2d12797c
MLI
9130 "comparison of promoted ~unsigned with unsigned");
9131 }
9132}
9133
d0940d56
DS
9134/* Setup a TYPE_DECL node as a typedef representation.
9135
9136 X is a TYPE_DECL for a typedef statement. Create a brand new
9137 ..._TYPE node (which will be just a variant of the existing
9138 ..._TYPE node with identical properties) and then install X
9139 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
9140
9141 The whole point here is to end up with a situation where each
9142 and every ..._TYPE node the compiler creates will be uniquely
9143 associated with AT MOST one node representing a typedef name.
9144 This way, even though the compiler substitutes corresponding
9145 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
9146 early on, later parts of the compiler can always do the reverse
9147 translation and get back the corresponding typedef name. For
9148 example, given:
9149
9150 typedef struct S MY_TYPE;
9151 MY_TYPE object;
9152
9153 Later parts of the compiler might only know that `object' was of
9154 type `struct S' if it were not for code just below. With this
9155 code however, later parts of the compiler see something like:
9156
9157 struct S' == struct S
9158 typedef struct S' MY_TYPE;
9159 struct S' object;
9160
9161 And they can then deduce (from the node for type struct S') that
9162 the original object declaration was:
9163
9164 MY_TYPE object;
9165
9166 Being able to do this is important for proper support of protoize,
9167 and also for generating precise symbolic debugging information
9168 which takes full account of the programmer's (typedef) vocabulary.
9169
9170 Obviously, we don't want to generate a duplicate ..._TYPE node if
9171 the TYPE_DECL node that we are now processing really represents a
9172 standard built-in type. */
9173
9174void
9175set_underlying_type (tree x)
9176{
9177 if (x == error_mark_node)
9178 return;
9179 if (DECL_IS_BUILTIN (x))
9180 {
9181 if (TYPE_NAME (TREE_TYPE (x)) == 0)
9182 TYPE_NAME (TREE_TYPE (x)) = x;
9183 }
9184 else if (TREE_TYPE (x) != error_mark_node
9185 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
9186 {
9187 tree tt = TREE_TYPE (x);
9188 DECL_ORIGINAL_TYPE (x) = tt;
9189 tt = build_variant_type_copy (tt);
9190 TYPE_STUB_DECL (tt) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
9191 TYPE_NAME (tt) = x;
9192 TREE_USED (tt) = TREE_USED (x);
9193 TREE_TYPE (x) = tt;
9194 }
9195}
9196
b646ba3f
DS
9197/* Record the types used by the current global variable declaration
9198 being parsed, so that we can decide later to emit their debug info.
9199 Those types are in types_used_by_cur_var_decl, and we are going to
9200 store them in the types_used_by_vars_hash hash table.
9201 DECL is the declaration of the global variable that has been parsed. */
9202
9203void
9204record_types_used_by_current_var_decl (tree decl)
9205{
9206 gcc_assert (decl && DECL_P (decl) && TREE_STATIC (decl));
9207
bc87224e 9208 while (!VEC_empty (tree, types_used_by_cur_var_decl))
b646ba3f 9209 {
bc87224e
NF
9210 tree type = VEC_pop (tree, types_used_by_cur_var_decl);
9211 types_used_by_var_decl_insert (type, decl);
b646ba3f
DS
9212 }
9213}
9214
c166b898
ILT
9215/* The C and C++ parsers both use vectors to hold function arguments.
9216 For efficiency, we keep a cache of unused vectors. This is the
9217 cache. */
9218
9219typedef VEC(tree,gc)* tree_gc_vec;
9220DEF_VEC_P(tree_gc_vec);
9221DEF_VEC_ALLOC_P(tree_gc_vec,gc);
9222static GTY((deletable)) VEC(tree_gc_vec,gc) *tree_vector_cache;
9223
9224/* Return a new vector from the cache. If the cache is empty,
9225 allocate a new vector. These vectors are GC'ed, so it is OK if the
9226 pointer is not released.. */
9227
9228VEC(tree,gc) *
9229make_tree_vector (void)
9230{
9231 if (!VEC_empty (tree_gc_vec, tree_vector_cache))
9232 return VEC_pop (tree_gc_vec, tree_vector_cache);
9233 else
9234 {
9235 /* Passing 0 to VEC_alloc returns NULL, and our callers require
9236 that we always return a non-NULL value. The vector code uses
9237 4 when growing a NULL vector, so we do too. */
9238 return VEC_alloc (tree, gc, 4);
9239 }
9240}
9241
9242/* Release a vector of trees back to the cache. */
9243
9244void
9245release_tree_vector (VEC(tree,gc) *vec)
9246{
9247 if (vec != NULL)
9248 {
9249 VEC_truncate (tree, vec, 0);
9250 VEC_safe_push (tree_gc_vec, gc, tree_vector_cache, vec);
9251 }
9252}
9253
9254/* Get a new tree vector holding a single tree. */
9255
9256VEC(tree,gc) *
9257make_tree_vector_single (tree t)
9258{
9259 VEC(tree,gc) *ret = make_tree_vector ();
9260 VEC_quick_push (tree, ret, t);
9261 return ret;
9262}
9263
9264/* Get a new tree vector which is a copy of an existing one. */
9265
9266VEC(tree,gc) *
9267make_tree_vector_copy (const VEC(tree,gc) *orig)
9268{
9269 VEC(tree,gc) *ret;
9270 unsigned int ix;
9271 tree t;
9272
9273 ret = make_tree_vector ();
9274 VEC_reserve (tree, gc, ret, VEC_length (tree, orig));
9275 for (ix = 0; VEC_iterate (tree, orig, ix, t); ++ix)
9276 VEC_quick_push (tree, ret, t);
9277 return ret;
9278}
9279
39dabefd 9280#include "gt-c-family-c-common.h"