1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
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
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
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/>. */
24 #include "coretypes.h"
38 #include "langhooks.h"
39 #include "tree-inline.h"
41 #include "diagnostic.h"
42 #include "tree-iterator.h"
44 #include "tree-mudflap.h"
47 #include "target-def.h"
50 cpp_reader
*parse_in
; /* Declared in c-pragma.h. */
52 /* The following symbols are subsumed in the c_global_trees array, and
53 listed here individually for documentation purposes.
55 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
57 tree short_integer_type_node;
58 tree long_integer_type_node;
59 tree long_long_integer_type_node;
60 tree int128_integer_type_node;
62 tree short_unsigned_type_node;
63 tree long_unsigned_type_node;
64 tree long_long_unsigned_type_node;
65 tree int128_unsigned_type_node;
67 tree truthvalue_type_node;
68 tree truthvalue_false_node;
69 tree truthvalue_true_node;
71 tree ptrdiff_type_node;
73 tree unsigned_char_type_node;
74 tree signed_char_type_node;
77 tree char16_type_node;
78 tree char32_type_node;
81 tree double_type_node;
82 tree long_double_type_node;
84 tree complex_integer_type_node;
85 tree complex_float_type_node;
86 tree complex_double_type_node;
87 tree complex_long_double_type_node;
89 tree dfloat32_type_node;
90 tree dfloat64_type_node;
91 tree_dfloat128_type_node;
99 tree unsigned_intQI_type_node;
100 tree unsigned_intHI_type_node;
101 tree unsigned_intSI_type_node;
102 tree unsigned_intDI_type_node;
103 tree unsigned_intTI_type_node;
105 tree widest_integer_literal_type_node;
106 tree widest_unsigned_literal_type_node;
108 Nodes for types `void *' and `const void *'.
110 tree ptr_type_node, const_ptr_type_node;
112 Nodes for types `char *' and `const char *'.
114 tree string_type_node, const_string_type_node;
116 Type `char[SOMENUMBER]'.
117 Used when an array of char is needed and the size is irrelevant.
119 tree char_array_type_node;
121 Type `int[SOMENUMBER]' or something like it.
122 Used when an array of int needed and the size is irrelevant.
124 tree int_array_type_node;
126 Type `wchar_t[SOMENUMBER]' or something like it.
127 Used when a wide string literal is created.
129 tree wchar_array_type_node;
131 Type `char16_t[SOMENUMBER]' or something like it.
132 Used when a UTF-16 string literal is created.
134 tree char16_array_type_node;
136 Type `char32_t[SOMENUMBER]' or something like it.
137 Used when a UTF-32 string literal is created.
139 tree char32_array_type_node;
141 Type `int ()' -- used for implicit declaration of functions.
143 tree default_function_type;
145 A VOID_TYPE node, packaged in a TREE_LIST.
149 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
150 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
151 VAR_DECLS, but C++ does.)
153 tree function_name_decl_node;
154 tree pretty_function_name_decl_node;
155 tree c99_function_name_decl_node;
157 Stack of nested function name VAR_DECLs.
159 tree saved_function_name_decls;
163 tree c_global_trees
[CTI_MAX
];
165 /* Switches common to the C front ends. */
167 /* Nonzero means don't output line number information. */
169 char flag_no_line_commands
;
171 /* Nonzero causes -E output not to be done, but directives such as
172 #define that have side effects are still obeyed. */
176 /* Nonzero means dump macros in some fashion. */
178 char flag_dump_macros
;
180 /* Nonzero means pass #include lines through to the output. */
182 char flag_dump_includes
;
184 /* Nonzero means process PCH files while preprocessing. */
186 bool flag_pch_preprocess
;
188 /* The file name to which we should write a precompiled header, or
189 NULL if no header will be written in this compile. */
191 const char *pch_file
;
193 /* Nonzero if an ISO standard was selected. It rejects macros in the
197 /* Warn about #pragma directives that are not recognized. */
199 int warn_unknown_pragmas
; /* Tri state variable. */
201 /* Warn about format/argument anomalies in calls to formatted I/O functions
202 (*printf, *scanf, strftime, strfmon, etc.). */
206 /* C/ObjC language option variables. */
209 /* Nonzero means allow type mismatches in conditional expressions;
210 just make their values `void'. */
212 int flag_cond_mismatch
;
214 /* Nonzero means enable C89 Amendment 1 features. */
218 /* Nonzero means use the ISO C99 (or C1X) dialect of C. */
222 /* Nonzero means use the ISO C1X dialect of C. */
226 /* Nonzero means that we have builtin functions, and main is an int. */
231 /* ObjC language option variables. */
234 /* Tells the compiler that this is a special run. Do not perform any
235 compiling, instead we are to test some platform dependent features
236 and output a C header file with appropriate definitions. */
238 int print_struct_values
;
240 /* Tells the compiler what is the constant string class for ObjC. */
242 const char *constant_string_class_name
;
245 /* C++ language option variables. */
248 /* Nonzero means generate separate instantiation control files and
249 juggle them at link time. */
251 int flag_use_repository
;
253 /* The C++ dialect being used. C++98 is the default. */
255 enum cxx_dialect cxx_dialect
= cxx98
;
257 /* Maximum template instantiation depth. This limit exists to limit the
258 time it takes to notice excessively recursive template instantiations;
259 the default value of 1024 is likely to be in the next C++ standard. */
261 int max_tinst_depth
= 1024;
263 /* The elements of `ridpointers' are identifier nodes for the reserved
264 type names and storage classes. It is indexed by a RID_... value. */
267 tree (*make_fname_decl
) (location_t
, tree
, int);
269 /* Nonzero means don't warn about problems that occur when the code is
271 int c_inhibit_evaluation_warnings
;
273 /* Whether we are building a boolean conversion inside
274 convert_for_assignment, or some other late binary operation. If
275 build_binary_op is called for C (from code shared by C and C++) in
276 this case, then the operands have already been folded and the
277 result will not be folded again, so C_MAYBE_CONST_EXPR should not
279 bool in_late_binary_op
;
281 /* Whether lexing has been completed, so subsequent preprocessor
282 errors should use the compiler's input_location. */
283 bool done_lexing
= false;
285 /* Information about how a function name is generated. */
288 tree
*const decl
; /* pointer to the VAR_DECL. */
289 const unsigned rid
; /* RID number for the identifier. */
290 const int pretty
; /* How pretty is it? */
293 /* The three ways of getting then name of the current function. */
295 const struct fname_var_t fname_vars
[] =
297 /* C99 compliant __func__, must be first. */
298 {&c99_function_name_decl_node
, RID_C99_FUNCTION_NAME
, 0},
299 /* GCC __FUNCTION__ compliant. */
300 {&function_name_decl_node
, RID_FUNCTION_NAME
, 0},
301 /* GCC __PRETTY_FUNCTION__ compliant. */
302 {&pretty_function_name_decl_node
, RID_PRETTY_FUNCTION_NAME
, 1},
306 /* Global visibility options. */
307 struct visibility_flags visibility_options
;
309 static tree
c_fully_fold_internal (tree expr
, bool, bool *, bool *);
310 static tree
check_case_value (tree
);
311 static bool check_case_bounds (tree
, tree
, tree
*, tree
*);
313 static tree
handle_packed_attribute (tree
*, tree
, tree
, int, bool *);
314 static tree
handle_nocommon_attribute (tree
*, tree
, tree
, int, bool *);
315 static tree
handle_common_attribute (tree
*, tree
, tree
, int, bool *);
316 static tree
handle_noreturn_attribute (tree
*, tree
, tree
, int, bool *);
317 static tree
handle_hot_attribute (tree
*, tree
, tree
, int, bool *);
318 static tree
handle_cold_attribute (tree
*, tree
, tree
, int, bool *);
319 static tree
handle_noinline_attribute (tree
*, tree
, tree
, int, bool *);
320 static tree
handle_noclone_attribute (tree
*, tree
, tree
, int, bool *);
321 static tree
handle_leaf_attribute (tree
*, tree
, tree
, int, bool *);
322 static tree
handle_always_inline_attribute (tree
*, tree
, tree
, int,
324 static tree
handle_gnu_inline_attribute (tree
*, tree
, tree
, int, bool *);
325 static tree
handle_artificial_attribute (tree
*, tree
, tree
, int, bool *);
326 static tree
handle_flatten_attribute (tree
*, tree
, tree
, int, bool *);
327 static tree
handle_error_attribute (tree
*, tree
, tree
, int, bool *);
328 static tree
handle_used_attribute (tree
*, tree
, tree
, int, bool *);
329 static tree
handle_unused_attribute (tree
*, tree
, tree
, int, bool *);
330 static tree
handle_externally_visible_attribute (tree
*, tree
, tree
, int,
332 static tree
handle_const_attribute (tree
*, tree
, tree
, int, bool *);
333 static tree
handle_transparent_union_attribute (tree
*, tree
, tree
,
335 static tree
handle_constructor_attribute (tree
*, tree
, tree
, int, bool *);
336 static tree
handle_destructor_attribute (tree
*, tree
, tree
, int, bool *);
337 static tree
handle_mode_attribute (tree
*, tree
, tree
, int, bool *);
338 static tree
handle_section_attribute (tree
*, tree
, tree
, int, bool *);
339 static tree
handle_aligned_attribute (tree
*, tree
, tree
, int, bool *);
340 static tree
handle_weak_attribute (tree
*, tree
, tree
, int, bool *) ;
341 static tree
handle_alias_ifunc_attribute (bool, tree
*, tree
, tree
, bool *);
342 static tree
handle_ifunc_attribute (tree
*, tree
, tree
, int, bool *);
343 static tree
handle_alias_attribute (tree
*, tree
, tree
, int, bool *);
344 static tree
handle_weakref_attribute (tree
*, tree
, tree
, int, bool *) ;
345 static tree
handle_visibility_attribute (tree
*, tree
, tree
, int,
347 static tree
handle_tls_model_attribute (tree
*, tree
, tree
, int,
349 static tree
handle_no_instrument_function_attribute (tree
*, tree
,
351 static tree
handle_malloc_attribute (tree
*, tree
, tree
, int, bool *);
352 static tree
handle_returns_twice_attribute (tree
*, tree
, tree
, int, bool *);
353 static tree
handle_no_limit_stack_attribute (tree
*, tree
, tree
, int,
355 static tree
handle_pure_attribute (tree
*, tree
, tree
, int, bool *);
356 static tree
handle_novops_attribute (tree
*, tree
, tree
, int, bool *);
357 static tree
handle_deprecated_attribute (tree
*, tree
, tree
, int,
359 static tree
handle_vector_size_attribute (tree
*, tree
, tree
, int,
361 static tree
handle_nonnull_attribute (tree
*, tree
, tree
, int, bool *);
362 static tree
handle_nothrow_attribute (tree
*, tree
, tree
, int, bool *);
363 static tree
handle_cleanup_attribute (tree
*, tree
, tree
, int, bool *);
364 static tree
handle_warn_unused_result_attribute (tree
*, tree
, tree
, int,
366 static tree
handle_sentinel_attribute (tree
*, tree
, tree
, int, bool *);
367 static tree
handle_type_generic_attribute (tree
*, tree
, tree
, int, bool *);
368 static tree
handle_alloc_size_attribute (tree
*, tree
, tree
, int, bool *);
369 static tree
handle_target_attribute (tree
*, tree
, tree
, int, bool *);
370 static tree
handle_optimize_attribute (tree
*, tree
, tree
, int, bool *);
371 static tree
handle_no_split_stack_attribute (tree
*, tree
, tree
, int, bool *);
372 static tree
handle_fnspec_attribute (tree
*, tree
, tree
, int, bool *);
374 static void check_function_nonnull (tree
, int, tree
*);
375 static void check_nonnull_arg (void *, tree
, unsigned HOST_WIDE_INT
);
376 static bool nonnull_check_p (tree
, unsigned HOST_WIDE_INT
);
377 static bool get_nonnull_operand (tree
, unsigned HOST_WIDE_INT
*);
378 static int resort_field_decl_cmp (const void *, const void *);
380 /* Reserved words. The third field is a mask: keywords are disabled
381 if they match the mask.
384 C --std=c89: D_C99 | D_CXXONLY | D_OBJC | D_CXX_OBJC
385 C --std=c99: D_CXXONLY | D_OBJC
386 ObjC is like C except that D_OBJC and D_CXX_OBJC are not set
387 C++ --std=c98: D_CONLY | D_CXXOX | D_OBJC
388 C++ --std=c0x: D_CONLY | D_OBJC
389 ObjC++ is like C++ except that D_OBJC is not set
391 If -fno-asm is used, D_ASM is added to the mask. If
392 -fno-gnu-keywords is used, D_EXT is added. If -fno-asm and C in
393 C89 mode, D_EXT89 is added for both -fno-asm and -fno-gnu-keywords.
394 In C with -Wc++-compat, we warn if D_CXXWARN is set.
396 Note the complication of the D_CXX_OBJC keywords. These are
397 reserved words such as 'class'. In C++, 'class' is a reserved
398 word. In Objective-C++ it is too. In Objective-C, it is a
399 reserved word too, but only if it follows an '@' sign.
401 const struct c_common_resword c_common_reswords
[] =
403 { "_Bool", RID_BOOL
, D_CONLY
},
404 { "_Complex", RID_COMPLEX
, 0 },
405 { "_Imaginary", RID_IMAGINARY
, D_CONLY
},
406 { "_Decimal32", RID_DFLOAT32
, D_CONLY
| D_EXT
},
407 { "_Decimal64", RID_DFLOAT64
, D_CONLY
| D_EXT
},
408 { "_Decimal128", RID_DFLOAT128
, D_CONLY
| D_EXT
},
409 { "_Fract", RID_FRACT
, D_CONLY
| D_EXT
},
410 { "_Accum", RID_ACCUM
, D_CONLY
| D_EXT
},
411 { "_Sat", RID_SAT
, D_CONLY
| D_EXT
},
412 { "_Static_assert", RID_STATIC_ASSERT
, D_CONLY
},
413 { "__FUNCTION__", RID_FUNCTION_NAME
, 0 },
414 { "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME
, 0 },
415 { "__alignof", RID_ALIGNOF
, 0 },
416 { "__alignof__", RID_ALIGNOF
, 0 },
417 { "__asm", RID_ASM
, 0 },
418 { "__asm__", RID_ASM
, 0 },
419 { "__attribute", RID_ATTRIBUTE
, 0 },
420 { "__attribute__", RID_ATTRIBUTE
, 0 },
421 { "__builtin_choose_expr", RID_CHOOSE_EXPR
, D_CONLY
},
422 { "__builtin_offsetof", RID_OFFSETOF
, 0 },
423 { "__builtin_types_compatible_p", RID_TYPES_COMPATIBLE_P
, D_CONLY
},
424 { "__builtin_va_arg", RID_VA_ARG
, 0 },
425 { "__complex", RID_COMPLEX
, 0 },
426 { "__complex__", RID_COMPLEX
, 0 },
427 { "__const", RID_CONST
, 0 },
428 { "__const__", RID_CONST
, 0 },
429 { "__decltype", RID_DECLTYPE
, D_CXXONLY
},
430 { "__extension__", RID_EXTENSION
, 0 },
431 { "__func__", RID_C99_FUNCTION_NAME
, 0 },
432 { "__has_nothrow_assign", RID_HAS_NOTHROW_ASSIGN
, D_CXXONLY
},
433 { "__has_nothrow_constructor", RID_HAS_NOTHROW_CONSTRUCTOR
, D_CXXONLY
},
434 { "__has_nothrow_copy", RID_HAS_NOTHROW_COPY
, D_CXXONLY
},
435 { "__has_trivial_assign", RID_HAS_TRIVIAL_ASSIGN
, D_CXXONLY
},
436 { "__has_trivial_constructor", RID_HAS_TRIVIAL_CONSTRUCTOR
, D_CXXONLY
},
437 { "__has_trivial_copy", RID_HAS_TRIVIAL_COPY
, D_CXXONLY
},
438 { "__has_trivial_destructor", RID_HAS_TRIVIAL_DESTRUCTOR
, D_CXXONLY
},
439 { "__has_virtual_destructor", RID_HAS_VIRTUAL_DESTRUCTOR
, D_CXXONLY
},
440 { "__int128", RID_INT128
, 0 },
441 { "__is_abstract", RID_IS_ABSTRACT
, D_CXXONLY
},
442 { "__is_base_of", RID_IS_BASE_OF
, D_CXXONLY
},
443 { "__is_class", RID_IS_CLASS
, D_CXXONLY
},
444 { "__is_convertible_to", RID_IS_CONVERTIBLE_TO
, D_CXXONLY
},
445 { "__is_empty", RID_IS_EMPTY
, D_CXXONLY
},
446 { "__is_enum", RID_IS_ENUM
, D_CXXONLY
},
447 { "__is_pod", RID_IS_POD
, D_CXXONLY
},
448 { "__is_polymorphic", RID_IS_POLYMORPHIC
, D_CXXONLY
},
449 { "__is_standard_layout", RID_IS_STD_LAYOUT
, D_CXXONLY
},
450 { "__is_trivial", RID_IS_TRIVIAL
, D_CXXONLY
},
451 { "__is_union", RID_IS_UNION
, D_CXXONLY
},
452 { "__is_literal_type", RID_IS_LITERAL_TYPE
, D_CXXONLY
},
453 { "__imag", RID_IMAGPART
, 0 },
454 { "__imag__", RID_IMAGPART
, 0 },
455 { "__inline", RID_INLINE
, 0 },
456 { "__inline__", RID_INLINE
, 0 },
457 { "__label__", RID_LABEL
, 0 },
458 { "__null", RID_NULL
, 0 },
459 { "__real", RID_REALPART
, 0 },
460 { "__real__", RID_REALPART
, 0 },
461 { "__restrict", RID_RESTRICT
, 0 },
462 { "__restrict__", RID_RESTRICT
, 0 },
463 { "__signed", RID_SIGNED
, 0 },
464 { "__signed__", RID_SIGNED
, 0 },
465 { "__thread", RID_THREAD
, 0 },
466 { "__typeof", RID_TYPEOF
, 0 },
467 { "__typeof__", RID_TYPEOF
, 0 },
468 { "__volatile", RID_VOLATILE
, 0 },
469 { "__volatile__", RID_VOLATILE
, 0 },
470 { "alignof", RID_ALIGNOF
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
471 { "asm", RID_ASM
, D_ASM
},
472 { "auto", RID_AUTO
, 0 },
473 { "bool", RID_BOOL
, D_CXXONLY
| D_CXXWARN
},
474 { "break", RID_BREAK
, 0 },
475 { "case", RID_CASE
, 0 },
476 { "catch", RID_CATCH
, D_CXX_OBJC
| D_CXXWARN
},
477 { "char", RID_CHAR
, 0 },
478 { "char16_t", RID_CHAR16
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
479 { "char32_t", RID_CHAR32
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
480 { "class", RID_CLASS
, D_CXX_OBJC
| D_CXXWARN
},
481 { "const", RID_CONST
, 0 },
482 { "constexpr", RID_CONSTEXPR
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
483 { "const_cast", RID_CONSTCAST
, D_CXXONLY
| D_CXXWARN
},
484 { "continue", RID_CONTINUE
, 0 },
485 { "decltype", RID_DECLTYPE
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
486 { "default", RID_DEFAULT
, 0 },
487 { "delete", RID_DELETE
, D_CXXONLY
| D_CXXWARN
},
489 { "double", RID_DOUBLE
, 0 },
490 { "dynamic_cast", RID_DYNCAST
, D_CXXONLY
| D_CXXWARN
},
491 { "else", RID_ELSE
, 0 },
492 { "enum", RID_ENUM
, 0 },
493 { "explicit", RID_EXPLICIT
, D_CXXONLY
| D_CXXWARN
},
494 { "export", RID_EXPORT
, D_CXXONLY
| D_CXXWARN
},
495 { "extern", RID_EXTERN
, 0 },
496 { "false", RID_FALSE
, D_CXXONLY
| D_CXXWARN
},
497 { "float", RID_FLOAT
, 0 },
498 { "for", RID_FOR
, 0 },
499 { "friend", RID_FRIEND
, D_CXXONLY
| D_CXXWARN
},
500 { "goto", RID_GOTO
, 0 },
502 { "inline", RID_INLINE
, D_EXT89
},
503 { "int", RID_INT
, 0 },
504 { "long", RID_LONG
, 0 },
505 { "mutable", RID_MUTABLE
, D_CXXONLY
| D_CXXWARN
},
506 { "namespace", RID_NAMESPACE
, D_CXXONLY
| D_CXXWARN
},
507 { "new", RID_NEW
, D_CXXONLY
| D_CXXWARN
},
508 { "noexcept", RID_NOEXCEPT
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
509 { "nullptr", RID_NULLPTR
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
510 { "operator", RID_OPERATOR
, D_CXXONLY
| D_CXXWARN
},
511 { "private", RID_PRIVATE
, D_CXX_OBJC
| D_CXXWARN
},
512 { "protected", RID_PROTECTED
, D_CXX_OBJC
| D_CXXWARN
},
513 { "public", RID_PUBLIC
, D_CXX_OBJC
| D_CXXWARN
},
514 { "register", RID_REGISTER
, 0 },
515 { "reinterpret_cast", RID_REINTCAST
, D_CXXONLY
| D_CXXWARN
},
516 { "restrict", RID_RESTRICT
, D_CONLY
| D_C99
},
517 { "return", RID_RETURN
, 0 },
518 { "short", RID_SHORT
, 0 },
519 { "signed", RID_SIGNED
, 0 },
520 { "sizeof", RID_SIZEOF
, 0 },
521 { "static", RID_STATIC
, 0 },
522 { "static_assert", RID_STATIC_ASSERT
, D_CXXONLY
| D_CXX0X
| D_CXXWARN
},
523 { "static_cast", RID_STATCAST
, D_CXXONLY
| D_CXXWARN
},
524 { "struct", RID_STRUCT
, 0 },
525 { "switch", RID_SWITCH
, 0 },
526 { "template", RID_TEMPLATE
, D_CXXONLY
| D_CXXWARN
},
527 { "this", RID_THIS
, D_CXXONLY
| D_CXXWARN
},
528 { "throw", RID_THROW
, D_CXX_OBJC
| D_CXXWARN
},
529 { "true", RID_TRUE
, D_CXXONLY
| D_CXXWARN
},
530 { "try", RID_TRY
, D_CXX_OBJC
| D_CXXWARN
},
531 { "typedef", RID_TYPEDEF
, 0 },
532 { "typename", RID_TYPENAME
, D_CXXONLY
| D_CXXWARN
},
533 { "typeid", RID_TYPEID
, D_CXXONLY
| D_CXXWARN
},
534 { "typeof", RID_TYPEOF
, D_ASM
| D_EXT
},
535 { "union", RID_UNION
, 0 },
536 { "unsigned", RID_UNSIGNED
, 0 },
537 { "using", RID_USING
, D_CXXONLY
| D_CXXWARN
},
538 { "virtual", RID_VIRTUAL
, D_CXXONLY
| D_CXXWARN
},
539 { "void", RID_VOID
, 0 },
540 { "volatile", RID_VOLATILE
, 0 },
541 { "wchar_t", RID_WCHAR
, D_CXXONLY
},
542 { "while", RID_WHILE
, 0 },
543 /* These Objective-C keywords are recognized only immediately after
545 { "compatibility_alias", RID_AT_ALIAS
, D_OBJC
},
546 { "defs", RID_AT_DEFS
, D_OBJC
},
547 { "encode", RID_AT_ENCODE
, D_OBJC
},
548 { "end", RID_AT_END
, D_OBJC
},
549 { "implementation", RID_AT_IMPLEMENTATION
, D_OBJC
},
550 { "interface", RID_AT_INTERFACE
, D_OBJC
},
551 { "protocol", RID_AT_PROTOCOL
, D_OBJC
},
552 { "selector", RID_AT_SELECTOR
, D_OBJC
},
553 { "finally", RID_AT_FINALLY
, D_OBJC
},
554 { "synchronized", RID_AT_SYNCHRONIZED
, D_OBJC
},
555 { "optional", RID_AT_OPTIONAL
, D_OBJC
},
556 { "required", RID_AT_REQUIRED
, D_OBJC
},
557 { "property", RID_AT_PROPERTY
, D_OBJC
},
558 { "package", RID_AT_PACKAGE
, D_OBJC
},
559 { "synthesize", RID_AT_SYNTHESIZE
, D_OBJC
},
560 { "dynamic", RID_AT_DYNAMIC
, D_OBJC
},
561 /* These are recognized only in protocol-qualifier context
563 { "bycopy", RID_BYCOPY
, D_OBJC
},
564 { "byref", RID_BYREF
, D_OBJC
},
565 { "in", RID_IN
, D_OBJC
},
566 { "inout", RID_INOUT
, D_OBJC
},
567 { "oneway", RID_ONEWAY
, D_OBJC
},
568 { "out", RID_OUT
, D_OBJC
},
569 /* These are recognized inside a property attribute list */
570 { "assign", RID_ASSIGN
, D_OBJC
},
571 { "copy", RID_COPY
, D_OBJC
},
572 { "getter", RID_GETTER
, D_OBJC
},
573 { "nonatomic", RID_NONATOMIC
, D_OBJC
},
574 { "readonly", RID_READONLY
, D_OBJC
},
575 { "readwrite", RID_READWRITE
, D_OBJC
},
576 { "retain", RID_RETAIN
, D_OBJC
},
577 { "setter", RID_SETTER
, D_OBJC
},
580 const unsigned int num_c_common_reswords
=
581 sizeof c_common_reswords
/ sizeof (struct c_common_resword
);
583 /* Table of machine-independent attributes common to all C-like languages. */
584 const struct attribute_spec c_common_attribute_table
[] =
586 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
587 affects_type_identity } */
588 { "packed", 0, 0, false, false, false,
589 handle_packed_attribute
, false},
590 { "nocommon", 0, 0, true, false, false,
591 handle_nocommon_attribute
, false},
592 { "common", 0, 0, true, false, false,
593 handle_common_attribute
, false },
594 /* FIXME: logically, noreturn attributes should be listed as
595 "false, true, true" and apply to function types. But implementing this
596 would require all the places in the compiler that use TREE_THIS_VOLATILE
597 on a decl to identify non-returning functions to be located and fixed
598 to check the function type instead. */
599 { "noreturn", 0, 0, true, false, false,
600 handle_noreturn_attribute
, false },
601 { "volatile", 0, 0, true, false, false,
602 handle_noreturn_attribute
, false },
603 { "noinline", 0, 0, true, false, false,
604 handle_noinline_attribute
, false },
605 { "noclone", 0, 0, true, false, false,
606 handle_noclone_attribute
, false },
607 { "leaf", 0, 0, true, false, false,
608 handle_leaf_attribute
, false },
609 { "always_inline", 0, 0, true, false, false,
610 handle_always_inline_attribute
, false },
611 { "gnu_inline", 0, 0, true, false, false,
612 handle_gnu_inline_attribute
, false },
613 { "artificial", 0, 0, true, false, false,
614 handle_artificial_attribute
, false },
615 { "flatten", 0, 0, true, false, false,
616 handle_flatten_attribute
, false },
617 { "used", 0, 0, true, false, false,
618 handle_used_attribute
, false },
619 { "unused", 0, 0, false, false, false,
620 handle_unused_attribute
, false },
621 { "externally_visible", 0, 0, true, false, false,
622 handle_externally_visible_attribute
, false },
623 /* The same comments as for noreturn attributes apply to const ones. */
624 { "const", 0, 0, true, false, false,
625 handle_const_attribute
, false },
626 { "transparent_union", 0, 0, false, false, false,
627 handle_transparent_union_attribute
, false },
628 { "constructor", 0, 1, true, false, false,
629 handle_constructor_attribute
, false },
630 { "destructor", 0, 1, true, false, false,
631 handle_destructor_attribute
, false },
632 { "mode", 1, 1, false, true, false,
633 handle_mode_attribute
, false },
634 { "section", 1, 1, true, false, false,
635 handle_section_attribute
, false },
636 { "aligned", 0, 1, false, false, false,
637 handle_aligned_attribute
, false },
638 { "weak", 0, 0, true, false, false,
639 handle_weak_attribute
, false },
640 { "ifunc", 1, 1, true, false, false,
641 handle_ifunc_attribute
, false },
642 { "alias", 1, 1, true, false, false,
643 handle_alias_attribute
, false },
644 { "weakref", 0, 1, true, false, false,
645 handle_weakref_attribute
, false },
646 { "no_instrument_function", 0, 0, true, false, false,
647 handle_no_instrument_function_attribute
,
649 { "malloc", 0, 0, true, false, false,
650 handle_malloc_attribute
, false },
651 { "returns_twice", 0, 0, true, false, false,
652 handle_returns_twice_attribute
, false },
653 { "no_stack_limit", 0, 0, true, false, false,
654 handle_no_limit_stack_attribute
, false },
655 { "pure", 0, 0, true, false, false,
656 handle_pure_attribute
, false },
657 /* For internal use (marking of builtins) only. The name contains space
658 to prevent its usage in source code. */
659 { "no vops", 0, 0, true, false, false,
660 handle_novops_attribute
, false },
661 { "deprecated", 0, 1, false, false, false,
662 handle_deprecated_attribute
, false },
663 { "vector_size", 1, 1, false, true, false,
664 handle_vector_size_attribute
, false },
665 { "visibility", 1, 1, false, false, false,
666 handle_visibility_attribute
, false },
667 { "tls_model", 1, 1, true, false, false,
668 handle_tls_model_attribute
, false },
669 { "nonnull", 0, -1, false, true, true,
670 handle_nonnull_attribute
, false },
671 { "nothrow", 0, 0, true, false, false,
672 handle_nothrow_attribute
, false },
673 { "may_alias", 0, 0, false, true, false, NULL
, false },
674 { "cleanup", 1, 1, true, false, false,
675 handle_cleanup_attribute
, false },
676 { "warn_unused_result", 0, 0, false, true, true,
677 handle_warn_unused_result_attribute
, false },
678 { "sentinel", 0, 1, false, true, true,
679 handle_sentinel_attribute
, false },
680 /* For internal use (marking of builtins) only. The name contains space
681 to prevent its usage in source code. */
682 { "type generic", 0, 0, false, true, true,
683 handle_type_generic_attribute
, false },
684 { "alloc_size", 1, 2, false, true, true,
685 handle_alloc_size_attribute
, false },
686 { "cold", 0, 0, true, false, false,
687 handle_cold_attribute
, false },
688 { "hot", 0, 0, true, false, false,
689 handle_hot_attribute
, false },
690 { "warning", 1, 1, true, false, false,
691 handle_error_attribute
, false },
692 { "error", 1, 1, true, false, false,
693 handle_error_attribute
, false },
694 { "target", 1, -1, true, false, false,
695 handle_target_attribute
, false },
696 { "optimize", 1, -1, true, false, false,
697 handle_optimize_attribute
, false },
698 { "no_split_stack", 0, 0, true, false, false,
699 handle_no_split_stack_attribute
, false },
700 /* For internal use (marking of builtins and runtime functions) only.
701 The name contains space to prevent its usage in source code. */
702 { "fn spec", 1, 1, false, true, true,
703 handle_fnspec_attribute
, false },
704 { NULL
, 0, 0, false, false, false, NULL
, false }
707 /* Give the specifications for the format attributes, used by C and all
710 const struct attribute_spec c_common_format_attribute_table
[] =
712 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
713 affects_type_identity } */
714 { "format", 3, 3, false, true, true,
715 handle_format_attribute
, false },
716 { "format_arg", 1, 1, false, true, true,
717 handle_format_arg_attribute
, false },
718 { NULL
, 0, 0, false, false, false, NULL
, false }
721 /* Return identifier for address space AS. */
724 c_addr_space_name (addr_space_t as
)
726 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
727 gcc_assert (ridpointers
[rid
]);
728 return IDENTIFIER_POINTER (ridpointers
[rid
]);
731 /* Push current bindings for the function name VAR_DECLS. */
734 start_fname_decls (void)
737 tree saved
= NULL_TREE
;
739 for (ix
= 0; fname_vars
[ix
].decl
; ix
++)
741 tree decl
= *fname_vars
[ix
].decl
;
745 saved
= tree_cons (decl
, build_int_cst (NULL_TREE
, ix
), saved
);
746 *fname_vars
[ix
].decl
= NULL_TREE
;
749 if (saved
|| saved_function_name_decls
)
750 /* Normally they'll have been NULL, so only push if we've got a
751 stack, or they are non-NULL. */
752 saved_function_name_decls
= tree_cons (saved
, NULL_TREE
,
753 saved_function_name_decls
);
756 /* Finish up the current bindings, adding them into the current function's
757 statement tree. This must be done _before_ finish_stmt_tree is called.
758 If there is no current function, we must be at file scope and no statements
759 are involved. Pop the previous bindings. */
762 finish_fname_decls (void)
765 tree stmts
= NULL_TREE
;
766 tree stack
= saved_function_name_decls
;
768 for (; stack
&& TREE_VALUE (stack
); stack
= TREE_CHAIN (stack
))
769 append_to_statement_list (TREE_VALUE (stack
), &stmts
);
773 tree
*bodyp
= &DECL_SAVED_TREE (current_function_decl
);
775 if (TREE_CODE (*bodyp
) == BIND_EXPR
)
776 bodyp
= &BIND_EXPR_BODY (*bodyp
);
778 append_to_statement_list_force (*bodyp
, &stmts
);
782 for (ix
= 0; fname_vars
[ix
].decl
; ix
++)
783 *fname_vars
[ix
].decl
= NULL_TREE
;
787 /* We had saved values, restore them. */
790 for (saved
= TREE_PURPOSE (stack
); saved
; saved
= TREE_CHAIN (saved
))
792 tree decl
= TREE_PURPOSE (saved
);
793 unsigned ix
= TREE_INT_CST_LOW (TREE_VALUE (saved
));
795 *fname_vars
[ix
].decl
= decl
;
797 stack
= TREE_CHAIN (stack
);
799 saved_function_name_decls
= stack
;
802 /* Return the text name of the current function, suitably prettified
803 by PRETTY_P. Return string must be freed by caller. */
806 fname_as_string (int pretty_p
)
808 const char *name
= "top level";
811 cpp_string cstr
= { 0, 0 }, strname
;
819 if (current_function_decl
)
820 name
= lang_hooks
.decl_printable_name (current_function_decl
, vrb
);
822 len
= strlen (name
) + 3; /* Two for '"'s. One for NULL. */
824 namep
= XNEWVEC (char, len
);
825 snprintf (namep
, len
, "\"%s\"", name
);
826 strname
.text
= (unsigned char *) namep
;
827 strname
.len
= len
- 1;
829 if (cpp_interpret_string (parse_in
, &strname
, 1, &cstr
, CPP_STRING
))
832 return (const char *) cstr
.text
;
838 /* Return the VAR_DECL for a const char array naming the current
839 function. If the VAR_DECL has not yet been created, create it
840 now. RID indicates how it should be formatted and IDENTIFIER_NODE
841 ID is its name (unfortunately C and C++ hold the RID values of
842 keywords in different places, so we can't derive RID from ID in
843 this language independent code. LOC is the location of the
847 fname_decl (location_t loc
, unsigned int rid
, tree id
)
850 tree decl
= NULL_TREE
;
852 for (ix
= 0; fname_vars
[ix
].decl
; ix
++)
853 if (fname_vars
[ix
].rid
== rid
)
856 decl
= *fname_vars
[ix
].decl
;
859 /* If a tree is built here, it would normally have the lineno of
860 the current statement. Later this tree will be moved to the
861 beginning of the function and this line number will be wrong.
862 To avoid this problem set the lineno to 0 here; that prevents
863 it from appearing in the RTL. */
865 location_t saved_location
= input_location
;
866 input_location
= UNKNOWN_LOCATION
;
868 stmts
= push_stmt_list ();
869 decl
= (*make_fname_decl
) (loc
, id
, fname_vars
[ix
].pretty
);
870 stmts
= pop_stmt_list (stmts
);
871 if (!IS_EMPTY_STMT (stmts
))
872 saved_function_name_decls
873 = tree_cons (decl
, stmts
, saved_function_name_decls
);
874 *fname_vars
[ix
].decl
= decl
;
875 input_location
= saved_location
;
877 if (!ix
&& !current_function_decl
)
878 pedwarn (loc
, 0, "%qD is not defined outside of function scope", decl
);
883 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
886 fix_string_type (tree value
)
888 int length
= TREE_STRING_LENGTH (value
);
890 tree e_type
, i_type
, a_type
;
892 /* Compute the number of elements, for the array type. */
893 if (TREE_TYPE (value
) == char_array_type_node
|| !TREE_TYPE (value
))
896 e_type
= char_type_node
;
898 else if (TREE_TYPE (value
) == char16_array_type_node
)
900 nchars
= length
/ (TYPE_PRECISION (char16_type_node
) / BITS_PER_UNIT
);
901 e_type
= char16_type_node
;
903 else if (TREE_TYPE (value
) == char32_array_type_node
)
905 nchars
= length
/ (TYPE_PRECISION (char32_type_node
) / BITS_PER_UNIT
);
906 e_type
= char32_type_node
;
910 nchars
= length
/ (TYPE_PRECISION (wchar_type_node
) / BITS_PER_UNIT
);
911 e_type
= wchar_type_node
;
914 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
915 limit in C++98 Annex B is very large (65536) and is not normative,
916 so we do not diagnose it (warn_overlength_strings is forced off
917 in c_common_post_options). */
918 if (warn_overlength_strings
)
920 const int nchars_max
= flag_isoc99
? 4095 : 509;
921 const int relevant_std
= flag_isoc99
? 99 : 90;
922 if (nchars
- 1 > nchars_max
)
923 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
924 separate the %d from the 'C'. 'ISO' should not be
925 translated, but it may be moved after 'C%d' in languages
926 where modifiers follow nouns. */
927 pedwarn (input_location
, OPT_Woverlength_strings
,
928 "string length %qd is greater than the length %qd "
929 "ISO C%d compilers are required to support",
930 nchars
- 1, nchars_max
, relevant_std
);
933 /* Create the array type for the string constant. The ISO C++
934 standard says that a string literal has type `const char[N]' or
935 `const wchar_t[N]'. We use the same logic when invoked as a C
936 front-end with -Wwrite-strings.
937 ??? We should change the type of an expression depending on the
938 state of a warning flag. We should just be warning -- see how
939 this is handled in the C++ front-end for the deprecated implicit
940 conversion from string literals to `char*' or `wchar_t*'.
942 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
943 array type being the unqualified version of that type.
944 Therefore, if we are constructing an array of const char, we must
945 construct the matching unqualified array type first. The C front
946 end does not require this, but it does no harm, so we do it
948 i_type
= build_index_type (build_int_cst (NULL_TREE
, nchars
- 1));
949 a_type
= build_array_type (e_type
, i_type
);
950 if (c_dialect_cxx() || warn_write_strings
)
951 a_type
= c_build_qualified_type (a_type
, TYPE_QUAL_CONST
);
953 TREE_TYPE (value
) = a_type
;
954 TREE_CONSTANT (value
) = 1;
955 TREE_READONLY (value
) = 1;
956 TREE_STATIC (value
) = 1;
960 /* Fully fold EXPR, an expression that was not folded (beyond integer
961 constant expressions and null pointer constants) when being built
962 up. If IN_INIT, this is in a static initializer and certain
963 changes are made to the folding done. Clear *MAYBE_CONST if
964 MAYBE_CONST is not NULL and EXPR is definitely not a constant
965 expression because it contains an evaluated operator (in C99) or an
966 operator outside of sizeof returning an integer constant (in C90)
967 not permitted in constant expressions, or because it contains an
968 evaluated arithmetic overflow. (*MAYBE_CONST should typically be
969 set to true by callers before calling this function.) Return the
970 folded expression. Function arguments have already been folded
971 before calling this function, as have the contents of SAVE_EXPR,
972 TARGET_EXPR, BIND_EXPR, VA_ARG_EXPR, OBJ_TYPE_REF and
973 C_MAYBE_CONST_EXPR. */
976 c_fully_fold (tree expr
, bool in_init
, bool *maybe_const
)
979 tree eptype
= NULL_TREE
;
981 bool maybe_const_itself
= true;
982 location_t loc
= EXPR_LOCATION (expr
);
984 /* This function is not relevant to C++ because C++ folds while
985 parsing, and may need changes to be correct for C++ when C++
986 stops folding while parsing. */
987 if (c_dialect_cxx ())
991 maybe_const
= &dummy
;
992 if (TREE_CODE (expr
) == EXCESS_PRECISION_EXPR
)
994 eptype
= TREE_TYPE (expr
);
995 expr
= TREE_OPERAND (expr
, 0);
997 ret
= c_fully_fold_internal (expr
, in_init
, maybe_const
,
998 &maybe_const_itself
);
1000 ret
= fold_convert_loc (loc
, eptype
, ret
);
1001 *maybe_const
&= maybe_const_itself
;
1005 /* Internal helper for c_fully_fold. EXPR and IN_INIT are as for
1006 c_fully_fold. *MAYBE_CONST_OPERANDS is cleared because of operands
1007 not permitted, while *MAYBE_CONST_ITSELF is cleared because of
1008 arithmetic overflow (for C90, *MAYBE_CONST_OPERANDS is carried from
1009 both evaluated and unevaluated subexpressions while
1010 *MAYBE_CONST_ITSELF is carried from only evaluated
1014 c_fully_fold_internal (tree expr
, bool in_init
, bool *maybe_const_operands
,
1015 bool *maybe_const_itself
)
1018 enum tree_code code
= TREE_CODE (expr
);
1019 enum tree_code_class kind
= TREE_CODE_CLASS (code
);
1020 location_t loc
= EXPR_LOCATION (expr
);
1021 tree op0
, op1
, op2
, op3
;
1022 tree orig_op0
, orig_op1
, orig_op2
;
1023 bool op0_const
= true, op1_const
= true, op2_const
= true;
1024 bool op0_const_self
= true, op1_const_self
= true, op2_const_self
= true;
1025 bool nowarning
= TREE_NO_WARNING (expr
);
1028 /* This function is not relevant to C++ because C++ folds while
1029 parsing, and may need changes to be correct for C++ when C++
1030 stops folding while parsing. */
1031 if (c_dialect_cxx ())
1034 /* Constants, declarations, statements, errors, SAVE_EXPRs and
1035 anything else not counted as an expression cannot usefully be
1036 folded further at this point. */
1037 if (!IS_EXPR_CODE_CLASS (kind
)
1038 || kind
== tcc_statement
1039 || code
== SAVE_EXPR
)
1042 /* Operands of variable-length expressions (function calls) have
1043 already been folded, as have __builtin_* function calls, and such
1044 expressions cannot occur in constant expressions. */
1045 if (kind
== tcc_vl_exp
)
1047 *maybe_const_operands
= false;
1052 if (code
== C_MAYBE_CONST_EXPR
)
1054 tree pre
= C_MAYBE_CONST_EXPR_PRE (expr
);
1055 tree inner
= C_MAYBE_CONST_EXPR_EXPR (expr
);
1056 if (C_MAYBE_CONST_EXPR_NON_CONST (expr
))
1057 *maybe_const_operands
= false;
1058 if (C_MAYBE_CONST_EXPR_INT_OPERANDS (expr
))
1059 *maybe_const_itself
= false;
1060 if (pre
&& !in_init
)
1061 ret
= build2 (COMPOUND_EXPR
, TREE_TYPE (expr
), pre
, inner
);
1067 /* Assignment, increment, decrement, function call and comma
1068 operators, and statement expressions, cannot occur in constant
1069 expressions if evaluated / outside of sizeof. (Function calls
1070 were handled above, though VA_ARG_EXPR is treated like a function
1071 call here, and statement expressions are handled through
1072 C_MAYBE_CONST_EXPR to avoid folding inside them.) */
1076 case PREDECREMENT_EXPR
:
1077 case PREINCREMENT_EXPR
:
1078 case POSTDECREMENT_EXPR
:
1079 case POSTINCREMENT_EXPR
:
1081 *maybe_const_operands
= false;
1088 *maybe_const_operands
= false;
1096 /* Fold individual tree codes as appropriate. */
1099 case COMPOUND_LITERAL_EXPR
:
1100 /* Any non-constancy will have been marked in a containing
1101 C_MAYBE_CONST_EXPR; there is no more folding to do here. */
1105 orig_op0
= op0
= TREE_OPERAND (expr
, 0);
1106 op1
= TREE_OPERAND (expr
, 1);
1107 op2
= TREE_OPERAND (expr
, 2);
1108 op0
= c_fully_fold_internal (op0
, in_init
, maybe_const_operands
,
1109 maybe_const_itself
);
1110 STRIP_TYPE_NOPS (op0
);
1111 if (op0
!= orig_op0
)
1112 ret
= build3 (COMPONENT_REF
, TREE_TYPE (expr
), op0
, op1
, op2
);
1115 TREE_READONLY (ret
) = TREE_READONLY (expr
);
1116 TREE_THIS_VOLATILE (ret
) = TREE_THIS_VOLATILE (expr
);
1121 orig_op0
= op0
= TREE_OPERAND (expr
, 0);
1122 orig_op1
= op1
= TREE_OPERAND (expr
, 1);
1123 op2
= TREE_OPERAND (expr
, 2);
1124 op3
= TREE_OPERAND (expr
, 3);
1125 op0
= c_fully_fold_internal (op0
, in_init
, maybe_const_operands
,
1126 maybe_const_itself
);
1127 STRIP_TYPE_NOPS (op0
);
1128 op1
= c_fully_fold_internal (op1
, in_init
, maybe_const_operands
,
1129 maybe_const_itself
);
1130 STRIP_TYPE_NOPS (op1
);
1131 op1
= decl_constant_value_for_optimization (op1
);
1132 if (op0
!= orig_op0
|| op1
!= orig_op1
)
1133 ret
= build4 (ARRAY_REF
, TREE_TYPE (expr
), op0
, op1
, op2
, op3
);
1136 TREE_READONLY (ret
) = TREE_READONLY (expr
);
1137 TREE_SIDE_EFFECTS (ret
) = TREE_SIDE_EFFECTS (expr
);
1138 TREE_THIS_VOLATILE (ret
) = TREE_THIS_VOLATILE (expr
);
1145 case PREDECREMENT_EXPR
:
1146 case PREINCREMENT_EXPR
:
1147 case POSTDECREMENT_EXPR
:
1148 case POSTINCREMENT_EXPR
:
1152 case POINTER_PLUS_EXPR
:
1153 case TRUNC_DIV_EXPR
:
1155 case FLOOR_DIV_EXPR
:
1156 case TRUNC_MOD_EXPR
:
1158 case EXACT_DIV_EXPR
:
1171 case TRUTH_AND_EXPR
:
1173 case TRUTH_XOR_EXPR
:
1174 case UNORDERED_EXPR
:
1181 /* Binary operations evaluating both arguments (increment and
1182 decrement are binary internally in GCC). */
1183 orig_op0
= op0
= TREE_OPERAND (expr
, 0);
1184 orig_op1
= op1
= TREE_OPERAND (expr
, 1);
1185 op0
= c_fully_fold_internal (op0
, in_init
, maybe_const_operands
,
1186 maybe_const_itself
);
1187 STRIP_TYPE_NOPS (op0
);
1188 if (code
!= MODIFY_EXPR
1189 && code
!= PREDECREMENT_EXPR
1190 && code
!= PREINCREMENT_EXPR
1191 && code
!= POSTDECREMENT_EXPR
1192 && code
!= POSTINCREMENT_EXPR
)
1193 op0
= decl_constant_value_for_optimization (op0
);
1194 /* The RHS of a MODIFY_EXPR was fully folded when building that
1195 expression for the sake of conversion warnings. */
1196 if (code
!= MODIFY_EXPR
)
1197 op1
= c_fully_fold_internal (op1
, in_init
, maybe_const_operands
,
1198 maybe_const_itself
);
1199 STRIP_TYPE_NOPS (op1
);
1200 op1
= decl_constant_value_for_optimization (op1
);
1201 if (op0
!= orig_op0
|| op1
!= orig_op1
|| in_init
)
1203 ? fold_build2_initializer_loc (loc
, code
, TREE_TYPE (expr
), op0
, op1
)
1204 : fold_build2_loc (loc
, code
, TREE_TYPE (expr
), op0
, op1
);
1207 if (TREE_OVERFLOW_P (ret
)
1208 && !TREE_OVERFLOW_P (op0
)
1209 && !TREE_OVERFLOW_P (op1
))
1210 overflow_warning (EXPR_LOCATION (expr
), ret
);
1214 case FIX_TRUNC_EXPR
:
1217 case VIEW_CONVERT_EXPR
:
1218 case NON_LVALUE_EXPR
:
1221 case TRUTH_NOT_EXPR
:
1226 /* Unary operations. */
1227 orig_op0
= op0
= TREE_OPERAND (expr
, 0);
1228 op0
= c_fully_fold_internal (op0
, in_init
, maybe_const_operands
,
1229 maybe_const_itself
);
1230 STRIP_TYPE_NOPS (op0
);
1231 if (code
!= ADDR_EXPR
&& code
!= REALPART_EXPR
&& code
!= IMAGPART_EXPR
)
1232 op0
= decl_constant_value_for_optimization (op0
);
1233 if (op0
!= orig_op0
|| in_init
)
1235 ? fold_build1_initializer_loc (loc
, code
, TREE_TYPE (expr
), op0
)
1236 : fold_build1_loc (loc
, code
, TREE_TYPE (expr
), op0
);
1239 if (code
== INDIRECT_REF
1241 && TREE_CODE (ret
) == INDIRECT_REF
)
1243 TREE_READONLY (ret
) = TREE_READONLY (expr
);
1244 TREE_SIDE_EFFECTS (ret
) = TREE_SIDE_EFFECTS (expr
);
1245 TREE_THIS_VOLATILE (ret
) = TREE_THIS_VOLATILE (expr
);
1249 case FIX_TRUNC_EXPR
:
1252 /* Don't warn about explicit conversions. We will already
1253 have warned about suspect implicit conversions. */
1257 if (TREE_OVERFLOW_P (ret
) && !TREE_OVERFLOW_P (op0
))
1258 overflow_warning (EXPR_LOCATION (expr
), ret
);
1263 case TRUTH_ANDIF_EXPR
:
1264 case TRUTH_ORIF_EXPR
:
1265 /* Binary operations not necessarily evaluating both
1267 orig_op0
= op0
= TREE_OPERAND (expr
, 0);
1268 orig_op1
= op1
= TREE_OPERAND (expr
, 1);
1269 op0
= c_fully_fold_internal (op0
, in_init
, &op0_const
, &op0_const_self
);
1270 STRIP_TYPE_NOPS (op0
);
1272 unused_p
= (op0
== (code
== TRUTH_ANDIF_EXPR
1273 ? truthvalue_false_node
1274 : truthvalue_true_node
));
1275 c_inhibit_evaluation_warnings
+= unused_p
;
1276 op1
= c_fully_fold_internal (op1
, in_init
, &op1_const
, &op1_const_self
);
1277 STRIP_TYPE_NOPS (op1
);
1278 c_inhibit_evaluation_warnings
-= unused_p
;
1280 if (op0
!= orig_op0
|| op1
!= orig_op1
|| in_init
)
1282 ? fold_build2_initializer_loc (loc
, code
, TREE_TYPE (expr
), op0
, op1
)
1283 : fold_build2_loc (loc
, code
, TREE_TYPE (expr
), op0
, op1
);
1286 *maybe_const_operands
&= op0_const
;
1287 *maybe_const_itself
&= op0_const_self
;
1291 && (code
== TRUTH_ANDIF_EXPR
1292 ? op0
== truthvalue_false_node
1293 : op0
== truthvalue_true_node
)))
1294 *maybe_const_operands
&= op1_const
;
1297 && (code
== TRUTH_ANDIF_EXPR
1298 ? op0
== truthvalue_false_node
1299 : op0
== truthvalue_true_node
)))
1300 *maybe_const_itself
&= op1_const_self
;
1304 orig_op0
= op0
= TREE_OPERAND (expr
, 0);
1305 orig_op1
= op1
= TREE_OPERAND (expr
, 1);
1306 orig_op2
= op2
= TREE_OPERAND (expr
, 2);
1307 op0
= c_fully_fold_internal (op0
, in_init
, &op0_const
, &op0_const_self
);
1309 STRIP_TYPE_NOPS (op0
);
1310 c_inhibit_evaluation_warnings
+= (op0
== truthvalue_false_node
);
1311 op1
= c_fully_fold_internal (op1
, in_init
, &op1_const
, &op1_const_self
);
1312 STRIP_TYPE_NOPS (op1
);
1313 c_inhibit_evaluation_warnings
-= (op0
== truthvalue_false_node
);
1315 c_inhibit_evaluation_warnings
+= (op0
== truthvalue_true_node
);
1316 op2
= c_fully_fold_internal (op2
, in_init
, &op2_const
, &op2_const_self
);
1317 STRIP_TYPE_NOPS (op2
);
1318 c_inhibit_evaluation_warnings
-= (op0
== truthvalue_true_node
);
1320 if (op0
!= orig_op0
|| op1
!= orig_op1
|| op2
!= orig_op2
)
1321 ret
= fold_build3_loc (loc
, code
, TREE_TYPE (expr
), op0
, op1
, op2
);
1324 *maybe_const_operands
&= op0_const
;
1325 *maybe_const_itself
&= op0_const_self
;
1329 && op0
== truthvalue_false_node
))
1330 *maybe_const_operands
&= op1_const
;
1333 && op0
== truthvalue_false_node
))
1334 *maybe_const_itself
&= op1_const_self
;
1338 && op0
== truthvalue_true_node
))
1339 *maybe_const_operands
&= op2_const
;
1342 && op0
== truthvalue_true_node
))
1343 *maybe_const_itself
&= op2_const_self
;
1346 case EXCESS_PRECISION_EXPR
:
1347 /* Each case where an operand with excess precision may be
1348 encountered must remove the EXCESS_PRECISION_EXPR around
1349 inner operands and possibly put one around the whole
1350 expression or possibly convert to the semantic type (which
1351 c_fully_fold does); we cannot tell at this stage which is
1352 appropriate in any particular case. */
1356 /* Various codes may appear through folding built-in functions
1357 and their arguments. */
1362 /* Some folding may introduce NON_LVALUE_EXPRs; all lvalue checks
1363 have been done by this point, so remove them again. */
1364 nowarning
|= TREE_NO_WARNING (ret
);
1365 STRIP_TYPE_NOPS (ret
);
1366 if (nowarning
&& !TREE_NO_WARNING (ret
))
1368 if (!CAN_HAVE_LOCATION_P (ret
))
1369 ret
= build1 (NOP_EXPR
, TREE_TYPE (ret
), ret
);
1370 TREE_NO_WARNING (ret
) = 1;
1373 protected_set_expr_location (ret
, loc
);
1377 /* If not optimizing, EXP is not a VAR_DECL, or EXP has array type,
1378 return EXP. Otherwise, return either EXP or its known constant
1379 value (if it has one), but return EXP if EXP has mode BLKmode. ???
1380 Is the BLKmode test appropriate? */
1383 decl_constant_value_for_optimization (tree exp
)
1387 /* This function is only used by C, for c_fully_fold and other
1388 optimization, and may not be correct for C++. */
1389 if (c_dialect_cxx ())
1393 || TREE_CODE (exp
) != VAR_DECL
1394 || TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
1395 || DECL_MODE (exp
) == BLKmode
)
1398 ret
= decl_constant_value (exp
);
1399 /* Avoid unwanted tree sharing between the initializer and current
1400 function's body where the tree can be modified e.g. by the
1402 if (ret
!= exp
&& TREE_STATIC (exp
))
1403 ret
= unshare_expr (ret
);
1407 /* Print a warning if a constant expression had overflow in folding.
1408 Invoke this function on every expression that the language
1409 requires to be a constant expression.
1410 Note the ANSI C standard says it is erroneous for a
1411 constant expression to overflow. */
1414 constant_expression_warning (tree value
)
1416 if (warn_overflow
&& pedantic
1417 && (TREE_CODE (value
) == INTEGER_CST
|| TREE_CODE (value
) == REAL_CST
1418 || TREE_CODE (value
) == FIXED_CST
1419 || TREE_CODE (value
) == VECTOR_CST
1420 || TREE_CODE (value
) == COMPLEX_CST
)
1421 && TREE_OVERFLOW (value
))
1422 pedwarn (input_location
, OPT_Woverflow
, "overflow in constant expression");
1425 /* The same as above but print an unconditional error. */
1427 constant_expression_error (tree value
)
1429 if ((TREE_CODE (value
) == INTEGER_CST
|| TREE_CODE (value
) == REAL_CST
1430 || TREE_CODE (value
) == FIXED_CST
1431 || TREE_CODE (value
) == VECTOR_CST
1432 || TREE_CODE (value
) == COMPLEX_CST
)
1433 && TREE_OVERFLOW (value
))
1434 error ("overflow in constant expression");
1437 /* Print a warning if an expression had overflow in folding and its
1440 Invoke this function on every expression that
1441 (1) appears in the source code, and
1442 (2) is a constant expression that overflowed, and
1443 (3) is not already checked by convert_and_check;
1444 however, do not invoke this function on operands of explicit casts
1445 or when the expression is the result of an operator and any operand
1446 already overflowed. */
1449 overflow_warning (location_t loc
, tree value
)
1451 if (c_inhibit_evaluation_warnings
!= 0)
1454 switch (TREE_CODE (value
))
1457 warning_at (loc
, OPT_Woverflow
, "integer overflow in expression");
1461 warning_at (loc
, OPT_Woverflow
,
1462 "floating point overflow in expression");
1466 warning_at (loc
, OPT_Woverflow
, "fixed-point overflow in expression");
1470 warning_at (loc
, OPT_Woverflow
, "vector overflow in expression");
1474 if (TREE_CODE (TREE_REALPART (value
)) == INTEGER_CST
)
1475 warning_at (loc
, OPT_Woverflow
,
1476 "complex integer overflow in expression");
1477 else if (TREE_CODE (TREE_REALPART (value
)) == REAL_CST
)
1478 warning_at (loc
, OPT_Woverflow
,
1479 "complex floating point overflow in expression");
1487 /* Warn about uses of logical || / && operator in a context where it
1488 is likely that the bitwise equivalent was intended by the
1489 programmer. We have seen an expression in which CODE is a binary
1490 operator used to combine expressions OP_LEFT and OP_RIGHT, which before folding
1491 had CODE_LEFT and CODE_RIGHT, into an expression of type TYPE. */
1493 warn_logical_operator (location_t location
, enum tree_code code
, tree type
,
1494 enum tree_code code_left
, tree op_left
,
1495 enum tree_code
ARG_UNUSED (code_right
), tree op_right
)
1497 int or_op
= (code
== TRUTH_ORIF_EXPR
|| code
== TRUTH_OR_EXPR
);
1498 int in0_p
, in1_p
, in_p
;
1499 tree low0
, low1
, low
, high0
, high1
, high
, lhs
, rhs
, tem
;
1500 bool strict_overflow_p
= false;
1502 if (code
!= TRUTH_ANDIF_EXPR
1503 && code
!= TRUTH_AND_EXPR
1504 && code
!= TRUTH_ORIF_EXPR
1505 && code
!= TRUTH_OR_EXPR
)
1508 /* Warn if &&/|| are being used in a context where it is
1509 likely that the bitwise equivalent was intended by the
1510 programmer. That is, an expression such as op && MASK
1511 where op should not be any boolean expression, nor a
1512 constant, and mask seems to be a non-boolean integer constant. */
1513 if (!truth_value_p (code_left
)
1514 && INTEGRAL_TYPE_P (TREE_TYPE (op_left
))
1515 && !CONSTANT_CLASS_P (op_left
)
1516 && !TREE_NO_WARNING (op_left
)
1517 && TREE_CODE (op_right
) == INTEGER_CST
1518 && !integer_zerop (op_right
)
1519 && !integer_onep (op_right
))
1522 warning_at (location
, OPT_Wlogical_op
, "logical %<or%>"
1523 " applied to non-boolean constant");
1525 warning_at (location
, OPT_Wlogical_op
, "logical %<and%>"
1526 " applied to non-boolean constant");
1527 TREE_NO_WARNING (op_left
) = true;
1531 /* We do not warn for constants because they are typical of macro
1532 expansions that test for features. */
1533 if (CONSTANT_CLASS_P (op_left
) || CONSTANT_CLASS_P (op_right
))
1536 /* This warning only makes sense with logical operands. */
1537 if (!(truth_value_p (TREE_CODE (op_left
))
1538 || INTEGRAL_TYPE_P (TREE_TYPE (op_left
)))
1539 || !(truth_value_p (TREE_CODE (op_right
))
1540 || INTEGRAL_TYPE_P (TREE_TYPE (op_right
))))
1543 lhs
= make_range (op_left
, &in0_p
, &low0
, &high0
, &strict_overflow_p
);
1544 rhs
= make_range (op_right
, &in1_p
, &low1
, &high1
, &strict_overflow_p
);
1546 if (lhs
&& TREE_CODE (lhs
) == C_MAYBE_CONST_EXPR
)
1547 lhs
= C_MAYBE_CONST_EXPR_EXPR (lhs
);
1549 if (rhs
&& TREE_CODE (rhs
) == C_MAYBE_CONST_EXPR
)
1550 rhs
= C_MAYBE_CONST_EXPR_EXPR (rhs
);
1552 /* If this is an OR operation, invert both sides; we will invert
1553 again at the end. */
1555 in0_p
= !in0_p
, in1_p
= !in1_p
;
1557 /* If both expressions are the same, if we can merge the ranges, and we
1558 can build the range test, return it or it inverted. */
1559 if (lhs
&& rhs
&& operand_equal_p (lhs
, rhs
, 0)
1560 && merge_ranges (&in_p
, &low
, &high
, in0_p
, low0
, high0
,
1562 && 0 != (tem
= build_range_check (UNKNOWN_LOCATION
,
1563 type
, lhs
, in_p
, low
, high
)))
1565 if (TREE_CODE (tem
) != INTEGER_CST
)
1569 warning_at (location
, OPT_Wlogical_op
,
1571 "of collectively exhaustive tests is always true");
1573 warning_at (location
, OPT_Wlogical_op
,
1575 "of mutually exclusive tests is always false");
1580 /* Print a warning about casts that might indicate violation
1581 of strict aliasing rules if -Wstrict-aliasing is used and
1582 strict aliasing mode is in effect. OTYPE is the original
1583 TREE_TYPE of EXPR, and TYPE the type we're casting to. */
1586 strict_aliasing_warning (tree otype
, tree type
, tree expr
)
1588 /* Strip pointer conversion chains and get to the correct original type. */
1590 otype
= TREE_TYPE (expr
);
1592 if (!(flag_strict_aliasing
1593 && POINTER_TYPE_P (type
)
1594 && POINTER_TYPE_P (otype
)
1595 && !VOID_TYPE_P (TREE_TYPE (type
)))
1596 /* If the type we are casting to is a ref-all pointer
1597 dereferencing it is always valid. */
1598 || TYPE_REF_CAN_ALIAS_ALL (type
))
1601 if ((warn_strict_aliasing
> 1) && TREE_CODE (expr
) == ADDR_EXPR
1602 && (DECL_P (TREE_OPERAND (expr
, 0))
1603 || handled_component_p (TREE_OPERAND (expr
, 0))))
1605 /* Casting the address of an object to non void pointer. Warn
1606 if the cast breaks type based aliasing. */
1607 if (!COMPLETE_TYPE_P (TREE_TYPE (type
)) && warn_strict_aliasing
== 2)
1609 warning (OPT_Wstrict_aliasing
, "type-punning to incomplete type "
1610 "might break strict-aliasing rules");
1615 /* warn_strict_aliasing >= 3. This includes the default (3).
1616 Only warn if the cast is dereferenced immediately. */
1617 alias_set_type set1
=
1618 get_alias_set (TREE_TYPE (TREE_OPERAND (expr
, 0)));
1619 alias_set_type set2
= get_alias_set (TREE_TYPE (type
));
1621 if (set1
!= set2
&& set2
!= 0
1622 && (set1
== 0 || !alias_sets_conflict_p (set1
, set2
)))
1624 warning (OPT_Wstrict_aliasing
, "dereferencing type-punned "
1625 "pointer will break strict-aliasing rules");
1628 else if (warn_strict_aliasing
== 2
1629 && !alias_sets_must_conflict_p (set1
, set2
))
1631 warning (OPT_Wstrict_aliasing
, "dereferencing type-punned "
1632 "pointer might break strict-aliasing rules");
1638 if ((warn_strict_aliasing
== 1) && !VOID_TYPE_P (TREE_TYPE (otype
)))
1640 /* At this level, warn for any conversions, even if an address is
1641 not taken in the same statement. This will likely produce many
1642 false positives, but could be useful to pinpoint problems that
1643 are not revealed at higher levels. */
1644 alias_set_type set1
= get_alias_set (TREE_TYPE (otype
));
1645 alias_set_type set2
= get_alias_set (TREE_TYPE (type
));
1646 if (!COMPLETE_TYPE_P (type
)
1647 || !alias_sets_must_conflict_p (set1
, set2
))
1649 warning (OPT_Wstrict_aliasing
, "dereferencing type-punned "
1650 "pointer might break strict-aliasing rules");
1658 /* Warn for unlikely, improbable, or stupid DECL declarations
1662 check_main_parameter_types (tree decl
)
1667 for (args
= TYPE_ARG_TYPES (TREE_TYPE (decl
)); args
;
1668 args
= TREE_CHAIN (args
))
1670 tree type
= args
? TREE_VALUE (args
) : 0;
1672 if (type
== void_type_node
|| type
== error_mark_node
)
1679 if (TYPE_MAIN_VARIANT (type
) != integer_type_node
)
1680 pedwarn (input_location
, OPT_Wmain
, "first argument of %q+D should be %<int%>",
1685 if (TREE_CODE (type
) != POINTER_TYPE
1686 || TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
1687 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type
)))
1689 pedwarn (input_location
, OPT_Wmain
, "second argument of %q+D should be %<char **%>",
1694 if (TREE_CODE (type
) != POINTER_TYPE
1695 || TREE_CODE (TREE_TYPE (type
)) != POINTER_TYPE
1696 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type
)))
1698 pedwarn (input_location
, OPT_Wmain
, "third argument of %q+D should probably be "
1699 "%<char **%>", decl
);
1704 /* It is intentional that this message does not mention the third
1705 argument because it's only mentioned in an appendix of the
1707 if (argct
> 0 && (argct
< 2 || argct
> 3))
1708 pedwarn (input_location
, OPT_Wmain
, "%q+D takes only zero or two arguments", decl
);
1711 /* True if pointers to distinct types T1 and T2 can be converted to
1712 each other without an explicit cast. Only returns true for opaque
1715 vector_targets_convertible_p (const_tree t1
, const_tree t2
)
1717 if (TREE_CODE (t1
) == VECTOR_TYPE
&& TREE_CODE (t2
) == VECTOR_TYPE
1718 && (TYPE_VECTOR_OPAQUE (t1
) || TYPE_VECTOR_OPAQUE (t2
))
1719 && tree_int_cst_equal (TYPE_SIZE (t1
), TYPE_SIZE (t2
)))
1725 /* True if vector types T1 and T2 can be converted to each other
1726 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
1727 can only be converted with -flax-vector-conversions yet that is not
1728 in effect, emit a note telling the user about that option if such
1729 a note has not previously been emitted. */
1731 vector_types_convertible_p (const_tree t1
, const_tree t2
, bool emit_lax_note
)
1733 static bool emitted_lax_note
= false;
1734 bool convertible_lax
;
1736 if ((TYPE_VECTOR_OPAQUE (t1
) || TYPE_VECTOR_OPAQUE (t2
))
1737 && tree_int_cst_equal (TYPE_SIZE (t1
), TYPE_SIZE (t2
)))
1741 (tree_int_cst_equal (TYPE_SIZE (t1
), TYPE_SIZE (t2
))
1742 && (TREE_CODE (TREE_TYPE (t1
)) != REAL_TYPE
||
1743 TYPE_PRECISION (t1
) == TYPE_PRECISION (t2
))
1744 && (INTEGRAL_TYPE_P (TREE_TYPE (t1
))
1745 == INTEGRAL_TYPE_P (TREE_TYPE (t2
))));
1747 if (!convertible_lax
|| flag_lax_vector_conversions
)
1748 return convertible_lax
;
1750 if (TYPE_VECTOR_SUBPARTS (t1
) == TYPE_VECTOR_SUBPARTS (t2
)
1751 && lang_hooks
.types_compatible_p (TREE_TYPE (t1
), TREE_TYPE (t2
)))
1754 if (emit_lax_note
&& !emitted_lax_note
)
1756 emitted_lax_note
= true;
1757 inform (input_location
, "use -flax-vector-conversions to permit "
1758 "conversions between vectors with differing "
1759 "element types or numbers of subparts");
1765 /* This is a helper function of build_binary_op.
1767 For certain operations if both args were extended from the same
1768 smaller type, do the arithmetic in that type and then extend.
1770 BITWISE indicates a bitwise operation.
1771 For them, this optimization is safe only if
1772 both args are zero-extended or both are sign-extended.
1773 Otherwise, we might change the result.
1774 Eg, (short)-1 | (unsigned short)-1 is (int)-1
1775 but calculated in (unsigned short) it would be (unsigned short)-1.
1777 tree
shorten_binary_op (tree result_type
, tree op0
, tree op1
, bool bitwise
)
1779 int unsigned0
, unsigned1
;
1784 /* Cast OP0 and OP1 to RESULT_TYPE. Doing so prevents
1785 excessive narrowing when we call get_narrower below. For
1786 example, suppose that OP0 is of unsigned int extended
1787 from signed char and that RESULT_TYPE is long long int.
1788 If we explicitly cast OP0 to RESULT_TYPE, OP0 would look
1791 (long long int) (unsigned int) signed_char
1793 which get_narrower would narrow down to
1795 (unsigned int) signed char
1797 If we do not cast OP0 first, get_narrower would return
1798 signed_char, which is inconsistent with the case of the
1800 op0
= convert (result_type
, op0
);
1801 op1
= convert (result_type
, op1
);
1803 arg0
= get_narrower (op0
, &unsigned0
);
1804 arg1
= get_narrower (op1
, &unsigned1
);
1806 /* UNS is 1 if the operation to be done is an unsigned one. */
1807 uns
= TYPE_UNSIGNED (result_type
);
1809 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
1810 but it *requires* conversion to FINAL_TYPE. */
1812 if ((TYPE_PRECISION (TREE_TYPE (op0
))
1813 == TYPE_PRECISION (TREE_TYPE (arg0
)))
1814 && TREE_TYPE (op0
) != result_type
)
1815 unsigned0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
1816 if ((TYPE_PRECISION (TREE_TYPE (op1
))
1817 == TYPE_PRECISION (TREE_TYPE (arg1
)))
1818 && TREE_TYPE (op1
) != result_type
)
1819 unsigned1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
1821 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
1823 /* For bitwise operations, signedness of nominal type
1824 does not matter. Consider only how operands were extended. */
1828 /* Note that in all three cases below we refrain from optimizing
1829 an unsigned operation on sign-extended args.
1830 That would not be valid. */
1832 /* Both args variable: if both extended in same way
1833 from same width, do it in that width.
1834 Do it unsigned if args were zero-extended. */
1835 if ((TYPE_PRECISION (TREE_TYPE (arg0
))
1836 < TYPE_PRECISION (result_type
))
1837 && (TYPE_PRECISION (TREE_TYPE (arg1
))
1838 == TYPE_PRECISION (TREE_TYPE (arg0
)))
1839 && unsigned0
== unsigned1
1840 && (unsigned0
|| !uns
))
1841 return c_common_signed_or_unsigned_type
1842 (unsigned0
, common_type (TREE_TYPE (arg0
), TREE_TYPE (arg1
)));
1844 else if (TREE_CODE (arg0
) == INTEGER_CST
1845 && (unsigned1
|| !uns
)
1846 && (TYPE_PRECISION (TREE_TYPE (arg1
))
1847 < TYPE_PRECISION (result_type
))
1849 = c_common_signed_or_unsigned_type (unsigned1
,
1851 && !POINTER_TYPE_P (type
)
1852 && int_fits_type_p (arg0
, type
))
1855 else if (TREE_CODE (arg1
) == INTEGER_CST
1856 && (unsigned0
|| !uns
)
1857 && (TYPE_PRECISION (TREE_TYPE (arg0
))
1858 < TYPE_PRECISION (result_type
))
1860 = c_common_signed_or_unsigned_type (unsigned0
,
1862 && !POINTER_TYPE_P (type
)
1863 && int_fits_type_p (arg1
, type
))
1869 /* Warns if the conversion of EXPR to TYPE may alter a value.
1870 This is a helper function for warnings_for_convert_and_check. */
1873 conversion_warning (tree type
, tree expr
)
1875 bool give_warning
= false;
1878 const int expr_num_operands
= TREE_OPERAND_LENGTH (expr
);
1879 tree expr_type
= TREE_TYPE (expr
);
1880 location_t loc
= EXPR_LOC_OR_HERE (expr
);
1882 if (!warn_conversion
&& !warn_sign_conversion
)
1885 /* If any operand is artificial, then this expression was generated
1886 by the compiler and we do not warn. */
1887 for (i
= 0; i
< expr_num_operands
; i
++)
1889 tree op
= TREE_OPERAND (expr
, i
);
1890 if (op
&& DECL_P (op
) && DECL_ARTIFICIAL (op
))
1894 switch (TREE_CODE (expr
))
1902 case TRUTH_ANDIF_EXPR
:
1903 case TRUTH_ORIF_EXPR
:
1904 case TRUTH_AND_EXPR
:
1906 case TRUTH_XOR_EXPR
:
1907 case TRUTH_NOT_EXPR
:
1908 /* Conversion from boolean to a signed:1 bit-field (which only
1909 can hold the values 0 and -1) doesn't lose information - but
1910 it does change the value. */
1911 if (TYPE_PRECISION (type
) == 1 && !TYPE_UNSIGNED (type
))
1912 warning_at (loc
, OPT_Wconversion
,
1913 "conversion to %qT from boolean expression", type
);
1919 /* Warn for real constant that is not an exact integer converted
1921 if (TREE_CODE (expr_type
) == REAL_TYPE
1922 && TREE_CODE (type
) == INTEGER_TYPE
)
1924 if (!real_isinteger (TREE_REAL_CST_PTR (expr
), TYPE_MODE (expr_type
)))
1925 give_warning
= true;
1927 /* Warn for an integer constant that does not fit into integer type. */
1928 else if (TREE_CODE (expr_type
) == INTEGER_TYPE
1929 && TREE_CODE (type
) == INTEGER_TYPE
1930 && !int_fits_type_p (expr
, type
))
1932 if (TYPE_UNSIGNED (type
) && !TYPE_UNSIGNED (expr_type
)
1933 && tree_int_cst_sgn (expr
) < 0)
1934 warning_at (loc
, OPT_Wsign_conversion
, "negative integer"
1935 " implicitly converted to unsigned type");
1936 else if (!TYPE_UNSIGNED (type
) && TYPE_UNSIGNED (expr_type
))
1937 warning_at (loc
, OPT_Wsign_conversion
, "conversion of unsigned"
1938 " constant value to negative integer");
1940 give_warning
= true;
1942 else if (TREE_CODE (type
) == REAL_TYPE
)
1944 /* Warn for an integer constant that does not fit into real type. */
1945 if (TREE_CODE (expr_type
) == INTEGER_TYPE
)
1947 REAL_VALUE_TYPE a
= real_value_from_int_cst (0, expr
);
1948 if (!exact_real_truncate (TYPE_MODE (type
), &a
))
1949 give_warning
= true;
1951 /* Warn for a real constant that does not fit into a smaller
1953 else if (TREE_CODE (expr_type
) == REAL_TYPE
1954 && TYPE_PRECISION (type
) < TYPE_PRECISION (expr_type
))
1956 REAL_VALUE_TYPE a
= TREE_REAL_CST (expr
);
1957 if (!exact_real_truncate (TYPE_MODE (type
), &a
))
1958 give_warning
= true;
1963 warning_at (loc
, OPT_Wconversion
,
1964 "conversion to %qT alters %qT constant value",
1971 /* In case of COND_EXPR, if both operands are constants or
1972 COND_EXPR, then we do not care about the type of COND_EXPR,
1973 only about the conversion of each operand. */
1974 tree op1
= TREE_OPERAND (expr
, 1);
1975 tree op2
= TREE_OPERAND (expr
, 2);
1977 if ((TREE_CODE (op1
) == REAL_CST
|| TREE_CODE (op1
) == INTEGER_CST
1978 || TREE_CODE (op1
) == COND_EXPR
)
1979 && (TREE_CODE (op2
) == REAL_CST
|| TREE_CODE (op2
) == INTEGER_CST
1980 || TREE_CODE (op2
) == COND_EXPR
))
1982 conversion_warning (type
, op1
);
1983 conversion_warning (type
, op2
);
1989 default: /* 'expr' is not a constant. */
1991 /* Warn for real types converted to integer types. */
1992 if (TREE_CODE (expr_type
) == REAL_TYPE
1993 && TREE_CODE (type
) == INTEGER_TYPE
)
1994 give_warning
= true;
1996 else if (TREE_CODE (expr_type
) == INTEGER_TYPE
1997 && TREE_CODE (type
) == INTEGER_TYPE
)
1999 /* Don't warn about unsigned char y = 0xff, x = (int) y; */
2000 expr
= get_unwidened (expr
, 0);
2001 expr_type
= TREE_TYPE (expr
);
2003 /* Don't warn for short y; short x = ((int)y & 0xff); */
2004 if (TREE_CODE (expr
) == BIT_AND_EXPR
2005 || TREE_CODE (expr
) == BIT_IOR_EXPR
2006 || TREE_CODE (expr
) == BIT_XOR_EXPR
)
2008 /* If both args were extended from a shortest type,
2009 use that type if that is safe. */
2010 expr_type
= shorten_binary_op (expr_type
,
2011 TREE_OPERAND (expr
, 0),
2012 TREE_OPERAND (expr
, 1),
2015 if (TREE_CODE (expr
) == BIT_AND_EXPR
)
2017 tree op0
= TREE_OPERAND (expr
, 0);
2018 tree op1
= TREE_OPERAND (expr
, 1);
2019 bool unsigned0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
2020 bool unsigned1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
2022 /* If one of the operands is a non-negative constant
2023 that fits in the target type, then the type of the
2024 other operand does not matter. */
2025 if ((TREE_CODE (op0
) == INTEGER_CST
2026 && int_fits_type_p (op0
, c_common_signed_type (type
))
2027 && int_fits_type_p (op0
, c_common_unsigned_type (type
)))
2028 || (TREE_CODE (op1
) == INTEGER_CST
2029 && int_fits_type_p (op1
, c_common_signed_type (type
))
2030 && int_fits_type_p (op1
,
2031 c_common_unsigned_type (type
))))
2033 /* If constant is unsigned and fits in the target
2034 type, then the result will also fit. */
2035 else if ((TREE_CODE (op0
) == INTEGER_CST
2037 && int_fits_type_p (op0
, type
))
2038 || (TREE_CODE (op1
) == INTEGER_CST
2040 && int_fits_type_p (op1
, type
)))
2044 /* Warn for integer types converted to smaller integer types. */
2045 if (TYPE_PRECISION (type
) < TYPE_PRECISION (expr_type
))
2046 give_warning
= true;
2048 /* When they are the same width but different signedness,
2049 then the value may change. */
2050 else if ((TYPE_PRECISION (type
) == TYPE_PRECISION (expr_type
)
2051 && TYPE_UNSIGNED (expr_type
) != TYPE_UNSIGNED (type
))
2052 /* Even when converted to a bigger type, if the type is
2053 unsigned but expr is signed, then negative values
2055 || (TYPE_UNSIGNED (type
) && !TYPE_UNSIGNED (expr_type
)))
2056 warning_at (loc
, OPT_Wsign_conversion
, "conversion to %qT from %qT "
2057 "may change the sign of the result",
2061 /* Warn for integer types converted to real types if and only if
2062 all the range of values of the integer type cannot be
2063 represented by the real type. */
2064 else if (TREE_CODE (expr_type
) == INTEGER_TYPE
2065 && TREE_CODE (type
) == REAL_TYPE
)
2067 tree type_low_bound
, type_high_bound
;
2068 REAL_VALUE_TYPE real_low_bound
, real_high_bound
;
2070 /* Don't warn about char y = 0xff; float x = (int) y; */
2071 expr
= get_unwidened (expr
, 0);
2072 expr_type
= TREE_TYPE (expr
);
2074 type_low_bound
= TYPE_MIN_VALUE (expr_type
);
2075 type_high_bound
= TYPE_MAX_VALUE (expr_type
);
2076 real_low_bound
= real_value_from_int_cst (0, type_low_bound
);
2077 real_high_bound
= real_value_from_int_cst (0, type_high_bound
);
2079 if (!exact_real_truncate (TYPE_MODE (type
), &real_low_bound
)
2080 || !exact_real_truncate (TYPE_MODE (type
), &real_high_bound
))
2081 give_warning
= true;
2084 /* Warn for real types converted to smaller real types. */
2085 else if (TREE_CODE (expr_type
) == REAL_TYPE
2086 && TREE_CODE (type
) == REAL_TYPE
2087 && TYPE_PRECISION (type
) < TYPE_PRECISION (expr_type
))
2088 give_warning
= true;
2092 warning_at (loc
, OPT_Wconversion
,
2093 "conversion to %qT from %qT may alter its value",
2098 /* Produce warnings after a conversion. RESULT is the result of
2099 converting EXPR to TYPE. This is a helper function for
2100 convert_and_check and cp_convert_and_check. */
2103 warnings_for_convert_and_check (tree type
, tree expr
, tree result
)
2105 if (TREE_CODE (expr
) == INTEGER_CST
2106 && (TREE_CODE (type
) == INTEGER_TYPE
2107 || TREE_CODE (type
) == ENUMERAL_TYPE
)
2108 && !int_fits_type_p (expr
, type
))
2110 /* Do not diagnose overflow in a constant expression merely
2111 because a conversion overflowed. */
2112 if (TREE_OVERFLOW (result
))
2113 TREE_OVERFLOW (result
) = TREE_OVERFLOW (expr
);
2115 if (TYPE_UNSIGNED (type
))
2117 /* This detects cases like converting -129 or 256 to
2119 if (!int_fits_type_p (expr
, c_common_signed_type (type
)))
2120 warning (OPT_Woverflow
,
2121 "large integer implicitly truncated to unsigned type");
2123 conversion_warning (type
, expr
);
2125 else if (!int_fits_type_p (expr
, c_common_unsigned_type (type
)))
2126 warning (OPT_Woverflow
,
2127 "overflow in implicit constant conversion");
2128 /* No warning for converting 0x80000000 to int. */
2130 && (TREE_CODE (TREE_TYPE (expr
)) != INTEGER_TYPE
2131 || TYPE_PRECISION (TREE_TYPE (expr
))
2132 != TYPE_PRECISION (type
)))
2133 warning (OPT_Woverflow
,
2134 "overflow in implicit constant conversion");
2137 conversion_warning (type
, expr
);
2139 else if ((TREE_CODE (result
) == INTEGER_CST
2140 || TREE_CODE (result
) == FIXED_CST
) && TREE_OVERFLOW (result
))
2141 warning (OPT_Woverflow
,
2142 "overflow in implicit constant conversion");
2144 conversion_warning (type
, expr
);
2148 /* Convert EXPR to TYPE, warning about conversion problems with constants.
2149 Invoke this function on every expression that is converted implicitly,
2150 i.e. because of language rules and not because of an explicit cast. */
2153 convert_and_check (tree type
, tree expr
)
2156 tree expr_for_warning
;
2158 /* Convert from a value with possible excess precision rather than
2159 via the semantic type, but do not warn about values not fitting
2160 exactly in the semantic type. */
2161 if (TREE_CODE (expr
) == EXCESS_PRECISION_EXPR
)
2163 tree orig_type
= TREE_TYPE (expr
);
2164 expr
= TREE_OPERAND (expr
, 0);
2165 expr_for_warning
= convert (orig_type
, expr
);
2166 if (orig_type
== type
)
2167 return expr_for_warning
;
2170 expr_for_warning
= expr
;
2172 if (TREE_TYPE (expr
) == type
)
2175 result
= convert (type
, expr
);
2177 if (c_inhibit_evaluation_warnings
== 0
2178 && !TREE_OVERFLOW_P (expr
)
2179 && result
!= error_mark_node
)
2180 warnings_for_convert_and_check (type
, expr_for_warning
, result
);
2185 /* A node in a list that describes references to variables (EXPR), which are
2186 either read accesses if WRITER is zero, or write accesses, in which case
2187 WRITER is the parent of EXPR. */
2194 /* Used to implement a cache the results of a call to verify_tree. We only
2195 use this for SAVE_EXPRs. */
2198 struct tlist_cache
*next
;
2199 struct tlist
*cache_before_sp
;
2200 struct tlist
*cache_after_sp
;
2204 /* Obstack to use when allocating tlist structures, and corresponding
2206 static struct obstack tlist_obstack
;
2207 static char *tlist_firstobj
= 0;
2209 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
2211 static struct tlist
*warned_ids
;
2212 /* SAVE_EXPRs need special treatment. We process them only once and then
2213 cache the results. */
2214 static struct tlist_cache
*save_expr_cache
;
2216 static void add_tlist (struct tlist
**, struct tlist
*, tree
, int);
2217 static void merge_tlist (struct tlist
**, struct tlist
*, int);
2218 static void verify_tree (tree
, struct tlist
**, struct tlist
**, tree
);
2219 static int warning_candidate_p (tree
);
2220 static bool candidate_equal_p (const_tree
, const_tree
);
2221 static void warn_for_collisions (struct tlist
*);
2222 static void warn_for_collisions_1 (tree
, tree
, struct tlist
*, int);
2223 static struct tlist
*new_tlist (struct tlist
*, tree
, tree
);
2225 /* Create a new struct tlist and fill in its fields. */
2226 static struct tlist
*
2227 new_tlist (struct tlist
*next
, tree t
, tree writer
)
2230 l
= XOBNEW (&tlist_obstack
, struct tlist
);
2237 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
2238 is nonnull, we ignore any node we find which has a writer equal to it. */
2241 add_tlist (struct tlist
**to
, struct tlist
*add
, tree exclude_writer
, int copy
)
2245 struct tlist
*next
= add
->next
;
2248 if (!exclude_writer
|| !candidate_equal_p (add
->writer
, exclude_writer
))
2249 *to
= copy
? new_tlist (*to
, add
->expr
, add
->writer
) : add
;
2254 /* Merge the nodes of ADD into TO. This merging process is done so that for
2255 each variable that already exists in TO, no new node is added; however if
2256 there is a write access recorded in ADD, and an occurrence on TO is only
2257 a read access, then the occurrence in TO will be modified to record the
2261 merge_tlist (struct tlist
**to
, struct tlist
*add
, int copy
)
2263 struct tlist
**end
= to
;
2266 end
= &(*end
)->next
;
2272 struct tlist
*next
= add
->next
;
2274 for (tmp2
= *to
; tmp2
; tmp2
= tmp2
->next
)
2275 if (candidate_equal_p (tmp2
->expr
, add
->expr
))
2279 tmp2
->writer
= add
->writer
;
2283 *end
= copy
? add
: new_tlist (NULL
, add
->expr
, add
->writer
);
2284 end
= &(*end
)->next
;
2291 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
2292 references in list LIST conflict with it, excluding reads if ONLY writers
2296 warn_for_collisions_1 (tree written
, tree writer
, struct tlist
*list
,
2301 /* Avoid duplicate warnings. */
2302 for (tmp
= warned_ids
; tmp
; tmp
= tmp
->next
)
2303 if (candidate_equal_p (tmp
->expr
, written
))
2308 if (candidate_equal_p (list
->expr
, written
)
2309 && !candidate_equal_p (list
->writer
, writer
)
2310 && (!only_writes
|| list
->writer
))
2312 warned_ids
= new_tlist (warned_ids
, written
, NULL_TREE
);
2313 warning_at (EXPR_LOC_OR_HERE (writer
),
2314 OPT_Wsequence_point
, "operation on %qE may be undefined",
2321 /* Given a list LIST of references to variables, find whether any of these
2322 can cause conflicts due to missing sequence points. */
2325 warn_for_collisions (struct tlist
*list
)
2329 for (tmp
= list
; tmp
; tmp
= tmp
->next
)
2332 warn_for_collisions_1 (tmp
->expr
, tmp
->writer
, list
, 0);
2336 /* Return nonzero if X is a tree that can be verified by the sequence point
2339 warning_candidate_p (tree x
)
2341 if (DECL_P (x
) && DECL_ARTIFICIAL (x
))
2344 /* VOID_TYPE_P (TREE_TYPE (x)) is workaround for cp/tree.c
2345 (lvalue_p) crash on TRY/CATCH. */
2346 if (TREE_TYPE (x
) == NULL_TREE
|| VOID_TYPE_P (TREE_TYPE (x
)))
2352 /* No point to track non-const calls, they will never satisfy
2354 if (TREE_CODE (x
) == CALL_EXPR
&& (call_expr_flags (x
) & ECF_CONST
) == 0)
2357 if (TREE_CODE (x
) == STRING_CST
)
2363 /* Return nonzero if X and Y appear to be the same candidate (or NULL) */
2365 candidate_equal_p (const_tree x
, const_tree y
)
2367 return (x
== y
) || (x
&& y
&& operand_equal_p (x
, y
, 0));
2370 /* Walk the tree X, and record accesses to variables. If X is written by the
2371 parent tree, WRITER is the parent.
2372 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
2373 expression or its only operand forces a sequence point, then everything up
2374 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
2376 Once we return, we will have emitted warnings if any subexpression before
2377 such a sequence point could be undefined. On a higher level, however, the
2378 sequence point may not be relevant, and we'll merge the two lists.
2380 Example: (b++, a) + b;
2381 The call that processes the COMPOUND_EXPR will store the increment of B
2382 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
2383 processes the PLUS_EXPR will need to merge the two lists so that
2384 eventually, all accesses end up on the same list (and we'll warn about the
2385 unordered subexpressions b++ and b.
2387 A note on merging. If we modify the former example so that our expression
2390 care must be taken not simply to add all three expressions into the final
2391 PNO_SP list. The function merge_tlist takes care of that by merging the
2392 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
2393 way, so that no more than one access to B is recorded. */
2396 verify_tree (tree x
, struct tlist
**pbefore_sp
, struct tlist
**pno_sp
,
2399 struct tlist
*tmp_before
, *tmp_nosp
, *tmp_list2
, *tmp_list3
;
2400 enum tree_code code
;
2401 enum tree_code_class cl
;
2403 /* X may be NULL if it is the operand of an empty statement expression
2409 code
= TREE_CODE (x
);
2410 cl
= TREE_CODE_CLASS (code
);
2412 if (warning_candidate_p (x
))
2413 *pno_sp
= new_tlist (*pno_sp
, x
, writer
);
2421 case TRUTH_ANDIF_EXPR
:
2422 case TRUTH_ORIF_EXPR
:
2423 tmp_before
= tmp_nosp
= tmp_list3
= 0;
2424 verify_tree (TREE_OPERAND (x
, 0), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2425 warn_for_collisions (tmp_nosp
);
2426 merge_tlist (pbefore_sp
, tmp_before
, 0);
2427 merge_tlist (pbefore_sp
, tmp_nosp
, 0);
2428 verify_tree (TREE_OPERAND (x
, 1), &tmp_list3
, pno_sp
, NULL_TREE
);
2429 merge_tlist (pbefore_sp
, tmp_list3
, 0);
2433 tmp_before
= tmp_list2
= 0;
2434 verify_tree (TREE_OPERAND (x
, 0), &tmp_before
, &tmp_list2
, NULL_TREE
);
2435 warn_for_collisions (tmp_list2
);
2436 merge_tlist (pbefore_sp
, tmp_before
, 0);
2437 merge_tlist (pbefore_sp
, tmp_list2
, 1);
2439 tmp_list3
= tmp_nosp
= 0;
2440 verify_tree (TREE_OPERAND (x
, 1), &tmp_list3
, &tmp_nosp
, NULL_TREE
);
2441 warn_for_collisions (tmp_nosp
);
2442 merge_tlist (pbefore_sp
, tmp_list3
, 0);
2444 tmp_list3
= tmp_list2
= 0;
2445 verify_tree (TREE_OPERAND (x
, 2), &tmp_list3
, &tmp_list2
, NULL_TREE
);
2446 warn_for_collisions (tmp_list2
);
2447 merge_tlist (pbefore_sp
, tmp_list3
, 0);
2448 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
2449 two first, to avoid warning for (a ? b++ : b++). */
2450 merge_tlist (&tmp_nosp
, tmp_list2
, 0);
2451 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 0);
2454 case PREDECREMENT_EXPR
:
2455 case PREINCREMENT_EXPR
:
2456 case POSTDECREMENT_EXPR
:
2457 case POSTINCREMENT_EXPR
:
2458 verify_tree (TREE_OPERAND (x
, 0), pno_sp
, pno_sp
, x
);
2462 tmp_before
= tmp_nosp
= tmp_list3
= 0;
2463 verify_tree (TREE_OPERAND (x
, 1), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2464 verify_tree (TREE_OPERAND (x
, 0), &tmp_list3
, &tmp_list3
, x
);
2465 /* Expressions inside the LHS are not ordered wrt. the sequence points
2466 in the RHS. Example:
2468 Despite the fact that the modification of "a" is in the before_sp
2469 list (tmp_before), it conflicts with the use of "a" in the LHS.
2470 We can handle this by adding the contents of tmp_list3
2471 to those of tmp_before, and redoing the collision warnings for that
2473 add_tlist (&tmp_before
, tmp_list3
, x
, 1);
2474 warn_for_collisions (tmp_before
);
2475 /* Exclude the LHS itself here; we first have to merge it into the
2476 tmp_nosp list. This is done to avoid warning for "a = a"; if we
2477 didn't exclude the LHS, we'd get it twice, once as a read and once
2479 add_tlist (pno_sp
, tmp_list3
, x
, 0);
2480 warn_for_collisions_1 (TREE_OPERAND (x
, 0), x
, tmp_nosp
, 1);
2482 merge_tlist (pbefore_sp
, tmp_before
, 0);
2483 if (warning_candidate_p (TREE_OPERAND (x
, 0)))
2484 merge_tlist (&tmp_nosp
, new_tlist (NULL
, TREE_OPERAND (x
, 0), x
), 0);
2485 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 1);
2489 /* We need to warn about conflicts among arguments and conflicts between
2490 args and the function address. Side effects of the function address,
2491 however, are not ordered by the sequence point of the call. */
2493 call_expr_arg_iterator iter
;
2495 tmp_before
= tmp_nosp
= 0;
2496 verify_tree (CALL_EXPR_FN (x
), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2497 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, x
)
2499 tmp_list2
= tmp_list3
= 0;
2500 verify_tree (arg
, &tmp_list2
, &tmp_list3
, NULL_TREE
);
2501 merge_tlist (&tmp_list3
, tmp_list2
, 0);
2502 add_tlist (&tmp_before
, tmp_list3
, NULL_TREE
, 0);
2504 add_tlist (&tmp_before
, tmp_nosp
, NULL_TREE
, 0);
2505 warn_for_collisions (tmp_before
);
2506 add_tlist (pbefore_sp
, tmp_before
, NULL_TREE
, 0);
2511 /* Scan all the list, e.g. indices of multi dimensional array. */
2514 tmp_before
= tmp_nosp
= 0;
2515 verify_tree (TREE_VALUE (x
), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2516 merge_tlist (&tmp_nosp
, tmp_before
, 0);
2517 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 0);
2524 struct tlist_cache
*t
;
2525 for (t
= save_expr_cache
; t
; t
= t
->next
)
2526 if (candidate_equal_p (t
->expr
, x
))
2531 t
= XOBNEW (&tlist_obstack
, struct tlist_cache
);
2532 t
->next
= save_expr_cache
;
2534 save_expr_cache
= t
;
2536 tmp_before
= tmp_nosp
= 0;
2537 verify_tree (TREE_OPERAND (x
, 0), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2538 warn_for_collisions (tmp_nosp
);
2543 struct tlist
*t
= tmp_nosp
;
2545 merge_tlist (&tmp_list3
, t
, 0);
2547 t
->cache_before_sp
= tmp_before
;
2548 t
->cache_after_sp
= tmp_list3
;
2550 merge_tlist (pbefore_sp
, t
->cache_before_sp
, 1);
2551 add_tlist (pno_sp
, t
->cache_after_sp
, NULL_TREE
, 1);
2556 x
= TREE_OPERAND (x
, 0);
2563 /* For other expressions, simply recurse on their operands.
2564 Manual tail recursion for unary expressions.
2565 Other non-expressions need not be processed. */
2566 if (cl
== tcc_unary
)
2568 x
= TREE_OPERAND (x
, 0);
2572 else if (IS_EXPR_CODE_CLASS (cl
))
2575 int max
= TREE_OPERAND_LENGTH (x
);
2576 for (lp
= 0; lp
< max
; lp
++)
2578 tmp_before
= tmp_nosp
= 0;
2579 verify_tree (TREE_OPERAND (x
, lp
), &tmp_before
, &tmp_nosp
, 0);
2580 merge_tlist (&tmp_nosp
, tmp_before
, 0);
2581 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 0);
2588 /* Try to warn for undefined behavior in EXPR due to missing sequence
2592 verify_sequence_points (tree expr
)
2594 struct tlist
*before_sp
= 0, *after_sp
= 0;
2597 save_expr_cache
= 0;
2598 if (tlist_firstobj
== 0)
2600 gcc_obstack_init (&tlist_obstack
);
2601 tlist_firstobj
= (char *) obstack_alloc (&tlist_obstack
, 0);
2604 verify_tree (expr
, &before_sp
, &after_sp
, 0);
2605 warn_for_collisions (after_sp
);
2606 obstack_free (&tlist_obstack
, tlist_firstobj
);
2609 /* Validate the expression after `case' and apply default promotions. */
2612 check_case_value (tree value
)
2614 if (value
== NULL_TREE
)
2617 if (TREE_CODE (value
) == INTEGER_CST
)
2618 /* Promote char or short to int. */
2619 value
= perform_integral_promotions (value
);
2620 else if (value
!= error_mark_node
)
2622 error ("case label does not reduce to an integer constant");
2623 value
= error_mark_node
;
2626 constant_expression_warning (value
);
2631 /* See if the case values LOW and HIGH are in the range of the original
2632 type (i.e. before the default conversion to int) of the switch testing
2634 TYPE is the promoted type of the testing expression, and ORIG_TYPE is
2635 the type before promoting it. CASE_LOW_P is a pointer to the lower
2636 bound of the case label, and CASE_HIGH_P is the upper bound or NULL
2637 if the case is not a case range.
2638 The caller has to make sure that we are not called with NULL for
2639 CASE_LOW_P (i.e. the default case).
2640 Returns true if the case label is in range of ORIG_TYPE (saturated or
2641 untouched) or false if the label is out of range. */
2644 check_case_bounds (tree type
, tree orig_type
,
2645 tree
*case_low_p
, tree
*case_high_p
)
2647 tree min_value
, max_value
;
2648 tree case_low
= *case_low_p
;
2649 tree case_high
= case_high_p
? *case_high_p
: case_low
;
2651 /* If there was a problem with the original type, do nothing. */
2652 if (orig_type
== error_mark_node
)
2655 min_value
= TYPE_MIN_VALUE (orig_type
);
2656 max_value
= TYPE_MAX_VALUE (orig_type
);
2658 /* Case label is less than minimum for type. */
2659 if (tree_int_cst_compare (case_low
, min_value
) < 0
2660 && tree_int_cst_compare (case_high
, min_value
) < 0)
2662 warning (0, "case label value is less than minimum value for type");
2666 /* Case value is greater than maximum for type. */
2667 if (tree_int_cst_compare (case_low
, max_value
) > 0
2668 && tree_int_cst_compare (case_high
, max_value
) > 0)
2670 warning (0, "case label value exceeds maximum value for type");
2674 /* Saturate lower case label value to minimum. */
2675 if (tree_int_cst_compare (case_high
, min_value
) >= 0
2676 && tree_int_cst_compare (case_low
, min_value
) < 0)
2678 warning (0, "lower value in case label range"
2679 " less than minimum value for type");
2680 case_low
= min_value
;
2683 /* Saturate upper case label value to maximum. */
2684 if (tree_int_cst_compare (case_low
, max_value
) <= 0
2685 && tree_int_cst_compare (case_high
, max_value
) > 0)
2687 warning (0, "upper value in case label range"
2688 " exceeds maximum value for type");
2689 case_high
= max_value
;
2692 if (*case_low_p
!= case_low
)
2693 *case_low_p
= convert (type
, case_low
);
2694 if (case_high_p
&& *case_high_p
!= case_high
)
2695 *case_high_p
= convert (type
, case_high
);
2700 /* Return an integer type with BITS bits of precision,
2701 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2704 c_common_type_for_size (unsigned int bits
, int unsignedp
)
2706 if (bits
== TYPE_PRECISION (integer_type_node
))
2707 return unsignedp
? unsigned_type_node
: integer_type_node
;
2709 if (bits
== TYPE_PRECISION (signed_char_type_node
))
2710 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2712 if (bits
== TYPE_PRECISION (short_integer_type_node
))
2713 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2715 if (bits
== TYPE_PRECISION (long_integer_type_node
))
2716 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2718 if (bits
== TYPE_PRECISION (long_long_integer_type_node
))
2719 return (unsignedp
? long_long_unsigned_type_node
2720 : long_long_integer_type_node
);
2722 if (int128_integer_type_node
2723 && bits
== TYPE_PRECISION (int128_integer_type_node
))
2724 return (unsignedp
? int128_unsigned_type_node
2725 : int128_integer_type_node
);
2727 if (bits
== TYPE_PRECISION (widest_integer_literal_type_node
))
2728 return (unsignedp
? widest_unsigned_literal_type_node
2729 : widest_integer_literal_type_node
);
2731 if (bits
<= TYPE_PRECISION (intQI_type_node
))
2732 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2734 if (bits
<= TYPE_PRECISION (intHI_type_node
))
2735 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2737 if (bits
<= TYPE_PRECISION (intSI_type_node
))
2738 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2740 if (bits
<= TYPE_PRECISION (intDI_type_node
))
2741 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2746 /* Return a fixed-point type that has at least IBIT ibits and FBIT fbits
2747 that is unsigned if UNSIGNEDP is nonzero, otherwise signed;
2748 and saturating if SATP is nonzero, otherwise not saturating. */
2751 c_common_fixed_point_type_for_size (unsigned int ibit
, unsigned int fbit
,
2752 int unsignedp
, int satp
)
2754 enum machine_mode mode
;
2756 mode
= unsignedp
? UQQmode
: QQmode
;
2758 mode
= unsignedp
? UHAmode
: HAmode
;
2760 for (; mode
!= VOIDmode
; mode
= GET_MODE_WIDER_MODE (mode
))
2761 if (GET_MODE_IBIT (mode
) >= ibit
&& GET_MODE_FBIT (mode
) >= fbit
)
2764 if (mode
== VOIDmode
|| !targetm
.scalar_mode_supported_p (mode
))
2766 sorry ("GCC cannot support operators with integer types and "
2767 "fixed-point types that have too many integral and "
2768 "fractional bits together");
2772 return c_common_type_for_mode (mode
, satp
);
2775 /* Used for communication between c_common_type_for_mode and
2776 c_register_builtin_type. */
2777 static GTY(()) tree registered_builtin_types
;
2779 /* Return a data type that has machine mode MODE.
2780 If the mode is an integer,
2781 then UNSIGNEDP selects between signed and unsigned types.
2782 If the mode is a fixed-point mode,
2783 then UNSIGNEDP selects between saturating and nonsaturating types. */
2786 c_common_type_for_mode (enum machine_mode mode
, int unsignedp
)
2790 if (mode
== TYPE_MODE (integer_type_node
))
2791 return unsignedp
? unsigned_type_node
: integer_type_node
;
2793 if (mode
== TYPE_MODE (signed_char_type_node
))
2794 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2796 if (mode
== TYPE_MODE (short_integer_type_node
))
2797 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2799 if (mode
== TYPE_MODE (long_integer_type_node
))
2800 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2802 if (mode
== TYPE_MODE (long_long_integer_type_node
))
2803 return unsignedp
? long_long_unsigned_type_node
: long_long_integer_type_node
;
2805 if (int128_integer_type_node
2806 && mode
== TYPE_MODE (int128_integer_type_node
))
2807 return unsignedp
? int128_unsigned_type_node
: int128_integer_type_node
;
2809 if (mode
== TYPE_MODE (widest_integer_literal_type_node
))
2810 return unsignedp
? widest_unsigned_literal_type_node
2811 : widest_integer_literal_type_node
;
2814 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2817 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2820 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2823 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2825 #if HOST_BITS_PER_WIDE_INT >= 64
2826 if (mode
== TYPE_MODE (intTI_type_node
))
2827 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
2830 if (mode
== TYPE_MODE (float_type_node
))
2831 return float_type_node
;
2833 if (mode
== TYPE_MODE (double_type_node
))
2834 return double_type_node
;
2836 if (mode
== TYPE_MODE (long_double_type_node
))
2837 return long_double_type_node
;
2839 if (mode
== TYPE_MODE (void_type_node
))
2840 return void_type_node
;
2842 if (mode
== TYPE_MODE (build_pointer_type (char_type_node
)))
2844 ? make_unsigned_type (GET_MODE_PRECISION (mode
))
2845 : make_signed_type (GET_MODE_PRECISION (mode
)));
2847 if (mode
== TYPE_MODE (build_pointer_type (integer_type_node
)))
2849 ? make_unsigned_type (GET_MODE_PRECISION (mode
))
2850 : make_signed_type (GET_MODE_PRECISION (mode
)));
2852 if (COMPLEX_MODE_P (mode
))
2854 enum machine_mode inner_mode
;
2857 if (mode
== TYPE_MODE (complex_float_type_node
))
2858 return complex_float_type_node
;
2859 if (mode
== TYPE_MODE (complex_double_type_node
))
2860 return complex_double_type_node
;
2861 if (mode
== TYPE_MODE (complex_long_double_type_node
))
2862 return complex_long_double_type_node
;
2864 if (mode
== TYPE_MODE (complex_integer_type_node
) && !unsignedp
)
2865 return complex_integer_type_node
;
2867 inner_mode
= GET_MODE_INNER (mode
);
2868 inner_type
= c_common_type_for_mode (inner_mode
, unsignedp
);
2869 if (inner_type
!= NULL_TREE
)
2870 return build_complex_type (inner_type
);
2872 else if (VECTOR_MODE_P (mode
))
2874 enum machine_mode inner_mode
= GET_MODE_INNER (mode
);
2875 tree inner_type
= c_common_type_for_mode (inner_mode
, unsignedp
);
2876 if (inner_type
!= NULL_TREE
)
2877 return build_vector_type_for_mode (inner_type
, mode
);
2880 if (mode
== TYPE_MODE (dfloat32_type_node
))
2881 return dfloat32_type_node
;
2882 if (mode
== TYPE_MODE (dfloat64_type_node
))
2883 return dfloat64_type_node
;
2884 if (mode
== TYPE_MODE (dfloat128_type_node
))
2885 return dfloat128_type_node
;
2887 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode
))
2889 if (mode
== TYPE_MODE (short_fract_type_node
))
2890 return unsignedp
? sat_short_fract_type_node
: short_fract_type_node
;
2891 if (mode
== TYPE_MODE (fract_type_node
))
2892 return unsignedp
? sat_fract_type_node
: fract_type_node
;
2893 if (mode
== TYPE_MODE (long_fract_type_node
))
2894 return unsignedp
? sat_long_fract_type_node
: long_fract_type_node
;
2895 if (mode
== TYPE_MODE (long_long_fract_type_node
))
2896 return unsignedp
? sat_long_long_fract_type_node
2897 : long_long_fract_type_node
;
2899 if (mode
== TYPE_MODE (unsigned_short_fract_type_node
))
2900 return unsignedp
? sat_unsigned_short_fract_type_node
2901 : unsigned_short_fract_type_node
;
2902 if (mode
== TYPE_MODE (unsigned_fract_type_node
))
2903 return unsignedp
? sat_unsigned_fract_type_node
2904 : unsigned_fract_type_node
;
2905 if (mode
== TYPE_MODE (unsigned_long_fract_type_node
))
2906 return unsignedp
? sat_unsigned_long_fract_type_node
2907 : unsigned_long_fract_type_node
;
2908 if (mode
== TYPE_MODE (unsigned_long_long_fract_type_node
))
2909 return unsignedp
? sat_unsigned_long_long_fract_type_node
2910 : unsigned_long_long_fract_type_node
;
2912 if (mode
== TYPE_MODE (short_accum_type_node
))
2913 return unsignedp
? sat_short_accum_type_node
: short_accum_type_node
;
2914 if (mode
== TYPE_MODE (accum_type_node
))
2915 return unsignedp
? sat_accum_type_node
: accum_type_node
;
2916 if (mode
== TYPE_MODE (long_accum_type_node
))
2917 return unsignedp
? sat_long_accum_type_node
: long_accum_type_node
;
2918 if (mode
== TYPE_MODE (long_long_accum_type_node
))
2919 return unsignedp
? sat_long_long_accum_type_node
2920 : long_long_accum_type_node
;
2922 if (mode
== TYPE_MODE (unsigned_short_accum_type_node
))
2923 return unsignedp
? sat_unsigned_short_accum_type_node
2924 : unsigned_short_accum_type_node
;
2925 if (mode
== TYPE_MODE (unsigned_accum_type_node
))
2926 return unsignedp
? sat_unsigned_accum_type_node
2927 : unsigned_accum_type_node
;
2928 if (mode
== TYPE_MODE (unsigned_long_accum_type_node
))
2929 return unsignedp
? sat_unsigned_long_accum_type_node
2930 : unsigned_long_accum_type_node
;
2931 if (mode
== TYPE_MODE (unsigned_long_long_accum_type_node
))
2932 return unsignedp
? sat_unsigned_long_long_accum_type_node
2933 : unsigned_long_long_accum_type_node
;
2936 return unsignedp
? sat_qq_type_node
: qq_type_node
;
2938 return unsignedp
? sat_hq_type_node
: hq_type_node
;
2940 return unsignedp
? sat_sq_type_node
: sq_type_node
;
2942 return unsignedp
? sat_dq_type_node
: dq_type_node
;
2944 return unsignedp
? sat_tq_type_node
: tq_type_node
;
2946 if (mode
== UQQmode
)
2947 return unsignedp
? sat_uqq_type_node
: uqq_type_node
;
2948 if (mode
== UHQmode
)
2949 return unsignedp
? sat_uhq_type_node
: uhq_type_node
;
2950 if (mode
== USQmode
)
2951 return unsignedp
? sat_usq_type_node
: usq_type_node
;
2952 if (mode
== UDQmode
)
2953 return unsignedp
? sat_udq_type_node
: udq_type_node
;
2954 if (mode
== UTQmode
)
2955 return unsignedp
? sat_utq_type_node
: utq_type_node
;
2958 return unsignedp
? sat_ha_type_node
: ha_type_node
;
2960 return unsignedp
? sat_sa_type_node
: sa_type_node
;
2962 return unsignedp
? sat_da_type_node
: da_type_node
;
2964 return unsignedp
? sat_ta_type_node
: ta_type_node
;
2966 if (mode
== UHAmode
)
2967 return unsignedp
? sat_uha_type_node
: uha_type_node
;
2968 if (mode
== USAmode
)
2969 return unsignedp
? sat_usa_type_node
: usa_type_node
;
2970 if (mode
== UDAmode
)
2971 return unsignedp
? sat_uda_type_node
: uda_type_node
;
2972 if (mode
== UTAmode
)
2973 return unsignedp
? sat_uta_type_node
: uta_type_node
;
2976 for (t
= registered_builtin_types
; t
; t
= TREE_CHAIN (t
))
2977 if (TYPE_MODE (TREE_VALUE (t
)) == mode
)
2978 return TREE_VALUE (t
);
2984 c_common_unsigned_type (tree type
)
2986 return c_common_signed_or_unsigned_type (1, type
);
2989 /* Return a signed type the same as TYPE in other respects. */
2992 c_common_signed_type (tree type
)
2994 return c_common_signed_or_unsigned_type (0, type
);
2997 /* Return a type the same as TYPE except unsigned or
2998 signed according to UNSIGNEDP. */
3001 c_common_signed_or_unsigned_type (int unsignedp
, tree type
)
3005 /* This block of code emulates the behavior of the old
3006 c_common_unsigned_type. In particular, it returns
3007 long_unsigned_type_node if passed a long, even when a int would
3008 have the same size. This is necessary for warnings to work
3009 correctly in archs where sizeof(int) == sizeof(long) */
3011 type1
= TYPE_MAIN_VARIANT (type
);
3012 if (type1
== signed_char_type_node
|| type1
== char_type_node
|| type1
== unsigned_char_type_node
)
3013 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
3014 if (type1
== integer_type_node
|| type1
== unsigned_type_node
)
3015 return unsignedp
? unsigned_type_node
: integer_type_node
;
3016 if (type1
== short_integer_type_node
|| type1
== short_unsigned_type_node
)
3017 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
3018 if (type1
== long_integer_type_node
|| type1
== long_unsigned_type_node
)
3019 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
3020 if (type1
== long_long_integer_type_node
|| type1
== long_long_unsigned_type_node
)
3021 return unsignedp
? long_long_unsigned_type_node
: long_long_integer_type_node
;
3022 if (int128_integer_type_node
3023 && (type1
== int128_integer_type_node
3024 || type1
== int128_unsigned_type_node
))
3025 return unsignedp
? int128_unsigned_type_node
: int128_integer_type_node
;
3026 if (type1
== widest_integer_literal_type_node
|| type1
== widest_unsigned_literal_type_node
)
3027 return unsignedp
? widest_unsigned_literal_type_node
: widest_integer_literal_type_node
;
3028 #if HOST_BITS_PER_WIDE_INT >= 64
3029 if (type1
== intTI_type_node
|| type1
== unsigned_intTI_type_node
)
3030 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
3032 if (type1
== intDI_type_node
|| type1
== unsigned_intDI_type_node
)
3033 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
3034 if (type1
== intSI_type_node
|| type1
== unsigned_intSI_type_node
)
3035 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
3036 if (type1
== intHI_type_node
|| type1
== unsigned_intHI_type_node
)
3037 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
3038 if (type1
== intQI_type_node
|| type1
== unsigned_intQI_type_node
)
3039 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
3041 #define C_COMMON_FIXED_TYPES(NAME) \
3042 if (type1 == short_ ## NAME ## _type_node \
3043 || type1 == unsigned_short_ ## NAME ## _type_node) \
3044 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
3045 : short_ ## NAME ## _type_node; \
3046 if (type1 == NAME ## _type_node \
3047 || type1 == unsigned_ ## NAME ## _type_node) \
3048 return unsignedp ? unsigned_ ## NAME ## _type_node \
3049 : NAME ## _type_node; \
3050 if (type1 == long_ ## NAME ## _type_node \
3051 || type1 == unsigned_long_ ## NAME ## _type_node) \
3052 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
3053 : long_ ## NAME ## _type_node; \
3054 if (type1 == long_long_ ## NAME ## _type_node \
3055 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
3056 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
3057 : long_long_ ## NAME ## _type_node;
3059 #define C_COMMON_FIXED_MODE_TYPES(NAME) \
3060 if (type1 == NAME ## _type_node \
3061 || type1 == u ## NAME ## _type_node) \
3062 return unsignedp ? u ## NAME ## _type_node \
3063 : NAME ## _type_node;
3065 #define C_COMMON_FIXED_TYPES_SAT(NAME) \
3066 if (type1 == sat_ ## short_ ## NAME ## _type_node \
3067 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
3068 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
3069 : sat_ ## short_ ## NAME ## _type_node; \
3070 if (type1 == sat_ ## NAME ## _type_node \
3071 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
3072 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
3073 : sat_ ## NAME ## _type_node; \
3074 if (type1 == sat_ ## long_ ## NAME ## _type_node \
3075 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
3076 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
3077 : sat_ ## long_ ## NAME ## _type_node; \
3078 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
3079 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
3080 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
3081 : sat_ ## long_long_ ## NAME ## _type_node;
3083 #define C_COMMON_FIXED_MODE_TYPES_SAT(NAME) \
3084 if (type1 == sat_ ## NAME ## _type_node \
3085 || type1 == sat_ ## u ## NAME ## _type_node) \
3086 return unsignedp ? sat_ ## u ## NAME ## _type_node \
3087 : sat_ ## NAME ## _type_node;
3089 C_COMMON_FIXED_TYPES (fract
);
3090 C_COMMON_FIXED_TYPES_SAT (fract
);
3091 C_COMMON_FIXED_TYPES (accum
);
3092 C_COMMON_FIXED_TYPES_SAT (accum
);
3094 C_COMMON_FIXED_MODE_TYPES (qq
);
3095 C_COMMON_FIXED_MODE_TYPES (hq
);
3096 C_COMMON_FIXED_MODE_TYPES (sq
);
3097 C_COMMON_FIXED_MODE_TYPES (dq
);
3098 C_COMMON_FIXED_MODE_TYPES (tq
);
3099 C_COMMON_FIXED_MODE_TYPES_SAT (qq
);
3100 C_COMMON_FIXED_MODE_TYPES_SAT (hq
);
3101 C_COMMON_FIXED_MODE_TYPES_SAT (sq
);
3102 C_COMMON_FIXED_MODE_TYPES_SAT (dq
);
3103 C_COMMON_FIXED_MODE_TYPES_SAT (tq
);
3104 C_COMMON_FIXED_MODE_TYPES (ha
);
3105 C_COMMON_FIXED_MODE_TYPES (sa
);
3106 C_COMMON_FIXED_MODE_TYPES (da
);
3107 C_COMMON_FIXED_MODE_TYPES (ta
);
3108 C_COMMON_FIXED_MODE_TYPES_SAT (ha
);
3109 C_COMMON_FIXED_MODE_TYPES_SAT (sa
);
3110 C_COMMON_FIXED_MODE_TYPES_SAT (da
);
3111 C_COMMON_FIXED_MODE_TYPES_SAT (ta
);
3113 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
3114 the precision; they have precision set to match their range, but
3115 may use a wider mode to match an ABI. If we change modes, we may
3116 wind up with bad conversions. For INTEGER_TYPEs in C, must check
3117 the precision as well, so as to yield correct results for
3118 bit-field types. C++ does not have these separate bit-field
3119 types, and producing a signed or unsigned variant of an
3120 ENUMERAL_TYPE may cause other problems as well. */
3122 if (!INTEGRAL_TYPE_P (type
)
3123 || TYPE_UNSIGNED (type
) == unsignedp
)
3126 #define TYPE_OK(node) \
3127 (TYPE_MODE (type) == TYPE_MODE (node) \
3128 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
3129 if (TYPE_OK (signed_char_type_node
))
3130 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
3131 if (TYPE_OK (integer_type_node
))
3132 return unsignedp
? unsigned_type_node
: integer_type_node
;
3133 if (TYPE_OK (short_integer_type_node
))
3134 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
3135 if (TYPE_OK (long_integer_type_node
))
3136 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
3137 if (TYPE_OK (long_long_integer_type_node
))
3138 return (unsignedp
? long_long_unsigned_type_node
3139 : long_long_integer_type_node
);
3140 if (int128_integer_type_node
&& TYPE_OK (int128_integer_type_node
))
3141 return (unsignedp
? int128_unsigned_type_node
3142 : int128_integer_type_node
);
3143 if (TYPE_OK (widest_integer_literal_type_node
))
3144 return (unsignedp
? widest_unsigned_literal_type_node
3145 : widest_integer_literal_type_node
);
3147 #if HOST_BITS_PER_WIDE_INT >= 64
3148 if (TYPE_OK (intTI_type_node
))
3149 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
3151 if (TYPE_OK (intDI_type_node
))
3152 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
3153 if (TYPE_OK (intSI_type_node
))
3154 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
3155 if (TYPE_OK (intHI_type_node
))
3156 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
3157 if (TYPE_OK (intQI_type_node
))
3158 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
3161 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
3164 /* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
3167 c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width
, int unsignedp
)
3169 /* Extended integer types of the same width as a standard type have
3170 lesser rank, so those of the same width as int promote to int or
3171 unsigned int and are valid for printf formats expecting int or
3172 unsigned int. To avoid such special cases, avoid creating
3173 extended integer types for bit-fields if a standard integer type
3175 if (width
== TYPE_PRECISION (integer_type_node
))
3176 return unsignedp
? unsigned_type_node
: integer_type_node
;
3177 if (width
== TYPE_PRECISION (signed_char_type_node
))
3178 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
3179 if (width
== TYPE_PRECISION (short_integer_type_node
))
3180 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
3181 if (width
== TYPE_PRECISION (long_integer_type_node
))
3182 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
3183 if (width
== TYPE_PRECISION (long_long_integer_type_node
))
3184 return (unsignedp
? long_long_unsigned_type_node
3185 : long_long_integer_type_node
);
3186 if (int128_integer_type_node
3187 && width
== TYPE_PRECISION (int128_integer_type_node
))
3188 return (unsignedp
? int128_unsigned_type_node
3189 : int128_integer_type_node
);
3190 return build_nonstandard_integer_type (width
, unsignedp
);
3193 /* The C version of the register_builtin_type langhook. */
3196 c_register_builtin_type (tree type
, const char* name
)
3200 decl
= build_decl (UNKNOWN_LOCATION
,
3201 TYPE_DECL
, get_identifier (name
), type
);
3202 DECL_ARTIFICIAL (decl
) = 1;
3203 if (!TYPE_NAME (type
))
3204 TYPE_NAME (type
) = decl
;
3207 registered_builtin_types
= tree_cons (0, type
, registered_builtin_types
);
3210 /* Print an error message for invalid operands to arith operation
3211 CODE with TYPE0 for operand 0, and TYPE1 for operand 1.
3212 LOCATION is the location of the message. */
3215 binary_op_error (location_t location
, enum tree_code code
,
3216 tree type0
, tree type1
)
3223 opname
= "+"; break;
3225 opname
= "-"; break;
3227 opname
= "*"; break;
3229 opname
= "max"; break;
3231 opname
= "min"; break;
3233 opname
= "=="; break;
3235 opname
= "!="; break;
3237 opname
= "<="; break;
3239 opname
= ">="; break;
3241 opname
= "<"; break;
3243 opname
= ">"; break;
3245 opname
= "<<"; break;
3247 opname
= ">>"; break;
3248 case TRUNC_MOD_EXPR
:
3249 case FLOOR_MOD_EXPR
:
3250 opname
= "%"; break;
3251 case TRUNC_DIV_EXPR
:
3252 case FLOOR_DIV_EXPR
:
3253 opname
= "/"; break;
3255 opname
= "&"; break;
3257 opname
= "|"; break;
3258 case TRUTH_ANDIF_EXPR
:
3259 opname
= "&&"; break;
3260 case TRUTH_ORIF_EXPR
:
3261 opname
= "||"; break;
3263 opname
= "^"; break;
3268 "invalid operands to binary %s (have %qT and %qT)", opname
,
3272 /* Subroutine of build_binary_op, used for comparison operations.
3273 See if the operands have both been converted from subword integer types
3274 and, if so, perhaps change them both back to their original type.
3275 This function is also responsible for converting the two operands
3276 to the proper common type for comparison.
3278 The arguments of this function are all pointers to local variables
3279 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
3280 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
3282 If this function returns nonzero, it means that the comparison has
3283 a constant value. What this function returns is an expression for
3287 shorten_compare (tree
*op0_ptr
, tree
*op1_ptr
, tree
*restype_ptr
,
3288 enum tree_code
*rescode_ptr
)
3291 tree op0
= *op0_ptr
;
3292 tree op1
= *op1_ptr
;
3293 int unsignedp0
, unsignedp1
;
3295 tree primop0
, primop1
;
3296 enum tree_code code
= *rescode_ptr
;
3298 /* Throw away any conversions to wider types
3299 already present in the operands. */
3301 primop0
= get_narrower (op0
, &unsignedp0
);
3302 primop1
= get_narrower (op1
, &unsignedp1
);
3304 /* If primopN is first sign-extended from primopN's precision to opN's
3305 precision, then zero-extended from opN's precision to
3306 *restype_ptr precision, shortenings might be invalid. */
3307 if (TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (TREE_TYPE (op0
))
3308 && TYPE_PRECISION (TREE_TYPE (op0
)) < TYPE_PRECISION (*restype_ptr
)
3310 && TYPE_UNSIGNED (TREE_TYPE (op0
)))
3312 if (TYPE_PRECISION (TREE_TYPE (primop1
)) < TYPE_PRECISION (TREE_TYPE (op1
))
3313 && TYPE_PRECISION (TREE_TYPE (op1
)) < TYPE_PRECISION (*restype_ptr
)
3315 && TYPE_UNSIGNED (TREE_TYPE (op1
)))
3318 /* Handle the case that OP0 does not *contain* a conversion
3319 but it *requires* conversion to FINAL_TYPE. */
3321 if (op0
== primop0
&& TREE_TYPE (op0
) != *restype_ptr
)
3322 unsignedp0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
3323 if (op1
== primop1
&& TREE_TYPE (op1
) != *restype_ptr
)
3324 unsignedp1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
3326 /* If one of the operands must be floated, we cannot optimize. */
3327 real1
= TREE_CODE (TREE_TYPE (primop0
)) == REAL_TYPE
;
3328 real2
= TREE_CODE (TREE_TYPE (primop1
)) == REAL_TYPE
;
3330 /* If first arg is constant, swap the args (changing operation
3331 so value is preserved), for canonicalization. Don't do this if
3332 the second arg is 0. */
3334 if (TREE_CONSTANT (primop0
)
3335 && !integer_zerop (primop1
) && !real_zerop (primop1
)
3336 && !fixed_zerop (primop1
))
3339 int temi
= unsignedp0
;
3347 unsignedp0
= unsignedp1
;
3370 *rescode_ptr
= code
;
3373 /* If comparing an integer against a constant more bits wide,
3374 maybe we can deduce a value of 1 or 0 independent of the data.
3375 Or else truncate the constant now
3376 rather than extend the variable at run time.
3378 This is only interesting if the constant is the wider arg.
3379 Also, it is not safe if the constant is unsigned and the
3380 variable arg is signed, since in this case the variable
3381 would be sign-extended and then regarded as unsigned.
3382 Our technique fails in this case because the lowest/highest
3383 possible unsigned results don't follow naturally from the
3384 lowest/highest possible values of the variable operand.
3385 For just EQ_EXPR and NE_EXPR there is another technique that
3386 could be used: see if the constant can be faithfully represented
3387 in the other operand's type, by truncating it and reextending it
3388 and see if that preserves the constant's value. */
3390 if (!real1
&& !real2
3391 && TREE_CODE (TREE_TYPE (primop0
)) != FIXED_POINT_TYPE
3392 && TREE_CODE (primop1
) == INTEGER_CST
3393 && TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (*restype_ptr
))
3395 int min_gt
, max_gt
, min_lt
, max_lt
;
3396 tree maxval
, minval
;
3397 /* 1 if comparison is nominally unsigned. */
3398 int unsignedp
= TYPE_UNSIGNED (*restype_ptr
);
3401 type
= c_common_signed_or_unsigned_type (unsignedp0
,
3402 TREE_TYPE (primop0
));
3404 maxval
= TYPE_MAX_VALUE (type
);
3405 minval
= TYPE_MIN_VALUE (type
);
3407 if (unsignedp
&& !unsignedp0
)
3408 *restype_ptr
= c_common_signed_type (*restype_ptr
);
3410 if (TREE_TYPE (primop1
) != *restype_ptr
)
3412 /* Convert primop1 to target type, but do not introduce
3413 additional overflow. We know primop1 is an int_cst. */
3414 primop1
= force_fit_type_double (*restype_ptr
,
3415 tree_to_double_int (primop1
),
3416 0, TREE_OVERFLOW (primop1
));
3418 if (type
!= *restype_ptr
)
3420 minval
= convert (*restype_ptr
, minval
);
3421 maxval
= convert (*restype_ptr
, maxval
);
3424 if (unsignedp
&& unsignedp0
)
3426 min_gt
= INT_CST_LT_UNSIGNED (primop1
, minval
);
3427 max_gt
= INT_CST_LT_UNSIGNED (primop1
, maxval
);
3428 min_lt
= INT_CST_LT_UNSIGNED (minval
, primop1
);
3429 max_lt
= INT_CST_LT_UNSIGNED (maxval
, primop1
);
3433 min_gt
= INT_CST_LT (primop1
, minval
);
3434 max_gt
= INT_CST_LT (primop1
, maxval
);
3435 min_lt
= INT_CST_LT (minval
, primop1
);
3436 max_lt
= INT_CST_LT (maxval
, primop1
);
3440 /* This used to be a switch, but Genix compiler can't handle that. */
3441 if (code
== NE_EXPR
)
3443 if (max_lt
|| min_gt
)
3444 val
= truthvalue_true_node
;
3446 else if (code
== EQ_EXPR
)
3448 if (max_lt
|| min_gt
)
3449 val
= truthvalue_false_node
;
3451 else if (code
== LT_EXPR
)
3454 val
= truthvalue_true_node
;
3456 val
= truthvalue_false_node
;
3458 else if (code
== GT_EXPR
)
3461 val
= truthvalue_true_node
;
3463 val
= truthvalue_false_node
;
3465 else if (code
== LE_EXPR
)
3468 val
= truthvalue_true_node
;
3470 val
= truthvalue_false_node
;
3472 else if (code
== GE_EXPR
)
3475 val
= truthvalue_true_node
;
3477 val
= truthvalue_false_node
;
3480 /* If primop0 was sign-extended and unsigned comparison specd,
3481 we did a signed comparison above using the signed type bounds.
3482 But the comparison we output must be unsigned.
3484 Also, for inequalities, VAL is no good; but if the signed
3485 comparison had *any* fixed result, it follows that the
3486 unsigned comparison just tests the sign in reverse
3487 (positive values are LE, negative ones GE).
3488 So we can generate an unsigned comparison
3489 against an extreme value of the signed type. */
3491 if (unsignedp
&& !unsignedp0
)
3498 primop1
= TYPE_MIN_VALUE (type
);
3504 primop1
= TYPE_MAX_VALUE (type
);
3511 type
= c_common_unsigned_type (type
);
3514 if (TREE_CODE (primop0
) != INTEGER_CST
)
3516 if (val
== truthvalue_false_node
)
3517 warning (OPT_Wtype_limits
, "comparison is always false due to limited range of data type");
3518 if (val
== truthvalue_true_node
)
3519 warning (OPT_Wtype_limits
, "comparison is always true due to limited range of data type");
3524 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3525 if (TREE_SIDE_EFFECTS (primop0
))
3526 return build2 (COMPOUND_EXPR
, TREE_TYPE (val
), primop0
, val
);
3530 /* Value is not predetermined, but do the comparison
3531 in the type of the operand that is not constant.
3532 TYPE is already properly set. */
3535 /* If either arg is decimal float and the other is float, find the
3536 proper common type to use for comparison. */
3537 else if (real1
&& real2
3538 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0
)))
3539 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1
)))))
3540 type
= common_type (TREE_TYPE (primop0
), TREE_TYPE (primop1
));
3542 else if (real1
&& real2
3543 && (TYPE_PRECISION (TREE_TYPE (primop0
))
3544 == TYPE_PRECISION (TREE_TYPE (primop1
))))
3545 type
= TREE_TYPE (primop0
);
3547 /* If args' natural types are both narrower than nominal type
3548 and both extend in the same manner, compare them
3549 in the type of the wider arg.
3550 Otherwise must actually extend both to the nominal
3551 common type lest different ways of extending
3553 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
3555 else if (unsignedp0
== unsignedp1
&& real1
== real2
3556 && TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (*restype_ptr
)
3557 && TYPE_PRECISION (TREE_TYPE (primop1
)) < TYPE_PRECISION (*restype_ptr
))
3559 type
= common_type (TREE_TYPE (primop0
), TREE_TYPE (primop1
));
3560 type
= c_common_signed_or_unsigned_type (unsignedp0
3561 || TYPE_UNSIGNED (*restype_ptr
),
3563 /* Make sure shorter operand is extended the right way
3564 to match the longer operand. */
3566 = convert (c_common_signed_or_unsigned_type (unsignedp0
,
3567 TREE_TYPE (primop0
)),
3570 = convert (c_common_signed_or_unsigned_type (unsignedp1
,
3571 TREE_TYPE (primop1
)),
3576 /* Here we must do the comparison on the nominal type
3577 using the args exactly as we received them. */
3578 type
= *restype_ptr
;
3582 if (!real1
&& !real2
&& integer_zerop (primop1
)
3583 && TYPE_UNSIGNED (*restype_ptr
))
3589 /* All unsigned values are >= 0, so we warn. However,
3590 if OP0 is a constant that is >= 0, the signedness of
3591 the comparison isn't an issue, so suppress the
3593 if (warn_type_limits
&& !in_system_header
3594 && !(TREE_CODE (primop0
) == INTEGER_CST
3595 && !TREE_OVERFLOW (convert (c_common_signed_type (type
),
3597 warning (OPT_Wtype_limits
,
3598 "comparison of unsigned expression >= 0 is always true");
3599 value
= truthvalue_true_node
;
3603 if (warn_type_limits
&& !in_system_header
3604 && !(TREE_CODE (primop0
) == INTEGER_CST
3605 && !TREE_OVERFLOW (convert (c_common_signed_type (type
),
3607 warning (OPT_Wtype_limits
,
3608 "comparison of unsigned expression < 0 is always false");
3609 value
= truthvalue_false_node
;
3618 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3619 if (TREE_SIDE_EFFECTS (primop0
))
3620 return build2 (COMPOUND_EXPR
, TREE_TYPE (value
),
3627 *op0_ptr
= convert (type
, primop0
);
3628 *op1_ptr
= convert (type
, primop1
);
3630 *restype_ptr
= truthvalue_type_node
;
3635 /* Return a tree for the sum or difference (RESULTCODE says which)
3636 of pointer PTROP and integer INTOP. */
3639 pointer_int_sum (location_t loc
, enum tree_code resultcode
,
3640 tree ptrop
, tree intop
)
3644 /* The result is a pointer of the same type that is being added. */
3645 tree result_type
= TREE_TYPE (ptrop
);
3647 if (TREE_CODE (TREE_TYPE (result_type
)) == VOID_TYPE
)
3649 pedwarn (loc
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3650 "pointer of type %<void *%> used in arithmetic");
3651 size_exp
= integer_one_node
;
3653 else if (TREE_CODE (TREE_TYPE (result_type
)) == FUNCTION_TYPE
)
3655 pedwarn (loc
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3656 "pointer to a function used in arithmetic");
3657 size_exp
= integer_one_node
;
3659 else if (TREE_CODE (TREE_TYPE (result_type
)) == METHOD_TYPE
)
3661 pedwarn (loc
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
3662 "pointer to member function used in arithmetic");
3663 size_exp
= integer_one_node
;
3666 size_exp
= size_in_bytes (TREE_TYPE (result_type
));
3668 /* We are manipulating pointer values, so we don't need to warn
3669 about relying on undefined signed overflow. We disable the
3670 warning here because we use integer types so fold won't know that
3671 they are really pointers. */
3672 fold_defer_overflow_warnings ();
3674 /* If what we are about to multiply by the size of the elements
3675 contains a constant term, apply distributive law
3676 and multiply that constant term separately.
3677 This helps produce common subexpressions. */
3678 if ((TREE_CODE (intop
) == PLUS_EXPR
|| TREE_CODE (intop
) == MINUS_EXPR
)
3679 && !TREE_CONSTANT (intop
)
3680 && TREE_CONSTANT (TREE_OPERAND (intop
, 1))
3681 && TREE_CONSTANT (size_exp
)
3682 /* If the constant comes from pointer subtraction,
3683 skip this optimization--it would cause an error. */
3684 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop
, 0))) == INTEGER_TYPE
3685 /* If the constant is unsigned, and smaller than the pointer size,
3686 then we must skip this optimization. This is because it could cause
3687 an overflow error if the constant is negative but INTOP is not. */
3688 && (!TYPE_UNSIGNED (TREE_TYPE (intop
))
3689 || (TYPE_PRECISION (TREE_TYPE (intop
))
3690 == TYPE_PRECISION (TREE_TYPE (ptrop
)))))
3692 enum tree_code subcode
= resultcode
;
3693 tree int_type
= TREE_TYPE (intop
);
3694 if (TREE_CODE (intop
) == MINUS_EXPR
)
3695 subcode
= (subcode
== PLUS_EXPR
? MINUS_EXPR
: PLUS_EXPR
);
3696 /* Convert both subexpression types to the type of intop,
3697 because weird cases involving pointer arithmetic
3698 can result in a sum or difference with different type args. */
3699 ptrop
= build_binary_op (EXPR_LOCATION (TREE_OPERAND (intop
, 1)),
3701 convert (int_type
, TREE_OPERAND (intop
, 1)), 1);
3702 intop
= convert (int_type
, TREE_OPERAND (intop
, 0));
3705 /* Convert the integer argument to a type the same size as sizetype
3706 so the multiply won't overflow spuriously. */
3707 if (TYPE_PRECISION (TREE_TYPE (intop
)) != TYPE_PRECISION (sizetype
)
3708 || TYPE_UNSIGNED (TREE_TYPE (intop
)) != TYPE_UNSIGNED (sizetype
))
3709 intop
= convert (c_common_type_for_size (TYPE_PRECISION (sizetype
),
3710 TYPE_UNSIGNED (sizetype
)), intop
);
3712 /* Replace the integer argument with a suitable product by the object size.
3713 Do this multiplication as signed, then convert to the appropriate type
3714 for the pointer operation and disregard an overflow that occured only
3715 because of the sign-extension change in the latter conversion. */
3717 tree t
= build_binary_op (loc
,
3719 convert (TREE_TYPE (intop
), size_exp
), 1);
3720 intop
= convert (sizetype
, t
);
3721 if (TREE_OVERFLOW_P (intop
) && !TREE_OVERFLOW (t
))
3722 intop
= build_int_cst_wide (TREE_TYPE (intop
), TREE_INT_CST_LOW (intop
),
3723 TREE_INT_CST_HIGH (intop
));
3726 /* Create the sum or difference. */
3727 if (resultcode
== MINUS_EXPR
)
3728 intop
= fold_build1_loc (loc
, NEGATE_EXPR
, sizetype
, intop
);
3730 ret
= fold_build2_loc (loc
, POINTER_PLUS_EXPR
, result_type
, ptrop
, intop
);
3732 fold_undefer_and_ignore_overflow_warnings ();
3737 /* Wrap a C_MAYBE_CONST_EXPR around an expression that is fully folded
3738 and if NON_CONST is known not to be permitted in an evaluated part
3739 of a constant expression. */
3742 c_wrap_maybe_const (tree expr
, bool non_const
)
3744 bool nowarning
= TREE_NO_WARNING (expr
);
3745 location_t loc
= EXPR_LOCATION (expr
);
3747 /* This should never be called for C++. */
3748 if (c_dialect_cxx ())
3751 /* The result of folding may have a NOP_EXPR to set TREE_NO_WARNING. */
3752 STRIP_TYPE_NOPS (expr
);
3753 expr
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (expr
), NULL
, expr
);
3754 C_MAYBE_CONST_EXPR_NON_CONST (expr
) = non_const
;
3756 TREE_NO_WARNING (expr
) = 1;
3757 protected_set_expr_location (expr
, loc
);
3762 /* Wrap a SAVE_EXPR around EXPR, if appropriate. Like save_expr, but
3763 for C folds the inside expression and wraps a C_MAYBE_CONST_EXPR
3764 around the SAVE_EXPR if needed so that c_fully_fold does not need
3765 to look inside SAVE_EXPRs. */
3768 c_save_expr (tree expr
)
3770 bool maybe_const
= true;
3771 if (c_dialect_cxx ())
3772 return save_expr (expr
);
3773 expr
= c_fully_fold (expr
, false, &maybe_const
);
3774 expr
= save_expr (expr
);
3776 expr
= c_wrap_maybe_const (expr
, true);
3780 /* Return whether EXPR is a declaration whose address can never be
3784 decl_with_nonnull_addr_p (const_tree expr
)
3786 return (DECL_P (expr
)
3787 && (TREE_CODE (expr
) == PARM_DECL
3788 || TREE_CODE (expr
) == LABEL_DECL
3789 || !DECL_WEAK (expr
)));
3792 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
3793 or for an `if' or `while' statement or ?..: exp. It should already
3794 have been validated to be of suitable type; otherwise, a bad
3795 diagnostic may result.
3797 The EXPR is located at LOCATION.
3799 This preparation consists of taking the ordinary
3800 representation of an expression expr and producing a valid tree
3801 boolean expression describing whether expr is nonzero. We could
3802 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
3803 but we optimize comparisons, &&, ||, and !.
3805 The resulting type should always be `truthvalue_type_node'. */
3808 c_common_truthvalue_conversion (location_t location
, tree expr
)
3810 switch (TREE_CODE (expr
))
3812 case EQ_EXPR
: case NE_EXPR
: case UNEQ_EXPR
: case LTGT_EXPR
:
3813 case LE_EXPR
: case GE_EXPR
: case LT_EXPR
: case GT_EXPR
:
3814 case UNLE_EXPR
: case UNGE_EXPR
: case UNLT_EXPR
: case UNGT_EXPR
:
3815 case ORDERED_EXPR
: case UNORDERED_EXPR
:
3816 if (TREE_TYPE (expr
) == truthvalue_type_node
)
3818 expr
= build2 (TREE_CODE (expr
), truthvalue_type_node
,
3819 TREE_OPERAND (expr
, 0), TREE_OPERAND (expr
, 1));
3822 case TRUTH_ANDIF_EXPR
:
3823 case TRUTH_ORIF_EXPR
:
3824 case TRUTH_AND_EXPR
:
3826 case TRUTH_XOR_EXPR
:
3827 if (TREE_TYPE (expr
) == truthvalue_type_node
)
3829 expr
= build2 (TREE_CODE (expr
), truthvalue_type_node
,
3830 c_common_truthvalue_conversion (location
,
3831 TREE_OPERAND (expr
, 0)),
3832 c_common_truthvalue_conversion (location
,
3833 TREE_OPERAND (expr
, 1)));
3836 case TRUTH_NOT_EXPR
:
3837 if (TREE_TYPE (expr
) == truthvalue_type_node
)
3839 expr
= build1 (TREE_CODE (expr
), truthvalue_type_node
,
3840 c_common_truthvalue_conversion (location
,
3841 TREE_OPERAND (expr
, 0)));
3848 return integer_zerop (expr
) ? truthvalue_false_node
3849 : truthvalue_true_node
;
3852 return real_compare (NE_EXPR
, &TREE_REAL_CST (expr
), &dconst0
)
3853 ? truthvalue_true_node
3854 : truthvalue_false_node
;
3857 return fixed_compare (NE_EXPR
, &TREE_FIXED_CST (expr
),
3858 &FCONST0 (TYPE_MODE (TREE_TYPE (expr
))))
3859 ? truthvalue_true_node
3860 : truthvalue_false_node
;
3863 expr
= build_unary_op (location
, ADDR_EXPR
, expr
, 0);
3868 tree inner
= TREE_OPERAND (expr
, 0);
3869 if (decl_with_nonnull_addr_p (inner
))
3871 /* Common Ada/Pascal programmer's mistake. */
3872 warning_at (location
,
3874 "the address of %qD will always evaluate as %<true%>",
3876 return truthvalue_true_node
;
3882 expr
= build_binary_op (EXPR_LOCATION (expr
),
3883 (TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 1))
3884 ? TRUTH_OR_EXPR
: TRUTH_ORIF_EXPR
),
3885 c_common_truthvalue_conversion (location
,
3886 TREE_OPERAND (expr
, 0)),
3887 c_common_truthvalue_conversion (location
,
3888 TREE_OPERAND (expr
, 1)),
3895 case EXCESS_PRECISION_EXPR
:
3896 /* These don't change whether an object is nonzero or zero. */
3897 return c_common_truthvalue_conversion (location
, TREE_OPERAND (expr
, 0));
3901 /* These don't change whether an object is zero or nonzero, but
3902 we can't ignore them if their second arg has side-effects. */
3903 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 1)))
3905 expr
= build2 (COMPOUND_EXPR
, truthvalue_type_node
,
3906 TREE_OPERAND (expr
, 1),
3907 c_common_truthvalue_conversion
3908 (location
, TREE_OPERAND (expr
, 0)));
3912 return c_common_truthvalue_conversion (location
,
3913 TREE_OPERAND (expr
, 0));
3916 /* Distribute the conversion into the arms of a COND_EXPR. */
3917 if (c_dialect_cxx ())
3919 expr
= fold_build3_loc (location
, COND_EXPR
, truthvalue_type_node
,
3920 TREE_OPERAND (expr
, 0),
3921 c_common_truthvalue_conversion (location
,
3924 c_common_truthvalue_conversion (location
,
3931 /* Folding will happen later for C. */
3932 expr
= build3 (COND_EXPR
, truthvalue_type_node
,
3933 TREE_OPERAND (expr
, 0),
3934 c_common_truthvalue_conversion (location
,
3935 TREE_OPERAND (expr
, 1)),
3936 c_common_truthvalue_conversion (location
,
3937 TREE_OPERAND (expr
, 2)));
3942 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
3943 since that affects how `default_conversion' will behave. */
3944 if (TREE_CODE (TREE_TYPE (expr
)) == REFERENCE_TYPE
3945 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr
, 0))) == REFERENCE_TYPE
)
3947 /* If this is widening the argument, we can ignore it. */
3948 if (TYPE_PRECISION (TREE_TYPE (expr
))
3949 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
3950 return c_common_truthvalue_conversion (location
,
3951 TREE_OPERAND (expr
, 0));
3955 if (!TREE_NO_WARNING (expr
)
3956 && warn_parentheses
)
3958 warning (OPT_Wparentheses
,
3959 "suggest parentheses around assignment used as truth value");
3960 TREE_NO_WARNING (expr
) = 1;
3968 if (TREE_CODE (TREE_TYPE (expr
)) == COMPLEX_TYPE
)
3970 tree t
= (in_late_binary_op
? save_expr (expr
) : c_save_expr (expr
));
3971 expr
= (build_binary_op
3972 (EXPR_LOCATION (expr
),
3973 (TREE_SIDE_EFFECTS (expr
)
3974 ? TRUTH_OR_EXPR
: TRUTH_ORIF_EXPR
),
3975 c_common_truthvalue_conversion
3977 build_unary_op (location
, REALPART_EXPR
, t
, 0)),
3978 c_common_truthvalue_conversion
3980 build_unary_op (location
, IMAGPART_EXPR
, t
, 0)),
3985 if (TREE_CODE (TREE_TYPE (expr
)) == FIXED_POINT_TYPE
)
3987 tree fixed_zero_node
= build_fixed (TREE_TYPE (expr
),
3989 (TREE_TYPE (expr
))));
3990 return build_binary_op (location
, NE_EXPR
, expr
, fixed_zero_node
, 1);
3993 return build_binary_op (location
, NE_EXPR
, expr
, integer_zero_node
, 1);
3996 protected_set_expr_location (expr
, location
);
4000 static void def_builtin_1 (enum built_in_function fncode
,
4002 enum built_in_class fnclass
,
4003 tree fntype
, tree libtype
,
4004 bool both_p
, bool fallback_p
, bool nonansi_p
,
4005 tree fnattrs
, bool implicit_p
);
4008 /* Apply the TYPE_QUALS to the new DECL. */
4011 c_apply_type_quals_to_decl (int type_quals
, tree decl
)
4013 tree type
= TREE_TYPE (decl
);
4015 if (type
== error_mark_node
)
4018 if (((type_quals
& TYPE_QUAL_CONST
)
4019 || (type
&& TREE_CODE (type
) == REFERENCE_TYPE
))
4020 /* An object declared 'const' is only readonly after it is
4021 initialized. We don't have any way of expressing this currently,
4022 so we need to be conservative and unset TREE_READONLY for types
4023 with constructors. Otherwise aliasing code will ignore stores in
4024 an inline constructor. */
4025 && !(type
&& TYPE_NEEDS_CONSTRUCTING (type
)))
4026 TREE_READONLY (decl
) = 1;
4027 if (type_quals
& TYPE_QUAL_VOLATILE
)
4029 TREE_SIDE_EFFECTS (decl
) = 1;
4030 TREE_THIS_VOLATILE (decl
) = 1;
4032 if (type_quals
& TYPE_QUAL_RESTRICT
)
4034 while (type
&& TREE_CODE (type
) == ARRAY_TYPE
)
4035 /* Allow 'restrict' on arrays of pointers.
4036 FIXME currently we just ignore it. */
4037 type
= TREE_TYPE (type
);
4039 || !POINTER_TYPE_P (type
)
4040 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type
)))
4041 error ("invalid use of %<restrict%>");
4045 /* Hash function for the problem of multiple type definitions in
4046 different files. This must hash all types that will compare
4047 equal via comptypes to the same value. In practice it hashes
4048 on some of the simple stuff and leaves the details to comptypes. */
4051 c_type_hash (const void *p
)
4055 const_tree
const t
= (const_tree
) p
;
4057 switch (TREE_CODE (t
))
4059 /* For pointers, hash on pointee type plus some swizzling. */
4061 return c_type_hash (TREE_TYPE (t
)) ^ 0x3003003;
4062 /* Hash on number of elements and total size. */
4065 t2
= TYPE_VALUES (t
);
4069 t2
= TYPE_FIELDS (t
);
4071 case QUAL_UNION_TYPE
:
4073 t2
= TYPE_FIELDS (t
);
4077 t2
= TYPE_FIELDS (t
);
4082 /* FIXME: We want to use a DECL_CHAIN iteration method here, but
4083 TYPE_VALUES of ENUMERAL_TYPEs is stored as a TREE_LIST. */
4084 n_elements
= list_length (t2
);
4085 /* We might have a VLA here. */
4086 if (TREE_CODE (TYPE_SIZE (t
)) != INTEGER_CST
)
4089 size
= TREE_INT_CST_LOW (TYPE_SIZE (t
));
4090 return ((size
<< 24) | (n_elements
<< shift
));
4093 static GTY((param_is (union tree_node
))) htab_t type_hash_table
;
4095 /* Return the typed-based alias set for T, which may be an expression
4096 or a type. Return -1 if we don't do anything special. */
4099 c_common_get_alias_set (tree t
)
4104 /* For VLAs, use the alias set of the element type rather than the
4105 default of alias set 0 for types compared structurally. */
4106 if (TYPE_P (t
) && TYPE_STRUCTURAL_EQUALITY_P (t
))
4108 if (TREE_CODE (t
) == ARRAY_TYPE
)
4109 return get_alias_set (TREE_TYPE (t
));
4113 /* Permit type-punning when accessing a union, provided the access
4114 is directly through the union. For example, this code does not
4115 permit taking the address of a union member and then storing
4116 through it. Even the type-punning allowed here is a GCC
4117 extension, albeit a common and useful one; the C standard says
4118 that such accesses have implementation-defined behavior. */
4120 TREE_CODE (u
) == COMPONENT_REF
|| TREE_CODE (u
) == ARRAY_REF
;
4121 u
= TREE_OPERAND (u
, 0))
4122 if (TREE_CODE (u
) == COMPONENT_REF
4123 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u
, 0))) == UNION_TYPE
)
4126 /* That's all the expressions we handle specially. */
4130 /* The C standard guarantees that any object may be accessed via an
4131 lvalue that has character type. */
4132 if (t
== char_type_node
4133 || t
== signed_char_type_node
4134 || t
== unsigned_char_type_node
)
4137 /* The C standard specifically allows aliasing between signed and
4138 unsigned variants of the same type. We treat the signed
4139 variant as canonical. */
4140 if (TREE_CODE (t
) == INTEGER_TYPE
&& TYPE_UNSIGNED (t
))
4142 tree t1
= c_common_signed_type (t
);
4144 /* t1 == t can happen for boolean nodes which are always unsigned. */
4146 return get_alias_set (t1
);
4149 /* Handle the case of multiple type nodes referring to "the same" type,
4150 which occurs with IMA. These share an alias set. FIXME: Currently only
4151 C90 is handled. (In C99 type compatibility is not transitive, which
4152 complicates things mightily. The alias set splay trees can theoretically
4153 represent this, but insertion is tricky when you consider all the
4154 different orders things might arrive in.) */
4156 if (c_language
!= clk_c
|| flag_isoc99
)
4159 /* Save time if there's only one input file. */
4160 if (num_in_fnames
== 1)
4163 /* Pointers need special handling if they point to any type that
4164 needs special handling (below). */
4165 if (TREE_CODE (t
) == POINTER_TYPE
)
4168 /* Find bottom type under any nested POINTERs. */
4169 for (t2
= TREE_TYPE (t
);
4170 TREE_CODE (t2
) == POINTER_TYPE
;
4171 t2
= TREE_TYPE (t2
))
4173 if (TREE_CODE (t2
) != RECORD_TYPE
4174 && TREE_CODE (t2
) != ENUMERAL_TYPE
4175 && TREE_CODE (t2
) != QUAL_UNION_TYPE
4176 && TREE_CODE (t2
) != UNION_TYPE
)
4178 if (TYPE_SIZE (t2
) == 0)
4181 /* These are the only cases that need special handling. */
4182 if (TREE_CODE (t
) != RECORD_TYPE
4183 && TREE_CODE (t
) != ENUMERAL_TYPE
4184 && TREE_CODE (t
) != QUAL_UNION_TYPE
4185 && TREE_CODE (t
) != UNION_TYPE
4186 && TREE_CODE (t
) != POINTER_TYPE
)
4189 if (TYPE_SIZE (t
) == 0)
4192 /* Look up t in hash table. Only one of the compatible types within each
4193 alias set is recorded in the table. */
4194 if (!type_hash_table
)
4195 type_hash_table
= htab_create_ggc (1021, c_type_hash
,
4196 (htab_eq
) lang_hooks
.types_compatible_p
,
4198 slot
= htab_find_slot (type_hash_table
, t
, INSERT
);
4201 TYPE_ALIAS_SET (t
) = TYPE_ALIAS_SET ((tree
)*slot
);
4202 return TYPE_ALIAS_SET ((tree
)*slot
);
4205 /* Our caller will assign and record (in t) a new alias set; all we need
4206 to do is remember t in the hash table. */
4212 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where
4213 the second parameter indicates which OPERATOR is being applied.
4214 The COMPLAIN flag controls whether we should diagnose possibly
4215 ill-formed constructs or not. LOC is the location of the SIZEOF or
4219 c_sizeof_or_alignof_type (location_t loc
,
4220 tree type
, bool is_sizeof
, int complain
)
4222 const char *op_name
;
4224 enum tree_code type_code
= TREE_CODE (type
);
4226 op_name
= is_sizeof
? "sizeof" : "__alignof__";
4228 if (type_code
== FUNCTION_TYPE
)
4232 if (complain
&& (pedantic
|| warn_pointer_arith
))
4233 pedwarn (loc
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
4234 "invalid application of %<sizeof%> to a function type");
4236 return error_mark_node
;
4237 value
= size_one_node
;
4240 value
= size_int (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
4242 else if (type_code
== VOID_TYPE
|| type_code
== ERROR_MARK
)
4244 if (type_code
== VOID_TYPE
4245 && complain
&& (pedantic
|| warn_pointer_arith
))
4246 pedwarn (loc
, pedantic
? OPT_pedantic
: OPT_Wpointer_arith
,
4247 "invalid application of %qs to a void type", op_name
);
4249 return error_mark_node
;
4250 value
= size_one_node
;
4252 else if (!COMPLETE_TYPE_P (type
))
4255 error_at (loc
, "invalid application of %qs to incomplete type %qT ",
4257 return error_mark_node
;
4262 /* Convert in case a char is more than one unit. */
4263 value
= size_binop_loc (loc
, CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
4264 size_int (TYPE_PRECISION (char_type_node
)
4267 value
= size_int (TYPE_ALIGN_UNIT (type
));
4270 /* VALUE will have an integer type with TYPE_IS_SIZETYPE set.
4271 TYPE_IS_SIZETYPE means that certain things (like overflow) will
4272 never happen. However, this node should really have type
4273 `size_t', which is just a typedef for an ordinary integer type. */
4274 value
= fold_convert_loc (loc
, size_type_node
, value
);
4275 gcc_assert (!TYPE_IS_SIZETYPE (TREE_TYPE (value
)));
4280 /* Implement the __alignof keyword: Return the minimum required
4281 alignment of EXPR, measured in bytes. For VAR_DECLs,
4282 FUNCTION_DECLs and FIELD_DECLs return DECL_ALIGN (which can be set
4283 from an "aligned" __attribute__ specification). LOC is the
4284 location of the ALIGNOF operator. */
4287 c_alignof_expr (location_t loc
, tree expr
)
4291 if (VAR_OR_FUNCTION_DECL_P (expr
))
4292 t
= size_int (DECL_ALIGN_UNIT (expr
));
4294 else if (TREE_CODE (expr
) == COMPONENT_REF
4295 && DECL_C_BIT_FIELD (TREE_OPERAND (expr
, 1)))
4297 error_at (loc
, "%<__alignof%> applied to a bit-field");
4300 else if (TREE_CODE (expr
) == COMPONENT_REF
4301 && TREE_CODE (TREE_OPERAND (expr
, 1)) == FIELD_DECL
)
4302 t
= size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr
, 1)));
4304 else if (TREE_CODE (expr
) == INDIRECT_REF
)
4306 tree t
= TREE_OPERAND (expr
, 0);
4308 int bestalign
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t
)));
4310 while (CONVERT_EXPR_P (t
)
4311 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t
, 0))) == POINTER_TYPE
)
4315 t
= TREE_OPERAND (t
, 0);
4316 thisalign
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t
)));
4317 if (thisalign
> bestalign
)
4318 best
= t
, bestalign
= thisalign
;
4320 return c_alignof (loc
, TREE_TYPE (TREE_TYPE (best
)));
4323 return c_alignof (loc
, TREE_TYPE (expr
));
4325 return fold_convert_loc (loc
, size_type_node
, t
);
4328 /* Handle C and C++ default attributes. */
4330 enum built_in_attribute
4332 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
4333 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
4334 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
4335 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
4336 #include "builtin-attrs.def"
4337 #undef DEF_ATTR_NULL_TREE
4339 #undef DEF_ATTR_IDENT
4340 #undef DEF_ATTR_TREE_LIST
4344 static GTY(()) tree built_in_attributes
[(int) ATTR_LAST
];
4346 static void c_init_attributes (void);
4350 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
4351 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
4352 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
4353 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
4354 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4355 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4356 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
4357 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) NAME,
4358 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) NAME,
4359 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
4360 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
4361 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
4362 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4363 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4364 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG6) \
4366 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
4367 #include "builtin-types.def"
4368 #undef DEF_PRIMITIVE_TYPE
4369 #undef DEF_FUNCTION_TYPE_0
4370 #undef DEF_FUNCTION_TYPE_1
4371 #undef DEF_FUNCTION_TYPE_2
4372 #undef DEF_FUNCTION_TYPE_3
4373 #undef DEF_FUNCTION_TYPE_4
4374 #undef DEF_FUNCTION_TYPE_5
4375 #undef DEF_FUNCTION_TYPE_6
4376 #undef DEF_FUNCTION_TYPE_7
4377 #undef DEF_FUNCTION_TYPE_VAR_0
4378 #undef DEF_FUNCTION_TYPE_VAR_1
4379 #undef DEF_FUNCTION_TYPE_VAR_2
4380 #undef DEF_FUNCTION_TYPE_VAR_3
4381 #undef DEF_FUNCTION_TYPE_VAR_4
4382 #undef DEF_FUNCTION_TYPE_VAR_5
4383 #undef DEF_POINTER_TYPE
4387 typedef enum c_builtin_type builtin_type
;
4389 /* A temporary array for c_common_nodes_and_builtins. Used in
4390 communication with def_fn_type. */
4391 static tree builtin_types
[(int) BT_LAST
+ 1];
4393 /* A helper function for c_common_nodes_and_builtins. Build function type
4394 for DEF with return type RET and N arguments. If VAR is true, then the
4395 function should be variadic after those N arguments.
4397 Takes special care not to ICE if any of the types involved are
4398 error_mark_node, which indicates that said type is not in fact available
4399 (see builtin_type_for_size). In which case the function type as a whole
4400 should be error_mark_node. */
4403 def_fn_type (builtin_type def
, builtin_type ret
, bool var
, int n
, ...)
4405 tree args
= NULL
, t
;
4410 for (i
= 0; i
< n
; ++i
)
4412 builtin_type a
= (builtin_type
) va_arg (list
, int);
4413 t
= builtin_types
[a
];
4414 if (t
== error_mark_node
)
4416 args
= tree_cons (NULL_TREE
, t
, args
);
4420 args
= nreverse (args
);
4422 args
= chainon (args
, void_list_node
);
4424 t
= builtin_types
[ret
];
4425 if (t
== error_mark_node
)
4427 t
= build_function_type (t
, args
);
4430 builtin_types
[def
] = t
;
4434 /* Build builtin functions common to both C and C++ language
4438 c_define_builtins (tree va_list_ref_type_node
, tree va_list_arg_type_node
)
4440 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
4441 builtin_types[ENUM] = VALUE;
4442 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
4443 def_fn_type (ENUM, RETURN, 0, 0);
4444 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
4445 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
4446 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
4447 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
4448 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4449 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
4450 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4451 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
4452 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4453 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4454 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4456 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
4457 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4459 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
4460 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
4461 def_fn_type (ENUM, RETURN, 1, 0);
4462 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
4463 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
4464 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
4465 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
4466 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4467 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
4468 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4469 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
4470 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4471 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4472 #define DEF_POINTER_TYPE(ENUM, TYPE) \
4473 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
4475 #include "builtin-types.def"
4477 #undef DEF_PRIMITIVE_TYPE
4478 #undef DEF_FUNCTION_TYPE_1
4479 #undef DEF_FUNCTION_TYPE_2
4480 #undef DEF_FUNCTION_TYPE_3
4481 #undef DEF_FUNCTION_TYPE_4
4482 #undef DEF_FUNCTION_TYPE_5
4483 #undef DEF_FUNCTION_TYPE_6
4484 #undef DEF_FUNCTION_TYPE_VAR_0
4485 #undef DEF_FUNCTION_TYPE_VAR_1
4486 #undef DEF_FUNCTION_TYPE_VAR_2
4487 #undef DEF_FUNCTION_TYPE_VAR_3
4488 #undef DEF_FUNCTION_TYPE_VAR_4
4489 #undef DEF_FUNCTION_TYPE_VAR_5
4490 #undef DEF_POINTER_TYPE
4491 builtin_types
[(int) BT_LAST
] = NULL_TREE
;
4493 c_init_attributes ();
4495 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
4496 NONANSI_P, ATTRS, IMPLICIT, COND) \
4498 def_builtin_1 (ENUM, NAME, CLASS, \
4499 builtin_types[(int) TYPE], \
4500 builtin_types[(int) LIBTYPE], \
4501 BOTH_P, FALLBACK_P, NONANSI_P, \
4502 built_in_attributes[(int) ATTRS], IMPLICIT);
4503 #include "builtins.def"
4506 targetm
.init_builtins ();
4508 build_common_builtin_nodes ();
4514 /* Like get_identifier, but avoid warnings about null arguments when
4515 the argument may be NULL for targets where GCC lacks stdint.h type
4519 c_get_ident (const char *id
)
4521 return get_identifier (id
);
4524 /* Build tree nodes and builtin functions common to both C and C++ language
4528 c_common_nodes_and_builtins (void)
4530 int char16_type_size
;
4531 int char32_type_size
;
4532 int wchar_type_size
;
4533 tree array_domain_type
;
4534 tree va_list_ref_type_node
;
4535 tree va_list_arg_type_node
;
4537 /* Define `int' and `char' first so that dbx will output them first. */
4538 record_builtin_type (RID_INT
, NULL
, integer_type_node
);
4539 record_builtin_type (RID_CHAR
, "char", char_type_node
);
4541 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
4542 "unsigned long", "long long unsigned" and "unsigned short" were in C++
4543 but not C. Are the conditionals here needed? */
4544 if (c_dialect_cxx ())
4545 record_builtin_type (RID_SIGNED
, NULL
, integer_type_node
);
4546 record_builtin_type (RID_LONG
, "long int", long_integer_type_node
);
4547 record_builtin_type (RID_UNSIGNED
, "unsigned int", unsigned_type_node
);
4548 record_builtin_type (RID_MAX
, "long unsigned int",
4549 long_unsigned_type_node
);
4550 if (int128_integer_type_node
!= NULL_TREE
)
4552 record_builtin_type (RID_INT128
, "__int128",
4553 int128_integer_type_node
);
4554 record_builtin_type (RID_MAX
, "__int128 unsigned",
4555 int128_unsigned_type_node
);
4557 if (c_dialect_cxx ())
4558 record_builtin_type (RID_MAX
, "unsigned long", long_unsigned_type_node
);
4559 record_builtin_type (RID_MAX
, "long long int",
4560 long_long_integer_type_node
);
4561 record_builtin_type (RID_MAX
, "long long unsigned int",
4562 long_long_unsigned_type_node
);
4563 if (c_dialect_cxx ())
4564 record_builtin_type (RID_MAX
, "long long unsigned",
4565 long_long_unsigned_type_node
);
4566 record_builtin_type (RID_SHORT
, "short int", short_integer_type_node
);
4567 record_builtin_type (RID_MAX
, "short unsigned int",
4568 short_unsigned_type_node
);
4569 if (c_dialect_cxx ())
4570 record_builtin_type (RID_MAX
, "unsigned short",
4571 short_unsigned_type_node
);
4573 /* Define both `signed char' and `unsigned char'. */
4574 record_builtin_type (RID_MAX
, "signed char", signed_char_type_node
);
4575 record_builtin_type (RID_MAX
, "unsigned char", unsigned_char_type_node
);
4577 /* These are types that c_common_type_for_size and
4578 c_common_type_for_mode use. */
4579 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4580 TYPE_DECL
, NULL_TREE
,
4582 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4583 TYPE_DECL
, NULL_TREE
,
4585 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4586 TYPE_DECL
, NULL_TREE
,
4588 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4589 TYPE_DECL
, NULL_TREE
,
4591 #if HOST_BITS_PER_WIDE_INT >= 64
4592 if (targetm
.scalar_mode_supported_p (TImode
))
4593 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4595 get_identifier ("__int128_t"),
4598 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4599 TYPE_DECL
, NULL_TREE
,
4600 unsigned_intQI_type_node
));
4601 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4602 TYPE_DECL
, NULL_TREE
,
4603 unsigned_intHI_type_node
));
4604 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4605 TYPE_DECL
, NULL_TREE
,
4606 unsigned_intSI_type_node
));
4607 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4608 TYPE_DECL
, NULL_TREE
,
4609 unsigned_intDI_type_node
));
4610 #if HOST_BITS_PER_WIDE_INT >= 64
4611 if (targetm
.scalar_mode_supported_p (TImode
))
4612 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4614 get_identifier ("__uint128_t"),
4615 unsigned_intTI_type_node
));
4618 /* Create the widest literal types. */
4619 widest_integer_literal_type_node
4620 = make_signed_type (HOST_BITS_PER_WIDE_INT
* 2);
4621 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4622 TYPE_DECL
, NULL_TREE
,
4623 widest_integer_literal_type_node
));
4625 widest_unsigned_literal_type_node
4626 = make_unsigned_type (HOST_BITS_PER_WIDE_INT
* 2);
4627 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4628 TYPE_DECL
, NULL_TREE
,
4629 widest_unsigned_literal_type_node
));
4631 /* `unsigned long' is the standard type for sizeof.
4632 Note that stddef.h uses `unsigned long',
4633 and this must agree, even if long and int are the same size. */
4635 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE
)));
4636 signed_size_type_node
= c_common_signed_type (size_type_node
);
4637 set_sizetype (size_type_node
);
4640 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE
)));
4642 build_common_tree_nodes_2 (flag_short_double
);
4644 record_builtin_type (RID_FLOAT
, NULL
, float_type_node
);
4645 record_builtin_type (RID_DOUBLE
, NULL
, double_type_node
);
4646 record_builtin_type (RID_MAX
, "long double", long_double_type_node
);
4648 /* Only supported decimal floating point extension if the target
4649 actually supports underlying modes. */
4650 if (targetm
.scalar_mode_supported_p (SDmode
)
4651 && targetm
.scalar_mode_supported_p (DDmode
)
4652 && targetm
.scalar_mode_supported_p (TDmode
))
4654 record_builtin_type (RID_DFLOAT32
, NULL
, dfloat32_type_node
);
4655 record_builtin_type (RID_DFLOAT64
, NULL
, dfloat64_type_node
);
4656 record_builtin_type (RID_DFLOAT128
, NULL
, dfloat128_type_node
);
4659 if (targetm
.fixed_point_supported_p ())
4661 record_builtin_type (RID_MAX
, "short _Fract", short_fract_type_node
);
4662 record_builtin_type (RID_FRACT
, NULL
, fract_type_node
);
4663 record_builtin_type (RID_MAX
, "long _Fract", long_fract_type_node
);
4664 record_builtin_type (RID_MAX
, "long long _Fract",
4665 long_long_fract_type_node
);
4666 record_builtin_type (RID_MAX
, "unsigned short _Fract",
4667 unsigned_short_fract_type_node
);
4668 record_builtin_type (RID_MAX
, "unsigned _Fract",
4669 unsigned_fract_type_node
);
4670 record_builtin_type (RID_MAX
, "unsigned long _Fract",
4671 unsigned_long_fract_type_node
);
4672 record_builtin_type (RID_MAX
, "unsigned long long _Fract",
4673 unsigned_long_long_fract_type_node
);
4674 record_builtin_type (RID_MAX
, "_Sat short _Fract",
4675 sat_short_fract_type_node
);
4676 record_builtin_type (RID_MAX
, "_Sat _Fract", sat_fract_type_node
);
4677 record_builtin_type (RID_MAX
, "_Sat long _Fract",
4678 sat_long_fract_type_node
);
4679 record_builtin_type (RID_MAX
, "_Sat long long _Fract",
4680 sat_long_long_fract_type_node
);
4681 record_builtin_type (RID_MAX
, "_Sat unsigned short _Fract",
4682 sat_unsigned_short_fract_type_node
);
4683 record_builtin_type (RID_MAX
, "_Sat unsigned _Fract",
4684 sat_unsigned_fract_type_node
);
4685 record_builtin_type (RID_MAX
, "_Sat unsigned long _Fract",
4686 sat_unsigned_long_fract_type_node
);
4687 record_builtin_type (RID_MAX
, "_Sat unsigned long long _Fract",
4688 sat_unsigned_long_long_fract_type_node
);
4689 record_builtin_type (RID_MAX
, "short _Accum", short_accum_type_node
);
4690 record_builtin_type (RID_ACCUM
, NULL
, accum_type_node
);
4691 record_builtin_type (RID_MAX
, "long _Accum", long_accum_type_node
);
4692 record_builtin_type (RID_MAX
, "long long _Accum",
4693 long_long_accum_type_node
);
4694 record_builtin_type (RID_MAX
, "unsigned short _Accum",
4695 unsigned_short_accum_type_node
);
4696 record_builtin_type (RID_MAX
, "unsigned _Accum",
4697 unsigned_accum_type_node
);
4698 record_builtin_type (RID_MAX
, "unsigned long _Accum",
4699 unsigned_long_accum_type_node
);
4700 record_builtin_type (RID_MAX
, "unsigned long long _Accum",
4701 unsigned_long_long_accum_type_node
);
4702 record_builtin_type (RID_MAX
, "_Sat short _Accum",
4703 sat_short_accum_type_node
);
4704 record_builtin_type (RID_MAX
, "_Sat _Accum", sat_accum_type_node
);
4705 record_builtin_type (RID_MAX
, "_Sat long _Accum",
4706 sat_long_accum_type_node
);
4707 record_builtin_type (RID_MAX
, "_Sat long long _Accum",
4708 sat_long_long_accum_type_node
);
4709 record_builtin_type (RID_MAX
, "_Sat unsigned short _Accum",
4710 sat_unsigned_short_accum_type_node
);
4711 record_builtin_type (RID_MAX
, "_Sat unsigned _Accum",
4712 sat_unsigned_accum_type_node
);
4713 record_builtin_type (RID_MAX
, "_Sat unsigned long _Accum",
4714 sat_unsigned_long_accum_type_node
);
4715 record_builtin_type (RID_MAX
, "_Sat unsigned long long _Accum",
4716 sat_unsigned_long_long_accum_type_node
);
4720 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4722 get_identifier ("complex int"),
4723 complex_integer_type_node
));
4724 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4726 get_identifier ("complex float"),
4727 complex_float_type_node
));
4728 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4730 get_identifier ("complex double"),
4731 complex_double_type_node
));
4732 lang_hooks
.decls
.pushdecl
4733 (build_decl (UNKNOWN_LOCATION
,
4734 TYPE_DECL
, get_identifier ("complex long double"),
4735 complex_long_double_type_node
));
4737 if (c_dialect_cxx ())
4738 /* For C++, make fileptr_type_node a distinct void * type until
4739 FILE type is defined. */
4740 fileptr_type_node
= build_variant_type_copy (ptr_type_node
);
4742 record_builtin_type (RID_VOID
, NULL
, void_type_node
);
4744 /* Set the TYPE_NAME for any variants that were built before
4745 record_builtin_type gave names to the built-in types. */
4747 tree void_name
= TYPE_NAME (void_type_node
);
4748 TYPE_NAME (void_type_node
) = NULL_TREE
;
4749 TYPE_NAME (build_qualified_type (void_type_node
, TYPE_QUAL_CONST
))
4751 TYPE_NAME (void_type_node
) = void_name
;
4754 /* This node must not be shared. */
4755 void_zero_node
= make_node (INTEGER_CST
);
4756 TREE_TYPE (void_zero_node
) = void_type_node
;
4758 void_list_node
= build_void_list_node ();
4760 /* Make a type to be the domain of a few array types
4761 whose domains don't really matter.
4762 200 is small enough that it always fits in size_t
4763 and large enough that it can hold most function names for the
4764 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
4765 array_domain_type
= build_index_type (size_int (200));
4767 /* Make a type for arrays of characters.
4768 With luck nothing will ever really depend on the length of this
4770 char_array_type_node
4771 = build_array_type (char_type_node
, array_domain_type
);
4773 /* Likewise for arrays of ints. */
4775 = build_array_type (integer_type_node
, array_domain_type
);
4777 string_type_node
= build_pointer_type (char_type_node
);
4778 const_string_type_node
4779 = build_pointer_type (build_qualified_type
4780 (char_type_node
, TYPE_QUAL_CONST
));
4782 /* This is special for C++ so functions can be overloaded. */
4783 wchar_type_node
= get_identifier (MODIFIED_WCHAR_TYPE
);
4784 wchar_type_node
= TREE_TYPE (identifier_global_value (wchar_type_node
));
4785 wchar_type_size
= TYPE_PRECISION (wchar_type_node
);
4786 underlying_wchar_type_node
= wchar_type_node
;
4787 if (c_dialect_cxx ())
4789 if (TYPE_UNSIGNED (wchar_type_node
))
4790 wchar_type_node
= make_unsigned_type (wchar_type_size
);
4792 wchar_type_node
= make_signed_type (wchar_type_size
);
4793 record_builtin_type (RID_WCHAR
, "wchar_t", wchar_type_node
);
4796 /* This is for wide string constants. */
4797 wchar_array_type_node
4798 = build_array_type (wchar_type_node
, array_domain_type
);
4800 /* Define 'char16_t'. */
4801 char16_type_node
= get_identifier (CHAR16_TYPE
);
4802 char16_type_node
= TREE_TYPE (identifier_global_value (char16_type_node
));
4803 char16_type_size
= TYPE_PRECISION (char16_type_node
);
4804 if (c_dialect_cxx ())
4806 char16_type_node
= make_unsigned_type (char16_type_size
);
4808 if (cxx_dialect
== cxx0x
)
4809 record_builtin_type (RID_CHAR16
, "char16_t", char16_type_node
);
4812 /* This is for UTF-16 string constants. */
4813 char16_array_type_node
4814 = build_array_type (char16_type_node
, array_domain_type
);
4816 /* Define 'char32_t'. */
4817 char32_type_node
= get_identifier (CHAR32_TYPE
);
4818 char32_type_node
= TREE_TYPE (identifier_global_value (char32_type_node
));
4819 char32_type_size
= TYPE_PRECISION (char32_type_node
);
4820 if (c_dialect_cxx ())
4822 char32_type_node
= make_unsigned_type (char32_type_size
);
4824 if (cxx_dialect
== cxx0x
)
4825 record_builtin_type (RID_CHAR32
, "char32_t", char32_type_node
);
4828 /* This is for UTF-32 string constants. */
4829 char32_array_type_node
4830 = build_array_type (char32_type_node
, array_domain_type
);
4833 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE
)));
4836 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE
)));
4838 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE
)));
4840 if (SIG_ATOMIC_TYPE
)
4841 sig_atomic_type_node
=
4842 TREE_TYPE (identifier_global_value (c_get_ident (SIG_ATOMIC_TYPE
)));
4845 TREE_TYPE (identifier_global_value (c_get_ident (INT8_TYPE
)));
4848 TREE_TYPE (identifier_global_value (c_get_ident (INT16_TYPE
)));
4851 TREE_TYPE (identifier_global_value (c_get_ident (INT32_TYPE
)));
4854 TREE_TYPE (identifier_global_value (c_get_ident (INT64_TYPE
)));
4857 TREE_TYPE (identifier_global_value (c_get_ident (UINT8_TYPE
)));
4860 TREE_TYPE (identifier_global_value (c_get_ident (UINT16_TYPE
)));
4862 c_uint32_type_node
=
4863 TREE_TYPE (identifier_global_value (c_get_ident (UINT32_TYPE
)));
4865 c_uint64_type_node
=
4866 TREE_TYPE (identifier_global_value (c_get_ident (UINT64_TYPE
)));
4867 if (INT_LEAST8_TYPE
)
4868 int_least8_type_node
=
4869 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST8_TYPE
)));
4870 if (INT_LEAST16_TYPE
)
4871 int_least16_type_node
=
4872 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST16_TYPE
)));
4873 if (INT_LEAST32_TYPE
)
4874 int_least32_type_node
=
4875 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST32_TYPE
)));
4876 if (INT_LEAST64_TYPE
)
4877 int_least64_type_node
=
4878 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST64_TYPE
)));
4879 if (UINT_LEAST8_TYPE
)
4880 uint_least8_type_node
=
4881 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST8_TYPE
)));
4882 if (UINT_LEAST16_TYPE
)
4883 uint_least16_type_node
=
4884 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST16_TYPE
)));
4885 if (UINT_LEAST32_TYPE
)
4886 uint_least32_type_node
=
4887 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST32_TYPE
)));
4888 if (UINT_LEAST64_TYPE
)
4889 uint_least64_type_node
=
4890 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST64_TYPE
)));
4892 int_fast8_type_node
=
4893 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST8_TYPE
)));
4894 if (INT_FAST16_TYPE
)
4895 int_fast16_type_node
=
4896 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST16_TYPE
)));
4897 if (INT_FAST32_TYPE
)
4898 int_fast32_type_node
=
4899 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST32_TYPE
)));
4900 if (INT_FAST64_TYPE
)
4901 int_fast64_type_node
=
4902 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST64_TYPE
)));
4903 if (UINT_FAST8_TYPE
)
4904 uint_fast8_type_node
=
4905 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST8_TYPE
)));
4906 if (UINT_FAST16_TYPE
)
4907 uint_fast16_type_node
=
4908 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST16_TYPE
)));
4909 if (UINT_FAST32_TYPE
)
4910 uint_fast32_type_node
=
4911 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST32_TYPE
)));
4912 if (UINT_FAST64_TYPE
)
4913 uint_fast64_type_node
=
4914 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST64_TYPE
)));
4917 TREE_TYPE (identifier_global_value (c_get_ident (INTPTR_TYPE
)));
4920 TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE
)));
4922 default_function_type
= build_function_type (integer_type_node
, NULL_TREE
);
4924 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE
)));
4925 unsigned_ptrdiff_type_node
= c_common_unsigned_type (ptrdiff_type_node
);
4927 lang_hooks
.decls
.pushdecl
4928 (build_decl (UNKNOWN_LOCATION
,
4929 TYPE_DECL
, get_identifier ("__builtin_va_list"),
4930 va_list_type_node
));
4931 if (targetm
.enum_va_list_p
)
4937 for (l
= 0; targetm
.enum_va_list_p (l
, &pname
, &ptype
); ++l
)
4939 lang_hooks
.decls
.pushdecl
4940 (build_decl (UNKNOWN_LOCATION
,
4941 TYPE_DECL
, get_identifier (pname
),
4947 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
4949 va_list_arg_type_node
= va_list_ref_type_node
=
4950 build_pointer_type (TREE_TYPE (va_list_type_node
));
4954 va_list_arg_type_node
= va_list_type_node
;
4955 va_list_ref_type_node
= build_reference_type (va_list_type_node
);
4958 if (!flag_preprocess_only
)
4959 c_define_builtins (va_list_ref_type_node
, va_list_arg_type_node
);
4961 main_identifier_node
= get_identifier ("main");
4963 /* Create the built-in __null node. It is important that this is
4965 null_node
= make_node (INTEGER_CST
);
4966 TREE_TYPE (null_node
) = c_common_type_for_size (POINTER_SIZE
, 0);
4968 /* Since builtin_types isn't gc'ed, don't export these nodes. */
4969 memset (builtin_types
, 0, sizeof (builtin_types
));
4972 /* The number of named compound-literals generated thus far. */
4973 static GTY(()) int compound_literal_number
;
4975 /* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
4978 set_compound_literal_name (tree decl
)
4981 ASM_FORMAT_PRIVATE_NAME (name
, "__compound_literal",
4982 compound_literal_number
);
4983 compound_literal_number
++;
4984 DECL_NAME (decl
) = get_identifier (name
);
4988 build_va_arg (location_t loc
, tree expr
, tree type
)
4990 expr
= build1 (VA_ARG_EXPR
, type
, expr
);
4991 SET_EXPR_LOCATION (expr
, loc
);
4996 /* Linked list of disabled built-in functions. */
4998 typedef struct disabled_builtin
5001 struct disabled_builtin
*next
;
5003 static disabled_builtin
*disabled_builtins
= NULL
;
5005 static bool builtin_function_disabled_p (const char *);
5007 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
5008 begins with "__builtin_", give an error. */
5011 disable_builtin_function (const char *name
)
5013 if (strncmp (name
, "__builtin_", strlen ("__builtin_")) == 0)
5014 error ("cannot disable built-in function %qs", name
);
5017 disabled_builtin
*new_disabled_builtin
= XNEW (disabled_builtin
);
5018 new_disabled_builtin
->name
= name
;
5019 new_disabled_builtin
->next
= disabled_builtins
;
5020 disabled_builtins
= new_disabled_builtin
;
5025 /* Return true if the built-in function NAME has been disabled, false
5029 builtin_function_disabled_p (const char *name
)
5031 disabled_builtin
*p
;
5032 for (p
= disabled_builtins
; p
!= NULL
; p
= p
->next
)
5034 if (strcmp (name
, p
->name
) == 0)
5041 /* Worker for DEF_BUILTIN.
5042 Possibly define a builtin function with one or two names.
5043 Does not declare a non-__builtin_ function if flag_no_builtin, or if
5044 nonansi_p and flag_no_nonansi_builtin. */
5047 def_builtin_1 (enum built_in_function fncode
,
5049 enum built_in_class fnclass
,
5050 tree fntype
, tree libtype
,
5051 bool both_p
, bool fallback_p
, bool nonansi_p
,
5052 tree fnattrs
, bool implicit_p
)
5055 const char *libname
;
5057 if (fntype
== error_mark_node
)
5060 gcc_assert ((!both_p
&& !fallback_p
)
5061 || !strncmp (name
, "__builtin_",
5062 strlen ("__builtin_")));
5064 libname
= name
+ strlen ("__builtin_");
5065 decl
= add_builtin_function (name
, fntype
, fncode
, fnclass
,
5066 (fallback_p
? libname
: NULL
),
5069 && !flag_no_builtin
&& !builtin_function_disabled_p (libname
)
5070 && !(nonansi_p
&& flag_no_nonansi_builtin
))
5071 add_builtin_function (libname
, libtype
, fncode
, fnclass
,
5074 built_in_decls
[(int) fncode
] = decl
;
5076 implicit_built_in_decls
[(int) fncode
] = decl
;
5079 /* Nonzero if the type T promotes to int. This is (nearly) the
5080 integral promotions defined in ISO C99 6.3.1.1/2. */
5083 c_promoting_integer_type_p (const_tree t
)
5085 switch (TREE_CODE (t
))
5088 return (TYPE_MAIN_VARIANT (t
) == char_type_node
5089 || TYPE_MAIN_VARIANT (t
) == signed_char_type_node
5090 || TYPE_MAIN_VARIANT (t
) == unsigned_char_type_node
5091 || TYPE_MAIN_VARIANT (t
) == short_integer_type_node
5092 || TYPE_MAIN_VARIANT (t
) == short_unsigned_type_node
5093 || TYPE_PRECISION (t
) < TYPE_PRECISION (integer_type_node
));
5096 /* ??? Technically all enumerations not larger than an int
5097 promote to an int. But this is used along code paths
5098 that only want to notice a size change. */
5099 return TYPE_PRECISION (t
) < TYPE_PRECISION (integer_type_node
);
5109 /* Return 1 if PARMS specifies a fixed number of parameters
5110 and none of their types is affected by default promotions. */
5113 self_promoting_args_p (const_tree parms
)
5116 for (t
= parms
; t
; t
= TREE_CHAIN (t
))
5118 tree type
= TREE_VALUE (t
);
5120 if (type
== error_mark_node
)
5123 if (TREE_CHAIN (t
) == 0 && type
!= void_type_node
)
5129 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
5132 if (c_promoting_integer_type_p (type
))
5138 /* Recursively remove any '*' or '&' operator from TYPE. */
5140 strip_pointer_operator (tree t
)
5142 while (POINTER_TYPE_P (t
))
5147 /* Recursively remove pointer or array type from TYPE. */
5149 strip_pointer_or_array_types (tree t
)
5151 while (TREE_CODE (t
) == ARRAY_TYPE
|| POINTER_TYPE_P (t
))
5156 /* Used to compare case labels. K1 and K2 are actually tree nodes
5157 representing case labels, or NULL_TREE for a `default' label.
5158 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
5159 K2, and 0 if K1 and K2 are equal. */
5162 case_compare (splay_tree_key k1
, splay_tree_key k2
)
5164 /* Consider a NULL key (such as arises with a `default' label) to be
5165 smaller than anything else. */
5171 return tree_int_cst_compare ((tree
) k1
, (tree
) k2
);
5174 /* Process a case label, located at LOC, for the range LOW_VALUE
5175 ... HIGH_VALUE. If LOW_VALUE and HIGH_VALUE are both NULL_TREE
5176 then this case label is actually a `default' label. If only
5177 HIGH_VALUE is NULL_TREE, then case label was declared using the
5178 usual C/C++ syntax, rather than the GNU case range extension.
5179 CASES is a tree containing all the case ranges processed so far;
5180 COND is the condition for the switch-statement itself. Returns the
5181 CASE_LABEL_EXPR created, or ERROR_MARK_NODE if no CASE_LABEL_EXPR
5185 c_add_case_label (location_t loc
, splay_tree cases
, tree cond
, tree orig_type
,
5186 tree low_value
, tree high_value
)
5191 splay_tree_node node
;
5193 /* Create the LABEL_DECL itself. */
5194 label
= create_artificial_label (loc
);
5196 /* If there was an error processing the switch condition, bail now
5197 before we get more confused. */
5198 if (!cond
|| cond
== error_mark_node
)
5201 if ((low_value
&& TREE_TYPE (low_value
)
5202 && POINTER_TYPE_P (TREE_TYPE (low_value
)))
5203 || (high_value
&& TREE_TYPE (high_value
)
5204 && POINTER_TYPE_P (TREE_TYPE (high_value
))))
5206 error_at (loc
, "pointers are not permitted as case values");
5210 /* Case ranges are a GNU extension. */
5212 pedwarn (loc
, OPT_pedantic
,
5213 "range expressions in switch statements are non-standard");
5215 type
= TREE_TYPE (cond
);
5218 low_value
= check_case_value (low_value
);
5219 low_value
= convert_and_check (type
, low_value
);
5220 if (low_value
== error_mark_node
)
5225 high_value
= check_case_value (high_value
);
5226 high_value
= convert_and_check (type
, high_value
);
5227 if (high_value
== error_mark_node
)
5231 if (low_value
&& high_value
)
5233 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
5234 really a case range, even though it was written that way.
5235 Remove the HIGH_VALUE to simplify later processing. */
5236 if (tree_int_cst_equal (low_value
, high_value
))
5237 high_value
= NULL_TREE
;
5238 else if (!tree_int_cst_lt (low_value
, high_value
))
5239 warning_at (loc
, 0, "empty range specified");
5242 /* See if the case is in range of the type of the original testing
5243 expression. If both low_value and high_value are out of range,
5244 don't insert the case label and return NULL_TREE. */
5246 && !check_case_bounds (type
, orig_type
,
5247 &low_value
, high_value
? &high_value
: NULL
))
5250 /* Look up the LOW_VALUE in the table of case labels we already
5252 node
= splay_tree_lookup (cases
, (splay_tree_key
) low_value
);
5253 /* If there was not an exact match, check for overlapping ranges.
5254 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
5255 that's a `default' label and the only overlap is an exact match. */
5256 if (!node
&& (low_value
|| high_value
))
5258 splay_tree_node low_bound
;
5259 splay_tree_node high_bound
;
5261 /* Even though there wasn't an exact match, there might be an
5262 overlap between this case range and another case range.
5263 Since we've (inductively) not allowed any overlapping case
5264 ranges, we simply need to find the greatest low case label
5265 that is smaller that LOW_VALUE, and the smallest low case
5266 label that is greater than LOW_VALUE. If there is an overlap
5267 it will occur in one of these two ranges. */
5268 low_bound
= splay_tree_predecessor (cases
,
5269 (splay_tree_key
) low_value
);
5270 high_bound
= splay_tree_successor (cases
,
5271 (splay_tree_key
) low_value
);
5273 /* Check to see if the LOW_BOUND overlaps. It is smaller than
5274 the LOW_VALUE, so there is no need to check unless the
5275 LOW_BOUND is in fact itself a case range. */
5277 && CASE_HIGH ((tree
) low_bound
->value
)
5278 && tree_int_cst_compare (CASE_HIGH ((tree
) low_bound
->value
),
5281 /* Check to see if the HIGH_BOUND overlaps. The low end of that
5282 range is bigger than the low end of the current range, so we
5283 are only interested if the current range is a real range, and
5284 not an ordinary case label. */
5287 && (tree_int_cst_compare ((tree
) high_bound
->key
,
5292 /* If there was an overlap, issue an error. */
5295 tree duplicate
= CASE_LABEL ((tree
) node
->value
);
5299 error_at (loc
, "duplicate (or overlapping) case value");
5300 error_at (DECL_SOURCE_LOCATION (duplicate
),
5301 "this is the first entry overlapping that value");
5305 error_at (loc
, "duplicate case value") ;
5306 error_at (DECL_SOURCE_LOCATION (duplicate
), "previously used here");
5310 error_at (loc
, "multiple default labels in one switch");
5311 error_at (DECL_SOURCE_LOCATION (duplicate
),
5312 "this is the first default label");
5317 /* Add a CASE_LABEL to the statement-tree. */
5318 case_label
= add_stmt (build_case_label (loc
, low_value
, high_value
, label
));
5319 /* Register this case label in the splay tree. */
5320 splay_tree_insert (cases
,
5321 (splay_tree_key
) low_value
,
5322 (splay_tree_value
) case_label
);
5327 /* Add a label so that the back-end doesn't think that the beginning of
5328 the switch is unreachable. Note that we do not add a case label, as
5329 that just leads to duplicates and thence to failure later on. */
5332 tree t
= create_artificial_label (loc
);
5333 add_stmt (build_stmt (loc
, LABEL_EXPR
, t
));
5335 return error_mark_node
;
5338 /* Subroutines of c_do_switch_warnings, called via splay_tree_foreach.
5339 Used to verify that case values match up with enumerator values. */
5342 match_case_to_enum_1 (tree key
, tree type
, tree label
)
5344 char buf
[2 + 2*HOST_BITS_PER_WIDE_INT
/4 + 1];
5346 /* ??? Not working too hard to print the double-word value.
5347 Should perhaps be done with %lwd in the diagnostic routines? */
5348 if (TREE_INT_CST_HIGH (key
) == 0)
5349 snprintf (buf
, sizeof (buf
), HOST_WIDE_INT_PRINT_UNSIGNED
,
5350 TREE_INT_CST_LOW (key
));
5351 else if (!TYPE_UNSIGNED (type
)
5352 && TREE_INT_CST_HIGH (key
) == -1
5353 && TREE_INT_CST_LOW (key
) != 0)
5354 snprintf (buf
, sizeof (buf
), "-" HOST_WIDE_INT_PRINT_UNSIGNED
,
5355 -TREE_INT_CST_LOW (key
));
5357 snprintf (buf
, sizeof (buf
), HOST_WIDE_INT_PRINT_DOUBLE_HEX
,
5358 (unsigned HOST_WIDE_INT
) TREE_INT_CST_HIGH (key
),
5359 (unsigned HOST_WIDE_INT
) TREE_INT_CST_LOW (key
));
5361 if (TYPE_NAME (type
) == 0)
5362 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label
)),
5363 warn_switch
? OPT_Wswitch
: OPT_Wswitch_enum
,
5364 "case value %qs not in enumerated type",
5367 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label
)),
5368 warn_switch
? OPT_Wswitch
: OPT_Wswitch_enum
,
5369 "case value %qs not in enumerated type %qT",
5373 /* Subroutine of c_do_switch_warnings, called via splay_tree_foreach.
5374 Used to verify that case values match up with enumerator values. */
5377 match_case_to_enum (splay_tree_node node
, void *data
)
5379 tree label
= (tree
) node
->value
;
5380 tree type
= (tree
) data
;
5382 /* Skip default case. */
5383 if (!CASE_LOW (label
))
5386 /* If CASE_LOW_SEEN is not set, that means CASE_LOW did not appear
5387 when we did our enum->case scan. Reset our scratch bit after. */
5388 if (!CASE_LOW_SEEN (label
))
5389 match_case_to_enum_1 (CASE_LOW (label
), type
, label
);
5391 CASE_LOW_SEEN (label
) = 0;
5393 /* If CASE_HIGH is non-null, we have a range. If CASE_HIGH_SEEN is
5394 not set, that means that CASE_HIGH did not appear when we did our
5395 enum->case scan. Reset our scratch bit after. */
5396 if (CASE_HIGH (label
))
5398 if (!CASE_HIGH_SEEN (label
))
5399 match_case_to_enum_1 (CASE_HIGH (label
), type
, label
);
5401 CASE_HIGH_SEEN (label
) = 0;
5407 /* Handle -Wswitch*. Called from the front end after parsing the
5408 switch construct. */
5409 /* ??? Should probably be somewhere generic, since other languages
5410 besides C and C++ would want this. At the moment, however, C/C++
5411 are the only tree-ssa languages that support enumerations at all,
5412 so the point is moot. */
5415 c_do_switch_warnings (splay_tree cases
, location_t switch_location
,
5416 tree type
, tree cond
)
5418 splay_tree_node default_node
;
5419 splay_tree_node node
;
5422 if (!warn_switch
&& !warn_switch_enum
&& !warn_switch_default
)
5425 default_node
= splay_tree_lookup (cases
, (splay_tree_key
) NULL
);
5427 warning_at (switch_location
, OPT_Wswitch_default
,
5428 "switch missing default case");
5430 /* From here on, we only care about about enumerated types. */
5431 if (!type
|| TREE_CODE (type
) != ENUMERAL_TYPE
)
5434 /* From here on, we only care about -Wswitch and -Wswitch-enum. */
5435 if (!warn_switch_enum
&& !warn_switch
)
5438 /* Check the cases. Warn about case values which are not members of
5439 the enumerated type. For -Wswitch-enum, or for -Wswitch when
5440 there is no default case, check that exactly all enumeration
5441 literals are covered by the cases. */
5443 /* Clearing COND if it is not an integer constant simplifies
5444 the tests inside the loop below. */
5445 if (TREE_CODE (cond
) != INTEGER_CST
)
5448 /* The time complexity here is O(N*lg(N)) worst case, but for the
5449 common case of monotonically increasing enumerators, it is
5450 O(N), since the nature of the splay tree will keep the next
5451 element adjacent to the root at all times. */
5453 for (chain
= TYPE_VALUES (type
); chain
; chain
= TREE_CHAIN (chain
))
5455 tree value
= TREE_VALUE (chain
);
5456 if (TREE_CODE (value
) == CONST_DECL
)
5457 value
= DECL_INITIAL (value
);
5458 node
= splay_tree_lookup (cases
, (splay_tree_key
) value
);
5461 /* Mark the CASE_LOW part of the case entry as seen. */
5462 tree label
= (tree
) node
->value
;
5463 CASE_LOW_SEEN (label
) = 1;
5467 /* Even though there wasn't an exact match, there might be a
5468 case range which includes the enumerator's value. */
5469 node
= splay_tree_predecessor (cases
, (splay_tree_key
) value
);
5470 if (node
&& CASE_HIGH ((tree
) node
->value
))
5472 tree label
= (tree
) node
->value
;
5473 int cmp
= tree_int_cst_compare (CASE_HIGH (label
), value
);
5476 /* If we match the upper bound exactly, mark the CASE_HIGH
5477 part of the case entry as seen. */
5479 CASE_HIGH_SEEN (label
) = 1;
5484 /* We've now determined that this enumerated literal isn't
5485 handled by the case labels of the switch statement. */
5487 /* If the switch expression is a constant, we only really care
5488 about whether that constant is handled by the switch. */
5489 if (cond
&& tree_int_cst_compare (cond
, value
))
5492 /* If there is a default_node, the only relevant option is
5493 Wswitch-enum. Otherwise, if both are enabled then we prefer
5494 to warn using -Wswitch because -Wswitch is enabled by -Wall
5495 while -Wswitch-enum is explicit. */
5496 warning_at (switch_location
,
5497 (default_node
|| !warn_switch
5500 "enumeration value %qE not handled in switch",
5501 TREE_PURPOSE (chain
));
5504 /* Warn if there are case expressions that don't correspond to
5505 enumerators. This can occur since C and C++ don't enforce
5506 type-checking of assignments to enumeration variables.
5508 The time complexity here is now always O(N) worst case, since
5509 we should have marked both the lower bound and upper bound of
5510 every disjoint case label, with CASE_LOW_SEEN and CASE_HIGH_SEEN
5511 above. This scan also resets those fields. */
5513 splay_tree_foreach (cases
, match_case_to_enum
, type
);
5516 /* Finish an expression taking the address of LABEL (an
5517 IDENTIFIER_NODE). Returns an expression for the address.
5519 LOC is the location for the expression returned. */
5522 finish_label_address_expr (tree label
, location_t loc
)
5526 pedwarn (input_location
, OPT_pedantic
, "taking the address of a label is non-standard");
5528 if (label
== error_mark_node
)
5529 return error_mark_node
;
5531 label
= lookup_label (label
);
5532 if (label
== NULL_TREE
)
5533 result
= null_pointer_node
;
5536 TREE_USED (label
) = 1;
5537 result
= build1 (ADDR_EXPR
, ptr_type_node
, label
);
5538 /* The current function is not necessarily uninlinable.
5539 Computed gotos are incompatible with inlining, but the value
5540 here could be used only in a diagnostic, for example. */
5541 protected_set_expr_location (result
, loc
);
5548 /* Given a boolean expression ARG, return a tree representing an increment
5549 or decrement (as indicated by CODE) of ARG. The front end must check for
5550 invalid cases (e.g., decrement in C++). */
5552 boolean_increment (enum tree_code code
, tree arg
)
5555 tree true_res
= build_int_cst (TREE_TYPE (arg
), 1);
5557 arg
= stabilize_reference (arg
);
5560 case PREINCREMENT_EXPR
:
5561 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
, true_res
);
5563 case POSTINCREMENT_EXPR
:
5564 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
, true_res
);
5565 arg
= save_expr (arg
);
5566 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), val
, arg
);
5567 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), arg
, val
);
5569 case PREDECREMENT_EXPR
:
5570 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
,
5571 invert_truthvalue_loc (input_location
, arg
));
5573 case POSTDECREMENT_EXPR
:
5574 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
,
5575 invert_truthvalue_loc (input_location
, arg
));
5576 arg
= save_expr (arg
);
5577 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), val
, arg
);
5578 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), arg
, val
);
5583 TREE_SIDE_EFFECTS (val
) = 1;
5587 /* Built-in macros for stddef.h and stdint.h, that require macros
5588 defined in this file. */
5590 c_stddef_cpp_builtins(void)
5592 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE
, 0);
5593 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE
, 0);
5594 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE
, 0);
5595 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE
, 0);
5596 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE
, 0);
5597 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE
, 0);
5598 builtin_define_with_value ("__CHAR16_TYPE__", CHAR16_TYPE
, 0);
5599 builtin_define_with_value ("__CHAR32_TYPE__", CHAR32_TYPE
, 0);
5600 if (SIG_ATOMIC_TYPE
)
5601 builtin_define_with_value ("__SIG_ATOMIC_TYPE__", SIG_ATOMIC_TYPE
, 0);
5603 builtin_define_with_value ("__INT8_TYPE__", INT8_TYPE
, 0);
5605 builtin_define_with_value ("__INT16_TYPE__", INT16_TYPE
, 0);
5607 builtin_define_with_value ("__INT32_TYPE__", INT32_TYPE
, 0);
5609 builtin_define_with_value ("__INT64_TYPE__", INT64_TYPE
, 0);
5611 builtin_define_with_value ("__UINT8_TYPE__", UINT8_TYPE
, 0);
5613 builtin_define_with_value ("__UINT16_TYPE__", UINT16_TYPE
, 0);
5615 builtin_define_with_value ("__UINT32_TYPE__", UINT32_TYPE
, 0);
5617 builtin_define_with_value ("__UINT64_TYPE__", UINT64_TYPE
, 0);
5618 if (INT_LEAST8_TYPE
)
5619 builtin_define_with_value ("__INT_LEAST8_TYPE__", INT_LEAST8_TYPE
, 0);
5620 if (INT_LEAST16_TYPE
)
5621 builtin_define_with_value ("__INT_LEAST16_TYPE__", INT_LEAST16_TYPE
, 0);
5622 if (INT_LEAST32_TYPE
)
5623 builtin_define_with_value ("__INT_LEAST32_TYPE__", INT_LEAST32_TYPE
, 0);
5624 if (INT_LEAST64_TYPE
)
5625 builtin_define_with_value ("__INT_LEAST64_TYPE__", INT_LEAST64_TYPE
, 0);
5626 if (UINT_LEAST8_TYPE
)
5627 builtin_define_with_value ("__UINT_LEAST8_TYPE__", UINT_LEAST8_TYPE
, 0);
5628 if (UINT_LEAST16_TYPE
)
5629 builtin_define_with_value ("__UINT_LEAST16_TYPE__", UINT_LEAST16_TYPE
, 0);
5630 if (UINT_LEAST32_TYPE
)
5631 builtin_define_with_value ("__UINT_LEAST32_TYPE__", UINT_LEAST32_TYPE
, 0);
5632 if (UINT_LEAST64_TYPE
)
5633 builtin_define_with_value ("__UINT_LEAST64_TYPE__", UINT_LEAST64_TYPE
, 0);
5635 builtin_define_with_value ("__INT_FAST8_TYPE__", INT_FAST8_TYPE
, 0);
5636 if (INT_FAST16_TYPE
)
5637 builtin_define_with_value ("__INT_FAST16_TYPE__", INT_FAST16_TYPE
, 0);
5638 if (INT_FAST32_TYPE
)
5639 builtin_define_with_value ("__INT_FAST32_TYPE__", INT_FAST32_TYPE
, 0);
5640 if (INT_FAST64_TYPE
)
5641 builtin_define_with_value ("__INT_FAST64_TYPE__", INT_FAST64_TYPE
, 0);
5642 if (UINT_FAST8_TYPE
)
5643 builtin_define_with_value ("__UINT_FAST8_TYPE__", UINT_FAST8_TYPE
, 0);
5644 if (UINT_FAST16_TYPE
)
5645 builtin_define_with_value ("__UINT_FAST16_TYPE__", UINT_FAST16_TYPE
, 0);
5646 if (UINT_FAST32_TYPE
)
5647 builtin_define_with_value ("__UINT_FAST32_TYPE__", UINT_FAST32_TYPE
, 0);
5648 if (UINT_FAST64_TYPE
)
5649 builtin_define_with_value ("__UINT_FAST64_TYPE__", UINT_FAST64_TYPE
, 0);
5651 builtin_define_with_value ("__INTPTR_TYPE__", INTPTR_TYPE
, 0);
5653 builtin_define_with_value ("__UINTPTR_TYPE__", UINTPTR_TYPE
, 0);
5657 c_init_attributes (void)
5659 /* Fill in the built_in_attributes array. */
5660 #define DEF_ATTR_NULL_TREE(ENUM) \
5661 built_in_attributes[(int) ENUM] = NULL_TREE;
5662 #define DEF_ATTR_INT(ENUM, VALUE) \
5663 built_in_attributes[(int) ENUM] = build_int_cst (NULL_TREE, VALUE);
5664 #define DEF_ATTR_IDENT(ENUM, STRING) \
5665 built_in_attributes[(int) ENUM] = get_identifier (STRING);
5666 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
5667 built_in_attributes[(int) ENUM] \
5668 = tree_cons (built_in_attributes[(int) PURPOSE], \
5669 built_in_attributes[(int) VALUE], \
5670 built_in_attributes[(int) CHAIN]);
5671 #include "builtin-attrs.def"
5672 #undef DEF_ATTR_NULL_TREE
5674 #undef DEF_ATTR_IDENT
5675 #undef DEF_ATTR_TREE_LIST
5678 /* Returns TRUE iff the attribute indicated by ATTR_ID takes a plain
5679 identifier as an argument, so the front end shouldn't look it up. */
5682 attribute_takes_identifier_p (const_tree attr_id
)
5684 const struct attribute_spec
*spec
= lookup_attribute_spec (attr_id
);
5686 /* Unknown attribute that we'll end up ignoring, return true so we
5687 don't complain about an identifier argument. */
5689 else if (!strcmp ("mode", spec
->name
)
5690 || !strcmp ("format", spec
->name
)
5691 || !strcmp ("cleanup", spec
->name
))
5694 return targetm
.attribute_takes_identifier_p (attr_id
);
5697 /* Attribute handlers common to C front ends. */
5699 /* Handle a "packed" attribute; arguments as in
5700 struct attribute_spec.handler. */
5703 handle_packed_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
5704 int flags
, bool *no_add_attrs
)
5708 if (!(flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
))
5709 *node
= build_variant_type_copy (*node
);
5710 TYPE_PACKED (*node
) = 1;
5712 else if (TREE_CODE (*node
) == FIELD_DECL
)
5714 if (TYPE_ALIGN (TREE_TYPE (*node
)) <= BITS_PER_UNIT
5715 /* Still pack bitfields. */
5716 && ! DECL_INITIAL (*node
))
5717 warning (OPT_Wattributes
,
5718 "%qE attribute ignored for field of type %qT",
5719 name
, TREE_TYPE (*node
));
5721 DECL_PACKED (*node
) = 1;
5723 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
5724 used for DECL_REGISTER. It wouldn't mean anything anyway.
5725 We can't set DECL_PACKED on the type of a TYPE_DECL, because
5726 that changes what the typedef is typing. */
5729 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5730 *no_add_attrs
= true;
5736 /* Handle a "nocommon" attribute; arguments as in
5737 struct attribute_spec.handler. */
5740 handle_nocommon_attribute (tree
*node
, tree name
,
5741 tree
ARG_UNUSED (args
),
5742 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5744 if (TREE_CODE (*node
) == VAR_DECL
)
5745 DECL_COMMON (*node
) = 0;
5748 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5749 *no_add_attrs
= true;
5755 /* Handle a "common" attribute; arguments as in
5756 struct attribute_spec.handler. */
5759 handle_common_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
5760 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5762 if (TREE_CODE (*node
) == VAR_DECL
)
5763 DECL_COMMON (*node
) = 1;
5766 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5767 *no_add_attrs
= true;
5773 /* Handle a "noreturn" attribute; arguments as in
5774 struct attribute_spec.handler. */
5777 handle_noreturn_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
5778 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5780 tree type
= TREE_TYPE (*node
);
5782 /* See FIXME comment in c_common_attribute_table. */
5783 if (TREE_CODE (*node
) == FUNCTION_DECL
5784 || objc_method_decl (TREE_CODE (*node
)))
5785 TREE_THIS_VOLATILE (*node
) = 1;
5786 else if (TREE_CODE (type
) == POINTER_TYPE
5787 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
5789 = build_pointer_type
5790 (build_type_variant (TREE_TYPE (type
),
5791 TYPE_READONLY (TREE_TYPE (type
)), 1));
5794 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5795 *no_add_attrs
= true;
5801 /* Handle a "hot" and attribute; arguments as in
5802 struct attribute_spec.handler. */
5805 handle_hot_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
5806 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5808 if (TREE_CODE (*node
) == FUNCTION_DECL
)
5810 if (lookup_attribute ("cold", DECL_ATTRIBUTES (*node
)) != NULL
)
5812 warning (OPT_Wattributes
, "%qE attribute conflicts with attribute %s",
5814 *no_add_attrs
= true;
5816 /* Most of the rest of the hot processing is done later with
5817 lookup_attribute. */
5821 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5822 *no_add_attrs
= true;
5827 /* Handle a "cold" and attribute; arguments as in
5828 struct attribute_spec.handler. */
5831 handle_cold_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
5832 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5834 if (TREE_CODE (*node
) == FUNCTION_DECL
)
5836 if (lookup_attribute ("hot", DECL_ATTRIBUTES (*node
)) != NULL
)
5838 warning (OPT_Wattributes
, "%qE attribute conflicts with attribute %s",
5840 *no_add_attrs
= true;
5842 /* Most of the rest of the cold processing is done later with
5843 lookup_attribute. */
5847 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5848 *no_add_attrs
= true;
5854 /* Handle a "noinline" attribute; arguments as in
5855 struct attribute_spec.handler. */
5858 handle_noinline_attribute (tree
*node
, tree name
,
5859 tree
ARG_UNUSED (args
),
5860 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5862 if (TREE_CODE (*node
) == FUNCTION_DECL
)
5863 DECL_UNINLINABLE (*node
) = 1;
5866 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5867 *no_add_attrs
= true;
5873 /* Handle a "noclone" attribute; arguments as in
5874 struct attribute_spec.handler. */
5877 handle_noclone_attribute (tree
*node
, tree name
,
5878 tree
ARG_UNUSED (args
),
5879 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5881 if (TREE_CODE (*node
) != FUNCTION_DECL
)
5883 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5884 *no_add_attrs
= true;
5890 /* Handle a "always_inline" attribute; arguments as in
5891 struct attribute_spec.handler. */
5894 handle_always_inline_attribute (tree
*node
, tree name
,
5895 tree
ARG_UNUSED (args
),
5896 int ARG_UNUSED (flags
),
5899 if (TREE_CODE (*node
) == FUNCTION_DECL
)
5901 /* Set the attribute and mark it for disregarding inline
5903 DECL_DISREGARD_INLINE_LIMITS (*node
) = 1;
5907 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5908 *no_add_attrs
= true;
5914 /* Handle a "gnu_inline" attribute; arguments as in
5915 struct attribute_spec.handler. */
5918 handle_gnu_inline_attribute (tree
*node
, tree name
,
5919 tree
ARG_UNUSED (args
),
5920 int ARG_UNUSED (flags
),
5923 if (TREE_CODE (*node
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (*node
))
5925 /* Do nothing else, just set the attribute. We'll get at
5926 it later with lookup_attribute. */
5930 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5931 *no_add_attrs
= true;
5937 /* Handle a "leaf" attribute; arguments as in
5938 struct attribute_spec.handler. */
5941 handle_leaf_attribute (tree
*node
, tree name
,
5942 tree
ARG_UNUSED (args
),
5943 int ARG_UNUSED (flags
), bool *no_add_attrs
)
5945 if (TREE_CODE (*node
) != FUNCTION_DECL
)
5947 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5948 *no_add_attrs
= true;
5950 if (!TREE_PUBLIC (*node
))
5952 warning (OPT_Wattributes
, "%qE attribute has no effect on unit local functions", name
);
5953 *no_add_attrs
= true;
5959 /* Handle an "artificial" attribute; arguments as in
5960 struct attribute_spec.handler. */
5963 handle_artificial_attribute (tree
*node
, tree name
,
5964 tree
ARG_UNUSED (args
),
5965 int ARG_UNUSED (flags
),
5968 if (TREE_CODE (*node
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (*node
))
5970 /* Do nothing else, just set the attribute. We'll get at
5971 it later with lookup_attribute. */
5975 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5976 *no_add_attrs
= true;
5982 /* Handle a "flatten" attribute; arguments as in
5983 struct attribute_spec.handler. */
5986 handle_flatten_attribute (tree
*node
, tree name
,
5987 tree args ATTRIBUTE_UNUSED
,
5988 int flags ATTRIBUTE_UNUSED
, bool *no_add_attrs
)
5990 if (TREE_CODE (*node
) == FUNCTION_DECL
)
5991 /* Do nothing else, just set the attribute. We'll get at
5992 it later with lookup_attribute. */
5996 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
5997 *no_add_attrs
= true;
6003 /* Handle a "warning" or "error" attribute; arguments as in
6004 struct attribute_spec.handler. */
6007 handle_error_attribute (tree
*node
, tree name
, tree args
,
6008 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6010 if (TREE_CODE (*node
) == FUNCTION_DECL
6011 || TREE_CODE (TREE_VALUE (args
)) == STRING_CST
)
6012 /* Do nothing else, just set the attribute. We'll get at
6013 it later with lookup_attribute. */
6017 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6018 *no_add_attrs
= true;
6024 /* Handle a "used" attribute; arguments as in
6025 struct attribute_spec.handler. */
6028 handle_used_attribute (tree
*pnode
, tree name
, tree
ARG_UNUSED (args
),
6029 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6033 if (TREE_CODE (node
) == FUNCTION_DECL
6034 || (TREE_CODE (node
) == VAR_DECL
&& TREE_STATIC (node
)))
6036 TREE_USED (node
) = 1;
6037 DECL_PRESERVE_P (node
) = 1;
6038 if (TREE_CODE (node
) == VAR_DECL
)
6039 DECL_READ_P (node
) = 1;
6043 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6044 *no_add_attrs
= true;
6050 /* Handle a "unused" attribute; arguments as in
6051 struct attribute_spec.handler. */
6054 handle_unused_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
6055 int flags
, bool *no_add_attrs
)
6061 if (TREE_CODE (decl
) == PARM_DECL
6062 || TREE_CODE (decl
) == VAR_DECL
6063 || TREE_CODE (decl
) == FUNCTION_DECL
6064 || TREE_CODE (decl
) == LABEL_DECL
6065 || TREE_CODE (decl
) == TYPE_DECL
)
6067 TREE_USED (decl
) = 1;
6068 if (TREE_CODE (decl
) == VAR_DECL
6069 || TREE_CODE (decl
) == PARM_DECL
)
6070 DECL_READ_P (decl
) = 1;
6074 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6075 *no_add_attrs
= true;
6080 if (!(flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
))
6081 *node
= build_variant_type_copy (*node
);
6082 TREE_USED (*node
) = 1;
6088 /* Handle a "externally_visible" attribute; arguments as in
6089 struct attribute_spec.handler. */
6092 handle_externally_visible_attribute (tree
*pnode
, tree name
,
6093 tree
ARG_UNUSED (args
),
6094 int ARG_UNUSED (flags
),
6099 if (TREE_CODE (node
) == FUNCTION_DECL
|| TREE_CODE (node
) == VAR_DECL
)
6101 if ((!TREE_STATIC (node
) && TREE_CODE (node
) != FUNCTION_DECL
6102 && !DECL_EXTERNAL (node
)) || !TREE_PUBLIC (node
))
6104 warning (OPT_Wattributes
,
6105 "%qE attribute have effect only on public objects", name
);
6106 *no_add_attrs
= true;
6111 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6112 *no_add_attrs
= true;
6118 /* Handle a "const" attribute; arguments as in
6119 struct attribute_spec.handler. */
6122 handle_const_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
6123 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6125 tree type
= TREE_TYPE (*node
);
6127 /* See FIXME comment on noreturn in c_common_attribute_table. */
6128 if (TREE_CODE (*node
) == FUNCTION_DECL
)
6129 TREE_READONLY (*node
) = 1;
6130 else if (TREE_CODE (type
) == POINTER_TYPE
6131 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
6133 = build_pointer_type
6134 (build_type_variant (TREE_TYPE (type
), 1,
6135 TREE_THIS_VOLATILE (TREE_TYPE (type
))));
6138 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6139 *no_add_attrs
= true;
6145 /* Handle a "transparent_union" attribute; arguments as in
6146 struct attribute_spec.handler. */
6149 handle_transparent_union_attribute (tree
*node
, tree name
,
6150 tree
ARG_UNUSED (args
), int flags
,
6155 *no_add_attrs
= true;
6157 if (TREE_CODE (*node
) == TYPE_DECL
)
6158 node
= &TREE_TYPE (*node
);
6161 if (TREE_CODE (type
) == UNION_TYPE
)
6163 /* When IN_PLACE is set, leave the check for FIELDS and MODE to
6164 the code in finish_struct. */
6165 if (!(flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
))
6167 if (TYPE_FIELDS (type
) == NULL_TREE
6169 || TYPE_MODE (type
) != DECL_MODE (TYPE_FIELDS (type
)))
6172 /* A type variant isn't good enough, since we don't a cast
6173 to such a type removed as a no-op. */
6174 *node
= type
= build_duplicate_type (type
);
6177 TYPE_TRANSPARENT_AGGR (type
) = 1;
6182 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6186 /* Subroutine of handle_{con,de}structor_attribute. Evaluate ARGS to
6187 get the requested priority for a constructor or destructor,
6188 possibly issuing diagnostics for invalid or reserved
6191 static priority_type
6192 get_priority (tree args
, bool is_destructor
)
6198 return DEFAULT_INIT_PRIORITY
;
6200 if (!SUPPORTS_INIT_PRIORITY
)
6203 error ("destructor priorities are not supported");
6205 error ("constructor priorities are not supported");
6206 return DEFAULT_INIT_PRIORITY
;
6209 arg
= TREE_VALUE (args
);
6210 if (!host_integerp (arg
, /*pos=*/0)
6211 || !INTEGRAL_TYPE_P (TREE_TYPE (arg
)))
6214 pri
= tree_low_cst (TREE_VALUE (args
), /*pos=*/0);
6215 if (pri
< 0 || pri
> MAX_INIT_PRIORITY
)
6218 if (pri
<= MAX_RESERVED_INIT_PRIORITY
)
6222 "destructor priorities from 0 to %d are reserved "
6223 "for the implementation",
6224 MAX_RESERVED_INIT_PRIORITY
);
6227 "constructor priorities from 0 to %d are reserved "
6228 "for the implementation",
6229 MAX_RESERVED_INIT_PRIORITY
);
6235 error ("destructor priorities must be integers from 0 to %d inclusive",
6238 error ("constructor priorities must be integers from 0 to %d inclusive",
6240 return DEFAULT_INIT_PRIORITY
;
6243 /* Handle a "constructor" attribute; arguments as in
6244 struct attribute_spec.handler. */
6247 handle_constructor_attribute (tree
*node
, tree name
, tree args
,
6248 int ARG_UNUSED (flags
),
6252 tree type
= TREE_TYPE (decl
);
6254 if (TREE_CODE (decl
) == FUNCTION_DECL
6255 && TREE_CODE (type
) == FUNCTION_TYPE
6256 && decl_function_context (decl
) == 0)
6258 priority_type priority
;
6259 DECL_STATIC_CONSTRUCTOR (decl
) = 1;
6260 priority
= get_priority (args
, /*is_destructor=*/false);
6261 SET_DECL_INIT_PRIORITY (decl
, priority
);
6262 TREE_USED (decl
) = 1;
6266 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6267 *no_add_attrs
= true;
6273 /* Handle a "destructor" attribute; arguments as in
6274 struct attribute_spec.handler. */
6277 handle_destructor_attribute (tree
*node
, tree name
, tree args
,
6278 int ARG_UNUSED (flags
),
6282 tree type
= TREE_TYPE (decl
);
6284 if (TREE_CODE (decl
) == FUNCTION_DECL
6285 && TREE_CODE (type
) == FUNCTION_TYPE
6286 && decl_function_context (decl
) == 0)
6288 priority_type priority
;
6289 DECL_STATIC_DESTRUCTOR (decl
) = 1;
6290 priority
= get_priority (args
, /*is_destructor=*/true);
6291 SET_DECL_FINI_PRIORITY (decl
, priority
);
6292 TREE_USED (decl
) = 1;
6296 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6297 *no_add_attrs
= true;
6303 /* Nonzero if the mode is a valid vector mode for this architecture.
6304 This returns nonzero even if there is no hardware support for the
6305 vector mode, but we can emulate with narrower modes. */
6308 vector_mode_valid_p (enum machine_mode mode
)
6310 enum mode_class mclass
= GET_MODE_CLASS (mode
);
6311 enum machine_mode innermode
;
6313 /* Doh! What's going on? */
6314 if (mclass
!= MODE_VECTOR_INT
6315 && mclass
!= MODE_VECTOR_FLOAT
6316 && mclass
!= MODE_VECTOR_FRACT
6317 && mclass
!= MODE_VECTOR_UFRACT
6318 && mclass
!= MODE_VECTOR_ACCUM
6319 && mclass
!= MODE_VECTOR_UACCUM
)
6322 /* Hardware support. Woo hoo! */
6323 if (targetm
.vector_mode_supported_p (mode
))
6326 innermode
= GET_MODE_INNER (mode
);
6328 /* We should probably return 1 if requesting V4DI and we have no DI,
6329 but we have V2DI, but this is probably very unlikely. */
6331 /* If we have support for the inner mode, we can safely emulate it.
6332 We may not have V2DI, but me can emulate with a pair of DIs. */
6333 return targetm
.scalar_mode_supported_p (innermode
);
6337 /* Handle a "mode" attribute; arguments as in
6338 struct attribute_spec.handler. */
6341 handle_mode_attribute (tree
*node
, tree name
, tree args
,
6342 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6345 tree ident
= TREE_VALUE (args
);
6347 *no_add_attrs
= true;
6349 if (TREE_CODE (ident
) != IDENTIFIER_NODE
)
6350 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6354 const char *p
= IDENTIFIER_POINTER (ident
);
6355 int len
= strlen (p
);
6356 enum machine_mode mode
= VOIDmode
;
6360 if (len
> 4 && p
[0] == '_' && p
[1] == '_'
6361 && p
[len
- 1] == '_' && p
[len
- 2] == '_')
6363 char *newp
= (char *) alloca (len
- 1);
6365 strcpy (newp
, &p
[2]);
6366 newp
[len
- 4] = '\0';
6370 /* Change this type to have a type with the specified mode.
6371 First check for the special modes. */
6372 if (!strcmp (p
, "byte"))
6374 else if (!strcmp (p
, "word"))
6376 else if (!strcmp (p
, "pointer"))
6378 else if (!strcmp (p
, "libgcc_cmp_return"))
6379 mode
= targetm
.libgcc_cmp_return_mode ();
6380 else if (!strcmp (p
, "libgcc_shift_count"))
6381 mode
= targetm
.libgcc_shift_count_mode ();
6382 else if (!strcmp (p
, "unwind_word"))
6383 mode
= targetm
.unwind_word_mode ();
6385 for (j
= 0; j
< NUM_MACHINE_MODES
; j
++)
6386 if (!strcmp (p
, GET_MODE_NAME (j
)))
6388 mode
= (enum machine_mode
) j
;
6392 if (mode
== VOIDmode
)
6394 error ("unknown machine mode %qE", ident
);
6399 switch (GET_MODE_CLASS (mode
))
6402 case MODE_PARTIAL_INT
:
6404 case MODE_DECIMAL_FLOAT
:
6409 valid_mode
= targetm
.scalar_mode_supported_p (mode
);
6412 case MODE_COMPLEX_INT
:
6413 case MODE_COMPLEX_FLOAT
:
6414 valid_mode
= targetm
.scalar_mode_supported_p (GET_MODE_INNER (mode
));
6417 case MODE_VECTOR_INT
:
6418 case MODE_VECTOR_FLOAT
:
6419 case MODE_VECTOR_FRACT
:
6420 case MODE_VECTOR_UFRACT
:
6421 case MODE_VECTOR_ACCUM
:
6422 case MODE_VECTOR_UACCUM
:
6423 warning (OPT_Wattributes
, "specifying vector types with "
6424 "__attribute__ ((mode)) is deprecated");
6425 warning (OPT_Wattributes
,
6426 "use __attribute__ ((vector_size)) instead");
6427 valid_mode
= vector_mode_valid_p (mode
);
6435 error ("unable to emulate %qs", p
);
6439 if (POINTER_TYPE_P (type
))
6441 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (type
));
6442 tree (*fn
)(tree
, enum machine_mode
, bool);
6444 if (!targetm
.addr_space
.valid_pointer_mode (mode
, as
))
6446 error ("invalid pointer mode %qs", p
);
6450 if (TREE_CODE (type
) == POINTER_TYPE
)
6451 fn
= build_pointer_type_for_mode
;
6453 fn
= build_reference_type_for_mode
;
6454 typefm
= fn (TREE_TYPE (type
), mode
, false);
6458 /* For fixed-point modes, we need to test if the signness of type
6459 and the machine mode are consistent. */
6460 if (ALL_FIXED_POINT_MODE_P (mode
)
6461 && TYPE_UNSIGNED (type
) != UNSIGNED_FIXED_POINT_MODE_P (mode
))
6463 error ("signedness of type and machine mode %qs don%'t match", p
);
6466 /* For fixed-point modes, we need to pass saturating info. */
6467 typefm
= lang_hooks
.types
.type_for_mode (mode
,
6468 ALL_FIXED_POINT_MODE_P (mode
) ? TYPE_SATURATING (type
)
6469 : TYPE_UNSIGNED (type
));
6472 if (typefm
== NULL_TREE
)
6474 error ("no data type for mode %qs", p
);
6477 else if (TREE_CODE (type
) == ENUMERAL_TYPE
)
6479 /* For enumeral types, copy the precision from the integer
6480 type returned above. If not an INTEGER_TYPE, we can't use
6481 this mode for this type. */
6482 if (TREE_CODE (typefm
) != INTEGER_TYPE
)
6484 error ("cannot use mode %qs for enumeral types", p
);
6488 if (flags
& ATTR_FLAG_TYPE_IN_PLACE
)
6490 TYPE_PRECISION (type
) = TYPE_PRECISION (typefm
);
6495 /* We cannot build a type variant, as there's code that assumes
6496 that TYPE_MAIN_VARIANT has the same mode. This includes the
6497 debug generators. Instead, create a subrange type. This
6498 results in all of the enumeral values being emitted only once
6499 in the original, and the subtype gets them by reference. */
6500 if (TYPE_UNSIGNED (type
))
6501 typefm
= make_unsigned_type (TYPE_PRECISION (typefm
));
6503 typefm
= make_signed_type (TYPE_PRECISION (typefm
));
6504 TREE_TYPE (typefm
) = type
;
6507 else if (VECTOR_MODE_P (mode
)
6508 ? TREE_CODE (type
) != TREE_CODE (TREE_TYPE (typefm
))
6509 : TREE_CODE (type
) != TREE_CODE (typefm
))
6511 error ("mode %qs applied to inappropriate type", p
);
6521 /* Handle a "section" attribute; arguments as in
6522 struct attribute_spec.handler. */
6525 handle_section_attribute (tree
*node
, tree
ARG_UNUSED (name
), tree args
,
6526 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6530 if (targetm
.have_named_sections
)
6532 user_defined_section_attribute
= true;
6534 if ((TREE_CODE (decl
) == FUNCTION_DECL
6535 || TREE_CODE (decl
) == VAR_DECL
)
6536 && TREE_CODE (TREE_VALUE (args
)) == STRING_CST
)
6538 if (TREE_CODE (decl
) == VAR_DECL
6539 && current_function_decl
!= NULL_TREE
6540 && !TREE_STATIC (decl
))
6542 error_at (DECL_SOURCE_LOCATION (decl
),
6543 "section attribute cannot be specified for "
6545 *no_add_attrs
= true;
6548 /* The decl may have already been given a section attribute
6549 from a previous declaration. Ensure they match. */
6550 else if (DECL_SECTION_NAME (decl
) != NULL_TREE
6551 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl
)),
6552 TREE_STRING_POINTER (TREE_VALUE (args
))) != 0)
6554 error ("section of %q+D conflicts with previous declaration",
6556 *no_add_attrs
= true;
6558 else if (TREE_CODE (decl
) == VAR_DECL
6559 && !targetm
.have_tls
&& targetm
.emutls
.tmpl_section
6560 && DECL_THREAD_LOCAL_P (decl
))
6562 error ("section of %q+D cannot be overridden", *node
);
6563 *no_add_attrs
= true;
6566 DECL_SECTION_NAME (decl
) = TREE_VALUE (args
);
6570 error ("section attribute not allowed for %q+D", *node
);
6571 *no_add_attrs
= true;
6576 error_at (DECL_SOURCE_LOCATION (*node
),
6577 "section attributes are not supported for this target");
6578 *no_add_attrs
= true;
6584 /* Handle a "aligned" attribute; arguments as in
6585 struct attribute_spec.handler. */
6588 handle_aligned_attribute (tree
*node
, tree
ARG_UNUSED (name
), tree args
,
6589 int flags
, bool *no_add_attrs
)
6591 tree decl
= NULL_TREE
;
6594 tree align_expr
= (args
? TREE_VALUE (args
)
6595 : size_int (ATTRIBUTE_ALIGNED_VALUE
/ BITS_PER_UNIT
));
6601 type
= &TREE_TYPE (decl
);
6602 is_type
= TREE_CODE (*node
) == TYPE_DECL
;
6604 else if (TYPE_P (*node
))
6605 type
= node
, is_type
= 1;
6607 if (TREE_CODE (align_expr
) != INTEGER_CST
)
6609 error ("requested alignment is not a constant");
6610 *no_add_attrs
= true;
6612 else if ((i
= tree_log2 (align_expr
)) == -1)
6614 error ("requested alignment is not a power of 2");
6615 *no_add_attrs
= true;
6617 else if (i
>= HOST_BITS_PER_INT
- BITS_PER_UNIT_LOG
)
6619 error ("requested alignment is too large");
6620 *no_add_attrs
= true;
6624 if ((flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
))
6625 /* OK, modify the type in place. */;
6626 /* If we have a TYPE_DECL, then copy the type, so that we
6627 don't accidentally modify a builtin type. See pushdecl. */
6628 else if (decl
&& TREE_TYPE (decl
) != error_mark_node
6629 && DECL_ORIGINAL_TYPE (decl
) == NULL_TREE
)
6631 tree tt
= TREE_TYPE (decl
);
6632 *type
= build_variant_type_copy (*type
);
6633 DECL_ORIGINAL_TYPE (decl
) = tt
;
6634 TYPE_NAME (*type
) = decl
;
6635 TREE_USED (*type
) = TREE_USED (decl
);
6636 TREE_TYPE (decl
) = *type
;
6639 *type
= build_variant_type_copy (*type
);
6641 TYPE_ALIGN (*type
) = (1U << i
) * BITS_PER_UNIT
;
6642 TYPE_USER_ALIGN (*type
) = 1;
6644 else if (! VAR_OR_FUNCTION_DECL_P (decl
)
6645 && TREE_CODE (decl
) != FIELD_DECL
)
6647 error ("alignment may not be specified for %q+D", decl
);
6648 *no_add_attrs
= true;
6650 else if (TREE_CODE (decl
) == FUNCTION_DECL
6651 && DECL_ALIGN (decl
) > (1U << i
) * BITS_PER_UNIT
)
6653 if (DECL_USER_ALIGN (decl
))
6654 error ("alignment for %q+D was previously specified as %d "
6655 "and may not be decreased", decl
,
6656 DECL_ALIGN (decl
) / BITS_PER_UNIT
);
6658 error ("alignment for %q+D must be at least %d", decl
,
6659 DECL_ALIGN (decl
) / BITS_PER_UNIT
);
6660 *no_add_attrs
= true;
6664 DECL_ALIGN (decl
) = (1U << i
) * BITS_PER_UNIT
;
6665 DECL_USER_ALIGN (decl
) = 1;
6671 /* Handle a "weak" attribute; arguments as in
6672 struct attribute_spec.handler. */
6675 handle_weak_attribute (tree
*node
, tree name
,
6676 tree
ARG_UNUSED (args
),
6677 int ARG_UNUSED (flags
),
6678 bool * ARG_UNUSED (no_add_attrs
))
6680 if (TREE_CODE (*node
) == FUNCTION_DECL
6681 && DECL_DECLARED_INLINE_P (*node
))
6683 warning (OPT_Wattributes
, "inline function %q+D declared weak", *node
);
6684 *no_add_attrs
= true;
6686 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node
)))
6688 error ("indirect function %q+D cannot be declared weak", *node
);
6689 *no_add_attrs
= true;
6692 else if (TREE_CODE (*node
) == FUNCTION_DECL
6693 || TREE_CODE (*node
) == VAR_DECL
)
6694 declare_weak (*node
);
6696 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6701 /* Handle an "alias" or "ifunc" attribute; arguments as in
6702 struct attribute_spec.handler, except that IS_ALIAS tells us
6703 whether this is an alias as opposed to ifunc attribute. */
6706 handle_alias_ifunc_attribute (bool is_alias
, tree
*node
, tree name
, tree args
,
6711 if (TREE_CODE (decl
) != FUNCTION_DECL
6712 && (!is_alias
|| TREE_CODE (decl
) != VAR_DECL
))
6714 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6715 *no_add_attrs
= true;
6717 else if ((TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_INITIAL (decl
))
6718 || (TREE_CODE (decl
) != FUNCTION_DECL
6719 && TREE_PUBLIC (decl
) && !DECL_EXTERNAL (decl
))
6720 /* A static variable declaration is always a tentative definition,
6721 but the alias is a non-tentative definition which overrides. */
6722 || (TREE_CODE (decl
) != FUNCTION_DECL
6723 && ! TREE_PUBLIC (decl
) && DECL_INITIAL (decl
)))
6725 error ("%q+D defined both normally and as %qE attribute", decl
, name
);
6726 *no_add_attrs
= true;
6730 && (lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
6731 || lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
))))
6733 error ("weak %q+D cannot be defined %qE", decl
, name
);
6734 *no_add_attrs
= true;
6738 /* Note that the very first time we process a nested declaration,
6739 decl_function_context will not be set. Indeed, *would* never
6740 be set except for the DECL_INITIAL/DECL_EXTERNAL frobbery that
6741 we do below. After such frobbery, pushdecl would set the context.
6742 In any case, this is never what we want. */
6743 else if (decl_function_context (decl
) == 0 && current_function_decl
== NULL
)
6747 id
= TREE_VALUE (args
);
6748 if (TREE_CODE (id
) != STRING_CST
)
6750 error ("attribute %qE argument not a string", name
);
6751 *no_add_attrs
= true;
6754 id
= get_identifier (TREE_STRING_POINTER (id
));
6755 /* This counts as a use of the object pointed to. */
6758 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6759 DECL_INITIAL (decl
) = error_mark_node
;
6762 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
6763 DECL_EXTERNAL (decl
) = 1;
6765 DECL_EXTERNAL (decl
) = 0;
6766 TREE_STATIC (decl
) = 1;
6770 /* ifuncs are also aliases, so set that attribute too. */
6771 DECL_ATTRIBUTES (decl
)
6772 = tree_cons (get_identifier ("alias"), args
, DECL_ATTRIBUTES (decl
));
6776 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6777 *no_add_attrs
= true;
6783 /* Handle an "alias" or "ifunc" attribute; arguments as in
6784 struct attribute_spec.handler. */
6787 handle_ifunc_attribute (tree
*node
, tree name
, tree args
,
6788 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6790 return handle_alias_ifunc_attribute (false, node
, name
, args
, no_add_attrs
);
6793 /* Handle an "alias" or "ifunc" attribute; arguments as in
6794 struct attribute_spec.handler. */
6797 handle_alias_attribute (tree
*node
, tree name
, tree args
,
6798 int ARG_UNUSED (flags
), bool *no_add_attrs
)
6800 return handle_alias_ifunc_attribute (true, node
, name
, args
, no_add_attrs
);
6803 /* Handle a "weakref" attribute; arguments as in struct
6804 attribute_spec.handler. */
6807 handle_weakref_attribute (tree
*node
, tree
ARG_UNUSED (name
), tree args
,
6808 int flags
, bool *no_add_attrs
)
6810 tree attr
= NULL_TREE
;
6812 /* We must ignore the attribute when it is associated with
6813 local-scoped decls, since attribute alias is ignored and many
6814 such symbols do not even have a DECL_WEAK field. */
6815 if (decl_function_context (*node
)
6816 || current_function_decl
6817 || (TREE_CODE (*node
) != VAR_DECL
&& TREE_CODE (*node
) != FUNCTION_DECL
))
6819 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6820 *no_add_attrs
= true;
6824 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node
)))
6826 error ("indirect function %q+D cannot be declared weakref", *node
);
6827 *no_add_attrs
= true;
6831 /* The idea here is that `weakref("name")' mutates into `weakref,
6832 alias("name")', and weakref without arguments, in turn,
6833 implicitly adds weak. */
6837 attr
= tree_cons (get_identifier ("alias"), args
, attr
);
6838 attr
= tree_cons (get_identifier ("weakref"), NULL_TREE
, attr
);
6840 *no_add_attrs
= true;
6842 decl_attributes (node
, attr
, flags
);
6846 if (lookup_attribute ("alias", DECL_ATTRIBUTES (*node
)))
6847 error_at (DECL_SOURCE_LOCATION (*node
),
6848 "weakref attribute must appear before alias attribute");
6850 /* Can't call declare_weak because it wants this to be TREE_PUBLIC,
6851 and that isn't supported; and because it wants to add it to
6852 the list of weak decls, which isn't helpful. */
6853 DECL_WEAK (*node
) = 1;
6859 /* Handle an "visibility" attribute; arguments as in
6860 struct attribute_spec.handler. */
6863 handle_visibility_attribute (tree
*node
, tree name
, tree args
,
6864 int ARG_UNUSED (flags
),
6865 bool *ARG_UNUSED (no_add_attrs
))
6868 tree id
= TREE_VALUE (args
);
6869 enum symbol_visibility vis
;
6873 if (TREE_CODE (*node
) == ENUMERAL_TYPE
)
6875 else if (TREE_CODE (*node
) != RECORD_TYPE
&& TREE_CODE (*node
) != UNION_TYPE
)
6877 warning (OPT_Wattributes
, "%qE attribute ignored on non-class types",
6881 else if (TYPE_FIELDS (*node
))
6883 error ("%qE attribute ignored because %qT is already defined",
6888 else if (decl_function_context (decl
) != 0 || !TREE_PUBLIC (decl
))
6890 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6894 if (TREE_CODE (id
) != STRING_CST
)
6896 error ("visibility argument not a string");
6900 /* If this is a type, set the visibility on the type decl. */
6903 decl
= TYPE_NAME (decl
);
6906 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
6908 warning (OPT_Wattributes
, "%qE attribute ignored on types",
6914 if (strcmp (TREE_STRING_POINTER (id
), "default") == 0)
6915 vis
= VISIBILITY_DEFAULT
;
6916 else if (strcmp (TREE_STRING_POINTER (id
), "internal") == 0)
6917 vis
= VISIBILITY_INTERNAL
;
6918 else if (strcmp (TREE_STRING_POINTER (id
), "hidden") == 0)
6919 vis
= VISIBILITY_HIDDEN
;
6920 else if (strcmp (TREE_STRING_POINTER (id
), "protected") == 0)
6921 vis
= VISIBILITY_PROTECTED
;
6924 error ("visibility argument must be one of \"default\", \"hidden\", \"protected\" or \"internal\"");
6925 vis
= VISIBILITY_DEFAULT
;
6928 if (DECL_VISIBILITY_SPECIFIED (decl
)
6929 && vis
!= DECL_VISIBILITY (decl
))
6931 tree attributes
= (TYPE_P (*node
)
6932 ? TYPE_ATTRIBUTES (*node
)
6933 : DECL_ATTRIBUTES (decl
));
6934 if (lookup_attribute ("visibility", attributes
))
6935 error ("%qD redeclared with different visibility", decl
);
6936 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6937 && lookup_attribute ("dllimport", attributes
))
6938 error ("%qD was declared %qs which implies default visibility",
6940 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6941 && lookup_attribute ("dllexport", attributes
))
6942 error ("%qD was declared %qs which implies default visibility",
6946 DECL_VISIBILITY (decl
) = vis
;
6947 DECL_VISIBILITY_SPECIFIED (decl
) = 1;
6949 /* Go ahead and attach the attribute to the node as well. This is needed
6950 so we can determine whether we have VISIBILITY_DEFAULT because the
6951 visibility was not specified, or because it was explicitly overridden
6952 from the containing scope. */
6957 /* Determine the ELF symbol visibility for DECL, which is either a
6958 variable or a function. It is an error to use this function if a
6959 definition of DECL is not available in this translation unit.
6960 Returns true if the final visibility has been determined by this
6961 function; false if the caller is free to make additional
6965 c_determine_visibility (tree decl
)
6967 gcc_assert (TREE_CODE (decl
) == VAR_DECL
6968 || TREE_CODE (decl
) == FUNCTION_DECL
);
6970 /* If the user explicitly specified the visibility with an
6971 attribute, honor that. DECL_VISIBILITY will have been set during
6972 the processing of the attribute. We check for an explicit
6973 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
6974 to distinguish the use of an attribute from the use of a "#pragma
6975 GCC visibility push(...)"; in the latter case we still want other
6976 considerations to be able to overrule the #pragma. */
6977 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl
))
6978 || (TARGET_DLLIMPORT_DECL_ATTRIBUTES
6979 && (lookup_attribute ("dllimport", DECL_ATTRIBUTES (decl
))
6980 || lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl
)))))
6983 /* Set default visibility to whatever the user supplied with
6984 visibility_specified depending on #pragma GCC visibility. */
6985 if (!DECL_VISIBILITY_SPECIFIED (decl
))
6987 if (visibility_options
.inpragma
6988 || DECL_VISIBILITY (decl
) != default_visibility
)
6990 DECL_VISIBILITY (decl
) = default_visibility
;
6991 DECL_VISIBILITY_SPECIFIED (decl
) = visibility_options
.inpragma
;
6992 /* If visibility changed and DECL already has DECL_RTL, ensure
6993 symbol flags are updated. */
6994 if (((TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
6995 || TREE_CODE (decl
) == FUNCTION_DECL
)
6996 && DECL_RTL_SET_P (decl
))
6997 make_decl_rtl (decl
);
7003 /* Handle an "tls_model" attribute; arguments as in
7004 struct attribute_spec.handler. */
7007 handle_tls_model_attribute (tree
*node
, tree name
, tree args
,
7008 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7012 enum tls_model kind
;
7014 *no_add_attrs
= true;
7016 if (TREE_CODE (decl
) != VAR_DECL
|| !DECL_THREAD_LOCAL_P (decl
))
7018 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7022 kind
= DECL_TLS_MODEL (decl
);
7023 id
= TREE_VALUE (args
);
7024 if (TREE_CODE (id
) != STRING_CST
)
7026 error ("tls_model argument not a string");
7030 if (!strcmp (TREE_STRING_POINTER (id
), "local-exec"))
7031 kind
= TLS_MODEL_LOCAL_EXEC
;
7032 else if (!strcmp (TREE_STRING_POINTER (id
), "initial-exec"))
7033 kind
= TLS_MODEL_INITIAL_EXEC
;
7034 else if (!strcmp (TREE_STRING_POINTER (id
), "local-dynamic"))
7035 kind
= optimize
? TLS_MODEL_LOCAL_DYNAMIC
: TLS_MODEL_GLOBAL_DYNAMIC
;
7036 else if (!strcmp (TREE_STRING_POINTER (id
), "global-dynamic"))
7037 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
7039 error ("tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
7041 DECL_TLS_MODEL (decl
) = kind
;
7045 /* Handle a "no_instrument_function" attribute; arguments as in
7046 struct attribute_spec.handler. */
7049 handle_no_instrument_function_attribute (tree
*node
, tree name
,
7050 tree
ARG_UNUSED (args
),
7051 int ARG_UNUSED (flags
),
7056 if (TREE_CODE (decl
) != FUNCTION_DECL
)
7058 error_at (DECL_SOURCE_LOCATION (decl
),
7059 "%qE attribute applies only to functions", name
);
7060 *no_add_attrs
= true;
7062 else if (DECL_INITIAL (decl
))
7064 error_at (DECL_SOURCE_LOCATION (decl
),
7065 "can%'t set %qE attribute after definition", name
);
7066 *no_add_attrs
= true;
7069 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl
) = 1;
7074 /* Handle a "malloc" attribute; arguments as in
7075 struct attribute_spec.handler. */
7078 handle_malloc_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
7079 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7081 if (TREE_CODE (*node
) == FUNCTION_DECL
7082 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (*node
))))
7083 DECL_IS_MALLOC (*node
) = 1;
7086 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7087 *no_add_attrs
= true;
7093 /* Handle a "alloc_size" attribute; arguments as in
7094 struct attribute_spec.handler. */
7097 handle_alloc_size_attribute (tree
*node
, tree
ARG_UNUSED (name
), tree args
,
7098 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7100 unsigned arg_count
= type_num_arguments (*node
);
7101 for (; args
; args
= TREE_CHAIN (args
))
7103 tree position
= TREE_VALUE (args
);
7105 if (TREE_CODE (position
) != INTEGER_CST
7106 || TREE_INT_CST_HIGH (position
)
7107 || TREE_INT_CST_LOW (position
) < 1
7108 || TREE_INT_CST_LOW (position
) > arg_count
)
7110 warning (OPT_Wattributes
,
7111 "alloc_size parameter outside range");
7112 *no_add_attrs
= true;
7119 /* Handle a "fn spec" attribute; arguments as in
7120 struct attribute_spec.handler. */
7123 handle_fnspec_attribute (tree
*node ATTRIBUTE_UNUSED
, tree
ARG_UNUSED (name
),
7124 tree args
, int ARG_UNUSED (flags
),
7125 bool *no_add_attrs ATTRIBUTE_UNUSED
)
7128 && TREE_CODE (TREE_VALUE (args
)) == STRING_CST
7129 && !TREE_CHAIN (args
));
7133 /* Handle a "returns_twice" attribute; arguments as in
7134 struct attribute_spec.handler. */
7137 handle_returns_twice_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
7138 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7140 if (TREE_CODE (*node
) == FUNCTION_DECL
)
7141 DECL_IS_RETURNS_TWICE (*node
) = 1;
7144 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7145 *no_add_attrs
= true;
7151 /* Handle a "no_limit_stack" attribute; arguments as in
7152 struct attribute_spec.handler. */
7155 handle_no_limit_stack_attribute (tree
*node
, tree name
,
7156 tree
ARG_UNUSED (args
),
7157 int ARG_UNUSED (flags
),
7162 if (TREE_CODE (decl
) != FUNCTION_DECL
)
7164 error_at (DECL_SOURCE_LOCATION (decl
),
7165 "%qE attribute applies only to functions", name
);
7166 *no_add_attrs
= true;
7168 else if (DECL_INITIAL (decl
))
7170 error_at (DECL_SOURCE_LOCATION (decl
),
7171 "can%'t set %qE attribute after definition", name
);
7172 *no_add_attrs
= true;
7175 DECL_NO_LIMIT_STACK (decl
) = 1;
7180 /* Handle a "pure" attribute; arguments as in
7181 struct attribute_spec.handler. */
7184 handle_pure_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
7185 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7187 if (TREE_CODE (*node
) == FUNCTION_DECL
)
7188 DECL_PURE_P (*node
) = 1;
7189 /* ??? TODO: Support types. */
7192 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7193 *no_add_attrs
= true;
7199 /* Handle a "no vops" attribute; arguments as in
7200 struct attribute_spec.handler. */
7203 handle_novops_attribute (tree
*node
, tree
ARG_UNUSED (name
),
7204 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
7205 bool *ARG_UNUSED (no_add_attrs
))
7207 gcc_assert (TREE_CODE (*node
) == FUNCTION_DECL
);
7208 DECL_IS_NOVOPS (*node
) = 1;
7212 /* Handle a "deprecated" attribute; arguments as in
7213 struct attribute_spec.handler. */
7216 handle_deprecated_attribute (tree
*node
, tree name
,
7217 tree args
, int flags
,
7220 tree type
= NULL_TREE
;
7222 tree what
= NULL_TREE
;
7225 *no_add_attrs
= true;
7226 else if (TREE_CODE (TREE_VALUE (args
)) != STRING_CST
)
7228 error ("deprecated message is not a string");
7229 *no_add_attrs
= true;
7235 type
= TREE_TYPE (decl
);
7237 if (TREE_CODE (decl
) == TYPE_DECL
7238 || TREE_CODE (decl
) == PARM_DECL
7239 || TREE_CODE (decl
) == VAR_DECL
7240 || TREE_CODE (decl
) == FUNCTION_DECL
7241 || TREE_CODE (decl
) == FIELD_DECL
7242 || objc_method_decl (TREE_CODE (decl
)))
7243 TREE_DEPRECATED (decl
) = 1;
7247 else if (TYPE_P (*node
))
7249 if (!(flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
))
7250 *node
= build_variant_type_copy (*node
);
7251 TREE_DEPRECATED (*node
) = 1;
7259 *no_add_attrs
= true;
7260 if (type
&& TYPE_NAME (type
))
7262 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
7263 what
= TYPE_NAME (*node
);
7264 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
7265 && DECL_NAME (TYPE_NAME (type
)))
7266 what
= DECL_NAME (TYPE_NAME (type
));
7269 warning (OPT_Wattributes
, "%qE attribute ignored for %qE", name
, what
);
7271 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7277 /* Handle a "vector_size" attribute; arguments as in
7278 struct attribute_spec.handler. */
7281 handle_vector_size_attribute (tree
*node
, tree name
, tree args
,
7282 int ARG_UNUSED (flags
),
7285 unsigned HOST_WIDE_INT vecsize
, nunits
;
7286 enum machine_mode orig_mode
;
7287 tree type
= *node
, new_type
, size
;
7289 *no_add_attrs
= true;
7291 size
= TREE_VALUE (args
);
7293 if (!host_integerp (size
, 1))
7295 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7299 /* Get the vector size (in bytes). */
7300 vecsize
= tree_low_cst (size
, 1);
7302 /* We need to provide for vector pointers, vector arrays, and
7303 functions returning vectors. For example:
7305 __attribute__((vector_size(16))) short *foo;
7307 In this case, the mode is SI, but the type being modified is
7308 HI, so we need to look further. */
7310 while (POINTER_TYPE_P (type
)
7311 || TREE_CODE (type
) == FUNCTION_TYPE
7312 || TREE_CODE (type
) == METHOD_TYPE
7313 || TREE_CODE (type
) == ARRAY_TYPE
7314 || TREE_CODE (type
) == OFFSET_TYPE
)
7315 type
= TREE_TYPE (type
);
7317 /* Get the mode of the type being modified. */
7318 orig_mode
= TYPE_MODE (type
);
7320 if ((!INTEGRAL_TYPE_P (type
)
7321 && !SCALAR_FLOAT_TYPE_P (type
)
7322 && !FIXED_POINT_TYPE_P (type
))
7323 || (!SCALAR_FLOAT_MODE_P (orig_mode
)
7324 && GET_MODE_CLASS (orig_mode
) != MODE_INT
7325 && !ALL_SCALAR_FIXED_POINT_MODE_P (orig_mode
))
7326 || !host_integerp (TYPE_SIZE_UNIT (type
), 1)
7327 || TREE_CODE (type
) == BOOLEAN_TYPE
)
7329 error ("invalid vector type for attribute %qE", name
);
7333 if (vecsize
% tree_low_cst (TYPE_SIZE_UNIT (type
), 1))
7335 error ("vector size not an integral multiple of component size");
7341 error ("zero vector size");
7345 /* Calculate how many units fit in the vector. */
7346 nunits
= vecsize
/ tree_low_cst (TYPE_SIZE_UNIT (type
), 1);
7347 if (nunits
& (nunits
- 1))
7349 error ("number of components of the vector not a power of two");
7353 new_type
= build_vector_type (type
, nunits
);
7355 /* Build back pointers if needed. */
7356 *node
= lang_hooks
.types
.reconstruct_complex_type (*node
, new_type
);
7361 /* Handle the "nonnull" attribute. */
7363 handle_nonnull_attribute (tree
*node
, tree
ARG_UNUSED (name
),
7364 tree args
, int ARG_UNUSED (flags
),
7368 unsigned HOST_WIDE_INT attr_arg_num
;
7370 /* If no arguments are specified, all pointer arguments should be
7371 non-null. Verify a full prototype is given so that the arguments
7372 will have the correct types when we actually check them later. */
7375 if (!prototype_p (type
))
7377 error ("nonnull attribute without arguments on a non-prototype");
7378 *no_add_attrs
= true;
7383 /* Argument list specified. Verify that each argument number references
7384 a pointer argument. */
7385 for (attr_arg_num
= 1; args
; args
= TREE_CHAIN (args
))
7388 unsigned HOST_WIDE_INT arg_num
= 0, ck_num
;
7390 if (!get_nonnull_operand (TREE_VALUE (args
), &arg_num
))
7392 error ("nonnull argument has invalid operand number (argument %lu)",
7393 (unsigned long) attr_arg_num
);
7394 *no_add_attrs
= true;
7398 argument
= TYPE_ARG_TYPES (type
);
7401 for (ck_num
= 1; ; ck_num
++)
7403 if (!argument
|| ck_num
== arg_num
)
7405 argument
= TREE_CHAIN (argument
);
7409 || TREE_CODE (TREE_VALUE (argument
)) == VOID_TYPE
)
7411 error ("nonnull argument with out-of-range operand number (argument %lu, operand %lu)",
7412 (unsigned long) attr_arg_num
, (unsigned long) arg_num
);
7413 *no_add_attrs
= true;
7417 if (TREE_CODE (TREE_VALUE (argument
)) != POINTER_TYPE
)
7419 error ("nonnull argument references non-pointer operand (argument %lu, operand %lu)",
7420 (unsigned long) attr_arg_num
, (unsigned long) arg_num
);
7421 *no_add_attrs
= true;
7430 /* Check the argument list of a function call for null in argument slots
7431 that are marked as requiring a non-null pointer argument. The NARGS
7432 arguments are passed in the array ARGARRAY.
7436 check_function_nonnull (tree attrs
, int nargs
, tree
*argarray
)
7441 for (a
= attrs
; a
; a
= TREE_CHAIN (a
))
7443 if (is_attribute_p ("nonnull", TREE_PURPOSE (a
)))
7445 args
= TREE_VALUE (a
);
7447 /* Walk the argument list. If we encounter an argument number we
7448 should check for non-null, do it. If the attribute has no args,
7449 then every pointer argument is checked (in which case the check
7450 for pointer type is done in check_nonnull_arg). */
7451 for (i
= 0; i
< nargs
; i
++)
7453 if (!args
|| nonnull_check_p (args
, i
+ 1))
7454 check_function_arguments_recurse (check_nonnull_arg
, NULL
,
7462 /* Check that the Nth argument of a function call (counting backwards
7463 from the end) is a (pointer)0. The NARGS arguments are passed in the
7467 check_function_sentinel (tree attrs
, int nargs
, tree
*argarray
, tree typelist
)
7469 tree attr
= lookup_attribute ("sentinel", attrs
);
7477 /* Skip over the named arguments. */
7478 while (typelist
&& len
< nargs
)
7480 typelist
= TREE_CHAIN (typelist
);
7484 if (TREE_VALUE (attr
))
7486 tree p
= TREE_VALUE (TREE_VALUE (attr
));
7487 pos
= TREE_INT_CST_LOW (p
);
7490 /* The sentinel must be one of the varargs, i.e.
7491 in position >= the number of fixed arguments. */
7492 if ((nargs
- 1 - pos
) < len
)
7494 warning (OPT_Wformat
,
7495 "not enough variable arguments to fit a sentinel");
7499 /* Validate the sentinel. */
7500 sentinel
= argarray
[nargs
- 1 - pos
];
7501 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel
))
7502 || !integer_zerop (sentinel
))
7503 /* Although __null (in C++) is only an integer we allow it
7504 nevertheless, as we are guaranteed that it's exactly
7505 as wide as a pointer, and we don't want to force
7506 users to cast the NULL they have written there.
7507 We warn with -Wstrict-null-sentinel, though. */
7508 && (warn_strict_null_sentinel
|| null_node
!= sentinel
))
7509 warning (OPT_Wformat
, "missing sentinel in function call");
7513 /* Helper for check_function_nonnull; given a list of operands which
7514 must be non-null in ARGS, determine if operand PARAM_NUM should be
7518 nonnull_check_p (tree args
, unsigned HOST_WIDE_INT param_num
)
7520 unsigned HOST_WIDE_INT arg_num
= 0;
7522 for (; args
; args
= TREE_CHAIN (args
))
7524 bool found
= get_nonnull_operand (TREE_VALUE (args
), &arg_num
);
7528 if (arg_num
== param_num
)
7534 /* Check that the function argument PARAM (which is operand number
7535 PARAM_NUM) is non-null. This is called by check_function_nonnull
7536 via check_function_arguments_recurse. */
7539 check_nonnull_arg (void * ARG_UNUSED (ctx
), tree param
,
7540 unsigned HOST_WIDE_INT param_num
)
7542 /* Just skip checking the argument if it's not a pointer. This can
7543 happen if the "nonnull" attribute was given without an operand
7544 list (which means to check every pointer argument). */
7546 if (TREE_CODE (TREE_TYPE (param
)) != POINTER_TYPE
)
7549 if (integer_zerop (param
))
7550 warning (OPT_Wnonnull
, "null argument where non-null required "
7551 "(argument %lu)", (unsigned long) param_num
);
7554 /* Helper for nonnull attribute handling; fetch the operand number
7555 from the attribute argument list. */
7558 get_nonnull_operand (tree arg_num_expr
, unsigned HOST_WIDE_INT
*valp
)
7560 /* Verify the arg number is a constant. */
7561 if (TREE_CODE (arg_num_expr
) != INTEGER_CST
7562 || TREE_INT_CST_HIGH (arg_num_expr
) != 0)
7565 *valp
= TREE_INT_CST_LOW (arg_num_expr
);
7569 /* Handle a "nothrow" attribute; arguments as in
7570 struct attribute_spec.handler. */
7573 handle_nothrow_attribute (tree
*node
, tree name
, tree
ARG_UNUSED (args
),
7574 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7576 if (TREE_CODE (*node
) == FUNCTION_DECL
)
7577 TREE_NOTHROW (*node
) = 1;
7578 /* ??? TODO: Support types. */
7581 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7582 *no_add_attrs
= true;
7588 /* Handle a "cleanup" attribute; arguments as in
7589 struct attribute_spec.handler. */
7592 handle_cleanup_attribute (tree
*node
, tree name
, tree args
,
7593 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7596 tree cleanup_id
, cleanup_decl
;
7598 /* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
7599 for global destructors in C++. This requires infrastructure that
7600 we don't have generically at the moment. It's also not a feature
7601 we'd be missing too much, since we do have attribute constructor. */
7602 if (TREE_CODE (decl
) != VAR_DECL
|| TREE_STATIC (decl
))
7604 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7605 *no_add_attrs
= true;
7609 /* Verify that the argument is a function in scope. */
7610 /* ??? We could support pointers to functions here as well, if
7611 that was considered desirable. */
7612 cleanup_id
= TREE_VALUE (args
);
7613 if (TREE_CODE (cleanup_id
) != IDENTIFIER_NODE
)
7615 error ("cleanup argument not an identifier");
7616 *no_add_attrs
= true;
7619 cleanup_decl
= lookup_name (cleanup_id
);
7620 if (!cleanup_decl
|| TREE_CODE (cleanup_decl
) != FUNCTION_DECL
)
7622 error ("cleanup argument not a function");
7623 *no_add_attrs
= true;
7627 /* That the function has proper type is checked with the
7628 eventual call to build_function_call. */
7633 /* Handle a "warn_unused_result" attribute. No special handling. */
7636 handle_warn_unused_result_attribute (tree
*node
, tree name
,
7637 tree
ARG_UNUSED (args
),
7638 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7640 /* Ignore the attribute for functions not returning any value. */
7641 if (VOID_TYPE_P (TREE_TYPE (*node
)))
7643 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7644 *no_add_attrs
= true;
7650 /* Handle a "sentinel" attribute. */
7653 handle_sentinel_attribute (tree
*node
, tree name
, tree args
,
7654 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7656 tree params
= TYPE_ARG_TYPES (*node
);
7658 if (!prototype_p (*node
))
7660 warning (OPT_Wattributes
,
7661 "%qE attribute requires prototypes with named arguments", name
);
7662 *no_add_attrs
= true;
7666 while (TREE_CHAIN (params
))
7667 params
= TREE_CHAIN (params
);
7669 if (VOID_TYPE_P (TREE_VALUE (params
)))
7671 warning (OPT_Wattributes
,
7672 "%qE attribute only applies to variadic functions", name
);
7673 *no_add_attrs
= true;
7679 tree position
= TREE_VALUE (args
);
7681 if (TREE_CODE (position
) != INTEGER_CST
)
7683 warning (OPT_Wattributes
,
7684 "requested position is not an integer constant");
7685 *no_add_attrs
= true;
7689 if (tree_int_cst_lt (position
, integer_zero_node
))
7691 warning (OPT_Wattributes
,
7692 "requested position is less than zero");
7693 *no_add_attrs
= true;
7701 /* Handle a "type_generic" attribute. */
7704 handle_type_generic_attribute (tree
*node
, tree
ARG_UNUSED (name
),
7705 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
7706 bool * ARG_UNUSED (no_add_attrs
))
7710 /* Ensure we have a function type. */
7711 gcc_assert (TREE_CODE (*node
) == FUNCTION_TYPE
);
7713 params
= TYPE_ARG_TYPES (*node
);
7714 while (params
&& ! VOID_TYPE_P (TREE_VALUE (params
)))
7715 params
= TREE_CHAIN (params
);
7717 /* Ensure we have a variadic function. */
7718 gcc_assert (!params
);
7723 /* Handle a "target" attribute. */
7726 handle_target_attribute (tree
*node
, tree name
, tree args
, int flags
,
7729 /* Ensure we have a function type. */
7730 if (TREE_CODE (*node
) != FUNCTION_DECL
)
7732 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7733 *no_add_attrs
= true;
7735 else if (! targetm
.target_option
.valid_attribute_p (*node
, name
, args
,
7737 *no_add_attrs
= true;
7742 /* Arguments being collected for optimization. */
7743 typedef const char *const_char_p
; /* For DEF_VEC_P. */
7744 DEF_VEC_P(const_char_p
);
7745 DEF_VEC_ALLOC_P(const_char_p
, gc
);
7746 static GTY(()) VEC(const_char_p
, gc
) *optimize_args
;
7749 /* Inner function to convert a TREE_LIST to argv string to parse the optimize
7750 options in ARGS. ATTR_P is true if this is for attribute(optimize), and
7751 false for #pragma GCC optimize. */
7754 parse_optimize_options (tree args
, bool attr_p
)
7759 int saved_flag_strict_aliasing
;
7760 const char **opt_argv
;
7761 struct cl_decoded_option
*decoded_options
;
7762 unsigned int decoded_options_count
;
7765 /* Build up argv vector. Just in case the string is stored away, use garbage
7766 collected strings. */
7767 VEC_truncate (const_char_p
, optimize_args
, 0);
7768 VEC_safe_push (const_char_p
, gc
, optimize_args
, NULL
);
7770 for (ap
= args
; ap
!= NULL_TREE
; ap
= TREE_CHAIN (ap
))
7772 tree value
= TREE_VALUE (ap
);
7774 if (TREE_CODE (value
) == INTEGER_CST
)
7777 sprintf (buffer
, "-O%ld", (long) TREE_INT_CST_LOW (value
));
7778 VEC_safe_push (const_char_p
, gc
, optimize_args
, ggc_strdup (buffer
));
7781 else if (TREE_CODE (value
) == STRING_CST
)
7783 /* Split string into multiple substrings. */
7784 size_t len
= TREE_STRING_LENGTH (value
);
7785 char *p
= ASTRDUP (TREE_STRING_POINTER (value
));
7786 char *end
= p
+ len
;
7790 while (next_p
!= NULL
)
7796 comma
= strchr (p
, ',');
7809 r
= q
= (char *) ggc_alloc_atomic (len2
+ 3);
7811 /* If the user supplied -Oxxx or -fxxx, only allow -Oxxx or -fxxx
7813 if (*p
== '-' && p
[1] != 'O' && p
[1] != 'f')
7817 warning (OPT_Wattributes
,
7818 "bad option %s to optimize attribute", p
);
7820 warning (OPT_Wpragmas
,
7821 "bad option %s to pragma attribute", p
);
7829 /* Assume that Ox is -Ox, a numeric value is -Ox, a s by
7830 itself is -Os, and any other switch begins with a -f. */
7831 if ((*p
>= '0' && *p
<= '9')
7832 || (p
[0] == 's' && p
[1] == '\0'))
7838 memcpy (r
, p
, len2
);
7840 VEC_safe_push (const_char_p
, gc
, optimize_args
, q
);
7846 opt_argc
= VEC_length (const_char_p
, optimize_args
);
7847 opt_argv
= (const char **) alloca (sizeof (char *) * (opt_argc
+ 1));
7849 for (i
= 1; i
< opt_argc
; i
++)
7850 opt_argv
[i
] = VEC_index (const_char_p
, optimize_args
, i
);
7852 saved_flag_strict_aliasing
= flag_strict_aliasing
;
7854 /* Now parse the options. */
7855 decode_cmdline_options_to_array_default_mask (opt_argc
, opt_argv
,
7857 &decoded_options_count
);
7858 decode_options (&global_options
, &global_options_set
,
7859 decoded_options
, decoded_options_count
,
7860 input_location
, global_dc
);
7862 targetm
.override_options_after_change();
7864 /* Don't allow changing -fstrict-aliasing. */
7865 flag_strict_aliasing
= saved_flag_strict_aliasing
;
7867 VEC_truncate (const_char_p
, optimize_args
, 0);
7871 /* For handling "optimize" attribute. arguments as in
7872 struct attribute_spec.handler. */
7875 handle_optimize_attribute (tree
*node
, tree name
, tree args
,
7876 int ARG_UNUSED (flags
), bool *no_add_attrs
)
7878 /* Ensure we have a function type. */
7879 if (TREE_CODE (*node
) != FUNCTION_DECL
)
7881 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
7882 *no_add_attrs
= true;
7886 struct cl_optimization cur_opts
;
7887 tree old_opts
= DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node
);
7889 /* Save current options. */
7890 cl_optimization_save (&cur_opts
, &global_options
);
7892 /* If we previously had some optimization options, use them as the
7895 cl_optimization_restore (&global_options
,
7896 TREE_OPTIMIZATION (old_opts
));
7898 /* Parse options, and update the vector. */
7899 parse_optimize_options (args
, true);
7900 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node
)
7901 = build_optimization_node ();
7903 /* Restore current options. */
7904 cl_optimization_restore (&global_options
, &cur_opts
);
7910 /* Handle a "no_split_stack" attribute. */
7913 handle_no_split_stack_attribute (tree
*node
, tree name
,
7914 tree
ARG_UNUSED (args
),
7915 int ARG_UNUSED (flags
),
7920 if (TREE_CODE (decl
) != FUNCTION_DECL
)
7922 error_at (DECL_SOURCE_LOCATION (decl
),
7923 "%qE attribute applies only to functions", name
);
7924 *no_add_attrs
= true;
7926 else if (DECL_INITIAL (decl
))
7928 error_at (DECL_SOURCE_LOCATION (decl
),
7929 "can%'t set %qE attribute after definition", name
);
7930 *no_add_attrs
= true;
7936 /* Check for valid arguments being passed to a function.
7937 ATTRS is a list of attributes. There are NARGS arguments in the array
7938 ARGARRAY. TYPELIST is the list of argument types for the function.
7941 check_function_arguments (tree attrs
, int nargs
, tree
*argarray
, tree typelist
)
7943 /* Check for null being passed in a pointer argument that must be
7944 non-null. We also need to do this if format checking is enabled. */
7947 check_function_nonnull (attrs
, nargs
, argarray
);
7949 /* Check for errors in format strings. */
7951 if (warn_format
|| warn_missing_format_attribute
)
7952 check_function_format (attrs
, nargs
, argarray
);
7955 check_function_sentinel (attrs
, nargs
, argarray
, typelist
);
7958 /* Generic argument checking recursion routine. PARAM is the argument to
7959 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
7960 once the argument is resolved. CTX is context for the callback. */
7962 check_function_arguments_recurse (void (*callback
)
7963 (void *, tree
, unsigned HOST_WIDE_INT
),
7964 void *ctx
, tree param
,
7965 unsigned HOST_WIDE_INT param_num
)
7967 if (CONVERT_EXPR_P (param
)
7968 && (TYPE_PRECISION (TREE_TYPE (param
))
7969 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param
, 0)))))
7971 /* Strip coercion. */
7972 check_function_arguments_recurse (callback
, ctx
,
7973 TREE_OPERAND (param
, 0), param_num
);
7977 if (TREE_CODE (param
) == CALL_EXPR
)
7979 tree type
= TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param
)));
7981 bool found_format_arg
= false;
7983 /* See if this is a call to a known internationalization function
7984 that modifies a format arg. Such a function may have multiple
7985 format_arg attributes (for example, ngettext). */
7987 for (attrs
= TYPE_ATTRIBUTES (type
);
7989 attrs
= TREE_CHAIN (attrs
))
7990 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs
)))
7993 tree format_num_expr
;
7996 call_expr_arg_iterator iter
;
7998 /* Extract the argument number, which was previously checked
8000 format_num_expr
= TREE_VALUE (TREE_VALUE (attrs
));
8002 gcc_assert (TREE_CODE (format_num_expr
) == INTEGER_CST
8003 && !TREE_INT_CST_HIGH (format_num_expr
));
8005 format_num
= TREE_INT_CST_LOW (format_num_expr
);
8007 for (inner_arg
= first_call_expr_arg (param
, &iter
), i
= 1;
8009 inner_arg
= next_call_expr_arg (&iter
), i
++)
8010 if (i
== format_num
)
8012 check_function_arguments_recurse (callback
, ctx
,
8013 inner_arg
, param_num
);
8014 found_format_arg
= true;
8019 /* If we found a format_arg attribute and did a recursive check,
8020 we are done with checking this argument. Otherwise, we continue
8021 and this will be considered a non-literal. */
8022 if (found_format_arg
)
8026 if (TREE_CODE (param
) == COND_EXPR
)
8028 /* Check both halves of the conditional expression. */
8029 check_function_arguments_recurse (callback
, ctx
,
8030 TREE_OPERAND (param
, 1), param_num
);
8031 check_function_arguments_recurse (callback
, ctx
,
8032 TREE_OPERAND (param
, 2), param_num
);
8036 (*callback
) (ctx
, param
, param_num
);
8039 /* Checks for a builtin function FNDECL that the number of arguments
8040 NARGS against the required number REQUIRED and issues an error if
8041 there is a mismatch. Returns true if the number of arguments is
8042 correct, otherwise false. */
8045 builtin_function_validate_nargs (tree fndecl
, int nargs
, int required
)
8047 if (nargs
< required
)
8049 error_at (input_location
,
8050 "not enough arguments to function %qE", fndecl
);
8053 else if (nargs
> required
)
8055 error_at (input_location
,
8056 "too many arguments to function %qE", fndecl
);
8062 /* Verifies the NARGS arguments ARGS to the builtin function FNDECL.
8063 Returns false if there was an error, otherwise true. */
8066 check_builtin_function_arguments (tree fndecl
, int nargs
, tree
*args
)
8068 if (!DECL_BUILT_IN (fndecl
)
8069 || DECL_BUILT_IN_CLASS (fndecl
) != BUILT_IN_NORMAL
)
8072 switch (DECL_FUNCTION_CODE (fndecl
))
8074 case BUILT_IN_CONSTANT_P
:
8075 return builtin_function_validate_nargs (fndecl
, nargs
, 1);
8077 case BUILT_IN_ISFINITE
:
8078 case BUILT_IN_ISINF
:
8079 case BUILT_IN_ISINF_SIGN
:
8080 case BUILT_IN_ISNAN
:
8081 case BUILT_IN_ISNORMAL
:
8082 if (builtin_function_validate_nargs (fndecl
, nargs
, 1))
8084 if (TREE_CODE (TREE_TYPE (args
[0])) != REAL_TYPE
)
8086 error ("non-floating-point argument in call to "
8087 "function %qE", fndecl
);
8094 case BUILT_IN_ISGREATER
:
8095 case BUILT_IN_ISGREATEREQUAL
:
8096 case BUILT_IN_ISLESS
:
8097 case BUILT_IN_ISLESSEQUAL
:
8098 case BUILT_IN_ISLESSGREATER
:
8099 case BUILT_IN_ISUNORDERED
:
8100 if (builtin_function_validate_nargs (fndecl
, nargs
, 2))
8102 enum tree_code code0
, code1
;
8103 code0
= TREE_CODE (TREE_TYPE (args
[0]));
8104 code1
= TREE_CODE (TREE_TYPE (args
[1]));
8105 if (!((code0
== REAL_TYPE
&& code1
== REAL_TYPE
)
8106 || (code0
== REAL_TYPE
&& code1
== INTEGER_TYPE
)
8107 || (code0
== INTEGER_TYPE
&& code1
== REAL_TYPE
)))
8109 error ("non-floating-point arguments in call to "
8110 "function %qE", fndecl
);
8117 case BUILT_IN_FPCLASSIFY
:
8118 if (builtin_function_validate_nargs (fndecl
, nargs
, 6))
8123 if (TREE_CODE (args
[i
]) != INTEGER_CST
)
8125 error ("non-const integer argument %u in call to function %qE",
8130 if (TREE_CODE (TREE_TYPE (args
[5])) != REAL_TYPE
)
8132 error ("non-floating-point argument in call to function %qE",
8145 /* Function to help qsort sort FIELD_DECLs by name order. */
8148 field_decl_cmp (const void *x_p
, const void *y_p
)
8150 const tree
*const x
= (const tree
*const) x_p
;
8151 const tree
*const y
= (const tree
*const) y_p
;
8153 if (DECL_NAME (*x
) == DECL_NAME (*y
))
8154 /* A nontype is "greater" than a type. */
8155 return (TREE_CODE (*y
) == TYPE_DECL
) - (TREE_CODE (*x
) == TYPE_DECL
);
8156 if (DECL_NAME (*x
) == NULL_TREE
)
8158 if (DECL_NAME (*y
) == NULL_TREE
)
8160 if (DECL_NAME (*x
) < DECL_NAME (*y
))
8166 gt_pointer_operator new_value
;
8170 /* This routine compares two fields like field_decl_cmp but using the
8171 pointer operator in resort_data. */
8174 resort_field_decl_cmp (const void *x_p
, const void *y_p
)
8176 const tree
*const x
= (const tree
*const) x_p
;
8177 const tree
*const y
= (const tree
*const) y_p
;
8179 if (DECL_NAME (*x
) == DECL_NAME (*y
))
8180 /* A nontype is "greater" than a type. */
8181 return (TREE_CODE (*y
) == TYPE_DECL
) - (TREE_CODE (*x
) == TYPE_DECL
);
8182 if (DECL_NAME (*x
) == NULL_TREE
)
8184 if (DECL_NAME (*y
) == NULL_TREE
)
8187 tree d1
= DECL_NAME (*x
);
8188 tree d2
= DECL_NAME (*y
);
8189 resort_data
.new_value (&d1
, resort_data
.cookie
);
8190 resort_data
.new_value (&d2
, resort_data
.cookie
);
8197 /* Resort DECL_SORTED_FIELDS because pointers have been reordered. */
8200 resort_sorted_fields (void *obj
,
8201 void * ARG_UNUSED (orig_obj
),
8202 gt_pointer_operator new_value
,
8205 struct sorted_fields_type
*sf
= (struct sorted_fields_type
*) obj
;
8206 resort_data
.new_value
= new_value
;
8207 resort_data
.cookie
= cookie
;
8208 qsort (&sf
->elts
[0], sf
->len
, sizeof (tree
),
8209 resort_field_decl_cmp
);
8212 /* Subroutine of c_parse_error.
8213 Return the result of concatenating LHS and RHS. RHS is really
8214 a string literal, its first character is indicated by RHS_START and
8215 RHS_SIZE is its length (including the terminating NUL character).
8217 The caller is responsible for deleting the returned pointer. */
8220 catenate_strings (const char *lhs
, const char *rhs_start
, int rhs_size
)
8222 const int lhs_size
= strlen (lhs
);
8223 char *result
= XNEWVEC (char, lhs_size
+ rhs_size
);
8224 strncpy (result
, lhs
, lhs_size
);
8225 strncpy (result
+ lhs_size
, rhs_start
, rhs_size
);
8229 /* Issue the error given by GMSGID, indicating that it occurred before
8230 TOKEN, which had the associated VALUE. */
8233 c_parse_error (const char *gmsgid
, enum cpp_ttype token_type
,
8234 tree value
, unsigned char token_flags
)
8236 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
8238 char *message
= NULL
;
8240 if (token_type
== CPP_EOF
)
8241 message
= catenate_messages (gmsgid
, " at end of input");
8242 else if (token_type
== CPP_CHAR
8243 || token_type
== CPP_WCHAR
8244 || token_type
== CPP_CHAR16
8245 || token_type
== CPP_CHAR32
)
8247 unsigned int val
= TREE_INT_CST_LOW (value
);
8266 if (val
<= UCHAR_MAX
&& ISGRAPH (val
))
8267 message
= catenate_messages (gmsgid
, " before %s'%c'");
8269 message
= catenate_messages (gmsgid
, " before %s'\\x%x'");
8271 error (message
, prefix
, val
);
8275 else if (token_type
== CPP_STRING
8276 || token_type
== CPP_WSTRING
8277 || token_type
== CPP_STRING16
8278 || token_type
== CPP_STRING32
8279 || token_type
== CPP_UTF8STRING
)
8280 message
= catenate_messages (gmsgid
, " before string constant");
8281 else if (token_type
== CPP_NUMBER
)
8282 message
= catenate_messages (gmsgid
, " before numeric constant");
8283 else if (token_type
== CPP_NAME
)
8285 message
= catenate_messages (gmsgid
, " before %qE");
8286 error (message
, value
);
8290 else if (token_type
== CPP_PRAGMA
)
8291 message
= catenate_messages (gmsgid
, " before %<#pragma%>");
8292 else if (token_type
== CPP_PRAGMA_EOL
)
8293 message
= catenate_messages (gmsgid
, " before end of line");
8294 else if (token_type
< N_TTYPES
)
8296 message
= catenate_messages (gmsgid
, " before %qs token");
8297 error (message
, cpp_type2name (token_type
, token_flags
));
8309 #undef catenate_messages
8312 /* Mapping for cpp message reasons to the options that enable them. */
8314 struct reason_option_codes_t
8316 const int reason
; /* cpplib message reason. */
8317 const int option_code
; /* gcc option that controls this message. */
8320 static const struct reason_option_codes_t option_codes
[] = {
8321 {CPP_W_DEPRECATED
, OPT_Wdeprecated
},
8322 {CPP_W_COMMENTS
, OPT_Wcomment
},
8323 {CPP_W_TRIGRAPHS
, OPT_Wtrigraphs
},
8324 {CPP_W_MULTICHAR
, OPT_Wmultichar
},
8325 {CPP_W_TRADITIONAL
, OPT_Wtraditional
},
8326 {CPP_W_LONG_LONG
, OPT_Wlong_long
},
8327 {CPP_W_ENDIF_LABELS
, OPT_Wendif_labels
},
8328 {CPP_W_VARIADIC_MACROS
, OPT_Wvariadic_macros
},
8329 {CPP_W_BUILTIN_MACRO_REDEFINED
, OPT_Wbuiltin_macro_redefined
},
8330 {CPP_W_UNDEF
, OPT_Wundef
},
8331 {CPP_W_UNUSED_MACROS
, OPT_Wunused_macros
},
8332 {CPP_W_CXX_OPERATOR_NAMES
, OPT_Wc___compat
},
8333 {CPP_W_NORMALIZE
, OPT_Wnormalized_
},
8334 {CPP_W_INVALID_PCH
, OPT_Winvalid_pch
},
8335 {CPP_W_WARNING_DIRECTIVE
, OPT_Wcpp
},
8339 /* Return the gcc option code associated with the reason for a cpp
8340 message, or 0 if none. */
8343 c_option_controlling_cpp_error (int reason
)
8345 const struct reason_option_codes_t
*entry
;
8347 for (entry
= option_codes
; entry
->reason
!= CPP_W_NONE
; entry
++)
8349 if (entry
->reason
== reason
)
8350 return entry
->option_code
;
8355 /* Callback from cpp_error for PFILE to print diagnostics from the
8356 preprocessor. The diagnostic is of type LEVEL, with REASON set
8357 to the reason code if LEVEL is represents a warning, at location
8358 LOCATION unless this is after lexing and the compiler's location
8359 should be used instead, with column number possibly overridden by
8360 COLUMN_OVERRIDE if not zero; MSG is the translated message and AP
8361 the arguments. Returns true if a diagnostic was emitted, false
8365 c_cpp_error (cpp_reader
*pfile ATTRIBUTE_UNUSED
, int level
, int reason
,
8366 location_t location
, unsigned int column_override
,
8367 const char *msg
, va_list *ap
)
8369 diagnostic_info diagnostic
;
8370 diagnostic_t dlevel
;
8371 bool save_warn_system_headers
= global_dc
->dc_warn_system_headers
;
8376 case CPP_DL_WARNING_SYSHDR
:
8379 global_dc
->dc_warn_system_headers
= 1;
8381 case CPP_DL_WARNING
:
8384 dlevel
= DK_WARNING
;
8386 case CPP_DL_PEDWARN
:
8387 if (flag_no_output
&& !flag_pedantic_errors
)
8389 dlevel
= DK_PEDWARN
;
8407 location
= input_location
;
8408 diagnostic_set_info_translated (&diagnostic
, msg
, ap
,
8410 if (column_override
)
8411 diagnostic_override_column (&diagnostic
, column_override
);
8412 diagnostic_override_option_index (&diagnostic
,
8413 c_option_controlling_cpp_error (reason
));
8414 ret
= report_diagnostic (&diagnostic
);
8415 if (level
== CPP_DL_WARNING_SYSHDR
)
8416 global_dc
->dc_warn_system_headers
= save_warn_system_headers
;
8420 /* Convert a character from the host to the target execution character
8421 set. cpplib handles this, mostly. */
8424 c_common_to_target_charset (HOST_WIDE_INT c
)
8426 /* Character constants in GCC proper are sign-extended under -fsigned-char,
8427 zero-extended under -fno-signed-char. cpplib insists that characters
8428 and character constants are always unsigned. Hence we must convert
8430 cppchar_t uc
= ((cppchar_t
)c
) & ((((cppchar_t
)1) << CHAR_BIT
)-1);
8432 uc
= cpp_host_to_exec_charset (parse_in
, uc
);
8434 if (flag_signed_char
)
8435 return ((HOST_WIDE_INT
)uc
) << (HOST_BITS_PER_WIDE_INT
- CHAR_TYPE_SIZE
)
8436 >> (HOST_BITS_PER_WIDE_INT
- CHAR_TYPE_SIZE
);
8441 /* Build the result of __builtin_offsetof. EXPR is a nested sequence of
8442 component references, with STOP_REF, or alternatively an INDIRECT_REF of
8443 NULL, at the bottom; much like the traditional rendering of offsetof as a
8444 macro. Returns the folded and properly cast result. */
8447 fold_offsetof_1 (tree expr
, tree stop_ref
)
8449 enum tree_code code
= PLUS_EXPR
;
8452 if (expr
== stop_ref
&& TREE_CODE (expr
) != ERROR_MARK
)
8453 return size_zero_node
;
8455 switch (TREE_CODE (expr
))
8461 error ("cannot apply %<offsetof%> to static data member %qD", expr
);
8462 return error_mark_node
;
8466 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
8467 return error_mark_node
;
8471 if (!integer_zerop (TREE_OPERAND (expr
, 0)))
8473 error ("cannot apply %<offsetof%> to a non constant address");
8474 return error_mark_node
;
8476 return size_zero_node
;
8479 base
= fold_offsetof_1 (TREE_OPERAND (expr
, 0), stop_ref
);
8480 if (base
== error_mark_node
)
8483 t
= TREE_OPERAND (expr
, 1);
8484 if (DECL_C_BIT_FIELD (t
))
8486 error ("attempt to take address of bit-field structure "
8488 return error_mark_node
;
8490 off
= size_binop_loc (input_location
, PLUS_EXPR
, DECL_FIELD_OFFSET (t
),
8491 size_int (tree_low_cst (DECL_FIELD_BIT_OFFSET (t
),
8497 base
= fold_offsetof_1 (TREE_OPERAND (expr
, 0), stop_ref
);
8498 if (base
== error_mark_node
)
8501 t
= TREE_OPERAND (expr
, 1);
8502 if (TREE_CODE (t
) == INTEGER_CST
&& tree_int_cst_sgn (t
) < 0)
8505 t
= fold_build1_loc (input_location
, NEGATE_EXPR
, TREE_TYPE (t
), t
);
8507 t
= convert (sizetype
, t
);
8508 off
= size_binop (MULT_EXPR
, TYPE_SIZE_UNIT (TREE_TYPE (expr
)), t
);
8510 /* Check if the offset goes beyond the upper bound of the array. */
8511 if (code
== PLUS_EXPR
&& TREE_CODE (t
) == INTEGER_CST
)
8513 tree upbound
= array_ref_up_bound (expr
);
8514 if (upbound
!= NULL_TREE
8515 && TREE_CODE (upbound
) == INTEGER_CST
8516 && !tree_int_cst_equal (upbound
,
8517 TYPE_MAX_VALUE (TREE_TYPE (upbound
))))
8519 upbound
= size_binop (PLUS_EXPR
, upbound
,
8520 build_int_cst (TREE_TYPE (upbound
), 1));
8521 if (tree_int_cst_lt (upbound
, t
))
8525 for (v
= TREE_OPERAND (expr
, 0);
8526 TREE_CODE (v
) == COMPONENT_REF
;
8527 v
= TREE_OPERAND (v
, 0))
8528 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v
, 0)))
8531 tree fld_chain
= DECL_CHAIN (TREE_OPERAND (v
, 1));
8532 for (; fld_chain
; fld_chain
= DECL_CHAIN (fld_chain
))
8533 if (TREE_CODE (fld_chain
) == FIELD_DECL
)
8539 /* Don't warn if the array might be considered a poor
8540 man's flexible array member with a very permissive
8541 definition thereof. */
8542 if (TREE_CODE (v
) == ARRAY_REF
8543 || TREE_CODE (v
) == COMPONENT_REF
)
8544 warning (OPT_Warray_bounds
,
8545 "index %E denotes an offset "
8546 "greater than size of %qT",
8547 t
, TREE_TYPE (TREE_OPERAND (expr
, 0)));
8554 /* Handle static members of volatile structs. */
8555 t
= TREE_OPERAND (expr
, 1);
8556 gcc_assert (TREE_CODE (t
) == VAR_DECL
);
8557 return fold_offsetof_1 (t
, stop_ref
);
8563 return size_binop (code
, base
, off
);
8567 fold_offsetof (tree expr
, tree stop_ref
)
8569 /* Convert back from the internal sizetype to size_t. */
8570 return convert (size_type_node
, fold_offsetof_1 (expr
, stop_ref
));
8573 /* Warn for A ?: C expressions (with B omitted) where A is a boolean
8574 expression, because B will always be true. */
8577 warn_for_omitted_condop (location_t location
, tree cond
)
8579 if (truth_value_p (TREE_CODE (cond
)))
8580 warning_at (location
, OPT_Wparentheses
,
8581 "the omitted middle operand in ?: will always be %<true%>, "
8582 "suggest explicit middle operand");
8585 /* Give an error for storing into ARG, which is 'const'. USE indicates
8586 how ARG was being used. */
8589 readonly_error (tree arg
, enum lvalue_use use
)
8591 gcc_assert (use
== lv_assign
|| use
== lv_increment
|| use
== lv_decrement
8593 /* Using this macro rather than (for example) arrays of messages
8594 ensures that all the format strings are checked at compile
8596 #define READONLY_MSG(A, I, D, AS) (use == lv_assign ? (A) \
8597 : (use == lv_increment ? (I) \
8598 : (use == lv_decrement ? (D) : (AS))))
8599 if (TREE_CODE (arg
) == COMPONENT_REF
)
8601 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg
, 0))))
8602 error (READONLY_MSG (G_("assignment of member "
8603 "%qD in read-only object"),
8604 G_("increment of member "
8605 "%qD in read-only object"),
8606 G_("decrement of member "
8607 "%qD in read-only object"),
8608 G_("member %qD in read-only object "
8609 "used as %<asm%> output")),
8610 TREE_OPERAND (arg
, 1));
8612 error (READONLY_MSG (G_("assignment of read-only member %qD"),
8613 G_("increment of read-only member %qD"),
8614 G_("decrement of read-only member %qD"),
8615 G_("read-only member %qD used as %<asm%> output")),
8616 TREE_OPERAND (arg
, 1));
8618 else if (TREE_CODE (arg
) == VAR_DECL
)
8619 error (READONLY_MSG (G_("assignment of read-only variable %qD"),
8620 G_("increment of read-only variable %qD"),
8621 G_("decrement of read-only variable %qD"),
8622 G_("read-only variable %qD used as %<asm%> output")),
8624 else if (TREE_CODE (arg
) == PARM_DECL
)
8625 error (READONLY_MSG (G_("assignment of read-only parameter %qD"),
8626 G_("increment of read-only parameter %qD"),
8627 G_("decrement of read-only parameter %qD"),
8628 G_("read-only parameter %qD use as %<asm%> output")),
8630 else if (TREE_CODE (arg
) == RESULT_DECL
)
8632 gcc_assert (c_dialect_cxx ());
8633 error (READONLY_MSG (G_("assignment of "
8634 "read-only named return value %qD"),
8636 "read-only named return value %qD"),
8638 "read-only named return value %qD"),
8639 G_("read-only named return value %qD "
8640 "used as %<asm%>output")),
8643 else if (TREE_CODE (arg
) == FUNCTION_DECL
)
8644 error (READONLY_MSG (G_("assignment of function %qD"),
8645 G_("increment of function %qD"),
8646 G_("decrement of function %qD"),
8647 G_("function %qD used as %<asm%> output")),
8650 error (READONLY_MSG (G_("assignment of read-only location %qE"),
8651 G_("increment of read-only location %qE"),
8652 G_("decrement of read-only location %qE"),
8653 G_("read-only location %qE used as %<asm%> output")),
8657 /* Print an error message for an invalid lvalue. USE says
8658 how the lvalue is being used and so selects the error message. LOC
8659 is the location for the error. */
8662 lvalue_error (location_t loc
, enum lvalue_use use
)
8667 error_at (loc
, "lvalue required as left operand of assignment");
8670 error_at (loc
, "lvalue required as increment operand");
8673 error_at (loc
, "lvalue required as decrement operand");
8676 error_at (loc
, "lvalue required as unary %<&%> operand");
8679 error_at (loc
, "lvalue required in asm statement");
8686 /* Print an error message for an invalid indirection of type TYPE.
8687 ERRSTRING is the name of the operator for the indirection. */
8690 invalid_indirection_error (location_t loc
, tree type
, ref_operator errstring
)
8695 gcc_assert (c_dialect_cxx ());
8696 error_at (loc
, "invalid type argument (have %qT)", type
);
8698 case RO_ARRAY_INDEXING
:
8700 "invalid type argument of array indexing (have %qT)",
8705 "invalid type argument of unary %<*%> (have %qT)",
8710 "invalid type argument of %<->%> (have %qT)",
8713 case RO_IMPLICIT_CONVERSION
:
8715 "invalid type argument of implicit conversion (have %qT)",
8723 /* *PTYPE is an incomplete array. Complete it with a domain based on
8724 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
8725 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
8726 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
8729 complete_array_type (tree
*ptype
, tree initial_value
, bool do_default
)
8731 tree maxindex
, type
, main_type
, elt
, unqual_elt
;
8732 int failure
= 0, quals
;
8733 hashval_t hashcode
= 0;
8735 maxindex
= size_zero_node
;
8738 if (TREE_CODE (initial_value
) == STRING_CST
)
8741 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value
)));
8742 maxindex
= size_int (TREE_STRING_LENGTH (initial_value
)/eltsize
- 1);
8744 else if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
8746 VEC(constructor_elt
,gc
) *v
= CONSTRUCTOR_ELTS (initial_value
);
8748 if (VEC_empty (constructor_elt
, v
))
8752 maxindex
= integer_minus_one_node
;
8757 unsigned HOST_WIDE_INT cnt
;
8758 constructor_elt
*ce
;
8759 bool fold_p
= false;
8761 if (VEC_index (constructor_elt
, v
, 0)->index
)
8762 maxindex
= fold_convert_loc (input_location
, sizetype
,
8763 VEC_index (constructor_elt
,
8765 curindex
= maxindex
;
8768 VEC_iterate (constructor_elt
, v
, cnt
, ce
);
8771 bool curfold_p
= false;
8773 curindex
= ce
->index
, curfold_p
= true;
8777 curindex
= fold_convert (sizetype
, curindex
);
8778 curindex
= size_binop (PLUS_EXPR
, curindex
,
8781 if (tree_int_cst_lt (maxindex
, curindex
))
8782 maxindex
= curindex
, fold_p
= curfold_p
;
8785 maxindex
= fold_convert (sizetype
, maxindex
);
8790 /* Make an error message unless that happened already. */
8791 if (initial_value
!= error_mark_node
)
8803 elt
= TREE_TYPE (type
);
8804 quals
= TYPE_QUALS (strip_array_types (elt
));
8808 unqual_elt
= c_build_qualified_type (elt
, KEEP_QUAL_ADDR_SPACE (quals
));
8810 /* Using build_distinct_type_copy and modifying things afterward instead
8811 of using build_array_type to create a new type preserves all of the
8812 TYPE_LANG_FLAG_? bits that the front end may have set. */
8813 main_type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
8814 TREE_TYPE (main_type
) = unqual_elt
;
8815 TYPE_DOMAIN (main_type
) = build_index_type (maxindex
);
8816 layout_type (main_type
);
8818 /* Make sure we have the canonical MAIN_TYPE. */
8819 hashcode
= iterative_hash_object (TYPE_HASH (unqual_elt
), hashcode
);
8820 hashcode
= iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (main_type
)),
8822 main_type
= type_hash_canon (hashcode
, main_type
);
8824 /* Fix the canonical type. */
8825 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type
))
8826 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type
)))
8827 SET_TYPE_STRUCTURAL_EQUALITY (main_type
);
8828 else if (TYPE_CANONICAL (TREE_TYPE (main_type
)) != TREE_TYPE (main_type
)
8829 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type
))
8830 != TYPE_DOMAIN (main_type
)))
8831 TYPE_CANONICAL (main_type
)
8832 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type
)),
8833 TYPE_CANONICAL (TYPE_DOMAIN (main_type
)));
8835 TYPE_CANONICAL (main_type
) = main_type
;
8840 type
= c_build_qualified_type (main_type
, quals
);
8842 if (COMPLETE_TYPE_P (type
)
8843 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
8844 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type
)))
8846 error ("size of array is too large");
8847 /* If we proceed with the array type as it is, we'll eventually
8848 crash in tree_low_cst(). */
8849 type
= error_mark_node
;
8856 /* Like c_mark_addressable but don't check register qualifier. */
8858 c_common_mark_addressable_vec (tree t
)
8860 while (handled_component_p (t
))
8861 t
= TREE_OPERAND (t
, 0);
8862 if (TREE_CODE (t
) != VAR_DECL
&& TREE_CODE (t
) != PARM_DECL
)
8864 TREE_ADDRESSABLE (t
) = 1;
8869 /* Used to help initialize the builtin-types.def table. When a type of
8870 the correct size doesn't exist, use error_mark_node instead of NULL.
8871 The later results in segfaults even when a decl using the type doesn't
8875 builtin_type_for_size (int size
, bool unsignedp
)
8877 tree type
= lang_hooks
.types
.type_for_size (size
, unsignedp
);
8878 return type
? type
: error_mark_node
;
8881 /* A helper function for resolve_overloaded_builtin in resolving the
8882 overloaded __sync_ builtins. Returns a positive power of 2 if the
8883 first operand of PARAMS is a pointer to a supported data type.
8884 Returns 0 if an error is encountered. */
8887 sync_resolve_size (tree function
, VEC(tree
,gc
) *params
)
8892 if (VEC_empty (tree
, params
))
8894 error ("too few arguments to function %qE", function
);
8898 type
= TREE_TYPE (VEC_index (tree
, params
, 0));
8899 if (TREE_CODE (type
) != POINTER_TYPE
)
8902 type
= TREE_TYPE (type
);
8903 if (!INTEGRAL_TYPE_P (type
) && !POINTER_TYPE_P (type
))
8906 size
= tree_low_cst (TYPE_SIZE_UNIT (type
), 1);
8907 if (size
== 1 || size
== 2 || size
== 4 || size
== 8 || size
== 16)
8911 error ("incompatible type for argument %d of %qE", 1, function
);
8915 /* A helper function for resolve_overloaded_builtin. Adds casts to
8916 PARAMS to make arguments match up with those of FUNCTION. Drops
8917 the variadic arguments at the end. Returns false if some error
8918 was encountered; true on success. */
8921 sync_resolve_params (tree orig_function
, tree function
, VEC(tree
, gc
) *params
)
8923 tree arg_types
= TYPE_ARG_TYPES (TREE_TYPE (function
));
8925 unsigned int parmnum
;
8927 /* We've declared the implementation functions to use "volatile void *"
8928 as the pointer parameter, so we shouldn't get any complaints from the
8929 call to check_function_arguments what ever type the user used. */
8930 arg_types
= TREE_CHAIN (arg_types
);
8931 ptype
= TREE_TYPE (TREE_TYPE (VEC_index (tree
, params
, 0)));
8933 /* For the rest of the values, we need to cast these to FTYPE, so that we
8934 don't get warnings for passing pointer types, etc. */
8936 while (arg_types
!= void_list_node
)
8941 if (VEC_length (tree
, params
) <= parmnum
)
8943 error ("too few arguments to function %qE", orig_function
);
8947 /* ??? Ideally for the first conversion we'd use convert_for_assignment
8948 so that we get warnings for anything that doesn't match the pointer
8949 type. This isn't portable across the C and C++ front ends atm. */
8950 val
= VEC_index (tree
, params
, parmnum
);
8951 val
= convert (ptype
, val
);
8952 val
= convert (TREE_VALUE (arg_types
), val
);
8953 VEC_replace (tree
, params
, parmnum
, val
);
8955 arg_types
= TREE_CHAIN (arg_types
);
8958 /* The definition of these primitives is variadic, with the remaining
8959 being "an optional list of variables protected by the memory barrier".
8960 No clue what that's supposed to mean, precisely, but we consider all
8961 call-clobbered variables to be protected so we're safe. */
8962 VEC_truncate (tree
, params
, parmnum
+ 1);
8967 /* A helper function for resolve_overloaded_builtin. Adds a cast to
8968 RESULT to make it match the type of the first pointer argument in
8972 sync_resolve_return (tree first_param
, tree result
)
8974 tree ptype
= TREE_TYPE (TREE_TYPE (first_param
));
8975 ptype
= TYPE_MAIN_VARIANT (ptype
);
8976 return convert (ptype
, result
);
8979 /* Some builtin functions are placeholders for other expressions. This
8980 function should be called immediately after parsing the call expression
8981 before surrounding code has committed to the type of the expression.
8983 LOC is the location of the builtin call.
8985 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
8986 PARAMS is the argument list for the call. The return value is non-null
8987 when expansion is complete, and null if normal processing should
8991 resolve_overloaded_builtin (location_t loc
, tree function
, VEC(tree
,gc
) *params
)
8993 enum built_in_function orig_code
= DECL_FUNCTION_CODE (function
);
8994 switch (DECL_BUILT_IN_CLASS (function
))
8996 case BUILT_IN_NORMAL
:
8999 if (targetm
.resolve_overloaded_builtin
)
9000 return targetm
.resolve_overloaded_builtin (loc
, function
, params
);
9007 /* Handle BUILT_IN_NORMAL here. */
9010 case BUILT_IN_FETCH_AND_ADD_N
:
9011 case BUILT_IN_FETCH_AND_SUB_N
:
9012 case BUILT_IN_FETCH_AND_OR_N
:
9013 case BUILT_IN_FETCH_AND_AND_N
:
9014 case BUILT_IN_FETCH_AND_XOR_N
:
9015 case BUILT_IN_FETCH_AND_NAND_N
:
9016 case BUILT_IN_ADD_AND_FETCH_N
:
9017 case BUILT_IN_SUB_AND_FETCH_N
:
9018 case BUILT_IN_OR_AND_FETCH_N
:
9019 case BUILT_IN_AND_AND_FETCH_N
:
9020 case BUILT_IN_XOR_AND_FETCH_N
:
9021 case BUILT_IN_NAND_AND_FETCH_N
:
9022 case BUILT_IN_BOOL_COMPARE_AND_SWAP_N
:
9023 case BUILT_IN_VAL_COMPARE_AND_SWAP_N
:
9024 case BUILT_IN_LOCK_TEST_AND_SET_N
:
9025 case BUILT_IN_LOCK_RELEASE_N
:
9027 int n
= sync_resolve_size (function
, params
);
9028 tree new_function
, first_param
, result
;
9031 return error_mark_node
;
9033 new_function
= built_in_decls
[orig_code
+ exact_log2 (n
) + 1];
9034 if (!sync_resolve_params (function
, new_function
, params
))
9035 return error_mark_node
;
9037 first_param
= VEC_index (tree
, params
, 0);
9038 result
= build_function_call_vec (loc
, new_function
, params
, NULL
);
9039 if (orig_code
!= BUILT_IN_BOOL_COMPARE_AND_SWAP_N
9040 && orig_code
!= BUILT_IN_LOCK_RELEASE_N
)
9041 result
= sync_resolve_return (first_param
, result
);
9051 /* Ignoring their sign, return true if two scalar types are the same. */
9053 same_scalar_type_ignoring_signedness (tree t1
, tree t2
)
9055 enum tree_code c1
= TREE_CODE (t1
), c2
= TREE_CODE (t2
);
9057 gcc_assert ((c1
== INTEGER_TYPE
|| c1
== REAL_TYPE
|| c1
== FIXED_POINT_TYPE
)
9058 && (c2
== INTEGER_TYPE
|| c2
== REAL_TYPE
9059 || c2
== FIXED_POINT_TYPE
));
9061 /* Equality works here because c_common_signed_type uses
9062 TYPE_MAIN_VARIANT. */
9063 return c_common_signed_type (t1
)
9064 == c_common_signed_type (t2
);
9067 /* Check for missing format attributes on function pointers. LTYPE is
9068 the new type or left-hand side type. RTYPE is the old type or
9069 right-hand side type. Returns TRUE if LTYPE is missing the desired
9073 check_missing_format_attribute (tree ltype
, tree rtype
)
9075 tree
const ttr
= TREE_TYPE (rtype
), ttl
= TREE_TYPE (ltype
);
9078 for (ra
= TYPE_ATTRIBUTES (ttr
); ra
; ra
= TREE_CHAIN (ra
))
9079 if (is_attribute_p ("format", TREE_PURPOSE (ra
)))
9084 for (la
= TYPE_ATTRIBUTES (ttl
); la
; la
= TREE_CHAIN (la
))
9085 if (is_attribute_p ("format", TREE_PURPOSE (la
)))
9093 /* Subscripting with type char is likely to lose on a machine where
9094 chars are signed. So warn on any machine, but optionally. Don't
9095 warn for unsigned char since that type is safe. Don't warn for
9096 signed char because anyone who uses that must have done so
9097 deliberately. Furthermore, we reduce the false positive load by
9098 warning only for non-constant value of type char. */
9101 warn_array_subscript_with_type_char (tree index
)
9103 if (TYPE_MAIN_VARIANT (TREE_TYPE (index
)) == char_type_node
9104 && TREE_CODE (index
) != INTEGER_CST
)
9105 warning (OPT_Wchar_subscripts
, "array subscript has type %<char%>");
9108 /* Implement -Wparentheses for the unexpected C precedence rules, to
9109 cover cases like x + y << z which readers are likely to
9110 misinterpret. We have seen an expression in which CODE is a binary
9111 operator used to combine expressions ARG_LEFT and ARG_RIGHT, which
9112 before folding had CODE_LEFT and CODE_RIGHT. CODE_LEFT and
9113 CODE_RIGHT may be ERROR_MARK, which means that that side of the
9114 expression was not formed using a binary or unary operator, or it
9115 was enclosed in parentheses. */
9118 warn_about_parentheses (enum tree_code code
,
9119 enum tree_code code_left
, tree arg_left
,
9120 enum tree_code code_right
, tree arg_right
)
9122 if (!warn_parentheses
)
9125 /* This macro tests that the expression ARG with original tree code
9126 CODE appears to be a boolean expression. or the result of folding a
9127 boolean expression. */
9128 #define APPEARS_TO_BE_BOOLEAN_EXPR_P(CODE, ARG) \
9129 (truth_value_p (TREE_CODE (ARG)) \
9130 || TREE_CODE (TREE_TYPE (ARG)) == BOOLEAN_TYPE \
9131 /* Folding may create 0 or 1 integers from other expressions. */ \
9132 || ((CODE) != INTEGER_CST \
9133 && (integer_onep (ARG) || integer_zerop (ARG))))
9138 if (code_left
== PLUS_EXPR
|| code_right
== PLUS_EXPR
)
9139 warning (OPT_Wparentheses
,
9140 "suggest parentheses around %<+%> inside %<<<%>");
9141 else if (code_left
== MINUS_EXPR
|| code_right
== MINUS_EXPR
)
9142 warning (OPT_Wparentheses
,
9143 "suggest parentheses around %<-%> inside %<<<%>");
9147 if (code_left
== PLUS_EXPR
|| code_right
== PLUS_EXPR
)
9148 warning (OPT_Wparentheses
,
9149 "suggest parentheses around %<+%> inside %<>>%>");
9150 else if (code_left
== MINUS_EXPR
|| code_right
== MINUS_EXPR
)
9151 warning (OPT_Wparentheses
,
9152 "suggest parentheses around %<-%> inside %<>>%>");
9155 case TRUTH_ORIF_EXPR
:
9156 if (code_left
== TRUTH_ANDIF_EXPR
|| code_right
== TRUTH_ANDIF_EXPR
)
9157 warning (OPT_Wparentheses
,
9158 "suggest parentheses around %<&&%> within %<||%>");
9162 if (code_left
== BIT_AND_EXPR
|| code_left
== BIT_XOR_EXPR
9163 || code_left
== PLUS_EXPR
|| code_left
== MINUS_EXPR
9164 || code_right
== BIT_AND_EXPR
|| code_right
== BIT_XOR_EXPR
9165 || code_right
== PLUS_EXPR
|| code_right
== MINUS_EXPR
)
9166 warning (OPT_Wparentheses
,
9167 "suggest parentheses around arithmetic in operand of %<|%>");
9168 /* Check cases like x|y==z */
9169 else if (TREE_CODE_CLASS (code_left
) == tcc_comparison
9170 || TREE_CODE_CLASS (code_right
) == tcc_comparison
)
9171 warning (OPT_Wparentheses
,
9172 "suggest parentheses around comparison in operand of %<|%>");
9173 /* Check cases like !x | y */
9174 else if (code_left
== TRUTH_NOT_EXPR
9175 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right
, arg_right
))
9176 warning (OPT_Wparentheses
, "suggest parentheses around operand of "
9177 "%<!%> or change %<|%> to %<||%> or %<!%> to %<~%>");
9181 if (code_left
== BIT_AND_EXPR
9182 || code_left
== PLUS_EXPR
|| code_left
== MINUS_EXPR
9183 || code_right
== BIT_AND_EXPR
9184 || code_right
== PLUS_EXPR
|| code_right
== MINUS_EXPR
)
9185 warning (OPT_Wparentheses
,
9186 "suggest parentheses around arithmetic in operand of %<^%>");
9187 /* Check cases like x^y==z */
9188 else if (TREE_CODE_CLASS (code_left
) == tcc_comparison
9189 || TREE_CODE_CLASS (code_right
) == tcc_comparison
)
9190 warning (OPT_Wparentheses
,
9191 "suggest parentheses around comparison in operand of %<^%>");
9195 if (code_left
== PLUS_EXPR
|| code_right
== PLUS_EXPR
)
9196 warning (OPT_Wparentheses
,
9197 "suggest parentheses around %<+%> in operand of %<&%>");
9198 else if (code_left
== MINUS_EXPR
|| code_right
== MINUS_EXPR
)
9199 warning (OPT_Wparentheses
,
9200 "suggest parentheses around %<-%> in operand of %<&%>");
9201 /* Check cases like x&y==z */
9202 else if (TREE_CODE_CLASS (code_left
) == tcc_comparison
9203 || TREE_CODE_CLASS (code_right
) == tcc_comparison
)
9204 warning (OPT_Wparentheses
,
9205 "suggest parentheses around comparison in operand of %<&%>");
9206 /* Check cases like !x & y */
9207 else if (code_left
== TRUTH_NOT_EXPR
9208 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right
, arg_right
))
9209 warning (OPT_Wparentheses
, "suggest parentheses around operand of "
9210 "%<!%> or change %<&%> to %<&&%> or %<!%> to %<~%>");
9214 if (TREE_CODE_CLASS (code_left
) == tcc_comparison
9215 || TREE_CODE_CLASS (code_right
) == tcc_comparison
)
9216 warning (OPT_Wparentheses
,
9217 "suggest parentheses around comparison in operand of %<==%>");
9220 if (TREE_CODE_CLASS (code_left
) == tcc_comparison
9221 || TREE_CODE_CLASS (code_right
) == tcc_comparison
)
9222 warning (OPT_Wparentheses
,
9223 "suggest parentheses around comparison in operand of %<!=%>");
9227 if (TREE_CODE_CLASS (code
) == tcc_comparison
9228 && ((TREE_CODE_CLASS (code_left
) == tcc_comparison
9229 && code_left
!= NE_EXPR
&& code_left
!= EQ_EXPR
9230 && INTEGRAL_TYPE_P (TREE_TYPE (arg_left
)))
9231 || (TREE_CODE_CLASS (code_right
) == tcc_comparison
9232 && code_right
!= NE_EXPR
&& code_right
!= EQ_EXPR
9233 && INTEGRAL_TYPE_P (TREE_TYPE (arg_right
)))))
9234 warning (OPT_Wparentheses
, "comparisons like %<X<=Y<=Z%> do not "
9235 "have their mathematical meaning");
9238 #undef NOT_A_BOOLEAN_EXPR_P
9241 /* If LABEL (a LABEL_DECL) has not been used, issue a warning. */
9244 warn_for_unused_label (tree label
)
9246 if (!TREE_USED (label
))
9248 if (DECL_INITIAL (label
))
9249 warning (OPT_Wunused_label
, "label %q+D defined but not used", label
);
9251 warning (OPT_Wunused_label
, "label %q+D declared but not defined", label
);
9255 #ifndef TARGET_HAS_TARGETCM
9256 struct gcc_targetcm targetcm
= TARGETCM_INITIALIZER
;
9259 /* Warn for division by zero according to the value of DIVISOR. LOC
9260 is the location of the division operator. */
9263 warn_for_div_by_zero (location_t loc
, tree divisor
)
9265 /* If DIVISOR is zero, and has integral or fixed-point type, issue a warning
9266 about division by zero. Do not issue a warning if DIVISOR has a
9267 floating-point type, since we consider 0.0/0.0 a valid way of
9268 generating a NaN. */
9269 if (c_inhibit_evaluation_warnings
== 0
9270 && (integer_zerop (divisor
) || fixed_zerop (divisor
)))
9271 warning_at (loc
, OPT_Wdiv_by_zero
, "division by zero");
9274 /* Subroutine of build_binary_op. Give warnings for comparisons
9275 between signed and unsigned quantities that may fail. Do the
9276 checking based on the original operand trees ORIG_OP0 and ORIG_OP1,
9277 so that casts will be considered, but default promotions won't
9280 LOCATION is the location of the comparison operator.
9282 The arguments of this function map directly to local variables
9283 of build_binary_op. */
9286 warn_for_sign_compare (location_t location
,
9287 tree orig_op0
, tree orig_op1
,
9289 tree result_type
, enum tree_code resultcode
)
9291 int op0_signed
= !TYPE_UNSIGNED (TREE_TYPE (orig_op0
));
9292 int op1_signed
= !TYPE_UNSIGNED (TREE_TYPE (orig_op1
));
9293 int unsignedp0
, unsignedp1
;
9295 /* In C++, check for comparison of different enum types. */
9297 && TREE_CODE (TREE_TYPE (orig_op0
)) == ENUMERAL_TYPE
9298 && TREE_CODE (TREE_TYPE (orig_op1
)) == ENUMERAL_TYPE
9299 && TYPE_MAIN_VARIANT (TREE_TYPE (orig_op0
))
9300 != TYPE_MAIN_VARIANT (TREE_TYPE (orig_op1
)))
9302 warning_at (location
,
9303 OPT_Wsign_compare
, "comparison between types %qT and %qT",
9304 TREE_TYPE (orig_op0
), TREE_TYPE (orig_op1
));
9307 /* Do not warn if the comparison is being done in a signed type,
9308 since the signed type will only be chosen if it can represent
9309 all the values of the unsigned type. */
9310 if (!TYPE_UNSIGNED (result_type
))
9312 /* Do not warn if both operands are unsigned. */
9313 else if (op0_signed
== op1_signed
)
9317 tree sop
, uop
, base_type
;
9321 sop
= orig_op0
, uop
= orig_op1
;
9323 sop
= orig_op1
, uop
= orig_op0
;
9325 STRIP_TYPE_NOPS (sop
);
9326 STRIP_TYPE_NOPS (uop
);
9327 base_type
= (TREE_CODE (result_type
) == COMPLEX_TYPE
9328 ? TREE_TYPE (result_type
) : result_type
);
9330 /* Do not warn if the signed quantity is an unsuffixed integer
9331 literal (or some static constant expression involving such
9332 literals or a conditional expression involving such literals)
9333 and it is non-negative. */
9334 if (tree_expr_nonnegative_warnv_p (sop
, &ovf
))
9336 /* Do not warn if the comparison is an equality operation, the
9337 unsigned quantity is an integral constant, and it would fit
9338 in the result if the result were signed. */
9339 else if (TREE_CODE (uop
) == INTEGER_CST
9340 && (resultcode
== EQ_EXPR
|| resultcode
== NE_EXPR
)
9341 && int_fits_type_p (uop
, c_common_signed_type (base_type
)))
9343 /* In C, do not warn if the unsigned quantity is an enumeration
9344 constant and its maximum value would fit in the result if the
9345 result were signed. */
9346 else if (!c_dialect_cxx() && TREE_CODE (uop
) == INTEGER_CST
9347 && TREE_CODE (TREE_TYPE (uop
)) == ENUMERAL_TYPE
9348 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (uop
)),
9349 c_common_signed_type (base_type
)))
9352 warning_at (location
,
9354 "comparison between signed and unsigned integer expressions");
9357 /* Warn if two unsigned values are being compared in a size larger
9358 than their original size, and one (and only one) is the result of
9359 a `~' operator. This comparison will always fail.
9361 Also warn if one operand is a constant, and the constant does not
9362 have all bits set that are set in the ~ operand when it is
9365 op0
= get_narrower (op0
, &unsignedp0
);
9366 op1
= get_narrower (op1
, &unsignedp1
);
9368 if ((TREE_CODE (op0
) == BIT_NOT_EXPR
)
9369 ^ (TREE_CODE (op1
) == BIT_NOT_EXPR
))
9371 if (TREE_CODE (op0
) == BIT_NOT_EXPR
)
9372 op0
= get_narrower (TREE_OPERAND (op0
, 0), &unsignedp0
);
9373 if (TREE_CODE (op1
) == BIT_NOT_EXPR
)
9374 op1
= get_narrower (TREE_OPERAND (op1
, 0), &unsignedp1
);
9376 if (host_integerp (op0
, 0) || host_integerp (op1
, 0))
9379 HOST_WIDE_INT constant
, mask
;
9383 if (host_integerp (op0
, 0))
9386 unsignedp
= unsignedp1
;
9387 constant
= tree_low_cst (op0
, 0);
9392 unsignedp
= unsignedp0
;
9393 constant
= tree_low_cst (op1
, 0);
9396 bits
= TYPE_PRECISION (TREE_TYPE (primop
));
9397 if (bits
< TYPE_PRECISION (result_type
)
9398 && bits
< HOST_BITS_PER_LONG
&& unsignedp
)
9400 mask
= (~ (HOST_WIDE_INT
) 0) << bits
;
9401 if ((mask
& constant
) != mask
)
9404 warning (OPT_Wsign_compare
,
9405 "promoted ~unsigned is always non-zero");
9407 warning_at (location
, OPT_Wsign_compare
,
9408 "comparison of promoted ~unsigned with constant");
9412 else if (unsignedp0
&& unsignedp1
9413 && (TYPE_PRECISION (TREE_TYPE (op0
))
9414 < TYPE_PRECISION (result_type
))
9415 && (TYPE_PRECISION (TREE_TYPE (op1
))
9416 < TYPE_PRECISION (result_type
)))
9417 warning_at (location
, OPT_Wsign_compare
,
9418 "comparison of promoted ~unsigned with unsigned");
9422 /* RESULT_TYPE is the result of converting TYPE1 and TYPE2 to a common
9423 type via c_common_type. If -Wdouble-promotion is in use, and the
9424 conditions for warning have been met, issue a warning. GMSGID is
9425 the warning message. It must have two %T specifiers for the type
9426 that was converted (generally "float") and the type to which it was
9427 converted (generally "double), respectively. LOC is the location
9428 to which the awrning should refer. */
9431 do_warn_double_promotion (tree result_type
, tree type1
, tree type2
,
9432 const char *gmsgid
, location_t loc
)
9436 if (!warn_double_promotion
)
9438 /* If the conversion will not occur at run-time, there is no need to
9440 if (c_inhibit_evaluation_warnings
)
9442 if (TYPE_MAIN_VARIANT (result_type
) != double_type_node
9443 && TYPE_MAIN_VARIANT (result_type
) != complex_double_type_node
)
9445 if (TYPE_MAIN_VARIANT (type1
) == float_type_node
9446 || TYPE_MAIN_VARIANT (type1
) == complex_float_type_node
)
9447 source_type
= type1
;
9448 else if (TYPE_MAIN_VARIANT (type2
) == float_type_node
9449 || TYPE_MAIN_VARIANT (type2
) == complex_float_type_node
)
9450 source_type
= type2
;
9453 warning_at (loc
, OPT_Wdouble_promotion
, gmsgid
, source_type
, result_type
);
9456 /* Setup a TYPE_DECL node as a typedef representation.
9458 X is a TYPE_DECL for a typedef statement. Create a brand new
9459 ..._TYPE node (which will be just a variant of the existing
9460 ..._TYPE node with identical properties) and then install X
9461 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
9463 The whole point here is to end up with a situation where each
9464 and every ..._TYPE node the compiler creates will be uniquely
9465 associated with AT MOST one node representing a typedef name.
9466 This way, even though the compiler substitutes corresponding
9467 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
9468 early on, later parts of the compiler can always do the reverse
9469 translation and get back the corresponding typedef name. For
9472 typedef struct S MY_TYPE;
9475 Later parts of the compiler might only know that `object' was of
9476 type `struct S' if it were not for code just below. With this
9477 code however, later parts of the compiler see something like:
9479 struct S' == struct S
9480 typedef struct S' MY_TYPE;
9483 And they can then deduce (from the node for type struct S') that
9484 the original object declaration was:
9488 Being able to do this is important for proper support of protoize,
9489 and also for generating precise symbolic debugging information
9490 which takes full account of the programmer's (typedef) vocabulary.
9492 Obviously, we don't want to generate a duplicate ..._TYPE node if
9493 the TYPE_DECL node that we are now processing really represents a
9494 standard built-in type. */
9497 set_underlying_type (tree x
)
9499 if (x
== error_mark_node
)
9501 if (DECL_IS_BUILTIN (x
))
9503 if (TYPE_NAME (TREE_TYPE (x
)) == 0)
9504 TYPE_NAME (TREE_TYPE (x
)) = x
;
9506 else if (TREE_TYPE (x
) != error_mark_node
9507 && DECL_ORIGINAL_TYPE (x
) == NULL_TREE
)
9509 tree tt
= TREE_TYPE (x
);
9510 DECL_ORIGINAL_TYPE (x
) = tt
;
9511 tt
= build_variant_type_copy (tt
);
9512 TYPE_STUB_DECL (tt
) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x
));
9514 TREE_USED (tt
) = TREE_USED (x
);
9519 /* Record the types used by the current global variable declaration
9520 being parsed, so that we can decide later to emit their debug info.
9521 Those types are in types_used_by_cur_var_decl, and we are going to
9522 store them in the types_used_by_vars_hash hash table.
9523 DECL is the declaration of the global variable that has been parsed. */
9526 record_types_used_by_current_var_decl (tree decl
)
9528 gcc_assert (decl
&& DECL_P (decl
) && TREE_STATIC (decl
));
9530 while (!VEC_empty (tree
, types_used_by_cur_var_decl
))
9532 tree type
= VEC_pop (tree
, types_used_by_cur_var_decl
);
9533 types_used_by_var_decl_insert (type
, decl
);
9537 /* The C and C++ parsers both use vectors to hold function arguments.
9538 For efficiency, we keep a cache of unused vectors. This is the
9541 typedef VEC(tree
,gc
)* tree_gc_vec
;
9542 DEF_VEC_P(tree_gc_vec
);
9543 DEF_VEC_ALLOC_P(tree_gc_vec
,gc
);
9544 static GTY((deletable
)) VEC(tree_gc_vec
,gc
) *tree_vector_cache
;
9546 /* Return a new vector from the cache. If the cache is empty,
9547 allocate a new vector. These vectors are GC'ed, so it is OK if the
9548 pointer is not released.. */
9551 make_tree_vector (void)
9553 if (!VEC_empty (tree_gc_vec
, tree_vector_cache
))
9554 return VEC_pop (tree_gc_vec
, tree_vector_cache
);
9557 /* Passing 0 to VEC_alloc returns NULL, and our callers require
9558 that we always return a non-NULL value. The vector code uses
9559 4 when growing a NULL vector, so we do too. */
9560 return VEC_alloc (tree
, gc
, 4);
9564 /* Release a vector of trees back to the cache. */
9567 release_tree_vector (VEC(tree
,gc
) *vec
)
9571 VEC_truncate (tree
, vec
, 0);
9572 VEC_safe_push (tree_gc_vec
, gc
, tree_vector_cache
, vec
);
9576 /* Get a new tree vector holding a single tree. */
9579 make_tree_vector_single (tree t
)
9581 VEC(tree
,gc
) *ret
= make_tree_vector ();
9582 VEC_quick_push (tree
, ret
, t
);
9586 /* Get a new tree vector which is a copy of an existing one. */
9589 make_tree_vector_copy (const VEC(tree
,gc
) *orig
)
9595 ret
= make_tree_vector ();
9596 VEC_reserve (tree
, gc
, ret
, VEC_length (tree
, orig
));
9597 FOR_EACH_VEC_ELT (tree
, orig
, ix
, t
)
9598 VEC_quick_push (tree
, ret
, t
);
9602 /* Return true if KEYWORD starts a type specifier. */
9605 keyword_begins_type_specifier (enum rid keyword
)
9641 /* Return true if KEYWORD names a type qualifier. */
9644 keyword_is_type_qualifier (enum rid keyword
)
9657 /* Return true if KEYWORD names a storage class specifier.
9659 RID_TYPEDEF is not included in this list despite `typedef' being
9660 listed in C99 6.7.1.1. 6.7.1.3 indicates that `typedef' is listed as
9661 such for syntactic convenience only. */
9664 keyword_is_storage_class_specifier (enum rid keyword
)
9680 /* Return true if KEYWORD names a function-specifier [dcl.fct.spec]. */
9683 keyword_is_function_specifier (enum rid keyword
)
9696 /* Return true if KEYWORD names a decl-specifier [dcl.spec] or a
9697 declaration-specifier (C99 6.7). */
9700 keyword_is_decl_specifier (enum rid keyword
)
9702 if (keyword_is_storage_class_specifier (keyword
)
9703 || keyword_is_type_qualifier (keyword
)
9704 || keyword_is_function_specifier (keyword
))
9718 #include "gt-c-family-c-common.h"