c-common.c (check_cxx_fundamental_alignment_constraints): Don't limit FIELD_DECL...
[gcc.git] / gcc / c-family / c-common.c
1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992-2016 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #define GCC_C_COMMON_C
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "target.h"
26 #include "function.h"
27 #include "tree.h"
28 #include "c-common.h"
29 #include "gimple-expr.h"
30 #include "tm_p.h"
31 #include "stringpool.h"
32 #include "cgraph.h"
33 #include "diagnostic.h"
34 #include "intl.h"
35 #include "stor-layout.h"
36 #include "calls.h"
37 #include "attribs.h"
38 #include "varasm.h"
39 #include "trans-mem.h"
40 #include "c-objc.h"
41 #include "common/common-target.h"
42 #include "langhooks.h"
43 #include "tree-inline.h"
44 #include "toplev.h"
45 #include "tree-iterator.h"
46 #include "opts.h"
47 #include "gimplify.h"
48 #include "substring-locations.h"
49 #include "spellcheck.h"
50
51 cpp_reader *parse_in; /* Declared in c-pragma.h. */
52
53 /* Mode used to build pointers (VOIDmode means ptr_mode). */
54
55 machine_mode c_default_pointer_mode = VOIDmode;
56
57 /* The following symbols are subsumed in the c_global_trees array, and
58 listed here individually for documentation purposes.
59
60 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
61
62 tree short_integer_type_node;
63 tree long_integer_type_node;
64 tree long_long_integer_type_node;
65
66 tree short_unsigned_type_node;
67 tree long_unsigned_type_node;
68 tree long_long_unsigned_type_node;
69
70 tree truthvalue_type_node;
71 tree truthvalue_false_node;
72 tree truthvalue_true_node;
73
74 tree ptrdiff_type_node;
75
76 tree unsigned_char_type_node;
77 tree signed_char_type_node;
78 tree wchar_type_node;
79
80 tree char16_type_node;
81 tree char32_type_node;
82
83 tree float_type_node;
84 tree double_type_node;
85 tree long_double_type_node;
86
87 tree complex_integer_type_node;
88 tree complex_float_type_node;
89 tree complex_double_type_node;
90 tree complex_long_double_type_node;
91
92 tree dfloat32_type_node;
93 tree dfloat64_type_node;
94 tree_dfloat128_type_node;
95
96 tree intQI_type_node;
97 tree intHI_type_node;
98 tree intSI_type_node;
99 tree intDI_type_node;
100 tree intTI_type_node;
101
102 tree unsigned_intQI_type_node;
103 tree unsigned_intHI_type_node;
104 tree unsigned_intSI_type_node;
105 tree unsigned_intDI_type_node;
106 tree unsigned_intTI_type_node;
107
108 tree widest_integer_literal_type_node;
109 tree widest_unsigned_literal_type_node;
110
111 Nodes for types `void *' and `const void *'.
112
113 tree ptr_type_node, const_ptr_type_node;
114
115 Nodes for types `char *' and `const char *'.
116
117 tree string_type_node, const_string_type_node;
118
119 Type `char[SOMENUMBER]'.
120 Used when an array of char is needed and the size is irrelevant.
121
122 tree char_array_type_node;
123
124 Type `wchar_t[SOMENUMBER]' or something like it.
125 Used when a wide string literal is created.
126
127 tree wchar_array_type_node;
128
129 Type `char16_t[SOMENUMBER]' or something like it.
130 Used when a UTF-16 string literal is created.
131
132 tree char16_array_type_node;
133
134 Type `char32_t[SOMENUMBER]' or something like it.
135 Used when a UTF-32 string literal is created.
136
137 tree char32_array_type_node;
138
139 Type `int ()' -- used for implicit declaration of functions.
140
141 tree default_function_type;
142
143 A VOID_TYPE node, packaged in a TREE_LIST.
144
145 tree void_list_node;
146
147 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
148 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
149 VAR_DECLS, but C++ does.)
150
151 tree function_name_decl_node;
152 tree pretty_function_name_decl_node;
153 tree c99_function_name_decl_node;
154
155 Stack of nested function name VAR_DECLs.
156
157 tree saved_function_name_decls;
158
159 */
160
161 tree c_global_trees[CTI_MAX];
162 \f
163 /* Switches common to the C front ends. */
164
165 /* Nonzero means don't output line number information. */
166
167 char flag_no_line_commands;
168
169 /* Nonzero causes -E output not to be done, but directives such as
170 #define that have side effects are still obeyed. */
171
172 char flag_no_output;
173
174 /* Nonzero means dump macros in some fashion. */
175
176 char flag_dump_macros;
177
178 /* Nonzero means pass #include lines through to the output. */
179
180 char flag_dump_includes;
181
182 /* Nonzero means process PCH files while preprocessing. */
183
184 bool flag_pch_preprocess;
185
186 /* The file name to which we should write a precompiled header, or
187 NULL if no header will be written in this compile. */
188
189 const char *pch_file;
190
191 /* Nonzero if an ISO standard was selected. It rejects macros in the
192 user's namespace. */
193 int flag_iso;
194
195 /* C/ObjC language option variables. */
196
197
198 /* Nonzero means allow type mismatches in conditional expressions;
199 just make their values `void'. */
200
201 int flag_cond_mismatch;
202
203 /* Nonzero means enable C89 Amendment 1 features. */
204
205 int flag_isoc94;
206
207 /* Nonzero means use the ISO C99 (or C11) dialect of C. */
208
209 int flag_isoc99;
210
211 /* Nonzero means use the ISO C11 dialect of C. */
212
213 int flag_isoc11;
214
215 /* Nonzero means that we have builtin functions, and main is an int. */
216
217 int flag_hosted = 1;
218
219
220 /* ObjC language option variables. */
221
222
223 /* Tells the compiler that this is a special run. Do not perform any
224 compiling, instead we are to test some platform dependent features
225 and output a C header file with appropriate definitions. */
226
227 int print_struct_values;
228
229 /* Tells the compiler what is the constant string class for ObjC. */
230
231 const char *constant_string_class_name;
232
233
234 /* C++ language option variables. */
235
236 /* The reference version of the ABI for -Wabi. */
237
238 int warn_abi_version = -1;
239
240 /* Nonzero means generate separate instantiation control files and
241 juggle them at link time. */
242
243 int flag_use_repository;
244
245 /* The C++ dialect being used. Default set in c_common_post_options. */
246
247 enum cxx_dialect cxx_dialect = cxx_unset;
248
249 /* Maximum template instantiation depth. This limit exists to limit the
250 time it takes to notice excessively recursive template instantiations.
251
252 The default is lower than the 1024 recommended by the C++0x standard
253 because G++ runs out of stack before 1024 with highly recursive template
254 argument deduction substitution (g++.dg/cpp0x/enum11.C). */
255
256 int max_tinst_depth = 900;
257
258 /* The elements of `ridpointers' are identifier nodes for the reserved
259 type names and storage classes. It is indexed by a RID_... value. */
260 tree *ridpointers;
261
262 tree (*make_fname_decl) (location_t, tree, int);
263
264 /* Nonzero means don't warn about problems that occur when the code is
265 executed. */
266 int c_inhibit_evaluation_warnings;
267
268 /* Whether we are building a boolean conversion inside
269 convert_for_assignment, or some other late binary operation. If
270 build_binary_op is called for C (from code shared by C and C++) in
271 this case, then the operands have already been folded and the
272 result will not be folded again, so C_MAYBE_CONST_EXPR should not
273 be generated. */
274 bool in_late_binary_op;
275
276 /* Whether lexing has been completed, so subsequent preprocessor
277 errors should use the compiler's input_location. */
278 bool done_lexing = false;
279
280 /* Information about how a function name is generated. */
281 struct fname_var_t
282 {
283 tree *const decl; /* pointer to the VAR_DECL. */
284 const unsigned rid; /* RID number for the identifier. */
285 const int pretty; /* How pretty is it? */
286 };
287
288 /* The three ways of getting then name of the current function. */
289
290 const struct fname_var_t fname_vars[] =
291 {
292 /* C99 compliant __func__, must be first. */
293 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
294 /* GCC __FUNCTION__ compliant. */
295 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
296 /* GCC __PRETTY_FUNCTION__ compliant. */
297 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
298 {NULL, 0, 0},
299 };
300
301 /* Global visibility options. */
302 struct visibility_flags visibility_options;
303
304 static tree check_case_value (location_t, tree);
305 static bool check_case_bounds (location_t, tree, tree, tree *, tree *,
306 bool *);
307
308 static tree handle_packed_attribute (tree *, tree, tree, int, bool *);
309 static tree handle_nocommon_attribute (tree *, tree, tree, int, bool *);
310 static tree handle_common_attribute (tree *, tree, tree, int, bool *);
311 static tree handle_noreturn_attribute (tree *, tree, tree, int, bool *);
312 static tree handle_hot_attribute (tree *, tree, tree, int, bool *);
313 static tree handle_cold_attribute (tree *, tree, tree, int, bool *);
314 static tree handle_no_sanitize_address_attribute (tree *, tree, tree,
315 int, bool *);
316 static tree handle_no_address_safety_analysis_attribute (tree *, tree, tree,
317 int, bool *);
318 static tree handle_no_sanitize_undefined_attribute (tree *, tree, tree, int,
319 bool *);
320 static tree handle_stack_protect_attribute (tree *, tree, tree, int, bool *);
321 static tree handle_noinline_attribute (tree *, tree, tree, int, bool *);
322 static tree handle_noclone_attribute (tree *, tree, tree, int, bool *);
323 static tree handle_noicf_attribute (tree *, tree, tree, int, bool *);
324 static tree handle_leaf_attribute (tree *, tree, tree, int, bool *);
325 static tree handle_always_inline_attribute (tree *, tree, tree, int,
326 bool *);
327 static tree handle_gnu_inline_attribute (tree *, tree, tree, int, bool *);
328 static tree handle_artificial_attribute (tree *, tree, tree, int, bool *);
329 static tree handle_flatten_attribute (tree *, tree, tree, int, bool *);
330 static tree handle_error_attribute (tree *, tree, tree, int, bool *);
331 static tree handle_used_attribute (tree *, tree, tree, int, bool *);
332 static tree handle_externally_visible_attribute (tree *, tree, tree, int,
333 bool *);
334 static tree handle_no_reorder_attribute (tree *, tree, tree, int,
335 bool *);
336 static tree handle_const_attribute (tree *, tree, tree, int, bool *);
337 static tree handle_transparent_union_attribute (tree *, tree, tree,
338 int, bool *);
339 static tree handle_scalar_storage_order_attribute (tree *, tree, tree,
340 int, bool *);
341 static tree handle_constructor_attribute (tree *, tree, tree, int, bool *);
342 static tree handle_destructor_attribute (tree *, tree, tree, int, bool *);
343 static tree handle_mode_attribute (tree *, tree, tree, int, bool *);
344 static tree handle_section_attribute (tree *, tree, tree, int, bool *);
345 static tree handle_aligned_attribute (tree *, tree, tree, int, bool *);
346 static tree handle_weak_attribute (tree *, tree, tree, int, bool *) ;
347 static tree handle_noplt_attribute (tree *, tree, tree, int, bool *) ;
348 static tree handle_alias_ifunc_attribute (bool, tree *, tree, tree, bool *);
349 static tree handle_ifunc_attribute (tree *, tree, tree, int, bool *);
350 static tree handle_alias_attribute (tree *, tree, tree, int, bool *);
351 static tree handle_weakref_attribute (tree *, tree, tree, int, bool *) ;
352 static tree handle_visibility_attribute (tree *, tree, tree, int,
353 bool *);
354 static tree handle_tls_model_attribute (tree *, tree, tree, int,
355 bool *);
356 static tree handle_no_instrument_function_attribute (tree *, tree,
357 tree, int, bool *);
358 static tree handle_no_profile_instrument_function_attribute (tree *, tree,
359 tree, int, bool *);
360 static tree handle_malloc_attribute (tree *, tree, tree, int, bool *);
361 static tree handle_returns_twice_attribute (tree *, tree, tree, int, bool *);
362 static tree handle_no_limit_stack_attribute (tree *, tree, tree, int,
363 bool *);
364 static tree handle_pure_attribute (tree *, tree, tree, int, bool *);
365 static tree handle_tm_attribute (tree *, tree, tree, int, bool *);
366 static tree handle_tm_wrap_attribute (tree *, tree, tree, int, bool *);
367 static tree handle_novops_attribute (tree *, tree, tree, int, bool *);
368 static tree handle_deprecated_attribute (tree *, tree, tree, int,
369 bool *);
370 static tree handle_vector_size_attribute (tree *, tree, tree, int,
371 bool *);
372 static tree handle_nonnull_attribute (tree *, tree, tree, int, bool *);
373 static tree handle_nothrow_attribute (tree *, tree, tree, int, bool *);
374 static tree handle_cleanup_attribute (tree *, tree, tree, int, bool *);
375 static tree handle_warn_unused_result_attribute (tree *, tree, tree, int,
376 bool *);
377 static tree handle_sentinel_attribute (tree *, tree, tree, int, bool *);
378 static tree handle_type_generic_attribute (tree *, tree, tree, int, bool *);
379 static tree handle_alloc_size_attribute (tree *, tree, tree, int, bool *);
380 static tree handle_alloc_align_attribute (tree *, tree, tree, int, bool *);
381 static tree handle_assume_aligned_attribute (tree *, tree, tree, int, bool *);
382 static tree handle_target_attribute (tree *, tree, tree, int, bool *);
383 static tree handle_target_clones_attribute (tree *, tree, tree, int, bool *);
384 static tree handle_optimize_attribute (tree *, tree, tree, int, bool *);
385 static tree ignore_attribute (tree *, tree, tree, int, bool *);
386 static tree handle_no_split_stack_attribute (tree *, tree, tree, int, bool *);
387 static tree handle_fnspec_attribute (tree *, tree, tree, int, bool *);
388 static tree handle_warn_unused_attribute (tree *, tree, tree, int, bool *);
389 static tree handle_returns_nonnull_attribute (tree *, tree, tree, int, bool *);
390 static tree handle_omp_declare_simd_attribute (tree *, tree, tree, int,
391 bool *);
392 static tree handle_simd_attribute (tree *, tree, tree, int, bool *);
393 static tree handle_omp_declare_target_attribute (tree *, tree, tree, int,
394 bool *);
395 static tree handle_designated_init_attribute (tree *, tree, tree, int, bool *);
396 static tree handle_bnd_variable_size_attribute (tree *, tree, tree, int, bool *);
397 static tree handle_bnd_legacy (tree *, tree, tree, int, bool *);
398 static tree handle_bnd_instrument (tree *, tree, tree, int, bool *);
399
400 static void check_nonnull_arg (void *, tree, unsigned HOST_WIDE_INT);
401 static bool nonnull_check_p (tree, unsigned HOST_WIDE_INT);
402 static bool get_nonnull_operand (tree, unsigned HOST_WIDE_INT *);
403 static int resort_field_decl_cmp (const void *, const void *);
404
405 /* Reserved words. The third field is a mask: keywords are disabled
406 if they match the mask.
407
408 Masks for languages:
409 C --std=c89: D_C99 | D_CXXONLY | D_OBJC | D_CXX_OBJC
410 C --std=c99: D_CXXONLY | D_OBJC
411 ObjC is like C except that D_OBJC and D_CXX_OBJC are not set
412 C++ --std=c98: D_CONLY | D_CXXOX | D_OBJC
413 C++ --std=c0x: D_CONLY | D_OBJC
414 ObjC++ is like C++ except that D_OBJC is not set
415
416 If -fno-asm is used, D_ASM is added to the mask. If
417 -fno-gnu-keywords is used, D_EXT is added. If -fno-asm and C in
418 C89 mode, D_EXT89 is added for both -fno-asm and -fno-gnu-keywords.
419 In C with -Wc++-compat, we warn if D_CXXWARN is set.
420
421 Note the complication of the D_CXX_OBJC keywords. These are
422 reserved words such as 'class'. In C++, 'class' is a reserved
423 word. In Objective-C++ it is too. In Objective-C, it is a
424 reserved word too, but only if it follows an '@' sign.
425 */
426 const struct c_common_resword c_common_reswords[] =
427 {
428 { "_Alignas", RID_ALIGNAS, D_CONLY },
429 { "_Alignof", RID_ALIGNOF, D_CONLY },
430 { "_Atomic", RID_ATOMIC, D_CONLY },
431 { "_Bool", RID_BOOL, D_CONLY },
432 { "_Complex", RID_COMPLEX, 0 },
433 { "_Cilk_spawn", RID_CILK_SPAWN, 0 },
434 { "_Cilk_sync", RID_CILK_SYNC, 0 },
435 { "_Cilk_for", RID_CILK_FOR, 0 },
436 { "_Imaginary", RID_IMAGINARY, D_CONLY },
437 { "_Float16", RID_FLOAT16, D_CONLY },
438 { "_Float32", RID_FLOAT32, D_CONLY },
439 { "_Float64", RID_FLOAT64, D_CONLY },
440 { "_Float128", RID_FLOAT128, D_CONLY },
441 { "_Float32x", RID_FLOAT32X, D_CONLY },
442 { "_Float64x", RID_FLOAT64X, D_CONLY },
443 { "_Float128x", RID_FLOAT128X, D_CONLY },
444 { "_Decimal32", RID_DFLOAT32, D_CONLY | D_EXT },
445 { "_Decimal64", RID_DFLOAT64, D_CONLY | D_EXT },
446 { "_Decimal128", RID_DFLOAT128, D_CONLY | D_EXT },
447 { "_Fract", RID_FRACT, D_CONLY | D_EXT },
448 { "_Accum", RID_ACCUM, D_CONLY | D_EXT },
449 { "_Sat", RID_SAT, D_CONLY | D_EXT },
450 { "_Static_assert", RID_STATIC_ASSERT, D_CONLY },
451 { "_Noreturn", RID_NORETURN, D_CONLY },
452 { "_Generic", RID_GENERIC, D_CONLY },
453 { "_Thread_local", RID_THREAD, D_CONLY },
454 { "__FUNCTION__", RID_FUNCTION_NAME, 0 },
455 { "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME, 0 },
456 { "__alignof", RID_ALIGNOF, 0 },
457 { "__alignof__", RID_ALIGNOF, 0 },
458 { "__asm", RID_ASM, 0 },
459 { "__asm__", RID_ASM, 0 },
460 { "__attribute", RID_ATTRIBUTE, 0 },
461 { "__attribute__", RID_ATTRIBUTE, 0 },
462 { "__auto_type", RID_AUTO_TYPE, D_CONLY },
463 { "__bases", RID_BASES, D_CXXONLY },
464 { "__builtin_call_with_static_chain",
465 RID_BUILTIN_CALL_WITH_STATIC_CHAIN, D_CONLY },
466 { "__builtin_choose_expr", RID_CHOOSE_EXPR, D_CONLY },
467 { "__builtin_complex", RID_BUILTIN_COMPLEX, D_CONLY },
468 { "__builtin_shuffle", RID_BUILTIN_SHUFFLE, 0 },
469 { "__builtin_offsetof", RID_OFFSETOF, 0 },
470 { "__builtin_types_compatible_p", RID_TYPES_COMPATIBLE_P, D_CONLY },
471 { "__builtin_va_arg", RID_VA_ARG, 0 },
472 { "__complex", RID_COMPLEX, 0 },
473 { "__complex__", RID_COMPLEX, 0 },
474 { "__const", RID_CONST, 0 },
475 { "__const__", RID_CONST, 0 },
476 { "__decltype", RID_DECLTYPE, D_CXXONLY },
477 { "__direct_bases", RID_DIRECT_BASES, D_CXXONLY },
478 { "__extension__", RID_EXTENSION, 0 },
479 { "__func__", RID_C99_FUNCTION_NAME, 0 },
480 { "__has_nothrow_assign", RID_HAS_NOTHROW_ASSIGN, D_CXXONLY },
481 { "__has_nothrow_constructor", RID_HAS_NOTHROW_CONSTRUCTOR, D_CXXONLY },
482 { "__has_nothrow_copy", RID_HAS_NOTHROW_COPY, D_CXXONLY },
483 { "__has_trivial_assign", RID_HAS_TRIVIAL_ASSIGN, D_CXXONLY },
484 { "__has_trivial_constructor", RID_HAS_TRIVIAL_CONSTRUCTOR, D_CXXONLY },
485 { "__has_trivial_copy", RID_HAS_TRIVIAL_COPY, D_CXXONLY },
486 { "__has_trivial_destructor", RID_HAS_TRIVIAL_DESTRUCTOR, D_CXXONLY },
487 { "__has_virtual_destructor", RID_HAS_VIRTUAL_DESTRUCTOR, D_CXXONLY },
488 { "__imag", RID_IMAGPART, 0 },
489 { "__imag__", RID_IMAGPART, 0 },
490 { "__inline", RID_INLINE, 0 },
491 { "__inline__", RID_INLINE, 0 },
492 { "__is_abstract", RID_IS_ABSTRACT, D_CXXONLY },
493 { "__is_base_of", RID_IS_BASE_OF, D_CXXONLY },
494 { "__is_class", RID_IS_CLASS, D_CXXONLY },
495 { "__is_empty", RID_IS_EMPTY, D_CXXONLY },
496 { "__is_enum", RID_IS_ENUM, D_CXXONLY },
497 { "__is_final", RID_IS_FINAL, D_CXXONLY },
498 { "__is_literal_type", RID_IS_LITERAL_TYPE, D_CXXONLY },
499 { "__is_pod", RID_IS_POD, D_CXXONLY },
500 { "__is_polymorphic", RID_IS_POLYMORPHIC, D_CXXONLY },
501 { "__is_same_as", RID_IS_SAME_AS, D_CXXONLY },
502 { "__is_standard_layout", RID_IS_STD_LAYOUT, D_CXXONLY },
503 { "__is_trivial", RID_IS_TRIVIAL, D_CXXONLY },
504 { "__is_trivially_assignable", RID_IS_TRIVIALLY_ASSIGNABLE, D_CXXONLY },
505 { "__is_trivially_constructible", RID_IS_TRIVIALLY_CONSTRUCTIBLE, D_CXXONLY },
506 { "__is_trivially_copyable", RID_IS_TRIVIALLY_COPYABLE, D_CXXONLY },
507 { "__is_union", RID_IS_UNION, D_CXXONLY },
508 { "__label__", RID_LABEL, 0 },
509 { "__null", RID_NULL, 0 },
510 { "__real", RID_REALPART, 0 },
511 { "__real__", RID_REALPART, 0 },
512 { "__restrict", RID_RESTRICT, 0 },
513 { "__restrict__", RID_RESTRICT, 0 },
514 { "__signed", RID_SIGNED, 0 },
515 { "__signed__", RID_SIGNED, 0 },
516 { "__thread", RID_THREAD, 0 },
517 { "__transaction_atomic", RID_TRANSACTION_ATOMIC, 0 },
518 { "__transaction_relaxed", RID_TRANSACTION_RELAXED, 0 },
519 { "__transaction_cancel", RID_TRANSACTION_CANCEL, 0 },
520 { "__typeof", RID_TYPEOF, 0 },
521 { "__typeof__", RID_TYPEOF, 0 },
522 { "__underlying_type", RID_UNDERLYING_TYPE, D_CXXONLY },
523 { "__volatile", RID_VOLATILE, 0 },
524 { "__volatile__", RID_VOLATILE, 0 },
525 { "alignas", RID_ALIGNAS, D_CXXONLY | D_CXX11 | D_CXXWARN },
526 { "alignof", RID_ALIGNOF, D_CXXONLY | D_CXX11 | D_CXXWARN },
527 { "asm", RID_ASM, D_ASM },
528 { "auto", RID_AUTO, 0 },
529 { "bool", RID_BOOL, D_CXXONLY | D_CXXWARN },
530 { "break", RID_BREAK, 0 },
531 { "case", RID_CASE, 0 },
532 { "catch", RID_CATCH, D_CXX_OBJC | D_CXXWARN },
533 { "char", RID_CHAR, 0 },
534 { "char16_t", RID_CHAR16, D_CXXONLY | D_CXX11 | D_CXXWARN },
535 { "char32_t", RID_CHAR32, D_CXXONLY | D_CXX11 | D_CXXWARN },
536 { "class", RID_CLASS, D_CXX_OBJC | D_CXXWARN },
537 { "const", RID_CONST, 0 },
538 { "constexpr", RID_CONSTEXPR, D_CXXONLY | D_CXX11 | D_CXXWARN },
539 { "const_cast", RID_CONSTCAST, D_CXXONLY | D_CXXWARN },
540 { "continue", RID_CONTINUE, 0 },
541 { "decltype", RID_DECLTYPE, D_CXXONLY | D_CXX11 | D_CXXWARN },
542 { "default", RID_DEFAULT, 0 },
543 { "delete", RID_DELETE, D_CXXONLY | D_CXXWARN },
544 { "do", RID_DO, 0 },
545 { "double", RID_DOUBLE, 0 },
546 { "dynamic_cast", RID_DYNCAST, D_CXXONLY | D_CXXWARN },
547 { "else", RID_ELSE, 0 },
548 { "enum", RID_ENUM, 0 },
549 { "explicit", RID_EXPLICIT, D_CXXONLY | D_CXXWARN },
550 { "export", RID_EXPORT, D_CXXONLY | D_CXXWARN },
551 { "extern", RID_EXTERN, 0 },
552 { "false", RID_FALSE, D_CXXONLY | D_CXXWARN },
553 { "float", RID_FLOAT, 0 },
554 { "for", RID_FOR, 0 },
555 { "friend", RID_FRIEND, D_CXXONLY | D_CXXWARN },
556 { "goto", RID_GOTO, 0 },
557 { "if", RID_IF, 0 },
558 { "inline", RID_INLINE, D_EXT89 },
559 { "int", RID_INT, 0 },
560 { "long", RID_LONG, 0 },
561 { "mutable", RID_MUTABLE, D_CXXONLY | D_CXXWARN },
562 { "namespace", RID_NAMESPACE, D_CXXONLY | D_CXXWARN },
563 { "new", RID_NEW, D_CXXONLY | D_CXXWARN },
564 { "noexcept", RID_NOEXCEPT, D_CXXONLY | D_CXX11 | D_CXXWARN },
565 { "nullptr", RID_NULLPTR, D_CXXONLY | D_CXX11 | D_CXXWARN },
566 { "operator", RID_OPERATOR, D_CXXONLY | D_CXXWARN },
567 { "private", RID_PRIVATE, D_CXX_OBJC | D_CXXWARN },
568 { "protected", RID_PROTECTED, D_CXX_OBJC | D_CXXWARN },
569 { "public", RID_PUBLIC, D_CXX_OBJC | D_CXXWARN },
570 { "register", RID_REGISTER, 0 },
571 { "reinterpret_cast", RID_REINTCAST, D_CXXONLY | D_CXXWARN },
572 { "restrict", RID_RESTRICT, D_CONLY | D_C99 },
573 { "return", RID_RETURN, 0 },
574 { "short", RID_SHORT, 0 },
575 { "signed", RID_SIGNED, 0 },
576 { "sizeof", RID_SIZEOF, 0 },
577 { "static", RID_STATIC, 0 },
578 { "static_assert", RID_STATIC_ASSERT, D_CXXONLY | D_CXX11 | D_CXXWARN },
579 { "static_cast", RID_STATCAST, D_CXXONLY | D_CXXWARN },
580 { "struct", RID_STRUCT, 0 },
581 { "switch", RID_SWITCH, 0 },
582 { "template", RID_TEMPLATE, D_CXXONLY | D_CXXWARN },
583 { "this", RID_THIS, D_CXXONLY | D_CXXWARN },
584 { "thread_local", RID_THREAD, D_CXXONLY | D_CXX11 | D_CXXWARN },
585 { "throw", RID_THROW, D_CXX_OBJC | D_CXXWARN },
586 { "true", RID_TRUE, D_CXXONLY | D_CXXWARN },
587 { "try", RID_TRY, D_CXX_OBJC | D_CXXWARN },
588 { "typedef", RID_TYPEDEF, 0 },
589 { "typename", RID_TYPENAME, D_CXXONLY | D_CXXWARN },
590 { "typeid", RID_TYPEID, D_CXXONLY | D_CXXWARN },
591 { "typeof", RID_TYPEOF, D_ASM | D_EXT },
592 { "union", RID_UNION, 0 },
593 { "unsigned", RID_UNSIGNED, 0 },
594 { "using", RID_USING, D_CXXONLY | D_CXXWARN },
595 { "virtual", RID_VIRTUAL, D_CXXONLY | D_CXXWARN },
596 { "void", RID_VOID, 0 },
597 { "volatile", RID_VOLATILE, 0 },
598 { "wchar_t", RID_WCHAR, D_CXXONLY },
599 { "while", RID_WHILE, 0 },
600
601 /* C++ transactional memory. */
602 { "synchronized", RID_SYNCHRONIZED, D_CXX_OBJC | D_TRANSMEM },
603 { "atomic_noexcept", RID_ATOMIC_NOEXCEPT, D_CXXONLY | D_TRANSMEM },
604 { "atomic_cancel", RID_ATOMIC_CANCEL, D_CXXONLY | D_TRANSMEM },
605 { "atomic_commit", RID_TRANSACTION_ATOMIC, D_CXXONLY | D_TRANSMEM },
606
607 /* Concepts-related keywords */
608 { "concept", RID_CONCEPT, D_CXX_CONCEPTS_FLAGS | D_CXXWARN },
609 { "requires", RID_REQUIRES, D_CXX_CONCEPTS_FLAGS | D_CXXWARN },
610
611 /* These Objective-C keywords are recognized only immediately after
612 an '@'. */
613 { "compatibility_alias", RID_AT_ALIAS, D_OBJC },
614 { "defs", RID_AT_DEFS, D_OBJC },
615 { "encode", RID_AT_ENCODE, D_OBJC },
616 { "end", RID_AT_END, D_OBJC },
617 { "implementation", RID_AT_IMPLEMENTATION, D_OBJC },
618 { "interface", RID_AT_INTERFACE, D_OBJC },
619 { "protocol", RID_AT_PROTOCOL, D_OBJC },
620 { "selector", RID_AT_SELECTOR, D_OBJC },
621 { "finally", RID_AT_FINALLY, D_OBJC },
622 { "optional", RID_AT_OPTIONAL, D_OBJC },
623 { "required", RID_AT_REQUIRED, D_OBJC },
624 { "property", RID_AT_PROPERTY, D_OBJC },
625 { "package", RID_AT_PACKAGE, D_OBJC },
626 { "synthesize", RID_AT_SYNTHESIZE, D_OBJC },
627 { "dynamic", RID_AT_DYNAMIC, D_OBJC },
628 /* These are recognized only in protocol-qualifier context
629 (see above) */
630 { "bycopy", RID_BYCOPY, D_OBJC },
631 { "byref", RID_BYREF, D_OBJC },
632 { "in", RID_IN, D_OBJC },
633 { "inout", RID_INOUT, D_OBJC },
634 { "oneway", RID_ONEWAY, D_OBJC },
635 { "out", RID_OUT, D_OBJC },
636 /* These are recognized inside a property attribute list */
637 { "assign", RID_ASSIGN, D_OBJC },
638 { "copy", RID_COPY, D_OBJC },
639 { "getter", RID_GETTER, D_OBJC },
640 { "nonatomic", RID_NONATOMIC, D_OBJC },
641 { "readonly", RID_READONLY, D_OBJC },
642 { "readwrite", RID_READWRITE, D_OBJC },
643 { "retain", RID_RETAIN, D_OBJC },
644 { "setter", RID_SETTER, D_OBJC },
645 };
646
647 const unsigned int num_c_common_reswords =
648 sizeof c_common_reswords / sizeof (struct c_common_resword);
649
650 /* Table of machine-independent attributes common to all C-like languages.
651
652 All attributes referencing arguments should be additionally processed
653 in chkp_copy_function_type_adding_bounds for correct instrumentation
654 by Pointer Bounds Checker.
655 Current list of processed common attributes: nonnull. */
656 const struct attribute_spec c_common_attribute_table[] =
657 {
658 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
659 affects_type_identity } */
660 { "packed", 0, 0, false, false, false,
661 handle_packed_attribute , false},
662 { "nocommon", 0, 0, true, false, false,
663 handle_nocommon_attribute, false},
664 { "common", 0, 0, true, false, false,
665 handle_common_attribute, false },
666 /* FIXME: logically, noreturn attributes should be listed as
667 "false, true, true" and apply to function types. But implementing this
668 would require all the places in the compiler that use TREE_THIS_VOLATILE
669 on a decl to identify non-returning functions to be located and fixed
670 to check the function type instead. */
671 { "noreturn", 0, 0, true, false, false,
672 handle_noreturn_attribute, false },
673 { "volatile", 0, 0, true, false, false,
674 handle_noreturn_attribute, false },
675 { "stack_protect", 0, 0, true, false, false,
676 handle_stack_protect_attribute, false },
677 { "noinline", 0, 0, true, false, false,
678 handle_noinline_attribute, false },
679 { "noclone", 0, 0, true, false, false,
680 handle_noclone_attribute, false },
681 { "no_icf", 0, 0, true, false, false,
682 handle_noicf_attribute, false },
683 { "leaf", 0, 0, true, false, false,
684 handle_leaf_attribute, false },
685 { "always_inline", 0, 0, true, false, false,
686 handle_always_inline_attribute, false },
687 { "gnu_inline", 0, 0, true, false, false,
688 handle_gnu_inline_attribute, false },
689 { "artificial", 0, 0, true, false, false,
690 handle_artificial_attribute, false },
691 { "flatten", 0, 0, true, false, false,
692 handle_flatten_attribute, false },
693 { "used", 0, 0, true, false, false,
694 handle_used_attribute, false },
695 { "unused", 0, 0, false, false, false,
696 handle_unused_attribute, false },
697 { "externally_visible", 0, 0, true, false, false,
698 handle_externally_visible_attribute, false },
699 { "no_reorder", 0, 0, true, false, false,
700 handle_no_reorder_attribute, false },
701 /* The same comments as for noreturn attributes apply to const ones. */
702 { "const", 0, 0, true, false, false,
703 handle_const_attribute, false },
704 { "scalar_storage_order", 1, 1, false, false, false,
705 handle_scalar_storage_order_attribute, false },
706 { "transparent_union", 0, 0, false, false, false,
707 handle_transparent_union_attribute, false },
708 { "constructor", 0, 1, true, false, false,
709 handle_constructor_attribute, false },
710 { "destructor", 0, 1, true, false, false,
711 handle_destructor_attribute, false },
712 { "mode", 1, 1, false, true, false,
713 handle_mode_attribute, false },
714 { "section", 1, 1, true, false, false,
715 handle_section_attribute, false },
716 { "aligned", 0, 1, false, false, false,
717 handle_aligned_attribute, false },
718 { "weak", 0, 0, true, false, false,
719 handle_weak_attribute, false },
720 { "noplt", 0, 0, true, false, false,
721 handle_noplt_attribute, false },
722 { "ifunc", 1, 1, true, false, false,
723 handle_ifunc_attribute, false },
724 { "alias", 1, 1, true, false, false,
725 handle_alias_attribute, false },
726 { "weakref", 0, 1, true, false, false,
727 handle_weakref_attribute, false },
728 { "no_instrument_function", 0, 0, true, false, false,
729 handle_no_instrument_function_attribute,
730 false },
731 { "no_profile_instrument_function", 0, 0, true, false, false,
732 handle_no_profile_instrument_function_attribute,
733 false },
734 { "malloc", 0, 0, true, false, false,
735 handle_malloc_attribute, false },
736 { "returns_twice", 0, 0, true, false, false,
737 handle_returns_twice_attribute, false },
738 { "no_stack_limit", 0, 0, true, false, false,
739 handle_no_limit_stack_attribute, false },
740 { "pure", 0, 0, true, false, false,
741 handle_pure_attribute, false },
742 { "transaction_callable", 0, 0, false, true, false,
743 handle_tm_attribute, false },
744 { "transaction_unsafe", 0, 0, false, true, false,
745 handle_tm_attribute, true },
746 { "transaction_safe", 0, 0, false, true, false,
747 handle_tm_attribute, true },
748 { "transaction_safe_dynamic", 0, 0, true, false, false,
749 handle_tm_attribute, false },
750 { "transaction_may_cancel_outer", 0, 0, false, true, false,
751 handle_tm_attribute, false },
752 /* ??? These two attributes didn't make the transition from the
753 Intel language document to the multi-vendor language document. */
754 { "transaction_pure", 0, 0, false, true, false,
755 handle_tm_attribute, false },
756 { "transaction_wrap", 1, 1, true, false, false,
757 handle_tm_wrap_attribute, false },
758 /* For internal use (marking of builtins) only. The name contains space
759 to prevent its usage in source code. */
760 { "no vops", 0, 0, true, false, false,
761 handle_novops_attribute, false },
762 { "deprecated", 0, 1, false, false, false,
763 handle_deprecated_attribute, false },
764 { "vector_size", 1, 1, false, true, false,
765 handle_vector_size_attribute, true },
766 { "visibility", 1, 1, false, false, false,
767 handle_visibility_attribute, false },
768 { "tls_model", 1, 1, true, false, false,
769 handle_tls_model_attribute, false },
770 { "nonnull", 0, -1, false, true, true,
771 handle_nonnull_attribute, false },
772 { "nothrow", 0, 0, true, false, false,
773 handle_nothrow_attribute, false },
774 { "may_alias", 0, 0, false, true, false, NULL, false },
775 { "cleanup", 1, 1, true, false, false,
776 handle_cleanup_attribute, false },
777 { "warn_unused_result", 0, 0, false, true, true,
778 handle_warn_unused_result_attribute, false },
779 { "sentinel", 0, 1, false, true, true,
780 handle_sentinel_attribute, false },
781 /* For internal use (marking of builtins) only. The name contains space
782 to prevent its usage in source code. */
783 { "type generic", 0, 0, false, true, true,
784 handle_type_generic_attribute, false },
785 { "alloc_size", 1, 2, false, true, true,
786 handle_alloc_size_attribute, false },
787 { "cold", 0, 0, true, false, false,
788 handle_cold_attribute, false },
789 { "hot", 0, 0, true, false, false,
790 handle_hot_attribute, false },
791 { "no_address_safety_analysis",
792 0, 0, true, false, false,
793 handle_no_address_safety_analysis_attribute,
794 false },
795 { "no_sanitize_address", 0, 0, true, false, false,
796 handle_no_sanitize_address_attribute,
797 false },
798 { "no_sanitize_thread", 0, 0, true, false, false,
799 handle_no_sanitize_address_attribute,
800 false },
801 { "no_sanitize_undefined", 0, 0, true, false, false,
802 handle_no_sanitize_undefined_attribute,
803 false },
804 { "warning", 1, 1, true, false, false,
805 handle_error_attribute, false },
806 { "error", 1, 1, true, false, false,
807 handle_error_attribute, false },
808 { "target", 1, -1, true, false, false,
809 handle_target_attribute, false },
810 { "target_clones", 1, -1, true, false, false,
811 handle_target_clones_attribute, false },
812 { "optimize", 1, -1, true, false, false,
813 handle_optimize_attribute, false },
814 /* For internal use only. The leading '*' both prevents its usage in
815 source code and signals that it may be overridden by machine tables. */
816 { "*tm regparm", 0, 0, false, true, true,
817 ignore_attribute, false },
818 { "no_split_stack", 0, 0, true, false, false,
819 handle_no_split_stack_attribute, false },
820 /* For internal use (marking of builtins and runtime functions) only.
821 The name contains space to prevent its usage in source code. */
822 { "fn spec", 1, 1, false, true, true,
823 handle_fnspec_attribute, false },
824 { "warn_unused", 0, 0, false, false, false,
825 handle_warn_unused_attribute, false },
826 { "returns_nonnull", 0, 0, false, true, true,
827 handle_returns_nonnull_attribute, false },
828 { "omp declare simd", 0, -1, true, false, false,
829 handle_omp_declare_simd_attribute, false },
830 { "cilk simd function", 0, -1, true, false, false,
831 handle_omp_declare_simd_attribute, false },
832 { "simd", 0, 1, true, false, false,
833 handle_simd_attribute, false },
834 { "omp declare target", 0, 0, true, false, false,
835 handle_omp_declare_target_attribute, false },
836 { "omp declare target link", 0, 0, true, false, false,
837 handle_omp_declare_target_attribute, false },
838 { "alloc_align", 1, 1, false, true, true,
839 handle_alloc_align_attribute, false },
840 { "assume_aligned", 1, 2, false, true, true,
841 handle_assume_aligned_attribute, false },
842 { "designated_init", 0, 0, false, true, false,
843 handle_designated_init_attribute, false },
844 { "bnd_variable_size", 0, 0, true, false, false,
845 handle_bnd_variable_size_attribute, false },
846 { "bnd_legacy", 0, 0, true, false, false,
847 handle_bnd_legacy, false },
848 { "bnd_instrument", 0, 0, true, false, false,
849 handle_bnd_instrument, false },
850 { NULL, 0, 0, false, false, false, NULL, false }
851 };
852
853 /* Give the specifications for the format attributes, used by C and all
854 descendants.
855
856 All attributes referencing arguments should be additionally processed
857 in chkp_copy_function_type_adding_bounds for correct instrumentation
858 by Pointer Bounds Checker.
859 Current list of processed format attributes: format, format_arg. */
860 const struct attribute_spec c_common_format_attribute_table[] =
861 {
862 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
863 affects_type_identity } */
864 { "format", 3, 3, false, true, true,
865 handle_format_attribute, false },
866 { "format_arg", 1, 1, false, true, true,
867 handle_format_arg_attribute, false },
868 { NULL, 0, 0, false, false, false, NULL, false }
869 };
870
871 /* Return identifier for address space AS. */
872
873 const char *
874 c_addr_space_name (addr_space_t as)
875 {
876 int rid = RID_FIRST_ADDR_SPACE + as;
877 gcc_assert (ridpointers [rid]);
878 return IDENTIFIER_POINTER (ridpointers [rid]);
879 }
880
881 /* Push current bindings for the function name VAR_DECLS. */
882
883 void
884 start_fname_decls (void)
885 {
886 unsigned ix;
887 tree saved = NULL_TREE;
888
889 for (ix = 0; fname_vars[ix].decl; ix++)
890 {
891 tree decl = *fname_vars[ix].decl;
892
893 if (decl)
894 {
895 saved = tree_cons (decl, build_int_cst (integer_type_node, ix),
896 saved);
897 *fname_vars[ix].decl = NULL_TREE;
898 }
899 }
900 if (saved || saved_function_name_decls)
901 /* Normally they'll have been NULL, so only push if we've got a
902 stack, or they are non-NULL. */
903 saved_function_name_decls = tree_cons (saved, NULL_TREE,
904 saved_function_name_decls);
905 }
906
907 /* Finish up the current bindings, adding them into the current function's
908 statement tree. This must be done _before_ finish_stmt_tree is called.
909 If there is no current function, we must be at file scope and no statements
910 are involved. Pop the previous bindings. */
911
912 void
913 finish_fname_decls (void)
914 {
915 unsigned ix;
916 tree stmts = NULL_TREE;
917 tree stack = saved_function_name_decls;
918
919 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
920 append_to_statement_list (TREE_VALUE (stack), &stmts);
921
922 if (stmts)
923 {
924 tree *bodyp = &DECL_SAVED_TREE (current_function_decl);
925
926 if (TREE_CODE (*bodyp) == BIND_EXPR)
927 bodyp = &BIND_EXPR_BODY (*bodyp);
928
929 append_to_statement_list_force (*bodyp, &stmts);
930 *bodyp = stmts;
931 }
932
933 for (ix = 0; fname_vars[ix].decl; ix++)
934 *fname_vars[ix].decl = NULL_TREE;
935
936 if (stack)
937 {
938 /* We had saved values, restore them. */
939 tree saved;
940
941 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
942 {
943 tree decl = TREE_PURPOSE (saved);
944 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
945
946 *fname_vars[ix].decl = decl;
947 }
948 stack = TREE_CHAIN (stack);
949 }
950 saved_function_name_decls = stack;
951 }
952
953 /* Return the text name of the current function, suitably prettified
954 by PRETTY_P. Return string must be freed by caller. */
955
956 const char *
957 fname_as_string (int pretty_p)
958 {
959 const char *name = "top level";
960 char *namep;
961 int vrb = 2, len;
962 cpp_string cstr = { 0, 0 }, strname;
963
964 if (!pretty_p)
965 {
966 name = "";
967 vrb = 0;
968 }
969
970 if (current_function_decl)
971 name = lang_hooks.decl_printable_name (current_function_decl, vrb);
972
973 len = strlen (name) + 3; /* Two for '"'s. One for NULL. */
974
975 namep = XNEWVEC (char, len);
976 snprintf (namep, len, "\"%s\"", name);
977 strname.text = (unsigned char *) namep;
978 strname.len = len - 1;
979
980 if (cpp_interpret_string (parse_in, &strname, 1, &cstr, CPP_STRING))
981 {
982 XDELETEVEC (namep);
983 return (const char *) cstr.text;
984 }
985
986 return namep;
987 }
988
989 /* Return the VAR_DECL for a const char array naming the current
990 function. If the VAR_DECL has not yet been created, create it
991 now. RID indicates how it should be formatted and IDENTIFIER_NODE
992 ID is its name (unfortunately C and C++ hold the RID values of
993 keywords in different places, so we can't derive RID from ID in
994 this language independent code. LOC is the location of the
995 function. */
996
997 tree
998 fname_decl (location_t loc, unsigned int rid, tree id)
999 {
1000 unsigned ix;
1001 tree decl = NULL_TREE;
1002
1003 for (ix = 0; fname_vars[ix].decl; ix++)
1004 if (fname_vars[ix].rid == rid)
1005 break;
1006
1007 decl = *fname_vars[ix].decl;
1008 if (!decl)
1009 {
1010 /* If a tree is built here, it would normally have the lineno of
1011 the current statement. Later this tree will be moved to the
1012 beginning of the function and this line number will be wrong.
1013 To avoid this problem set the lineno to 0 here; that prevents
1014 it from appearing in the RTL. */
1015 tree stmts;
1016 location_t saved_location = input_location;
1017 input_location = UNKNOWN_LOCATION;
1018
1019 stmts = push_stmt_list ();
1020 decl = (*make_fname_decl) (loc, id, fname_vars[ix].pretty);
1021 stmts = pop_stmt_list (stmts);
1022 if (!IS_EMPTY_STMT (stmts))
1023 saved_function_name_decls
1024 = tree_cons (decl, stmts, saved_function_name_decls);
1025 *fname_vars[ix].decl = decl;
1026 input_location = saved_location;
1027 }
1028 if (!ix && !current_function_decl)
1029 pedwarn (loc, 0, "%qD is not defined outside of function scope", decl);
1030
1031 return decl;
1032 }
1033
1034 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
1035
1036 tree
1037 fix_string_type (tree value)
1038 {
1039 int length = TREE_STRING_LENGTH (value);
1040 int nchars;
1041 tree e_type, i_type, a_type;
1042
1043 /* Compute the number of elements, for the array type. */
1044 if (TREE_TYPE (value) == char_array_type_node || !TREE_TYPE (value))
1045 {
1046 nchars = length;
1047 e_type = char_type_node;
1048 }
1049 else if (TREE_TYPE (value) == char16_array_type_node)
1050 {
1051 nchars = length / (TYPE_PRECISION (char16_type_node) / BITS_PER_UNIT);
1052 e_type = char16_type_node;
1053 }
1054 else if (TREE_TYPE (value) == char32_array_type_node)
1055 {
1056 nchars = length / (TYPE_PRECISION (char32_type_node) / BITS_PER_UNIT);
1057 e_type = char32_type_node;
1058 }
1059 else
1060 {
1061 nchars = length / (TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT);
1062 e_type = wchar_type_node;
1063 }
1064
1065 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
1066 limit in C++98 Annex B is very large (65536) and is not normative,
1067 so we do not diagnose it (warn_overlength_strings is forced off
1068 in c_common_post_options). */
1069 if (warn_overlength_strings)
1070 {
1071 const int nchars_max = flag_isoc99 ? 4095 : 509;
1072 const int relevant_std = flag_isoc99 ? 99 : 90;
1073 if (nchars - 1 > nchars_max)
1074 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
1075 separate the %d from the 'C'. 'ISO' should not be
1076 translated, but it may be moved after 'C%d' in languages
1077 where modifiers follow nouns. */
1078 pedwarn (input_location, OPT_Woverlength_strings,
1079 "string length %qd is greater than the length %qd "
1080 "ISO C%d compilers are required to support",
1081 nchars - 1, nchars_max, relevant_std);
1082 }
1083
1084 /* Create the array type for the string constant. The ISO C++
1085 standard says that a string literal has type `const char[N]' or
1086 `const wchar_t[N]'. We use the same logic when invoked as a C
1087 front-end with -Wwrite-strings.
1088 ??? We should change the type of an expression depending on the
1089 state of a warning flag. We should just be warning -- see how
1090 this is handled in the C++ front-end for the deprecated implicit
1091 conversion from string literals to `char*' or `wchar_t*'.
1092
1093 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
1094 array type being the unqualified version of that type.
1095 Therefore, if we are constructing an array of const char, we must
1096 construct the matching unqualified array type first. The C front
1097 end does not require this, but it does no harm, so we do it
1098 unconditionally. */
1099 i_type = build_index_type (size_int (nchars - 1));
1100 a_type = build_array_type (e_type, i_type);
1101 if (c_dialect_cxx() || warn_write_strings)
1102 a_type = c_build_qualified_type (a_type, TYPE_QUAL_CONST);
1103
1104 TREE_TYPE (value) = a_type;
1105 TREE_CONSTANT (value) = 1;
1106 TREE_READONLY (value) = 1;
1107 TREE_STATIC (value) = 1;
1108 return value;
1109 }
1110
1111 /* Given a string of type STRING_TYPE, determine what kind of string
1112 token would give an equivalent execution encoding: CPP_STRING,
1113 CPP_STRING16, or CPP_STRING32. Return CPP_OTHER in case of error.
1114 This may not be exactly the string token type that initially created
1115 the string, since CPP_WSTRING is indistinguishable from the 16/32 bit
1116 string type at this point.
1117
1118 This effectively reverses part of the logic in lex_string and
1119 fix_string_type. */
1120
1121 static enum cpp_ttype
1122 get_cpp_ttype_from_string_type (tree string_type)
1123 {
1124 gcc_assert (string_type);
1125 if (TREE_CODE (string_type) == POINTER_TYPE)
1126 string_type = TREE_TYPE (string_type);
1127
1128 if (TREE_CODE (string_type) != ARRAY_TYPE)
1129 return CPP_OTHER;
1130
1131 tree element_type = TREE_TYPE (string_type);
1132 if (TREE_CODE (element_type) != INTEGER_TYPE)
1133 return CPP_OTHER;
1134
1135 int bits_per_character = TYPE_PRECISION (element_type);
1136 switch (bits_per_character)
1137 {
1138 case 8:
1139 return CPP_STRING; /* It could have also been CPP_UTF8STRING. */
1140 case 16:
1141 return CPP_STRING16;
1142 case 32:
1143 return CPP_STRING32;
1144 }
1145
1146 return CPP_OTHER;
1147 }
1148
1149 /* The global record of string concatentations, for use in
1150 extracting locations within string literals. */
1151
1152 GTY(()) string_concat_db *g_string_concat_db;
1153
1154 /* Implementation of LANG_HOOKS_GET_SUBSTRING_LOCATION. */
1155
1156 const char *
1157 c_get_substring_location (const substring_loc &substr_loc,
1158 location_t *out_loc)
1159 {
1160 enum cpp_ttype tok_type
1161 = get_cpp_ttype_from_string_type (substr_loc.get_string_type ());
1162 if (tok_type == CPP_OTHER)
1163 return "unrecognized string type";
1164
1165 return get_source_location_for_substring (parse_in, g_string_concat_db,
1166 substr_loc.get_fmt_string_loc (),
1167 tok_type,
1168 substr_loc.get_caret_idx (),
1169 substr_loc.get_start_idx (),
1170 substr_loc.get_end_idx (),
1171 out_loc);
1172 }
1173
1174 \f
1175 /* Fold X for consideration by one of the warning functions when checking
1176 whether an expression has a constant value. */
1177
1178 static tree
1179 fold_for_warn (tree x)
1180 {
1181 if (c_dialect_cxx ())
1182 return c_fully_fold (x, /*for_init*/false, /*maybe_constp*/NULL);
1183 else
1184 /* The C front-end has already folded X appropriately. */
1185 return x;
1186 }
1187
1188 /* Print a warning if a constant expression had overflow in folding.
1189 Invoke this function on every expression that the language
1190 requires to be a constant expression.
1191 Note the ANSI C standard says it is erroneous for a
1192 constant expression to overflow. */
1193
1194 void
1195 constant_expression_warning (tree value)
1196 {
1197 if (warn_overflow && pedantic
1198 && (TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1199 || TREE_CODE (value) == FIXED_CST
1200 || TREE_CODE (value) == VECTOR_CST
1201 || TREE_CODE (value) == COMPLEX_CST)
1202 && TREE_OVERFLOW (value))
1203 pedwarn (input_location, OPT_Woverflow, "overflow in constant expression");
1204 }
1205
1206 /* The same as above but print an unconditional error. */
1207 void
1208 constant_expression_error (tree value)
1209 {
1210 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1211 || TREE_CODE (value) == FIXED_CST
1212 || TREE_CODE (value) == VECTOR_CST
1213 || TREE_CODE (value) == COMPLEX_CST)
1214 && TREE_OVERFLOW (value))
1215 error ("overflow in constant expression");
1216 }
1217
1218 /* Print a warning if an expression had overflow in folding and its
1219 operands hadn't.
1220
1221 Invoke this function on every expression that
1222 (1) appears in the source code, and
1223 (2) is a constant expression that overflowed, and
1224 (3) is not already checked by convert_and_check;
1225 however, do not invoke this function on operands of explicit casts
1226 or when the expression is the result of an operator and any operand
1227 already overflowed. */
1228
1229 void
1230 overflow_warning (location_t loc, tree value)
1231 {
1232 if (c_inhibit_evaluation_warnings != 0)
1233 return;
1234
1235 switch (TREE_CODE (value))
1236 {
1237 case INTEGER_CST:
1238 warning_at (loc, OPT_Woverflow, "integer overflow in expression");
1239 break;
1240
1241 case REAL_CST:
1242 warning_at (loc, OPT_Woverflow,
1243 "floating point overflow in expression");
1244 break;
1245
1246 case FIXED_CST:
1247 warning_at (loc, OPT_Woverflow, "fixed-point overflow in expression");
1248 break;
1249
1250 case VECTOR_CST:
1251 warning_at (loc, OPT_Woverflow, "vector overflow in expression");
1252 break;
1253
1254 case COMPLEX_CST:
1255 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST)
1256 warning_at (loc, OPT_Woverflow,
1257 "complex integer overflow in expression");
1258 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST)
1259 warning_at (loc, OPT_Woverflow,
1260 "complex floating point overflow in expression");
1261 break;
1262
1263 default:
1264 break;
1265 }
1266 }
1267
1268 /* Warn about uses of logical || / && operator in a context where it
1269 is likely that the bitwise equivalent was intended by the
1270 programmer. We have seen an expression in which CODE is a binary
1271 operator used to combine expressions OP_LEFT and OP_RIGHT, which before folding
1272 had CODE_LEFT and CODE_RIGHT, into an expression of type TYPE. */
1273 void
1274 warn_logical_operator (location_t location, enum tree_code code, tree type,
1275 enum tree_code code_left, tree op_left,
1276 enum tree_code ARG_UNUSED (code_right), tree op_right)
1277 {
1278 int or_op = (code == TRUTH_ORIF_EXPR || code == TRUTH_OR_EXPR);
1279 int in0_p, in1_p, in_p;
1280 tree low0, low1, low, high0, high1, high, lhs, rhs, tem;
1281 bool strict_overflow_p = false;
1282
1283 if (code != TRUTH_ANDIF_EXPR
1284 && code != TRUTH_AND_EXPR
1285 && code != TRUTH_ORIF_EXPR
1286 && code != TRUTH_OR_EXPR)
1287 return;
1288
1289 /* We don't want to warn if either operand comes from a macro
1290 expansion. ??? This doesn't work with e.g. NEGATE_EXPR yet;
1291 see PR61534. */
1292 if (from_macro_expansion_at (EXPR_LOCATION (op_left))
1293 || from_macro_expansion_at (EXPR_LOCATION (op_right)))
1294 return;
1295
1296 /* Warn if &&/|| are being used in a context where it is
1297 likely that the bitwise equivalent was intended by the
1298 programmer. That is, an expression such as op && MASK
1299 where op should not be any boolean expression, nor a
1300 constant, and mask seems to be a non-boolean integer constant. */
1301 if (TREE_CODE (op_right) == CONST_DECL)
1302 /* An enumerator counts as a constant. */
1303 op_right = DECL_INITIAL (op_right);
1304 if (!truth_value_p (code_left)
1305 && INTEGRAL_TYPE_P (TREE_TYPE (op_left))
1306 && !CONSTANT_CLASS_P (op_left)
1307 && !TREE_NO_WARNING (op_left)
1308 && TREE_CODE (op_right) == INTEGER_CST
1309 && !integer_zerop (op_right)
1310 && !integer_onep (op_right))
1311 {
1312 if (or_op)
1313 warning_at (location, OPT_Wlogical_op, "logical %<or%>"
1314 " applied to non-boolean constant");
1315 else
1316 warning_at (location, OPT_Wlogical_op, "logical %<and%>"
1317 " applied to non-boolean constant");
1318 TREE_NO_WARNING (op_left) = true;
1319 return;
1320 }
1321
1322 /* We do not warn for constants because they are typical of macro
1323 expansions that test for features. */
1324 if (CONSTANT_CLASS_P (fold_for_warn (op_left))
1325 || CONSTANT_CLASS_P (fold_for_warn (op_right)))
1326 return;
1327
1328 /* This warning only makes sense with logical operands. */
1329 if (!(truth_value_p (TREE_CODE (op_left))
1330 || INTEGRAL_TYPE_P (TREE_TYPE (op_left)))
1331 || !(truth_value_p (TREE_CODE (op_right))
1332 || INTEGRAL_TYPE_P (TREE_TYPE (op_right))))
1333 return;
1334
1335 /* The range computations only work with scalars. */
1336 if (VECTOR_TYPE_P (TREE_TYPE (op_left))
1337 || VECTOR_TYPE_P (TREE_TYPE (op_right)))
1338 return;
1339
1340 /* We first test whether either side separately is trivially true
1341 (with OR) or trivially false (with AND). If so, do not warn.
1342 This is a common idiom for testing ranges of data types in
1343 portable code. */
1344 lhs = make_range (op_left, &in0_p, &low0, &high0, &strict_overflow_p);
1345 if (!lhs)
1346 return;
1347 if (TREE_CODE (lhs) == C_MAYBE_CONST_EXPR)
1348 lhs = C_MAYBE_CONST_EXPR_EXPR (lhs);
1349
1350 /* If this is an OR operation, invert both sides; now, the result
1351 should be always false to get a warning. */
1352 if (or_op)
1353 in0_p = !in0_p;
1354
1355 tem = build_range_check (UNKNOWN_LOCATION, type, lhs, in0_p, low0, high0);
1356 if (tem && integer_zerop (tem))
1357 return;
1358
1359 rhs = make_range (op_right, &in1_p, &low1, &high1, &strict_overflow_p);
1360 if (!rhs)
1361 return;
1362 if (TREE_CODE (rhs) == C_MAYBE_CONST_EXPR)
1363 rhs = C_MAYBE_CONST_EXPR_EXPR (rhs);
1364
1365 /* If this is an OR operation, invert both sides; now, the result
1366 should be always false to get a warning. */
1367 if (or_op)
1368 in1_p = !in1_p;
1369
1370 tem = build_range_check (UNKNOWN_LOCATION, type, rhs, in1_p, low1, high1);
1371 if (tem && integer_zerop (tem))
1372 return;
1373
1374 /* If both expressions have the same operand, if we can merge the
1375 ranges, ... */
1376 if (operand_equal_p (lhs, rhs, 0)
1377 && merge_ranges (&in_p, &low, &high, in0_p, low0, high0,
1378 in1_p, low1, high1))
1379 {
1380 tem = build_range_check (UNKNOWN_LOCATION, type, lhs, in_p, low, high);
1381 /* ... and if the range test is always false, then warn. */
1382 if (tem && integer_zerop (tem))
1383 {
1384 if (or_op)
1385 warning_at (location, OPT_Wlogical_op,
1386 "logical %<or%> of collectively exhaustive tests is "
1387 "always true");
1388 else
1389 warning_at (location, OPT_Wlogical_op,
1390 "logical %<and%> of mutually exclusive tests is "
1391 "always false");
1392 }
1393 /* Or warn if the operands have exactly the same range, e.g.
1394 A > 0 && A > 0. */
1395 else if (tree_int_cst_equal (low0, low1)
1396 && tree_int_cst_equal (high0, high1))
1397 {
1398 if (or_op)
1399 warning_at (location, OPT_Wlogical_op,
1400 "logical %<or%> of equal expressions");
1401 else
1402 warning_at (location, OPT_Wlogical_op,
1403 "logical %<and%> of equal expressions");
1404 }
1405 }
1406 }
1407
1408 /* Helper function for warn_tautological_cmp. Look for ARRAY_REFs
1409 with constant indices. */
1410
1411 static tree
1412 find_array_ref_with_const_idx_r (tree *expr_p, int *walk_subtrees, void *data)
1413 {
1414 tree expr = *expr_p;
1415
1416 if ((TREE_CODE (expr) == ARRAY_REF
1417 || TREE_CODE (expr) == ARRAY_RANGE_REF)
1418 && TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST)
1419 {
1420 *(bool *) data = true;
1421 *walk_subtrees = 0;
1422 }
1423
1424 return NULL_TREE;
1425 }
1426
1427 /* Warn if a self-comparison always evaluates to true or false. LOC
1428 is the location of the comparison with code CODE, LHS and RHS are
1429 operands of the comparison. */
1430
1431 void
1432 warn_tautological_cmp (location_t loc, enum tree_code code, tree lhs, tree rhs)
1433 {
1434 if (TREE_CODE_CLASS (code) != tcc_comparison)
1435 return;
1436
1437 /* Don't warn for various macro expansions. */
1438 if (from_macro_expansion_at (loc)
1439 || from_macro_expansion_at (EXPR_LOCATION (lhs))
1440 || from_macro_expansion_at (EXPR_LOCATION (rhs)))
1441 return;
1442
1443 /* We do not warn for constants because they are typical of macro
1444 expansions that test for features, sizeof, and similar. */
1445 if (CONSTANT_CLASS_P (fold_for_warn (lhs))
1446 || CONSTANT_CLASS_P (fold_for_warn (rhs)))
1447 return;
1448
1449 /* Don't warn for e.g.
1450 HOST_WIDE_INT n;
1451 ...
1452 if (n == (long) n) ...
1453 */
1454 if ((CONVERT_EXPR_P (lhs) || TREE_CODE (lhs) == NON_LVALUE_EXPR)
1455 || (CONVERT_EXPR_P (rhs) || TREE_CODE (rhs) == NON_LVALUE_EXPR))
1456 return;
1457
1458 /* Don't warn if either LHS or RHS has an IEEE floating-point type.
1459 It could be a NaN, and NaN never compares equal to anything, even
1460 itself. */
1461 if (FLOAT_TYPE_P (TREE_TYPE (lhs)) || FLOAT_TYPE_P (TREE_TYPE (rhs)))
1462 return;
1463
1464 if (operand_equal_p (lhs, rhs, 0))
1465 {
1466 /* Don't warn about array references with constant indices;
1467 these are likely to come from a macro. */
1468 bool found = false;
1469 walk_tree_without_duplicates (&lhs, find_array_ref_with_const_idx_r,
1470 &found);
1471 if (found)
1472 return;
1473 const bool always_true = (code == EQ_EXPR || code == LE_EXPR
1474 || code == GE_EXPR || code == UNLE_EXPR
1475 || code == UNGE_EXPR || code == UNEQ_EXPR);
1476 if (always_true)
1477 warning_at (loc, OPT_Wtautological_compare,
1478 "self-comparison always evaluates to true");
1479 else
1480 warning_at (loc, OPT_Wtautological_compare,
1481 "self-comparison always evaluates to false");
1482 }
1483 }
1484
1485 /* Return true iff T is a boolean promoted to int. */
1486
1487 static bool
1488 bool_promoted_to_int_p (tree t)
1489 {
1490 return (CONVERT_EXPR_P (t)
1491 && TREE_TYPE (t) == integer_type_node
1492 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == BOOLEAN_TYPE);
1493 }
1494
1495 /* Return true iff EXPR only contains boolean operands, or comparisons. */
1496
1497 static bool
1498 expr_has_boolean_operands_p (tree expr)
1499 {
1500 STRIP_NOPS (expr);
1501
1502 if (CONVERT_EXPR_P (expr))
1503 return bool_promoted_to_int_p (expr);
1504 else if (UNARY_CLASS_P (expr))
1505 return expr_has_boolean_operands_p (TREE_OPERAND (expr, 0));
1506 else if (BINARY_CLASS_P (expr))
1507 return (expr_has_boolean_operands_p (TREE_OPERAND (expr, 0))
1508 && expr_has_boolean_operands_p (TREE_OPERAND (expr, 1)));
1509 else if (COMPARISON_CLASS_P (expr))
1510 return true;
1511 else
1512 return false;
1513 }
1514
1515 /* Warn about logical not used on the left hand side operand of a comparison.
1516 This function assumes that the LHS is inside of TRUTH_NOT_EXPR.
1517 Do not warn if RHS is of a boolean type, a logical operator, or
1518 a comparison. */
1519
1520 void
1521 warn_logical_not_parentheses (location_t location, enum tree_code code,
1522 tree lhs, tree rhs)
1523 {
1524 if (TREE_CODE_CLASS (code) != tcc_comparison
1525 || TREE_TYPE (rhs) == NULL_TREE
1526 || TREE_CODE (TREE_TYPE (rhs)) == BOOLEAN_TYPE
1527 || truth_value_p (TREE_CODE (rhs)))
1528 return;
1529
1530 /* Don't warn for expression like !x == ~(bool1 | bool2). */
1531 if (expr_has_boolean_operands_p (rhs))
1532 return;
1533
1534 /* Don't warn for !x == 0 or !y != 0, those are equivalent to
1535 !(x == 0) or !(y != 0). */
1536 if ((code == EQ_EXPR || code == NE_EXPR)
1537 && integer_zerop (rhs))
1538 return;
1539
1540 if (warning_at (location, OPT_Wlogical_not_parentheses,
1541 "logical not is only applied to the left hand side of "
1542 "comparison")
1543 && EXPR_HAS_LOCATION (lhs))
1544 {
1545 location_t lhs_loc = EXPR_LOCATION (lhs);
1546 rich_location richloc (line_table, lhs_loc);
1547 richloc.add_fixit_insert_before (lhs_loc, "(");
1548 richloc.add_fixit_insert_after (lhs_loc, ")");
1549 inform_at_rich_loc (&richloc, "add parentheses around left hand side "
1550 "expression to silence this warning");
1551 }
1552 }
1553
1554 /* Warn if EXP contains any computations whose results are not used.
1555 Return true if a warning is printed; false otherwise. LOCUS is the
1556 (potential) location of the expression. */
1557
1558 bool
1559 warn_if_unused_value (const_tree exp, location_t locus)
1560 {
1561 restart:
1562 if (TREE_USED (exp) || TREE_NO_WARNING (exp))
1563 return false;
1564
1565 /* Don't warn about void constructs. This includes casting to void,
1566 void function calls, and statement expressions with a final cast
1567 to void. */
1568 if (VOID_TYPE_P (TREE_TYPE (exp)))
1569 return false;
1570
1571 if (EXPR_HAS_LOCATION (exp))
1572 locus = EXPR_LOCATION (exp);
1573
1574 switch (TREE_CODE (exp))
1575 {
1576 case PREINCREMENT_EXPR:
1577 case POSTINCREMENT_EXPR:
1578 case PREDECREMENT_EXPR:
1579 case POSTDECREMENT_EXPR:
1580 case MODIFY_EXPR:
1581 case INIT_EXPR:
1582 case TARGET_EXPR:
1583 case CALL_EXPR:
1584 case TRY_CATCH_EXPR:
1585 case WITH_CLEANUP_EXPR:
1586 case EXIT_EXPR:
1587 case VA_ARG_EXPR:
1588 return false;
1589
1590 case BIND_EXPR:
1591 /* For a binding, warn if no side effect within it. */
1592 exp = BIND_EXPR_BODY (exp);
1593 goto restart;
1594
1595 case SAVE_EXPR:
1596 case NON_LVALUE_EXPR:
1597 case NOP_EXPR:
1598 exp = TREE_OPERAND (exp, 0);
1599 goto restart;
1600
1601 case TRUTH_ORIF_EXPR:
1602 case TRUTH_ANDIF_EXPR:
1603 /* In && or ||, warn if 2nd operand has no side effect. */
1604 exp = TREE_OPERAND (exp, 1);
1605 goto restart;
1606
1607 case COMPOUND_EXPR:
1608 if (warn_if_unused_value (TREE_OPERAND (exp, 0), locus))
1609 return true;
1610 /* Let people do `(foo (), 0)' without a warning. */
1611 if (TREE_CONSTANT (TREE_OPERAND (exp, 1)))
1612 return false;
1613 exp = TREE_OPERAND (exp, 1);
1614 goto restart;
1615
1616 case COND_EXPR:
1617 /* If this is an expression with side effects, don't warn; this
1618 case commonly appears in macro expansions. */
1619 if (TREE_SIDE_EFFECTS (exp))
1620 return false;
1621 goto warn;
1622
1623 case INDIRECT_REF:
1624 /* Don't warn about automatic dereferencing of references, since
1625 the user cannot control it. */
1626 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == REFERENCE_TYPE)
1627 {
1628 exp = TREE_OPERAND (exp, 0);
1629 goto restart;
1630 }
1631 /* Fall through. */
1632
1633 default:
1634 /* Referencing a volatile value is a side effect, so don't warn. */
1635 if ((DECL_P (exp) || REFERENCE_CLASS_P (exp))
1636 && TREE_THIS_VOLATILE (exp))
1637 return false;
1638
1639 /* If this is an expression which has no operands, there is no value
1640 to be unused. There are no such language-independent codes,
1641 but front ends may define such. */
1642 if (EXPRESSION_CLASS_P (exp) && TREE_OPERAND_LENGTH (exp) == 0)
1643 return false;
1644
1645 warn:
1646 return warning_at (locus, OPT_Wunused_value, "value computed is not used");
1647 }
1648 }
1649
1650
1651 /* Print a warning about casts that might indicate violation
1652 of strict aliasing rules if -Wstrict-aliasing is used and
1653 strict aliasing mode is in effect. OTYPE is the original
1654 TREE_TYPE of EXPR, and TYPE the type we're casting to. */
1655
1656 bool
1657 strict_aliasing_warning (tree otype, tree type, tree expr)
1658 {
1659 /* Strip pointer conversion chains and get to the correct original type. */
1660 STRIP_NOPS (expr);
1661 otype = TREE_TYPE (expr);
1662
1663 if (!(flag_strict_aliasing
1664 && POINTER_TYPE_P (type)
1665 && POINTER_TYPE_P (otype)
1666 && !VOID_TYPE_P (TREE_TYPE (type)))
1667 /* If the type we are casting to is a ref-all pointer
1668 dereferencing it is always valid. */
1669 || TYPE_REF_CAN_ALIAS_ALL (type))
1670 return false;
1671
1672 if ((warn_strict_aliasing > 1) && TREE_CODE (expr) == ADDR_EXPR
1673 && (DECL_P (TREE_OPERAND (expr, 0))
1674 || handled_component_p (TREE_OPERAND (expr, 0))))
1675 {
1676 /* Casting the address of an object to non void pointer. Warn
1677 if the cast breaks type based aliasing. */
1678 if (!COMPLETE_TYPE_P (TREE_TYPE (type)) && warn_strict_aliasing == 2)
1679 {
1680 warning (OPT_Wstrict_aliasing, "type-punning to incomplete type "
1681 "might break strict-aliasing rules");
1682 return true;
1683 }
1684 else
1685 {
1686 /* warn_strict_aliasing >= 3. This includes the default (3).
1687 Only warn if the cast is dereferenced immediately. */
1688 alias_set_type set1 =
1689 get_alias_set (TREE_TYPE (TREE_OPERAND (expr, 0)));
1690 alias_set_type set2 = get_alias_set (TREE_TYPE (type));
1691
1692 if (set1 != set2 && set2 != 0
1693 && (set1 == 0
1694 || (!alias_set_subset_of (set2, set1)
1695 && !alias_sets_conflict_p (set1, set2))))
1696 {
1697 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1698 "pointer will break strict-aliasing rules");
1699 return true;
1700 }
1701 else if (warn_strict_aliasing == 2
1702 && !alias_sets_must_conflict_p (set1, set2))
1703 {
1704 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1705 "pointer might break strict-aliasing rules");
1706 return true;
1707 }
1708 }
1709 }
1710 else
1711 if ((warn_strict_aliasing == 1) && !VOID_TYPE_P (TREE_TYPE (otype)))
1712 {
1713 /* At this level, warn for any conversions, even if an address is
1714 not taken in the same statement. This will likely produce many
1715 false positives, but could be useful to pinpoint problems that
1716 are not revealed at higher levels. */
1717 alias_set_type set1 = get_alias_set (TREE_TYPE (otype));
1718 alias_set_type set2 = get_alias_set (TREE_TYPE (type));
1719 if (!COMPLETE_TYPE_P (type)
1720 || !alias_sets_must_conflict_p (set1, set2))
1721 {
1722 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1723 "pointer might break strict-aliasing rules");
1724 return true;
1725 }
1726 }
1727
1728 return false;
1729 }
1730
1731 /* Warn about memset (&a, 0, sizeof (&a)); and similar mistakes with
1732 sizeof as last operand of certain builtins. */
1733
1734 void
1735 sizeof_pointer_memaccess_warning (location_t *sizeof_arg_loc, tree callee,
1736 vec<tree, va_gc> *params, tree *sizeof_arg,
1737 bool (*comp_types) (tree, tree))
1738 {
1739 tree type, dest = NULL_TREE, src = NULL_TREE, tem;
1740 bool strop = false, cmp = false;
1741 unsigned int idx = ~0;
1742 location_t loc;
1743
1744 if (TREE_CODE (callee) != FUNCTION_DECL
1745 || DECL_BUILT_IN_CLASS (callee) != BUILT_IN_NORMAL
1746 || vec_safe_length (params) <= 1)
1747 return;
1748
1749 switch (DECL_FUNCTION_CODE (callee))
1750 {
1751 case BUILT_IN_STRNCMP:
1752 case BUILT_IN_STRNCASECMP:
1753 cmp = true;
1754 /* FALLTHRU */
1755 case BUILT_IN_STRNCPY:
1756 case BUILT_IN_STRNCPY_CHK:
1757 case BUILT_IN_STRNCAT:
1758 case BUILT_IN_STRNCAT_CHK:
1759 case BUILT_IN_STPNCPY:
1760 case BUILT_IN_STPNCPY_CHK:
1761 strop = true;
1762 /* FALLTHRU */
1763 case BUILT_IN_MEMCPY:
1764 case BUILT_IN_MEMCPY_CHK:
1765 case BUILT_IN_MEMMOVE:
1766 case BUILT_IN_MEMMOVE_CHK:
1767 if (params->length () < 3)
1768 return;
1769 src = (*params)[1];
1770 dest = (*params)[0];
1771 idx = 2;
1772 break;
1773 case BUILT_IN_BCOPY:
1774 if (params->length () < 3)
1775 return;
1776 src = (*params)[0];
1777 dest = (*params)[1];
1778 idx = 2;
1779 break;
1780 case BUILT_IN_MEMCMP:
1781 case BUILT_IN_BCMP:
1782 if (params->length () < 3)
1783 return;
1784 src = (*params)[1];
1785 dest = (*params)[0];
1786 idx = 2;
1787 cmp = true;
1788 break;
1789 case BUILT_IN_MEMSET:
1790 case BUILT_IN_MEMSET_CHK:
1791 if (params->length () < 3)
1792 return;
1793 dest = (*params)[0];
1794 idx = 2;
1795 break;
1796 case BUILT_IN_BZERO:
1797 dest = (*params)[0];
1798 idx = 1;
1799 break;
1800 case BUILT_IN_STRNDUP:
1801 src = (*params)[0];
1802 strop = true;
1803 idx = 1;
1804 break;
1805 case BUILT_IN_MEMCHR:
1806 if (params->length () < 3)
1807 return;
1808 src = (*params)[0];
1809 idx = 2;
1810 break;
1811 case BUILT_IN_SNPRINTF:
1812 case BUILT_IN_SNPRINTF_CHK:
1813 case BUILT_IN_VSNPRINTF:
1814 case BUILT_IN_VSNPRINTF_CHK:
1815 dest = (*params)[0];
1816 idx = 1;
1817 strop = true;
1818 break;
1819 default:
1820 break;
1821 }
1822
1823 if (idx >= 3)
1824 return;
1825
1826 if (sizeof_arg[idx] == NULL || sizeof_arg[idx] == error_mark_node)
1827 return;
1828
1829 type = TYPE_P (sizeof_arg[idx])
1830 ? sizeof_arg[idx] : TREE_TYPE (sizeof_arg[idx]);
1831 if (!POINTER_TYPE_P (type))
1832 return;
1833
1834 if (dest
1835 && (tem = tree_strip_nop_conversions (dest))
1836 && POINTER_TYPE_P (TREE_TYPE (tem))
1837 && comp_types (TREE_TYPE (TREE_TYPE (tem)), type))
1838 return;
1839
1840 if (src
1841 && (tem = tree_strip_nop_conversions (src))
1842 && POINTER_TYPE_P (TREE_TYPE (tem))
1843 && comp_types (TREE_TYPE (TREE_TYPE (tem)), type))
1844 return;
1845
1846 loc = sizeof_arg_loc[idx];
1847
1848 if (dest && !cmp)
1849 {
1850 if (!TYPE_P (sizeof_arg[idx])
1851 && operand_equal_p (dest, sizeof_arg[idx], 0)
1852 && comp_types (TREE_TYPE (dest), type))
1853 {
1854 if (TREE_CODE (sizeof_arg[idx]) == ADDR_EXPR && !strop)
1855 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1856 "argument to %<sizeof%> in %qD call is the same "
1857 "expression as the destination; did you mean to "
1858 "remove the addressof?", callee);
1859 else if ((TYPE_PRECISION (TREE_TYPE (type))
1860 == TYPE_PRECISION (char_type_node))
1861 || strop)
1862 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1863 "argument to %<sizeof%> in %qD call is the same "
1864 "expression as the destination; did you mean to "
1865 "provide an explicit length?", callee);
1866 else
1867 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1868 "argument to %<sizeof%> in %qD call is the same "
1869 "expression as the destination; did you mean to "
1870 "dereference it?", callee);
1871 return;
1872 }
1873
1874 if (POINTER_TYPE_P (TREE_TYPE (dest))
1875 && !strop
1876 && comp_types (TREE_TYPE (dest), type)
1877 && !VOID_TYPE_P (TREE_TYPE (type)))
1878 {
1879 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1880 "argument to %<sizeof%> in %qD call is the same "
1881 "pointer type %qT as the destination; expected %qT "
1882 "or an explicit length", callee, TREE_TYPE (dest),
1883 TREE_TYPE (TREE_TYPE (dest)));
1884 return;
1885 }
1886 }
1887
1888 if (src && !cmp)
1889 {
1890 if (!TYPE_P (sizeof_arg[idx])
1891 && operand_equal_p (src, sizeof_arg[idx], 0)
1892 && comp_types (TREE_TYPE (src), type))
1893 {
1894 if (TREE_CODE (sizeof_arg[idx]) == ADDR_EXPR && !strop)
1895 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1896 "argument to %<sizeof%> in %qD call is the same "
1897 "expression as the source; did you mean to "
1898 "remove the addressof?", callee);
1899 else if ((TYPE_PRECISION (TREE_TYPE (type))
1900 == TYPE_PRECISION (char_type_node))
1901 || strop)
1902 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1903 "argument to %<sizeof%> in %qD call is the same "
1904 "expression as the source; did you mean to "
1905 "provide an explicit length?", callee);
1906 else
1907 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1908 "argument to %<sizeof%> in %qD call is the same "
1909 "expression as the source; did you mean to "
1910 "dereference it?", callee);
1911 return;
1912 }
1913
1914 if (POINTER_TYPE_P (TREE_TYPE (src))
1915 && !strop
1916 && comp_types (TREE_TYPE (src), type)
1917 && !VOID_TYPE_P (TREE_TYPE (type)))
1918 {
1919 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1920 "argument to %<sizeof%> in %qD call is the same "
1921 "pointer type %qT as the source; expected %qT "
1922 "or an explicit length", callee, TREE_TYPE (src),
1923 TREE_TYPE (TREE_TYPE (src)));
1924 return;
1925 }
1926 }
1927
1928 if (dest)
1929 {
1930 if (!TYPE_P (sizeof_arg[idx])
1931 && operand_equal_p (dest, sizeof_arg[idx], 0)
1932 && comp_types (TREE_TYPE (dest), type))
1933 {
1934 if (TREE_CODE (sizeof_arg[idx]) == ADDR_EXPR && !strop)
1935 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1936 "argument to %<sizeof%> in %qD call is the same "
1937 "expression as the first source; did you mean to "
1938 "remove the addressof?", callee);
1939 else if ((TYPE_PRECISION (TREE_TYPE (type))
1940 == TYPE_PRECISION (char_type_node))
1941 || strop)
1942 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1943 "argument to %<sizeof%> in %qD call is the same "
1944 "expression as the first source; did you mean to "
1945 "provide an explicit length?", callee);
1946 else
1947 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1948 "argument to %<sizeof%> in %qD call is the same "
1949 "expression as the first source; did you mean to "
1950 "dereference it?", callee);
1951 return;
1952 }
1953
1954 if (POINTER_TYPE_P (TREE_TYPE (dest))
1955 && !strop
1956 && comp_types (TREE_TYPE (dest), type)
1957 && !VOID_TYPE_P (TREE_TYPE (type)))
1958 {
1959 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1960 "argument to %<sizeof%> in %qD call is the same "
1961 "pointer type %qT as the first source; expected %qT "
1962 "or an explicit length", callee, TREE_TYPE (dest),
1963 TREE_TYPE (TREE_TYPE (dest)));
1964 return;
1965 }
1966 }
1967
1968 if (src)
1969 {
1970 if (!TYPE_P (sizeof_arg[idx])
1971 && operand_equal_p (src, sizeof_arg[idx], 0)
1972 && comp_types (TREE_TYPE (src), type))
1973 {
1974 if (TREE_CODE (sizeof_arg[idx]) == ADDR_EXPR && !strop)
1975 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1976 "argument to %<sizeof%> in %qD call is the same "
1977 "expression as the second source; did you mean to "
1978 "remove the addressof?", callee);
1979 else if ((TYPE_PRECISION (TREE_TYPE (type))
1980 == TYPE_PRECISION (char_type_node))
1981 || strop)
1982 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1983 "argument to %<sizeof%> in %qD call is the same "
1984 "expression as the second source; did you mean to "
1985 "provide an explicit length?", callee);
1986 else
1987 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
1988 "argument to %<sizeof%> in %qD call is the same "
1989 "expression as the second source; did you mean to "
1990 "dereference it?", callee);
1991 return;
1992 }
1993
1994 if (POINTER_TYPE_P (TREE_TYPE (src))
1995 && !strop
1996 && comp_types (TREE_TYPE (src), type)
1997 && !VOID_TYPE_P (TREE_TYPE (type)))
1998 {
1999 warning_at (loc, OPT_Wsizeof_pointer_memaccess,
2000 "argument to %<sizeof%> in %qD call is the same "
2001 "pointer type %qT as the second source; expected %qT "
2002 "or an explicit length", callee, TREE_TYPE (src),
2003 TREE_TYPE (TREE_TYPE (src)));
2004 return;
2005 }
2006 }
2007
2008 }
2009
2010 /* Warn for unlikely, improbable, or stupid DECL declarations
2011 of `main'. */
2012
2013 void
2014 check_main_parameter_types (tree decl)
2015 {
2016 function_args_iterator iter;
2017 tree type;
2018 int argct = 0;
2019
2020 FOREACH_FUNCTION_ARGS (TREE_TYPE (decl), type, iter)
2021 {
2022 /* XXX void_type_node belies the abstraction. */
2023 if (type == void_type_node || type == error_mark_node )
2024 break;
2025
2026 tree t = type;
2027 if (TYPE_ATOMIC (t))
2028 pedwarn (input_location, OPT_Wmain,
2029 "%<_Atomic%>-qualified parameter type %qT of %q+D",
2030 type, decl);
2031 while (POINTER_TYPE_P (t))
2032 {
2033 t = TREE_TYPE (t);
2034 if (TYPE_ATOMIC (t))
2035 pedwarn (input_location, OPT_Wmain,
2036 "%<_Atomic%>-qualified parameter type %qT of %q+D",
2037 type, decl);
2038 }
2039
2040 ++argct;
2041 switch (argct)
2042 {
2043 case 1:
2044 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
2045 pedwarn (input_location, OPT_Wmain,
2046 "first argument of %q+D should be %<int%>", decl);
2047 break;
2048
2049 case 2:
2050 if (TREE_CODE (type) != POINTER_TYPE
2051 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
2052 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
2053 != char_type_node))
2054 pedwarn (input_location, OPT_Wmain,
2055 "second argument of %q+D should be %<char **%>", decl);
2056 break;
2057
2058 case 3:
2059 if (TREE_CODE (type) != POINTER_TYPE
2060 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
2061 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
2062 != char_type_node))
2063 pedwarn (input_location, OPT_Wmain,
2064 "third argument of %q+D should probably be "
2065 "%<char **%>", decl);
2066 break;
2067 }
2068 }
2069
2070 /* It is intentional that this message does not mention the third
2071 argument because it's only mentioned in an appendix of the
2072 standard. */
2073 if (argct > 0 && (argct < 2 || argct > 3))
2074 pedwarn (input_location, OPT_Wmain,
2075 "%q+D takes only zero or two arguments", decl);
2076
2077 if (stdarg_p (TREE_TYPE (decl)))
2078 pedwarn (input_location, OPT_Wmain,
2079 "%q+D declared as variadic function", decl);
2080 }
2081
2082 /* vector_targets_convertible_p is used for vector pointer types. The
2083 callers perform various checks that the qualifiers are satisfactory,
2084 while OTOH vector_targets_convertible_p ignores the number of elements
2085 in the vectors. That's fine with vector pointers as we can consider,
2086 say, a vector of 8 elements as two consecutive vectors of 4 elements,
2087 and that does not require and conversion of the pointer values.
2088 In contrast, vector_types_convertible_p and
2089 vector_types_compatible_elements_p are used for vector value types. */
2090 /* True if pointers to distinct types T1 and T2 can be converted to
2091 each other without an explicit cast. Only returns true for opaque
2092 vector types. */
2093 bool
2094 vector_targets_convertible_p (const_tree t1, const_tree t2)
2095 {
2096 if (VECTOR_TYPE_P (t1) && VECTOR_TYPE_P (t2)
2097 && (TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
2098 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
2099 return true;
2100
2101 return false;
2102 }
2103
2104 /* vector_types_convertible_p is used for vector value types.
2105 It could in principle call vector_targets_convertible_p as a subroutine,
2106 but then the check for vector type would be duplicated with its callers,
2107 and also the purpose of vector_targets_convertible_p would become
2108 muddled.
2109 Where vector_types_convertible_p returns true, a conversion might still be
2110 needed to make the types match.
2111 In contrast, vector_targets_convertible_p is used for vector pointer
2112 values, and vector_types_compatible_elements_p is used specifically
2113 in the context for binary operators, as a check if use is possible without
2114 conversion. */
2115 /* True if vector types T1 and T2 can be converted to each other
2116 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
2117 can only be converted with -flax-vector-conversions yet that is not
2118 in effect, emit a note telling the user about that option if such
2119 a note has not previously been emitted. */
2120 bool
2121 vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note)
2122 {
2123 static bool emitted_lax_note = false;
2124 bool convertible_lax;
2125
2126 if ((TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
2127 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
2128 return true;
2129
2130 convertible_lax =
2131 (tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2))
2132 && (TREE_CODE (TREE_TYPE (t1)) != REAL_TYPE ||
2133 TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2))
2134 && (INTEGRAL_TYPE_P (TREE_TYPE (t1))
2135 == INTEGRAL_TYPE_P (TREE_TYPE (t2))));
2136
2137 if (!convertible_lax || flag_lax_vector_conversions)
2138 return convertible_lax;
2139
2140 if (TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
2141 && lang_hooks.types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
2142 return true;
2143
2144 if (emit_lax_note && !emitted_lax_note)
2145 {
2146 emitted_lax_note = true;
2147 inform (input_location, "use -flax-vector-conversions to permit "
2148 "conversions between vectors with differing "
2149 "element types or numbers of subparts");
2150 }
2151
2152 return false;
2153 }
2154
2155 /* Build a VEC_PERM_EXPR if V0, V1 and MASK are not error_mark_nodes
2156 and have vector types, V0 has the same type as V1, and the number of
2157 elements of V0, V1, MASK is the same.
2158
2159 In case V1 is a NULL_TREE it is assumed that __builtin_shuffle was
2160 called with two arguments. In this case implementation passes the
2161 first argument twice in order to share the same tree code. This fact
2162 could enable the mask-values being twice the vector length. This is
2163 an implementation accident and this semantics is not guaranteed to
2164 the user. */
2165 tree
2166 c_build_vec_perm_expr (location_t loc, tree v0, tree v1, tree mask,
2167 bool complain)
2168 {
2169 tree ret;
2170 bool wrap = true;
2171 bool maybe_const = false;
2172 bool two_arguments = false;
2173
2174 if (v1 == NULL_TREE)
2175 {
2176 two_arguments = true;
2177 v1 = v0;
2178 }
2179
2180 if (v0 == error_mark_node || v1 == error_mark_node
2181 || mask == error_mark_node)
2182 return error_mark_node;
2183
2184 if (!VECTOR_INTEGER_TYPE_P (TREE_TYPE (mask)))
2185 {
2186 if (complain)
2187 error_at (loc, "__builtin_shuffle last argument must "
2188 "be an integer vector");
2189 return error_mark_node;
2190 }
2191
2192 if (!VECTOR_TYPE_P (TREE_TYPE (v0))
2193 || !VECTOR_TYPE_P (TREE_TYPE (v1)))
2194 {
2195 if (complain)
2196 error_at (loc, "__builtin_shuffle arguments must be vectors");
2197 return error_mark_node;
2198 }
2199
2200 if (TYPE_MAIN_VARIANT (TREE_TYPE (v0)) != TYPE_MAIN_VARIANT (TREE_TYPE (v1)))
2201 {
2202 if (complain)
2203 error_at (loc, "__builtin_shuffle argument vectors must be of "
2204 "the same type");
2205 return error_mark_node;
2206 }
2207
2208 if (TYPE_VECTOR_SUBPARTS (TREE_TYPE (v0))
2209 != TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask))
2210 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (v1))
2211 != TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask)))
2212 {
2213 if (complain)
2214 error_at (loc, "__builtin_shuffle number of elements of the "
2215 "argument vector(s) and the mask vector should "
2216 "be the same");
2217 return error_mark_node;
2218 }
2219
2220 if (GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (v0))))
2221 != GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (mask)))))
2222 {
2223 if (complain)
2224 error_at (loc, "__builtin_shuffle argument vector(s) inner type "
2225 "must have the same size as inner type of the mask");
2226 return error_mark_node;
2227 }
2228
2229 if (!c_dialect_cxx ())
2230 {
2231 /* Avoid C_MAYBE_CONST_EXPRs inside VEC_PERM_EXPR. */
2232 v0 = c_fully_fold (v0, false, &maybe_const);
2233 wrap &= maybe_const;
2234
2235 if (two_arguments)
2236 v1 = v0 = save_expr (v0);
2237 else
2238 {
2239 v1 = c_fully_fold (v1, false, &maybe_const);
2240 wrap &= maybe_const;
2241 }
2242
2243 mask = c_fully_fold (mask, false, &maybe_const);
2244 wrap &= maybe_const;
2245 }
2246 else if (two_arguments)
2247 v1 = v0 = save_expr (v0);
2248
2249 ret = build3_loc (loc, VEC_PERM_EXPR, TREE_TYPE (v0), v0, v1, mask);
2250
2251 if (!c_dialect_cxx () && !wrap)
2252 ret = c_wrap_maybe_const (ret, true);
2253
2254 return ret;
2255 }
2256
2257 /* Like tree.c:get_narrower, but retain conversion from C++0x scoped enum
2258 to integral type. */
2259
2260 static tree
2261 c_common_get_narrower (tree op, int *unsignedp_ptr)
2262 {
2263 op = get_narrower (op, unsignedp_ptr);
2264
2265 if (TREE_CODE (TREE_TYPE (op)) == ENUMERAL_TYPE
2266 && ENUM_IS_SCOPED (TREE_TYPE (op)))
2267 {
2268 /* C++0x scoped enumerations don't implicitly convert to integral
2269 type; if we stripped an explicit conversion to a larger type we
2270 need to replace it so common_type will still work. */
2271 tree type = c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op)),
2272 TYPE_UNSIGNED (TREE_TYPE (op)));
2273 op = fold_convert (type, op);
2274 }
2275 return op;
2276 }
2277
2278 /* This is a helper function of build_binary_op.
2279
2280 For certain operations if both args were extended from the same
2281 smaller type, do the arithmetic in that type and then extend.
2282
2283 BITWISE indicates a bitwise operation.
2284 For them, this optimization is safe only if
2285 both args are zero-extended or both are sign-extended.
2286 Otherwise, we might change the result.
2287 Eg, (short)-1 | (unsigned short)-1 is (int)-1
2288 but calculated in (unsigned short) it would be (unsigned short)-1.
2289 */
2290 tree
2291 shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise)
2292 {
2293 int unsigned0, unsigned1;
2294 tree arg0, arg1;
2295 int uns;
2296 tree type;
2297
2298 /* Cast OP0 and OP1 to RESULT_TYPE. Doing so prevents
2299 excessive narrowing when we call get_narrower below. For
2300 example, suppose that OP0 is of unsigned int extended
2301 from signed char and that RESULT_TYPE is long long int.
2302 If we explicitly cast OP0 to RESULT_TYPE, OP0 would look
2303 like
2304
2305 (long long int) (unsigned int) signed_char
2306
2307 which get_narrower would narrow down to
2308
2309 (unsigned int) signed char
2310
2311 If we do not cast OP0 first, get_narrower would return
2312 signed_char, which is inconsistent with the case of the
2313 explicit cast. */
2314 op0 = convert (result_type, op0);
2315 op1 = convert (result_type, op1);
2316
2317 arg0 = c_common_get_narrower (op0, &unsigned0);
2318 arg1 = c_common_get_narrower (op1, &unsigned1);
2319
2320 /* UNS is 1 if the operation to be done is an unsigned one. */
2321 uns = TYPE_UNSIGNED (result_type);
2322
2323 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
2324 but it *requires* conversion to FINAL_TYPE. */
2325
2326 if ((TYPE_PRECISION (TREE_TYPE (op0))
2327 == TYPE_PRECISION (TREE_TYPE (arg0)))
2328 && TREE_TYPE (op0) != result_type)
2329 unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
2330 if ((TYPE_PRECISION (TREE_TYPE (op1))
2331 == TYPE_PRECISION (TREE_TYPE (arg1)))
2332 && TREE_TYPE (op1) != result_type)
2333 unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
2334
2335 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
2336
2337 /* For bitwise operations, signedness of nominal type
2338 does not matter. Consider only how operands were extended. */
2339 if (bitwise)
2340 uns = unsigned0;
2341
2342 /* Note that in all three cases below we refrain from optimizing
2343 an unsigned operation on sign-extended args.
2344 That would not be valid. */
2345
2346 /* Both args variable: if both extended in same way
2347 from same width, do it in that width.
2348 Do it unsigned if args were zero-extended. */
2349 if ((TYPE_PRECISION (TREE_TYPE (arg0))
2350 < TYPE_PRECISION (result_type))
2351 && (TYPE_PRECISION (TREE_TYPE (arg1))
2352 == TYPE_PRECISION (TREE_TYPE (arg0)))
2353 && unsigned0 == unsigned1
2354 && (unsigned0 || !uns))
2355 return c_common_signed_or_unsigned_type
2356 (unsigned0, common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
2357
2358 else if (TREE_CODE (arg0) == INTEGER_CST
2359 && (unsigned1 || !uns)
2360 && (TYPE_PRECISION (TREE_TYPE (arg1))
2361 < TYPE_PRECISION (result_type))
2362 && (type
2363 = c_common_signed_or_unsigned_type (unsigned1,
2364 TREE_TYPE (arg1)))
2365 && !POINTER_TYPE_P (type)
2366 && int_fits_type_p (arg0, type))
2367 return type;
2368
2369 else if (TREE_CODE (arg1) == INTEGER_CST
2370 && (unsigned0 || !uns)
2371 && (TYPE_PRECISION (TREE_TYPE (arg0))
2372 < TYPE_PRECISION (result_type))
2373 && (type
2374 = c_common_signed_or_unsigned_type (unsigned0,
2375 TREE_TYPE (arg0)))
2376 && !POINTER_TYPE_P (type)
2377 && int_fits_type_p (arg1, type))
2378 return type;
2379
2380 return result_type;
2381 }
2382
2383 /* Returns true iff any integer value of type FROM_TYPE can be represented as
2384 real of type TO_TYPE. This is a helper function for unsafe_conversion_p. */
2385
2386 static bool
2387 int_safely_convertible_to_real_p (const_tree from_type, const_tree to_type)
2388 {
2389 tree type_low_bound = TYPE_MIN_VALUE (from_type);
2390 tree type_high_bound = TYPE_MAX_VALUE (from_type);
2391 REAL_VALUE_TYPE real_low_bound =
2392 real_value_from_int_cst (0, type_low_bound);
2393 REAL_VALUE_TYPE real_high_bound =
2394 real_value_from_int_cst (0, type_high_bound);
2395
2396 return exact_real_truncate (TYPE_MODE (to_type), &real_low_bound)
2397 && exact_real_truncate (TYPE_MODE (to_type), &real_high_bound);
2398 }
2399
2400 /* Checks if expression EXPR of complex/real/integer type cannot be converted
2401 to the complex/real/integer type TYPE. Function returns non-zero when:
2402 * EXPR is a constant which cannot be exactly converted to TYPE.
2403 * EXPR is not a constant and size of EXPR's type > than size of TYPE,
2404 for EXPR type and TYPE being both integers or both real, or both
2405 complex.
2406 * EXPR is not a constant of complex type and TYPE is a real or
2407 an integer.
2408 * EXPR is not a constant of real type and TYPE is an integer.
2409 * EXPR is not a constant of integer type which cannot be
2410 exactly converted to real type.
2411
2412 Function allows conversions between types of different signedness and
2413 can return SAFE_CONVERSION (zero) in that case. Function can produce
2414 signedness warnings if PRODUCE_WARNS is true.
2415
2416 Function allows conversions from complex constants to non-complex types,
2417 provided that imaginary part is zero and real part can be safely converted
2418 to TYPE. */
2419
2420 enum conversion_safety
2421 unsafe_conversion_p (location_t loc, tree type, tree expr, bool produce_warns)
2422 {
2423 enum conversion_safety give_warning = SAFE_CONVERSION; /* is 0 or false */
2424 tree expr_type = TREE_TYPE (expr);
2425 loc = expansion_point_location_if_in_system_header (loc);
2426
2427 if (TREE_CODE (expr) == REAL_CST || TREE_CODE (expr) == INTEGER_CST)
2428 {
2429 /* If type is complex, we are interested in compatibility with
2430 underlying type. */
2431 if (TREE_CODE (type) == COMPLEX_TYPE)
2432 type = TREE_TYPE (type);
2433
2434 /* Warn for real constant that is not an exact integer converted
2435 to integer type. */
2436 if (TREE_CODE (expr_type) == REAL_TYPE
2437 && TREE_CODE (type) == INTEGER_TYPE)
2438 {
2439 if (!real_isinteger (TREE_REAL_CST_PTR (expr), TYPE_MODE (expr_type)))
2440 give_warning = UNSAFE_REAL;
2441 }
2442 /* Warn for an integer constant that does not fit into integer type. */
2443 else if (TREE_CODE (expr_type) == INTEGER_TYPE
2444 && TREE_CODE (type) == INTEGER_TYPE
2445 && !int_fits_type_p (expr, type))
2446 {
2447 if (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)
2448 && tree_int_cst_sgn (expr) < 0)
2449 {
2450 if (produce_warns)
2451 warning_at (loc, OPT_Wsign_conversion, "negative integer"
2452 " implicitly converted to unsigned type");
2453 }
2454 else if (!TYPE_UNSIGNED (type) && TYPE_UNSIGNED (expr_type))
2455 {
2456 if (produce_warns)
2457 warning_at (loc, OPT_Wsign_conversion, "conversion of unsigned"
2458 " constant value to negative integer");
2459 }
2460 else
2461 give_warning = UNSAFE_OTHER;
2462 }
2463 else if (TREE_CODE (type) == REAL_TYPE)
2464 {
2465 /* Warn for an integer constant that does not fit into real type. */
2466 if (TREE_CODE (expr_type) == INTEGER_TYPE)
2467 {
2468 REAL_VALUE_TYPE a = real_value_from_int_cst (0, expr);
2469 if (!exact_real_truncate (TYPE_MODE (type), &a))
2470 give_warning = UNSAFE_REAL;
2471 }
2472 /* Warn for a real constant that does not fit into a smaller
2473 real type. */
2474 else if (TREE_CODE (expr_type) == REAL_TYPE
2475 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
2476 {
2477 REAL_VALUE_TYPE a = TREE_REAL_CST (expr);
2478 if (!exact_real_truncate (TYPE_MODE (type), &a))
2479 give_warning = UNSAFE_REAL;
2480 }
2481 }
2482 }
2483
2484 else if (TREE_CODE (expr) == COMPLEX_CST)
2485 {
2486 tree imag_part = TREE_IMAGPART (expr);
2487 /* Conversion from complex constant with zero imaginary part,
2488 perform check for conversion of real part. */
2489 if ((TREE_CODE (imag_part) == REAL_CST
2490 && real_zerop (imag_part))
2491 || (TREE_CODE (imag_part) == INTEGER_CST
2492 && integer_zerop (imag_part)))
2493 /* Note: in this branch we use recursive call to unsafe_conversion_p
2494 with different type of EXPR, but it is still safe, because when EXPR
2495 is a constant, it's type is not used in text of generated warnings
2496 (otherwise they could sound misleading). */
2497 return unsafe_conversion_p (loc, type, TREE_REALPART (expr),
2498 produce_warns);
2499 /* Conversion from complex constant with non-zero imaginary part. */
2500 else
2501 {
2502 /* Conversion to complex type.
2503 Perform checks for both real and imaginary parts. */
2504 if (TREE_CODE (type) == COMPLEX_TYPE)
2505 {
2506 /* Unfortunately, produce_warns must be false in two subsequent
2507 calls of unsafe_conversion_p, because otherwise we could
2508 produce strange "double" warnings, if both real and imaginary
2509 parts have conversion problems related to signedness.
2510
2511 For example:
2512 int32_t _Complex a = 0x80000000 + 0x80000000i;
2513
2514 Possible solution: add a separate function for checking
2515 constants and combine result of two calls appropriately. */
2516 enum conversion_safety re_safety =
2517 unsafe_conversion_p (loc, type, TREE_REALPART (expr), false);
2518 enum conversion_safety im_safety =
2519 unsafe_conversion_p (loc, type, imag_part, false);
2520
2521 /* Merge the results into appropriate single warning. */
2522
2523 /* Note: this case includes SAFE_CONVERSION, i.e. success. */
2524 if (re_safety == im_safety)
2525 give_warning = re_safety;
2526 else if (!re_safety && im_safety)
2527 give_warning = im_safety;
2528 else if (re_safety && !im_safety)
2529 give_warning = re_safety;
2530 else
2531 give_warning = UNSAFE_OTHER;
2532 }
2533 /* Warn about conversion from complex to real or integer type. */
2534 else
2535 give_warning = UNSAFE_IMAGINARY;
2536 }
2537 }
2538
2539 /* Checks for remaining case: EXPR is not constant. */
2540 else
2541 {
2542 /* Warn for real types converted to integer types. */
2543 if (TREE_CODE (expr_type) == REAL_TYPE
2544 && TREE_CODE (type) == INTEGER_TYPE)
2545 give_warning = UNSAFE_REAL;
2546
2547 else if (TREE_CODE (expr_type) == INTEGER_TYPE
2548 && TREE_CODE (type) == INTEGER_TYPE)
2549 {
2550 /* Don't warn about unsigned char y = 0xff, x = (int) y; */
2551 expr = get_unwidened (expr, 0);
2552 expr_type = TREE_TYPE (expr);
2553
2554 /* Don't warn for short y; short x = ((int)y & 0xff); */
2555 if (TREE_CODE (expr) == BIT_AND_EXPR
2556 || TREE_CODE (expr) == BIT_IOR_EXPR
2557 || TREE_CODE (expr) == BIT_XOR_EXPR)
2558 {
2559 /* If both args were extended from a shortest type,
2560 use that type if that is safe. */
2561 expr_type = shorten_binary_op (expr_type,
2562 TREE_OPERAND (expr, 0),
2563 TREE_OPERAND (expr, 1),
2564 /* bitwise */1);
2565
2566 if (TREE_CODE (expr) == BIT_AND_EXPR)
2567 {
2568 tree op0 = TREE_OPERAND (expr, 0);
2569 tree op1 = TREE_OPERAND (expr, 1);
2570 bool unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
2571 bool unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
2572
2573 /* If one of the operands is a non-negative constant
2574 that fits in the target type, then the type of the
2575 other operand does not matter. */
2576 if ((TREE_CODE (op0) == INTEGER_CST
2577 && int_fits_type_p (op0, c_common_signed_type (type))
2578 && int_fits_type_p (op0, c_common_unsigned_type (type)))
2579 || (TREE_CODE (op1) == INTEGER_CST
2580 && int_fits_type_p (op1, c_common_signed_type (type))
2581 && int_fits_type_p (op1,
2582 c_common_unsigned_type (type))))
2583 return SAFE_CONVERSION;
2584 /* If constant is unsigned and fits in the target
2585 type, then the result will also fit. */
2586 else if ((TREE_CODE (op0) == INTEGER_CST
2587 && unsigned0
2588 && int_fits_type_p (op0, type))
2589 || (TREE_CODE (op1) == INTEGER_CST
2590 && unsigned1
2591 && int_fits_type_p (op1, type)))
2592 return SAFE_CONVERSION;
2593 }
2594 }
2595 /* Warn for integer types converted to smaller integer types. */
2596 if (TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
2597 give_warning = UNSAFE_OTHER;
2598
2599 /* When they are the same width but different signedness,
2600 then the value may change. */
2601 else if (((TYPE_PRECISION (type) == TYPE_PRECISION (expr_type)
2602 && TYPE_UNSIGNED (expr_type) != TYPE_UNSIGNED (type))
2603 /* Even when converted to a bigger type, if the type is
2604 unsigned but expr is signed, then negative values
2605 will be changed. */
2606 || (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)))
2607 && produce_warns)
2608 warning_at (loc, OPT_Wsign_conversion, "conversion to %qT from %qT "
2609 "may change the sign of the result",
2610 type, expr_type);
2611 }
2612
2613 /* Warn for integer types converted to real types if and only if
2614 all the range of values of the integer type cannot be
2615 represented by the real type. */
2616 else if (TREE_CODE (expr_type) == INTEGER_TYPE
2617 && TREE_CODE (type) == REAL_TYPE)
2618 {
2619 /* Don't warn about char y = 0xff; float x = (int) y; */
2620 expr = get_unwidened (expr, 0);
2621 expr_type = TREE_TYPE (expr);
2622
2623 if (!int_safely_convertible_to_real_p (expr_type, type))
2624 give_warning = UNSAFE_OTHER;
2625 }
2626
2627 /* Warn for real types converted to smaller real types. */
2628 else if (TREE_CODE (expr_type) == REAL_TYPE
2629 && TREE_CODE (type) == REAL_TYPE
2630 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
2631 give_warning = UNSAFE_REAL;
2632
2633 /* Check conversion between two complex types. */
2634 else if (TREE_CODE (expr_type) == COMPLEX_TYPE
2635 && TREE_CODE (type) == COMPLEX_TYPE)
2636 {
2637 /* Extract underlying types (i.e., type of real and imaginary
2638 parts) of expr_type and type. */
2639 tree from_type = TREE_TYPE (expr_type);
2640 tree to_type = TREE_TYPE (type);
2641
2642 /* Warn for real types converted to integer types. */
2643 if (TREE_CODE (from_type) == REAL_TYPE
2644 && TREE_CODE (to_type) == INTEGER_TYPE)
2645 give_warning = UNSAFE_REAL;
2646
2647 /* Warn for real types converted to smaller real types. */
2648 else if (TREE_CODE (from_type) == REAL_TYPE
2649 && TREE_CODE (to_type) == REAL_TYPE
2650 && TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type))
2651 give_warning = UNSAFE_REAL;
2652
2653 /* Check conversion for complex integer types. Here implementation
2654 is simpler than for real-domain integers because it does not
2655 involve sophisticated cases, such as bitmasks, casts, etc. */
2656 else if (TREE_CODE (from_type) == INTEGER_TYPE
2657 && TREE_CODE (to_type) == INTEGER_TYPE)
2658 {
2659 /* Warn for integer types converted to smaller integer types. */
2660 if (TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type))
2661 give_warning = UNSAFE_OTHER;
2662
2663 /* Check for different signedness, see case for real-domain
2664 integers (above) for a more detailed comment. */
2665 else if (((TYPE_PRECISION (to_type) == TYPE_PRECISION (from_type)
2666 && TYPE_UNSIGNED (to_type) != TYPE_UNSIGNED (from_type))
2667 || (TYPE_UNSIGNED (to_type) && !TYPE_UNSIGNED (from_type)))
2668 && produce_warns)
2669 warning_at (loc, OPT_Wsign_conversion,
2670 "conversion to %qT from %qT "
2671 "may change the sign of the result",
2672 type, expr_type);
2673 }
2674 else if (TREE_CODE (from_type) == INTEGER_TYPE
2675 && TREE_CODE (to_type) == REAL_TYPE
2676 && !int_safely_convertible_to_real_p (from_type, to_type))
2677 give_warning = UNSAFE_OTHER;
2678 }
2679
2680 /* Warn for complex types converted to real or integer types. */
2681 else if (TREE_CODE (expr_type) == COMPLEX_TYPE
2682 && TREE_CODE (type) != COMPLEX_TYPE)
2683 give_warning = UNSAFE_IMAGINARY;
2684 }
2685
2686 return give_warning;
2687 }
2688
2689 /* Warns if the conversion of EXPR to TYPE may alter a value.
2690 This is a helper function for warnings_for_convert_and_check. */
2691
2692 static void
2693 conversion_warning (location_t loc, tree type, tree expr)
2694 {
2695 tree expr_type = TREE_TYPE (expr);
2696 enum conversion_safety conversion_kind;
2697
2698 if (!warn_conversion && !warn_sign_conversion && !warn_float_conversion)
2699 return;
2700
2701 /* This may happen, because for LHS op= RHS we preevaluate
2702 RHS and create C_MAYBE_CONST_EXPR <SAVE_EXPR <RHS>>, which
2703 means we could no longer see the code of the EXPR. */
2704 if (TREE_CODE (expr) == C_MAYBE_CONST_EXPR)
2705 expr = C_MAYBE_CONST_EXPR_EXPR (expr);
2706 if (TREE_CODE (expr) == SAVE_EXPR)
2707 expr = TREE_OPERAND (expr, 0);
2708
2709 switch (TREE_CODE (expr))
2710 {
2711 case EQ_EXPR:
2712 case NE_EXPR:
2713 case LE_EXPR:
2714 case GE_EXPR:
2715 case LT_EXPR:
2716 case GT_EXPR:
2717 case TRUTH_ANDIF_EXPR:
2718 case TRUTH_ORIF_EXPR:
2719 case TRUTH_AND_EXPR:
2720 case TRUTH_OR_EXPR:
2721 case TRUTH_XOR_EXPR:
2722 case TRUTH_NOT_EXPR:
2723 /* Conversion from boolean to a signed:1 bit-field (which only
2724 can hold the values 0 and -1) doesn't lose information - but
2725 it does change the value. */
2726 if (TYPE_PRECISION (type) == 1 && !TYPE_UNSIGNED (type))
2727 warning_at (loc, OPT_Wconversion,
2728 "conversion to %qT from boolean expression", type);
2729 return;
2730
2731 case REAL_CST:
2732 case INTEGER_CST:
2733 case COMPLEX_CST:
2734 conversion_kind = unsafe_conversion_p (loc, type, expr, true);
2735 if (conversion_kind == UNSAFE_REAL)
2736 warning_at (loc, OPT_Wfloat_conversion,
2737 "conversion to %qT alters %qT constant value",
2738 type, expr_type);
2739 else if (conversion_kind)
2740 warning_at (loc, OPT_Wconversion,
2741 "conversion to %qT alters %qT constant value",
2742 type, expr_type);
2743 return;
2744
2745 case COND_EXPR:
2746 {
2747 /* In case of COND_EXPR, we do not care about the type of
2748 COND_EXPR, only about the conversion of each operand. */
2749 tree op1 = TREE_OPERAND (expr, 1);
2750 tree op2 = TREE_OPERAND (expr, 2);
2751
2752 conversion_warning (loc, type, op1);
2753 conversion_warning (loc, type, op2);
2754 return;
2755 }
2756
2757 default: /* 'expr' is not a constant. */
2758 conversion_kind = unsafe_conversion_p (loc, type, expr, true);
2759 if (conversion_kind == UNSAFE_REAL)
2760 warning_at (loc, OPT_Wfloat_conversion,
2761 "conversion to %qT from %qT may alter its value",
2762 type, expr_type);
2763 else if (conversion_kind == UNSAFE_IMAGINARY)
2764 warning_at (loc, OPT_Wconversion,
2765 "conversion to %qT from %qT discards imaginary component",
2766 type, expr_type);
2767 else if (conversion_kind)
2768 warning_at (loc, OPT_Wconversion,
2769 "conversion to %qT from %qT may alter its value",
2770 type, expr_type);
2771 }
2772 }
2773
2774 /* Produce warnings after a conversion. RESULT is the result of
2775 converting EXPR to TYPE. This is a helper function for
2776 convert_and_check and cp_convert_and_check. */
2777
2778 void
2779 warnings_for_convert_and_check (location_t loc, tree type, tree expr,
2780 tree result)
2781 {
2782 loc = expansion_point_location_if_in_system_header (loc);
2783
2784 if (TREE_CODE (expr) == INTEGER_CST
2785 && (TREE_CODE (type) == INTEGER_TYPE
2786 || TREE_CODE (type) == ENUMERAL_TYPE)
2787 && !int_fits_type_p (expr, type))
2788 {
2789 /* Do not diagnose overflow in a constant expression merely
2790 because a conversion overflowed. */
2791 if (TREE_OVERFLOW (result))
2792 TREE_OVERFLOW (result) = TREE_OVERFLOW (expr);
2793
2794 if (TYPE_UNSIGNED (type))
2795 {
2796 /* This detects cases like converting -129 or 256 to
2797 unsigned char. */
2798 if (!int_fits_type_p (expr, c_common_signed_type (type)))
2799 warning_at (loc, OPT_Woverflow,
2800 "large integer implicitly truncated to unsigned type");
2801 else
2802 conversion_warning (loc, type, expr);
2803 }
2804 else if (!int_fits_type_p (expr, c_common_unsigned_type (type)))
2805 warning_at (loc, OPT_Woverflow,
2806 "overflow in implicit constant conversion");
2807 /* No warning for converting 0x80000000 to int. */
2808 else if (pedantic
2809 && (TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE
2810 || TYPE_PRECISION (TREE_TYPE (expr))
2811 != TYPE_PRECISION (type)))
2812 warning_at (loc, OPT_Woverflow,
2813 "overflow in implicit constant conversion");
2814
2815 else
2816 conversion_warning (loc, type, expr);
2817 }
2818 else if ((TREE_CODE (result) == INTEGER_CST
2819 || TREE_CODE (result) == FIXED_CST) && TREE_OVERFLOW (result))
2820 warning_at (loc, OPT_Woverflow,
2821 "overflow in implicit constant conversion");
2822 else
2823 conversion_warning (loc, type, expr);
2824 }
2825
2826
2827 /* Convert EXPR to TYPE, warning about conversion problems with constants.
2828 Invoke this function on every expression that is converted implicitly,
2829 i.e. because of language rules and not because of an explicit cast. */
2830
2831 tree
2832 convert_and_check (location_t loc, tree type, tree expr)
2833 {
2834 tree result;
2835 tree expr_for_warning;
2836
2837 /* Convert from a value with possible excess precision rather than
2838 via the semantic type, but do not warn about values not fitting
2839 exactly in the semantic type. */
2840 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
2841 {
2842 tree orig_type = TREE_TYPE (expr);
2843 expr = TREE_OPERAND (expr, 0);
2844 expr_for_warning = convert (orig_type, expr);
2845 if (orig_type == type)
2846 return expr_for_warning;
2847 }
2848 else
2849 expr_for_warning = expr;
2850
2851 if (TREE_TYPE (expr) == type)
2852 return expr;
2853
2854 result = convert (type, expr);
2855
2856 if (c_inhibit_evaluation_warnings == 0
2857 && !TREE_OVERFLOW_P (expr)
2858 && result != error_mark_node)
2859 warnings_for_convert_and_check (loc, type, expr_for_warning, result);
2860
2861 return result;
2862 }
2863 \f
2864 /* A node in a list that describes references to variables (EXPR), which are
2865 either read accesses if WRITER is zero, or write accesses, in which case
2866 WRITER is the parent of EXPR. */
2867 struct tlist
2868 {
2869 struct tlist *next;
2870 tree expr, writer;
2871 };
2872
2873 /* Used to implement a cache the results of a call to verify_tree. We only
2874 use this for SAVE_EXPRs. */
2875 struct tlist_cache
2876 {
2877 struct tlist_cache *next;
2878 struct tlist *cache_before_sp;
2879 struct tlist *cache_after_sp;
2880 tree expr;
2881 };
2882
2883 /* Obstack to use when allocating tlist structures, and corresponding
2884 firstobj. */
2885 static struct obstack tlist_obstack;
2886 static char *tlist_firstobj = 0;
2887
2888 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
2889 warnings. */
2890 static struct tlist *warned_ids;
2891 /* SAVE_EXPRs need special treatment. We process them only once and then
2892 cache the results. */
2893 static struct tlist_cache *save_expr_cache;
2894
2895 static void add_tlist (struct tlist **, struct tlist *, tree, int);
2896 static void merge_tlist (struct tlist **, struct tlist *, int);
2897 static void verify_tree (tree, struct tlist **, struct tlist **, tree);
2898 static int warning_candidate_p (tree);
2899 static bool candidate_equal_p (const_tree, const_tree);
2900 static void warn_for_collisions (struct tlist *);
2901 static void warn_for_collisions_1 (tree, tree, struct tlist *, int);
2902 static struct tlist *new_tlist (struct tlist *, tree, tree);
2903
2904 /* Create a new struct tlist and fill in its fields. */
2905 static struct tlist *
2906 new_tlist (struct tlist *next, tree t, tree writer)
2907 {
2908 struct tlist *l;
2909 l = XOBNEW (&tlist_obstack, struct tlist);
2910 l->next = next;
2911 l->expr = t;
2912 l->writer = writer;
2913 return l;
2914 }
2915
2916 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
2917 is nonnull, we ignore any node we find which has a writer equal to it. */
2918
2919 static void
2920 add_tlist (struct tlist **to, struct tlist *add, tree exclude_writer, int copy)
2921 {
2922 while (add)
2923 {
2924 struct tlist *next = add->next;
2925 if (!copy)
2926 add->next = *to;
2927 if (!exclude_writer || !candidate_equal_p (add->writer, exclude_writer))
2928 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
2929 add = next;
2930 }
2931 }
2932
2933 /* Merge the nodes of ADD into TO. This merging process is done so that for
2934 each variable that already exists in TO, no new node is added; however if
2935 there is a write access recorded in ADD, and an occurrence on TO is only
2936 a read access, then the occurrence in TO will be modified to record the
2937 write. */
2938
2939 static void
2940 merge_tlist (struct tlist **to, struct tlist *add, int copy)
2941 {
2942 struct tlist **end = to;
2943
2944 while (*end)
2945 end = &(*end)->next;
2946
2947 while (add)
2948 {
2949 int found = 0;
2950 struct tlist *tmp2;
2951 struct tlist *next = add->next;
2952
2953 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
2954 if (candidate_equal_p (tmp2->expr, add->expr))
2955 {
2956 found = 1;
2957 if (!tmp2->writer)
2958 tmp2->writer = add->writer;
2959 }
2960 if (!found)
2961 {
2962 *end = copy ? new_tlist (NULL, add->expr, add->writer) : add;
2963 end = &(*end)->next;
2964 *end = 0;
2965 }
2966 add = next;
2967 }
2968 }
2969
2970 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
2971 references in list LIST conflict with it, excluding reads if ONLY writers
2972 is nonzero. */
2973
2974 static void
2975 warn_for_collisions_1 (tree written, tree writer, struct tlist *list,
2976 int only_writes)
2977 {
2978 struct tlist *tmp;
2979
2980 /* Avoid duplicate warnings. */
2981 for (tmp = warned_ids; tmp; tmp = tmp->next)
2982 if (candidate_equal_p (tmp->expr, written))
2983 return;
2984
2985 while (list)
2986 {
2987 if (candidate_equal_p (list->expr, written)
2988 && !candidate_equal_p (list->writer, writer)
2989 && (!only_writes || list->writer))
2990 {
2991 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
2992 warning_at (EXPR_LOC_OR_LOC (writer, input_location),
2993 OPT_Wsequence_point, "operation on %qE may be undefined",
2994 list->expr);
2995 }
2996 list = list->next;
2997 }
2998 }
2999
3000 /* Given a list LIST of references to variables, find whether any of these
3001 can cause conflicts due to missing sequence points. */
3002
3003 static void
3004 warn_for_collisions (struct tlist *list)
3005 {
3006 struct tlist *tmp;
3007
3008 for (tmp = list; tmp; tmp = tmp->next)
3009 {
3010 if (tmp->writer)
3011 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
3012 }
3013 }
3014
3015 /* Return nonzero if X is a tree that can be verified by the sequence point
3016 warnings. */
3017 static int
3018 warning_candidate_p (tree x)
3019 {
3020 if (DECL_P (x) && DECL_ARTIFICIAL (x))
3021 return 0;
3022
3023 if (TREE_CODE (x) == BLOCK)
3024 return 0;
3025
3026 /* VOID_TYPE_P (TREE_TYPE (x)) is workaround for cp/tree.c
3027 (lvalue_p) crash on TRY/CATCH. */
3028 if (TREE_TYPE (x) == NULL_TREE || VOID_TYPE_P (TREE_TYPE (x)))
3029 return 0;
3030
3031 if (!lvalue_p (x))
3032 return 0;
3033
3034 /* No point to track non-const calls, they will never satisfy
3035 operand_equal_p. */
3036 if (TREE_CODE (x) == CALL_EXPR && (call_expr_flags (x) & ECF_CONST) == 0)
3037 return 0;
3038
3039 if (TREE_CODE (x) == STRING_CST)
3040 return 0;
3041
3042 return 1;
3043 }
3044
3045 /* Return nonzero if X and Y appear to be the same candidate (or NULL) */
3046 static bool
3047 candidate_equal_p (const_tree x, const_tree y)
3048 {
3049 return (x == y) || (x && y && operand_equal_p (x, y, 0));
3050 }
3051
3052 /* Walk the tree X, and record accesses to variables. If X is written by the
3053 parent tree, WRITER is the parent.
3054 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
3055 expression or its only operand forces a sequence point, then everything up
3056 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
3057 in PNO_SP.
3058 Once we return, we will have emitted warnings if any subexpression before
3059 such a sequence point could be undefined. On a higher level, however, the
3060 sequence point may not be relevant, and we'll merge the two lists.
3061
3062 Example: (b++, a) + b;
3063 The call that processes the COMPOUND_EXPR will store the increment of B
3064 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
3065 processes the PLUS_EXPR will need to merge the two lists so that
3066 eventually, all accesses end up on the same list (and we'll warn about the
3067 unordered subexpressions b++ and b.
3068
3069 A note on merging. If we modify the former example so that our expression
3070 becomes
3071 (b++, b) + a
3072 care must be taken not simply to add all three expressions into the final
3073 PNO_SP list. The function merge_tlist takes care of that by merging the
3074 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
3075 way, so that no more than one access to B is recorded. */
3076
3077 static void
3078 verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp,
3079 tree writer)
3080 {
3081 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
3082 enum tree_code code;
3083 enum tree_code_class cl;
3084
3085 /* X may be NULL if it is the operand of an empty statement expression
3086 ({ }). */
3087 if (x == NULL)
3088 return;
3089
3090 restart:
3091 code = TREE_CODE (x);
3092 cl = TREE_CODE_CLASS (code);
3093
3094 if (warning_candidate_p (x))
3095 *pno_sp = new_tlist (*pno_sp, x, writer);
3096
3097 switch (code)
3098 {
3099 case CONSTRUCTOR:
3100 case SIZEOF_EXPR:
3101 return;
3102
3103 case COMPOUND_EXPR:
3104 case TRUTH_ANDIF_EXPR:
3105 case TRUTH_ORIF_EXPR:
3106 tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
3107 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
3108 warn_for_collisions (tmp_nosp);
3109 merge_tlist (pbefore_sp, tmp_before, 0);
3110 merge_tlist (pbefore_sp, tmp_nosp, 0);
3111 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_list2, NULL_TREE);
3112 warn_for_collisions (tmp_list2);
3113 merge_tlist (pbefore_sp, tmp_list3, 0);
3114 merge_tlist (pno_sp, tmp_list2, 0);
3115 return;
3116
3117 case COND_EXPR:
3118 tmp_before = tmp_list2 = 0;
3119 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
3120 warn_for_collisions (tmp_list2);
3121 merge_tlist (pbefore_sp, tmp_before, 0);
3122 merge_tlist (pbefore_sp, tmp_list2, 0);
3123
3124 tmp_list3 = tmp_nosp = 0;
3125 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
3126 warn_for_collisions (tmp_nosp);
3127 merge_tlist (pbefore_sp, tmp_list3, 0);
3128
3129 tmp_list3 = tmp_list2 = 0;
3130 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
3131 warn_for_collisions (tmp_list2);
3132 merge_tlist (pbefore_sp, tmp_list3, 0);
3133 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
3134 two first, to avoid warning for (a ? b++ : b++). */
3135 merge_tlist (&tmp_nosp, tmp_list2, 0);
3136 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
3137 return;
3138
3139 case PREDECREMENT_EXPR:
3140 case PREINCREMENT_EXPR:
3141 case POSTDECREMENT_EXPR:
3142 case POSTINCREMENT_EXPR:
3143 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
3144 return;
3145
3146 case MODIFY_EXPR:
3147 tmp_before = tmp_nosp = tmp_list3 = 0;
3148 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
3149 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
3150 /* Expressions inside the LHS are not ordered wrt. the sequence points
3151 in the RHS. Example:
3152 *a = (a++, 2)
3153 Despite the fact that the modification of "a" is in the before_sp
3154 list (tmp_before), it conflicts with the use of "a" in the LHS.
3155 We can handle this by adding the contents of tmp_list3
3156 to those of tmp_before, and redoing the collision warnings for that
3157 list. */
3158 add_tlist (&tmp_before, tmp_list3, x, 1);
3159 warn_for_collisions (tmp_before);
3160 /* Exclude the LHS itself here; we first have to merge it into the
3161 tmp_nosp list. This is done to avoid warning for "a = a"; if we
3162 didn't exclude the LHS, we'd get it twice, once as a read and once
3163 as a write. */
3164 add_tlist (pno_sp, tmp_list3, x, 0);
3165 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
3166
3167 merge_tlist (pbefore_sp, tmp_before, 0);
3168 if (warning_candidate_p (TREE_OPERAND (x, 0)))
3169 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
3170 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
3171 return;
3172
3173 case CALL_EXPR:
3174 /* We need to warn about conflicts among arguments and conflicts between
3175 args and the function address. Side effects of the function address,
3176 however, are not ordered by the sequence point of the call. */
3177 {
3178 call_expr_arg_iterator iter;
3179 tree arg;
3180 tmp_before = tmp_nosp = 0;
3181 verify_tree (CALL_EXPR_FN (x), &tmp_before, &tmp_nosp, NULL_TREE);
3182 FOR_EACH_CALL_EXPR_ARG (arg, iter, x)
3183 {
3184 tmp_list2 = tmp_list3 = 0;
3185 verify_tree (arg, &tmp_list2, &tmp_list3, NULL_TREE);
3186 merge_tlist (&tmp_list3, tmp_list2, 0);
3187 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
3188 }
3189 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
3190 warn_for_collisions (tmp_before);
3191 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
3192 return;
3193 }
3194
3195 case TREE_LIST:
3196 /* Scan all the list, e.g. indices of multi dimensional array. */
3197 while (x)
3198 {
3199 tmp_before = tmp_nosp = 0;
3200 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
3201 merge_tlist (&tmp_nosp, tmp_before, 0);
3202 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
3203 x = TREE_CHAIN (x);
3204 }
3205 return;
3206
3207 case SAVE_EXPR:
3208 {
3209 struct tlist_cache *t;
3210 for (t = save_expr_cache; t; t = t->next)
3211 if (candidate_equal_p (t->expr, x))
3212 break;
3213
3214 if (!t)
3215 {
3216 t = XOBNEW (&tlist_obstack, struct tlist_cache);
3217 t->next = save_expr_cache;
3218 t->expr = x;
3219 save_expr_cache = t;
3220
3221 tmp_before = tmp_nosp = 0;
3222 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
3223 warn_for_collisions (tmp_nosp);
3224
3225 tmp_list3 = 0;
3226 merge_tlist (&tmp_list3, tmp_nosp, 0);
3227 t->cache_before_sp = tmp_before;
3228 t->cache_after_sp = tmp_list3;
3229 }
3230 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
3231 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
3232 return;
3233 }
3234
3235 case ADDR_EXPR:
3236 x = TREE_OPERAND (x, 0);
3237 if (DECL_P (x))
3238 return;
3239 writer = 0;
3240 goto restart;
3241
3242 default:
3243 /* For other expressions, simply recurse on their operands.
3244 Manual tail recursion for unary expressions.
3245 Other non-expressions need not be processed. */
3246 if (cl == tcc_unary)
3247 {
3248 x = TREE_OPERAND (x, 0);
3249 writer = 0;
3250 goto restart;
3251 }
3252 else if (IS_EXPR_CODE_CLASS (cl))
3253 {
3254 int lp;
3255 int max = TREE_OPERAND_LENGTH (x);
3256 for (lp = 0; lp < max; lp++)
3257 {
3258 tmp_before = tmp_nosp = 0;
3259 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, 0);
3260 merge_tlist (&tmp_nosp, tmp_before, 0);
3261 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
3262 }
3263 }
3264 return;
3265 }
3266 }
3267
3268 /* Try to warn for undefined behavior in EXPR due to missing sequence
3269 points. */
3270
3271 DEBUG_FUNCTION void
3272 verify_sequence_points (tree expr)
3273 {
3274 struct tlist *before_sp = 0, *after_sp = 0;
3275
3276 warned_ids = 0;
3277 save_expr_cache = 0;
3278 if (tlist_firstobj == 0)
3279 {
3280 gcc_obstack_init (&tlist_obstack);
3281 tlist_firstobj = (char *) obstack_alloc (&tlist_obstack, 0);
3282 }
3283
3284 verify_tree (expr, &before_sp, &after_sp, 0);
3285 warn_for_collisions (after_sp);
3286 obstack_free (&tlist_obstack, tlist_firstobj);
3287 }
3288 \f
3289 /* Validate the expression after `case' and apply default promotions. */
3290
3291 static tree
3292 check_case_value (location_t loc, tree value)
3293 {
3294 if (value == NULL_TREE)
3295 return value;
3296
3297 if (TREE_CODE (value) == INTEGER_CST)
3298 /* Promote char or short to int. */
3299 value = perform_integral_promotions (value);
3300 else if (value != error_mark_node)
3301 {
3302 error_at (loc, "case label does not reduce to an integer constant");
3303 value = error_mark_node;
3304 }
3305
3306 constant_expression_warning (value);
3307
3308 return value;
3309 }
3310 \f
3311 /* See if the case values LOW and HIGH are in the range of the original
3312 type (i.e. before the default conversion to int) of the switch testing
3313 expression.
3314 TYPE is the promoted type of the testing expression, and ORIG_TYPE is
3315 the type before promoting it. CASE_LOW_P is a pointer to the lower
3316 bound of the case label, and CASE_HIGH_P is the upper bound or NULL
3317 if the case is not a case range.
3318 The caller has to make sure that we are not called with NULL for
3319 CASE_LOW_P (i.e. the default case). OUTSIDE_RANGE_P says whether there
3320 was a case value that doesn't fit into the range of the ORIG_TYPE.
3321 Returns true if the case label is in range of ORIG_TYPE (saturated or
3322 untouched) or false if the label is out of range. */
3323
3324 static bool
3325 check_case_bounds (location_t loc, tree type, tree orig_type,
3326 tree *case_low_p, tree *case_high_p,
3327 bool *outside_range_p)
3328 {
3329 tree min_value, max_value;
3330 tree case_low = *case_low_p;
3331 tree case_high = case_high_p ? *case_high_p : case_low;
3332
3333 /* If there was a problem with the original type, do nothing. */
3334 if (orig_type == error_mark_node)
3335 return true;
3336
3337 min_value = TYPE_MIN_VALUE (orig_type);
3338 max_value = TYPE_MAX_VALUE (orig_type);
3339
3340 /* We'll really need integer constants here. */
3341 case_low = fold (case_low);
3342 case_high = fold (case_high);
3343
3344 /* Case label is less than minimum for type. */
3345 if (tree_int_cst_compare (case_low, min_value) < 0
3346 && tree_int_cst_compare (case_high, min_value) < 0)
3347 {
3348 warning_at (loc, 0, "case label value is less than minimum value "
3349 "for type");
3350 *outside_range_p = true;
3351 return false;
3352 }
3353
3354 /* Case value is greater than maximum for type. */
3355 if (tree_int_cst_compare (case_low, max_value) > 0
3356 && tree_int_cst_compare (case_high, max_value) > 0)
3357 {
3358 warning_at (loc, 0, "case label value exceeds maximum value for type");
3359 *outside_range_p = true;
3360 return false;
3361 }
3362
3363 /* Saturate lower case label value to minimum. */
3364 if (tree_int_cst_compare (case_high, min_value) >= 0
3365 && tree_int_cst_compare (case_low, min_value) < 0)
3366 {
3367 warning_at (loc, 0, "lower value in case label range"
3368 " less than minimum value for type");
3369 *outside_range_p = true;
3370 case_low = min_value;
3371 }
3372
3373 /* Saturate upper case label value to maximum. */
3374 if (tree_int_cst_compare (case_low, max_value) <= 0
3375 && tree_int_cst_compare (case_high, max_value) > 0)
3376 {
3377 warning_at (loc, 0, "upper value in case label range"
3378 " exceeds maximum value for type");
3379 *outside_range_p = true;
3380 case_high = max_value;
3381 }
3382
3383 if (*case_low_p != case_low)
3384 *case_low_p = convert (type, case_low);
3385 if (case_high_p && *case_high_p != case_high)
3386 *case_high_p = convert (type, case_high);
3387
3388 return true;
3389 }
3390 \f
3391 /* Return an integer type with BITS bits of precision,
3392 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
3393
3394 tree
3395 c_common_type_for_size (unsigned int bits, int unsignedp)
3396 {
3397 int i;
3398
3399 if (bits == TYPE_PRECISION (integer_type_node))
3400 return unsignedp ? unsigned_type_node : integer_type_node;
3401
3402 if (bits == TYPE_PRECISION (signed_char_type_node))
3403 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3404
3405 if (bits == TYPE_PRECISION (short_integer_type_node))
3406 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3407
3408 if (bits == TYPE_PRECISION (long_integer_type_node))
3409 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3410
3411 if (bits == TYPE_PRECISION (long_long_integer_type_node))
3412 return (unsignedp ? long_long_unsigned_type_node
3413 : long_long_integer_type_node);
3414
3415 for (i = 0; i < NUM_INT_N_ENTS; i ++)
3416 if (int_n_enabled_p[i]
3417 && bits == int_n_data[i].bitsize)
3418 return (unsignedp ? int_n_trees[i].unsigned_type
3419 : int_n_trees[i].signed_type);
3420
3421 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
3422 return (unsignedp ? widest_unsigned_literal_type_node
3423 : widest_integer_literal_type_node);
3424
3425 if (bits <= TYPE_PRECISION (intQI_type_node))
3426 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3427
3428 if (bits <= TYPE_PRECISION (intHI_type_node))
3429 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3430
3431 if (bits <= TYPE_PRECISION (intSI_type_node))
3432 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3433
3434 if (bits <= TYPE_PRECISION (intDI_type_node))
3435 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3436
3437 return 0;
3438 }
3439
3440 /* Return a fixed-point type that has at least IBIT ibits and FBIT fbits
3441 that is unsigned if UNSIGNEDP is nonzero, otherwise signed;
3442 and saturating if SATP is nonzero, otherwise not saturating. */
3443
3444 tree
3445 c_common_fixed_point_type_for_size (unsigned int ibit, unsigned int fbit,
3446 int unsignedp, int satp)
3447 {
3448 machine_mode mode;
3449 if (ibit == 0)
3450 mode = unsignedp ? UQQmode : QQmode;
3451 else
3452 mode = unsignedp ? UHAmode : HAmode;
3453
3454 for (; mode != VOIDmode; mode = GET_MODE_WIDER_MODE (mode))
3455 if (GET_MODE_IBIT (mode) >= ibit && GET_MODE_FBIT (mode) >= fbit)
3456 break;
3457
3458 if (mode == VOIDmode || !targetm.scalar_mode_supported_p (mode))
3459 {
3460 sorry ("GCC cannot support operators with integer types and "
3461 "fixed-point types that have too many integral and "
3462 "fractional bits together");
3463 return 0;
3464 }
3465
3466 return c_common_type_for_mode (mode, satp);
3467 }
3468
3469 /* Used for communication between c_common_type_for_mode and
3470 c_register_builtin_type. */
3471 tree registered_builtin_types;
3472
3473 /* Return a data type that has machine mode MODE.
3474 If the mode is an integer,
3475 then UNSIGNEDP selects between signed and unsigned types.
3476 If the mode is a fixed-point mode,
3477 then UNSIGNEDP selects between saturating and nonsaturating types. */
3478
3479 tree
3480 c_common_type_for_mode (machine_mode mode, int unsignedp)
3481 {
3482 tree t;
3483 int i;
3484
3485 if (mode == TYPE_MODE (integer_type_node))
3486 return unsignedp ? unsigned_type_node : integer_type_node;
3487
3488 if (mode == TYPE_MODE (signed_char_type_node))
3489 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3490
3491 if (mode == TYPE_MODE (short_integer_type_node))
3492 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3493
3494 if (mode == TYPE_MODE (long_integer_type_node))
3495 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3496
3497 if (mode == TYPE_MODE (long_long_integer_type_node))
3498 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
3499
3500 for (i = 0; i < NUM_INT_N_ENTS; i ++)
3501 if (int_n_enabled_p[i]
3502 && mode == int_n_data[i].m)
3503 return (unsignedp ? int_n_trees[i].unsigned_type
3504 : int_n_trees[i].signed_type);
3505
3506 if (mode == TYPE_MODE (widest_integer_literal_type_node))
3507 return unsignedp ? widest_unsigned_literal_type_node
3508 : widest_integer_literal_type_node;
3509
3510 if (mode == QImode)
3511 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3512
3513 if (mode == HImode)
3514 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3515
3516 if (mode == SImode)
3517 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3518
3519 if (mode == DImode)
3520 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3521
3522 #if HOST_BITS_PER_WIDE_INT >= 64
3523 if (mode == TYPE_MODE (intTI_type_node))
3524 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3525 #endif
3526
3527 if (mode == TYPE_MODE (float_type_node))
3528 return float_type_node;
3529
3530 if (mode == TYPE_MODE (double_type_node))
3531 return double_type_node;
3532
3533 if (mode == TYPE_MODE (long_double_type_node))
3534 return long_double_type_node;
3535
3536 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
3537 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE
3538 && mode == TYPE_MODE (FLOATN_NX_TYPE_NODE (i)))
3539 return FLOATN_NX_TYPE_NODE (i);
3540
3541 if (mode == TYPE_MODE (void_type_node))
3542 return void_type_node;
3543
3544 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
3545 return (unsignedp
3546 ? make_unsigned_type (GET_MODE_PRECISION (mode))
3547 : make_signed_type (GET_MODE_PRECISION (mode)));
3548
3549 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
3550 return (unsignedp
3551 ? make_unsigned_type (GET_MODE_PRECISION (mode))
3552 : make_signed_type (GET_MODE_PRECISION (mode)));
3553
3554 if (COMPLEX_MODE_P (mode))
3555 {
3556 machine_mode inner_mode;
3557 tree inner_type;
3558
3559 if (mode == TYPE_MODE (complex_float_type_node))
3560 return complex_float_type_node;
3561 if (mode == TYPE_MODE (complex_double_type_node))
3562 return complex_double_type_node;
3563 if (mode == TYPE_MODE (complex_long_double_type_node))
3564 return complex_long_double_type_node;
3565
3566 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
3567 if (COMPLEX_FLOATN_NX_TYPE_NODE (i) != NULL_TREE
3568 && mode == TYPE_MODE (COMPLEX_FLOATN_NX_TYPE_NODE (i)))
3569 return COMPLEX_FLOATN_NX_TYPE_NODE (i);
3570
3571 if (mode == TYPE_MODE (complex_integer_type_node) && !unsignedp)
3572 return complex_integer_type_node;
3573
3574 inner_mode = GET_MODE_INNER (mode);
3575 inner_type = c_common_type_for_mode (inner_mode, unsignedp);
3576 if (inner_type != NULL_TREE)
3577 return build_complex_type (inner_type);
3578 }
3579 else if (VECTOR_MODE_P (mode))
3580 {
3581 machine_mode inner_mode = GET_MODE_INNER (mode);
3582 tree inner_type = c_common_type_for_mode (inner_mode, unsignedp);
3583 if (inner_type != NULL_TREE)
3584 return build_vector_type_for_mode (inner_type, mode);
3585 }
3586
3587 if (mode == TYPE_MODE (dfloat32_type_node))
3588 return dfloat32_type_node;
3589 if (mode == TYPE_MODE (dfloat64_type_node))
3590 return dfloat64_type_node;
3591 if (mode == TYPE_MODE (dfloat128_type_node))
3592 return dfloat128_type_node;
3593
3594 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode))
3595 {
3596 if (mode == TYPE_MODE (short_fract_type_node))
3597 return unsignedp ? sat_short_fract_type_node : short_fract_type_node;
3598 if (mode == TYPE_MODE (fract_type_node))
3599 return unsignedp ? sat_fract_type_node : fract_type_node;
3600 if (mode == TYPE_MODE (long_fract_type_node))
3601 return unsignedp ? sat_long_fract_type_node : long_fract_type_node;
3602 if (mode == TYPE_MODE (long_long_fract_type_node))
3603 return unsignedp ? sat_long_long_fract_type_node
3604 : long_long_fract_type_node;
3605
3606 if (mode == TYPE_MODE (unsigned_short_fract_type_node))
3607 return unsignedp ? sat_unsigned_short_fract_type_node
3608 : unsigned_short_fract_type_node;
3609 if (mode == TYPE_MODE (unsigned_fract_type_node))
3610 return unsignedp ? sat_unsigned_fract_type_node
3611 : unsigned_fract_type_node;
3612 if (mode == TYPE_MODE (unsigned_long_fract_type_node))
3613 return unsignedp ? sat_unsigned_long_fract_type_node
3614 : unsigned_long_fract_type_node;
3615 if (mode == TYPE_MODE (unsigned_long_long_fract_type_node))
3616 return unsignedp ? sat_unsigned_long_long_fract_type_node
3617 : unsigned_long_long_fract_type_node;
3618
3619 if (mode == TYPE_MODE (short_accum_type_node))
3620 return unsignedp ? sat_short_accum_type_node : short_accum_type_node;
3621 if (mode == TYPE_MODE (accum_type_node))
3622 return unsignedp ? sat_accum_type_node : accum_type_node;
3623 if (mode == TYPE_MODE (long_accum_type_node))
3624 return unsignedp ? sat_long_accum_type_node : long_accum_type_node;
3625 if (mode == TYPE_MODE (long_long_accum_type_node))
3626 return unsignedp ? sat_long_long_accum_type_node
3627 : long_long_accum_type_node;
3628
3629 if (mode == TYPE_MODE (unsigned_short_accum_type_node))
3630 return unsignedp ? sat_unsigned_short_accum_type_node
3631 : unsigned_short_accum_type_node;
3632 if (mode == TYPE_MODE (unsigned_accum_type_node))
3633 return unsignedp ? sat_unsigned_accum_type_node
3634 : unsigned_accum_type_node;
3635 if (mode == TYPE_MODE (unsigned_long_accum_type_node))
3636 return unsignedp ? sat_unsigned_long_accum_type_node
3637 : unsigned_long_accum_type_node;
3638 if (mode == TYPE_MODE (unsigned_long_long_accum_type_node))
3639 return unsignedp ? sat_unsigned_long_long_accum_type_node
3640 : unsigned_long_long_accum_type_node;
3641
3642 if (mode == QQmode)
3643 return unsignedp ? sat_qq_type_node : qq_type_node;
3644 if (mode == HQmode)
3645 return unsignedp ? sat_hq_type_node : hq_type_node;
3646 if (mode == SQmode)
3647 return unsignedp ? sat_sq_type_node : sq_type_node;
3648 if (mode == DQmode)
3649 return unsignedp ? sat_dq_type_node : dq_type_node;
3650 if (mode == TQmode)
3651 return unsignedp ? sat_tq_type_node : tq_type_node;
3652
3653 if (mode == UQQmode)
3654 return unsignedp ? sat_uqq_type_node : uqq_type_node;
3655 if (mode == UHQmode)
3656 return unsignedp ? sat_uhq_type_node : uhq_type_node;
3657 if (mode == USQmode)
3658 return unsignedp ? sat_usq_type_node : usq_type_node;
3659 if (mode == UDQmode)
3660 return unsignedp ? sat_udq_type_node : udq_type_node;
3661 if (mode == UTQmode)
3662 return unsignedp ? sat_utq_type_node : utq_type_node;
3663
3664 if (mode == HAmode)
3665 return unsignedp ? sat_ha_type_node : ha_type_node;
3666 if (mode == SAmode)
3667 return unsignedp ? sat_sa_type_node : sa_type_node;
3668 if (mode == DAmode)
3669 return unsignedp ? sat_da_type_node : da_type_node;
3670 if (mode == TAmode)
3671 return unsignedp ? sat_ta_type_node : ta_type_node;
3672
3673 if (mode == UHAmode)
3674 return unsignedp ? sat_uha_type_node : uha_type_node;
3675 if (mode == USAmode)
3676 return unsignedp ? sat_usa_type_node : usa_type_node;
3677 if (mode == UDAmode)
3678 return unsignedp ? sat_uda_type_node : uda_type_node;
3679 if (mode == UTAmode)
3680 return unsignedp ? sat_uta_type_node : uta_type_node;
3681 }
3682
3683 for (t = registered_builtin_types; t; t = TREE_CHAIN (t))
3684 if (TYPE_MODE (TREE_VALUE (t)) == mode
3685 && !!unsignedp == !!TYPE_UNSIGNED (TREE_VALUE (t)))
3686 return TREE_VALUE (t);
3687
3688 return 0;
3689 }
3690
3691 tree
3692 c_common_unsigned_type (tree type)
3693 {
3694 return c_common_signed_or_unsigned_type (1, type);
3695 }
3696
3697 /* Return a signed type the same as TYPE in other respects. */
3698
3699 tree
3700 c_common_signed_type (tree type)
3701 {
3702 return c_common_signed_or_unsigned_type (0, type);
3703 }
3704
3705 /* Return a type the same as TYPE except unsigned or
3706 signed according to UNSIGNEDP. */
3707
3708 tree
3709 c_common_signed_or_unsigned_type (int unsignedp, tree type)
3710 {
3711 tree type1;
3712 int i;
3713
3714 /* This block of code emulates the behavior of the old
3715 c_common_unsigned_type. In particular, it returns
3716 long_unsigned_type_node if passed a long, even when a int would
3717 have the same size. This is necessary for warnings to work
3718 correctly in archs where sizeof(int) == sizeof(long) */
3719
3720 type1 = TYPE_MAIN_VARIANT (type);
3721 if (type1 == signed_char_type_node || type1 == char_type_node || type1 == unsigned_char_type_node)
3722 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3723 if (type1 == integer_type_node || type1 == unsigned_type_node)
3724 return unsignedp ? unsigned_type_node : integer_type_node;
3725 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
3726 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3727 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
3728 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3729 if (type1 == long_long_integer_type_node || type1 == long_long_unsigned_type_node)
3730 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
3731
3732 for (i = 0; i < NUM_INT_N_ENTS; i ++)
3733 if (int_n_enabled_p[i]
3734 && (type1 == int_n_trees[i].unsigned_type
3735 || type1 == int_n_trees[i].signed_type))
3736 return (unsignedp ? int_n_trees[i].unsigned_type
3737 : int_n_trees[i].signed_type);
3738
3739 if (type1 == widest_integer_literal_type_node || type1 == widest_unsigned_literal_type_node)
3740 return unsignedp ? widest_unsigned_literal_type_node : widest_integer_literal_type_node;
3741 #if HOST_BITS_PER_WIDE_INT >= 64
3742 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
3743 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3744 #endif
3745 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
3746 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3747 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
3748 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3749 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
3750 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3751 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
3752 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3753
3754 #define C_COMMON_FIXED_TYPES(NAME) \
3755 if (type1 == short_ ## NAME ## _type_node \
3756 || type1 == unsigned_short_ ## NAME ## _type_node) \
3757 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
3758 : short_ ## NAME ## _type_node; \
3759 if (type1 == NAME ## _type_node \
3760 || type1 == unsigned_ ## NAME ## _type_node) \
3761 return unsignedp ? unsigned_ ## NAME ## _type_node \
3762 : NAME ## _type_node; \
3763 if (type1 == long_ ## NAME ## _type_node \
3764 || type1 == unsigned_long_ ## NAME ## _type_node) \
3765 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
3766 : long_ ## NAME ## _type_node; \
3767 if (type1 == long_long_ ## NAME ## _type_node \
3768 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
3769 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
3770 : long_long_ ## NAME ## _type_node;
3771
3772 #define C_COMMON_FIXED_MODE_TYPES(NAME) \
3773 if (type1 == NAME ## _type_node \
3774 || type1 == u ## NAME ## _type_node) \
3775 return unsignedp ? u ## NAME ## _type_node \
3776 : NAME ## _type_node;
3777
3778 #define C_COMMON_FIXED_TYPES_SAT(NAME) \
3779 if (type1 == sat_ ## short_ ## NAME ## _type_node \
3780 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
3781 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
3782 : sat_ ## short_ ## NAME ## _type_node; \
3783 if (type1 == sat_ ## NAME ## _type_node \
3784 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
3785 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
3786 : sat_ ## NAME ## _type_node; \
3787 if (type1 == sat_ ## long_ ## NAME ## _type_node \
3788 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
3789 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
3790 : sat_ ## long_ ## NAME ## _type_node; \
3791 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
3792 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
3793 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
3794 : sat_ ## long_long_ ## NAME ## _type_node;
3795
3796 #define C_COMMON_FIXED_MODE_TYPES_SAT(NAME) \
3797 if (type1 == sat_ ## NAME ## _type_node \
3798 || type1 == sat_ ## u ## NAME ## _type_node) \
3799 return unsignedp ? sat_ ## u ## NAME ## _type_node \
3800 : sat_ ## NAME ## _type_node;
3801
3802 C_COMMON_FIXED_TYPES (fract);
3803 C_COMMON_FIXED_TYPES_SAT (fract);
3804 C_COMMON_FIXED_TYPES (accum);
3805 C_COMMON_FIXED_TYPES_SAT (accum);
3806
3807 C_COMMON_FIXED_MODE_TYPES (qq);
3808 C_COMMON_FIXED_MODE_TYPES (hq);
3809 C_COMMON_FIXED_MODE_TYPES (sq);
3810 C_COMMON_FIXED_MODE_TYPES (dq);
3811 C_COMMON_FIXED_MODE_TYPES (tq);
3812 C_COMMON_FIXED_MODE_TYPES_SAT (qq);
3813 C_COMMON_FIXED_MODE_TYPES_SAT (hq);
3814 C_COMMON_FIXED_MODE_TYPES_SAT (sq);
3815 C_COMMON_FIXED_MODE_TYPES_SAT (dq);
3816 C_COMMON_FIXED_MODE_TYPES_SAT (tq);
3817 C_COMMON_FIXED_MODE_TYPES (ha);
3818 C_COMMON_FIXED_MODE_TYPES (sa);
3819 C_COMMON_FIXED_MODE_TYPES (da);
3820 C_COMMON_FIXED_MODE_TYPES (ta);
3821 C_COMMON_FIXED_MODE_TYPES_SAT (ha);
3822 C_COMMON_FIXED_MODE_TYPES_SAT (sa);
3823 C_COMMON_FIXED_MODE_TYPES_SAT (da);
3824 C_COMMON_FIXED_MODE_TYPES_SAT (ta);
3825
3826 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
3827 the precision; they have precision set to match their range, but
3828 may use a wider mode to match an ABI. If we change modes, we may
3829 wind up with bad conversions. For INTEGER_TYPEs in C, must check
3830 the precision as well, so as to yield correct results for
3831 bit-field types. C++ does not have these separate bit-field
3832 types, and producing a signed or unsigned variant of an
3833 ENUMERAL_TYPE may cause other problems as well. */
3834
3835 if (!INTEGRAL_TYPE_P (type)
3836 || TYPE_UNSIGNED (type) == unsignedp)
3837 return type;
3838
3839 #define TYPE_OK(node) \
3840 (TYPE_MODE (type) == TYPE_MODE (node) \
3841 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
3842 if (TYPE_OK (signed_char_type_node))
3843 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3844 if (TYPE_OK (integer_type_node))
3845 return unsignedp ? unsigned_type_node : integer_type_node;
3846 if (TYPE_OK (short_integer_type_node))
3847 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3848 if (TYPE_OK (long_integer_type_node))
3849 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3850 if (TYPE_OK (long_long_integer_type_node))
3851 return (unsignedp ? long_long_unsigned_type_node
3852 : long_long_integer_type_node);
3853
3854 for (i = 0; i < NUM_INT_N_ENTS; i ++)
3855 if (int_n_enabled_p[i]
3856 && TYPE_MODE (type) == int_n_data[i].m
3857 && TYPE_PRECISION (type) == int_n_data[i].bitsize)
3858 return (unsignedp ? int_n_trees[i].unsigned_type
3859 : int_n_trees[i].signed_type);
3860
3861 if (TYPE_OK (widest_integer_literal_type_node))
3862 return (unsignedp ? widest_unsigned_literal_type_node
3863 : widest_integer_literal_type_node);
3864
3865 #if HOST_BITS_PER_WIDE_INT >= 64
3866 if (TYPE_OK (intTI_type_node))
3867 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
3868 #endif
3869 if (TYPE_OK (intDI_type_node))
3870 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
3871 if (TYPE_OK (intSI_type_node))
3872 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
3873 if (TYPE_OK (intHI_type_node))
3874 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
3875 if (TYPE_OK (intQI_type_node))
3876 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
3877 #undef TYPE_OK
3878
3879 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
3880 }
3881
3882 /* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
3883
3884 tree
3885 c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width, int unsignedp)
3886 {
3887 int i;
3888
3889 /* Extended integer types of the same width as a standard type have
3890 lesser rank, so those of the same width as int promote to int or
3891 unsigned int and are valid for printf formats expecting int or
3892 unsigned int. To avoid such special cases, avoid creating
3893 extended integer types for bit-fields if a standard integer type
3894 is available. */
3895 if (width == TYPE_PRECISION (integer_type_node))
3896 return unsignedp ? unsigned_type_node : integer_type_node;
3897 if (width == TYPE_PRECISION (signed_char_type_node))
3898 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
3899 if (width == TYPE_PRECISION (short_integer_type_node))
3900 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
3901 if (width == TYPE_PRECISION (long_integer_type_node))
3902 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
3903 if (width == TYPE_PRECISION (long_long_integer_type_node))
3904 return (unsignedp ? long_long_unsigned_type_node
3905 : long_long_integer_type_node);
3906 for (i = 0; i < NUM_INT_N_ENTS; i ++)
3907 if (int_n_enabled_p[i]
3908 && width == int_n_data[i].bitsize)
3909 return (unsignedp ? int_n_trees[i].unsigned_type
3910 : int_n_trees[i].signed_type);
3911 return build_nonstandard_integer_type (width, unsignedp);
3912 }
3913
3914 /* The C version of the register_builtin_type langhook. */
3915
3916 void
3917 c_register_builtin_type (tree type, const char* name)
3918 {
3919 tree decl;
3920
3921 decl = build_decl (UNKNOWN_LOCATION,
3922 TYPE_DECL, get_identifier (name), type);
3923 DECL_ARTIFICIAL (decl) = 1;
3924 if (!TYPE_NAME (type))
3925 TYPE_NAME (type) = decl;
3926 pushdecl (decl);
3927
3928 registered_builtin_types = tree_cons (0, type, registered_builtin_types);
3929 }
3930 \f
3931 /* Print an error message for invalid operands to arith operation
3932 CODE with TYPE0 for operand 0, and TYPE1 for operand 1.
3933 RICHLOC is a rich location for the message, containing either
3934 three separate locations for each of the operator and operands
3935
3936 lhs op rhs
3937 ~~~ ^~ ~~~
3938
3939 (C FE), or one location ranging over all over them
3940
3941 lhs op rhs
3942 ~~~~^~~~~~
3943
3944 (C++ FE). */
3945
3946 void
3947 binary_op_error (rich_location *richloc, enum tree_code code,
3948 tree type0, tree type1)
3949 {
3950 const char *opname;
3951
3952 switch (code)
3953 {
3954 case PLUS_EXPR:
3955 opname = "+"; break;
3956 case MINUS_EXPR:
3957 opname = "-"; break;
3958 case MULT_EXPR:
3959 opname = "*"; break;
3960 case MAX_EXPR:
3961 opname = "max"; break;
3962 case MIN_EXPR:
3963 opname = "min"; break;
3964 case EQ_EXPR:
3965 opname = "=="; break;
3966 case NE_EXPR:
3967 opname = "!="; break;
3968 case LE_EXPR:
3969 opname = "<="; break;
3970 case GE_EXPR:
3971 opname = ">="; break;
3972 case LT_EXPR:
3973 opname = "<"; break;
3974 case GT_EXPR:
3975 opname = ">"; break;
3976 case LSHIFT_EXPR:
3977 opname = "<<"; break;
3978 case RSHIFT_EXPR:
3979 opname = ">>"; break;
3980 case TRUNC_MOD_EXPR:
3981 case FLOOR_MOD_EXPR:
3982 opname = "%"; break;
3983 case TRUNC_DIV_EXPR:
3984 case FLOOR_DIV_EXPR:
3985 opname = "/"; break;
3986 case BIT_AND_EXPR:
3987 opname = "&"; break;
3988 case BIT_IOR_EXPR:
3989 opname = "|"; break;
3990 case TRUTH_ANDIF_EXPR:
3991 opname = "&&"; break;
3992 case TRUTH_ORIF_EXPR:
3993 opname = "||"; break;
3994 case BIT_XOR_EXPR:
3995 opname = "^"; break;
3996 default:
3997 gcc_unreachable ();
3998 }
3999 error_at_rich_loc (richloc,
4000 "invalid operands to binary %s (have %qT and %qT)",
4001 opname, type0, type1);
4002 }
4003 \f
4004 /* Given an expression as a tree, return its original type. Do this
4005 by stripping any conversion that preserves the sign and precision. */
4006 static tree
4007 expr_original_type (tree expr)
4008 {
4009 STRIP_SIGN_NOPS (expr);
4010 return TREE_TYPE (expr);
4011 }
4012
4013 /* Subroutine of build_binary_op, used for comparison operations.
4014 See if the operands have both been converted from subword integer types
4015 and, if so, perhaps change them both back to their original type.
4016 This function is also responsible for converting the two operands
4017 to the proper common type for comparison.
4018
4019 The arguments of this function are all pointers to local variables
4020 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
4021 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
4022
4023 LOC is the location of the comparison.
4024
4025 If this function returns nonzero, it means that the comparison has
4026 a constant value. What this function returns is an expression for
4027 that value. */
4028
4029 tree
4030 shorten_compare (location_t loc, tree *op0_ptr, tree *op1_ptr,
4031 tree *restype_ptr, enum tree_code *rescode_ptr)
4032 {
4033 tree type;
4034 tree op0 = *op0_ptr;
4035 tree op1 = *op1_ptr;
4036 int unsignedp0, unsignedp1;
4037 int real1, real2;
4038 tree primop0, primop1;
4039 enum tree_code code = *rescode_ptr;
4040
4041 /* Throw away any conversions to wider types
4042 already present in the operands. */
4043
4044 primop0 = c_common_get_narrower (op0, &unsignedp0);
4045 primop1 = c_common_get_narrower (op1, &unsignedp1);
4046
4047 /* If primopN is first sign-extended from primopN's precision to opN's
4048 precision, then zero-extended from opN's precision to
4049 *restype_ptr precision, shortenings might be invalid. */
4050 if (TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (TREE_TYPE (op0))
4051 && TYPE_PRECISION (TREE_TYPE (op0)) < TYPE_PRECISION (*restype_ptr)
4052 && !unsignedp0
4053 && TYPE_UNSIGNED (TREE_TYPE (op0)))
4054 primop0 = op0;
4055 if (TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (TREE_TYPE (op1))
4056 && TYPE_PRECISION (TREE_TYPE (op1)) < TYPE_PRECISION (*restype_ptr)
4057 && !unsignedp1
4058 && TYPE_UNSIGNED (TREE_TYPE (op1)))
4059 primop1 = op1;
4060
4061 /* Handle the case that OP0 does not *contain* a conversion
4062 but it *requires* conversion to FINAL_TYPE. */
4063
4064 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
4065 unsignedp0 = TYPE_UNSIGNED (TREE_TYPE (op0));
4066 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
4067 unsignedp1 = TYPE_UNSIGNED (TREE_TYPE (op1));
4068
4069 /* If one of the operands must be floated, we cannot optimize. */
4070 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
4071 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
4072
4073 /* If first arg is constant, swap the args (changing operation
4074 so value is preserved), for canonicalization. Don't do this if
4075 the second arg is 0. */
4076
4077 if (TREE_CONSTANT (primop0)
4078 && !integer_zerop (primop1) && !real_zerop (primop1)
4079 && !fixed_zerop (primop1))
4080 {
4081 std::swap (primop0, primop1);
4082 std::swap (op0, op1);
4083 *op0_ptr = op0;
4084 *op1_ptr = op1;
4085 std::swap (unsignedp0, unsignedp1);
4086 std::swap (real1, real2);
4087
4088 switch (code)
4089 {
4090 case LT_EXPR:
4091 code = GT_EXPR;
4092 break;
4093 case GT_EXPR:
4094 code = LT_EXPR;
4095 break;
4096 case LE_EXPR:
4097 code = GE_EXPR;
4098 break;
4099 case GE_EXPR:
4100 code = LE_EXPR;
4101 break;
4102 default:
4103 break;
4104 }
4105 *rescode_ptr = code;
4106 }
4107
4108 /* If comparing an integer against a constant more bits wide,
4109 maybe we can deduce a value of 1 or 0 independent of the data.
4110 Or else truncate the constant now
4111 rather than extend the variable at run time.
4112
4113 This is only interesting if the constant is the wider arg.
4114 Also, it is not safe if the constant is unsigned and the
4115 variable arg is signed, since in this case the variable
4116 would be sign-extended and then regarded as unsigned.
4117 Our technique fails in this case because the lowest/highest
4118 possible unsigned results don't follow naturally from the
4119 lowest/highest possible values of the variable operand.
4120 For just EQ_EXPR and NE_EXPR there is another technique that
4121 could be used: see if the constant can be faithfully represented
4122 in the other operand's type, by truncating it and reextending it
4123 and see if that preserves the constant's value. */
4124
4125 if (!real1 && !real2
4126 && TREE_CODE (TREE_TYPE (primop0)) != FIXED_POINT_TYPE
4127 && TREE_CODE (primop1) == INTEGER_CST
4128 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
4129 {
4130 int min_gt, max_gt, min_lt, max_lt;
4131 tree maxval, minval;
4132 /* 1 if comparison is nominally unsigned. */
4133 int unsignedp = TYPE_UNSIGNED (*restype_ptr);
4134 tree val;
4135
4136 type = c_common_signed_or_unsigned_type (unsignedp0,
4137 TREE_TYPE (primop0));
4138
4139 maxval = TYPE_MAX_VALUE (type);
4140 minval = TYPE_MIN_VALUE (type);
4141
4142 if (unsignedp && !unsignedp0)
4143 *restype_ptr = c_common_signed_type (*restype_ptr);
4144
4145 if (TREE_TYPE (primop1) != *restype_ptr)
4146 {
4147 /* Convert primop1 to target type, but do not introduce
4148 additional overflow. We know primop1 is an int_cst. */
4149 primop1 = force_fit_type (*restype_ptr,
4150 wi::to_wide
4151 (primop1,
4152 TYPE_PRECISION (*restype_ptr)),
4153 0, TREE_OVERFLOW (primop1));
4154 }
4155 if (type != *restype_ptr)
4156 {
4157 minval = convert (*restype_ptr, minval);
4158 maxval = convert (*restype_ptr, maxval);
4159 }
4160
4161 min_gt = tree_int_cst_lt (primop1, minval);
4162 max_gt = tree_int_cst_lt (primop1, maxval);
4163 min_lt = tree_int_cst_lt (minval, primop1);
4164 max_lt = tree_int_cst_lt (maxval, primop1);
4165
4166 val = 0;
4167 /* This used to be a switch, but Genix compiler can't handle that. */
4168 if (code == NE_EXPR)
4169 {
4170 if (max_lt || min_gt)
4171 val = truthvalue_true_node;
4172 }
4173 else if (code == EQ_EXPR)
4174 {
4175 if (max_lt || min_gt)
4176 val = truthvalue_false_node;
4177 }
4178 else if (code == LT_EXPR)
4179 {
4180 if (max_lt)
4181 val = truthvalue_true_node;
4182 if (!min_lt)
4183 val = truthvalue_false_node;
4184 }
4185 else if (code == GT_EXPR)
4186 {
4187 if (min_gt)
4188 val = truthvalue_true_node;
4189 if (!max_gt)
4190 val = truthvalue_false_node;
4191 }
4192 else if (code == LE_EXPR)
4193 {
4194 if (!max_gt)
4195 val = truthvalue_true_node;
4196 if (min_gt)
4197 val = truthvalue_false_node;
4198 }
4199 else if (code == GE_EXPR)
4200 {
4201 if (!min_lt)
4202 val = truthvalue_true_node;
4203 if (max_lt)
4204 val = truthvalue_false_node;
4205 }
4206
4207 /* If primop0 was sign-extended and unsigned comparison specd,
4208 we did a signed comparison above using the signed type bounds.
4209 But the comparison we output must be unsigned.
4210
4211 Also, for inequalities, VAL is no good; but if the signed
4212 comparison had *any* fixed result, it follows that the
4213 unsigned comparison just tests the sign in reverse
4214 (positive values are LE, negative ones GE).
4215 So we can generate an unsigned comparison
4216 against an extreme value of the signed type. */
4217
4218 if (unsignedp && !unsignedp0)
4219 {
4220 if (val != 0)
4221 switch (code)
4222 {
4223 case LT_EXPR:
4224 case GE_EXPR:
4225 primop1 = TYPE_MIN_VALUE (type);
4226 val = 0;
4227 break;
4228
4229 case LE_EXPR:
4230 case GT_EXPR:
4231 primop1 = TYPE_MAX_VALUE (type);
4232 val = 0;
4233 break;
4234
4235 default:
4236 break;
4237 }
4238 type = c_common_unsigned_type (type);
4239 }
4240
4241 if (TREE_CODE (primop0) != INTEGER_CST
4242 /* Don't warn if it's from a (non-system) macro. */
4243 && !(from_macro_expansion_at
4244 (expansion_point_location_if_in_system_header
4245 (EXPR_LOCATION (primop0)))))
4246 {
4247 if (val == truthvalue_false_node)
4248 warning_at (loc, OPT_Wtype_limits,
4249 "comparison is always false due to limited range of data type");
4250 if (val == truthvalue_true_node)
4251 warning_at (loc, OPT_Wtype_limits,
4252 "comparison is always true due to limited range of data type");
4253 }
4254
4255 if (val != 0)
4256 {
4257 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
4258 if (TREE_SIDE_EFFECTS (primop0))
4259 return build2 (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
4260 return val;
4261 }
4262
4263 /* Value is not predetermined, but do the comparison
4264 in the type of the operand that is not constant.
4265 TYPE is already properly set. */
4266 }
4267
4268 /* If either arg is decimal float and the other is float, find the
4269 proper common type to use for comparison. */
4270 else if (real1 && real2
4271 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
4272 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1))))
4273 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
4274
4275 /* If either arg is decimal float and the other is float, fail. */
4276 else if (real1 && real2
4277 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
4278 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1)))))
4279 return 0;
4280
4281 else if (real1 && real2
4282 && (TYPE_PRECISION (TREE_TYPE (primop0))
4283 == TYPE_PRECISION (TREE_TYPE (primop1))))
4284 type = TREE_TYPE (primop0);
4285
4286 /* If args' natural types are both narrower than nominal type
4287 and both extend in the same manner, compare them
4288 in the type of the wider arg.
4289 Otherwise must actually extend both to the nominal
4290 common type lest different ways of extending
4291 alter the result.
4292 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
4293
4294 else if (unsignedp0 == unsignedp1 && real1 == real2
4295 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
4296 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
4297 {
4298 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
4299 type = c_common_signed_or_unsigned_type (unsignedp0
4300 || TYPE_UNSIGNED (*restype_ptr),
4301 type);
4302 /* Make sure shorter operand is extended the right way
4303 to match the longer operand. */
4304 primop0
4305 = convert (c_common_signed_or_unsigned_type (unsignedp0,
4306 TREE_TYPE (primop0)),
4307 primop0);
4308 primop1
4309 = convert (c_common_signed_or_unsigned_type (unsignedp1,
4310 TREE_TYPE (primop1)),
4311 primop1);
4312 }
4313 else
4314 {
4315 /* Here we must do the comparison on the nominal type
4316 using the args exactly as we received them. */
4317 type = *restype_ptr;
4318 primop0 = op0;
4319 primop1 = op1;
4320
4321 if (!real1 && !real2 && integer_zerop (primop1)
4322 && TYPE_UNSIGNED (*restype_ptr))
4323 {
4324 tree value = 0;
4325 /* All unsigned values are >= 0, so we warn. However,
4326 if OP0 is a constant that is >= 0, the signedness of
4327 the comparison isn't an issue, so suppress the
4328 warning. */
4329 bool warn =
4330 warn_type_limits && !in_system_header_at (loc)
4331 && !(TREE_CODE (primop0) == INTEGER_CST
4332 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
4333 primop0)))
4334 /* Do not warn for enumeration types. */
4335 && (TREE_CODE (expr_original_type (primop0)) != ENUMERAL_TYPE);
4336
4337 switch (code)
4338 {
4339 case GE_EXPR:
4340 if (warn)
4341 warning_at (loc, OPT_Wtype_limits,
4342 "comparison of unsigned expression >= 0 is always true");
4343 value = truthvalue_true_node;
4344 break;
4345
4346 case LT_EXPR:
4347 if (warn)
4348 warning_at (loc, OPT_Wtype_limits,
4349 "comparison of unsigned expression < 0 is always false");
4350 value = truthvalue_false_node;
4351 break;
4352
4353 default:
4354 break;
4355 }
4356
4357 if (value != 0)
4358 {
4359 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
4360 if (TREE_SIDE_EFFECTS (primop0))
4361 return build2 (COMPOUND_EXPR, TREE_TYPE (value),
4362 primop0, value);
4363 return value;
4364 }
4365 }
4366 }
4367
4368 *op0_ptr = convert (type, primop0);
4369 *op1_ptr = convert (type, primop1);
4370
4371 *restype_ptr = truthvalue_type_node;
4372
4373 return 0;
4374 }
4375 \f
4376 /* Return a tree for the sum or difference (RESULTCODE says which)
4377 of pointer PTROP and integer INTOP. */
4378
4379 tree
4380 pointer_int_sum (location_t loc, enum tree_code resultcode,
4381 tree ptrop, tree intop, bool complain)
4382 {
4383 tree size_exp, ret;
4384
4385 /* The result is a pointer of the same type that is being added. */
4386 tree result_type = TREE_TYPE (ptrop);
4387
4388 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
4389 {
4390 if (complain && warn_pointer_arith)
4391 pedwarn (loc, OPT_Wpointer_arith,
4392 "pointer of type %<void *%> used in arithmetic");
4393 else if (!complain)
4394 return error_mark_node;
4395 size_exp = integer_one_node;
4396 }
4397 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
4398 {
4399 if (complain && warn_pointer_arith)
4400 pedwarn (loc, OPT_Wpointer_arith,
4401 "pointer to a function used in arithmetic");
4402 else if (!complain)
4403 return error_mark_node;
4404 size_exp = integer_one_node;
4405 }
4406 else
4407 size_exp = size_in_bytes_loc (loc, TREE_TYPE (result_type));
4408
4409 /* We are manipulating pointer values, so we don't need to warn
4410 about relying on undefined signed overflow. We disable the
4411 warning here because we use integer types so fold won't know that
4412 they are really pointers. */
4413 fold_defer_overflow_warnings ();
4414
4415 /* If what we are about to multiply by the size of the elements
4416 contains a constant term, apply distributive law
4417 and multiply that constant term separately.
4418 This helps produce common subexpressions. */
4419 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
4420 && !TREE_CONSTANT (intop)
4421 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
4422 && TREE_CONSTANT (size_exp)
4423 /* If the constant comes from pointer subtraction,
4424 skip this optimization--it would cause an error. */
4425 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
4426 /* If the constant is unsigned, and smaller than the pointer size,
4427 then we must skip this optimization. This is because it could cause
4428 an overflow error if the constant is negative but INTOP is not. */
4429 && (!TYPE_UNSIGNED (TREE_TYPE (intop))
4430 || (TYPE_PRECISION (TREE_TYPE (intop))
4431 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
4432 {
4433 enum tree_code subcode = resultcode;
4434 tree int_type = TREE_TYPE (intop);
4435 if (TREE_CODE (intop) == MINUS_EXPR)
4436 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
4437 /* Convert both subexpression types to the type of intop,
4438 because weird cases involving pointer arithmetic
4439 can result in a sum or difference with different type args. */
4440 ptrop = build_binary_op (EXPR_LOCATION (TREE_OPERAND (intop, 1)),
4441 subcode, ptrop,
4442 convert (int_type, TREE_OPERAND (intop, 1)), 1);
4443 intop = convert (int_type, TREE_OPERAND (intop, 0));
4444 }
4445
4446 /* Convert the integer argument to a type the same size as sizetype
4447 so the multiply won't overflow spuriously. */
4448 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
4449 || TYPE_UNSIGNED (TREE_TYPE (intop)) != TYPE_UNSIGNED (sizetype))
4450 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
4451 TYPE_UNSIGNED (sizetype)), intop);
4452
4453 /* Replace the integer argument with a suitable product by the object size.
4454 Do this multiplication as signed, then convert to the appropriate type
4455 for the pointer operation and disregard an overflow that occurred only
4456 because of the sign-extension change in the latter conversion. */
4457 {
4458 tree t = fold_build2_loc (loc, MULT_EXPR, TREE_TYPE (intop), intop,
4459 convert (TREE_TYPE (intop), size_exp));
4460 intop = convert (sizetype, t);
4461 if (TREE_OVERFLOW_P (intop) && !TREE_OVERFLOW (t))
4462 intop = wide_int_to_tree (TREE_TYPE (intop), intop);
4463 }
4464
4465 /* Create the sum or difference. */
4466 if (resultcode == MINUS_EXPR)
4467 intop = fold_build1_loc (loc, NEGATE_EXPR, sizetype, intop);
4468
4469 ret = fold_build_pointer_plus_loc (loc, ptrop, intop);
4470
4471 fold_undefer_and_ignore_overflow_warnings ();
4472
4473 return ret;
4474 }
4475 \f
4476 /* Wrap a C_MAYBE_CONST_EXPR around an expression that is fully folded
4477 and if NON_CONST is known not to be permitted in an evaluated part
4478 of a constant expression. */
4479
4480 tree
4481 c_wrap_maybe_const (tree expr, bool non_const)
4482 {
4483 bool nowarning = TREE_NO_WARNING (expr);
4484 location_t loc = EXPR_LOCATION (expr);
4485
4486 /* This should never be called for C++. */
4487 if (c_dialect_cxx ())
4488 gcc_unreachable ();
4489
4490 /* The result of folding may have a NOP_EXPR to set TREE_NO_WARNING. */
4491 STRIP_TYPE_NOPS (expr);
4492 expr = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (expr), NULL, expr);
4493 C_MAYBE_CONST_EXPR_NON_CONST (expr) = non_const;
4494 if (nowarning)
4495 TREE_NO_WARNING (expr) = 1;
4496 protected_set_expr_location (expr, loc);
4497
4498 return expr;
4499 }
4500
4501 /* Wrap a SAVE_EXPR around EXPR, if appropriate. Like save_expr, but
4502 for C folds the inside expression and wraps a C_MAYBE_CONST_EXPR
4503 around the SAVE_EXPR if needed so that c_fully_fold does not need
4504 to look inside SAVE_EXPRs. */
4505
4506 tree
4507 c_save_expr (tree expr)
4508 {
4509 bool maybe_const = true;
4510 if (c_dialect_cxx ())
4511 return save_expr (expr);
4512 expr = c_fully_fold (expr, false, &maybe_const);
4513 expr = save_expr (expr);
4514 if (!maybe_const)
4515 expr = c_wrap_maybe_const (expr, true);
4516 return expr;
4517 }
4518
4519 /* Return whether EXPR is a declaration whose address can never be
4520 NULL. */
4521
4522 bool
4523 decl_with_nonnull_addr_p (const_tree expr)
4524 {
4525 return (DECL_P (expr)
4526 && (TREE_CODE (expr) == PARM_DECL
4527 || TREE_CODE (expr) == LABEL_DECL
4528 || !DECL_WEAK (expr)));
4529 }
4530
4531 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
4532 or for an `if' or `while' statement or ?..: exp. It should already
4533 have been validated to be of suitable type; otherwise, a bad
4534 diagnostic may result.
4535
4536 The EXPR is located at LOCATION.
4537
4538 This preparation consists of taking the ordinary
4539 representation of an expression expr and producing a valid tree
4540 boolean expression describing whether expr is nonzero. We could
4541 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
4542 but we optimize comparisons, &&, ||, and !.
4543
4544 The resulting type should always be `truthvalue_type_node'. */
4545
4546 tree
4547 c_common_truthvalue_conversion (location_t location, tree expr)
4548 {
4549 switch (TREE_CODE (expr))
4550 {
4551 case EQ_EXPR: case NE_EXPR: case UNEQ_EXPR: case LTGT_EXPR:
4552 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
4553 case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
4554 case ORDERED_EXPR: case UNORDERED_EXPR:
4555 if (TREE_TYPE (expr) == truthvalue_type_node)
4556 return expr;
4557 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
4558 TREE_OPERAND (expr, 0), TREE_OPERAND (expr, 1));
4559 goto ret;
4560
4561 case TRUTH_ANDIF_EXPR:
4562 case TRUTH_ORIF_EXPR:
4563 case TRUTH_AND_EXPR:
4564 case TRUTH_OR_EXPR:
4565 case TRUTH_XOR_EXPR:
4566 if (TREE_TYPE (expr) == truthvalue_type_node)
4567 return expr;
4568 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
4569 c_common_truthvalue_conversion (location,
4570 TREE_OPERAND (expr, 0)),
4571 c_common_truthvalue_conversion (location,
4572 TREE_OPERAND (expr, 1)));
4573 goto ret;
4574
4575 case TRUTH_NOT_EXPR:
4576 if (TREE_TYPE (expr) == truthvalue_type_node)
4577 return expr;
4578 expr = build1 (TREE_CODE (expr), truthvalue_type_node,
4579 c_common_truthvalue_conversion (location,
4580 TREE_OPERAND (expr, 0)));
4581 goto ret;
4582
4583 case ERROR_MARK:
4584 return expr;
4585
4586 case INTEGER_CST:
4587 return integer_zerop (expr) ? truthvalue_false_node
4588 : truthvalue_true_node;
4589
4590 case REAL_CST:
4591 return real_compare (NE_EXPR, &TREE_REAL_CST (expr), &dconst0)
4592 ? truthvalue_true_node
4593 : truthvalue_false_node;
4594
4595 case FIXED_CST:
4596 return fixed_compare (NE_EXPR, &TREE_FIXED_CST (expr),
4597 &FCONST0 (TYPE_MODE (TREE_TYPE (expr))))
4598 ? truthvalue_true_node
4599 : truthvalue_false_node;
4600
4601 case FUNCTION_DECL:
4602 expr = build_unary_op (location, ADDR_EXPR, expr, false);
4603 /* Fall through. */
4604
4605 case ADDR_EXPR:
4606 {
4607 tree inner = TREE_OPERAND (expr, 0);
4608 if (decl_with_nonnull_addr_p (inner))
4609 {
4610 /* Common Ada/Pascal programmer's mistake. */
4611 warning_at (location,
4612 OPT_Waddress,
4613 "the address of %qD will always evaluate as %<true%>",
4614 inner);
4615 return truthvalue_true_node;
4616 }
4617 break;
4618 }
4619
4620 case COMPLEX_EXPR:
4621 expr = build_binary_op (EXPR_LOCATION (expr),
4622 (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
4623 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
4624 c_common_truthvalue_conversion (location,
4625 TREE_OPERAND (expr, 0)),
4626 c_common_truthvalue_conversion (location,
4627 TREE_OPERAND (expr, 1)),
4628 0);
4629 goto ret;
4630
4631 case NEGATE_EXPR:
4632 case ABS_EXPR:
4633 case FLOAT_EXPR:
4634 case EXCESS_PRECISION_EXPR:
4635 /* These don't change whether an object is nonzero or zero. */
4636 return c_common_truthvalue_conversion (location, TREE_OPERAND (expr, 0));
4637
4638 case LROTATE_EXPR:
4639 case RROTATE_EXPR:
4640 /* These don't change whether an object is zero or nonzero, but
4641 we can't ignore them if their second arg has side-effects. */
4642 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
4643 {
4644 expr = build2 (COMPOUND_EXPR, truthvalue_type_node,
4645 TREE_OPERAND (expr, 1),
4646 c_common_truthvalue_conversion
4647 (location, TREE_OPERAND (expr, 0)));
4648 goto ret;
4649 }
4650 else
4651 return c_common_truthvalue_conversion (location,
4652 TREE_OPERAND (expr, 0));
4653
4654 case COND_EXPR:
4655 /* Distribute the conversion into the arms of a COND_EXPR. */
4656 if (c_dialect_cxx ())
4657 {
4658 tree op1 = TREE_OPERAND (expr, 1);
4659 tree op2 = TREE_OPERAND (expr, 2);
4660 /* In C++ one of the arms might have void type if it is throw. */
4661 if (!VOID_TYPE_P (TREE_TYPE (op1)))
4662 op1 = c_common_truthvalue_conversion (location, op1);
4663 if (!VOID_TYPE_P (TREE_TYPE (op2)))
4664 op2 = c_common_truthvalue_conversion (location, op2);
4665 expr = fold_build3_loc (location, COND_EXPR, truthvalue_type_node,
4666 TREE_OPERAND (expr, 0), op1, op2);
4667 goto ret;
4668 }
4669 else
4670 {
4671 /* Folding will happen later for C. */
4672 expr = build3 (COND_EXPR, truthvalue_type_node,
4673 TREE_OPERAND (expr, 0),
4674 c_common_truthvalue_conversion (location,
4675 TREE_OPERAND (expr, 1)),
4676 c_common_truthvalue_conversion (location,
4677 TREE_OPERAND (expr, 2)));
4678 goto ret;
4679 }
4680
4681 CASE_CONVERT:
4682 {
4683 tree totype = TREE_TYPE (expr);
4684 tree fromtype = TREE_TYPE (TREE_OPERAND (expr, 0));
4685
4686 if (POINTER_TYPE_P (totype)
4687 && !c_inhibit_evaluation_warnings
4688 && TREE_CODE (fromtype) == REFERENCE_TYPE)
4689 {
4690 tree inner = expr;
4691 STRIP_NOPS (inner);
4692
4693 if (DECL_P (inner))
4694 warning_at (location,
4695 OPT_Waddress,
4696 "the compiler can assume that the address of "
4697 "%qD will always evaluate to %<true%>",
4698 inner);
4699 }
4700
4701 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
4702 since that affects how `default_conversion' will behave. */
4703 if (TREE_CODE (totype) == REFERENCE_TYPE
4704 || TREE_CODE (fromtype) == REFERENCE_TYPE)
4705 break;
4706 /* Don't strip a conversion from C++0x scoped enum, since they
4707 don't implicitly convert to other types. */
4708 if (TREE_CODE (fromtype) == ENUMERAL_TYPE
4709 && ENUM_IS_SCOPED (fromtype))
4710 break;
4711 /* If this isn't narrowing the argument, we can ignore it. */
4712 if (TYPE_PRECISION (totype) >= TYPE_PRECISION (fromtype))
4713 return c_common_truthvalue_conversion (location,
4714 TREE_OPERAND (expr, 0));
4715 }
4716 break;
4717
4718 case MODIFY_EXPR:
4719 if (!TREE_NO_WARNING (expr)
4720 && warn_parentheses)
4721 {
4722 warning_at (location, OPT_Wparentheses,
4723 "suggest parentheses around assignment used as "
4724 "truth value");
4725 TREE_NO_WARNING (expr) = 1;
4726 }
4727 break;
4728
4729 default:
4730 break;
4731 }
4732
4733 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
4734 {
4735 tree t = (in_late_binary_op ? save_expr (expr) : c_save_expr (expr));
4736 expr = (build_binary_op
4737 (EXPR_LOCATION (expr),
4738 (TREE_SIDE_EFFECTS (expr)
4739 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
4740 c_common_truthvalue_conversion
4741 (location,
4742 build_unary_op (location, REALPART_EXPR, t, false)),
4743 c_common_truthvalue_conversion
4744 (location,
4745 build_unary_op (location, IMAGPART_EXPR, t, false)),
4746 0));
4747 goto ret;
4748 }
4749
4750 if (TREE_CODE (TREE_TYPE (expr)) == FIXED_POINT_TYPE)
4751 {
4752 tree fixed_zero_node = build_fixed (TREE_TYPE (expr),
4753 FCONST0 (TYPE_MODE
4754 (TREE_TYPE (expr))));
4755 return build_binary_op (location, NE_EXPR, expr, fixed_zero_node, 1);
4756 }
4757 else
4758 return build_binary_op (location, NE_EXPR, expr, integer_zero_node, 1);
4759
4760 ret:
4761 protected_set_expr_location (expr, location);
4762 return expr;
4763 }
4764 \f
4765 static void def_builtin_1 (enum built_in_function fncode,
4766 const char *name,
4767 enum built_in_class fnclass,
4768 tree fntype, tree libtype,
4769 bool both_p, bool fallback_p, bool nonansi_p,
4770 tree fnattrs, bool implicit_p);
4771
4772
4773 /* Apply the TYPE_QUALS to the new DECL. */
4774
4775 void
4776 c_apply_type_quals_to_decl (int type_quals, tree decl)
4777 {
4778 tree type = TREE_TYPE (decl);
4779
4780 if (type == error_mark_node)
4781 return;
4782
4783 if ((type_quals & TYPE_QUAL_CONST)
4784 || (type && TREE_CODE (type) == REFERENCE_TYPE))
4785 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
4786 constructor can produce constant init, so rely on cp_finish_decl to
4787 clear TREE_READONLY if the variable has non-constant init. */
4788 TREE_READONLY (decl) = 1;
4789 if (type_quals & TYPE_QUAL_VOLATILE)
4790 {
4791 TREE_SIDE_EFFECTS (decl) = 1;
4792 TREE_THIS_VOLATILE (decl) = 1;
4793 }
4794 if (type_quals & TYPE_QUAL_RESTRICT)
4795 {
4796 while (type && TREE_CODE (type) == ARRAY_TYPE)
4797 /* Allow 'restrict' on arrays of pointers.
4798 FIXME currently we just ignore it. */
4799 type = TREE_TYPE (type);
4800 if (!type
4801 || !POINTER_TYPE_P (type)
4802 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type)))
4803 error ("invalid use of %<restrict%>");
4804 }
4805 }
4806
4807 struct c_type_hasher : ggc_ptr_hash<tree_node>
4808 {
4809 static hashval_t hash (tree);
4810 static bool equal (tree, tree);
4811 };
4812
4813 /* Hash function for the problem of multiple type definitions in
4814 different files. This must hash all types that will compare
4815 equal via comptypes to the same value. In practice it hashes
4816 on some of the simple stuff and leaves the details to comptypes. */
4817
4818 hashval_t
4819 c_type_hasher::hash (tree t)
4820 {
4821 int n_elements;
4822 int shift, size;
4823 tree t2;
4824 switch (TREE_CODE (t))
4825 {
4826 /* For pointers, hash on pointee type plus some swizzling. */
4827 case POINTER_TYPE:
4828 return hash (TREE_TYPE (t)) ^ 0x3003003;
4829 /* Hash on number of elements and total size. */
4830 case ENUMERAL_TYPE:
4831 shift = 3;
4832 t2 = TYPE_VALUES (t);
4833 break;
4834 case RECORD_TYPE:
4835 shift = 0;
4836 t2 = TYPE_FIELDS (t);
4837 break;
4838 case QUAL_UNION_TYPE:
4839 shift = 1;
4840 t2 = TYPE_FIELDS (t);
4841 break;
4842 case UNION_TYPE:
4843 shift = 2;
4844 t2 = TYPE_FIELDS (t);
4845 break;
4846 default:
4847 gcc_unreachable ();
4848 }
4849 /* FIXME: We want to use a DECL_CHAIN iteration method here, but
4850 TYPE_VALUES of ENUMERAL_TYPEs is stored as a TREE_LIST. */
4851 n_elements = list_length (t2);
4852 /* We might have a VLA here. */
4853 if (TREE_CODE (TYPE_SIZE (t)) != INTEGER_CST)
4854 size = 0;
4855 else
4856 size = TREE_INT_CST_LOW (TYPE_SIZE (t));
4857 return ((size << 24) | (n_elements << shift));
4858 }
4859
4860 bool
4861 c_type_hasher::equal (tree t1, tree t2)
4862 {
4863 return lang_hooks.types_compatible_p (t1, t2);
4864 }
4865
4866 static GTY(()) hash_table<c_type_hasher> *type_hash_table;
4867
4868 /* Return the typed-based alias set for T, which may be an expression
4869 or a type. Return -1 if we don't do anything special. */
4870
4871 alias_set_type
4872 c_common_get_alias_set (tree t)
4873 {
4874 /* For VLAs, use the alias set of the element type rather than the
4875 default of alias set 0 for types compared structurally. */
4876 if (TYPE_P (t) && TYPE_STRUCTURAL_EQUALITY_P (t))
4877 {
4878 if (TREE_CODE (t) == ARRAY_TYPE)
4879 return get_alias_set (TREE_TYPE (t));
4880 return -1;
4881 }
4882
4883 /* That's all the expressions we handle specially. */
4884 if (!TYPE_P (t))
4885 return -1;
4886
4887 /* The C standard guarantees that any object may be accessed via an
4888 lvalue that has character type. */
4889 if (t == char_type_node
4890 || t == signed_char_type_node
4891 || t == unsigned_char_type_node)
4892 return 0;
4893
4894 /* The C standard specifically allows aliasing between signed and
4895 unsigned variants of the same type. We treat the signed
4896 variant as canonical. */
4897 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
4898 {
4899 tree t1 = c_common_signed_type (t);
4900
4901 /* t1 == t can happen for boolean nodes which are always unsigned. */
4902 if (t1 != t)
4903 return get_alias_set (t1);
4904 }
4905
4906 /* Handle the case of multiple type nodes referring to "the same" type,
4907 which occurs with IMA. These share an alias set. FIXME: Currently only
4908 C90 is handled. (In C99 type compatibility is not transitive, which
4909 complicates things mightily. The alias set splay trees can theoretically
4910 represent this, but insertion is tricky when you consider all the
4911 different orders things might arrive in.) */
4912
4913 if (c_language != clk_c || flag_isoc99)
4914 return -1;
4915
4916 /* Save time if there's only one input file. */
4917 if (num_in_fnames == 1)
4918 return -1;
4919
4920 /* Pointers need special handling if they point to any type that
4921 needs special handling (below). */
4922 if (TREE_CODE (t) == POINTER_TYPE)
4923 {
4924 tree t2;
4925 /* Find bottom type under any nested POINTERs. */
4926 for (t2 = TREE_TYPE (t);
4927 TREE_CODE (t2) == POINTER_TYPE;
4928 t2 = TREE_TYPE (t2))
4929 ;
4930 if (!RECORD_OR_UNION_TYPE_P (t2)
4931 && TREE_CODE (t2) != ENUMERAL_TYPE)
4932 return -1;
4933 if (TYPE_SIZE (t2) == 0)
4934 return -1;
4935 }
4936 /* These are the only cases that need special handling. */
4937 if (!RECORD_OR_UNION_TYPE_P (t)
4938 && TREE_CODE (t) != ENUMERAL_TYPE
4939 && TREE_CODE (t) != POINTER_TYPE)
4940 return -1;
4941 /* Undefined? */
4942 if (TYPE_SIZE (t) == 0)
4943 return -1;
4944
4945 /* Look up t in hash table. Only one of the compatible types within each
4946 alias set is recorded in the table. */
4947 if (!type_hash_table)
4948 type_hash_table = hash_table<c_type_hasher>::create_ggc (1021);
4949 tree *slot = type_hash_table->find_slot (t, INSERT);
4950 if (*slot != NULL)
4951 {
4952 TYPE_ALIAS_SET (t) = TYPE_ALIAS_SET ((tree)*slot);
4953 return TYPE_ALIAS_SET ((tree)*slot);
4954 }
4955 else
4956 /* Our caller will assign and record (in t) a new alias set; all we need
4957 to do is remember t in the hash table. */
4958 *slot = t;
4959
4960 return -1;
4961 }
4962 \f
4963 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where
4964 the IS_SIZEOF parameter indicates which operator is being applied.
4965 The COMPLAIN flag controls whether we should diagnose possibly
4966 ill-formed constructs or not. LOC is the location of the SIZEOF or
4967 TYPEOF operator. If MIN_ALIGNOF, the least alignment required for
4968 a type in any context should be returned, rather than the normal
4969 alignment for that type. */
4970
4971 tree
4972 c_sizeof_or_alignof_type (location_t loc,
4973 tree type, bool is_sizeof, bool min_alignof,
4974 int complain)
4975 {
4976 const char *op_name;
4977 tree value = NULL;
4978 enum tree_code type_code = TREE_CODE (type);
4979
4980 op_name = is_sizeof ? "sizeof" : "__alignof__";
4981
4982 if (type_code == FUNCTION_TYPE)
4983 {
4984 if (is_sizeof)
4985 {
4986 if (complain && warn_pointer_arith)
4987 pedwarn (loc, OPT_Wpointer_arith,
4988 "invalid application of %<sizeof%> to a function type");
4989 else if (!complain)
4990 return error_mark_node;
4991 value = size_one_node;
4992 }
4993 else
4994 {
4995 if (complain)
4996 {
4997 if (c_dialect_cxx ())
4998 pedwarn (loc, OPT_Wpedantic, "ISO C++ does not permit "
4999 "%<alignof%> applied to a function type");
5000 else
5001 pedwarn (loc, OPT_Wpedantic, "ISO C does not permit "
5002 "%<_Alignof%> applied to a function type");
5003 }
5004 value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
5005 }
5006 }
5007 else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
5008 {
5009 if (type_code == VOID_TYPE
5010 && complain && warn_pointer_arith)
5011 pedwarn (loc, OPT_Wpointer_arith,
5012 "invalid application of %qs to a void type", op_name);
5013 else if (!complain)
5014 return error_mark_node;
5015 value = size_one_node;
5016 }
5017 else if (!COMPLETE_TYPE_P (type)
5018 && (!c_dialect_cxx () || is_sizeof || type_code != ARRAY_TYPE))
5019 {
5020 if (complain)
5021 error_at (loc, "invalid application of %qs to incomplete type %qT",
5022 op_name, type);
5023 return error_mark_node;
5024 }
5025 else if (c_dialect_cxx () && type_code == ARRAY_TYPE
5026 && !COMPLETE_TYPE_P (TREE_TYPE (type)))
5027 {
5028 if (complain)
5029 error_at (loc, "invalid application of %qs to array type %qT of "
5030 "incomplete element type", op_name, type);
5031 return error_mark_node;
5032 }
5033 else
5034 {
5035 if (is_sizeof)
5036 /* Convert in case a char is more than one unit. */
5037 value = size_binop_loc (loc, CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
5038 size_int (TYPE_PRECISION (char_type_node)
5039 / BITS_PER_UNIT));
5040 else if (min_alignof)
5041 value = size_int (min_align_of_type (type));
5042 else
5043 value = size_int (TYPE_ALIGN_UNIT (type));
5044 }
5045
5046 /* VALUE will have the middle-end integer type sizetype.
5047 However, we should really return a value of type `size_t',
5048 which is just a typedef for an ordinary integer type. */
5049 value = fold_convert_loc (loc, size_type_node, value);
5050
5051 return value;
5052 }
5053
5054 /* Implement the __alignof keyword: Return the minimum required
5055 alignment of EXPR, measured in bytes. For VAR_DECLs,
5056 FUNCTION_DECLs and FIELD_DECLs return DECL_ALIGN (which can be set
5057 from an "aligned" __attribute__ specification). LOC is the
5058 location of the ALIGNOF operator. */
5059
5060 tree
5061 c_alignof_expr (location_t loc, tree expr)
5062 {
5063 tree t;
5064
5065 if (VAR_OR_FUNCTION_DECL_P (expr))
5066 t = size_int (DECL_ALIGN_UNIT (expr));
5067
5068 else if (TREE_CODE (expr) == COMPONENT_REF
5069 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
5070 {
5071 error_at (loc, "%<__alignof%> applied to a bit-field");
5072 t = size_one_node;
5073 }
5074 else if (TREE_CODE (expr) == COMPONENT_REF
5075 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
5076 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr, 1)));
5077
5078 else if (INDIRECT_REF_P (expr))
5079 {
5080 tree t = TREE_OPERAND (expr, 0);
5081 tree best = t;
5082 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
5083
5084 while (CONVERT_EXPR_P (t)
5085 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
5086 {
5087 int thisalign;
5088
5089 t = TREE_OPERAND (t, 0);
5090 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
5091 if (thisalign > bestalign)
5092 best = t, bestalign = thisalign;
5093 }
5094 return c_alignof (loc, TREE_TYPE (TREE_TYPE (best)));
5095 }
5096 else
5097 return c_alignof (loc, TREE_TYPE (expr));
5098
5099 return fold_convert_loc (loc, size_type_node, t);
5100 }
5101 \f
5102 /* Handle C and C++ default attributes. */
5103
5104 enum built_in_attribute
5105 {
5106 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
5107 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
5108 #define DEF_ATTR_STRING(ENUM, VALUE) ENUM,
5109 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
5110 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
5111 #include "builtin-attrs.def"
5112 #undef DEF_ATTR_NULL_TREE
5113 #undef DEF_ATTR_INT
5114 #undef DEF_ATTR_STRING
5115 #undef DEF_ATTR_IDENT
5116 #undef DEF_ATTR_TREE_LIST
5117 ATTR_LAST
5118 };
5119
5120 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
5121
5122 static void c_init_attributes (void);
5123
5124 enum c_builtin_type
5125 {
5126 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
5127 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
5128 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
5129 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
5130 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
5131 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
5132 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
5133 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5134 ARG6) NAME,
5135 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5136 ARG6, ARG7) NAME,
5137 #define DEF_FUNCTION_TYPE_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5138 ARG6, ARG7, ARG8) NAME,
5139 #define DEF_FUNCTION_TYPE_9(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5140 ARG6, ARG7, ARG8, ARG9) NAME,
5141 #define DEF_FUNCTION_TYPE_10(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5142 ARG6, ARG7, ARG8, ARG9, ARG10) NAME,
5143 #define DEF_FUNCTION_TYPE_11(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5144 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) NAME,
5145 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
5146 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
5147 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
5148 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
5149 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
5150 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
5151 NAME,
5152 #define DEF_FUNCTION_TYPE_VAR_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5153 ARG6) NAME,
5154 #define DEF_FUNCTION_TYPE_VAR_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5155 ARG6, ARG7) NAME,
5156 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
5157 #include "builtin-types.def"
5158 #undef DEF_PRIMITIVE_TYPE
5159 #undef DEF_FUNCTION_TYPE_0
5160 #undef DEF_FUNCTION_TYPE_1
5161 #undef DEF_FUNCTION_TYPE_2
5162 #undef DEF_FUNCTION_TYPE_3
5163 #undef DEF_FUNCTION_TYPE_4
5164 #undef DEF_FUNCTION_TYPE_5
5165 #undef DEF_FUNCTION_TYPE_6
5166 #undef DEF_FUNCTION_TYPE_7
5167 #undef DEF_FUNCTION_TYPE_8
5168 #undef DEF_FUNCTION_TYPE_9
5169 #undef DEF_FUNCTION_TYPE_10
5170 #undef DEF_FUNCTION_TYPE_11
5171 #undef DEF_FUNCTION_TYPE_VAR_0
5172 #undef DEF_FUNCTION_TYPE_VAR_1
5173 #undef DEF_FUNCTION_TYPE_VAR_2
5174 #undef DEF_FUNCTION_TYPE_VAR_3
5175 #undef DEF_FUNCTION_TYPE_VAR_4
5176 #undef DEF_FUNCTION_TYPE_VAR_5
5177 #undef DEF_FUNCTION_TYPE_VAR_6
5178 #undef DEF_FUNCTION_TYPE_VAR_7
5179 #undef DEF_POINTER_TYPE
5180 BT_LAST
5181 };
5182
5183 typedef enum c_builtin_type builtin_type;
5184
5185 /* A temporary array for c_common_nodes_and_builtins. Used in
5186 communication with def_fn_type. */
5187 static tree builtin_types[(int) BT_LAST + 1];
5188
5189 /* A helper function for c_common_nodes_and_builtins. Build function type
5190 for DEF with return type RET and N arguments. If VAR is true, then the
5191 function should be variadic after those N arguments.
5192
5193 Takes special care not to ICE if any of the types involved are
5194 error_mark_node, which indicates that said type is not in fact available
5195 (see builtin_type_for_size). In which case the function type as a whole
5196 should be error_mark_node. */
5197
5198 static void
5199 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
5200 {
5201 tree t;
5202 tree *args = XALLOCAVEC (tree, n);
5203 va_list list;
5204 int i;
5205
5206 va_start (list, n);
5207 for (i = 0; i < n; ++i)
5208 {
5209 builtin_type a = (builtin_type) va_arg (list, int);
5210 t = builtin_types[a];
5211 if (t == error_mark_node)
5212 goto egress;
5213 args[i] = t;
5214 }
5215
5216 t = builtin_types[ret];
5217 if (t == error_mark_node)
5218 goto egress;
5219 if (var)
5220 t = build_varargs_function_type_array (t, n, args);
5221 else
5222 t = build_function_type_array (t, n, args);
5223
5224 egress:
5225 builtin_types[def] = t;
5226 va_end (list);
5227 }
5228
5229 /* Build builtin functions common to both C and C++ language
5230 frontends. */
5231
5232 static void
5233 c_define_builtins (tree va_list_ref_type_node, tree va_list_arg_type_node)
5234 {
5235 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
5236 builtin_types[ENUM] = VALUE;
5237 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
5238 def_fn_type (ENUM, RETURN, 0, 0);
5239 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
5240 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
5241 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
5242 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
5243 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
5244 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
5245 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
5246 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
5247 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
5248 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
5249 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5250 ARG6) \
5251 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
5252 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5253 ARG6, ARG7) \
5254 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
5255 #define DEF_FUNCTION_TYPE_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5256 ARG6, ARG7, ARG8) \
5257 def_fn_type (ENUM, RETURN, 0, 8, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
5258 ARG7, ARG8);
5259 #define DEF_FUNCTION_TYPE_9(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5260 ARG6, ARG7, ARG8, ARG9) \
5261 def_fn_type (ENUM, RETURN, 0, 9, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
5262 ARG7, ARG8, ARG9);
5263 #define DEF_FUNCTION_TYPE_10(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5264 ARG6, ARG7, ARG8, ARG9, ARG10) \
5265 def_fn_type (ENUM, RETURN, 0, 10, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
5266 ARG7, ARG8, ARG9, ARG10);
5267 #define DEF_FUNCTION_TYPE_11(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5268 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) \
5269 def_fn_type (ENUM, RETURN, 0, 11, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
5270 ARG7, ARG8, ARG9, ARG10, ARG11);
5271 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
5272 def_fn_type (ENUM, RETURN, 1, 0);
5273 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
5274 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
5275 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
5276 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
5277 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
5278 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
5279 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
5280 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
5281 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
5282 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
5283 #define DEF_FUNCTION_TYPE_VAR_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5284 ARG6) \
5285 def_fn_type (ENUM, RETURN, 1, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
5286 #define DEF_FUNCTION_TYPE_VAR_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
5287 ARG6, ARG7) \
5288 def_fn_type (ENUM, RETURN, 1, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
5289 #define DEF_POINTER_TYPE(ENUM, TYPE) \
5290 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
5291
5292 #include "builtin-types.def"
5293
5294 #undef DEF_PRIMITIVE_TYPE
5295 #undef DEF_FUNCTION_TYPE_0
5296 #undef DEF_FUNCTION_TYPE_1
5297 #undef DEF_FUNCTION_TYPE_2
5298 #undef DEF_FUNCTION_TYPE_3
5299 #undef DEF_FUNCTION_TYPE_4
5300 #undef DEF_FUNCTION_TYPE_5
5301 #undef DEF_FUNCTION_TYPE_6
5302 #undef DEF_FUNCTION_TYPE_7
5303 #undef DEF_FUNCTION_TYPE_8
5304 #undef DEF_FUNCTION_TYPE_9
5305 #undef DEF_FUNCTION_TYPE_10
5306 #undef DEF_FUNCTION_TYPE_11
5307 #undef DEF_FUNCTION_TYPE_VAR_0
5308 #undef DEF_FUNCTION_TYPE_VAR_1
5309 #undef DEF_FUNCTION_TYPE_VAR_2
5310 #undef DEF_FUNCTION_TYPE_VAR_3
5311 #undef DEF_FUNCTION_TYPE_VAR_4
5312 #undef DEF_FUNCTION_TYPE_VAR_5
5313 #undef DEF_FUNCTION_TYPE_VAR_6
5314 #undef DEF_FUNCTION_TYPE_VAR_7
5315 #undef DEF_POINTER_TYPE
5316 builtin_types[(int) BT_LAST] = NULL_TREE;
5317
5318 c_init_attributes ();
5319
5320 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
5321 NONANSI_P, ATTRS, IMPLICIT, COND) \
5322 if (NAME && COND) \
5323 def_builtin_1 (ENUM, NAME, CLASS, \
5324 builtin_types[(int) TYPE], \
5325 builtin_types[(int) LIBTYPE], \
5326 BOTH_P, FALLBACK_P, NONANSI_P, \
5327 built_in_attributes[(int) ATTRS], IMPLICIT);
5328 #include "builtins.def"
5329
5330 targetm.init_builtins ();
5331
5332 build_common_builtin_nodes ();
5333
5334 if (flag_cilkplus)
5335 cilk_init_builtins ();
5336 }
5337
5338 /* Like get_identifier, but avoid warnings about null arguments when
5339 the argument may be NULL for targets where GCC lacks stdint.h type
5340 information. */
5341
5342 static inline tree
5343 c_get_ident (const char *id)
5344 {
5345 return get_identifier (id);
5346 }
5347
5348 /* Build tree nodes and builtin functions common to both C and C++ language
5349 frontends. */
5350
5351 void
5352 c_common_nodes_and_builtins (void)
5353 {
5354 int char16_type_size;
5355 int char32_type_size;
5356 int wchar_type_size;
5357 tree array_domain_type;
5358 tree va_list_ref_type_node;
5359 tree va_list_arg_type_node;
5360 int i;
5361
5362 build_common_tree_nodes (flag_signed_char);
5363
5364 /* Define `int' and `char' first so that dbx will output them first. */
5365 record_builtin_type (RID_INT, NULL, integer_type_node);
5366 record_builtin_type (RID_CHAR, "char", char_type_node);
5367
5368 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
5369 "unsigned long", "long long unsigned" and "unsigned short" were in C++
5370 but not C. Are the conditionals here needed? */
5371 if (c_dialect_cxx ())
5372 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
5373 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
5374 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
5375 record_builtin_type (RID_MAX, "long unsigned int",
5376 long_unsigned_type_node);
5377
5378 for (i = 0; i < NUM_INT_N_ENTS; i ++)
5379 {
5380 char name[25];
5381
5382 sprintf (name, "__int%d", int_n_data[i].bitsize);
5383 record_builtin_type ((enum rid)(RID_FIRST_INT_N + i), name,
5384 int_n_trees[i].signed_type);
5385 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
5386 record_builtin_type (RID_MAX, name, int_n_trees[i].unsigned_type);
5387 }
5388
5389 if (c_dialect_cxx ())
5390 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
5391 record_builtin_type (RID_MAX, "long long int",
5392 long_long_integer_type_node);
5393 record_builtin_type (RID_MAX, "long long unsigned int",
5394 long_long_unsigned_type_node);
5395 if (c_dialect_cxx ())
5396 record_builtin_type (RID_MAX, "long long unsigned",
5397 long_long_unsigned_type_node);
5398 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
5399 record_builtin_type (RID_MAX, "short unsigned int",
5400 short_unsigned_type_node);
5401 if (c_dialect_cxx ())
5402 record_builtin_type (RID_MAX, "unsigned short",
5403 short_unsigned_type_node);
5404
5405 /* Define both `signed char' and `unsigned char'. */
5406 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
5407 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
5408
5409 /* These are types that c_common_type_for_size and
5410 c_common_type_for_mode use. */
5411 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5412 TYPE_DECL, NULL_TREE,
5413 intQI_type_node));
5414 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5415 TYPE_DECL, NULL_TREE,
5416 intHI_type_node));
5417 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5418 TYPE_DECL, NULL_TREE,
5419 intSI_type_node));
5420 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5421 TYPE_DECL, NULL_TREE,
5422 intDI_type_node));
5423 #if HOST_BITS_PER_WIDE_INT >= 64
5424 /* Note that this is different than the __int128 type that's part of
5425 the generic __intN support. */
5426 if (targetm.scalar_mode_supported_p (TImode))
5427 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5428 TYPE_DECL,
5429 get_identifier ("__int128_t"),
5430 intTI_type_node));
5431 #endif
5432 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5433 TYPE_DECL, NULL_TREE,
5434 unsigned_intQI_type_node));
5435 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5436 TYPE_DECL, NULL_TREE,
5437 unsigned_intHI_type_node));
5438 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5439 TYPE_DECL, NULL_TREE,
5440 unsigned_intSI_type_node));
5441 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5442 TYPE_DECL, NULL_TREE,
5443 unsigned_intDI_type_node));
5444 #if HOST_BITS_PER_WIDE_INT >= 64
5445 if (targetm.scalar_mode_supported_p (TImode))
5446 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5447 TYPE_DECL,
5448 get_identifier ("__uint128_t"),
5449 unsigned_intTI_type_node));
5450 #endif
5451
5452 /* Create the widest literal types. */
5453 widest_integer_literal_type_node
5454 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
5455 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5456 TYPE_DECL, NULL_TREE,
5457 widest_integer_literal_type_node));
5458
5459 widest_unsigned_literal_type_node
5460 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
5461 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5462 TYPE_DECL, NULL_TREE,
5463 widest_unsigned_literal_type_node));
5464
5465 signed_size_type_node = c_common_signed_type (size_type_node);
5466
5467 pid_type_node =
5468 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE)));
5469
5470 record_builtin_type (RID_FLOAT, NULL, float_type_node);
5471 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
5472 record_builtin_type (RID_MAX, "long double", long_double_type_node);
5473
5474 if (!c_dialect_cxx ())
5475 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
5476 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
5477 record_builtin_type ((enum rid) (RID_FLOATN_NX_FIRST + i), NULL,
5478 FLOATN_NX_TYPE_NODE (i));
5479
5480 /* Only supported decimal floating point extension if the target
5481 actually supports underlying modes. */
5482 if (targetm.scalar_mode_supported_p (SDmode)
5483 && targetm.scalar_mode_supported_p (DDmode)
5484 && targetm.scalar_mode_supported_p (TDmode))
5485 {
5486 record_builtin_type (RID_DFLOAT32, NULL, dfloat32_type_node);
5487 record_builtin_type (RID_DFLOAT64, NULL, dfloat64_type_node);
5488 record_builtin_type (RID_DFLOAT128, NULL, dfloat128_type_node);
5489 }
5490
5491 if (targetm.fixed_point_supported_p ())
5492 {
5493 record_builtin_type (RID_MAX, "short _Fract", short_fract_type_node);
5494 record_builtin_type (RID_FRACT, NULL, fract_type_node);
5495 record_builtin_type (RID_MAX, "long _Fract", long_fract_type_node);
5496 record_builtin_type (RID_MAX, "long long _Fract",
5497 long_long_fract_type_node);
5498 record_builtin_type (RID_MAX, "unsigned short _Fract",
5499 unsigned_short_fract_type_node);
5500 record_builtin_type (RID_MAX, "unsigned _Fract",
5501 unsigned_fract_type_node);
5502 record_builtin_type (RID_MAX, "unsigned long _Fract",
5503 unsigned_long_fract_type_node);
5504 record_builtin_type (RID_MAX, "unsigned long long _Fract",
5505 unsigned_long_long_fract_type_node);
5506 record_builtin_type (RID_MAX, "_Sat short _Fract",
5507 sat_short_fract_type_node);
5508 record_builtin_type (RID_MAX, "_Sat _Fract", sat_fract_type_node);
5509 record_builtin_type (RID_MAX, "_Sat long _Fract",
5510 sat_long_fract_type_node);
5511 record_builtin_type (RID_MAX, "_Sat long long _Fract",
5512 sat_long_long_fract_type_node);
5513 record_builtin_type (RID_MAX, "_Sat unsigned short _Fract",
5514 sat_unsigned_short_fract_type_node);
5515 record_builtin_type (RID_MAX, "_Sat unsigned _Fract",
5516 sat_unsigned_fract_type_node);
5517 record_builtin_type (RID_MAX, "_Sat unsigned long _Fract",
5518 sat_unsigned_long_fract_type_node);
5519 record_builtin_type (RID_MAX, "_Sat unsigned long long _Fract",
5520 sat_unsigned_long_long_fract_type_node);
5521 record_builtin_type (RID_MAX, "short _Accum", short_accum_type_node);
5522 record_builtin_type (RID_ACCUM, NULL, accum_type_node);
5523 record_builtin_type (RID_MAX, "long _Accum", long_accum_type_node);
5524 record_builtin_type (RID_MAX, "long long _Accum",
5525 long_long_accum_type_node);
5526 record_builtin_type (RID_MAX, "unsigned short _Accum",
5527 unsigned_short_accum_type_node);
5528 record_builtin_type (RID_MAX, "unsigned _Accum",
5529 unsigned_accum_type_node);
5530 record_builtin_type (RID_MAX, "unsigned long _Accum",
5531 unsigned_long_accum_type_node);
5532 record_builtin_type (RID_MAX, "unsigned long long _Accum",
5533 unsigned_long_long_accum_type_node);
5534 record_builtin_type (RID_MAX, "_Sat short _Accum",
5535 sat_short_accum_type_node);
5536 record_builtin_type (RID_MAX, "_Sat _Accum", sat_accum_type_node);
5537 record_builtin_type (RID_MAX, "_Sat long _Accum",
5538 sat_long_accum_type_node);
5539 record_builtin_type (RID_MAX, "_Sat long long _Accum",
5540 sat_long_long_accum_type_node);
5541 record_builtin_type (RID_MAX, "_Sat unsigned short _Accum",
5542 sat_unsigned_short_accum_type_node);
5543 record_builtin_type (RID_MAX, "_Sat unsigned _Accum",
5544 sat_unsigned_accum_type_node);
5545 record_builtin_type (RID_MAX, "_Sat unsigned long _Accum",
5546 sat_unsigned_long_accum_type_node);
5547 record_builtin_type (RID_MAX, "_Sat unsigned long long _Accum",
5548 sat_unsigned_long_long_accum_type_node);
5549
5550 }
5551
5552 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5553 TYPE_DECL,
5554 get_identifier ("complex int"),
5555 complex_integer_type_node));
5556 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5557 TYPE_DECL,
5558 get_identifier ("complex float"),
5559 complex_float_type_node));
5560 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
5561 TYPE_DECL,
5562 get_identifier ("complex double"),
5563 complex_double_type_node));
5564 lang_hooks.decls.pushdecl
5565 (build_decl (UNKNOWN_LOCATION,
5566 TYPE_DECL, get_identifier ("complex long double"),
5567 complex_long_double_type_node));
5568
5569 if (!c_dialect_cxx ())
5570 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
5571 if (COMPLEX_FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
5572 {
5573 char buf[30];
5574 sprintf (buf, "complex _Float%d%s", floatn_nx_types[i].n,
5575 floatn_nx_types[i].extended ? "x" : "");
5576 lang_hooks.decls.pushdecl
5577 (build_decl (UNKNOWN_LOCATION,
5578 TYPE_DECL,
5579 get_identifier (buf),
5580 COMPLEX_FLOATN_NX_TYPE_NODE (i)));
5581 }
5582
5583 if (c_dialect_cxx ())
5584 /* For C++, make fileptr_type_node a distinct void * type until
5585 FILE type is defined. */
5586 fileptr_type_node = build_variant_type_copy (ptr_type_node);
5587
5588 record_builtin_type (RID_VOID, NULL, void_type_node);
5589
5590 /* Set the TYPE_NAME for any variants that were built before
5591 record_builtin_type gave names to the built-in types. */
5592 {
5593 tree void_name = TYPE_NAME (void_type_node);
5594 TYPE_NAME (void_type_node) = NULL_TREE;
5595 TYPE_NAME (build_qualified_type (void_type_node, TYPE_QUAL_CONST))
5596 = void_name;
5597 TYPE_NAME (void_type_node) = void_name;
5598 }
5599
5600 void_list_node = build_void_list_node ();
5601
5602 /* Make a type to be the domain of a few array types
5603 whose domains don't really matter.
5604 200 is small enough that it always fits in size_t
5605 and large enough that it can hold most function names for the
5606 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
5607 array_domain_type = build_index_type (size_int (200));
5608
5609 /* Make a type for arrays of characters.
5610 With luck nothing will ever really depend on the length of this
5611 array type. */
5612 char_array_type_node
5613 = build_array_type (char_type_node, array_domain_type);
5614
5615 string_type_node = build_pointer_type (char_type_node);
5616 const_string_type_node
5617 = build_pointer_type (build_qualified_type
5618 (char_type_node, TYPE_QUAL_CONST));
5619
5620 /* This is special for C++ so functions can be overloaded. */
5621 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
5622 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
5623 wchar_type_size = TYPE_PRECISION (wchar_type_node);
5624 underlying_wchar_type_node = wchar_type_node;
5625 if (c_dialect_cxx ())
5626 {
5627 if (TYPE_UNSIGNED (wchar_type_node))
5628 wchar_type_node = make_unsigned_type (wchar_type_size);
5629 else
5630 wchar_type_node = make_signed_type (wchar_type_size);
5631 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
5632 }
5633
5634 /* This is for wide string constants. */
5635 wchar_array_type_node
5636 = build_array_type (wchar_type_node, array_domain_type);
5637
5638 /* Define 'char16_t'. */
5639 char16_type_node = get_identifier (CHAR16_TYPE);
5640 char16_type_node = TREE_TYPE (identifier_global_value (char16_type_node));
5641 char16_type_size = TYPE_PRECISION (char16_type_node);
5642 if (c_dialect_cxx ())
5643 {
5644 char16_type_node = make_unsigned_type (char16_type_size);
5645
5646 if (cxx_dialect >= cxx11)
5647 record_builtin_type (RID_CHAR16, "char16_t", char16_type_node);
5648 }
5649
5650 /* This is for UTF-16 string constants. */
5651 char16_array_type_node
5652 = build_array_type (char16_type_node, array_domain_type);
5653
5654 /* Define 'char32_t'. */
5655 char32_type_node = get_identifier (CHAR32_TYPE);
5656 char32_type_node = TREE_TYPE (identifier_global_value (char32_type_node));
5657 char32_type_size = TYPE_PRECISION (char32_type_node);
5658 if (c_dialect_cxx ())
5659 {
5660 char32_type_node = make_unsigned_type (char32_type_size);
5661
5662 if (cxx_dialect >= cxx11)
5663 record_builtin_type (RID_CHAR32, "char32_t", char32_type_node);
5664 }
5665
5666 /* This is for UTF-32 string constants. */
5667 char32_array_type_node
5668 = build_array_type (char32_type_node, array_domain_type);
5669
5670 wint_type_node =
5671 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
5672
5673 intmax_type_node =
5674 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
5675 uintmax_type_node =
5676 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
5677
5678 if (SIG_ATOMIC_TYPE)
5679 sig_atomic_type_node =
5680 TREE_TYPE (identifier_global_value (c_get_ident (SIG_ATOMIC_TYPE)));
5681 if (INT8_TYPE)
5682 int8_type_node =
5683 TREE_TYPE (identifier_global_value (c_get_ident (INT8_TYPE)));
5684 if (INT16_TYPE)
5685 int16_type_node =
5686 TREE_TYPE (identifier_global_value (c_get_ident (INT16_TYPE)));
5687 if (INT32_TYPE)
5688 int32_type_node =
5689 TREE_TYPE (identifier_global_value (c_get_ident (INT32_TYPE)));
5690 if (INT64_TYPE)
5691 int64_type_node =
5692 TREE_TYPE (identifier_global_value (c_get_ident (INT64_TYPE)));
5693 if (UINT8_TYPE)
5694 uint8_type_node =
5695 TREE_TYPE (identifier_global_value (c_get_ident (UINT8_TYPE)));
5696 if (UINT16_TYPE)
5697 c_uint16_type_node = uint16_type_node =
5698 TREE_TYPE (identifier_global_value (c_get_ident (UINT16_TYPE)));
5699 if (UINT32_TYPE)
5700 c_uint32_type_node = uint32_type_node =
5701 TREE_TYPE (identifier_global_value (c_get_ident (UINT32_TYPE)));
5702 if (UINT64_TYPE)
5703 c_uint64_type_node = uint64_type_node =
5704 TREE_TYPE (identifier_global_value (c_get_ident (UINT64_TYPE)));
5705 if (INT_LEAST8_TYPE)
5706 int_least8_type_node =
5707 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST8_TYPE)));
5708 if (INT_LEAST16_TYPE)
5709 int_least16_type_node =
5710 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST16_TYPE)));
5711 if (INT_LEAST32_TYPE)
5712 int_least32_type_node =
5713 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST32_TYPE)));
5714 if (INT_LEAST64_TYPE)
5715 int_least64_type_node =
5716 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST64_TYPE)));
5717 if (UINT_LEAST8_TYPE)
5718 uint_least8_type_node =
5719 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST8_TYPE)));
5720 if (UINT_LEAST16_TYPE)
5721 uint_least16_type_node =
5722 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST16_TYPE)));
5723 if (UINT_LEAST32_TYPE)
5724 uint_least32_type_node =
5725 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST32_TYPE)));
5726 if (UINT_LEAST64_TYPE)
5727 uint_least64_type_node =
5728 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST64_TYPE)));
5729 if (INT_FAST8_TYPE)
5730 int_fast8_type_node =
5731 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST8_TYPE)));
5732 if (INT_FAST16_TYPE)
5733 int_fast16_type_node =
5734 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST16_TYPE)));
5735 if (INT_FAST32_TYPE)
5736 int_fast32_type_node =
5737 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST32_TYPE)));
5738 if (INT_FAST64_TYPE)
5739 int_fast64_type_node =
5740 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST64_TYPE)));
5741 if (UINT_FAST8_TYPE)
5742 uint_fast8_type_node =
5743 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST8_TYPE)));
5744 if (UINT_FAST16_TYPE)
5745 uint_fast16_type_node =
5746 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST16_TYPE)));
5747 if (UINT_FAST32_TYPE)
5748 uint_fast32_type_node =
5749 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST32_TYPE)));
5750 if (UINT_FAST64_TYPE)
5751 uint_fast64_type_node =
5752 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST64_TYPE)));
5753 if (INTPTR_TYPE)
5754 intptr_type_node =
5755 TREE_TYPE (identifier_global_value (c_get_ident (INTPTR_TYPE)));
5756 if (UINTPTR_TYPE)
5757 uintptr_type_node =
5758 TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE)));
5759
5760 default_function_type
5761 = build_varargs_function_type_list (integer_type_node, NULL_TREE);
5762 ptrdiff_type_node
5763 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
5764 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
5765
5766 lang_hooks.decls.pushdecl
5767 (build_decl (UNKNOWN_LOCATION,
5768 TYPE_DECL, get_identifier ("__builtin_va_list"),
5769 va_list_type_node));
5770 if (targetm.enum_va_list_p)
5771 {
5772 int l;
5773 const char *pname;
5774 tree ptype;
5775
5776 for (l = 0; targetm.enum_va_list_p (l, &pname, &ptype); ++l)
5777 {
5778 lang_hooks.decls.pushdecl
5779 (build_decl (UNKNOWN_LOCATION,
5780 TYPE_DECL, get_identifier (pname),
5781 ptype));
5782
5783 }
5784 }
5785
5786 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
5787 {
5788 va_list_arg_type_node = va_list_ref_type_node =
5789 build_pointer_type (TREE_TYPE (va_list_type_node));
5790 }
5791 else
5792 {
5793 va_list_arg_type_node = va_list_type_node;
5794 va_list_ref_type_node = build_reference_type (va_list_type_node);
5795 }
5796
5797 if (!flag_preprocess_only)
5798 c_define_builtins (va_list_ref_type_node, va_list_arg_type_node);
5799
5800 main_identifier_node = get_identifier ("main");
5801
5802 /* Create the built-in __null node. It is important that this is
5803 not shared. */
5804 null_node = make_int_cst (1, 1);
5805 TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0);
5806
5807 /* Since builtin_types isn't gc'ed, don't export these nodes. */
5808 memset (builtin_types, 0, sizeof (builtin_types));
5809 }
5810
5811 /* The number of named compound-literals generated thus far. */
5812 static GTY(()) int compound_literal_number;
5813
5814 /* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
5815
5816 void
5817 set_compound_literal_name (tree decl)
5818 {
5819 char *name;
5820 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal",
5821 compound_literal_number);
5822 compound_literal_number++;
5823 DECL_NAME (decl) = get_identifier (name);
5824 }
5825
5826 /* build_va_arg helper function. Return a VA_ARG_EXPR with location LOC, type
5827 TYPE and operand OP. */
5828
5829 static tree
5830 build_va_arg_1 (location_t loc, tree type, tree op)
5831 {
5832 tree expr = build1 (VA_ARG_EXPR, type, op);
5833 SET_EXPR_LOCATION (expr, loc);
5834 return expr;
5835 }
5836
5837 /* Return a VA_ARG_EXPR corresponding to a source-level expression
5838 va_arg (EXPR, TYPE) at source location LOC. */
5839
5840 tree
5841 build_va_arg (location_t loc, tree expr, tree type)
5842 {
5843 tree va_type = TREE_TYPE (expr);
5844 tree canon_va_type = (va_type == error_mark_node
5845 ? error_mark_node
5846 : targetm.canonical_va_list_type (va_type));
5847
5848 if (va_type == error_mark_node
5849 || canon_va_type == NULL_TREE)
5850 {
5851 if (canon_va_type == NULL_TREE)
5852 error_at (loc, "first argument to %<va_arg%> not of type %<va_list%>");
5853
5854 /* Let's handle things neutrallly, if expr:
5855 - has undeclared type, or
5856 - is not an va_list type. */
5857 return build_va_arg_1 (loc, type, error_mark_node);
5858 }
5859
5860 if (TREE_CODE (canon_va_type) != ARRAY_TYPE)
5861 {
5862 /* Case 1: Not an array type. */
5863
5864 /* Take the address, to get '&ap'. Note that &ap is not a va_list
5865 type. */
5866 mark_addressable (expr);
5867 expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (expr)), expr);
5868
5869 return build_va_arg_1 (loc, type, expr);
5870 }
5871
5872 /* Case 2: Array type.
5873
5874 Background:
5875
5876 For contrast, let's start with the simple case (case 1). If
5877 canon_va_type is not an array type, but say a char *, then when
5878 passing-by-value a va_list, the type of the va_list param decl is
5879 the same as for another va_list decl (all ap's are char *):
5880
5881 f2_1 (char * ap)
5882 D.1815 = VA_ARG (&ap, 0B, 1);
5883 return D.1815;
5884
5885 f2 (int i)
5886 char * ap.0;
5887 char * ap;
5888 __builtin_va_start (&ap, 0);
5889 ap.0 = ap;
5890 res = f2_1 (ap.0);
5891 __builtin_va_end (&ap);
5892 D.1812 = res;
5893 return D.1812;
5894
5895 However, if canon_va_type is ARRAY_TYPE, then when passing-by-value a
5896 va_list the type of the va_list param decl (case 2b, struct * ap) is not
5897 the same as for another va_list decl (case 2a, struct ap[1]).
5898
5899 f2_1 (struct * ap)
5900 D.1844 = VA_ARG (ap, 0B, 0);
5901 return D.1844;
5902
5903 f2 (int i)
5904 struct ap[1];
5905 __builtin_va_start (&ap, 0);
5906 res = f2_1 (&ap);
5907 __builtin_va_end (&ap);
5908 D.1841 = res;
5909 return D.1841;
5910
5911 Case 2b is different because:
5912 - on the callee side, the parm decl has declared type va_list, but
5913 grokdeclarator changes the type of the parm decl to a pointer to the
5914 array elem type.
5915 - on the caller side, the pass-by-value uses &ap.
5916
5917 We unify these two cases (case 2a: va_list is array type,
5918 case 2b: va_list is pointer to array elem type), by adding '&' for the
5919 array type case, such that we have a pointer to array elem in both
5920 cases. */
5921
5922 if (TREE_CODE (va_type) == ARRAY_TYPE)
5923 {
5924 /* Case 2a: va_list is array type. */
5925
5926 /* Take the address, to get '&ap'. Make sure it's a pointer to array
5927 elem type. */
5928 mark_addressable (expr);
5929 expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (canon_va_type)),
5930 expr);
5931
5932 /* Verify that &ap is still recognized as having va_list type. */
5933 tree canon_expr_type
5934 = targetm.canonical_va_list_type (TREE_TYPE (expr));
5935 gcc_assert (canon_expr_type != NULL_TREE);
5936 }
5937 else
5938 {
5939 /* Case 2b: va_list is pointer to array elem type. */
5940 gcc_assert (POINTER_TYPE_P (va_type));
5941
5942 /* Comparison as in std_canonical_va_list_type. */
5943 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (va_type))
5944 == TYPE_MAIN_VARIANT (TREE_TYPE (canon_va_type)));
5945
5946 /* Don't take the address. We've already got '&ap'. */
5947 ;
5948 }
5949
5950 return build_va_arg_1 (loc, type, expr);
5951 }
5952
5953
5954 /* Linked list of disabled built-in functions. */
5955
5956 struct disabled_builtin
5957 {
5958 const char *name;
5959 struct disabled_builtin *next;
5960 };
5961 static disabled_builtin *disabled_builtins = NULL;
5962
5963 static bool builtin_function_disabled_p (const char *);
5964
5965 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
5966 begins with "__builtin_", give an error. */
5967
5968 void
5969 disable_builtin_function (const char *name)
5970 {
5971 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
5972 error ("cannot disable built-in function %qs", name);
5973 else
5974 {
5975 disabled_builtin *new_disabled_builtin = XNEW (disabled_builtin);
5976 new_disabled_builtin->name = name;
5977 new_disabled_builtin->next = disabled_builtins;
5978 disabled_builtins = new_disabled_builtin;
5979 }
5980 }
5981
5982
5983 /* Return true if the built-in function NAME has been disabled, false
5984 otherwise. */
5985
5986 static bool
5987 builtin_function_disabled_p (const char *name)
5988 {
5989 disabled_builtin *p;
5990 for (p = disabled_builtins; p != NULL; p = p->next)
5991 {
5992 if (strcmp (name, p->name) == 0)
5993 return true;
5994 }
5995 return false;
5996 }
5997
5998
5999 /* Worker for DEF_BUILTIN.
6000 Possibly define a builtin function with one or two names.
6001 Does not declare a non-__builtin_ function if flag_no_builtin, or if
6002 nonansi_p and flag_no_nonansi_builtin. */
6003
6004 static void
6005 def_builtin_1 (enum built_in_function fncode,
6006 const char *name,
6007 enum built_in_class fnclass,
6008 tree fntype, tree libtype,
6009 bool both_p, bool fallback_p, bool nonansi_p,
6010 tree fnattrs, bool implicit_p)
6011 {
6012 tree decl;
6013 const char *libname;
6014
6015 if (fntype == error_mark_node)
6016 return;
6017
6018 gcc_assert ((!both_p && !fallback_p)
6019 || !strncmp (name, "__builtin_",
6020 strlen ("__builtin_")));
6021
6022 libname = name + strlen ("__builtin_");
6023 decl = add_builtin_function (name, fntype, fncode, fnclass,
6024 (fallback_p ? libname : NULL),
6025 fnattrs);
6026
6027 set_builtin_decl (fncode, decl, implicit_p);
6028
6029 if (both_p
6030 && !flag_no_builtin && !builtin_function_disabled_p (libname)
6031 && !(nonansi_p && flag_no_nonansi_builtin))
6032 add_builtin_function (libname, libtype, fncode, fnclass,
6033 NULL, fnattrs);
6034 }
6035 \f
6036 /* Nonzero if the type T promotes to int. This is (nearly) the
6037 integral promotions defined in ISO C99 6.3.1.1/2. */
6038
6039 bool
6040 c_promoting_integer_type_p (const_tree t)
6041 {
6042 switch (TREE_CODE (t))
6043 {
6044 case INTEGER_TYPE:
6045 return (TYPE_MAIN_VARIANT (t) == char_type_node
6046 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
6047 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
6048 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
6049 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
6050 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
6051
6052 case ENUMERAL_TYPE:
6053 /* ??? Technically all enumerations not larger than an int
6054 promote to an int. But this is used along code paths
6055 that only want to notice a size change. */
6056 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
6057
6058 case BOOLEAN_TYPE:
6059 return 1;
6060
6061 default:
6062 return 0;
6063 }
6064 }
6065
6066 /* Return 1 if PARMS specifies a fixed number of parameters
6067 and none of their types is affected by default promotions. */
6068
6069 int
6070 self_promoting_args_p (const_tree parms)
6071 {
6072 const_tree t;
6073 for (t = parms; t; t = TREE_CHAIN (t))
6074 {
6075 tree type = TREE_VALUE (t);
6076
6077 if (type == error_mark_node)
6078 continue;
6079
6080 if (TREE_CHAIN (t) == 0 && type != void_type_node)
6081 return 0;
6082
6083 if (type == 0)
6084 return 0;
6085
6086 if (TYPE_MAIN_VARIANT (type) == float_type_node)
6087 return 0;
6088
6089 if (c_promoting_integer_type_p (type))
6090 return 0;
6091 }
6092 return 1;
6093 }
6094
6095 /* Recursively remove any '*' or '&' operator from TYPE. */
6096 tree
6097 strip_pointer_operator (tree t)
6098 {
6099 while (POINTER_TYPE_P (t))
6100 t = TREE_TYPE (t);
6101 return t;
6102 }
6103
6104 /* Recursively remove pointer or array type from TYPE. */
6105 tree
6106 strip_pointer_or_array_types (tree t)
6107 {
6108 while (TREE_CODE (t) == ARRAY_TYPE || POINTER_TYPE_P (t))
6109 t = TREE_TYPE (t);
6110 return t;
6111 }
6112
6113 /* Used to compare case labels. K1 and K2 are actually tree nodes
6114 representing case labels, or NULL_TREE for a `default' label.
6115 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
6116 K2, and 0 if K1 and K2 are equal. */
6117
6118 int
6119 case_compare (splay_tree_key k1, splay_tree_key k2)
6120 {
6121 /* Consider a NULL key (such as arises with a `default' label) to be
6122 smaller than anything else. */
6123 if (!k1)
6124 return k2 ? -1 : 0;
6125 else if (!k2)
6126 return k1 ? 1 : 0;
6127
6128 return tree_int_cst_compare ((tree) k1, (tree) k2);
6129 }
6130
6131 /* Process a case label, located at LOC, for the range LOW_VALUE
6132 ... HIGH_VALUE. If LOW_VALUE and HIGH_VALUE are both NULL_TREE
6133 then this case label is actually a `default' label. If only
6134 HIGH_VALUE is NULL_TREE, then case label was declared using the
6135 usual C/C++ syntax, rather than the GNU case range extension.
6136 CASES is a tree containing all the case ranges processed so far;
6137 COND is the condition for the switch-statement itself.
6138 OUTSIDE_RANGE_P says whether there was a case value that doesn't
6139 fit into the range of the ORIG_TYPE. Returns the CASE_LABEL_EXPR
6140 created, or ERROR_MARK_NODE if no CASE_LABEL_EXPR is created. */
6141
6142 tree
6143 c_add_case_label (location_t loc, splay_tree cases, tree cond, tree orig_type,
6144 tree low_value, tree high_value, bool *outside_range_p)
6145 {
6146 tree type;
6147 tree label;
6148 tree case_label;
6149 splay_tree_node node;
6150
6151 /* Create the LABEL_DECL itself. */
6152 label = create_artificial_label (loc);
6153
6154 /* If there was an error processing the switch condition, bail now
6155 before we get more confused. */
6156 if (!cond || cond == error_mark_node)
6157 goto error_out;
6158
6159 if ((low_value && TREE_TYPE (low_value)
6160 && POINTER_TYPE_P (TREE_TYPE (low_value)))
6161 || (high_value && TREE_TYPE (high_value)
6162 && POINTER_TYPE_P (TREE_TYPE (high_value))))
6163 {
6164 error_at (loc, "pointers are not permitted as case values");
6165 goto error_out;
6166 }
6167
6168 /* Case ranges are a GNU extension. */
6169 if (high_value)
6170 pedwarn (loc, OPT_Wpedantic,
6171 "range expressions in switch statements are non-standard");
6172
6173 type = TREE_TYPE (cond);
6174 if (low_value)
6175 {
6176 low_value = check_case_value (loc, low_value);
6177 low_value = convert_and_check (loc, type, low_value);
6178 if (low_value == error_mark_node)
6179 goto error_out;
6180 }
6181 if (high_value)
6182 {
6183 high_value = check_case_value (loc, high_value);
6184 high_value = convert_and_check (loc, type, high_value);
6185 if (high_value == error_mark_node)
6186 goto error_out;
6187 }
6188
6189 if (low_value && high_value)
6190 {
6191 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
6192 really a case range, even though it was written that way.
6193 Remove the HIGH_VALUE to simplify later processing. */
6194 if (tree_int_cst_equal (low_value, high_value))
6195 high_value = NULL_TREE;
6196 else if (!tree_int_cst_lt (low_value, high_value))
6197 warning_at (loc, 0, "empty range specified");
6198 }
6199
6200 /* See if the case is in range of the type of the original testing
6201 expression. If both low_value and high_value are out of range,
6202 don't insert the case label and return NULL_TREE. */
6203 if (low_value
6204 && !check_case_bounds (loc, type, orig_type,
6205 &low_value, high_value ? &high_value : NULL,
6206 outside_range_p))
6207 return NULL_TREE;
6208
6209 /* Look up the LOW_VALUE in the table of case labels we already
6210 have. */
6211 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
6212 /* If there was not an exact match, check for overlapping ranges.
6213 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
6214 that's a `default' label and the only overlap is an exact match. */
6215 if (!node && (low_value || high_value))
6216 {
6217 splay_tree_node low_bound;
6218 splay_tree_node high_bound;
6219
6220 /* Even though there wasn't an exact match, there might be an
6221 overlap between this case range and another case range.
6222 Since we've (inductively) not allowed any overlapping case
6223 ranges, we simply need to find the greatest low case label
6224 that is smaller that LOW_VALUE, and the smallest low case
6225 label that is greater than LOW_VALUE. If there is an overlap
6226 it will occur in one of these two ranges. */
6227 low_bound = splay_tree_predecessor (cases,
6228 (splay_tree_key) low_value);
6229 high_bound = splay_tree_successor (cases,
6230 (splay_tree_key) low_value);
6231
6232 /* Check to see if the LOW_BOUND overlaps. It is smaller than
6233 the LOW_VALUE, so there is no need to check unless the
6234 LOW_BOUND is in fact itself a case range. */
6235 if (low_bound
6236 && CASE_HIGH ((tree) low_bound->value)
6237 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
6238 low_value) >= 0)
6239 node = low_bound;
6240 /* Check to see if the HIGH_BOUND overlaps. The low end of that
6241 range is bigger than the low end of the current range, so we
6242 are only interested if the current range is a real range, and
6243 not an ordinary case label. */
6244 else if (high_bound
6245 && high_value
6246 && (tree_int_cst_compare ((tree) high_bound->key,
6247 high_value)
6248 <= 0))
6249 node = high_bound;
6250 }
6251 /* If there was an overlap, issue an error. */
6252 if (node)
6253 {
6254 tree duplicate = CASE_LABEL ((tree) node->value);
6255
6256 if (high_value)
6257 {
6258 error_at (loc, "duplicate (or overlapping) case value");
6259 error_at (DECL_SOURCE_LOCATION (duplicate),
6260 "this is the first entry overlapping that value");
6261 }
6262 else if (low_value)
6263 {
6264 error_at (loc, "duplicate case value") ;
6265 error_at (DECL_SOURCE_LOCATION (duplicate), "previously used here");
6266 }
6267 else
6268 {
6269 error_at (loc, "multiple default labels in one switch");
6270 error_at (DECL_SOURCE_LOCATION (duplicate),
6271 "this is the first default label");
6272 }
6273 goto error_out;
6274 }
6275
6276 /* Add a CASE_LABEL to the statement-tree. */
6277 case_label = add_stmt (build_case_label (low_value, high_value, label));
6278 /* Register this case label in the splay tree. */
6279 splay_tree_insert (cases,
6280 (splay_tree_key) low_value,
6281 (splay_tree_value) case_label);
6282
6283 return case_label;
6284
6285 error_out:
6286 /* Add a label so that the back-end doesn't think that the beginning of
6287 the switch is unreachable. Note that we do not add a case label, as
6288 that just leads to duplicates and thence to failure later on. */
6289 if (!cases->root)
6290 {
6291 tree t = create_artificial_label (loc);
6292 add_stmt (build_stmt (loc, LABEL_EXPR, t));
6293 }
6294 return error_mark_node;
6295 }
6296
6297 /* Subroutines of c_do_switch_warnings, called via splay_tree_foreach.
6298 Used to verify that case values match up with enumerator values. */
6299
6300 static void
6301 match_case_to_enum_1 (tree key, tree type, tree label)
6302 {
6303 char buf[WIDE_INT_PRINT_BUFFER_SIZE];
6304
6305 if (tree_fits_uhwi_p (key))
6306 print_dec (key, buf, UNSIGNED);
6307 else if (tree_fits_shwi_p (key))
6308 print_dec (key, buf, SIGNED);
6309 else
6310 print_hex (key, buf);
6311
6312 if (TYPE_NAME (type) == 0)
6313 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label)),
6314 warn_switch ? OPT_Wswitch : OPT_Wswitch_enum,
6315 "case value %qs not in enumerated type",
6316 buf);
6317 else
6318 warning_at (DECL_SOURCE_LOCATION (CASE_LABEL (label)),
6319 warn_switch ? OPT_Wswitch : OPT_Wswitch_enum,
6320 "case value %qs not in enumerated type %qT",
6321 buf, type);
6322 }
6323
6324 /* Subroutine of c_do_switch_warnings, called via splay_tree_foreach.
6325 Used to verify that case values match up with enumerator values. */
6326
6327 static int
6328 match_case_to_enum (splay_tree_node node, void *data)
6329 {
6330 tree label = (tree) node->value;
6331 tree type = (tree) data;
6332
6333 /* Skip default case. */
6334 if (!CASE_LOW (label))
6335 return 0;
6336
6337 /* If CASE_LOW_SEEN is not set, that means CASE_LOW did not appear
6338 when we did our enum->case scan. Reset our scratch bit after. */
6339 if (!CASE_LOW_SEEN (label))
6340 match_case_to_enum_1 (CASE_LOW (label), type, label);
6341 else
6342 CASE_LOW_SEEN (label) = 0;
6343
6344 /* If CASE_HIGH is non-null, we have a range. If CASE_HIGH_SEEN is
6345 not set, that means that CASE_HIGH did not appear when we did our
6346 enum->case scan. Reset our scratch bit after. */
6347 if (CASE_HIGH (label))
6348 {
6349 if (!CASE_HIGH_SEEN (label))
6350 match_case_to_enum_1 (CASE_HIGH (label), type, label);
6351 else
6352 CASE_HIGH_SEEN (label) = 0;
6353 }
6354
6355 return 0;
6356 }
6357
6358 /* Handle -Wswitch*. Called from the front end after parsing the
6359 switch construct. */
6360 /* ??? Should probably be somewhere generic, since other languages
6361 besides C and C++ would want this. At the moment, however, C/C++
6362 are the only tree-ssa languages that support enumerations at all,
6363 so the point is moot. */
6364
6365 void
6366 c_do_switch_warnings (splay_tree cases, location_t switch_location,
6367 tree type, tree cond, bool bool_cond_p,
6368 bool outside_range_p)
6369 {
6370 splay_tree_node default_node;
6371 splay_tree_node node;
6372 tree chain;
6373
6374 if (!warn_switch && !warn_switch_enum && !warn_switch_default
6375 && !warn_switch_bool)
6376 return;
6377
6378 default_node = splay_tree_lookup (cases, (splay_tree_key) NULL);
6379 if (!default_node)
6380 warning_at (switch_location, OPT_Wswitch_default,
6381 "switch missing default case");
6382
6383 /* There are certain cases where -Wswitch-bool warnings aren't
6384 desirable, such as
6385 switch (boolean)
6386 {
6387 case true: ...
6388 case false: ...
6389 }
6390 so be careful here. */
6391 if (warn_switch_bool && bool_cond_p)
6392 {
6393 splay_tree_node min_node;
6394 /* If there's a default node, it's also the value with the minimal
6395 key. So look at the penultimate key (if any). */
6396 if (default_node)
6397 min_node = splay_tree_successor (cases, (splay_tree_key) NULL);
6398 else
6399 min_node = splay_tree_min (cases);
6400 tree min = min_node ? (tree) min_node->key : NULL_TREE;
6401
6402 splay_tree_node max_node = splay_tree_max (cases);
6403 /* This might be a case range, so look at the value with the
6404 maximal key and then check CASE_HIGH. */
6405 tree max = max_node ? (tree) max_node->value : NULL_TREE;
6406 if (max)
6407 max = CASE_HIGH (max) ? CASE_HIGH (max) : CASE_LOW (max);
6408
6409 /* If there's a case value > 1 or < 0, that is outside bool
6410 range, warn. */
6411 if (outside_range_p
6412 || (max && wi::gts_p (max, 1))
6413 || (min && wi::lts_p (min, 0))
6414 /* And handle the
6415 switch (boolean)
6416 {
6417 case true: ...
6418 case false: ...
6419 default: ...
6420 }
6421 case, where we want to warn. */
6422 || (default_node
6423 && max && wi::eq_p (max, 1)
6424 && min && wi::eq_p (min, 0)))
6425 warning_at (switch_location, OPT_Wswitch_bool,
6426 "switch condition has boolean value");
6427 }
6428
6429 /* From here on, we only care about enumerated types. */
6430 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
6431 return;
6432
6433 /* From here on, we only care about -Wswitch and -Wswitch-enum. */
6434 if (!warn_switch_enum && !warn_switch)
6435 return;
6436
6437 /* Check the cases. Warn about case values which are not members of
6438 the enumerated type. For -Wswitch-enum, or for -Wswitch when
6439 there is no default case, check that exactly all enumeration
6440 literals are covered by the cases. */
6441
6442 /* Clearing COND if it is not an integer constant simplifies
6443 the tests inside the loop below. */
6444 if (TREE_CODE (cond) != INTEGER_CST)
6445 cond = NULL_TREE;
6446
6447 /* The time complexity here is O(N*lg(N)) worst case, but for the
6448 common case of monotonically increasing enumerators, it is
6449 O(N), since the nature of the splay tree will keep the next
6450 element adjacent to the root at all times. */
6451
6452 for (chain = TYPE_VALUES (type); chain; chain = TREE_CHAIN (chain))
6453 {
6454 tree value = TREE_VALUE (chain);
6455 if (TREE_CODE (value) == CONST_DECL)
6456 value = DECL_INITIAL (value);
6457 node = splay_tree_lookup (cases, (splay_tree_key) value);
6458 if (node)
6459 {
6460 /* Mark the CASE_LOW part of the case entry as seen. */
6461 tree label = (tree) node->value;
6462 CASE_LOW_SEEN (label) = 1;
6463 continue;
6464 }
6465
6466 /* Even though there wasn't an exact match, there might be a
6467 case range which includes the enumerator's value. */
6468 node = splay_tree_predecessor (cases, (splay_tree_key) value);
6469 if (node && CASE_HIGH ((tree) node->value))
6470 {
6471 tree label = (tree) node->value;
6472 int cmp = tree_int_cst_compare (CASE_HIGH (label), value);
6473 if (cmp >= 0)
6474 {
6475 /* If we match the upper bound exactly, mark the CASE_HIGH
6476 part of the case entry as seen. */
6477 if (cmp == 0)
6478 CASE_HIGH_SEEN (label) = 1;
6479 continue;
6480 }
6481 }
6482
6483 /* We've now determined that this enumerated literal isn't
6484 handled by the case labels of the switch statement. */
6485
6486 /* If the switch expression is a constant, we only really care
6487 about whether that constant is handled by the switch. */
6488 if (cond && tree_int_cst_compare (cond, value))
6489 continue;
6490
6491 /* If there is a default_node, the only relevant option is
6492 Wswitch-enum. Otherwise, if both are enabled then we prefer
6493 to warn using -Wswitch because -Wswitch is enabled by -Wall
6494 while -Wswitch-enum is explicit. */
6495 warning_at (switch_location,
6496 (default_node || !warn_switch
6497 ? OPT_Wswitch_enum
6498 : OPT_Wswitch),
6499 "enumeration value %qE not handled in switch",
6500 TREE_PURPOSE (chain));
6501 }
6502
6503 /* Warn if there are case expressions that don't correspond to
6504 enumerators. This can occur since C and C++ don't enforce
6505 type-checking of assignments to enumeration variables.
6506
6507 The time complexity here is now always O(N) worst case, since
6508 we should have marked both the lower bound and upper bound of
6509 every disjoint case label, with CASE_LOW_SEEN and CASE_HIGH_SEEN
6510 above. This scan also resets those fields. */
6511
6512 splay_tree_foreach (cases, match_case_to_enum, type);
6513 }
6514
6515 /* Finish an expression taking the address of LABEL (an
6516 IDENTIFIER_NODE). Returns an expression for the address.
6517
6518 LOC is the location for the expression returned. */
6519
6520 tree
6521 finish_label_address_expr (tree label, location_t loc)
6522 {
6523 tree result;
6524
6525 pedwarn (input_location, OPT_Wpedantic, "taking the address of a label is non-standard");
6526
6527 if (label == error_mark_node)
6528 return error_mark_node;
6529
6530 label = lookup_label (label);
6531 if (label == NULL_TREE)
6532 result = null_pointer_node;
6533 else
6534 {
6535 TREE_USED (label) = 1;
6536 result = build1 (ADDR_EXPR, ptr_type_node, label);
6537 /* The current function is not necessarily uninlinable.
6538 Computed gotos are incompatible with inlining, but the value
6539 here could be used only in a diagnostic, for example. */
6540 protected_set_expr_location (result, loc);
6541 }
6542
6543 return result;
6544 }
6545 \f
6546
6547 /* Given a boolean expression ARG, return a tree representing an increment
6548 or decrement (as indicated by CODE) of ARG. The front end must check for
6549 invalid cases (e.g., decrement in C++). */
6550 tree
6551 boolean_increment (enum tree_code code, tree arg)
6552 {
6553 tree val;
6554 tree true_res = build_int_cst (TREE_TYPE (arg), 1);
6555
6556 arg = stabilize_reference (arg);
6557 switch (code)
6558 {
6559 case PREINCREMENT_EXPR:
6560 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
6561 break;
6562 case POSTINCREMENT_EXPR:
6563 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
6564 arg = save_expr (arg);
6565 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
6566 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
6567 break;
6568 case PREDECREMENT_EXPR:
6569 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
6570 invert_truthvalue_loc (input_location, arg));
6571 break;
6572 case POSTDECREMENT_EXPR:
6573 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
6574 invert_truthvalue_loc (input_location, arg));
6575 arg = save_expr (arg);
6576 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
6577 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
6578 break;
6579 default:
6580 gcc_unreachable ();
6581 }
6582 TREE_SIDE_EFFECTS (val) = 1;
6583 return val;
6584 }
6585 \f
6586 /* Built-in macros for stddef.h and stdint.h, that require macros
6587 defined in this file. */
6588 void
6589 c_stddef_cpp_builtins(void)
6590 {
6591 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
6592 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
6593 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
6594 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
6595 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE, 0);
6596 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE, 0);
6597 builtin_define_with_value ("__CHAR16_TYPE__", CHAR16_TYPE, 0);
6598 builtin_define_with_value ("__CHAR32_TYPE__", CHAR32_TYPE, 0);
6599 if (SIG_ATOMIC_TYPE)
6600 builtin_define_with_value ("__SIG_ATOMIC_TYPE__", SIG_ATOMIC_TYPE, 0);
6601 if (INT8_TYPE)
6602 builtin_define_with_value ("__INT8_TYPE__", INT8_TYPE, 0);
6603 if (INT16_TYPE)
6604 builtin_define_with_value ("__INT16_TYPE__", INT16_TYPE, 0);
6605 if (INT32_TYPE)
6606 builtin_define_with_value ("__INT32_TYPE__", INT32_TYPE, 0);
6607 if (INT64_TYPE)
6608 builtin_define_with_value ("__INT64_TYPE__", INT64_TYPE, 0);
6609 if (UINT8_TYPE)
6610 builtin_define_with_value ("__UINT8_TYPE__", UINT8_TYPE, 0);
6611 if (UINT16_TYPE)
6612 builtin_define_with_value ("__UINT16_TYPE__", UINT16_TYPE, 0);
6613 if (UINT32_TYPE)
6614 builtin_define_with_value ("__UINT32_TYPE__", UINT32_TYPE, 0);
6615 if (UINT64_TYPE)
6616 builtin_define_with_value ("__UINT64_TYPE__", UINT64_TYPE, 0);
6617 if (INT_LEAST8_TYPE)
6618 builtin_define_with_value ("__INT_LEAST8_TYPE__", INT_LEAST8_TYPE, 0);
6619 if (INT_LEAST16_TYPE)
6620 builtin_define_with_value ("__INT_LEAST16_TYPE__", INT_LEAST16_TYPE, 0);
6621 if (INT_LEAST32_TYPE)
6622 builtin_define_with_value ("__INT_LEAST32_TYPE__", INT_LEAST32_TYPE, 0);
6623 if (INT_LEAST64_TYPE)
6624 builtin_define_with_value ("__INT_LEAST64_TYPE__", INT_LEAST64_TYPE, 0);
6625 if (UINT_LEAST8_TYPE)
6626 builtin_define_with_value ("__UINT_LEAST8_TYPE__", UINT_LEAST8_TYPE, 0);
6627 if (UINT_LEAST16_TYPE)
6628 builtin_define_with_value ("__UINT_LEAST16_TYPE__", UINT_LEAST16_TYPE, 0);
6629 if (UINT_LEAST32_TYPE)
6630 builtin_define_with_value ("__UINT_LEAST32_TYPE__", UINT_LEAST32_TYPE, 0);
6631 if (UINT_LEAST64_TYPE)
6632 builtin_define_with_value ("__UINT_LEAST64_TYPE__", UINT_LEAST64_TYPE, 0);
6633 if (INT_FAST8_TYPE)
6634 builtin_define_with_value ("__INT_FAST8_TYPE__", INT_FAST8_TYPE, 0);
6635 if (INT_FAST16_TYPE)
6636 builtin_define_with_value ("__INT_FAST16_TYPE__", INT_FAST16_TYPE, 0);
6637 if (INT_FAST32_TYPE)
6638 builtin_define_with_value ("__INT_FAST32_TYPE__", INT_FAST32_TYPE, 0);
6639 if (INT_FAST64_TYPE)
6640 builtin_define_with_value ("__INT_FAST64_TYPE__", INT_FAST64_TYPE, 0);
6641 if (UINT_FAST8_TYPE)
6642 builtin_define_with_value ("__UINT_FAST8_TYPE__", UINT_FAST8_TYPE, 0);
6643 if (UINT_FAST16_TYPE)
6644 builtin_define_with_value ("__UINT_FAST16_TYPE__", UINT_FAST16_TYPE, 0);
6645 if (UINT_FAST32_TYPE)
6646 builtin_define_with_value ("__UINT_FAST32_TYPE__", UINT_FAST32_TYPE, 0);
6647 if (UINT_FAST64_TYPE)
6648 builtin_define_with_value ("__UINT_FAST64_TYPE__", UINT_FAST64_TYPE, 0);
6649 if (INTPTR_TYPE)
6650 builtin_define_with_value ("__INTPTR_TYPE__", INTPTR_TYPE, 0);
6651 if (UINTPTR_TYPE)
6652 builtin_define_with_value ("__UINTPTR_TYPE__", UINTPTR_TYPE, 0);
6653 }
6654
6655 static void
6656 c_init_attributes (void)
6657 {
6658 /* Fill in the built_in_attributes array. */
6659 #define DEF_ATTR_NULL_TREE(ENUM) \
6660 built_in_attributes[(int) ENUM] = NULL_TREE;
6661 #define DEF_ATTR_INT(ENUM, VALUE) \
6662 built_in_attributes[(int) ENUM] = build_int_cst (integer_type_node, VALUE);
6663 #define DEF_ATTR_STRING(ENUM, VALUE) \
6664 built_in_attributes[(int) ENUM] = build_string (strlen (VALUE), VALUE);
6665 #define DEF_ATTR_IDENT(ENUM, STRING) \
6666 built_in_attributes[(int) ENUM] = get_identifier (STRING);
6667 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
6668 built_in_attributes[(int) ENUM] \
6669 = tree_cons (built_in_attributes[(int) PURPOSE], \
6670 built_in_attributes[(int) VALUE], \
6671 built_in_attributes[(int) CHAIN]);
6672 #include "builtin-attrs.def"
6673 #undef DEF_ATTR_NULL_TREE
6674 #undef DEF_ATTR_INT
6675 #undef DEF_ATTR_IDENT
6676 #undef DEF_ATTR_TREE_LIST
6677 }
6678
6679 /* Returns TRUE iff the attribute indicated by ATTR_ID takes a plain
6680 identifier as an argument, so the front end shouldn't look it up. */
6681
6682 bool
6683 attribute_takes_identifier_p (const_tree attr_id)
6684 {
6685 const struct attribute_spec *spec = lookup_attribute_spec (attr_id);
6686 if (spec == NULL)
6687 /* Unknown attribute that we'll end up ignoring, return true so we
6688 don't complain about an identifier argument. */
6689 return true;
6690 else if (!strcmp ("mode", spec->name)
6691 || !strcmp ("format", spec->name)
6692 || !strcmp ("cleanup", spec->name))
6693 return true;
6694 else
6695 return targetm.attribute_takes_identifier_p (attr_id);
6696 }
6697
6698 /* Attribute handlers common to C front ends. */
6699
6700 /* Handle a "packed" attribute; arguments as in
6701 struct attribute_spec.handler. */
6702
6703 static tree
6704 handle_packed_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6705 int flags, bool *no_add_attrs)
6706 {
6707 if (TYPE_P (*node))
6708 {
6709 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
6710 *node = build_variant_type_copy (*node);
6711 TYPE_PACKED (*node) = 1;
6712 }
6713 else if (TREE_CODE (*node) == FIELD_DECL)
6714 {
6715 if (TYPE_ALIGN (TREE_TYPE (*node)) <= BITS_PER_UNIT
6716 /* Still pack bitfields. */
6717 && ! DECL_INITIAL (*node))
6718 warning (OPT_Wattributes,
6719 "%qE attribute ignored for field of type %qT",
6720 name, TREE_TYPE (*node));
6721 else
6722 DECL_PACKED (*node) = 1;
6723 }
6724 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
6725 used for DECL_REGISTER. It wouldn't mean anything anyway.
6726 We can't set DECL_PACKED on the type of a TYPE_DECL, because
6727 that changes what the typedef is typing. */
6728 else
6729 {
6730 warning (OPT_Wattributes, "%qE attribute ignored", name);
6731 *no_add_attrs = true;
6732 }
6733
6734 return NULL_TREE;
6735 }
6736
6737 /* Handle a "nocommon" attribute; arguments as in
6738 struct attribute_spec.handler. */
6739
6740 static tree
6741 handle_nocommon_attribute (tree *node, tree name,
6742 tree ARG_UNUSED (args),
6743 int ARG_UNUSED (flags), bool *no_add_attrs)
6744 {
6745 if (VAR_P (*node))
6746 DECL_COMMON (*node) = 0;
6747 else
6748 {
6749 warning (OPT_Wattributes, "%qE attribute ignored", name);
6750 *no_add_attrs = true;
6751 }
6752
6753 return NULL_TREE;
6754 }
6755
6756 /* Handle a "common" attribute; arguments as in
6757 struct attribute_spec.handler. */
6758
6759 static tree
6760 handle_common_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6761 int ARG_UNUSED (flags), bool *no_add_attrs)
6762 {
6763 if (VAR_P (*node))
6764 DECL_COMMON (*node) = 1;
6765 else
6766 {
6767 warning (OPT_Wattributes, "%qE attribute ignored", name);
6768 *no_add_attrs = true;
6769 }
6770
6771 return NULL_TREE;
6772 }
6773
6774 /* Handle a "noreturn" attribute; arguments as in
6775 struct attribute_spec.handler. */
6776
6777 static tree
6778 handle_noreturn_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6779 int ARG_UNUSED (flags), bool *no_add_attrs)
6780 {
6781 tree type = TREE_TYPE (*node);
6782
6783 /* See FIXME comment in c_common_attribute_table. */
6784 if (TREE_CODE (*node) == FUNCTION_DECL
6785 || objc_method_decl (TREE_CODE (*node)))
6786 TREE_THIS_VOLATILE (*node) = 1;
6787 else if (TREE_CODE (type) == POINTER_TYPE
6788 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
6789 TREE_TYPE (*node)
6790 = (build_qualified_type
6791 (build_pointer_type
6792 (build_type_variant (TREE_TYPE (type),
6793 TYPE_READONLY (TREE_TYPE (type)), 1)),
6794 TYPE_QUALS (type)));
6795 else
6796 {
6797 warning (OPT_Wattributes, "%qE attribute ignored", name);
6798 *no_add_attrs = true;
6799 }
6800
6801 return NULL_TREE;
6802 }
6803
6804 /* Handle a "hot" and attribute; arguments as in
6805 struct attribute_spec.handler. */
6806
6807 static tree
6808 handle_hot_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6809 int ARG_UNUSED (flags), bool *no_add_attrs)
6810 {
6811 if (TREE_CODE (*node) == FUNCTION_DECL
6812 || TREE_CODE (*node) == LABEL_DECL)
6813 {
6814 if (lookup_attribute ("cold", DECL_ATTRIBUTES (*node)) != NULL)
6815 {
6816 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
6817 "with attribute %qs", name, "cold");
6818 *no_add_attrs = true;
6819 }
6820 /* Most of the rest of the hot processing is done later with
6821 lookup_attribute. */
6822 }
6823 else
6824 {
6825 warning (OPT_Wattributes, "%qE attribute ignored", name);
6826 *no_add_attrs = true;
6827 }
6828
6829 return NULL_TREE;
6830 }
6831
6832 /* Handle a "cold" and attribute; arguments as in
6833 struct attribute_spec.handler. */
6834
6835 static tree
6836 handle_cold_attribute (tree *node, tree name, tree ARG_UNUSED (args),
6837 int ARG_UNUSED (flags), bool *no_add_attrs)
6838 {
6839 if (TREE_CODE (*node) == FUNCTION_DECL
6840 || TREE_CODE (*node) == LABEL_DECL)
6841 {
6842 if (lookup_attribute ("hot", DECL_ATTRIBUTES (*node)) != NULL)
6843 {
6844 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
6845 "with attribute %qs", name, "hot");
6846 *no_add_attrs = true;
6847 }
6848 /* Most of the rest of the cold processing is done later with
6849 lookup_attribute. */
6850 }
6851 else
6852 {
6853 warning (OPT_Wattributes, "%qE attribute ignored", name);
6854 *no_add_attrs = true;
6855 }
6856
6857 return NULL_TREE;
6858 }
6859
6860 /* Handle a "no_sanitize_address" attribute; arguments as in
6861 struct attribute_spec.handler. */
6862
6863 static tree
6864 handle_no_sanitize_address_attribute (tree *node, tree name, tree, int,
6865 bool *no_add_attrs)
6866 {
6867 if (TREE_CODE (*node) != FUNCTION_DECL)
6868 {
6869 warning (OPT_Wattributes, "%qE attribute ignored", name);
6870 *no_add_attrs = true;
6871 }
6872
6873 return NULL_TREE;
6874 }
6875
6876 /* Handle a "no_address_safety_analysis" attribute; arguments as in
6877 struct attribute_spec.handler. */
6878
6879 static tree
6880 handle_no_address_safety_analysis_attribute (tree *node, tree name, tree, int,
6881 bool *no_add_attrs)
6882 {
6883 if (TREE_CODE (*node) != FUNCTION_DECL)
6884 warning (OPT_Wattributes, "%qE attribute ignored", name);
6885 else if (!lookup_attribute ("no_sanitize_address", DECL_ATTRIBUTES (*node)))
6886 DECL_ATTRIBUTES (*node)
6887 = tree_cons (get_identifier ("no_sanitize_address"),
6888 NULL_TREE, DECL_ATTRIBUTES (*node));
6889 *no_add_attrs = true;
6890 return NULL_TREE;
6891 }
6892
6893 /* Handle a "no_sanitize_undefined" attribute; arguments as in
6894 struct attribute_spec.handler. */
6895
6896 static tree
6897 handle_no_sanitize_undefined_attribute (tree *node, tree name, tree, int,
6898 bool *no_add_attrs)
6899 {
6900 if (TREE_CODE (*node) != FUNCTION_DECL)
6901 {
6902 warning (OPT_Wattributes, "%qE attribute ignored", name);
6903 *no_add_attrs = true;
6904 }
6905
6906 return NULL_TREE;
6907 }
6908
6909 /* Handle a "stack_protect" attribute; arguments as in
6910 struct attribute_spec.handler. */
6911 static tree
6912 handle_stack_protect_attribute (tree *node, tree name, tree, int,
6913 bool *no_add_attrs)
6914 {
6915 if (TREE_CODE (*node) != FUNCTION_DECL)
6916 {
6917 warning (OPT_Wattributes, "%qE attribute ignored", name);
6918 *no_add_attrs = true;
6919 }
6920 else
6921 DECL_ATTRIBUTES (*node)
6922 = tree_cons (get_identifier ("stack_protect"),
6923 NULL_TREE, DECL_ATTRIBUTES (*node));
6924
6925 return NULL_TREE;
6926 }
6927
6928 /* Handle a "noinline" attribute; arguments as in
6929 struct attribute_spec.handler. */
6930
6931 static tree
6932 handle_noinline_attribute (tree *node, tree name,
6933 tree ARG_UNUSED (args),
6934 int ARG_UNUSED (flags), bool *no_add_attrs)
6935 {
6936 if (TREE_CODE (*node) == FUNCTION_DECL)
6937 {
6938 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (*node)))
6939 {
6940 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
6941 "with attribute %qs", name, "always_inline");
6942 *no_add_attrs = true;
6943 }
6944 else
6945 DECL_UNINLINABLE (*node) = 1;
6946 }
6947 else
6948 {
6949 warning (OPT_Wattributes, "%qE attribute ignored", name);
6950 *no_add_attrs = true;
6951 }
6952
6953 return NULL_TREE;
6954 }
6955
6956 /* Handle a "noclone" attribute; arguments as in
6957 struct attribute_spec.handler. */
6958
6959 static tree
6960 handle_noclone_attribute (tree *node, tree name,
6961 tree ARG_UNUSED (args),
6962 int ARG_UNUSED (flags), bool *no_add_attrs)
6963 {
6964 if (TREE_CODE (*node) != FUNCTION_DECL)
6965 {
6966 warning (OPT_Wattributes, "%qE attribute ignored", name);
6967 *no_add_attrs = true;
6968 }
6969
6970 return NULL_TREE;
6971 }
6972
6973 /* Handle a "no_icf" attribute; arguments as in
6974 struct attribute_spec.handler. */
6975
6976 static tree
6977 handle_noicf_attribute (tree *node, tree name,
6978 tree ARG_UNUSED (args),
6979 int ARG_UNUSED (flags), bool *no_add_attrs)
6980 {
6981 if (TREE_CODE (*node) != FUNCTION_DECL)
6982 {
6983 warning (OPT_Wattributes, "%qE attribute ignored", name);
6984 *no_add_attrs = true;
6985 }
6986
6987 return NULL_TREE;
6988 }
6989
6990
6991 /* Handle a "always_inline" attribute; arguments as in
6992 struct attribute_spec.handler. */
6993
6994 static tree
6995 handle_always_inline_attribute (tree *node, tree name,
6996 tree ARG_UNUSED (args),
6997 int ARG_UNUSED (flags),
6998 bool *no_add_attrs)
6999 {
7000 if (TREE_CODE (*node) == FUNCTION_DECL)
7001 {
7002 if (lookup_attribute ("noinline", DECL_ATTRIBUTES (*node)))
7003 {
7004 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
7005 "with %qs attribute", name, "noinline");
7006 *no_add_attrs = true;
7007 }
7008 else if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (*node)))
7009 {
7010 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
7011 "with %qs attribute", name, "target_clones");
7012 *no_add_attrs = true;
7013 }
7014 else
7015 /* Set the attribute and mark it for disregarding inline
7016 limits. */
7017 DECL_DISREGARD_INLINE_LIMITS (*node) = 1;
7018 }
7019 else
7020 {
7021 warning (OPT_Wattributes, "%qE attribute ignored", name);
7022 *no_add_attrs = true;
7023 }
7024
7025 return NULL_TREE;
7026 }
7027
7028 /* Handle a "gnu_inline" attribute; arguments as in
7029 struct attribute_spec.handler. */
7030
7031 static tree
7032 handle_gnu_inline_attribute (tree *node, tree name,
7033 tree ARG_UNUSED (args),
7034 int ARG_UNUSED (flags),
7035 bool *no_add_attrs)
7036 {
7037 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
7038 {
7039 /* Do nothing else, just set the attribute. We'll get at
7040 it later with lookup_attribute. */
7041 }
7042 else
7043 {
7044 warning (OPT_Wattributes, "%qE attribute ignored", name);
7045 *no_add_attrs = true;
7046 }
7047
7048 return NULL_TREE;
7049 }
7050
7051 /* Handle a "leaf" attribute; arguments as in
7052 struct attribute_spec.handler. */
7053
7054 static tree
7055 handle_leaf_attribute (tree *node, tree name,
7056 tree ARG_UNUSED (args),
7057 int ARG_UNUSED (flags), bool *no_add_attrs)
7058 {
7059 if (TREE_CODE (*node) != FUNCTION_DECL)
7060 {
7061 warning (OPT_Wattributes, "%qE attribute ignored", name);
7062 *no_add_attrs = true;
7063 }
7064 if (!TREE_PUBLIC (*node))
7065 {
7066 warning (OPT_Wattributes, "%qE attribute has no effect on unit local functions", name);
7067 *no_add_attrs = true;
7068 }
7069
7070 return NULL_TREE;
7071 }
7072
7073 /* Handle an "artificial" attribute; arguments as in
7074 struct attribute_spec.handler. */
7075
7076 static tree
7077 handle_artificial_attribute (tree *node, tree name,
7078 tree ARG_UNUSED (args),
7079 int ARG_UNUSED (flags),
7080 bool *no_add_attrs)
7081 {
7082 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
7083 {
7084 /* Do nothing else, just set the attribute. We'll get at
7085 it later with lookup_attribute. */
7086 }
7087 else
7088 {
7089 warning (OPT_Wattributes, "%qE attribute ignored", name);
7090 *no_add_attrs = true;
7091 }
7092
7093 return NULL_TREE;
7094 }
7095
7096 /* Handle a "flatten" attribute; arguments as in
7097 struct attribute_spec.handler. */
7098
7099 static tree
7100 handle_flatten_attribute (tree *node, tree name,
7101 tree args ATTRIBUTE_UNUSED,
7102 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
7103 {
7104 if (TREE_CODE (*node) == FUNCTION_DECL)
7105 /* Do nothing else, just set the attribute. We'll get at
7106 it later with lookup_attribute. */
7107 ;
7108 else
7109 {
7110 warning (OPT_Wattributes, "%qE attribute ignored", name);
7111 *no_add_attrs = true;
7112 }
7113
7114 return NULL_TREE;
7115 }
7116
7117 /* Handle a "warning" or "error" attribute; arguments as in
7118 struct attribute_spec.handler. */
7119
7120 static tree
7121 handle_error_attribute (tree *node, tree name, tree args,
7122 int ARG_UNUSED (flags), bool *no_add_attrs)
7123 {
7124 if (TREE_CODE (*node) == FUNCTION_DECL
7125 && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
7126 /* Do nothing else, just set the attribute. We'll get at
7127 it later with lookup_attribute. */
7128 ;
7129 else
7130 {
7131 warning (OPT_Wattributes, "%qE attribute ignored", name);
7132 *no_add_attrs = true;
7133 }
7134
7135 return NULL_TREE;
7136 }
7137
7138 /* Handle a "used" attribute; arguments as in
7139 struct attribute_spec.handler. */
7140
7141 static tree
7142 handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args),
7143 int ARG_UNUSED (flags), bool *no_add_attrs)
7144 {
7145 tree node = *pnode;
7146
7147 if (TREE_CODE (node) == FUNCTION_DECL
7148 || (VAR_P (node) && TREE_STATIC (node))
7149 || (TREE_CODE (node) == TYPE_DECL))
7150 {
7151 TREE_USED (node) = 1;
7152 DECL_PRESERVE_P (node) = 1;
7153 if (VAR_P (node))
7154 DECL_READ_P (node) = 1;
7155 }
7156 else
7157 {
7158 warning (OPT_Wattributes, "%qE attribute ignored", name);
7159 *no_add_attrs = true;
7160 }
7161
7162 return NULL_TREE;
7163 }
7164
7165 /* Handle a "unused" attribute; arguments as in
7166 struct attribute_spec.handler. */
7167
7168 tree
7169 handle_unused_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7170 int flags, bool *no_add_attrs)
7171 {
7172 if (DECL_P (*node))
7173 {
7174 tree decl = *node;
7175
7176 if (TREE_CODE (decl) == PARM_DECL
7177 || VAR_OR_FUNCTION_DECL_P (decl)
7178 || TREE_CODE (decl) == LABEL_DECL
7179 || TREE_CODE (decl) == CONST_DECL
7180 || TREE_CODE (decl) == TYPE_DECL)
7181 {
7182 TREE_USED (decl) = 1;
7183 if (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL)
7184 DECL_READ_P (decl) = 1;
7185 }
7186 else
7187 {
7188 warning (OPT_Wattributes, "%qE attribute ignored", name);
7189 *no_add_attrs = true;
7190 }
7191 }
7192 else
7193 {
7194 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
7195 *node = build_variant_type_copy (*node);
7196 TREE_USED (*node) = 1;
7197 }
7198
7199 return NULL_TREE;
7200 }
7201
7202 /* Handle a "externally_visible" attribute; arguments as in
7203 struct attribute_spec.handler. */
7204
7205 static tree
7206 handle_externally_visible_attribute (tree *pnode, tree name,
7207 tree ARG_UNUSED (args),
7208 int ARG_UNUSED (flags),
7209 bool *no_add_attrs)
7210 {
7211 tree node = *pnode;
7212
7213 if (VAR_OR_FUNCTION_DECL_P (node))
7214 {
7215 if ((!TREE_STATIC (node) && TREE_CODE (node) != FUNCTION_DECL
7216 && !DECL_EXTERNAL (node)) || !TREE_PUBLIC (node))
7217 {
7218 warning (OPT_Wattributes,
7219 "%qE attribute have effect only on public objects", name);
7220 *no_add_attrs = true;
7221 }
7222 }
7223 else
7224 {
7225 warning (OPT_Wattributes, "%qE attribute ignored", name);
7226 *no_add_attrs = true;
7227 }
7228
7229 return NULL_TREE;
7230 }
7231
7232 /* Handle the "no_reorder" attribute. Arguments as in
7233 struct attribute_spec.handler. */
7234
7235 static tree
7236 handle_no_reorder_attribute (tree *pnode,
7237 tree name,
7238 tree,
7239 int,
7240 bool *no_add_attrs)
7241 {
7242 tree node = *pnode;
7243
7244 if (!VAR_OR_FUNCTION_DECL_P (node)
7245 && !(TREE_STATIC (node) || DECL_EXTERNAL (node)))
7246 {
7247 warning (OPT_Wattributes,
7248 "%qE attribute only affects top level objects",
7249 name);
7250 *no_add_attrs = true;
7251 }
7252
7253 return NULL_TREE;
7254 }
7255
7256 /* Handle a "const" attribute; arguments as in
7257 struct attribute_spec.handler. */
7258
7259 static tree
7260 handle_const_attribute (tree *node, tree name, tree ARG_UNUSED (args),
7261 int ARG_UNUSED (flags), bool *no_add_attrs)
7262 {
7263 tree type = TREE_TYPE (*node);
7264
7265 /* See FIXME comment on noreturn in c_common_attribute_table. */
7266 if (TREE_CODE (*node) == FUNCTION_DECL)
7267 TREE_READONLY (*node) = 1;
7268 else if (TREE_CODE (type) == POINTER_TYPE
7269 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
7270 TREE_TYPE (*node)
7271 = (build_qualified_type
7272 (build_pointer_type
7273 (build_type_variant (TREE_TYPE (type), 1,
7274 TREE_THIS_VOLATILE (TREE_TYPE (type)))),
7275 TYPE_QUALS (type)));
7276 else
7277 {
7278 warning (OPT_Wattributes, "%qE attribute ignored", name);
7279 *no_add_attrs = true;
7280 }
7281
7282 return NULL_TREE;
7283 }
7284
7285 /* Handle a "scalar_storage_order" attribute; arguments as in
7286 struct attribute_spec.handler. */
7287
7288 static tree
7289 handle_scalar_storage_order_attribute (tree *node, tree name, tree args,
7290 int flags, bool *no_add_attrs)
7291 {
7292 tree id = TREE_VALUE (args);
7293 tree type;
7294
7295 if (TREE_CODE (*node) == TYPE_DECL
7296 && ! (flags & ATTR_FLAG_CXX11))
7297 node = &TREE_TYPE (*node);
7298 type = *node;
7299
7300 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN)
7301 {
7302 error ("scalar_storage_order is not supported because endianness "
7303 "is not uniform");
7304 return NULL_TREE;
7305 }
7306
7307 if (RECORD_OR_UNION_TYPE_P (type) && !c_dialect_cxx ())
7308 {
7309 bool reverse = false;
7310
7311 if (TREE_CODE (id) == STRING_CST
7312 && strcmp (TREE_STRING_POINTER (id), "big-endian") == 0)
7313 reverse = !BYTES_BIG_ENDIAN;
7314 else if (TREE_CODE (id) == STRING_CST
7315 && strcmp (TREE_STRING_POINTER (id), "little-endian") == 0)
7316 reverse = BYTES_BIG_ENDIAN;
7317 else
7318 {
7319 error ("scalar_storage_order argument must be one of \"big-endian\""
7320 " or \"little-endian\"");
7321 return NULL_TREE;
7322 }
7323
7324 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
7325 {
7326 if (reverse)
7327 /* A type variant isn't good enough, since we don't want a cast
7328 to such a type to be removed as a no-op. */
7329 *node = type = build_duplicate_type (type);
7330 }
7331
7332 TYPE_REVERSE_STORAGE_ORDER (type) = reverse;
7333 return NULL_TREE;
7334 }
7335
7336 warning (OPT_Wattributes, "%qE attribute ignored", name);
7337 *no_add_attrs = true;
7338 return NULL_TREE;
7339 }
7340
7341 /* Handle a "transparent_union" attribute; arguments as in
7342 struct attribute_spec.handler. */
7343
7344 static tree
7345 handle_transparent_union_attribute (tree *node, tree name,
7346 tree ARG_UNUSED (args), int flags,
7347 bool *no_add_attrs)
7348 {
7349 tree type;
7350
7351 *no_add_attrs = true;
7352
7353 if (TREE_CODE (*node) == TYPE_DECL
7354 && ! (flags & ATTR_FLAG_CXX11))
7355 node = &TREE_TYPE (*node);
7356 type = *node;
7357
7358 if (TREE_CODE (type) == UNION_TYPE)
7359 {
7360 /* Make sure that the first field will work for a transparent union.
7361 If the type isn't complete yet, leave the check to the code in
7362 finish_struct. */
7363 if (TYPE_SIZE (type))
7364 {
7365 tree first = first_field (type);
7366 if (first == NULL_TREE
7367 || DECL_ARTIFICIAL (first)
7368 || TYPE_MODE (type) != DECL_MODE (first))
7369 goto ignored;
7370 }
7371
7372 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
7373 {
7374 /* If the type isn't complete yet, setting the flag
7375 on a variant wouldn't ever be checked. */
7376 if (!TYPE_SIZE (type))
7377 goto ignored;
7378
7379 /* build_duplicate_type doesn't work for C++. */
7380 if (c_dialect_cxx ())
7381 goto ignored;
7382
7383 /* A type variant isn't good enough, since we don't want a cast
7384 to such a type to be removed as a no-op. */
7385 *node = type = build_duplicate_type (type);
7386 }
7387
7388 for (tree t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
7389 TYPE_TRANSPARENT_AGGR (t) = 1;
7390 return NULL_TREE;
7391 }
7392
7393 ignored:
7394 warning (OPT_Wattributes, "%qE attribute ignored", name);
7395 return NULL_TREE;
7396 }
7397
7398 /* Subroutine of handle_{con,de}structor_attribute. Evaluate ARGS to
7399 get the requested priority for a constructor or destructor,
7400 possibly issuing diagnostics for invalid or reserved
7401 priorities. */
7402
7403 static priority_type
7404 get_priority (tree args, bool is_destructor)
7405 {
7406 HOST_WIDE_INT pri;
7407 tree arg;
7408
7409 if (!args)
7410 return DEFAULT_INIT_PRIORITY;
7411
7412 if (!SUPPORTS_INIT_PRIORITY)
7413 {
7414 if (is_destructor)
7415 error ("destructor priorities are not supported");
7416 else
7417 error ("constructor priorities are not supported");
7418 return DEFAULT_INIT_PRIORITY;
7419 }
7420
7421 arg = TREE_VALUE (args);
7422 if (TREE_CODE (arg) == IDENTIFIER_NODE)
7423 goto invalid;
7424 if (arg == error_mark_node)
7425 return DEFAULT_INIT_PRIORITY;
7426 arg = default_conversion (arg);
7427 if (!tree_fits_shwi_p (arg)
7428 || !INTEGRAL_TYPE_P (TREE_TYPE (arg)))
7429 goto invalid;
7430
7431 pri = tree_to_shwi (arg);
7432 if (pri < 0 || pri > MAX_INIT_PRIORITY)
7433 goto invalid;
7434
7435 if (pri <= MAX_RESERVED_INIT_PRIORITY)
7436 {
7437 if (is_destructor)
7438 warning (0,
7439 "destructor priorities from 0 to %d are reserved "
7440 "for the implementation",
7441 MAX_RESERVED_INIT_PRIORITY);
7442 else
7443 warning (0,
7444 "constructor priorities from 0 to %d are reserved "
7445 "for the implementation",
7446 MAX_RESERVED_INIT_PRIORITY);
7447 }
7448 return pri;
7449
7450 invalid:
7451 if (is_destructor)
7452 error ("destructor priorities must be integers from 0 to %d inclusive",
7453 MAX_INIT_PRIORITY);
7454 else
7455 error ("constructor priorities must be integers from 0 to %d inclusive",
7456 MAX_INIT_PRIORITY);
7457 return DEFAULT_INIT_PRIORITY;
7458 }
7459
7460 /* Handle a "constructor" attribute; arguments as in
7461 struct attribute_spec.handler. */
7462
7463 static tree
7464 handle_constructor_attribute (tree *node, tree name, tree args,
7465 int ARG_UNUSED (flags),
7466 bool *no_add_attrs)
7467 {
7468 tree decl = *node;
7469 tree type = TREE_TYPE (decl);
7470
7471 if (TREE_CODE (decl) == FUNCTION_DECL
7472 && TREE_CODE (type) == FUNCTION_TYPE
7473 && decl_function_context (decl) == 0)
7474 {
7475 priority_type priority;
7476 DECL_STATIC_CONSTRUCTOR (decl) = 1;
7477 priority = get_priority (args, /*is_destructor=*/false);
7478 SET_DECL_INIT_PRIORITY (decl, priority);
7479 TREE_USED (decl) = 1;
7480 }
7481 else
7482 {
7483 warning (OPT_Wattributes, "%qE attribute ignored", name);
7484 *no_add_attrs = true;
7485 }
7486
7487 return NULL_TREE;
7488 }
7489
7490 /* Handle a "destructor" attribute; arguments as in
7491 struct attribute_spec.handler. */
7492
7493 static tree
7494 handle_destructor_attribute (tree *node, tree name, tree args,
7495 int ARG_UNUSED (flags),
7496 bool *no_add_attrs)
7497 {
7498 tree decl = *node;
7499 tree type = TREE_TYPE (decl);
7500
7501 if (TREE_CODE (decl) == FUNCTION_DECL
7502 && TREE_CODE (type) == FUNCTION_TYPE
7503 && decl_function_context (decl) == 0)
7504 {
7505 priority_type priority;
7506 DECL_STATIC_DESTRUCTOR (decl) = 1;
7507 priority = get_priority (args, /*is_destructor=*/true);
7508 SET_DECL_FINI_PRIORITY (decl, priority);
7509 TREE_USED (decl) = 1;
7510 }
7511 else
7512 {
7513 warning (OPT_Wattributes, "%qE attribute ignored", name);
7514 *no_add_attrs = true;
7515 }
7516
7517 return NULL_TREE;
7518 }
7519
7520 /* Nonzero if the mode is a valid vector mode for this architecture.
7521 This returns nonzero even if there is no hardware support for the
7522 vector mode, but we can emulate with narrower modes. */
7523
7524 static int
7525 vector_mode_valid_p (machine_mode mode)
7526 {
7527 enum mode_class mclass = GET_MODE_CLASS (mode);
7528 machine_mode innermode;
7529
7530 /* Doh! What's going on? */
7531 if (mclass != MODE_VECTOR_INT
7532 && mclass != MODE_VECTOR_FLOAT
7533 && mclass != MODE_VECTOR_FRACT
7534 && mclass != MODE_VECTOR_UFRACT
7535 && mclass != MODE_VECTOR_ACCUM
7536 && mclass != MODE_VECTOR_UACCUM)
7537 return 0;
7538
7539 /* Hardware support. Woo hoo! */
7540 if (targetm.vector_mode_supported_p (mode))
7541 return 1;
7542
7543 innermode = GET_MODE_INNER (mode);
7544
7545 /* We should probably return 1 if requesting V4DI and we have no DI,
7546 but we have V2DI, but this is probably very unlikely. */
7547
7548 /* If we have support for the inner mode, we can safely emulate it.
7549 We may not have V2DI, but me can emulate with a pair of DIs. */
7550 return targetm.scalar_mode_supported_p (innermode);
7551 }
7552
7553
7554 /* Handle a "mode" attribute; arguments as in
7555 struct attribute_spec.handler. */
7556
7557 static tree
7558 handle_mode_attribute (tree *node, tree name, tree args,
7559 int ARG_UNUSED (flags), bool *no_add_attrs)
7560 {
7561 tree type = *node;
7562 tree ident = TREE_VALUE (args);
7563
7564 *no_add_attrs = true;
7565
7566 if (TREE_CODE (ident) != IDENTIFIER_NODE)
7567 warning (OPT_Wattributes, "%qE attribute ignored", name);
7568 else
7569 {
7570 int j;
7571 const char *p = IDENTIFIER_POINTER (ident);
7572 int len = strlen (p);
7573 machine_mode mode = VOIDmode;
7574 tree typefm;
7575 bool valid_mode;
7576
7577 if (len > 4 && p[0] == '_' && p[1] == '_'
7578 && p[len - 1] == '_' && p[len - 2] == '_')
7579 {
7580 char *newp = (char *) alloca (len - 1);
7581
7582 strcpy (newp, &p[2]);
7583 newp[len - 4] = '\0';
7584 p = newp;
7585 }
7586
7587 /* Change this type to have a type with the specified mode.
7588 First check for the special modes. */
7589 if (!strcmp (p, "byte"))
7590 mode = byte_mode;
7591 else if (!strcmp (p, "word"))
7592 mode = word_mode;
7593 else if (!strcmp (p, "pointer"))
7594 mode = ptr_mode;
7595 else if (!strcmp (p, "libgcc_cmp_return"))
7596 mode = targetm.libgcc_cmp_return_mode ();
7597 else if (!strcmp (p, "libgcc_shift_count"))
7598 mode = targetm.libgcc_shift_count_mode ();
7599 else if (!strcmp (p, "unwind_word"))
7600 mode = targetm.unwind_word_mode ();
7601 else
7602 for (j = 0; j < NUM_MACHINE_MODES; j++)
7603 if (!strcmp (p, GET_MODE_NAME (j)))
7604 {
7605 mode = (machine_mode) j;
7606 break;
7607 }
7608
7609 if (mode == VOIDmode)
7610 {
7611 error ("unknown machine mode %qE", ident);
7612 return NULL_TREE;
7613 }
7614
7615 valid_mode = false;
7616 switch (GET_MODE_CLASS (mode))
7617 {
7618 case MODE_INT:
7619 case MODE_PARTIAL_INT:
7620 case MODE_FLOAT:
7621 case MODE_DECIMAL_FLOAT:
7622 case MODE_FRACT:
7623 case MODE_UFRACT:
7624 case MODE_ACCUM:
7625 case MODE_UACCUM:
7626 valid_mode = targetm.scalar_mode_supported_p (mode);
7627 break;
7628
7629 case MODE_COMPLEX_INT:
7630 case MODE_COMPLEX_FLOAT:
7631 valid_mode = targetm.scalar_mode_supported_p (GET_MODE_INNER (mode));
7632 break;
7633
7634 case MODE_VECTOR_INT:
7635 case MODE_VECTOR_FLOAT:
7636 case MODE_VECTOR_FRACT:
7637 case MODE_VECTOR_UFRACT:
7638 case MODE_VECTOR_ACCUM:
7639 case MODE_VECTOR_UACCUM:
7640 warning (OPT_Wattributes, "specifying vector types with "
7641 "__attribute__ ((mode)) is deprecated");
7642 warning (OPT_Wattributes,
7643 "use __attribute__ ((vector_size)) instead");
7644 valid_mode = vector_mode_valid_p (mode);
7645 break;
7646
7647 default:
7648 break;
7649 }
7650 if (!valid_mode)
7651 {
7652 error ("unable to emulate %qs", p);
7653 return NULL_TREE;
7654 }
7655
7656 if (POINTER_TYPE_P (type))
7657 {
7658 addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (type));
7659 tree (*fn)(tree, machine_mode, bool);
7660
7661 if (!targetm.addr_space.valid_pointer_mode (mode, as))
7662 {
7663 error ("invalid pointer mode %qs", p);
7664 return NULL_TREE;
7665 }
7666
7667 if (TREE_CODE (type) == POINTER_TYPE)
7668 fn = build_pointer_type_for_mode;
7669 else
7670 fn = build_reference_type_for_mode;
7671 typefm = fn (TREE_TYPE (type), mode, false);
7672 }
7673 else
7674 {
7675 /* For fixed-point modes, we need to test if the signness of type
7676 and the machine mode are consistent. */
7677 if (ALL_FIXED_POINT_MODE_P (mode)
7678 && TYPE_UNSIGNED (type) != UNSIGNED_FIXED_POINT_MODE_P (mode))
7679 {
7680 error ("signedness of type and machine mode %qs don%'t match", p);
7681 return NULL_TREE;
7682 }
7683 /* For fixed-point modes, we need to pass saturating info. */
7684 typefm = lang_hooks.types.type_for_mode (mode,
7685 ALL_FIXED_POINT_MODE_P (mode) ? TYPE_SATURATING (type)
7686 : TYPE_UNSIGNED (type));
7687 }
7688
7689 if (typefm == NULL_TREE)
7690 {
7691 error ("no data type for mode %qs", p);
7692 return NULL_TREE;
7693 }
7694 else if (TREE_CODE (type) == ENUMERAL_TYPE)
7695 {
7696 /* For enumeral types, copy the precision from the integer
7697 type returned above. If not an INTEGER_TYPE, we can't use
7698 this mode for this type. */
7699 if (TREE_CODE (typefm) != INTEGER_TYPE)
7700 {
7701 error ("cannot use mode %qs for enumeral types", p);
7702 return NULL_TREE;
7703 }
7704
7705 if (flags & ATTR_FLAG_TYPE_IN_PLACE)
7706 {
7707 TYPE_PRECISION (type) = TYPE_PRECISION (typefm);
7708 typefm = type;
7709 }
7710 else
7711 {
7712 /* We cannot build a type variant, as there's code that assumes
7713 that TYPE_MAIN_VARIANT has the same mode. This includes the
7714 debug generators. Instead, create a subrange type. This
7715 results in all of the enumeral values being emitted only once
7716 in the original, and the subtype gets them by reference. */
7717 if (TYPE_UNSIGNED (type))
7718 typefm = make_unsigned_type (TYPE_PRECISION (typefm));
7719 else
7720 typefm = make_signed_type (TYPE_PRECISION (typefm));
7721 TREE_TYPE (typefm) = type;
7722 }
7723 }
7724 else if (VECTOR_MODE_P (mode)
7725 ? TREE_CODE (type) != TREE_CODE (TREE_TYPE (typefm))
7726 : TREE_CODE (type) != TREE_CODE (typefm))
7727 {
7728 error ("mode %qs applied to inappropriate type", p);
7729 return NULL_TREE;
7730 }
7731
7732 *node = typefm;
7733 }
7734
7735 return NULL_TREE;
7736 }
7737
7738 /* Handle a "section" attribute; arguments as in
7739 struct attribute_spec.handler. */
7740
7741 static tree
7742 handle_section_attribute (tree *node, tree ARG_UNUSED (name), tree args,
7743 int ARG_UNUSED (flags), bool *no_add_attrs)
7744 {
7745 tree decl = *node;
7746
7747 if (!targetm_common.have_named_sections)
7748 {
7749 error_at (DECL_SOURCE_LOCATION (*node),
7750 "section attributes are not supported for this target");
7751 goto fail;
7752 }
7753
7754 user_defined_section_attribute = true;
7755
7756 if (!VAR_OR_FUNCTION_DECL_P (decl))
7757 {
7758 error ("section attribute not allowed for %q+D", *node);
7759 goto fail;
7760 }
7761
7762 if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
7763 {
7764 error ("section attribute argument not a string constant");
7765 goto fail;
7766 }
7767
7768 if (VAR_P (decl)
7769 && current_function_decl != NULL_TREE
7770 && !TREE_STATIC (decl))
7771 {
7772 error_at (DECL_SOURCE_LOCATION (decl),
7773 "section attribute cannot be specified for local variables");
7774 goto fail;
7775 }
7776
7777 /* The decl may have already been given a section attribute
7778 from a previous declaration. Ensure they match. */
7779 if (DECL_SECTION_NAME (decl) != NULL
7780 && strcmp (DECL_SECTION_NAME (decl),
7781 TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
7782 {
7783 error ("section of %q+D conflicts with previous declaration", *node);
7784 goto fail;
7785 }
7786
7787 if (VAR_P (decl)
7788 && !targetm.have_tls && targetm.emutls.tmpl_section
7789 && DECL_THREAD_LOCAL_P (decl))
7790 {
7791 error ("section of %q+D cannot be overridden", *node);
7792 goto fail;
7793 }
7794
7795 set_decl_section_name (decl, TREE_STRING_POINTER (TREE_VALUE (args)));
7796 return NULL_TREE;
7797
7798 fail:
7799 *no_add_attrs = true;
7800 return NULL_TREE;
7801 }
7802
7803 /* Check whether ALIGN is a valid user-specified alignment. If so,
7804 return its base-2 log; if not, output an error and return -1. If
7805 ALLOW_ZERO then 0 is valid and should result in a return of -1 with
7806 no error. */
7807 int
7808 check_user_alignment (const_tree align, bool allow_zero)
7809 {
7810 int i;
7811
7812 if (error_operand_p (align))
7813 return -1;
7814 if (TREE_CODE (align) != INTEGER_CST
7815 || !INTEGRAL_TYPE_P (TREE_TYPE (align)))
7816 {
7817 error ("requested alignment is not an integer constant");
7818 return -1;
7819 }
7820 else if (allow_zero && integer_zerop (align))
7821 return -1;
7822 else if (tree_int_cst_sgn (align) == -1
7823 || (i = tree_log2 (align)) == -1)
7824 {
7825 error ("requested alignment is not a positive power of 2");
7826 return -1;
7827 }
7828 else if (i >= HOST_BITS_PER_INT - LOG2_BITS_PER_UNIT)
7829 {
7830 error ("requested alignment is too large");
7831 return -1;
7832 }
7833 return i;
7834 }
7835
7836 /* If in c++-11, check if the c++-11 alignment constraint with respect
7837 to fundamental alignment (in [dcl.align]) are satisfied. If not in
7838 c++-11 mode, does nothing.
7839
7840 [dcl.align]2/ says:
7841
7842 [* if the constant expression evaluates to a fundamental alignment,
7843 the alignment requirement of the declared entity shall be the
7844 specified fundamental alignment.
7845
7846 * if the constant expression evaluates to an extended alignment
7847 and the implementation supports that alignment in the context
7848 of the declaration, the alignment of the declared entity shall
7849 be that alignment
7850
7851 * if the constant expression evaluates to an extended alignment
7852 and the implementation does not support that alignment in the
7853 context of the declaration, the program is ill-formed]. */
7854
7855 static bool
7856 check_cxx_fundamental_alignment_constraints (tree node,
7857 unsigned align_log,
7858 int flags)
7859 {
7860 bool alignment_too_large_p = false;
7861 unsigned requested_alignment = (1U << align_log) * BITS_PER_UNIT;
7862 unsigned max_align = 0;
7863
7864 if ((!(flags & ATTR_FLAG_CXX11) && !warn_cxx_compat)
7865 || (node == NULL_TREE || node == error_mark_node))
7866 return true;
7867
7868 if (cxx_fundamental_alignment_p (requested_alignment))
7869 return true;
7870
7871 if (VAR_P (node))
7872 {
7873 if (TREE_STATIC (node))
7874 /* For file scope variables and static members, the target supports
7875 alignments that are at most MAX_OFILE_ALIGNMENT. */
7876 max_align = MAX_OFILE_ALIGNMENT;
7877 else
7878 /* For stack variables, the target supports at most
7879 MAX_STACK_ALIGNMENT. */
7880 max_align = MAX_STACK_ALIGNMENT;
7881 if (requested_alignment > max_align)
7882 alignment_too_large_p = true;
7883 }
7884 /* Let's be liberal for types and fields; don't limit their alignment any
7885 more than check_user_alignment already did. */
7886
7887 if (alignment_too_large_p)
7888 pedwarn (input_location, OPT_Wattributes,
7889 "requested alignment %d is larger than %d",
7890 requested_alignment / BITS_PER_UNIT, max_align / BITS_PER_UNIT);
7891
7892 return !alignment_too_large_p;
7893 }
7894
7895 /* Handle a "aligned" attribute; arguments as in
7896 struct attribute_spec.handler. */
7897
7898 static tree
7899 handle_aligned_attribute (tree *node, tree ARG_UNUSED (name), tree args,
7900 int flags, bool *no_add_attrs)
7901 {
7902 tree decl = NULL_TREE;
7903 tree *type = NULL;
7904 int is_type = 0;
7905 tree align_expr;
7906 int i;
7907
7908 if (args)
7909 {
7910 align_expr = TREE_VALUE (args);
7911 if (align_expr && TREE_CODE (align_expr) != IDENTIFIER_NODE
7912 && TREE_CODE (align_expr) != FUNCTION_DECL)
7913 align_expr = default_conversion (align_expr);
7914 }
7915 else
7916 align_expr = size_int (ATTRIBUTE_ALIGNED_VALUE / BITS_PER_UNIT);
7917
7918 if (DECL_P (*node))
7919 {
7920 decl = *node;
7921 type = &TREE_TYPE (decl);
7922 is_type = TREE_CODE (*node) == TYPE_DECL;
7923 }
7924 else if (TYPE_P (*node))
7925 type = node, is_type = 1;
7926
7927 if ((i = check_user_alignment (align_expr, true)) == -1
7928 || !check_cxx_fundamental_alignment_constraints (*node, i, flags))
7929 *no_add_attrs = true;
7930 else if (is_type)
7931 {
7932 if ((flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
7933 /* OK, modify the type in place. */;
7934 /* If we have a TYPE_DECL, then copy the type, so that we
7935 don't accidentally modify a builtin type. See pushdecl. */
7936 else if (decl && TREE_TYPE (decl) != error_mark_node
7937 && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
7938 {
7939 tree tt = TREE_TYPE (decl);
7940 *type = build_variant_type_copy (*type);
7941 DECL_ORIGINAL_TYPE (decl) = tt;
7942 TYPE_NAME (*type) = decl;
7943 TREE_USED (*type) = TREE_USED (decl);
7944 TREE_TYPE (decl) = *type;
7945 }
7946 else
7947 *type = build_variant_type_copy (*type);
7948
7949 SET_TYPE_ALIGN (*type, (1U << i) * BITS_PER_UNIT);
7950 TYPE_USER_ALIGN (*type) = 1;
7951 }
7952 else if (! VAR_OR_FUNCTION_DECL_P (decl)
7953 && TREE_CODE (decl) != FIELD_DECL)
7954 {
7955 error ("alignment may not be specified for %q+D", decl);
7956 *no_add_attrs = true;
7957 }
7958 else if (DECL_USER_ALIGN (decl)
7959 && DECL_ALIGN (decl) > (1U << i) * BITS_PER_UNIT)
7960 /* C++-11 [dcl.align/4]:
7961
7962 When multiple alignment-specifiers are specified for an
7963 entity, the alignment requirement shall be set to the
7964 strictest specified alignment.
7965
7966 This formally comes from the c++11 specification but we are
7967 doing it for the GNU attribute syntax as well. */
7968 *no_add_attrs = true;
7969 else if (TREE_CODE (decl) == FUNCTION_DECL
7970 && DECL_ALIGN (decl) > (1U << i) * BITS_PER_UNIT)
7971 {
7972 if (DECL_USER_ALIGN (decl))
7973 error ("alignment for %q+D was previously specified as %d "
7974 "and may not be decreased", decl,
7975 DECL_ALIGN (decl) / BITS_PER_UNIT);
7976 else
7977 error ("alignment for %q+D must be at least %d", decl,
7978 DECL_ALIGN (decl) / BITS_PER_UNIT);
7979 *no_add_attrs = true;
7980 }
7981 else
7982 {
7983 SET_DECL_ALIGN (decl, (1U << i) * BITS_PER_UNIT);
7984 DECL_USER_ALIGN (decl) = 1;
7985 }
7986
7987 return NULL_TREE;
7988 }
7989
7990 /* Handle a "weak" attribute; arguments as in
7991 struct attribute_spec.handler. */
7992
7993 static tree
7994 handle_weak_attribute (tree *node, tree name,
7995 tree ARG_UNUSED (args),
7996 int ARG_UNUSED (flags),
7997 bool * ARG_UNUSED (no_add_attrs))
7998 {
7999 if (TREE_CODE (*node) == FUNCTION_DECL
8000 && DECL_DECLARED_INLINE_P (*node))
8001 {
8002 warning (OPT_Wattributes, "inline function %q+D declared weak", *node);
8003 *no_add_attrs = true;
8004 }
8005 else if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node)))
8006 {
8007 error ("indirect function %q+D cannot be declared weak", *node);
8008 *no_add_attrs = true;
8009 return NULL_TREE;
8010 }
8011 else if (VAR_OR_FUNCTION_DECL_P (*node))
8012 declare_weak (*node);
8013 else
8014 warning (OPT_Wattributes, "%qE attribute ignored", name);
8015
8016 return NULL_TREE;
8017 }
8018
8019 /* Handle a "noplt" attribute; arguments as in
8020 struct attribute_spec.handler. */
8021
8022 static tree
8023 handle_noplt_attribute (tree *node, tree name,
8024 tree ARG_UNUSED (args),
8025 int ARG_UNUSED (flags),
8026 bool * ARG_UNUSED (no_add_attrs))
8027 {
8028 if (TREE_CODE (*node) != FUNCTION_DECL)
8029 {
8030 warning (OPT_Wattributes,
8031 "%qE attribute is only applicable on functions", name);
8032 *no_add_attrs = true;
8033 return NULL_TREE;
8034 }
8035 return NULL_TREE;
8036 }
8037
8038 /* Handle an "alias" or "ifunc" attribute; arguments as in
8039 struct attribute_spec.handler, except that IS_ALIAS tells us
8040 whether this is an alias as opposed to ifunc attribute. */
8041
8042 static tree
8043 handle_alias_ifunc_attribute (bool is_alias, tree *node, tree name, tree args,
8044 bool *no_add_attrs)
8045 {
8046 tree decl = *node;
8047
8048 if (TREE_CODE (decl) != FUNCTION_DECL
8049 && (!is_alias || !VAR_P (decl)))
8050 {
8051 warning (OPT_Wattributes, "%qE attribute ignored", name);
8052 *no_add_attrs = true;
8053 }
8054 else if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
8055 || (TREE_CODE (decl) != FUNCTION_DECL
8056 && TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
8057 /* A static variable declaration is always a tentative definition,
8058 but the alias is a non-tentative definition which overrides. */
8059 || (TREE_CODE (decl) != FUNCTION_DECL
8060 && ! TREE_PUBLIC (decl) && DECL_INITIAL (decl)))
8061 {
8062 error ("%q+D defined both normally and as %qE attribute", decl, name);
8063 *no_add_attrs = true;
8064 return NULL_TREE;
8065 }
8066 else if (!is_alias
8067 && (lookup_attribute ("weak", DECL_ATTRIBUTES (decl))
8068 || lookup_attribute ("weakref", DECL_ATTRIBUTES (decl))))
8069 {
8070 error ("weak %q+D cannot be defined %qE", decl, name);
8071 *no_add_attrs = true;
8072 return NULL_TREE;
8073 }
8074
8075 /* Note that the very first time we process a nested declaration,
8076 decl_function_context will not be set. Indeed, *would* never
8077 be set except for the DECL_INITIAL/DECL_EXTERNAL frobbery that
8078 we do below. After such frobbery, pushdecl would set the context.
8079 In any case, this is never what we want. */
8080 else if (decl_function_context (decl) == 0 && current_function_decl == NULL)
8081 {
8082 tree id;
8083
8084 id = TREE_VALUE (args);
8085 if (TREE_CODE (id) != STRING_CST)
8086 {
8087 error ("attribute %qE argument not a string", name);
8088 *no_add_attrs = true;
8089 return NULL_TREE;
8090 }
8091 id = get_identifier (TREE_STRING_POINTER (id));
8092 /* This counts as a use of the object pointed to. */
8093 TREE_USED (id) = 1;
8094
8095 if (TREE_CODE (decl) == FUNCTION_DECL)
8096 DECL_INITIAL (decl) = error_mark_node;
8097 else
8098 TREE_STATIC (decl) = 1;
8099
8100 if (!is_alias)
8101 /* ifuncs are also aliases, so set that attribute too. */
8102 DECL_ATTRIBUTES (decl)
8103 = tree_cons (get_identifier ("alias"), args, DECL_ATTRIBUTES (decl));
8104 }
8105 else
8106 {
8107 warning (OPT_Wattributes, "%qE attribute ignored", name);
8108 *no_add_attrs = true;
8109 }
8110
8111 if (decl_in_symtab_p (*node))
8112 {
8113 struct symtab_node *n = symtab_node::get (decl);
8114 if (n && n->refuse_visibility_changes)
8115 {
8116 if (is_alias)
8117 error ("%+D declared alias after being used", decl);
8118 else
8119 error ("%+D declared ifunc after being used", decl);
8120 }
8121 }
8122
8123
8124 return NULL_TREE;
8125 }
8126
8127 /* Handle an "alias" or "ifunc" attribute; arguments as in
8128 struct attribute_spec.handler. */
8129
8130 static tree
8131 handle_ifunc_attribute (tree *node, tree name, tree args,
8132 int ARG_UNUSED (flags), bool *no_add_attrs)
8133 {
8134 return handle_alias_ifunc_attribute (false, node, name, args, no_add_attrs);
8135 }
8136
8137 /* Handle an "alias" or "ifunc" attribute; arguments as in
8138 struct attribute_spec.handler. */
8139
8140 static tree
8141 handle_alias_attribute (tree *node, tree name, tree args,
8142 int ARG_UNUSED (flags), bool *no_add_attrs)
8143 {
8144 return handle_alias_ifunc_attribute (true, node, name, args, no_add_attrs);
8145 }
8146
8147 /* Handle a "weakref" attribute; arguments as in struct
8148 attribute_spec.handler. */
8149
8150 static tree
8151 handle_weakref_attribute (tree *node, tree ARG_UNUSED (name), tree args,
8152 int flags, bool *no_add_attrs)
8153 {
8154 tree attr = NULL_TREE;
8155
8156 /* We must ignore the attribute when it is associated with
8157 local-scoped decls, since attribute alias is ignored and many
8158 such symbols do not even have a DECL_WEAK field. */
8159 if (decl_function_context (*node)
8160 || current_function_decl
8161 || !VAR_OR_FUNCTION_DECL_P (*node))
8162 {
8163 warning (OPT_Wattributes, "%qE attribute ignored", name);
8164 *no_add_attrs = true;
8165 return NULL_TREE;
8166 }
8167
8168 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (*node)))
8169 {
8170 error ("indirect function %q+D cannot be declared weakref", *node);
8171 *no_add_attrs = true;
8172 return NULL_TREE;
8173 }
8174
8175 /* The idea here is that `weakref("name")' mutates into `weakref,
8176 alias("name")', and weakref without arguments, in turn,
8177 implicitly adds weak. */
8178
8179 if (args)
8180 {
8181 attr = tree_cons (get_identifier ("alias"), args, attr);
8182 attr = tree_cons (get_identifier ("weakref"), NULL_TREE, attr);
8183
8184 *no_add_attrs = true;
8185
8186 decl_attributes (node, attr, flags);
8187 }
8188 else
8189 {
8190 if (lookup_attribute ("alias", DECL_ATTRIBUTES (*node)))
8191 error_at (DECL_SOURCE_LOCATION (*node),
8192 "weakref attribute must appear before alias attribute");
8193
8194 /* Can't call declare_weak because it wants this to be TREE_PUBLIC,
8195 and that isn't supported; and because it wants to add it to
8196 the list of weak decls, which isn't helpful. */
8197 DECL_WEAK (*node) = 1;
8198 }
8199
8200 if (decl_in_symtab_p (*node))
8201 {
8202 struct symtab_node *n = symtab_node::get (*node);
8203 if (n && n->refuse_visibility_changes)
8204 error ("%+D declared weakref after being used", *node);
8205 }
8206
8207 return NULL_TREE;
8208 }
8209
8210 /* Handle an "visibility" attribute; arguments as in
8211 struct attribute_spec.handler. */
8212
8213 static tree
8214 handle_visibility_attribute (tree *node, tree name, tree args,
8215 int ARG_UNUSED (flags),
8216 bool *ARG_UNUSED (no_add_attrs))
8217 {
8218 tree decl = *node;
8219 tree id = TREE_VALUE (args);
8220 enum symbol_visibility vis;
8221
8222 if (TYPE_P (*node))
8223 {
8224 if (TREE_CODE (*node) == ENUMERAL_TYPE)
8225 /* OK */;
8226 else if (!RECORD_OR_UNION_TYPE_P (*node))
8227 {
8228 warning (OPT_Wattributes, "%qE attribute ignored on non-class types",
8229 name);
8230 return NULL_TREE;
8231 }
8232 else if (TYPE_FIELDS (*node))
8233 {
8234 error ("%qE attribute ignored because %qT is already defined",
8235 name, *node);
8236 return NULL_TREE;
8237 }
8238 }
8239 else if (decl_function_context (decl) != 0 || !TREE_PUBLIC (decl))
8240 {
8241 warning (OPT_Wattributes, "%qE attribute ignored", name);
8242 return NULL_TREE;
8243 }
8244
8245 if (TREE_CODE (id) != STRING_CST)
8246 {
8247 error ("visibility argument not a string");
8248 return NULL_TREE;
8249 }
8250
8251 /* If this is a type, set the visibility on the type decl. */
8252 if (TYPE_P (decl))
8253 {
8254 decl = TYPE_NAME (decl);
8255 if (!decl)
8256 return NULL_TREE;
8257 if (TREE_CODE (decl) == IDENTIFIER_NODE)
8258 {
8259 warning (OPT_Wattributes, "%qE attribute ignored on types",
8260 name);
8261 return NULL_TREE;
8262 }
8263 }
8264
8265 if (strcmp (TREE_STRING_POINTER (id), "default") == 0)
8266 vis = VISIBILITY_DEFAULT;
8267 else if (strcmp (TREE_STRING_POINTER (id), "internal") == 0)
8268 vis = VISIBILITY_INTERNAL;
8269 else if (strcmp (TREE_STRING_POINTER (id), "hidden") == 0)
8270 vis = VISIBILITY_HIDDEN;
8271 else if (strcmp (TREE_STRING_POINTER (id), "protected") == 0)
8272 vis = VISIBILITY_PROTECTED;
8273 else
8274 {
8275 error ("visibility argument must be one of \"default\", \"hidden\", \"protected\" or \"internal\"");
8276 vis = VISIBILITY_DEFAULT;
8277 }
8278
8279 if (DECL_VISIBILITY_SPECIFIED (decl)
8280 && vis != DECL_VISIBILITY (decl))
8281 {
8282 tree attributes = (TYPE_P (*node)
8283 ? TYPE_ATTRIBUTES (*node)
8284 : DECL_ATTRIBUTES (decl));
8285 if (lookup_attribute ("visibility", attributes))
8286 error ("%qD redeclared with different visibility", decl);
8287 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
8288 && lookup_attribute ("dllimport", attributes))
8289 error ("%qD was declared %qs which implies default visibility",
8290 decl, "dllimport");
8291 else if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
8292 && lookup_attribute ("dllexport", attributes))
8293 error ("%qD was declared %qs which implies default visibility",
8294 decl, "dllexport");
8295 }
8296
8297 DECL_VISIBILITY (decl) = vis;
8298 DECL_VISIBILITY_SPECIFIED (decl) = 1;
8299
8300 /* Go ahead and attach the attribute to the node as well. This is needed
8301 so we can determine whether we have VISIBILITY_DEFAULT because the
8302 visibility was not specified, or because it was explicitly overridden
8303 from the containing scope. */
8304
8305 return NULL_TREE;
8306 }
8307
8308 /* Determine the ELF symbol visibility for DECL, which is either a
8309 variable or a function. It is an error to use this function if a
8310 definition of DECL is not available in this translation unit.
8311 Returns true if the final visibility has been determined by this
8312 function; false if the caller is free to make additional
8313 modifications. */
8314
8315 bool
8316 c_determine_visibility (tree decl)
8317 {
8318 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
8319
8320 /* If the user explicitly specified the visibility with an
8321 attribute, honor that. DECL_VISIBILITY will have been set during
8322 the processing of the attribute. We check for an explicit
8323 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
8324 to distinguish the use of an attribute from the use of a "#pragma
8325 GCC visibility push(...)"; in the latter case we still want other
8326 considerations to be able to overrule the #pragma. */
8327 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl))
8328 || (TARGET_DLLIMPORT_DECL_ATTRIBUTES
8329 && (lookup_attribute ("dllimport", DECL_ATTRIBUTES (decl))
8330 || lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))))
8331 return true;
8332
8333 /* Set default visibility to whatever the user supplied with
8334 visibility_specified depending on #pragma GCC visibility. */
8335 if (!DECL_VISIBILITY_SPECIFIED (decl))
8336 {
8337 if (visibility_options.inpragma
8338 || DECL_VISIBILITY (decl) != default_visibility)
8339 {
8340 DECL_VISIBILITY (decl) = default_visibility;
8341 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
8342 /* If visibility changed and DECL already has DECL_RTL, ensure
8343 symbol flags are updated. */
8344 if (((VAR_P (decl) && TREE_STATIC (decl))
8345 || TREE_CODE (decl) == FUNCTION_DECL)
8346 && DECL_RTL_SET_P (decl))
8347 make_decl_rtl (decl);
8348 }
8349 }
8350 return false;
8351 }
8352
8353 /* Handle an "tls_model" attribute; arguments as in
8354 struct attribute_spec.handler. */
8355
8356 static tree
8357 handle_tls_model_attribute (tree *node, tree name, tree args,
8358 int ARG_UNUSED (flags), bool *no_add_attrs)
8359 {
8360 tree id;
8361 tree decl = *node;
8362 enum tls_model kind;
8363
8364 *no_add_attrs = true;
8365
8366 if (!VAR_P (decl) || !DECL_THREAD_LOCAL_P (decl))
8367 {
8368 warning (OPT_Wattributes, "%qE attribute ignored", name);
8369 return NULL_TREE;
8370 }
8371
8372 kind = DECL_TLS_MODEL (decl);
8373 id = TREE_VALUE (args);
8374 if (TREE_CODE (id) != STRING_CST)
8375 {
8376 error ("tls_model argument not a string");
8377 return NULL_TREE;
8378 }
8379
8380 if (!strcmp (TREE_STRING_POINTER (id), "local-exec"))
8381 kind = TLS_MODEL_LOCAL_EXEC;
8382 else if (!strcmp (TREE_STRING_POINTER (id), "initial-exec"))
8383 kind = TLS_MODEL_INITIAL_EXEC;
8384 else if (!strcmp (TREE_STRING_POINTER (id), "local-dynamic"))
8385 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
8386 else if (!strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
8387 kind = TLS_MODEL_GLOBAL_DYNAMIC;
8388 else
8389 error ("tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
8390
8391 set_decl_tls_model (decl, kind);
8392 return NULL_TREE;
8393 }
8394
8395 /* Handle a "no_instrument_function" attribute; arguments as in
8396 struct attribute_spec.handler. */
8397
8398 static tree
8399 handle_no_instrument_function_attribute (tree *node, tree name,
8400 tree ARG_UNUSED (args),
8401 int ARG_UNUSED (flags),
8402 bool *no_add_attrs)
8403 {
8404 tree decl = *node;
8405
8406 if (TREE_CODE (decl) != FUNCTION_DECL)
8407 {
8408 error_at (DECL_SOURCE_LOCATION (decl),
8409 "%qE attribute applies only to functions", name);
8410 *no_add_attrs = true;
8411 }
8412 else
8413 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
8414
8415 return NULL_TREE;
8416 }
8417
8418 /* Handle a "no_profile_instrument_function" attribute; arguments as in
8419 struct attribute_spec.handler. */
8420
8421 static tree
8422 handle_no_profile_instrument_function_attribute (tree *node, tree name, tree,
8423 int, bool *no_add_attrs)
8424 {
8425 if (TREE_CODE (*node) != FUNCTION_DECL)
8426 {
8427 warning (OPT_Wattributes, "%qE attribute ignored", name);
8428 *no_add_attrs = true;
8429 }
8430
8431 return NULL_TREE;
8432 }
8433
8434 /* Handle a "malloc" attribute; arguments as in
8435 struct attribute_spec.handler. */
8436
8437 static tree
8438 handle_malloc_attribute (tree *node, tree name, tree ARG_UNUSED (args),
8439 int ARG_UNUSED (flags), bool *no_add_attrs)
8440 {
8441 if (TREE_CODE (*node) == FUNCTION_DECL
8442 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (*node))))
8443 DECL_IS_MALLOC (*node) = 1;
8444 else
8445 {
8446 warning (OPT_Wattributes, "%qE attribute ignored", name);
8447 *no_add_attrs = true;
8448 }
8449
8450 return NULL_TREE;
8451 }
8452
8453 /* Handle a "alloc_size" attribute; arguments as in
8454 struct attribute_spec.handler. */
8455
8456 static tree
8457 handle_alloc_size_attribute (tree *node, tree ARG_UNUSED (name), tree args,
8458 int ARG_UNUSED (flags), bool *no_add_attrs)
8459 {
8460 unsigned arg_count = type_num_arguments (*node);
8461 for (; args; args = TREE_CHAIN (args))
8462 {
8463 tree position = TREE_VALUE (args);
8464 if (position && TREE_CODE (position) != IDENTIFIER_NODE
8465 && TREE_CODE (position) != FUNCTION_DECL)
8466 position = default_conversion (position);
8467
8468 if (!tree_fits_uhwi_p (position)
8469 || !arg_count
8470 || !IN_RANGE (tree_to_uhwi (position), 1, arg_count))
8471 {
8472 warning (OPT_Wattributes,
8473 "alloc_size parameter outside range");
8474 *no_add_attrs = true;
8475 return NULL_TREE;
8476 }
8477 }
8478 return NULL_TREE;
8479 }
8480
8481 /* Handle a "alloc_align" attribute; arguments as in
8482 struct attribute_spec.handler. */
8483
8484 static tree
8485 handle_alloc_align_attribute (tree *node, tree, tree args, int,
8486 bool *no_add_attrs)
8487 {
8488 unsigned arg_count = type_num_arguments (*node);
8489 tree position = TREE_VALUE (args);
8490 if (position && TREE_CODE (position) != IDENTIFIER_NODE
8491 && TREE_CODE (position) != FUNCTION_DECL)
8492 position = default_conversion (position);
8493
8494 if (!tree_fits_uhwi_p (position)
8495 || !arg_count
8496 || !IN_RANGE (tree_to_uhwi (position), 1, arg_count))
8497 {
8498 warning (OPT_Wattributes,
8499 "alloc_align parameter outside range");
8500 *no_add_attrs = true;
8501 return NULL_TREE;
8502 }
8503 return NULL_TREE;
8504 }
8505
8506 /* Handle a "assume_aligned" attribute; arguments as in
8507 struct attribute_spec.handler. */
8508
8509 static tree
8510 handle_assume_aligned_attribute (tree *, tree, tree args, int,
8511 bool *no_add_attrs)
8512 {
8513 for (; args; args = TREE_CHAIN (args))
8514 {
8515 tree position = TREE_VALUE (args);
8516 if (position && TREE_CODE (position) != IDENTIFIER_NODE
8517 && TREE_CODE (position) != FUNCTION_DECL)
8518 position = default_conversion (position);
8519
8520 if (TREE_CODE (position) != INTEGER_CST)
8521 {
8522 warning (OPT_Wattributes,
8523 "assume_aligned parameter not integer constant");
8524 *no_add_attrs = true;
8525 return NULL_TREE;
8526 }
8527 }
8528 return NULL_TREE;
8529 }
8530
8531 /* Handle a "fn spec" attribute; arguments as in
8532 struct attribute_spec.handler. */
8533
8534 static tree
8535 handle_fnspec_attribute (tree *node ATTRIBUTE_UNUSED, tree ARG_UNUSED (name),
8536 tree args, int ARG_UNUSED (flags),
8537 bool *no_add_attrs ATTRIBUTE_UNUSED)
8538 {
8539 gcc_assert (args
8540 && TREE_CODE (TREE_VALUE (args)) == STRING_CST
8541 && !TREE_CHAIN (args));
8542 return NULL_TREE;
8543 }
8544
8545 /* Handle a "bnd_variable_size" attribute; arguments as in
8546 struct attribute_spec.handler. */
8547
8548 static tree
8549 handle_bnd_variable_size_attribute (tree *node, tree name, tree ARG_UNUSED (args),
8550 int ARG_UNUSED (flags), bool *no_add_attrs)
8551 {
8552 if (TREE_CODE (*node) != FIELD_DECL)
8553 {
8554 warning (OPT_Wattributes, "%qE attribute ignored", name);
8555 *no_add_attrs = true;
8556 }
8557
8558 return NULL_TREE;
8559 }
8560
8561 /* Handle a "bnd_legacy" attribute; arguments as in
8562 struct attribute_spec.handler. */
8563
8564 static tree
8565 handle_bnd_legacy (tree *node, tree name, tree ARG_UNUSED (args),
8566 int ARG_UNUSED (flags), bool *no_add_attrs)
8567 {
8568 if (TREE_CODE (*node) != FUNCTION_DECL)
8569 {
8570 warning (OPT_Wattributes, "%qE attribute ignored", name);
8571 *no_add_attrs = true;
8572 }
8573
8574 return NULL_TREE;
8575 }
8576
8577 /* Handle a "bnd_instrument" attribute; arguments as in
8578 struct attribute_spec.handler. */
8579
8580 static tree
8581 handle_bnd_instrument (tree *node, tree name, tree ARG_UNUSED (args),
8582 int ARG_UNUSED (flags), bool *no_add_attrs)
8583 {
8584 if (TREE_CODE (*node) != FUNCTION_DECL)
8585 {
8586 warning (OPT_Wattributes, "%qE attribute ignored", name);
8587 *no_add_attrs = true;
8588 }
8589
8590 return NULL_TREE;
8591 }
8592
8593 /* Handle a "warn_unused" attribute; arguments as in
8594 struct attribute_spec.handler. */
8595
8596 static tree
8597 handle_warn_unused_attribute (tree *node, tree name,
8598 tree args ATTRIBUTE_UNUSED,
8599 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
8600 {
8601 if (TYPE_P (*node))
8602 /* Do nothing else, just set the attribute. We'll get at
8603 it later with lookup_attribute. */
8604 ;
8605 else
8606 {
8607 warning (OPT_Wattributes, "%qE attribute ignored", name);
8608 *no_add_attrs = true;
8609 }
8610
8611 return NULL_TREE;
8612 }
8613
8614 /* Handle an "omp declare simd" attribute; arguments as in
8615 struct attribute_spec.handler. */
8616
8617 static tree
8618 handle_omp_declare_simd_attribute (tree *, tree, tree, int, bool *)
8619 {
8620 return NULL_TREE;
8621 }
8622
8623 /* Handle a "simd" attribute. */
8624
8625 static tree
8626 handle_simd_attribute (tree *node, tree name, tree args, int, bool *no_add_attrs)
8627 {
8628 if (TREE_CODE (*node) == FUNCTION_DECL)
8629 {
8630 if (lookup_attribute ("cilk simd function",
8631 DECL_ATTRIBUTES (*node)) != NULL)
8632 {
8633 error_at (DECL_SOURCE_LOCATION (*node),
8634 "%<__simd__%> attribute cannot be used in the same "
8635 "function marked as a Cilk Plus SIMD-enabled function");
8636 *no_add_attrs = true;
8637 }
8638 else
8639 {
8640 tree t = get_identifier ("omp declare simd");
8641 tree attr = NULL_TREE;
8642 if (args)
8643 {
8644 tree id = TREE_VALUE (args);
8645
8646 if (TREE_CODE (id) != STRING_CST)
8647 {
8648 error ("attribute %qE argument not a string", name);
8649 *no_add_attrs = true;
8650 return NULL_TREE;
8651 }
8652
8653 if (strcmp (TREE_STRING_POINTER (id), "notinbranch") == 0)
8654 attr = build_omp_clause (DECL_SOURCE_LOCATION (*node),
8655 OMP_CLAUSE_NOTINBRANCH);
8656 else
8657 if (strcmp (TREE_STRING_POINTER (id), "inbranch") == 0)
8658 attr = build_omp_clause (DECL_SOURCE_LOCATION (*node),
8659 OMP_CLAUSE_INBRANCH);
8660 else
8661 {
8662 error ("only %<inbranch%> and %<notinbranch%> flags are "
8663 "allowed for %<__simd__%> attribute");
8664 *no_add_attrs = true;
8665 return NULL_TREE;
8666 }
8667 }
8668
8669 DECL_ATTRIBUTES (*node) = tree_cons (t,
8670 build_tree_list (NULL_TREE,
8671 attr),
8672 DECL_ATTRIBUTES (*node));
8673 }
8674 }
8675 else
8676 {
8677 warning (OPT_Wattributes, "%qE attribute ignored", name);
8678 *no_add_attrs = true;
8679 }
8680
8681 return NULL_TREE;
8682 }
8683
8684 /* Handle an "omp declare target" attribute; arguments as in
8685 struct attribute_spec.handler. */
8686
8687 static tree
8688 handle_omp_declare_target_attribute (tree *, tree, tree, int, bool *)
8689 {
8690 return NULL_TREE;
8691 }
8692
8693 /* Handle a "returns_twice" attribute; arguments as in
8694 struct attribute_spec.handler. */
8695
8696 static tree
8697 handle_returns_twice_attribute (tree *node, tree name, tree ARG_UNUSED (args),
8698 int ARG_UNUSED (flags), bool *no_add_attrs)
8699 {
8700 if (TREE_CODE (*node) == FUNCTION_DECL)
8701 DECL_IS_RETURNS_TWICE (*node) = 1;
8702 else
8703 {
8704 warning (OPT_Wattributes, "%qE attribute ignored", name);
8705 *no_add_attrs = true;
8706 }
8707
8708 return NULL_TREE;
8709 }
8710
8711 /* Handle a "no_limit_stack" attribute; arguments as in
8712 struct attribute_spec.handler. */
8713
8714 static tree
8715 handle_no_limit_stack_attribute (tree *node, tree name,
8716 tree ARG_UNUSED (args),
8717 int ARG_UNUSED (flags),
8718 bool *no_add_attrs)
8719 {
8720 tree decl = *node;
8721
8722 if (TREE_CODE (decl) != FUNCTION_DECL)
8723 {
8724 error_at (DECL_SOURCE_LOCATION (decl),
8725 "%qE attribute applies only to functions", name);
8726 *no_add_attrs = true;
8727 }
8728 else if (DECL_INITIAL (decl))
8729 {
8730 error_at (DECL_SOURCE_LOCATION (decl),
8731 "can%'t set %qE attribute after definition", name);
8732 *no_add_attrs = true;
8733 }
8734 else
8735 DECL_NO_LIMIT_STACK (decl) = 1;
8736
8737 return NULL_TREE;
8738 }
8739
8740 /* Handle a "pure" attribute; arguments as in
8741 struct attribute_spec.handler. */
8742
8743 static tree
8744 handle_pure_attribute (tree *node, tree name, tree ARG_UNUSED (args),
8745 int ARG_UNUSED (flags), bool *no_add_attrs)
8746 {
8747 if (TREE_CODE (*node) == FUNCTION_DECL)
8748 DECL_PURE_P (*node) = 1;
8749 /* ??? TODO: Support types. */
8750 else
8751 {
8752 warning (OPT_Wattributes, "%qE attribute ignored", name);
8753 *no_add_attrs = true;
8754 }
8755
8756 return NULL_TREE;
8757 }
8758
8759 /* Digest an attribute list destined for a transactional memory statement.
8760 ALLOWED is the set of attributes that are allowed for this statement;
8761 return the attribute we parsed. Multiple attributes are never allowed. */
8762
8763 int
8764 parse_tm_stmt_attr (tree attrs, int allowed)
8765 {
8766 tree a_seen = NULL;
8767 int m_seen = 0;
8768
8769 for ( ; attrs ; attrs = TREE_CHAIN (attrs))
8770 {
8771 tree a = TREE_PURPOSE (attrs);
8772 int m = 0;
8773
8774 if (is_attribute_p ("outer", a))
8775 m = TM_STMT_ATTR_OUTER;
8776
8777 if ((m & allowed) == 0)
8778 {
8779 warning (OPT_Wattributes, "%qE attribute directive ignored", a);
8780 continue;
8781 }
8782
8783 if (m_seen == 0)
8784 {
8785 a_seen = a;
8786 m_seen = m;
8787 }
8788 else if (m_seen == m)
8789 warning (OPT_Wattributes, "%qE attribute duplicated", a);
8790 else
8791 warning (OPT_Wattributes, "%qE attribute follows %qE", a, a_seen);
8792 }
8793
8794 return m_seen;
8795 }
8796
8797 /* Transform a TM attribute name into a maskable integer and back.
8798 Note that NULL (i.e. no attribute) is mapped to UNKNOWN, corresponding
8799 to how the lack of an attribute is treated. */
8800
8801 int
8802 tm_attr_to_mask (tree attr)
8803 {
8804 if (attr == NULL)
8805 return 0;
8806 if (is_attribute_p ("transaction_safe", attr))
8807 return TM_ATTR_SAFE;
8808 if (is_attribute_p ("transaction_callable", attr))
8809 return TM_ATTR_CALLABLE;
8810 if (is_attribute_p ("transaction_pure", attr))
8811 return TM_ATTR_PURE;
8812 if (is_attribute_p ("transaction_unsafe", attr))
8813 return TM_ATTR_IRREVOCABLE;
8814 if (is_attribute_p ("transaction_may_cancel_outer", attr))
8815 return TM_ATTR_MAY_CANCEL_OUTER;
8816 return 0;
8817 }
8818
8819 tree
8820 tm_mask_to_attr (int mask)
8821 {
8822 const char *str;
8823 switch (mask)
8824 {
8825 case TM_ATTR_SAFE:
8826 str = "transaction_safe";
8827 break;
8828 case TM_ATTR_CALLABLE:
8829 str = "transaction_callable";
8830 break;
8831 case TM_ATTR_PURE:
8832 str = "transaction_pure";
8833 break;
8834 case TM_ATTR_IRREVOCABLE:
8835 str = "transaction_unsafe";
8836 break;
8837 case TM_ATTR_MAY_CANCEL_OUTER:
8838 str = "transaction_may_cancel_outer";
8839 break;
8840 default:
8841 gcc_unreachable ();
8842 }
8843 return get_identifier (str);
8844 }
8845
8846 /* Return the first TM attribute seen in LIST. */
8847
8848 tree
8849 find_tm_attribute (tree list)
8850 {
8851 for (; list ; list = TREE_CHAIN (list))
8852 {
8853 tree name = TREE_PURPOSE (list);
8854 if (tm_attr_to_mask (name) != 0)
8855 return name;
8856 }
8857 return NULL_TREE;
8858 }
8859
8860 /* Handle the TM attributes; arguments as in struct attribute_spec.handler.
8861 Here we accept only function types, and verify that none of the other
8862 function TM attributes are also applied. */
8863 /* ??? We need to accept class types for C++, but not C. This greatly
8864 complicates this function, since we can no longer rely on the extra
8865 processing given by function_type_required. */
8866
8867 static tree
8868 handle_tm_attribute (tree *node, tree name, tree args,
8869 int flags, bool *no_add_attrs)
8870 {
8871 /* Only one path adds the attribute; others don't. */
8872 *no_add_attrs = true;
8873
8874 switch (TREE_CODE (*node))
8875 {
8876 case RECORD_TYPE:
8877 case UNION_TYPE:
8878 /* Only tm_callable and tm_safe apply to classes. */
8879 if (tm_attr_to_mask (name) & ~(TM_ATTR_SAFE | TM_ATTR_CALLABLE))
8880 goto ignored;
8881 /* FALLTHRU */
8882
8883 case FUNCTION_TYPE:
8884 case METHOD_TYPE:
8885 {
8886 tree old_name = find_tm_attribute (TYPE_ATTRIBUTES (*node));
8887 if (old_name == name)
8888 ;
8889 else if (old_name != NULL_TREE)
8890 error ("type was previously declared %qE", old_name);
8891 else
8892 *no_add_attrs = false;
8893 }
8894 break;
8895
8896 case FUNCTION_DECL:
8897 {
8898 /* transaction_safe_dynamic goes on the FUNCTION_DECL, but we also
8899 want to set transaction_safe on the type. */
8900 gcc_assert (is_attribute_p ("transaction_safe_dynamic", name));
8901 if (!TYPE_P (DECL_CONTEXT (*node)))
8902 error_at (DECL_SOURCE_LOCATION (*node),
8903 "%<transaction_safe_dynamic%> may only be specified for "
8904 "a virtual function");
8905 *no_add_attrs = false;
8906 decl_attributes (&TREE_TYPE (*node),
8907 build_tree_list (get_identifier ("transaction_safe"),
8908 NULL_TREE),
8909 0);
8910 break;
8911 }
8912
8913 case POINTER_TYPE:
8914 {
8915 enum tree_code subcode = TREE_CODE (TREE_TYPE (*node));
8916 if (subcode == FUNCTION_TYPE || subcode == METHOD_TYPE)
8917 {
8918 tree fn_tmp = TREE_TYPE (*node);
8919 decl_attributes (&fn_tmp, tree_cons (name, args, NULL), 0);
8920 *node = build_pointer_type (fn_tmp);
8921 break;
8922 }
8923 }
8924 /* FALLTHRU */
8925
8926 default:
8927 /* If a function is next, pass it on to be tried next. */
8928 if (flags & (int) ATTR_FLAG_FUNCTION_NEXT)
8929 return tree_cons (name, args, NULL);
8930
8931 ignored:
8932 warning (OPT_Wattributes, "%qE attribute ignored", name);
8933 break;
8934 }
8935
8936 return NULL_TREE;
8937 }
8938
8939 /* Handle the TM_WRAP attribute; arguments as in
8940 struct attribute_spec.handler. */
8941
8942 static tree
8943 handle_tm_wrap_attribute (tree *node, tree name, tree args,
8944 int ARG_UNUSED (flags), bool *no_add_attrs)
8945 {
8946 tree decl = *node;
8947
8948 /* We don't need the attribute even on success, since we
8949 record the entry in an external table. */
8950 *no_add_attrs = true;
8951
8952 if (TREE_CODE (decl) != FUNCTION_DECL)
8953 warning (OPT_Wattributes, "%qE attribute ignored", name);
8954 else
8955 {
8956 tree wrap_decl = TREE_VALUE (args);
8957 if (error_operand_p (wrap_decl))
8958 ;
8959 else if (TREE_CODE (wrap_decl) != IDENTIFIER_NODE
8960 && !VAR_OR_FUNCTION_DECL_P (wrap_decl))
8961 error ("%qE argument not an identifier", name);
8962 else
8963 {
8964 if (TREE_CODE (wrap_decl) == IDENTIFIER_NODE)
8965 wrap_decl = lookup_name (wrap_decl);
8966 if (wrap_decl && TREE_CODE (wrap_decl) == FUNCTION_DECL)
8967 {
8968 if (lang_hooks.types_compatible_p (TREE_TYPE (decl),
8969 TREE_TYPE (wrap_decl)))
8970 record_tm_replacement (wrap_decl, decl);
8971 else
8972 error ("%qD is not compatible with %qD", wrap_decl, decl);
8973 }
8974 else
8975 error ("%qE argument is not a function", name);
8976 }
8977 }
8978
8979 return NULL_TREE;
8980 }
8981
8982 /* Ignore the given attribute. Used when this attribute may be usefully
8983 overridden by the target, but is not used generically. */
8984
8985 static tree
8986 ignore_attribute (tree * ARG_UNUSED (node), tree ARG_UNUSED (name),
8987 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
8988 bool *no_add_attrs)
8989 {
8990 *no_add_attrs = true;
8991 return NULL_TREE;
8992 }
8993
8994 /* Handle a "no vops" attribute; arguments as in
8995 struct attribute_spec.handler. */
8996
8997 static tree
8998 handle_novops_attribute (tree *node, tree ARG_UNUSED (name),
8999 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
9000 bool *ARG_UNUSED (no_add_attrs))
9001 {
9002 gcc_assert (TREE_CODE (*node) == FUNCTION_DECL);
9003 DECL_IS_NOVOPS (*node) = 1;
9004 return NULL_TREE;
9005 }
9006
9007 /* Handle a "deprecated" attribute; arguments as in
9008 struct attribute_spec.handler. */
9009
9010 static tree
9011 handle_deprecated_attribute (tree *node, tree name,
9012 tree args, int flags,
9013 bool *no_add_attrs)
9014 {
9015 tree type = NULL_TREE;
9016 int warn = 0;
9017 tree what = NULL_TREE;
9018
9019 if (!args)
9020 *no_add_attrs = true;
9021 else if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
9022 {
9023 error ("deprecated message is not a string");
9024 *no_add_attrs = true;
9025 }
9026
9027 if (DECL_P (*node))
9028 {
9029 tree decl = *node;
9030 type = TREE_TYPE (decl);
9031
9032 if (TREE_CODE (decl) == TYPE_DECL
9033 || TREE_CODE (decl) == PARM_DECL
9034 || VAR_OR_FUNCTION_DECL_P (decl)
9035 || TREE_CODE (decl) == FIELD_DECL
9036 || TREE_CODE (decl) == CONST_DECL
9037 || objc_method_decl (TREE_CODE (decl)))
9038 TREE_DEPRECATED (decl) = 1;
9039 else
9040 warn = 1;
9041 }
9042 else if (TYPE_P (*node))
9043 {
9044 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
9045 *node = build_variant_type_copy (*node);
9046 TREE_DEPRECATED (*node) = 1;
9047 type = *node;
9048 }
9049 else
9050 warn = 1;
9051
9052 if (warn)
9053 {
9054 *no_add_attrs = true;
9055 if (type && TYPE_NAME (type))
9056 {
9057 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
9058 what = TYPE_NAME (*node);
9059 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
9060 && DECL_NAME (TYPE_NAME (type)))
9061 what = DECL_NAME (TYPE_NAME (type));
9062 }
9063 if (what)
9064 warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what);
9065 else
9066 warning (OPT_Wattributes, "%qE attribute ignored", name);
9067 }
9068
9069 return NULL_TREE;
9070 }
9071
9072 /* Handle a "vector_size" attribute; arguments as in
9073 struct attribute_spec.handler. */
9074
9075 static tree
9076 handle_vector_size_attribute (tree *node, tree name, tree args,
9077 int ARG_UNUSED (flags),
9078 bool *no_add_attrs)
9079 {
9080 unsigned HOST_WIDE_INT vecsize, nunits;
9081 machine_mode orig_mode;
9082 tree type = *node, new_type, size;
9083
9084 *no_add_attrs = true;
9085
9086 size = TREE_VALUE (args);
9087 if (size && TREE_CODE (size) != IDENTIFIER_NODE
9088 && TREE_CODE (size) != FUNCTION_DECL)
9089 size = default_conversion (size);
9090
9091 if (!tree_fits_uhwi_p (size))
9092 {
9093 warning (OPT_Wattributes, "%qE attribute ignored", name);
9094 return NULL_TREE;
9095 }
9096
9097 /* Get the vector size (in bytes). */
9098 vecsize = tree_to_uhwi (size);
9099
9100 /* We need to provide for vector pointers, vector arrays, and
9101 functions returning vectors. For example:
9102
9103 __attribute__((vector_size(16))) short *foo;
9104
9105 In this case, the mode is SI, but the type being modified is
9106 HI, so we need to look further. */
9107
9108 while (POINTER_TYPE_P (type)
9109 || TREE_CODE (type) == FUNCTION_TYPE
9110 || TREE_CODE (type) == METHOD_TYPE
9111 || TREE_CODE (type) == ARRAY_TYPE
9112 || TREE_CODE (type) == OFFSET_TYPE)
9113 type = TREE_TYPE (type);
9114
9115 /* Get the mode of the type being modified. */
9116 orig_mode = TYPE_MODE (type);
9117
9118 if ((!INTEGRAL_TYPE_P (type)
9119 && !SCALAR_FLOAT_TYPE_P (type)
9120 && !FIXED_POINT_TYPE_P (type))
9121 || (!SCALAR_FLOAT_MODE_P (orig_mode)
9122 && GET_MODE_CLASS (orig_mode) != MODE_INT
9123 && !ALL_SCALAR_FIXED_POINT_MODE_P (orig_mode))
9124 || !tree_fits_uhwi_p (TYPE_SIZE_UNIT (type))
9125 || TREE_CODE (type) == BOOLEAN_TYPE)
9126 {
9127 error ("invalid vector type for attribute %qE", name);
9128 return NULL_TREE;
9129 }
9130
9131 if (vecsize % tree_to_uhwi (TYPE_SIZE_UNIT (type)))
9132 {
9133 error ("vector size not an integral multiple of component size");
9134 return NULL;
9135 }
9136
9137 if (vecsize == 0)
9138 {
9139 error ("zero vector size");
9140 return NULL;
9141 }
9142
9143 /* Calculate how many units fit in the vector. */
9144 nunits = vecsize / tree_to_uhwi (TYPE_SIZE_UNIT (type));
9145 if (nunits & (nunits - 1))
9146 {
9147 error ("number of components of the vector not a power of two");
9148 return NULL_TREE;
9149 }
9150
9151 new_type = build_vector_type (type, nunits);
9152
9153 /* Build back pointers if needed. */
9154 *node = lang_hooks.types.reconstruct_complex_type (*node, new_type);
9155
9156 return NULL_TREE;
9157 }
9158
9159 /* Handle the "nonnull" attribute. */
9160 static tree
9161 handle_nonnull_attribute (tree *node, tree ARG_UNUSED (name),
9162 tree args, int ARG_UNUSED (flags),
9163 bool *no_add_attrs)
9164 {
9165 tree type = *node;
9166 unsigned HOST_WIDE_INT attr_arg_num;
9167
9168 /* If no arguments are specified, all pointer arguments should be
9169 non-null. Verify a full prototype is given so that the arguments
9170 will have the correct types when we actually check them later.
9171 Avoid diagnosing type-generic built-ins since those have no
9172 prototype. */
9173 if (!args)
9174 {
9175 if (!prototype_p (type)
9176 && (!TYPE_ATTRIBUTES (type)
9177 || !lookup_attribute ("type generic", TYPE_ATTRIBUTES (type))))
9178 {
9179 error ("nonnull attribute without arguments on a non-prototype");
9180 *no_add_attrs = true;
9181 }
9182 return NULL_TREE;
9183 }
9184
9185 /* Argument list specified. Verify that each argument number references
9186 a pointer argument. */
9187 for (attr_arg_num = 1; args; attr_arg_num++, args = TREE_CHAIN (args))
9188 {
9189 unsigned HOST_WIDE_INT arg_num = 0, ck_num;
9190
9191 tree arg = TREE_VALUE (args);
9192 if (arg && TREE_CODE (arg) != IDENTIFIER_NODE
9193 && TREE_CODE (arg) != FUNCTION_DECL)
9194 arg = default_conversion (arg);
9195
9196 if (!get_nonnull_operand (arg, &arg_num))
9197 {
9198 error ("nonnull argument has invalid operand number (argument %lu)",
9199 (unsigned long) attr_arg_num);
9200 *no_add_attrs = true;
9201 return NULL_TREE;
9202 }
9203
9204 if (prototype_p (type))
9205 {
9206 function_args_iterator iter;
9207 tree argument;
9208
9209 function_args_iter_init (&iter, type);
9210 for (ck_num = 1; ; ck_num++, function_args_iter_next (&iter))
9211 {
9212 argument = function_args_iter_cond (&iter);
9213 if (argument == NULL_TREE || ck_num == arg_num)
9214 break;
9215 }
9216
9217 if (!argument
9218 || TREE_CODE (argument) == VOID_TYPE)
9219 {
9220 error ("nonnull argument with out-of-range operand number (argument %lu, operand %lu)",
9221 (unsigned long) attr_arg_num, (unsigned long) arg_num);
9222 *no_add_attrs = true;
9223 return NULL_TREE;
9224 }
9225
9226 if (TREE_CODE (argument) != POINTER_TYPE)
9227 {
9228 error ("nonnull argument references non-pointer operand (argument %lu, operand %lu)",
9229 (unsigned long) attr_arg_num, (unsigned long) arg_num);
9230 *no_add_attrs = true;
9231 return NULL_TREE;
9232 }
9233 }
9234 }
9235
9236 return NULL_TREE;
9237 }
9238
9239 /* Check the argument list of a function call for null in argument slots
9240 that are marked as requiring a non-null pointer argument. The NARGS
9241 arguments are passed in the array ARGARRAY. */
9242
9243 static void
9244 check_function_nonnull (location_t loc, tree attrs, int nargs, tree *argarray)
9245 {
9246 tree a;
9247 int i;
9248
9249 attrs = lookup_attribute ("nonnull", attrs);
9250 if (attrs == NULL_TREE)
9251 return;
9252
9253 a = attrs;
9254 /* See if any of the nonnull attributes has no arguments. If so,
9255 then every pointer argument is checked (in which case the check
9256 for pointer type is done in check_nonnull_arg). */
9257 if (TREE_VALUE (a) != NULL_TREE)
9258 do
9259 a = lookup_attribute ("nonnull", TREE_CHAIN (a));
9260 while (a != NULL_TREE && TREE_VALUE (a) != NULL_TREE);
9261
9262 if (a != NULL_TREE)
9263 for (i = 0; i < nargs; i++)
9264 check_function_arguments_recurse (check_nonnull_arg, &loc, argarray[i],
9265 i + 1);
9266 else
9267 {
9268 /* Walk the argument list. If we encounter an argument number we
9269 should check for non-null, do it. */
9270 for (i = 0; i < nargs; i++)
9271 {
9272 for (a = attrs; ; a = TREE_CHAIN (a))
9273 {
9274 a = lookup_attribute ("nonnull", a);
9275 if (a == NULL_TREE || nonnull_check_p (TREE_VALUE (a), i + 1))
9276 break;
9277 }
9278
9279 if (a != NULL_TREE)
9280 check_function_arguments_recurse (check_nonnull_arg, &loc,
9281 argarray[i], i + 1);
9282 }
9283 }
9284 }
9285
9286 /* Check that the Nth argument of a function call (counting backwards
9287 from the end) is a (pointer)0. The NARGS arguments are passed in the
9288 array ARGARRAY. */
9289
9290 static void
9291 check_function_sentinel (const_tree fntype, int nargs, tree *argarray)
9292 {
9293 tree attr = lookup_attribute ("sentinel", TYPE_ATTRIBUTES (fntype));
9294
9295 if (attr)
9296 {
9297 int len = 0;
9298 int pos = 0;
9299 tree sentinel;
9300 function_args_iterator iter;
9301 tree t;
9302
9303 /* Skip over the named arguments. */
9304 FOREACH_FUNCTION_ARGS (fntype, t, iter)
9305 {
9306 if (len == nargs)
9307 break;
9308 len++;
9309 }
9310
9311 if (TREE_VALUE (attr))
9312 {
9313 tree p = TREE_VALUE (TREE_VALUE (attr));
9314 pos = TREE_INT_CST_LOW (p);
9315 }
9316
9317 /* The sentinel must be one of the varargs, i.e.
9318 in position >= the number of fixed arguments. */
9319 if ((nargs - 1 - pos) < len)
9320 {
9321 warning (OPT_Wformat_,
9322 "not enough variable arguments to fit a sentinel");
9323 return;
9324 }
9325
9326 /* Validate the sentinel. */
9327 sentinel = argarray[nargs - 1 - pos];
9328 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel))
9329 || !integer_zerop (sentinel))
9330 /* Although __null (in C++) is only an integer we allow it
9331 nevertheless, as we are guaranteed that it's exactly
9332 as wide as a pointer, and we don't want to force
9333 users to cast the NULL they have written there.
9334 We warn with -Wstrict-null-sentinel, though. */
9335 && (warn_strict_null_sentinel || null_node != sentinel))
9336 warning (OPT_Wformat_, "missing sentinel in function call");
9337 }
9338 }
9339
9340 /* Helper for check_function_nonnull; given a list of operands which
9341 must be non-null in ARGS, determine if operand PARAM_NUM should be
9342 checked. */
9343
9344 static bool
9345 nonnull_check_p (tree args, unsigned HOST_WIDE_INT param_num)
9346 {
9347 unsigned HOST_WIDE_INT arg_num = 0;
9348
9349 for (; args; args = TREE_CHAIN (args))
9350 {
9351 bool found = get_nonnull_operand (TREE_VALUE (args), &arg_num);
9352
9353 gcc_assert (found);
9354
9355 if (arg_num == param_num)
9356 return true;
9357 }
9358 return false;
9359 }
9360
9361 /* Check that the function argument PARAM (which is operand number
9362 PARAM_NUM) is non-null. This is called by check_function_nonnull
9363 via check_function_arguments_recurse. */
9364
9365 static void
9366 check_nonnull_arg (void *ctx, tree param, unsigned HOST_WIDE_INT param_num)
9367 {
9368 location_t *ploc = (location_t *) ctx;
9369
9370 /* Just skip checking the argument if it's not a pointer. This can
9371 happen if the "nonnull" attribute was given without an operand
9372 list (which means to check every pointer argument). */
9373
9374 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
9375 return;
9376
9377 if (integer_zerop (param))
9378 warning_at (*ploc, OPT_Wnonnull, "null argument where non-null required "
9379 "(argument %lu)", (unsigned long) param_num);
9380 }
9381
9382 /* Helper for nonnull attribute handling; fetch the operand number
9383 from the attribute argument list. */
9384
9385 static bool
9386 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
9387 {
9388 /* Verify the arg number is a small constant. */
9389 if (tree_fits_uhwi_p (arg_num_expr))
9390 {
9391 *valp = TREE_INT_CST_LOW (arg_num_expr);
9392 return true;
9393 }
9394 else
9395 return false;
9396 }
9397
9398 /* Handle a "nothrow" attribute; arguments as in
9399 struct attribute_spec.handler. */
9400
9401 static tree
9402 handle_nothrow_attribute (tree *node, tree name, tree ARG_UNUSED (args),
9403 int ARG_UNUSED (flags), bool *no_add_attrs)
9404 {
9405 if (TREE_CODE (*node) == FUNCTION_DECL)
9406 TREE_NOTHROW (*node) = 1;
9407 /* ??? TODO: Support types. */
9408 else
9409 {
9410 warning (OPT_Wattributes, "%qE attribute ignored", name);
9411 *no_add_attrs = true;
9412 }
9413
9414 return NULL_TREE;
9415 }
9416
9417 /* Handle a "cleanup" attribute; arguments as in
9418 struct attribute_spec.handler. */
9419
9420 static tree
9421 handle_cleanup_attribute (tree *node, tree name, tree args,
9422 int ARG_UNUSED (flags), bool *no_add_attrs)
9423 {
9424 tree decl = *node;
9425 tree cleanup_id, cleanup_decl;
9426
9427 /* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
9428 for global destructors in C++. This requires infrastructure that
9429 we don't have generically at the moment. It's also not a feature
9430 we'd be missing too much, since we do have attribute constructor. */
9431 if (!VAR_P (decl) || TREE_STATIC (decl))
9432 {
9433 warning (OPT_Wattributes, "%qE attribute ignored", name);
9434 *no_add_attrs = true;
9435 return NULL_TREE;
9436 }
9437
9438 /* Verify that the argument is a function in scope. */
9439 /* ??? We could support pointers to functions here as well, if
9440 that was considered desirable. */
9441 cleanup_id = TREE_VALUE (args);
9442 if (TREE_CODE (cleanup_id) != IDENTIFIER_NODE)
9443 {
9444 error ("cleanup argument not an identifier");
9445 *no_add_attrs = true;
9446 return NULL_TREE;
9447 }
9448 cleanup_decl = lookup_name (cleanup_id);
9449 if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL)
9450 {
9451 error ("cleanup argument not a function");
9452 *no_add_attrs = true;
9453 return NULL_TREE;
9454 }
9455
9456 /* That the function has proper type is checked with the
9457 eventual call to build_function_call. */
9458
9459 return NULL_TREE;
9460 }
9461
9462 /* Handle a "warn_unused_result" attribute. No special handling. */
9463
9464 static tree
9465 handle_warn_unused_result_attribute (tree *node, tree name,
9466 tree ARG_UNUSED (args),
9467 int ARG_UNUSED (flags), bool *no_add_attrs)
9468 {
9469 /* Ignore the attribute for functions not returning any value. */
9470 if (VOID_TYPE_P (TREE_TYPE (*node)))
9471 {
9472 warning (OPT_Wattributes, "%qE attribute ignored", name);
9473 *no_add_attrs = true;
9474 }
9475
9476 return NULL_TREE;
9477 }
9478
9479 /* Handle a "sentinel" attribute. */
9480
9481 static tree
9482 handle_sentinel_attribute (tree *node, tree name, tree args,
9483 int ARG_UNUSED (flags), bool *no_add_attrs)
9484 {
9485 if (!prototype_p (*node))
9486 {
9487 warning (OPT_Wattributes,
9488 "%qE attribute requires prototypes with named arguments", name);
9489 *no_add_attrs = true;
9490 }
9491 else
9492 {
9493 if (!stdarg_p (*node))
9494 {
9495 warning (OPT_Wattributes,
9496 "%qE attribute only applies to variadic functions", name);
9497 *no_add_attrs = true;
9498 }
9499 }
9500
9501 if (args)
9502 {
9503 tree position = TREE_VALUE (args);
9504 if (position && TREE_CODE (position) != IDENTIFIER_NODE
9505 && TREE_CODE (position) != FUNCTION_DECL)
9506 position = default_conversion (position);
9507
9508 if (TREE_CODE (position) != INTEGER_CST
9509 || !INTEGRAL_TYPE_P (TREE_TYPE (position)))
9510 {
9511 warning (OPT_Wattributes,
9512 "requested position is not an integer constant");
9513 *no_add_attrs = true;
9514 }
9515 else
9516 {
9517 if (tree_int_cst_lt (position, integer_zero_node))
9518 {
9519 warning (OPT_Wattributes,
9520 "requested position is less than zero");
9521 *no_add_attrs = true;
9522 }
9523 }
9524 }
9525
9526 return NULL_TREE;
9527 }
9528
9529 /* Handle a "type_generic" attribute. */
9530
9531 static tree
9532 handle_type_generic_attribute (tree *node, tree ARG_UNUSED (name),
9533 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
9534 bool * ARG_UNUSED (no_add_attrs))
9535 {
9536 /* Ensure we have a function type. */
9537 gcc_assert (TREE_CODE (*node) == FUNCTION_TYPE);
9538
9539 /* Ensure we have a variadic function. */
9540 gcc_assert (!prototype_p (*node) || stdarg_p (*node));
9541
9542 return NULL_TREE;
9543 }
9544
9545 /* Handle a "target" attribute. */
9546
9547 static tree
9548 handle_target_attribute (tree *node, tree name, tree args, int flags,
9549 bool *no_add_attrs)
9550 {
9551 /* Ensure we have a function type. */
9552 if (TREE_CODE (*node) != FUNCTION_DECL)
9553 {
9554 warning (OPT_Wattributes, "%qE attribute ignored", name);
9555 *no_add_attrs = true;
9556 }
9557 else if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (*node)))
9558 {
9559 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
9560 "with %qs attribute", name, "target_clones");
9561 *no_add_attrs = true;
9562 }
9563 else if (! targetm.target_option.valid_attribute_p (*node, name, args,
9564 flags))
9565 *no_add_attrs = true;
9566
9567 return NULL_TREE;
9568 }
9569
9570 /* Handle a "target_clones" attribute. */
9571
9572 static tree
9573 handle_target_clones_attribute (tree *node, tree name, tree ARG_UNUSED (args),
9574 int ARG_UNUSED (flags), bool *no_add_attrs)
9575 {
9576 /* Ensure we have a function type. */
9577 if (TREE_CODE (*node) == FUNCTION_DECL)
9578 {
9579 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (*node)))
9580 {
9581 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
9582 "with %qs attribute", name, "always_inline");
9583 *no_add_attrs = true;
9584 }
9585 else if (lookup_attribute ("target", DECL_ATTRIBUTES (*node)))
9586 {
9587 warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
9588 "with %qs attribute", name, "target");
9589 *no_add_attrs = true;
9590 }
9591 else
9592 /* Do not inline functions with multiple clone targets. */
9593 DECL_UNINLINABLE (*node) = 1;
9594 }
9595 else
9596 {
9597 warning (OPT_Wattributes, "%qE attribute ignored", name);
9598 *no_add_attrs = true;
9599 }
9600 return NULL_TREE;
9601 }
9602
9603 /* Arguments being collected for optimization. */
9604 typedef const char *const_char_p; /* For DEF_VEC_P. */
9605 static GTY(()) vec<const_char_p, va_gc> *optimize_args;
9606
9607
9608 /* Inner function to convert a TREE_LIST to argv string to parse the optimize
9609 options in ARGS. ATTR_P is true if this is for attribute(optimize), and
9610 false for #pragma GCC optimize. */
9611
9612 bool
9613 parse_optimize_options (tree args, bool attr_p)
9614 {
9615 bool ret = true;
9616 unsigned opt_argc;
9617 unsigned i;
9618 const char **opt_argv;
9619 struct cl_decoded_option *decoded_options;
9620 unsigned int decoded_options_count;
9621 tree ap;
9622
9623 /* Build up argv vector. Just in case the string is stored away, use garbage
9624 collected strings. */
9625 vec_safe_truncate (optimize_args, 0);
9626 vec_safe_push (optimize_args, (const char *) NULL);
9627
9628 for (ap = args; ap != NULL_TREE; ap = TREE_CHAIN (ap))
9629 {
9630 tree value = TREE_VALUE (ap);
9631
9632 if (TREE_CODE (value) == INTEGER_CST)
9633 {
9634 char buffer[20];
9635 sprintf (buffer, "-O%ld", (long) TREE_INT_CST_LOW (value));
9636 vec_safe_push (optimize_args, ggc_strdup (buffer));
9637 }
9638
9639 else if (TREE_CODE (value) == STRING_CST)
9640 {
9641 /* Split string into multiple substrings. */
9642 size_t len = TREE_STRING_LENGTH (value);
9643 char *p = ASTRDUP (TREE_STRING_POINTER (value));
9644 char *end = p + len;
9645 char *comma;
9646 char *next_p = p;
9647
9648 while (next_p != NULL)
9649 {
9650 size_t len2;
9651 char *q, *r;
9652
9653 p = next_p;
9654 comma = strchr (p, ',');
9655 if (comma)
9656 {
9657 len2 = comma - p;
9658 *comma = '\0';
9659 next_p = comma+1;
9660 }
9661 else
9662 {
9663 len2 = end - p;
9664 next_p = NULL;
9665 }
9666
9667 r = q = (char *) ggc_alloc_atomic (len2 + 3);
9668
9669 /* If the user supplied -Oxxx or -fxxx, only allow -Oxxx or -fxxx
9670 options. */
9671 if (*p == '-' && p[1] != 'O' && p[1] != 'f')
9672 {
9673 ret = false;
9674 if (attr_p)
9675 warning (OPT_Wattributes,
9676 "bad option %qs to attribute %<optimize%>", p);
9677 else
9678 warning (OPT_Wpragmas,
9679 "bad option %qs to pragma %<optimize%>", p);
9680 continue;
9681 }
9682
9683 if (*p != '-')
9684 {
9685 *r++ = '-';
9686
9687 /* Assume that Ox is -Ox, a numeric value is -Ox, a s by
9688 itself is -Os, and any other switch begins with a -f. */
9689 if ((*p >= '0' && *p <= '9')
9690 || (p[0] == 's' && p[1] == '\0'))
9691 *r++ = 'O';
9692 else if (*p != 'O')
9693 *r++ = 'f';
9694 }
9695
9696 memcpy (r, p, len2);
9697 r[len2] = '\0';
9698 vec_safe_push (optimize_args, (const char *) q);
9699 }
9700
9701 }
9702 }
9703
9704 opt_argc = optimize_args->length ();
9705 opt_argv = (const char **) alloca (sizeof (char *) * (opt_argc + 1));
9706
9707 for (i = 1; i < opt_argc; i++)
9708 opt_argv[i] = (*optimize_args)[i];
9709
9710 /* Now parse the options. */
9711 decode_cmdline_options_to_array_default_mask (opt_argc, opt_argv,
9712 &decoded_options,
9713 &decoded_options_count);
9714 /* Drop non-Optimization options. */
9715 unsigned j = 1;
9716 for (i = 1; i < decoded_options_count; ++i)
9717 {
9718 if (! (cl_options[decoded_options[i].opt_index].flags & CL_OPTIMIZATION))
9719 {
9720 ret = false;
9721 if (attr_p)
9722 warning (OPT_Wattributes,
9723 "bad option %qs to attribute %<optimize%>",
9724 decoded_options[i].orig_option_with_args_text);
9725 else
9726 warning (OPT_Wpragmas,
9727 "bad option %qs to pragma %<optimize%>",
9728 decoded_options[i].orig_option_with_args_text);
9729 continue;
9730 }
9731 if (i != j)
9732 decoded_options[j] = decoded_options[i];
9733 j++;
9734 }
9735 decoded_options_count = j;
9736 /* And apply them. */
9737 decode_options (&global_options, &global_options_set,
9738 decoded_options, decoded_options_count,
9739 input_location, global_dc);
9740
9741 targetm.override_options_after_change();
9742
9743 optimize_args->truncate (0);
9744 return ret;
9745 }
9746
9747 /* For handling "optimize" attribute. arguments as in
9748 struct attribute_spec.handler. */
9749
9750 static tree
9751 handle_optimize_attribute (tree *node, tree name, tree args,
9752 int ARG_UNUSED (flags), bool *no_add_attrs)
9753 {
9754 /* Ensure we have a function type. */
9755 if (TREE_CODE (*node) != FUNCTION_DECL)
9756 {
9757 warning (OPT_Wattributes, "%qE attribute ignored", name);
9758 *no_add_attrs = true;
9759 }
9760 else
9761 {
9762 struct cl_optimization cur_opts;
9763 tree old_opts = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node);
9764
9765 /* Save current options. */
9766 cl_optimization_save (&cur_opts, &global_options);
9767
9768 /* If we previously had some optimization options, use them as the
9769 default. */
9770 if (old_opts)
9771 cl_optimization_restore (&global_options,
9772 TREE_OPTIMIZATION (old_opts));
9773
9774 /* Parse options, and update the vector. */
9775 parse_optimize_options (args, true);
9776 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node)
9777 = build_optimization_node (&global_options);
9778
9779 /* Restore current options. */
9780 cl_optimization_restore (&global_options, &cur_opts);
9781 }
9782
9783 return NULL_TREE;
9784 }
9785
9786 /* Handle a "no_split_stack" attribute. */
9787
9788 static tree
9789 handle_no_split_stack_attribute (tree *node, tree name,
9790 tree ARG_UNUSED (args),
9791 int ARG_UNUSED (flags),
9792 bool *no_add_attrs)
9793 {
9794 tree decl = *node;
9795
9796 if (TREE_CODE (decl) != FUNCTION_DECL)
9797 {
9798 error_at (DECL_SOURCE_LOCATION (decl),
9799 "%qE attribute applies only to functions", name);
9800 *no_add_attrs = true;
9801 }
9802 else if (DECL_INITIAL (decl))
9803 {
9804 error_at (DECL_SOURCE_LOCATION (decl),
9805 "can%'t set %qE attribute after definition", name);
9806 *no_add_attrs = true;
9807 }
9808
9809 return NULL_TREE;
9810 }
9811
9812 /* Handle a "returns_nonnull" attribute; arguments as in
9813 struct attribute_spec.handler. */
9814
9815 static tree
9816 handle_returns_nonnull_attribute (tree *node, tree, tree, int,
9817 bool *no_add_attrs)
9818 {
9819 // Even without a prototype we still have a return type we can check.
9820 if (TREE_CODE (TREE_TYPE (*node)) != POINTER_TYPE)
9821 {
9822 error ("returns_nonnull attribute on a function not returning a pointer");
9823 *no_add_attrs = true;
9824 }
9825 return NULL_TREE;
9826 }
9827
9828 /* Handle a "designated_init" attribute; arguments as in
9829 struct attribute_spec.handler. */
9830
9831 static tree
9832 handle_designated_init_attribute (tree *node, tree name, tree, int,
9833 bool *no_add_attrs)
9834 {
9835 if (TREE_CODE (*node) != RECORD_TYPE)
9836 {
9837 error ("%qE attribute is only valid on %<struct%> type", name);
9838 *no_add_attrs = true;
9839 }
9840 return NULL_TREE;
9841 }
9842
9843 \f
9844 /* Check for valid arguments being passed to a function with FNTYPE.
9845 There are NARGS arguments in the array ARGARRAY. LOC should be used for
9846 diagnostics. */
9847 void
9848 check_function_arguments (location_t loc, const_tree fntype, int nargs,
9849 tree *argarray)
9850 {
9851 /* Check for null being passed in a pointer argument that must be
9852 non-null. We also need to do this if format checking is enabled. */
9853
9854 if (warn_nonnull)
9855 check_function_nonnull (loc, TYPE_ATTRIBUTES (fntype), nargs, argarray);
9856
9857 /* Check for errors in format strings. */
9858
9859 if (warn_format || warn_suggest_attribute_format)
9860 check_function_format (TYPE_ATTRIBUTES (fntype), nargs, argarray);
9861
9862 if (warn_format)
9863 check_function_sentinel (fntype, nargs, argarray);
9864 }
9865
9866 /* Generic argument checking recursion routine. PARAM is the argument to
9867 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
9868 once the argument is resolved. CTX is context for the callback. */
9869 void
9870 check_function_arguments_recurse (void (*callback)
9871 (void *, tree, unsigned HOST_WIDE_INT),
9872 void *ctx, tree param,
9873 unsigned HOST_WIDE_INT param_num)
9874 {
9875 if (CONVERT_EXPR_P (param)
9876 && (TYPE_PRECISION (TREE_TYPE (param))
9877 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param, 0)))))
9878 {
9879 /* Strip coercion. */
9880 check_function_arguments_recurse (callback, ctx,
9881 TREE_OPERAND (param, 0), param_num);
9882 return;
9883 }
9884
9885 if (TREE_CODE (param) == CALL_EXPR)
9886 {
9887 tree type = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param)));
9888 tree attrs;
9889 bool found_format_arg = false;
9890
9891 /* See if this is a call to a known internationalization function
9892 that modifies a format arg. Such a function may have multiple
9893 format_arg attributes (for example, ngettext). */
9894
9895 for (attrs = TYPE_ATTRIBUTES (type);
9896 attrs;
9897 attrs = TREE_CHAIN (attrs))
9898 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
9899 {
9900 tree inner_arg;
9901 tree format_num_expr;
9902 int format_num;
9903 int i;
9904 call_expr_arg_iterator iter;
9905
9906 /* Extract the argument number, which was previously checked
9907 to be valid. */
9908 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
9909
9910 format_num = tree_to_uhwi (format_num_expr);
9911
9912 for (inner_arg = first_call_expr_arg (param, &iter), i = 1;
9913 inner_arg != 0;
9914 inner_arg = next_call_expr_arg (&iter), i++)
9915 if (i == format_num)
9916 {
9917 check_function_arguments_recurse (callback, ctx,
9918 inner_arg, param_num);
9919 found_format_arg = true;
9920 break;
9921 }
9922 }
9923
9924 /* If we found a format_arg attribute and did a recursive check,
9925 we are done with checking this argument. Otherwise, we continue
9926 and this will be considered a non-literal. */
9927 if (found_format_arg)
9928 return;
9929 }
9930
9931 if (TREE_CODE (param) == COND_EXPR)
9932 {
9933 /* Simplify to avoid warning for an impossible case. */
9934 param = fold_for_warn (param);
9935 if (TREE_CODE (param) == COND_EXPR)
9936 {
9937 /* Check both halves of the conditional expression. */
9938 check_function_arguments_recurse (callback, ctx,
9939 TREE_OPERAND (param, 1),
9940 param_num);
9941 check_function_arguments_recurse (callback, ctx,
9942 TREE_OPERAND (param, 2),
9943 param_num);
9944 return;
9945 }
9946 }
9947
9948 (*callback) (ctx, param, param_num);
9949 }
9950
9951 /* Checks for a builtin function FNDECL that the number of arguments
9952 NARGS against the required number REQUIRED and issues an error if
9953 there is a mismatch. Returns true if the number of arguments is
9954 correct, otherwise false. LOC is the location of FNDECL. */
9955
9956 static bool
9957 builtin_function_validate_nargs (location_t loc, tree fndecl, int nargs,
9958 int required)
9959 {
9960 if (nargs < required)
9961 {
9962 error_at (loc, "too few arguments to function %qE", fndecl);
9963 return false;
9964 }
9965 else if (nargs > required)
9966 {
9967 error_at (loc, "too many arguments to function %qE", fndecl);
9968 return false;
9969 }
9970 return true;
9971 }
9972
9973 /* Helper macro for check_builtin_function_arguments. */
9974 #define ARG_LOCATION(N) \
9975 (arg_loc.is_empty () \
9976 ? EXPR_LOC_OR_LOC (args[(N)], input_location) \
9977 : expansion_point_location (arg_loc[(N)]))
9978
9979 /* Verifies the NARGS arguments ARGS to the builtin function FNDECL.
9980 Returns false if there was an error, otherwise true. LOC is the
9981 location of the function; ARG_LOC is a vector of locations of the
9982 arguments. */
9983
9984 bool
9985 check_builtin_function_arguments (location_t loc, vec<location_t> arg_loc,
9986 tree fndecl, int nargs, tree *args)
9987 {
9988 if (!DECL_BUILT_IN (fndecl)
9989 || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
9990 return true;
9991
9992 switch (DECL_FUNCTION_CODE (fndecl))
9993 {
9994 case BUILT_IN_ALLOCA_WITH_ALIGN:
9995 {
9996 /* Get the requested alignment (in bits) if it's a constant
9997 integer expression. */
9998 unsigned HOST_WIDE_INT align
9999 = tree_fits_uhwi_p (args[1]) ? tree_to_uhwi (args[1]) : 0;
10000
10001 /* Determine if the requested alignment is a power of 2. */
10002 if ((align & (align - 1)))
10003 align = 0;
10004
10005 /* The maximum alignment in bits corresponding to the same
10006 maximum in bytes enforced in check_user_alignment(). */
10007 unsigned maxalign = (UINT_MAX >> 1) + 1;
10008
10009 /* Reject invalid alignments. */
10010 if (align < BITS_PER_UNIT || maxalign < align)
10011 {
10012 error_at (ARG_LOCATION (1),
10013 "second argument to function %qE must be a constant "
10014 "integer power of 2 between %qi and %qu bits",
10015 fndecl, BITS_PER_UNIT, maxalign);
10016 return false;
10017 }
10018 return true;
10019 }
10020
10021 case BUILT_IN_CONSTANT_P:
10022 return builtin_function_validate_nargs (loc, fndecl, nargs, 1);
10023
10024 case BUILT_IN_ISFINITE:
10025 case BUILT_IN_ISINF:
10026 case BUILT_IN_ISINF_SIGN:
10027 case BUILT_IN_ISNAN:
10028 case BUILT_IN_ISNORMAL:
10029 case BUILT_IN_SIGNBIT:
10030 if (builtin_function_validate_nargs (loc, fndecl, nargs, 1))
10031 {
10032 if (TREE_CODE (TREE_TYPE (args[0])) != REAL_TYPE)
10033 {
10034 error_at (ARG_LOCATION (0), "non-floating-point argument in "
10035 "call to function %qE", fndecl);
10036 return false;
10037 }
10038 return true;
10039 }
10040 return false;
10041
10042 case BUILT_IN_ISGREATER:
10043 case BUILT_IN_ISGREATEREQUAL:
10044 case BUILT_IN_ISLESS:
10045 case BUILT_IN_ISLESSEQUAL:
10046 case BUILT_IN_ISLESSGREATER:
10047 case BUILT_IN_ISUNORDERED:
10048 if (builtin_function_validate_nargs (loc, fndecl, nargs, 2))
10049 {
10050 enum tree_code code0, code1;
10051 code0 = TREE_CODE (TREE_TYPE (args[0]));
10052 code1 = TREE_CODE (TREE_TYPE (args[1]));
10053 if (!((code0 == REAL_TYPE && code1 == REAL_TYPE)
10054 || (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
10055 || (code0 == INTEGER_TYPE && code1 == REAL_TYPE)))
10056 {
10057 error_at (loc, "non-floating-point arguments in call to "
10058 "function %qE", fndecl);
10059 return false;
10060 }
10061 return true;
10062 }
10063 return false;
10064
10065 case BUILT_IN_FPCLASSIFY:
10066 if (builtin_function_validate_nargs (loc, fndecl, nargs, 6))
10067 {
10068 for (unsigned int i = 0; i < 5; i++)
10069 if (TREE_CODE (args[i]) != INTEGER_CST)
10070 {
10071 error_at (ARG_LOCATION (i), "non-const integer argument %u in "
10072 "call to function %qE", i + 1, fndecl);
10073 return false;
10074 }
10075
10076 if (TREE_CODE (TREE_TYPE (args[5])) != REAL_TYPE)
10077 {
10078 error_at (ARG_LOCATION (5), "non-floating-point argument in "
10079 "call to function %qE", fndecl);
10080 return false;
10081 }
10082 return true;
10083 }
10084 return false;
10085
10086 case BUILT_IN_ASSUME_ALIGNED:
10087 if (builtin_function_validate_nargs (loc, fndecl, nargs, 2 + (nargs > 2)))
10088 {
10089 if (nargs >= 3 && TREE_CODE (TREE_TYPE (args[2])) != INTEGER_TYPE)
10090 {
10091 error_at (ARG_LOCATION (2), "non-integer argument 3 in call to "
10092 "function %qE", fndecl);
10093 return false;
10094 }
10095 return true;
10096 }
10097 return false;
10098
10099 case BUILT_IN_ADD_OVERFLOW:
10100 case BUILT_IN_SUB_OVERFLOW:
10101 case BUILT_IN_MUL_OVERFLOW:
10102 if (builtin_function_validate_nargs (loc, fndecl, nargs, 3))
10103 {
10104 unsigned i;
10105 for (i = 0; i < 2; i++)
10106 if (!INTEGRAL_TYPE_P (TREE_TYPE (args[i])))
10107 {
10108 error_at (ARG_LOCATION (i), "argument %u in call to function "
10109 "%qE does not have integral type", i + 1, fndecl);
10110 return false;
10111 }
10112 if (TREE_CODE (TREE_TYPE (args[2])) != POINTER_TYPE
10113 || !INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (args[2]))))
10114 {
10115 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
10116 "does not have pointer to integral type", fndecl);
10117 return false;
10118 }
10119 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args[2]))) == ENUMERAL_TYPE)
10120 {
10121 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
10122 "has pointer to enumerated type", fndecl);
10123 return false;
10124 }
10125 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args[2]))) == BOOLEAN_TYPE)
10126 {
10127 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
10128 "has pointer to boolean type", fndecl);
10129 return false;
10130 }
10131 return true;
10132 }
10133 return false;
10134
10135 case BUILT_IN_ADD_OVERFLOW_P:
10136 case BUILT_IN_SUB_OVERFLOW_P:
10137 case BUILT_IN_MUL_OVERFLOW_P:
10138 if (builtin_function_validate_nargs (loc, fndecl, nargs, 3))
10139 {
10140 unsigned i;
10141 for (i = 0; i < 3; i++)
10142 if (!INTEGRAL_TYPE_P (TREE_TYPE (args[i])))
10143 {
10144 error_at (ARG_LOCATION (i), "argument %u in call to function "
10145 "%qE does not have integral type", i + 1, fndecl);
10146 return false;
10147 }
10148 if (TREE_CODE (TREE_TYPE (args[2])) == ENUMERAL_TYPE)
10149 {
10150 error_at (ARG_LOCATION (2), "argument 3 in call to function "
10151 "%qE has enumerated type", fndecl);
10152 return false;
10153 }
10154 else if (TREE_CODE (TREE_TYPE (args[2])) == BOOLEAN_TYPE)
10155 {
10156 error_at (ARG_LOCATION (2), "argument 3 in call to function "
10157 "%qE has boolean type", fndecl);
10158 return false;
10159 }
10160 return true;
10161 }
10162 return false;
10163
10164 default:
10165 return true;
10166 }
10167 }
10168
10169 /* Function to help qsort sort FIELD_DECLs by name order. */
10170
10171 int
10172 field_decl_cmp (const void *x_p, const void *y_p)
10173 {
10174 const tree *const x = (const tree *const) x_p;
10175 const tree *const y = (const tree *const) y_p;
10176
10177 if (DECL_NAME (*x) == DECL_NAME (*y))
10178 /* A nontype is "greater" than a type. */
10179 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
10180 if (DECL_NAME (*x) == NULL_TREE)
10181 return -1;
10182 if (DECL_NAME (*y) == NULL_TREE)
10183 return 1;
10184 if (DECL_NAME (*x) < DECL_NAME (*y))
10185 return -1;
10186 return 1;
10187 }
10188
10189 static struct {
10190 gt_pointer_operator new_value;
10191 void *cookie;
10192 } resort_data;
10193
10194 /* This routine compares two fields like field_decl_cmp but using the
10195 pointer operator in resort_data. */
10196
10197 static int
10198 resort_field_decl_cmp (const void *x_p, const void *y_p)
10199 {
10200 const tree *const x = (const tree *const) x_p;
10201 const tree *const y = (const tree *const) y_p;
10202
10203 if (DECL_NAME (*x) == DECL_NAME (*y))
10204 /* A nontype is "greater" than a type. */
10205 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
10206 if (DECL_NAME (*x) == NULL_TREE)
10207 return -1;
10208 if (DECL_NAME (*y) == NULL_TREE)
10209 return 1;
10210 {
10211 tree d1 = DECL_NAME (*x);
10212 tree d2 = DECL_NAME (*y);
10213 resort_data.new_value (&d1, resort_data.cookie);
10214 resort_data.new_value (&d2, resort_data.cookie);
10215 if (d1 < d2)
10216 return -1;
10217 }
10218 return 1;
10219 }
10220
10221 /* Resort DECL_SORTED_FIELDS because pointers have been reordered. */
10222
10223 void
10224 resort_sorted_fields (void *obj,
10225 void * ARG_UNUSED (orig_obj),
10226 gt_pointer_operator new_value,
10227 void *cookie)
10228 {
10229 struct sorted_fields_type *sf = (struct sorted_fields_type *) obj;
10230 resort_data.new_value = new_value;
10231 resort_data.cookie = cookie;
10232 qsort (&sf->elts[0], sf->len, sizeof (tree),
10233 resort_field_decl_cmp);
10234 }
10235
10236 /* Subroutine of c_parse_error.
10237 Return the result of concatenating LHS and RHS. RHS is really
10238 a string literal, its first character is indicated by RHS_START and
10239 RHS_SIZE is its length (including the terminating NUL character).
10240
10241 The caller is responsible for deleting the returned pointer. */
10242
10243 static char *
10244 catenate_strings (const char *lhs, const char *rhs_start, int rhs_size)
10245 {
10246 const int lhs_size = strlen (lhs);
10247 char *result = XNEWVEC (char, lhs_size + rhs_size);
10248 strncpy (result, lhs, lhs_size);
10249 strncpy (result + lhs_size, rhs_start, rhs_size);
10250 return result;
10251 }
10252
10253 /* Issue the error given by GMSGID, indicating that it occurred before
10254 TOKEN, which had the associated VALUE. */
10255
10256 void
10257 c_parse_error (const char *gmsgid, enum cpp_ttype token_type,
10258 tree value, unsigned char token_flags)
10259 {
10260 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
10261
10262 char *message = NULL;
10263
10264 if (token_type == CPP_EOF)
10265 message = catenate_messages (gmsgid, " at end of input");
10266 else if (token_type == CPP_CHAR
10267 || token_type == CPP_WCHAR
10268 || token_type == CPP_CHAR16
10269 || token_type == CPP_CHAR32
10270 || token_type == CPP_UTF8CHAR)
10271 {
10272 unsigned int val = TREE_INT_CST_LOW (value);
10273 const char *prefix;
10274
10275 switch (token_type)
10276 {
10277 default:
10278 prefix = "";
10279 break;
10280 case CPP_WCHAR:
10281 prefix = "L";
10282 break;
10283 case CPP_CHAR16:
10284 prefix = "u";
10285 break;
10286 case CPP_CHAR32:
10287 prefix = "U";
10288 break;
10289 case CPP_UTF8CHAR:
10290 prefix = "u8";
10291 break;
10292 }
10293
10294 if (val <= UCHAR_MAX && ISGRAPH (val))
10295 message = catenate_messages (gmsgid, " before %s'%c'");
10296 else
10297 message = catenate_messages (gmsgid, " before %s'\\x%x'");
10298
10299 error (message, prefix, val);
10300 free (message);
10301 message = NULL;
10302 }
10303 else if (token_type == CPP_CHAR_USERDEF
10304 || token_type == CPP_WCHAR_USERDEF
10305 || token_type == CPP_CHAR16_USERDEF
10306 || token_type == CPP_CHAR32_USERDEF
10307 || token_type == CPP_UTF8CHAR_USERDEF)
10308 message = catenate_messages (gmsgid,
10309 " before user-defined character literal");
10310 else if (token_type == CPP_STRING_USERDEF
10311 || token_type == CPP_WSTRING_USERDEF
10312 || token_type == CPP_STRING16_USERDEF
10313 || token_type == CPP_STRING32_USERDEF
10314 || token_type == CPP_UTF8STRING_USERDEF)
10315 message = catenate_messages (gmsgid, " before user-defined string literal");
10316 else if (token_type == CPP_STRING
10317 || token_type == CPP_WSTRING
10318 || token_type == CPP_STRING16
10319 || token_type == CPP_STRING32
10320 || token_type == CPP_UTF8STRING)
10321 message = catenate_messages (gmsgid, " before string constant");
10322 else if (token_type == CPP_NUMBER)
10323 message = catenate_messages (gmsgid, " before numeric constant");
10324 else if (token_type == CPP_NAME)
10325 {
10326 message = catenate_messages (gmsgid, " before %qE");
10327 error (message, value);
10328 free (message);
10329 message = NULL;
10330 }
10331 else if (token_type == CPP_PRAGMA)
10332 message = catenate_messages (gmsgid, " before %<#pragma%>");
10333 else if (token_type == CPP_PRAGMA_EOL)
10334 message = catenate_messages (gmsgid, " before end of line");
10335 else if (token_type == CPP_DECLTYPE)
10336 message = catenate_messages (gmsgid, " before %<decltype%>");
10337 else if (token_type < N_TTYPES)
10338 {
10339 message = catenate_messages (gmsgid, " before %qs token");
10340 error (message, cpp_type2name (token_type, token_flags));
10341 free (message);
10342 message = NULL;
10343 }
10344 else
10345 error (gmsgid);
10346
10347 if (message)
10348 {
10349 error (message);
10350 free (message);
10351 }
10352 #undef catenate_messages
10353 }
10354
10355 /* Return the gcc option code associated with the reason for a cpp
10356 message, or 0 if none. */
10357
10358 static int
10359 c_option_controlling_cpp_error (int reason)
10360 {
10361 const struct cpp_reason_option_codes_t *entry;
10362
10363 for (entry = cpp_reason_option_codes; entry->reason != CPP_W_NONE; entry++)
10364 {
10365 if (entry->reason == reason)
10366 return entry->option_code;
10367 }
10368 return 0;
10369 }
10370
10371 /* Callback from cpp_error for PFILE to print diagnostics from the
10372 preprocessor. The diagnostic is of type LEVEL, with REASON set
10373 to the reason code if LEVEL is represents a warning, at location
10374 RICHLOC unless this is after lexing and the compiler's location
10375 should be used instead; MSG is the translated message and AP
10376 the arguments. Returns true if a diagnostic was emitted, false
10377 otherwise. */
10378
10379 bool
10380 c_cpp_error (cpp_reader *pfile ATTRIBUTE_UNUSED, int level, int reason,
10381 rich_location *richloc,
10382 const char *msg, va_list *ap)
10383 {
10384 diagnostic_info diagnostic;
10385 diagnostic_t dlevel;
10386 bool save_warn_system_headers = global_dc->dc_warn_system_headers;
10387 bool ret;
10388
10389 switch (level)
10390 {
10391 case CPP_DL_WARNING_SYSHDR:
10392 if (flag_no_output)
10393 return false;
10394 global_dc->dc_warn_system_headers = 1;
10395 /* Fall through. */
10396 case CPP_DL_WARNING:
10397 if (flag_no_output)
10398 return false;
10399 dlevel = DK_WARNING;
10400 break;
10401 case CPP_DL_PEDWARN:
10402 if (flag_no_output && !flag_pedantic_errors)
10403 return false;
10404 dlevel = DK_PEDWARN;
10405 break;
10406 case CPP_DL_ERROR:
10407 dlevel = DK_ERROR;
10408 break;
10409 case CPP_DL_ICE:
10410 dlevel = DK_ICE;
10411 break;
10412 case CPP_DL_NOTE:
10413 dlevel = DK_NOTE;
10414 break;
10415 case CPP_DL_FATAL:
10416 dlevel = DK_FATAL;
10417 break;
10418 default:
10419 gcc_unreachable ();
10420 }
10421 if (done_lexing)
10422 richloc->set_range (line_table, 0, input_location, true);
10423 diagnostic_set_info_translated (&diagnostic, msg, ap,
10424 richloc, dlevel);
10425 diagnostic_override_option_index (&diagnostic,
10426 c_option_controlling_cpp_error (reason));
10427 ret = report_diagnostic (&diagnostic);
10428 if (level == CPP_DL_WARNING_SYSHDR)
10429 global_dc->dc_warn_system_headers = save_warn_system_headers;
10430 return ret;
10431 }
10432
10433 /* Convert a character from the host to the target execution character
10434 set. cpplib handles this, mostly. */
10435
10436 HOST_WIDE_INT
10437 c_common_to_target_charset (HOST_WIDE_INT c)
10438 {
10439 /* Character constants in GCC proper are sign-extended under -fsigned-char,
10440 zero-extended under -fno-signed-char. cpplib insists that characters
10441 and character constants are always unsigned. Hence we must convert
10442 back and forth. */
10443 cppchar_t uc = ((cppchar_t)c) & ((((cppchar_t)1) << CHAR_BIT)-1);
10444
10445 uc = cpp_host_to_exec_charset (parse_in, uc);
10446
10447 if (flag_signed_char)
10448 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE)
10449 >> (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE);
10450 else
10451 return uc;
10452 }
10453
10454 /* Fold an offsetof-like expression. EXPR is a nested sequence of component
10455 references with an INDIRECT_REF of a constant at the bottom; much like the
10456 traditional rendering of offsetof as a macro. Return the folded result. */
10457
10458 tree
10459 fold_offsetof_1 (tree expr, enum tree_code ctx)
10460 {
10461 tree base, off, t;
10462 tree_code code = TREE_CODE (expr);
10463 switch (code)
10464 {
10465 case ERROR_MARK:
10466 return expr;
10467
10468 case VAR_DECL:
10469 error ("cannot apply %<offsetof%> to static data member %qD", expr);
10470 return error_mark_node;
10471
10472 case CALL_EXPR:
10473 case TARGET_EXPR:
10474 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
10475 return error_mark_node;
10476
10477 case NOP_EXPR:
10478 case INDIRECT_REF:
10479 if (!TREE_CONSTANT (TREE_OPERAND (expr, 0)))
10480 {
10481 error ("cannot apply %<offsetof%> to a non constant address");
10482 return error_mark_node;
10483 }
10484 return TREE_OPERAND (expr, 0);
10485
10486 case COMPONENT_REF:
10487 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), code);
10488 if (base == error_mark_node)
10489 return base;
10490
10491 t = TREE_OPERAND (expr, 1);
10492 if (DECL_C_BIT_FIELD (t))
10493 {
10494 error ("attempt to take address of bit-field structure "
10495 "member %qD", t);
10496 return error_mark_node;
10497 }
10498 off = size_binop_loc (input_location, PLUS_EXPR, DECL_FIELD_OFFSET (t),
10499 size_int (tree_to_uhwi (DECL_FIELD_BIT_OFFSET (t))
10500 / BITS_PER_UNIT));
10501 break;
10502
10503 case ARRAY_REF:
10504 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), code);
10505 if (base == error_mark_node)
10506 return base;
10507
10508 t = TREE_OPERAND (expr, 1);
10509
10510 /* Check if the offset goes beyond the upper bound of the array. */
10511 if (TREE_CODE (t) == INTEGER_CST && tree_int_cst_sgn (t) >= 0)
10512 {
10513 tree upbound = array_ref_up_bound (expr);
10514 if (upbound != NULL_TREE
10515 && TREE_CODE (upbound) == INTEGER_CST
10516 && !tree_int_cst_equal (upbound,
10517 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
10518 {
10519 if (ctx != ARRAY_REF && ctx != COMPONENT_REF)
10520 upbound = size_binop (PLUS_EXPR, upbound,
10521 build_int_cst (TREE_TYPE (upbound), 1));
10522 if (tree_int_cst_lt (upbound, t))
10523 {
10524 tree v;
10525
10526 for (v = TREE_OPERAND (expr, 0);
10527 TREE_CODE (v) == COMPONENT_REF;
10528 v = TREE_OPERAND (v, 0))
10529 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v, 0)))
10530 == RECORD_TYPE)
10531 {
10532 tree fld_chain = DECL_CHAIN (TREE_OPERAND (v, 1));
10533 for (; fld_chain; fld_chain = DECL_CHAIN (fld_chain))
10534 if (TREE_CODE (fld_chain) == FIELD_DECL)
10535 break;
10536
10537 if (fld_chain)
10538 break;
10539 }
10540 /* Don't warn if the array might be considered a poor
10541 man's flexible array member with a very permissive
10542 definition thereof. */
10543 if (TREE_CODE (v) == ARRAY_REF
10544 || TREE_CODE (v) == COMPONENT_REF)
10545 warning (OPT_Warray_bounds,
10546 "index %E denotes an offset "
10547 "greater than size of %qT",
10548 t, TREE_TYPE (TREE_OPERAND (expr, 0)));
10549 }
10550 }
10551 }
10552
10553 t = convert (sizetype, t);
10554 off = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (TREE_TYPE (expr)), t);
10555 break;
10556
10557 case COMPOUND_EXPR:
10558 /* Handle static members of volatile structs. */
10559 t = TREE_OPERAND (expr, 1);
10560 gcc_assert (VAR_P (t));
10561 return fold_offsetof_1 (t);
10562
10563 default:
10564 gcc_unreachable ();
10565 }
10566
10567 return fold_build_pointer_plus (base, off);
10568 }
10569
10570 /* Likewise, but convert it to the return type of offsetof. */
10571
10572 tree
10573 fold_offsetof (tree expr)
10574 {
10575 return convert (size_type_node, fold_offsetof_1 (expr));
10576 }
10577
10578 /* Warn for A ?: C expressions (with B omitted) where A is a boolean
10579 expression, because B will always be true. */
10580
10581 void
10582 warn_for_omitted_condop (location_t location, tree cond)
10583 {
10584 /* In C++ template declarations it can happen that the type is dependent
10585 and not yet known, thus TREE_TYPE (cond) == NULL_TREE. */
10586 if (truth_value_p (TREE_CODE (cond))
10587 || (TREE_TYPE (cond) != NULL_TREE
10588 && TREE_CODE (TREE_TYPE (cond)) == BOOLEAN_TYPE))
10589 warning_at (location, OPT_Wparentheses,
10590 "the omitted middle operand in ?: will always be %<true%>, "
10591 "suggest explicit middle operand");
10592 }
10593
10594 /* Give an error for storing into ARG, which is 'const'. USE indicates
10595 how ARG was being used. */
10596
10597 void
10598 readonly_error (location_t loc, tree arg, enum lvalue_use use)
10599 {
10600 gcc_assert (use == lv_assign || use == lv_increment || use == lv_decrement
10601 || use == lv_asm);
10602 /* Using this macro rather than (for example) arrays of messages
10603 ensures that all the format strings are checked at compile
10604 time. */
10605 #define READONLY_MSG(A, I, D, AS) (use == lv_assign ? (A) \
10606 : (use == lv_increment ? (I) \
10607 : (use == lv_decrement ? (D) : (AS))))
10608 if (TREE_CODE (arg) == COMPONENT_REF)
10609 {
10610 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
10611 error_at (loc, READONLY_MSG (G_("assignment of member "
10612 "%qD in read-only object"),
10613 G_("increment of member "
10614 "%qD in read-only object"),
10615 G_("decrement of member "
10616 "%qD in read-only object"),
10617 G_("member %qD in read-only object "
10618 "used as %<asm%> output")),
10619 TREE_OPERAND (arg, 1));
10620 else
10621 error_at (loc, READONLY_MSG (G_("assignment of read-only member %qD"),
10622 G_("increment of read-only member %qD"),
10623 G_("decrement of read-only member %qD"),
10624 G_("read-only member %qD used as %<asm%> output")),
10625 TREE_OPERAND (arg, 1));
10626 }
10627 else if (VAR_P (arg))
10628 error_at (loc, READONLY_MSG (G_("assignment of read-only variable %qD"),
10629 G_("increment of read-only variable %qD"),
10630 G_("decrement of read-only variable %qD"),
10631 G_("read-only variable %qD used as %<asm%> output")),
10632 arg);
10633 else if (TREE_CODE (arg) == PARM_DECL)
10634 error_at (loc, READONLY_MSG (G_("assignment of read-only parameter %qD"),
10635 G_("increment of read-only parameter %qD"),
10636 G_("decrement of read-only parameter %qD"),
10637 G_("read-only parameter %qD use as %<asm%> output")),
10638 arg);
10639 else if (TREE_CODE (arg) == RESULT_DECL)
10640 {
10641 gcc_assert (c_dialect_cxx ());
10642 error_at (loc, READONLY_MSG (G_("assignment of "
10643 "read-only named return value %qD"),
10644 G_("increment of "
10645 "read-only named return value %qD"),
10646 G_("decrement of "
10647 "read-only named return value %qD"),
10648 G_("read-only named return value %qD "
10649 "used as %<asm%>output")),
10650 arg);
10651 }
10652 else if (TREE_CODE (arg) == FUNCTION_DECL)
10653 error_at (loc, READONLY_MSG (G_("assignment of function %qD"),
10654 G_("increment of function %qD"),
10655 G_("decrement of function %qD"),
10656 G_("function %qD used as %<asm%> output")),
10657 arg);
10658 else
10659 error_at (loc, READONLY_MSG (G_("assignment of read-only location %qE"),
10660 G_("increment of read-only location %qE"),
10661 G_("decrement of read-only location %qE"),
10662 G_("read-only location %qE used as %<asm%> output")),
10663 arg);
10664 }
10665
10666 /* Print an error message for an invalid lvalue. USE says
10667 how the lvalue is being used and so selects the error message. LOC
10668 is the location for the error. */
10669
10670 void
10671 lvalue_error (location_t loc, enum lvalue_use use)
10672 {
10673 switch (use)
10674 {
10675 case lv_assign:
10676 error_at (loc, "lvalue required as left operand of assignment");
10677 break;
10678 case lv_increment:
10679 error_at (loc, "lvalue required as increment operand");
10680 break;
10681 case lv_decrement:
10682 error_at (loc, "lvalue required as decrement operand");
10683 break;
10684 case lv_addressof:
10685 error_at (loc, "lvalue required as unary %<&%> operand");
10686 break;
10687 case lv_asm:
10688 error_at (loc, "lvalue required in asm statement");
10689 break;
10690 default:
10691 gcc_unreachable ();
10692 }
10693 }
10694
10695 /* Print an error message for an invalid indirection of type TYPE.
10696 ERRSTRING is the name of the operator for the indirection. */
10697
10698 void
10699 invalid_indirection_error (location_t loc, tree type, ref_operator errstring)
10700 {
10701 switch (errstring)
10702 {
10703 case RO_NULL:
10704 gcc_assert (c_dialect_cxx ());
10705 error_at (loc, "invalid type argument (have %qT)", type);
10706 break;
10707 case RO_ARRAY_INDEXING:
10708 error_at (loc,
10709 "invalid type argument of array indexing (have %qT)",
10710 type);
10711 break;
10712 case RO_UNARY_STAR:
10713 error_at (loc,
10714 "invalid type argument of unary %<*%> (have %qT)",
10715 type);
10716 break;
10717 case RO_ARROW:
10718 error_at (loc,
10719 "invalid type argument of %<->%> (have %qT)",
10720 type);
10721 break;
10722 case RO_ARROW_STAR:
10723 error_at (loc,
10724 "invalid type argument of %<->*%> (have %qT)",
10725 type);
10726 break;
10727 case RO_IMPLICIT_CONVERSION:
10728 error_at (loc,
10729 "invalid type argument of implicit conversion (have %qT)",
10730 type);
10731 break;
10732 default:
10733 gcc_unreachable ();
10734 }
10735 }
10736 \f
10737 /* *PTYPE is an incomplete array. Complete it with a domain based on
10738 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
10739 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
10740 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
10741
10742 int
10743 complete_array_type (tree *ptype, tree initial_value, bool do_default)
10744 {
10745 tree maxindex, type, main_type, elt, unqual_elt;
10746 int failure = 0, quals;
10747 hashval_t hashcode = 0;
10748 bool overflow_p = false;
10749
10750 maxindex = size_zero_node;
10751 if (initial_value)
10752 {
10753 if (TREE_CODE (initial_value) == STRING_CST)
10754 {
10755 int eltsize
10756 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
10757 maxindex = size_int (TREE_STRING_LENGTH (initial_value)/eltsize - 1);
10758 }
10759 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
10760 {
10761 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
10762
10763 if (vec_safe_is_empty (v))
10764 {
10765 if (pedantic)
10766 failure = 3;
10767 maxindex = ssize_int (-1);
10768 }
10769 else
10770 {
10771 tree curindex;
10772 unsigned HOST_WIDE_INT cnt;
10773 constructor_elt *ce;
10774 bool fold_p = false;
10775
10776 if ((*v)[0].index)
10777 maxindex = (*v)[0].index, fold_p = true;
10778
10779 curindex = maxindex;
10780
10781 for (cnt = 1; vec_safe_iterate (v, cnt, &ce); cnt++)
10782 {
10783 bool curfold_p = false;
10784 if (ce->index)
10785 curindex = ce->index, curfold_p = true;
10786 else
10787 {
10788 if (fold_p)
10789 {
10790 /* Since we treat size types now as ordinary
10791 unsigned types, we need an explicit overflow
10792 check. */
10793 tree orig = curindex;
10794 curindex = fold_convert (sizetype, curindex);
10795 overflow_p |= tree_int_cst_lt (curindex, orig);
10796 }
10797 curindex = size_binop (PLUS_EXPR, curindex,
10798 size_one_node);
10799 }
10800 if (tree_int_cst_lt (maxindex, curindex))
10801 maxindex = curindex, fold_p = curfold_p;
10802 }
10803 if (fold_p)
10804 {
10805 tree orig = maxindex;
10806 maxindex = fold_convert (sizetype, maxindex);
10807 overflow_p |= tree_int_cst_lt (maxindex, orig);
10808 }
10809 }
10810 }
10811 else
10812 {
10813 /* Make an error message unless that happened already. */
10814 if (initial_value != error_mark_node)
10815 failure = 1;
10816 }
10817 }
10818 else
10819 {
10820 failure = 2;
10821 if (!do_default)
10822 return failure;
10823 }
10824
10825 type = *ptype;
10826 elt = TREE_TYPE (type);
10827 quals = TYPE_QUALS (strip_array_types (elt));
10828 if (quals == 0)
10829 unqual_elt = elt;
10830 else
10831 unqual_elt = c_build_qualified_type (elt, KEEP_QUAL_ADDR_SPACE (quals));
10832
10833 /* Using build_distinct_type_copy and modifying things afterward instead
10834 of using build_array_type to create a new type preserves all of the
10835 TYPE_LANG_FLAG_? bits that the front end may have set. */
10836 main_type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
10837 TREE_TYPE (main_type) = unqual_elt;
10838 TYPE_DOMAIN (main_type)
10839 = build_range_type (TREE_TYPE (maxindex),
10840 build_int_cst (TREE_TYPE (maxindex), 0), maxindex);
10841 layout_type (main_type);
10842
10843 /* Make sure we have the canonical MAIN_TYPE. */
10844 hashcode = iterative_hash_object (TYPE_HASH (unqual_elt), hashcode);
10845 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (main_type)),
10846 hashcode);
10847 main_type = type_hash_canon (hashcode, main_type);
10848
10849 /* Fix the canonical type. */
10850 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type))
10851 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type)))
10852 SET_TYPE_STRUCTURAL_EQUALITY (main_type);
10853 else if (TYPE_CANONICAL (TREE_TYPE (main_type)) != TREE_TYPE (main_type)
10854 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type))
10855 != TYPE_DOMAIN (main_type)))
10856 TYPE_CANONICAL (main_type)
10857 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type)),
10858 TYPE_CANONICAL (TYPE_DOMAIN (main_type)));
10859 else
10860 TYPE_CANONICAL (main_type) = main_type;
10861
10862 if (quals == 0)
10863 type = main_type;
10864 else
10865 type = c_build_qualified_type (main_type, quals);
10866
10867 if (COMPLETE_TYPE_P (type)
10868 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
10869 && (overflow_p || TREE_OVERFLOW (TYPE_SIZE_UNIT (type))))
10870 {
10871 error ("size of array is too large");
10872 /* If we proceed with the array type as it is, we'll eventually
10873 crash in tree_to_[su]hwi(). */
10874 type = error_mark_node;
10875 }
10876
10877 *ptype = type;
10878 return failure;
10879 }
10880
10881 /* Like c_mark_addressable but don't check register qualifier. */
10882 void
10883 c_common_mark_addressable_vec (tree t)
10884 {
10885 while (handled_component_p (t))
10886 t = TREE_OPERAND (t, 0);
10887 if (!VAR_P (t)
10888 && TREE_CODE (t) != PARM_DECL
10889 && TREE_CODE (t) != COMPOUND_LITERAL_EXPR)
10890 return;
10891 TREE_ADDRESSABLE (t) = 1;
10892 }
10893
10894
10895 \f
10896 /* Used to help initialize the builtin-types.def table. When a type of
10897 the correct size doesn't exist, use error_mark_node instead of NULL.
10898 The later results in segfaults even when a decl using the type doesn't
10899 get invoked. */
10900
10901 tree
10902 builtin_type_for_size (int size, bool unsignedp)
10903 {
10904 tree type = c_common_type_for_size (size, unsignedp);
10905 return type ? type : error_mark_node;
10906 }
10907
10908 /* A helper function for resolve_overloaded_builtin in resolving the
10909 overloaded __sync_ builtins. Returns a positive power of 2 if the
10910 first operand of PARAMS is a pointer to a supported data type.
10911 Returns 0 if an error is encountered.
10912 FETCH is true when FUNCTION is one of the _FETCH_OP_ or _OP_FETCH_
10913 built-ins. */
10914
10915 static int
10916 sync_resolve_size (tree function, vec<tree, va_gc> *params, bool fetch)
10917 {
10918 /* Type of the argument. */
10919 tree argtype;
10920 /* Type the argument points to. */
10921 tree type;
10922 int size;
10923
10924 if (vec_safe_is_empty (params))
10925 {
10926 error ("too few arguments to function %qE", function);
10927 return 0;
10928 }
10929
10930 argtype = type = TREE_TYPE ((*params)[0]);
10931 if (TREE_CODE (type) == ARRAY_TYPE)
10932 {
10933 /* Force array-to-pointer decay for C++. */
10934 gcc_assert (c_dialect_cxx());
10935 (*params)[0] = default_conversion ((*params)[0]);
10936 type = TREE_TYPE ((*params)[0]);
10937 }
10938 if (TREE_CODE (type) != POINTER_TYPE)
10939 goto incompatible;
10940
10941 type = TREE_TYPE (type);
10942 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
10943 goto incompatible;
10944
10945 if (fetch && TREE_CODE (type) == BOOLEAN_TYPE)
10946 goto incompatible;
10947
10948 size = tree_to_uhwi (TYPE_SIZE_UNIT (type));
10949 if (size == 1 || size == 2 || size == 4 || size == 8 || size == 16)
10950 return size;
10951
10952 incompatible:
10953 /* Issue the diagnostic only if the argument is valid, otherwise
10954 it would be redundant at best and could be misleading. */
10955 if (argtype != error_mark_node)
10956 error ("operand type %qT is incompatible with argument %d of %qE",
10957 argtype, 1, function);
10958 return 0;
10959 }
10960
10961 /* A helper function for resolve_overloaded_builtin. Adds casts to
10962 PARAMS to make arguments match up with those of FUNCTION. Drops
10963 the variadic arguments at the end. Returns false if some error
10964 was encountered; true on success. */
10965
10966 static bool
10967 sync_resolve_params (location_t loc, tree orig_function, tree function,
10968 vec<tree, va_gc> *params, bool orig_format)
10969 {
10970 function_args_iterator iter;
10971 tree ptype;
10972 unsigned int parmnum;
10973
10974 function_args_iter_init (&iter, TREE_TYPE (function));
10975 /* We've declared the implementation functions to use "volatile void *"
10976 as the pointer parameter, so we shouldn't get any complaints from the
10977 call to check_function_arguments what ever type the user used. */
10978 function_args_iter_next (&iter);
10979 ptype = TREE_TYPE (TREE_TYPE ((*params)[0]));
10980 ptype = TYPE_MAIN_VARIANT (ptype);
10981
10982 /* For the rest of the values, we need to cast these to FTYPE, so that we
10983 don't get warnings for passing pointer types, etc. */
10984 parmnum = 0;
10985 while (1)
10986 {
10987 tree val, arg_type;
10988
10989 arg_type = function_args_iter_cond (&iter);
10990 /* XXX void_type_node belies the abstraction. */
10991 if (arg_type == void_type_node)
10992 break;
10993
10994 ++parmnum;
10995 if (params->length () <= parmnum)
10996 {
10997 error_at (loc, "too few arguments to function %qE", orig_function);
10998 return false;
10999 }
11000
11001 /* Only convert parameters if arg_type is unsigned integer type with
11002 new format sync routines, i.e. don't attempt to convert pointer
11003 arguments (e.g. EXPECTED argument of __atomic_compare_exchange_n),
11004 bool arguments (e.g. WEAK argument) or signed int arguments (memmodel
11005 kinds). */
11006 if (TREE_CODE (arg_type) == INTEGER_TYPE && TYPE_UNSIGNED (arg_type))
11007 {
11008 /* Ideally for the first conversion we'd use convert_for_assignment
11009 so that we get warnings for anything that doesn't match the pointer
11010 type. This isn't portable across the C and C++ front ends atm. */
11011 val = (*params)[parmnum];
11012 val = convert (ptype, val);
11013 val = convert (arg_type, val);
11014 (*params)[parmnum] = val;
11015 }
11016
11017 function_args_iter_next (&iter);
11018 }
11019
11020 /* __atomic routines are not variadic. */
11021 if (!orig_format && params->length () != parmnum + 1)
11022 {
11023 error_at (loc, "too many arguments to function %qE", orig_function);
11024 return false;
11025 }
11026
11027 /* The definition of these primitives is variadic, with the remaining
11028 being "an optional list of variables protected by the memory barrier".
11029 No clue what that's supposed to mean, precisely, but we consider all
11030 call-clobbered variables to be protected so we're safe. */
11031 params->truncate (parmnum + 1);
11032
11033 return true;
11034 }
11035
11036 /* A helper function for resolve_overloaded_builtin. Adds a cast to
11037 RESULT to make it match the type of the first pointer argument in
11038 PARAMS. */
11039
11040 static tree
11041 sync_resolve_return (tree first_param, tree result, bool orig_format)
11042 {
11043 tree ptype = TREE_TYPE (TREE_TYPE (first_param));
11044 tree rtype = TREE_TYPE (result);
11045 ptype = TYPE_MAIN_VARIANT (ptype);
11046
11047 /* New format doesn't require casting unless the types are the same size. */
11048 if (orig_format || tree_int_cst_equal (TYPE_SIZE (ptype), TYPE_SIZE (rtype)))
11049 return convert (ptype, result);
11050 else
11051 return result;
11052 }
11053
11054 /* This function verifies the PARAMS to generic atomic FUNCTION.
11055 It returns the size if all the parameters are the same size, otherwise
11056 0 is returned if the parameters are invalid. */
11057
11058 static int
11059 get_atomic_generic_size (location_t loc, tree function,
11060 vec<tree, va_gc> *params)
11061 {
11062 unsigned int n_param;
11063 unsigned int n_model;
11064 unsigned int x;
11065 int size_0;
11066 tree type_0;
11067
11068 /* Determine the parameter makeup. */
11069 switch (DECL_FUNCTION_CODE (function))
11070 {
11071 case BUILT_IN_ATOMIC_EXCHANGE:
11072 n_param = 4;
11073 n_model = 1;
11074 break;
11075 case BUILT_IN_ATOMIC_LOAD:
11076 case BUILT_IN_ATOMIC_STORE:
11077 n_param = 3;
11078 n_model = 1;
11079 break;
11080 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
11081 n_param = 6;
11082 n_model = 2;
11083 break;
11084 default:
11085 gcc_unreachable ();
11086 }
11087
11088 if (vec_safe_length (params) != n_param)
11089 {
11090 error_at (loc, "incorrect number of arguments to function %qE", function);
11091 return 0;
11092 }
11093
11094 /* Get type of first parameter, and determine its size. */
11095 type_0 = TREE_TYPE ((*params)[0]);
11096 if (TREE_CODE (type_0) == ARRAY_TYPE)
11097 {
11098 /* Force array-to-pointer decay for C++. */
11099 gcc_assert (c_dialect_cxx());
11100 (*params)[0] = default_conversion ((*params)[0]);
11101 type_0 = TREE_TYPE ((*params)[0]);
11102 }
11103 if (TREE_CODE (type_0) != POINTER_TYPE || VOID_TYPE_P (TREE_TYPE (type_0)))
11104 {
11105 error_at (loc, "argument 1 of %qE must be a non-void pointer type",
11106 function);
11107 return 0;
11108 }
11109
11110 /* Types must be compile time constant sizes. */
11111 if (TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type_0)))) != INTEGER_CST)
11112 {
11113 error_at (loc,
11114 "argument 1 of %qE must be a pointer to a constant size type",
11115 function);
11116 return 0;
11117 }
11118
11119 size_0 = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (type_0)));
11120
11121 /* Zero size objects are not allowed. */
11122 if (size_0 == 0)
11123 {
11124 error_at (loc,
11125 "argument 1 of %qE must be a pointer to a nonzero size object",
11126 function);
11127 return 0;
11128 }
11129
11130 /* Check each other parameter is a pointer and the same size. */
11131 for (x = 0; x < n_param - n_model; x++)
11132 {
11133 int size;
11134 tree type = TREE_TYPE ((*params)[x]);
11135 /* __atomic_compare_exchange has a bool in the 4th position, skip it. */
11136 if (n_param == 6 && x == 3)
11137 continue;
11138 if (!POINTER_TYPE_P (type))
11139 {
11140 error_at (loc, "argument %d of %qE must be a pointer type", x + 1,
11141 function);
11142 return 0;
11143 }
11144 else if (TYPE_SIZE_UNIT (TREE_TYPE (type))
11145 && TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type))))
11146 != INTEGER_CST)
11147 {
11148 error_at (loc, "argument %d of %qE must be a pointer to a constant "
11149 "size type", x + 1, function);
11150 return 0;
11151 }
11152 else if (FUNCTION_POINTER_TYPE_P (type))
11153 {
11154 error_at (loc, "argument %d of %qE must not be a pointer to a "
11155 "function", x + 1, function);
11156 return 0;
11157 }
11158 tree type_size = TYPE_SIZE_UNIT (TREE_TYPE (type));
11159 size = type_size ? tree_to_uhwi (type_size) : 0;
11160 if (size != size_0)
11161 {
11162 error_at (loc, "size mismatch in argument %d of %qE", x + 1,
11163 function);
11164 return 0;
11165 }
11166 }
11167
11168 /* Check memory model parameters for validity. */
11169 for (x = n_param - n_model ; x < n_param; x++)
11170 {
11171 tree p = (*params)[x];
11172 if (TREE_CODE (p) == INTEGER_CST)
11173 {
11174 int i = tree_to_uhwi (p);
11175 if (i < 0 || (memmodel_base (i) >= MEMMODEL_LAST))
11176 {
11177 warning_at (loc, OPT_Winvalid_memory_model,
11178 "invalid memory model argument %d of %qE", x + 1,
11179 function);
11180 }
11181 }
11182 else
11183 if (!INTEGRAL_TYPE_P (TREE_TYPE (p)))
11184 {
11185 error_at (loc, "non-integer memory model argument %d of %qE", x + 1,
11186 function);
11187 return 0;
11188 }
11189 }
11190
11191 return size_0;
11192 }
11193
11194
11195 /* This will take an __atomic_ generic FUNCTION call, and add a size parameter N
11196 at the beginning of the parameter list PARAMS representing the size of the
11197 objects. This is to match the library ABI requirement. LOC is the location
11198 of the function call.
11199 The new function is returned if it needed rebuilding, otherwise NULL_TREE is
11200 returned to allow the external call to be constructed. */
11201
11202 static tree
11203 add_atomic_size_parameter (unsigned n, location_t loc, tree function,
11204 vec<tree, va_gc> *params)
11205 {
11206 tree size_node;
11207
11208 /* Insert a SIZE_T parameter as the first param. If there isn't
11209 enough space, allocate a new vector and recursively re-build with that. */
11210 if (!params->space (1))
11211 {
11212 unsigned int z, len;
11213 vec<tree, va_gc> *v;
11214 tree f;
11215
11216 len = params->length ();
11217 vec_alloc (v, len + 1);
11218 v->quick_push (build_int_cst (size_type_node, n));
11219 for (z = 0; z < len; z++)
11220 v->quick_push ((*params)[z]);
11221 f = build_function_call_vec (loc, vNULL, function, v, NULL);
11222 vec_free (v);
11223 return f;
11224 }
11225
11226 /* Add the size parameter and leave as a function call for processing. */
11227 size_node = build_int_cst (size_type_node, n);
11228 params->quick_insert (0, size_node);
11229 return NULL_TREE;
11230 }
11231
11232
11233 /* Return whether atomic operations for naturally aligned N-byte
11234 arguments are supported, whether inline or through libatomic. */
11235 static bool
11236 atomic_size_supported_p (int n)
11237 {
11238 switch (n)
11239 {
11240 case 1:
11241 case 2:
11242 case 4:
11243 case 8:
11244 return true;
11245
11246 case 16:
11247 return targetm.scalar_mode_supported_p (TImode);
11248
11249 default:
11250 return false;
11251 }
11252 }
11253
11254 /* This will process an __atomic_exchange function call, determine whether it
11255 needs to be mapped to the _N variation, or turned into a library call.
11256 LOC is the location of the builtin call.
11257 FUNCTION is the DECL that has been invoked;
11258 PARAMS is the argument list for the call. The return value is non-null
11259 TRUE is returned if it is translated into the proper format for a call to the
11260 external library, and NEW_RETURN is set the tree for that function.
11261 FALSE is returned if processing for the _N variation is required, and
11262 NEW_RETURN is set to the return value the result is copied into. */
11263 static bool
11264 resolve_overloaded_atomic_exchange (location_t loc, tree function,
11265 vec<tree, va_gc> *params, tree *new_return)
11266 {
11267 tree p0, p1, p2, p3;
11268 tree I_type, I_type_ptr;
11269 int n = get_atomic_generic_size (loc, function, params);
11270
11271 /* Size of 0 is an error condition. */
11272 if (n == 0)
11273 {
11274 *new_return = error_mark_node;
11275 return true;
11276 }
11277
11278 /* If not a lock-free size, change to the library generic format. */
11279 if (!atomic_size_supported_p (n))
11280 {
11281 *new_return = add_atomic_size_parameter (n, loc, function, params);
11282 return true;
11283 }
11284
11285 /* Otherwise there is a lockfree match, transform the call from:
11286 void fn(T* mem, T* desired, T* return, model)
11287 into
11288 *return = (T) (fn (In* mem, (In) *desired, model)) */
11289
11290 p0 = (*params)[0];
11291 p1 = (*params)[1];
11292 p2 = (*params)[2];
11293 p3 = (*params)[3];
11294
11295 /* Create pointer to appropriate size. */
11296 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
11297 I_type_ptr = build_pointer_type (I_type);
11298
11299 /* Convert object pointer to required type. */
11300 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
11301 (*params)[0] = p0;
11302 /* Convert new value to required type, and dereference it. */
11303 p1 = build_indirect_ref (loc, p1, RO_UNARY_STAR);
11304 p1 = build1 (VIEW_CONVERT_EXPR, I_type, p1);
11305 (*params)[1] = p1;
11306
11307 /* Move memory model to the 3rd position, and end param list. */
11308 (*params)[2] = p3;
11309 params->truncate (3);
11310
11311 /* Convert return pointer and dereference it for later assignment. */
11312 *new_return = build_indirect_ref (loc, p2, RO_UNARY_STAR);
11313
11314 return false;
11315 }
11316
11317
11318 /* This will process an __atomic_compare_exchange function call, determine
11319 whether it needs to be mapped to the _N variation, or turned into a lib call.
11320 LOC is the location of the builtin call.
11321 FUNCTION is the DECL that has been invoked;
11322 PARAMS is the argument list for the call. The return value is non-null
11323 TRUE is returned if it is translated into the proper format for a call to the
11324 external library, and NEW_RETURN is set the tree for that function.
11325 FALSE is returned if processing for the _N variation is required. */
11326
11327 static bool
11328 resolve_overloaded_atomic_compare_exchange (location_t loc, tree function,
11329 vec<tree, va_gc> *params,
11330 tree *new_return)
11331 {
11332 tree p0, p1, p2;
11333 tree I_type, I_type_ptr;
11334 int n = get_atomic_generic_size (loc, function, params);
11335
11336 /* Size of 0 is an error condition. */
11337 if (n == 0)
11338 {
11339 *new_return = error_mark_node;
11340 return true;
11341 }
11342
11343 /* If not a lock-free size, change to the library generic format. */
11344 if (!atomic_size_supported_p (n))
11345 {
11346 /* The library generic format does not have the weak parameter, so
11347 remove it from the param list. Since a parameter has been removed,
11348 we can be sure that there is room for the SIZE_T parameter, meaning
11349 there will not be a recursive rebuilding of the parameter list, so
11350 there is no danger this will be done twice. */
11351 if (n > 0)
11352 {
11353 (*params)[3] = (*params)[4];
11354 (*params)[4] = (*params)[5];
11355 params->truncate (5);
11356 }
11357 *new_return = add_atomic_size_parameter (n, loc, function, params);
11358 return true;
11359 }
11360
11361 /* Otherwise, there is a match, so the call needs to be transformed from:
11362 bool fn(T* mem, T* desired, T* return, weak, success, failure)
11363 into
11364 bool fn ((In *)mem, (In *)expected, (In) *desired, weak, succ, fail) */
11365
11366 p0 = (*params)[0];
11367 p1 = (*params)[1];
11368 p2 = (*params)[2];
11369
11370 /* Create pointer to appropriate size. */
11371 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
11372 I_type_ptr = build_pointer_type (I_type);
11373
11374 /* Convert object pointer to required type. */
11375 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
11376 (*params)[0] = p0;
11377
11378 /* Convert expected pointer to required type. */
11379 p1 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p1);
11380 (*params)[1] = p1;
11381
11382 /* Convert desired value to required type, and dereference it. */
11383 p2 = build_indirect_ref (loc, p2, RO_UNARY_STAR);
11384 p2 = build1 (VIEW_CONVERT_EXPR, I_type, p2);
11385 (*params)[2] = p2;
11386
11387 /* The rest of the parameters are fine. NULL means no special return value
11388 processing.*/
11389 *new_return = NULL;
11390 return false;
11391 }
11392
11393
11394 /* This will process an __atomic_load function call, determine whether it
11395 needs to be mapped to the _N variation, or turned into a library call.
11396 LOC is the location of the builtin call.
11397 FUNCTION is the DECL that has been invoked;
11398 PARAMS is the argument list for the call. The return value is non-null
11399 TRUE is returned if it is translated into the proper format for a call to the
11400 external library, and NEW_RETURN is set the tree for that function.
11401 FALSE is returned if processing for the _N variation is required, and
11402 NEW_RETURN is set to the return value the result is copied into. */
11403
11404 static bool
11405 resolve_overloaded_atomic_load (location_t loc, tree function,
11406 vec<tree, va_gc> *params, tree *new_return)
11407 {
11408 tree p0, p1, p2;
11409 tree I_type, I_type_ptr;
11410 int n = get_atomic_generic_size (loc, function, params);
11411
11412 /* Size of 0 is an error condition. */
11413 if (n == 0)
11414 {
11415 *new_return = error_mark_node;
11416 return true;
11417 }
11418
11419 /* If not a lock-free size, change to the library generic format. */
11420 if (!atomic_size_supported_p (n))
11421 {
11422 *new_return = add_atomic_size_parameter (n, loc, function, params);
11423 return true;
11424 }
11425
11426 /* Otherwise, there is a match, so the call needs to be transformed from:
11427 void fn(T* mem, T* return, model)
11428 into
11429 *return = (T) (fn ((In *) mem, model)) */
11430
11431 p0 = (*params)[0];
11432 p1 = (*params)[1];
11433 p2 = (*params)[2];
11434
11435 /* Create pointer to appropriate size. */
11436 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
11437 I_type_ptr = build_pointer_type (I_type);
11438
11439 /* Convert object pointer to required type. */
11440 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
11441 (*params)[0] = p0;
11442
11443 /* Move memory model to the 2nd position, and end param list. */
11444 (*params)[1] = p2;
11445 params->truncate (2);
11446
11447 /* Convert return pointer and dereference it for later assignment. */
11448 *new_return = build_indirect_ref (loc, p1, RO_UNARY_STAR);
11449
11450 return false;
11451 }
11452
11453
11454 /* This will process an __atomic_store function call, determine whether it
11455 needs to be mapped to the _N variation, or turned into a library call.
11456 LOC is the location of the builtin call.
11457 FUNCTION is the DECL that has been invoked;
11458 PARAMS is the argument list for the call. The return value is non-null
11459 TRUE is returned if it is translated into the proper format for a call to the
11460 external library, and NEW_RETURN is set the tree for that function.
11461 FALSE is returned if processing for the _N variation is required, and
11462 NEW_RETURN is set to the return value the result is copied into. */
11463
11464 static bool
11465 resolve_overloaded_atomic_store (location_t loc, tree function,
11466 vec<tree, va_gc> *params, tree *new_return)
11467 {
11468 tree p0, p1;
11469 tree I_type, I_type_ptr;
11470 int n = get_atomic_generic_size (loc, function, params);
11471
11472 /* Size of 0 is an error condition. */
11473 if (n == 0)
11474 {
11475 *new_return = error_mark_node;
11476 return true;
11477 }
11478
11479 /* If not a lock-free size, change to the library generic format. */
11480 if (!atomic_size_supported_p (n))
11481 {
11482 *new_return = add_atomic_size_parameter (n, loc, function, params);
11483 return true;
11484 }
11485
11486 /* Otherwise, there is a match, so the call needs to be transformed from:
11487 void fn(T* mem, T* value, model)
11488 into
11489 fn ((In *) mem, (In) *value, model) */
11490
11491 p0 = (*params)[0];
11492 p1 = (*params)[1];
11493
11494 /* Create pointer to appropriate size. */
11495 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
11496 I_type_ptr = build_pointer_type (I_type);
11497
11498 /* Convert object pointer to required type. */
11499 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
11500 (*params)[0] = p0;
11501
11502 /* Convert new value to required type, and dereference it. */
11503 p1 = build_indirect_ref (loc, p1, RO_UNARY_STAR);
11504 p1 = build1 (VIEW_CONVERT_EXPR, I_type, p1);
11505 (*params)[1] = p1;
11506
11507 /* The memory model is in the right spot already. Return is void. */
11508 *new_return = NULL_TREE;
11509
11510 return false;
11511 }
11512
11513
11514 /* Some builtin functions are placeholders for other expressions. This
11515 function should be called immediately after parsing the call expression
11516 before surrounding code has committed to the type of the expression.
11517
11518 LOC is the location of the builtin call.
11519
11520 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
11521 PARAMS is the argument list for the call. The return value is non-null
11522 when expansion is complete, and null if normal processing should
11523 continue. */
11524
11525 tree
11526 resolve_overloaded_builtin (location_t loc, tree function,
11527 vec<tree, va_gc> *params)
11528 {
11529 enum built_in_function orig_code = DECL_FUNCTION_CODE (function);
11530
11531 /* Is function one of the _FETCH_OP_ or _OP_FETCH_ built-ins?
11532 Those are not valid to call with a pointer to _Bool (or C++ bool)
11533 and so must be rejected. */
11534 bool fetch_op = true;
11535 bool orig_format = true;
11536 tree new_return = NULL_TREE;
11537
11538 switch (DECL_BUILT_IN_CLASS (function))
11539 {
11540 case BUILT_IN_NORMAL:
11541 break;
11542 case BUILT_IN_MD:
11543 if (targetm.resolve_overloaded_builtin)
11544 return targetm.resolve_overloaded_builtin (loc, function, params);
11545 else
11546 return NULL_TREE;
11547 default:
11548 return NULL_TREE;
11549 }
11550
11551 /* Handle BUILT_IN_NORMAL here. */
11552 switch (orig_code)
11553 {
11554 case BUILT_IN_ATOMIC_EXCHANGE:
11555 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
11556 case BUILT_IN_ATOMIC_LOAD:
11557 case BUILT_IN_ATOMIC_STORE:
11558 {
11559 /* Handle these 4 together so that they can fall through to the next
11560 case if the call is transformed to an _N variant. */
11561 switch (orig_code)
11562 {
11563 case BUILT_IN_ATOMIC_EXCHANGE:
11564 {
11565 if (resolve_overloaded_atomic_exchange (loc, function, params,
11566 &new_return))
11567 return new_return;
11568 /* Change to the _N variant. */
11569 orig_code = BUILT_IN_ATOMIC_EXCHANGE_N;
11570 break;
11571 }
11572
11573 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
11574 {
11575 if (resolve_overloaded_atomic_compare_exchange (loc, function,
11576 params,
11577 &new_return))
11578 return new_return;
11579 /* Change to the _N variant. */
11580 orig_code = BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N;
11581 break;
11582 }
11583 case BUILT_IN_ATOMIC_LOAD:
11584 {
11585 if (resolve_overloaded_atomic_load (loc, function, params,
11586 &new_return))
11587 return new_return;
11588 /* Change to the _N variant. */
11589 orig_code = BUILT_IN_ATOMIC_LOAD_N;
11590 break;
11591 }
11592 case BUILT_IN_ATOMIC_STORE:
11593 {
11594 if (resolve_overloaded_atomic_store (loc, function, params,
11595 &new_return))
11596 return new_return;
11597 /* Change to the _N variant. */
11598 orig_code = BUILT_IN_ATOMIC_STORE_N;
11599 break;
11600 }
11601 default:
11602 gcc_unreachable ();
11603 }
11604 }
11605 /* FALLTHRU */
11606 case BUILT_IN_ATOMIC_EXCHANGE_N:
11607 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N:
11608 case BUILT_IN_ATOMIC_LOAD_N:
11609 case BUILT_IN_ATOMIC_STORE_N:
11610 fetch_op = false;
11611 /* FALLTHRU */
11612 case BUILT_IN_ATOMIC_ADD_FETCH_N:
11613 case BUILT_IN_ATOMIC_SUB_FETCH_N:
11614 case BUILT_IN_ATOMIC_AND_FETCH_N:
11615 case BUILT_IN_ATOMIC_NAND_FETCH_N:
11616 case BUILT_IN_ATOMIC_XOR_FETCH_N:
11617 case BUILT_IN_ATOMIC_OR_FETCH_N:
11618 case BUILT_IN_ATOMIC_FETCH_ADD_N:
11619 case BUILT_IN_ATOMIC_FETCH_SUB_N:
11620 case BUILT_IN_ATOMIC_FETCH_AND_N:
11621 case BUILT_IN_ATOMIC_FETCH_NAND_N:
11622 case BUILT_IN_ATOMIC_FETCH_XOR_N:
11623 case BUILT_IN_ATOMIC_FETCH_OR_N:
11624 orig_format = false;
11625 /* FALLTHRU */
11626 case BUILT_IN_SYNC_FETCH_AND_ADD_N:
11627 case BUILT_IN_SYNC_FETCH_AND_SUB_N:
11628 case BUILT_IN_SYNC_FETCH_AND_OR_N:
11629 case BUILT_IN_SYNC_FETCH_AND_AND_N:
11630 case BUILT_IN_SYNC_FETCH_AND_XOR_N:
11631 case BUILT_IN_SYNC_FETCH_AND_NAND_N:
11632 case BUILT_IN_SYNC_ADD_AND_FETCH_N:
11633 case BUILT_IN_SYNC_SUB_AND_FETCH_N:
11634 case BUILT_IN_SYNC_OR_AND_FETCH_N:
11635 case BUILT_IN_SYNC_AND_AND_FETCH_N:
11636 case BUILT_IN_SYNC_XOR_AND_FETCH_N:
11637 case BUILT_IN_SYNC_NAND_AND_FETCH_N:
11638 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N:
11639 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N:
11640 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_N:
11641 case BUILT_IN_SYNC_LOCK_RELEASE_N:
11642 {
11643 /* The following are not _FETCH_OPs and must be accepted with
11644 pointers to _Bool (or C++ bool). */
11645 if (fetch_op)
11646 fetch_op =
11647 (orig_code != BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
11648 && orig_code != BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N
11649 && orig_code != BUILT_IN_SYNC_LOCK_TEST_AND_SET_N
11650 && orig_code != BUILT_IN_SYNC_LOCK_RELEASE_N);
11651
11652 int n = sync_resolve_size (function, params, fetch_op);
11653 tree new_function, first_param, result;
11654 enum built_in_function fncode;
11655
11656 if (n == 0)
11657 return error_mark_node;
11658
11659 fncode = (enum built_in_function)((int)orig_code + exact_log2 (n) + 1);
11660 new_function = builtin_decl_explicit (fncode);
11661 if (!sync_resolve_params (loc, function, new_function, params,
11662 orig_format))
11663 return error_mark_node;
11664
11665 first_param = (*params)[0];
11666 result = build_function_call_vec (loc, vNULL, new_function, params,
11667 NULL);
11668 if (result == error_mark_node)
11669 return result;
11670 if (orig_code != BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
11671 && orig_code != BUILT_IN_SYNC_LOCK_RELEASE_N
11672 && orig_code != BUILT_IN_ATOMIC_STORE_N
11673 && orig_code != BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N)
11674 result = sync_resolve_return (first_param, result, orig_format);
11675
11676 if (fetch_op)
11677 /* Prevent -Wunused-value warning. */
11678 TREE_USED (result) = true;
11679
11680 /* If new_return is set, assign function to that expr and cast the
11681 result to void since the generic interface returned void. */
11682 if (new_return)
11683 {
11684 /* Cast function result from I{1,2,4,8,16} to the required type. */
11685 result = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (new_return), result);
11686 result = build2 (MODIFY_EXPR, TREE_TYPE (new_return), new_return,
11687 result);
11688 TREE_SIDE_EFFECTS (result) = 1;
11689 protected_set_expr_location (result, loc);
11690 result = convert (void_type_node, result);
11691 }
11692 return result;
11693 }
11694
11695 default:
11696 return NULL_TREE;
11697 }
11698 }
11699
11700 /* vector_types_compatible_elements_p is used in type checks of vectors
11701 values used as operands of binary operators. Where it returns true, and
11702 the other checks of the caller succeed (being vector types in he first
11703 place, and matching number of elements), we can just treat the types
11704 as essentially the same.
11705 Contrast with vector_targets_convertible_p, which is used for vector
11706 pointer types, and vector_types_convertible_p, which will allow
11707 language-specific matches under the control of flag_lax_vector_conversions,
11708 and might still require a conversion. */
11709 /* True if vector types T1 and T2 can be inputs to the same binary
11710 operator without conversion.
11711 We don't check the overall vector size here because some of our callers
11712 want to give different error messages when the vectors are compatible
11713 except for the element count. */
11714
11715 bool
11716 vector_types_compatible_elements_p (tree t1, tree t2)
11717 {
11718 bool opaque = TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2);
11719 t1 = TREE_TYPE (t1);
11720 t2 = TREE_TYPE (t2);
11721
11722 enum tree_code c1 = TREE_CODE (t1), c2 = TREE_CODE (t2);
11723
11724 gcc_assert ((c1 == INTEGER_TYPE || c1 == REAL_TYPE || c1 == FIXED_POINT_TYPE)
11725 && (c2 == INTEGER_TYPE || c2 == REAL_TYPE
11726 || c2 == FIXED_POINT_TYPE));
11727
11728 t1 = c_common_signed_type (t1);
11729 t2 = c_common_signed_type (t2);
11730 /* Equality works here because c_common_signed_type uses
11731 TYPE_MAIN_VARIANT. */
11732 if (t1 == t2)
11733 return true;
11734 if (opaque && c1 == c2
11735 && (c1 == INTEGER_TYPE || c1 == REAL_TYPE)
11736 && TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
11737 return true;
11738 return false;
11739 }
11740
11741 /* Check for missing format attributes on function pointers. LTYPE is
11742 the new type or left-hand side type. RTYPE is the old type or
11743 right-hand side type. Returns TRUE if LTYPE is missing the desired
11744 attribute. */
11745
11746 bool
11747 check_missing_format_attribute (tree ltype, tree rtype)
11748 {
11749 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
11750 tree ra;
11751
11752 for (ra = TYPE_ATTRIBUTES (ttr); ra; ra = TREE_CHAIN (ra))
11753 if (is_attribute_p ("format", TREE_PURPOSE (ra)))
11754 break;
11755 if (ra)
11756 {
11757 tree la;
11758 for (la = TYPE_ATTRIBUTES (ttl); la; la = TREE_CHAIN (la))
11759 if (is_attribute_p ("format", TREE_PURPOSE (la)))
11760 break;
11761 return !la;
11762 }
11763 else
11764 return false;
11765 }
11766
11767 /* Subscripting with type char is likely to lose on a machine where
11768 chars are signed. So warn on any machine, but optionally. Don't
11769 warn for unsigned char since that type is safe. Don't warn for
11770 signed char because anyone who uses that must have done so
11771 deliberately. Furthermore, we reduce the false positive load by
11772 warning only for non-constant value of type char. */
11773
11774 void
11775 warn_array_subscript_with_type_char (location_t loc, tree index)
11776 {
11777 if (TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node
11778 && TREE_CODE (index) != INTEGER_CST)
11779 warning_at (loc, OPT_Wchar_subscripts,
11780 "array subscript has type %<char%>");
11781 }
11782
11783 /* Implement -Wparentheses for the unexpected C precedence rules, to
11784 cover cases like x + y << z which readers are likely to
11785 misinterpret. We have seen an expression in which CODE is a binary
11786 operator used to combine expressions ARG_LEFT and ARG_RIGHT, which
11787 before folding had CODE_LEFT and CODE_RIGHT. CODE_LEFT and
11788 CODE_RIGHT may be ERROR_MARK, which means that that side of the
11789 expression was not formed using a binary or unary operator, or it
11790 was enclosed in parentheses. */
11791
11792 void
11793 warn_about_parentheses (location_t loc, enum tree_code code,
11794 enum tree_code code_left, tree arg_left,
11795 enum tree_code code_right, tree arg_right)
11796 {
11797 if (!warn_parentheses)
11798 return;
11799
11800 /* This macro tests that the expression ARG with original tree code
11801 CODE appears to be a boolean expression. or the result of folding a
11802 boolean expression. */
11803 #define APPEARS_TO_BE_BOOLEAN_EXPR_P(CODE, ARG) \
11804 (truth_value_p (TREE_CODE (ARG)) \
11805 || TREE_CODE (TREE_TYPE (ARG)) == BOOLEAN_TYPE \
11806 /* Folding may create 0 or 1 integers from other expressions. */ \
11807 || ((CODE) != INTEGER_CST \
11808 && (integer_onep (ARG) || integer_zerop (ARG))))
11809
11810 switch (code)
11811 {
11812 case LSHIFT_EXPR:
11813 if (code_left == PLUS_EXPR)
11814 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11815 "suggest parentheses around %<+%> inside %<<<%>");
11816 else if (code_right == PLUS_EXPR)
11817 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11818 "suggest parentheses around %<+%> inside %<<<%>");
11819 else if (code_left == MINUS_EXPR)
11820 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11821 "suggest parentheses around %<-%> inside %<<<%>");
11822 else if (code_right == MINUS_EXPR)
11823 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11824 "suggest parentheses around %<-%> inside %<<<%>");
11825 return;
11826
11827 case RSHIFT_EXPR:
11828 if (code_left == PLUS_EXPR)
11829 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11830 "suggest parentheses around %<+%> inside %<>>%>");
11831 else if (code_right == PLUS_EXPR)
11832 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11833 "suggest parentheses around %<+%> inside %<>>%>");
11834 else if (code_left == MINUS_EXPR)
11835 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11836 "suggest parentheses around %<-%> inside %<>>%>");
11837 else if (code_right == MINUS_EXPR)
11838 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11839 "suggest parentheses around %<-%> inside %<>>%>");
11840 return;
11841
11842 case TRUTH_ORIF_EXPR:
11843 if (code_left == TRUTH_ANDIF_EXPR)
11844 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11845 "suggest parentheses around %<&&%> within %<||%>");
11846 else if (code_right == TRUTH_ANDIF_EXPR)
11847 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11848 "suggest parentheses around %<&&%> within %<||%>");
11849 return;
11850
11851 case BIT_IOR_EXPR:
11852 if (code_left == BIT_AND_EXPR || code_left == BIT_XOR_EXPR
11853 || code_left == PLUS_EXPR || code_left == MINUS_EXPR)
11854 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11855 "suggest parentheses around arithmetic in operand of %<|%>");
11856 else if (code_right == BIT_AND_EXPR || code_right == BIT_XOR_EXPR
11857 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
11858 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11859 "suggest parentheses around arithmetic in operand of %<|%>");
11860 /* Check cases like x|y==z */
11861 else if (TREE_CODE_CLASS (code_left) == tcc_comparison)
11862 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11863 "suggest parentheses around comparison in operand of %<|%>");
11864 else if (TREE_CODE_CLASS (code_right) == tcc_comparison)
11865 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11866 "suggest parentheses around comparison in operand of %<|%>");
11867 /* Check cases like !x | y */
11868 else if (code_left == TRUTH_NOT_EXPR
11869 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
11870 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11871 "suggest parentheses around operand of "
11872 "%<!%> or change %<|%> to %<||%> or %<!%> to %<~%>");
11873 return;
11874
11875 case BIT_XOR_EXPR:
11876 if (code_left == BIT_AND_EXPR
11877 || code_left == PLUS_EXPR || code_left == MINUS_EXPR)
11878 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11879 "suggest parentheses around arithmetic in operand of %<^%>");
11880 else if (code_right == BIT_AND_EXPR
11881 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
11882 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11883 "suggest parentheses around arithmetic in operand of %<^%>");
11884 /* Check cases like x^y==z */
11885 else if (TREE_CODE_CLASS (code_left) == tcc_comparison)
11886 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11887 "suggest parentheses around comparison in operand of %<^%>");
11888 else if (TREE_CODE_CLASS (code_right) == tcc_comparison)
11889 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11890 "suggest parentheses around comparison in operand of %<^%>");
11891 return;
11892
11893 case BIT_AND_EXPR:
11894 if (code_left == PLUS_EXPR)
11895 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11896 "suggest parentheses around %<+%> in operand of %<&%>");
11897 else if (code_right == PLUS_EXPR)
11898 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11899 "suggest parentheses around %<+%> in operand of %<&%>");
11900 else if (code_left == MINUS_EXPR)
11901 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11902 "suggest parentheses around %<-%> in operand of %<&%>");
11903 else if (code_right == MINUS_EXPR)
11904 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11905 "suggest parentheses around %<-%> in operand of %<&%>");
11906 /* Check cases like x&y==z */
11907 else if (TREE_CODE_CLASS (code_left) == tcc_comparison)
11908 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11909 "suggest parentheses around comparison in operand of %<&%>");
11910 else if (TREE_CODE_CLASS (code_right) == tcc_comparison)
11911 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11912 "suggest parentheses around comparison in operand of %<&%>");
11913 /* Check cases like !x & y */
11914 else if (code_left == TRUTH_NOT_EXPR
11915 && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
11916 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11917 "suggest parentheses around operand of "
11918 "%<!%> or change %<&%> to %<&&%> or %<!%> to %<~%>");
11919 return;
11920
11921 case EQ_EXPR:
11922 if (TREE_CODE_CLASS (code_left) == tcc_comparison)
11923 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11924 "suggest parentheses around comparison in operand of %<==%>");
11925 else if (TREE_CODE_CLASS (code_right) == tcc_comparison)
11926 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11927 "suggest parentheses around comparison in operand of %<==%>");
11928 return;
11929 case NE_EXPR:
11930 if (TREE_CODE_CLASS (code_left) == tcc_comparison)
11931 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11932 "suggest parentheses around comparison in operand of %<!=%>");
11933 else if (TREE_CODE_CLASS (code_right) == tcc_comparison)
11934 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11935 "suggest parentheses around comparison in operand of %<!=%>");
11936 return;
11937
11938 default:
11939 if (TREE_CODE_CLASS (code) == tcc_comparison)
11940 {
11941 if (TREE_CODE_CLASS (code_left) == tcc_comparison
11942 && code_left != NE_EXPR && code_left != EQ_EXPR
11943 && INTEGRAL_TYPE_P (TREE_TYPE (arg_left)))
11944 warning_at (EXPR_LOC_OR_LOC (arg_left, loc), OPT_Wparentheses,
11945 "comparisons like %<X<=Y<=Z%> do not "
11946 "have their mathematical meaning");
11947 else if (TREE_CODE_CLASS (code_right) == tcc_comparison
11948 && code_right != NE_EXPR && code_right != EQ_EXPR
11949 && INTEGRAL_TYPE_P (TREE_TYPE (arg_right)))
11950 warning_at (EXPR_LOC_OR_LOC (arg_right, loc), OPT_Wparentheses,
11951 "comparisons like %<X<=Y<=Z%> do not "
11952 "have their mathematical meaning");
11953 }
11954 return;
11955 }
11956 #undef NOT_A_BOOLEAN_EXPR_P
11957 }
11958
11959 /* If LABEL (a LABEL_DECL) has not been used, issue a warning. */
11960
11961 void
11962 warn_for_unused_label (tree label)
11963 {
11964 if (!TREE_USED (label))
11965 {
11966 if (DECL_INITIAL (label))
11967 warning (OPT_Wunused_label, "label %q+D defined but not used", label);
11968 else
11969 warning (OPT_Wunused_label, "label %q+D declared but not defined", label);
11970 }
11971 }
11972
11973 /* Warn for division by zero according to the value of DIVISOR. LOC
11974 is the location of the division operator. */
11975
11976 void
11977 warn_for_div_by_zero (location_t loc, tree divisor)
11978 {
11979 /* If DIVISOR is zero, and has integral or fixed-point type, issue a warning
11980 about division by zero. Do not issue a warning if DIVISOR has a
11981 floating-point type, since we consider 0.0/0.0 a valid way of
11982 generating a NaN. */
11983 if (c_inhibit_evaluation_warnings == 0
11984 && (integer_zerop (divisor) || fixed_zerop (divisor)))
11985 warning_at (loc, OPT_Wdiv_by_zero, "division by zero");
11986 }
11987
11988 /* Warn for patterns where memset appears to be used incorrectly. The
11989 warning location should be LOC. ARG0, and ARG2 are the first and
11990 last arguments to the call, while LITERAL_ZERO_MASK has a 1 bit for
11991 each argument that was a literal zero. */
11992
11993 void
11994 warn_for_memset (location_t loc, tree arg0, tree arg2,
11995 int literal_zero_mask)
11996 {
11997 if (warn_memset_transposed_args
11998 && integer_zerop (arg2)
11999 && (literal_zero_mask & (1 << 2)) != 0
12000 && (literal_zero_mask & (1 << 1)) == 0)
12001 warning_at (loc, OPT_Wmemset_transposed_args,
12002 "%<memset%> used with constant zero length "
12003 "parameter; this could be due to transposed "
12004 "parameters");
12005
12006 if (warn_memset_elt_size && TREE_CODE (arg2) == INTEGER_CST)
12007 {
12008 STRIP_NOPS (arg0);
12009 if (TREE_CODE (arg0) == ADDR_EXPR)
12010 arg0 = TREE_OPERAND (arg0, 0);
12011 tree type = TREE_TYPE (arg0);
12012 if (type != NULL_TREE && TREE_CODE (type) == ARRAY_TYPE)
12013 {
12014 tree elt_type = TREE_TYPE (type);
12015 tree domain = TYPE_DOMAIN (type);
12016 if (!integer_onep (TYPE_SIZE_UNIT (elt_type))
12017 && domain != NULL_TREE
12018 && TYPE_MAXVAL (domain)
12019 && TYPE_MINVAL (domain)
12020 && integer_zerop (TYPE_MINVAL (domain))
12021 && integer_onep (fold_build2 (MINUS_EXPR, domain,
12022 arg2,
12023 TYPE_MAXVAL (domain))))
12024 warning_at (loc, OPT_Wmemset_elt_size,
12025 "%<memset%> used with length equal to "
12026 "number of elements without multiplication "
12027 "by element size");
12028 }
12029 }
12030 }
12031
12032 /* Subroutine of build_binary_op. Give warnings for comparisons
12033 between signed and unsigned quantities that may fail. Do the
12034 checking based on the original operand trees ORIG_OP0 and ORIG_OP1,
12035 so that casts will be considered, but default promotions won't
12036 be.
12037
12038 LOCATION is the location of the comparison operator.
12039
12040 The arguments of this function map directly to local variables
12041 of build_binary_op. */
12042
12043 void
12044 warn_for_sign_compare (location_t location,
12045 tree orig_op0, tree orig_op1,
12046 tree op0, tree op1,
12047 tree result_type, enum tree_code resultcode)
12048 {
12049 int op0_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op0));
12050 int op1_signed = !TYPE_UNSIGNED (TREE_TYPE (orig_op1));
12051 int unsignedp0, unsignedp1;
12052
12053 /* In C++, check for comparison of different enum types. */
12054 if (c_dialect_cxx()
12055 && TREE_CODE (TREE_TYPE (orig_op0)) == ENUMERAL_TYPE
12056 && TREE_CODE (TREE_TYPE (orig_op1)) == ENUMERAL_TYPE
12057 && TYPE_MAIN_VARIANT (TREE_TYPE (orig_op0))
12058 != TYPE_MAIN_VARIANT (TREE_TYPE (orig_op1)))
12059 {
12060 warning_at (location,
12061 OPT_Wsign_compare, "comparison between types %qT and %qT",
12062 TREE_TYPE (orig_op0), TREE_TYPE (orig_op1));
12063 }
12064
12065 /* Do not warn if the comparison is being done in a signed type,
12066 since the signed type will only be chosen if it can represent
12067 all the values of the unsigned type. */
12068 if (!TYPE_UNSIGNED (result_type))
12069 /* OK */;
12070 /* Do not warn if both operands are unsigned. */
12071 else if (op0_signed == op1_signed)
12072 /* OK */;
12073 else
12074 {
12075 tree sop, uop, base_type;
12076 bool ovf;
12077
12078 if (op0_signed)
12079 sop = orig_op0, uop = orig_op1;
12080 else
12081 sop = orig_op1, uop = orig_op0;
12082
12083 STRIP_TYPE_NOPS (sop);
12084 STRIP_TYPE_NOPS (uop);
12085 base_type = (TREE_CODE (result_type) == COMPLEX_TYPE
12086 ? TREE_TYPE (result_type) : result_type);
12087
12088 /* Do not warn if the signed quantity is an unsuffixed integer
12089 literal (or some static constant expression involving such
12090 literals or a conditional expression involving such literals)
12091 and it is non-negative. */
12092 if (tree_expr_nonnegative_warnv_p (sop, &ovf))
12093 /* OK */;
12094 /* Do not warn if the comparison is an equality operation, the
12095 unsigned quantity is an integral constant, and it would fit
12096 in the result if the result were signed. */
12097 else if (TREE_CODE (uop) == INTEGER_CST
12098 && (resultcode == EQ_EXPR || resultcode == NE_EXPR)
12099 && int_fits_type_p (uop, c_common_signed_type (base_type)))
12100 /* OK */;
12101 /* In C, do not warn if the unsigned quantity is an enumeration
12102 constant and its maximum value would fit in the result if the
12103 result were signed. */
12104 else if (!c_dialect_cxx() && TREE_CODE (uop) == INTEGER_CST
12105 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYPE
12106 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (uop)),
12107 c_common_signed_type (base_type)))
12108 /* OK */;
12109 else
12110 warning_at (location,
12111 OPT_Wsign_compare,
12112 "comparison between signed and unsigned integer expressions");
12113 }
12114
12115 /* Warn if two unsigned values are being compared in a size larger
12116 than their original size, and one (and only one) is the result of
12117 a `~' operator. This comparison will always fail.
12118
12119 Also warn if one operand is a constant, and the constant does not
12120 have all bits set that are set in the ~ operand when it is
12121 extended. */
12122
12123 op0 = c_common_get_narrower (op0, &unsignedp0);
12124 op1 = c_common_get_narrower (op1, &unsignedp1);
12125
12126 if ((TREE_CODE (op0) == BIT_NOT_EXPR)
12127 ^ (TREE_CODE (op1) == BIT_NOT_EXPR))
12128 {
12129 if (TREE_CODE (op0) == BIT_NOT_EXPR)
12130 op0 = c_common_get_narrower (TREE_OPERAND (op0, 0), &unsignedp0);
12131 if (TREE_CODE (op1) == BIT_NOT_EXPR)
12132 op1 = c_common_get_narrower (TREE_OPERAND (op1, 0), &unsignedp1);
12133
12134 if (tree_fits_shwi_p (op0) || tree_fits_shwi_p (op1))
12135 {
12136 tree primop;
12137 HOST_WIDE_INT constant, mask;
12138 int unsignedp;
12139 unsigned int bits;
12140
12141 if (tree_fits_shwi_p (op0))
12142 {
12143 primop = op1;
12144 unsignedp = unsignedp1;
12145 constant = tree_to_shwi (op0);
12146 }
12147 else
12148 {
12149 primop = op0;
12150 unsignedp = unsignedp0;
12151 constant = tree_to_shwi (op1);
12152 }
12153
12154 bits = TYPE_PRECISION (TREE_TYPE (primop));
12155 if (bits < TYPE_PRECISION (result_type)
12156 && bits < HOST_BITS_PER_LONG && unsignedp)
12157 {
12158 mask = HOST_WIDE_INT_M1U << bits;
12159 if ((mask & constant) != mask)
12160 {
12161 if (constant == 0)
12162 warning_at (location, OPT_Wsign_compare,
12163 "promoted ~unsigned is always non-zero");
12164 else
12165 warning_at (location, OPT_Wsign_compare,
12166 "comparison of promoted ~unsigned with constant");
12167 }
12168 }
12169 }
12170 else if (unsignedp0 && unsignedp1
12171 && (TYPE_PRECISION (TREE_TYPE (op0))
12172 < TYPE_PRECISION (result_type))
12173 && (TYPE_PRECISION (TREE_TYPE (op1))
12174 < TYPE_PRECISION (result_type)))
12175 warning_at (location, OPT_Wsign_compare,
12176 "comparison of promoted ~unsigned with unsigned");
12177 }
12178 }
12179
12180 /* RESULT_TYPE is the result of converting TYPE1 and TYPE2 to a common
12181 type via c_common_type. If -Wdouble-promotion is in use, and the
12182 conditions for warning have been met, issue a warning. GMSGID is
12183 the warning message. It must have two %T specifiers for the type
12184 that was converted (generally "float") and the type to which it was
12185 converted (generally "double), respectively. LOC is the location
12186 to which the awrning should refer. */
12187
12188 void
12189 do_warn_double_promotion (tree result_type, tree type1, tree type2,
12190 const char *gmsgid, location_t loc)
12191 {
12192 tree source_type;
12193
12194 if (!warn_double_promotion)
12195 return;
12196 /* If the conversion will not occur at run-time, there is no need to
12197 warn about it. */
12198 if (c_inhibit_evaluation_warnings)
12199 return;
12200 if (TYPE_MAIN_VARIANT (result_type) != double_type_node
12201 && TYPE_MAIN_VARIANT (result_type) != complex_double_type_node)
12202 return;
12203 if (TYPE_MAIN_VARIANT (type1) == float_type_node
12204 || TYPE_MAIN_VARIANT (type1) == complex_float_type_node)
12205 source_type = type1;
12206 else if (TYPE_MAIN_VARIANT (type2) == float_type_node
12207 || TYPE_MAIN_VARIANT (type2) == complex_float_type_node)
12208 source_type = type2;
12209 else
12210 return;
12211 warning_at (loc, OPT_Wdouble_promotion, gmsgid, source_type, result_type);
12212 }
12213
12214 /* Possibly warn about unused parameters. */
12215
12216 void
12217 do_warn_unused_parameter (tree fn)
12218 {
12219 tree decl;
12220
12221 for (decl = DECL_ARGUMENTS (fn);
12222 decl; decl = DECL_CHAIN (decl))
12223 if (!TREE_USED (decl) && TREE_CODE (decl) == PARM_DECL
12224 && DECL_NAME (decl) && !DECL_ARTIFICIAL (decl)
12225 && !TREE_NO_WARNING (decl))
12226 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wunused_parameter,
12227 "unused parameter %qD", decl);
12228 }
12229
12230
12231 /* Setup a TYPE_DECL node as a typedef representation.
12232
12233 X is a TYPE_DECL for a typedef statement. Create a brand new
12234 ..._TYPE node (which will be just a variant of the existing
12235 ..._TYPE node with identical properties) and then install X
12236 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
12237
12238 The whole point here is to end up with a situation where each
12239 and every ..._TYPE node the compiler creates will be uniquely
12240 associated with AT MOST one node representing a typedef name.
12241 This way, even though the compiler substitutes corresponding
12242 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
12243 early on, later parts of the compiler can always do the reverse
12244 translation and get back the corresponding typedef name. For
12245 example, given:
12246
12247 typedef struct S MY_TYPE;
12248 MY_TYPE object;
12249
12250 Later parts of the compiler might only know that `object' was of
12251 type `struct S' if it were not for code just below. With this
12252 code however, later parts of the compiler see something like:
12253
12254 struct S' == struct S
12255 typedef struct S' MY_TYPE;
12256 struct S' object;
12257
12258 And they can then deduce (from the node for type struct S') that
12259 the original object declaration was:
12260
12261 MY_TYPE object;
12262
12263 Being able to do this is important for proper support of protoize,
12264 and also for generating precise symbolic debugging information
12265 which takes full account of the programmer's (typedef) vocabulary.
12266
12267 Obviously, we don't want to generate a duplicate ..._TYPE node if
12268 the TYPE_DECL node that we are now processing really represents a
12269 standard built-in type. */
12270
12271 void
12272 set_underlying_type (tree x)
12273 {
12274 if (x == error_mark_node)
12275 return;
12276 if (DECL_IS_BUILTIN (x) && TREE_CODE (TREE_TYPE (x)) != ARRAY_TYPE)
12277 {
12278 if (TYPE_NAME (TREE_TYPE (x)) == 0)
12279 TYPE_NAME (TREE_TYPE (x)) = x;
12280 }
12281 else if (TREE_TYPE (x) != error_mark_node
12282 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
12283 {
12284 tree tt = TREE_TYPE (x);
12285 DECL_ORIGINAL_TYPE (x) = tt;
12286 tt = build_variant_type_copy (tt);
12287 TYPE_STUB_DECL (tt) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
12288 TYPE_NAME (tt) = x;
12289 TREE_USED (tt) = TREE_USED (x);
12290 TREE_TYPE (x) = tt;
12291 }
12292 }
12293
12294 /* Record the types used by the current global variable declaration
12295 being parsed, so that we can decide later to emit their debug info.
12296 Those types are in types_used_by_cur_var_decl, and we are going to
12297 store them in the types_used_by_vars_hash hash table.
12298 DECL is the declaration of the global variable that has been parsed. */
12299
12300 void
12301 record_types_used_by_current_var_decl (tree decl)
12302 {
12303 gcc_assert (decl && DECL_P (decl) && TREE_STATIC (decl));
12304
12305 while (types_used_by_cur_var_decl && !types_used_by_cur_var_decl->is_empty ())
12306 {
12307 tree type = types_used_by_cur_var_decl->pop ();
12308 types_used_by_var_decl_insert (type, decl);
12309 }
12310 }
12311
12312 /* If DECL is a typedef that is declared in the current function,
12313 record it for the purpose of -Wunused-local-typedefs. */
12314
12315 void
12316 record_locally_defined_typedef (tree decl)
12317 {
12318 struct c_language_function *l;
12319
12320 if (!warn_unused_local_typedefs
12321 || cfun == NULL
12322 /* if this is not a locally defined typedef then we are not
12323 interested. */
12324 || !is_typedef_decl (decl)
12325 || !decl_function_context (decl))
12326 return;
12327
12328 l = (struct c_language_function *) cfun->language;
12329 vec_safe_push (l->local_typedefs, decl);
12330 }
12331
12332 /* If T is a TYPE_DECL declared locally, mark it as used. */
12333
12334 void
12335 maybe_record_typedef_use (tree t)
12336 {
12337 if (!is_typedef_decl (t))
12338 return;
12339
12340 TREE_USED (t) = true;
12341 }
12342
12343 /* Warn if there are some unused locally defined typedefs in the
12344 current function. */
12345
12346 void
12347 maybe_warn_unused_local_typedefs (void)
12348 {
12349 int i;
12350 tree decl;
12351 /* The number of times we have emitted -Wunused-local-typedefs
12352 warnings. If this is different from errorcount, that means some
12353 unrelated errors have been issued. In which case, we'll avoid
12354 emitting "unused-local-typedefs" warnings. */
12355 static int unused_local_typedefs_warn_count;
12356 struct c_language_function *l;
12357
12358 if (cfun == NULL)
12359 return;
12360
12361 if ((l = (struct c_language_function *) cfun->language) == NULL)
12362 return;
12363
12364 if (warn_unused_local_typedefs
12365 && errorcount == unused_local_typedefs_warn_count)
12366 {
12367 FOR_EACH_VEC_SAFE_ELT (l->local_typedefs, i, decl)
12368 if (!TREE_USED (decl))
12369 warning_at (DECL_SOURCE_LOCATION (decl),
12370 OPT_Wunused_local_typedefs,
12371 "typedef %qD locally defined but not used", decl);
12372 unused_local_typedefs_warn_count = errorcount;
12373 }
12374
12375 vec_free (l->local_typedefs);
12376 }
12377
12378 /* Warn about boolean expression compared with an integer value different
12379 from true/false. Warns also e.g. about "(i1 == i2) == 2".
12380 LOC is the location of the comparison, CODE is its code, OP0 and OP1
12381 are the operands of the comparison. The caller must ensure that
12382 either operand is a boolean expression. */
12383
12384 void
12385 maybe_warn_bool_compare (location_t loc, enum tree_code code, tree op0,
12386 tree op1)
12387 {
12388 if (TREE_CODE_CLASS (code) != tcc_comparison)
12389 return;
12390
12391 tree f, cst;
12392 if (f = fold_for_warn (op0),
12393 TREE_CODE (f) == INTEGER_CST)
12394 cst = op0 = f;
12395 else if (f = fold_for_warn (op1),
12396 TREE_CODE (f) == INTEGER_CST)
12397 cst = op1 = f;
12398 else
12399 return;
12400
12401 if (!integer_zerop (cst) && !integer_onep (cst))
12402 {
12403 int sign = (TREE_CODE (op0) == INTEGER_CST
12404 ? tree_int_cst_sgn (cst) : -tree_int_cst_sgn (cst));
12405 if (code == EQ_EXPR
12406 || ((code == GT_EXPR || code == GE_EXPR) && sign < 0)
12407 || ((code == LT_EXPR || code == LE_EXPR) && sign > 0))
12408 warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
12409 "with boolean expression is always false", cst);
12410 else
12411 warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
12412 "with boolean expression is always true", cst);
12413 }
12414 else if (integer_zerop (cst) || integer_onep (cst))
12415 {
12416 /* If the non-constant operand isn't of a boolean type, we
12417 don't want to warn here. */
12418 tree noncst = TREE_CODE (op0) == INTEGER_CST ? op1 : op0;
12419 /* Handle booleans promoted to integers. */
12420 if (bool_promoted_to_int_p (noncst))
12421 /* Warn. */;
12422 else if (TREE_CODE (TREE_TYPE (noncst)) != BOOLEAN_TYPE
12423 && !truth_value_p (TREE_CODE (noncst)))
12424 return;
12425 /* Do some magic to get the right diagnostics. */
12426 bool flag = TREE_CODE (op0) == INTEGER_CST;
12427 flag = integer_zerop (cst) ? flag : !flag;
12428 if ((code == GE_EXPR && !flag) || (code == LE_EXPR && flag))
12429 warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
12430 "with boolean expression is always true", cst);
12431 else if ((code == LT_EXPR && !flag) || (code == GT_EXPR && flag))
12432 warning_at (loc, OPT_Wbool_compare, "comparison of constant %qE "
12433 "with boolean expression is always false", cst);
12434 }
12435 }
12436
12437 /* Warn if signed left shift overflows. We don't warn
12438 about left-shifting 1 into the sign bit in C++14; cf.
12439 <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3367.html#1457>
12440 LOC is a location of the shift; OP0 and OP1 are the operands.
12441 Return true if an overflow is detected, false otherwise. */
12442
12443 bool
12444 maybe_warn_shift_overflow (location_t loc, tree op0, tree op1)
12445 {
12446 if (TREE_CODE (op0) != INTEGER_CST
12447 || TREE_CODE (op1) != INTEGER_CST)
12448 return false;
12449
12450 tree type0 = TREE_TYPE (op0);
12451 unsigned int prec0 = TYPE_PRECISION (type0);
12452
12453 /* Left-hand operand must be signed. */
12454 if (TYPE_UNSIGNED (type0))
12455 return false;
12456
12457 unsigned int min_prec = (wi::min_precision (op0, SIGNED)
12458 + TREE_INT_CST_LOW (op1));
12459 /* Handle the case of left-shifting 1 into the sign bit.
12460 * However, shifting 1 _out_ of the sign bit, as in
12461 * INT_MIN << 1, is considered an overflow.
12462 */
12463 if (!tree_int_cst_sign_bit(op0) && min_prec == prec0 + 1)
12464 {
12465 /* Never warn for C++14 onwards. */
12466 if (cxx_dialect >= cxx14)
12467 return false;
12468 /* Otherwise only if -Wshift-overflow=2. But return
12469 true to signal an overflow for the sake of integer
12470 constant expressions. */
12471 if (warn_shift_overflow < 2)
12472 return true;
12473 }
12474
12475 bool overflowed = min_prec > prec0;
12476 if (overflowed && c_inhibit_evaluation_warnings == 0)
12477 warning_at (loc, OPT_Wshift_overflow_,
12478 "result of %qE requires %u bits to represent, "
12479 "but %qT only has %u bits",
12480 build2_loc (loc, LSHIFT_EXPR, type0, op0, op1),
12481 min_prec, type0, prec0);
12482
12483 return overflowed;
12484 }
12485
12486 /* The C and C++ parsers both use vectors to hold function arguments.
12487 For efficiency, we keep a cache of unused vectors. This is the
12488 cache. */
12489
12490 typedef vec<tree, va_gc> *tree_gc_vec;
12491 static GTY((deletable)) vec<tree_gc_vec, va_gc> *tree_vector_cache;
12492
12493 /* Return a new vector from the cache. If the cache is empty,
12494 allocate a new vector. These vectors are GC'ed, so it is OK if the
12495 pointer is not released.. */
12496
12497 vec<tree, va_gc> *
12498 make_tree_vector (void)
12499 {
12500 if (tree_vector_cache && !tree_vector_cache->is_empty ())
12501 return tree_vector_cache->pop ();
12502 else
12503 {
12504 /* Passing 0 to vec::alloc returns NULL, and our callers require
12505 that we always return a non-NULL value. The vector code uses
12506 4 when growing a NULL vector, so we do too. */
12507 vec<tree, va_gc> *v;
12508 vec_alloc (v, 4);
12509 return v;
12510 }
12511 }
12512
12513 /* Release a vector of trees back to the cache. */
12514
12515 void
12516 release_tree_vector (vec<tree, va_gc> *vec)
12517 {
12518 if (vec != NULL)
12519 {
12520 vec->truncate (0);
12521 vec_safe_push (tree_vector_cache, vec);
12522 }
12523 }
12524
12525 /* Get a new tree vector holding a single tree. */
12526
12527 vec<tree, va_gc> *
12528 make_tree_vector_single (tree t)
12529 {
12530 vec<tree, va_gc> *ret = make_tree_vector ();
12531 ret->quick_push (t);
12532 return ret;
12533 }
12534
12535 /* Get a new tree vector of the TREE_VALUEs of a TREE_LIST chain. */
12536
12537 vec<tree, va_gc> *
12538 make_tree_vector_from_list (tree list)
12539 {
12540 vec<tree, va_gc> *ret = make_tree_vector ();
12541 for (; list; list = TREE_CHAIN (list))
12542 vec_safe_push (ret, TREE_VALUE (list));
12543 return ret;
12544 }
12545
12546 /* Get a new tree vector which is a copy of an existing one. */
12547
12548 vec<tree, va_gc> *
12549 make_tree_vector_copy (const vec<tree, va_gc> *orig)
12550 {
12551 vec<tree, va_gc> *ret;
12552 unsigned int ix;
12553 tree t;
12554
12555 ret = make_tree_vector ();
12556 vec_safe_reserve (ret, vec_safe_length (orig));
12557 FOR_EACH_VEC_SAFE_ELT (orig, ix, t)
12558 ret->quick_push (t);
12559 return ret;
12560 }
12561
12562 /* Return true if KEYWORD starts a type specifier. */
12563
12564 bool
12565 keyword_begins_type_specifier (enum rid keyword)
12566 {
12567 switch (keyword)
12568 {
12569 case RID_AUTO_TYPE:
12570 case RID_INT:
12571 case RID_CHAR:
12572 case RID_FLOAT:
12573 case RID_DOUBLE:
12574 case RID_VOID:
12575 case RID_UNSIGNED:
12576 case RID_LONG:
12577 case RID_SHORT:
12578 case RID_SIGNED:
12579 CASE_RID_FLOATN_NX:
12580 case RID_DFLOAT32:
12581 case RID_DFLOAT64:
12582 case RID_DFLOAT128:
12583 case RID_FRACT:
12584 case RID_ACCUM:
12585 case RID_BOOL:
12586 case RID_WCHAR:
12587 case RID_CHAR16:
12588 case RID_CHAR32:
12589 case RID_SAT:
12590 case RID_COMPLEX:
12591 case RID_TYPEOF:
12592 case RID_STRUCT:
12593 case RID_CLASS:
12594 case RID_UNION:
12595 case RID_ENUM:
12596 return true;
12597 default:
12598 if (keyword >= RID_FIRST_INT_N
12599 && keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
12600 && int_n_enabled_p[keyword-RID_FIRST_INT_N])
12601 return true;
12602 return false;
12603 }
12604 }
12605
12606 /* Return true if KEYWORD names a type qualifier. */
12607
12608 bool
12609 keyword_is_type_qualifier (enum rid keyword)
12610 {
12611 switch (keyword)
12612 {
12613 case RID_CONST:
12614 case RID_VOLATILE:
12615 case RID_RESTRICT:
12616 case RID_ATOMIC:
12617 return true;
12618 default:
12619 return false;
12620 }
12621 }
12622
12623 /* Return true if KEYWORD names a storage class specifier.
12624
12625 RID_TYPEDEF is not included in this list despite `typedef' being
12626 listed in C99 6.7.1.1. 6.7.1.3 indicates that `typedef' is listed as
12627 such for syntactic convenience only. */
12628
12629 bool
12630 keyword_is_storage_class_specifier (enum rid keyword)
12631 {
12632 switch (keyword)
12633 {
12634 case RID_STATIC:
12635 case RID_EXTERN:
12636 case RID_REGISTER:
12637 case RID_AUTO:
12638 case RID_MUTABLE:
12639 case RID_THREAD:
12640 return true;
12641 default:
12642 return false;
12643 }
12644 }
12645
12646 /* Return true if KEYWORD names a function-specifier [dcl.fct.spec]. */
12647
12648 static bool
12649 keyword_is_function_specifier (enum rid keyword)
12650 {
12651 switch (keyword)
12652 {
12653 case RID_INLINE:
12654 case RID_NORETURN:
12655 case RID_VIRTUAL:
12656 case RID_EXPLICIT:
12657 return true;
12658 default:
12659 return false;
12660 }
12661 }
12662
12663 /* Return true if KEYWORD names a decl-specifier [dcl.spec] or a
12664 declaration-specifier (C99 6.7). */
12665
12666 bool
12667 keyword_is_decl_specifier (enum rid keyword)
12668 {
12669 if (keyword_is_storage_class_specifier (keyword)
12670 || keyword_is_type_qualifier (keyword)
12671 || keyword_is_function_specifier (keyword))
12672 return true;
12673
12674 switch (keyword)
12675 {
12676 case RID_TYPEDEF:
12677 case RID_FRIEND:
12678 case RID_CONSTEXPR:
12679 return true;
12680 default:
12681 return false;
12682 }
12683 }
12684
12685 /* Initialize language-specific-bits of tree_contains_struct. */
12686
12687 void
12688 c_common_init_ts (void)
12689 {
12690 MARK_TS_TYPED (C_MAYBE_CONST_EXPR);
12691 MARK_TS_TYPED (EXCESS_PRECISION_EXPR);
12692 MARK_TS_TYPED (ARRAY_NOTATION_REF);
12693 }
12694
12695 /* Build a user-defined numeric literal out of an integer constant type VALUE
12696 with identifier SUFFIX. */
12697
12698 tree
12699 build_userdef_literal (tree suffix_id, tree value,
12700 enum overflow_type overflow, tree num_string)
12701 {
12702 tree literal = make_node (USERDEF_LITERAL);
12703 USERDEF_LITERAL_SUFFIX_ID (literal) = suffix_id;
12704 USERDEF_LITERAL_VALUE (literal) = value;
12705 USERDEF_LITERAL_OVERFLOW (literal) = overflow;
12706 USERDEF_LITERAL_NUM_STRING (literal) = num_string;
12707 return literal;
12708 }
12709
12710 /* For vector[index], convert the vector to an array of the underlying type.
12711 Return true if the resulting ARRAY_REF should not be an lvalue. */
12712
12713 bool
12714 convert_vector_to_array_for_subscript (location_t loc,
12715 tree *vecp, tree index)
12716 {
12717 bool ret = false;
12718 if (VECTOR_TYPE_P (TREE_TYPE (*vecp)))
12719 {
12720 tree type = TREE_TYPE (*vecp);
12721
12722 ret = !lvalue_p (*vecp);
12723
12724 if (TREE_CODE (index) == INTEGER_CST)
12725 if (!tree_fits_uhwi_p (index)
12726 || tree_to_uhwi (index) >= TYPE_VECTOR_SUBPARTS (type))
12727 warning_at (loc, OPT_Warray_bounds, "index value is out of bound");
12728
12729 /* We are building an ARRAY_REF so mark the vector as addressable
12730 to not run into the gimplifiers premature setting of DECL_GIMPLE_REG_P
12731 for function parameters. */
12732 c_common_mark_addressable_vec (*vecp);
12733
12734 *vecp = build1 (VIEW_CONVERT_EXPR,
12735 build_array_type_nelts (TREE_TYPE (type),
12736 TYPE_VECTOR_SUBPARTS (type)),
12737 *vecp);
12738 }
12739 return ret;
12740 }
12741
12742 /* Determine which of the operands, if any, is a scalar that needs to be
12743 converted to a vector, for the range of operations. */
12744 enum stv_conv
12745 scalar_to_vector (location_t loc, enum tree_code code, tree op0, tree op1,
12746 bool complain)
12747 {
12748 tree type0 = TREE_TYPE (op0);
12749 tree type1 = TREE_TYPE (op1);
12750 bool integer_only_op = false;
12751 enum stv_conv ret = stv_firstarg;
12752
12753 gcc_assert (VECTOR_TYPE_P (type0) || VECTOR_TYPE_P (type1));
12754 switch (code)
12755 {
12756 /* Most GENERIC binary expressions require homogeneous arguments.
12757 LSHIFT_EXPR and RSHIFT_EXPR are exceptions and accept a first
12758 argument that is a vector and a second one that is a scalar, so
12759 we never return stv_secondarg for them. */
12760 case RSHIFT_EXPR:
12761 case LSHIFT_EXPR:
12762 if (TREE_CODE (type0) == INTEGER_TYPE
12763 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
12764 {
12765 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0, false))
12766 {
12767 if (complain)
12768 error_at (loc, "conversion of scalar %qT to vector %qT "
12769 "involves truncation", type0, type1);
12770 return stv_error;
12771 }
12772 else
12773 return stv_firstarg;
12774 }
12775 break;
12776
12777 case BIT_IOR_EXPR:
12778 case BIT_XOR_EXPR:
12779 case BIT_AND_EXPR:
12780 integer_only_op = true;
12781 /* fall through */
12782
12783 case VEC_COND_EXPR:
12784
12785 case PLUS_EXPR:
12786 case MINUS_EXPR:
12787 case MULT_EXPR:
12788 case TRUNC_DIV_EXPR:
12789 case CEIL_DIV_EXPR:
12790 case FLOOR_DIV_EXPR:
12791 case ROUND_DIV_EXPR:
12792 case EXACT_DIV_EXPR:
12793 case TRUNC_MOD_EXPR:
12794 case FLOOR_MOD_EXPR:
12795 case RDIV_EXPR:
12796 case EQ_EXPR:
12797 case NE_EXPR:
12798 case LE_EXPR:
12799 case GE_EXPR:
12800 case LT_EXPR:
12801 case GT_EXPR:
12802 /* What about UNLT_EXPR? */
12803 if (VECTOR_TYPE_P (type0))
12804 {
12805 ret = stv_secondarg;
12806 std::swap (type0, type1);
12807 std::swap (op0, op1);
12808 }
12809
12810 if (TREE_CODE (type0) == INTEGER_TYPE
12811 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
12812 {
12813 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0, false))
12814 {
12815 if (complain)
12816 error_at (loc, "conversion of scalar %qT to vector %qT "
12817 "involves truncation", type0, type1);
12818 return stv_error;
12819 }
12820 return ret;
12821 }
12822 else if (!integer_only_op
12823 /* Allow integer --> real conversion if safe. */
12824 && (TREE_CODE (type0) == REAL_TYPE
12825 || TREE_CODE (type0) == INTEGER_TYPE)
12826 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (type1)))
12827 {
12828 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0, false))
12829 {
12830 if (complain)
12831 error_at (loc, "conversion of scalar %qT to vector %qT "
12832 "involves truncation", type0, type1);
12833 return stv_error;
12834 }
12835 return ret;
12836 }
12837 default:
12838 break;
12839 }
12840
12841 return stv_nothing;
12842 }
12843
12844 /* Return the alignment of std::max_align_t.
12845
12846 [support.types.layout] The type max_align_t is a POD type whose alignment
12847 requirement is at least as great as that of every scalar type, and whose
12848 alignment requirement is supported in every context. */
12849
12850 unsigned
12851 max_align_t_align ()
12852 {
12853 return MAX (TYPE_ALIGN (long_long_integer_type_node),
12854 TYPE_ALIGN (long_double_type_node));
12855 }
12856
12857 /* Return true iff ALIGN is an integral constant that is a fundamental
12858 alignment, as defined by [basic.align] in the c++-11
12859 specifications.
12860
12861 That is:
12862
12863 [A fundamental alignment is represented by an alignment less than or
12864 equal to the greatest alignment supported by the implementation
12865 in all contexts, which is equal to alignof(max_align_t)]. */
12866
12867 bool
12868 cxx_fundamental_alignment_p (unsigned align)
12869 {
12870 return (align <= max_align_t_align ());
12871 }
12872
12873 /* Return true if T is a pointer to a zero-sized aggregate. */
12874
12875 bool
12876 pointer_to_zero_sized_aggr_p (tree t)
12877 {
12878 if (!POINTER_TYPE_P (t))
12879 return false;
12880 t = TREE_TYPE (t);
12881 return (TYPE_SIZE (t) && integer_zerop (TYPE_SIZE (t)));
12882 }
12883
12884 /* For an EXPR of a FUNCTION_TYPE that references a GCC built-in function
12885 with no library fallback or for an ADDR_EXPR whose operand is such type
12886 issues an error pointing to the location LOC.
12887 Returns true when the expression has been diagnosed and false
12888 otherwise. */
12889 bool
12890 reject_gcc_builtin (const_tree expr, location_t loc /* = UNKNOWN_LOCATION */)
12891 {
12892 if (TREE_CODE (expr) == ADDR_EXPR)
12893 expr = TREE_OPERAND (expr, 0);
12894
12895 if (TREE_TYPE (expr)
12896 && TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
12897 && TREE_CODE (expr) == FUNCTION_DECL
12898 /* The intersection of DECL_BUILT_IN and DECL_IS_BUILTIN avoids
12899 false positives for user-declared built-ins such as abs or
12900 strlen, and for C++ operators new and delete.
12901 The c_decl_implicit() test avoids false positives for implicitly
12902 declared built-ins with library fallbacks (such as abs). */
12903 && DECL_BUILT_IN (expr)
12904 && DECL_IS_BUILTIN (expr)
12905 && !c_decl_implicit (expr)
12906 && !DECL_ASSEMBLER_NAME_SET_P (expr))
12907 {
12908 if (loc == UNKNOWN_LOCATION)
12909 loc = EXPR_LOC_OR_LOC (expr, input_location);
12910
12911 /* Reject arguments that are built-in functions with
12912 no library fallback. */
12913 error_at (loc, "built-in function %qE must be directly called", expr);
12914
12915 return true;
12916 }
12917
12918 return false;
12919 }
12920
12921 /* If we're creating an if-else-if condition chain, first see if we
12922 already have this COND in the CHAIN. If so, warn and don't add COND
12923 into the vector, otherwise add the COND there. LOC is the location
12924 of COND. */
12925
12926 void
12927 warn_duplicated_cond_add_or_warn (location_t loc, tree cond, vec<tree> **chain)
12928 {
12929 /* No chain has been created yet. Do nothing. */
12930 if (*chain == NULL)
12931 return;
12932
12933 if (TREE_SIDE_EFFECTS (cond))
12934 {
12935 /* Uh-oh! This condition has a side-effect, thus invalidates
12936 the whole chain. */
12937 delete *chain;
12938 *chain = NULL;
12939 return;
12940 }
12941
12942 unsigned int ix;
12943 tree t;
12944 bool found = false;
12945 FOR_EACH_VEC_ELT (**chain, ix, t)
12946 if (operand_equal_p (cond, t, 0))
12947 {
12948 if (warning_at (loc, OPT_Wduplicated_cond,
12949 "duplicated %<if%> condition"))
12950 inform (EXPR_LOCATION (t), "previously used here");
12951 found = true;
12952 break;
12953 }
12954
12955 if (!found
12956 && !CONSTANT_CLASS_P (cond)
12957 /* Don't infinitely grow the chain. */
12958 && (*chain)->length () < 512)
12959 (*chain)->safe_push (cond);
12960 }
12961
12962 /* Check if array size calculations overflow or if the array covers more
12963 than half of the address space. Return true if the size of the array
12964 is valid, false otherwise. TYPE is the type of the array and NAME is
12965 the name of the array, or NULL_TREE for unnamed arrays. */
12966
12967 bool
12968 valid_array_size_p (location_t loc, tree type, tree name)
12969 {
12970 if (type != error_mark_node
12971 && COMPLETE_TYPE_P (type)
12972 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
12973 && !valid_constant_size_p (TYPE_SIZE_UNIT (type)))
12974 {
12975 if (name)
12976 error_at (loc, "size of array %qE is too large", name);
12977 else
12978 error_at (loc, "size of unnamed array is too large");
12979 return false;
12980 }
12981 return true;
12982 }
12983
12984 /* Read SOURCE_DATE_EPOCH from environment to have a deterministic
12985 timestamp to replace embedded current dates to get reproducible
12986 results. Returns -1 if SOURCE_DATE_EPOCH is not defined. */
12987
12988 time_t
12989 cb_get_source_date_epoch (cpp_reader *pfile ATTRIBUTE_UNUSED)
12990 {
12991 char *source_date_epoch;
12992 int64_t epoch;
12993 char *endptr;
12994
12995 source_date_epoch = getenv ("SOURCE_DATE_EPOCH");
12996 if (!source_date_epoch)
12997 return (time_t) -1;
12998
12999 errno = 0;
13000 #if defined(INT64_T_IS_LONG)
13001 epoch = strtol (source_date_epoch, &endptr, 10);
13002 #else
13003 epoch = strtoll (source_date_epoch, &endptr, 10);
13004 #endif
13005 if (errno != 0 || endptr == source_date_epoch || *endptr != '\0'
13006 || epoch < 0 || epoch > MAX_SOURCE_DATE_EPOCH)
13007 {
13008 error_at (input_location, "environment variable SOURCE_DATE_EPOCH must "
13009 "expand to a non-negative integer less than or equal to %wd",
13010 MAX_SOURCE_DATE_EPOCH);
13011 return (time_t) -1;
13012 }
13013
13014 return (time_t) epoch;
13015 }
13016
13017 /* Callback for libcpp for offering spelling suggestions for misspelled
13018 directives. GOAL is an unrecognized string; CANDIDATES is a
13019 NULL-terminated array of candidate strings. Return the closest
13020 match to GOAL within CANDIDATES, or NULL if none are good
13021 suggestions. */
13022
13023 const char *
13024 cb_get_suggestion (cpp_reader *, const char *goal,
13025 const char *const *candidates)
13026 {
13027 best_match<const char *, const char *> bm (goal);
13028 while (*candidates)
13029 bm.consider (*candidates++);
13030 return bm.get_best_meaningful_candidate ();
13031 }
13032
13033 /* Check and possibly warn if two declarations have contradictory
13034 attributes, such as always_inline vs. noinline. */
13035
13036 bool
13037 diagnose_mismatched_attributes (tree olddecl, tree newdecl)
13038 {
13039 bool warned = false;
13040
13041 tree a1 = lookup_attribute ("optimize", DECL_ATTRIBUTES (olddecl));
13042 tree a2 = lookup_attribute ("optimize", DECL_ATTRIBUTES (newdecl));
13043 /* An optimization attribute applied on a declaration after the
13044 definition is likely not what the user wanted. */
13045 if (a2 != NULL_TREE
13046 && DECL_SAVED_TREE (olddecl) != NULL_TREE
13047 && (a1 == NULL_TREE || !attribute_list_equal (a1, a2)))
13048 warned |= warning (OPT_Wattributes,
13049 "optimization attribute on %qD follows "
13050 "definition but the attribute doesn%'t match",
13051 newdecl);
13052
13053 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
13054 if (DECL_DECLARED_INLINE_P (newdecl)
13055 && DECL_UNINLINABLE (olddecl)
13056 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
13057 warned |= warning (OPT_Wattributes, "inline declaration of %qD follows "
13058 "declaration with attribute noinline", newdecl);
13059 else if (DECL_DECLARED_INLINE_P (olddecl)
13060 && DECL_UNINLINABLE (newdecl)
13061 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
13062 warned |= warning (OPT_Wattributes, "declaration of %q+D with attribute "
13063 "noinline follows inline declaration ", newdecl);
13064 else if (lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl))
13065 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (olddecl)))
13066 warned |= warning (OPT_Wattributes, "declaration of %q+D with attribute "
13067 "%qs follows declaration with attribute %qs",
13068 newdecl, "noinline", "always_inline");
13069 else if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (newdecl))
13070 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
13071 warned |= warning (OPT_Wattributes, "declaration of %q+D with attribute "
13072 "%qs follows declaration with attribute %qs",
13073 newdecl, "always_inline", "noinline");
13074 else if (lookup_attribute ("cold", DECL_ATTRIBUTES (newdecl))
13075 && lookup_attribute ("hot", DECL_ATTRIBUTES (olddecl)))
13076 warned |= warning (OPT_Wattributes, "declaration of %q+D with attribute "
13077 "%qs follows declaration with attribute %qs",
13078 newdecl, "cold", "hot");
13079 else if (lookup_attribute ("hot", DECL_ATTRIBUTES (newdecl))
13080 && lookup_attribute ("cold", DECL_ATTRIBUTES (olddecl)))
13081 warned |= warning (OPT_Wattributes, "declaration of %q+D with attribute "
13082 "%qs follows declaration with attribute %qs",
13083 newdecl, "hot", "cold");
13084 return warned;
13085 }
13086
13087 #include "gt-c-family-c-common.h"