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