* asan.c (handle_builtin_alloca): Deal with all alloca variants.
[official-gcc.git] / gcc / c-family / c-common.c
blob8f36c77967faaa942808549264fc6721fa940d5a
1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992-2017 Free Software Foundation, Inc.
4 This file is part of GCC.
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.
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.
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/>. */
20 #define GCC_C_COMMON_C
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 "memmodel.h"
29 #include "c-common.h"
30 #include "gimple-expr.h"
31 #include "tm_p.h"
32 #include "stringpool.h"
33 #include "cgraph.h"
34 #include "diagnostic.h"
35 #include "intl.h"
36 #include "stor-layout.h"
37 #include "calls.h"
38 #include "attribs.h"
39 #include "varasm.h"
40 #include "trans-mem.h"
41 #include "c-objc.h"
42 #include "common/common-target.h"
43 #include "langhooks.h"
44 #include "tree-inline.h"
45 #include "toplev.h"
46 #include "tree-iterator.h"
47 #include "opts.h"
48 #include "gimplify.h"
49 #include "substring-locations.h"
50 #include "spellcheck.h"
52 cpp_reader *parse_in; /* Declared in c-pragma.h. */
54 /* Mode used to build pointers (VOIDmode means ptr_mode). */
56 machine_mode c_default_pointer_mode = VOIDmode;
58 /* The following symbols are subsumed in the c_global_trees array, and
59 listed here individually for documentation purposes.
61 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
63 tree short_integer_type_node;
64 tree long_integer_type_node;
65 tree long_long_integer_type_node;
67 tree short_unsigned_type_node;
68 tree long_unsigned_type_node;
69 tree long_long_unsigned_type_node;
71 tree truthvalue_type_node;
72 tree truthvalue_false_node;
73 tree truthvalue_true_node;
75 tree ptrdiff_type_node;
77 tree unsigned_char_type_node;
78 tree signed_char_type_node;
79 tree wchar_type_node;
81 tree char16_type_node;
82 tree char32_type_node;
84 tree float_type_node;
85 tree double_type_node;
86 tree long_double_type_node;
88 tree complex_integer_type_node;
89 tree complex_float_type_node;
90 tree complex_double_type_node;
91 tree complex_long_double_type_node;
93 tree dfloat32_type_node;
94 tree dfloat64_type_node;
95 tree_dfloat128_type_node;
97 tree intQI_type_node;
98 tree intHI_type_node;
99 tree intSI_type_node;
100 tree intDI_type_node;
101 tree intTI_type_node;
103 tree unsigned_intQI_type_node;
104 tree unsigned_intHI_type_node;
105 tree unsigned_intSI_type_node;
106 tree unsigned_intDI_type_node;
107 tree unsigned_intTI_type_node;
109 tree widest_integer_literal_type_node;
110 tree widest_unsigned_literal_type_node;
112 Nodes for types `void *' and `const void *'.
114 tree ptr_type_node, const_ptr_type_node;
116 Nodes for types `char *' and `const char *'.
118 tree string_type_node, const_string_type_node;
120 Type `char[SOMENUMBER]'.
121 Used when an array of char is needed and the size is irrelevant.
123 tree char_array_type_node;
125 Type `wchar_t[SOMENUMBER]' or something like it.
126 Used when a wide string literal is created.
128 tree wchar_array_type_node;
130 Type `char16_t[SOMENUMBER]' or something like it.
131 Used when a UTF-16 string literal is created.
133 tree char16_array_type_node;
135 Type `char32_t[SOMENUMBER]' or something like it.
136 Used when a UTF-32 string literal is created.
138 tree char32_array_type_node;
140 Type `int ()' -- used for implicit declaration of functions.
142 tree default_function_type;
144 A VOID_TYPE node, packaged in a TREE_LIST.
146 tree void_list_node;
148 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
149 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
150 VAR_DECLS, but C++ does.)
152 tree function_name_decl_node;
153 tree pretty_function_name_decl_node;
154 tree c99_function_name_decl_node;
156 Stack of nested function name VAR_DECLs.
158 tree saved_function_name_decls;
162 tree c_global_trees[CTI_MAX];
164 /* Switches common to the C front ends. */
166 /* Nonzero means don't output line number information. */
168 char flag_no_line_commands;
170 /* Nonzero causes -E output not to be done, but directives such as
171 #define that have side effects are still obeyed. */
173 char flag_no_output;
175 /* Nonzero means dump macros in some fashion. */
177 char flag_dump_macros;
179 /* Nonzero means pass #include lines through to the output. */
181 char flag_dump_includes;
183 /* Nonzero means process PCH files while preprocessing. */
185 bool flag_pch_preprocess;
187 /* The file name to which we should write a precompiled header, or
188 NULL if no header will be written in this compile. */
190 const char *pch_file;
192 /* Nonzero if an ISO standard was selected. It rejects macros in the
193 user's namespace. */
194 int flag_iso;
196 /* C/ObjC language option variables. */
199 /* Nonzero means allow type mismatches in conditional expressions;
200 just make their values `void'. */
202 int flag_cond_mismatch;
204 /* Nonzero means enable C89 Amendment 1 features. */
206 int flag_isoc94;
208 /* Nonzero means use the ISO C99 (or C11) dialect of C. */
210 int flag_isoc99;
212 /* Nonzero means use the ISO C11 dialect of C. */
214 int flag_isoc11;
216 /* Nonzero means that we have builtin functions, and main is an int. */
218 int flag_hosted = 1;
221 /* ObjC language option variables. */
224 /* Tells the compiler that this is a special run. Do not perform any
225 compiling, instead we are to test some platform dependent features
226 and output a C header file with appropriate definitions. */
228 int print_struct_values;
230 /* Tells the compiler what is the constant string class for ObjC. */
232 const char *constant_string_class_name;
235 /* C++ language option variables. */
237 /* The reference version of the ABI for -Wabi. */
239 int warn_abi_version = -1;
241 /* Nonzero means generate separate instantiation control files and
242 juggle them at link time. */
244 int flag_use_repository;
246 /* The C++ dialect being used. Default set in c_common_post_options. */
248 enum cxx_dialect cxx_dialect = cxx_unset;
250 /* Maximum template instantiation depth. This limit exists to limit the
251 time it takes to notice excessively recursive template instantiations.
253 The default is lower than the 1024 recommended by the C++0x standard
254 because G++ runs out of stack before 1024 with highly recursive template
255 argument deduction substitution (g++.dg/cpp0x/enum11.C). */
257 int max_tinst_depth = 900;
259 /* The elements of `ridpointers' are identifier nodes for the reserved
260 type names and storage classes. It is indexed by a RID_... value. */
261 tree *ridpointers;
263 tree (*make_fname_decl) (location_t, tree, int);
265 /* Nonzero means don't warn about problems that occur when the code is
266 executed. */
267 int c_inhibit_evaluation_warnings;
269 /* Whether we are building a boolean conversion inside
270 convert_for_assignment, or some other late binary operation. If
271 build_binary_op is called for C (from code shared by C and C++) in
272 this case, then the operands have already been folded and the
273 result will not be folded again, so C_MAYBE_CONST_EXPR should not
274 be generated. */
275 bool in_late_binary_op;
277 /* Whether lexing has been completed, so subsequent preprocessor
278 errors should use the compiler's input_location. */
279 bool done_lexing = false;
281 /* Information about how a function name is generated. */
282 struct fname_var_t
284 tree *const decl; /* pointer to the VAR_DECL. */
285 const unsigned rid; /* RID number for the identifier. */
286 const int pretty; /* How pretty is it? */
289 /* The three ways of getting then name of the current function. */
291 const struct fname_var_t fname_vars[] =
293 /* C99 compliant __func__, must be first. */
294 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
295 /* GCC __FUNCTION__ compliant. */
296 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
297 /* GCC __PRETTY_FUNCTION__ compliant. */
298 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
299 {NULL, 0, 0},
302 /* Global visibility options. */
303 struct visibility_flags visibility_options;
305 static tree check_case_value (location_t, tree);
306 static bool check_case_bounds (location_t, tree, tree, tree *, tree *,
307 bool *);
310 static void check_nonnull_arg (void *, tree, unsigned HOST_WIDE_INT);
311 static bool nonnull_check_p (tree, unsigned HOST_WIDE_INT);
313 /* Reserved words. The third field is a mask: keywords are disabled
314 if they match the mask.
316 Masks for languages:
317 C --std=c89: D_C99 | D_CXXONLY | D_OBJC | D_CXX_OBJC
318 C --std=c99: D_CXXONLY | D_OBJC
319 ObjC is like C except that D_OBJC and D_CXX_OBJC are not set
320 C++ --std=c++98: D_CONLY | D_CXX11 | D_OBJC
321 C++ --std=c++11: D_CONLY | D_OBJC
322 ObjC++ is like C++ except that D_OBJC is not set
324 If -fno-asm is used, D_ASM is added to the mask. If
325 -fno-gnu-keywords is used, D_EXT is added. If -fno-asm and C in
326 C89 mode, D_EXT89 is added for both -fno-asm and -fno-gnu-keywords.
327 In C with -Wc++-compat, we warn if D_CXXWARN is set.
329 Note the complication of the D_CXX_OBJC keywords. These are
330 reserved words such as 'class'. In C++, 'class' is a reserved
331 word. In Objective-C++ it is too. In Objective-C, it is a
332 reserved word too, but only if it follows an '@' sign.
334 const struct c_common_resword c_common_reswords[] =
336 { "_Alignas", RID_ALIGNAS, D_CONLY },
337 { "_Alignof", RID_ALIGNOF, D_CONLY },
338 { "_Atomic", RID_ATOMIC, D_CONLY },
339 { "_Bool", RID_BOOL, D_CONLY },
340 { "_Complex", RID_COMPLEX, 0 },
341 { "_Cilk_spawn", RID_CILK_SPAWN, 0 },
342 { "_Cilk_sync", RID_CILK_SYNC, 0 },
343 { "_Cilk_for", RID_CILK_FOR, 0 },
344 { "_Imaginary", RID_IMAGINARY, D_CONLY },
345 { "_Float16", RID_FLOAT16, D_CONLY },
346 { "_Float32", RID_FLOAT32, D_CONLY },
347 { "_Float64", RID_FLOAT64, D_CONLY },
348 { "_Float128", RID_FLOAT128, D_CONLY },
349 { "_Float32x", RID_FLOAT32X, D_CONLY },
350 { "_Float64x", RID_FLOAT64X, D_CONLY },
351 { "_Float128x", RID_FLOAT128X, D_CONLY },
352 { "_Decimal32", RID_DFLOAT32, D_CONLY | D_EXT },
353 { "_Decimal64", RID_DFLOAT64, D_CONLY | D_EXT },
354 { "_Decimal128", RID_DFLOAT128, D_CONLY | D_EXT },
355 { "_Fract", RID_FRACT, D_CONLY | D_EXT },
356 { "_Accum", RID_ACCUM, D_CONLY | D_EXT },
357 { "_Sat", RID_SAT, D_CONLY | D_EXT },
358 { "_Static_assert", RID_STATIC_ASSERT, D_CONLY },
359 { "_Noreturn", RID_NORETURN, D_CONLY },
360 { "_Generic", RID_GENERIC, D_CONLY },
361 { "_Thread_local", RID_THREAD, D_CONLY },
362 { "__FUNCTION__", RID_FUNCTION_NAME, 0 },
363 { "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME, 0 },
364 { "__alignof", RID_ALIGNOF, 0 },
365 { "__alignof__", RID_ALIGNOF, 0 },
366 { "__asm", RID_ASM, 0 },
367 { "__asm__", RID_ASM, 0 },
368 { "__attribute", RID_ATTRIBUTE, 0 },
369 { "__attribute__", RID_ATTRIBUTE, 0 },
370 { "__auto_type", RID_AUTO_TYPE, D_CONLY },
371 { "__bases", RID_BASES, D_CXXONLY },
372 { "__builtin_addressof", RID_ADDRESSOF, D_CXXONLY },
373 { "__builtin_call_with_static_chain",
374 RID_BUILTIN_CALL_WITH_STATIC_CHAIN, D_CONLY },
375 { "__builtin_choose_expr", RID_CHOOSE_EXPR, D_CONLY },
376 { "__builtin_complex", RID_BUILTIN_COMPLEX, D_CONLY },
377 { "__builtin_launder", RID_BUILTIN_LAUNDER, D_CXXONLY },
378 { "__builtin_shuffle", RID_BUILTIN_SHUFFLE, 0 },
379 { "__builtin_offsetof", RID_OFFSETOF, 0 },
380 { "__builtin_types_compatible_p", RID_TYPES_COMPATIBLE_P, D_CONLY },
381 { "__builtin_va_arg", RID_VA_ARG, 0 },
382 { "__complex", RID_COMPLEX, 0 },
383 { "__complex__", RID_COMPLEX, 0 },
384 { "__const", RID_CONST, 0 },
385 { "__const__", RID_CONST, 0 },
386 { "__decltype", RID_DECLTYPE, D_CXXONLY },
387 { "__direct_bases", RID_DIRECT_BASES, D_CXXONLY },
388 { "__extension__", RID_EXTENSION, 0 },
389 { "__func__", RID_C99_FUNCTION_NAME, 0 },
390 { "__has_nothrow_assign", RID_HAS_NOTHROW_ASSIGN, D_CXXONLY },
391 { "__has_nothrow_constructor", RID_HAS_NOTHROW_CONSTRUCTOR, D_CXXONLY },
392 { "__has_nothrow_copy", RID_HAS_NOTHROW_COPY, D_CXXONLY },
393 { "__has_trivial_assign", RID_HAS_TRIVIAL_ASSIGN, D_CXXONLY },
394 { "__has_trivial_constructor", RID_HAS_TRIVIAL_CONSTRUCTOR, D_CXXONLY },
395 { "__has_trivial_copy", RID_HAS_TRIVIAL_COPY, D_CXXONLY },
396 { "__has_trivial_destructor", RID_HAS_TRIVIAL_DESTRUCTOR, D_CXXONLY },
397 { "__has_unique_object_representations", RID_HAS_UNIQUE_OBJ_REPRESENTATIONS,
398 D_CXXONLY },
399 { "__has_virtual_destructor", RID_HAS_VIRTUAL_DESTRUCTOR, D_CXXONLY },
400 { "__imag", RID_IMAGPART, 0 },
401 { "__imag__", RID_IMAGPART, 0 },
402 { "__inline", RID_INLINE, 0 },
403 { "__inline__", RID_INLINE, 0 },
404 { "__is_abstract", RID_IS_ABSTRACT, D_CXXONLY },
405 { "__is_aggregate", RID_IS_AGGREGATE, D_CXXONLY },
406 { "__is_base_of", RID_IS_BASE_OF, D_CXXONLY },
407 { "__is_class", RID_IS_CLASS, D_CXXONLY },
408 { "__is_empty", RID_IS_EMPTY, D_CXXONLY },
409 { "__is_enum", RID_IS_ENUM, D_CXXONLY },
410 { "__is_final", RID_IS_FINAL, D_CXXONLY },
411 { "__is_literal_type", RID_IS_LITERAL_TYPE, D_CXXONLY },
412 { "__is_pod", RID_IS_POD, D_CXXONLY },
413 { "__is_polymorphic", RID_IS_POLYMORPHIC, D_CXXONLY },
414 { "__is_same_as", RID_IS_SAME_AS, D_CXXONLY },
415 { "__is_standard_layout", RID_IS_STD_LAYOUT, D_CXXONLY },
416 { "__is_trivial", RID_IS_TRIVIAL, D_CXXONLY },
417 { "__is_trivially_assignable", RID_IS_TRIVIALLY_ASSIGNABLE, D_CXXONLY },
418 { "__is_trivially_constructible", RID_IS_TRIVIALLY_CONSTRUCTIBLE, D_CXXONLY },
419 { "__is_trivially_copyable", RID_IS_TRIVIALLY_COPYABLE, D_CXXONLY },
420 { "__is_union", RID_IS_UNION, D_CXXONLY },
421 { "__label__", RID_LABEL, 0 },
422 { "__null", RID_NULL, 0 },
423 { "__real", RID_REALPART, 0 },
424 { "__real__", RID_REALPART, 0 },
425 { "__restrict", RID_RESTRICT, 0 },
426 { "__restrict__", RID_RESTRICT, 0 },
427 { "__signed", RID_SIGNED, 0 },
428 { "__signed__", RID_SIGNED, 0 },
429 { "__thread", RID_THREAD, 0 },
430 { "__transaction_atomic", RID_TRANSACTION_ATOMIC, 0 },
431 { "__transaction_relaxed", RID_TRANSACTION_RELAXED, 0 },
432 { "__transaction_cancel", RID_TRANSACTION_CANCEL, 0 },
433 { "__typeof", RID_TYPEOF, 0 },
434 { "__typeof__", RID_TYPEOF, 0 },
435 { "__underlying_type", RID_UNDERLYING_TYPE, D_CXXONLY },
436 { "__volatile", RID_VOLATILE, 0 },
437 { "__volatile__", RID_VOLATILE, 0 },
438 { "__GIMPLE", RID_GIMPLE, D_CONLY },
439 { "__PHI", RID_PHI, D_CONLY },
440 { "__RTL", RID_RTL, D_CONLY },
441 { "alignas", RID_ALIGNAS, D_CXXONLY | D_CXX11 | D_CXXWARN },
442 { "alignof", RID_ALIGNOF, D_CXXONLY | D_CXX11 | D_CXXWARN },
443 { "asm", RID_ASM, D_ASM },
444 { "auto", RID_AUTO, 0 },
445 { "bool", RID_BOOL, D_CXXONLY | D_CXXWARN },
446 { "break", RID_BREAK, 0 },
447 { "case", RID_CASE, 0 },
448 { "catch", RID_CATCH, D_CXX_OBJC | D_CXXWARN },
449 { "char", RID_CHAR, 0 },
450 { "char16_t", RID_CHAR16, D_CXXONLY | D_CXX11 | D_CXXWARN },
451 { "char32_t", RID_CHAR32, D_CXXONLY | D_CXX11 | D_CXXWARN },
452 { "class", RID_CLASS, D_CXX_OBJC | D_CXXWARN },
453 { "const", RID_CONST, 0 },
454 { "constexpr", RID_CONSTEXPR, D_CXXONLY | D_CXX11 | D_CXXWARN },
455 { "const_cast", RID_CONSTCAST, D_CXXONLY | D_CXXWARN },
456 { "continue", RID_CONTINUE, 0 },
457 { "decltype", RID_DECLTYPE, D_CXXONLY | D_CXX11 | D_CXXWARN },
458 { "default", RID_DEFAULT, 0 },
459 { "delete", RID_DELETE, D_CXXONLY | D_CXXWARN },
460 { "do", RID_DO, 0 },
461 { "double", RID_DOUBLE, 0 },
462 { "dynamic_cast", RID_DYNCAST, D_CXXONLY | D_CXXWARN },
463 { "else", RID_ELSE, 0 },
464 { "enum", RID_ENUM, 0 },
465 { "explicit", RID_EXPLICIT, D_CXXONLY | D_CXXWARN },
466 { "export", RID_EXPORT, D_CXXONLY | D_CXXWARN },
467 { "extern", RID_EXTERN, 0 },
468 { "false", RID_FALSE, D_CXXONLY | D_CXXWARN },
469 { "float", RID_FLOAT, 0 },
470 { "for", RID_FOR, 0 },
471 { "friend", RID_FRIEND, D_CXXONLY | D_CXXWARN },
472 { "goto", RID_GOTO, 0 },
473 { "if", RID_IF, 0 },
474 { "inline", RID_INLINE, D_EXT89 },
475 { "int", RID_INT, 0 },
476 { "long", RID_LONG, 0 },
477 { "mutable", RID_MUTABLE, D_CXXONLY | D_CXXWARN },
478 { "namespace", RID_NAMESPACE, D_CXXONLY | D_CXXWARN },
479 { "new", RID_NEW, D_CXXONLY | D_CXXWARN },
480 { "noexcept", RID_NOEXCEPT, D_CXXONLY | D_CXX11 | D_CXXWARN },
481 { "nullptr", RID_NULLPTR, D_CXXONLY | D_CXX11 | D_CXXWARN },
482 { "operator", RID_OPERATOR, D_CXXONLY | D_CXXWARN },
483 { "private", RID_PRIVATE, D_CXX_OBJC | D_CXXWARN },
484 { "protected", RID_PROTECTED, D_CXX_OBJC | D_CXXWARN },
485 { "public", RID_PUBLIC, D_CXX_OBJC | D_CXXWARN },
486 { "register", RID_REGISTER, 0 },
487 { "reinterpret_cast", RID_REINTCAST, D_CXXONLY | D_CXXWARN },
488 { "restrict", RID_RESTRICT, D_CONLY | D_C99 },
489 { "return", RID_RETURN, 0 },
490 { "short", RID_SHORT, 0 },
491 { "signed", RID_SIGNED, 0 },
492 { "sizeof", RID_SIZEOF, 0 },
493 { "static", RID_STATIC, 0 },
494 { "static_assert", RID_STATIC_ASSERT, D_CXXONLY | D_CXX11 | D_CXXWARN },
495 { "static_cast", RID_STATCAST, D_CXXONLY | D_CXXWARN },
496 { "struct", RID_STRUCT, 0 },
497 { "switch", RID_SWITCH, 0 },
498 { "template", RID_TEMPLATE, D_CXXONLY | D_CXXWARN },
499 { "this", RID_THIS, D_CXXONLY | D_CXXWARN },
500 { "thread_local", RID_THREAD, D_CXXONLY | D_CXX11 | D_CXXWARN },
501 { "throw", RID_THROW, D_CXX_OBJC | D_CXXWARN },
502 { "true", RID_TRUE, D_CXXONLY | D_CXXWARN },
503 { "try", RID_TRY, D_CXX_OBJC | D_CXXWARN },
504 { "typedef", RID_TYPEDEF, 0 },
505 { "typename", RID_TYPENAME, D_CXXONLY | D_CXXWARN },
506 { "typeid", RID_TYPEID, D_CXXONLY | D_CXXWARN },
507 { "typeof", RID_TYPEOF, D_ASM | D_EXT },
508 { "union", RID_UNION, 0 },
509 { "unsigned", RID_UNSIGNED, 0 },
510 { "using", RID_USING, D_CXXONLY | D_CXXWARN },
511 { "virtual", RID_VIRTUAL, D_CXXONLY | D_CXXWARN },
512 { "void", RID_VOID, 0 },
513 { "volatile", RID_VOLATILE, 0 },
514 { "wchar_t", RID_WCHAR, D_CXXONLY },
515 { "while", RID_WHILE, 0 },
516 { "__is_assignable", RID_IS_ASSIGNABLE, D_CXXONLY },
517 { "__is_constructible", RID_IS_CONSTRUCTIBLE, D_CXXONLY },
519 /* C++ transactional memory. */
520 { "synchronized", RID_SYNCHRONIZED, D_CXX_OBJC | D_TRANSMEM },
521 { "atomic_noexcept", RID_ATOMIC_NOEXCEPT, D_CXXONLY | D_TRANSMEM },
522 { "atomic_cancel", RID_ATOMIC_CANCEL, D_CXXONLY | D_TRANSMEM },
523 { "atomic_commit", RID_TRANSACTION_ATOMIC, D_CXXONLY | D_TRANSMEM },
525 /* Concepts-related keywords */
526 { "concept", RID_CONCEPT, D_CXX_CONCEPTS_FLAGS | D_CXXWARN },
527 { "requires", RID_REQUIRES, D_CXX_CONCEPTS_FLAGS | D_CXXWARN },
529 /* These Objective-C keywords are recognized only immediately after
530 an '@'. */
531 { "compatibility_alias", RID_AT_ALIAS, D_OBJC },
532 { "defs", RID_AT_DEFS, D_OBJC },
533 { "encode", RID_AT_ENCODE, D_OBJC },
534 { "end", RID_AT_END, D_OBJC },
535 { "implementation", RID_AT_IMPLEMENTATION, D_OBJC },
536 { "interface", RID_AT_INTERFACE, D_OBJC },
537 { "protocol", RID_AT_PROTOCOL, D_OBJC },
538 { "selector", RID_AT_SELECTOR, D_OBJC },
539 { "finally", RID_AT_FINALLY, D_OBJC },
540 { "optional", RID_AT_OPTIONAL, D_OBJC },
541 { "required", RID_AT_REQUIRED, D_OBJC },
542 { "property", RID_AT_PROPERTY, D_OBJC },
543 { "package", RID_AT_PACKAGE, D_OBJC },
544 { "synthesize", RID_AT_SYNTHESIZE, D_OBJC },
545 { "dynamic", RID_AT_DYNAMIC, D_OBJC },
546 /* These are recognized only in protocol-qualifier context
547 (see above) */
548 { "bycopy", RID_BYCOPY, D_OBJC },
549 { "byref", RID_BYREF, D_OBJC },
550 { "in", RID_IN, D_OBJC },
551 { "inout", RID_INOUT, D_OBJC },
552 { "oneway", RID_ONEWAY, D_OBJC },
553 { "out", RID_OUT, D_OBJC },
554 /* These are recognized inside a property attribute list */
555 { "assign", RID_ASSIGN, D_OBJC },
556 { "copy", RID_COPY, D_OBJC },
557 { "getter", RID_GETTER, D_OBJC },
558 { "nonatomic", RID_NONATOMIC, D_OBJC },
559 { "readonly", RID_READONLY, D_OBJC },
560 { "readwrite", RID_READWRITE, D_OBJC },
561 { "retain", RID_RETAIN, D_OBJC },
562 { "setter", RID_SETTER, D_OBJC },
565 const unsigned int num_c_common_reswords =
566 sizeof c_common_reswords / sizeof (struct c_common_resword);
568 /* Return identifier for address space AS. */
570 const char *
571 c_addr_space_name (addr_space_t as)
573 int rid = RID_FIRST_ADDR_SPACE + as;
574 gcc_assert (ridpointers [rid]);
575 return IDENTIFIER_POINTER (ridpointers [rid]);
578 /* Push current bindings for the function name VAR_DECLS. */
580 void
581 start_fname_decls (void)
583 unsigned ix;
584 tree saved = NULL_TREE;
586 for (ix = 0; fname_vars[ix].decl; ix++)
588 tree decl = *fname_vars[ix].decl;
590 if (decl)
592 saved = tree_cons (decl, build_int_cst (integer_type_node, ix),
593 saved);
594 *fname_vars[ix].decl = NULL_TREE;
597 if (saved || saved_function_name_decls)
598 /* Normally they'll have been NULL, so only push if we've got a
599 stack, or they are non-NULL. */
600 saved_function_name_decls = tree_cons (saved, NULL_TREE,
601 saved_function_name_decls);
604 /* Finish up the current bindings, adding them into the current function's
605 statement tree. This must be done _before_ finish_stmt_tree is called.
606 If there is no current function, we must be at file scope and no statements
607 are involved. Pop the previous bindings. */
609 void
610 finish_fname_decls (void)
612 unsigned ix;
613 tree stmts = NULL_TREE;
614 tree stack = saved_function_name_decls;
616 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
617 append_to_statement_list (TREE_VALUE (stack), &stmts);
619 if (stmts)
621 tree *bodyp = &DECL_SAVED_TREE (current_function_decl);
623 if (TREE_CODE (*bodyp) == BIND_EXPR)
624 bodyp = &BIND_EXPR_BODY (*bodyp);
626 append_to_statement_list_force (*bodyp, &stmts);
627 *bodyp = stmts;
630 for (ix = 0; fname_vars[ix].decl; ix++)
631 *fname_vars[ix].decl = NULL_TREE;
633 if (stack)
635 /* We had saved values, restore them. */
636 tree saved;
638 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
640 tree decl = TREE_PURPOSE (saved);
641 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
643 *fname_vars[ix].decl = decl;
645 stack = TREE_CHAIN (stack);
647 saved_function_name_decls = stack;
650 /* Return the text name of the current function, suitably prettified
651 by PRETTY_P. Return string must be freed by caller. */
653 const char *
654 fname_as_string (int pretty_p)
656 const char *name = "top level";
657 char *namep;
658 int vrb = 2, len;
659 cpp_string cstr = { 0, 0 }, strname;
661 if (!pretty_p)
663 name = "";
664 vrb = 0;
667 if (current_function_decl)
668 name = lang_hooks.decl_printable_name (current_function_decl, vrb);
670 len = strlen (name) + 3; /* Two for '"'s. One for NULL. */
672 namep = XNEWVEC (char, len);
673 snprintf (namep, len, "\"%s\"", name);
674 strname.text = (unsigned char *) namep;
675 strname.len = len - 1;
677 if (cpp_interpret_string (parse_in, &strname, 1, &cstr, CPP_STRING))
679 XDELETEVEC (namep);
680 return (const char *) cstr.text;
683 return namep;
686 /* Return the VAR_DECL for a const char array naming the current
687 function. If the VAR_DECL has not yet been created, create it
688 now. RID indicates how it should be formatted and IDENTIFIER_NODE
689 ID is its name (unfortunately C and C++ hold the RID values of
690 keywords in different places, so we can't derive RID from ID in
691 this language independent code. LOC is the location of the
692 function. */
694 tree
695 fname_decl (location_t loc, unsigned int rid, tree id)
697 unsigned ix;
698 tree decl = NULL_TREE;
700 for (ix = 0; fname_vars[ix].decl; ix++)
701 if (fname_vars[ix].rid == rid)
702 break;
704 decl = *fname_vars[ix].decl;
705 if (!decl)
707 /* If a tree is built here, it would normally have the lineno of
708 the current statement. Later this tree will be moved to the
709 beginning of the function and this line number will be wrong.
710 To avoid this problem set the lineno to 0 here; that prevents
711 it from appearing in the RTL. */
712 tree stmts;
713 location_t saved_location = input_location;
714 input_location = UNKNOWN_LOCATION;
716 stmts = push_stmt_list ();
717 decl = (*make_fname_decl) (loc, id, fname_vars[ix].pretty);
718 stmts = pop_stmt_list (stmts);
719 if (!IS_EMPTY_STMT (stmts))
720 saved_function_name_decls
721 = tree_cons (decl, stmts, saved_function_name_decls);
722 *fname_vars[ix].decl = decl;
723 input_location = saved_location;
725 if (!ix && !current_function_decl)
726 pedwarn (loc, 0, "%qD is not defined outside of function scope", decl);
728 return decl;
731 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
733 tree
734 fix_string_type (tree value)
736 int length = TREE_STRING_LENGTH (value);
737 int nchars;
738 tree e_type, i_type, a_type;
740 /* Compute the number of elements, for the array type. */
741 if (TREE_TYPE (value) == char_array_type_node || !TREE_TYPE (value))
743 nchars = length;
744 e_type = char_type_node;
746 else if (TREE_TYPE (value) == char16_array_type_node)
748 nchars = length / (TYPE_PRECISION (char16_type_node) / BITS_PER_UNIT);
749 e_type = char16_type_node;
751 else if (TREE_TYPE (value) == char32_array_type_node)
753 nchars = length / (TYPE_PRECISION (char32_type_node) / BITS_PER_UNIT);
754 e_type = char32_type_node;
756 else
758 nchars = length / (TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT);
759 e_type = wchar_type_node;
762 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
763 limit in C++98 Annex B is very large (65536) and is not normative,
764 so we do not diagnose it (warn_overlength_strings is forced off
765 in c_common_post_options). */
766 if (warn_overlength_strings)
768 const int nchars_max = flag_isoc99 ? 4095 : 509;
769 const int relevant_std = flag_isoc99 ? 99 : 90;
770 if (nchars - 1 > nchars_max)
771 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
772 separate the %d from the 'C'. 'ISO' should not be
773 translated, but it may be moved after 'C%d' in languages
774 where modifiers follow nouns. */
775 pedwarn (input_location, OPT_Woverlength_strings,
776 "string length %qd is greater than the length %qd "
777 "ISO C%d compilers are required to support",
778 nchars - 1, nchars_max, relevant_std);
781 /* Create the array type for the string constant. The ISO C++
782 standard says that a string literal has type `const char[N]' or
783 `const wchar_t[N]'. We use the same logic when invoked as a C
784 front-end with -Wwrite-strings.
785 ??? We should change the type of an expression depending on the
786 state of a warning flag. We should just be warning -- see how
787 this is handled in the C++ front-end for the deprecated implicit
788 conversion from string literals to `char*' or `wchar_t*'.
790 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
791 array type being the unqualified version of that type.
792 Therefore, if we are constructing an array of const char, we must
793 construct the matching unqualified array type first. The C front
794 end does not require this, but it does no harm, so we do it
795 unconditionally. */
796 i_type = build_index_type (size_int (nchars - 1));
797 a_type = build_array_type (e_type, i_type);
798 if (c_dialect_cxx() || warn_write_strings)
799 a_type = c_build_qualified_type (a_type, TYPE_QUAL_CONST);
801 TREE_TYPE (value) = a_type;
802 TREE_CONSTANT (value) = 1;
803 TREE_READONLY (value) = 1;
804 TREE_STATIC (value) = 1;
805 return value;
808 /* Given a string of type STRING_TYPE, determine what kind of string
809 token would give an equivalent execution encoding: CPP_STRING,
810 CPP_STRING16, or CPP_STRING32. Return CPP_OTHER in case of error.
811 This may not be exactly the string token type that initially created
812 the string, since CPP_WSTRING is indistinguishable from the 16/32 bit
813 string type at this point.
815 This effectively reverses part of the logic in lex_string and
816 fix_string_type. */
818 static enum cpp_ttype
819 get_cpp_ttype_from_string_type (tree string_type)
821 gcc_assert (string_type);
822 if (TREE_CODE (string_type) == POINTER_TYPE)
823 string_type = TREE_TYPE (string_type);
825 if (TREE_CODE (string_type) != ARRAY_TYPE)
826 return CPP_OTHER;
828 tree element_type = TREE_TYPE (string_type);
829 if (TREE_CODE (element_type) != INTEGER_TYPE)
830 return CPP_OTHER;
832 int bits_per_character = TYPE_PRECISION (element_type);
833 switch (bits_per_character)
835 case 8:
836 return CPP_STRING; /* It could have also been CPP_UTF8STRING. */
837 case 16:
838 return CPP_STRING16;
839 case 32:
840 return CPP_STRING32;
843 return CPP_OTHER;
846 /* The global record of string concatentations, for use in
847 extracting locations within string literals. */
849 GTY(()) string_concat_db *g_string_concat_db;
851 /* Implementation of LANG_HOOKS_GET_SUBSTRING_LOCATION. */
853 const char *
854 c_get_substring_location (const substring_loc &substr_loc,
855 location_t *out_loc)
857 enum cpp_ttype tok_type
858 = get_cpp_ttype_from_string_type (substr_loc.get_string_type ());
859 if (tok_type == CPP_OTHER)
860 return "unrecognized string type";
862 return get_source_location_for_substring (parse_in, g_string_concat_db,
863 substr_loc.get_fmt_string_loc (),
864 tok_type,
865 substr_loc.get_caret_idx (),
866 substr_loc.get_start_idx (),
867 substr_loc.get_end_idx (),
868 out_loc);
872 /* Fold X for consideration by one of the warning functions when checking
873 whether an expression has a constant value. */
875 tree
876 fold_for_warn (tree x)
878 if (c_dialect_cxx ())
879 return c_fully_fold (x, /*for_init*/false, /*maybe_constp*/NULL);
880 else
881 /* The C front-end has already folded X appropriately. */
882 return x;
885 /* Return true iff T is a boolean promoted to int. */
887 bool
888 bool_promoted_to_int_p (tree t)
890 return (CONVERT_EXPR_P (t)
891 && TREE_TYPE (t) == integer_type_node
892 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == BOOLEAN_TYPE);
895 /* vector_targets_convertible_p is used for vector pointer types. The
896 callers perform various checks that the qualifiers are satisfactory,
897 while OTOH vector_targets_convertible_p ignores the number of elements
898 in the vectors. That's fine with vector pointers as we can consider,
899 say, a vector of 8 elements as two consecutive vectors of 4 elements,
900 and that does not require and conversion of the pointer values.
901 In contrast, vector_types_convertible_p and
902 vector_types_compatible_elements_p are used for vector value types. */
903 /* True if pointers to distinct types T1 and T2 can be converted to
904 each other without an explicit cast. Only returns true for opaque
905 vector types. */
906 bool
907 vector_targets_convertible_p (const_tree t1, const_tree t2)
909 if (VECTOR_TYPE_P (t1) && VECTOR_TYPE_P (t2)
910 && (TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
911 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
912 return true;
914 return false;
917 /* vector_types_convertible_p is used for vector value types.
918 It could in principle call vector_targets_convertible_p as a subroutine,
919 but then the check for vector type would be duplicated with its callers,
920 and also the purpose of vector_targets_convertible_p would become
921 muddled.
922 Where vector_types_convertible_p returns true, a conversion might still be
923 needed to make the types match.
924 In contrast, vector_targets_convertible_p is used for vector pointer
925 values, and vector_types_compatible_elements_p is used specifically
926 in the context for binary operators, as a check if use is possible without
927 conversion. */
928 /* True if vector types T1 and T2 can be converted to each other
929 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
930 can only be converted with -flax-vector-conversions yet that is not
931 in effect, emit a note telling the user about that option if such
932 a note has not previously been emitted. */
933 bool
934 vector_types_convertible_p (const_tree t1, const_tree t2, bool emit_lax_note)
936 static bool emitted_lax_note = false;
937 bool convertible_lax;
939 if ((TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2))
940 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
941 return true;
943 convertible_lax =
944 (tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2))
945 && (TREE_CODE (TREE_TYPE (t1)) != REAL_TYPE ||
946 TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2))
947 && (INTEGRAL_TYPE_P (TREE_TYPE (t1))
948 == INTEGRAL_TYPE_P (TREE_TYPE (t2))));
950 if (!convertible_lax || flag_lax_vector_conversions)
951 return convertible_lax;
953 if (TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
954 && lang_hooks.types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
955 return true;
957 if (emit_lax_note && !emitted_lax_note)
959 emitted_lax_note = true;
960 inform (input_location, "use -flax-vector-conversions to permit "
961 "conversions between vectors with differing "
962 "element types or numbers of subparts");
965 return false;
968 /* Build a VEC_PERM_EXPR if V0, V1 and MASK are not error_mark_nodes
969 and have vector types, V0 has the same type as V1, and the number of
970 elements of V0, V1, MASK is the same.
972 In case V1 is a NULL_TREE it is assumed that __builtin_shuffle was
973 called with two arguments. In this case implementation passes the
974 first argument twice in order to share the same tree code. This fact
975 could enable the mask-values being twice the vector length. This is
976 an implementation accident and this semantics is not guaranteed to
977 the user. */
978 tree
979 c_build_vec_perm_expr (location_t loc, tree v0, tree v1, tree mask,
980 bool complain)
982 tree ret;
983 bool wrap = true;
984 bool maybe_const = false;
985 bool two_arguments = false;
987 if (v1 == NULL_TREE)
989 two_arguments = true;
990 v1 = v0;
993 if (v0 == error_mark_node || v1 == error_mark_node
994 || mask == error_mark_node)
995 return error_mark_node;
997 if (!VECTOR_INTEGER_TYPE_P (TREE_TYPE (mask)))
999 if (complain)
1000 error_at (loc, "__builtin_shuffle last argument must "
1001 "be an integer vector");
1002 return error_mark_node;
1005 if (!VECTOR_TYPE_P (TREE_TYPE (v0))
1006 || !VECTOR_TYPE_P (TREE_TYPE (v1)))
1008 if (complain)
1009 error_at (loc, "__builtin_shuffle arguments must be vectors");
1010 return error_mark_node;
1013 if (TYPE_MAIN_VARIANT (TREE_TYPE (v0)) != TYPE_MAIN_VARIANT (TREE_TYPE (v1)))
1015 if (complain)
1016 error_at (loc, "__builtin_shuffle argument vectors must be of "
1017 "the same type");
1018 return error_mark_node;
1021 if (TYPE_VECTOR_SUBPARTS (TREE_TYPE (v0))
1022 != TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask))
1023 && TYPE_VECTOR_SUBPARTS (TREE_TYPE (v1))
1024 != TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask)))
1026 if (complain)
1027 error_at (loc, "__builtin_shuffle number of elements of the "
1028 "argument vector(s) and the mask vector should "
1029 "be the same");
1030 return error_mark_node;
1033 if (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (v0))))
1034 != GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (mask)))))
1036 if (complain)
1037 error_at (loc, "__builtin_shuffle argument vector(s) inner type "
1038 "must have the same size as inner type of the mask");
1039 return error_mark_node;
1042 if (!c_dialect_cxx ())
1044 /* Avoid C_MAYBE_CONST_EXPRs inside VEC_PERM_EXPR. */
1045 v0 = c_fully_fold (v0, false, &maybe_const);
1046 wrap &= maybe_const;
1048 if (two_arguments)
1049 v1 = v0 = save_expr (v0);
1050 else
1052 v1 = c_fully_fold (v1, false, &maybe_const);
1053 wrap &= maybe_const;
1056 mask = c_fully_fold (mask, false, &maybe_const);
1057 wrap &= maybe_const;
1059 else if (two_arguments)
1060 v1 = v0 = save_expr (v0);
1062 ret = build3_loc (loc, VEC_PERM_EXPR, TREE_TYPE (v0), v0, v1, mask);
1064 if (!c_dialect_cxx () && !wrap)
1065 ret = c_wrap_maybe_const (ret, true);
1067 return ret;
1070 /* Like tree.c:get_narrower, but retain conversion from C++0x scoped enum
1071 to integral type. */
1073 tree
1074 c_common_get_narrower (tree op, int *unsignedp_ptr)
1076 op = get_narrower (op, unsignedp_ptr);
1078 if (TREE_CODE (TREE_TYPE (op)) == ENUMERAL_TYPE
1079 && ENUM_IS_SCOPED (TREE_TYPE (op)))
1081 /* C++0x scoped enumerations don't implicitly convert to integral
1082 type; if we stripped an explicit conversion to a larger type we
1083 need to replace it so common_type will still work. */
1084 tree type = c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op)),
1085 TYPE_UNSIGNED (TREE_TYPE (op)));
1086 op = fold_convert (type, op);
1088 return op;
1091 /* This is a helper function of build_binary_op.
1093 For certain operations if both args were extended from the same
1094 smaller type, do the arithmetic in that type and then extend.
1096 BITWISE indicates a bitwise operation.
1097 For them, this optimization is safe only if
1098 both args are zero-extended or both are sign-extended.
1099 Otherwise, we might change the result.
1100 Eg, (short)-1 | (unsigned short)-1 is (int)-1
1101 but calculated in (unsigned short) it would be (unsigned short)-1.
1103 tree
1104 shorten_binary_op (tree result_type, tree op0, tree op1, bool bitwise)
1106 int unsigned0, unsigned1;
1107 tree arg0, arg1;
1108 int uns;
1109 tree type;
1111 /* Cast OP0 and OP1 to RESULT_TYPE. Doing so prevents
1112 excessive narrowing when we call get_narrower below. For
1113 example, suppose that OP0 is of unsigned int extended
1114 from signed char and that RESULT_TYPE is long long int.
1115 If we explicitly cast OP0 to RESULT_TYPE, OP0 would look
1116 like
1118 (long long int) (unsigned int) signed_char
1120 which get_narrower would narrow down to
1122 (unsigned int) signed char
1124 If we do not cast OP0 first, get_narrower would return
1125 signed_char, which is inconsistent with the case of the
1126 explicit cast. */
1127 op0 = convert (result_type, op0);
1128 op1 = convert (result_type, op1);
1130 arg0 = c_common_get_narrower (op0, &unsigned0);
1131 arg1 = c_common_get_narrower (op1, &unsigned1);
1133 /* UNS is 1 if the operation to be done is an unsigned one. */
1134 uns = TYPE_UNSIGNED (result_type);
1136 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
1137 but it *requires* conversion to FINAL_TYPE. */
1139 if ((TYPE_PRECISION (TREE_TYPE (op0))
1140 == TYPE_PRECISION (TREE_TYPE (arg0)))
1141 && TREE_TYPE (op0) != result_type)
1142 unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
1143 if ((TYPE_PRECISION (TREE_TYPE (op1))
1144 == TYPE_PRECISION (TREE_TYPE (arg1)))
1145 && TREE_TYPE (op1) != result_type)
1146 unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
1148 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
1150 /* For bitwise operations, signedness of nominal type
1151 does not matter. Consider only how operands were extended. */
1152 if (bitwise)
1153 uns = unsigned0;
1155 /* Note that in all three cases below we refrain from optimizing
1156 an unsigned operation on sign-extended args.
1157 That would not be valid. */
1159 /* Both args variable: if both extended in same way
1160 from same width, do it in that width.
1161 Do it unsigned if args were zero-extended. */
1162 if ((TYPE_PRECISION (TREE_TYPE (arg0))
1163 < TYPE_PRECISION (result_type))
1164 && (TYPE_PRECISION (TREE_TYPE (arg1))
1165 == TYPE_PRECISION (TREE_TYPE (arg0)))
1166 && unsigned0 == unsigned1
1167 && (unsigned0 || !uns))
1168 return c_common_signed_or_unsigned_type
1169 (unsigned0, common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
1171 else if (TREE_CODE (arg0) == INTEGER_CST
1172 && (unsigned1 || !uns)
1173 && (TYPE_PRECISION (TREE_TYPE (arg1))
1174 < TYPE_PRECISION (result_type))
1175 && (type
1176 = c_common_signed_or_unsigned_type (unsigned1,
1177 TREE_TYPE (arg1)))
1178 && !POINTER_TYPE_P (type)
1179 && int_fits_type_p (arg0, type))
1180 return type;
1182 else if (TREE_CODE (arg1) == INTEGER_CST
1183 && (unsigned0 || !uns)
1184 && (TYPE_PRECISION (TREE_TYPE (arg0))
1185 < TYPE_PRECISION (result_type))
1186 && (type
1187 = c_common_signed_or_unsigned_type (unsigned0,
1188 TREE_TYPE (arg0)))
1189 && !POINTER_TYPE_P (type)
1190 && int_fits_type_p (arg1, type))
1191 return type;
1193 return result_type;
1196 /* Returns true iff any integer value of type FROM_TYPE can be represented as
1197 real of type TO_TYPE. This is a helper function for unsafe_conversion_p. */
1199 static bool
1200 int_safely_convertible_to_real_p (const_tree from_type, const_tree to_type)
1202 tree type_low_bound = TYPE_MIN_VALUE (from_type);
1203 tree type_high_bound = TYPE_MAX_VALUE (from_type);
1204 REAL_VALUE_TYPE real_low_bound =
1205 real_value_from_int_cst (0, type_low_bound);
1206 REAL_VALUE_TYPE real_high_bound =
1207 real_value_from_int_cst (0, type_high_bound);
1209 return exact_real_truncate (TYPE_MODE (to_type), &real_low_bound)
1210 && exact_real_truncate (TYPE_MODE (to_type), &real_high_bound);
1213 /* Checks if expression EXPR of complex/real/integer type cannot be converted
1214 to the complex/real/integer type TYPE. Function returns non-zero when:
1215 * EXPR is a constant which cannot be exactly converted to TYPE.
1216 * EXPR is not a constant and size of EXPR's type > than size of TYPE,
1217 for EXPR type and TYPE being both integers or both real, or both
1218 complex.
1219 * EXPR is not a constant of complex type and TYPE is a real or
1220 an integer.
1221 * EXPR is not a constant of real type and TYPE is an integer.
1222 * EXPR is not a constant of integer type which cannot be
1223 exactly converted to real type.
1225 Function allows conversions between types of different signedness and
1226 can return SAFE_CONVERSION (zero) in that case. Function can produce
1227 signedness warnings if PRODUCE_WARNS is true.
1229 RESULT, when non-null is the result of the conversion. When constant
1230 it is included in the text of diagnostics.
1232 Function allows conversions from complex constants to non-complex types,
1233 provided that imaginary part is zero and real part can be safely converted
1234 to TYPE. */
1236 enum conversion_safety
1237 unsafe_conversion_p (location_t loc, tree type, tree expr, tree result,
1238 bool produce_warns)
1240 enum conversion_safety give_warning = SAFE_CONVERSION; /* is 0 or false */
1241 tree expr_type = TREE_TYPE (expr);
1243 bool cstresult = (result
1244 && TREE_CODE_CLASS (TREE_CODE (result)) == tcc_constant);
1246 loc = expansion_point_location_if_in_system_header (loc);
1248 if (TREE_CODE (expr) == REAL_CST || TREE_CODE (expr) == INTEGER_CST)
1250 /* If type is complex, we are interested in compatibility with
1251 underlying type. */
1252 if (TREE_CODE (type) == COMPLEX_TYPE)
1253 type = TREE_TYPE (type);
1255 /* Warn for real constant that is not an exact integer converted
1256 to integer type. */
1257 if (TREE_CODE (expr_type) == REAL_TYPE
1258 && TREE_CODE (type) == INTEGER_TYPE)
1260 if (!real_isinteger (TREE_REAL_CST_PTR (expr), TYPE_MODE (expr_type)))
1261 give_warning = UNSAFE_REAL;
1263 /* Warn for an integer constant that does not fit into integer type. */
1264 else if (TREE_CODE (expr_type) == INTEGER_TYPE
1265 && TREE_CODE (type) == INTEGER_TYPE
1266 && !int_fits_type_p (expr, type))
1268 if (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)
1269 && tree_int_cst_sgn (expr) < 0)
1271 if (produce_warns)
1273 if (cstresult)
1274 warning_at (loc, OPT_Wsign_conversion,
1275 "unsigned conversion from %qT to %qT "
1276 "changes value from %qE to %qE",
1277 expr_type, type, expr, result);
1278 else
1279 warning_at (loc, OPT_Wsign_conversion,
1280 "unsigned conversion from %qT to %qT "
1281 "changes the value of %qE",
1282 expr_type, type, expr);
1285 else if (!TYPE_UNSIGNED (type) && TYPE_UNSIGNED (expr_type))
1287 if (cstresult)
1288 warning_at (loc, OPT_Wsign_conversion,
1289 "signed conversion from %qT to %qT changes "
1290 "value from %qE to %qE",
1291 expr_type, type, expr, result);
1292 else
1293 warning_at (loc, OPT_Wsign_conversion,
1294 "signed conversion from %qT to %qT changes "
1295 "the value of %qE",
1296 expr_type, type, expr);
1298 else
1299 give_warning = UNSAFE_OTHER;
1301 else if (TREE_CODE (type) == REAL_TYPE)
1303 /* Warn for an integer constant that does not fit into real type. */
1304 if (TREE_CODE (expr_type) == INTEGER_TYPE)
1306 REAL_VALUE_TYPE a = real_value_from_int_cst (0, expr);
1307 if (!exact_real_truncate (TYPE_MODE (type), &a))
1308 give_warning = UNSAFE_REAL;
1310 /* Warn for a real constant that does not fit into a smaller
1311 real type. */
1312 else if (TREE_CODE (expr_type) == REAL_TYPE
1313 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
1315 REAL_VALUE_TYPE a = TREE_REAL_CST (expr);
1316 if (!exact_real_truncate (TYPE_MODE (type), &a))
1317 give_warning = UNSAFE_REAL;
1322 else if (TREE_CODE (expr) == COMPLEX_CST)
1324 tree imag_part = TREE_IMAGPART (expr);
1325 /* Conversion from complex constant with zero imaginary part,
1326 perform check for conversion of real part. */
1327 if ((TREE_CODE (imag_part) == REAL_CST
1328 && real_zerop (imag_part))
1329 || (TREE_CODE (imag_part) == INTEGER_CST
1330 && integer_zerop (imag_part)))
1331 /* Note: in this branch we use recursive call to unsafe_conversion_p
1332 with different type of EXPR, but it is still safe, because when EXPR
1333 is a constant, it's type is not used in text of generated warnings
1334 (otherwise they could sound misleading). */
1335 return unsafe_conversion_p (loc, type, TREE_REALPART (expr), result,
1336 produce_warns);
1337 /* Conversion from complex constant with non-zero imaginary part. */
1338 else
1340 /* Conversion to complex type.
1341 Perform checks for both real and imaginary parts. */
1342 if (TREE_CODE (type) == COMPLEX_TYPE)
1344 /* Unfortunately, produce_warns must be false in two subsequent
1345 calls of unsafe_conversion_p, because otherwise we could
1346 produce strange "double" warnings, if both real and imaginary
1347 parts have conversion problems related to signedness.
1349 For example:
1350 int32_t _Complex a = 0x80000000 + 0x80000000i;
1352 Possible solution: add a separate function for checking
1353 constants and combine result of two calls appropriately. */
1354 enum conversion_safety re_safety =
1355 unsafe_conversion_p (loc, type, TREE_REALPART (expr),
1356 result, false);
1357 enum conversion_safety im_safety =
1358 unsafe_conversion_p (loc, type, imag_part, result, false);
1360 /* Merge the results into appropriate single warning. */
1362 /* Note: this case includes SAFE_CONVERSION, i.e. success. */
1363 if (re_safety == im_safety)
1364 give_warning = re_safety;
1365 else if (!re_safety && im_safety)
1366 give_warning = im_safety;
1367 else if (re_safety && !im_safety)
1368 give_warning = re_safety;
1369 else
1370 give_warning = UNSAFE_OTHER;
1372 /* Warn about conversion from complex to real or integer type. */
1373 else
1374 give_warning = UNSAFE_IMAGINARY;
1378 /* Checks for remaining case: EXPR is not constant. */
1379 else
1381 /* Warn for real types converted to integer types. */
1382 if (TREE_CODE (expr_type) == REAL_TYPE
1383 && TREE_CODE (type) == INTEGER_TYPE)
1384 give_warning = UNSAFE_REAL;
1386 else if (TREE_CODE (expr_type) == INTEGER_TYPE
1387 && TREE_CODE (type) == INTEGER_TYPE)
1389 /* Don't warn about unsigned char y = 0xff, x = (int) y; */
1390 expr = get_unwidened (expr, 0);
1391 expr_type = TREE_TYPE (expr);
1393 /* Don't warn for short y; short x = ((int)y & 0xff); */
1394 if (TREE_CODE (expr) == BIT_AND_EXPR
1395 || TREE_CODE (expr) == BIT_IOR_EXPR
1396 || TREE_CODE (expr) == BIT_XOR_EXPR)
1398 /* If both args were extended from a shortest type,
1399 use that type if that is safe. */
1400 expr_type = shorten_binary_op (expr_type,
1401 TREE_OPERAND (expr, 0),
1402 TREE_OPERAND (expr, 1),
1403 /* bitwise */1);
1405 if (TREE_CODE (expr) == BIT_AND_EXPR)
1407 tree op0 = TREE_OPERAND (expr, 0);
1408 tree op1 = TREE_OPERAND (expr, 1);
1409 bool unsigned0 = TYPE_UNSIGNED (TREE_TYPE (op0));
1410 bool unsigned1 = TYPE_UNSIGNED (TREE_TYPE (op1));
1412 /* If one of the operands is a non-negative constant
1413 that fits in the target type, then the type of the
1414 other operand does not matter. */
1415 if ((TREE_CODE (op0) == INTEGER_CST
1416 && int_fits_type_p (op0, c_common_signed_type (type))
1417 && int_fits_type_p (op0, c_common_unsigned_type (type)))
1418 || (TREE_CODE (op1) == INTEGER_CST
1419 && int_fits_type_p (op1, c_common_signed_type (type))
1420 && int_fits_type_p (op1,
1421 c_common_unsigned_type (type))))
1422 return SAFE_CONVERSION;
1423 /* If constant is unsigned and fits in the target
1424 type, then the result will also fit. */
1425 else if ((TREE_CODE (op0) == INTEGER_CST
1426 && unsigned0
1427 && int_fits_type_p (op0, type))
1428 || (TREE_CODE (op1) == INTEGER_CST
1429 && unsigned1
1430 && int_fits_type_p (op1, type)))
1431 return SAFE_CONVERSION;
1434 /* Warn for integer types converted to smaller integer types. */
1435 if (TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
1436 give_warning = UNSAFE_OTHER;
1438 /* When they are the same width but different signedness,
1439 then the value may change. */
1440 else if (((TYPE_PRECISION (type) == TYPE_PRECISION (expr_type)
1441 && TYPE_UNSIGNED (expr_type) != TYPE_UNSIGNED (type))
1442 /* Even when converted to a bigger type, if the type is
1443 unsigned but expr is signed, then negative values
1444 will be changed. */
1445 || (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (expr_type)))
1446 && produce_warns)
1447 warning_at (loc, OPT_Wsign_conversion, "conversion to %qT from %qT "
1448 "may change the sign of the result",
1449 type, expr_type);
1452 /* Warn for integer types converted to real types if and only if
1453 all the range of values of the integer type cannot be
1454 represented by the real type. */
1455 else if (TREE_CODE (expr_type) == INTEGER_TYPE
1456 && TREE_CODE (type) == REAL_TYPE)
1458 /* Don't warn about char y = 0xff; float x = (int) y; */
1459 expr = get_unwidened (expr, 0);
1460 expr_type = TREE_TYPE (expr);
1462 if (!int_safely_convertible_to_real_p (expr_type, type))
1463 give_warning = UNSAFE_OTHER;
1466 /* Warn for real types converted to smaller real types. */
1467 else if (TREE_CODE (expr_type) == REAL_TYPE
1468 && TREE_CODE (type) == REAL_TYPE
1469 && TYPE_PRECISION (type) < TYPE_PRECISION (expr_type))
1470 give_warning = UNSAFE_REAL;
1472 /* Check conversion between two complex types. */
1473 else if (TREE_CODE (expr_type) == COMPLEX_TYPE
1474 && TREE_CODE (type) == COMPLEX_TYPE)
1476 /* Extract underlying types (i.e., type of real and imaginary
1477 parts) of expr_type and type. */
1478 tree from_type = TREE_TYPE (expr_type);
1479 tree to_type = TREE_TYPE (type);
1481 /* Warn for real types converted to integer types. */
1482 if (TREE_CODE (from_type) == REAL_TYPE
1483 && TREE_CODE (to_type) == INTEGER_TYPE)
1484 give_warning = UNSAFE_REAL;
1486 /* Warn for real types converted to smaller real types. */
1487 else if (TREE_CODE (from_type) == REAL_TYPE
1488 && TREE_CODE (to_type) == REAL_TYPE
1489 && TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type))
1490 give_warning = UNSAFE_REAL;
1492 /* Check conversion for complex integer types. Here implementation
1493 is simpler than for real-domain integers because it does not
1494 involve sophisticated cases, such as bitmasks, casts, etc. */
1495 else if (TREE_CODE (from_type) == INTEGER_TYPE
1496 && TREE_CODE (to_type) == INTEGER_TYPE)
1498 /* Warn for integer types converted to smaller integer types. */
1499 if (TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type))
1500 give_warning = UNSAFE_OTHER;
1502 /* Check for different signedness, see case for real-domain
1503 integers (above) for a more detailed comment. */
1504 else if (((TYPE_PRECISION (to_type) == TYPE_PRECISION (from_type)
1505 && TYPE_UNSIGNED (to_type) != TYPE_UNSIGNED (from_type))
1506 || (TYPE_UNSIGNED (to_type) && !TYPE_UNSIGNED (from_type)))
1507 && produce_warns)
1508 warning_at (loc, OPT_Wsign_conversion,
1509 "conversion to %qT from %qT "
1510 "may change the sign of the result",
1511 type, expr_type);
1513 else if (TREE_CODE (from_type) == INTEGER_TYPE
1514 && TREE_CODE (to_type) == REAL_TYPE
1515 && !int_safely_convertible_to_real_p (from_type, to_type))
1516 give_warning = UNSAFE_OTHER;
1519 /* Warn for complex types converted to real or integer types. */
1520 else if (TREE_CODE (expr_type) == COMPLEX_TYPE
1521 && TREE_CODE (type) != COMPLEX_TYPE)
1522 give_warning = UNSAFE_IMAGINARY;
1525 return give_warning;
1529 /* Convert EXPR to TYPE, warning about conversion problems with constants.
1530 Invoke this function on every expression that is converted implicitly,
1531 i.e. because of language rules and not because of an explicit cast. */
1533 tree
1534 convert_and_check (location_t loc, tree type, tree expr)
1536 tree result;
1537 tree expr_for_warning;
1539 /* Convert from a value with possible excess precision rather than
1540 via the semantic type, but do not warn about values not fitting
1541 exactly in the semantic type. */
1542 if (TREE_CODE (expr) == EXCESS_PRECISION_EXPR)
1544 tree orig_type = TREE_TYPE (expr);
1545 expr = TREE_OPERAND (expr, 0);
1546 expr_for_warning = convert (orig_type, expr);
1547 if (orig_type == type)
1548 return expr_for_warning;
1550 else
1551 expr_for_warning = expr;
1553 if (TREE_TYPE (expr) == type)
1554 return expr;
1556 result = convert (type, expr);
1558 if (c_inhibit_evaluation_warnings == 0
1559 && !TREE_OVERFLOW_P (expr)
1560 && result != error_mark_node)
1561 warnings_for_convert_and_check (loc, type, expr_for_warning, result);
1563 return result;
1566 /* A node in a list that describes references to variables (EXPR), which are
1567 either read accesses if WRITER is zero, or write accesses, in which case
1568 WRITER is the parent of EXPR. */
1569 struct tlist
1571 struct tlist *next;
1572 tree expr, writer;
1575 /* Used to implement a cache the results of a call to verify_tree. We only
1576 use this for SAVE_EXPRs. */
1577 struct tlist_cache
1579 struct tlist_cache *next;
1580 struct tlist *cache_before_sp;
1581 struct tlist *cache_after_sp;
1582 tree expr;
1585 /* Obstack to use when allocating tlist structures, and corresponding
1586 firstobj. */
1587 static struct obstack tlist_obstack;
1588 static char *tlist_firstobj = 0;
1590 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
1591 warnings. */
1592 static struct tlist *warned_ids;
1593 /* SAVE_EXPRs need special treatment. We process them only once and then
1594 cache the results. */
1595 static struct tlist_cache *save_expr_cache;
1597 static void add_tlist (struct tlist **, struct tlist *, tree, int);
1598 static void merge_tlist (struct tlist **, struct tlist *, int);
1599 static void verify_tree (tree, struct tlist **, struct tlist **, tree);
1600 static bool warning_candidate_p (tree);
1601 static bool candidate_equal_p (const_tree, const_tree);
1602 static void warn_for_collisions (struct tlist *);
1603 static void warn_for_collisions_1 (tree, tree, struct tlist *, int);
1604 static struct tlist *new_tlist (struct tlist *, tree, tree);
1606 /* Create a new struct tlist and fill in its fields. */
1607 static struct tlist *
1608 new_tlist (struct tlist *next, tree t, tree writer)
1610 struct tlist *l;
1611 l = XOBNEW (&tlist_obstack, struct tlist);
1612 l->next = next;
1613 l->expr = t;
1614 l->writer = writer;
1615 return l;
1618 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
1619 is nonnull, we ignore any node we find which has a writer equal to it. */
1621 static void
1622 add_tlist (struct tlist **to, struct tlist *add, tree exclude_writer, int copy)
1624 while (add)
1626 struct tlist *next = add->next;
1627 if (!copy)
1628 add->next = *to;
1629 if (!exclude_writer || !candidate_equal_p (add->writer, exclude_writer))
1630 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
1631 add = next;
1635 /* Merge the nodes of ADD into TO. This merging process is done so that for
1636 each variable that already exists in TO, no new node is added; however if
1637 there is a write access recorded in ADD, and an occurrence on TO is only
1638 a read access, then the occurrence in TO will be modified to record the
1639 write. */
1641 static void
1642 merge_tlist (struct tlist **to, struct tlist *add, int copy)
1644 struct tlist **end = to;
1646 while (*end)
1647 end = &(*end)->next;
1649 while (add)
1651 int found = 0;
1652 struct tlist *tmp2;
1653 struct tlist *next = add->next;
1655 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
1656 if (candidate_equal_p (tmp2->expr, add->expr))
1658 found = 1;
1659 if (!tmp2->writer)
1660 tmp2->writer = add->writer;
1662 if (!found)
1664 *end = copy ? new_tlist (NULL, add->expr, add->writer) : add;
1665 end = &(*end)->next;
1666 *end = 0;
1668 add = next;
1672 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
1673 references in list LIST conflict with it, excluding reads if ONLY writers
1674 is nonzero. */
1676 static void
1677 warn_for_collisions_1 (tree written, tree writer, struct tlist *list,
1678 int only_writes)
1680 struct tlist *tmp;
1682 /* Avoid duplicate warnings. */
1683 for (tmp = warned_ids; tmp; tmp = tmp->next)
1684 if (candidate_equal_p (tmp->expr, written))
1685 return;
1687 while (list)
1689 if (candidate_equal_p (list->expr, written)
1690 && !candidate_equal_p (list->writer, writer)
1691 && (!only_writes || list->writer))
1693 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
1694 warning_at (EXPR_LOC_OR_LOC (writer, input_location),
1695 OPT_Wsequence_point, "operation on %qE may be undefined",
1696 list->expr);
1698 list = list->next;
1702 /* Given a list LIST of references to variables, find whether any of these
1703 can cause conflicts due to missing sequence points. */
1705 static void
1706 warn_for_collisions (struct tlist *list)
1708 struct tlist *tmp;
1710 for (tmp = list; tmp; tmp = tmp->next)
1712 if (tmp->writer)
1713 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
1717 /* Return nonzero if X is a tree that can be verified by the sequence point
1718 warnings. */
1720 static bool
1721 warning_candidate_p (tree x)
1723 if (DECL_P (x) && DECL_ARTIFICIAL (x))
1724 return false;
1726 if (TREE_CODE (x) == BLOCK)
1727 return false;
1729 /* VOID_TYPE_P (TREE_TYPE (x)) is workaround for cp/tree.c
1730 (lvalue_p) crash on TRY/CATCH. */
1731 if (TREE_TYPE (x) == NULL_TREE || VOID_TYPE_P (TREE_TYPE (x)))
1732 return false;
1734 if (!lvalue_p (x))
1735 return false;
1737 /* No point to track non-const calls, they will never satisfy
1738 operand_equal_p. */
1739 if (TREE_CODE (x) == CALL_EXPR && (call_expr_flags (x) & ECF_CONST) == 0)
1740 return false;
1742 if (TREE_CODE (x) == STRING_CST)
1743 return false;
1745 return true;
1748 /* Return nonzero if X and Y appear to be the same candidate (or NULL) */
1749 static bool
1750 candidate_equal_p (const_tree x, const_tree y)
1752 return (x == y) || (x && y && operand_equal_p (x, y, 0));
1755 /* Walk the tree X, and record accesses to variables. If X is written by the
1756 parent tree, WRITER is the parent.
1757 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
1758 expression or its only operand forces a sequence point, then everything up
1759 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
1760 in PNO_SP.
1761 Once we return, we will have emitted warnings if any subexpression before
1762 such a sequence point could be undefined. On a higher level, however, the
1763 sequence point may not be relevant, and we'll merge the two lists.
1765 Example: (b++, a) + b;
1766 The call that processes the COMPOUND_EXPR will store the increment of B
1767 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
1768 processes the PLUS_EXPR will need to merge the two lists so that
1769 eventually, all accesses end up on the same list (and we'll warn about the
1770 unordered subexpressions b++ and b.
1772 A note on merging. If we modify the former example so that our expression
1773 becomes
1774 (b++, b) + a
1775 care must be taken not simply to add all three expressions into the final
1776 PNO_SP list. The function merge_tlist takes care of that by merging the
1777 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
1778 way, so that no more than one access to B is recorded. */
1780 static void
1781 verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp,
1782 tree writer)
1784 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
1785 enum tree_code code;
1786 enum tree_code_class cl;
1788 /* X may be NULL if it is the operand of an empty statement expression
1789 ({ }). */
1790 if (x == NULL)
1791 return;
1793 restart:
1794 code = TREE_CODE (x);
1795 cl = TREE_CODE_CLASS (code);
1797 if (warning_candidate_p (x))
1798 *pno_sp = new_tlist (*pno_sp, x, writer);
1800 switch (code)
1802 case CONSTRUCTOR:
1803 case SIZEOF_EXPR:
1804 return;
1806 case COMPOUND_EXPR:
1807 case TRUTH_ANDIF_EXPR:
1808 case TRUTH_ORIF_EXPR:
1809 tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
1810 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1811 warn_for_collisions (tmp_nosp);
1812 merge_tlist (pbefore_sp, tmp_before, 0);
1813 merge_tlist (pbefore_sp, tmp_nosp, 0);
1814 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_list2, NULL_TREE);
1815 warn_for_collisions (tmp_list2);
1816 merge_tlist (pbefore_sp, tmp_list3, 0);
1817 merge_tlist (pno_sp, tmp_list2, 0);
1818 return;
1820 case COND_EXPR:
1821 tmp_before = tmp_list2 = 0;
1822 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1823 warn_for_collisions (tmp_list2);
1824 merge_tlist (pbefore_sp, tmp_before, 0);
1825 merge_tlist (pbefore_sp, tmp_list2, 0);
1827 tmp_list3 = tmp_nosp = 0;
1828 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1829 warn_for_collisions (tmp_nosp);
1830 merge_tlist (pbefore_sp, tmp_list3, 0);
1832 tmp_list3 = tmp_list2 = 0;
1833 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1834 warn_for_collisions (tmp_list2);
1835 merge_tlist (pbefore_sp, tmp_list3, 0);
1836 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1837 two first, to avoid warning for (a ? b++ : b++). */
1838 merge_tlist (&tmp_nosp, tmp_list2, 0);
1839 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1840 return;
1842 case PREDECREMENT_EXPR:
1843 case PREINCREMENT_EXPR:
1844 case POSTDECREMENT_EXPR:
1845 case POSTINCREMENT_EXPR:
1846 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1847 return;
1849 case MODIFY_EXPR:
1850 tmp_before = tmp_nosp = tmp_list3 = 0;
1851 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1852 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1853 /* Expressions inside the LHS are not ordered wrt. the sequence points
1854 in the RHS. Example:
1855 *a = (a++, 2)
1856 Despite the fact that the modification of "a" is in the before_sp
1857 list (tmp_before), it conflicts with the use of "a" in the LHS.
1858 We can handle this by adding the contents of tmp_list3
1859 to those of tmp_before, and redoing the collision warnings for that
1860 list. */
1861 add_tlist (&tmp_before, tmp_list3, x, 1);
1862 warn_for_collisions (tmp_before);
1863 /* Exclude the LHS itself here; we first have to merge it into the
1864 tmp_nosp list. This is done to avoid warning for "a = a"; if we
1865 didn't exclude the LHS, we'd get it twice, once as a read and once
1866 as a write. */
1867 add_tlist (pno_sp, tmp_list3, x, 0);
1868 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1870 merge_tlist (pbefore_sp, tmp_before, 0);
1871 if (warning_candidate_p (TREE_OPERAND (x, 0)))
1872 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1873 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1874 return;
1876 case CALL_EXPR:
1877 /* We need to warn about conflicts among arguments and conflicts between
1878 args and the function address. Side effects of the function address,
1879 however, are not ordered by the sequence point of the call. */
1881 call_expr_arg_iterator iter;
1882 tree arg;
1883 tmp_before = tmp_nosp = 0;
1884 verify_tree (CALL_EXPR_FN (x), &tmp_before, &tmp_nosp, NULL_TREE);
1885 FOR_EACH_CALL_EXPR_ARG (arg, iter, x)
1887 tmp_list2 = tmp_list3 = 0;
1888 verify_tree (arg, &tmp_list2, &tmp_list3, NULL_TREE);
1889 merge_tlist (&tmp_list3, tmp_list2, 0);
1890 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1892 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1893 warn_for_collisions (tmp_before);
1894 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1895 return;
1898 case TREE_LIST:
1899 /* Scan all the list, e.g. indices of multi dimensional array. */
1900 while (x)
1902 tmp_before = tmp_nosp = 0;
1903 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1904 merge_tlist (&tmp_nosp, tmp_before, 0);
1905 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1906 x = TREE_CHAIN (x);
1908 return;
1910 case SAVE_EXPR:
1912 struct tlist_cache *t;
1913 for (t = save_expr_cache; t; t = t->next)
1914 if (candidate_equal_p (t->expr, x))
1915 break;
1917 if (!t)
1919 t = XOBNEW (&tlist_obstack, struct tlist_cache);
1920 t->next = save_expr_cache;
1921 t->expr = x;
1922 save_expr_cache = t;
1924 tmp_before = tmp_nosp = 0;
1925 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1926 warn_for_collisions (tmp_nosp);
1928 tmp_list3 = 0;
1929 merge_tlist (&tmp_list3, tmp_nosp, 0);
1930 t->cache_before_sp = tmp_before;
1931 t->cache_after_sp = tmp_list3;
1933 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1934 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1935 return;
1938 case ADDR_EXPR:
1939 x = TREE_OPERAND (x, 0);
1940 if (DECL_P (x))
1941 return;
1942 writer = 0;
1943 goto restart;
1945 default:
1946 /* For other expressions, simply recurse on their operands.
1947 Manual tail recursion for unary expressions.
1948 Other non-expressions need not be processed. */
1949 if (cl == tcc_unary)
1951 x = TREE_OPERAND (x, 0);
1952 writer = 0;
1953 goto restart;
1955 else if (IS_EXPR_CODE_CLASS (cl))
1957 int lp;
1958 int max = TREE_OPERAND_LENGTH (x);
1959 for (lp = 0; lp < max; lp++)
1961 tmp_before = tmp_nosp = 0;
1962 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, 0);
1963 merge_tlist (&tmp_nosp, tmp_before, 0);
1964 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1967 return;
1971 /* Try to warn for undefined behavior in EXPR due to missing sequence
1972 points. */
1974 DEBUG_FUNCTION void
1975 verify_sequence_points (tree expr)
1977 struct tlist *before_sp = 0, *after_sp = 0;
1979 warned_ids = 0;
1980 save_expr_cache = 0;
1981 if (tlist_firstobj == 0)
1983 gcc_obstack_init (&tlist_obstack);
1984 tlist_firstobj = (char *) obstack_alloc (&tlist_obstack, 0);
1987 verify_tree (expr, &before_sp, &after_sp, 0);
1988 warn_for_collisions (after_sp);
1989 obstack_free (&tlist_obstack, tlist_firstobj);
1992 /* Validate the expression after `case' and apply default promotions. */
1994 static tree
1995 check_case_value (location_t loc, tree value)
1997 if (value == NULL_TREE)
1998 return value;
2000 if (TREE_CODE (value) == INTEGER_CST)
2001 /* Promote char or short to int. */
2002 value = perform_integral_promotions (value);
2003 else if (value != error_mark_node)
2005 error_at (loc, "case label does not reduce to an integer constant");
2006 value = error_mark_node;
2009 constant_expression_warning (value);
2011 return value;
2014 /* See if the case values LOW and HIGH are in the range of the original
2015 type (i.e. before the default conversion to int) of the switch testing
2016 expression.
2017 TYPE is the promoted type of the testing expression, and ORIG_TYPE is
2018 the type before promoting it. CASE_LOW_P is a pointer to the lower
2019 bound of the case label, and CASE_HIGH_P is the upper bound or NULL
2020 if the case is not a case range.
2021 The caller has to make sure that we are not called with NULL for
2022 CASE_LOW_P (i.e. the default case). OUTSIDE_RANGE_P says whether there
2023 was a case value that doesn't fit into the range of the ORIG_TYPE.
2024 Returns true if the case label is in range of ORIG_TYPE (saturated or
2025 untouched) or false if the label is out of range. */
2027 static bool
2028 check_case_bounds (location_t loc, tree type, tree orig_type,
2029 tree *case_low_p, tree *case_high_p,
2030 bool *outside_range_p)
2032 tree min_value, max_value;
2033 tree case_low = *case_low_p;
2034 tree case_high = case_high_p ? *case_high_p : case_low;
2036 /* If there was a problem with the original type, do nothing. */
2037 if (orig_type == error_mark_node)
2038 return true;
2040 min_value = TYPE_MIN_VALUE (orig_type);
2041 max_value = TYPE_MAX_VALUE (orig_type);
2043 /* We'll really need integer constants here. */
2044 case_low = fold (case_low);
2045 case_high = fold (case_high);
2047 /* Case label is less than minimum for type. */
2048 if (tree_int_cst_compare (case_low, min_value) < 0
2049 && tree_int_cst_compare (case_high, min_value) < 0)
2051 warning_at (loc, 0, "case label value is less than minimum value "
2052 "for type");
2053 *outside_range_p = true;
2054 return false;
2057 /* Case value is greater than maximum for type. */
2058 if (tree_int_cst_compare (case_low, max_value) > 0
2059 && tree_int_cst_compare (case_high, max_value) > 0)
2061 warning_at (loc, 0, "case label value exceeds maximum value for type");
2062 *outside_range_p = true;
2063 return false;
2066 /* Saturate lower case label value to minimum. */
2067 if (tree_int_cst_compare (case_high, min_value) >= 0
2068 && tree_int_cst_compare (case_low, min_value) < 0)
2070 warning_at (loc, 0, "lower value in case label range"
2071 " less than minimum value for type");
2072 *outside_range_p = true;
2073 case_low = min_value;
2076 /* Saturate upper case label value to maximum. */
2077 if (tree_int_cst_compare (case_low, max_value) <= 0
2078 && tree_int_cst_compare (case_high, max_value) > 0)
2080 warning_at (loc, 0, "upper value in case label range"
2081 " exceeds maximum value for type");
2082 *outside_range_p = true;
2083 case_high = max_value;
2086 if (*case_low_p != case_low)
2087 *case_low_p = convert (type, case_low);
2088 if (case_high_p && *case_high_p != case_high)
2089 *case_high_p = convert (type, case_high);
2091 return true;
2094 /* Return an integer type with BITS bits of precision,
2095 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2097 tree
2098 c_common_type_for_size (unsigned int bits, int unsignedp)
2100 int i;
2102 if (bits == TYPE_PRECISION (integer_type_node))
2103 return unsignedp ? unsigned_type_node : integer_type_node;
2105 if (bits == TYPE_PRECISION (signed_char_type_node))
2106 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2108 if (bits == TYPE_PRECISION (short_integer_type_node))
2109 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2111 if (bits == TYPE_PRECISION (long_integer_type_node))
2112 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2114 if (bits == TYPE_PRECISION (long_long_integer_type_node))
2115 return (unsignedp ? long_long_unsigned_type_node
2116 : long_long_integer_type_node);
2118 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2119 if (int_n_enabled_p[i]
2120 && bits == int_n_data[i].bitsize)
2121 return (unsignedp ? int_n_trees[i].unsigned_type
2122 : int_n_trees[i].signed_type);
2124 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
2125 return (unsignedp ? widest_unsigned_literal_type_node
2126 : widest_integer_literal_type_node);
2128 if (bits <= TYPE_PRECISION (intQI_type_node))
2129 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2131 if (bits <= TYPE_PRECISION (intHI_type_node))
2132 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2134 if (bits <= TYPE_PRECISION (intSI_type_node))
2135 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2137 if (bits <= TYPE_PRECISION (intDI_type_node))
2138 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2140 return NULL_TREE;
2143 /* Return a fixed-point type that has at least IBIT ibits and FBIT fbits
2144 that is unsigned if UNSIGNEDP is nonzero, otherwise signed;
2145 and saturating if SATP is nonzero, otherwise not saturating. */
2147 tree
2148 c_common_fixed_point_type_for_size (unsigned int ibit, unsigned int fbit,
2149 int unsignedp, int satp)
2151 enum mode_class mclass;
2152 if (ibit == 0)
2153 mclass = unsignedp ? MODE_UFRACT : MODE_FRACT;
2154 else
2155 mclass = unsignedp ? MODE_UACCUM : MODE_ACCUM;
2157 opt_scalar_mode opt_mode;
2158 scalar_mode mode;
2159 FOR_EACH_MODE_IN_CLASS (opt_mode, mclass)
2161 mode = opt_mode.require ();
2162 if (GET_MODE_IBIT (mode) >= ibit && GET_MODE_FBIT (mode) >= fbit)
2163 break;
2166 if (!opt_mode.exists (&mode) || !targetm.scalar_mode_supported_p (mode))
2168 sorry ("GCC cannot support operators with integer types and "
2169 "fixed-point types that have too many integral and "
2170 "fractional bits together");
2171 return NULL_TREE;
2174 return c_common_type_for_mode (mode, satp);
2177 /* Used for communication between c_common_type_for_mode and
2178 c_register_builtin_type. */
2179 tree registered_builtin_types;
2181 /* Return a data type that has machine mode MODE.
2182 If the mode is an integer,
2183 then UNSIGNEDP selects between signed and unsigned types.
2184 If the mode is a fixed-point mode,
2185 then UNSIGNEDP selects between saturating and nonsaturating types. */
2187 tree
2188 c_common_type_for_mode (machine_mode mode, int unsignedp)
2190 tree t;
2191 int i;
2193 if (mode == TYPE_MODE (integer_type_node))
2194 return unsignedp ? unsigned_type_node : integer_type_node;
2196 if (mode == TYPE_MODE (signed_char_type_node))
2197 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2199 if (mode == TYPE_MODE (short_integer_type_node))
2200 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2202 if (mode == TYPE_MODE (long_integer_type_node))
2203 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2205 if (mode == TYPE_MODE (long_long_integer_type_node))
2206 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
2208 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2209 if (int_n_enabled_p[i]
2210 && mode == int_n_data[i].m)
2211 return (unsignedp ? int_n_trees[i].unsigned_type
2212 : int_n_trees[i].signed_type);
2214 if (mode == QImode)
2215 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2217 if (mode == HImode)
2218 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2220 if (mode == SImode)
2221 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2223 if (mode == DImode)
2224 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2226 #if HOST_BITS_PER_WIDE_INT >= 64
2227 if (mode == TYPE_MODE (intTI_type_node))
2228 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2229 #endif
2231 if (mode == TYPE_MODE (float_type_node))
2232 return float_type_node;
2234 if (mode == TYPE_MODE (double_type_node))
2235 return double_type_node;
2237 if (mode == TYPE_MODE (long_double_type_node))
2238 return long_double_type_node;
2240 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
2241 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE
2242 && mode == TYPE_MODE (FLOATN_NX_TYPE_NODE (i)))
2243 return FLOATN_NX_TYPE_NODE (i);
2245 if (mode == TYPE_MODE (void_type_node))
2246 return void_type_node;
2248 if (mode == TYPE_MODE (build_pointer_type (char_type_node))
2249 || mode == TYPE_MODE (build_pointer_type (integer_type_node)))
2251 unsigned int precision
2252 = GET_MODE_PRECISION (as_a <scalar_int_mode> (mode));
2253 return (unsignedp
2254 ? make_unsigned_type (precision)
2255 : make_signed_type (precision));
2258 if (COMPLEX_MODE_P (mode))
2260 machine_mode inner_mode;
2261 tree inner_type;
2263 if (mode == TYPE_MODE (complex_float_type_node))
2264 return complex_float_type_node;
2265 if (mode == TYPE_MODE (complex_double_type_node))
2266 return complex_double_type_node;
2267 if (mode == TYPE_MODE (complex_long_double_type_node))
2268 return complex_long_double_type_node;
2270 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
2271 if (COMPLEX_FLOATN_NX_TYPE_NODE (i) != NULL_TREE
2272 && mode == TYPE_MODE (COMPLEX_FLOATN_NX_TYPE_NODE (i)))
2273 return COMPLEX_FLOATN_NX_TYPE_NODE (i);
2275 if (mode == TYPE_MODE (complex_integer_type_node) && !unsignedp)
2276 return complex_integer_type_node;
2278 inner_mode = GET_MODE_INNER (mode);
2279 inner_type = c_common_type_for_mode (inner_mode, unsignedp);
2280 if (inner_type != NULL_TREE)
2281 return build_complex_type (inner_type);
2283 else if (VECTOR_MODE_P (mode))
2285 machine_mode inner_mode = GET_MODE_INNER (mode);
2286 tree inner_type = c_common_type_for_mode (inner_mode, unsignedp);
2287 if (inner_type != NULL_TREE)
2288 return build_vector_type_for_mode (inner_type, mode);
2291 if (mode == TYPE_MODE (dfloat32_type_node))
2292 return dfloat32_type_node;
2293 if (mode == TYPE_MODE (dfloat64_type_node))
2294 return dfloat64_type_node;
2295 if (mode == TYPE_MODE (dfloat128_type_node))
2296 return dfloat128_type_node;
2298 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode))
2300 if (mode == TYPE_MODE (short_fract_type_node))
2301 return unsignedp ? sat_short_fract_type_node : short_fract_type_node;
2302 if (mode == TYPE_MODE (fract_type_node))
2303 return unsignedp ? sat_fract_type_node : fract_type_node;
2304 if (mode == TYPE_MODE (long_fract_type_node))
2305 return unsignedp ? sat_long_fract_type_node : long_fract_type_node;
2306 if (mode == TYPE_MODE (long_long_fract_type_node))
2307 return unsignedp ? sat_long_long_fract_type_node
2308 : long_long_fract_type_node;
2310 if (mode == TYPE_MODE (unsigned_short_fract_type_node))
2311 return unsignedp ? sat_unsigned_short_fract_type_node
2312 : unsigned_short_fract_type_node;
2313 if (mode == TYPE_MODE (unsigned_fract_type_node))
2314 return unsignedp ? sat_unsigned_fract_type_node
2315 : unsigned_fract_type_node;
2316 if (mode == TYPE_MODE (unsigned_long_fract_type_node))
2317 return unsignedp ? sat_unsigned_long_fract_type_node
2318 : unsigned_long_fract_type_node;
2319 if (mode == TYPE_MODE (unsigned_long_long_fract_type_node))
2320 return unsignedp ? sat_unsigned_long_long_fract_type_node
2321 : unsigned_long_long_fract_type_node;
2323 if (mode == TYPE_MODE (short_accum_type_node))
2324 return unsignedp ? sat_short_accum_type_node : short_accum_type_node;
2325 if (mode == TYPE_MODE (accum_type_node))
2326 return unsignedp ? sat_accum_type_node : accum_type_node;
2327 if (mode == TYPE_MODE (long_accum_type_node))
2328 return unsignedp ? sat_long_accum_type_node : long_accum_type_node;
2329 if (mode == TYPE_MODE (long_long_accum_type_node))
2330 return unsignedp ? sat_long_long_accum_type_node
2331 : long_long_accum_type_node;
2333 if (mode == TYPE_MODE (unsigned_short_accum_type_node))
2334 return unsignedp ? sat_unsigned_short_accum_type_node
2335 : unsigned_short_accum_type_node;
2336 if (mode == TYPE_MODE (unsigned_accum_type_node))
2337 return unsignedp ? sat_unsigned_accum_type_node
2338 : unsigned_accum_type_node;
2339 if (mode == TYPE_MODE (unsigned_long_accum_type_node))
2340 return unsignedp ? sat_unsigned_long_accum_type_node
2341 : unsigned_long_accum_type_node;
2342 if (mode == TYPE_MODE (unsigned_long_long_accum_type_node))
2343 return unsignedp ? sat_unsigned_long_long_accum_type_node
2344 : unsigned_long_long_accum_type_node;
2346 if (mode == QQmode)
2347 return unsignedp ? sat_qq_type_node : qq_type_node;
2348 if (mode == HQmode)
2349 return unsignedp ? sat_hq_type_node : hq_type_node;
2350 if (mode == SQmode)
2351 return unsignedp ? sat_sq_type_node : sq_type_node;
2352 if (mode == DQmode)
2353 return unsignedp ? sat_dq_type_node : dq_type_node;
2354 if (mode == TQmode)
2355 return unsignedp ? sat_tq_type_node : tq_type_node;
2357 if (mode == UQQmode)
2358 return unsignedp ? sat_uqq_type_node : uqq_type_node;
2359 if (mode == UHQmode)
2360 return unsignedp ? sat_uhq_type_node : uhq_type_node;
2361 if (mode == USQmode)
2362 return unsignedp ? sat_usq_type_node : usq_type_node;
2363 if (mode == UDQmode)
2364 return unsignedp ? sat_udq_type_node : udq_type_node;
2365 if (mode == UTQmode)
2366 return unsignedp ? sat_utq_type_node : utq_type_node;
2368 if (mode == HAmode)
2369 return unsignedp ? sat_ha_type_node : ha_type_node;
2370 if (mode == SAmode)
2371 return unsignedp ? sat_sa_type_node : sa_type_node;
2372 if (mode == DAmode)
2373 return unsignedp ? sat_da_type_node : da_type_node;
2374 if (mode == TAmode)
2375 return unsignedp ? sat_ta_type_node : ta_type_node;
2377 if (mode == UHAmode)
2378 return unsignedp ? sat_uha_type_node : uha_type_node;
2379 if (mode == USAmode)
2380 return unsignedp ? sat_usa_type_node : usa_type_node;
2381 if (mode == UDAmode)
2382 return unsignedp ? sat_uda_type_node : uda_type_node;
2383 if (mode == UTAmode)
2384 return unsignedp ? sat_uta_type_node : uta_type_node;
2387 for (t = registered_builtin_types; t; t = TREE_CHAIN (t))
2388 if (TYPE_MODE (TREE_VALUE (t)) == mode
2389 && !!unsignedp == !!TYPE_UNSIGNED (TREE_VALUE (t)))
2390 return TREE_VALUE (t);
2392 return NULL_TREE;
2395 tree
2396 c_common_unsigned_type (tree type)
2398 return c_common_signed_or_unsigned_type (1, type);
2401 /* Return a signed type the same as TYPE in other respects. */
2403 tree
2404 c_common_signed_type (tree type)
2406 return c_common_signed_or_unsigned_type (0, type);
2409 /* Return a type the same as TYPE except unsigned or
2410 signed according to UNSIGNEDP. */
2412 tree
2413 c_common_signed_or_unsigned_type (int unsignedp, tree type)
2415 tree type1;
2416 int i;
2418 /* This block of code emulates the behavior of the old
2419 c_common_unsigned_type. In particular, it returns
2420 long_unsigned_type_node if passed a long, even when a int would
2421 have the same size. This is necessary for warnings to work
2422 correctly in archs where sizeof(int) == sizeof(long) */
2424 type1 = TYPE_MAIN_VARIANT (type);
2425 if (type1 == signed_char_type_node || type1 == char_type_node || type1 == unsigned_char_type_node)
2426 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2427 if (type1 == integer_type_node || type1 == unsigned_type_node)
2428 return unsignedp ? unsigned_type_node : integer_type_node;
2429 if (type1 == short_integer_type_node || type1 == short_unsigned_type_node)
2430 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2431 if (type1 == long_integer_type_node || type1 == long_unsigned_type_node)
2432 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2433 if (type1 == long_long_integer_type_node || type1 == long_long_unsigned_type_node)
2434 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
2436 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2437 if (int_n_enabled_p[i]
2438 && (type1 == int_n_trees[i].unsigned_type
2439 || type1 == int_n_trees[i].signed_type))
2440 return (unsignedp ? int_n_trees[i].unsigned_type
2441 : int_n_trees[i].signed_type);
2443 #if HOST_BITS_PER_WIDE_INT >= 64
2444 if (type1 == intTI_type_node || type1 == unsigned_intTI_type_node)
2445 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2446 #endif
2447 if (type1 == intDI_type_node || type1 == unsigned_intDI_type_node)
2448 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2449 if (type1 == intSI_type_node || type1 == unsigned_intSI_type_node)
2450 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2451 if (type1 == intHI_type_node || type1 == unsigned_intHI_type_node)
2452 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2453 if (type1 == intQI_type_node || type1 == unsigned_intQI_type_node)
2454 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2456 #define C_COMMON_FIXED_TYPES(NAME) \
2457 if (type1 == short_ ## NAME ## _type_node \
2458 || type1 == unsigned_short_ ## NAME ## _type_node) \
2459 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
2460 : short_ ## NAME ## _type_node; \
2461 if (type1 == NAME ## _type_node \
2462 || type1 == unsigned_ ## NAME ## _type_node) \
2463 return unsignedp ? unsigned_ ## NAME ## _type_node \
2464 : NAME ## _type_node; \
2465 if (type1 == long_ ## NAME ## _type_node \
2466 || type1 == unsigned_long_ ## NAME ## _type_node) \
2467 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
2468 : long_ ## NAME ## _type_node; \
2469 if (type1 == long_long_ ## NAME ## _type_node \
2470 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
2471 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
2472 : long_long_ ## NAME ## _type_node;
2474 #define C_COMMON_FIXED_MODE_TYPES(NAME) \
2475 if (type1 == NAME ## _type_node \
2476 || type1 == u ## NAME ## _type_node) \
2477 return unsignedp ? u ## NAME ## _type_node \
2478 : NAME ## _type_node;
2480 #define C_COMMON_FIXED_TYPES_SAT(NAME) \
2481 if (type1 == sat_ ## short_ ## NAME ## _type_node \
2482 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
2483 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
2484 : sat_ ## short_ ## NAME ## _type_node; \
2485 if (type1 == sat_ ## NAME ## _type_node \
2486 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
2487 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
2488 : sat_ ## NAME ## _type_node; \
2489 if (type1 == sat_ ## long_ ## NAME ## _type_node \
2490 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
2491 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
2492 : sat_ ## long_ ## NAME ## _type_node; \
2493 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
2494 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
2495 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
2496 : sat_ ## long_long_ ## NAME ## _type_node;
2498 #define C_COMMON_FIXED_MODE_TYPES_SAT(NAME) \
2499 if (type1 == sat_ ## NAME ## _type_node \
2500 || type1 == sat_ ## u ## NAME ## _type_node) \
2501 return unsignedp ? sat_ ## u ## NAME ## _type_node \
2502 : sat_ ## NAME ## _type_node;
2504 C_COMMON_FIXED_TYPES (fract);
2505 C_COMMON_FIXED_TYPES_SAT (fract);
2506 C_COMMON_FIXED_TYPES (accum);
2507 C_COMMON_FIXED_TYPES_SAT (accum);
2509 C_COMMON_FIXED_MODE_TYPES (qq);
2510 C_COMMON_FIXED_MODE_TYPES (hq);
2511 C_COMMON_FIXED_MODE_TYPES (sq);
2512 C_COMMON_FIXED_MODE_TYPES (dq);
2513 C_COMMON_FIXED_MODE_TYPES (tq);
2514 C_COMMON_FIXED_MODE_TYPES_SAT (qq);
2515 C_COMMON_FIXED_MODE_TYPES_SAT (hq);
2516 C_COMMON_FIXED_MODE_TYPES_SAT (sq);
2517 C_COMMON_FIXED_MODE_TYPES_SAT (dq);
2518 C_COMMON_FIXED_MODE_TYPES_SAT (tq);
2519 C_COMMON_FIXED_MODE_TYPES (ha);
2520 C_COMMON_FIXED_MODE_TYPES (sa);
2521 C_COMMON_FIXED_MODE_TYPES (da);
2522 C_COMMON_FIXED_MODE_TYPES (ta);
2523 C_COMMON_FIXED_MODE_TYPES_SAT (ha);
2524 C_COMMON_FIXED_MODE_TYPES_SAT (sa);
2525 C_COMMON_FIXED_MODE_TYPES_SAT (da);
2526 C_COMMON_FIXED_MODE_TYPES_SAT (ta);
2528 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2529 the precision; they have precision set to match their range, but
2530 may use a wider mode to match an ABI. If we change modes, we may
2531 wind up with bad conversions. For INTEGER_TYPEs in C, must check
2532 the precision as well, so as to yield correct results for
2533 bit-field types. C++ does not have these separate bit-field
2534 types, and producing a signed or unsigned variant of an
2535 ENUMERAL_TYPE may cause other problems as well. */
2537 if (!INTEGRAL_TYPE_P (type)
2538 || TYPE_UNSIGNED (type) == unsignedp)
2539 return type;
2541 #define TYPE_OK(node) \
2542 (TYPE_MODE (type) == TYPE_MODE (node) \
2543 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
2544 if (TYPE_OK (signed_char_type_node))
2545 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2546 if (TYPE_OK (integer_type_node))
2547 return unsignedp ? unsigned_type_node : integer_type_node;
2548 if (TYPE_OK (short_integer_type_node))
2549 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2550 if (TYPE_OK (long_integer_type_node))
2551 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2552 if (TYPE_OK (long_long_integer_type_node))
2553 return (unsignedp ? long_long_unsigned_type_node
2554 : long_long_integer_type_node);
2556 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2557 if (int_n_enabled_p[i]
2558 && TYPE_MODE (type) == int_n_data[i].m
2559 && TYPE_PRECISION (type) == int_n_data[i].bitsize)
2560 return (unsignedp ? int_n_trees[i].unsigned_type
2561 : int_n_trees[i].signed_type);
2563 #if HOST_BITS_PER_WIDE_INT >= 64
2564 if (TYPE_OK (intTI_type_node))
2565 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2566 #endif
2567 if (TYPE_OK (intDI_type_node))
2568 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2569 if (TYPE_OK (intSI_type_node))
2570 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2571 if (TYPE_OK (intHI_type_node))
2572 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2573 if (TYPE_OK (intQI_type_node))
2574 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2575 #undef TYPE_OK
2577 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
2580 /* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
2582 tree
2583 c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width, int unsignedp)
2585 int i;
2587 /* Extended integer types of the same width as a standard type have
2588 lesser rank, so those of the same width as int promote to int or
2589 unsigned int and are valid for printf formats expecting int or
2590 unsigned int. To avoid such special cases, avoid creating
2591 extended integer types for bit-fields if a standard integer type
2592 is available. */
2593 if (width == TYPE_PRECISION (integer_type_node))
2594 return unsignedp ? unsigned_type_node : integer_type_node;
2595 if (width == TYPE_PRECISION (signed_char_type_node))
2596 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2597 if (width == TYPE_PRECISION (short_integer_type_node))
2598 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2599 if (width == TYPE_PRECISION (long_integer_type_node))
2600 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2601 if (width == TYPE_PRECISION (long_long_integer_type_node))
2602 return (unsignedp ? long_long_unsigned_type_node
2603 : long_long_integer_type_node);
2604 for (i = 0; i < NUM_INT_N_ENTS; i ++)
2605 if (int_n_enabled_p[i]
2606 && width == int_n_data[i].bitsize)
2607 return (unsignedp ? int_n_trees[i].unsigned_type
2608 : int_n_trees[i].signed_type);
2609 return build_nonstandard_integer_type (width, unsignedp);
2612 /* The C version of the register_builtin_type langhook. */
2614 void
2615 c_register_builtin_type (tree type, const char* name)
2617 tree decl;
2619 decl = build_decl (UNKNOWN_LOCATION,
2620 TYPE_DECL, get_identifier (name), type);
2621 DECL_ARTIFICIAL (decl) = 1;
2622 if (!TYPE_NAME (type))
2623 TYPE_NAME (type) = decl;
2624 lang_hooks.decls.pushdecl (decl);
2626 registered_builtin_types = tree_cons (0, type, registered_builtin_types);
2629 /* Print an error message for invalid operands to arith operation
2630 CODE with TYPE0 for operand 0, and TYPE1 for operand 1.
2631 RICHLOC is a rich location for the message, containing either
2632 three separate locations for each of the operator and operands
2634 lhs op rhs
2635 ~~~ ^~ ~~~
2637 (C FE), or one location ranging over all over them
2639 lhs op rhs
2640 ~~~~^~~~~~
2642 (C++ FE). */
2644 void
2645 binary_op_error (rich_location *richloc, enum tree_code code,
2646 tree type0, tree type1)
2648 const char *opname;
2650 switch (code)
2652 case PLUS_EXPR:
2653 opname = "+"; break;
2654 case MINUS_EXPR:
2655 opname = "-"; break;
2656 case MULT_EXPR:
2657 opname = "*"; break;
2658 case MAX_EXPR:
2659 opname = "max"; break;
2660 case MIN_EXPR:
2661 opname = "min"; break;
2662 case EQ_EXPR:
2663 opname = "=="; break;
2664 case NE_EXPR:
2665 opname = "!="; break;
2666 case LE_EXPR:
2667 opname = "<="; break;
2668 case GE_EXPR:
2669 opname = ">="; break;
2670 case LT_EXPR:
2671 opname = "<"; break;
2672 case GT_EXPR:
2673 opname = ">"; break;
2674 case LSHIFT_EXPR:
2675 opname = "<<"; break;
2676 case RSHIFT_EXPR:
2677 opname = ">>"; break;
2678 case TRUNC_MOD_EXPR:
2679 case FLOOR_MOD_EXPR:
2680 opname = "%"; break;
2681 case TRUNC_DIV_EXPR:
2682 case FLOOR_DIV_EXPR:
2683 opname = "/"; break;
2684 case BIT_AND_EXPR:
2685 opname = "&"; break;
2686 case BIT_IOR_EXPR:
2687 opname = "|"; break;
2688 case TRUTH_ANDIF_EXPR:
2689 opname = "&&"; break;
2690 case TRUTH_ORIF_EXPR:
2691 opname = "||"; break;
2692 case BIT_XOR_EXPR:
2693 opname = "^"; break;
2694 default:
2695 gcc_unreachable ();
2697 error_at_rich_loc (richloc,
2698 "invalid operands to binary %s (have %qT and %qT)",
2699 opname, type0, type1);
2702 /* Given an expression as a tree, return its original type. Do this
2703 by stripping any conversion that preserves the sign and precision. */
2704 static tree
2705 expr_original_type (tree expr)
2707 STRIP_SIGN_NOPS (expr);
2708 return TREE_TYPE (expr);
2711 /* Subroutine of build_binary_op, used for comparison operations.
2712 See if the operands have both been converted from subword integer types
2713 and, if so, perhaps change them both back to their original type.
2714 This function is also responsible for converting the two operands
2715 to the proper common type for comparison.
2717 The arguments of this function are all pointers to local variables
2718 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
2719 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
2721 LOC is the location of the comparison.
2723 If this function returns non-NULL_TREE, it means that the comparison has
2724 a constant value. What this function returns is an expression for
2725 that value. */
2727 tree
2728 shorten_compare (location_t loc, tree *op0_ptr, tree *op1_ptr,
2729 tree *restype_ptr, enum tree_code *rescode_ptr)
2731 tree type;
2732 tree op0 = *op0_ptr;
2733 tree op1 = *op1_ptr;
2734 int unsignedp0, unsignedp1;
2735 int real1, real2;
2736 tree primop0, primop1;
2737 enum tree_code code = *rescode_ptr;
2739 /* Throw away any conversions to wider types
2740 already present in the operands. */
2742 primop0 = c_common_get_narrower (op0, &unsignedp0);
2743 primop1 = c_common_get_narrower (op1, &unsignedp1);
2745 /* If primopN is first sign-extended from primopN's precision to opN's
2746 precision, then zero-extended from opN's precision to
2747 *restype_ptr precision, shortenings might be invalid. */
2748 if (TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (TREE_TYPE (op0))
2749 && TYPE_PRECISION (TREE_TYPE (op0)) < TYPE_PRECISION (*restype_ptr)
2750 && !unsignedp0
2751 && TYPE_UNSIGNED (TREE_TYPE (op0)))
2752 primop0 = op0;
2753 if (TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (TREE_TYPE (op1))
2754 && TYPE_PRECISION (TREE_TYPE (op1)) < TYPE_PRECISION (*restype_ptr)
2755 && !unsignedp1
2756 && TYPE_UNSIGNED (TREE_TYPE (op1)))
2757 primop1 = op1;
2759 /* Handle the case that OP0 does not *contain* a conversion
2760 but it *requires* conversion to FINAL_TYPE. */
2762 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
2763 unsignedp0 = TYPE_UNSIGNED (TREE_TYPE (op0));
2764 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
2765 unsignedp1 = TYPE_UNSIGNED (TREE_TYPE (op1));
2767 /* If one of the operands must be floated, we cannot optimize. */
2768 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
2769 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
2771 /* If first arg is constant, swap the args (changing operation
2772 so value is preserved), for canonicalization. Don't do this if
2773 the second arg is 0. */
2775 if (TREE_CONSTANT (primop0)
2776 && !integer_zerop (primop1) && !real_zerop (primop1)
2777 && !fixed_zerop (primop1))
2779 std::swap (primop0, primop1);
2780 std::swap (op0, op1);
2781 *op0_ptr = op0;
2782 *op1_ptr = op1;
2783 std::swap (unsignedp0, unsignedp1);
2784 std::swap (real1, real2);
2786 switch (code)
2788 case LT_EXPR:
2789 code = GT_EXPR;
2790 break;
2791 case GT_EXPR:
2792 code = LT_EXPR;
2793 break;
2794 case LE_EXPR:
2795 code = GE_EXPR;
2796 break;
2797 case GE_EXPR:
2798 code = LE_EXPR;
2799 break;
2800 default:
2801 break;
2803 *rescode_ptr = code;
2806 /* If comparing an integer against a constant more bits wide,
2807 maybe we can deduce a value of 1 or 0 independent of the data.
2808 Or else truncate the constant now
2809 rather than extend the variable at run time.
2811 This is only interesting if the constant is the wider arg.
2812 Also, it is not safe if the constant is unsigned and the
2813 variable arg is signed, since in this case the variable
2814 would be sign-extended and then regarded as unsigned.
2815 Our technique fails in this case because the lowest/highest
2816 possible unsigned results don't follow naturally from the
2817 lowest/highest possible values of the variable operand.
2818 For just EQ_EXPR and NE_EXPR there is another technique that
2819 could be used: see if the constant can be faithfully represented
2820 in the other operand's type, by truncating it and reextending it
2821 and see if that preserves the constant's value. */
2823 if (!real1 && !real2
2824 && TREE_CODE (TREE_TYPE (primop0)) != FIXED_POINT_TYPE
2825 && TREE_CODE (primop1) == INTEGER_CST
2826 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
2828 int min_gt, max_gt, min_lt, max_lt;
2829 tree maxval, minval;
2830 /* 1 if comparison is nominally unsigned. */
2831 int unsignedp = TYPE_UNSIGNED (*restype_ptr);
2832 tree val;
2834 type = c_common_signed_or_unsigned_type (unsignedp0,
2835 TREE_TYPE (primop0));
2837 maxval = TYPE_MAX_VALUE (type);
2838 minval = TYPE_MIN_VALUE (type);
2840 if (unsignedp && !unsignedp0)
2841 *restype_ptr = c_common_signed_type (*restype_ptr);
2843 if (TREE_TYPE (primop1) != *restype_ptr)
2845 /* Convert primop1 to target type, but do not introduce
2846 additional overflow. We know primop1 is an int_cst. */
2847 primop1 = force_fit_type (*restype_ptr,
2848 wi::to_wide
2849 (primop1,
2850 TYPE_PRECISION (*restype_ptr)),
2851 0, TREE_OVERFLOW (primop1));
2853 if (type != *restype_ptr)
2855 minval = convert (*restype_ptr, minval);
2856 maxval = convert (*restype_ptr, maxval);
2859 min_gt = tree_int_cst_lt (primop1, minval);
2860 max_gt = tree_int_cst_lt (primop1, maxval);
2861 min_lt = tree_int_cst_lt (minval, primop1);
2862 max_lt = tree_int_cst_lt (maxval, primop1);
2864 val = 0;
2865 /* This used to be a switch, but Genix compiler can't handle that. */
2866 if (code == NE_EXPR)
2868 if (max_lt || min_gt)
2869 val = truthvalue_true_node;
2871 else if (code == EQ_EXPR)
2873 if (max_lt || min_gt)
2874 val = truthvalue_false_node;
2876 else if (code == LT_EXPR)
2878 if (max_lt)
2879 val = truthvalue_true_node;
2880 if (!min_lt)
2881 val = truthvalue_false_node;
2883 else if (code == GT_EXPR)
2885 if (min_gt)
2886 val = truthvalue_true_node;
2887 if (!max_gt)
2888 val = truthvalue_false_node;
2890 else if (code == LE_EXPR)
2892 if (!max_gt)
2893 val = truthvalue_true_node;
2894 if (min_gt)
2895 val = truthvalue_false_node;
2897 else if (code == GE_EXPR)
2899 if (!min_lt)
2900 val = truthvalue_true_node;
2901 if (max_lt)
2902 val = truthvalue_false_node;
2905 /* If primop0 was sign-extended and unsigned comparison specd,
2906 we did a signed comparison above using the signed type bounds.
2907 But the comparison we output must be unsigned.
2909 Also, for inequalities, VAL is no good; but if the signed
2910 comparison had *any* fixed result, it follows that the
2911 unsigned comparison just tests the sign in reverse
2912 (positive values are LE, negative ones GE).
2913 So we can generate an unsigned comparison
2914 against an extreme value of the signed type. */
2916 if (unsignedp && !unsignedp0)
2918 if (val != 0)
2919 switch (code)
2921 case LT_EXPR:
2922 case GE_EXPR:
2923 primop1 = TYPE_MIN_VALUE (type);
2924 val = 0;
2925 break;
2927 case LE_EXPR:
2928 case GT_EXPR:
2929 primop1 = TYPE_MAX_VALUE (type);
2930 val = 0;
2931 break;
2933 default:
2934 break;
2936 type = c_common_unsigned_type (type);
2939 if (TREE_CODE (primop0) != INTEGER_CST
2940 /* Don't warn if it's from a (non-system) macro. */
2941 && !(from_macro_expansion_at
2942 (expansion_point_location_if_in_system_header
2943 (EXPR_LOCATION (primop0)))))
2945 if (val == truthvalue_false_node)
2946 warning_at (loc, OPT_Wtype_limits,
2947 "comparison is always false due to limited range of data type");
2948 if (val == truthvalue_true_node)
2949 warning_at (loc, OPT_Wtype_limits,
2950 "comparison is always true due to limited range of data type");
2953 if (val != 0)
2955 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2956 if (TREE_SIDE_EFFECTS (primop0))
2957 return build2 (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
2958 return val;
2961 /* Value is not predetermined, but do the comparison
2962 in the type of the operand that is not constant.
2963 TYPE is already properly set. */
2966 /* If either arg is decimal float and the other is float, find the
2967 proper common type to use for comparison. */
2968 else if (real1 && real2
2969 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
2970 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1))))
2971 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
2973 /* If either arg is decimal float and the other is float, fail. */
2974 else if (real1 && real2
2975 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
2976 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1)))))
2977 return NULL_TREE;
2979 else if (real1 && real2
2980 && (TYPE_PRECISION (TREE_TYPE (primop0))
2981 == TYPE_PRECISION (TREE_TYPE (primop1))))
2982 type = TREE_TYPE (primop0);
2984 /* If args' natural types are both narrower than nominal type
2985 and both extend in the same manner, compare them
2986 in the type of the wider arg.
2987 Otherwise must actually extend both to the nominal
2988 common type lest different ways of extending
2989 alter the result.
2990 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
2992 else if (unsignedp0 == unsignedp1 && real1 == real2
2993 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
2994 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
2996 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
2997 type = c_common_signed_or_unsigned_type (unsignedp0
2998 || TYPE_UNSIGNED (*restype_ptr),
2999 type);
3000 /* Make sure shorter operand is extended the right way
3001 to match the longer operand. */
3002 primop0
3003 = convert (c_common_signed_or_unsigned_type (unsignedp0,
3004 TREE_TYPE (primop0)),
3005 primop0);
3006 primop1
3007 = convert (c_common_signed_or_unsigned_type (unsignedp1,
3008 TREE_TYPE (primop1)),
3009 primop1);
3011 else
3013 /* Here we must do the comparison on the nominal type
3014 using the args exactly as we received them. */
3015 type = *restype_ptr;
3016 primop0 = op0;
3017 primop1 = op1;
3019 if (!real1 && !real2 && integer_zerop (primop1)
3020 && TYPE_UNSIGNED (*restype_ptr))
3022 tree value = NULL_TREE;
3023 /* All unsigned values are >= 0, so we warn. However,
3024 if OP0 is a constant that is >= 0, the signedness of
3025 the comparison isn't an issue, so suppress the
3026 warning. */
3027 bool warn =
3028 warn_type_limits && !in_system_header_at (loc)
3029 && !(TREE_CODE (primop0) == INTEGER_CST
3030 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
3031 primop0)))
3032 /* Do not warn for enumeration types. */
3033 && (TREE_CODE (expr_original_type (primop0)) != ENUMERAL_TYPE);
3035 switch (code)
3037 case GE_EXPR:
3038 if (warn)
3039 warning_at (loc, OPT_Wtype_limits,
3040 "comparison of unsigned expression >= 0 is always true");
3041 value = truthvalue_true_node;
3042 break;
3044 case LT_EXPR:
3045 if (warn)
3046 warning_at (loc, OPT_Wtype_limits,
3047 "comparison of unsigned expression < 0 is always false");
3048 value = truthvalue_false_node;
3049 break;
3051 default:
3052 break;
3055 if (value != NULL_TREE)
3057 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3058 if (TREE_SIDE_EFFECTS (primop0))
3059 return build2 (COMPOUND_EXPR, TREE_TYPE (value),
3060 primop0, value);
3061 return value;
3066 *op0_ptr = convert (type, primop0);
3067 *op1_ptr = convert (type, primop1);
3069 *restype_ptr = truthvalue_type_node;
3071 return NULL_TREE;
3074 /* Return a tree for the sum or difference (RESULTCODE says which)
3075 of pointer PTROP and integer INTOP. */
3077 tree
3078 pointer_int_sum (location_t loc, enum tree_code resultcode,
3079 tree ptrop, tree intop, bool complain)
3081 tree size_exp, ret;
3083 /* The result is a pointer of the same type that is being added. */
3084 tree result_type = TREE_TYPE (ptrop);
3086 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
3088 if (complain && warn_pointer_arith)
3089 pedwarn (loc, OPT_Wpointer_arith,
3090 "pointer of type %<void *%> used in arithmetic");
3091 else if (!complain)
3092 return error_mark_node;
3093 size_exp = integer_one_node;
3095 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
3097 if (complain && warn_pointer_arith)
3098 pedwarn (loc, OPT_Wpointer_arith,
3099 "pointer to a function used in arithmetic");
3100 else if (!complain)
3101 return error_mark_node;
3102 size_exp = integer_one_node;
3104 else
3105 size_exp = size_in_bytes_loc (loc, TREE_TYPE (result_type));
3107 /* We are manipulating pointer values, so we don't need to warn
3108 about relying on undefined signed overflow. We disable the
3109 warning here because we use integer types so fold won't know that
3110 they are really pointers. */
3111 fold_defer_overflow_warnings ();
3113 /* If what we are about to multiply by the size of the elements
3114 contains a constant term, apply distributive law
3115 and multiply that constant term separately.
3116 This helps produce common subexpressions. */
3117 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
3118 && !TREE_CONSTANT (intop)
3119 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
3120 && TREE_CONSTANT (size_exp)
3121 /* If the constant comes from pointer subtraction,
3122 skip this optimization--it would cause an error. */
3123 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
3124 /* If the constant is unsigned, and smaller than the pointer size,
3125 then we must skip this optimization. This is because it could cause
3126 an overflow error if the constant is negative but INTOP is not. */
3127 && (!TYPE_UNSIGNED (TREE_TYPE (intop))
3128 || (TYPE_PRECISION (TREE_TYPE (intop))
3129 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
3131 enum tree_code subcode = resultcode;
3132 tree int_type = TREE_TYPE (intop);
3133 if (TREE_CODE (intop) == MINUS_EXPR)
3134 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
3135 /* Convert both subexpression types to the type of intop,
3136 because weird cases involving pointer arithmetic
3137 can result in a sum or difference with different type args. */
3138 ptrop = build_binary_op (EXPR_LOCATION (TREE_OPERAND (intop, 1)),
3139 subcode, ptrop,
3140 convert (int_type, TREE_OPERAND (intop, 1)),
3141 true);
3142 intop = convert (int_type, TREE_OPERAND (intop, 0));
3145 /* Convert the integer argument to a type the same size as sizetype
3146 so the multiply won't overflow spuriously. */
3147 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
3148 || TYPE_UNSIGNED (TREE_TYPE (intop)) != TYPE_UNSIGNED (sizetype))
3149 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
3150 TYPE_UNSIGNED (sizetype)), intop);
3152 /* Replace the integer argument with a suitable product by the object size.
3153 Do this multiplication as signed, then convert to the appropriate type
3154 for the pointer operation and disregard an overflow that occurred only
3155 because of the sign-extension change in the latter conversion. */
3157 tree t = fold_build2_loc (loc, MULT_EXPR, TREE_TYPE (intop), intop,
3158 convert (TREE_TYPE (intop), size_exp));
3159 intop = convert (sizetype, t);
3160 if (TREE_OVERFLOW_P (intop) && !TREE_OVERFLOW (t))
3161 intop = wide_int_to_tree (TREE_TYPE (intop), wi::to_wide (intop));
3164 /* Create the sum or difference. */
3165 if (resultcode == MINUS_EXPR)
3166 intop = fold_build1_loc (loc, NEGATE_EXPR, sizetype, intop);
3168 ret = fold_build_pointer_plus_loc (loc, ptrop, intop);
3170 fold_undefer_and_ignore_overflow_warnings ();
3172 return ret;
3175 /* Wrap a C_MAYBE_CONST_EXPR around an expression that is fully folded
3176 and if NON_CONST is known not to be permitted in an evaluated part
3177 of a constant expression. */
3179 tree
3180 c_wrap_maybe_const (tree expr, bool non_const)
3182 bool nowarning = TREE_NO_WARNING (expr);
3183 location_t loc = EXPR_LOCATION (expr);
3185 /* This should never be called for C++. */
3186 if (c_dialect_cxx ())
3187 gcc_unreachable ();
3189 /* The result of folding may have a NOP_EXPR to set TREE_NO_WARNING. */
3190 STRIP_TYPE_NOPS (expr);
3191 expr = build2 (C_MAYBE_CONST_EXPR, TREE_TYPE (expr), NULL, expr);
3192 C_MAYBE_CONST_EXPR_NON_CONST (expr) = non_const;
3193 if (nowarning)
3194 TREE_NO_WARNING (expr) = 1;
3195 protected_set_expr_location (expr, loc);
3197 return expr;
3200 /* Return whether EXPR is a declaration whose address can never be
3201 NULL. */
3203 bool
3204 decl_with_nonnull_addr_p (const_tree expr)
3206 return (DECL_P (expr)
3207 && (TREE_CODE (expr) == PARM_DECL
3208 || TREE_CODE (expr) == LABEL_DECL
3209 || !DECL_WEAK (expr)));
3212 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
3213 or for an `if' or `while' statement or ?..: exp. It should already
3214 have been validated to be of suitable type; otherwise, a bad
3215 diagnostic may result.
3217 The EXPR is located at LOCATION.
3219 This preparation consists of taking the ordinary
3220 representation of an expression expr and producing a valid tree
3221 boolean expression describing whether expr is nonzero. We could
3222 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
3223 but we optimize comparisons, &&, ||, and !.
3225 The resulting type should always be `truthvalue_type_node'. */
3227 tree
3228 c_common_truthvalue_conversion (location_t location, tree expr)
3230 switch (TREE_CODE (expr))
3232 case EQ_EXPR: case NE_EXPR: case UNEQ_EXPR: case LTGT_EXPR:
3233 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
3234 case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
3235 case ORDERED_EXPR: case UNORDERED_EXPR:
3236 if (TREE_TYPE (expr) == truthvalue_type_node)
3237 return expr;
3238 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
3239 TREE_OPERAND (expr, 0), TREE_OPERAND (expr, 1));
3240 goto ret;
3242 case TRUTH_ANDIF_EXPR:
3243 case TRUTH_ORIF_EXPR:
3244 case TRUTH_AND_EXPR:
3245 case TRUTH_OR_EXPR:
3246 case TRUTH_XOR_EXPR:
3247 if (TREE_TYPE (expr) == truthvalue_type_node)
3248 return expr;
3249 expr = build2 (TREE_CODE (expr), truthvalue_type_node,
3250 c_common_truthvalue_conversion (location,
3251 TREE_OPERAND (expr, 0)),
3252 c_common_truthvalue_conversion (location,
3253 TREE_OPERAND (expr, 1)));
3254 goto ret;
3256 case TRUTH_NOT_EXPR:
3257 if (TREE_TYPE (expr) == truthvalue_type_node)
3258 return expr;
3259 expr = build1 (TREE_CODE (expr), truthvalue_type_node,
3260 c_common_truthvalue_conversion (location,
3261 TREE_OPERAND (expr, 0)));
3262 goto ret;
3264 case ERROR_MARK:
3265 return expr;
3267 case INTEGER_CST:
3268 if (TREE_CODE (TREE_TYPE (expr)) == ENUMERAL_TYPE
3269 && !integer_zerop (expr)
3270 && !integer_onep (expr))
3271 warning_at (location, OPT_Wint_in_bool_context,
3272 "enum constant in boolean context");
3273 return integer_zerop (expr) ? truthvalue_false_node
3274 : truthvalue_true_node;
3276 case REAL_CST:
3277 return real_compare (NE_EXPR, &TREE_REAL_CST (expr), &dconst0)
3278 ? truthvalue_true_node
3279 : truthvalue_false_node;
3281 case FIXED_CST:
3282 return fixed_compare (NE_EXPR, &TREE_FIXED_CST (expr),
3283 &FCONST0 (TYPE_MODE (TREE_TYPE (expr))))
3284 ? truthvalue_true_node
3285 : truthvalue_false_node;
3287 case FUNCTION_DECL:
3288 expr = build_unary_op (location, ADDR_EXPR, expr, false);
3289 /* Fall through. */
3291 case ADDR_EXPR:
3293 tree inner = TREE_OPERAND (expr, 0);
3294 if (decl_with_nonnull_addr_p (inner))
3296 /* Common Ada/Pascal programmer's mistake. */
3297 warning_at (location,
3298 OPT_Waddress,
3299 "the address of %qD will always evaluate as %<true%>",
3300 inner);
3301 return truthvalue_true_node;
3303 break;
3306 case COMPLEX_EXPR:
3307 expr = build_binary_op (EXPR_LOCATION (expr),
3308 (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
3309 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
3310 c_common_truthvalue_conversion (location,
3311 TREE_OPERAND (expr, 0)),
3312 c_common_truthvalue_conversion (location,
3313 TREE_OPERAND (expr, 1)),
3314 false);
3315 goto ret;
3317 case NEGATE_EXPR:
3318 case ABS_EXPR:
3319 case FLOAT_EXPR:
3320 case EXCESS_PRECISION_EXPR:
3321 /* These don't change whether an object is nonzero or zero. */
3322 return c_common_truthvalue_conversion (location, TREE_OPERAND (expr, 0));
3324 case LROTATE_EXPR:
3325 case RROTATE_EXPR:
3326 /* These don't change whether an object is zero or nonzero, but
3327 we can't ignore them if their second arg has side-effects. */
3328 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
3330 expr = build2 (COMPOUND_EXPR, truthvalue_type_node,
3331 TREE_OPERAND (expr, 1),
3332 c_common_truthvalue_conversion
3333 (location, TREE_OPERAND (expr, 0)));
3334 goto ret;
3336 else
3337 return c_common_truthvalue_conversion (location,
3338 TREE_OPERAND (expr, 0));
3340 case MULT_EXPR:
3341 warning_at (EXPR_LOCATION (expr), OPT_Wint_in_bool_context,
3342 "%<*%> in boolean context, suggest %<&&%> instead");
3343 break;
3345 case LSHIFT_EXPR:
3346 /* We will only warn on signed shifts here, because the majority of
3347 false positive warnings happen in code where unsigned arithmetic
3348 was used in anticipation of a possible overflow.
3349 Furthermore, if we see an unsigned type here we know that the
3350 result of the shift is not subject to integer promotion rules. */
3351 if (TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
3352 && !TYPE_UNSIGNED (TREE_TYPE (expr)))
3353 warning_at (EXPR_LOCATION (expr), OPT_Wint_in_bool_context,
3354 "%<<<%> in boolean context, did you mean %<<%> ?");
3355 break;
3357 case COND_EXPR:
3358 if (warn_int_in_bool_context
3359 && !from_macro_definition_at (EXPR_LOCATION (expr)))
3361 tree val1 = fold_for_warn (TREE_OPERAND (expr, 1));
3362 tree val2 = fold_for_warn (TREE_OPERAND (expr, 2));
3363 if (TREE_CODE (val1) == INTEGER_CST
3364 && TREE_CODE (val2) == INTEGER_CST
3365 && !integer_zerop (val1)
3366 && !integer_zerop (val2)
3367 && (!integer_onep (val1)
3368 || !integer_onep (val2)))
3369 warning_at (EXPR_LOCATION (expr), OPT_Wint_in_bool_context,
3370 "?: using integer constants in boolean context, "
3371 "the expression will always evaluate to %<true%>");
3372 else if ((TREE_CODE (val1) == INTEGER_CST
3373 && !integer_zerop (val1)
3374 && !integer_onep (val1))
3375 || (TREE_CODE (val2) == INTEGER_CST
3376 && !integer_zerop (val2)
3377 && !integer_onep (val2)))
3378 warning_at (EXPR_LOCATION (expr), OPT_Wint_in_bool_context,
3379 "?: using integer constants in boolean context");
3381 /* Distribute the conversion into the arms of a COND_EXPR. */
3382 if (c_dialect_cxx ())
3383 /* Avoid premature folding. */
3384 break;
3385 else
3387 int w = warn_int_in_bool_context;
3388 warn_int_in_bool_context = 0;
3389 /* Folding will happen later for C. */
3390 expr = build3 (COND_EXPR, truthvalue_type_node,
3391 TREE_OPERAND (expr, 0),
3392 c_common_truthvalue_conversion (location,
3393 TREE_OPERAND (expr, 1)),
3394 c_common_truthvalue_conversion (location,
3395 TREE_OPERAND (expr, 2)));
3396 warn_int_in_bool_context = w;
3397 goto ret;
3400 CASE_CONVERT:
3402 tree totype = TREE_TYPE (expr);
3403 tree fromtype = TREE_TYPE (TREE_OPERAND (expr, 0));
3405 if (POINTER_TYPE_P (totype)
3406 && !c_inhibit_evaluation_warnings
3407 && TREE_CODE (fromtype) == REFERENCE_TYPE)
3409 tree inner = expr;
3410 STRIP_NOPS (inner);
3412 if (DECL_P (inner))
3413 warning_at (location,
3414 OPT_Waddress,
3415 "the compiler can assume that the address of "
3416 "%qD will always evaluate to %<true%>",
3417 inner);
3420 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
3421 since that affects how `default_conversion' will behave. */
3422 if (TREE_CODE (totype) == REFERENCE_TYPE
3423 || TREE_CODE (fromtype) == REFERENCE_TYPE)
3424 break;
3425 /* Don't strip a conversion from C++0x scoped enum, since they
3426 don't implicitly convert to other types. */
3427 if (TREE_CODE (fromtype) == ENUMERAL_TYPE
3428 && ENUM_IS_SCOPED (fromtype))
3429 break;
3430 /* If this isn't narrowing the argument, we can ignore it. */
3431 if (TYPE_PRECISION (totype) >= TYPE_PRECISION (fromtype))
3432 return c_common_truthvalue_conversion (location,
3433 TREE_OPERAND (expr, 0));
3435 break;
3437 case MODIFY_EXPR:
3438 if (!TREE_NO_WARNING (expr)
3439 && warn_parentheses)
3441 warning_at (location, OPT_Wparentheses,
3442 "suggest parentheses around assignment used as "
3443 "truth value");
3444 TREE_NO_WARNING (expr) = 1;
3446 break;
3448 default:
3449 break;
3452 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
3454 tree t = save_expr (expr);
3455 expr = (build_binary_op
3456 (EXPR_LOCATION (expr),
3457 (TREE_SIDE_EFFECTS (expr)
3458 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
3459 c_common_truthvalue_conversion
3460 (location,
3461 build_unary_op (location, REALPART_EXPR, t, false)),
3462 c_common_truthvalue_conversion
3463 (location,
3464 build_unary_op (location, IMAGPART_EXPR, t, false)),
3465 false));
3466 goto ret;
3469 if (TREE_CODE (TREE_TYPE (expr)) == FIXED_POINT_TYPE)
3471 tree fixed_zero_node = build_fixed (TREE_TYPE (expr),
3472 FCONST0 (TYPE_MODE
3473 (TREE_TYPE (expr))));
3474 return build_binary_op (location, NE_EXPR, expr, fixed_zero_node, true);
3476 else
3477 return build_binary_op (location, NE_EXPR, expr, integer_zero_node, true);
3479 ret:
3480 protected_set_expr_location (expr, location);
3481 return expr;
3484 static void def_builtin_1 (enum built_in_function fncode,
3485 const char *name,
3486 enum built_in_class fnclass,
3487 tree fntype, tree libtype,
3488 bool both_p, bool fallback_p, bool nonansi_p,
3489 tree fnattrs, bool implicit_p);
3492 /* Apply the TYPE_QUALS to the new DECL. */
3494 void
3495 c_apply_type_quals_to_decl (int type_quals, tree decl)
3497 tree type = TREE_TYPE (decl);
3499 if (type == error_mark_node)
3500 return;
3502 if ((type_quals & TYPE_QUAL_CONST)
3503 || (type && TREE_CODE (type) == REFERENCE_TYPE))
3504 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
3505 constructor can produce constant init, so rely on cp_finish_decl to
3506 clear TREE_READONLY if the variable has non-constant init. */
3507 TREE_READONLY (decl) = 1;
3508 if (type_quals & TYPE_QUAL_VOLATILE)
3510 TREE_SIDE_EFFECTS (decl) = 1;
3511 TREE_THIS_VOLATILE (decl) = 1;
3513 if (type_quals & TYPE_QUAL_RESTRICT)
3515 while (type && TREE_CODE (type) == ARRAY_TYPE)
3516 /* Allow 'restrict' on arrays of pointers.
3517 FIXME currently we just ignore it. */
3518 type = TREE_TYPE (type);
3519 if (!type
3520 || !POINTER_TYPE_P (type)
3521 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type)))
3522 error ("invalid use of %<restrict%>");
3526 /* Return the typed-based alias set for T, which may be an expression
3527 or a type. Return -1 if we don't do anything special. */
3529 alias_set_type
3530 c_common_get_alias_set (tree t)
3532 /* For VLAs, use the alias set of the element type rather than the
3533 default of alias set 0 for types compared structurally. */
3534 if (TYPE_P (t) && TYPE_STRUCTURAL_EQUALITY_P (t))
3536 if (TREE_CODE (t) == ARRAY_TYPE)
3537 return get_alias_set (TREE_TYPE (t));
3538 return -1;
3541 /* That's all the expressions we handle specially. */
3542 if (!TYPE_P (t))
3543 return -1;
3545 /* The C standard guarantees that any object may be accessed via an
3546 lvalue that has character type. */
3547 if (t == char_type_node
3548 || t == signed_char_type_node
3549 || t == unsigned_char_type_node)
3550 return 0;
3552 /* The C standard specifically allows aliasing between signed and
3553 unsigned variants of the same type. We treat the signed
3554 variant as canonical. */
3555 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
3557 tree t1 = c_common_signed_type (t);
3559 /* t1 == t can happen for boolean nodes which are always unsigned. */
3560 if (t1 != t)
3561 return get_alias_set (t1);
3564 return -1;
3567 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where
3568 the IS_SIZEOF parameter indicates which operator is being applied.
3569 The COMPLAIN flag controls whether we should diagnose possibly
3570 ill-formed constructs or not. LOC is the location of the SIZEOF or
3571 TYPEOF operator. If MIN_ALIGNOF, the least alignment required for
3572 a type in any context should be returned, rather than the normal
3573 alignment for that type. */
3575 tree
3576 c_sizeof_or_alignof_type (location_t loc,
3577 tree type, bool is_sizeof, bool min_alignof,
3578 int complain)
3580 const char *op_name;
3581 tree value = NULL;
3582 enum tree_code type_code = TREE_CODE (type);
3584 op_name = is_sizeof ? "sizeof" : "__alignof__";
3586 if (type_code == FUNCTION_TYPE)
3588 if (is_sizeof)
3590 if (complain && warn_pointer_arith)
3591 pedwarn (loc, OPT_Wpointer_arith,
3592 "invalid application of %<sizeof%> to a function type");
3593 else if (!complain)
3594 return error_mark_node;
3595 value = size_one_node;
3597 else
3599 if (complain)
3601 if (c_dialect_cxx ())
3602 pedwarn (loc, OPT_Wpedantic, "ISO C++ does not permit "
3603 "%<alignof%> applied to a function type");
3604 else
3605 pedwarn (loc, OPT_Wpedantic, "ISO C does not permit "
3606 "%<_Alignof%> applied to a function type");
3608 value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
3611 else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
3613 if (type_code == VOID_TYPE
3614 && complain && warn_pointer_arith)
3615 pedwarn (loc, OPT_Wpointer_arith,
3616 "invalid application of %qs to a void type", op_name);
3617 else if (!complain)
3618 return error_mark_node;
3619 value = size_one_node;
3621 else if (!COMPLETE_TYPE_P (type)
3622 && (!c_dialect_cxx () || is_sizeof || type_code != ARRAY_TYPE))
3624 if (complain)
3625 error_at (loc, "invalid application of %qs to incomplete type %qT",
3626 op_name, type);
3627 return error_mark_node;
3629 else if (c_dialect_cxx () && type_code == ARRAY_TYPE
3630 && !COMPLETE_TYPE_P (TREE_TYPE (type)))
3632 if (complain)
3633 error_at (loc, "invalid application of %qs to array type %qT of "
3634 "incomplete element type", op_name, type);
3635 return error_mark_node;
3637 else
3639 if (is_sizeof)
3640 /* Convert in case a char is more than one unit. */
3641 value = size_binop_loc (loc, CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
3642 size_int (TYPE_PRECISION (char_type_node)
3643 / BITS_PER_UNIT));
3644 else if (min_alignof)
3645 value = size_int (min_align_of_type (type));
3646 else
3647 value = size_int (TYPE_ALIGN_UNIT (type));
3650 /* VALUE will have the middle-end integer type sizetype.
3651 However, we should really return a value of type `size_t',
3652 which is just a typedef for an ordinary integer type. */
3653 value = fold_convert_loc (loc, size_type_node, value);
3655 return value;
3658 /* Implement the __alignof keyword: Return the minimum required
3659 alignment of EXPR, measured in bytes. For VAR_DECLs,
3660 FUNCTION_DECLs and FIELD_DECLs return DECL_ALIGN (which can be set
3661 from an "aligned" __attribute__ specification). LOC is the
3662 location of the ALIGNOF operator. */
3664 tree
3665 c_alignof_expr (location_t loc, tree expr)
3667 tree t;
3669 if (VAR_OR_FUNCTION_DECL_P (expr))
3670 t = size_int (DECL_ALIGN_UNIT (expr));
3672 else if (TREE_CODE (expr) == COMPONENT_REF
3673 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
3675 error_at (loc, "%<__alignof%> applied to a bit-field");
3676 t = size_one_node;
3678 else if (TREE_CODE (expr) == COMPONENT_REF
3679 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
3680 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr, 1)));
3682 else if (INDIRECT_REF_P (expr))
3684 tree t = TREE_OPERAND (expr, 0);
3685 tree best = t;
3686 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
3688 while (CONVERT_EXPR_P (t)
3689 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
3691 int thisalign;
3693 t = TREE_OPERAND (t, 0);
3694 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
3695 if (thisalign > bestalign)
3696 best = t, bestalign = thisalign;
3698 return c_alignof (loc, TREE_TYPE (TREE_TYPE (best)));
3700 else
3701 return c_alignof (loc, TREE_TYPE (expr));
3703 return fold_convert_loc (loc, size_type_node, t);
3706 /* Handle C and C++ default attributes. */
3708 enum built_in_attribute
3710 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
3711 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
3712 #define DEF_ATTR_STRING(ENUM, VALUE) ENUM,
3713 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
3714 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
3715 #include "builtin-attrs.def"
3716 #undef DEF_ATTR_NULL_TREE
3717 #undef DEF_ATTR_INT
3718 #undef DEF_ATTR_STRING
3719 #undef DEF_ATTR_IDENT
3720 #undef DEF_ATTR_TREE_LIST
3721 ATTR_LAST
3724 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
3726 static void c_init_attributes (void);
3728 enum c_builtin_type
3730 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
3731 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
3732 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
3733 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
3734 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
3735 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
3736 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
3737 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3738 ARG6) NAME,
3739 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3740 ARG6, ARG7) NAME,
3741 #define DEF_FUNCTION_TYPE_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3742 ARG6, ARG7, ARG8) NAME,
3743 #define DEF_FUNCTION_TYPE_9(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3744 ARG6, ARG7, ARG8, ARG9) NAME,
3745 #define DEF_FUNCTION_TYPE_10(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3746 ARG6, ARG7, ARG8, ARG9, ARG10) NAME,
3747 #define DEF_FUNCTION_TYPE_11(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3748 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) NAME,
3749 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
3750 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
3751 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
3752 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
3753 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
3754 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
3755 NAME,
3756 #define DEF_FUNCTION_TYPE_VAR_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3757 ARG6) NAME,
3758 #define DEF_FUNCTION_TYPE_VAR_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3759 ARG6, ARG7) NAME,
3760 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
3761 #include "builtin-types.def"
3762 #undef DEF_PRIMITIVE_TYPE
3763 #undef DEF_FUNCTION_TYPE_0
3764 #undef DEF_FUNCTION_TYPE_1
3765 #undef DEF_FUNCTION_TYPE_2
3766 #undef DEF_FUNCTION_TYPE_3
3767 #undef DEF_FUNCTION_TYPE_4
3768 #undef DEF_FUNCTION_TYPE_5
3769 #undef DEF_FUNCTION_TYPE_6
3770 #undef DEF_FUNCTION_TYPE_7
3771 #undef DEF_FUNCTION_TYPE_8
3772 #undef DEF_FUNCTION_TYPE_9
3773 #undef DEF_FUNCTION_TYPE_10
3774 #undef DEF_FUNCTION_TYPE_11
3775 #undef DEF_FUNCTION_TYPE_VAR_0
3776 #undef DEF_FUNCTION_TYPE_VAR_1
3777 #undef DEF_FUNCTION_TYPE_VAR_2
3778 #undef DEF_FUNCTION_TYPE_VAR_3
3779 #undef DEF_FUNCTION_TYPE_VAR_4
3780 #undef DEF_FUNCTION_TYPE_VAR_5
3781 #undef DEF_FUNCTION_TYPE_VAR_6
3782 #undef DEF_FUNCTION_TYPE_VAR_7
3783 #undef DEF_POINTER_TYPE
3784 BT_LAST
3787 typedef enum c_builtin_type builtin_type;
3789 /* A temporary array for c_common_nodes_and_builtins. Used in
3790 communication with def_fn_type. */
3791 static tree builtin_types[(int) BT_LAST + 1];
3793 /* A helper function for c_common_nodes_and_builtins. Build function type
3794 for DEF with return type RET and N arguments. If VAR is true, then the
3795 function should be variadic after those N arguments.
3797 Takes special care not to ICE if any of the types involved are
3798 error_mark_node, which indicates that said type is not in fact available
3799 (see builtin_type_for_size). In which case the function type as a whole
3800 should be error_mark_node. */
3802 static void
3803 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
3805 tree t;
3806 tree *args = XALLOCAVEC (tree, n);
3807 va_list list;
3808 int i;
3810 va_start (list, n);
3811 for (i = 0; i < n; ++i)
3813 builtin_type a = (builtin_type) va_arg (list, int);
3814 t = builtin_types[a];
3815 if (t == error_mark_node)
3816 goto egress;
3817 args[i] = t;
3820 t = builtin_types[ret];
3821 if (t == error_mark_node)
3822 goto egress;
3823 if (var)
3824 t = build_varargs_function_type_array (t, n, args);
3825 else
3826 t = build_function_type_array (t, n, args);
3828 egress:
3829 builtin_types[def] = t;
3830 va_end (list);
3833 /* Build builtin functions common to both C and C++ language
3834 frontends. */
3836 static void
3837 c_define_builtins (tree va_list_ref_type_node, tree va_list_arg_type_node)
3839 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
3840 builtin_types[ENUM] = VALUE;
3841 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
3842 def_fn_type (ENUM, RETURN, 0, 0);
3843 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
3844 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
3845 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
3846 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
3847 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
3848 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
3849 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
3850 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
3851 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
3852 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
3853 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3854 ARG6) \
3855 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
3856 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3857 ARG6, ARG7) \
3858 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
3859 #define DEF_FUNCTION_TYPE_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3860 ARG6, ARG7, ARG8) \
3861 def_fn_type (ENUM, RETURN, 0, 8, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
3862 ARG7, ARG8);
3863 #define DEF_FUNCTION_TYPE_9(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3864 ARG6, ARG7, ARG8, ARG9) \
3865 def_fn_type (ENUM, RETURN, 0, 9, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
3866 ARG7, ARG8, ARG9);
3867 #define DEF_FUNCTION_TYPE_10(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3868 ARG6, ARG7, ARG8, ARG9, ARG10) \
3869 def_fn_type (ENUM, RETURN, 0, 10, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
3870 ARG7, ARG8, ARG9, ARG10);
3871 #define DEF_FUNCTION_TYPE_11(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3872 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) \
3873 def_fn_type (ENUM, RETURN, 0, 11, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
3874 ARG7, ARG8, ARG9, ARG10, ARG11);
3875 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
3876 def_fn_type (ENUM, RETURN, 1, 0);
3877 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
3878 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
3879 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
3880 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
3881 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
3882 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
3883 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
3884 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
3885 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
3886 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
3887 #define DEF_FUNCTION_TYPE_VAR_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3888 ARG6) \
3889 def_fn_type (ENUM, RETURN, 1, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
3890 #define DEF_FUNCTION_TYPE_VAR_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3891 ARG6, ARG7) \
3892 def_fn_type (ENUM, RETURN, 1, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
3893 #define DEF_POINTER_TYPE(ENUM, TYPE) \
3894 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
3896 #include "builtin-types.def"
3898 #undef DEF_PRIMITIVE_TYPE
3899 #undef DEF_FUNCTION_TYPE_0
3900 #undef DEF_FUNCTION_TYPE_1
3901 #undef DEF_FUNCTION_TYPE_2
3902 #undef DEF_FUNCTION_TYPE_3
3903 #undef DEF_FUNCTION_TYPE_4
3904 #undef DEF_FUNCTION_TYPE_5
3905 #undef DEF_FUNCTION_TYPE_6
3906 #undef DEF_FUNCTION_TYPE_7
3907 #undef DEF_FUNCTION_TYPE_8
3908 #undef DEF_FUNCTION_TYPE_9
3909 #undef DEF_FUNCTION_TYPE_10
3910 #undef DEF_FUNCTION_TYPE_11
3911 #undef DEF_FUNCTION_TYPE_VAR_0
3912 #undef DEF_FUNCTION_TYPE_VAR_1
3913 #undef DEF_FUNCTION_TYPE_VAR_2
3914 #undef DEF_FUNCTION_TYPE_VAR_3
3915 #undef DEF_FUNCTION_TYPE_VAR_4
3916 #undef DEF_FUNCTION_TYPE_VAR_5
3917 #undef DEF_FUNCTION_TYPE_VAR_6
3918 #undef DEF_FUNCTION_TYPE_VAR_7
3919 #undef DEF_POINTER_TYPE
3920 builtin_types[(int) BT_LAST] = NULL_TREE;
3922 c_init_attributes ();
3924 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
3925 NONANSI_P, ATTRS, IMPLICIT, COND) \
3926 if (NAME && COND) \
3927 def_builtin_1 (ENUM, NAME, CLASS, \
3928 builtin_types[(int) TYPE], \
3929 builtin_types[(int) LIBTYPE], \
3930 BOTH_P, FALLBACK_P, NONANSI_P, \
3931 built_in_attributes[(int) ATTRS], IMPLICIT);
3932 #include "builtins.def"
3934 targetm.init_builtins ();
3936 build_common_builtin_nodes ();
3938 if (flag_cilkplus)
3939 cilk_init_builtins ();
3942 /* Like get_identifier, but avoid warnings about null arguments when
3943 the argument may be NULL for targets where GCC lacks stdint.h type
3944 information. */
3946 static inline tree
3947 c_get_ident (const char *id)
3949 return get_identifier (id);
3952 /* Build tree nodes and builtin functions common to both C and C++ language
3953 frontends. */
3955 void
3956 c_common_nodes_and_builtins (void)
3958 int char16_type_size;
3959 int char32_type_size;
3960 int wchar_type_size;
3961 tree array_domain_type;
3962 tree va_list_ref_type_node;
3963 tree va_list_arg_type_node;
3964 int i;
3966 build_common_tree_nodes (flag_signed_char);
3968 /* Define `int' and `char' first so that dbx will output them first. */
3969 record_builtin_type (RID_INT, NULL, integer_type_node);
3970 record_builtin_type (RID_CHAR, "char", char_type_node);
3972 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
3973 "unsigned long", "long long unsigned" and "unsigned short" were in C++
3974 but not C. Are the conditionals here needed? */
3975 if (c_dialect_cxx ())
3976 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
3977 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
3978 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
3979 record_builtin_type (RID_MAX, "long unsigned int",
3980 long_unsigned_type_node);
3982 for (i = 0; i < NUM_INT_N_ENTS; i ++)
3984 char name[25];
3986 sprintf (name, "__int%d", int_n_data[i].bitsize);
3987 record_builtin_type ((enum rid)(RID_FIRST_INT_N + i), name,
3988 int_n_trees[i].signed_type);
3989 sprintf (name, "__int%d unsigned", int_n_data[i].bitsize);
3990 record_builtin_type (RID_MAX, name, int_n_trees[i].unsigned_type);
3993 if (c_dialect_cxx ())
3994 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
3995 record_builtin_type (RID_MAX, "long long int",
3996 long_long_integer_type_node);
3997 record_builtin_type (RID_MAX, "long long unsigned int",
3998 long_long_unsigned_type_node);
3999 if (c_dialect_cxx ())
4000 record_builtin_type (RID_MAX, "long long unsigned",
4001 long_long_unsigned_type_node);
4002 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
4003 record_builtin_type (RID_MAX, "short unsigned int",
4004 short_unsigned_type_node);
4005 if (c_dialect_cxx ())
4006 record_builtin_type (RID_MAX, "unsigned short",
4007 short_unsigned_type_node);
4009 /* Define both `signed char' and `unsigned char'. */
4010 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
4011 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
4013 /* These are types that c_common_type_for_size and
4014 c_common_type_for_mode use. */
4015 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4016 TYPE_DECL, NULL_TREE,
4017 intQI_type_node));
4018 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4019 TYPE_DECL, NULL_TREE,
4020 intHI_type_node));
4021 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4022 TYPE_DECL, NULL_TREE,
4023 intSI_type_node));
4024 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4025 TYPE_DECL, NULL_TREE,
4026 intDI_type_node));
4027 #if HOST_BITS_PER_WIDE_INT >= 64
4028 /* Note that this is different than the __int128 type that's part of
4029 the generic __intN support. */
4030 if (targetm.scalar_mode_supported_p (TImode))
4031 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4032 TYPE_DECL,
4033 get_identifier ("__int128_t"),
4034 intTI_type_node));
4035 #endif
4036 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4037 TYPE_DECL, NULL_TREE,
4038 unsigned_intQI_type_node));
4039 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4040 TYPE_DECL, NULL_TREE,
4041 unsigned_intHI_type_node));
4042 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4043 TYPE_DECL, NULL_TREE,
4044 unsigned_intSI_type_node));
4045 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4046 TYPE_DECL, NULL_TREE,
4047 unsigned_intDI_type_node));
4048 #if HOST_BITS_PER_WIDE_INT >= 64
4049 if (targetm.scalar_mode_supported_p (TImode))
4050 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4051 TYPE_DECL,
4052 get_identifier ("__uint128_t"),
4053 unsigned_intTI_type_node));
4054 #endif
4056 /* Create the widest literal types. */
4057 if (targetm.scalar_mode_supported_p (TImode))
4059 widest_integer_literal_type_node = intTI_type_node;
4060 widest_unsigned_literal_type_node = unsigned_intTI_type_node;
4062 else
4064 widest_integer_literal_type_node = intDI_type_node;
4065 widest_unsigned_literal_type_node = unsigned_intDI_type_node;
4068 signed_size_type_node = c_common_signed_type (size_type_node);
4070 pid_type_node =
4071 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE)));
4073 record_builtin_type (RID_FLOAT, NULL, float_type_node);
4074 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
4075 record_builtin_type (RID_MAX, "long double", long_double_type_node);
4077 if (!c_dialect_cxx ())
4078 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
4079 if (FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
4080 record_builtin_type ((enum rid) (RID_FLOATN_NX_FIRST + i), NULL,
4081 FLOATN_NX_TYPE_NODE (i));
4083 /* Only supported decimal floating point extension if the target
4084 actually supports underlying modes. */
4085 if (targetm.scalar_mode_supported_p (SDmode)
4086 && targetm.scalar_mode_supported_p (DDmode)
4087 && targetm.scalar_mode_supported_p (TDmode))
4089 record_builtin_type (RID_DFLOAT32, NULL, dfloat32_type_node);
4090 record_builtin_type (RID_DFLOAT64, NULL, dfloat64_type_node);
4091 record_builtin_type (RID_DFLOAT128, NULL, dfloat128_type_node);
4094 if (targetm.fixed_point_supported_p ())
4096 record_builtin_type (RID_MAX, "short _Fract", short_fract_type_node);
4097 record_builtin_type (RID_FRACT, NULL, fract_type_node);
4098 record_builtin_type (RID_MAX, "long _Fract", long_fract_type_node);
4099 record_builtin_type (RID_MAX, "long long _Fract",
4100 long_long_fract_type_node);
4101 record_builtin_type (RID_MAX, "unsigned short _Fract",
4102 unsigned_short_fract_type_node);
4103 record_builtin_type (RID_MAX, "unsigned _Fract",
4104 unsigned_fract_type_node);
4105 record_builtin_type (RID_MAX, "unsigned long _Fract",
4106 unsigned_long_fract_type_node);
4107 record_builtin_type (RID_MAX, "unsigned long long _Fract",
4108 unsigned_long_long_fract_type_node);
4109 record_builtin_type (RID_MAX, "_Sat short _Fract",
4110 sat_short_fract_type_node);
4111 record_builtin_type (RID_MAX, "_Sat _Fract", sat_fract_type_node);
4112 record_builtin_type (RID_MAX, "_Sat long _Fract",
4113 sat_long_fract_type_node);
4114 record_builtin_type (RID_MAX, "_Sat long long _Fract",
4115 sat_long_long_fract_type_node);
4116 record_builtin_type (RID_MAX, "_Sat unsigned short _Fract",
4117 sat_unsigned_short_fract_type_node);
4118 record_builtin_type (RID_MAX, "_Sat unsigned _Fract",
4119 sat_unsigned_fract_type_node);
4120 record_builtin_type (RID_MAX, "_Sat unsigned long _Fract",
4121 sat_unsigned_long_fract_type_node);
4122 record_builtin_type (RID_MAX, "_Sat unsigned long long _Fract",
4123 sat_unsigned_long_long_fract_type_node);
4124 record_builtin_type (RID_MAX, "short _Accum", short_accum_type_node);
4125 record_builtin_type (RID_ACCUM, NULL, accum_type_node);
4126 record_builtin_type (RID_MAX, "long _Accum", long_accum_type_node);
4127 record_builtin_type (RID_MAX, "long long _Accum",
4128 long_long_accum_type_node);
4129 record_builtin_type (RID_MAX, "unsigned short _Accum",
4130 unsigned_short_accum_type_node);
4131 record_builtin_type (RID_MAX, "unsigned _Accum",
4132 unsigned_accum_type_node);
4133 record_builtin_type (RID_MAX, "unsigned long _Accum",
4134 unsigned_long_accum_type_node);
4135 record_builtin_type (RID_MAX, "unsigned long long _Accum",
4136 unsigned_long_long_accum_type_node);
4137 record_builtin_type (RID_MAX, "_Sat short _Accum",
4138 sat_short_accum_type_node);
4139 record_builtin_type (RID_MAX, "_Sat _Accum", sat_accum_type_node);
4140 record_builtin_type (RID_MAX, "_Sat long _Accum",
4141 sat_long_accum_type_node);
4142 record_builtin_type (RID_MAX, "_Sat long long _Accum",
4143 sat_long_long_accum_type_node);
4144 record_builtin_type (RID_MAX, "_Sat unsigned short _Accum",
4145 sat_unsigned_short_accum_type_node);
4146 record_builtin_type (RID_MAX, "_Sat unsigned _Accum",
4147 sat_unsigned_accum_type_node);
4148 record_builtin_type (RID_MAX, "_Sat unsigned long _Accum",
4149 sat_unsigned_long_accum_type_node);
4150 record_builtin_type (RID_MAX, "_Sat unsigned long long _Accum",
4151 sat_unsigned_long_long_accum_type_node);
4155 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4156 TYPE_DECL,
4157 get_identifier ("complex int"),
4158 complex_integer_type_node));
4159 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4160 TYPE_DECL,
4161 get_identifier ("complex float"),
4162 complex_float_type_node));
4163 lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION,
4164 TYPE_DECL,
4165 get_identifier ("complex double"),
4166 complex_double_type_node));
4167 lang_hooks.decls.pushdecl
4168 (build_decl (UNKNOWN_LOCATION,
4169 TYPE_DECL, get_identifier ("complex long double"),
4170 complex_long_double_type_node));
4172 if (!c_dialect_cxx ())
4173 for (i = 0; i < NUM_FLOATN_NX_TYPES; i++)
4174 if (COMPLEX_FLOATN_NX_TYPE_NODE (i) != NULL_TREE)
4176 char buf[30];
4177 sprintf (buf, "complex _Float%d%s", floatn_nx_types[i].n,
4178 floatn_nx_types[i].extended ? "x" : "");
4179 lang_hooks.decls.pushdecl
4180 (build_decl (UNKNOWN_LOCATION,
4181 TYPE_DECL,
4182 get_identifier (buf),
4183 COMPLEX_FLOATN_NX_TYPE_NODE (i)));
4186 if (c_dialect_cxx ())
4188 /* For C++, make fileptr_type_node a distinct void * type until
4189 FILE type is defined. Likewise for const struct tm*. */
4190 for (unsigned i = 0;
4191 i < sizeof (builtin_structptr_types)
4192 / sizeof (builtin_structptr_type);
4193 ++i)
4194 builtin_structptr_types[i].node =
4195 build_variant_type_copy (builtin_structptr_types[i].base);
4199 record_builtin_type (RID_VOID, NULL, void_type_node);
4201 /* Set the TYPE_NAME for any variants that were built before
4202 record_builtin_type gave names to the built-in types. */
4204 tree void_name = TYPE_NAME (void_type_node);
4205 TYPE_NAME (void_type_node) = NULL_TREE;
4206 TYPE_NAME (build_qualified_type (void_type_node, TYPE_QUAL_CONST))
4207 = void_name;
4208 TYPE_NAME (void_type_node) = void_name;
4211 void_list_node = build_void_list_node ();
4213 /* Make a type to be the domain of a few array types
4214 whose domains don't really matter.
4215 200 is small enough that it always fits in size_t
4216 and large enough that it can hold most function names for the
4217 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
4218 array_domain_type = build_index_type (size_int (200));
4220 /* Make a type for arrays of characters.
4221 With luck nothing will ever really depend on the length of this
4222 array type. */
4223 char_array_type_node
4224 = build_array_type (char_type_node, array_domain_type);
4226 string_type_node = build_pointer_type (char_type_node);
4227 const_string_type_node
4228 = build_pointer_type (build_qualified_type
4229 (char_type_node, TYPE_QUAL_CONST));
4231 /* This is special for C++ so functions can be overloaded. */
4232 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
4233 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
4234 wchar_type_size = TYPE_PRECISION (wchar_type_node);
4235 underlying_wchar_type_node = wchar_type_node;
4236 if (c_dialect_cxx ())
4238 if (TYPE_UNSIGNED (wchar_type_node))
4239 wchar_type_node = make_unsigned_type (wchar_type_size);
4240 else
4241 wchar_type_node = make_signed_type (wchar_type_size);
4242 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
4245 /* This is for wide string constants. */
4246 wchar_array_type_node
4247 = build_array_type (wchar_type_node, array_domain_type);
4249 /* Define 'char16_t'. */
4250 char16_type_node = get_identifier (CHAR16_TYPE);
4251 char16_type_node = TREE_TYPE (identifier_global_value (char16_type_node));
4252 char16_type_size = TYPE_PRECISION (char16_type_node);
4253 if (c_dialect_cxx ())
4255 char16_type_node = make_unsigned_type (char16_type_size);
4257 if (cxx_dialect >= cxx11)
4258 record_builtin_type (RID_CHAR16, "char16_t", char16_type_node);
4261 /* This is for UTF-16 string constants. */
4262 char16_array_type_node
4263 = build_array_type (char16_type_node, array_domain_type);
4265 /* Define 'char32_t'. */
4266 char32_type_node = get_identifier (CHAR32_TYPE);
4267 char32_type_node = TREE_TYPE (identifier_global_value (char32_type_node));
4268 char32_type_size = TYPE_PRECISION (char32_type_node);
4269 if (c_dialect_cxx ())
4271 char32_type_node = make_unsigned_type (char32_type_size);
4273 if (cxx_dialect >= cxx11)
4274 record_builtin_type (RID_CHAR32, "char32_t", char32_type_node);
4277 /* This is for UTF-32 string constants. */
4278 char32_array_type_node
4279 = build_array_type (char32_type_node, array_domain_type);
4281 wint_type_node =
4282 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
4284 intmax_type_node =
4285 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
4286 uintmax_type_node =
4287 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
4289 if (SIG_ATOMIC_TYPE)
4290 sig_atomic_type_node =
4291 TREE_TYPE (identifier_global_value (c_get_ident (SIG_ATOMIC_TYPE)));
4292 if (INT8_TYPE)
4293 int8_type_node =
4294 TREE_TYPE (identifier_global_value (c_get_ident (INT8_TYPE)));
4295 if (INT16_TYPE)
4296 int16_type_node =
4297 TREE_TYPE (identifier_global_value (c_get_ident (INT16_TYPE)));
4298 if (INT32_TYPE)
4299 int32_type_node =
4300 TREE_TYPE (identifier_global_value (c_get_ident (INT32_TYPE)));
4301 if (INT64_TYPE)
4302 int64_type_node =
4303 TREE_TYPE (identifier_global_value (c_get_ident (INT64_TYPE)));
4304 if (UINT8_TYPE)
4305 uint8_type_node =
4306 TREE_TYPE (identifier_global_value (c_get_ident (UINT8_TYPE)));
4307 if (UINT16_TYPE)
4308 c_uint16_type_node = uint16_type_node =
4309 TREE_TYPE (identifier_global_value (c_get_ident (UINT16_TYPE)));
4310 if (UINT32_TYPE)
4311 c_uint32_type_node = uint32_type_node =
4312 TREE_TYPE (identifier_global_value (c_get_ident (UINT32_TYPE)));
4313 if (UINT64_TYPE)
4314 c_uint64_type_node = uint64_type_node =
4315 TREE_TYPE (identifier_global_value (c_get_ident (UINT64_TYPE)));
4316 if (INT_LEAST8_TYPE)
4317 int_least8_type_node =
4318 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST8_TYPE)));
4319 if (INT_LEAST16_TYPE)
4320 int_least16_type_node =
4321 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST16_TYPE)));
4322 if (INT_LEAST32_TYPE)
4323 int_least32_type_node =
4324 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST32_TYPE)));
4325 if (INT_LEAST64_TYPE)
4326 int_least64_type_node =
4327 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST64_TYPE)));
4328 if (UINT_LEAST8_TYPE)
4329 uint_least8_type_node =
4330 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST8_TYPE)));
4331 if (UINT_LEAST16_TYPE)
4332 uint_least16_type_node =
4333 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST16_TYPE)));
4334 if (UINT_LEAST32_TYPE)
4335 uint_least32_type_node =
4336 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST32_TYPE)));
4337 if (UINT_LEAST64_TYPE)
4338 uint_least64_type_node =
4339 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST64_TYPE)));
4340 if (INT_FAST8_TYPE)
4341 int_fast8_type_node =
4342 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST8_TYPE)));
4343 if (INT_FAST16_TYPE)
4344 int_fast16_type_node =
4345 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST16_TYPE)));
4346 if (INT_FAST32_TYPE)
4347 int_fast32_type_node =
4348 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST32_TYPE)));
4349 if (INT_FAST64_TYPE)
4350 int_fast64_type_node =
4351 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST64_TYPE)));
4352 if (UINT_FAST8_TYPE)
4353 uint_fast8_type_node =
4354 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST8_TYPE)));
4355 if (UINT_FAST16_TYPE)
4356 uint_fast16_type_node =
4357 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST16_TYPE)));
4358 if (UINT_FAST32_TYPE)
4359 uint_fast32_type_node =
4360 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST32_TYPE)));
4361 if (UINT_FAST64_TYPE)
4362 uint_fast64_type_node =
4363 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST64_TYPE)));
4364 if (INTPTR_TYPE)
4365 intptr_type_node =
4366 TREE_TYPE (identifier_global_value (c_get_ident (INTPTR_TYPE)));
4367 if (UINTPTR_TYPE)
4368 uintptr_type_node =
4369 TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE)));
4371 default_function_type
4372 = build_varargs_function_type_list (integer_type_node, NULL_TREE);
4373 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
4375 lang_hooks.decls.pushdecl
4376 (build_decl (UNKNOWN_LOCATION,
4377 TYPE_DECL, get_identifier ("__builtin_va_list"),
4378 va_list_type_node));
4379 if (targetm.enum_va_list_p)
4381 int l;
4382 const char *pname;
4383 tree ptype;
4385 for (l = 0; targetm.enum_va_list_p (l, &pname, &ptype); ++l)
4387 lang_hooks.decls.pushdecl
4388 (build_decl (UNKNOWN_LOCATION,
4389 TYPE_DECL, get_identifier (pname),
4390 ptype));
4395 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
4397 va_list_arg_type_node = va_list_ref_type_node =
4398 build_pointer_type (TREE_TYPE (va_list_type_node));
4400 else
4402 va_list_arg_type_node = va_list_type_node;
4403 va_list_ref_type_node = build_reference_type (va_list_type_node);
4406 if (!flag_preprocess_only)
4407 c_define_builtins (va_list_ref_type_node, va_list_arg_type_node);
4409 main_identifier_node = get_identifier ("main");
4411 /* Create the built-in __null node. It is important that this is
4412 not shared. */
4413 null_node = make_int_cst (1, 1);
4414 TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0);
4416 /* Since builtin_types isn't gc'ed, don't export these nodes. */
4417 memset (builtin_types, 0, sizeof (builtin_types));
4420 /* The number of named compound-literals generated thus far. */
4421 static GTY(()) int compound_literal_number;
4423 /* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
4425 void
4426 set_compound_literal_name (tree decl)
4428 char *name;
4429 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal",
4430 compound_literal_number);
4431 compound_literal_number++;
4432 DECL_NAME (decl) = get_identifier (name);
4435 /* build_va_arg helper function. Return a VA_ARG_EXPR with location LOC, type
4436 TYPE and operand OP. */
4438 static tree
4439 build_va_arg_1 (location_t loc, tree type, tree op)
4441 tree expr = build1 (VA_ARG_EXPR, type, op);
4442 SET_EXPR_LOCATION (expr, loc);
4443 return expr;
4446 /* Return a VA_ARG_EXPR corresponding to a source-level expression
4447 va_arg (EXPR, TYPE) at source location LOC. */
4449 tree
4450 build_va_arg (location_t loc, tree expr, tree type)
4452 tree va_type = TREE_TYPE (expr);
4453 tree canon_va_type = (va_type == error_mark_node
4454 ? error_mark_node
4455 : targetm.canonical_va_list_type (va_type));
4457 if (va_type == error_mark_node
4458 || canon_va_type == NULL_TREE)
4460 if (canon_va_type == NULL_TREE)
4461 error_at (loc, "first argument to %<va_arg%> not of type %<va_list%>");
4463 /* Let's handle things neutrallly, if expr:
4464 - has undeclared type, or
4465 - is not an va_list type. */
4466 return build_va_arg_1 (loc, type, error_mark_node);
4469 if (TREE_CODE (canon_va_type) != ARRAY_TYPE)
4471 /* Case 1: Not an array type. */
4473 /* Take the address, to get '&ap'. Note that &ap is not a va_list
4474 type. */
4475 mark_addressable (expr);
4476 expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (expr)), expr);
4478 return build_va_arg_1 (loc, type, expr);
4481 /* Case 2: Array type.
4483 Background:
4485 For contrast, let's start with the simple case (case 1). If
4486 canon_va_type is not an array type, but say a char *, then when
4487 passing-by-value a va_list, the type of the va_list param decl is
4488 the same as for another va_list decl (all ap's are char *):
4490 f2_1 (char * ap)
4491 D.1815 = VA_ARG (&ap, 0B, 1);
4492 return D.1815;
4494 f2 (int i)
4495 char * ap.0;
4496 char * ap;
4497 __builtin_va_start (&ap, 0);
4498 ap.0 = ap;
4499 res = f2_1 (ap.0);
4500 __builtin_va_end (&ap);
4501 D.1812 = res;
4502 return D.1812;
4504 However, if canon_va_type is ARRAY_TYPE, then when passing-by-value a
4505 va_list the type of the va_list param decl (case 2b, struct * ap) is not
4506 the same as for another va_list decl (case 2a, struct ap[1]).
4508 f2_1 (struct * ap)
4509 D.1844 = VA_ARG (ap, 0B, 0);
4510 return D.1844;
4512 f2 (int i)
4513 struct ap[1];
4514 __builtin_va_start (&ap, 0);
4515 res = f2_1 (&ap);
4516 __builtin_va_end (&ap);
4517 D.1841 = res;
4518 return D.1841;
4520 Case 2b is different because:
4521 - on the callee side, the parm decl has declared type va_list, but
4522 grokdeclarator changes the type of the parm decl to a pointer to the
4523 array elem type.
4524 - on the caller side, the pass-by-value uses &ap.
4526 We unify these two cases (case 2a: va_list is array type,
4527 case 2b: va_list is pointer to array elem type), by adding '&' for the
4528 array type case, such that we have a pointer to array elem in both
4529 cases. */
4531 if (TREE_CODE (va_type) == ARRAY_TYPE)
4533 /* Case 2a: va_list is array type. */
4535 /* Take the address, to get '&ap'. Make sure it's a pointer to array
4536 elem type. */
4537 mark_addressable (expr);
4538 expr = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (canon_va_type)),
4539 expr);
4541 /* Verify that &ap is still recognized as having va_list type. */
4542 tree canon_expr_type
4543 = targetm.canonical_va_list_type (TREE_TYPE (expr));
4544 gcc_assert (canon_expr_type != NULL_TREE);
4546 else
4548 /* Case 2b: va_list is pointer to array elem type. */
4549 gcc_assert (POINTER_TYPE_P (va_type));
4551 /* Comparison as in std_canonical_va_list_type. */
4552 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (va_type))
4553 == TYPE_MAIN_VARIANT (TREE_TYPE (canon_va_type)));
4555 /* Don't take the address. We've already got '&ap'. */
4559 return build_va_arg_1 (loc, type, expr);
4563 /* Linked list of disabled built-in functions. */
4565 struct disabled_builtin
4567 const char *name;
4568 struct disabled_builtin *next;
4570 static disabled_builtin *disabled_builtins = NULL;
4572 static bool builtin_function_disabled_p (const char *);
4574 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
4575 begins with "__builtin_", give an error. */
4577 void
4578 disable_builtin_function (const char *name)
4580 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
4581 error ("cannot disable built-in function %qs", name);
4582 else
4584 disabled_builtin *new_disabled_builtin = XNEW (disabled_builtin);
4585 new_disabled_builtin->name = name;
4586 new_disabled_builtin->next = disabled_builtins;
4587 disabled_builtins = new_disabled_builtin;
4592 /* Return true if the built-in function NAME has been disabled, false
4593 otherwise. */
4595 static bool
4596 builtin_function_disabled_p (const char *name)
4598 disabled_builtin *p;
4599 for (p = disabled_builtins; p != NULL; p = p->next)
4601 if (strcmp (name, p->name) == 0)
4602 return true;
4604 return false;
4608 /* Worker for DEF_BUILTIN.
4609 Possibly define a builtin function with one or two names.
4610 Does not declare a non-__builtin_ function if flag_no_builtin, or if
4611 nonansi_p and flag_no_nonansi_builtin. */
4613 static void
4614 def_builtin_1 (enum built_in_function fncode,
4615 const char *name,
4616 enum built_in_class fnclass,
4617 tree fntype, tree libtype,
4618 bool both_p, bool fallback_p, bool nonansi_p,
4619 tree fnattrs, bool implicit_p)
4621 tree decl;
4622 const char *libname;
4624 if (fntype == error_mark_node)
4625 return;
4627 gcc_assert ((!both_p && !fallback_p)
4628 || !strncmp (name, "__builtin_",
4629 strlen ("__builtin_")));
4631 libname = name + strlen ("__builtin_");
4632 decl = add_builtin_function (name, fntype, fncode, fnclass,
4633 (fallback_p ? libname : NULL),
4634 fnattrs);
4636 set_builtin_decl (fncode, decl, implicit_p);
4638 if (both_p
4639 && !flag_no_builtin && !builtin_function_disabled_p (libname)
4640 && !(nonansi_p && flag_no_nonansi_builtin))
4641 add_builtin_function (libname, libtype, fncode, fnclass,
4642 NULL, fnattrs);
4645 /* Nonzero if the type T promotes to int. This is (nearly) the
4646 integral promotions defined in ISO C99 6.3.1.1/2. */
4648 bool
4649 c_promoting_integer_type_p (const_tree t)
4651 switch (TREE_CODE (t))
4653 case INTEGER_TYPE:
4654 return (TYPE_MAIN_VARIANT (t) == char_type_node
4655 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
4656 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
4657 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
4658 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
4659 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
4661 case ENUMERAL_TYPE:
4662 /* ??? Technically all enumerations not larger than an int
4663 promote to an int. But this is used along code paths
4664 that only want to notice a size change. */
4665 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
4667 case BOOLEAN_TYPE:
4668 return true;
4670 default:
4671 return false;
4675 /* Return 1 if PARMS specifies a fixed number of parameters
4676 and none of their types is affected by default promotions. */
4678 bool
4679 self_promoting_args_p (const_tree parms)
4681 const_tree t;
4682 for (t = parms; t; t = TREE_CHAIN (t))
4684 tree type = TREE_VALUE (t);
4686 if (type == error_mark_node)
4687 continue;
4689 if (TREE_CHAIN (t) == NULL_TREE && type != void_type_node)
4690 return false;
4692 if (type == NULL_TREE)
4693 return false;
4695 if (TYPE_MAIN_VARIANT (type) == float_type_node)
4696 return false;
4698 if (c_promoting_integer_type_p (type))
4699 return false;
4701 return true;
4704 /* Recursively remove any '*' or '&' operator from TYPE. */
4705 tree
4706 strip_pointer_operator (tree t)
4708 while (POINTER_TYPE_P (t))
4709 t = TREE_TYPE (t);
4710 return t;
4713 /* Recursively remove pointer or array type from TYPE. */
4714 tree
4715 strip_pointer_or_array_types (tree t)
4717 while (TREE_CODE (t) == ARRAY_TYPE || POINTER_TYPE_P (t))
4718 t = TREE_TYPE (t);
4719 return t;
4722 /* Used to compare case labels. K1 and K2 are actually tree nodes
4723 representing case labels, or NULL_TREE for a `default' label.
4724 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
4725 K2, and 0 if K1 and K2 are equal. */
4728 case_compare (splay_tree_key k1, splay_tree_key k2)
4730 /* Consider a NULL key (such as arises with a `default' label) to be
4731 smaller than anything else. */
4732 if (!k1)
4733 return k2 ? -1 : 0;
4734 else if (!k2)
4735 return k1 ? 1 : 0;
4737 return tree_int_cst_compare ((tree) k1, (tree) k2);
4740 /* Process a case label, located at LOC, for the range LOW_VALUE
4741 ... HIGH_VALUE. If LOW_VALUE and HIGH_VALUE are both NULL_TREE
4742 then this case label is actually a `default' label. If only
4743 HIGH_VALUE is NULL_TREE, then case label was declared using the
4744 usual C/C++ syntax, rather than the GNU case range extension.
4745 CASES is a tree containing all the case ranges processed so far;
4746 COND is the condition for the switch-statement itself.
4747 OUTSIDE_RANGE_P says whether there was a case value that doesn't
4748 fit into the range of the ORIG_TYPE. Returns the CASE_LABEL_EXPR
4749 created, or ERROR_MARK_NODE if no CASE_LABEL_EXPR is created. */
4751 tree
4752 c_add_case_label (location_t loc, splay_tree cases, tree cond, tree orig_type,
4753 tree low_value, tree high_value, bool *outside_range_p)
4755 tree type;
4756 tree label;
4757 tree case_label;
4758 splay_tree_node node;
4760 /* Create the LABEL_DECL itself. */
4761 label = create_artificial_label (loc);
4763 /* If there was an error processing the switch condition, bail now
4764 before we get more confused. */
4765 if (!cond || cond == error_mark_node)
4766 goto error_out;
4768 if ((low_value && TREE_TYPE (low_value)
4769 && POINTER_TYPE_P (TREE_TYPE (low_value)))
4770 || (high_value && TREE_TYPE (high_value)
4771 && POINTER_TYPE_P (TREE_TYPE (high_value))))
4773 error_at (loc, "pointers are not permitted as case values");
4774 goto error_out;
4777 /* Case ranges are a GNU extension. */
4778 if (high_value)
4779 pedwarn (loc, OPT_Wpedantic,
4780 "range expressions in switch statements are non-standard");
4782 type = TREE_TYPE (cond);
4783 if (low_value)
4785 low_value = check_case_value (loc, low_value);
4786 low_value = convert_and_check (loc, type, low_value);
4787 if (low_value == error_mark_node)
4788 goto error_out;
4790 if (high_value)
4792 high_value = check_case_value (loc, high_value);
4793 high_value = convert_and_check (loc, type, high_value);
4794 if (high_value == error_mark_node)
4795 goto error_out;
4798 if (low_value && high_value)
4800 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
4801 really a case range, even though it was written that way.
4802 Remove the HIGH_VALUE to simplify later processing. */
4803 if (tree_int_cst_equal (low_value, high_value))
4804 high_value = NULL_TREE;
4805 else if (!tree_int_cst_lt (low_value, high_value))
4806 warning_at (loc, 0, "empty range specified");
4809 /* See if the case is in range of the type of the original testing
4810 expression. If both low_value and high_value are out of range,
4811 don't insert the case label and return NULL_TREE. */
4812 if (low_value
4813 && !check_case_bounds (loc, type, orig_type,
4814 &low_value, high_value ? &high_value : NULL,
4815 outside_range_p))
4816 return NULL_TREE;
4818 /* Look up the LOW_VALUE in the table of case labels we already
4819 have. */
4820 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
4821 /* If there was not an exact match, check for overlapping ranges.
4822 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
4823 that's a `default' label and the only overlap is an exact match. */
4824 if (!node && (low_value || high_value))
4826 splay_tree_node low_bound;
4827 splay_tree_node high_bound;
4829 /* Even though there wasn't an exact match, there might be an
4830 overlap between this case range and another case range.
4831 Since we've (inductively) not allowed any overlapping case
4832 ranges, we simply need to find the greatest low case label
4833 that is smaller that LOW_VALUE, and the smallest low case
4834 label that is greater than LOW_VALUE. If there is an overlap
4835 it will occur in one of these two ranges. */
4836 low_bound = splay_tree_predecessor (cases,
4837 (splay_tree_key) low_value);
4838 high_bound = splay_tree_successor (cases,
4839 (splay_tree_key) low_value);
4841 /* Check to see if the LOW_BOUND overlaps. It is smaller than
4842 the LOW_VALUE, so there is no need to check unless the
4843 LOW_BOUND is in fact itself a case range. */
4844 if (low_bound
4845 && CASE_HIGH ((tree) low_bound->value)
4846 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
4847 low_value) >= 0)
4848 node = low_bound;
4849 /* Check to see if the HIGH_BOUND overlaps. The low end of that
4850 range is bigger than the low end of the current range, so we
4851 are only interested if the current range is a real range, and
4852 not an ordinary case label. */
4853 else if (high_bound
4854 && high_value
4855 && (tree_int_cst_compare ((tree) high_bound->key,
4856 high_value)
4857 <= 0))
4858 node = high_bound;
4860 /* If there was an overlap, issue an error. */
4861 if (node)
4863 tree duplicate = CASE_LABEL ((tree) node->value);
4865 if (high_value)
4867 error_at (loc, "duplicate (or overlapping) case value");
4868 inform (DECL_SOURCE_LOCATION (duplicate),
4869 "this is the first entry overlapping that value");
4871 else if (low_value)
4873 error_at (loc, "duplicate case value") ;
4874 inform (DECL_SOURCE_LOCATION (duplicate), "previously used here");
4876 else
4878 error_at (loc, "multiple default labels in one switch");
4879 inform (DECL_SOURCE_LOCATION (duplicate),
4880 "this is the first default label");
4882 goto error_out;
4885 /* Add a CASE_LABEL to the statement-tree. */
4886 case_label = add_stmt (build_case_label (low_value, high_value, label));
4887 /* Register this case label in the splay tree. */
4888 splay_tree_insert (cases,
4889 (splay_tree_key) low_value,
4890 (splay_tree_value) case_label);
4892 return case_label;
4894 error_out:
4895 /* Add a label so that the back-end doesn't think that the beginning of
4896 the switch is unreachable. Note that we do not add a case label, as
4897 that just leads to duplicates and thence to failure later on. */
4898 if (!cases->root)
4900 tree t = create_artificial_label (loc);
4901 add_stmt (build_stmt (loc, LABEL_EXPR, t));
4903 return error_mark_node;
4906 /* Finish an expression taking the address of LABEL (an
4907 IDENTIFIER_NODE). Returns an expression for the address.
4909 LOC is the location for the expression returned. */
4911 tree
4912 finish_label_address_expr (tree label, location_t loc)
4914 tree result;
4916 pedwarn (input_location, OPT_Wpedantic, "taking the address of a label is non-standard");
4918 if (label == error_mark_node)
4919 return error_mark_node;
4921 label = lookup_label (label);
4922 if (label == NULL_TREE)
4923 result = null_pointer_node;
4924 else
4926 TREE_USED (label) = 1;
4927 result = build1 (ADDR_EXPR, ptr_type_node, label);
4928 /* The current function is not necessarily uninlinable.
4929 Computed gotos are incompatible with inlining, but the value
4930 here could be used only in a diagnostic, for example. */
4931 protected_set_expr_location (result, loc);
4934 return result;
4938 /* Given a boolean expression ARG, return a tree representing an increment
4939 or decrement (as indicated by CODE) of ARG. The front end must check for
4940 invalid cases (e.g., decrement in C++). */
4941 tree
4942 boolean_increment (enum tree_code code, tree arg)
4944 tree val;
4945 tree true_res = build_int_cst (TREE_TYPE (arg), 1);
4947 arg = stabilize_reference (arg);
4948 switch (code)
4950 case PREINCREMENT_EXPR:
4951 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4952 break;
4953 case POSTINCREMENT_EXPR:
4954 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4955 arg = save_expr (arg);
4956 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4957 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4958 break;
4959 case PREDECREMENT_EXPR:
4960 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
4961 invert_truthvalue_loc (input_location, arg));
4962 break;
4963 case POSTDECREMENT_EXPR:
4964 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
4965 invert_truthvalue_loc (input_location, arg));
4966 arg = save_expr (arg);
4967 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4968 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4969 break;
4970 default:
4971 gcc_unreachable ();
4973 TREE_SIDE_EFFECTS (val) = 1;
4974 return val;
4977 /* Built-in macros for stddef.h and stdint.h, that require macros
4978 defined in this file. */
4979 void
4980 c_stddef_cpp_builtins(void)
4982 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
4983 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
4984 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
4985 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
4986 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE, 0);
4987 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE, 0);
4988 builtin_define_with_value ("__CHAR16_TYPE__", CHAR16_TYPE, 0);
4989 builtin_define_with_value ("__CHAR32_TYPE__", CHAR32_TYPE, 0);
4990 if (SIG_ATOMIC_TYPE)
4991 builtin_define_with_value ("__SIG_ATOMIC_TYPE__", SIG_ATOMIC_TYPE, 0);
4992 if (INT8_TYPE)
4993 builtin_define_with_value ("__INT8_TYPE__", INT8_TYPE, 0);
4994 if (INT16_TYPE)
4995 builtin_define_with_value ("__INT16_TYPE__", INT16_TYPE, 0);
4996 if (INT32_TYPE)
4997 builtin_define_with_value ("__INT32_TYPE__", INT32_TYPE, 0);
4998 if (INT64_TYPE)
4999 builtin_define_with_value ("__INT64_TYPE__", INT64_TYPE, 0);
5000 if (UINT8_TYPE)
5001 builtin_define_with_value ("__UINT8_TYPE__", UINT8_TYPE, 0);
5002 if (UINT16_TYPE)
5003 builtin_define_with_value ("__UINT16_TYPE__", UINT16_TYPE, 0);
5004 if (UINT32_TYPE)
5005 builtin_define_with_value ("__UINT32_TYPE__", UINT32_TYPE, 0);
5006 if (UINT64_TYPE)
5007 builtin_define_with_value ("__UINT64_TYPE__", UINT64_TYPE, 0);
5008 if (INT_LEAST8_TYPE)
5009 builtin_define_with_value ("__INT_LEAST8_TYPE__", INT_LEAST8_TYPE, 0);
5010 if (INT_LEAST16_TYPE)
5011 builtin_define_with_value ("__INT_LEAST16_TYPE__", INT_LEAST16_TYPE, 0);
5012 if (INT_LEAST32_TYPE)
5013 builtin_define_with_value ("__INT_LEAST32_TYPE__", INT_LEAST32_TYPE, 0);
5014 if (INT_LEAST64_TYPE)
5015 builtin_define_with_value ("__INT_LEAST64_TYPE__", INT_LEAST64_TYPE, 0);
5016 if (UINT_LEAST8_TYPE)
5017 builtin_define_with_value ("__UINT_LEAST8_TYPE__", UINT_LEAST8_TYPE, 0);
5018 if (UINT_LEAST16_TYPE)
5019 builtin_define_with_value ("__UINT_LEAST16_TYPE__", UINT_LEAST16_TYPE, 0);
5020 if (UINT_LEAST32_TYPE)
5021 builtin_define_with_value ("__UINT_LEAST32_TYPE__", UINT_LEAST32_TYPE, 0);
5022 if (UINT_LEAST64_TYPE)
5023 builtin_define_with_value ("__UINT_LEAST64_TYPE__", UINT_LEAST64_TYPE, 0);
5024 if (INT_FAST8_TYPE)
5025 builtin_define_with_value ("__INT_FAST8_TYPE__", INT_FAST8_TYPE, 0);
5026 if (INT_FAST16_TYPE)
5027 builtin_define_with_value ("__INT_FAST16_TYPE__", INT_FAST16_TYPE, 0);
5028 if (INT_FAST32_TYPE)
5029 builtin_define_with_value ("__INT_FAST32_TYPE__", INT_FAST32_TYPE, 0);
5030 if (INT_FAST64_TYPE)
5031 builtin_define_with_value ("__INT_FAST64_TYPE__", INT_FAST64_TYPE, 0);
5032 if (UINT_FAST8_TYPE)
5033 builtin_define_with_value ("__UINT_FAST8_TYPE__", UINT_FAST8_TYPE, 0);
5034 if (UINT_FAST16_TYPE)
5035 builtin_define_with_value ("__UINT_FAST16_TYPE__", UINT_FAST16_TYPE, 0);
5036 if (UINT_FAST32_TYPE)
5037 builtin_define_with_value ("__UINT_FAST32_TYPE__", UINT_FAST32_TYPE, 0);
5038 if (UINT_FAST64_TYPE)
5039 builtin_define_with_value ("__UINT_FAST64_TYPE__", UINT_FAST64_TYPE, 0);
5040 if (INTPTR_TYPE)
5041 builtin_define_with_value ("__INTPTR_TYPE__", INTPTR_TYPE, 0);
5042 if (UINTPTR_TYPE)
5043 builtin_define_with_value ("__UINTPTR_TYPE__", UINTPTR_TYPE, 0);
5046 static void
5047 c_init_attributes (void)
5049 /* Fill in the built_in_attributes array. */
5050 #define DEF_ATTR_NULL_TREE(ENUM) \
5051 built_in_attributes[(int) ENUM] = NULL_TREE;
5052 #define DEF_ATTR_INT(ENUM, VALUE) \
5053 built_in_attributes[(int) ENUM] = build_int_cst (integer_type_node, VALUE);
5054 #define DEF_ATTR_STRING(ENUM, VALUE) \
5055 built_in_attributes[(int) ENUM] = build_string (strlen (VALUE), VALUE);
5056 #define DEF_ATTR_IDENT(ENUM, STRING) \
5057 built_in_attributes[(int) ENUM] = get_identifier (STRING);
5058 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
5059 built_in_attributes[(int) ENUM] \
5060 = tree_cons (built_in_attributes[(int) PURPOSE], \
5061 built_in_attributes[(int) VALUE], \
5062 built_in_attributes[(int) CHAIN]);
5063 #include "builtin-attrs.def"
5064 #undef DEF_ATTR_NULL_TREE
5065 #undef DEF_ATTR_INT
5066 #undef DEF_ATTR_IDENT
5067 #undef DEF_ATTR_TREE_LIST
5070 /* Check whether ALIGN is a valid user-specified alignment. If so,
5071 return its base-2 log; if not, output an error and return -1. If
5072 ALLOW_ZERO then 0 is valid and should result in a return of -1 with
5073 no error. */
5075 check_user_alignment (const_tree align, bool allow_zero)
5077 int i;
5079 if (error_operand_p (align))
5080 return -1;
5081 if (TREE_CODE (align) != INTEGER_CST
5082 || !INTEGRAL_TYPE_P (TREE_TYPE (align)))
5084 error ("requested alignment is not an integer constant");
5085 return -1;
5087 else if (allow_zero && integer_zerop (align))
5088 return -1;
5089 else if (tree_int_cst_sgn (align) == -1
5090 || (i = tree_log2 (align)) == -1)
5092 error ("requested alignment is not a positive power of 2");
5093 return -1;
5095 else if (i >= HOST_BITS_PER_INT - LOG2_BITS_PER_UNIT)
5097 error ("requested alignment is too large");
5098 return -1;
5100 return i;
5103 /* Determine the ELF symbol visibility for DECL, which is either a
5104 variable or a function. It is an error to use this function if a
5105 definition of DECL is not available in this translation unit.
5106 Returns true if the final visibility has been determined by this
5107 function; false if the caller is free to make additional
5108 modifications. */
5110 bool
5111 c_determine_visibility (tree decl)
5113 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl));
5115 /* If the user explicitly specified the visibility with an
5116 attribute, honor that. DECL_VISIBILITY will have been set during
5117 the processing of the attribute. We check for an explicit
5118 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
5119 to distinguish the use of an attribute from the use of a "#pragma
5120 GCC visibility push(...)"; in the latter case we still want other
5121 considerations to be able to overrule the #pragma. */
5122 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl))
5123 || (TARGET_DLLIMPORT_DECL_ATTRIBUTES
5124 && (lookup_attribute ("dllimport", DECL_ATTRIBUTES (decl))
5125 || lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))))
5126 return true;
5128 /* Set default visibility to whatever the user supplied with
5129 visibility_specified depending on #pragma GCC visibility. */
5130 if (!DECL_VISIBILITY_SPECIFIED (decl))
5132 if (visibility_options.inpragma
5133 || DECL_VISIBILITY (decl) != default_visibility)
5135 DECL_VISIBILITY (decl) = default_visibility;
5136 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
5137 /* If visibility changed and DECL already has DECL_RTL, ensure
5138 symbol flags are updated. */
5139 if (((VAR_P (decl) && TREE_STATIC (decl))
5140 || TREE_CODE (decl) == FUNCTION_DECL)
5141 && DECL_RTL_SET_P (decl))
5142 make_decl_rtl (decl);
5145 return false;
5148 /* Data to communicate through check_function_arguments_recurse between
5149 check_function_nonnull and check_nonnull_arg. */
5151 struct nonnull_arg_ctx
5153 location_t loc;
5154 bool warned_p;
5157 /* Check the argument list of a function call for null in argument slots
5158 that are marked as requiring a non-null pointer argument. The NARGS
5159 arguments are passed in the array ARGARRAY. Return true if we have
5160 warned. */
5162 static bool
5163 check_function_nonnull (location_t loc, tree attrs, int nargs, tree *argarray)
5165 tree a;
5166 int i;
5168 attrs = lookup_attribute ("nonnull", attrs);
5169 if (attrs == NULL_TREE)
5170 return false;
5172 a = attrs;
5173 /* See if any of the nonnull attributes has no arguments. If so,
5174 then every pointer argument is checked (in which case the check
5175 for pointer type is done in check_nonnull_arg). */
5176 if (TREE_VALUE (a) != NULL_TREE)
5178 a = lookup_attribute ("nonnull", TREE_CHAIN (a));
5179 while (a != NULL_TREE && TREE_VALUE (a) != NULL_TREE);
5181 struct nonnull_arg_ctx ctx = { loc, false };
5182 if (a != NULL_TREE)
5183 for (i = 0; i < nargs; i++)
5184 check_function_arguments_recurse (check_nonnull_arg, &ctx, argarray[i],
5185 i + 1);
5186 else
5188 /* Walk the argument list. If we encounter an argument number we
5189 should check for non-null, do it. */
5190 for (i = 0; i < nargs; i++)
5192 for (a = attrs; ; a = TREE_CHAIN (a))
5194 a = lookup_attribute ("nonnull", a);
5195 if (a == NULL_TREE || nonnull_check_p (TREE_VALUE (a), i + 1))
5196 break;
5199 if (a != NULL_TREE)
5200 check_function_arguments_recurse (check_nonnull_arg, &ctx,
5201 argarray[i], i + 1);
5204 return ctx.warned_p;
5207 /* Check that the Nth argument of a function call (counting backwards
5208 from the end) is a (pointer)0. The NARGS arguments are passed in the
5209 array ARGARRAY. */
5211 static void
5212 check_function_sentinel (const_tree fntype, int nargs, tree *argarray)
5214 tree attr = lookup_attribute ("sentinel", TYPE_ATTRIBUTES (fntype));
5216 if (attr)
5218 int len = 0;
5219 int pos = 0;
5220 tree sentinel;
5221 function_args_iterator iter;
5222 tree t;
5224 /* Skip over the named arguments. */
5225 FOREACH_FUNCTION_ARGS (fntype, t, iter)
5227 if (len == nargs)
5228 break;
5229 len++;
5232 if (TREE_VALUE (attr))
5234 tree p = TREE_VALUE (TREE_VALUE (attr));
5235 pos = TREE_INT_CST_LOW (p);
5238 /* The sentinel must be one of the varargs, i.e.
5239 in position >= the number of fixed arguments. */
5240 if ((nargs - 1 - pos) < len)
5242 warning (OPT_Wformat_,
5243 "not enough variable arguments to fit a sentinel");
5244 return;
5247 /* Validate the sentinel. */
5248 sentinel = argarray[nargs - 1 - pos];
5249 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel))
5250 || !integer_zerop (sentinel))
5251 /* Although __null (in C++) is only an integer we allow it
5252 nevertheless, as we are guaranteed that it's exactly
5253 as wide as a pointer, and we don't want to force
5254 users to cast the NULL they have written there.
5255 We warn with -Wstrict-null-sentinel, though. */
5256 && (warn_strict_null_sentinel || null_node != sentinel))
5257 warning (OPT_Wformat_, "missing sentinel in function call");
5261 /* Check that the same argument isn't passed to restrict arguments
5262 and other arguments. */
5264 static void
5265 check_function_restrict (const_tree fndecl, const_tree fntype,
5266 int nargs, tree *argarray)
5268 int i;
5269 tree parms;
5271 if (fndecl
5272 && TREE_CODE (fndecl) == FUNCTION_DECL
5273 && DECL_ARGUMENTS (fndecl))
5274 parms = DECL_ARGUMENTS (fndecl);
5275 else
5276 parms = TYPE_ARG_TYPES (fntype);
5278 for (i = 0; i < nargs; i++)
5279 TREE_VISITED (argarray[i]) = 0;
5281 for (i = 0; i < nargs && parms && parms != void_list_node; i++)
5283 tree type;
5284 if (TREE_CODE (parms) == PARM_DECL)
5286 type = TREE_TYPE (parms);
5287 parms = DECL_CHAIN (parms);
5289 else
5291 type = TREE_VALUE (parms);
5292 parms = TREE_CHAIN (parms);
5294 if (POINTER_TYPE_P (type)
5295 && TYPE_RESTRICT (type)
5296 && !TYPE_READONLY (TREE_TYPE (type)))
5297 warn_for_restrict (i, argarray, nargs);
5300 for (i = 0; i < nargs; i++)
5301 TREE_VISITED (argarray[i]) = 0;
5304 /* Helper for check_function_nonnull; given a list of operands which
5305 must be non-null in ARGS, determine if operand PARAM_NUM should be
5306 checked. */
5308 static bool
5309 nonnull_check_p (tree args, unsigned HOST_WIDE_INT param_num)
5311 unsigned HOST_WIDE_INT arg_num = 0;
5313 for (; args; args = TREE_CHAIN (args))
5315 bool found = get_nonnull_operand (TREE_VALUE (args), &arg_num);
5317 gcc_assert (found);
5319 if (arg_num == param_num)
5320 return true;
5322 return false;
5325 /* Check that the function argument PARAM (which is operand number
5326 PARAM_NUM) is non-null. This is called by check_function_nonnull
5327 via check_function_arguments_recurse. */
5329 static void
5330 check_nonnull_arg (void *ctx, tree param, unsigned HOST_WIDE_INT param_num)
5332 struct nonnull_arg_ctx *pctx = (struct nonnull_arg_ctx *) ctx;
5334 /* Just skip checking the argument if it's not a pointer. This can
5335 happen if the "nonnull" attribute was given without an operand
5336 list (which means to check every pointer argument). */
5338 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
5339 return;
5341 /* When not optimizing diagnose the simple cases of null arguments.
5342 When optimization is enabled defer the checking until expansion
5343 when more cases can be detected. */
5344 if (integer_zerop (param))
5346 warning_at (pctx->loc, OPT_Wnonnull, "null argument where non-null "
5347 "required (argument %lu)", (unsigned long) param_num);
5348 pctx->warned_p = true;
5352 /* Helper for nonnull attribute handling; fetch the operand number
5353 from the attribute argument list. */
5355 bool
5356 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
5358 /* Verify the arg number is a small constant. */
5359 if (tree_fits_uhwi_p (arg_num_expr))
5361 *valp = TREE_INT_CST_LOW (arg_num_expr);
5362 return true;
5364 else
5365 return false;
5368 /* Arguments being collected for optimization. */
5369 typedef const char *const_char_p; /* For DEF_VEC_P. */
5370 static GTY(()) vec<const_char_p, va_gc> *optimize_args;
5373 /* Inner function to convert a TREE_LIST to argv string to parse the optimize
5374 options in ARGS. ATTR_P is true if this is for attribute(optimize), and
5375 false for #pragma GCC optimize. */
5377 bool
5378 parse_optimize_options (tree args, bool attr_p)
5380 bool ret = true;
5381 unsigned opt_argc;
5382 unsigned i;
5383 const char **opt_argv;
5384 struct cl_decoded_option *decoded_options;
5385 unsigned int decoded_options_count;
5386 tree ap;
5388 /* Build up argv vector. Just in case the string is stored away, use garbage
5389 collected strings. */
5390 vec_safe_truncate (optimize_args, 0);
5391 vec_safe_push (optimize_args, (const char *) NULL);
5393 for (ap = args; ap != NULL_TREE; ap = TREE_CHAIN (ap))
5395 tree value = TREE_VALUE (ap);
5397 if (TREE_CODE (value) == INTEGER_CST)
5399 char buffer[20];
5400 sprintf (buffer, "-O%ld", (long) TREE_INT_CST_LOW (value));
5401 vec_safe_push (optimize_args, ggc_strdup (buffer));
5404 else if (TREE_CODE (value) == STRING_CST)
5406 /* Split string into multiple substrings. */
5407 size_t len = TREE_STRING_LENGTH (value);
5408 char *p = ASTRDUP (TREE_STRING_POINTER (value));
5409 char *end = p + len;
5410 char *comma;
5411 char *next_p = p;
5413 while (next_p != NULL)
5415 size_t len2;
5416 char *q, *r;
5418 p = next_p;
5419 comma = strchr (p, ',');
5420 if (comma)
5422 len2 = comma - p;
5423 *comma = '\0';
5424 next_p = comma+1;
5426 else
5428 len2 = end - p;
5429 next_p = NULL;
5432 r = q = (char *) ggc_alloc_atomic (len2 + 3);
5434 /* If the user supplied -Oxxx or -fxxx, only allow -Oxxx or -fxxx
5435 options. */
5436 if (*p == '-' && p[1] != 'O' && p[1] != 'f')
5438 ret = false;
5439 if (attr_p)
5440 warning (OPT_Wattributes,
5441 "bad option %qs to attribute %<optimize%>", p);
5442 else
5443 warning (OPT_Wpragmas,
5444 "bad option %qs to pragma %<optimize%>", p);
5445 continue;
5448 if (*p != '-')
5450 *r++ = '-';
5452 /* Assume that Ox is -Ox, a numeric value is -Ox, a s by
5453 itself is -Os, and any other switch begins with a -f. */
5454 if ((*p >= '0' && *p <= '9')
5455 || (p[0] == 's' && p[1] == '\0'))
5456 *r++ = 'O';
5457 else if (*p != 'O')
5458 *r++ = 'f';
5461 memcpy (r, p, len2);
5462 r[len2] = '\0';
5463 vec_safe_push (optimize_args, (const char *) q);
5469 opt_argc = optimize_args->length ();
5470 opt_argv = (const char **) alloca (sizeof (char *) * (opt_argc + 1));
5472 for (i = 1; i < opt_argc; i++)
5473 opt_argv[i] = (*optimize_args)[i];
5475 /* Now parse the options. */
5476 decode_cmdline_options_to_array_default_mask (opt_argc, opt_argv,
5477 &decoded_options,
5478 &decoded_options_count);
5479 /* Drop non-Optimization options. */
5480 unsigned j = 1;
5481 for (i = 1; i < decoded_options_count; ++i)
5483 if (! (cl_options[decoded_options[i].opt_index].flags & CL_OPTIMIZATION))
5485 ret = false;
5486 if (attr_p)
5487 warning (OPT_Wattributes,
5488 "bad option %qs to attribute %<optimize%>",
5489 decoded_options[i].orig_option_with_args_text);
5490 else
5491 warning (OPT_Wpragmas,
5492 "bad option %qs to pragma %<optimize%>",
5493 decoded_options[i].orig_option_with_args_text);
5494 continue;
5496 if (i != j)
5497 decoded_options[j] = decoded_options[i];
5498 j++;
5500 decoded_options_count = j;
5501 /* And apply them. */
5502 decode_options (&global_options, &global_options_set,
5503 decoded_options, decoded_options_count,
5504 input_location, global_dc, NULL);
5506 targetm.override_options_after_change();
5508 optimize_args->truncate (0);
5509 return ret;
5512 /* Check whether ATTR is a valid attribute fallthrough. */
5514 bool
5515 attribute_fallthrough_p (tree attr)
5517 if (attr == error_mark_node)
5518 return false;
5519 tree t = lookup_attribute ("fallthrough", attr);
5520 if (t == NULL_TREE)
5521 return false;
5522 /* This attribute shall appear at most once in each attribute-list. */
5523 if (lookup_attribute ("fallthrough", TREE_CHAIN (t)))
5524 warning (OPT_Wattributes, "%<fallthrough%> attribute specified multiple "
5525 "times");
5526 /* No attribute-argument-clause shall be present. */
5527 else if (TREE_VALUE (t) != NULL_TREE)
5528 warning (OPT_Wattributes, "%<fallthrough%> attribute specified with "
5529 "a parameter");
5530 /* Warn if other attributes are found. */
5531 for (t = attr; t != NULL_TREE; t = TREE_CHAIN (t))
5533 tree name = get_attribute_name (t);
5534 if (!is_attribute_p ("fallthrough", name))
5535 warning (OPT_Wattributes, "%qE attribute ignored", name);
5537 return true;
5541 /* Check for valid arguments being passed to a function with FNTYPE.
5542 There are NARGS arguments in the array ARGARRAY. LOC should be used for
5543 diagnostics. Return true if -Wnonnull warning has been diagnosed. */
5544 bool
5545 check_function_arguments (location_t loc, const_tree fndecl, const_tree fntype,
5546 int nargs, tree *argarray, vec<location_t> *arglocs)
5548 bool warned_p = false;
5550 /* Check for null being passed in a pointer argument that must be
5551 non-null. We also need to do this if format checking is enabled. */
5553 if (warn_nonnull)
5554 warned_p = check_function_nonnull (loc, TYPE_ATTRIBUTES (fntype),
5555 nargs, argarray);
5557 /* Check for errors in format strings. */
5559 if (warn_format || warn_suggest_attribute_format)
5560 check_function_format (TYPE_ATTRIBUTES (fntype), nargs, argarray, arglocs);
5562 if (warn_format)
5563 check_function_sentinel (fntype, nargs, argarray);
5565 if (warn_restrict)
5566 check_function_restrict (fndecl, fntype, nargs, argarray);
5567 return warned_p;
5570 /* Generic argument checking recursion routine. PARAM is the argument to
5571 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
5572 once the argument is resolved. CTX is context for the callback. */
5573 void
5574 check_function_arguments_recurse (void (*callback)
5575 (void *, tree, unsigned HOST_WIDE_INT),
5576 void *ctx, tree param,
5577 unsigned HOST_WIDE_INT param_num)
5579 if (CONVERT_EXPR_P (param)
5580 && (TYPE_PRECISION (TREE_TYPE (param))
5581 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param, 0)))))
5583 /* Strip coercion. */
5584 check_function_arguments_recurse (callback, ctx,
5585 TREE_OPERAND (param, 0), param_num);
5586 return;
5589 if (TREE_CODE (param) == CALL_EXPR)
5591 tree type = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param)));
5592 tree attrs;
5593 bool found_format_arg = false;
5595 /* See if this is a call to a known internationalization function
5596 that modifies a format arg. Such a function may have multiple
5597 format_arg attributes (for example, ngettext). */
5599 for (attrs = TYPE_ATTRIBUTES (type);
5600 attrs;
5601 attrs = TREE_CHAIN (attrs))
5602 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
5604 tree inner_arg;
5605 tree format_num_expr;
5606 int format_num;
5607 int i;
5608 call_expr_arg_iterator iter;
5610 /* Extract the argument number, which was previously checked
5611 to be valid. */
5612 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
5614 format_num = tree_to_uhwi (format_num_expr);
5616 for (inner_arg = first_call_expr_arg (param, &iter), i = 1;
5617 inner_arg != NULL_TREE;
5618 inner_arg = next_call_expr_arg (&iter), i++)
5619 if (i == format_num)
5621 check_function_arguments_recurse (callback, ctx,
5622 inner_arg, param_num);
5623 found_format_arg = true;
5624 break;
5628 /* If we found a format_arg attribute and did a recursive check,
5629 we are done with checking this argument. Otherwise, we continue
5630 and this will be considered a non-literal. */
5631 if (found_format_arg)
5632 return;
5635 if (TREE_CODE (param) == COND_EXPR)
5637 /* Simplify to avoid warning for an impossible case. */
5638 param = fold_for_warn (param);
5639 if (TREE_CODE (param) == COND_EXPR)
5641 /* Check both halves of the conditional expression. */
5642 check_function_arguments_recurse (callback, ctx,
5643 TREE_OPERAND (param, 1),
5644 param_num);
5645 check_function_arguments_recurse (callback, ctx,
5646 TREE_OPERAND (param, 2),
5647 param_num);
5648 return;
5652 (*callback) (ctx, param, param_num);
5655 /* Checks for a builtin function FNDECL that the number of arguments
5656 NARGS against the required number REQUIRED and issues an error if
5657 there is a mismatch. Returns true if the number of arguments is
5658 correct, otherwise false. LOC is the location of FNDECL. */
5660 static bool
5661 builtin_function_validate_nargs (location_t loc, tree fndecl, int nargs,
5662 int required)
5664 if (nargs < required)
5666 error_at (loc, "too few arguments to function %qE", fndecl);
5667 return false;
5669 else if (nargs > required)
5671 error_at (loc, "too many arguments to function %qE", fndecl);
5672 return false;
5674 return true;
5677 /* Helper macro for check_builtin_function_arguments. */
5678 #define ARG_LOCATION(N) \
5679 (arg_loc.is_empty () \
5680 ? EXPR_LOC_OR_LOC (args[(N)], input_location) \
5681 : expansion_point_location (arg_loc[(N)]))
5683 /* Verifies the NARGS arguments ARGS to the builtin function FNDECL.
5684 Returns false if there was an error, otherwise true. LOC is the
5685 location of the function; ARG_LOC is a vector of locations of the
5686 arguments. */
5688 bool
5689 check_builtin_function_arguments (location_t loc, vec<location_t> arg_loc,
5690 tree fndecl, int nargs, tree *args)
5692 if (!DECL_BUILT_IN (fndecl)
5693 || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
5694 return true;
5696 switch (DECL_FUNCTION_CODE (fndecl))
5698 case BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX:
5699 if (!tree_fits_uhwi_p (args[2]))
5701 error_at (ARG_LOCATION (2),
5702 "third argument to function %qE must be a constant integer",
5703 fndecl);
5704 return false;
5706 /* fall through */
5708 case BUILT_IN_ALLOCA_WITH_ALIGN:
5710 /* Get the requested alignment (in bits) if it's a constant
5711 integer expression. */
5712 unsigned HOST_WIDE_INT align
5713 = tree_fits_uhwi_p (args[1]) ? tree_to_uhwi (args[1]) : 0;
5715 /* Determine if the requested alignment is a power of 2. */
5716 if ((align & (align - 1)))
5717 align = 0;
5719 /* The maximum alignment in bits corresponding to the same
5720 maximum in bytes enforced in check_user_alignment(). */
5721 unsigned maxalign = (UINT_MAX >> 1) + 1;
5723 /* Reject invalid alignments. */
5724 if (align < BITS_PER_UNIT || maxalign < align)
5726 error_at (ARG_LOCATION (1),
5727 "second argument to function %qE must be a constant "
5728 "integer power of 2 between %qi and %qu bits",
5729 fndecl, BITS_PER_UNIT, maxalign);
5730 return false;
5732 return true;
5735 case BUILT_IN_CONSTANT_P:
5736 return builtin_function_validate_nargs (loc, fndecl, nargs, 1);
5738 case BUILT_IN_ISFINITE:
5739 case BUILT_IN_ISINF:
5740 case BUILT_IN_ISINF_SIGN:
5741 case BUILT_IN_ISNAN:
5742 case BUILT_IN_ISNORMAL:
5743 case BUILT_IN_SIGNBIT:
5744 if (builtin_function_validate_nargs (loc, fndecl, nargs, 1))
5746 if (TREE_CODE (TREE_TYPE (args[0])) != REAL_TYPE)
5748 error_at (ARG_LOCATION (0), "non-floating-point argument in "
5749 "call to function %qE", fndecl);
5750 return false;
5752 return true;
5754 return false;
5756 case BUILT_IN_ISGREATER:
5757 case BUILT_IN_ISGREATEREQUAL:
5758 case BUILT_IN_ISLESS:
5759 case BUILT_IN_ISLESSEQUAL:
5760 case BUILT_IN_ISLESSGREATER:
5761 case BUILT_IN_ISUNORDERED:
5762 if (builtin_function_validate_nargs (loc, fndecl, nargs, 2))
5764 enum tree_code code0, code1;
5765 code0 = TREE_CODE (TREE_TYPE (args[0]));
5766 code1 = TREE_CODE (TREE_TYPE (args[1]));
5767 if (!((code0 == REAL_TYPE && code1 == REAL_TYPE)
5768 || (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
5769 || (code0 == INTEGER_TYPE && code1 == REAL_TYPE)))
5771 error_at (loc, "non-floating-point arguments in call to "
5772 "function %qE", fndecl);
5773 return false;
5775 return true;
5777 return false;
5779 case BUILT_IN_FPCLASSIFY:
5780 if (builtin_function_validate_nargs (loc, fndecl, nargs, 6))
5782 for (unsigned int i = 0; i < 5; i++)
5783 if (TREE_CODE (args[i]) != INTEGER_CST)
5785 error_at (ARG_LOCATION (i), "non-const integer argument %u in "
5786 "call to function %qE", i + 1, fndecl);
5787 return false;
5790 if (TREE_CODE (TREE_TYPE (args[5])) != REAL_TYPE)
5792 error_at (ARG_LOCATION (5), "non-floating-point argument in "
5793 "call to function %qE", fndecl);
5794 return false;
5796 return true;
5798 return false;
5800 case BUILT_IN_ASSUME_ALIGNED:
5801 if (builtin_function_validate_nargs (loc, fndecl, nargs, 2 + (nargs > 2)))
5803 if (nargs >= 3 && TREE_CODE (TREE_TYPE (args[2])) != INTEGER_TYPE)
5805 error_at (ARG_LOCATION (2), "non-integer argument 3 in call to "
5806 "function %qE", fndecl);
5807 return false;
5809 return true;
5811 return false;
5813 case BUILT_IN_ADD_OVERFLOW:
5814 case BUILT_IN_SUB_OVERFLOW:
5815 case BUILT_IN_MUL_OVERFLOW:
5816 if (builtin_function_validate_nargs (loc, fndecl, nargs, 3))
5818 unsigned i;
5819 for (i = 0; i < 2; i++)
5820 if (!INTEGRAL_TYPE_P (TREE_TYPE (args[i])))
5822 error_at (ARG_LOCATION (i), "argument %u in call to function "
5823 "%qE does not have integral type", i + 1, fndecl);
5824 return false;
5826 if (TREE_CODE (TREE_TYPE (args[2])) != POINTER_TYPE
5827 || !INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (args[2]))))
5829 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
5830 "does not have pointer to integral type", fndecl);
5831 return false;
5833 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args[2]))) == ENUMERAL_TYPE)
5835 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
5836 "has pointer to enumerated type", fndecl);
5837 return false;
5839 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args[2]))) == BOOLEAN_TYPE)
5841 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
5842 "has pointer to boolean type", fndecl);
5843 return false;
5845 return true;
5847 return false;
5849 case BUILT_IN_ADD_OVERFLOW_P:
5850 case BUILT_IN_SUB_OVERFLOW_P:
5851 case BUILT_IN_MUL_OVERFLOW_P:
5852 if (builtin_function_validate_nargs (loc, fndecl, nargs, 3))
5854 unsigned i;
5855 for (i = 0; i < 3; i++)
5856 if (!INTEGRAL_TYPE_P (TREE_TYPE (args[i])))
5858 error_at (ARG_LOCATION (i), "argument %u in call to function "
5859 "%qE does not have integral type", i + 1, fndecl);
5860 return false;
5862 if (TREE_CODE (TREE_TYPE (args[2])) == ENUMERAL_TYPE)
5864 error_at (ARG_LOCATION (2), "argument 3 in call to function "
5865 "%qE has enumerated type", fndecl);
5866 return false;
5868 else if (TREE_CODE (TREE_TYPE (args[2])) == BOOLEAN_TYPE)
5870 error_at (ARG_LOCATION (2), "argument 3 in call to function "
5871 "%qE has boolean type", fndecl);
5872 return false;
5874 return true;
5876 return false;
5878 default:
5879 return true;
5883 /* Subroutine of c_parse_error.
5884 Return the result of concatenating LHS and RHS. RHS is really
5885 a string literal, its first character is indicated by RHS_START and
5886 RHS_SIZE is its length (including the terminating NUL character).
5888 The caller is responsible for deleting the returned pointer. */
5890 static char *
5891 catenate_strings (const char *lhs, const char *rhs_start, int rhs_size)
5893 const int lhs_size = strlen (lhs);
5894 char *result = XNEWVEC (char, lhs_size + rhs_size);
5895 strncpy (result, lhs, lhs_size);
5896 strncpy (result + lhs_size, rhs_start, rhs_size);
5897 return result;
5900 /* Issue the error given by GMSGID at RICHLOC, indicating that it occurred
5901 before TOKEN, which had the associated VALUE. */
5903 void
5904 c_parse_error (const char *gmsgid, enum cpp_ttype token_type,
5905 tree value, unsigned char token_flags,
5906 rich_location *richloc)
5908 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
5910 char *message = NULL;
5912 if (token_type == CPP_EOF)
5913 message = catenate_messages (gmsgid, " at end of input");
5914 else if (token_type == CPP_CHAR
5915 || token_type == CPP_WCHAR
5916 || token_type == CPP_CHAR16
5917 || token_type == CPP_CHAR32
5918 || token_type == CPP_UTF8CHAR)
5920 unsigned int val = TREE_INT_CST_LOW (value);
5921 const char *prefix;
5923 switch (token_type)
5925 default:
5926 prefix = "";
5927 break;
5928 case CPP_WCHAR:
5929 prefix = "L";
5930 break;
5931 case CPP_CHAR16:
5932 prefix = "u";
5933 break;
5934 case CPP_CHAR32:
5935 prefix = "U";
5936 break;
5937 case CPP_UTF8CHAR:
5938 prefix = "u8";
5939 break;
5942 if (val <= UCHAR_MAX && ISGRAPH (val))
5943 message = catenate_messages (gmsgid, " before %s'%c'");
5944 else
5945 message = catenate_messages (gmsgid, " before %s'\\x%x'");
5947 error_at_rich_loc (richloc, message, prefix, val);
5948 free (message);
5949 message = NULL;
5951 else if (token_type == CPP_CHAR_USERDEF
5952 || token_type == CPP_WCHAR_USERDEF
5953 || token_type == CPP_CHAR16_USERDEF
5954 || token_type == CPP_CHAR32_USERDEF
5955 || token_type == CPP_UTF8CHAR_USERDEF)
5956 message = catenate_messages (gmsgid,
5957 " before user-defined character literal");
5958 else if (token_type == CPP_STRING_USERDEF
5959 || token_type == CPP_WSTRING_USERDEF
5960 || token_type == CPP_STRING16_USERDEF
5961 || token_type == CPP_STRING32_USERDEF
5962 || token_type == CPP_UTF8STRING_USERDEF)
5963 message = catenate_messages (gmsgid, " before user-defined string literal");
5964 else if (token_type == CPP_STRING
5965 || token_type == CPP_WSTRING
5966 || token_type == CPP_STRING16
5967 || token_type == CPP_STRING32
5968 || token_type == CPP_UTF8STRING)
5969 message = catenate_messages (gmsgid, " before string constant");
5970 else if (token_type == CPP_NUMBER)
5971 message = catenate_messages (gmsgid, " before numeric constant");
5972 else if (token_type == CPP_NAME)
5974 message = catenate_messages (gmsgid, " before %qE");
5975 error_at_rich_loc (richloc, message, value);
5976 free (message);
5977 message = NULL;
5979 else if (token_type == CPP_PRAGMA)
5980 message = catenate_messages (gmsgid, " before %<#pragma%>");
5981 else if (token_type == CPP_PRAGMA_EOL)
5982 message = catenate_messages (gmsgid, " before end of line");
5983 else if (token_type == CPP_DECLTYPE)
5984 message = catenate_messages (gmsgid, " before %<decltype%>");
5985 else if (token_type < N_TTYPES)
5987 message = catenate_messages (gmsgid, " before %qs token");
5988 error_at_rich_loc (richloc, message, cpp_type2name (token_type, token_flags));
5989 free (message);
5990 message = NULL;
5992 else
5993 error_at_rich_loc (richloc, gmsgid);
5995 if (message)
5997 error_at_rich_loc (richloc, message);
5998 free (message);
6000 #undef catenate_messages
6003 /* Return the gcc option code associated with the reason for a cpp
6004 message, or 0 if none. */
6006 static int
6007 c_option_controlling_cpp_error (int reason)
6009 const struct cpp_reason_option_codes_t *entry;
6011 for (entry = cpp_reason_option_codes; entry->reason != CPP_W_NONE; entry++)
6013 if (entry->reason == reason)
6014 return entry->option_code;
6016 return 0;
6019 /* Callback from cpp_error for PFILE to print diagnostics from the
6020 preprocessor. The diagnostic is of type LEVEL, with REASON set
6021 to the reason code if LEVEL is represents a warning, at location
6022 RICHLOC unless this is after lexing and the compiler's location
6023 should be used instead; MSG is the translated message and AP
6024 the arguments. Returns true if a diagnostic was emitted, false
6025 otherwise. */
6027 bool
6028 c_cpp_error (cpp_reader *pfile ATTRIBUTE_UNUSED, int level, int reason,
6029 rich_location *richloc,
6030 const char *msg, va_list *ap)
6032 diagnostic_info diagnostic;
6033 diagnostic_t dlevel;
6034 bool save_warn_system_headers = global_dc->dc_warn_system_headers;
6035 bool ret;
6037 switch (level)
6039 case CPP_DL_WARNING_SYSHDR:
6040 if (flag_no_output)
6041 return false;
6042 global_dc->dc_warn_system_headers = 1;
6043 /* Fall through. */
6044 case CPP_DL_WARNING:
6045 if (flag_no_output)
6046 return false;
6047 dlevel = DK_WARNING;
6048 break;
6049 case CPP_DL_PEDWARN:
6050 if (flag_no_output && !flag_pedantic_errors)
6051 return false;
6052 dlevel = DK_PEDWARN;
6053 break;
6054 case CPP_DL_ERROR:
6055 dlevel = DK_ERROR;
6056 break;
6057 case CPP_DL_ICE:
6058 dlevel = DK_ICE;
6059 break;
6060 case CPP_DL_NOTE:
6061 dlevel = DK_NOTE;
6062 break;
6063 case CPP_DL_FATAL:
6064 dlevel = DK_FATAL;
6065 break;
6066 default:
6067 gcc_unreachable ();
6069 if (done_lexing)
6070 richloc->set_range (line_table, 0, input_location, true);
6071 diagnostic_set_info_translated (&diagnostic, msg, ap,
6072 richloc, dlevel);
6073 diagnostic_override_option_index (&diagnostic,
6074 c_option_controlling_cpp_error (reason));
6075 ret = diagnostic_report_diagnostic (global_dc, &diagnostic);
6076 if (level == CPP_DL_WARNING_SYSHDR)
6077 global_dc->dc_warn_system_headers = save_warn_system_headers;
6078 return ret;
6081 /* Convert a character from the host to the target execution character
6082 set. cpplib handles this, mostly. */
6084 HOST_WIDE_INT
6085 c_common_to_target_charset (HOST_WIDE_INT c)
6087 /* Character constants in GCC proper are sign-extended under -fsigned-char,
6088 zero-extended under -fno-signed-char. cpplib insists that characters
6089 and character constants are always unsigned. Hence we must convert
6090 back and forth. */
6091 cppchar_t uc = ((cppchar_t)c) & ((((cppchar_t)1) << CHAR_BIT)-1);
6093 uc = cpp_host_to_exec_charset (parse_in, uc);
6095 if (flag_signed_char)
6096 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE)
6097 >> (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE);
6098 else
6099 return uc;
6102 /* Fold an offsetof-like expression. EXPR is a nested sequence of component
6103 references with an INDIRECT_REF of a constant at the bottom; much like the
6104 traditional rendering of offsetof as a macro. Return the folded result. */
6106 tree
6107 fold_offsetof_1 (tree expr, enum tree_code ctx)
6109 tree base, off, t;
6110 tree_code code = TREE_CODE (expr);
6111 switch (code)
6113 case ERROR_MARK:
6114 return expr;
6116 case VAR_DECL:
6117 error ("cannot apply %<offsetof%> to static data member %qD", expr);
6118 return error_mark_node;
6120 case CALL_EXPR:
6121 case TARGET_EXPR:
6122 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
6123 return error_mark_node;
6125 case NOP_EXPR:
6126 case INDIRECT_REF:
6127 if (!TREE_CONSTANT (TREE_OPERAND (expr, 0)))
6129 error ("cannot apply %<offsetof%> to a non constant address");
6130 return error_mark_node;
6132 return TREE_OPERAND (expr, 0);
6134 case COMPONENT_REF:
6135 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), code);
6136 if (base == error_mark_node)
6137 return base;
6139 t = TREE_OPERAND (expr, 1);
6140 if (DECL_C_BIT_FIELD (t))
6142 error ("attempt to take address of bit-field structure "
6143 "member %qD", t);
6144 return error_mark_node;
6146 off = size_binop_loc (input_location, PLUS_EXPR, DECL_FIELD_OFFSET (t),
6147 size_int (tree_to_uhwi (DECL_FIELD_BIT_OFFSET (t))
6148 / BITS_PER_UNIT));
6149 break;
6151 case ARRAY_REF:
6152 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), code);
6153 if (base == error_mark_node)
6154 return base;
6156 t = TREE_OPERAND (expr, 1);
6158 /* Check if the offset goes beyond the upper bound of the array. */
6159 if (TREE_CODE (t) == INTEGER_CST && tree_int_cst_sgn (t) >= 0)
6161 tree upbound = array_ref_up_bound (expr);
6162 if (upbound != NULL_TREE
6163 && TREE_CODE (upbound) == INTEGER_CST
6164 && !tree_int_cst_equal (upbound,
6165 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
6167 if (ctx != ARRAY_REF && ctx != COMPONENT_REF)
6168 upbound = size_binop (PLUS_EXPR, upbound,
6169 build_int_cst (TREE_TYPE (upbound), 1));
6170 if (tree_int_cst_lt (upbound, t))
6172 tree v;
6174 for (v = TREE_OPERAND (expr, 0);
6175 TREE_CODE (v) == COMPONENT_REF;
6176 v = TREE_OPERAND (v, 0))
6177 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v, 0)))
6178 == RECORD_TYPE)
6180 tree fld_chain = DECL_CHAIN (TREE_OPERAND (v, 1));
6181 for (; fld_chain; fld_chain = DECL_CHAIN (fld_chain))
6182 if (TREE_CODE (fld_chain) == FIELD_DECL)
6183 break;
6185 if (fld_chain)
6186 break;
6188 /* Don't warn if the array might be considered a poor
6189 man's flexible array member with a very permissive
6190 definition thereof. */
6191 if (TREE_CODE (v) == ARRAY_REF
6192 || TREE_CODE (v) == COMPONENT_REF)
6193 warning (OPT_Warray_bounds,
6194 "index %E denotes an offset "
6195 "greater than size of %qT",
6196 t, TREE_TYPE (TREE_OPERAND (expr, 0)));
6201 t = convert (sizetype, t);
6202 off = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (TREE_TYPE (expr)), t);
6203 break;
6205 case COMPOUND_EXPR:
6206 /* Handle static members of volatile structs. */
6207 t = TREE_OPERAND (expr, 1);
6208 gcc_assert (VAR_P (t));
6209 return fold_offsetof_1 (t);
6211 default:
6212 gcc_unreachable ();
6215 return fold_build_pointer_plus (base, off);
6218 /* Likewise, but convert it to the return type of offsetof. */
6220 tree
6221 fold_offsetof (tree expr)
6223 return convert (size_type_node, fold_offsetof_1 (expr));
6227 /* *PTYPE is an incomplete array. Complete it with a domain based on
6228 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
6229 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
6230 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
6233 complete_array_type (tree *ptype, tree initial_value, bool do_default)
6235 tree maxindex, type, main_type, elt, unqual_elt;
6236 int failure = 0, quals;
6237 bool overflow_p = false;
6239 maxindex = size_zero_node;
6240 if (initial_value)
6242 if (TREE_CODE (initial_value) == STRING_CST)
6244 int eltsize
6245 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
6246 maxindex = size_int (TREE_STRING_LENGTH (initial_value)/eltsize - 1);
6248 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
6250 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
6252 if (vec_safe_is_empty (v))
6254 if (pedantic)
6255 failure = 3;
6256 maxindex = ssize_int (-1);
6258 else
6260 tree curindex;
6261 unsigned HOST_WIDE_INT cnt;
6262 constructor_elt *ce;
6263 bool fold_p = false;
6265 if ((*v)[0].index)
6266 maxindex = (*v)[0].index, fold_p = true;
6268 curindex = maxindex;
6270 for (cnt = 1; vec_safe_iterate (v, cnt, &ce); cnt++)
6272 bool curfold_p = false;
6273 if (ce->index)
6274 curindex = ce->index, curfold_p = true;
6275 else
6277 if (fold_p)
6279 /* Since we treat size types now as ordinary
6280 unsigned types, we need an explicit overflow
6281 check. */
6282 tree orig = curindex;
6283 curindex = fold_convert (sizetype, curindex);
6284 overflow_p |= tree_int_cst_lt (curindex, orig);
6286 curindex = size_binop (PLUS_EXPR, curindex,
6287 size_one_node);
6289 if (tree_int_cst_lt (maxindex, curindex))
6290 maxindex = curindex, fold_p = curfold_p;
6292 if (fold_p)
6294 tree orig = maxindex;
6295 maxindex = fold_convert (sizetype, maxindex);
6296 overflow_p |= tree_int_cst_lt (maxindex, orig);
6300 else
6302 /* Make an error message unless that happened already. */
6303 if (initial_value != error_mark_node)
6304 failure = 1;
6307 else
6309 failure = 2;
6310 if (!do_default)
6311 return failure;
6314 type = *ptype;
6315 elt = TREE_TYPE (type);
6316 quals = TYPE_QUALS (strip_array_types (elt));
6317 if (quals == 0)
6318 unqual_elt = elt;
6319 else
6320 unqual_elt = c_build_qualified_type (elt, KEEP_QUAL_ADDR_SPACE (quals));
6322 /* Using build_distinct_type_copy and modifying things afterward instead
6323 of using build_array_type to create a new type preserves all of the
6324 TYPE_LANG_FLAG_? bits that the front end may have set. */
6325 main_type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6326 TREE_TYPE (main_type) = unqual_elt;
6327 TYPE_DOMAIN (main_type)
6328 = build_range_type (TREE_TYPE (maxindex),
6329 build_int_cst (TREE_TYPE (maxindex), 0), maxindex);
6330 TYPE_TYPELESS_STORAGE (main_type) = TYPE_TYPELESS_STORAGE (type);
6331 layout_type (main_type);
6333 /* Make sure we have the canonical MAIN_TYPE. */
6334 hashval_t hashcode = type_hash_canon_hash (main_type);
6335 main_type = type_hash_canon (hashcode, main_type);
6337 /* Fix the canonical type. */
6338 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type))
6339 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type)))
6340 SET_TYPE_STRUCTURAL_EQUALITY (main_type);
6341 else if (TYPE_CANONICAL (TREE_TYPE (main_type)) != TREE_TYPE (main_type)
6342 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type))
6343 != TYPE_DOMAIN (main_type)))
6344 TYPE_CANONICAL (main_type)
6345 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type)),
6346 TYPE_CANONICAL (TYPE_DOMAIN (main_type)),
6347 TYPE_TYPELESS_STORAGE (main_type));
6348 else
6349 TYPE_CANONICAL (main_type) = main_type;
6351 if (quals == 0)
6352 type = main_type;
6353 else
6354 type = c_build_qualified_type (main_type, quals);
6356 if (COMPLETE_TYPE_P (type)
6357 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
6358 && (overflow_p || TREE_OVERFLOW (TYPE_SIZE_UNIT (type))))
6360 error ("size of array is too large");
6361 /* If we proceed with the array type as it is, we'll eventually
6362 crash in tree_to_[su]hwi(). */
6363 type = error_mark_node;
6366 *ptype = type;
6367 return failure;
6370 /* Like c_mark_addressable but don't check register qualifier. */
6371 void
6372 c_common_mark_addressable_vec (tree t)
6374 if (TREE_CODE (t) == C_MAYBE_CONST_EXPR)
6375 t = C_MAYBE_CONST_EXPR_EXPR (t);
6376 while (handled_component_p (t))
6377 t = TREE_OPERAND (t, 0);
6378 if (!VAR_P (t)
6379 && TREE_CODE (t) != PARM_DECL
6380 && TREE_CODE (t) != COMPOUND_LITERAL_EXPR)
6381 return;
6382 if (!VAR_P (t) || !DECL_HARD_REGISTER (t))
6383 TREE_ADDRESSABLE (t) = 1;
6388 /* Used to help initialize the builtin-types.def table. When a type of
6389 the correct size doesn't exist, use error_mark_node instead of NULL.
6390 The later results in segfaults even when a decl using the type doesn't
6391 get invoked. */
6393 tree
6394 builtin_type_for_size (int size, bool unsignedp)
6396 tree type = c_common_type_for_size (size, unsignedp);
6397 return type ? type : error_mark_node;
6400 /* A helper function for resolve_overloaded_builtin in resolving the
6401 overloaded __sync_ builtins. Returns a positive power of 2 if the
6402 first operand of PARAMS is a pointer to a supported data type.
6403 Returns 0 if an error is encountered.
6404 FETCH is true when FUNCTION is one of the _FETCH_OP_ or _OP_FETCH_
6405 built-ins. */
6407 static int
6408 sync_resolve_size (tree function, vec<tree, va_gc> *params, bool fetch)
6410 /* Type of the argument. */
6411 tree argtype;
6412 /* Type the argument points to. */
6413 tree type;
6414 int size;
6416 if (vec_safe_is_empty (params))
6418 error ("too few arguments to function %qE", function);
6419 return 0;
6422 argtype = type = TREE_TYPE ((*params)[0]);
6423 if (TREE_CODE (type) == ARRAY_TYPE && c_dialect_cxx ())
6425 /* Force array-to-pointer decay for C++. */
6426 (*params)[0] = default_conversion ((*params)[0]);
6427 type = TREE_TYPE ((*params)[0]);
6429 if (TREE_CODE (type) != POINTER_TYPE)
6430 goto incompatible;
6432 type = TREE_TYPE (type);
6433 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
6434 goto incompatible;
6436 if (!COMPLETE_TYPE_P (type))
6437 goto incompatible;
6439 if (fetch && TREE_CODE (type) == BOOLEAN_TYPE)
6440 goto incompatible;
6442 size = tree_to_uhwi (TYPE_SIZE_UNIT (type));
6443 if (size == 1 || size == 2 || size == 4 || size == 8 || size == 16)
6444 return size;
6446 incompatible:
6447 /* Issue the diagnostic only if the argument is valid, otherwise
6448 it would be redundant at best and could be misleading. */
6449 if (argtype != error_mark_node)
6450 error ("operand type %qT is incompatible with argument %d of %qE",
6451 argtype, 1, function);
6452 return 0;
6455 /* A helper function for resolve_overloaded_builtin. Adds casts to
6456 PARAMS to make arguments match up with those of FUNCTION. Drops
6457 the variadic arguments at the end. Returns false if some error
6458 was encountered; true on success. */
6460 static bool
6461 sync_resolve_params (location_t loc, tree orig_function, tree function,
6462 vec<tree, va_gc> *params, bool orig_format)
6464 function_args_iterator iter;
6465 tree ptype;
6466 unsigned int parmnum;
6468 function_args_iter_init (&iter, TREE_TYPE (function));
6469 /* We've declared the implementation functions to use "volatile void *"
6470 as the pointer parameter, so we shouldn't get any complaints from the
6471 call to check_function_arguments what ever type the user used. */
6472 function_args_iter_next (&iter);
6473 ptype = TREE_TYPE (TREE_TYPE ((*params)[0]));
6474 ptype = TYPE_MAIN_VARIANT (ptype);
6476 /* For the rest of the values, we need to cast these to FTYPE, so that we
6477 don't get warnings for passing pointer types, etc. */
6478 parmnum = 0;
6479 while (1)
6481 tree val, arg_type;
6483 arg_type = function_args_iter_cond (&iter);
6484 /* XXX void_type_node belies the abstraction. */
6485 if (arg_type == void_type_node)
6486 break;
6488 ++parmnum;
6489 if (params->length () <= parmnum)
6491 error_at (loc, "too few arguments to function %qE", orig_function);
6492 return false;
6495 /* Only convert parameters if arg_type is unsigned integer type with
6496 new format sync routines, i.e. don't attempt to convert pointer
6497 arguments (e.g. EXPECTED argument of __atomic_compare_exchange_n),
6498 bool arguments (e.g. WEAK argument) or signed int arguments (memmodel
6499 kinds). */
6500 if (TREE_CODE (arg_type) == INTEGER_TYPE && TYPE_UNSIGNED (arg_type))
6502 /* Ideally for the first conversion we'd use convert_for_assignment
6503 so that we get warnings for anything that doesn't match the pointer
6504 type. This isn't portable across the C and C++ front ends atm. */
6505 val = (*params)[parmnum];
6506 val = convert (ptype, val);
6507 val = convert (arg_type, val);
6508 (*params)[parmnum] = val;
6511 function_args_iter_next (&iter);
6514 /* __atomic routines are not variadic. */
6515 if (!orig_format && params->length () != parmnum + 1)
6517 error_at (loc, "too many arguments to function %qE", orig_function);
6518 return false;
6521 /* The definition of these primitives is variadic, with the remaining
6522 being "an optional list of variables protected by the memory barrier".
6523 No clue what that's supposed to mean, precisely, but we consider all
6524 call-clobbered variables to be protected so we're safe. */
6525 params->truncate (parmnum + 1);
6527 return true;
6530 /* A helper function for resolve_overloaded_builtin. Adds a cast to
6531 RESULT to make it match the type of the first pointer argument in
6532 PARAMS. */
6534 static tree
6535 sync_resolve_return (tree first_param, tree result, bool orig_format)
6537 tree ptype = TREE_TYPE (TREE_TYPE (first_param));
6538 tree rtype = TREE_TYPE (result);
6539 ptype = TYPE_MAIN_VARIANT (ptype);
6541 /* New format doesn't require casting unless the types are the same size. */
6542 if (orig_format || tree_int_cst_equal (TYPE_SIZE (ptype), TYPE_SIZE (rtype)))
6543 return convert (ptype, result);
6544 else
6545 return result;
6548 /* This function verifies the PARAMS to generic atomic FUNCTION.
6549 It returns the size if all the parameters are the same size, otherwise
6550 0 is returned if the parameters are invalid. */
6552 static int
6553 get_atomic_generic_size (location_t loc, tree function,
6554 vec<tree, va_gc> *params)
6556 unsigned int n_param;
6557 unsigned int n_model;
6558 unsigned int x;
6559 int size_0;
6560 tree type_0;
6562 /* Determine the parameter makeup. */
6563 switch (DECL_FUNCTION_CODE (function))
6565 case BUILT_IN_ATOMIC_EXCHANGE:
6566 n_param = 4;
6567 n_model = 1;
6568 break;
6569 case BUILT_IN_ATOMIC_LOAD:
6570 case BUILT_IN_ATOMIC_STORE:
6571 n_param = 3;
6572 n_model = 1;
6573 break;
6574 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
6575 n_param = 6;
6576 n_model = 2;
6577 break;
6578 default:
6579 gcc_unreachable ();
6582 if (vec_safe_length (params) != n_param)
6584 error_at (loc, "incorrect number of arguments to function %qE", function);
6585 return 0;
6588 /* Get type of first parameter, and determine its size. */
6589 type_0 = TREE_TYPE ((*params)[0]);
6590 if (TREE_CODE (type_0) == ARRAY_TYPE && c_dialect_cxx ())
6592 /* Force array-to-pointer decay for C++. */
6593 (*params)[0] = default_conversion ((*params)[0]);
6594 type_0 = TREE_TYPE ((*params)[0]);
6596 if (TREE_CODE (type_0) != POINTER_TYPE || VOID_TYPE_P (TREE_TYPE (type_0)))
6598 error_at (loc, "argument 1 of %qE must be a non-void pointer type",
6599 function);
6600 return 0;
6603 /* Types must be compile time constant sizes. */
6604 if (TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type_0)))) != INTEGER_CST)
6606 error_at (loc,
6607 "argument 1 of %qE must be a pointer to a constant size type",
6608 function);
6609 return 0;
6612 size_0 = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (type_0)));
6614 /* Zero size objects are not allowed. */
6615 if (size_0 == 0)
6617 error_at (loc,
6618 "argument 1 of %qE must be a pointer to a nonzero size object",
6619 function);
6620 return 0;
6623 /* Check each other parameter is a pointer and the same size. */
6624 for (x = 0; x < n_param - n_model; x++)
6626 int size;
6627 tree type = TREE_TYPE ((*params)[x]);
6628 /* __atomic_compare_exchange has a bool in the 4th position, skip it. */
6629 if (n_param == 6 && x == 3)
6630 continue;
6631 if (TREE_CODE (type) == ARRAY_TYPE && c_dialect_cxx ())
6633 /* Force array-to-pointer decay for C++. */
6634 (*params)[x] = default_conversion ((*params)[x]);
6635 type = TREE_TYPE ((*params)[x]);
6637 if (!POINTER_TYPE_P (type))
6639 error_at (loc, "argument %d of %qE must be a pointer type", x + 1,
6640 function);
6641 return 0;
6643 else if (TYPE_SIZE_UNIT (TREE_TYPE (type))
6644 && TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type))))
6645 != INTEGER_CST)
6647 error_at (loc, "argument %d of %qE must be a pointer to a constant "
6648 "size type", x + 1, function);
6649 return 0;
6651 else if (FUNCTION_POINTER_TYPE_P (type))
6653 error_at (loc, "argument %d of %qE must not be a pointer to a "
6654 "function", x + 1, function);
6655 return 0;
6657 tree type_size = TYPE_SIZE_UNIT (TREE_TYPE (type));
6658 size = type_size ? tree_to_uhwi (type_size) : 0;
6659 if (size != size_0)
6661 error_at (loc, "size mismatch in argument %d of %qE", x + 1,
6662 function);
6663 return 0;
6667 /* Check memory model parameters for validity. */
6668 for (x = n_param - n_model ; x < n_param; x++)
6670 tree p = (*params)[x];
6671 if (TREE_CODE (p) == INTEGER_CST)
6673 int i = tree_to_uhwi (p);
6674 if (i < 0 || (memmodel_base (i) >= MEMMODEL_LAST))
6676 warning_at (loc, OPT_Winvalid_memory_model,
6677 "invalid memory model argument %d of %qE", x + 1,
6678 function);
6681 else
6682 if (!INTEGRAL_TYPE_P (TREE_TYPE (p)))
6684 error_at (loc, "non-integer memory model argument %d of %qE", x + 1,
6685 function);
6686 return 0;
6690 return size_0;
6694 /* This will take an __atomic_ generic FUNCTION call, and add a size parameter N
6695 at the beginning of the parameter list PARAMS representing the size of the
6696 objects. This is to match the library ABI requirement. LOC is the location
6697 of the function call.
6698 The new function is returned if it needed rebuilding, otherwise NULL_TREE is
6699 returned to allow the external call to be constructed. */
6701 static tree
6702 add_atomic_size_parameter (unsigned n, location_t loc, tree function,
6703 vec<tree, va_gc> *params)
6705 tree size_node;
6707 /* Insert a SIZE_T parameter as the first param. If there isn't
6708 enough space, allocate a new vector and recursively re-build with that. */
6709 if (!params->space (1))
6711 unsigned int z, len;
6712 vec<tree, va_gc> *v;
6713 tree f;
6715 len = params->length ();
6716 vec_alloc (v, len + 1);
6717 v->quick_push (build_int_cst (size_type_node, n));
6718 for (z = 0; z < len; z++)
6719 v->quick_push ((*params)[z]);
6720 f = build_function_call_vec (loc, vNULL, function, v, NULL);
6721 vec_free (v);
6722 return f;
6725 /* Add the size parameter and leave as a function call for processing. */
6726 size_node = build_int_cst (size_type_node, n);
6727 params->quick_insert (0, size_node);
6728 return NULL_TREE;
6732 /* Return whether atomic operations for naturally aligned N-byte
6733 arguments are supported, whether inline or through libatomic. */
6734 static bool
6735 atomic_size_supported_p (int n)
6737 switch (n)
6739 case 1:
6740 case 2:
6741 case 4:
6742 case 8:
6743 return true;
6745 case 16:
6746 return targetm.scalar_mode_supported_p (TImode);
6748 default:
6749 return false;
6753 /* This will process an __atomic_exchange function call, determine whether it
6754 needs to be mapped to the _N variation, or turned into a library call.
6755 LOC is the location of the builtin call.
6756 FUNCTION is the DECL that has been invoked;
6757 PARAMS is the argument list for the call. The return value is non-null
6758 TRUE is returned if it is translated into the proper format for a call to the
6759 external library, and NEW_RETURN is set the tree for that function.
6760 FALSE is returned if processing for the _N variation is required, and
6761 NEW_RETURN is set to the return value the result is copied into. */
6762 static bool
6763 resolve_overloaded_atomic_exchange (location_t loc, tree function,
6764 vec<tree, va_gc> *params, tree *new_return)
6766 tree p0, p1, p2, p3;
6767 tree I_type, I_type_ptr;
6768 int n = get_atomic_generic_size (loc, function, params);
6770 /* Size of 0 is an error condition. */
6771 if (n == 0)
6773 *new_return = error_mark_node;
6774 return true;
6777 /* If not a lock-free size, change to the library generic format. */
6778 if (!atomic_size_supported_p (n))
6780 *new_return = add_atomic_size_parameter (n, loc, function, params);
6781 return true;
6784 /* Otherwise there is a lockfree match, transform the call from:
6785 void fn(T* mem, T* desired, T* return, model)
6786 into
6787 *return = (T) (fn (In* mem, (In) *desired, model)) */
6789 p0 = (*params)[0];
6790 p1 = (*params)[1];
6791 p2 = (*params)[2];
6792 p3 = (*params)[3];
6794 /* Create pointer to appropriate size. */
6795 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6796 I_type_ptr = build_pointer_type (I_type);
6798 /* Convert object pointer to required type. */
6799 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6800 (*params)[0] = p0;
6801 /* Convert new value to required type, and dereference it. */
6802 p1 = build_indirect_ref (loc, p1, RO_UNARY_STAR);
6803 p1 = build1 (VIEW_CONVERT_EXPR, I_type, p1);
6804 (*params)[1] = p1;
6806 /* Move memory model to the 3rd position, and end param list. */
6807 (*params)[2] = p3;
6808 params->truncate (3);
6810 /* Convert return pointer and dereference it for later assignment. */
6811 *new_return = build_indirect_ref (loc, p2, RO_UNARY_STAR);
6813 return false;
6817 /* This will process an __atomic_compare_exchange function call, determine
6818 whether it needs to be mapped to the _N variation, or turned into a lib call.
6819 LOC is the location of the builtin call.
6820 FUNCTION is the DECL that has been invoked;
6821 PARAMS is the argument list for the call. The return value is non-null
6822 TRUE is returned if it is translated into the proper format for a call to the
6823 external library, and NEW_RETURN is set the tree for that function.
6824 FALSE is returned if processing for the _N variation is required. */
6826 static bool
6827 resolve_overloaded_atomic_compare_exchange (location_t loc, tree function,
6828 vec<tree, va_gc> *params,
6829 tree *new_return)
6831 tree p0, p1, p2;
6832 tree I_type, I_type_ptr;
6833 int n = get_atomic_generic_size (loc, function, params);
6835 /* Size of 0 is an error condition. */
6836 if (n == 0)
6838 *new_return = error_mark_node;
6839 return true;
6842 /* If not a lock-free size, change to the library generic format. */
6843 if (!atomic_size_supported_p (n))
6845 /* The library generic format does not have the weak parameter, so
6846 remove it from the param list. Since a parameter has been removed,
6847 we can be sure that there is room for the SIZE_T parameter, meaning
6848 there will not be a recursive rebuilding of the parameter list, so
6849 there is no danger this will be done twice. */
6850 if (n > 0)
6852 (*params)[3] = (*params)[4];
6853 (*params)[4] = (*params)[5];
6854 params->truncate (5);
6856 *new_return = add_atomic_size_parameter (n, loc, function, params);
6857 return true;
6860 /* Otherwise, there is a match, so the call needs to be transformed from:
6861 bool fn(T* mem, T* desired, T* return, weak, success, failure)
6862 into
6863 bool fn ((In *)mem, (In *)expected, (In) *desired, weak, succ, fail) */
6865 p0 = (*params)[0];
6866 p1 = (*params)[1];
6867 p2 = (*params)[2];
6869 /* Create pointer to appropriate size. */
6870 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6871 I_type_ptr = build_pointer_type (I_type);
6873 /* Convert object pointer to required type. */
6874 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6875 (*params)[0] = p0;
6877 /* Convert expected pointer to required type. */
6878 p1 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p1);
6879 (*params)[1] = p1;
6881 /* Convert desired value to required type, and dereference it. */
6882 p2 = build_indirect_ref (loc, p2, RO_UNARY_STAR);
6883 p2 = build1 (VIEW_CONVERT_EXPR, I_type, p2);
6884 (*params)[2] = p2;
6886 /* The rest of the parameters are fine. NULL means no special return value
6887 processing.*/
6888 *new_return = NULL;
6889 return false;
6893 /* This will process an __atomic_load function call, determine whether it
6894 needs to be mapped to the _N variation, or turned into a library call.
6895 LOC is the location of the builtin call.
6896 FUNCTION is the DECL that has been invoked;
6897 PARAMS is the argument list for the call. The return value is non-null
6898 TRUE is returned if it is translated into the proper format for a call to the
6899 external library, and NEW_RETURN is set the tree for that function.
6900 FALSE is returned if processing for the _N variation is required, and
6901 NEW_RETURN is set to the return value the result is copied into. */
6903 static bool
6904 resolve_overloaded_atomic_load (location_t loc, tree function,
6905 vec<tree, va_gc> *params, tree *new_return)
6907 tree p0, p1, p2;
6908 tree I_type, I_type_ptr;
6909 int n = get_atomic_generic_size (loc, function, params);
6911 /* Size of 0 is an error condition. */
6912 if (n == 0)
6914 *new_return = error_mark_node;
6915 return true;
6918 /* If not a lock-free size, change to the library generic format. */
6919 if (!atomic_size_supported_p (n))
6921 *new_return = add_atomic_size_parameter (n, loc, function, params);
6922 return true;
6925 /* Otherwise, there is a match, so the call needs to be transformed from:
6926 void fn(T* mem, T* return, model)
6927 into
6928 *return = (T) (fn ((In *) mem, model)) */
6930 p0 = (*params)[0];
6931 p1 = (*params)[1];
6932 p2 = (*params)[2];
6934 /* Create pointer to appropriate size. */
6935 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6936 I_type_ptr = build_pointer_type (I_type);
6938 /* Convert object pointer to required type. */
6939 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6940 (*params)[0] = p0;
6942 /* Move memory model to the 2nd position, and end param list. */
6943 (*params)[1] = p2;
6944 params->truncate (2);
6946 /* Convert return pointer and dereference it for later assignment. */
6947 *new_return = build_indirect_ref (loc, p1, RO_UNARY_STAR);
6949 return false;
6953 /* This will process an __atomic_store function call, determine whether it
6954 needs to be mapped to the _N variation, or turned into a library call.
6955 LOC is the location of the builtin call.
6956 FUNCTION is the DECL that has been invoked;
6957 PARAMS is the argument list for the call. The return value is non-null
6958 TRUE is returned if it is translated into the proper format for a call to the
6959 external library, and NEW_RETURN is set the tree for that function.
6960 FALSE is returned if processing for the _N variation is required, and
6961 NEW_RETURN is set to the return value the result is copied into. */
6963 static bool
6964 resolve_overloaded_atomic_store (location_t loc, tree function,
6965 vec<tree, va_gc> *params, tree *new_return)
6967 tree p0, p1;
6968 tree I_type, I_type_ptr;
6969 int n = get_atomic_generic_size (loc, function, params);
6971 /* Size of 0 is an error condition. */
6972 if (n == 0)
6974 *new_return = error_mark_node;
6975 return true;
6978 /* If not a lock-free size, change to the library generic format. */
6979 if (!atomic_size_supported_p (n))
6981 *new_return = add_atomic_size_parameter (n, loc, function, params);
6982 return true;
6985 /* Otherwise, there is a match, so the call needs to be transformed from:
6986 void fn(T* mem, T* value, model)
6987 into
6988 fn ((In *) mem, (In) *value, model) */
6990 p0 = (*params)[0];
6991 p1 = (*params)[1];
6993 /* Create pointer to appropriate size. */
6994 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6995 I_type_ptr = build_pointer_type (I_type);
6997 /* Convert object pointer to required type. */
6998 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6999 (*params)[0] = p0;
7001 /* Convert new value to required type, and dereference it. */
7002 p1 = build_indirect_ref (loc, p1, RO_UNARY_STAR);
7003 p1 = build1 (VIEW_CONVERT_EXPR, I_type, p1);
7004 (*params)[1] = p1;
7006 /* The memory model is in the right spot already. Return is void. */
7007 *new_return = NULL_TREE;
7009 return false;
7013 /* Some builtin functions are placeholders for other expressions. This
7014 function should be called immediately after parsing the call expression
7015 before surrounding code has committed to the type of the expression.
7017 LOC is the location of the builtin call.
7019 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
7020 PARAMS is the argument list for the call. The return value is non-null
7021 when expansion is complete, and null if normal processing should
7022 continue. */
7024 tree
7025 resolve_overloaded_builtin (location_t loc, tree function,
7026 vec<tree, va_gc> *params)
7028 enum built_in_function orig_code = DECL_FUNCTION_CODE (function);
7030 /* Is function one of the _FETCH_OP_ or _OP_FETCH_ built-ins?
7031 Those are not valid to call with a pointer to _Bool (or C++ bool)
7032 and so must be rejected. */
7033 bool fetch_op = true;
7034 bool orig_format = true;
7035 tree new_return = NULL_TREE;
7037 switch (DECL_BUILT_IN_CLASS (function))
7039 case BUILT_IN_NORMAL:
7040 break;
7041 case BUILT_IN_MD:
7042 if (targetm.resolve_overloaded_builtin)
7043 return targetm.resolve_overloaded_builtin (loc, function, params);
7044 else
7045 return NULL_TREE;
7046 default:
7047 return NULL_TREE;
7050 /* Handle BUILT_IN_NORMAL here. */
7051 switch (orig_code)
7053 case BUILT_IN_ATOMIC_EXCHANGE:
7054 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
7055 case BUILT_IN_ATOMIC_LOAD:
7056 case BUILT_IN_ATOMIC_STORE:
7058 /* Handle these 4 together so that they can fall through to the next
7059 case if the call is transformed to an _N variant. */
7060 switch (orig_code)
7062 case BUILT_IN_ATOMIC_EXCHANGE:
7064 if (resolve_overloaded_atomic_exchange (loc, function, params,
7065 &new_return))
7066 return new_return;
7067 /* Change to the _N variant. */
7068 orig_code = BUILT_IN_ATOMIC_EXCHANGE_N;
7069 break;
7072 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
7074 if (resolve_overloaded_atomic_compare_exchange (loc, function,
7075 params,
7076 &new_return))
7077 return new_return;
7078 /* Change to the _N variant. */
7079 orig_code = BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N;
7080 break;
7082 case BUILT_IN_ATOMIC_LOAD:
7084 if (resolve_overloaded_atomic_load (loc, function, params,
7085 &new_return))
7086 return new_return;
7087 /* Change to the _N variant. */
7088 orig_code = BUILT_IN_ATOMIC_LOAD_N;
7089 break;
7091 case BUILT_IN_ATOMIC_STORE:
7093 if (resolve_overloaded_atomic_store (loc, function, params,
7094 &new_return))
7095 return new_return;
7096 /* Change to the _N variant. */
7097 orig_code = BUILT_IN_ATOMIC_STORE_N;
7098 break;
7100 default:
7101 gcc_unreachable ();
7104 /* FALLTHRU */
7105 case BUILT_IN_ATOMIC_EXCHANGE_N:
7106 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N:
7107 case BUILT_IN_ATOMIC_LOAD_N:
7108 case BUILT_IN_ATOMIC_STORE_N:
7109 fetch_op = false;
7110 /* FALLTHRU */
7111 case BUILT_IN_ATOMIC_ADD_FETCH_N:
7112 case BUILT_IN_ATOMIC_SUB_FETCH_N:
7113 case BUILT_IN_ATOMIC_AND_FETCH_N:
7114 case BUILT_IN_ATOMIC_NAND_FETCH_N:
7115 case BUILT_IN_ATOMIC_XOR_FETCH_N:
7116 case BUILT_IN_ATOMIC_OR_FETCH_N:
7117 case BUILT_IN_ATOMIC_FETCH_ADD_N:
7118 case BUILT_IN_ATOMIC_FETCH_SUB_N:
7119 case BUILT_IN_ATOMIC_FETCH_AND_N:
7120 case BUILT_IN_ATOMIC_FETCH_NAND_N:
7121 case BUILT_IN_ATOMIC_FETCH_XOR_N:
7122 case BUILT_IN_ATOMIC_FETCH_OR_N:
7123 orig_format = false;
7124 /* FALLTHRU */
7125 case BUILT_IN_SYNC_FETCH_AND_ADD_N:
7126 case BUILT_IN_SYNC_FETCH_AND_SUB_N:
7127 case BUILT_IN_SYNC_FETCH_AND_OR_N:
7128 case BUILT_IN_SYNC_FETCH_AND_AND_N:
7129 case BUILT_IN_SYNC_FETCH_AND_XOR_N:
7130 case BUILT_IN_SYNC_FETCH_AND_NAND_N:
7131 case BUILT_IN_SYNC_ADD_AND_FETCH_N:
7132 case BUILT_IN_SYNC_SUB_AND_FETCH_N:
7133 case BUILT_IN_SYNC_OR_AND_FETCH_N:
7134 case BUILT_IN_SYNC_AND_AND_FETCH_N:
7135 case BUILT_IN_SYNC_XOR_AND_FETCH_N:
7136 case BUILT_IN_SYNC_NAND_AND_FETCH_N:
7137 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N:
7138 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N:
7139 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_N:
7140 case BUILT_IN_SYNC_LOCK_RELEASE_N:
7142 /* The following are not _FETCH_OPs and must be accepted with
7143 pointers to _Bool (or C++ bool). */
7144 if (fetch_op)
7145 fetch_op =
7146 (orig_code != BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
7147 && orig_code != BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N
7148 && orig_code != BUILT_IN_SYNC_LOCK_TEST_AND_SET_N
7149 && orig_code != BUILT_IN_SYNC_LOCK_RELEASE_N);
7151 int n = sync_resolve_size (function, params, fetch_op);
7152 tree new_function, first_param, result;
7153 enum built_in_function fncode;
7155 if (n == 0)
7156 return error_mark_node;
7158 fncode = (enum built_in_function)((int)orig_code + exact_log2 (n) + 1);
7159 new_function = builtin_decl_explicit (fncode);
7160 if (!sync_resolve_params (loc, function, new_function, params,
7161 orig_format))
7162 return error_mark_node;
7164 first_param = (*params)[0];
7165 result = build_function_call_vec (loc, vNULL, new_function, params,
7166 NULL);
7167 if (result == error_mark_node)
7168 return result;
7169 if (orig_code != BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
7170 && orig_code != BUILT_IN_SYNC_LOCK_RELEASE_N
7171 && orig_code != BUILT_IN_ATOMIC_STORE_N
7172 && orig_code != BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N)
7173 result = sync_resolve_return (first_param, result, orig_format);
7175 if (fetch_op)
7176 /* Prevent -Wunused-value warning. */
7177 TREE_USED (result) = true;
7179 /* If new_return is set, assign function to that expr and cast the
7180 result to void since the generic interface returned void. */
7181 if (new_return)
7183 /* Cast function result from I{1,2,4,8,16} to the required type. */
7184 result = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (new_return), result);
7185 result = build2 (MODIFY_EXPR, TREE_TYPE (new_return), new_return,
7186 result);
7187 TREE_SIDE_EFFECTS (result) = 1;
7188 protected_set_expr_location (result, loc);
7189 result = convert (void_type_node, result);
7191 return result;
7194 default:
7195 return NULL_TREE;
7199 /* vector_types_compatible_elements_p is used in type checks of vectors
7200 values used as operands of binary operators. Where it returns true, and
7201 the other checks of the caller succeed (being vector types in he first
7202 place, and matching number of elements), we can just treat the types
7203 as essentially the same.
7204 Contrast with vector_targets_convertible_p, which is used for vector
7205 pointer types, and vector_types_convertible_p, which will allow
7206 language-specific matches under the control of flag_lax_vector_conversions,
7207 and might still require a conversion. */
7208 /* True if vector types T1 and T2 can be inputs to the same binary
7209 operator without conversion.
7210 We don't check the overall vector size here because some of our callers
7211 want to give different error messages when the vectors are compatible
7212 except for the element count. */
7214 bool
7215 vector_types_compatible_elements_p (tree t1, tree t2)
7217 bool opaque = TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2);
7218 t1 = TREE_TYPE (t1);
7219 t2 = TREE_TYPE (t2);
7221 enum tree_code c1 = TREE_CODE (t1), c2 = TREE_CODE (t2);
7223 gcc_assert ((c1 == INTEGER_TYPE || c1 == REAL_TYPE || c1 == FIXED_POINT_TYPE)
7224 && (c2 == INTEGER_TYPE || c2 == REAL_TYPE
7225 || c2 == FIXED_POINT_TYPE));
7227 t1 = c_common_signed_type (t1);
7228 t2 = c_common_signed_type (t2);
7229 /* Equality works here because c_common_signed_type uses
7230 TYPE_MAIN_VARIANT. */
7231 if (t1 == t2)
7232 return true;
7233 if (opaque && c1 == c2
7234 && (c1 == INTEGER_TYPE || c1 == REAL_TYPE)
7235 && TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
7236 return true;
7237 return false;
7240 /* Check for missing format attributes on function pointers. LTYPE is
7241 the new type or left-hand side type. RTYPE is the old type or
7242 right-hand side type. Returns TRUE if LTYPE is missing the desired
7243 attribute. */
7245 bool
7246 check_missing_format_attribute (tree ltype, tree rtype)
7248 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
7249 tree ra;
7251 for (ra = TYPE_ATTRIBUTES (ttr); ra; ra = TREE_CHAIN (ra))
7252 if (is_attribute_p ("format", TREE_PURPOSE (ra)))
7253 break;
7254 if (ra)
7256 tree la;
7257 for (la = TYPE_ATTRIBUTES (ttl); la; la = TREE_CHAIN (la))
7258 if (is_attribute_p ("format", TREE_PURPOSE (la)))
7259 break;
7260 return !la;
7262 else
7263 return false;
7266 /* Setup a TYPE_DECL node as a typedef representation.
7268 X is a TYPE_DECL for a typedef statement. Create a brand new
7269 ..._TYPE node (which will be just a variant of the existing
7270 ..._TYPE node with identical properties) and then install X
7271 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
7273 The whole point here is to end up with a situation where each
7274 and every ..._TYPE node the compiler creates will be uniquely
7275 associated with AT MOST one node representing a typedef name.
7276 This way, even though the compiler substitutes corresponding
7277 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
7278 early on, later parts of the compiler can always do the reverse
7279 translation and get back the corresponding typedef name. For
7280 example, given:
7282 typedef struct S MY_TYPE;
7283 MY_TYPE object;
7285 Later parts of the compiler might only know that `object' was of
7286 type `struct S' if it were not for code just below. With this
7287 code however, later parts of the compiler see something like:
7289 struct S' == struct S
7290 typedef struct S' MY_TYPE;
7291 struct S' object;
7293 And they can then deduce (from the node for type struct S') that
7294 the original object declaration was:
7296 MY_TYPE object;
7298 Being able to do this is important for proper support of protoize,
7299 and also for generating precise symbolic debugging information
7300 which takes full account of the programmer's (typedef) vocabulary.
7302 Obviously, we don't want to generate a duplicate ..._TYPE node if
7303 the TYPE_DECL node that we are now processing really represents a
7304 standard built-in type. */
7306 void
7307 set_underlying_type (tree x)
7309 if (x == error_mark_node)
7310 return;
7311 if (DECL_IS_BUILTIN (x) && TREE_CODE (TREE_TYPE (x)) != ARRAY_TYPE)
7313 if (TYPE_NAME (TREE_TYPE (x)) == 0)
7314 TYPE_NAME (TREE_TYPE (x)) = x;
7316 else if (TREE_TYPE (x) != error_mark_node
7317 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
7319 tree tt = TREE_TYPE (x);
7320 DECL_ORIGINAL_TYPE (x) = tt;
7321 tt = build_variant_type_copy (tt);
7322 TYPE_STUB_DECL (tt) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
7323 TYPE_NAME (tt) = x;
7325 /* Mark the type as used only when its type decl is decorated
7326 with attribute unused. */
7327 if (lookup_attribute ("unused", DECL_ATTRIBUTES (x)))
7328 TREE_USED (tt) = 1;
7330 TREE_TYPE (x) = tt;
7334 /* Record the types used by the current global variable declaration
7335 being parsed, so that we can decide later to emit their debug info.
7336 Those types are in types_used_by_cur_var_decl, and we are going to
7337 store them in the types_used_by_vars_hash hash table.
7338 DECL is the declaration of the global variable that has been parsed. */
7340 void
7341 record_types_used_by_current_var_decl (tree decl)
7343 gcc_assert (decl && DECL_P (decl) && TREE_STATIC (decl));
7345 while (types_used_by_cur_var_decl && !types_used_by_cur_var_decl->is_empty ())
7347 tree type = types_used_by_cur_var_decl->pop ();
7348 types_used_by_var_decl_insert (type, decl);
7352 /* The C and C++ parsers both use vectors to hold function arguments.
7353 For efficiency, we keep a cache of unused vectors. This is the
7354 cache. */
7356 typedef vec<tree, va_gc> *tree_gc_vec;
7357 static GTY((deletable)) vec<tree_gc_vec, va_gc> *tree_vector_cache;
7359 /* Return a new vector from the cache. If the cache is empty,
7360 allocate a new vector. These vectors are GC'ed, so it is OK if the
7361 pointer is not released.. */
7363 vec<tree, va_gc> *
7364 make_tree_vector (void)
7366 if (tree_vector_cache && !tree_vector_cache->is_empty ())
7367 return tree_vector_cache->pop ();
7368 else
7370 /* Passing 0 to vec::alloc returns NULL, and our callers require
7371 that we always return a non-NULL value. The vector code uses
7372 4 when growing a NULL vector, so we do too. */
7373 vec<tree, va_gc> *v;
7374 vec_alloc (v, 4);
7375 return v;
7379 /* Release a vector of trees back to the cache. */
7381 void
7382 release_tree_vector (vec<tree, va_gc> *vec)
7384 if (vec != NULL)
7386 vec->truncate (0);
7387 vec_safe_push (tree_vector_cache, vec);
7391 /* Get a new tree vector holding a single tree. */
7393 vec<tree, va_gc> *
7394 make_tree_vector_single (tree t)
7396 vec<tree, va_gc> *ret = make_tree_vector ();
7397 ret->quick_push (t);
7398 return ret;
7401 /* Get a new tree vector of the TREE_VALUEs of a TREE_LIST chain. */
7403 vec<tree, va_gc> *
7404 make_tree_vector_from_list (tree list)
7406 vec<tree, va_gc> *ret = make_tree_vector ();
7407 for (; list; list = TREE_CHAIN (list))
7408 vec_safe_push (ret, TREE_VALUE (list));
7409 return ret;
7412 /* Get a new tree vector of the values of a CONSTRUCTOR. */
7414 vec<tree, va_gc> *
7415 make_tree_vector_from_ctor (tree ctor)
7417 vec<tree,va_gc> *ret = make_tree_vector ();
7418 vec_safe_reserve (ret, CONSTRUCTOR_NELTS (ctor));
7419 for (unsigned i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
7420 ret->quick_push (CONSTRUCTOR_ELT (ctor, i)->value);
7421 return ret;
7424 /* Get a new tree vector which is a copy of an existing one. */
7426 vec<tree, va_gc> *
7427 make_tree_vector_copy (const vec<tree, va_gc> *orig)
7429 vec<tree, va_gc> *ret;
7430 unsigned int ix;
7431 tree t;
7433 ret = make_tree_vector ();
7434 vec_safe_reserve (ret, vec_safe_length (orig));
7435 FOR_EACH_VEC_SAFE_ELT (orig, ix, t)
7436 ret->quick_push (t);
7437 return ret;
7440 /* Return true if KEYWORD starts a type specifier. */
7442 bool
7443 keyword_begins_type_specifier (enum rid keyword)
7445 switch (keyword)
7447 case RID_AUTO_TYPE:
7448 case RID_INT:
7449 case RID_CHAR:
7450 case RID_FLOAT:
7451 case RID_DOUBLE:
7452 case RID_VOID:
7453 case RID_UNSIGNED:
7454 case RID_LONG:
7455 case RID_SHORT:
7456 case RID_SIGNED:
7457 CASE_RID_FLOATN_NX:
7458 case RID_DFLOAT32:
7459 case RID_DFLOAT64:
7460 case RID_DFLOAT128:
7461 case RID_FRACT:
7462 case RID_ACCUM:
7463 case RID_BOOL:
7464 case RID_WCHAR:
7465 case RID_CHAR16:
7466 case RID_CHAR32:
7467 case RID_SAT:
7468 case RID_COMPLEX:
7469 case RID_TYPEOF:
7470 case RID_STRUCT:
7471 case RID_CLASS:
7472 case RID_UNION:
7473 case RID_ENUM:
7474 return true;
7475 default:
7476 if (keyword >= RID_FIRST_INT_N
7477 && keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
7478 && int_n_enabled_p[keyword-RID_FIRST_INT_N])
7479 return true;
7480 return false;
7484 /* Return true if KEYWORD names a type qualifier. */
7486 bool
7487 keyword_is_type_qualifier (enum rid keyword)
7489 switch (keyword)
7491 case RID_CONST:
7492 case RID_VOLATILE:
7493 case RID_RESTRICT:
7494 case RID_ATOMIC:
7495 return true;
7496 default:
7497 return false;
7501 /* Return true if KEYWORD names a storage class specifier.
7503 RID_TYPEDEF is not included in this list despite `typedef' being
7504 listed in C99 6.7.1.1. 6.7.1.3 indicates that `typedef' is listed as
7505 such for syntactic convenience only. */
7507 bool
7508 keyword_is_storage_class_specifier (enum rid keyword)
7510 switch (keyword)
7512 case RID_STATIC:
7513 case RID_EXTERN:
7514 case RID_REGISTER:
7515 case RID_AUTO:
7516 case RID_MUTABLE:
7517 case RID_THREAD:
7518 return true;
7519 default:
7520 return false;
7524 /* Return true if KEYWORD names a function-specifier [dcl.fct.spec]. */
7526 static bool
7527 keyword_is_function_specifier (enum rid keyword)
7529 switch (keyword)
7531 case RID_INLINE:
7532 case RID_NORETURN:
7533 case RID_VIRTUAL:
7534 case RID_EXPLICIT:
7535 return true;
7536 default:
7537 return false;
7541 /* Return true if KEYWORD names a decl-specifier [dcl.spec] or a
7542 declaration-specifier (C99 6.7). */
7544 bool
7545 keyword_is_decl_specifier (enum rid keyword)
7547 if (keyword_is_storage_class_specifier (keyword)
7548 || keyword_is_type_qualifier (keyword)
7549 || keyword_is_function_specifier (keyword))
7550 return true;
7552 switch (keyword)
7554 case RID_TYPEDEF:
7555 case RID_FRIEND:
7556 case RID_CONSTEXPR:
7557 return true;
7558 default:
7559 return false;
7563 /* Initialize language-specific-bits of tree_contains_struct. */
7565 void
7566 c_common_init_ts (void)
7568 MARK_TS_TYPED (C_MAYBE_CONST_EXPR);
7569 MARK_TS_TYPED (EXCESS_PRECISION_EXPR);
7570 MARK_TS_TYPED (ARRAY_NOTATION_REF);
7573 /* Build a user-defined numeric literal out of an integer constant type VALUE
7574 with identifier SUFFIX. */
7576 tree
7577 build_userdef_literal (tree suffix_id, tree value,
7578 enum overflow_type overflow, tree num_string)
7580 tree literal = make_node (USERDEF_LITERAL);
7581 USERDEF_LITERAL_SUFFIX_ID (literal) = suffix_id;
7582 USERDEF_LITERAL_VALUE (literal) = value;
7583 USERDEF_LITERAL_OVERFLOW (literal) = overflow;
7584 USERDEF_LITERAL_NUM_STRING (literal) = num_string;
7585 return literal;
7588 /* For vector[index], convert the vector to an array of the underlying type.
7589 Return true if the resulting ARRAY_REF should not be an lvalue. */
7591 bool
7592 convert_vector_to_array_for_subscript (location_t loc,
7593 tree *vecp, tree index)
7595 bool ret = false;
7596 if (VECTOR_TYPE_P (TREE_TYPE (*vecp)))
7598 tree type = TREE_TYPE (*vecp);
7600 ret = !lvalue_p (*vecp);
7602 if (TREE_CODE (index) == INTEGER_CST)
7603 if (!tree_fits_uhwi_p (index)
7604 || tree_to_uhwi (index) >= TYPE_VECTOR_SUBPARTS (type))
7605 warning_at (loc, OPT_Warray_bounds, "index value is out of bound");
7607 /* We are building an ARRAY_REF so mark the vector as addressable
7608 to not run into the gimplifiers premature setting of DECL_GIMPLE_REG_P
7609 for function parameters. */
7610 c_common_mark_addressable_vec (*vecp);
7612 *vecp = build1 (VIEW_CONVERT_EXPR,
7613 build_array_type_nelts (TREE_TYPE (type),
7614 TYPE_VECTOR_SUBPARTS (type)),
7615 *vecp);
7617 return ret;
7620 /* Determine which of the operands, if any, is a scalar that needs to be
7621 converted to a vector, for the range of operations. */
7622 enum stv_conv
7623 scalar_to_vector (location_t loc, enum tree_code code, tree op0, tree op1,
7624 bool complain)
7626 tree type0 = TREE_TYPE (op0);
7627 tree type1 = TREE_TYPE (op1);
7628 bool integer_only_op = false;
7629 enum stv_conv ret = stv_firstarg;
7631 gcc_assert (VECTOR_TYPE_P (type0) || VECTOR_TYPE_P (type1));
7632 switch (code)
7634 /* Most GENERIC binary expressions require homogeneous arguments.
7635 LSHIFT_EXPR and RSHIFT_EXPR are exceptions and accept a first
7636 argument that is a vector and a second one that is a scalar, so
7637 we never return stv_secondarg for them. */
7638 case RSHIFT_EXPR:
7639 case LSHIFT_EXPR:
7640 if (TREE_CODE (type0) == INTEGER_TYPE
7641 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
7643 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0,
7644 NULL_TREE, false))
7646 if (complain)
7647 error_at (loc, "conversion of scalar %qT to vector %qT "
7648 "involves truncation", type0, type1);
7649 return stv_error;
7651 else
7652 return stv_firstarg;
7654 break;
7656 case BIT_IOR_EXPR:
7657 case BIT_XOR_EXPR:
7658 case BIT_AND_EXPR:
7659 integer_only_op = true;
7660 /* fall through */
7662 case VEC_COND_EXPR:
7664 case PLUS_EXPR:
7665 case MINUS_EXPR:
7666 case MULT_EXPR:
7667 case TRUNC_DIV_EXPR:
7668 case CEIL_DIV_EXPR:
7669 case FLOOR_DIV_EXPR:
7670 case ROUND_DIV_EXPR:
7671 case EXACT_DIV_EXPR:
7672 case TRUNC_MOD_EXPR:
7673 case FLOOR_MOD_EXPR:
7674 case RDIV_EXPR:
7675 case EQ_EXPR:
7676 case NE_EXPR:
7677 case LE_EXPR:
7678 case GE_EXPR:
7679 case LT_EXPR:
7680 case GT_EXPR:
7681 /* What about UNLT_EXPR? */
7682 if (VECTOR_TYPE_P (type0))
7684 ret = stv_secondarg;
7685 std::swap (type0, type1);
7686 std::swap (op0, op1);
7689 if (TREE_CODE (type0) == INTEGER_TYPE
7690 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
7692 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0,
7693 NULL_TREE, false))
7695 if (complain)
7696 error_at (loc, "conversion of scalar %qT to vector %qT "
7697 "involves truncation", type0, type1);
7698 return stv_error;
7700 return ret;
7702 else if (!integer_only_op
7703 /* Allow integer --> real conversion if safe. */
7704 && (TREE_CODE (type0) == REAL_TYPE
7705 || TREE_CODE (type0) == INTEGER_TYPE)
7706 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (type1)))
7708 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0,
7709 NULL_TREE, false))
7711 if (complain)
7712 error_at (loc, "conversion of scalar %qT to vector %qT "
7713 "involves truncation", type0, type1);
7714 return stv_error;
7716 return ret;
7718 default:
7719 break;
7722 return stv_nothing;
7725 /* Return the alignment of std::max_align_t.
7727 [support.types.layout] The type max_align_t is a POD type whose alignment
7728 requirement is at least as great as that of every scalar type, and whose
7729 alignment requirement is supported in every context. */
7731 unsigned
7732 max_align_t_align ()
7734 unsigned int max_align = MAX (TYPE_ALIGN (long_long_integer_type_node),
7735 TYPE_ALIGN (long_double_type_node));
7736 if (float128_type_node != NULL_TREE)
7737 max_align = MAX (max_align, TYPE_ALIGN (float128_type_node));
7738 return max_align;
7741 /* Return true iff ALIGN is an integral constant that is a fundamental
7742 alignment, as defined by [basic.align] in the c++-11
7743 specifications.
7745 That is:
7747 [A fundamental alignment is represented by an alignment less than or
7748 equal to the greatest alignment supported by the implementation
7749 in all contexts, which is equal to alignof(max_align_t)]. */
7751 bool
7752 cxx_fundamental_alignment_p (unsigned align)
7754 return (align <= max_align_t_align ());
7757 /* Return true if T is a pointer to a zero-sized aggregate. */
7759 bool
7760 pointer_to_zero_sized_aggr_p (tree t)
7762 if (!POINTER_TYPE_P (t))
7763 return false;
7764 t = TREE_TYPE (t);
7765 return (TYPE_SIZE (t) && integer_zerop (TYPE_SIZE (t)));
7768 /* For an EXPR of a FUNCTION_TYPE that references a GCC built-in function
7769 with no library fallback or for an ADDR_EXPR whose operand is such type
7770 issues an error pointing to the location LOC.
7771 Returns true when the expression has been diagnosed and false
7772 otherwise. */
7774 bool
7775 reject_gcc_builtin (const_tree expr, location_t loc /* = UNKNOWN_LOCATION */)
7777 if (TREE_CODE (expr) == ADDR_EXPR)
7778 expr = TREE_OPERAND (expr, 0);
7780 if (TREE_TYPE (expr)
7781 && TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
7782 && TREE_CODE (expr) == FUNCTION_DECL
7783 /* The intersection of DECL_BUILT_IN and DECL_IS_BUILTIN avoids
7784 false positives for user-declared built-ins such as abs or
7785 strlen, and for C++ operators new and delete.
7786 The c_decl_implicit() test avoids false positives for implicitly
7787 declared built-ins with library fallbacks (such as abs). */
7788 && DECL_BUILT_IN (expr)
7789 && DECL_IS_BUILTIN (expr)
7790 && !c_decl_implicit (expr)
7791 && !DECL_ASSEMBLER_NAME_SET_P (expr))
7793 if (loc == UNKNOWN_LOCATION)
7794 loc = EXPR_LOC_OR_LOC (expr, input_location);
7796 /* Reject arguments that are built-in functions with
7797 no library fallback. */
7798 error_at (loc, "built-in function %qE must be directly called", expr);
7800 return true;
7803 return false;
7806 /* Check if array size calculations overflow or if the array covers more
7807 than half of the address space. Return true if the size of the array
7808 is valid, false otherwise. TYPE is the type of the array and NAME is
7809 the name of the array, or NULL_TREE for unnamed arrays. */
7811 bool
7812 valid_array_size_p (location_t loc, tree type, tree name)
7814 if (type != error_mark_node
7815 && COMPLETE_TYPE_P (type)
7816 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
7817 && !valid_constant_size_p (TYPE_SIZE_UNIT (type)))
7819 if (name)
7820 error_at (loc, "size of array %qE is too large", name);
7821 else
7822 error_at (loc, "size of unnamed array is too large");
7823 return false;
7825 return true;
7828 /* Read SOURCE_DATE_EPOCH from environment to have a deterministic
7829 timestamp to replace embedded current dates to get reproducible
7830 results. Returns -1 if SOURCE_DATE_EPOCH is not defined. */
7832 time_t
7833 cb_get_source_date_epoch (cpp_reader *pfile ATTRIBUTE_UNUSED)
7835 char *source_date_epoch;
7836 int64_t epoch;
7837 char *endptr;
7839 source_date_epoch = getenv ("SOURCE_DATE_EPOCH");
7840 if (!source_date_epoch)
7841 return (time_t) -1;
7843 errno = 0;
7844 #if defined(INT64_T_IS_LONG)
7845 epoch = strtol (source_date_epoch, &endptr, 10);
7846 #else
7847 epoch = strtoll (source_date_epoch, &endptr, 10);
7848 #endif
7849 if (errno != 0 || endptr == source_date_epoch || *endptr != '\0'
7850 || epoch < 0 || epoch > MAX_SOURCE_DATE_EPOCH)
7852 error_at (input_location, "environment variable SOURCE_DATE_EPOCH must "
7853 "expand to a non-negative integer less than or equal to %wd",
7854 MAX_SOURCE_DATE_EPOCH);
7855 return (time_t) -1;
7858 return (time_t) epoch;
7861 /* Callback for libcpp for offering spelling suggestions for misspelled
7862 directives. GOAL is an unrecognized string; CANDIDATES is a
7863 NULL-terminated array of candidate strings. Return the closest
7864 match to GOAL within CANDIDATES, or NULL if none are good
7865 suggestions. */
7867 const char *
7868 cb_get_suggestion (cpp_reader *, const char *goal,
7869 const char *const *candidates)
7871 best_match<const char *, const char *> bm (goal);
7872 while (*candidates)
7873 bm.consider (*candidates++);
7874 return bm.get_best_meaningful_candidate ();
7877 /* Return the latice point which is the wider of the two FLT_EVAL_METHOD
7878 modes X, Y. This isn't just >, as the FLT_EVAL_METHOD values added
7879 by C TS 18661-3 for interchange types that are computed in their
7880 native precision are larger than the C11 values for evaluating in the
7881 precision of float/double/long double. If either mode is
7882 FLT_EVAL_METHOD_UNPREDICTABLE, return that. */
7884 enum flt_eval_method
7885 excess_precision_mode_join (enum flt_eval_method x,
7886 enum flt_eval_method y)
7888 if (x == FLT_EVAL_METHOD_UNPREDICTABLE
7889 || y == FLT_EVAL_METHOD_UNPREDICTABLE)
7890 return FLT_EVAL_METHOD_UNPREDICTABLE;
7892 /* GCC only supports one interchange type right now, _Float16. If
7893 we're evaluating _Float16 in 16-bit precision, then flt_eval_method
7894 will be FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16. */
7895 if (x == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
7896 return y;
7897 if (y == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
7898 return x;
7900 /* Other values for flt_eval_method are directly comparable, and we want
7901 the maximum. */
7902 return MAX (x, y);
7905 /* Return the value that should be set for FLT_EVAL_METHOD in the
7906 context of ISO/IEC TS 18861-3.
7908 This relates to the effective excess precision seen by the user,
7909 which is the join point of the precision the target requests for
7910 -fexcess-precision={standard,fast} and the implicit excess precision
7911 the target uses. */
7913 static enum flt_eval_method
7914 c_ts18661_flt_eval_method (void)
7916 enum flt_eval_method implicit
7917 = targetm.c.excess_precision (EXCESS_PRECISION_TYPE_IMPLICIT);
7919 enum excess_precision_type flag_type
7920 = (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
7921 ? EXCESS_PRECISION_TYPE_STANDARD
7922 : EXCESS_PRECISION_TYPE_FAST);
7924 enum flt_eval_method requested
7925 = targetm.c.excess_precision (flag_type);
7927 return excess_precision_mode_join (implicit, requested);
7930 /* As c_cpp_ts18661_flt_eval_method, but clamps the expected values to
7931 those that were permitted by C11. That is to say, eliminates
7932 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16. */
7934 static enum flt_eval_method
7935 c_c11_flt_eval_method (void)
7937 return excess_precision_mode_join (c_ts18661_flt_eval_method (),
7938 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT);
7941 /* Return the value that should be set for FLT_EVAL_METHOD.
7942 MAYBE_C11_ONLY_P is TRUE if we should check
7943 FLAG_PERMITTED_EVAL_METHODS as to whether we should limit the possible
7944 values we can return to those from C99/C11, and FALSE otherwise.
7945 See the comments on c_ts18661_flt_eval_method for what value we choose
7946 to set here. */
7949 c_flt_eval_method (bool maybe_c11_only_p)
7951 if (maybe_c11_only_p
7952 && flag_permitted_flt_eval_methods
7953 == PERMITTED_FLT_EVAL_METHODS_C11)
7954 return c_c11_flt_eval_method ();
7955 else
7956 return c_ts18661_flt_eval_method ();
7959 /* An enum for get_missing_token_insertion_kind for describing the best
7960 place to insert a missing token, if there is one. */
7962 enum missing_token_insertion_kind
7964 MTIK_IMPOSSIBLE,
7965 MTIK_INSERT_BEFORE_NEXT,
7966 MTIK_INSERT_AFTER_PREV
7969 /* Given a missing token of TYPE, determine if it is reasonable to
7970 emit a fix-it hint suggesting the insertion of the token, and,
7971 if so, where the token should be inserted relative to other tokens.
7973 It only makes sense to do this for values of TYPE that are symbols.
7975 Some symbols should go before the next token, e.g. in:
7976 if flag)
7977 we want to insert the missing '(' immediately before "flag",
7978 giving:
7979 if (flag)
7980 rather than:
7981 if( flag)
7982 These use MTIK_INSERT_BEFORE_NEXT.
7984 Other symbols should go after the previous token, e.g. in:
7985 if (flag
7986 do_something ();
7987 we want to insert the missing ')' immediately after the "flag",
7988 giving:
7989 if (flag)
7990 do_something ();
7991 rather than:
7992 if (flag
7993 )do_something ();
7994 These use MTIK_INSERT_AFTER_PREV. */
7996 static enum missing_token_insertion_kind
7997 get_missing_token_insertion_kind (enum cpp_ttype type)
7999 switch (type)
8001 /* Insert missing "opening" brackets immediately
8002 before the next token. */
8003 case CPP_OPEN_SQUARE:
8004 case CPP_OPEN_PAREN:
8005 return MTIK_INSERT_BEFORE_NEXT;
8007 /* Insert other missing symbols immediately after
8008 the previous token. */
8009 case CPP_CLOSE_PAREN:
8010 case CPP_CLOSE_SQUARE:
8011 case CPP_SEMICOLON:
8012 case CPP_COMMA:
8013 case CPP_COLON:
8014 return MTIK_INSERT_AFTER_PREV;
8016 /* Other kinds of token don't get fix-it hints. */
8017 default:
8018 return MTIK_IMPOSSIBLE;
8022 /* Given RICHLOC, a location for a diagnostic describing a missing token
8023 of kind TOKEN_TYPE, potentially add a fix-it hint suggesting the
8024 insertion of the token.
8026 The location of the attempted fix-it hint depends on TOKEN_TYPE:
8027 it will either be:
8028 (a) immediately after PREV_TOKEN_LOC, or
8030 (b) immediately before the primary location within RICHLOC (taken to
8031 be that of the token following where the token was expected).
8033 If we manage to add a fix-it hint, then the location of the
8034 fix-it hint is likely to be more useful as the primary location
8035 of the diagnostic than that of the following token, so we swap
8036 these locations.
8038 For example, given this bogus code:
8039 123456789012345678901234567890
8040 1 | int missing_semicolon (void)
8041 2 | {
8042 3 | return 42
8043 4 | }
8045 we will emit:
8047 "expected ';' before '}'"
8049 RICHLOC's primary location is at the closing brace, so before "swapping"
8050 we would emit the error at line 4 column 1:
8052 123456789012345678901234567890
8053 3 | return 42 |< fix-it hint emitted for this line
8054 | ; |
8055 4 | } |< "expected ';' before '}'" emitted at this line
8056 | ^ |
8058 It's more useful for the location of the diagnostic to be at the
8059 fix-it hint, so we swap the locations, so the primary location
8060 is at the fix-it hint, with the old primary location inserted
8061 as a secondary location, giving this, with the error at line 3
8062 column 12:
8064 123456789012345678901234567890
8065 3 | return 42 |< "expected ';' before '}'" emitted at this line,
8066 | ^ | with fix-it hint
8067 4 | ; |
8068 | } |< secondary range emitted here
8069 | ~ |. */
8071 void
8072 maybe_suggest_missing_token_insertion (rich_location *richloc,
8073 enum cpp_ttype token_type,
8074 location_t prev_token_loc)
8076 gcc_assert (richloc);
8078 enum missing_token_insertion_kind mtik
8079 = get_missing_token_insertion_kind (token_type);
8081 switch (mtik)
8083 default:
8084 gcc_unreachable ();
8085 break;
8087 case MTIK_IMPOSSIBLE:
8088 return;
8090 case MTIK_INSERT_BEFORE_NEXT:
8091 /* Attempt to add the fix-it hint before the primary location
8092 of RICHLOC. */
8093 richloc->add_fixit_insert_before (cpp_type2name (token_type, 0));
8094 break;
8096 case MTIK_INSERT_AFTER_PREV:
8097 /* Attempt to add the fix-it hint after PREV_TOKEN_LOC. */
8098 richloc->add_fixit_insert_after (prev_token_loc,
8099 cpp_type2name (token_type, 0));
8100 break;
8103 /* If we were successful, use the fix-it hint's location as the
8104 primary location within RICHLOC, adding the old primary location
8105 back as a secondary location. */
8106 if (!richloc->seen_impossible_fixit_p ())
8108 fixit_hint *hint = richloc->get_last_fixit_hint ();
8109 location_t hint_loc = hint->get_start_loc ();
8110 location_t old_loc = richloc->get_loc ();
8112 richloc->set_range (line_table, 0, hint_loc, true);
8113 richloc->add_range (old_loc, false);
8117 #if CHECKING_P
8119 namespace selftest {
8121 /* Run all of the tests within c-family. */
8123 void
8124 c_family_tests (void)
8126 c_format_c_tests ();
8129 } // namespace selftest
8131 #endif /* #if CHECKING_P */
8133 /* Attempt to locate a suitable location within FILE for a
8134 #include directive to be inserted before. FILE should
8135 be a string from libcpp (pointer equality is used).
8136 LOC is the location of the relevant diagnostic.
8138 Attempt to return the location within FILE immediately
8139 after the last #include within that file, or the start of
8140 that file if it has no #include directives.
8142 Return UNKNOWN_LOCATION if no suitable location is found,
8143 or if an error occurs. */
8145 static location_t
8146 try_to_locate_new_include_insertion_point (const char *file, location_t loc)
8148 /* Locate the last ordinary map within FILE that ended with a #include. */
8149 const line_map_ordinary *last_include_ord_map = NULL;
8151 /* ...and the next ordinary map within FILE after that one. */
8152 const line_map_ordinary *last_ord_map_after_include = NULL;
8154 /* ...and the first ordinary map within FILE. */
8155 const line_map_ordinary *first_ord_map_in_file = NULL;
8157 /* Get ordinary map containing LOC (or its expansion). */
8158 const line_map_ordinary *ord_map_for_loc = NULL;
8159 loc = linemap_resolve_location (line_table, loc, LRK_MACRO_EXPANSION_POINT,
8160 &ord_map_for_loc);
8161 gcc_assert (ord_map_for_loc);
8163 for (unsigned int i = 0; i < LINEMAPS_ORDINARY_USED (line_table); i++)
8165 const line_map_ordinary *ord_map
8166 = LINEMAPS_ORDINARY_MAP_AT (line_table, i);
8168 const line_map_ordinary *from = INCLUDED_FROM (line_table, ord_map);
8169 if (from)
8170 if (from->to_file == file)
8172 last_include_ord_map = from;
8173 last_ord_map_after_include = NULL;
8176 if (ord_map->to_file == file)
8178 if (!first_ord_map_in_file)
8179 first_ord_map_in_file = ord_map;
8180 if (last_include_ord_map && !last_ord_map_after_include)
8181 last_ord_map_after_include = ord_map;
8184 /* Stop searching when reaching the ord_map containing LOC,
8185 as it makes no sense to provide fix-it hints that appear
8186 after the diagnostic in question. */
8187 if (ord_map == ord_map_for_loc)
8188 break;
8191 /* Determine where to insert the #include. */
8192 const line_map_ordinary *ord_map_for_insertion;
8194 /* We want the next ordmap in the file after the last one that's a
8195 #include, but failing that, the start of the file. */
8196 if (last_ord_map_after_include)
8197 ord_map_for_insertion = last_ord_map_after_include;
8198 else
8199 ord_map_for_insertion = first_ord_map_in_file;
8201 if (!ord_map_for_insertion)
8202 return UNKNOWN_LOCATION;
8204 /* The "start_location" is column 0, meaning "the whole line".
8205 rich_location and edit_context can't cope with this, so use
8206 column 1 instead. */
8207 location_t col_0 = ord_map_for_insertion->start_location;
8208 return linemap_position_for_loc_and_offset (line_table, col_0, 1);
8211 /* A map from filenames to sets of headers added to them, for
8212 ensuring idempotency within maybe_add_include_fixit. */
8214 /* The values within the map. We need string comparison as there's
8215 no guarantee that two different diagnostics that are recommending
8216 adding e.g. "<stdio.h>" are using the same buffer. */
8218 typedef hash_set <const char *, nofree_string_hash> per_file_includes_t;
8220 /* The map itself. We don't need string comparison for the filename keys,
8221 as they come from libcpp. */
8223 typedef hash_map <const char *, per_file_includes_t *> added_includes_t;
8224 static added_includes_t *added_includes;
8226 /* Attempt to add a fix-it hint to RICHLOC, adding "#include HEADER\n"
8227 in a suitable location within the file of RICHLOC's primary
8228 location.
8230 This function is idempotent: a header will be added at most once to
8231 any given file. */
8233 void
8234 maybe_add_include_fixit (rich_location *richloc, const char *header)
8236 location_t loc = richloc->get_loc ();
8237 const char *file = LOCATION_FILE (loc);
8238 if (!file)
8239 return;
8241 /* Idempotency: don't add the same header more than once to a given file. */
8242 if (!added_includes)
8243 added_includes = new added_includes_t ();
8244 per_file_includes_t *&set = added_includes->get_or_insert (file);
8245 if (set)
8246 if (set->contains (header))
8247 /* ...then we've already added HEADER to that file. */
8248 return;
8249 if (!set)
8250 set = new per_file_includes_t ();
8251 set->add (header);
8253 /* Attempt to locate a suitable place for the new directive. */
8254 location_t include_insert_loc
8255 = try_to_locate_new_include_insertion_point (file, loc);
8256 if (include_insert_loc == UNKNOWN_LOCATION)
8257 return;
8259 char *text = xasprintf ("#include %s\n", header);
8260 richloc->add_fixit_insert_before (include_insert_loc, text);
8261 free (text);
8264 #include "gt-c-family-c-common.h"