Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / c-family / c-common.c
blobcf2fe17ee66f5ff42de1154d0b96da53defa5220
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
4 Free Software Foundation, Inc.
6 This file is part of GCC.
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.
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.
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/>. */
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 "tm_p.h"
34 #include "obstack.h"
35 #include "cpplib.h"
36 #include "target.h"
37 #include "langhooks.h"
38 #include "tree-inline.h"
39 #include "toplev.h"
40 #include "diagnostic.h"
41 #include "tree-iterator.h"
42 #include "hashtab.h"
43 #include "tree-mudflap.h"
44 #include "opts.h"
45 #include "cgraph.h"
46 #include "target-def.h"
47 #include "libfuncs.h"
49 cpp_reader *parse_in; /* Declared in c-pragma.h. */
51 /* The following symbols are subsumed in the c_global_trees array, and
52 listed here individually for documentation purposes.
54 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
56 tree short_integer_type_node;
57 tree long_integer_type_node;
58 tree long_long_integer_type_node;
59 tree int128_integer_type_node;
61 tree short_unsigned_type_node;
62 tree long_unsigned_type_node;
63 tree long_long_unsigned_type_node;
64 tree int128_unsigned_type_node;
66 tree truthvalue_type_node;
67 tree truthvalue_false_node;
68 tree truthvalue_true_node;
70 tree ptrdiff_type_node;
72 tree unsigned_char_type_node;
73 tree signed_char_type_node;
74 tree wchar_type_node;
76 tree char16_type_node;
77 tree char32_type_node;
79 tree float_type_node;
80 tree double_type_node;
81 tree long_double_type_node;
83 tree complex_integer_type_node;
84 tree complex_float_type_node;
85 tree complex_double_type_node;
86 tree complex_long_double_type_node;
88 tree dfloat32_type_node;
89 tree dfloat64_type_node;
90 tree_dfloat128_type_node;
92 tree intQI_type_node;
93 tree intHI_type_node;
94 tree intSI_type_node;
95 tree intDI_type_node;
96 tree intTI_type_node;
98 tree unsigned_intQI_type_node;
99 tree unsigned_intHI_type_node;
100 tree unsigned_intSI_type_node;
101 tree unsigned_intDI_type_node;
102 tree unsigned_intTI_type_node;
104 tree widest_integer_literal_type_node;
105 tree widest_unsigned_literal_type_node;
107 Nodes for types `void *' and `const void *'.
109 tree ptr_type_node, const_ptr_type_node;
111 Nodes for types `char *' and `const char *'.
113 tree string_type_node, const_string_type_node;
115 Type `char[SOMENUMBER]'.
116 Used when an array of char is needed and the size is irrelevant.
118 tree char_array_type_node;
120 Type `int[SOMENUMBER]' or something like it.
121 Used when an array of int needed and the size is irrelevant.
123 tree int_array_type_node;
125 Type `wchar_t[SOMENUMBER]' or something like it.
126 Used when a wide string literal is created.
128 tree wchar_array_type_node;
130 Type `char16_t[SOMENUMBER]' or something like it.
131 Used when a UTF-16 string literal is created.
133 tree char16_array_type_node;
135 Type `char32_t[SOMENUMBER]' or something like it.
136 Used when a UTF-32 string literal is created.
138 tree char32_array_type_node;
140 Type `int ()' -- used for implicit declaration of functions.
142 tree default_function_type;
144 A VOID_TYPE node, packaged in a TREE_LIST.
146 tree void_list_node;
148 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
149 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
150 VAR_DECLS, but C++ does.)
152 tree function_name_decl_node;
153 tree pretty_function_name_decl_node;
154 tree c99_function_name_decl_node;
156 Stack of nested function name VAR_DECLs.
158 tree saved_function_name_decls;
162 tree c_global_trees[CTI_MAX];
164 /* Switches common to the C front ends. */
166 /* Nonzero means don't output line number information. */
168 char flag_no_line_commands;
170 /* Nonzero causes -E output not to be done, but directives such as
171 #define that have side effects are still obeyed. */
173 char flag_no_output;
175 /* Nonzero means dump macros in some fashion. */
177 char flag_dump_macros;
179 /* Nonzero means pass #include lines through to the output. */
181 char flag_dump_includes;
183 /* Nonzero means process PCH files while preprocessing. */
185 bool flag_pch_preprocess;
187 /* The file name to which we should write a precompiled header, or
188 NULL if no header will be written in this compile. */
190 const char *pch_file;
192 /* Nonzero if an ISO standard was selected. It rejects macros in the
193 user's namespace. */
194 int flag_iso;
196 /* Warn about #pragma directives that are not recognized. */
198 int warn_unknown_pragmas; /* Tri state variable. */
200 /* Warn about format/argument anomalies in calls to formatted I/O functions
201 (*printf, *scanf, strftime, strfmon, etc.). */
203 int warn_format;
205 /* C/ObjC language option variables. */
208 /* Nonzero means allow type mismatches in conditional expressions;
209 just make their values `void'. */
211 int flag_cond_mismatch;
213 /* Nonzero means enable C89 Amendment 1 features. */
215 int flag_isoc94;
217 /* Nonzero means use the ISO C99 (or C1X) dialect of C. */
219 int flag_isoc99;
221 /* Nonzero means use the ISO C1X dialect of C. */
223 int flag_isoc1x;
225 /* Nonzero means that we have builtin functions, and main is an int. */
227 int flag_hosted = 1;
230 /* ObjC language option variables. */
233 /* Tells the compiler that this is a special run. Do not perform any
234 compiling, instead we are to test some platform dependent features
235 and output a C header file with appropriate definitions. */
237 int print_struct_values;
239 /* Tells the compiler what is the constant string class for ObjC. */
241 const char *constant_string_class_name;
244 /* C++ language option variables. */
247 /* Nonzero means generate separate instantiation control files and
248 juggle them at link time. */
250 int flag_use_repository;
252 /* The C++ dialect being used. C++98 is the default. */
254 enum cxx_dialect cxx_dialect = cxx98;
256 /* Maximum template instantiation depth. This limit exists to limit the
257 time it takes to notice infinite template instantiations; the default
258 value of 1024 is likely to be in the next C++ standard. */
260 int max_tinst_depth = 1024;
264 /* The elements of `ridpointers' are identifier nodes for the reserved
265 type names and storage classes. It is indexed by a RID_... value. */
266 tree *ridpointers;
268 tree (*make_fname_decl) (location_t, tree, int);
270 /* Nonzero means don't warn about problems that occur when the code is
271 executed. */
272 int c_inhibit_evaluation_warnings;
274 /* Whether lexing has been completed, so subsequent preprocessor
275 errors should use the compiler's input_location. */
276 bool done_lexing = false;
278 /* Information about how a function name is generated. */
279 struct fname_var_t
281 tree *const decl; /* pointer to the VAR_DECL. */
282 const unsigned rid; /* RID number for the identifier. */
283 const int pretty; /* How pretty is it? */
286 /* The three ways of getting then name of the current function. */
288 const struct fname_var_t fname_vars[] =
290 /* C99 compliant __func__, must be first. */
291 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
292 /* GCC __FUNCTION__ compliant. */
293 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
294 /* GCC __PRETTY_FUNCTION__ compliant. */
295 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
296 {NULL, 0, 0},
299 static tree c_fully_fold_internal (tree expr, bool, bool *, bool *);
300 static tree check_case_value (tree);
301 static bool check_case_bounds (tree, tree, tree *, tree *);
303 static tree handle_packed_attribute (tree *, tree, tree, int, bool *);
304 static tree handle_nocommon_attribute (tree *, tree, tree, int, bool *);
305 static tree handle_common_attribute (tree *, tree, tree, int, bool *);
306 static tree handle_noreturn_attribute (tree *, tree, tree, int, bool *);
307 static tree handle_hot_attribute (tree *, tree, tree, int, bool *);
308 static tree handle_cold_attribute (tree *, tree, tree, int, bool *);
309 static tree handle_noinline_attribute (tree *, tree, tree, int, bool *);
310 static tree handle_noclone_attribute (tree *, tree, tree, int, bool *);
311 static tree handle_always_inline_attribute (tree *, tree, tree, int,
312 bool *);
313 static tree handle_gnu_inline_attribute (tree *, tree, tree, int, bool *);
314 static tree handle_artificial_attribute (tree *, tree, tree, int, bool *);
315 static tree handle_flatten_attribute (tree *, tree, tree, int, bool *);
316 static tree handle_error_attribute (tree *, tree, tree, int, bool *);
317 static tree handle_used_attribute (tree *, tree, tree, int, bool *);
318 static tree handle_unused_attribute (tree *, tree, tree, int, bool *);
319 static tree handle_externally_visible_attribute (tree *, tree, tree, int,
320 bool *);
321 static tree handle_const_attribute (tree *, tree, tree, int, bool *);
322 static tree handle_transparent_union_attribute (tree *, tree, tree,
323 int, bool *);
324 static tree handle_constructor_attribute (tree *, tree, tree, int, bool *);
325 static tree handle_destructor_attribute (tree *, tree, tree, int, bool *);
326 static tree handle_mode_attribute (tree *, tree, tree, int, bool *);
327 static tree handle_section_attribute (tree *, tree, tree, int, bool *);
328 static tree handle_aligned_attribute (tree *, tree, tree, int, bool *);
329 static tree handle_weak_attribute (tree *, tree, tree, int, bool *) ;
330 static tree handle_alias_ifunc_attribute (bool, tree *, tree, tree, bool *);
331 static tree handle_ifunc_attribute (tree *, tree, tree, int, bool *);
332 static tree handle_alias_attribute (tree *, tree, tree, int, bool *);
333 static tree handle_weakref_attribute (tree *, tree, tree, int, bool *) ;
334 static tree handle_visibility_attribute (tree *, tree, tree, int,
335 bool *);
336 static tree handle_tls_model_attribute (tree *, tree, tree, int,
337 bool *);
338 static tree handle_no_instrument_function_attribute (tree *, tree,
339 tree, int, bool *);
340 static tree handle_malloc_attribute (tree *, tree, tree, int, bool *);
341 static tree handle_returns_twice_attribute (tree *, tree, tree, int, bool *);
342 static tree handle_no_limit_stack_attribute (tree *, tree, tree, int,
343 bool *);
344 static tree handle_pure_attribute (tree *, tree, tree, int, bool *);
345 static tree handle_novops_attribute (tree *, tree, tree, int, bool *);
346 static tree handle_deprecated_attribute (tree *, tree, tree, int,
347 bool *);
348 static tree handle_vector_size_attribute (tree *, tree, tree, int,
349 bool *);
350 static tree handle_nonnull_attribute (tree *, tree, tree, int, bool *);
351 static tree handle_nothrow_attribute (tree *, tree, tree, int, bool *);
352 static tree handle_cleanup_attribute (tree *, tree, tree, int, bool *);
353 static tree handle_warn_unused_result_attribute (tree *, tree, tree, int,
354 bool *);
355 static tree handle_sentinel_attribute (tree *, tree, tree, int, bool *);
356 static tree handle_type_generic_attribute (tree *, tree, tree, int, bool *);
357 static tree handle_alloc_size_attribute (tree *, tree, tree, int, bool *);
358 static tree handle_target_attribute (tree *, tree, tree, int, bool *);
359 static tree handle_optimize_attribute (tree *, tree, tree, int, bool *);
360 static tree handle_fnspec_attribute (tree *, tree, tree, int, bool *);
362 static void check_function_nonnull (tree, int, tree *);
363 static void check_nonnull_arg (void *, tree, unsigned HOST_WIDE_INT);
364 static bool nonnull_check_p (tree, unsigned HOST_WIDE_INT);
365 static bool get_nonnull_operand (tree, unsigned HOST_WIDE_INT *);
366 static int resort_field_decl_cmp (const void *, const void *);
368 /* Reserved words. The third field is a mask: keywords are disabled
369 if they match the mask.
371 Masks for languages:
372 C --std=c89: D_C99 | D_CXXONLY | D_OBJC | D_CXX_OBJC
373 C --std=c99: D_CXXONLY | D_OBJC
374 ObjC is like C except that D_OBJC and D_CXX_OBJC are not set
375 C++ --std=c98: D_CONLY | D_CXXOX | D_OBJC
376 C++ --std=c0x: D_CONLY | D_OBJC
377 ObjC++ is like C++ except that D_OBJC is not set
379 If -fno-asm is used, D_ASM is added to the mask. If
380 -fno-gnu-keywords is used, D_EXT is added. If -fno-asm and C in
381 C89 mode, D_EXT89 is added for both -fno-asm and -fno-gnu-keywords.
382 In C with -Wc++-compat, we warn if D_CXXWARN is set. */
384 const struct c_common_resword c_common_reswords[] =
386 { "_Bool", RID_BOOL, D_CONLY },
387 { "_Complex", RID_COMPLEX, 0 },
388 { "_Imaginary", RID_IMAGINARY, D_CONLY },
389 { "_Decimal32", RID_DFLOAT32, D_CONLY | D_EXT },
390 { "_Decimal64", RID_DFLOAT64, D_CONLY | D_EXT },
391 { "_Decimal128", RID_DFLOAT128, D_CONLY | D_EXT },
392 { "_Fract", RID_FRACT, D_CONLY | D_EXT },
393 { "_Accum", RID_ACCUM, D_CONLY | D_EXT },
394 { "_Sat", RID_SAT, D_CONLY | D_EXT },
395 { "_Static_assert", RID_STATIC_ASSERT, D_CONLY },
396 { "__FUNCTION__", RID_FUNCTION_NAME, 0 },
397 { "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME, 0 },
398 { "__alignof", RID_ALIGNOF, 0 },
399 { "__alignof__", RID_ALIGNOF, 0 },
400 { "__asm", RID_ASM, 0 },
401 { "__asm__", RID_ASM, 0 },
402 { "__attribute", RID_ATTRIBUTE, 0 },
403 { "__attribute__", RID_ATTRIBUTE, 0 },
404 { "__builtin_choose_expr", RID_CHOOSE_EXPR, D_CONLY },
405 { "__builtin_offsetof", RID_OFFSETOF, 0 },
406 { "__builtin_types_compatible_p", RID_TYPES_COMPATIBLE_P, D_CONLY },
407 { "__builtin_va_arg", RID_VA_ARG, 0 },
408 { "__complex", RID_COMPLEX, 0 },
409 { "__complex__", RID_COMPLEX, 0 },
410 { "__const", RID_CONST, 0 },
411 { "__const__", RID_CONST, 0 },
412 { "__decltype", RID_DECLTYPE, D_CXXONLY },
413 { "__extension__", RID_EXTENSION, 0 },
414 { "__func__", RID_C99_FUNCTION_NAME, 0 },
415 { "__has_nothrow_assign", RID_HAS_NOTHROW_ASSIGN, D_CXXONLY },
416 { "__has_nothrow_constructor", RID_HAS_NOTHROW_CONSTRUCTOR, D_CXXONLY },
417 { "__has_nothrow_copy", RID_HAS_NOTHROW_COPY, D_CXXONLY },
418 { "__has_trivial_assign", RID_HAS_TRIVIAL_ASSIGN, D_CXXONLY },
419 { "__has_trivial_constructor", RID_HAS_TRIVIAL_CONSTRUCTOR, D_CXXONLY },
420 { "__has_trivial_copy", RID_HAS_TRIVIAL_COPY, D_CXXONLY },
421 { "__has_trivial_destructor", RID_HAS_TRIVIAL_DESTRUCTOR, D_CXXONLY },
422 { "__has_virtual_destructor", RID_HAS_VIRTUAL_DESTRUCTOR, D_CXXONLY },
423 { "__int128", RID_INT128, 0 },
424 { "__is_abstract", RID_IS_ABSTRACT, D_CXXONLY },
425 { "__is_base_of", RID_IS_BASE_OF, D_CXXONLY },
426 { "__is_class", RID_IS_CLASS, D_CXXONLY },
427 { "__is_convertible_to", RID_IS_CONVERTIBLE_TO, D_CXXONLY },
428 { "__is_empty", RID_IS_EMPTY, D_CXXONLY },
429 { "__is_enum", RID_IS_ENUM, D_CXXONLY },
430 { "__is_pod", RID_IS_POD, D_CXXONLY },
431 { "__is_polymorphic", RID_IS_POLYMORPHIC, D_CXXONLY },
432 { "__is_standard_layout", RID_IS_STD_LAYOUT, D_CXXONLY },
433 { "__is_trivial", RID_IS_TRIVIAL, D_CXXONLY },
434 { "__is_union", RID_IS_UNION, D_CXXONLY },
435 { "__imag", RID_IMAGPART, 0 },
436 { "__imag__", RID_IMAGPART, 0 },
437 { "__inline", RID_INLINE, 0 },
438 { "__inline__", RID_INLINE, 0 },
439 { "__label__", RID_LABEL, 0 },
440 { "__null", RID_NULL, 0 },
441 { "__real", RID_REALPART, 0 },
442 { "__real__", RID_REALPART, 0 },
443 { "__restrict", RID_RESTRICT, 0 },
444 { "__restrict__", RID_RESTRICT, 0 },
445 { "__signed", RID_SIGNED, 0 },
446 { "__signed__", RID_SIGNED, 0 },
447 { "__thread", RID_THREAD, 0 },
448 { "__typeof", RID_TYPEOF, 0 },
449 { "__typeof__", RID_TYPEOF, 0 },
450 { "__volatile", RID_VOLATILE, 0 },
451 { "__volatile__", RID_VOLATILE, 0 },
452 { "alignof", RID_ALIGNOF, D_CXXONLY | D_CXX0X | D_CXXWARN },
453 { "asm", RID_ASM, D_ASM },
454 { "auto", RID_AUTO, 0 },
455 { "bool", RID_BOOL, D_CXXONLY | D_CXXWARN },
456 { "break", RID_BREAK, 0 },
457 { "case", RID_CASE, 0 },
458 { "catch", RID_CATCH, D_CXX_OBJC | D_CXXWARN },
459 { "char", RID_CHAR, 0 },
460 { "char16_t", RID_CHAR16, D_CXXONLY | D_CXX0X | D_CXXWARN },
461 { "char32_t", RID_CHAR32, D_CXXONLY | D_CXX0X | D_CXXWARN },
462 { "class", RID_CLASS, D_CXX_OBJC | D_CXXWARN },
463 { "const", RID_CONST, 0 },
464 { "constexpr", RID_CONSTEXPR, D_CXXONLY | D_CXX0X | D_CXXWARN },
465 { "const_cast", RID_CONSTCAST, D_CXXONLY | D_CXXWARN },
466 { "continue", RID_CONTINUE, 0 },
467 { "decltype", RID_DECLTYPE, D_CXXONLY | D_CXX0X | D_CXXWARN },
468 { "default", RID_DEFAULT, 0 },
469 { "delete", RID_DELETE, D_CXXONLY | D_CXXWARN },
470 { "do", RID_DO, 0 },
471 { "double", RID_DOUBLE, 0 },
472 { "dynamic_cast", RID_DYNCAST, D_CXXONLY | D_CXXWARN },
473 { "else", RID_ELSE, 0 },
474 { "enum", RID_ENUM, 0 },
475 { "explicit", RID_EXPLICIT, D_CXXONLY | D_CXXWARN },
476 { "export", RID_EXPORT, D_CXXONLY | D_CXXWARN },
477 { "extern", RID_EXTERN, 0 },
478 { "false", RID_FALSE, D_CXXONLY | D_CXXWARN },
479 { "float", RID_FLOAT, 0 },
480 { "for", RID_FOR, 0 },
481 { "friend", RID_FRIEND, D_CXXONLY | D_CXXWARN },
482 { "goto", RID_GOTO, 0 },
483 { "if", RID_IF, 0 },
484 { "inline", RID_INLINE, D_EXT89 },
485 { "int", RID_INT, 0 },
486 { "long", RID_LONG, 0 },
487 { "mutable", RID_MUTABLE, D_CXXONLY | D_CXXWARN },
488 { "namespace", RID_NAMESPACE, D_CXXONLY | D_CXXWARN },
489 { "new", RID_NEW, D_CXXONLY | D_CXXWARN },
490 { "noexcept", RID_NOEXCEPT, D_CXXONLY | D_CXX0X | D_CXXWARN },
491 { "nullptr", RID_NULLPTR, D_CXXONLY | D_CXX0X | D_CXXWARN },
492 { "operator", RID_OPERATOR, D_CXXONLY | D_CXXWARN },
493 { "private", RID_PRIVATE, D_CXX_OBJC | D_CXXWARN },
494 { "protected", RID_PROTECTED, D_CXX_OBJC | D_CXXWARN },
495 { "public", RID_PUBLIC, D_CXX_OBJC | D_CXXWARN },
496 { "register", RID_REGISTER, 0 },
497 { "reinterpret_cast", RID_REINTCAST, D_CXXONLY | D_CXXWARN },
498 { "restrict", RID_RESTRICT, D_CONLY | D_C99 },
499 { "return", RID_RETURN, 0 },
500 { "short", RID_SHORT, 0 },
501 { "signed", RID_SIGNED, 0 },
502 { "sizeof", RID_SIZEOF, 0 },
503 { "static", RID_STATIC, 0 },
504 { "static_assert", RID_STATIC_ASSERT, D_CXXONLY | D_CXX0X | D_CXXWARN },
505 { "static_cast", RID_STATCAST, D_CXXONLY | D_CXXWARN },
506 { "struct", RID_STRUCT, 0 },
507 { "switch", RID_SWITCH, 0 },
508 { "template", RID_TEMPLATE, D_CXXONLY | D_CXXWARN },
509 { "this", RID_THIS, D_CXXONLY | D_CXXWARN },
510 { "throw", RID_THROW, D_CXX_OBJC | D_CXXWARN },
511 { "true", RID_TRUE, D_CXXONLY | D_CXXWARN },
512 { "try", RID_TRY, D_CXX_OBJC | D_CXXWARN },
513 { "typedef", RID_TYPEDEF, 0 },
514 { "typename", RID_TYPENAME, D_CXXONLY | D_CXXWARN },
515 { "typeid", RID_TYPEID, D_CXXONLY | D_CXXWARN },
516 { "typeof", RID_TYPEOF, D_ASM | D_EXT },
517 { "union", RID_UNION, 0 },
518 { "unsigned", RID_UNSIGNED, 0 },
519 { "using", RID_USING, D_CXXONLY | D_CXXWARN },
520 { "virtual", RID_VIRTUAL, D_CXXONLY | D_CXXWARN },
521 { "void", RID_VOID, 0 },
522 { "volatile", RID_VOLATILE, 0 },
523 { "wchar_t", RID_WCHAR, D_CXXONLY },
524 { "while", RID_WHILE, 0 },
525 /* These Objective-C keywords are recognized only immediately after
526 an '@'. */
527 { "compatibility_alias", RID_AT_ALIAS, D_OBJC },
528 { "defs", RID_AT_DEFS, D_OBJC },
529 { "encode", RID_AT_ENCODE, D_OBJC },
530 { "end", RID_AT_END, D_OBJC },
531 { "implementation", RID_AT_IMPLEMENTATION, D_OBJC },
532 { "interface", RID_AT_INTERFACE, D_OBJC },
533 { "protocol", RID_AT_PROTOCOL, D_OBJC },
534 { "selector", RID_AT_SELECTOR, D_OBJC },
535 { "finally", RID_AT_FINALLY, D_OBJC },
536 { "synchronized", RID_AT_SYNCHRONIZED, D_OBJC },
537 /* These are recognized only in protocol-qualifier context
538 (see above) */
539 { "bycopy", RID_BYCOPY, D_OBJC },
540 { "byref", RID_BYREF, D_OBJC },
541 { "in", RID_IN, D_OBJC },
542 { "inout", RID_INOUT, D_OBJC },
543 { "oneway", RID_ONEWAY, D_OBJC },
544 { "out", RID_OUT, D_OBJC },
547 const unsigned int num_c_common_reswords =
548 sizeof c_common_reswords / sizeof (struct c_common_resword);
550 /* Table of machine-independent attributes common to all C-like languages. */
551 const struct attribute_spec c_common_attribute_table[] =
553 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
554 { "packed", 0, 0, false, false, false,
555 handle_packed_attribute },
556 { "nocommon", 0, 0, true, false, false,
557 handle_nocommon_attribute },
558 { "common", 0, 0, true, false, false,
559 handle_common_attribute },
560 /* FIXME: logically, noreturn attributes should be listed as
561 "false, true, true" and apply to function types. But implementing this
562 would require all the places in the compiler that use TREE_THIS_VOLATILE
563 on a decl to identify non-returning functions to be located and fixed
564 to check the function type instead. */
565 { "noreturn", 0, 0, true, false, false,
566 handle_noreturn_attribute },
567 { "volatile", 0, 0, true, false, false,
568 handle_noreturn_attribute },
569 { "noinline", 0, 0, true, false, false,
570 handle_noinline_attribute },
571 { "noclone", 0, 0, true, false, false,
572 handle_noclone_attribute },
573 { "always_inline", 0, 0, true, false, false,
574 handle_always_inline_attribute },
575 { "gnu_inline", 0, 0, true, false, false,
576 handle_gnu_inline_attribute },
577 { "artificial", 0, 0, true, false, false,
578 handle_artificial_attribute },
579 { "flatten", 0, 0, true, false, false,
580 handle_flatten_attribute },
581 { "used", 0, 0, true, false, false,
582 handle_used_attribute },
583 { "unused", 0, 0, false, false, false,
584 handle_unused_attribute },
585 { "externally_visible", 0, 0, true, false, false,
586 handle_externally_visible_attribute },
587 /* The same comments as for noreturn attributes apply to const ones. */
588 { "const", 0, 0, true, false, false,
589 handle_const_attribute },
590 { "transparent_union", 0, 0, false, false, false,
591 handle_transparent_union_attribute },
592 { "constructor", 0, 1, true, false, false,
593 handle_constructor_attribute },
594 { "destructor", 0, 1, true, false, false,
595 handle_destructor_attribute },
596 { "mode", 1, 1, false, true, false,
597 handle_mode_attribute },
598 { "section", 1, 1, true, false, false,
599 handle_section_attribute },
600 { "aligned", 0, 1, false, false, false,
601 handle_aligned_attribute },
602 { "weak", 0, 0, true, false, false,
603 handle_weak_attribute },
604 { "ifunc", 1, 1, true, false, false,
605 handle_ifunc_attribute },
606 { "alias", 1, 1, true, false, false,
607 handle_alias_attribute },
608 { "weakref", 0, 1, true, false, false,
609 handle_weakref_attribute },
610 { "no_instrument_function", 0, 0, true, false, false,
611 handle_no_instrument_function_attribute },
612 { "malloc", 0, 0, true, false, false,
613 handle_malloc_attribute },
614 { "returns_twice", 0, 0, true, false, false,
615 handle_returns_twice_attribute },
616 { "no_stack_limit", 0, 0, true, false, false,
617 handle_no_limit_stack_attribute },
618 { "pure", 0, 0, true, false, false,
619 handle_pure_attribute },
620 /* For internal use (marking of builtins) only. The name contains space
621 to prevent its usage in source code. */
622 { "no vops", 0, 0, true, false, false,
623 handle_novops_attribute },
624 { "deprecated", 0, 1, false, false, false,
625 handle_deprecated_attribute },
626 { "vector_size", 1, 1, false, true, false,
627 handle_vector_size_attribute },
628 { "visibility", 1, 1, false, false, false,
629 handle_visibility_attribute },
630 { "tls_model", 1, 1, true, false, false,
631 handle_tls_model_attribute },
632 { "nonnull", 0, -1, false, true, true,
633 handle_nonnull_attribute },
634 { "nothrow", 0, 0, true, false, false,
635 handle_nothrow_attribute },
636 { "may_alias", 0, 0, false, true, false, NULL },
637 { "cleanup", 1, 1, true, false, false,
638 handle_cleanup_attribute },
639 { "warn_unused_result", 0, 0, false, true, true,
640 handle_warn_unused_result_attribute },
641 { "sentinel", 0, 1, false, true, true,
642 handle_sentinel_attribute },
643 /* For internal use (marking of builtins) only. The name contains space
644 to prevent its usage in source code. */
645 { "type generic", 0, 0, false, true, true,
646 handle_type_generic_attribute },
647 { "alloc_size", 1, 2, false, true, true,
648 handle_alloc_size_attribute },
649 { "cold", 0, 0, true, false, false,
650 handle_cold_attribute },
651 { "hot", 0, 0, true, false, false,
652 handle_hot_attribute },
653 { "warning", 1, 1, true, false, false,
654 handle_error_attribute },
655 { "error", 1, 1, true, false, false,
656 handle_error_attribute },
657 { "target", 1, -1, true, false, false,
658 handle_target_attribute },
659 { "optimize", 1, -1, true, false, false,
660 handle_optimize_attribute },
661 /* For internal use (marking of builtins and runtime functions) only.
662 The name contains space to prevent its usage in source code. */
663 { "fn spec", 1, 1, false, true, true,
664 handle_fnspec_attribute },
665 { NULL, 0, 0, false, false, false, NULL }
668 /* Give the specifications for the format attributes, used by C and all
669 descendants. */
671 const struct attribute_spec c_common_format_attribute_table[] =
673 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
674 { "format", 3, 3, false, true, true,
675 handle_format_attribute },
676 { "format_arg", 1, 1, false, true, true,
677 handle_format_arg_attribute },
678 { NULL, 0, 0, false, false, false, NULL }
681 /* Return identifier for address space AS. */
683 const char *
684 c_addr_space_name (addr_space_t as)
686 int rid = RID_FIRST_ADDR_SPACE + as;
687 gcc_assert (ridpointers [rid]);
688 return IDENTIFIER_POINTER (ridpointers [rid]);
691 /* Push current bindings for the function name VAR_DECLS. */
693 void
694 start_fname_decls (void)
696 unsigned ix;
697 tree saved = NULL_TREE;
699 for (ix = 0; fname_vars[ix].decl; ix++)
701 tree decl = *fname_vars[ix].decl;
703 if (decl)
705 saved = tree_cons (decl, build_int_cst (NULL_TREE, ix), saved);
706 *fname_vars[ix].decl = NULL_TREE;
709 if (saved || saved_function_name_decls)
710 /* Normally they'll have been NULL, so only push if we've got a
711 stack, or they are non-NULL. */
712 saved_function_name_decls = tree_cons (saved, NULL_TREE,
713 saved_function_name_decls);
716 /* Finish up the current bindings, adding them into the current function's
717 statement tree. This must be done _before_ finish_stmt_tree is called.
718 If there is no current function, we must be at file scope and no statements
719 are involved. Pop the previous bindings. */
721 void
722 finish_fname_decls (void)
724 unsigned ix;
725 tree stmts = NULL_TREE;
726 tree stack = saved_function_name_decls;
728 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
729 append_to_statement_list (TREE_VALUE (stack), &stmts);
731 if (stmts)
733 tree *bodyp = &DECL_SAVED_TREE (current_function_decl);
735 if (TREE_CODE (*bodyp) == BIND_EXPR)
736 bodyp = &BIND_EXPR_BODY (*bodyp);
738 append_to_statement_list_force (*bodyp, &stmts);
739 *bodyp = stmts;
742 for (ix = 0; fname_vars[ix].decl; ix++)
743 *fname_vars[ix].decl = NULL_TREE;
745 if (stack)
747 /* We had saved values, restore them. */
748 tree saved;
750 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
752 tree decl = TREE_PURPOSE (saved);
753 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
755 *fname_vars[ix].decl = decl;
757 stack = TREE_CHAIN (stack);
759 saved_function_name_decls = stack;
762 /* Return the text name of the current function, suitably prettified
763 by PRETTY_P. Return string must be freed by caller. */
765 const char *
766 fname_as_string (int pretty_p)
768 const char *name = "top level";
769 char *namep;
770 int vrb = 2, len;
771 cpp_string cstr = { 0, 0 }, strname;
773 if (!pretty_p)
775 name = "";
776 vrb = 0;
779 if (current_function_decl)
780 name = lang_hooks.decl_printable_name (current_function_decl, vrb);
782 len = strlen (name) + 3; /* Two for '"'s. One for NULL. */
784 namep = XNEWVEC (char, len);
785 snprintf (namep, len, "\"%s\"", name);
786 strname.text = (unsigned char *) namep;
787 strname.len = len - 1;
789 if (cpp_interpret_string (parse_in, &strname, 1, &cstr, CPP_STRING))
791 XDELETEVEC (namep);
792 return (const char *) cstr.text;
795 return namep;
798 /* Return the VAR_DECL for a const char array naming the current
799 function. If the VAR_DECL has not yet been created, create it
800 now. RID indicates how it should be formatted and IDENTIFIER_NODE
801 ID is its name (unfortunately C and C++ hold the RID values of
802 keywords in different places, so we can't derive RID from ID in
803 this language independent code. LOC is the location of the
804 function. */
806 tree
807 fname_decl (location_t loc, unsigned int rid, tree id)
809 unsigned ix;
810 tree decl = NULL_TREE;
812 for (ix = 0; fname_vars[ix].decl; ix++)
813 if (fname_vars[ix].rid == rid)
814 break;
816 decl = *fname_vars[ix].decl;
817 if (!decl)
819 /* If a tree is built here, it would normally have the lineno of
820 the current statement. Later this tree will be moved to the
821 beginning of the function and this line number will be wrong.
822 To avoid this problem set the lineno to 0 here; that prevents
823 it from appearing in the RTL. */
824 tree stmts;
825 location_t saved_location = input_location;
826 input_location = UNKNOWN_LOCATION;
828 stmts = push_stmt_list ();
829 decl = (*make_fname_decl) (loc, id, fname_vars[ix].pretty);
830 stmts = pop_stmt_list (stmts);
831 if (!IS_EMPTY_STMT (stmts))
832 saved_function_name_decls
833 = tree_cons (decl, stmts, saved_function_name_decls);
834 *fname_vars[ix].decl = decl;
835 input_location = saved_location;
837 if (!ix && !current_function_decl)
838 pedwarn (loc, 0, "%qD is not defined outside of function scope", decl);
840 return decl;
843 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
845 tree
846 fix_string_type (tree value)
848 int length = TREE_STRING_LENGTH (value);
849 int nchars;
850 tree e_type, i_type, a_type;
852 /* Compute the number of elements, for the array type. */
853 if (TREE_TYPE (value) == char_array_type_node || !TREE_TYPE (value))
855 nchars = length;
856 e_type = char_type_node;
858 else if (TREE_TYPE (value) == char16_array_type_node)
860 nchars = length / (TYPE_PRECISION (char16_type_node) / BITS_PER_UNIT);
861 e_type = char16_type_node;
863 else if (TREE_TYPE (value) == char32_array_type_node)
865 nchars = length / (TYPE_PRECISION (char32_type_node) / BITS_PER_UNIT);
866 e_type = char32_type_node;
868 else
870 nchars = length / (TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT);
871 e_type = wchar_type_node;
874 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
875 limit in C++98 Annex B is very large (65536) and is not normative,
876 so we do not diagnose it (warn_overlength_strings is forced off
877 in c_common_post_options). */
878 if (warn_overlength_strings)
880 const int nchars_max = flag_isoc99 ? 4095 : 509;
881 const int relevant_std = flag_isoc99 ? 99 : 90;
882 if (nchars - 1 > nchars_max)
883 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
884 separate the %d from the 'C'. 'ISO' should not be
885 translated, but it may be moved after 'C%d' in languages
886 where modifiers follow nouns. */
887 pedwarn (input_location, OPT_Woverlength_strings,
888 "string length %qd is greater than the length %qd "
889 "ISO C%d compilers are required to support",
890 nchars - 1, nchars_max, relevant_std);
893 /* Create the array type for the string constant. The ISO C++
894 standard says that a string literal has type `const char[N]' or
895 `const wchar_t[N]'. We use the same logic when invoked as a C
896 front-end with -Wwrite-strings.
897 ??? We should change the type of an expression depending on the
898 state of a warning flag. We should just be warning -- see how
899 this is handled in the C++ front-end for the deprecated implicit
900 conversion from string literals to `char*' or `wchar_t*'.
902 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
903 array type being the unqualified version of that type.
904 Therefore, if we are constructing an array of const char, we must
905 construct the matching unqualified array type first. The C front
906 end does not require this, but it does no harm, so we do it
907 unconditionally. */
908 i_type = build_index_type (build_int_cst (NULL_TREE, nchars - 1));
909 a_type = build_array_type (e_type, i_type);
910 if (c_dialect_cxx() || warn_write_strings)
911 a_type = c_build_qualified_type (a_type, TYPE_QUAL_CONST);
913 TREE_TYPE (value) = a_type;
914 TREE_CONSTANT (value) = 1;
915 TREE_READONLY (value) = 1;
916 TREE_STATIC (value) = 1;
917 return value;
920 /* Fully fold EXPR, an expression that was not folded (beyond integer
921 constant expressions and null pointer constants) when being built
922 up. If IN_INIT, this is in a static initializer and certain
923 changes are made to the folding done. Clear *MAYBE_CONST if
924 MAYBE_CONST is not NULL and EXPR is definitely not a constant
925 expression because it contains an evaluated operator (in C99) or an
926 operator outside of sizeof returning an integer constant (in C90)
927 not permitted in constant expressions, or because it contains an
928 evaluated arithmetic overflow. (*MAYBE_CONST should typically be
929 set to true by callers before calling this function.) Return the
930 folded expression. Function arguments have already been folded
931 before calling this function, as have the contents of SAVE_EXPR,
932 TARGET_EXPR, BIND_EXPR, VA_ARG_EXPR, OBJ_TYPE_REF and
933 C_MAYBE_CONST_EXPR. */
935 tree
936 c_fully_fold (tree expr, bool in_init, bool *maybe_const)
938 tree ret;
939 tree eptype = NULL_TREE;
940 bool dummy = true;
941 bool maybe_const_itself = true;
942 location_t loc = EXPR_LOCATION (expr);
944 /* This function is not relevant to C++ because C++ folds while
945 parsing, and may need changes to be correct for C++ when C++
946 stops folding while parsing. */
947 if (c_dialect_cxx ())
948 gcc_unreachable ();
950 if (!maybe_const)
951 maybe_const = &dummy;
952 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
954 eptype = TREE_TYPE (expr);
955 expr = TREE_OPERAND (expr, 0);
957 ret = c_fully_fold_internal (expr, in_init, maybe_const,
958 &maybe_const_itself);
959 if (eptype)
960 ret = fold_convert_loc (loc, eptype, ret);
961 *maybe_const &= maybe_const_itself;
962 return ret;
965 /* Internal helper for c_fully_fold. EXPR and IN_INIT are as for
966 c_fully_fold. *MAYBE_CONST_OPERANDS is cleared because of operands
967 not permitted, while *MAYBE_CONST_ITSELF is cleared because of
968 arithmetic overflow (for C90, *MAYBE_CONST_OPERANDS is carried from
969 both evaluated and unevaluated subexpressions while
970 *MAYBE_CONST_ITSELF is carried from only evaluated
971 subexpressions). */
973 static tree
974 c_fully_fold_internal (tree expr, bool in_init, bool *maybe_const_operands,
975 bool *maybe_const_itself)
977 tree ret = expr;
978 enum tree_code code = TREE_CODE (expr);
979 enum tree_code_class kind = TREE_CODE_CLASS (code);
980 location_t loc = EXPR_LOCATION (expr);
981 tree op0, op1, op2, op3;
982 tree orig_op0, orig_op1, orig_op2;
983 bool op0_const = true, op1_const = true, op2_const = true;
984 bool op0_const_self = true, op1_const_self = true, op2_const_self = true;
985 bool nowarning = TREE_NO_WARNING (expr);
986 int unused_p;
988 /* This function is not relevant to C++ because C++ folds while
989 parsing, and may need changes to be correct for C++ when C++
990 stops folding while parsing. */
991 if (c_dialect_cxx ())
992 gcc_unreachable ();
994 /* Constants, declarations, statements, errors, SAVE_EXPRs and
995 anything else not counted as an expression cannot usefully be
996 folded further at this point. */
997 if (!IS_EXPR_CODE_CLASS (kind)
998 || kind == tcc_statement
999 || code == SAVE_EXPR)
1000 return expr;
1002 /* Operands of variable-length expressions (function calls) have
1003 already been folded, as have __builtin_* function calls, and such
1004 expressions cannot occur in constant expressions. */
1005 if (kind == tcc_vl_exp)
1007 *maybe_const_operands = false;
1008 ret = fold (expr);
1009 goto out;
1012 if (code == C_MAYBE_CONST_EXPR)
1014 tree pre = C_MAYBE_CONST_EXPR_PRE (expr);
1015 tree inner = C_MAYBE_CONST_EXPR_EXPR (expr);
1016 if (C_MAYBE_CONST_EXPR_NON_CONST (expr))
1017 *maybe_const_operands = false;
1018 if (C_MAYBE_CONST_EXPR_INT_OPERANDS (expr))
1019 *maybe_const_itself = false;
1020 if (pre && !in_init)
1021 ret = build2 (COMPOUND_EXPR, TREE_TYPE (expr), pre, inner);
1022 else
1023 ret = inner;
1024 goto out;
1027 /* Assignment, increment, decrement, function call and comma
1028 operators, and statement expressions, cannot occur in constant
1029 expressions if evaluated / outside of sizeof. (Function calls
1030 were handled above, though VA_ARG_EXPR is treated like a function
1031 call here, and statement expressions are handled through
1032 C_MAYBE_CONST_EXPR to avoid folding inside them.) */
1033 switch (code)
1035 case MODIFY_EXPR:
1036 case PREDECREMENT_EXPR:
1037 case PREINCREMENT_EXPR:
1038 case POSTDECREMENT_EXPR:
1039 case POSTINCREMENT_EXPR:
1040 case COMPOUND_EXPR:
1041 *maybe_const_operands = false;
1042 break;
1044 case VA_ARG_EXPR:
1045 case TARGET_EXPR:
1046 case BIND_EXPR:
1047 case OBJ_TYPE_REF:
1048 *maybe_const_operands = false;
1049 ret = fold (expr);
1050 goto out;
1052 default:
1053 break;
1056 /* Fold individual tree codes as appropriate. */
1057 switch (code)
1059 case COMPOUND_LITERAL_EXPR:
1060 /* Any non-constancy will have been marked in a containing
1061 C_MAYBE_CONST_EXPR; there is no more folding to do here. */
1062 goto out;
1064 case COMPONENT_REF:
1065 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1066 op1 = TREE_OPERAND (expr, 1);
1067 op2 = TREE_OPERAND (expr, 2);
1068 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1069 maybe_const_itself);
1070 STRIP_TYPE_NOPS (op0);
1071 if (op0 != orig_op0)
1072 ret = build3 (COMPONENT_REF, TREE_TYPE (expr), op0, op1, op2);
1073 if (ret != expr)
1075 TREE_READONLY (ret) = TREE_READONLY (expr);
1076 TREE_THIS_VOLATILE (ret) = TREE_THIS_VOLATILE (expr);
1078 goto out;
1080 case ARRAY_REF:
1081 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1082 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1083 op2 = TREE_OPERAND (expr, 2);
1084 op3 = TREE_OPERAND (expr, 3);
1085 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1086 maybe_const_itself);
1087 STRIP_TYPE_NOPS (op0);
1088 op1 = c_fully_fold_internal (op1, in_init, maybe_const_operands,
1089 maybe_const_itself);
1090 STRIP_TYPE_NOPS (op1);
1091 op1 = decl_constant_value_for_optimization (op1);
1092 if (op0 != orig_op0 || op1 != orig_op1)
1093 ret = build4 (ARRAY_REF, TREE_TYPE (expr), op0, op1, op2, op3);
1094 if (ret != expr)
1096 TREE_READONLY (ret) = TREE_READONLY (expr);
1097 TREE_SIDE_EFFECTS (ret) = TREE_SIDE_EFFECTS (expr);
1098 TREE_THIS_VOLATILE (ret) = TREE_THIS_VOLATILE (expr);
1100 ret = fold (ret);
1101 goto out;
1103 case COMPOUND_EXPR:
1104 case MODIFY_EXPR:
1105 case PREDECREMENT_EXPR:
1106 case PREINCREMENT_EXPR:
1107 case POSTDECREMENT_EXPR:
1108 case POSTINCREMENT_EXPR:
1109 case PLUS_EXPR:
1110 case MINUS_EXPR:
1111 case MULT_EXPR:
1112 case POINTER_PLUS_EXPR:
1113 case TRUNC_DIV_EXPR:
1114 case CEIL_DIV_EXPR:
1115 case FLOOR_DIV_EXPR:
1116 case TRUNC_MOD_EXPR:
1117 case RDIV_EXPR:
1118 case EXACT_DIV_EXPR:
1119 case LSHIFT_EXPR:
1120 case RSHIFT_EXPR:
1121 case BIT_IOR_EXPR:
1122 case BIT_XOR_EXPR:
1123 case BIT_AND_EXPR:
1124 case LT_EXPR:
1125 case LE_EXPR:
1126 case GT_EXPR:
1127 case GE_EXPR:
1128 case EQ_EXPR:
1129 case NE_EXPR:
1130 case COMPLEX_EXPR:
1131 case TRUTH_AND_EXPR:
1132 case TRUTH_OR_EXPR:
1133 case TRUTH_XOR_EXPR:
1134 case UNORDERED_EXPR:
1135 case ORDERED_EXPR:
1136 case UNLT_EXPR:
1137 case UNLE_EXPR:
1138 case UNGT_EXPR:
1139 case UNGE_EXPR:
1140 case UNEQ_EXPR:
1141 /* Binary operations evaluating both arguments (increment and
1142 decrement are binary internally in GCC). */
1143 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1144 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1145 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1146 maybe_const_itself);
1147 STRIP_TYPE_NOPS (op0);
1148 if (code != MODIFY_EXPR
1149 && code != PREDECREMENT_EXPR
1150 && code != PREINCREMENT_EXPR
1151 && code != POSTDECREMENT_EXPR
1152 && code != POSTINCREMENT_EXPR)
1153 op0 = decl_constant_value_for_optimization (op0);
1154 /* The RHS of a MODIFY_EXPR was fully folded when building that
1155 expression for the sake of conversion warnings. */
1156 if (code != MODIFY_EXPR)
1157 op1 = c_fully_fold_internal (op1, in_init, maybe_const_operands,
1158 maybe_const_itself);
1159 STRIP_TYPE_NOPS (op1);
1160 op1 = decl_constant_value_for_optimization (op1);
1161 if (op0 != orig_op0 || op1 != orig_op1 || in_init)
1162 ret = in_init
1163 ? fold_build2_initializer_loc (loc, code, TREE_TYPE (expr), op0, op1)
1164 : fold_build2_loc (loc, code, TREE_TYPE (expr), op0, op1);
1165 else
1166 ret = fold (expr);
1167 if (TREE_OVERFLOW_P (ret)
1168 && !TREE_OVERFLOW_P (op0)
1169 && !TREE_OVERFLOW_P (op1))
1170 overflow_warning (EXPR_LOCATION (expr), ret);
1171 goto out;
1173 case INDIRECT_REF:
1174 case FIX_TRUNC_EXPR:
1175 case FLOAT_EXPR:
1176 CASE_CONVERT:
1177 case NON_LVALUE_EXPR:
1178 case NEGATE_EXPR:
1179 case BIT_NOT_EXPR:
1180 case TRUTH_NOT_EXPR:
1181 case ADDR_EXPR:
1182 case CONJ_EXPR:
1183 case REALPART_EXPR:
1184 case IMAGPART_EXPR:
1185 /* Unary operations. */
1186 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1187 op0 = c_fully_fold_internal (op0, in_init, maybe_const_operands,
1188 maybe_const_itself);
1189 STRIP_TYPE_NOPS (op0);
1190 if (code != ADDR_EXPR && code != REALPART_EXPR && code != IMAGPART_EXPR)
1191 op0 = decl_constant_value_for_optimization (op0);
1192 if (op0 != orig_op0 || in_init)
1193 ret = in_init
1194 ? fold_build1_initializer_loc (loc, code, TREE_TYPE (expr), op0)
1195 : fold_build1_loc (loc, code, TREE_TYPE (expr), op0);
1196 else
1197 ret = fold (expr);
1198 if (code == INDIRECT_REF
1199 && ret != expr
1200 && TREE_CODE (ret) == INDIRECT_REF)
1202 TREE_READONLY (ret) = TREE_READONLY (expr);
1203 TREE_SIDE_EFFECTS (ret) = TREE_SIDE_EFFECTS (expr);
1204 TREE_THIS_VOLATILE (ret) = TREE_THIS_VOLATILE (expr);
1206 switch (code)
1208 case FIX_TRUNC_EXPR:
1209 case FLOAT_EXPR:
1210 CASE_CONVERT:
1211 /* Don't warn about explicit conversions. We will already
1212 have warned about suspect implicit conversions. */
1213 break;
1215 default:
1216 if (TREE_OVERFLOW_P (ret) && !TREE_OVERFLOW_P (op0))
1217 overflow_warning (EXPR_LOCATION (expr), ret);
1218 break;
1220 goto out;
1222 case TRUTH_ANDIF_EXPR:
1223 case TRUTH_ORIF_EXPR:
1224 /* Binary operations not necessarily evaluating both
1225 arguments. */
1226 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1227 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1228 op0 = c_fully_fold_internal (op0, in_init, &op0_const, &op0_const_self);
1229 STRIP_TYPE_NOPS (op0);
1231 unused_p = (op0 == (code == TRUTH_ANDIF_EXPR
1232 ? truthvalue_false_node
1233 : truthvalue_true_node));
1234 c_inhibit_evaluation_warnings += unused_p;
1235 op1 = c_fully_fold_internal (op1, in_init, &op1_const, &op1_const_self);
1236 STRIP_TYPE_NOPS (op1);
1237 c_inhibit_evaluation_warnings -= unused_p;
1239 if (op0 != orig_op0 || op1 != orig_op1 || in_init)
1240 ret = in_init
1241 ? fold_build2_initializer_loc (loc, code, TREE_TYPE (expr), op0, op1)
1242 : fold_build2_loc (loc, code, TREE_TYPE (expr), op0, op1);
1243 else
1244 ret = fold (expr);
1245 *maybe_const_operands &= op0_const;
1246 *maybe_const_itself &= op0_const_self;
1247 if (!(flag_isoc99
1248 && op0_const
1249 && op0_const_self
1250 && (code == TRUTH_ANDIF_EXPR
1251 ? op0 == truthvalue_false_node
1252 : op0 == truthvalue_true_node)))
1253 *maybe_const_operands &= op1_const;
1254 if (!(op0_const
1255 && op0_const_self
1256 && (code == TRUTH_ANDIF_EXPR
1257 ? op0 == truthvalue_false_node
1258 : op0 == truthvalue_true_node)))
1259 *maybe_const_itself &= op1_const_self;
1260 goto out;
1262 case COND_EXPR:
1263 orig_op0 = op0 = TREE_OPERAND (expr, 0);
1264 orig_op1 = op1 = TREE_OPERAND (expr, 1);
1265 orig_op2 = op2 = TREE_OPERAND (expr, 2);
1266 op0 = c_fully_fold_internal (op0, in_init, &op0_const, &op0_const_self);
1268 STRIP_TYPE_NOPS (op0);
1269 c_inhibit_evaluation_warnings += (op0 == truthvalue_false_node);
1270 op1 = c_fully_fold_internal (op1, in_init, &op1_const, &op1_const_self);
1271 STRIP_TYPE_NOPS (op1);
1272 c_inhibit_evaluation_warnings -= (op0 == truthvalue_false_node);
1274 c_inhibit_evaluation_warnings += (op0 == truthvalue_true_node);
1275 op2 = c_fully_fold_internal (op2, in_init, &op2_const, &op2_const_self);
1276 STRIP_TYPE_NOPS (op2);
1277 c_inhibit_evaluation_warnings -= (op0 == truthvalue_true_node);
1279 if (op0 != orig_op0 || op1 != orig_op1 || op2 != orig_op2)
1280 ret = fold_build3_loc (loc, code, TREE_TYPE (expr), op0, op1, op2);
1281 else
1282 ret = fold (expr);
1283 *maybe_const_operands &= op0_const;
1284 *maybe_const_itself &= op0_const_self;
1285 if (!(flag_isoc99
1286 && op0_const
1287 && op0_const_self
1288 && op0 == truthvalue_false_node))
1289 *maybe_const_operands &= op1_const;
1290 if (!(op0_const
1291 && op0_const_self
1292 && op0 == truthvalue_false_node))
1293 *maybe_const_itself &= op1_const_self;
1294 if (!(flag_isoc99
1295 && op0_const
1296 && op0_const_self
1297 && op0 == truthvalue_true_node))
1298 *maybe_const_operands &= op2_const;
1299 if (!(op0_const
1300 && op0_const_self
1301 && op0 == truthvalue_true_node))
1302 *maybe_const_itself &= op2_const_self;
1303 goto out;
1305 case EXCESS_PRECISION_EXPR:
1306 /* Each case where an operand with excess precision may be
1307 encountered must remove the EXCESS_PRECISION_EXPR around
1308 inner operands and possibly put one around the whole
1309 expression or possibly convert to the semantic type (which
1310 c_fully_fold does); we cannot tell at this stage which is
1311 appropriate in any particular case. */
1312 gcc_unreachable ();
1314 default:
1315 /* Various codes may appear through folding built-in functions
1316 and their arguments. */
1317 goto out;
1320 out:
1321 /* Some folding may introduce NON_LVALUE_EXPRs; all lvalue checks
1322 have been done by this point, so remove them again. */
1323 nowarning |= TREE_NO_WARNING (ret);
1324 STRIP_TYPE_NOPS (ret);
1325 if (nowarning && !TREE_NO_WARNING (ret))
1327 if (!CAN_HAVE_LOCATION_P (ret))
1328 ret = build1 (NOP_EXPR, TREE_TYPE (ret), ret);
1329 TREE_NO_WARNING (ret) = 1;
1331 if (ret != expr)
1332 protected_set_expr_location (ret, loc);
1333 return ret;
1336 /* If not optimizing, EXP is not a VAR_DECL, or EXP has array type,
1337 return EXP. Otherwise, return either EXP or its known constant
1338 value (if it has one), but return EXP if EXP has mode BLKmode. ???
1339 Is the BLKmode test appropriate? */
1341 tree
1342 decl_constant_value_for_optimization (tree exp)
1344 tree ret;
1346 /* This function is only used by C, for c_fully_fold and other
1347 optimization, and may not be correct for C++. */
1348 if (c_dialect_cxx ())
1349 gcc_unreachable ();
1351 if (!optimize
1352 || TREE_CODE (exp) != VAR_DECL
1353 || TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE
1354 || DECL_MODE (exp) == BLKmode)
1355 return exp;
1357 ret = decl_constant_value (exp);
1358 /* Avoid unwanted tree sharing between the initializer and current
1359 function's body where the tree can be modified e.g. by the
1360 gimplifier. */
1361 if (ret != exp && TREE_STATIC (exp))
1362 ret = unshare_expr (ret);
1363 return ret;
1366 /* Print a warning if a constant expression had overflow in folding.
1367 Invoke this function on every expression that the language
1368 requires to be a constant expression.
1369 Note the ANSI C standard says it is erroneous for a
1370 constant expression to overflow. */
1372 void
1373 constant_expression_warning (tree value)
1375 if (warn_overflow && pedantic
1376 && (TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1377 || TREE_CODE (value) == FIXED_CST
1378 || TREE_CODE (value) == VECTOR_CST
1379 || TREE_CODE (value) == COMPLEX_CST)
1380 && TREE_OVERFLOW (value))
1381 pedwarn (input_location, OPT_Woverflow, "overflow in constant expression");
1384 /* The same as above but print an unconditional error. */
1385 void
1386 constant_expression_error (tree value)
1388 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1389 || TREE_CODE (value) == FIXED_CST
1390 || TREE_CODE (value) == VECTOR_CST
1391 || TREE_CODE (value) == COMPLEX_CST)
1392 && TREE_OVERFLOW (value))
1393 error ("overflow in constant expression");
1396 /* Print a warning if an expression had overflow in folding and its
1397 operands hadn't.
1399 Invoke this function on every expression that
1400 (1) appears in the source code, and
1401 (2) is a constant expression that overflowed, and
1402 (3) is not already checked by convert_and_check;
1403 however, do not invoke this function on operands of explicit casts
1404 or when the expression is the result of an operator and any operand
1405 already overflowed. */
1407 void
1408 overflow_warning (location_t loc, tree value)
1410 if (c_inhibit_evaluation_warnings != 0)
1411 return;
1413 switch (TREE_CODE (value))
1415 case INTEGER_CST:
1416 warning_at (loc, OPT_Woverflow, "integer overflow in expression");
1417 break;
1419 case REAL_CST:
1420 warning_at (loc, OPT_Woverflow,
1421 "floating point overflow in expression");
1422 break;
1424 case FIXED_CST:
1425 warning_at (loc, OPT_Woverflow, "fixed-point overflow in expression");
1426 break;
1428 case VECTOR_CST:
1429 warning_at (loc, OPT_Woverflow, "vector overflow in expression");
1430 break;
1432 case COMPLEX_CST:
1433 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST)
1434 warning_at (loc, OPT_Woverflow,
1435 "complex integer overflow in expression");
1436 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST)
1437 warning_at (loc, OPT_Woverflow,
1438 "complex floating point overflow in expression");
1439 break;
1441 default:
1442 break;
1446 /* Warn about uses of logical || / && operator in a context where it
1447 is likely that the bitwise equivalent was intended by the
1448 programmer. We have seen an expression in which CODE is a binary
1449 operator used to combine expressions OP_LEFT and OP_RIGHT, which before folding
1450 had CODE_LEFT and CODE_RIGHT, into an expression of type TYPE. */
1451 void
1452 warn_logical_operator (location_t location, enum tree_code code, tree type,
1453 enum tree_code code_left, tree op_left,
1454 enum tree_code ARG_UNUSED (code_right), tree op_right)
1456 int or_op = (code == TRUTH_ORIF_EXPR || code == TRUTH_OR_EXPR);
1457 int in0_p, in1_p, in_p;
1458 tree low0, low1, low, high0, high1, high, lhs, rhs, tem;
1459 bool strict_overflow_p = false;
1461 if (code != TRUTH_ANDIF_EXPR
1462 && code != TRUTH_AND_EXPR
1463 && code != TRUTH_ORIF_EXPR
1464 && code != TRUTH_OR_EXPR)
1465 return;
1467 /* Warn if &&/|| are being used in a context where it is
1468 likely that the bitwise equivalent was intended by the
1469 programmer. That is, an expression such as op && MASK
1470 where op should not be any boolean expression, nor a
1471 constant, and mask seems to be a non-boolean integer constant. */
1472 if (!truth_value_p (code_left)
1473 && INTEGRAL_TYPE_P (TREE_TYPE (op_left))
1474 && !CONSTANT_CLASS_P (op_left)
1475 && !TREE_NO_WARNING (op_left)
1476 && TREE_CODE (op_right) == INTEGER_CST
1477 && !integer_zerop (op_right)
1478 && !integer_onep (op_right))
1480 if (or_op)
1481 warning_at (location, OPT_Wlogical_op, "logical %<or%>"
1482 " applied to non-boolean constant");
1483 else
1484 warning_at (location, OPT_Wlogical_op, "logical %<and%>"
1485 " applied to non-boolean constant");
1486 TREE_NO_WARNING (op_left) = true;
1487 return;
1490 /* We do not warn for constants because they are typical of macro
1491 expansions that test for features. */
1492 if (CONSTANT_CLASS_P (op_left) || CONSTANT_CLASS_P (op_right))
1493 return;
1495 /* This warning only makes sense with logical operands. */
1496 if (!(truth_value_p (TREE_CODE (op_left))
1497 || INTEGRAL_TYPE_P (TREE_TYPE (op_left)))
1498 || !(truth_value_p (TREE_CODE (op_right))
1499 || INTEGRAL_TYPE_P (TREE_TYPE (op_right))))
1500 return;
1502 lhs = make_range (op_left, &in0_p, &low0, &high0, &strict_overflow_p);
1503 rhs = make_range (op_right, &in1_p, &low1, &high1, &strict_overflow_p);
1505 if (lhs && TREE_CODE (lhs) == C_MAYBE_CONST_EXPR)
1506 lhs = C_MAYBE_CONST_EXPR_EXPR (lhs);
1508 if (rhs && TREE_CODE (rhs) == C_MAYBE_CONST_EXPR)
1509 rhs = C_MAYBE_CONST_EXPR_EXPR (rhs);
1511 /* If this is an OR operation, invert both sides; we will invert
1512 again at the end. */
1513 if (or_op)
1514 in0_p = !in0_p, in1_p = !in1_p;
1516 /* If both expressions are the same, if we can merge the ranges, and we
1517 can build the range test, return it or it inverted. */
1518 if (lhs && rhs && operand_equal_p (lhs, rhs, 0)
1519 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
1520 in1_p, low1, high1)
1521 && 0 != (tem = build_range_check (UNKNOWN_LOCATION,
1522 type, lhs, in_p, low, high)))
1524 if (TREE_CODE (tem) != INTEGER_CST)
1525 return;
1527 if (or_op)
1528 warning_at (location, OPT_Wlogical_op,
1529 "logical %<or%> "
1530 "of collectively exhaustive tests is always true");
1531 else
1532 warning_at (location, OPT_Wlogical_op,
1533 "logical %<and%> "
1534 "of mutually exclusive tests is always false");
1539 /* Print a warning about casts that might indicate violation
1540 of strict aliasing rules if -Wstrict-aliasing is used and
1541 strict aliasing mode is in effect. OTYPE is the original
1542 TREE_TYPE of EXPR, and TYPE the type we're casting to. */
1544 bool
1545 strict_aliasing_warning (tree otype, tree type, tree expr)
1547 /* Strip pointer conversion chains and get to the correct original type. */
1548 STRIP_NOPS (expr);
1549 otype = TREE_TYPE (expr);
1551 if (!(flag_strict_aliasing
1552 && POINTER_TYPE_P (type)
1553 && POINTER_TYPE_P (otype)
1554 && !VOID_TYPE_P (TREE_TYPE (type)))
1555 /* If the type we are casting to is a ref-all pointer
1556 dereferencing it is always valid. */
1557 || TYPE_REF_CAN_ALIAS_ALL (type))
1558 return false;
1560 if ((warn_strict_aliasing > 1) && TREE_CODE (expr) == ADDR_EXPR
1561 && (DECL_P (TREE_OPERAND (expr, 0))
1562 || handled_component_p (TREE_OPERAND (expr, 0))))
1564 /* Casting the address of an object to non void pointer. Warn
1565 if the cast breaks type based aliasing. */
1566 if (!COMPLETE_TYPE_P (TREE_TYPE (type)) && warn_strict_aliasing == 2)
1568 warning (OPT_Wstrict_aliasing, "type-punning to incomplete type "
1569 "might break strict-aliasing rules");
1570 return true;
1572 else
1574 /* warn_strict_aliasing >= 3. This includes the default (3).
1575 Only warn if the cast is dereferenced immediately. */
1576 alias_set_type set1 =
1577 get_alias_set (TREE_TYPE (TREE_OPERAND (expr, 0)));
1578 alias_set_type set2 = get_alias_set (TREE_TYPE (type));
1580 if (set1 != set2 && set2 != 0
1581 && (set1 == 0 || !alias_sets_conflict_p (set1, set2)))
1583 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1584 "pointer will break strict-aliasing rules");
1585 return true;
1587 else if (warn_strict_aliasing == 2
1588 && !alias_sets_must_conflict_p (set1, set2))
1590 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1591 "pointer might break strict-aliasing rules");
1592 return true;
1596 else
1597 if ((warn_strict_aliasing == 1) && !VOID_TYPE_P (TREE_TYPE (otype)))
1599 /* At this level, warn for any conversions, even if an address is
1600 not taken in the same statement. This will likely produce many
1601 false positives, but could be useful to pinpoint problems that
1602 are not revealed at higher levels. */
1603 alias_set_type set1 = get_alias_set (TREE_TYPE (otype));
1604 alias_set_type set2 = get_alias_set (TREE_TYPE (type));
1605 if (!COMPLETE_TYPE_P (type)
1606 || !alias_sets_must_conflict_p (set1, set2))
1608 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1609 "pointer might break strict-aliasing rules");
1610 return true;
1614 return false;
1617 /* Warn for unlikely, improbable, or stupid DECL declarations
1618 of `main'. */
1620 void
1621 check_main_parameter_types (tree decl)
1623 tree args;
1624 int argct = 0;
1626 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl)); args;
1627 args = TREE_CHAIN (args))
1629 tree type = args ? TREE_VALUE (args) : 0;
1631 if (type == void_type_node || type == error_mark_node )
1632 break;
1634 ++argct;
1635 switch (argct)
1637 case 1:
1638 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
1639 pedwarn (input_location, OPT_Wmain, "first argument of %q+D should be %<int%>",
1640 decl);
1641 break;
1643 case 2:
1644 if (TREE_CODE (type) != POINTER_TYPE
1645 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
1646 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
1647 != char_type_node))
1648 pedwarn (input_location, OPT_Wmain, "second argument of %q+D should be %<char **%>",
1649 decl);
1650 break;
1652 case 3:
1653 if (TREE_CODE (type) != POINTER_TYPE
1654 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
1655 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
1656 != char_type_node))
1657 pedwarn (input_location, OPT_Wmain, "third argument of %q+D should probably be "
1658 "%<char **%>", decl);
1659 break;
1663 /* It is intentional that this message does not mention the third
1664 argument because it's only mentioned in an appendix of the
1665 standard. */
1666 if (argct > 0 && (argct < 2 || argct > 3))
1667 pedwarn (input_location, OPT_Wmain, "%q+D takes only zero or two arguments", decl);
1670 /* True if pointers to distinct types T1 and T2 can be converted to
1671 each other without an explicit cast. Only returns true for opaque
1672 vector types. */
1673 bool
1674 vector_targets_convertible_p (const_tree t1, const_tree t2)
1676 if (TREE_CODE (t1) == VECTOR_TYPE && TREE_CODE (t2) == VECTOR_TYPE
1677 && (TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
1678 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
1679 return true;
1681 return false;
1684 /* True if vector types T1 and T2 can be converted to each other
1685 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
1686 can only be converted with -flax-vector-conversions yet that is not
1687 in effect, emit a note telling the user about that option if such
1688 a note has not previously been emitted. */
1689 bool
1690 vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note)
1692 static bool emitted_lax_note = false;
1693 bool convertible_lax;
1695 if ((TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
1696 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
1697 return true;
1699 convertible_lax =
1700 (tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2))
1701 && (TREE_CODE (TREE_TYPE (t1)) != REAL_TYPE ||
1702 TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
1703 && (INTEGRAL_TYPE_P (TREE_TYPE (t1))
1704 == INTEGRAL_TYPE_P (TREE_TYPE (t2))));
1706 if (!convertible_lax || flag_lax_vector_conversions)
1707 return convertible_lax;
1709 if (TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
1710 && lang_hooks.types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
1711 return true;
1713 if (emit_lax_note && !emitted_lax_note)
1715 emitted_lax_note = true;
1716 inform (input_location, "use -flax-vector-conversions to permit "
1717 "conversions between vectors with differing "
1718 "element types or numbers of subparts");
1721 return false;
1724 /* This is a helper function of build_binary_op.
1726 For certain operations if both args were extended from the same
1727 smaller type, do the arithmetic in that type and then extend.
1729 BITWISE indicates a bitwise operation.
1730 For them, this optimization is safe only if
1731 both args are zero-extended or both are sign-extended.
1732 Otherwise, we might change the result.
1733 Eg, (short)-1 | (unsigned short)-1 is (int)-1
1734 but calculated in (unsigned short) it would be (unsigned short)-1.
1736 tree shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise)
1738 int unsigned0, unsigned1;
1739 tree arg0, arg1;
1740 int uns;
1741 tree type;
1743 /* Cast OP0 and OP1 to RESULT_TYPE. Doing so prevents
1744 excessive narrowing when we call get_narrower below. For
1745 example, suppose that OP0 is of unsigned int extended
1746 from signed char and that RESULT_TYPE is long long int.
1747 If we explicitly cast OP0 to RESULT_TYPE, OP0 would look
1748 like
1750 (long long int) (unsigned int) signed_char
1752 which get_narrower would narrow down to
1754 (unsigned int) signed char
1756 If we do not cast OP0 first, get_narrower would return
1757 signed_char, which is inconsistent with the case of the
1758 explicit cast. */
1759 op0 = convert (result_type, op0);
1760 op1 = convert (result_type, op1);
1762 arg0 = get_narrower (op0, &unsigned0);
1763 arg1 = get_narrower (op1, &unsigned1);
1765 /* UNS is 1 if the operation to be done is an unsigned one. */
1766 uns = TYPE_UNSIGNED (result_type);
1768 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
1769 but it *requires* conversion to FINAL_TYPE. */
1771 if ((TYPE_PRECISION (TREE_TYPE (op0))
1772 == TYPE_PRECISION (TREE_TYPE (arg0)))
1773 && TREE_TYPE (op0) != result_type)
1774 unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
1775 if ((TYPE_PRECISION (TREE_TYPE (op1))
1776 == TYPE_PRECISION (TREE_TYPE (arg1)))
1777 && TREE_TYPE (op1) != result_type)
1778 unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
1780 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
1782 /* For bitwise operations, signedness of nominal type
1783 does not matter. Consider only how operands were extended. */
1784 if (bitwise)
1785 uns = unsigned0;
1787 /* Note that in all three cases below we refrain from optimizing
1788 an unsigned operation on sign-extended args.
1789 That would not be valid. */
1791 /* Both args variable: if both extended in same way
1792 from same width, do it in that width.
1793 Do it unsigned if args were zero-extended. */
1794 if ((TYPE_PRECISION (TREE_TYPE (arg0))
1795 < TYPE_PRECISION (result_type))
1796 && (TYPE_PRECISION (TREE_TYPE (arg1))
1797 == TYPE_PRECISION (TREE_TYPE (arg0)))
1798 && unsigned0 == unsigned1
1799 && (unsigned0 || !uns))
1800 return c_common_signed_or_unsigned_type
1801 (unsigned0, common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
1803 else if (TREE_CODE (arg0) == INTEGER_CST
1804 && (unsigned1 || !uns)
1805 && (TYPE_PRECISION (TREE_TYPE (arg1))
1806 < TYPE_PRECISION (result_type))
1807 && (type
1808 = c_common_signed_or_unsigned_type (unsigned1,
1809 TREE_TYPE (arg1)))
1810 && !POINTER_TYPE_P (type)
1811 && int_fits_type_p (arg0, type))
1812 return type;
1814 else if (TREE_CODE (arg1) == INTEGER_CST
1815 && (unsigned0 || !uns)
1816 && (TYPE_PRECISION (TREE_TYPE (arg0))
1817 < TYPE_PRECISION (result_type))
1818 && (type
1819 = c_common_signed_or_unsigned_type (unsigned0,
1820 TREE_TYPE (arg0)))
1821 && !POINTER_TYPE_P (type)
1822 && int_fits_type_p (arg1, type))
1823 return type;
1825 return result_type;
1828 /* Warns if the conversion of EXPR to TYPE may alter a value.
1829 This is a helper function for warnings_for_convert_and_check. */
1831 static void
1832 conversion_warning (tree type, tree expr)
1834 bool give_warning = false;
1836 int i;
1837 const int expr_num_operands = TREE_OPERAND_LENGTH (expr);
1838 tree expr_type = TREE_TYPE (expr);
1839 location_t loc = EXPR_HAS_LOCATION (expr)
1840 ? EXPR_LOCATION (expr) : input_location;
1842 if (!warn_conversion && !warn_sign_conversion)
1843 return;
1845 /* If any operand is artificial, then this expression was generated
1846 by the compiler and we do not warn. */
1847 for (i = 0; i < expr_num_operands; i++)
1849 tree op = TREE_OPERAND (expr, i);
1850 if (op && DECL_P (op) && DECL_ARTIFICIAL (op))
1851 return;
1854 switch (TREE_CODE (expr))
1856 case EQ_EXPR:
1857 case NE_EXPR:
1858 case LE_EXPR:
1859 case GE_EXPR:
1860 case LT_EXPR:
1861 case GT_EXPR:
1862 case TRUTH_ANDIF_EXPR:
1863 case TRUTH_ORIF_EXPR:
1864 case TRUTH_AND_EXPR:
1865 case TRUTH_OR_EXPR:
1866 case TRUTH_XOR_EXPR:
1867 case TRUTH_NOT_EXPR:
1868 /* Conversion from boolean to a signed:1 bit-field (which only
1869 can hold the values 0 and -1) doesn't lose information - but
1870 it does change the value. */
1871 if (TYPE_PRECISION (type) == 1 && !TYPE_UNSIGNED (type))
1872 warning_at (loc, OPT_Wconversion,
1873 "conversion to %qT from boolean expression", type);
1874 return;
1876 case REAL_CST:
1877 case INTEGER_CST:
1879 /* Warn for real constant that is not an exact integer converted
1880 to integer type. */
1881 if (TREE_CODE (expr_type) == REAL_TYPE
1882 && TREE_CODE (type) == INTEGER_TYPE)
1884 if (!real_isinteger (TREE_REAL_CST_PTR (expr), TYPE_MODE (expr_type)))
1885 give_warning = true;
1887 /* Warn for an integer constant that does not fit into integer type. */
1888 else if (TREE_CODE (expr_type) == INTEGER_TYPE
1889 && TREE_CODE (type) == INTEGER_TYPE
1890 && !int_fits_type_p (expr, type))
1892 if (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)
1893 && tree_int_cst_sgn (expr) < 0)
1894 warning_at (loc, OPT_Wsign_conversion, "negative integer"
1895 " implicitly converted to unsigned type");
1896 else if (!TYPE_UNSIGNED (type) && TYPE_UNSIGNED (expr_type))
1897 warning_at (loc, OPT_Wsign_conversion, "conversion of unsigned"
1898 " constant value to negative integer");
1899 else
1900 give_warning = true;
1902 else if (TREE_CODE (type) == REAL_TYPE)
1904 /* Warn for an integer constant that does not fit into real type. */
1905 if (TREE_CODE (expr_type) == INTEGER_TYPE)
1907 REAL_VALUE_TYPE a = real_value_from_int_cst (0, expr);
1908 if (!exact_real_truncate (TYPE_MODE (type), &a))
1909 give_warning = true;
1911 /* Warn for a real constant that does not fit into a smaller
1912 real type. */
1913 else if (TREE_CODE (expr_type) == REAL_TYPE
1914 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
1916 REAL_VALUE_TYPE a = TREE_REAL_CST (expr);
1917 if (!exact_real_truncate (TYPE_MODE (type), &a))
1918 give_warning = true;
1922 if (give_warning)
1923 warning_at (loc, OPT_Wconversion,
1924 "conversion to %qT alters %qT constant value",
1925 type, expr_type);
1927 return;
1929 case COND_EXPR:
1931 /* In case of COND_EXPR, if both operands are constants or
1932 COND_EXPR, then we do not care about the type of COND_EXPR,
1933 only about the conversion of each operand. */
1934 tree op1 = TREE_OPERAND (expr, 1);
1935 tree op2 = TREE_OPERAND (expr, 2);
1937 if ((TREE_CODE (op1) == REAL_CST || TREE_CODE (op1) == INTEGER_CST
1938 || TREE_CODE (op1) == COND_EXPR)
1939 && (TREE_CODE (op2) == REAL_CST || TREE_CODE (op2) == INTEGER_CST
1940 || TREE_CODE (op2) == COND_EXPR))
1942 conversion_warning (type, op1);
1943 conversion_warning (type, op2);
1944 return;
1946 /* Fall through. */
1949 default: /* 'expr' is not a constant. */
1951 /* Warn for real types converted to integer types. */
1952 if (TREE_CODE (expr_type) == REAL_TYPE
1953 && TREE_CODE (type) == INTEGER_TYPE)
1954 give_warning = true;
1956 else if (TREE_CODE (expr_type) == INTEGER_TYPE
1957 && TREE_CODE (type) == INTEGER_TYPE)
1959 /* Don't warn about unsigned char y = 0xff, x = (int) y; */
1960 expr = get_unwidened (expr, 0);
1961 expr_type = TREE_TYPE (expr);
1963 /* Don't warn for short y; short x = ((int)y & 0xff); */
1964 if (TREE_CODE (expr) == BIT_AND_EXPR
1965 || TREE_CODE (expr) == BIT_IOR_EXPR
1966 || TREE_CODE (expr) == BIT_XOR_EXPR)
1968 /* If both args were extended from a shortest type,
1969 use that type if that is safe. */
1970 expr_type = shorten_binary_op (expr_type,
1971 TREE_OPERAND (expr, 0),
1972 TREE_OPERAND (expr, 1),
1973 /* bitwise */1);
1975 if (TREE_CODE (expr) == BIT_AND_EXPR)
1977 tree op0 = TREE_OPERAND (expr, 0);
1978 tree op1 = TREE_OPERAND (expr, 1);
1979 bool unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
1980 bool unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
1982 /* If one of the operands is a non-negative constant
1983 that fits in the target type, then the type of the
1984 other operand does not matter. */
1985 if ((TREE_CODE (op0) == INTEGER_CST
1986 && int_fits_type_p (op0, c_common_signed_type (type))
1987 && int_fits_type_p (op0, c_common_unsigned_type (type)))
1988 || (TREE_CODE (op1) == INTEGER_CST
1989 && int_fits_type_p (op1, c_common_signed_type (type))
1990 && int_fits_type_p (op1,
1991 c_common_unsigned_type (type))))
1992 return;
1993 /* If constant is unsigned and fits in the target
1994 type, then the result will also fit. */
1995 else if ((TREE_CODE (op0) == INTEGER_CST
1996 && unsigned0
1997 && int_fits_type_p (op0, type))
1998 || (TREE_CODE (op1) == INTEGER_CST
1999 && unsigned1
2000 && int_fits_type_p (op1, type)))
2001 return;
2004 /* Warn for integer types converted to smaller integer types. */
2005 if (TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
2006 give_warning = true;
2008 /* When they are the same width but different signedness,
2009 then the value may change. */
2010 else if ((TYPE_PRECISION (type) == TYPE_PRECISION (expr_type)
2011 && TYPE_UNSIGNED (expr_type) != TYPE_UNSIGNED (type))
2012 /* Even when converted to a bigger type, if the type is
2013 unsigned but expr is signed, then negative values
2014 will be changed. */
2015 || (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)))
2016 warning_at (loc, OPT_Wsign_conversion, "conversion to %qT from %qT "
2017 "may change the sign of the result",
2018 type, expr_type);
2021 /* Warn for integer types converted to real types if and only if
2022 all the range of values of the integer type cannot be
2023 represented by the real type. */
2024 else if (TREE_CODE (expr_type) == INTEGER_TYPE
2025 && TREE_CODE (type) == REAL_TYPE)
2027 tree type_low_bound, type_high_bound;
2028 REAL_VALUE_TYPE real_low_bound, real_high_bound;
2030 /* Don't warn about char y = 0xff; float x = (int) y; */
2031 expr = get_unwidened (expr, 0);
2032 expr_type = TREE_TYPE (expr);
2034 type_low_bound = TYPE_MIN_VALUE (expr_type);
2035 type_high_bound = TYPE_MAX_VALUE (expr_type);
2036 real_low_bound = real_value_from_int_cst (0, type_low_bound);
2037 real_high_bound = real_value_from_int_cst (0, type_high_bound);
2039 if (!exact_real_truncate (TYPE_MODE (type), &real_low_bound)
2040 || !exact_real_truncate (TYPE_MODE (type), &real_high_bound))
2041 give_warning = true;
2044 /* Warn for real types converted to smaller real types. */
2045 else if (TREE_CODE (expr_type) == REAL_TYPE
2046 && TREE_CODE (type) == REAL_TYPE
2047 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
2048 give_warning = true;
2051 if (give_warning)
2052 warning_at (loc, OPT_Wconversion,
2053 "conversion to %qT from %qT may alter its value",
2054 type, expr_type);
2058 /* Produce warnings after a conversion. RESULT is the result of
2059 converting EXPR to TYPE. This is a helper function for
2060 convert_and_check and cp_convert_and_check. */
2062 void
2063 warnings_for_convert_and_check (tree type, tree expr, tree result)
2065 if (TREE_CODE (expr) == INTEGER_CST
2066 && (TREE_CODE (type) == INTEGER_TYPE
2067 || TREE_CODE (type) == ENUMERAL_TYPE)
2068 && !int_fits_type_p (expr, type))
2070 /* Do not diagnose overflow in a constant expression merely
2071 because a conversion overflowed. */
2072 if (TREE_OVERFLOW (result))
2073 TREE_OVERFLOW (result) = TREE_OVERFLOW (expr);
2075 if (TYPE_UNSIGNED (type))
2077 /* This detects cases like converting -129 or 256 to
2078 unsigned char. */
2079 if (!int_fits_type_p (expr, c_common_signed_type (type)))
2080 warning (OPT_Woverflow,
2081 "large integer implicitly truncated to unsigned type");
2082 else
2083 conversion_warning (type, expr);
2085 else if (!int_fits_type_p (expr, c_common_unsigned_type (type)))
2086 warning (OPT_Woverflow,
2087 "overflow in implicit constant conversion");
2088 /* No warning for converting 0x80000000 to int. */
2089 else if (pedantic
2090 && (TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE
2091 || TYPE_PRECISION (TREE_TYPE (expr))
2092 != TYPE_PRECISION (type)))
2093 warning (OPT_Woverflow,
2094 "overflow in implicit constant conversion");
2096 else
2097 conversion_warning (type, expr);
2099 else if ((TREE_CODE (result) == INTEGER_CST
2100 || TREE_CODE (result) == FIXED_CST) && TREE_OVERFLOW (result))
2101 warning (OPT_Woverflow,
2102 "overflow in implicit constant conversion");
2103 else
2104 conversion_warning (type, expr);
2108 /* Convert EXPR to TYPE, warning about conversion problems with constants.
2109 Invoke this function on every expression that is converted implicitly,
2110 i.e. because of language rules and not because of an explicit cast. */
2112 tree
2113 convert_and_check (tree type, tree expr)
2115 tree result;
2116 tree expr_for_warning;
2118 /* Convert from a value with possible excess precision rather than
2119 via the semantic type, but do not warn about values not fitting
2120 exactly in the semantic type. */
2121 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
2123 tree orig_type = TREE_TYPE (expr);
2124 expr = TREE_OPERAND (expr, 0);
2125 expr_for_warning = convert (orig_type, expr);
2126 if (orig_type == type)
2127 return expr_for_warning;
2129 else
2130 expr_for_warning = expr;
2132 if (TREE_TYPE (expr) == type)
2133 return expr;
2135 result = convert (type, expr);
2137 if (c_inhibit_evaluation_warnings == 0
2138 && !TREE_OVERFLOW_P (expr)
2139 && result != error_mark_node)
2140 warnings_for_convert_and_check (type, expr_for_warning, result);
2142 return result;
2145 /* A node in a list that describes references to variables (EXPR), which are
2146 either read accesses if WRITER is zero, or write accesses, in which case
2147 WRITER is the parent of EXPR. */
2148 struct tlist
2150 struct tlist *next;
2151 tree expr, writer;
2154 /* Used to implement a cache the results of a call to verify_tree. We only
2155 use this for SAVE_EXPRs. */
2156 struct tlist_cache
2158 struct tlist_cache *next;
2159 struct tlist *cache_before_sp;
2160 struct tlist *cache_after_sp;
2161 tree expr;
2164 /* Obstack to use when allocating tlist structures, and corresponding
2165 firstobj. */
2166 static struct obstack tlist_obstack;
2167 static char *tlist_firstobj = 0;
2169 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
2170 warnings. */
2171 static struct tlist *warned_ids;
2172 /* SAVE_EXPRs need special treatment. We process them only once and then
2173 cache the results. */
2174 static struct tlist_cache *save_expr_cache;
2176 static void add_tlist (struct tlist **, struct tlist *, tree, int);
2177 static void merge_tlist (struct tlist **, struct tlist *, int);
2178 static void verify_tree (tree, struct tlist **, struct tlist **, tree);
2179 static int warning_candidate_p (tree);
2180 static bool candidate_equal_p (const_tree, const_tree);
2181 static void warn_for_collisions (struct tlist *);
2182 static void warn_for_collisions_1 (tree, tree, struct tlist *, int);
2183 static struct tlist *new_tlist (struct tlist *, tree, tree);
2185 /* Create a new struct tlist and fill in its fields. */
2186 static struct tlist *
2187 new_tlist (struct tlist *next, tree t, tree writer)
2189 struct tlist *l;
2190 l = XOBNEW (&tlist_obstack, struct tlist);
2191 l->next = next;
2192 l->expr = t;
2193 l->writer = writer;
2194 return l;
2197 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
2198 is nonnull, we ignore any node we find which has a writer equal to it. */
2200 static void
2201 add_tlist (struct tlist **to, struct tlist *add, tree exclude_writer, int copy)
2203 while (add)
2205 struct tlist *next = add->next;
2206 if (!copy)
2207 add->next = *to;
2208 if (!exclude_writer || !candidate_equal_p (add->writer, exclude_writer))
2209 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
2210 add = next;
2214 /* Merge the nodes of ADD into TO. This merging process is done so that for
2215 each variable that already exists in TO, no new node is added; however if
2216 there is a write access recorded in ADD, and an occurrence on TO is only
2217 a read access, then the occurrence in TO will be modified to record the
2218 write. */
2220 static void
2221 merge_tlist (struct tlist **to, struct tlist *add, int copy)
2223 struct tlist **end = to;
2225 while (*end)
2226 end = &(*end)->next;
2228 while (add)
2230 int found = 0;
2231 struct tlist *tmp2;
2232 struct tlist *next = add->next;
2234 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
2235 if (candidate_equal_p (tmp2->expr, add->expr))
2237 found = 1;
2238 if (!tmp2->writer)
2239 tmp2->writer = add->writer;
2241 if (!found)
2243 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
2244 end = &(*end)->next;
2245 *end = 0;
2247 add = next;
2251 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
2252 references in list LIST conflict with it, excluding reads if ONLY writers
2253 is nonzero. */
2255 static void
2256 warn_for_collisions_1 (tree written, tree writer, struct tlist *list,
2257 int only_writes)
2259 struct tlist *tmp;
2261 /* Avoid duplicate warnings. */
2262 for (tmp = warned_ids; tmp; tmp = tmp->next)
2263 if (candidate_equal_p (tmp->expr, written))
2264 return;
2266 while (list)
2268 if (candidate_equal_p (list->expr, written)
2269 && !candidate_equal_p (list->writer, writer)
2270 && (!only_writes || list->writer))
2272 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
2273 warning_at (EXPR_HAS_LOCATION (writer)
2274 ? EXPR_LOCATION (writer) : input_location,
2275 OPT_Wsequence_point, "operation on %qE may be undefined",
2276 list->expr);
2278 list = list->next;
2282 /* Given a list LIST of references to variables, find whether any of these
2283 can cause conflicts due to missing sequence points. */
2285 static void
2286 warn_for_collisions (struct tlist *list)
2288 struct tlist *tmp;
2290 for (tmp = list; tmp; tmp = tmp->next)
2292 if (tmp->writer)
2293 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
2297 /* Return nonzero if X is a tree that can be verified by the sequence point
2298 warnings. */
2299 static int
2300 warning_candidate_p (tree x)
2302 /* !VOID_TYPE_P (TREE_TYPE (x)) is workaround for cp/tree.c
2303 (lvalue_p) crash on TRY/CATCH. */
2304 return !(DECL_P (x) && DECL_ARTIFICIAL (x))
2305 && TREE_TYPE (x) && !VOID_TYPE_P (TREE_TYPE (x)) && lvalue_p (x);
2308 /* Return nonzero if X and Y appear to be the same candidate (or NULL) */
2309 static bool
2310 candidate_equal_p (const_tree x, const_tree y)
2312 return (x == y) || (x && y && operand_equal_p (x, y, 0));
2315 /* Walk the tree X, and record accesses to variables. If X is written by the
2316 parent tree, WRITER is the parent.
2317 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
2318 expression or its only operand forces a sequence point, then everything up
2319 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
2320 in PNO_SP.
2321 Once we return, we will have emitted warnings if any subexpression before
2322 such a sequence point could be undefined. On a higher level, however, the
2323 sequence point may not be relevant, and we'll merge the two lists.
2325 Example: (b++, a) + b;
2326 The call that processes the COMPOUND_EXPR will store the increment of B
2327 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
2328 processes the PLUS_EXPR will need to merge the two lists so that
2329 eventually, all accesses end up on the same list (and we'll warn about the
2330 unordered subexpressions b++ and b.
2332 A note on merging. If we modify the former example so that our expression
2333 becomes
2334 (b++, b) + a
2335 care must be taken not simply to add all three expressions into the final
2336 PNO_SP list. The function merge_tlist takes care of that by merging the
2337 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
2338 way, so that no more than one access to B is recorded. */
2340 static void
2341 verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp,
2342 tree writer)
2344 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
2345 enum tree_code code;
2346 enum tree_code_class cl;
2348 /* X may be NULL if it is the operand of an empty statement expression
2349 ({ }). */
2350 if (x == NULL)
2351 return;
2353 restart:
2354 code = TREE_CODE (x);
2355 cl = TREE_CODE_CLASS (code);
2357 if (warning_candidate_p (x))
2358 *pno_sp = new_tlist (*pno_sp, x, writer);
2360 switch (code)
2362 case CONSTRUCTOR:
2363 return;
2365 case COMPOUND_EXPR:
2366 case TRUTH_ANDIF_EXPR:
2367 case TRUTH_ORIF_EXPR:
2368 tmp_before = tmp_nosp = tmp_list3 = 0;
2369 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
2370 warn_for_collisions (tmp_nosp);
2371 merge_tlist (pbefore_sp, tmp_before, 0);
2372 merge_tlist (pbefore_sp, tmp_nosp, 0);
2373 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
2374 merge_tlist (pbefore_sp, tmp_list3, 0);
2375 return;
2377 case COND_EXPR:
2378 tmp_before = tmp_list2 = 0;
2379 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
2380 warn_for_collisions (tmp_list2);
2381 merge_tlist (pbefore_sp, tmp_before, 0);
2382 merge_tlist (pbefore_sp, tmp_list2, 1);
2384 tmp_list3 = tmp_nosp = 0;
2385 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
2386 warn_for_collisions (tmp_nosp);
2387 merge_tlist (pbefore_sp, tmp_list3, 0);
2389 tmp_list3 = tmp_list2 = 0;
2390 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
2391 warn_for_collisions (tmp_list2);
2392 merge_tlist (pbefore_sp, tmp_list3, 0);
2393 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
2394 two first, to avoid warning for (a ? b++ : b++). */
2395 merge_tlist (&tmp_nosp, tmp_list2, 0);
2396 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
2397 return;
2399 case PREDECREMENT_EXPR:
2400 case PREINCREMENT_EXPR:
2401 case POSTDECREMENT_EXPR:
2402 case POSTINCREMENT_EXPR:
2403 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
2404 return;
2406 case MODIFY_EXPR:
2407 tmp_before = tmp_nosp = tmp_list3 = 0;
2408 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
2409 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
2410 /* Expressions inside the LHS are not ordered wrt. the sequence points
2411 in the RHS. Example:
2412 *a = (a++, 2)
2413 Despite the fact that the modification of "a" is in the before_sp
2414 list (tmp_before), it conflicts with the use of "a" in the LHS.
2415 We can handle this by adding the contents of tmp_list3
2416 to those of tmp_before, and redoing the collision warnings for that
2417 list. */
2418 add_tlist (&tmp_before, tmp_list3, x, 1);
2419 warn_for_collisions (tmp_before);
2420 /* Exclude the LHS itself here; we first have to merge it into the
2421 tmp_nosp list. This is done to avoid warning for "a = a"; if we
2422 didn't exclude the LHS, we'd get it twice, once as a read and once
2423 as a write. */
2424 add_tlist (pno_sp, tmp_list3, x, 0);
2425 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
2427 merge_tlist (pbefore_sp, tmp_before, 0);
2428 if (warning_candidate_p (TREE_OPERAND (x, 0)))
2429 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
2430 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
2431 return;
2433 case CALL_EXPR:
2434 /* We need to warn about conflicts among arguments and conflicts between
2435 args and the function address. Side effects of the function address,
2436 however, are not ordered by the sequence point of the call. */
2438 call_expr_arg_iterator iter;
2439 tree arg;
2440 tmp_before = tmp_nosp = 0;
2441 verify_tree (CALL_EXPR_FN (x), &tmp_before, &tmp_nosp, NULL_TREE);
2442 FOR_EACH_CALL_EXPR_ARG (arg, iter, x)
2444 tmp_list2 = tmp_list3 = 0;
2445 verify_tree (arg, &tmp_list2, &tmp_list3, NULL_TREE);
2446 merge_tlist (&tmp_list3, tmp_list2, 0);
2447 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
2449 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
2450 warn_for_collisions (tmp_before);
2451 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
2452 return;
2455 case TREE_LIST:
2456 /* Scan all the list, e.g. indices of multi dimensional array. */
2457 while (x)
2459 tmp_before = tmp_nosp = 0;
2460 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
2461 merge_tlist (&tmp_nosp, tmp_before, 0);
2462 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
2463 x = TREE_CHAIN (x);
2465 return;
2467 case SAVE_EXPR:
2469 struct tlist_cache *t;
2470 for (t = save_expr_cache; t; t = t->next)
2471 if (candidate_equal_p (t->expr, x))
2472 break;
2474 if (!t)
2476 t = XOBNEW (&tlist_obstack, struct tlist_cache);
2477 t->next = save_expr_cache;
2478 t->expr = x;
2479 save_expr_cache = t;
2481 tmp_before = tmp_nosp = 0;
2482 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
2483 warn_for_collisions (tmp_nosp);
2485 tmp_list3 = 0;
2486 while (tmp_nosp)
2488 struct tlist *t = tmp_nosp;
2489 tmp_nosp = t->next;
2490 merge_tlist (&tmp_list3, t, 0);
2492 t->cache_before_sp = tmp_before;
2493 t->cache_after_sp = tmp_list3;
2495 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
2496 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
2497 return;
2500 case ADDR_EXPR:
2501 x = TREE_OPERAND (x, 0);
2502 if (DECL_P (x))
2503 return;
2504 writer = 0;
2505 goto restart;
2507 default:
2508 /* For other expressions, simply recurse on their operands.
2509 Manual tail recursion for unary expressions.
2510 Other non-expressions need not be processed. */
2511 if (cl == tcc_unary)
2513 x = TREE_OPERAND (x, 0);
2514 writer = 0;
2515 goto restart;
2517 else if (IS_EXPR_CODE_CLASS (cl))
2519 int lp;
2520 int max = TREE_OPERAND_LENGTH (x);
2521 for (lp = 0; lp < max; lp++)
2523 tmp_before = tmp_nosp = 0;
2524 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, 0);
2525 merge_tlist (&tmp_nosp, tmp_before, 0);
2526 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
2529 return;
2533 /* Try to warn for undefined behavior in EXPR due to missing sequence
2534 points. */
2536 DEBUG_FUNCTION void
2537 verify_sequence_points (tree expr)
2539 struct tlist *before_sp = 0, *after_sp = 0;
2541 warned_ids = 0;
2542 save_expr_cache = 0;
2543 if (tlist_firstobj == 0)
2545 gcc_obstack_init (&tlist_obstack);
2546 tlist_firstobj = (char *) obstack_alloc (&tlist_obstack, 0);
2549 verify_tree (expr, &before_sp, &after_sp, 0);
2550 warn_for_collisions (after_sp);
2551 obstack_free (&tlist_obstack, tlist_firstobj);
2554 /* Validate the expression after `case' and apply default promotions. */
2556 static tree
2557 check_case_value (tree value)
2559 if (value == NULL_TREE)
2560 return value;
2562 /* ??? Can we ever get nops here for a valid case value? We
2563 shouldn't for C. */
2564 STRIP_TYPE_NOPS (value);
2565 /* In C++, the following is allowed:
2567 const int i = 3;
2568 switch (...) { case i: ... }
2570 So, we try to reduce the VALUE to a constant that way. */
2571 if (c_dialect_cxx ())
2573 value = decl_constant_value (value);
2574 STRIP_TYPE_NOPS (value);
2575 value = fold (value);
2578 if (TREE_CODE (value) == INTEGER_CST)
2579 /* Promote char or short to int. */
2580 value = perform_integral_promotions (value);
2581 else if (value != error_mark_node)
2583 error ("case label does not reduce to an integer constant");
2584 value = error_mark_node;
2587 constant_expression_warning (value);
2589 return value;
2592 /* See if the case values LOW and HIGH are in the range of the original
2593 type (i.e. before the default conversion to int) of the switch testing
2594 expression.
2595 TYPE is the promoted type of the testing expression, and ORIG_TYPE is
2596 the type before promoting it. CASE_LOW_P is a pointer to the lower
2597 bound of the case label, and CASE_HIGH_P is the upper bound or NULL
2598 if the case is not a case range.
2599 The caller has to make sure that we are not called with NULL for
2600 CASE_LOW_P (i.e. the default case).
2601 Returns true if the case label is in range of ORIG_TYPE (saturated or
2602 untouched) or false if the label is out of range. */
2604 static bool
2605 check_case_bounds (tree type, tree orig_type,
2606 tree *case_low_p, tree *case_high_p)
2608 tree min_value, max_value;
2609 tree case_low = *case_low_p;
2610 tree case_high = case_high_p ? *case_high_p : case_low;
2612 /* If there was a problem with the original type, do nothing. */
2613 if (orig_type == error_mark_node)
2614 return true;
2616 min_value = TYPE_MIN_VALUE (orig_type);
2617 max_value = TYPE_MAX_VALUE (orig_type);
2619 /* Case label is less than minimum for type. */
2620 if (tree_int_cst_compare (case_low, min_value) < 0
2621 && tree_int_cst_compare (case_high, min_value) < 0)
2623 warning (0, "case label value is less than minimum value for type");
2624 return false;
2627 /* Case value is greater than maximum for type. */
2628 if (tree_int_cst_compare (case_low, max_value) > 0
2629 && tree_int_cst_compare (case_high, max_value) > 0)
2631 warning (0, "case label value exceeds maximum value for type");
2632 return false;
2635 /* Saturate lower case label value to minimum. */
2636 if (tree_int_cst_compare (case_high, min_value) >= 0
2637 && tree_int_cst_compare (case_low, min_value) < 0)
2639 warning (0, "lower value in case label range"
2640 " less than minimum value for type");
2641 case_low = min_value;
2644 /* Saturate upper case label value to maximum. */
2645 if (tree_int_cst_compare (case_low, max_value) <= 0
2646 && tree_int_cst_compare (case_high, max_value) > 0)
2648 warning (0, "upper value in case label range"
2649 " exceeds maximum value for type");
2650 case_high = max_value;
2653 if (*case_low_p != case_low)
2654 *case_low_p = convert (type, case_low);
2655 if (case_high_p && *case_high_p != case_high)
2656 *case_high_p = convert (type, case_high);
2658 return true;
2661 /* Return an integer type with BITS bits of precision,
2662 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2664 tree
2665 c_common_type_for_size (unsigned int bits, int unsignedp)
2667 if (bits == TYPE_PRECISION (integer_type_node))
2668 return unsignedp ? unsigned_type_node : integer_type_node;
2670 if (bits == TYPE_PRECISION (signed_char_type_node))
2671 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2673 if (bits == TYPE_PRECISION (short_integer_type_node))
2674 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2676 if (bits == TYPE_PRECISION (long_integer_type_node))
2677 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2679 if (bits == TYPE_PRECISION (long_long_integer_type_node))
2680 return (unsignedp ? long_long_unsigned_type_node
2681 : long_long_integer_type_node);
2683 if (int128_integer_type_node
2684 && bits == TYPE_PRECISION (int128_integer_type_node))
2685 return (unsignedp ? int128_unsigned_type_node
2686 : int128_integer_type_node);
2688 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
2689 return (unsignedp ? widest_unsigned_literal_type_node
2690 : widest_integer_literal_type_node);
2692 if (bits <= TYPE_PRECISION (intQI_type_node))
2693 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2695 if (bits <= TYPE_PRECISION (intHI_type_node))
2696 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2698 if (bits <= TYPE_PRECISION (intSI_type_node))
2699 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2701 if (bits <= TYPE_PRECISION (intDI_type_node))
2702 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2704 return 0;
2707 /* Return a fixed-point type that has at least IBIT ibits and FBIT fbits
2708 that is unsigned if UNSIGNEDP is nonzero, otherwise signed;
2709 and saturating if SATP is nonzero, otherwise not saturating. */
2711 tree
2712 c_common_fixed_point_type_for_size (unsigned int ibit, unsigned int fbit,
2713 int unsignedp, int satp)
2715 enum machine_mode mode;
2716 if (ibit == 0)
2717 mode = unsignedp ? UQQmode : QQmode;
2718 else
2719 mode = unsignedp ? UHAmode : HAmode;
2721 for (; mode != VOIDmode; mode = GET_MODE_WIDER_MODE (mode))
2722 if (GET_MODE_IBIT (mode) >= ibit && GET_MODE_FBIT (mode) >= fbit)
2723 break;
2725 if (mode == VOIDmode || !targetm.scalar_mode_supported_p (mode))
2727 sorry ("GCC cannot support operators with integer types and "
2728 "fixed-point types that have too many integral and "
2729 "fractional bits together");
2730 return 0;
2733 return c_common_type_for_mode (mode, satp);
2736 /* Used for communication between c_common_type_for_mode and
2737 c_register_builtin_type. */
2738 static GTY(()) tree registered_builtin_types;
2740 /* Return a data type that has machine mode MODE.
2741 If the mode is an integer,
2742 then UNSIGNEDP selects between signed and unsigned types.
2743 If the mode is a fixed-point mode,
2744 then UNSIGNEDP selects between saturating and nonsaturating types. */
2746 tree
2747 c_common_type_for_mode (enum machine_mode mode, int unsignedp)
2749 tree t;
2751 if (mode == TYPE_MODE (integer_type_node))
2752 return unsignedp ? unsigned_type_node : integer_type_node;
2754 if (mode == TYPE_MODE (signed_char_type_node))
2755 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2757 if (mode == TYPE_MODE (short_integer_type_node))
2758 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2760 if (mode == TYPE_MODE (long_integer_type_node))
2761 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2763 if (mode == TYPE_MODE (long_long_integer_type_node))
2764 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
2766 if (int128_integer_type_node
2767 && mode == TYPE_MODE (int128_integer_type_node))
2768 return unsignedp ? int128_unsigned_type_node : int128_integer_type_node;
2770 if (mode == TYPE_MODE (widest_integer_literal_type_node))
2771 return unsignedp ? widest_unsigned_literal_type_node
2772 : widest_integer_literal_type_node;
2774 if (mode == QImode)
2775 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2777 if (mode == HImode)
2778 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2780 if (mode == SImode)
2781 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2783 if (mode == DImode)
2784 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2786 #if HOST_BITS_PER_WIDE_INT >= 64
2787 if (mode == TYPE_MODE (intTI_type_node))
2788 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2789 #endif
2791 if (mode == TYPE_MODE (float_type_node))
2792 return float_type_node;
2794 if (mode == TYPE_MODE (double_type_node))
2795 return double_type_node;
2797 if (mode == TYPE_MODE (long_double_type_node))
2798 return long_double_type_node;
2800 if (mode == TYPE_MODE (void_type_node))
2801 return void_type_node;
2803 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
2804 return (unsignedp
2805 ? make_unsigned_type (GET_MODE_PRECISION (mode))
2806 : make_signed_type (GET_MODE_PRECISION (mode)));
2808 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
2809 return (unsignedp
2810 ? make_unsigned_type (GET_MODE_PRECISION (mode))
2811 : make_signed_type (GET_MODE_PRECISION (mode)));
2813 if (COMPLEX_MODE_P (mode))
2815 enum machine_mode inner_mode;
2816 tree inner_type;
2818 if (mode == TYPE_MODE (complex_float_type_node))
2819 return complex_float_type_node;
2820 if (mode == TYPE_MODE (complex_double_type_node))
2821 return complex_double_type_node;
2822 if (mode == TYPE_MODE (complex_long_double_type_node))
2823 return complex_long_double_type_node;
2825 if (mode == TYPE_MODE (complex_integer_type_node) && !unsignedp)
2826 return complex_integer_type_node;
2828 inner_mode = GET_MODE_INNER (mode);
2829 inner_type = c_common_type_for_mode (inner_mode, unsignedp);
2830 if (inner_type != NULL_TREE)
2831 return build_complex_type (inner_type);
2833 else if (VECTOR_MODE_P (mode))
2835 enum machine_mode inner_mode = GET_MODE_INNER (mode);
2836 tree inner_type = c_common_type_for_mode (inner_mode, unsignedp);
2837 if (inner_type != NULL_TREE)
2838 return build_vector_type_for_mode (inner_type, mode);
2841 if (mode == TYPE_MODE (dfloat32_type_node))
2842 return dfloat32_type_node;
2843 if (mode == TYPE_MODE (dfloat64_type_node))
2844 return dfloat64_type_node;
2845 if (mode == TYPE_MODE (dfloat128_type_node))
2846 return dfloat128_type_node;
2848 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode))
2850 if (mode == TYPE_MODE (short_fract_type_node))
2851 return unsignedp ? sat_short_fract_type_node : short_fract_type_node;
2852 if (mode == TYPE_MODE (fract_type_node))
2853 return unsignedp ? sat_fract_type_node : fract_type_node;
2854 if (mode == TYPE_MODE (long_fract_type_node))
2855 return unsignedp ? sat_long_fract_type_node : long_fract_type_node;
2856 if (mode == TYPE_MODE (long_long_fract_type_node))
2857 return unsignedp ? sat_long_long_fract_type_node
2858 : long_long_fract_type_node;
2860 if (mode == TYPE_MODE (unsigned_short_fract_type_node))
2861 return unsignedp ? sat_unsigned_short_fract_type_node
2862 : unsigned_short_fract_type_node;
2863 if (mode == TYPE_MODE (unsigned_fract_type_node))
2864 return unsignedp ? sat_unsigned_fract_type_node
2865 : unsigned_fract_type_node;
2866 if (mode == TYPE_MODE (unsigned_long_fract_type_node))
2867 return unsignedp ? sat_unsigned_long_fract_type_node
2868 : unsigned_long_fract_type_node;
2869 if (mode == TYPE_MODE (unsigned_long_long_fract_type_node))
2870 return unsignedp ? sat_unsigned_long_long_fract_type_node
2871 : unsigned_long_long_fract_type_node;
2873 if (mode == TYPE_MODE (short_accum_type_node))
2874 return unsignedp ? sat_short_accum_type_node : short_accum_type_node;
2875 if (mode == TYPE_MODE (accum_type_node))
2876 return unsignedp ? sat_accum_type_node : accum_type_node;
2877 if (mode == TYPE_MODE (long_accum_type_node))
2878 return unsignedp ? sat_long_accum_type_node : long_accum_type_node;
2879 if (mode == TYPE_MODE (long_long_accum_type_node))
2880 return unsignedp ? sat_long_long_accum_type_node
2881 : long_long_accum_type_node;
2883 if (mode == TYPE_MODE (unsigned_short_accum_type_node))
2884 return unsignedp ? sat_unsigned_short_accum_type_node
2885 : unsigned_short_accum_type_node;
2886 if (mode == TYPE_MODE (unsigned_accum_type_node))
2887 return unsignedp ? sat_unsigned_accum_type_node
2888 : unsigned_accum_type_node;
2889 if (mode == TYPE_MODE (unsigned_long_accum_type_node))
2890 return unsignedp ? sat_unsigned_long_accum_type_node
2891 : unsigned_long_accum_type_node;
2892 if (mode == TYPE_MODE (unsigned_long_long_accum_type_node))
2893 return unsignedp ? sat_unsigned_long_long_accum_type_node
2894 : unsigned_long_long_accum_type_node;
2896 if (mode == QQmode)
2897 return unsignedp ? sat_qq_type_node : qq_type_node;
2898 if (mode == HQmode)
2899 return unsignedp ? sat_hq_type_node : hq_type_node;
2900 if (mode == SQmode)
2901 return unsignedp ? sat_sq_type_node : sq_type_node;
2902 if (mode == DQmode)
2903 return unsignedp ? sat_dq_type_node : dq_type_node;
2904 if (mode == TQmode)
2905 return unsignedp ? sat_tq_type_node : tq_type_node;
2907 if (mode == UQQmode)
2908 return unsignedp ? sat_uqq_type_node : uqq_type_node;
2909 if (mode == UHQmode)
2910 return unsignedp ? sat_uhq_type_node : uhq_type_node;
2911 if (mode == USQmode)
2912 return unsignedp ? sat_usq_type_node : usq_type_node;
2913 if (mode == UDQmode)
2914 return unsignedp ? sat_udq_type_node : udq_type_node;
2915 if (mode == UTQmode)
2916 return unsignedp ? sat_utq_type_node : utq_type_node;
2918 if (mode == HAmode)
2919 return unsignedp ? sat_ha_type_node : ha_type_node;
2920 if (mode == SAmode)
2921 return unsignedp ? sat_sa_type_node : sa_type_node;
2922 if (mode == DAmode)
2923 return unsignedp ? sat_da_type_node : da_type_node;
2924 if (mode == TAmode)
2925 return unsignedp ? sat_ta_type_node : ta_type_node;
2927 if (mode == UHAmode)
2928 return unsignedp ? sat_uha_type_node : uha_type_node;
2929 if (mode == USAmode)
2930 return unsignedp ? sat_usa_type_node : usa_type_node;
2931 if (mode == UDAmode)
2932 return unsignedp ? sat_uda_type_node : uda_type_node;
2933 if (mode == UTAmode)
2934 return unsignedp ? sat_uta_type_node : uta_type_node;
2937 for (t = registered_builtin_types; t; t = TREE_CHAIN (t))
2938 if (TYPE_MODE (TREE_VALUE (t)) == mode)
2939 return TREE_VALUE (t);
2941 return 0;
2944 tree
2945 c_common_unsigned_type (tree type)
2947 return c_common_signed_or_unsigned_type (1, type);
2950 /* Return a signed type the same as TYPE in other respects. */
2952 tree
2953 c_common_signed_type (tree type)
2955 return c_common_signed_or_unsigned_type (0, type);
2958 /* Return a type the same as TYPE except unsigned or
2959 signed according to UNSIGNEDP. */
2961 tree
2962 c_common_signed_or_unsigned_type (int unsignedp, tree type)
2964 tree type1;
2966 /* This block of code emulates the behavior of the old
2967 c_common_unsigned_type. In particular, it returns
2968 long_unsigned_type_node if passed a long, even when a int would
2969 have the same size. This is necessary for warnings to work
2970 correctly in archs where sizeof(int) == sizeof(long) */
2972 type1 = TYPE_MAIN_VARIANT (type);
2973 if (type1 == signed_char_type_node || type1 == char_type_node || type1 == unsigned_char_type_node)
2974 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2975 if (type1 == integer_type_node || type1 == unsigned_type_node)
2976 return unsignedp ? unsigned_type_node : integer_type_node;
2977 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2978 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2979 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2980 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2981 if (type1 == long_long_integer_type_node || type1 == long_long_unsigned_type_node)
2982 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
2983 if (int128_integer_type_node
2984 && (type1 == int128_integer_type_node
2985 || type1 == int128_unsigned_type_node))
2986 return unsignedp ? int128_unsigned_type_node : int128_integer_type_node;
2987 if (type1 == widest_integer_literal_type_node || type1 == widest_unsigned_literal_type_node)
2988 return unsignedp ? widest_unsigned_literal_type_node : widest_integer_literal_type_node;
2989 #if HOST_BITS_PER_WIDE_INT >= 64
2990 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2991 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2992 #endif
2993 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2994 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2995 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2996 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2997 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
2998 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2999 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
3000 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3002 #define C_COMMON_FIXED_TYPES(NAME) \
3003 if (type1 == short_ ## NAME ## _type_node \
3004 || type1 == unsigned_short_ ## NAME ## _type_node) \
3005 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
3006 : short_ ## NAME ## _type_node; \
3007 if (type1 == NAME ## _type_node \
3008 || type1 == unsigned_ ## NAME ## _type_node) \
3009 return unsignedp ? unsigned_ ## NAME ## _type_node \
3010 : NAME ## _type_node; \
3011 if (type1 == long_ ## NAME ## _type_node \
3012 || type1 == unsigned_long_ ## NAME ## _type_node) \
3013 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
3014 : long_ ## NAME ## _type_node; \
3015 if (type1 == long_long_ ## NAME ## _type_node \
3016 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
3017 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
3018 : long_long_ ## NAME ## _type_node;
3020 #define C_COMMON_FIXED_MODE_TYPES(NAME) \
3021 if (type1 == NAME ## _type_node \
3022 || type1 == u ## NAME ## _type_node) \
3023 return unsignedp ? u ## NAME ## _type_node \
3024 : NAME ## _type_node;
3026 #define C_COMMON_FIXED_TYPES_SAT(NAME) \
3027 if (type1 == sat_ ## short_ ## NAME ## _type_node \
3028 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
3029 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
3030 : sat_ ## short_ ## NAME ## _type_node; \
3031 if (type1 == sat_ ## NAME ## _type_node \
3032 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
3033 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
3034 : sat_ ## NAME ## _type_node; \
3035 if (type1 == sat_ ## long_ ## NAME ## _type_node \
3036 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
3037 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
3038 : sat_ ## long_ ## NAME ## _type_node; \
3039 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
3040 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
3041 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
3042 : sat_ ## long_long_ ## NAME ## _type_node;
3044 #define C_COMMON_FIXED_MODE_TYPES_SAT(NAME) \
3045 if (type1 == sat_ ## NAME ## _type_node \
3046 || type1 == sat_ ## u ## NAME ## _type_node) \
3047 return unsignedp ? sat_ ## u ## NAME ## _type_node \
3048 : sat_ ## NAME ## _type_node;
3050 C_COMMON_FIXED_TYPES (fract);
3051 C_COMMON_FIXED_TYPES_SAT (fract);
3052 C_COMMON_FIXED_TYPES (accum);
3053 C_COMMON_FIXED_TYPES_SAT (accum);
3055 C_COMMON_FIXED_MODE_TYPES (qq);
3056 C_COMMON_FIXED_MODE_TYPES (hq);
3057 C_COMMON_FIXED_MODE_TYPES (sq);
3058 C_COMMON_FIXED_MODE_TYPES (dq);
3059 C_COMMON_FIXED_MODE_TYPES (tq);
3060 C_COMMON_FIXED_MODE_TYPES_SAT (qq);
3061 C_COMMON_FIXED_MODE_TYPES_SAT (hq);
3062 C_COMMON_FIXED_MODE_TYPES_SAT (sq);
3063 C_COMMON_FIXED_MODE_TYPES_SAT (dq);
3064 C_COMMON_FIXED_MODE_TYPES_SAT (tq);
3065 C_COMMON_FIXED_MODE_TYPES (ha);
3066 C_COMMON_FIXED_MODE_TYPES (sa);
3067 C_COMMON_FIXED_MODE_TYPES (da);
3068 C_COMMON_FIXED_MODE_TYPES (ta);
3069 C_COMMON_FIXED_MODE_TYPES_SAT (ha);
3070 C_COMMON_FIXED_MODE_TYPES_SAT (sa);
3071 C_COMMON_FIXED_MODE_TYPES_SAT (da);
3072 C_COMMON_FIXED_MODE_TYPES_SAT (ta);
3074 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
3075 the precision; they have precision set to match their range, but
3076 may use a wider mode to match an ABI. If we change modes, we may
3077 wind up with bad conversions. For INTEGER_TYPEs in C, must check
3078 the precision as well, so as to yield correct results for
3079 bit-field types. C++ does not have these separate bit-field
3080 types, and producing a signed or unsigned variant of an
3081 ENUMERAL_TYPE may cause other problems as well. */
3083 if (!INTEGRAL_TYPE_P (type)
3084 || TYPE_UNSIGNED (type) == unsignedp)
3085 return type;
3087 #define TYPE_OK(node) \
3088 (TYPE_MODE (type) == TYPE_MODE (node) \
3089 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
3090 if (TYPE_OK (signed_char_type_node))
3091 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3092 if (TYPE_OK (integer_type_node))
3093 return unsignedp ? unsigned_type_node : integer_type_node;
3094 if (TYPE_OK (short_integer_type_node))
3095 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3096 if (TYPE_OK (long_integer_type_node))
3097 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3098 if (TYPE_OK (long_long_integer_type_node))
3099 return (unsignedp ? long_long_unsigned_type_node
3100 : long_long_integer_type_node);
3101 if (int128_integer_type_node && TYPE_OK (int128_integer_type_node))
3102 return (unsignedp ? int128_unsigned_type_node
3103 : int128_integer_type_node);
3104 if (TYPE_OK (widest_integer_literal_type_node))
3105 return (unsignedp ? widest_unsigned_literal_type_node
3106 : widest_integer_literal_type_node);
3108 #if HOST_BITS_PER_WIDE_INT >= 64
3109 if (TYPE_OK (intTI_type_node))
3110 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3111 #endif
3112 if (TYPE_OK (intDI_type_node))
3113 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3114 if (TYPE_OK (intSI_type_node))
3115 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3116 if (TYPE_OK (intHI_type_node))
3117 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3118 if (TYPE_OK (intQI_type_node))
3119 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3120 #undef TYPE_OK
3122 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
3125 /* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
3127 tree
3128 c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width, int unsignedp)
3130 /* Extended integer types of the same width as a standard type have
3131 lesser rank, so those of the same width as int promote to int or
3132 unsigned int and are valid for printf formats expecting int or
3133 unsigned int. To avoid such special cases, avoid creating
3134 extended integer types for bit-fields if a standard integer type
3135 is available. */
3136 if (width == TYPE_PRECISION (integer_type_node))
3137 return unsignedp ? unsigned_type_node : integer_type_node;
3138 if (width == TYPE_PRECISION (signed_char_type_node))
3139 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3140 if (width == TYPE_PRECISION (short_integer_type_node))
3141 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3142 if (width == TYPE_PRECISION (long_integer_type_node))
3143 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3144 if (width == TYPE_PRECISION (long_long_integer_type_node))
3145 return (unsignedp ? long_long_unsigned_type_node
3146 : long_long_integer_type_node);
3147 if (int128_integer_type_node
3148 && width == TYPE_PRECISION (int128_integer_type_node))
3149 return (unsignedp ? int128_unsigned_type_node
3150 : int128_integer_type_node);
3151 return build_nonstandard_integer_type (width, unsignedp);
3154 /* The C version of the register_builtin_type langhook. */
3156 void
3157 c_register_builtin_type (tree type, const char* name)
3159 tree decl;
3161 decl = build_decl (UNKNOWN_LOCATION,
3162 TYPE_DECL, get_identifier (name), type);
3163 DECL_ARTIFICIAL (decl) = 1;
3164 if (!TYPE_NAME (type))
3165 TYPE_NAME (type) = decl;
3166 pushdecl (decl);
3168 registered_builtin_types = tree_cons (0, type, registered_builtin_types);
3171 /* Print an error message for invalid operands to arith operation
3172 CODE with TYPE0 for operand 0, and TYPE1 for operand 1.
3173 LOCATION is the location of the message. */
3175 void
3176 binary_op_error (location_t location, enum tree_code code,
3177 tree type0, tree type1)
3179 const char *opname;
3181 switch (code)
3183 case PLUS_EXPR:
3184 opname = "+"; break;
3185 case MINUS_EXPR:
3186 opname = "-"; break;
3187 case MULT_EXPR:
3188 opname = "*"; break;
3189 case MAX_EXPR:
3190 opname = "max"; break;
3191 case MIN_EXPR:
3192 opname = "min"; break;
3193 case EQ_EXPR:
3194 opname = "=="; break;
3195 case NE_EXPR:
3196 opname = "!="; break;
3197 case LE_EXPR:
3198 opname = "<="; break;
3199 case GE_EXPR:
3200 opname = ">="; break;
3201 case LT_EXPR:
3202 opname = "<"; break;
3203 case GT_EXPR:
3204 opname = ">"; break;
3205 case LSHIFT_EXPR:
3206 opname = "<<"; break;
3207 case RSHIFT_EXPR:
3208 opname = ">>"; break;
3209 case TRUNC_MOD_EXPR:
3210 case FLOOR_MOD_EXPR:
3211 opname = "%"; break;
3212 case TRUNC_DIV_EXPR:
3213 case FLOOR_DIV_EXPR:
3214 opname = "/"; break;
3215 case BIT_AND_EXPR:
3216 opname = "&"; break;
3217 case BIT_IOR_EXPR:
3218 opname = "|"; break;
3219 case TRUTH_ANDIF_EXPR:
3220 opname = "&&"; break;
3221 case TRUTH_ORIF_EXPR:
3222 opname = "||"; break;
3223 case BIT_XOR_EXPR:
3224 opname = "^"; break;
3225 default:
3226 gcc_unreachable ();
3228 error_at (location,
3229 "invalid operands to binary %s (have %qT and %qT)", opname,
3230 type0, type1);
3233 /* Subroutine of build_binary_op, used for comparison operations.
3234 See if the operands have both been converted from subword integer types
3235 and, if so, perhaps change them both back to their original type.
3236 This function is also responsible for converting the two operands
3237 to the proper common type for comparison.
3239 The arguments of this function are all pointers to local variables
3240 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
3241 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
3243 If this function returns nonzero, it means that the comparison has
3244 a constant value. What this function returns is an expression for
3245 that value. */
3247 tree
3248 shorten_compare (tree *op0_ptr, tree *op1_ptr, tree *restype_ptr,
3249 enum tree_code *rescode_ptr)
3251 tree type;
3252 tree op0 = *op0_ptr;
3253 tree op1 = *op1_ptr;
3254 int unsignedp0, unsignedp1;
3255 int real1, real2;
3256 tree primop0, primop1;
3257 enum tree_code code = *rescode_ptr;
3259 /* Throw away any conversions to wider types
3260 already present in the operands. */
3262 primop0 = get_narrower (op0, &unsignedp0);
3263 primop1 = get_narrower (op1, &unsignedp1);
3265 /* Handle the case that OP0 does not *contain* a conversion
3266 but it *requires* conversion to FINAL_TYPE. */
3268 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
3269 unsignedp0 = TYPE_UNSIGNED (TREE_TYPE (op0));
3270 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
3271 unsignedp1 = TYPE_UNSIGNED (TREE_TYPE (op1));
3273 /* If one of the operands must be floated, we cannot optimize. */
3274 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
3275 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
3277 /* If first arg is constant, swap the args (changing operation
3278 so value is preserved), for canonicalization. Don't do this if
3279 the second arg is 0. */
3281 if (TREE_CONSTANT (primop0)
3282 && !integer_zerop (primop1) && !real_zerop (primop1)
3283 && !fixed_zerop (primop1))
3285 tree tem = primop0;
3286 int temi = unsignedp0;
3287 primop0 = primop1;
3288 primop1 = tem;
3289 tem = op0;
3290 op0 = op1;
3291 op1 = tem;
3292 *op0_ptr = op0;
3293 *op1_ptr = op1;
3294 unsignedp0 = unsignedp1;
3295 unsignedp1 = temi;
3296 temi = real1;
3297 real1 = real2;
3298 real2 = temi;
3300 switch (code)
3302 case LT_EXPR:
3303 code = GT_EXPR;
3304 break;
3305 case GT_EXPR:
3306 code = LT_EXPR;
3307 break;
3308 case LE_EXPR:
3309 code = GE_EXPR;
3310 break;
3311 case GE_EXPR:
3312 code = LE_EXPR;
3313 break;
3314 default:
3315 break;
3317 *rescode_ptr = code;
3320 /* If comparing an integer against a constant more bits wide,
3321 maybe we can deduce a value of 1 or 0 independent of the data.
3322 Or else truncate the constant now
3323 rather than extend the variable at run time.
3325 This is only interesting if the constant is the wider arg.
3326 Also, it is not safe if the constant is unsigned and the
3327 variable arg is signed, since in this case the variable
3328 would be sign-extended and then regarded as unsigned.
3329 Our technique fails in this case because the lowest/highest
3330 possible unsigned results don't follow naturally from the
3331 lowest/highest possible values of the variable operand.
3332 For just EQ_EXPR and NE_EXPR there is another technique that
3333 could be used: see if the constant can be faithfully represented
3334 in the other operand's type, by truncating it and reextending it
3335 and see if that preserves the constant's value. */
3337 if (!real1 && !real2
3338 && TREE_CODE (TREE_TYPE (primop0)) != FIXED_POINT_TYPE
3339 && TREE_CODE (primop1) == INTEGER_CST
3340 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
3342 int min_gt, max_gt, min_lt, max_lt;
3343 tree maxval, minval;
3344 /* 1 if comparison is nominally unsigned. */
3345 int unsignedp = TYPE_UNSIGNED (*restype_ptr);
3346 tree val;
3348 type = c_common_signed_or_unsigned_type (unsignedp0,
3349 TREE_TYPE (primop0));
3351 maxval = TYPE_MAX_VALUE (type);
3352 minval = TYPE_MIN_VALUE (type);
3354 if (unsignedp && !unsignedp0)
3355 *restype_ptr = c_common_signed_type (*restype_ptr);
3357 if (TREE_TYPE (primop1) != *restype_ptr)
3359 /* Convert primop1 to target type, but do not introduce
3360 additional overflow. We know primop1 is an int_cst. */
3361 primop1 = force_fit_type_double (*restype_ptr,
3362 tree_to_double_int (primop1),
3363 0, TREE_OVERFLOW (primop1));
3365 if (type != *restype_ptr)
3367 minval = convert (*restype_ptr, minval);
3368 maxval = convert (*restype_ptr, maxval);
3371 if (unsignedp && unsignedp0)
3373 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
3374 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
3375 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
3376 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
3378 else
3380 min_gt = INT_CST_LT (primop1, minval);
3381 max_gt = INT_CST_LT (primop1, maxval);
3382 min_lt = INT_CST_LT (minval, primop1);
3383 max_lt = INT_CST_LT (maxval, primop1);
3386 val = 0;
3387 /* This used to be a switch, but Genix compiler can't handle that. */
3388 if (code == NE_EXPR)
3390 if (max_lt || min_gt)
3391 val = truthvalue_true_node;
3393 else if (code == EQ_EXPR)
3395 if (max_lt || min_gt)
3396 val = truthvalue_false_node;
3398 else if (code == LT_EXPR)
3400 if (max_lt)
3401 val = truthvalue_true_node;
3402 if (!min_lt)
3403 val = truthvalue_false_node;
3405 else if (code == GT_EXPR)
3407 if (min_gt)
3408 val = truthvalue_true_node;
3409 if (!max_gt)
3410 val = truthvalue_false_node;
3412 else if (code == LE_EXPR)
3414 if (!max_gt)
3415 val = truthvalue_true_node;
3416 if (min_gt)
3417 val = truthvalue_false_node;
3419 else if (code == GE_EXPR)
3421 if (!min_lt)
3422 val = truthvalue_true_node;
3423 if (max_lt)
3424 val = truthvalue_false_node;
3427 /* If primop0 was sign-extended and unsigned comparison specd,
3428 we did a signed comparison above using the signed type bounds.
3429 But the comparison we output must be unsigned.
3431 Also, for inequalities, VAL is no good; but if the signed
3432 comparison had *any* fixed result, it follows that the
3433 unsigned comparison just tests the sign in reverse
3434 (positive values are LE, negative ones GE).
3435 So we can generate an unsigned comparison
3436 against an extreme value of the signed type. */
3438 if (unsignedp && !unsignedp0)
3440 if (val != 0)
3441 switch (code)
3443 case LT_EXPR:
3444 case GE_EXPR:
3445 primop1 = TYPE_MIN_VALUE (type);
3446 val = 0;
3447 break;
3449 case LE_EXPR:
3450 case GT_EXPR:
3451 primop1 = TYPE_MAX_VALUE (type);
3452 val = 0;
3453 break;
3455 default:
3456 break;
3458 type = c_common_unsigned_type (type);
3461 if (TREE_CODE (primop0) != INTEGER_CST)
3463 if (val == truthvalue_false_node)
3464 warning (OPT_Wtype_limits, "comparison is always false due to limited range of data type");
3465 if (val == truthvalue_true_node)
3466 warning (OPT_Wtype_limits, "comparison is always true due to limited range of data type");
3469 if (val != 0)
3471 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3472 if (TREE_SIDE_EFFECTS (primop0))
3473 return build2 (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
3474 return val;
3477 /* Value is not predetermined, but do the comparison
3478 in the type of the operand that is not constant.
3479 TYPE is already properly set. */
3482 /* If either arg is decimal float and the other is float, find the
3483 proper common type to use for comparison. */
3484 else if (real1 && real2
3485 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
3486 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1)))))
3487 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
3489 else if (real1 && real2
3490 && (TYPE_PRECISION (TREE_TYPE (primop0))
3491 == TYPE_PRECISION (TREE_TYPE (primop1))))
3492 type = TREE_TYPE (primop0);
3494 /* If args' natural types are both narrower than nominal type
3495 and both extend in the same manner, compare them
3496 in the type of the wider arg.
3497 Otherwise must actually extend both to the nominal
3498 common type lest different ways of extending
3499 alter the result.
3500 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
3502 else if (unsignedp0 == unsignedp1 && real1 == real2
3503 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
3504 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
3506 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
3507 type = c_common_signed_or_unsigned_type (unsignedp0
3508 || TYPE_UNSIGNED (*restype_ptr),
3509 type);
3510 /* Make sure shorter operand is extended the right way
3511 to match the longer operand. */
3512 primop0
3513 = convert (c_common_signed_or_unsigned_type (unsignedp0,
3514 TREE_TYPE (primop0)),
3515 primop0);
3516 primop1
3517 = convert (c_common_signed_or_unsigned_type (unsignedp1,
3518 TREE_TYPE (primop1)),
3519 primop1);
3521 else
3523 /* Here we must do the comparison on the nominal type
3524 using the args exactly as we received them. */
3525 type = *restype_ptr;
3526 primop0 = op0;
3527 primop1 = op1;
3529 if (!real1 && !real2 && integer_zerop (primop1)
3530 && TYPE_UNSIGNED (*restype_ptr))
3532 tree value = 0;
3533 switch (code)
3535 case GE_EXPR:
3536 /* All unsigned values are >= 0, so we warn. However,
3537 if OP0 is a constant that is >= 0, the signedness of
3538 the comparison isn't an issue, so suppress the
3539 warning. */
3540 if (warn_type_limits && !in_system_header
3541 && !(TREE_CODE (primop0) == INTEGER_CST
3542 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
3543 primop0))))
3544 warning (OPT_Wtype_limits,
3545 "comparison of unsigned expression >= 0 is always true");
3546 value = truthvalue_true_node;
3547 break;
3549 case LT_EXPR:
3550 if (warn_type_limits && !in_system_header
3551 && !(TREE_CODE (primop0) == INTEGER_CST
3552 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
3553 primop0))))
3554 warning (OPT_Wtype_limits,
3555 "comparison of unsigned expression < 0 is always false");
3556 value = truthvalue_false_node;
3557 break;
3559 default:
3560 break;
3563 if (value != 0)
3565 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3566 if (TREE_SIDE_EFFECTS (primop0))
3567 return build2 (COMPOUND_EXPR, TREE_TYPE (value),
3568 primop0, value);
3569 return value;
3574 *op0_ptr = convert (type, primop0);
3575 *op1_ptr = convert (type, primop1);
3577 *restype_ptr = truthvalue_type_node;
3579 return 0;
3582 /* Return a tree for the sum or difference (RESULTCODE says which)
3583 of pointer PTROP and integer INTOP. */
3585 tree
3586 pointer_int_sum (location_t loc, enum tree_code resultcode,
3587 tree ptrop, tree intop)
3589 tree size_exp, ret;
3591 /* The result is a pointer of the same type that is being added. */
3592 tree result_type = TREE_TYPE (ptrop);
3594 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
3596 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
3597 "pointer of type %<void *%> used in arithmetic");
3598 size_exp = integer_one_node;
3600 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
3602 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
3603 "pointer to a function used in arithmetic");
3604 size_exp = integer_one_node;
3606 else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
3608 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
3609 "pointer to member function used in arithmetic");
3610 size_exp = integer_one_node;
3612 else
3613 size_exp = size_in_bytes (TREE_TYPE (result_type));
3615 /* We are manipulating pointer values, so we don't need to warn
3616 about relying on undefined signed overflow. We disable the
3617 warning here because we use integer types so fold won't know that
3618 they are really pointers. */
3619 fold_defer_overflow_warnings ();
3621 /* If what we are about to multiply by the size of the elements
3622 contains a constant term, apply distributive law
3623 and multiply that constant term separately.
3624 This helps produce common subexpressions. */
3625 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
3626 && !TREE_CONSTANT (intop)
3627 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
3628 && TREE_CONSTANT (size_exp)
3629 /* If the constant comes from pointer subtraction,
3630 skip this optimization--it would cause an error. */
3631 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
3632 /* If the constant is unsigned, and smaller than the pointer size,
3633 then we must skip this optimization. This is because it could cause
3634 an overflow error if the constant is negative but INTOP is not. */
3635 && (!TYPE_UNSIGNED (TREE_TYPE (intop))
3636 || (TYPE_PRECISION (TREE_TYPE (intop))
3637 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
3639 enum tree_code subcode = resultcode;
3640 tree int_type = TREE_TYPE (intop);
3641 if (TREE_CODE (intop) == MINUS_EXPR)
3642 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
3643 /* Convert both subexpression types to the type of intop,
3644 because weird cases involving pointer arithmetic
3645 can result in a sum or difference with different type args. */
3646 ptrop = build_binary_op (EXPR_LOCATION (TREE_OPERAND (intop, 1)),
3647 subcode, ptrop,
3648 convert (int_type, TREE_OPERAND (intop, 1)), 1);
3649 intop = convert (int_type, TREE_OPERAND (intop, 0));
3652 /* Convert the integer argument to a type the same size as sizetype
3653 so the multiply won't overflow spuriously. */
3654 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
3655 || TYPE_UNSIGNED (TREE_TYPE (intop)) != TYPE_UNSIGNED (sizetype))
3656 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
3657 TYPE_UNSIGNED (sizetype)), intop);
3659 /* Replace the integer argument with a suitable product by the object size.
3660 Do this multiplication as signed, then convert to the appropriate type
3661 for the pointer operation and disregard an overflow that occured only
3662 because of the sign-extension change in the latter conversion. */
3664 tree t = build_binary_op (loc,
3665 MULT_EXPR, intop,
3666 convert (TREE_TYPE (intop), size_exp), 1);
3667 intop = convert (sizetype, t);
3668 if (TREE_OVERFLOW_P (intop) && !TREE_OVERFLOW (t))
3669 intop = build_int_cst_wide (TREE_TYPE (intop), TREE_INT_CST_LOW (intop),
3670 TREE_INT_CST_HIGH (intop));
3673 /* Create the sum or difference. */
3674 if (resultcode == MINUS_EXPR)
3675 intop = fold_build1_loc (loc, NEGATE_EXPR, sizetype, intop);
3677 ret = fold_build2_loc (loc, POINTER_PLUS_EXPR, result_type, ptrop, intop);
3679 fold_undefer_and_ignore_overflow_warnings ();
3681 return ret;
3684 /* Wrap a C_MAYBE_CONST_EXPR around an expression that is fully folded
3685 and if NON_CONST is known not to be permitted in an evaluated part
3686 of a constant expression. */
3688 tree
3689 c_wrap_maybe_const (tree expr, bool non_const)
3691 bool nowarning = TREE_NO_WARNING (expr);
3692 location_t loc = EXPR_LOCATION (expr);
3694 /* This should never be called for C++. */
3695 if (c_dialect_cxx ())
3696 gcc_unreachable ();
3698 /* The result of folding may have a NOP_EXPR to set TREE_NO_WARNING. */
3699 STRIP_TYPE_NOPS (expr);
3700 expr = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (expr), NULL, expr);
3701 C_MAYBE_CONST_EXPR_NON_CONST (expr) = non_const;
3702 if (nowarning)
3703 TREE_NO_WARNING (expr) = 1;
3704 protected_set_expr_location (expr, loc);
3706 return expr;
3709 /* Wrap a SAVE_EXPR around EXPR, if appropriate. Like save_expr, but
3710 for C folds the inside expression and wraps a C_MAYBE_CONST_EXPR
3711 around the SAVE_EXPR if needed so that c_fully_fold does not need
3712 to look inside SAVE_EXPRs. */
3714 tree
3715 c_save_expr (tree expr)
3717 bool maybe_const = true;
3718 if (c_dialect_cxx ())
3719 return save_expr (expr);
3720 expr = c_fully_fold (expr, false, &maybe_const);
3721 expr = save_expr (expr);
3722 if (!maybe_const)
3723 expr = c_wrap_maybe_const (expr, true);
3724 return expr;
3727 /* Return whether EXPR is a declaration whose address can never be
3728 NULL. */
3730 bool
3731 decl_with_nonnull_addr_p (const_tree expr)
3733 return (DECL_P (expr)
3734 && (TREE_CODE (expr) == PARM_DECL
3735 || TREE_CODE (expr) == LABEL_DECL
3736 || !DECL_WEAK (expr)));
3739 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
3740 or for an `if' or `while' statement or ?..: exp. It should already
3741 have been validated to be of suitable type; otherwise, a bad
3742 diagnostic may result.
3744 The EXPR is located at LOCATION.
3746 This preparation consists of taking the ordinary
3747 representation of an expression expr and producing a valid tree
3748 boolean expression describing whether expr is nonzero. We could
3749 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
3750 but we optimize comparisons, &&, ||, and !.
3752 The resulting type should always be `truthvalue_type_node'. */
3754 tree
3755 c_common_truthvalue_conversion (location_t location, tree expr)
3757 switch (TREE_CODE (expr))
3759 case EQ_EXPR: case NE_EXPR: case UNEQ_EXPR: case LTGT_EXPR:
3760 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
3761 case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
3762 case ORDERED_EXPR: case UNORDERED_EXPR:
3763 if (TREE_TYPE (expr) == truthvalue_type_node)
3764 return expr;
3765 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
3766 TREE_OPERAND (expr, 0), TREE_OPERAND (expr, 1));
3767 goto ret;
3769 case TRUTH_ANDIF_EXPR:
3770 case TRUTH_ORIF_EXPR:
3771 case TRUTH_AND_EXPR:
3772 case TRUTH_OR_EXPR:
3773 case TRUTH_XOR_EXPR:
3774 if (TREE_TYPE (expr) == truthvalue_type_node)
3775 return expr;
3776 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
3777 c_common_truthvalue_conversion (location,
3778 TREE_OPERAND (expr, 0)),
3779 c_common_truthvalue_conversion (location,
3780 TREE_OPERAND (expr, 1)));
3781 goto ret;
3783 case TRUTH_NOT_EXPR:
3784 if (TREE_TYPE (expr) == truthvalue_type_node)
3785 return expr;
3786 expr = build1 (TREE_CODE (expr), truthvalue_type_node,
3787 c_common_truthvalue_conversion (location,
3788 TREE_OPERAND (expr, 0)));
3789 goto ret;
3791 case ERROR_MARK:
3792 return expr;
3794 case INTEGER_CST:
3795 return integer_zerop (expr) ? truthvalue_false_node
3796 : truthvalue_true_node;
3798 case REAL_CST:
3799 return real_compare (NE_EXPR, &TREE_REAL_CST (expr), &dconst0)
3800 ? truthvalue_true_node
3801 : truthvalue_false_node;
3803 case FIXED_CST:
3804 return fixed_compare (NE_EXPR, &TREE_FIXED_CST (expr),
3805 &FCONST0 (TYPE_MODE (TREE_TYPE (expr))))
3806 ? truthvalue_true_node
3807 : truthvalue_false_node;
3809 case FUNCTION_DECL:
3810 expr = build_unary_op (location, ADDR_EXPR, expr, 0);
3811 /* Fall through. */
3813 case ADDR_EXPR:
3815 tree inner = TREE_OPERAND (expr, 0);
3816 if (decl_with_nonnull_addr_p (inner))
3818 /* Common Ada/Pascal programmer's mistake. */
3819 warning_at (location,
3820 OPT_Waddress,
3821 "the address of %qD will always evaluate as %<true%>",
3822 inner);
3823 return truthvalue_true_node;
3825 break;
3828 case COMPLEX_EXPR:
3829 expr = build_binary_op (EXPR_LOCATION (expr),
3830 (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
3831 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
3832 c_common_truthvalue_conversion (location,
3833 TREE_OPERAND (expr, 0)),
3834 c_common_truthvalue_conversion (location,
3835 TREE_OPERAND (expr, 1)),
3837 goto ret;
3839 case NEGATE_EXPR:
3840 case ABS_EXPR:
3841 case FLOAT_EXPR:
3842 case EXCESS_PRECISION_EXPR:
3843 /* These don't change whether an object is nonzero or zero. */
3844 return c_common_truthvalue_conversion (location, TREE_OPERAND (expr, 0));
3846 case LROTATE_EXPR:
3847 case RROTATE_EXPR:
3848 /* These don't change whether an object is zero or nonzero, but
3849 we can't ignore them if their second arg has side-effects. */
3850 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
3852 expr = build2 (COMPOUND_EXPR, truthvalue_type_node,
3853 TREE_OPERAND (expr, 1),
3854 c_common_truthvalue_conversion
3855 (location, TREE_OPERAND (expr, 0)));
3856 goto ret;
3858 else
3859 return c_common_truthvalue_conversion (location,
3860 TREE_OPERAND (expr, 0));
3862 case COND_EXPR:
3863 /* Distribute the conversion into the arms of a COND_EXPR. */
3864 if (c_dialect_cxx ())
3866 expr = fold_build3_loc (location, COND_EXPR, truthvalue_type_node,
3867 TREE_OPERAND (expr, 0),
3868 c_common_truthvalue_conversion (location,
3869 TREE_OPERAND (expr,
3870 1)),
3871 c_common_truthvalue_conversion (location,
3872 TREE_OPERAND (expr,
3873 2)));
3874 goto ret;
3876 else
3878 /* Folding will happen later for C. */
3879 expr = build3 (COND_EXPR, truthvalue_type_node,
3880 TREE_OPERAND (expr, 0),
3881 c_common_truthvalue_conversion (location,
3882 TREE_OPERAND (expr, 1)),
3883 c_common_truthvalue_conversion (location,
3884 TREE_OPERAND (expr, 2)));
3885 goto ret;
3888 CASE_CONVERT:
3889 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
3890 since that affects how `default_conversion' will behave. */
3891 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
3892 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
3893 break;
3894 /* If this is widening the argument, we can ignore it. */
3895 if (TYPE_PRECISION (TREE_TYPE (expr))
3896 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
3897 return c_common_truthvalue_conversion (location,
3898 TREE_OPERAND (expr, 0));
3899 break;
3901 case MODIFY_EXPR:
3902 if (!TREE_NO_WARNING (expr)
3903 && warn_parentheses)
3905 warning (OPT_Wparentheses,
3906 "suggest parentheses around assignment used as truth value");
3907 TREE_NO_WARNING (expr) = 1;
3909 break;
3911 default:
3912 break;
3915 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
3917 tree t = c_save_expr (expr);
3918 expr = (build_binary_op
3919 (EXPR_LOCATION (expr),
3920 (TREE_SIDE_EFFECTS (expr)
3921 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
3922 c_common_truthvalue_conversion
3923 (location,
3924 build_unary_op (location, REALPART_EXPR, t, 0)),
3925 c_common_truthvalue_conversion
3926 (location,
3927 build_unary_op (location, IMAGPART_EXPR, t, 0)),
3928 0));
3929 goto ret;
3932 if (TREE_CODE (TREE_TYPE (expr)) == FIXED_POINT_TYPE)
3934 tree fixed_zero_node = build_fixed (TREE_TYPE (expr),
3935 FCONST0 (TYPE_MODE
3936 (TREE_TYPE (expr))));
3937 return build_binary_op (location, NE_EXPR, expr, fixed_zero_node, 1);
3939 else
3940 return build_binary_op (location, NE_EXPR, expr, integer_zero_node, 1);
3942 ret:
3943 protected_set_expr_location (expr, location);
3944 return expr;
3947 static void def_builtin_1 (enum built_in_function fncode,
3948 const char *name,
3949 enum built_in_class fnclass,
3950 tree fntype, tree libtype,
3951 bool both_p, bool fallback_p, bool nonansi_p,
3952 tree fnattrs, bool implicit_p);
3955 /* Apply the TYPE_QUALS to the new DECL. */
3957 void
3958 c_apply_type_quals_to_decl (int type_quals, tree decl)
3960 tree type = TREE_TYPE (decl);
3962 if (type == error_mark_node)
3963 return;
3965 if (((type_quals & TYPE_QUAL_CONST)
3966 || (type && TREE_CODE (type) == REFERENCE_TYPE))
3967 /* An object declared 'const' is only readonly after it is
3968 initialized. We don't have any way of expressing this currently,
3969 so we need to be conservative and unset TREE_READONLY for types
3970 with constructors. Otherwise aliasing code will ignore stores in
3971 an inline constructor. */
3972 && !(type && TYPE_NEEDS_CONSTRUCTING (type)))
3973 TREE_READONLY (decl) = 1;
3974 if (type_quals & TYPE_QUAL_VOLATILE)
3976 TREE_SIDE_EFFECTS (decl) = 1;
3977 TREE_THIS_VOLATILE (decl) = 1;
3979 if (type_quals & TYPE_QUAL_RESTRICT)
3981 while (type && TREE_CODE (type) == ARRAY_TYPE)
3982 /* Allow 'restrict' on arrays of pointers.
3983 FIXME currently we just ignore it. */
3984 type = TREE_TYPE (type);
3985 if (!type
3986 || !POINTER_TYPE_P (type)
3987 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type)))
3988 error ("invalid use of %<restrict%>");
3992 /* Hash function for the problem of multiple type definitions in
3993 different files. This must hash all types that will compare
3994 equal via comptypes to the same value. In practice it hashes
3995 on some of the simple stuff and leaves the details to comptypes. */
3997 static hashval_t
3998 c_type_hash (const void *p)
4000 int i = 0;
4001 int shift, size;
4002 const_tree const t = (const_tree) p;
4003 tree t2;
4004 switch (TREE_CODE (t))
4006 /* For pointers, hash on pointee type plus some swizzling. */
4007 case POINTER_TYPE:
4008 return c_type_hash (TREE_TYPE (t)) ^ 0x3003003;
4009 /* Hash on number of elements and total size. */
4010 case ENUMERAL_TYPE:
4011 shift = 3;
4012 t2 = TYPE_VALUES (t);
4013 break;
4014 case RECORD_TYPE:
4015 shift = 0;
4016 t2 = TYPE_FIELDS (t);
4017 break;
4018 case QUAL_UNION_TYPE:
4019 shift = 1;
4020 t2 = TYPE_FIELDS (t);
4021 break;
4022 case UNION_TYPE:
4023 shift = 2;
4024 t2 = TYPE_FIELDS (t);
4025 break;
4026 default:
4027 gcc_unreachable ();
4029 for (; t2; t2 = DECL_CHAIN (t2))
4030 i++;
4031 /* We might have a VLA here. */
4032 if (TREE_CODE (TYPE_SIZE (t)) != INTEGER_CST)
4033 size = 0;
4034 else
4035 size = TREE_INT_CST_LOW (TYPE_SIZE (t));
4036 return ((size << 24) | (i << shift));
4039 static GTY((param_is (union tree_node))) htab_t type_hash_table;
4041 /* Return the typed-based alias set for T, which may be an expression
4042 or a type. Return -1 if we don't do anything special. */
4044 alias_set_type
4045 c_common_get_alias_set (tree t)
4047 tree u;
4048 PTR *slot;
4050 /* For VLAs, use the alias set of the element type rather than the
4051 default of alias set 0 for types compared structurally. */
4052 if (TYPE_P (t) && TYPE_STRUCTURAL_EQUALITY_P (t))
4054 if (TREE_CODE (t) == ARRAY_TYPE)
4055 return get_alias_set (TREE_TYPE (t));
4056 return -1;
4059 /* Permit type-punning when accessing a union, provided the access
4060 is directly through the union. For example, this code does not
4061 permit taking the address of a union member and then storing
4062 through it. Even the type-punning allowed here is a GCC
4063 extension, albeit a common and useful one; the C standard says
4064 that such accesses have implementation-defined behavior. */
4065 for (u = t;
4066 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
4067 u = TREE_OPERAND (u, 0))
4068 if (TREE_CODE (u) == COMPONENT_REF
4069 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
4070 return 0;
4072 /* That's all the expressions we handle specially. */
4073 if (!TYPE_P (t))
4074 return -1;
4076 /* The C standard guarantees that any object may be accessed via an
4077 lvalue that has character type. */
4078 if (t == char_type_node
4079 || t == signed_char_type_node
4080 || t == unsigned_char_type_node)
4081 return 0;
4083 /* The C standard specifically allows aliasing between signed and
4084 unsigned variants of the same type. We treat the signed
4085 variant as canonical. */
4086 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
4088 tree t1 = c_common_signed_type (t);
4090 /* t1 == t can happen for boolean nodes which are always unsigned. */
4091 if (t1 != t)
4092 return get_alias_set (t1);
4095 /* Handle the case of multiple type nodes referring to "the same" type,
4096 which occurs with IMA. These share an alias set. FIXME: Currently only
4097 C90 is handled. (In C99 type compatibility is not transitive, which
4098 complicates things mightily. The alias set splay trees can theoretically
4099 represent this, but insertion is tricky when you consider all the
4100 different orders things might arrive in.) */
4102 if (c_language != clk_c || flag_isoc99)
4103 return -1;
4105 /* Save time if there's only one input file. */
4106 if (num_in_fnames == 1)
4107 return -1;
4109 /* Pointers need special handling if they point to any type that
4110 needs special handling (below). */
4111 if (TREE_CODE (t) == POINTER_TYPE)
4113 tree t2;
4114 /* Find bottom type under any nested POINTERs. */
4115 for (t2 = TREE_TYPE (t);
4116 TREE_CODE (t2) == POINTER_TYPE;
4117 t2 = TREE_TYPE (t2))
4119 if (TREE_CODE (t2) != RECORD_TYPE
4120 && TREE_CODE (t2) != ENUMERAL_TYPE
4121 && TREE_CODE (t2) != QUAL_UNION_TYPE
4122 && TREE_CODE (t2) != UNION_TYPE)
4123 return -1;
4124 if (TYPE_SIZE (t2) == 0)
4125 return -1;
4127 /* These are the only cases that need special handling. */
4128 if (TREE_CODE (t) != RECORD_TYPE
4129 && TREE_CODE (t) != ENUMERAL_TYPE
4130 && TREE_CODE (t) != QUAL_UNION_TYPE
4131 && TREE_CODE (t) != UNION_TYPE
4132 && TREE_CODE (t) != POINTER_TYPE)
4133 return -1;
4134 /* Undefined? */
4135 if (TYPE_SIZE (t) == 0)
4136 return -1;
4138 /* Look up t in hash table. Only one of the compatible types within each
4139 alias set is recorded in the table. */
4140 if (!type_hash_table)
4141 type_hash_table = htab_create_ggc (1021, c_type_hash,
4142 (htab_eq) lang_hooks.types_compatible_p,
4143 NULL);
4144 slot = htab_find_slot (type_hash_table, t, INSERT);
4145 if (*slot != NULL)
4147 TYPE_ALIAS_SET (t) = TYPE_ALIAS_SET ((tree)*slot);
4148 return TYPE_ALIAS_SET ((tree)*slot);
4150 else
4151 /* Our caller will assign and record (in t) a new alias set; all we need
4152 to do is remember t in the hash table. */
4153 *slot = t;
4155 return -1;
4158 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where
4159 the second parameter indicates which OPERATOR is being applied.
4160 The COMPLAIN flag controls whether we should diagnose possibly
4161 ill-formed constructs or not. LOC is the location of the SIZEOF or
4162 TYPEOF operator. */
4164 tree
4165 c_sizeof_or_alignof_type (location_t loc,
4166 tree type, bool is_sizeof, int complain)
4168 const char *op_name;
4169 tree value = NULL;
4170 enum tree_code type_code = TREE_CODE (type);
4172 op_name = is_sizeof ? "sizeof" : "__alignof__";
4174 if (type_code == FUNCTION_TYPE)
4176 if (is_sizeof)
4178 if (complain && (pedantic || warn_pointer_arith))
4179 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
4180 "invalid application of %<sizeof%> to a function type");
4181 else if (!complain)
4182 return error_mark_node;
4183 value = size_one_node;
4185 else
4186 value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
4188 else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
4190 if (type_code == VOID_TYPE
4191 && complain && (pedantic || warn_pointer_arith))
4192 pedwarn (loc, pedantic ? OPT_pedantic : OPT_Wpointer_arith,
4193 "invalid application of %qs to a void type", op_name);
4194 else if (!complain)
4195 return error_mark_node;
4196 value = size_one_node;
4198 else if (!COMPLETE_TYPE_P (type))
4200 if (complain)
4201 error_at (loc, "invalid application of %qs to incomplete type %qT ",
4202 op_name, type);
4203 return error_mark_node;
4205 else
4207 if (is_sizeof)
4208 /* Convert in case a char is more than one unit. */
4209 value = size_binop_loc (loc, CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
4210 size_int (TYPE_PRECISION (char_type_node)
4211 / BITS_PER_UNIT));
4212 else
4213 value = size_int (TYPE_ALIGN_UNIT (type));
4216 /* VALUE will have an integer type with TYPE_IS_SIZETYPE set.
4217 TYPE_IS_SIZETYPE means that certain things (like overflow) will
4218 never happen. However, this node should really have type
4219 `size_t', which is just a typedef for an ordinary integer type. */
4220 value = fold_convert_loc (loc, size_type_node, value);
4221 gcc_assert (!TYPE_IS_SIZETYPE (TREE_TYPE (value)));
4223 return value;
4226 /* Implement the __alignof keyword: Return the minimum required
4227 alignment of EXPR, measured in bytes. For VAR_DECLs,
4228 FUNCTION_DECLs and FIELD_DECLs return DECL_ALIGN (which can be set
4229 from an "aligned" __attribute__ specification). LOC is the
4230 location of the ALIGNOF operator. */
4232 tree
4233 c_alignof_expr (location_t loc, tree expr)
4235 tree t;
4237 if (VAR_OR_FUNCTION_DECL_P (expr))
4238 t = size_int (DECL_ALIGN_UNIT (expr));
4240 else if (TREE_CODE (expr) == COMPONENT_REF
4241 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
4243 error_at (loc, "%<__alignof%> applied to a bit-field");
4244 t = size_one_node;
4246 else if (TREE_CODE (expr) == COMPONENT_REF
4247 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
4248 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr, 1)));
4250 else if (TREE_CODE (expr) == INDIRECT_REF)
4252 tree t = TREE_OPERAND (expr, 0);
4253 tree best = t;
4254 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
4256 while (CONVERT_EXPR_P (t)
4257 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
4259 int thisalign;
4261 t = TREE_OPERAND (t, 0);
4262 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
4263 if (thisalign > bestalign)
4264 best = t, bestalign = thisalign;
4266 return c_alignof (loc, TREE_TYPE (TREE_TYPE (best)));
4268 else
4269 return c_alignof (loc, TREE_TYPE (expr));
4271 return fold_convert_loc (loc, size_type_node, t);
4274 /* Handle C and C++ default attributes. */
4276 enum built_in_attribute
4278 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
4279 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
4280 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
4281 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
4282 #include "builtin-attrs.def"
4283 #undef DEF_ATTR_NULL_TREE
4284 #undef DEF_ATTR_INT
4285 #undef DEF_ATTR_IDENT
4286 #undef DEF_ATTR_TREE_LIST
4287 ATTR_LAST
4290 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
4292 static void c_init_attributes (void);
4294 enum c_builtin_type
4296 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
4297 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
4298 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
4299 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
4300 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4301 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4302 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
4303 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) NAME,
4304 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) NAME,
4305 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
4306 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
4307 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
4308 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4309 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4310 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG6) \
4311 NAME,
4312 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
4313 #include "builtin-types.def"
4314 #undef DEF_PRIMITIVE_TYPE
4315 #undef DEF_FUNCTION_TYPE_0
4316 #undef DEF_FUNCTION_TYPE_1
4317 #undef DEF_FUNCTION_TYPE_2
4318 #undef DEF_FUNCTION_TYPE_3
4319 #undef DEF_FUNCTION_TYPE_4
4320 #undef DEF_FUNCTION_TYPE_5
4321 #undef DEF_FUNCTION_TYPE_6
4322 #undef DEF_FUNCTION_TYPE_7
4323 #undef DEF_FUNCTION_TYPE_VAR_0
4324 #undef DEF_FUNCTION_TYPE_VAR_1
4325 #undef DEF_FUNCTION_TYPE_VAR_2
4326 #undef DEF_FUNCTION_TYPE_VAR_3
4327 #undef DEF_FUNCTION_TYPE_VAR_4
4328 #undef DEF_FUNCTION_TYPE_VAR_5
4329 #undef DEF_POINTER_TYPE
4330 BT_LAST
4333 typedef enum c_builtin_type builtin_type;
4335 /* A temporary array for c_common_nodes_and_builtins. Used in
4336 communication with def_fn_type. */
4337 static tree builtin_types[(int) BT_LAST + 1];
4339 /* A helper function for c_common_nodes_and_builtins. Build function type
4340 for DEF with return type RET and N arguments. If VAR is true, then the
4341 function should be variadic after those N arguments.
4343 Takes special care not to ICE if any of the types involved are
4344 error_mark_node, which indicates that said type is not in fact available
4345 (see builtin_type_for_size). In which case the function type as a whole
4346 should be error_mark_node. */
4348 static void
4349 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
4351 tree args = NULL, t;
4352 va_list list;
4353 int i;
4355 va_start (list, n);
4356 for (i = 0; i < n; ++i)
4358 builtin_type a = (builtin_type) va_arg (list, int);
4359 t = builtin_types[a];
4360 if (t == error_mark_node)
4361 goto egress;
4362 args = tree_cons (NULL_TREE, t, args);
4364 va_end (list);
4366 args = nreverse (args);
4367 if (!var)
4368 args = chainon (args, void_list_node);
4370 t = builtin_types[ret];
4371 if (t == error_mark_node)
4372 goto egress;
4373 t = build_function_type (t, args);
4375 egress:
4376 builtin_types[def] = t;
4379 /* Build builtin functions common to both C and C++ language
4380 frontends. */
4382 static void
4383 c_define_builtins (tree va_list_ref_type_node, tree va_list_arg_type_node)
4385 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
4386 builtin_types[ENUM] = VALUE;
4387 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
4388 def_fn_type (ENUM, RETURN, 0, 0);
4389 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
4390 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
4391 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
4392 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
4393 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4394 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
4395 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4396 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
4397 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4398 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4399 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4400 ARG6) \
4401 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
4402 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4403 ARG6, ARG7) \
4404 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
4405 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
4406 def_fn_type (ENUM, RETURN, 1, 0);
4407 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
4408 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
4409 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
4410 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
4411 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4412 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
4413 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4414 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
4415 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4416 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4417 #define DEF_POINTER_TYPE(ENUM, TYPE) \
4418 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
4420 #include "builtin-types.def"
4422 #undef DEF_PRIMITIVE_TYPE
4423 #undef DEF_FUNCTION_TYPE_1
4424 #undef DEF_FUNCTION_TYPE_2
4425 #undef DEF_FUNCTION_TYPE_3
4426 #undef DEF_FUNCTION_TYPE_4
4427 #undef DEF_FUNCTION_TYPE_5
4428 #undef DEF_FUNCTION_TYPE_6
4429 #undef DEF_FUNCTION_TYPE_VAR_0
4430 #undef DEF_FUNCTION_TYPE_VAR_1
4431 #undef DEF_FUNCTION_TYPE_VAR_2
4432 #undef DEF_FUNCTION_TYPE_VAR_3
4433 #undef DEF_FUNCTION_TYPE_VAR_4
4434 #undef DEF_FUNCTION_TYPE_VAR_5
4435 #undef DEF_POINTER_TYPE
4436 builtin_types[(int) BT_LAST] = NULL_TREE;
4438 c_init_attributes ();
4440 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
4441 NONANSI_P, ATTRS, IMPLICIT, COND) \
4442 if (NAME && COND) \
4443 def_builtin_1 (ENUM, NAME, CLASS, \
4444 builtin_types[(int) TYPE], \
4445 builtin_types[(int) LIBTYPE], \
4446 BOTH_P, FALLBACK_P, NONANSI_P, \
4447 built_in_attributes[(int) ATTRS], IMPLICIT);
4448 #include "builtins.def"
4449 #undef DEF_BUILTIN
4451 targetm.init_builtins ();
4453 build_common_builtin_nodes ();
4455 if (flag_mudflap)
4456 mudflap_init ();
4459 /* Like get_identifier, but avoid warnings about null arguments when
4460 the argument may be NULL for targets where GCC lacks stdint.h type
4461 information. */
4463 static inline tree
4464 c_get_ident (const char *id)
4466 return get_identifier (id);
4469 /* Build tree nodes and builtin functions common to both C and C++ language
4470 frontends. */
4472 void
4473 c_common_nodes_and_builtins (void)
4475 int char16_type_size;
4476 int char32_type_size;
4477 int wchar_type_size;
4478 tree array_domain_type;
4479 tree va_list_ref_type_node;
4480 tree va_list_arg_type_node;
4482 /* Define `int' and `char' first so that dbx will output them first. */
4483 record_builtin_type (RID_INT, NULL, integer_type_node);
4484 record_builtin_type (RID_CHAR, "char", char_type_node);
4486 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
4487 "unsigned long", "long long unsigned" and "unsigned short" were in C++
4488 but not C. Are the conditionals here needed? */
4489 if (c_dialect_cxx ())
4490 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
4491 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
4492 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
4493 record_builtin_type (RID_MAX, "long unsigned int",
4494 long_unsigned_type_node);
4495 if (int128_integer_type_node != NULL_TREE)
4497 record_builtin_type (RID_INT128, "__int128",
4498 int128_integer_type_node);
4499 record_builtin_type (RID_MAX, "__int128 unsigned",
4500 int128_unsigned_type_node);
4502 if (c_dialect_cxx ())
4503 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
4504 record_builtin_type (RID_MAX, "long long int",
4505 long_long_integer_type_node);
4506 record_builtin_type (RID_MAX, "long long unsigned int",
4507 long_long_unsigned_type_node);
4508 if (c_dialect_cxx ())
4509 record_builtin_type (RID_MAX, "long long unsigned",
4510 long_long_unsigned_type_node);
4511 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
4512 record_builtin_type (RID_MAX, "short unsigned int",
4513 short_unsigned_type_node);
4514 if (c_dialect_cxx ())
4515 record_builtin_type (RID_MAX, "unsigned short",
4516 short_unsigned_type_node);
4518 /* Define both `signed char' and `unsigned char'. */
4519 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
4520 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
4522 /* These are types that c_common_type_for_size and
4523 c_common_type_for_mode use. */
4524 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4525 TYPE_DECL, NULL_TREE,
4526 intQI_type_node));
4527 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4528 TYPE_DECL, NULL_TREE,
4529 intHI_type_node));
4530 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4531 TYPE_DECL, NULL_TREE,
4532 intSI_type_node));
4533 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4534 TYPE_DECL, NULL_TREE,
4535 intDI_type_node));
4536 #if HOST_BITS_PER_WIDE_INT >= 64
4537 if (targetm.scalar_mode_supported_p (TImode))
4538 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4539 TYPE_DECL,
4540 get_identifier ("__int128_t"),
4541 intTI_type_node));
4542 #endif
4543 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4544 TYPE_DECL, NULL_TREE,
4545 unsigned_intQI_type_node));
4546 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4547 TYPE_DECL, NULL_TREE,
4548 unsigned_intHI_type_node));
4549 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4550 TYPE_DECL, NULL_TREE,
4551 unsigned_intSI_type_node));
4552 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4553 TYPE_DECL, NULL_TREE,
4554 unsigned_intDI_type_node));
4555 #if HOST_BITS_PER_WIDE_INT >= 64
4556 if (targetm.scalar_mode_supported_p (TImode))
4557 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4558 TYPE_DECL,
4559 get_identifier ("__uint128_t"),
4560 unsigned_intTI_type_node));
4561 #endif
4563 /* Create the widest literal types. */
4564 widest_integer_literal_type_node
4565 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
4566 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4567 TYPE_DECL, NULL_TREE,
4568 widest_integer_literal_type_node));
4570 widest_unsigned_literal_type_node
4571 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
4572 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4573 TYPE_DECL, NULL_TREE,
4574 widest_unsigned_literal_type_node));
4576 /* `unsigned long' is the standard type for sizeof.
4577 Note that stddef.h uses `unsigned long',
4578 and this must agree, even if long and int are the same size. */
4579 size_type_node =
4580 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
4581 signed_size_type_node = c_common_signed_type (size_type_node);
4582 set_sizetype (size_type_node);
4584 pid_type_node =
4585 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE)));
4587 build_common_tree_nodes_2 (flag_short_double);
4589 record_builtin_type (RID_FLOAT, NULL, float_type_node);
4590 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
4591 record_builtin_type (RID_MAX, "long double", long_double_type_node);
4593 /* Only supported decimal floating point extension if the target
4594 actually supports underlying modes. */
4595 if (targetm.scalar_mode_supported_p (SDmode)
4596 && targetm.scalar_mode_supported_p (DDmode)
4597 && targetm.scalar_mode_supported_p (TDmode))
4599 record_builtin_type (RID_DFLOAT32, NULL, dfloat32_type_node);
4600 record_builtin_type (RID_DFLOAT64, NULL, dfloat64_type_node);
4601 record_builtin_type (RID_DFLOAT128, NULL, dfloat128_type_node);
4604 if (targetm.fixed_point_supported_p ())
4606 record_builtin_type (RID_MAX, "short _Fract", short_fract_type_node);
4607 record_builtin_type (RID_FRACT, NULL, fract_type_node);
4608 record_builtin_type (RID_MAX, "long _Fract", long_fract_type_node);
4609 record_builtin_type (RID_MAX, "long long _Fract",
4610 long_long_fract_type_node);
4611 record_builtin_type (RID_MAX, "unsigned short _Fract",
4612 unsigned_short_fract_type_node);
4613 record_builtin_type (RID_MAX, "unsigned _Fract",
4614 unsigned_fract_type_node);
4615 record_builtin_type (RID_MAX, "unsigned long _Fract",
4616 unsigned_long_fract_type_node);
4617 record_builtin_type (RID_MAX, "unsigned long long _Fract",
4618 unsigned_long_long_fract_type_node);
4619 record_builtin_type (RID_MAX, "_Sat short _Fract",
4620 sat_short_fract_type_node);
4621 record_builtin_type (RID_MAX, "_Sat _Fract", sat_fract_type_node);
4622 record_builtin_type (RID_MAX, "_Sat long _Fract",
4623 sat_long_fract_type_node);
4624 record_builtin_type (RID_MAX, "_Sat long long _Fract",
4625 sat_long_long_fract_type_node);
4626 record_builtin_type (RID_MAX, "_Sat unsigned short _Fract",
4627 sat_unsigned_short_fract_type_node);
4628 record_builtin_type (RID_MAX, "_Sat unsigned _Fract",
4629 sat_unsigned_fract_type_node);
4630 record_builtin_type (RID_MAX, "_Sat unsigned long _Fract",
4631 sat_unsigned_long_fract_type_node);
4632 record_builtin_type (RID_MAX, "_Sat unsigned long long _Fract",
4633 sat_unsigned_long_long_fract_type_node);
4634 record_builtin_type (RID_MAX, "short _Accum", short_accum_type_node);
4635 record_builtin_type (RID_ACCUM, NULL, accum_type_node);
4636 record_builtin_type (RID_MAX, "long _Accum", long_accum_type_node);
4637 record_builtin_type (RID_MAX, "long long _Accum",
4638 long_long_accum_type_node);
4639 record_builtin_type (RID_MAX, "unsigned short _Accum",
4640 unsigned_short_accum_type_node);
4641 record_builtin_type (RID_MAX, "unsigned _Accum",
4642 unsigned_accum_type_node);
4643 record_builtin_type (RID_MAX, "unsigned long _Accum",
4644 unsigned_long_accum_type_node);
4645 record_builtin_type (RID_MAX, "unsigned long long _Accum",
4646 unsigned_long_long_accum_type_node);
4647 record_builtin_type (RID_MAX, "_Sat short _Accum",
4648 sat_short_accum_type_node);
4649 record_builtin_type (RID_MAX, "_Sat _Accum", sat_accum_type_node);
4650 record_builtin_type (RID_MAX, "_Sat long _Accum",
4651 sat_long_accum_type_node);
4652 record_builtin_type (RID_MAX, "_Sat long long _Accum",
4653 sat_long_long_accum_type_node);
4654 record_builtin_type (RID_MAX, "_Sat unsigned short _Accum",
4655 sat_unsigned_short_accum_type_node);
4656 record_builtin_type (RID_MAX, "_Sat unsigned _Accum",
4657 sat_unsigned_accum_type_node);
4658 record_builtin_type (RID_MAX, "_Sat unsigned long _Accum",
4659 sat_unsigned_long_accum_type_node);
4660 record_builtin_type (RID_MAX, "_Sat unsigned long long _Accum",
4661 sat_unsigned_long_long_accum_type_node);
4665 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4666 TYPE_DECL,
4667 get_identifier ("complex int"),
4668 complex_integer_type_node));
4669 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4670 TYPE_DECL,
4671 get_identifier ("complex float"),
4672 complex_float_type_node));
4673 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4674 TYPE_DECL,
4675 get_identifier ("complex double"),
4676 complex_double_type_node));
4677 lang_hooks.decls.pushdecl
4678 (build_decl (UNKNOWN_LOCATION,
4679 TYPE_DECL, get_identifier ("complex long double"),
4680 complex_long_double_type_node));
4682 if (c_dialect_cxx ())
4683 /* For C++, make fileptr_type_node a distinct void * type until
4684 FILE type is defined. */
4685 fileptr_type_node = build_variant_type_copy (ptr_type_node);
4687 record_builtin_type (RID_VOID, NULL, void_type_node);
4689 /* Set the TYPE_NAME for any variants that were built before
4690 record_builtin_type gave names to the built-in types. */
4692 tree void_name = TYPE_NAME (void_type_node);
4693 TYPE_NAME (void_type_node) = NULL_TREE;
4694 TYPE_NAME (build_qualified_type (void_type_node, TYPE_QUAL_CONST))
4695 = void_name;
4696 TYPE_NAME (void_type_node) = void_name;
4699 /* This node must not be shared. */
4700 void_zero_node = make_node (INTEGER_CST);
4701 TREE_TYPE (void_zero_node) = void_type_node;
4703 void_list_node = build_void_list_node ();
4705 /* Make a type to be the domain of a few array types
4706 whose domains don't really matter.
4707 200 is small enough that it always fits in size_t
4708 and large enough that it can hold most function names for the
4709 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
4710 array_domain_type = build_index_type (size_int (200));
4712 /* Make a type for arrays of characters.
4713 With luck nothing will ever really depend on the length of this
4714 array type. */
4715 char_array_type_node
4716 = build_array_type (char_type_node, array_domain_type);
4718 /* Likewise for arrays of ints. */
4719 int_array_type_node
4720 = build_array_type (integer_type_node, array_domain_type);
4722 string_type_node = build_pointer_type (char_type_node);
4723 const_string_type_node
4724 = build_pointer_type (build_qualified_type
4725 (char_type_node, TYPE_QUAL_CONST));
4727 /* This is special for C++ so functions can be overloaded. */
4728 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
4729 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
4730 wchar_type_size = TYPE_PRECISION (wchar_type_node);
4731 underlying_wchar_type_node = wchar_type_node;
4732 if (c_dialect_cxx ())
4734 if (TYPE_UNSIGNED (wchar_type_node))
4735 wchar_type_node = make_unsigned_type (wchar_type_size);
4736 else
4737 wchar_type_node = make_signed_type (wchar_type_size);
4738 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
4741 /* This is for wide string constants. */
4742 wchar_array_type_node
4743 = build_array_type (wchar_type_node, array_domain_type);
4745 /* Define 'char16_t'. */
4746 char16_type_node = get_identifier (CHAR16_TYPE);
4747 char16_type_node = TREE_TYPE (identifier_global_value (char16_type_node));
4748 char16_type_size = TYPE_PRECISION (char16_type_node);
4749 if (c_dialect_cxx ())
4751 char16_type_node = make_unsigned_type (char16_type_size);
4753 if (cxx_dialect == cxx0x)
4754 record_builtin_type (RID_CHAR16, "char16_t", char16_type_node);
4757 /* This is for UTF-16 string constants. */
4758 char16_array_type_node
4759 = build_array_type (char16_type_node, array_domain_type);
4761 /* Define 'char32_t'. */
4762 char32_type_node = get_identifier (CHAR32_TYPE);
4763 char32_type_node = TREE_TYPE (identifier_global_value (char32_type_node));
4764 char32_type_size = TYPE_PRECISION (char32_type_node);
4765 if (c_dialect_cxx ())
4767 char32_type_node = make_unsigned_type (char32_type_size);
4769 if (cxx_dialect == cxx0x)
4770 record_builtin_type (RID_CHAR32, "char32_t", char32_type_node);
4773 /* This is for UTF-32 string constants. */
4774 char32_array_type_node
4775 = build_array_type (char32_type_node, array_domain_type);
4777 wint_type_node =
4778 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
4780 intmax_type_node =
4781 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
4782 uintmax_type_node =
4783 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
4785 if (SIG_ATOMIC_TYPE)
4786 sig_atomic_type_node =
4787 TREE_TYPE (identifier_global_value (c_get_ident (SIG_ATOMIC_TYPE)));
4788 if (INT8_TYPE)
4789 int8_type_node =
4790 TREE_TYPE (identifier_global_value (c_get_ident (INT8_TYPE)));
4791 if (INT16_TYPE)
4792 int16_type_node =
4793 TREE_TYPE (identifier_global_value (c_get_ident (INT16_TYPE)));
4794 if (INT32_TYPE)
4795 int32_type_node =
4796 TREE_TYPE (identifier_global_value (c_get_ident (INT32_TYPE)));
4797 if (INT64_TYPE)
4798 int64_type_node =
4799 TREE_TYPE (identifier_global_value (c_get_ident (INT64_TYPE)));
4800 if (UINT8_TYPE)
4801 uint8_type_node =
4802 TREE_TYPE (identifier_global_value (c_get_ident (UINT8_TYPE)));
4803 if (UINT16_TYPE)
4804 uint16_type_node =
4805 TREE_TYPE (identifier_global_value (c_get_ident (UINT16_TYPE)));
4806 if (UINT32_TYPE)
4807 c_uint32_type_node =
4808 TREE_TYPE (identifier_global_value (c_get_ident (UINT32_TYPE)));
4809 if (UINT64_TYPE)
4810 c_uint64_type_node =
4811 TREE_TYPE (identifier_global_value (c_get_ident (UINT64_TYPE)));
4812 if (INT_LEAST8_TYPE)
4813 int_least8_type_node =
4814 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST8_TYPE)));
4815 if (INT_LEAST16_TYPE)
4816 int_least16_type_node =
4817 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST16_TYPE)));
4818 if (INT_LEAST32_TYPE)
4819 int_least32_type_node =
4820 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST32_TYPE)));
4821 if (INT_LEAST64_TYPE)
4822 int_least64_type_node =
4823 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST64_TYPE)));
4824 if (UINT_LEAST8_TYPE)
4825 uint_least8_type_node =
4826 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST8_TYPE)));
4827 if (UINT_LEAST16_TYPE)
4828 uint_least16_type_node =
4829 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST16_TYPE)));
4830 if (UINT_LEAST32_TYPE)
4831 uint_least32_type_node =
4832 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST32_TYPE)));
4833 if (UINT_LEAST64_TYPE)
4834 uint_least64_type_node =
4835 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST64_TYPE)));
4836 if (INT_FAST8_TYPE)
4837 int_fast8_type_node =
4838 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST8_TYPE)));
4839 if (INT_FAST16_TYPE)
4840 int_fast16_type_node =
4841 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST16_TYPE)));
4842 if (INT_FAST32_TYPE)
4843 int_fast32_type_node =
4844 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST32_TYPE)));
4845 if (INT_FAST64_TYPE)
4846 int_fast64_type_node =
4847 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST64_TYPE)));
4848 if (UINT_FAST8_TYPE)
4849 uint_fast8_type_node =
4850 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST8_TYPE)));
4851 if (UINT_FAST16_TYPE)
4852 uint_fast16_type_node =
4853 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST16_TYPE)));
4854 if (UINT_FAST32_TYPE)
4855 uint_fast32_type_node =
4856 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST32_TYPE)));
4857 if (UINT_FAST64_TYPE)
4858 uint_fast64_type_node =
4859 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST64_TYPE)));
4860 if (INTPTR_TYPE)
4861 intptr_type_node =
4862 TREE_TYPE (identifier_global_value (c_get_ident (INTPTR_TYPE)));
4863 if (UINTPTR_TYPE)
4864 uintptr_type_node =
4865 TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE)));
4867 default_function_type = build_function_type (integer_type_node, NULL_TREE);
4868 ptrdiff_type_node
4869 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
4870 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
4872 lang_hooks.decls.pushdecl
4873 (build_decl (UNKNOWN_LOCATION,
4874 TYPE_DECL, get_identifier ("__builtin_va_list"),
4875 va_list_type_node));
4876 if (targetm.enum_va_list_p)
4878 int l;
4879 const char *pname;
4880 tree ptype;
4882 for (l = 0; targetm.enum_va_list_p (l, &pname, &ptype); ++l)
4884 lang_hooks.decls.pushdecl
4885 (build_decl (UNKNOWN_LOCATION,
4886 TYPE_DECL, get_identifier (pname),
4887 ptype));
4892 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
4894 va_list_arg_type_node = va_list_ref_type_node =
4895 build_pointer_type (TREE_TYPE (va_list_type_node));
4897 else
4899 va_list_arg_type_node = va_list_type_node;
4900 va_list_ref_type_node = build_reference_type (va_list_type_node);
4903 if (!flag_preprocess_only)
4904 c_define_builtins (va_list_ref_type_node, va_list_arg_type_node);
4906 main_identifier_node = get_identifier ("main");
4908 /* Create the built-in __null node. It is important that this is
4909 not shared. */
4910 null_node = make_node (INTEGER_CST);
4911 TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0);
4913 /* Since builtin_types isn't gc'ed, don't export these nodes. */
4914 memset (builtin_types, 0, sizeof (builtin_types));
4917 /* The number of named compound-literals generated thus far. */
4918 static GTY(()) int compound_literal_number;
4920 /* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
4922 void
4923 set_compound_literal_name (tree decl)
4925 char *name;
4926 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal",
4927 compound_literal_number);
4928 compound_literal_number++;
4929 DECL_NAME (decl) = get_identifier (name);
4932 tree
4933 build_va_arg (location_t loc, tree expr, tree type)
4935 expr = build1 (VA_ARG_EXPR, type, expr);
4936 SET_EXPR_LOCATION (expr, loc);
4937 return expr;
4941 /* Linked list of disabled built-in functions. */
4943 typedef struct disabled_builtin
4945 const char *name;
4946 struct disabled_builtin *next;
4947 } disabled_builtin;
4948 static disabled_builtin *disabled_builtins = NULL;
4950 static bool builtin_function_disabled_p (const char *);
4952 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
4953 begins with "__builtin_", give an error. */
4955 void
4956 disable_builtin_function (const char *name)
4958 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
4959 error ("cannot disable built-in function %qs", name);
4960 else
4962 disabled_builtin *new_disabled_builtin = XNEW (disabled_builtin);
4963 new_disabled_builtin->name = name;
4964 new_disabled_builtin->next = disabled_builtins;
4965 disabled_builtins = new_disabled_builtin;
4970 /* Return true if the built-in function NAME has been disabled, false
4971 otherwise. */
4973 static bool
4974 builtin_function_disabled_p (const char *name)
4976 disabled_builtin *p;
4977 for (p = disabled_builtins; p != NULL; p = p->next)
4979 if (strcmp (name, p->name) == 0)
4980 return true;
4982 return false;
4986 /* Worker for DEF_BUILTIN.
4987 Possibly define a builtin function with one or two names.
4988 Does not declare a non-__builtin_ function if flag_no_builtin, or if
4989 nonansi_p and flag_no_nonansi_builtin. */
4991 static void
4992 def_builtin_1 (enum built_in_function fncode,
4993 const char *name,
4994 enum built_in_class fnclass,
4995 tree fntype, tree libtype,
4996 bool both_p, bool fallback_p, bool nonansi_p,
4997 tree fnattrs, bool implicit_p)
4999 tree decl;
5000 const char *libname;
5002 if (fntype == error_mark_node)
5003 return;
5005 gcc_assert ((!both_p && !fallback_p)
5006 || !strncmp (name, "__builtin_",
5007 strlen ("__builtin_")));
5009 libname = name + strlen ("__builtin_");
5010 decl = add_builtin_function (name, fntype, fncode, fnclass,
5011 (fallback_p ? libname : NULL),
5012 fnattrs);
5013 if (both_p
5014 && !flag_no_builtin && !builtin_function_disabled_p (libname)
5015 && !(nonansi_p && flag_no_nonansi_builtin))
5016 add_builtin_function (libname, libtype, fncode, fnclass,
5017 NULL, fnattrs);
5019 built_in_decls[(int) fncode] = decl;
5020 if (implicit_p)
5021 implicit_built_in_decls[(int) fncode] = decl;
5024 /* Nonzero if the type T promotes to int. This is (nearly) the
5025 integral promotions defined in ISO C99 6.3.1.1/2. */
5027 bool
5028 c_promoting_integer_type_p (const_tree t)
5030 switch (TREE_CODE (t))
5032 case INTEGER_TYPE:
5033 return (TYPE_MAIN_VARIANT (t) == char_type_node
5034 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
5035 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
5036 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
5037 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
5038 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
5040 case ENUMERAL_TYPE:
5041 /* ??? Technically all enumerations not larger than an int
5042 promote to an int. But this is used along code paths
5043 that only want to notice a size change. */
5044 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
5046 case BOOLEAN_TYPE:
5047 return 1;
5049 default:
5050 return 0;
5054 /* Return 1 if PARMS specifies a fixed number of parameters
5055 and none of their types is affected by default promotions. */
5058 self_promoting_args_p (const_tree parms)
5060 const_tree t;
5061 for (t = parms; t; t = TREE_CHAIN (t))
5063 tree type = TREE_VALUE (t);
5065 if (type == error_mark_node)
5066 continue;
5068 if (TREE_CHAIN (t) == 0 && type != void_type_node)
5069 return 0;
5071 if (type == 0)
5072 return 0;
5074 if (TYPE_MAIN_VARIANT (type) == float_type_node)
5075 return 0;
5077 if (c_promoting_integer_type_p (type))
5078 return 0;
5080 return 1;
5083 /* Recursively remove any '*' or '&' operator from TYPE. */
5084 tree
5085 strip_pointer_operator (tree t)
5087 while (POINTER_TYPE_P (t))
5088 t = TREE_TYPE (t);
5089 return t;
5092 /* Recursively remove pointer or array type from TYPE. */
5093 tree
5094 strip_pointer_or_array_types (tree t)
5096 while (TREE_CODE (t) == ARRAY_TYPE || POINTER_TYPE_P (t))
5097 t = TREE_TYPE (t);
5098 return t;
5101 /* Used to compare case labels. K1 and K2 are actually tree nodes
5102 representing case labels, or NULL_TREE for a `default' label.
5103 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
5104 K2, and 0 if K1 and K2 are equal. */
5107 case_compare (splay_tree_key k1, splay_tree_key k2)
5109 /* Consider a NULL key (such as arises with a `default' label) to be
5110 smaller than anything else. */
5111 if (!k1)
5112 return k2 ? -1 : 0;
5113 else if (!k2)
5114 return k1 ? 1 : 0;
5116 return tree_int_cst_compare ((tree) k1, (tree) k2);
5119 /* Process a case label, located at LOC, for the range LOW_VALUE
5120 ... HIGH_VALUE. If LOW_VALUE and HIGH_VALUE are both NULL_TREE
5121 then this case label is actually a `default' label. If only
5122 HIGH_VALUE is NULL_TREE, then case label was declared using the
5123 usual C/C++ syntax, rather than the GNU case range extension.
5124 CASES is a tree containing all the case ranges processed so far;
5125 COND is the condition for the switch-statement itself. Returns the
5126 CASE_LABEL_EXPR created, or ERROR_MARK_NODE if no CASE_LABEL_EXPR
5127 is created. */
5129 tree
5130 c_add_case_label (location_t loc, splay_tree cases, tree cond, tree orig_type,
5131 tree low_value, tree high_value)
5133 tree type;
5134 tree label;
5135 tree case_label;
5136 splay_tree_node node;
5138 /* Create the LABEL_DECL itself. */
5139 label = create_artificial_label (loc);
5141 /* If there was an error processing the switch condition, bail now
5142 before we get more confused. */
5143 if (!cond || cond == error_mark_node)
5144 goto error_out;
5146 if ((low_value && TREE_TYPE (low_value)
5147 && POINTER_TYPE_P (TREE_TYPE (low_value)))
5148 || (high_value && TREE_TYPE (high_value)
5149 && POINTER_TYPE_P (TREE_TYPE (high_value))))
5151 error_at (loc, "pointers are not permitted as case values");
5152 goto error_out;
5155 /* Case ranges are a GNU extension. */
5156 if (high_value)
5157 pedwarn (loc, OPT_pedantic,
5158 "range expressions in switch statements are non-standard");
5160 type = TREE_TYPE (cond);
5161 if (low_value)
5163 low_value = check_case_value (low_value);
5164 low_value = convert_and_check (type, low_value);
5165 if (low_value == error_mark_node)
5166 goto error_out;
5168 if (high_value)
5170 high_value = check_case_value (high_value);
5171 high_value = convert_and_check (type, high_value);
5172 if (high_value == error_mark_node)
5173 goto error_out;
5176 if (low_value && high_value)
5178 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
5179 really a case range, even though it was written that way.
5180 Remove the HIGH_VALUE to simplify later processing. */
5181 if (tree_int_cst_equal (low_value, high_value))
5182 high_value = NULL_TREE;
5183 else if (!tree_int_cst_lt (low_value, high_value))
5184 warning_at (loc, 0, "empty range specified");
5187 /* See if the case is in range of the type of the original testing
5188 expression. If both low_value and high_value are out of range,
5189 don't insert the case label and return NULL_TREE. */
5190 if (low_value
5191 && !check_case_bounds (type, orig_type,
5192 &low_value, high_value ? &high_value : NULL))
5193 return NULL_TREE;
5195 /* Look up the LOW_VALUE in the table of case labels we already
5196 have. */
5197 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
5198 /* If there was not an exact match, check for overlapping ranges.
5199 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
5200 that's a `default' label and the only overlap is an exact match. */
5201 if (!node && (low_value || high_value))
5203 splay_tree_node low_bound;
5204 splay_tree_node high_bound;
5206 /* Even though there wasn't an exact match, there might be an
5207 overlap between this case range and another case range.
5208 Since we've (inductively) not allowed any overlapping case
5209 ranges, we simply need to find the greatest low case label
5210 that is smaller that LOW_VALUE, and the smallest low case
5211 label that is greater than LOW_VALUE. If there is an overlap
5212 it will occur in one of these two ranges. */
5213 low_bound = splay_tree_predecessor (cases,
5214 (splay_tree_key) low_value);
5215 high_bound = splay_tree_successor (cases,
5216 (splay_tree_key) low_value);
5218 /* Check to see if the LOW_BOUND overlaps. It is smaller than
5219 the LOW_VALUE, so there is no need to check unless the
5220 LOW_BOUND is in fact itself a case range. */
5221 if (low_bound
5222 && CASE_HIGH ((tree) low_bound->value)
5223 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
5224 low_value) >= 0)
5225 node = low_bound;
5226 /* Check to see if the HIGH_BOUND overlaps. The low end of that
5227 range is bigger than the low end of the current range, so we
5228 are only interested if the current range is a real range, and
5229 not an ordinary case label. */
5230 else if (high_bound
5231 && high_value
5232 && (tree_int_cst_compare ((tree) high_bound->key,
5233 high_value)
5234 <= 0))
5235 node = high_bound;
5237 /* If there was an overlap, issue an error. */
5238 if (node)
5240 tree duplicate = CASE_LABEL ((tree) node->value);
5242 if (high_value)
5244 error_at (loc, "duplicate (or overlapping) case value");
5245 error_at (DECL_SOURCE_LOCATION (duplicate),
5246 "this is the first entry overlapping that value");
5248 else if (low_value)
5250 error_at (loc, "duplicate case value") ;
5251 error_at (DECL_SOURCE_LOCATION (duplicate), "previously used here");
5253 else
5255 error_at (loc, "multiple default labels in one switch");
5256 error_at (DECL_SOURCE_LOCATION (duplicate),
5257 "this is the first default label");
5259 goto error_out;
5262 /* Add a CASE_LABEL to the statement-tree. */
5263 case_label = add_stmt (build_case_label (loc, low_value, high_value, label));
5264 /* Register this case label in the splay tree. */
5265 splay_tree_insert (cases,
5266 (splay_tree_key) low_value,
5267 (splay_tree_value) case_label);
5269 return case_label;
5271 error_out:
5272 /* Add a label so that the back-end doesn't think that the beginning of
5273 the switch is unreachable. Note that we do not add a case label, as
5274 that just leads to duplicates and thence to failure later on. */
5275 if (!cases->root)
5277 tree t = create_artificial_label (loc);
5278 add_stmt (build_stmt (loc, LABEL_EXPR, t));
5280 return error_mark_node;
5283 /* Subroutines of c_do_switch_warnings, called via splay_tree_foreach.
5284 Used to verify that case values match up with enumerator values. */
5286 static void
5287 match_case_to_enum_1 (tree key, tree type, tree label)
5289 char buf[2 + 2*HOST_BITS_PER_WIDE_INT/4 + 1];
5291 /* ??? Not working too hard to print the double-word value.
5292 Should perhaps be done with %lwd in the diagnostic routines? */
5293 if (TREE_INT_CST_HIGH (key) == 0)
5294 snprintf (buf, sizeof (buf), HOST_WIDE_INT_PRINT_UNSIGNED,
5295 TREE_INT_CST_LOW (key));
5296 else if (!TYPE_UNSIGNED (type)
5297 && TREE_INT_CST_HIGH (key) == -1
5298 && TREE_INT_CST_LOW (key) != 0)
5299 snprintf (buf, sizeof (buf), "-" HOST_WIDE_INT_PRINT_UNSIGNED,
5300 -TREE_INT_CST_LOW (key));
5301 else
5302 snprintf (buf, sizeof (buf), HOST_WIDE_INT_PRINT_DOUBLE_HEX,
5303 (unsigned HOST_WIDE_INT) TREE_INT_CST_HIGH (key),
5304 (unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (key));
5306 if (TYPE_NAME (type) == 0)
5307 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label)),
5308 warn_switch ? OPT_Wswitch : OPT_Wswitch_enum,
5309 "case value %qs not in enumerated type",
5310 buf);
5311 else
5312 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label)),
5313 warn_switch ? OPT_Wswitch : OPT_Wswitch_enum,
5314 "case value %qs not in enumerated type %qT",
5315 buf, type);
5318 /* Subroutine of c_do_switch_warnings, called via splay_tree_foreach.
5319 Used to verify that case values match up with enumerator values. */
5321 static int
5322 match_case_to_enum (splay_tree_node node, void *data)
5324 tree label = (tree) node->value;
5325 tree type = (tree) data;
5327 /* Skip default case. */
5328 if (!CASE_LOW (label))
5329 return 0;
5331 /* If CASE_LOW_SEEN is not set, that means CASE_LOW did not appear
5332 when we did our enum->case scan. Reset our scratch bit after. */
5333 if (!CASE_LOW_SEEN (label))
5334 match_case_to_enum_1 (CASE_LOW (label), type, label);
5335 else
5336 CASE_LOW_SEEN (label) = 0;
5338 /* If CASE_HIGH is non-null, we have a range. If CASE_HIGH_SEEN is
5339 not set, that means that CASE_HIGH did not appear when we did our
5340 enum->case scan. Reset our scratch bit after. */
5341 if (CASE_HIGH (label))
5343 if (!CASE_HIGH_SEEN (label))
5344 match_case_to_enum_1 (CASE_HIGH (label), type, label);
5345 else
5346 CASE_HIGH_SEEN (label) = 0;
5349 return 0;
5352 /* Handle -Wswitch*. Called from the front end after parsing the
5353 switch construct. */
5354 /* ??? Should probably be somewhere generic, since other languages
5355 besides C and C++ would want this. At the moment, however, C/C++
5356 are the only tree-ssa languages that support enumerations at all,
5357 so the point is moot. */
5359 void
5360 c_do_switch_warnings (splay_tree cases, location_t switch_location,
5361 tree type, tree cond)
5363 splay_tree_node default_node;
5364 splay_tree_node node;
5365 tree chain;
5367 if (!warn_switch && !warn_switch_enum && !warn_switch_default)
5368 return;
5370 default_node = splay_tree_lookup (cases, (splay_tree_key) NULL);
5371 if (!default_node)
5372 warning_at (switch_location, OPT_Wswitch_default,
5373 "switch missing default case");
5375 /* From here on, we only care about about enumerated types. */
5376 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
5377 return;
5379 /* From here on, we only care about -Wswitch and -Wswitch-enum. */
5380 if (!warn_switch_enum && !warn_switch)
5381 return;
5383 /* Check the cases. Warn about case values which are not members of
5384 the enumerated type. For -Wswitch-enum, or for -Wswitch when
5385 there is no default case, check that exactly all enumeration
5386 literals are covered by the cases. */
5388 /* Clearing COND if it is not an integer constant simplifies
5389 the tests inside the loop below. */
5390 if (TREE_CODE (cond) != INTEGER_CST)
5391 cond = NULL_TREE;
5393 /* The time complexity here is O(N*lg(N)) worst case, but for the
5394 common case of monotonically increasing enumerators, it is
5395 O(N), since the nature of the splay tree will keep the next
5396 element adjacent to the root at all times. */
5398 for (chain = TYPE_VALUES (type); chain; chain = TREE_CHAIN (chain))
5400 tree value = TREE_VALUE (chain);
5401 if (TREE_CODE (value) == CONST_DECL)
5402 value = DECL_INITIAL (value);
5403 node = splay_tree_lookup (cases, (splay_tree_key) value);
5404 if (node)
5406 /* Mark the CASE_LOW part of the case entry as seen. */
5407 tree label = (tree) node->value;
5408 CASE_LOW_SEEN (label) = 1;
5409 continue;
5412 /* Even though there wasn't an exact match, there might be a
5413 case range which includes the enumerator's value. */
5414 node = splay_tree_predecessor (cases, (splay_tree_key) value);
5415 if (node && CASE_HIGH ((tree) node->value))
5417 tree label = (tree) node->value;
5418 int cmp = tree_int_cst_compare (CASE_HIGH (label), value);
5419 if (cmp >= 0)
5421 /* If we match the upper bound exactly, mark the CASE_HIGH
5422 part of the case entry as seen. */
5423 if (cmp == 0)
5424 CASE_HIGH_SEEN (label) = 1;
5425 continue;
5429 /* We've now determined that this enumerated literal isn't
5430 handled by the case labels of the switch statement. */
5432 /* If the switch expression is a constant, we only really care
5433 about whether that constant is handled by the switch. */
5434 if (cond && tree_int_cst_compare (cond, value))
5435 continue;
5437 /* If there is a default_node, the only relevant option is
5438 Wswitch-enum. Otherwise, if both are enabled then we prefer
5439 to warn using -Wswitch because -Wswitch is enabled by -Wall
5440 while -Wswitch-enum is explicit. */
5441 warning_at (switch_location,
5442 (default_node || !warn_switch
5443 ? OPT_Wswitch_enum
5444 : OPT_Wswitch),
5445 "enumeration value %qE not handled in switch",
5446 TREE_PURPOSE (chain));
5449 /* Warn if there are case expressions that don't correspond to
5450 enumerators. This can occur since C and C++ don't enforce
5451 type-checking of assignments to enumeration variables.
5453 The time complexity here is now always O(N) worst case, since
5454 we should have marked both the lower bound and upper bound of
5455 every disjoint case label, with CASE_LOW_SEEN and CASE_HIGH_SEEN
5456 above. This scan also resets those fields. */
5458 splay_tree_foreach (cases, match_case_to_enum, type);
5461 /* Finish an expression taking the address of LABEL (an
5462 IDENTIFIER_NODE). Returns an expression for the address.
5464 LOC is the location for the expression returned. */
5466 tree
5467 finish_label_address_expr (tree label, location_t loc)
5469 tree result;
5471 pedwarn (input_location, OPT_pedantic, "taking the address of a label is non-standard");
5473 if (label == error_mark_node)
5474 return error_mark_node;
5476 label = lookup_label (label);
5477 if (label == NULL_TREE)
5478 result = null_pointer_node;
5479 else
5481 TREE_USED (label) = 1;
5482 result = build1 (ADDR_EXPR, ptr_type_node, label);
5483 /* The current function is not necessarily uninlinable.
5484 Computed gotos are incompatible with inlining, but the value
5485 here could be used only in a diagnostic, for example. */
5486 protected_set_expr_location (result, loc);
5489 return result;
5493 /* Given a boolean expression ARG, return a tree representing an increment
5494 or decrement (as indicated by CODE) of ARG. The front end must check for
5495 invalid cases (e.g., decrement in C++). */
5496 tree
5497 boolean_increment (enum tree_code code, tree arg)
5499 tree val;
5500 tree true_res = build_int_cst (TREE_TYPE (arg), 1);
5502 arg = stabilize_reference (arg);
5503 switch (code)
5505 case PREINCREMENT_EXPR:
5506 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
5507 break;
5508 case POSTINCREMENT_EXPR:
5509 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
5510 arg = save_expr (arg);
5511 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
5512 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
5513 break;
5514 case PREDECREMENT_EXPR:
5515 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
5516 invert_truthvalue_loc (input_location, arg));
5517 break;
5518 case POSTDECREMENT_EXPR:
5519 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
5520 invert_truthvalue_loc (input_location, arg));
5521 arg = save_expr (arg);
5522 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
5523 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
5524 break;
5525 default:
5526 gcc_unreachable ();
5528 TREE_SIDE_EFFECTS (val) = 1;
5529 return val;
5532 /* Built-in macros for stddef.h and stdint.h, that require macros
5533 defined in this file. */
5534 void
5535 c_stddef_cpp_builtins(void)
5537 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
5538 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
5539 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
5540 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
5541 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE, 0);
5542 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE, 0);
5543 builtin_define_with_value ("__CHAR16_TYPE__", CHAR16_TYPE, 0);
5544 builtin_define_with_value ("__CHAR32_TYPE__", CHAR32_TYPE, 0);
5545 if (SIG_ATOMIC_TYPE)
5546 builtin_define_with_value ("__SIG_ATOMIC_TYPE__", SIG_ATOMIC_TYPE, 0);
5547 if (INT8_TYPE)
5548 builtin_define_with_value ("__INT8_TYPE__", INT8_TYPE, 0);
5549 if (INT16_TYPE)
5550 builtin_define_with_value ("__INT16_TYPE__", INT16_TYPE, 0);
5551 if (INT32_TYPE)
5552 builtin_define_with_value ("__INT32_TYPE__", INT32_TYPE, 0);
5553 if (INT64_TYPE)
5554 builtin_define_with_value ("__INT64_TYPE__", INT64_TYPE, 0);
5555 if (UINT8_TYPE)
5556 builtin_define_with_value ("__UINT8_TYPE__", UINT8_TYPE, 0);
5557 if (UINT16_TYPE)
5558 builtin_define_with_value ("__UINT16_TYPE__", UINT16_TYPE, 0);
5559 if (UINT32_TYPE)
5560 builtin_define_with_value ("__UINT32_TYPE__", UINT32_TYPE, 0);
5561 if (UINT64_TYPE)
5562 builtin_define_with_value ("__UINT64_TYPE__", UINT64_TYPE, 0);
5563 if (INT_LEAST8_TYPE)
5564 builtin_define_with_value ("__INT_LEAST8_TYPE__", INT_LEAST8_TYPE, 0);
5565 if (INT_LEAST16_TYPE)
5566 builtin_define_with_value ("__INT_LEAST16_TYPE__", INT_LEAST16_TYPE, 0);
5567 if (INT_LEAST32_TYPE)
5568 builtin_define_with_value ("__INT_LEAST32_TYPE__", INT_LEAST32_TYPE, 0);
5569 if (INT_LEAST64_TYPE)
5570 builtin_define_with_value ("__INT_LEAST64_TYPE__", INT_LEAST64_TYPE, 0);
5571 if (UINT_LEAST8_TYPE)
5572 builtin_define_with_value ("__UINT_LEAST8_TYPE__", UINT_LEAST8_TYPE, 0);
5573 if (UINT_LEAST16_TYPE)
5574 builtin_define_with_value ("__UINT_LEAST16_TYPE__", UINT_LEAST16_TYPE, 0);
5575 if (UINT_LEAST32_TYPE)
5576 builtin_define_with_value ("__UINT_LEAST32_TYPE__", UINT_LEAST32_TYPE, 0);
5577 if (UINT_LEAST64_TYPE)
5578 builtin_define_with_value ("__UINT_LEAST64_TYPE__", UINT_LEAST64_TYPE, 0);
5579 if (INT_FAST8_TYPE)
5580 builtin_define_with_value ("__INT_FAST8_TYPE__", INT_FAST8_TYPE, 0);
5581 if (INT_FAST16_TYPE)
5582 builtin_define_with_value ("__INT_FAST16_TYPE__", INT_FAST16_TYPE, 0);
5583 if (INT_FAST32_TYPE)
5584 builtin_define_with_value ("__INT_FAST32_TYPE__", INT_FAST32_TYPE, 0);
5585 if (INT_FAST64_TYPE)
5586 builtin_define_with_value ("__INT_FAST64_TYPE__", INT_FAST64_TYPE, 0);
5587 if (UINT_FAST8_TYPE)
5588 builtin_define_with_value ("__UINT_FAST8_TYPE__", UINT_FAST8_TYPE, 0);
5589 if (UINT_FAST16_TYPE)
5590 builtin_define_with_value ("__UINT_FAST16_TYPE__", UINT_FAST16_TYPE, 0);
5591 if (UINT_FAST32_TYPE)
5592 builtin_define_with_value ("__UINT_FAST32_TYPE__", UINT_FAST32_TYPE, 0);
5593 if (UINT_FAST64_TYPE)
5594 builtin_define_with_value ("__UINT_FAST64_TYPE__", UINT_FAST64_TYPE, 0);
5595 if (INTPTR_TYPE)
5596 builtin_define_with_value ("__INTPTR_TYPE__", INTPTR_TYPE, 0);
5597 if (UINTPTR_TYPE)
5598 builtin_define_with_value ("__UINTPTR_TYPE__", UINTPTR_TYPE, 0);
5601 static void
5602 c_init_attributes (void)
5604 /* Fill in the built_in_attributes array. */
5605 #define DEF_ATTR_NULL_TREE(ENUM) \
5606 built_in_attributes[(int) ENUM] = NULL_TREE;
5607 #define DEF_ATTR_INT(ENUM, VALUE) \
5608 built_in_attributes[(int) ENUM] = build_int_cst (NULL_TREE, VALUE);
5609 #define DEF_ATTR_IDENT(ENUM, STRING) \
5610 built_in_attributes[(int) ENUM] = get_identifier (STRING);
5611 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
5612 built_in_attributes[(int) ENUM] \
5613 = tree_cons (built_in_attributes[(int) PURPOSE], \
5614 built_in_attributes[(int) VALUE], \
5615 built_in_attributes[(int) CHAIN]);
5616 #include "builtin-attrs.def"
5617 #undef DEF_ATTR_NULL_TREE
5618 #undef DEF_ATTR_INT
5619 #undef DEF_ATTR_IDENT
5620 #undef DEF_ATTR_TREE_LIST
5623 /* Returns TRUE iff the attribute indicated by ATTR_ID takes a plain
5624 identifier as an argument, so the front end shouldn't look it up. */
5626 bool
5627 attribute_takes_identifier_p (const_tree attr_id)
5629 if (is_attribute_p ("mode", attr_id)
5630 || is_attribute_p ("format", attr_id)
5631 || is_attribute_p ("cleanup", attr_id))
5632 return true;
5633 else
5634 return targetm.attribute_takes_identifier_p (attr_id);
5637 /* Attribute handlers common to C front ends. */
5639 /* Handle a "packed" attribute; arguments as in
5640 struct attribute_spec.handler. */
5642 static tree
5643 handle_packed_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5644 int flags, bool *no_add_attrs)
5646 if (TYPE_P (*node))
5648 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5649 *node = build_variant_type_copy (*node);
5650 TYPE_PACKED (*node) = 1;
5652 else if (TREE_CODE (*node) == FIELD_DECL)
5654 if (TYPE_ALIGN (TREE_TYPE (*node)) <= BITS_PER_UNIT
5655 /* Still pack bitfields. */
5656 && ! DECL_INITIAL (*node))
5657 warning (OPT_Wattributes,
5658 "%qE attribute ignored for field of type %qT",
5659 name, TREE_TYPE (*node));
5660 else
5661 DECL_PACKED (*node) = 1;
5663 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
5664 used for DECL_REGISTER. It wouldn't mean anything anyway.
5665 We can't set DECL_PACKED on the type of a TYPE_DECL, because
5666 that changes what the typedef is typing. */
5667 else
5669 warning (OPT_Wattributes, "%qE attribute ignored", name);
5670 *no_add_attrs = true;
5673 return NULL_TREE;
5676 /* Handle a "nocommon" attribute; arguments as in
5677 struct attribute_spec.handler. */
5679 static tree
5680 handle_nocommon_attribute (tree *node, tree name,
5681 tree ARG_UNUSED (args),
5682 int ARG_UNUSED (flags), bool *no_add_attrs)
5684 if (TREE_CODE (*node) == VAR_DECL)
5685 DECL_COMMON (*node) = 0;
5686 else
5688 warning (OPT_Wattributes, "%qE attribute ignored", name);
5689 *no_add_attrs = true;
5692 return NULL_TREE;
5695 /* Handle a "common" attribute; arguments as in
5696 struct attribute_spec.handler. */
5698 static tree
5699 handle_common_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5700 int ARG_UNUSED (flags), bool *no_add_attrs)
5702 if (TREE_CODE (*node) == VAR_DECL)
5703 DECL_COMMON (*node) = 1;
5704 else
5706 warning (OPT_Wattributes, "%qE attribute ignored", name);
5707 *no_add_attrs = true;
5710 return NULL_TREE;
5713 /* Handle a "noreturn" attribute; arguments as in
5714 struct attribute_spec.handler. */
5716 static tree
5717 handle_noreturn_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5718 int ARG_UNUSED (flags), bool *no_add_attrs)
5720 tree type = TREE_TYPE (*node);
5722 /* See FIXME comment in c_common_attribute_table. */
5723 if (TREE_CODE (*node) == FUNCTION_DECL)
5724 TREE_THIS_VOLATILE (*node) = 1;
5725 else if (TREE_CODE (type) == POINTER_TYPE
5726 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
5727 TREE_TYPE (*node)
5728 = build_pointer_type
5729 (build_type_variant (TREE_TYPE (type),
5730 TYPE_READONLY (TREE_TYPE (type)), 1));
5731 else
5733 warning (OPT_Wattributes, "%qE attribute ignored", name);
5734 *no_add_attrs = true;
5737 return NULL_TREE;
5740 /* Handle a "hot" and attribute; arguments as in
5741 struct attribute_spec.handler. */
5743 static tree
5744 handle_hot_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5745 int ARG_UNUSED (flags), bool *no_add_attrs)
5747 if (TREE_CODE (*node) == FUNCTION_DECL)
5749 if (lookup_attribute ("cold", DECL_ATTRIBUTES (*node)) != NULL)
5751 warning (OPT_Wattributes, "%qE attribute conflicts with attribute %s",
5752 name, "cold");
5753 *no_add_attrs = true;
5755 /* Most of the rest of the hot processing is done later with
5756 lookup_attribute. */
5758 else
5760 warning (OPT_Wattributes, "%qE attribute ignored", name);
5761 *no_add_attrs = true;
5764 return NULL_TREE;
5766 /* Handle a "cold" and attribute; arguments as in
5767 struct attribute_spec.handler. */
5769 static tree
5770 handle_cold_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5771 int ARG_UNUSED (flags), bool *no_add_attrs)
5773 if (TREE_CODE (*node) == FUNCTION_DECL)
5775 if (lookup_attribute ("hot", DECL_ATTRIBUTES (*node)) != NULL)
5777 warning (OPT_Wattributes, "%qE attribute conflicts with attribute %s",
5778 name, "hot");
5779 *no_add_attrs = true;
5781 /* Most of the rest of the cold processing is done later with
5782 lookup_attribute. */
5784 else
5786 warning (OPT_Wattributes, "%qE attribute ignored", name);
5787 *no_add_attrs = true;
5790 return NULL_TREE;
5793 /* Handle a "noinline" attribute; arguments as in
5794 struct attribute_spec.handler. */
5796 static tree
5797 handle_noinline_attribute (tree *node, tree name,
5798 tree ARG_UNUSED (args),
5799 int ARG_UNUSED (flags), bool *no_add_attrs)
5801 if (TREE_CODE (*node) == FUNCTION_DECL)
5802 DECL_UNINLINABLE (*node) = 1;
5803 else
5805 warning (OPT_Wattributes, "%qE attribute ignored", name);
5806 *no_add_attrs = true;
5809 return NULL_TREE;
5812 /* Handle a "noclone" attribute; arguments as in
5813 struct attribute_spec.handler. */
5815 static tree
5816 handle_noclone_attribute (tree *node, tree name,
5817 tree ARG_UNUSED (args),
5818 int ARG_UNUSED (flags), bool *no_add_attrs)
5820 if (TREE_CODE (*node) != FUNCTION_DECL)
5822 warning (OPT_Wattributes, "%qE attribute ignored", name);
5823 *no_add_attrs = true;
5826 return NULL_TREE;
5829 /* Handle a "always_inline" attribute; arguments as in
5830 struct attribute_spec.handler. */
5832 static tree
5833 handle_always_inline_attribute (tree *node, tree name,
5834 tree ARG_UNUSED (args),
5835 int ARG_UNUSED (flags),
5836 bool *no_add_attrs)
5838 if (TREE_CODE (*node) == FUNCTION_DECL)
5840 /* Set the attribute and mark it for disregarding inline
5841 limits. */
5842 DECL_DISREGARD_INLINE_LIMITS (*node) = 1;
5844 else
5846 warning (OPT_Wattributes, "%qE attribute ignored", name);
5847 *no_add_attrs = true;
5850 return NULL_TREE;
5853 /* Handle a "gnu_inline" attribute; arguments as in
5854 struct attribute_spec.handler. */
5856 static tree
5857 handle_gnu_inline_attribute (tree *node, tree name,
5858 tree ARG_UNUSED (args),
5859 int ARG_UNUSED (flags),
5860 bool *no_add_attrs)
5862 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
5864 /* Do nothing else, just set the attribute. We'll get at
5865 it later with lookup_attribute. */
5867 else
5869 warning (OPT_Wattributes, "%qE attribute ignored", name);
5870 *no_add_attrs = true;
5873 return NULL_TREE;
5876 /* Handle an "artificial" attribute; arguments as in
5877 struct attribute_spec.handler. */
5879 static tree
5880 handle_artificial_attribute (tree *node, tree name,
5881 tree ARG_UNUSED (args),
5882 int ARG_UNUSED (flags),
5883 bool *no_add_attrs)
5885 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
5887 /* Do nothing else, just set the attribute. We'll get at
5888 it later with lookup_attribute. */
5890 else
5892 warning (OPT_Wattributes, "%qE attribute ignored", name);
5893 *no_add_attrs = true;
5896 return NULL_TREE;
5899 /* Handle a "flatten" attribute; arguments as in
5900 struct attribute_spec.handler. */
5902 static tree
5903 handle_flatten_attribute (tree *node, tree name,
5904 tree args ATTRIBUTE_UNUSED,
5905 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
5907 if (TREE_CODE (*node) == FUNCTION_DECL)
5908 /* Do nothing else, just set the attribute. We'll get at
5909 it later with lookup_attribute. */
5911 else
5913 warning (OPT_Wattributes, "%qE attribute ignored", name);
5914 *no_add_attrs = true;
5917 return NULL_TREE;
5920 /* Handle a "warning" or "error" attribute; arguments as in
5921 struct attribute_spec.handler. */
5923 static tree
5924 handle_error_attribute (tree *node, tree name, tree args,
5925 int ARG_UNUSED (flags), bool *no_add_attrs)
5927 if (TREE_CODE (*node) == FUNCTION_DECL
5928 || TREE_CODE (TREE_VALUE (args)) == STRING_CST)
5929 /* Do nothing else, just set the attribute. We'll get at
5930 it later with lookup_attribute. */
5932 else
5934 warning (OPT_Wattributes, "%qE attribute ignored", name);
5935 *no_add_attrs = true;
5938 return NULL_TREE;
5941 /* Handle a "used" attribute; arguments as in
5942 struct attribute_spec.handler. */
5944 static tree
5945 handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args),
5946 int ARG_UNUSED (flags), bool *no_add_attrs)
5948 tree node = *pnode;
5950 if (TREE_CODE (node) == FUNCTION_DECL
5951 || (TREE_CODE (node) == VAR_DECL && TREE_STATIC (node)))
5953 TREE_USED (node) = 1;
5954 DECL_PRESERVE_P (node) = 1;
5955 if (TREE_CODE (node) == VAR_DECL)
5956 DECL_READ_P (node) = 1;
5958 else
5960 warning (OPT_Wattributes, "%qE attribute ignored", name);
5961 *no_add_attrs = true;
5964 return NULL_TREE;
5967 /* Handle a "unused" attribute; arguments as in
5968 struct attribute_spec.handler. */
5970 static tree
5971 handle_unused_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5972 int flags, bool *no_add_attrs)
5974 if (DECL_P (*node))
5976 tree decl = *node;
5978 if (TREE_CODE (decl) == PARM_DECL
5979 || TREE_CODE (decl) == VAR_DECL
5980 || TREE_CODE (decl) == FUNCTION_DECL
5981 || TREE_CODE (decl) == LABEL_DECL
5982 || TREE_CODE (decl) == TYPE_DECL)
5984 TREE_USED (decl) = 1;
5985 if (TREE_CODE (decl) == VAR_DECL
5986 || TREE_CODE (decl) == PARM_DECL)
5987 DECL_READ_P (decl) = 1;
5989 else
5991 warning (OPT_Wattributes, "%qE attribute ignored", name);
5992 *no_add_attrs = true;
5995 else
5997 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5998 *node = build_variant_type_copy (*node);
5999 TREE_USED (*node) = 1;
6002 return NULL_TREE;
6005 /* Handle a "externally_visible" attribute; arguments as in
6006 struct attribute_spec.handler. */
6008 static tree
6009 handle_externally_visible_attribute (tree *pnode, tree name,
6010 tree ARG_UNUSED (args),
6011 int ARG_UNUSED (flags),
6012 bool *no_add_attrs)
6014 tree node = *pnode;
6016 if (TREE_CODE (node) == FUNCTION_DECL || TREE_CODE (node) == VAR_DECL)
6018 if ((!TREE_STATIC (node) && TREE_CODE (node) != FUNCTION_DECL
6019 && !DECL_EXTERNAL (node)) || !TREE_PUBLIC (node))
6021 warning (OPT_Wattributes,
6022 "%qE attribute have effect only on public objects", name);
6023 *no_add_attrs = true;
6026 else
6028 warning (OPT_Wattributes, "%qE attribute ignored", name);
6029 *no_add_attrs = true;
6032 return NULL_TREE;
6035 /* Handle a "const" attribute; arguments as in
6036 struct attribute_spec.handler. */
6038 static tree
6039 handle_const_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6040 int ARG_UNUSED (flags), bool *no_add_attrs)
6042 tree type = TREE_TYPE (*node);
6044 /* See FIXME comment on noreturn in c_common_attribute_table. */
6045 if (TREE_CODE (*node) == FUNCTION_DECL)
6046 TREE_READONLY (*node) = 1;
6047 else if (TREE_CODE (type) == POINTER_TYPE
6048 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
6049 TREE_TYPE (*node)
6050 = build_pointer_type
6051 (build_type_variant (TREE_TYPE (type), 1,
6052 TREE_THIS_VOLATILE (TREE_TYPE (type))));
6053 else
6055 warning (OPT_Wattributes, "%qE attribute ignored", name);
6056 *no_add_attrs = true;
6059 return NULL_TREE;
6062 /* Handle a "transparent_union" attribute; arguments as in
6063 struct attribute_spec.handler. */
6065 static tree
6066 handle_transparent_union_attribute (tree *node, tree name,
6067 tree ARG_UNUSED (args), int flags,
6068 bool *no_add_attrs)
6070 tree type;
6072 *no_add_attrs = true;
6074 if (TREE_CODE (*node) == TYPE_DECL)
6075 node = &TREE_TYPE (*node);
6076 type = *node;
6078 if (TREE_CODE (type) == UNION_TYPE)
6080 /* When IN_PLACE is set, leave the check for FIELDS and MODE to
6081 the code in finish_struct. */
6082 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
6084 if (TYPE_FIELDS (type) == NULL_TREE
6085 || TYPE_MODE (type) != DECL_MODE (TYPE_FIELDS (type)))
6086 goto ignored;
6088 /* A type variant isn't good enough, since we don't a cast
6089 to such a type removed as a no-op. */
6090 *node = type = build_duplicate_type (type);
6093 TYPE_TRANSPARENT_AGGR (type) = 1;
6094 return NULL_TREE;
6097 ignored:
6098 warning (OPT_Wattributes, "%qE attribute ignored", name);
6099 return NULL_TREE;
6102 /* Subroutine of handle_{con,de}structor_attribute. Evaluate ARGS to
6103 get the requested priority for a constructor or destructor,
6104 possibly issuing diagnostics for invalid or reserved
6105 priorities. */
6107 static priority_type
6108 get_priority (tree args, bool is_destructor)
6110 HOST_WIDE_INT pri;
6111 tree arg;
6113 if (!args)
6114 return DEFAULT_INIT_PRIORITY;
6116 if (!SUPPORTS_INIT_PRIORITY)
6118 if (is_destructor)
6119 error ("destructor priorities are not supported");
6120 else
6121 error ("constructor priorities are not supported");
6122 return DEFAULT_INIT_PRIORITY;
6125 arg = TREE_VALUE (args);
6126 if (!host_integerp (arg, /*pos=*/0)
6127 || !INTEGRAL_TYPE_P (TREE_TYPE (arg)))
6128 goto invalid;
6130 pri = tree_low_cst (TREE_VALUE (args), /*pos=*/0);
6131 if (pri < 0 || pri > MAX_INIT_PRIORITY)
6132 goto invalid;
6134 if (pri <= MAX_RESERVED_INIT_PRIORITY)
6136 if (is_destructor)
6137 warning (0,
6138 "destructor priorities from 0 to %d are reserved "
6139 "for the implementation",
6140 MAX_RESERVED_INIT_PRIORITY);
6141 else
6142 warning (0,
6143 "constructor priorities from 0 to %d are reserved "
6144 "for the implementation",
6145 MAX_RESERVED_INIT_PRIORITY);
6147 return pri;
6149 invalid:
6150 if (is_destructor)
6151 error ("destructor priorities must be integers from 0 to %d inclusive",
6152 MAX_INIT_PRIORITY);
6153 else
6154 error ("constructor priorities must be integers from 0 to %d inclusive",
6155 MAX_INIT_PRIORITY);
6156 return DEFAULT_INIT_PRIORITY;
6159 /* Handle a "constructor" attribute; arguments as in
6160 struct attribute_spec.handler. */
6162 static tree
6163 handle_constructor_attribute (tree *node, tree name, tree args,
6164 int ARG_UNUSED (flags),
6165 bool *no_add_attrs)
6167 tree decl = *node;
6168 tree type = TREE_TYPE (decl);
6170 if (TREE_CODE (decl) == FUNCTION_DECL
6171 && TREE_CODE (type) == FUNCTION_TYPE
6172 && decl_function_context (decl) == 0)
6174 priority_type priority;
6175 DECL_STATIC_CONSTRUCTOR (decl) = 1;
6176 priority = get_priority (args, /*is_destructor=*/false);
6177 SET_DECL_INIT_PRIORITY (decl, priority);
6178 TREE_USED (decl) = 1;
6180 else
6182 warning (OPT_Wattributes, "%qE attribute ignored", name);
6183 *no_add_attrs = true;
6186 return NULL_TREE;
6189 /* Handle a "destructor" attribute; arguments as in
6190 struct attribute_spec.handler. */
6192 static tree
6193 handle_destructor_attribute (tree *node, tree name, tree args,
6194 int ARG_UNUSED (flags),
6195 bool *no_add_attrs)
6197 tree decl = *node;
6198 tree type = TREE_TYPE (decl);
6200 if (TREE_CODE (decl) == FUNCTION_DECL
6201 && TREE_CODE (type) == FUNCTION_TYPE
6202 && decl_function_context (decl) == 0)
6204 priority_type priority;
6205 DECL_STATIC_DESTRUCTOR (decl) = 1;
6206 priority = get_priority (args, /*is_destructor=*/true);
6207 SET_DECL_FINI_PRIORITY (decl, priority);
6208 TREE_USED (decl) = 1;
6210 else
6212 warning (OPT_Wattributes, "%qE attribute ignored", name);
6213 *no_add_attrs = true;
6216 return NULL_TREE;
6219 /* Nonzero if the mode is a valid vector mode for this architecture.
6220 This returns nonzero even if there is no hardware support for the
6221 vector mode, but we can emulate with narrower modes. */
6223 static int
6224 vector_mode_valid_p (enum machine_mode mode)
6226 enum mode_class mclass = GET_MODE_CLASS (mode);
6227 enum machine_mode innermode;
6229 /* Doh! What's going on? */
6230 if (mclass != MODE_VECTOR_INT
6231 && mclass != MODE_VECTOR_FLOAT
6232 && mclass != MODE_VECTOR_FRACT
6233 && mclass != MODE_VECTOR_UFRACT
6234 && mclass != MODE_VECTOR_ACCUM
6235 && mclass != MODE_VECTOR_UACCUM)
6236 return 0;
6238 /* Hardware support. Woo hoo! */
6239 if (targetm.vector_mode_supported_p (mode))
6240 return 1;
6242 innermode = GET_MODE_INNER (mode);
6244 /* We should probably return 1 if requesting V4DI and we have no DI,
6245 but we have V2DI, but this is probably very unlikely. */
6247 /* If we have support for the inner mode, we can safely emulate it.
6248 We may not have V2DI, but me can emulate with a pair of DIs. */
6249 return targetm.scalar_mode_supported_p (innermode);
6253 /* Handle a "mode" attribute; arguments as in
6254 struct attribute_spec.handler. */
6256 static tree
6257 handle_mode_attribute (tree *node, tree name, tree args,
6258 int ARG_UNUSED (flags), bool *no_add_attrs)
6260 tree type = *node;
6261 tree ident = TREE_VALUE (args);
6263 *no_add_attrs = true;
6265 if (TREE_CODE (ident) != IDENTIFIER_NODE)
6266 warning (OPT_Wattributes, "%qE attribute ignored", name);
6267 else
6269 int j;
6270 const char *p = IDENTIFIER_POINTER (ident);
6271 int len = strlen (p);
6272 enum machine_mode mode = VOIDmode;
6273 tree typefm;
6274 bool valid_mode;
6276 if (len > 4 && p[0] == '_' && p[1] == '_'
6277 && p[len - 1] == '_' && p[len - 2] == '_')
6279 char *newp = (char *) alloca (len - 1);
6281 strcpy (newp, &p[2]);
6282 newp[len - 4] = '\0';
6283 p = newp;
6286 /* Change this type to have a type with the specified mode.
6287 First check for the special modes. */
6288 if (!strcmp (p, "byte"))
6289 mode = byte_mode;
6290 else if (!strcmp (p, "word"))
6291 mode = word_mode;
6292 else if (!strcmp (p, "pointer"))
6293 mode = ptr_mode;
6294 else if (!strcmp (p, "libgcc_cmp_return"))
6295 mode = targetm.libgcc_cmp_return_mode ();
6296 else if (!strcmp (p, "libgcc_shift_count"))
6297 mode = targetm.libgcc_shift_count_mode ();
6298 else if (!strcmp (p, "unwind_word"))
6299 mode = targetm.unwind_word_mode ();
6300 else
6301 for (j = 0; j < NUM_MACHINE_MODES; j++)
6302 if (!strcmp (p, GET_MODE_NAME (j)))
6304 mode = (enum machine_mode) j;
6305 break;
6308 if (mode == VOIDmode)
6310 error ("unknown machine mode %qE", ident);
6311 return NULL_TREE;
6314 valid_mode = false;
6315 switch (GET_MODE_CLASS (mode))
6317 case MODE_INT:
6318 case MODE_PARTIAL_INT:
6319 case MODE_FLOAT:
6320 case MODE_DECIMAL_FLOAT:
6321 case MODE_FRACT:
6322 case MODE_UFRACT:
6323 case MODE_ACCUM:
6324 case MODE_UACCUM:
6325 valid_mode = targetm.scalar_mode_supported_p (mode);
6326 break;
6328 case MODE_COMPLEX_INT:
6329 case MODE_COMPLEX_FLOAT:
6330 valid_mode = targetm.scalar_mode_supported_p (GET_MODE_INNER (mode));
6331 break;
6333 case MODE_VECTOR_INT:
6334 case MODE_VECTOR_FLOAT:
6335 case MODE_VECTOR_FRACT:
6336 case MODE_VECTOR_UFRACT:
6337 case MODE_VECTOR_ACCUM:
6338 case MODE_VECTOR_UACCUM:
6339 warning (OPT_Wattributes, "specifying vector types with "
6340 "__attribute__ ((mode)) is deprecated");
6341 warning (OPT_Wattributes,
6342 "use __attribute__ ((vector_size)) instead");
6343 valid_mode = vector_mode_valid_p (mode);
6344 break;
6346 default:
6347 break;
6349 if (!valid_mode)
6351 error ("unable to emulate %qs", p);
6352 return NULL_TREE;
6355 if (POINTER_TYPE_P (type))
6357 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (type));
6358 tree (*fn)(tree, enum machine_mode, bool);
6360 if (!targetm.addr_space.valid_pointer_mode (mode, as))
6362 error ("invalid pointer mode %qs", p);
6363 return NULL_TREE;
6366 if (TREE_CODE (type) == POINTER_TYPE)
6367 fn = build_pointer_type_for_mode;
6368 else
6369 fn = build_reference_type_for_mode;
6370 typefm = fn (TREE_TYPE (type), mode, false);
6372 else
6374 /* For fixed-point modes, we need to test if the signness of type
6375 and the machine mode are consistent. */
6376 if (ALL_FIXED_POINT_MODE_P (mode)
6377 && TYPE_UNSIGNED (type) != UNSIGNED_FIXED_POINT_MODE_P (mode))
6379 error ("signness of type and machine mode %qs don't match", p);
6380 return NULL_TREE;
6382 /* For fixed-point modes, we need to pass saturating info. */
6383 typefm = lang_hooks.types.type_for_mode (mode,
6384 ALL_FIXED_POINT_MODE_P (mode) ? TYPE_SATURATING (type)
6385 : TYPE_UNSIGNED (type));
6388 if (typefm == NULL_TREE)
6390 error ("no data type for mode %qs", p);
6391 return NULL_TREE;
6393 else if (TREE_CODE (type) == ENUMERAL_TYPE)
6395 /* For enumeral types, copy the precision from the integer
6396 type returned above. If not an INTEGER_TYPE, we can't use
6397 this mode for this type. */
6398 if (TREE_CODE (typefm) != INTEGER_TYPE)
6400 error ("cannot use mode %qs for enumeral types", p);
6401 return NULL_TREE;
6404 if (flags & ATTR_FLAG_TYPE_IN_PLACE)
6406 TYPE_PRECISION (type) = TYPE_PRECISION (typefm);
6407 typefm = type;
6409 else
6411 /* We cannot build a type variant, as there's code that assumes
6412 that TYPE_MAIN_VARIANT has the same mode. This includes the
6413 debug generators. Instead, create a subrange type. This
6414 results in all of the enumeral values being emitted only once
6415 in the original, and the subtype gets them by reference. */
6416 if (TYPE_UNSIGNED (type))
6417 typefm = make_unsigned_type (TYPE_PRECISION (typefm));
6418 else
6419 typefm = make_signed_type (TYPE_PRECISION (typefm));
6420 TREE_TYPE (typefm) = type;
6423 else if (VECTOR_MODE_P (mode)
6424 ? TREE_CODE (type) != TREE_CODE (TREE_TYPE (typefm))
6425 : TREE_CODE (type) != TREE_CODE (typefm))
6427 error ("mode %qs applied to inappropriate type", p);
6428 return NULL_TREE;
6431 *node = typefm;
6434 return NULL_TREE;
6437 /* Handle a "section" attribute; arguments as in
6438 struct attribute_spec.handler. */
6440 static tree
6441 handle_section_attribute (tree *node, tree ARG_UNUSED (name), tree args,
6442 int ARG_UNUSED (flags), bool *no_add_attrs)
6444 tree decl = *node;
6446 if (targetm.have_named_sections)
6448 user_defined_section_attribute = true;
6450 if ((TREE_CODE (decl) == FUNCTION_DECL
6451 || TREE_CODE (decl) == VAR_DECL)
6452 && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
6454 if (TREE_CODE (decl) == VAR_DECL
6455 && current_function_decl != NULL_TREE
6456 && !TREE_STATIC (decl))
6458 error_at (DECL_SOURCE_LOCATION (decl),
6459 "section attribute cannot be specified for "
6460 "local variables");
6461 *no_add_attrs = true;
6464 /* The decl may have already been given a section attribute
6465 from a previous declaration. Ensure they match. */
6466 else if (DECL_SECTION_NAME (decl) != NULL_TREE
6467 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
6468 TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
6470 error ("section of %q+D conflicts with previous declaration",
6471 *node);
6472 *no_add_attrs = true;
6474 else if (TREE_CODE (decl) == VAR_DECL
6475 && !targetm.have_tls && targetm.emutls.tmpl_section
6476 && DECL_THREAD_LOCAL_P (decl))
6478 error ("section of %q+D cannot be overridden", *node);
6479 *no_add_attrs = true;
6481 else
6482 DECL_SECTION_NAME (decl) = TREE_VALUE (args);
6484 else
6486 error ("section attribute not allowed for %q+D", *node);
6487 *no_add_attrs = true;
6490 else
6492 error_at (DECL_SOURCE_LOCATION (*node),
6493 "section attributes are not supported for this target");
6494 *no_add_attrs = true;
6497 return NULL_TREE;
6500 /* Handle a "aligned" attribute; arguments as in
6501 struct attribute_spec.handler. */
6503 static tree
6504 handle_aligned_attribute (tree *node, tree ARG_UNUSED (name), tree args,
6505 int flags, bool *no_add_attrs)
6507 tree decl = NULL_TREE;
6508 tree *type = NULL;
6509 int is_type = 0;
6510 tree align_expr = (args ? TREE_VALUE (args)
6511 : size_int (ATTRIBUTE_ALIGNED_VALUE / BITS_PER_UNIT));
6512 int i;
6514 if (DECL_P (*node))
6516 decl = *node;
6517 type = &TREE_TYPE (decl);
6518 is_type = TREE_CODE (*node) == TYPE_DECL;
6520 else if (TYPE_P (*node))
6521 type = node, is_type = 1;
6523 if (TREE_CODE (align_expr) != INTEGER_CST)
6525 error ("requested alignment is not a constant");
6526 *no_add_attrs = true;
6528 else if ((i = tree_log2 (align_expr)) == -1)
6530 error ("requested alignment is not a power of 2");
6531 *no_add_attrs = true;
6533 else if (i >= HOST_BITS_PER_INT - BITS_PER_UNIT_LOG)
6535 error ("requested alignment is too large");
6536 *no_add_attrs = true;
6538 else if (is_type)
6540 if ((flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
6541 /* OK, modify the type in place. */;
6542 /* If we have a TYPE_DECL, then copy the type, so that we
6543 don't accidentally modify a builtin type. See pushdecl. */
6544 else if (decl && TREE_TYPE (decl) != error_mark_node
6545 && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
6547 tree tt = TREE_TYPE (decl);
6548 *type = build_variant_type_copy (*type);
6549 DECL_ORIGINAL_TYPE (decl) = tt;
6550 TYPE_NAME (*type) = decl;
6551 TREE_USED (*type) = TREE_USED (decl);
6552 TREE_TYPE (decl) = *type;
6554 else
6555 *type = build_variant_type_copy (*type);
6557 TYPE_ALIGN (*type) = (1U << i) * BITS_PER_UNIT;
6558 TYPE_USER_ALIGN (*type) = 1;
6560 else if (! VAR_OR_FUNCTION_DECL_P (decl)
6561 && TREE_CODE (decl) != FIELD_DECL)
6563 error ("alignment may not be specified for %q+D", decl);
6564 *no_add_attrs = true;
6566 else if (TREE_CODE (decl) == FUNCTION_DECL
6567 && DECL_ALIGN (decl) > (1U << i) * BITS_PER_UNIT)
6569 if (DECL_USER_ALIGN (decl))
6570 error ("alignment for %q+D was previously specified as %d "
6571 "and may not be decreased", decl,
6572 DECL_ALIGN (decl) / BITS_PER_UNIT);
6573 else
6574 error ("alignment for %q+D must be at least %d", decl,
6575 DECL_ALIGN (decl) / BITS_PER_UNIT);
6576 *no_add_attrs = true;
6578 else
6580 DECL_ALIGN (decl) = (1U << i) * BITS_PER_UNIT;
6581 DECL_USER_ALIGN (decl) = 1;
6584 return NULL_TREE;
6587 /* Handle a "weak" attribute; arguments as in
6588 struct attribute_spec.handler. */
6590 static tree
6591 handle_weak_attribute (tree *node, tree name,
6592 tree ARG_UNUSED (args),
6593 int ARG_UNUSED (flags),
6594 bool * ARG_UNUSED (no_add_attrs))
6596 if (TREE_CODE (*node) == FUNCTION_DECL
6597 && DECL_DECLARED_INLINE_P (*node))
6599 error ("inline function %q+D cannot be declared weak", *node);
6600 *no_add_attrs = true;
6602 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node)))
6604 error ("indirect function %q+D cannot be declared weak", *node);
6605 *no_add_attrs = true;
6606 return NULL_TREE;
6608 else if (TREE_CODE (*node) == FUNCTION_DECL
6609 || TREE_CODE (*node) == VAR_DECL)
6610 declare_weak (*node);
6611 else
6612 warning (OPT_Wattributes, "%qE attribute ignored", name);
6614 return NULL_TREE;
6617 /* Handle an "alias" or "ifunc" attribute; arguments as in
6618 struct attribute_spec.handler, except that IS_ALIAS tells us
6619 whether this is an alias as opposed to ifunc attribute. */
6621 static tree
6622 handle_alias_ifunc_attribute (bool is_alias, tree *node, tree name, tree args,
6623 bool *no_add_attrs)
6625 tree decl = *node;
6627 if (TREE_CODE (decl) != FUNCTION_DECL
6628 && (!is_alias || TREE_CODE (decl) != VAR_DECL))
6630 warning (OPT_Wattributes, "%qE attribute ignored", name);
6631 *no_add_attrs = true;
6633 else if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
6634 || (TREE_CODE (decl) != FUNCTION_DECL
6635 && TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
6636 /* A static variable declaration is always a tentative definition,
6637 but the alias is a non-tentative definition which overrides. */
6638 || (TREE_CODE (decl) != FUNCTION_DECL
6639 && ! TREE_PUBLIC (decl) && DECL_INITIAL (decl)))
6641 error ("%q+D defined both normally and as %qE attribute", decl, name);
6642 *no_add_attrs = true;
6643 return NULL_TREE;
6645 else if (!is_alias
6646 && (lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
6647 || lookup_attribute ("weakref", DECL_ATTRIBUTES (decl))))
6649 error ("weak %q+D cannot be defined %qE", decl, name);
6650 *no_add_attrs = true;
6651 return NULL_TREE;
6654 /* Note that the very first time we process a nested declaration,
6655 decl_function_context will not be set. Indeed, *would* never
6656 be set except for the DECL_INITIAL/DECL_EXTERNAL frobbery that
6657 we do below. After such frobbery, pushdecl would set the context.
6658 In any case, this is never what we want. */
6659 else if (decl_function_context (decl) == 0 && current_function_decl == NULL)
6661 tree id;
6663 id = TREE_VALUE (args);
6664 if (TREE_CODE (id) != STRING_CST)
6666 error ("attribute %qE argument not a string", name);
6667 *no_add_attrs = true;
6668 return NULL_TREE;
6670 id = get_identifier (TREE_STRING_POINTER (id));
6671 /* This counts as a use of the object pointed to. */
6672 TREE_USED (id) = 1;
6674 if (TREE_CODE (decl) == FUNCTION_DECL)
6675 DECL_INITIAL (decl) = error_mark_node;
6676 else
6678 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
6679 DECL_EXTERNAL (decl) = 1;
6680 else
6681 DECL_EXTERNAL (decl) = 0;
6682 TREE_STATIC (decl) = 1;
6685 if (!is_alias)
6686 /* ifuncs are also aliases, so set that attribute too. */
6687 DECL_ATTRIBUTES (decl)
6688 = tree_cons (get_identifier ("alias"), args, DECL_ATTRIBUTES (decl));
6690 else
6692 warning (OPT_Wattributes, "%qE attribute ignored", name);
6693 *no_add_attrs = true;
6696 return NULL_TREE;
6699 /* Handle an "alias" or "ifunc" attribute; arguments as in
6700 struct attribute_spec.handler. */
6702 static tree
6703 handle_ifunc_attribute (tree *node, tree name, tree args,
6704 int ARG_UNUSED (flags), bool *no_add_attrs)
6706 return handle_alias_ifunc_attribute (false, node, name, args, no_add_attrs);
6709 /* Handle an "alias" or "ifunc" attribute; arguments as in
6710 struct attribute_spec.handler. */
6712 static tree
6713 handle_alias_attribute (tree *node, tree name, tree args,
6714 int ARG_UNUSED (flags), bool *no_add_attrs)
6716 return handle_alias_ifunc_attribute (true, node, name, args, no_add_attrs);
6719 /* Handle a "weakref" attribute; arguments as in struct
6720 attribute_spec.handler. */
6722 static tree
6723 handle_weakref_attribute (tree *node, tree ARG_UNUSED (name), tree args,
6724 int flags, bool *no_add_attrs)
6726 tree attr = NULL_TREE;
6728 /* We must ignore the attribute when it is associated with
6729 local-scoped decls, since attribute alias is ignored and many
6730 such symbols do not even have a DECL_WEAK field. */
6731 if (decl_function_context (*node)
6732 || current_function_decl
6733 || (TREE_CODE (*node) != VAR_DECL && TREE_CODE (*node) != FUNCTION_DECL))
6735 warning (OPT_Wattributes, "%qE attribute ignored", name);
6736 *no_add_attrs = true;
6737 return NULL_TREE;
6740 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node)))
6742 error ("indirect function %q+D cannot be declared weakref", *node);
6743 *no_add_attrs = true;
6744 return NULL_TREE;
6747 /* The idea here is that `weakref("name")' mutates into `weakref,
6748 alias("name")', and weakref without arguments, in turn,
6749 implicitly adds weak. */
6751 if (args)
6753 attr = tree_cons (get_identifier ("alias"), args, attr);
6754 attr = tree_cons (get_identifier ("weakref"), NULL_TREE, attr);
6756 *no_add_attrs = true;
6758 decl_attributes (node, attr, flags);
6760 else
6762 if (lookup_attribute ("alias", DECL_ATTRIBUTES (*node)))
6763 error_at (DECL_SOURCE_LOCATION (*node),
6764 "weakref attribute must appear before alias attribute");
6766 /* Can't call declare_weak because it wants this to be TREE_PUBLIC,
6767 and that isn't supported; and because it wants to add it to
6768 the list of weak decls, which isn't helpful. */
6769 DECL_WEAK (*node) = 1;
6772 return NULL_TREE;
6775 /* Handle an "visibility" attribute; arguments as in
6776 struct attribute_spec.handler. */
6778 static tree
6779 handle_visibility_attribute (tree *node, tree name, tree args,
6780 int ARG_UNUSED (flags),
6781 bool *ARG_UNUSED (no_add_attrs))
6783 tree decl = *node;
6784 tree id = TREE_VALUE (args);
6785 enum symbol_visibility vis;
6787 if (TYPE_P (*node))
6789 if (TREE_CODE (*node) == ENUMERAL_TYPE)
6790 /* OK */;
6791 else if (TREE_CODE (*node) != RECORD_TYPE && TREE_CODE (*node) != UNION_TYPE)
6793 warning (OPT_Wattributes, "%qE attribute ignored on non-class types",
6794 name);
6795 return NULL_TREE;
6797 else if (TYPE_FIELDS (*node))
6799 error ("%qE attribute ignored because %qT is already defined",
6800 name, *node);
6801 return NULL_TREE;
6804 else if (decl_function_context (decl) != 0 || !TREE_PUBLIC (decl))
6806 warning (OPT_Wattributes, "%qE attribute ignored", name);
6807 return NULL_TREE;
6810 if (TREE_CODE (id) != STRING_CST)
6812 error ("visibility argument not a string");
6813 return NULL_TREE;
6816 /* If this is a type, set the visibility on the type decl. */
6817 if (TYPE_P (decl))
6819 decl = TYPE_NAME (decl);
6820 if (!decl)
6821 return NULL_TREE;
6822 if (TREE_CODE (decl) == IDENTIFIER_NODE)
6824 warning (OPT_Wattributes, "%qE attribute ignored on types",
6825 name);
6826 return NULL_TREE;
6830 if (strcmp (TREE_STRING_POINTER (id), "default") == 0)
6831 vis = VISIBILITY_DEFAULT;
6832 else if (strcmp (TREE_STRING_POINTER (id), "internal") == 0)
6833 vis = VISIBILITY_INTERNAL;
6834 else if (strcmp (TREE_STRING_POINTER (id), "hidden") == 0)
6835 vis = VISIBILITY_HIDDEN;
6836 else if (strcmp (TREE_STRING_POINTER (id), "protected") == 0)
6837 vis = VISIBILITY_PROTECTED;
6838 else
6840 error ("visibility argument must be one of \"default\", \"hidden\", \"protected\" or \"internal\"");
6841 vis = VISIBILITY_DEFAULT;
6844 if (DECL_VISIBILITY_SPECIFIED (decl)
6845 && vis != DECL_VISIBILITY (decl))
6847 tree attributes = (TYPE_P (*node)
6848 ? TYPE_ATTRIBUTES (*node)
6849 : DECL_ATTRIBUTES (decl));
6850 if (lookup_attribute ("visibility", attributes))
6851 error ("%qD redeclared with different visibility", decl);
6852 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6853 && lookup_attribute ("dllimport", attributes))
6854 error ("%qD was declared %qs which implies default visibility",
6855 decl, "dllimport");
6856 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6857 && lookup_attribute ("dllexport", attributes))
6858 error ("%qD was declared %qs which implies default visibility",
6859 decl, "dllexport");
6862 DECL_VISIBILITY (decl) = vis;
6863 DECL_VISIBILITY_SPECIFIED (decl) = 1;
6865 /* Go ahead and attach the attribute to the node as well. This is needed
6866 so we can determine whether we have VISIBILITY_DEFAULT because the
6867 visibility was not specified, or because it was explicitly overridden
6868 from the containing scope. */
6870 return NULL_TREE;
6873 /* Determine the ELF symbol visibility for DECL, which is either a
6874 variable or a function. It is an error to use this function if a
6875 definition of DECL is not available in this translation unit.
6876 Returns true if the final visibility has been determined by this
6877 function; false if the caller is free to make additional
6878 modifications. */
6880 bool
6881 c_determine_visibility (tree decl)
6883 gcc_assert (TREE_CODE (decl) == VAR_DECL
6884 || TREE_CODE (decl) == FUNCTION_DECL);
6886 /* If the user explicitly specified the visibility with an
6887 attribute, honor that. DECL_VISIBILITY will have been set during
6888 the processing of the attribute. We check for an explicit
6889 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
6890 to distinguish the use of an attribute from the use of a "#pragma
6891 GCC visibility push(...)"; in the latter case we still want other
6892 considerations to be able to overrule the #pragma. */
6893 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl))
6894 || (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6895 && (lookup_attribute ("dllimport", DECL_ATTRIBUTES (decl))
6896 || lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))))
6897 return true;
6899 /* Set default visibility to whatever the user supplied with
6900 visibility_specified depending on #pragma GCC visibility. */
6901 if (!DECL_VISIBILITY_SPECIFIED (decl))
6903 if (visibility_options.inpragma
6904 || DECL_VISIBILITY (decl) != default_visibility)
6906 DECL_VISIBILITY (decl) = default_visibility;
6907 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
6908 /* If visibility changed and DECL already has DECL_RTL, ensure
6909 symbol flags are updated. */
6910 if (((TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
6911 || TREE_CODE (decl) == FUNCTION_DECL)
6912 && DECL_RTL_SET_P (decl))
6913 make_decl_rtl (decl);
6916 return false;
6919 /* Handle an "tls_model" attribute; arguments as in
6920 struct attribute_spec.handler. */
6922 static tree
6923 handle_tls_model_attribute (tree *node, tree name, tree args,
6924 int ARG_UNUSED (flags), bool *no_add_attrs)
6926 tree id;
6927 tree decl = *node;
6928 enum tls_model kind;
6930 *no_add_attrs = true;
6932 if (TREE_CODE (decl) != VAR_DECL || !DECL_THREAD_LOCAL_P (decl))
6934 warning (OPT_Wattributes, "%qE attribute ignored", name);
6935 return NULL_TREE;
6938 kind = DECL_TLS_MODEL (decl);
6939 id = TREE_VALUE (args);
6940 if (TREE_CODE (id) != STRING_CST)
6942 error ("tls_model argument not a string");
6943 return NULL_TREE;
6946 if (!strcmp (TREE_STRING_POINTER (id), "local-exec"))
6947 kind = TLS_MODEL_LOCAL_EXEC;
6948 else if (!strcmp (TREE_STRING_POINTER (id), "initial-exec"))
6949 kind = TLS_MODEL_INITIAL_EXEC;
6950 else if (!strcmp (TREE_STRING_POINTER (id), "local-dynamic"))
6951 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
6952 else if (!strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
6953 kind = TLS_MODEL_GLOBAL_DYNAMIC;
6954 else
6955 error ("tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
6957 DECL_TLS_MODEL (decl) = kind;
6958 return NULL_TREE;
6961 /* Handle a "no_instrument_function" attribute; arguments as in
6962 struct attribute_spec.handler. */
6964 static tree
6965 handle_no_instrument_function_attribute (tree *node, tree name,
6966 tree ARG_UNUSED (args),
6967 int ARG_UNUSED (flags),
6968 bool *no_add_attrs)
6970 tree decl = *node;
6972 if (TREE_CODE (decl) != FUNCTION_DECL)
6974 error_at (DECL_SOURCE_LOCATION (decl),
6975 "%qE attribute applies only to functions", name);
6976 *no_add_attrs = true;
6978 else if (DECL_INITIAL (decl))
6980 error_at (DECL_SOURCE_LOCATION (decl),
6981 "can%'t set %qE attribute after definition", name);
6982 *no_add_attrs = true;
6984 else
6985 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
6987 return NULL_TREE;
6990 /* Handle a "malloc" attribute; arguments as in
6991 struct attribute_spec.handler. */
6993 static tree
6994 handle_malloc_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6995 int ARG_UNUSED (flags), bool *no_add_attrs)
6997 if (TREE_CODE (*node) == FUNCTION_DECL
6998 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (*node))))
6999 DECL_IS_MALLOC (*node) = 1;
7000 else
7002 warning (OPT_Wattributes, "%qE attribute ignored", name);
7003 *no_add_attrs = true;
7006 return NULL_TREE;
7009 /* Handle a "alloc_size" attribute; arguments as in
7010 struct attribute_spec.handler. */
7012 static tree
7013 handle_alloc_size_attribute (tree *node, tree ARG_UNUSED (name), tree args,
7014 int ARG_UNUSED (flags), bool *no_add_attrs)
7016 unsigned arg_count = type_num_arguments (*node);
7017 for (; args; args = TREE_CHAIN (args))
7019 tree position = TREE_VALUE (args);
7021 if (TREE_CODE (position) != INTEGER_CST
7022 || TREE_INT_CST_HIGH (position)
7023 || TREE_INT_CST_LOW (position) < 1
7024 || TREE_INT_CST_LOW (position) > arg_count )
7026 warning (OPT_Wattributes,
7027 "alloc_size parameter outside range");
7028 *no_add_attrs = true;
7029 return NULL_TREE;
7032 return NULL_TREE;
7035 /* Handle a "fn spec" attribute; arguments as in
7036 struct attribute_spec.handler. */
7038 static tree
7039 handle_fnspec_attribute (tree *node ATTRIBUTE_UNUSED, tree ARG_UNUSED (name),
7040 tree args, int ARG_UNUSED (flags),
7041 bool *no_add_attrs ATTRIBUTE_UNUSED)
7043 gcc_assert (args
7044 && TREE_CODE (TREE_VALUE (args)) == STRING_CST
7045 && !TREE_CHAIN (args));
7046 return NULL_TREE;
7049 /* Handle a "returns_twice" attribute; arguments as in
7050 struct attribute_spec.handler. */
7052 static tree
7053 handle_returns_twice_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7054 int ARG_UNUSED (flags), bool *no_add_attrs)
7056 if (TREE_CODE (*node) == FUNCTION_DECL)
7057 DECL_IS_RETURNS_TWICE (*node) = 1;
7058 else
7060 warning (OPT_Wattributes, "%qE attribute ignored", name);
7061 *no_add_attrs = true;
7064 return NULL_TREE;
7067 /* Handle a "no_limit_stack" attribute; arguments as in
7068 struct attribute_spec.handler. */
7070 static tree
7071 handle_no_limit_stack_attribute (tree *node, tree name,
7072 tree ARG_UNUSED (args),
7073 int ARG_UNUSED (flags),
7074 bool *no_add_attrs)
7076 tree decl = *node;
7078 if (TREE_CODE (decl) != FUNCTION_DECL)
7080 error_at (DECL_SOURCE_LOCATION (decl),
7081 "%qE attribute applies only to functions", name);
7082 *no_add_attrs = true;
7084 else if (DECL_INITIAL (decl))
7086 error_at (DECL_SOURCE_LOCATION (decl),
7087 "can%'t set %qE attribute after definition", name);
7088 *no_add_attrs = true;
7090 else
7091 DECL_NO_LIMIT_STACK (decl) = 1;
7093 return NULL_TREE;
7096 /* Handle a "pure" attribute; arguments as in
7097 struct attribute_spec.handler. */
7099 static tree
7100 handle_pure_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7101 int ARG_UNUSED (flags), bool *no_add_attrs)
7103 if (TREE_CODE (*node) == FUNCTION_DECL)
7104 DECL_PURE_P (*node) = 1;
7105 /* ??? TODO: Support types. */
7106 else
7108 warning (OPT_Wattributes, "%qE attribute ignored", name);
7109 *no_add_attrs = true;
7112 return NULL_TREE;
7115 /* Handle a "no vops" attribute; arguments as in
7116 struct attribute_spec.handler. */
7118 static tree
7119 handle_novops_attribute (tree *node, tree ARG_UNUSED (name),
7120 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
7121 bool *ARG_UNUSED (no_add_attrs))
7123 gcc_assert (TREE_CODE (*node) == FUNCTION_DECL);
7124 DECL_IS_NOVOPS (*node) = 1;
7125 return NULL_TREE;
7128 /* Handle a "deprecated" attribute; arguments as in
7129 struct attribute_spec.handler. */
7131 static tree
7132 handle_deprecated_attribute (tree *node, tree name,
7133 tree args, int flags,
7134 bool *no_add_attrs)
7136 tree type = NULL_TREE;
7137 int warn = 0;
7138 tree what = NULL_TREE;
7140 if (!args)
7141 *no_add_attrs = true;
7142 else if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
7144 error ("deprecated message is not a string");
7145 *no_add_attrs = true;
7148 if (DECL_P (*node))
7150 tree decl = *node;
7151 type = TREE_TYPE (decl);
7153 if (TREE_CODE (decl) == TYPE_DECL
7154 || TREE_CODE (decl) == PARM_DECL
7155 || TREE_CODE (decl) == VAR_DECL
7156 || TREE_CODE (decl) == FUNCTION_DECL
7157 || TREE_CODE (decl) == FIELD_DECL)
7158 TREE_DEPRECATED (decl) = 1;
7159 else
7160 warn = 1;
7162 else if (TYPE_P (*node))
7164 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
7165 *node = build_variant_type_copy (*node);
7166 TREE_DEPRECATED (*node) = 1;
7167 type = *node;
7169 else
7170 warn = 1;
7172 if (warn)
7174 *no_add_attrs = true;
7175 if (type && TYPE_NAME (type))
7177 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
7178 what = TYPE_NAME (*node);
7179 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
7180 && DECL_NAME (TYPE_NAME (type)))
7181 what = DECL_NAME (TYPE_NAME (type));
7183 if (what)
7184 warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what);
7185 else
7186 warning (OPT_Wattributes, "%qE attribute ignored", name);
7189 return NULL_TREE;
7192 /* Handle a "vector_size" attribute; arguments as in
7193 struct attribute_spec.handler. */
7195 static tree
7196 handle_vector_size_attribute (tree *node, tree name, tree args,
7197 int ARG_UNUSED (flags),
7198 bool *no_add_attrs)
7200 unsigned HOST_WIDE_INT vecsize, nunits;
7201 enum machine_mode orig_mode;
7202 tree type = *node, new_type, size;
7204 *no_add_attrs = true;
7206 size = TREE_VALUE (args);
7208 if (!host_integerp (size, 1))
7210 warning (OPT_Wattributes, "%qE attribute ignored", name);
7211 return NULL_TREE;
7214 /* Get the vector size (in bytes). */
7215 vecsize = tree_low_cst (size, 1);
7217 /* We need to provide for vector pointers, vector arrays, and
7218 functions returning vectors. For example:
7220 __attribute__((vector_size(16))) short *foo;
7222 In this case, the mode is SI, but the type being modified is
7223 HI, so we need to look further. */
7225 while (POINTER_TYPE_P (type)
7226 || TREE_CODE (type) == FUNCTION_TYPE
7227 || TREE_CODE (type) == METHOD_TYPE
7228 || TREE_CODE (type) == ARRAY_TYPE
7229 || TREE_CODE (type) == OFFSET_TYPE)
7230 type = TREE_TYPE (type);
7232 /* Get the mode of the type being modified. */
7233 orig_mode = TYPE_MODE (type);
7235 if ((!INTEGRAL_TYPE_P (type)
7236 && !SCALAR_FLOAT_TYPE_P (type)
7237 && !FIXED_POINT_TYPE_P (type))
7238 || (!SCALAR_FLOAT_MODE_P (orig_mode)
7239 && GET_MODE_CLASS (orig_mode) != MODE_INT
7240 && !ALL_SCALAR_FIXED_POINT_MODE_P (orig_mode))
7241 || !host_integerp (TYPE_SIZE_UNIT (type), 1)
7242 || TREE_CODE (type) == BOOLEAN_TYPE)
7244 error ("invalid vector type for attribute %qE", name);
7245 return NULL_TREE;
7248 if (vecsize % tree_low_cst (TYPE_SIZE_UNIT (type), 1))
7250 error ("vector size not an integral multiple of component size");
7251 return NULL;
7254 if (vecsize == 0)
7256 error ("zero vector size");
7257 return NULL;
7260 /* Calculate how many units fit in the vector. */
7261 nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
7262 if (nunits & (nunits - 1))
7264 error ("number of components of the vector not a power of two");
7265 return NULL_TREE;
7268 new_type = build_vector_type (type, nunits);
7270 /* Build back pointers if needed. */
7271 *node = lang_hooks.types.reconstruct_complex_type (*node, new_type);
7273 return NULL_TREE;
7276 /* Handle the "nonnull" attribute. */
7277 static tree
7278 handle_nonnull_attribute (tree *node, tree ARG_UNUSED (name),
7279 tree args, int ARG_UNUSED (flags),
7280 bool *no_add_attrs)
7282 tree type = *node;
7283 unsigned HOST_WIDE_INT attr_arg_num;
7285 /* If no arguments are specified, all pointer arguments should be
7286 non-null. Verify a full prototype is given so that the arguments
7287 will have the correct types when we actually check them later. */
7288 if (!args)
7290 if (!TYPE_ARG_TYPES (type))
7292 error ("nonnull attribute without arguments on a non-prototype");
7293 *no_add_attrs = true;
7295 return NULL_TREE;
7298 /* Argument list specified. Verify that each argument number references
7299 a pointer argument. */
7300 for (attr_arg_num = 1; args; args = TREE_CHAIN (args))
7302 tree argument;
7303 unsigned HOST_WIDE_INT arg_num = 0, ck_num;
7305 if (!get_nonnull_operand (TREE_VALUE (args), &arg_num))
7307 error ("nonnull argument has invalid operand number (argument %lu)",
7308 (unsigned long) attr_arg_num);
7309 *no_add_attrs = true;
7310 return NULL_TREE;
7313 argument = TYPE_ARG_TYPES (type);
7314 if (argument)
7316 for (ck_num = 1; ; ck_num++)
7318 if (!argument || ck_num == arg_num)
7319 break;
7320 argument = TREE_CHAIN (argument);
7323 if (!argument
7324 || TREE_CODE (TREE_VALUE (argument)) == VOID_TYPE)
7326 error ("nonnull argument with out-of-range operand number (argument %lu, operand %lu)",
7327 (unsigned long) attr_arg_num, (unsigned long) arg_num);
7328 *no_add_attrs = true;
7329 return NULL_TREE;
7332 if (TREE_CODE (TREE_VALUE (argument)) != POINTER_TYPE)
7334 error ("nonnull argument references non-pointer operand (argument %lu, operand %lu)",
7335 (unsigned long) attr_arg_num, (unsigned long) arg_num);
7336 *no_add_attrs = true;
7337 return NULL_TREE;
7342 return NULL_TREE;
7345 /* Check the argument list of a function call for null in argument slots
7346 that are marked as requiring a non-null pointer argument. The NARGS
7347 arguments are passed in the array ARGARRAY.
7350 static void
7351 check_function_nonnull (tree attrs, int nargs, tree *argarray)
7353 tree a, args;
7354 int i;
7356 for (a = attrs; a; a = TREE_CHAIN (a))
7358 if (is_attribute_p ("nonnull", TREE_PURPOSE (a)))
7360 args = TREE_VALUE (a);
7362 /* Walk the argument list. If we encounter an argument number we
7363 should check for non-null, do it. If the attribute has no args,
7364 then every pointer argument is checked (in which case the check
7365 for pointer type is done in check_nonnull_arg). */
7366 for (i = 0; i < nargs; i++)
7368 if (!args || nonnull_check_p (args, i + 1))
7369 check_function_arguments_recurse (check_nonnull_arg, NULL,
7370 argarray[i],
7371 i + 1);
7377 /* Check that the Nth argument of a function call (counting backwards
7378 from the end) is a (pointer)0. The NARGS arguments are passed in the
7379 array ARGARRAY. */
7381 static void
7382 check_function_sentinel (tree attrs, int nargs, tree *argarray, tree typelist)
7384 tree attr = lookup_attribute ("sentinel", attrs);
7386 if (attr)
7388 int len = 0;
7389 int pos = 0;
7390 tree sentinel;
7392 /* Skip over the named arguments. */
7393 while (typelist && len < nargs)
7395 typelist = TREE_CHAIN (typelist);
7396 len++;
7399 if (TREE_VALUE (attr))
7401 tree p = TREE_VALUE (TREE_VALUE (attr));
7402 pos = TREE_INT_CST_LOW (p);
7405 /* The sentinel must be one of the varargs, i.e.
7406 in position >= the number of fixed arguments. */
7407 if ((nargs - 1 - pos) < len)
7409 warning (OPT_Wformat,
7410 "not enough variable arguments to fit a sentinel");
7411 return;
7414 /* Validate the sentinel. */
7415 sentinel = argarray[nargs - 1 - pos];
7416 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel))
7417 || !integer_zerop (sentinel))
7418 /* Although __null (in C++) is only an integer we allow it
7419 nevertheless, as we are guaranteed that it's exactly
7420 as wide as a pointer, and we don't want to force
7421 users to cast the NULL they have written there.
7422 We warn with -Wstrict-null-sentinel, though. */
7423 && (warn_strict_null_sentinel || null_node != sentinel))
7424 warning (OPT_Wformat, "missing sentinel in function call");
7428 /* Helper for check_function_nonnull; given a list of operands which
7429 must be non-null in ARGS, determine if operand PARAM_NUM should be
7430 checked. */
7432 static bool
7433 nonnull_check_p (tree args, unsigned HOST_WIDE_INT param_num)
7435 unsigned HOST_WIDE_INT arg_num = 0;
7437 for (; args; args = TREE_CHAIN (args))
7439 bool found = get_nonnull_operand (TREE_VALUE (args), &arg_num);
7441 gcc_assert (found);
7443 if (arg_num == param_num)
7444 return true;
7446 return false;
7449 /* Check that the function argument PARAM (which is operand number
7450 PARAM_NUM) is non-null. This is called by check_function_nonnull
7451 via check_function_arguments_recurse. */
7453 static void
7454 check_nonnull_arg (void * ARG_UNUSED (ctx), tree param,
7455 unsigned HOST_WIDE_INT param_num)
7457 /* Just skip checking the argument if it's not a pointer. This can
7458 happen if the "nonnull" attribute was given without an operand
7459 list (which means to check every pointer argument). */
7461 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
7462 return;
7464 if (integer_zerop (param))
7465 warning (OPT_Wnonnull, "null argument where non-null required "
7466 "(argument %lu)", (unsigned long) param_num);
7469 /* Helper for nonnull attribute handling; fetch the operand number
7470 from the attribute argument list. */
7472 static bool
7473 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
7475 /* Verify the arg number is a constant. */
7476 if (TREE_CODE (arg_num_expr) != INTEGER_CST
7477 || TREE_INT_CST_HIGH (arg_num_expr) != 0)
7478 return false;
7480 *valp = TREE_INT_CST_LOW (arg_num_expr);
7481 return true;
7484 /* Handle a "nothrow" attribute; arguments as in
7485 struct attribute_spec.handler. */
7487 static tree
7488 handle_nothrow_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7489 int ARG_UNUSED (flags), bool *no_add_attrs)
7491 if (TREE_CODE (*node) == FUNCTION_DECL)
7492 TREE_NOTHROW (*node) = 1;
7493 /* ??? TODO: Support types. */
7494 else
7496 warning (OPT_Wattributes, "%qE attribute ignored", name);
7497 *no_add_attrs = true;
7500 return NULL_TREE;
7503 /* Handle a "cleanup" attribute; arguments as in
7504 struct attribute_spec.handler. */
7506 static tree
7507 handle_cleanup_attribute (tree *node, tree name, tree args,
7508 int ARG_UNUSED (flags), bool *no_add_attrs)
7510 tree decl = *node;
7511 tree cleanup_id, cleanup_decl;
7513 /* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
7514 for global destructors in C++. This requires infrastructure that
7515 we don't have generically at the moment. It's also not a feature
7516 we'd be missing too much, since we do have attribute constructor. */
7517 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl))
7519 warning (OPT_Wattributes, "%qE attribute ignored", name);
7520 *no_add_attrs = true;
7521 return NULL_TREE;
7524 /* Verify that the argument is a function in scope. */
7525 /* ??? We could support pointers to functions here as well, if
7526 that was considered desirable. */
7527 cleanup_id = TREE_VALUE (args);
7528 if (TREE_CODE (cleanup_id) != IDENTIFIER_NODE)
7530 error ("cleanup argument not an identifier");
7531 *no_add_attrs = true;
7532 return NULL_TREE;
7534 cleanup_decl = lookup_name (cleanup_id);
7535 if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL)
7537 error ("cleanup argument not a function");
7538 *no_add_attrs = true;
7539 return NULL_TREE;
7542 /* That the function has proper type is checked with the
7543 eventual call to build_function_call. */
7545 return NULL_TREE;
7548 /* Handle a "warn_unused_result" attribute. No special handling. */
7550 static tree
7551 handle_warn_unused_result_attribute (tree *node, tree name,
7552 tree ARG_UNUSED (args),
7553 int ARG_UNUSED (flags), bool *no_add_attrs)
7555 /* Ignore the attribute for functions not returning any value. */
7556 if (VOID_TYPE_P (TREE_TYPE (*node)))
7558 warning (OPT_Wattributes, "%qE attribute ignored", name);
7559 *no_add_attrs = true;
7562 return NULL_TREE;
7565 /* Handle a "sentinel" attribute. */
7567 static tree
7568 handle_sentinel_attribute (tree *node, tree name, tree args,
7569 int ARG_UNUSED (flags), bool *no_add_attrs)
7571 tree params = TYPE_ARG_TYPES (*node);
7573 if (!params)
7575 warning (OPT_Wattributes,
7576 "%qE attribute requires prototypes with named arguments", name);
7577 *no_add_attrs = true;
7579 else
7581 while (TREE_CHAIN (params))
7582 params = TREE_CHAIN (params);
7584 if (VOID_TYPE_P (TREE_VALUE (params)))
7586 warning (OPT_Wattributes,
7587 "%qE attribute only applies to variadic functions", name);
7588 *no_add_attrs = true;
7592 if (args)
7594 tree position = TREE_VALUE (args);
7596 if (TREE_CODE (position) != INTEGER_CST)
7598 warning (OPT_Wattributes,
7599 "requested position is not an integer constant");
7600 *no_add_attrs = true;
7602 else
7604 if (tree_int_cst_lt (position, integer_zero_node))
7606 warning (OPT_Wattributes,
7607 "requested position is less than zero");
7608 *no_add_attrs = true;
7613 return NULL_TREE;
7616 /* Handle a "type_generic" attribute. */
7618 static tree
7619 handle_type_generic_attribute (tree *node, tree ARG_UNUSED (name),
7620 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
7621 bool * ARG_UNUSED (no_add_attrs))
7623 tree params;
7625 /* Ensure we have a function type. */
7626 gcc_assert (TREE_CODE (*node) == FUNCTION_TYPE);
7628 params = TYPE_ARG_TYPES (*node);
7629 while (params && ! VOID_TYPE_P (TREE_VALUE (params)))
7630 params = TREE_CHAIN (params);
7632 /* Ensure we have a variadic function. */
7633 gcc_assert (!params);
7635 return NULL_TREE;
7638 /* Handle a "target" attribute. */
7640 static tree
7641 handle_target_attribute (tree *node, tree name, tree args, int flags,
7642 bool *no_add_attrs)
7644 /* Ensure we have a function type. */
7645 if (TREE_CODE (*node) != FUNCTION_DECL)
7647 warning (OPT_Wattributes, "%qE attribute ignored", name);
7648 *no_add_attrs = true;
7650 else if (! targetm.target_option.valid_attribute_p (*node, name, args,
7651 flags))
7652 *no_add_attrs = true;
7654 return NULL_TREE;
7657 /* Arguments being collected for optimization. */
7658 typedef const char *const_char_p; /* For DEF_VEC_P. */
7659 DEF_VEC_P(const_char_p);
7660 DEF_VEC_ALLOC_P(const_char_p, gc);
7661 static GTY(()) VEC(const_char_p, gc) *optimize_args;
7664 /* Inner function to convert a TREE_LIST to argv string to parse the optimize
7665 options in ARGS. ATTR_P is true if this is for attribute(optimize), and
7666 false for #pragma GCC optimize. */
7668 bool
7669 parse_optimize_options (tree args, bool attr_p)
7671 bool ret = true;
7672 unsigned opt_argc;
7673 unsigned i;
7674 int saved_flag_strict_aliasing;
7675 const char **opt_argv;
7676 struct cl_decoded_option *decoded_options;
7677 unsigned int decoded_options_count;
7678 tree ap;
7680 /* Build up argv vector. Just in case the string is stored away, use garbage
7681 collected strings. */
7682 VEC_truncate (const_char_p, optimize_args, 0);
7683 VEC_safe_push (const_char_p, gc, optimize_args, NULL);
7685 for (ap = args; ap != NULL_TREE; ap = TREE_CHAIN (ap))
7687 tree value = TREE_VALUE (ap);
7689 if (TREE_CODE (value) == INTEGER_CST)
7691 char buffer[20];
7692 sprintf (buffer, "-O%ld", (long) TREE_INT_CST_LOW (value));
7693 VEC_safe_push (const_char_p, gc, optimize_args, ggc_strdup (buffer));
7696 else if (TREE_CODE (value) == STRING_CST)
7698 /* Split string into multiple substrings. */
7699 size_t len = TREE_STRING_LENGTH (value);
7700 char *p = ASTRDUP (TREE_STRING_POINTER (value));
7701 char *end = p + len;
7702 char *comma;
7703 char *next_p = p;
7705 while (next_p != NULL)
7707 size_t len2;
7708 char *q, *r;
7710 p = next_p;
7711 comma = strchr (p, ',');
7712 if (comma)
7714 len2 = comma - p;
7715 *comma = '\0';
7716 next_p = comma+1;
7718 else
7720 len2 = end - p;
7721 next_p = NULL;
7724 r = q = (char *) ggc_alloc_atomic (len2 + 3);
7726 /* If the user supplied -Oxxx or -fxxx, only allow -Oxxx or -fxxx
7727 options. */
7728 if (*p == '-' && p[1] != 'O' && p[1] != 'f')
7730 ret = false;
7731 if (attr_p)
7732 warning (OPT_Wattributes,
7733 "bad option %s to optimize attribute", p);
7734 else
7735 warning (OPT_Wpragmas,
7736 "bad option %s to pragma attribute", p);
7737 continue;
7740 if (*p != '-')
7742 *r++ = '-';
7744 /* Assume that Ox is -Ox, a numeric value is -Ox, a s by
7745 itself is -Os, and any other switch begins with a -f. */
7746 if ((*p >= '0' && *p <= '9')
7747 || (p[0] == 's' && p[1] == '\0'))
7748 *r++ = 'O';
7749 else if (*p != 'O')
7750 *r++ = 'f';
7753 memcpy (r, p, len2);
7754 r[len2] = '\0';
7755 VEC_safe_push (const_char_p, gc, optimize_args, q);
7761 opt_argc = VEC_length (const_char_p, optimize_args);
7762 opt_argv = (const char **) alloca (sizeof (char *) * (opt_argc + 1));
7764 for (i = 1; i < opt_argc; i++)
7765 opt_argv[i] = VEC_index (const_char_p, optimize_args, i);
7767 saved_flag_strict_aliasing = flag_strict_aliasing;
7769 /* Now parse the options. */
7770 decode_options (opt_argc, opt_argv, &decoded_options,
7771 &decoded_options_count);
7773 targetm.override_options_after_change();
7775 /* Don't allow changing -fstrict-aliasing. */
7776 flag_strict_aliasing = saved_flag_strict_aliasing;
7778 VEC_truncate (const_char_p, optimize_args, 0);
7779 return ret;
7782 /* For handling "optimize" attribute. arguments as in
7783 struct attribute_spec.handler. */
7785 static tree
7786 handle_optimize_attribute (tree *node, tree name, tree args,
7787 int ARG_UNUSED (flags), bool *no_add_attrs)
7789 /* Ensure we have a function type. */
7790 if (TREE_CODE (*node) != FUNCTION_DECL)
7792 warning (OPT_Wattributes, "%qE attribute ignored", name);
7793 *no_add_attrs = true;
7795 else
7797 struct cl_optimization cur_opts;
7798 tree old_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node);
7800 /* Save current options. */
7801 cl_optimization_save (&cur_opts);
7803 /* If we previously had some optimization options, use them as the
7804 default. */
7805 if (old_opts)
7806 cl_optimization_restore (TREE_OPTIMIZATION (old_opts));
7808 /* Parse options, and update the vector. */
7809 parse_optimize_options (args, true);
7810 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node)
7811 = build_optimization_node ();
7813 /* Restore current options. */
7814 cl_optimization_restore (&cur_opts);
7817 return NULL_TREE;
7820 /* Check for valid arguments being passed to a function.
7821 ATTRS is a list of attributes. There are NARGS arguments in the array
7822 ARGARRAY. TYPELIST is the list of argument types for the function.
7824 void
7825 check_function_arguments (tree attrs, int nargs, tree *argarray, tree typelist)
7827 /* Check for null being passed in a pointer argument that must be
7828 non-null. We also need to do this if format checking is enabled. */
7830 if (warn_nonnull)
7831 check_function_nonnull (attrs, nargs, argarray);
7833 /* Check for errors in format strings. */
7835 if (warn_format || warn_missing_format_attribute)
7836 check_function_format (attrs, nargs, argarray);
7838 if (warn_format)
7839 check_function_sentinel (attrs, nargs, argarray, typelist);
7842 /* Generic argument checking recursion routine. PARAM is the argument to
7843 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
7844 once the argument is resolved. CTX is context for the callback. */
7845 void
7846 check_function_arguments_recurse (void (*callback)
7847 (void *, tree, unsigned HOST_WIDE_INT),
7848 void *ctx, tree param,
7849 unsigned HOST_WIDE_INT param_num)
7851 if (CONVERT_EXPR_P (param)
7852 && (TYPE_PRECISION (TREE_TYPE (param))
7853 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param, 0)))))
7855 /* Strip coercion. */
7856 check_function_arguments_recurse (callback, ctx,
7857 TREE_OPERAND (param, 0), param_num);
7858 return;
7861 if (TREE_CODE (param) == CALL_EXPR)
7863 tree type = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param)));
7864 tree attrs;
7865 bool found_format_arg = false;
7867 /* See if this is a call to a known internationalization function
7868 that modifies a format arg. Such a function may have multiple
7869 format_arg attributes (for example, ngettext). */
7871 for (attrs = TYPE_ATTRIBUTES (type);
7872 attrs;
7873 attrs = TREE_CHAIN (attrs))
7874 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
7876 tree inner_arg;
7877 tree format_num_expr;
7878 int format_num;
7879 int i;
7880 call_expr_arg_iterator iter;
7882 /* Extract the argument number, which was previously checked
7883 to be valid. */
7884 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
7886 gcc_assert (TREE_CODE (format_num_expr) == INTEGER_CST
7887 && !TREE_INT_CST_HIGH (format_num_expr));
7889 format_num = TREE_INT_CST_LOW (format_num_expr);
7891 for (inner_arg = first_call_expr_arg (param, &iter), i = 1;
7892 inner_arg != 0;
7893 inner_arg = next_call_expr_arg (&iter), i++)
7894 if (i == format_num)
7896 check_function_arguments_recurse (callback, ctx,
7897 inner_arg, param_num);
7898 found_format_arg = true;
7899 break;
7903 /* If we found a format_arg attribute and did a recursive check,
7904 we are done with checking this argument. Otherwise, we continue
7905 and this will be considered a non-literal. */
7906 if (found_format_arg)
7907 return;
7910 if (TREE_CODE (param) == COND_EXPR)
7912 /* Check both halves of the conditional expression. */
7913 check_function_arguments_recurse (callback, ctx,
7914 TREE_OPERAND (param, 1), param_num);
7915 check_function_arguments_recurse (callback, ctx,
7916 TREE_OPERAND (param, 2), param_num);
7917 return;
7920 (*callback) (ctx, param, param_num);
7923 /* Checks for a builtin function FNDECL that the number of arguments
7924 NARGS against the required number REQUIRED and issues an error if
7925 there is a mismatch. Returns true if the number of arguments is
7926 correct, otherwise false. */
7928 static bool
7929 builtin_function_validate_nargs (tree fndecl, int nargs, int required)
7931 if (nargs < required)
7933 error_at (input_location,
7934 "not enough arguments to function %qE", fndecl);
7935 return false;
7937 else if (nargs > required)
7939 error_at (input_location,
7940 "too many arguments to function %qE", fndecl);
7941 return false;
7943 return true;
7946 /* Verifies the NARGS arguments ARGS to the builtin function FNDECL.
7947 Returns false if there was an error, otherwise true. */
7949 bool
7950 check_builtin_function_arguments (tree fndecl, int nargs, tree *args)
7952 if (!DECL_BUILT_IN (fndecl)
7953 || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
7954 return true;
7956 switch (DECL_FUNCTION_CODE (fndecl))
7958 case BUILT_IN_CONSTANT_P:
7959 return builtin_function_validate_nargs (fndecl, nargs, 1);
7961 case BUILT_IN_ISFINITE:
7962 case BUILT_IN_ISINF:
7963 case BUILT_IN_ISINF_SIGN:
7964 case BUILT_IN_ISNAN:
7965 case BUILT_IN_ISNORMAL:
7966 if (builtin_function_validate_nargs (fndecl, nargs, 1))
7968 if (TREE_CODE (TREE_TYPE (args[0])) != REAL_TYPE)
7970 error ("non-floating-point argument in call to "
7971 "function %qE", fndecl);
7972 return false;
7974 return true;
7976 return false;
7978 case BUILT_IN_ISGREATER:
7979 case BUILT_IN_ISGREATEREQUAL:
7980 case BUILT_IN_ISLESS:
7981 case BUILT_IN_ISLESSEQUAL:
7982 case BUILT_IN_ISLESSGREATER:
7983 case BUILT_IN_ISUNORDERED:
7984 if (builtin_function_validate_nargs (fndecl, nargs, 2))
7986 enum tree_code code0, code1;
7987 code0 = TREE_CODE (TREE_TYPE (args[0]));
7988 code1 = TREE_CODE (TREE_TYPE (args[1]));
7989 if (!((code0 == REAL_TYPE && code1 == REAL_TYPE)
7990 || (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
7991 || (code0 == INTEGER_TYPE && code1 == REAL_TYPE)))
7993 error ("non-floating-point arguments in call to "
7994 "function %qE", fndecl);
7995 return false;
7997 return true;
7999 return false;
8001 case BUILT_IN_FPCLASSIFY:
8002 if (builtin_function_validate_nargs (fndecl, nargs, 6))
8004 unsigned i;
8006 for (i=0; i<5; i++)
8007 if (TREE_CODE (args[i]) != INTEGER_CST)
8009 error ("non-const integer argument %u in call to function %qE",
8010 i+1, fndecl);
8011 return false;
8014 if (TREE_CODE (TREE_TYPE (args[5])) != REAL_TYPE)
8016 error ("non-floating-point argument in call to function %qE",
8017 fndecl);
8018 return false;
8020 return true;
8022 return false;
8024 default:
8025 return true;
8029 /* Function to help qsort sort FIELD_DECLs by name order. */
8032 field_decl_cmp (const void *x_p, const void *y_p)
8034 const tree *const x = (const tree *const) x_p;
8035 const tree *const y = (const tree *const) y_p;
8037 if (DECL_NAME (*x) == DECL_NAME (*y))
8038 /* A nontype is "greater" than a type. */
8039 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
8040 if (DECL_NAME (*x) == NULL_TREE)
8041 return -1;
8042 if (DECL_NAME (*y) == NULL_TREE)
8043 return 1;
8044 if (DECL_NAME (*x) < DECL_NAME (*y))
8045 return -1;
8046 return 1;
8049 static struct {
8050 gt_pointer_operator new_value;
8051 void *cookie;
8052 } resort_data;
8054 /* This routine compares two fields like field_decl_cmp but using the
8055 pointer operator in resort_data. */
8057 static int
8058 resort_field_decl_cmp (const void *x_p, const void *y_p)
8060 const tree *const x = (const tree *const) x_p;
8061 const tree *const y = (const tree *const) y_p;
8063 if (DECL_NAME (*x) == DECL_NAME (*y))
8064 /* A nontype is "greater" than a type. */
8065 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
8066 if (DECL_NAME (*x) == NULL_TREE)
8067 return -1;
8068 if (DECL_NAME (*y) == NULL_TREE)
8069 return 1;
8071 tree d1 = DECL_NAME (*x);
8072 tree d2 = DECL_NAME (*y);
8073 resort_data.new_value (&d1, resort_data.cookie);
8074 resort_data.new_value (&d2, resort_data.cookie);
8075 if (d1 < d2)
8076 return -1;
8078 return 1;
8081 /* Resort DECL_SORTED_FIELDS because pointers have been reordered. */
8083 void
8084 resort_sorted_fields (void *obj,
8085 void * ARG_UNUSED (orig_obj),
8086 gt_pointer_operator new_value,
8087 void *cookie)
8089 struct sorted_fields_type *sf = (struct sorted_fields_type *) obj;
8090 resort_data.new_value = new_value;
8091 resort_data.cookie = cookie;
8092 qsort (&sf->elts[0], sf->len, sizeof (tree),
8093 resort_field_decl_cmp);
8096 /* Subroutine of c_parse_error.
8097 Return the result of concatenating LHS and RHS. RHS is really
8098 a string literal, its first character is indicated by RHS_START and
8099 RHS_SIZE is its length (including the terminating NUL character).
8101 The caller is responsible for deleting the returned pointer. */
8103 static char *
8104 catenate_strings (const char *lhs, const char *rhs_start, int rhs_size)
8106 const int lhs_size = strlen (lhs);
8107 char *result = XNEWVEC (char, lhs_size + rhs_size);
8108 strncpy (result, lhs, lhs_size);
8109 strncpy (result + lhs_size, rhs_start, rhs_size);
8110 return result;
8113 /* Issue the error given by GMSGID, indicating that it occurred before
8114 TOKEN, which had the associated VALUE. */
8116 void
8117 c_parse_error (const char *gmsgid, enum cpp_ttype token_type,
8118 tree value, unsigned char token_flags)
8120 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
8122 char *message = NULL;
8124 if (token_type == CPP_EOF)
8125 message = catenate_messages (gmsgid, " at end of input");
8126 else if (token_type == CPP_CHAR
8127 || token_type == CPP_WCHAR
8128 || token_type == CPP_CHAR16
8129 || token_type == CPP_CHAR32)
8131 unsigned int val = TREE_INT_CST_LOW (value);
8132 const char *prefix;
8134 switch (token_type)
8136 default:
8137 prefix = "";
8138 break;
8139 case CPP_WCHAR:
8140 prefix = "L";
8141 break;
8142 case CPP_CHAR16:
8143 prefix = "u";
8144 break;
8145 case CPP_CHAR32:
8146 prefix = "U";
8147 break;
8150 if (val <= UCHAR_MAX && ISGRAPH (val))
8151 message = catenate_messages (gmsgid, " before %s'%c'");
8152 else
8153 message = catenate_messages (gmsgid, " before %s'\\x%x'");
8155 error (message, prefix, val);
8156 free (message);
8157 message = NULL;
8159 else if (token_type == CPP_STRING
8160 || token_type == CPP_WSTRING
8161 || token_type == CPP_STRING16
8162 || token_type == CPP_STRING32
8163 || token_type == CPP_UTF8STRING)
8164 message = catenate_messages (gmsgid, " before string constant");
8165 else if (token_type == CPP_NUMBER)
8166 message = catenate_messages (gmsgid, " before numeric constant");
8167 else if (token_type == CPP_NAME)
8169 message = catenate_messages (gmsgid, " before %qE");
8170 error (message, value);
8171 free (message);
8172 message = NULL;
8174 else if (token_type == CPP_PRAGMA)
8175 message = catenate_messages (gmsgid, " before %<#pragma%>");
8176 else if (token_type == CPP_PRAGMA_EOL)
8177 message = catenate_messages (gmsgid, " before end of line");
8178 else if (token_type < N_TTYPES)
8180 message = catenate_messages (gmsgid, " before %qs token");
8181 error (message, cpp_type2name (token_type, token_flags));
8182 free (message);
8183 message = NULL;
8185 else
8186 error (gmsgid);
8188 if (message)
8190 error (message);
8191 free (message);
8193 #undef catenate_messages
8196 /* Mapping for cpp message reasons to the options that enable them. */
8198 struct reason_option_codes_t
8200 const int reason; /* cpplib message reason. */
8201 const int option_code; /* gcc option that controls this message. */
8204 static const struct reason_option_codes_t option_codes[] = {
8205 {CPP_W_DEPRECATED, OPT_Wdeprecated},
8206 {CPP_W_COMMENTS, OPT_Wcomment},
8207 {CPP_W_TRIGRAPHS, OPT_Wtrigraphs},
8208 {CPP_W_MULTICHAR, OPT_Wmultichar},
8209 {CPP_W_TRADITIONAL, OPT_Wtraditional},
8210 {CPP_W_LONG_LONG, OPT_Wlong_long},
8211 {CPP_W_ENDIF_LABELS, OPT_Wendif_labels},
8212 {CPP_W_VARIADIC_MACROS, OPT_Wvariadic_macros},
8213 {CPP_W_BUILTIN_MACRO_REDEFINED, OPT_Wbuiltin_macro_redefined},
8214 {CPP_W_UNDEF, OPT_Wundef},
8215 {CPP_W_UNUSED_MACROS, OPT_Wunused_macros},
8216 {CPP_W_CXX_OPERATOR_NAMES, OPT_Wc___compat},
8217 {CPP_W_NORMALIZE, OPT_Wnormalized_},
8218 {CPP_W_INVALID_PCH, OPT_Winvalid_pch},
8219 {CPP_W_WARNING_DIRECTIVE, OPT_Wcpp},
8220 {CPP_W_NONE, 0}
8223 /* Return the gcc option code associated with the reason for a cpp
8224 message, or 0 if none. */
8226 static int
8227 c_option_controlling_cpp_error (int reason)
8229 const struct reason_option_codes_t *entry;
8231 for (entry = option_codes; entry->reason != CPP_W_NONE; entry++)
8233 if (entry->reason == reason)
8234 return entry->option_code;
8236 return 0;
8239 /* Callback from cpp_error for PFILE to print diagnostics from the
8240 preprocessor. The diagnostic is of type LEVEL, with REASON set
8241 to the reason code if LEVEL is represents a warning, at location
8242 LOCATION unless this is after lexing and the compiler's location
8243 should be used instead, with column number possibly overridden by
8244 COLUMN_OVERRIDE if not zero; MSG is the translated message and AP
8245 the arguments. Returns true if a diagnostic was emitted, false
8246 otherwise. */
8248 bool
8249 c_cpp_error (cpp_reader *pfile ATTRIBUTE_UNUSED, int level, int reason,
8250 location_t location, unsigned int column_override,
8251 const char *msg, va_list *ap)
8253 diagnostic_info diagnostic;
8254 diagnostic_t dlevel;
8255 bool save_warn_system_headers = global_dc->warn_system_headers;
8256 bool ret;
8258 switch (level)
8260 case CPP_DL_WARNING_SYSHDR:
8261 if (flag_no_output)
8262 return false;
8263 global_dc->warn_system_headers = 1;
8264 /* Fall through. */
8265 case CPP_DL_WARNING:
8266 if (flag_no_output)
8267 return false;
8268 dlevel = DK_WARNING;
8269 break;
8270 case CPP_DL_PEDWARN:
8271 if (flag_no_output && !flag_pedantic_errors)
8272 return false;
8273 dlevel = DK_PEDWARN;
8274 break;
8275 case CPP_DL_ERROR:
8276 dlevel = DK_ERROR;
8277 break;
8278 case CPP_DL_ICE:
8279 dlevel = DK_ICE;
8280 break;
8281 case CPP_DL_NOTE:
8282 dlevel = DK_NOTE;
8283 break;
8284 case CPP_DL_FATAL:
8285 dlevel = DK_FATAL;
8286 break;
8287 default:
8288 gcc_unreachable ();
8290 if (done_lexing)
8291 location = input_location;
8292 diagnostic_set_info_translated (&diagnostic, msg, ap,
8293 location, dlevel);
8294 if (column_override)
8295 diagnostic_override_column (&diagnostic, column_override);
8296 diagnostic_override_option_index (&diagnostic,
8297 c_option_controlling_cpp_error (reason));
8298 ret = report_diagnostic (&diagnostic);
8299 if (level == CPP_DL_WARNING_SYSHDR)
8300 global_dc->warn_system_headers = save_warn_system_headers;
8301 return ret;
8304 /* Convert a character from the host to the target execution character
8305 set. cpplib handles this, mostly. */
8307 HOST_WIDE_INT
8308 c_common_to_target_charset (HOST_WIDE_INT c)
8310 /* Character constants in GCC proper are sign-extended under -fsigned-char,
8311 zero-extended under -fno-signed-char. cpplib insists that characters
8312 and character constants are always unsigned. Hence we must convert
8313 back and forth. */
8314 cppchar_t uc = ((cppchar_t)c) & ((((cppchar_t)1) << CHAR_BIT)-1);
8316 uc = cpp_host_to_exec_charset (parse_in, uc);
8318 if (flag_signed_char)
8319 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE)
8320 >> (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE);
8321 else
8322 return uc;
8325 /* Build the result of __builtin_offsetof. EXPR is a nested sequence of
8326 component references, with STOP_REF, or alternatively an INDIRECT_REF of
8327 NULL, at the bottom; much like the traditional rendering of offsetof as a
8328 macro. Returns the folded and properly cast result. */
8330 static tree
8331 fold_offsetof_1 (tree expr, tree stop_ref)
8333 enum tree_code code = PLUS_EXPR;
8334 tree base, off, t;
8336 if (expr == stop_ref && TREE_CODE (expr) != ERROR_MARK)
8337 return size_zero_node;
8339 switch (TREE_CODE (expr))
8341 case ERROR_MARK:
8342 return expr;
8344 case VAR_DECL:
8345 error ("cannot apply %<offsetof%> to static data member %qD", expr);
8346 return error_mark_node;
8348 case CALL_EXPR:
8349 case TARGET_EXPR:
8350 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
8351 return error_mark_node;
8353 case NOP_EXPR:
8354 case INDIRECT_REF:
8355 if (!integer_zerop (TREE_OPERAND (expr, 0)))
8357 error ("cannot apply %<offsetof%> to a non constant address");
8358 return error_mark_node;
8360 return size_zero_node;
8362 case COMPONENT_REF:
8363 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
8364 if (base == error_mark_node)
8365 return base;
8367 t = TREE_OPERAND (expr, 1);
8368 if (DECL_C_BIT_FIELD (t))
8370 error ("attempt to take address of bit-field structure "
8371 "member %qD", t);
8372 return error_mark_node;
8374 off = size_binop_loc (input_location, PLUS_EXPR, DECL_FIELD_OFFSET (t),
8375 size_int (tree_low_cst (DECL_FIELD_BIT_OFFSET (t),
8377 / BITS_PER_UNIT));
8378 break;
8380 case ARRAY_REF:
8381 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
8382 if (base == error_mark_node)
8383 return base;
8385 t = TREE_OPERAND (expr, 1);
8386 if (TREE_CODE (t) == INTEGER_CST && tree_int_cst_sgn (t) < 0)
8388 code = MINUS_EXPR;
8389 t = fold_build1_loc (input_location, NEGATE_EXPR, TREE_TYPE (t), t);
8391 t = convert (sizetype, t);
8392 off = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (TREE_TYPE (expr)), t);
8394 /* Check if the offset goes beyond the upper bound of the array. */
8395 if (code == PLUS_EXPR && TREE_CODE (t) == INTEGER_CST)
8397 tree upbound = array_ref_up_bound (expr);
8398 if (upbound != NULL_TREE
8399 && TREE_CODE (upbound) == INTEGER_CST
8400 && !tree_int_cst_equal (upbound,
8401 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
8403 upbound = size_binop (PLUS_EXPR, upbound,
8404 build_int_cst (TREE_TYPE (upbound), 1));
8405 if (tree_int_cst_lt (upbound, t))
8407 tree v;
8409 for (v = TREE_OPERAND (expr, 0);
8410 TREE_CODE (v) == COMPONENT_REF;
8411 v = TREE_OPERAND (v, 0))
8412 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v, 0)))
8413 == RECORD_TYPE)
8415 tree fld_chain = DECL_CHAIN (TREE_OPERAND (v, 1));
8416 for (; fld_chain; fld_chain = DECL_CHAIN (fld_chain))
8417 if (TREE_CODE (fld_chain) == FIELD_DECL)
8418 break;
8420 if (fld_chain)
8421 break;
8423 /* Don't warn if the array might be considered a poor
8424 man's flexible array member with a very permissive
8425 definition thereof. */
8426 if (TREE_CODE (v) == ARRAY_REF
8427 || TREE_CODE (v) == COMPONENT_REF)
8428 warning (OPT_Warray_bounds,
8429 "index %E denotes an offset "
8430 "greater than size of %qT",
8431 t, TREE_TYPE (TREE_OPERAND (expr, 0)));
8435 break;
8437 case COMPOUND_EXPR:
8438 /* Handle static members of volatile structs. */
8439 t = TREE_OPERAND (expr, 1);
8440 gcc_assert (TREE_CODE (t) == VAR_DECL);
8441 return fold_offsetof_1 (t, stop_ref);
8443 default:
8444 gcc_unreachable ();
8447 return size_binop (code, base, off);
8450 tree
8451 fold_offsetof (tree expr, tree stop_ref)
8453 /* Convert back from the internal sizetype to size_t. */
8454 return convert (size_type_node, fold_offsetof_1 (expr, stop_ref));
8457 /* Warn for A ?: C expressions (with B omitted) where A is a boolean
8458 expression, because B will always be true. */
8460 void
8461 warn_for_omitted_condop (location_t location, tree cond)
8463 if (truth_value_p (TREE_CODE (cond)))
8464 warning_at (location, OPT_Wparentheses,
8465 "the omitted middle operand in ?: will always be %<true%>, "
8466 "suggest explicit middle operand");
8469 /* Print an error message for an invalid lvalue. USE says
8470 how the lvalue is being used and so selects the error message. */
8472 void
8473 lvalue_error (enum lvalue_use use)
8475 switch (use)
8477 case lv_assign:
8478 error ("lvalue required as left operand of assignment");
8479 break;
8480 case lv_increment:
8481 error ("lvalue required as increment operand");
8482 break;
8483 case lv_decrement:
8484 error ("lvalue required as decrement operand");
8485 break;
8486 case lv_addressof:
8487 error ("lvalue required as unary %<&%> operand");
8488 break;
8489 case lv_asm:
8490 error ("lvalue required in asm statement");
8491 break;
8492 default:
8493 gcc_unreachable ();
8497 /* *PTYPE is an incomplete array. Complete it with a domain based on
8498 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
8499 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8500 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
8503 complete_array_type (tree *ptype, tree initial_value, bool do_default)
8505 tree maxindex, type, main_type, elt, unqual_elt;
8506 int failure = 0, quals;
8507 hashval_t hashcode = 0;
8509 maxindex = size_zero_node;
8510 if (initial_value)
8512 if (TREE_CODE (initial_value) == STRING_CST)
8514 int eltsize
8515 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
8516 maxindex = size_int (TREE_STRING_LENGTH (initial_value)/eltsize - 1);
8518 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
8520 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (initial_value);
8522 if (VEC_empty (constructor_elt, v))
8524 if (pedantic)
8525 failure = 3;
8526 maxindex = integer_minus_one_node;
8528 else
8530 tree curindex;
8531 unsigned HOST_WIDE_INT cnt;
8532 constructor_elt *ce;
8533 bool fold_p = false;
8535 if (VEC_index (constructor_elt, v, 0)->index)
8536 maxindex = fold_convert_loc (input_location, sizetype,
8537 VEC_index (constructor_elt,
8538 v, 0)->index);
8539 curindex = maxindex;
8541 for (cnt = 1;
8542 VEC_iterate (constructor_elt, v, cnt, ce);
8543 cnt++)
8545 bool curfold_p = false;
8546 if (ce->index)
8547 curindex = ce->index, curfold_p = true;
8548 else
8550 if (fold_p)
8551 curindex = fold_convert (sizetype, curindex);
8552 curindex = size_binop (PLUS_EXPR, curindex,
8553 size_one_node);
8555 if (tree_int_cst_lt (maxindex, curindex))
8556 maxindex = curindex, fold_p = curfold_p;
8558 if (fold_p)
8559 maxindex = fold_convert (sizetype, maxindex);
8562 else
8564 /* Make an error message unless that happened already. */
8565 if (initial_value != error_mark_node)
8566 failure = 1;
8569 else
8571 failure = 2;
8572 if (!do_default)
8573 return failure;
8576 type = *ptype;
8577 elt = TREE_TYPE (type);
8578 quals = TYPE_QUALS (strip_array_types (elt));
8579 if (quals == 0)
8580 unqual_elt = elt;
8581 else
8582 unqual_elt = c_build_qualified_type (elt, KEEP_QUAL_ADDR_SPACE (quals));
8584 /* Using build_distinct_type_copy and modifying things afterward instead
8585 of using build_array_type to create a new type preserves all of the
8586 TYPE_LANG_FLAG_? bits that the front end may have set. */
8587 main_type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
8588 TREE_TYPE (main_type) = unqual_elt;
8589 TYPE_DOMAIN (main_type) = build_index_type (maxindex);
8590 layout_type (main_type);
8592 /* Make sure we have the canonical MAIN_TYPE. */
8593 hashcode = iterative_hash_object (TYPE_HASH (unqual_elt), hashcode);
8594 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (main_type)),
8595 hashcode);
8596 main_type = type_hash_canon (hashcode, main_type);
8598 /* Fix the canonical type. */
8599 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type))
8600 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type)))
8601 SET_TYPE_STRUCTURAL_EQUALITY (main_type);
8602 else if (TYPE_CANONICAL (TREE_TYPE (main_type)) != TREE_TYPE (main_type)
8603 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type))
8604 != TYPE_DOMAIN (main_type)))
8605 TYPE_CANONICAL (main_type)
8606 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type)),
8607 TYPE_CANONICAL (TYPE_DOMAIN (main_type)));
8608 else
8609 TYPE_CANONICAL (main_type) = main_type;
8611 if (quals == 0)
8612 type = main_type;
8613 else
8614 type = c_build_qualified_type (main_type, quals);
8616 if (COMPLETE_TYPE_P (type)
8617 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
8618 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
8620 error ("size of array is too large");
8621 /* If we proceed with the array type as it is, we'll eventually
8622 crash in tree_low_cst(). */
8623 type = error_mark_node;
8626 *ptype = type;
8627 return failure;
8631 /* Used to help initialize the builtin-types.def table. When a type of
8632 the correct size doesn't exist, use error_mark_node instead of NULL.
8633 The later results in segfaults even when a decl using the type doesn't
8634 get invoked. */
8636 tree
8637 builtin_type_for_size (int size, bool unsignedp)
8639 tree type = lang_hooks.types.type_for_size (size, unsignedp);
8640 return type ? type : error_mark_node;
8643 /* A helper function for resolve_overloaded_builtin in resolving the
8644 overloaded __sync_ builtins. Returns a positive power of 2 if the
8645 first operand of PARAMS is a pointer to a supported data type.
8646 Returns 0 if an error is encountered. */
8648 static int
8649 sync_resolve_size (tree function, VEC(tree,gc) *params)
8651 tree type;
8652 int size;
8654 if (VEC_empty (tree, params))
8656 error ("too few arguments to function %qE", function);
8657 return 0;
8660 type = TREE_TYPE (VEC_index (tree, params, 0));
8661 if (TREE_CODE (type) != POINTER_TYPE)
8662 goto incompatible;
8664 type = TREE_TYPE (type);
8665 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
8666 goto incompatible;
8668 size = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
8669 if (size == 1 || size == 2 || size == 4 || size == 8 || size == 16)
8670 return size;
8672 incompatible:
8673 error ("incompatible type for argument %d of %qE", 1, function);
8674 return 0;
8677 /* A helper function for resolve_overloaded_builtin. Adds casts to
8678 PARAMS to make arguments match up with those of FUNCTION. Drops
8679 the variadic arguments at the end. Returns false if some error
8680 was encountered; true on success. */
8682 static bool
8683 sync_resolve_params (tree orig_function, tree function, VEC(tree, gc) *params)
8685 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
8686 tree ptype;
8687 unsigned int parmnum;
8689 /* We've declared the implementation functions to use "volatile void *"
8690 as the pointer parameter, so we shouldn't get any complaints from the
8691 call to check_function_arguments what ever type the user used. */
8692 arg_types = TREE_CHAIN (arg_types);
8693 ptype = TREE_TYPE (TREE_TYPE (VEC_index (tree, params, 0)));
8695 /* For the rest of the values, we need to cast these to FTYPE, so that we
8696 don't get warnings for passing pointer types, etc. */
8697 parmnum = 0;
8698 while (arg_types != void_list_node)
8700 tree val;
8702 ++parmnum;
8703 if (VEC_length (tree, params) <= parmnum)
8705 error ("too few arguments to function %qE", orig_function);
8706 return false;
8709 /* ??? Ideally for the first conversion we'd use convert_for_assignment
8710 so that we get warnings for anything that doesn't match the pointer
8711 type. This isn't portable across the C and C++ front ends atm. */
8712 val = VEC_index (tree, params, parmnum);
8713 val = convert (ptype, val);
8714 val = convert (TREE_VALUE (arg_types), val);
8715 VEC_replace (tree, params, parmnum, val);
8717 arg_types = TREE_CHAIN (arg_types);
8720 /* The definition of these primitives is variadic, with the remaining
8721 being "an optional list of variables protected by the memory barrier".
8722 No clue what that's supposed to mean, precisely, but we consider all
8723 call-clobbered variables to be protected so we're safe. */
8724 VEC_truncate (tree, params, parmnum + 1);
8726 return true;
8729 /* A helper function for resolve_overloaded_builtin. Adds a cast to
8730 RESULT to make it match the type of the first pointer argument in
8731 PARAMS. */
8733 static tree
8734 sync_resolve_return (tree first_param, tree result)
8736 tree ptype = TREE_TYPE (TREE_TYPE (first_param));
8737 ptype = TYPE_MAIN_VARIANT (ptype);
8738 return convert (ptype, result);
8741 /* Some builtin functions are placeholders for other expressions. This
8742 function should be called immediately after parsing the call expression
8743 before surrounding code has committed to the type of the expression.
8745 LOC is the location of the builtin call.
8747 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
8748 PARAMS is the argument list for the call. The return value is non-null
8749 when expansion is complete, and null if normal processing should
8750 continue. */
8752 tree
8753 resolve_overloaded_builtin (location_t loc, tree function, VEC(tree,gc) *params)
8755 enum built_in_function orig_code = DECL_FUNCTION_CODE (function);
8756 switch (DECL_BUILT_IN_CLASS (function))
8758 case BUILT_IN_NORMAL:
8759 break;
8760 case BUILT_IN_MD:
8761 if (targetm.resolve_overloaded_builtin)
8762 return targetm.resolve_overloaded_builtin (loc, function, params);
8763 else
8764 return NULL_TREE;
8765 default:
8766 return NULL_TREE;
8769 /* Handle BUILT_IN_NORMAL here. */
8770 switch (orig_code)
8772 case BUILT_IN_FETCH_AND_ADD_N:
8773 case BUILT_IN_FETCH_AND_SUB_N:
8774 case BUILT_IN_FETCH_AND_OR_N:
8775 case BUILT_IN_FETCH_AND_AND_N:
8776 case BUILT_IN_FETCH_AND_XOR_N:
8777 case BUILT_IN_FETCH_AND_NAND_N:
8778 case BUILT_IN_ADD_AND_FETCH_N:
8779 case BUILT_IN_SUB_AND_FETCH_N:
8780 case BUILT_IN_OR_AND_FETCH_N:
8781 case BUILT_IN_AND_AND_FETCH_N:
8782 case BUILT_IN_XOR_AND_FETCH_N:
8783 case BUILT_IN_NAND_AND_FETCH_N:
8784 case BUILT_IN_BOOL_COMPARE_AND_SWAP_N:
8785 case BUILT_IN_VAL_COMPARE_AND_SWAP_N:
8786 case BUILT_IN_LOCK_TEST_AND_SET_N:
8787 case BUILT_IN_LOCK_RELEASE_N:
8789 int n = sync_resolve_size (function, params);
8790 tree new_function, first_param, result;
8792 if (n == 0)
8793 return error_mark_node;
8795 new_function = built_in_decls[orig_code + exact_log2 (n) + 1];
8796 if (!sync_resolve_params (function, new_function, params))
8797 return error_mark_node;
8799 first_param = VEC_index (tree, params, 0);
8800 result = build_function_call_vec (loc, new_function, params, NULL);
8801 if (orig_code != BUILT_IN_BOOL_COMPARE_AND_SWAP_N
8802 && orig_code != BUILT_IN_LOCK_RELEASE_N)
8803 result = sync_resolve_return (first_param, result);
8805 return result;
8808 default:
8809 return NULL_TREE;
8813 /* Ignoring their sign, return true if two scalar types are the same. */
8814 bool
8815 same_scalar_type_ignoring_signedness (tree t1, tree t2)
8817 enum tree_code c1 = TREE_CODE (t1), c2 = TREE_CODE (t2);
8819 gcc_assert ((c1 == INTEGER_TYPE || c1 == REAL_TYPE || c1 == FIXED_POINT_TYPE)
8820 && (c2 == INTEGER_TYPE || c2 == REAL_TYPE
8821 || c2 == FIXED_POINT_TYPE));
8823 /* Equality works here because c_common_signed_type uses
8824 TYPE_MAIN_VARIANT. */
8825 return c_common_signed_type (t1)
8826 == c_common_signed_type (t2);
8829 /* Check for missing format attributes on function pointers. LTYPE is
8830 the new type or left-hand side type. RTYPE is the old type or
8831 right-hand side type. Returns TRUE if LTYPE is missing the desired
8832 attribute. */
8834 bool
8835 check_missing_format_attribute (tree ltype, tree rtype)
8837 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
8838 tree ra;
8840 for (ra = TYPE_ATTRIBUTES (ttr); ra; ra = TREE_CHAIN (ra))
8841 if (is_attribute_p ("format", TREE_PURPOSE (ra)))
8842 break;
8843 if (ra)
8845 tree la;
8846 for (la = TYPE_ATTRIBUTES (ttl); la; la = TREE_CHAIN (la))
8847 if (is_attribute_p ("format", TREE_PURPOSE (la)))
8848 break;
8849 return !la;
8851 else
8852 return false;
8855 /* Subscripting with type char is likely to lose on a machine where
8856 chars are signed. So warn on any machine, but optionally. Don't
8857 warn for unsigned char since that type is safe. Don't warn for
8858 signed char because anyone who uses that must have done so
8859 deliberately. Furthermore, we reduce the false positive load by
8860 warning only for non-constant value of type char. */
8862 void
8863 warn_array_subscript_with_type_char (tree index)
8865 if (TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node
8866 && TREE_CODE (index) != INTEGER_CST)
8867 warning (OPT_Wchar_subscripts, "array subscript has type %<char%>");
8870 /* Implement -Wparentheses for the unexpected C precedence rules, to
8871 cover cases like x + y << z which readers are likely to
8872 misinterpret. We have seen an expression in which CODE is a binary
8873 operator used to combine expressions ARG_LEFT and ARG_RIGHT, which
8874 before folding had CODE_LEFT and CODE_RIGHT. CODE_LEFT and
8875 CODE_RIGHT may be ERROR_MARK, which means that that side of the
8876 expression was not formed using a binary or unary operator, or it
8877 was enclosed in parentheses. */
8879 void
8880 warn_about_parentheses (enum tree_code code,
8881 enum tree_code code_left, tree arg_left,
8882 enum tree_code code_right, tree arg_right)
8884 if (!warn_parentheses)
8885 return;
8887 /* This macro tests that the expression ARG with original tree code
8888 CODE appears to be a boolean expression. or the result of folding a
8889 boolean expression. */
8890 #define APPEARS_TO_BE_BOOLEAN_EXPR_P(CODE, ARG) \
8891 (truth_value_p (TREE_CODE (ARG)) \
8892 || TREE_CODE (TREE_TYPE (ARG)) == BOOLEAN_TYPE \
8893 /* Folding may create 0 or 1 integers from other expressions. */ \
8894 || ((CODE) != INTEGER_CST \
8895 && (integer_onep (ARG) || integer_zerop (ARG))))
8897 switch (code)
8899 case LSHIFT_EXPR:
8900 if (code_left == PLUS_EXPR || code_right == PLUS_EXPR)
8901 warning (OPT_Wparentheses,
8902 "suggest parentheses around %<+%> inside %<<<%>");
8903 else if (code_left == MINUS_EXPR || code_right == MINUS_EXPR)
8904 warning (OPT_Wparentheses,
8905 "suggest parentheses around %<-%> inside %<<<%>");
8906 return;
8908 case RSHIFT_EXPR:
8909 if (code_left == PLUS_EXPR || code_right == PLUS_EXPR)
8910 warning (OPT_Wparentheses,
8911 "suggest parentheses around %<+%> inside %<>>%>");
8912 else if (code_left == MINUS_EXPR || code_right == MINUS_EXPR)
8913 warning (OPT_Wparentheses,
8914 "suggest parentheses around %<-%> inside %<>>%>");
8915 return;
8917 case TRUTH_ORIF_EXPR:
8918 if (code_left == TRUTH_ANDIF_EXPR || code_right == TRUTH_ANDIF_EXPR)
8919 warning (OPT_Wparentheses,
8920 "suggest parentheses around %<&&%> within %<||%>");
8921 return;
8923 case BIT_IOR_EXPR:
8924 if (code_left == BIT_AND_EXPR || code_left == BIT_XOR_EXPR
8925 || code_left == PLUS_EXPR || code_left == MINUS_EXPR
8926 || code_right == BIT_AND_EXPR || code_right == BIT_XOR_EXPR
8927 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
8928 warning (OPT_Wparentheses,
8929 "suggest parentheses around arithmetic in operand of %<|%>");
8930 /* Check cases like x|y==z */
8931 else if (TREE_CODE_CLASS (code_left) == tcc_comparison
8932 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8933 warning (OPT_Wparentheses,
8934 "suggest parentheses around comparison in operand of %<|%>");
8935 /* Check cases like !x | y */
8936 else if (code_left == TRUTH_NOT_EXPR
8937 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
8938 warning (OPT_Wparentheses, "suggest parentheses around operand of "
8939 "%<!%> or change %<|%> to %<||%> or %<!%> to %<~%>");
8940 return;
8942 case BIT_XOR_EXPR:
8943 if (code_left == BIT_AND_EXPR
8944 || code_left == PLUS_EXPR || code_left == MINUS_EXPR
8945 || code_right == BIT_AND_EXPR
8946 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
8947 warning (OPT_Wparentheses,
8948 "suggest parentheses around arithmetic in operand of %<^%>");
8949 /* Check cases like x^y==z */
8950 else if (TREE_CODE_CLASS (code_left) == tcc_comparison
8951 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8952 warning (OPT_Wparentheses,
8953 "suggest parentheses around comparison in operand of %<^%>");
8954 return;
8956 case BIT_AND_EXPR:
8957 if (code_left == PLUS_EXPR || code_right == PLUS_EXPR)
8958 warning (OPT_Wparentheses,
8959 "suggest parentheses around %<+%> in operand of %<&%>");
8960 else if (code_left == MINUS_EXPR || code_right == MINUS_EXPR)
8961 warning (OPT_Wparentheses,
8962 "suggest parentheses around %<-%> in operand of %<&%>");
8963 /* Check cases like x&y==z */
8964 else if (TREE_CODE_CLASS (code_left) == tcc_comparison
8965 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8966 warning (OPT_Wparentheses,
8967 "suggest parentheses around comparison in operand of %<&%>");
8968 /* Check cases like !x & y */
8969 else if (code_left == TRUTH_NOT_EXPR
8970 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
8971 warning (OPT_Wparentheses, "suggest parentheses around operand of "
8972 "%<!%> or change %<&%> to %<&&%> or %<!%> to %<~%>");
8973 return;
8975 case EQ_EXPR:
8976 if (TREE_CODE_CLASS (code_left) == tcc_comparison
8977 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8978 warning (OPT_Wparentheses,
8979 "suggest parentheses around comparison in operand of %<==%>");
8980 return;
8981 case NE_EXPR:
8982 if (TREE_CODE_CLASS (code_left) == tcc_comparison
8983 || TREE_CODE_CLASS (code_right) == tcc_comparison)
8984 warning (OPT_Wparentheses,
8985 "suggest parentheses around comparison in operand of %<!=%>");
8986 return;
8988 default:
8989 if (TREE_CODE_CLASS (code) == tcc_comparison
8990 && ((TREE_CODE_CLASS (code_left) == tcc_comparison
8991 && code_left != NE_EXPR && code_left != EQ_EXPR
8992 && INTEGRAL_TYPE_P (TREE_TYPE (arg_left)))
8993 || (TREE_CODE_CLASS (code_right) == tcc_comparison
8994 && code_right != NE_EXPR && code_right != EQ_EXPR
8995 && INTEGRAL_TYPE_P (TREE_TYPE (arg_right)))))
8996 warning (OPT_Wparentheses, "comparisons like %<X<=Y<=Z%> do not "
8997 "have their mathematical meaning");
8998 return;
9000 #undef NOT_A_BOOLEAN_EXPR_P
9003 /* If LABEL (a LABEL_DECL) has not been used, issue a warning. */
9005 void
9006 warn_for_unused_label (tree label)
9008 if (!TREE_USED (label))
9010 if (DECL_INITIAL (label))
9011 warning (OPT_Wunused_label, "label %q+D defined but not used", label);
9012 else
9013 warning (OPT_Wunused_label, "label %q+D declared but not defined", label);
9017 #ifndef TARGET_HAS_TARGETCM
9018 struct gcc_targetcm targetcm = TARGETCM_INITIALIZER;
9019 #endif
9021 /* Warn for division by zero according to the value of DIVISOR. LOC
9022 is the location of the division operator. */
9024 void
9025 warn_for_div_by_zero (location_t loc, tree divisor)
9027 /* If DIVISOR is zero, and has integral or fixed-point type, issue a warning
9028 about division by zero. Do not issue a warning if DIVISOR has a
9029 floating-point type, since we consider 0.0/0.0 a valid way of
9030 generating a NaN. */
9031 if (c_inhibit_evaluation_warnings == 0
9032 && (integer_zerop (divisor) || fixed_zerop (divisor)))
9033 warning_at (loc, OPT_Wdiv_by_zero, "division by zero");
9036 /* Subroutine of build_binary_op. Give warnings for comparisons
9037 between signed and unsigned quantities that may fail. Do the
9038 checking based on the original operand trees ORIG_OP0 and ORIG_OP1,
9039 so that casts will be considered, but default promotions won't
9042 LOCATION is the location of the comparison operator.
9044 The arguments of this function map directly to local variables
9045 of build_binary_op. */
9047 void
9048 warn_for_sign_compare (location_t location,
9049 tree orig_op0, tree orig_op1,
9050 tree op0, tree op1,
9051 tree result_type, enum tree_code resultcode)
9053 int op0_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op0));
9054 int op1_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op1));
9055 int unsignedp0, unsignedp1;
9057 /* In C++, check for comparison of different enum types. */
9058 if (c_dialect_cxx()
9059 && TREE_CODE (TREE_TYPE (orig_op0)) == ENUMERAL_TYPE
9060 && TREE_CODE (TREE_TYPE (orig_op1)) == ENUMERAL_TYPE
9061 && TYPE_MAIN_VARIANT (TREE_TYPE (orig_op0))
9062 != TYPE_MAIN_VARIANT (TREE_TYPE (orig_op1)))
9064 warning_at (location,
9065 OPT_Wsign_compare, "comparison between types %qT and %qT",
9066 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1));
9069 /* Do not warn if the comparison is being done in a signed type,
9070 since the signed type will only be chosen if it can represent
9071 all the values of the unsigned type. */
9072 if (!TYPE_UNSIGNED (result_type))
9073 /* OK */;
9074 /* Do not warn if both operands are unsigned. */
9075 else if (op0_signed == op1_signed)
9076 /* OK */;
9077 else
9079 tree sop, uop, base_type;
9080 bool ovf;
9082 if (op0_signed)
9083 sop = orig_op0, uop = orig_op1;
9084 else
9085 sop = orig_op1, uop = orig_op0;
9087 STRIP_TYPE_NOPS (sop);
9088 STRIP_TYPE_NOPS (uop);
9089 base_type = (TREE_CODE (result_type) == COMPLEX_TYPE
9090 ? TREE_TYPE (result_type) : result_type);
9092 /* Do not warn if the signed quantity is an unsuffixed integer
9093 literal (or some static constant expression involving such
9094 literals or a conditional expression involving such literals)
9095 and it is non-negative. */
9096 if (tree_expr_nonnegative_warnv_p (sop, &ovf))
9097 /* OK */;
9098 /* Do not warn if the comparison is an equality operation, the
9099 unsigned quantity is an integral constant, and it would fit
9100 in the result if the result were signed. */
9101 else if (TREE_CODE (uop) == INTEGER_CST
9102 && (resultcode == EQ_EXPR || resultcode == NE_EXPR)
9103 && int_fits_type_p (uop, c_common_signed_type (base_type)))
9104 /* OK */;
9105 /* In C, do not warn if the unsigned quantity is an enumeration
9106 constant and its maximum value would fit in the result if the
9107 result were signed. */
9108 else if (!c_dialect_cxx() && TREE_CODE (uop) == INTEGER_CST
9109 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYPE
9110 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (uop)),
9111 c_common_signed_type (base_type)))
9112 /* OK */;
9113 else
9114 warning_at (location,
9115 OPT_Wsign_compare,
9116 "comparison between signed and unsigned integer expressions");
9119 /* Warn if two unsigned values are being compared in a size larger
9120 than their original size, and one (and only one) is the result of
9121 a `~' operator. This comparison will always fail.
9123 Also warn if one operand is a constant, and the constant does not
9124 have all bits set that are set in the ~ operand when it is
9125 extended. */
9127 op0 = get_narrower (op0, &unsignedp0);
9128 op1 = get_narrower (op1, &unsignedp1);
9130 if ((TREE_CODE (op0) == BIT_NOT_EXPR)
9131 ^ (TREE_CODE (op1) == BIT_NOT_EXPR))
9133 if (TREE_CODE (op0) == BIT_NOT_EXPR)
9134 op0 = get_narrower (TREE_OPERAND (op0, 0), &unsignedp0);
9135 if (TREE_CODE (op1) == BIT_NOT_EXPR)
9136 op1 = get_narrower (TREE_OPERAND (op1, 0), &unsignedp1);
9138 if (host_integerp (op0, 0) || host_integerp (op1, 0))
9140 tree primop;
9141 HOST_WIDE_INT constant, mask;
9142 int unsignedp;
9143 unsigned int bits;
9145 if (host_integerp (op0, 0))
9147 primop = op1;
9148 unsignedp = unsignedp1;
9149 constant = tree_low_cst (op0, 0);
9151 else
9153 primop = op0;
9154 unsignedp = unsignedp0;
9155 constant = tree_low_cst (op1, 0);
9158 bits = TYPE_PRECISION (TREE_TYPE (primop));
9159 if (bits < TYPE_PRECISION (result_type)
9160 && bits < HOST_BITS_PER_LONG && unsignedp)
9162 mask = (~ (HOST_WIDE_INT) 0) << bits;
9163 if ((mask & constant) != mask)
9165 if (constant == 0)
9166 warning (OPT_Wsign_compare,
9167 "promoted ~unsigned is always non-zero");
9168 else
9169 warning_at (location, OPT_Wsign_compare,
9170 "comparison of promoted ~unsigned with constant");
9174 else if (unsignedp0 && unsignedp1
9175 && (TYPE_PRECISION (TREE_TYPE (op0))
9176 < TYPE_PRECISION (result_type))
9177 && (TYPE_PRECISION (TREE_TYPE (op1))
9178 < TYPE_PRECISION (result_type)))
9179 warning_at (location, OPT_Wsign_compare,
9180 "comparison of promoted ~unsigned with unsigned");
9184 /* RESULT_TYPE is the result of converting TYPE1 and TYPE2 to a common
9185 type via c_common_type. If -Wdouble-promotion is in use, and the
9186 conditions for warning have been met, issue a warning. GMSGID is
9187 the warning message. It must have two %T specifiers for the type
9188 that was converted (generally "float") and the type to which it was
9189 converted (generally "double), respectively. LOC is the location
9190 to which the awrning should refer. */
9192 void
9193 do_warn_double_promotion (tree result_type, tree type1, tree type2,
9194 const char *gmsgid, location_t loc)
9196 tree source_type;
9198 if (!warn_double_promotion)
9199 return;
9200 /* If the conversion will not occur at run-time, there is no need to
9201 warn about it. */
9202 if (c_inhibit_evaluation_warnings)
9203 return;
9204 if (TYPE_MAIN_VARIANT (result_type) != double_type_node
9205 && TYPE_MAIN_VARIANT (result_type) != complex_double_type_node)
9206 return;
9207 if (TYPE_MAIN_VARIANT (type1) == float_type_node
9208 || TYPE_MAIN_VARIANT (type1) == complex_float_type_node)
9209 source_type = type1;
9210 else if (TYPE_MAIN_VARIANT (type2) == float_type_node
9211 || TYPE_MAIN_VARIANT (type2) == complex_float_type_node)
9212 source_type = type2;
9213 else
9214 return;
9215 warning_at (loc, OPT_Wdouble_promotion, gmsgid, source_type, result_type);
9218 /* Setup a TYPE_DECL node as a typedef representation.
9220 X is a TYPE_DECL for a typedef statement. Create a brand new
9221 ..._TYPE node (which will be just a variant of the existing
9222 ..._TYPE node with identical properties) and then install X
9223 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
9225 The whole point here is to end up with a situation where each
9226 and every ..._TYPE node the compiler creates will be uniquely
9227 associated with AT MOST one node representing a typedef name.
9228 This way, even though the compiler substitutes corresponding
9229 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
9230 early on, later parts of the compiler can always do the reverse
9231 translation and get back the corresponding typedef name. For
9232 example, given:
9234 typedef struct S MY_TYPE;
9235 MY_TYPE object;
9237 Later parts of the compiler might only know that `object' was of
9238 type `struct S' if it were not for code just below. With this
9239 code however, later parts of the compiler see something like:
9241 struct S' == struct S
9242 typedef struct S' MY_TYPE;
9243 struct S' object;
9245 And they can then deduce (from the node for type struct S') that
9246 the original object declaration was:
9248 MY_TYPE object;
9250 Being able to do this is important for proper support of protoize,
9251 and also for generating precise symbolic debugging information
9252 which takes full account of the programmer's (typedef) vocabulary.
9254 Obviously, we don't want to generate a duplicate ..._TYPE node if
9255 the TYPE_DECL node that we are now processing really represents a
9256 standard built-in type. */
9258 void
9259 set_underlying_type (tree x)
9261 if (x == error_mark_node)
9262 return;
9263 if (DECL_IS_BUILTIN (x))
9265 if (TYPE_NAME (TREE_TYPE (x)) == 0)
9266 TYPE_NAME (TREE_TYPE (x)) = x;
9268 else if (TREE_TYPE (x) != error_mark_node
9269 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
9271 tree tt = TREE_TYPE (x);
9272 DECL_ORIGINAL_TYPE (x) = tt;
9273 tt = build_variant_type_copy (tt);
9274 TYPE_STUB_DECL (tt) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
9275 TYPE_NAME (tt) = x;
9276 TREE_USED (tt) = TREE_USED (x);
9277 TREE_TYPE (x) = tt;
9281 /* Record the types used by the current global variable declaration
9282 being parsed, so that we can decide later to emit their debug info.
9283 Those types are in types_used_by_cur_var_decl, and we are going to
9284 store them in the types_used_by_vars_hash hash table.
9285 DECL is the declaration of the global variable that has been parsed. */
9287 void
9288 record_types_used_by_current_var_decl (tree decl)
9290 gcc_assert (decl && DECL_P (decl) && TREE_STATIC (decl));
9292 while (!VEC_empty (tree, types_used_by_cur_var_decl))
9294 tree type = VEC_pop (tree, types_used_by_cur_var_decl);
9295 types_used_by_var_decl_insert (type, decl);
9299 /* The C and C++ parsers both use vectors to hold function arguments.
9300 For efficiency, we keep a cache of unused vectors. This is the
9301 cache. */
9303 typedef VEC(tree,gc)* tree_gc_vec;
9304 DEF_VEC_P(tree_gc_vec);
9305 DEF_VEC_ALLOC_P(tree_gc_vec,gc);
9306 static GTY((deletable)) VEC(tree_gc_vec,gc) *tree_vector_cache;
9308 /* Return a new vector from the cache. If the cache is empty,
9309 allocate a new vector. These vectors are GC'ed, so it is OK if the
9310 pointer is not released.. */
9312 VEC(tree,gc) *
9313 make_tree_vector (void)
9315 if (!VEC_empty (tree_gc_vec, tree_vector_cache))
9316 return VEC_pop (tree_gc_vec, tree_vector_cache);
9317 else
9319 /* Passing 0 to VEC_alloc returns NULL, and our callers require
9320 that we always return a non-NULL value. The vector code uses
9321 4 when growing a NULL vector, so we do too. */
9322 return VEC_alloc (tree, gc, 4);
9326 /* Release a vector of trees back to the cache. */
9328 void
9329 release_tree_vector (VEC(tree,gc) *vec)
9331 if (vec != NULL)
9333 VEC_truncate (tree, vec, 0);
9334 VEC_safe_push (tree_gc_vec, gc, tree_vector_cache, vec);
9338 /* Get a new tree vector holding a single tree. */
9340 VEC(tree,gc) *
9341 make_tree_vector_single (tree t)
9343 VEC(tree,gc) *ret = make_tree_vector ();
9344 VEC_quick_push (tree, ret, t);
9345 return ret;
9348 /* Get a new tree vector which is a copy of an existing one. */
9350 VEC(tree,gc) *
9351 make_tree_vector_copy (const VEC(tree,gc) *orig)
9353 VEC(tree,gc) *ret;
9354 unsigned int ix;
9355 tree t;
9357 ret = make_tree_vector ();
9358 VEC_reserve (tree, gc, ret, VEC_length (tree, orig));
9359 FOR_EACH_VEC_ELT (tree, orig, ix, t)
9360 VEC_quick_push (tree, ret, t);
9361 return ret;
9364 #include "gt-c-family-c-common.h"