[gcc]
[official-gcc.git] / gcc / c-family / c-common.c
blobb3ec3a0f7e6917b1f6cb9bf90d0edda82cb4ef5e
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), 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:
5700 /* Get the requested alignment (in bits) if it's a constant
5701 integer expression. */
5702 unsigned HOST_WIDE_INT align
5703 = tree_fits_uhwi_p (args[1]) ? tree_to_uhwi (args[1]) : 0;
5705 /* Determine if the requested alignment is a power of 2. */
5706 if ((align & (align - 1)))
5707 align = 0;
5709 /* The maximum alignment in bits corresponding to the same
5710 maximum in bytes enforced in check_user_alignment(). */
5711 unsigned maxalign = (UINT_MAX >> 1) + 1;
5713 /* Reject invalid alignments. */
5714 if (align < BITS_PER_UNIT || maxalign < align)
5716 error_at (ARG_LOCATION (1),
5717 "second argument to function %qE must be a constant "
5718 "integer power of 2 between %qi and %qu bits",
5719 fndecl, BITS_PER_UNIT, maxalign);
5720 return false;
5722 return true;
5725 case BUILT_IN_CONSTANT_P:
5726 return builtin_function_validate_nargs (loc, fndecl, nargs, 1);
5728 case BUILT_IN_ISFINITE:
5729 case BUILT_IN_ISINF:
5730 case BUILT_IN_ISINF_SIGN:
5731 case BUILT_IN_ISNAN:
5732 case BUILT_IN_ISNORMAL:
5733 case BUILT_IN_SIGNBIT:
5734 if (builtin_function_validate_nargs (loc, fndecl, nargs, 1))
5736 if (TREE_CODE (TREE_TYPE (args[0])) != REAL_TYPE)
5738 error_at (ARG_LOCATION (0), "non-floating-point argument in "
5739 "call to function %qE", fndecl);
5740 return false;
5742 return true;
5744 return false;
5746 case BUILT_IN_ISGREATER:
5747 case BUILT_IN_ISGREATEREQUAL:
5748 case BUILT_IN_ISLESS:
5749 case BUILT_IN_ISLESSEQUAL:
5750 case BUILT_IN_ISLESSGREATER:
5751 case BUILT_IN_ISUNORDERED:
5752 if (builtin_function_validate_nargs (loc, fndecl, nargs, 2))
5754 enum tree_code code0, code1;
5755 code0 = TREE_CODE (TREE_TYPE (args[0]));
5756 code1 = TREE_CODE (TREE_TYPE (args[1]));
5757 if (!((code0 == REAL_TYPE && code1 == REAL_TYPE)
5758 || (code0 == REAL_TYPE && code1 == INTEGER_TYPE)
5759 || (code0 == INTEGER_TYPE && code1 == REAL_TYPE)))
5761 error_at (loc, "non-floating-point arguments in call to "
5762 "function %qE", fndecl);
5763 return false;
5765 return true;
5767 return false;
5769 case BUILT_IN_FPCLASSIFY:
5770 if (builtin_function_validate_nargs (loc, fndecl, nargs, 6))
5772 for (unsigned int i = 0; i < 5; i++)
5773 if (TREE_CODE (args[i]) != INTEGER_CST)
5775 error_at (ARG_LOCATION (i), "non-const integer argument %u in "
5776 "call to function %qE", i + 1, fndecl);
5777 return false;
5780 if (TREE_CODE (TREE_TYPE (args[5])) != REAL_TYPE)
5782 error_at (ARG_LOCATION (5), "non-floating-point argument in "
5783 "call to function %qE", fndecl);
5784 return false;
5786 return true;
5788 return false;
5790 case BUILT_IN_ASSUME_ALIGNED:
5791 if (builtin_function_validate_nargs (loc, fndecl, nargs, 2 + (nargs > 2)))
5793 if (nargs >= 3 && TREE_CODE (TREE_TYPE (args[2])) != INTEGER_TYPE)
5795 error_at (ARG_LOCATION (2), "non-integer argument 3 in call to "
5796 "function %qE", fndecl);
5797 return false;
5799 return true;
5801 return false;
5803 case BUILT_IN_ADD_OVERFLOW:
5804 case BUILT_IN_SUB_OVERFLOW:
5805 case BUILT_IN_MUL_OVERFLOW:
5806 if (builtin_function_validate_nargs (loc, fndecl, nargs, 3))
5808 unsigned i;
5809 for (i = 0; i < 2; i++)
5810 if (!INTEGRAL_TYPE_P (TREE_TYPE (args[i])))
5812 error_at (ARG_LOCATION (i), "argument %u in call to function "
5813 "%qE does not have integral type", i + 1, fndecl);
5814 return false;
5816 if (TREE_CODE (TREE_TYPE (args[2])) != POINTER_TYPE
5817 || !INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (args[2]))))
5819 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
5820 "does not have pointer to integral type", fndecl);
5821 return false;
5823 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args[2]))) == ENUMERAL_TYPE)
5825 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
5826 "has pointer to enumerated type", fndecl);
5827 return false;
5829 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args[2]))) == BOOLEAN_TYPE)
5831 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
5832 "has pointer to boolean type", fndecl);
5833 return false;
5835 return true;
5837 return false;
5839 case BUILT_IN_ADD_OVERFLOW_P:
5840 case BUILT_IN_SUB_OVERFLOW_P:
5841 case BUILT_IN_MUL_OVERFLOW_P:
5842 if (builtin_function_validate_nargs (loc, fndecl, nargs, 3))
5844 unsigned i;
5845 for (i = 0; i < 3; i++)
5846 if (!INTEGRAL_TYPE_P (TREE_TYPE (args[i])))
5848 error_at (ARG_LOCATION (i), "argument %u in call to function "
5849 "%qE does not have integral type", i + 1, fndecl);
5850 return false;
5852 if (TREE_CODE (TREE_TYPE (args[2])) == ENUMERAL_TYPE)
5854 error_at (ARG_LOCATION (2), "argument 3 in call to function "
5855 "%qE has enumerated type", fndecl);
5856 return false;
5858 else if (TREE_CODE (TREE_TYPE (args[2])) == BOOLEAN_TYPE)
5860 error_at (ARG_LOCATION (2), "argument 3 in call to function "
5861 "%qE has boolean type", fndecl);
5862 return false;
5864 return true;
5866 return false;
5868 default:
5869 return true;
5873 /* Subroutine of c_parse_error.
5874 Return the result of concatenating LHS and RHS. RHS is really
5875 a string literal, its first character is indicated by RHS_START and
5876 RHS_SIZE is its length (including the terminating NUL character).
5878 The caller is responsible for deleting the returned pointer. */
5880 static char *
5881 catenate_strings (const char *lhs, const char *rhs_start, int rhs_size)
5883 const int lhs_size = strlen (lhs);
5884 char *result = XNEWVEC (char, lhs_size + rhs_size);
5885 strncpy (result, lhs, lhs_size);
5886 strncpy (result + lhs_size, rhs_start, rhs_size);
5887 return result;
5890 /* Issue the error given by GMSGID at RICHLOC, indicating that it occurred
5891 before TOKEN, which had the associated VALUE. */
5893 void
5894 c_parse_error (const char *gmsgid, enum cpp_ttype token_type,
5895 tree value, unsigned char token_flags,
5896 rich_location *richloc)
5898 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
5900 char *message = NULL;
5902 if (token_type == CPP_EOF)
5903 message = catenate_messages (gmsgid, " at end of input");
5904 else if (token_type == CPP_CHAR
5905 || token_type == CPP_WCHAR
5906 || token_type == CPP_CHAR16
5907 || token_type == CPP_CHAR32
5908 || token_type == CPP_UTF8CHAR)
5910 unsigned int val = TREE_INT_CST_LOW (value);
5911 const char *prefix;
5913 switch (token_type)
5915 default:
5916 prefix = "";
5917 break;
5918 case CPP_WCHAR:
5919 prefix = "L";
5920 break;
5921 case CPP_CHAR16:
5922 prefix = "u";
5923 break;
5924 case CPP_CHAR32:
5925 prefix = "U";
5926 break;
5927 case CPP_UTF8CHAR:
5928 prefix = "u8";
5929 break;
5932 if (val <= UCHAR_MAX && ISGRAPH (val))
5933 message = catenate_messages (gmsgid, " before %s'%c'");
5934 else
5935 message = catenate_messages (gmsgid, " before %s'\\x%x'");
5937 error_at_rich_loc (richloc, message, prefix, val);
5938 free (message);
5939 message = NULL;
5941 else if (token_type == CPP_CHAR_USERDEF
5942 || token_type == CPP_WCHAR_USERDEF
5943 || token_type == CPP_CHAR16_USERDEF
5944 || token_type == CPP_CHAR32_USERDEF
5945 || token_type == CPP_UTF8CHAR_USERDEF)
5946 message = catenate_messages (gmsgid,
5947 " before user-defined character literal");
5948 else if (token_type == CPP_STRING_USERDEF
5949 || token_type == CPP_WSTRING_USERDEF
5950 || token_type == CPP_STRING16_USERDEF
5951 || token_type == CPP_STRING32_USERDEF
5952 || token_type == CPP_UTF8STRING_USERDEF)
5953 message = catenate_messages (gmsgid, " before user-defined string literal");
5954 else if (token_type == CPP_STRING
5955 || token_type == CPP_WSTRING
5956 || token_type == CPP_STRING16
5957 || token_type == CPP_STRING32
5958 || token_type == CPP_UTF8STRING)
5959 message = catenate_messages (gmsgid, " before string constant");
5960 else if (token_type == CPP_NUMBER)
5961 message = catenate_messages (gmsgid, " before numeric constant");
5962 else if (token_type == CPP_NAME)
5964 message = catenate_messages (gmsgid, " before %qE");
5965 error_at_rich_loc (richloc, message, value);
5966 free (message);
5967 message = NULL;
5969 else if (token_type == CPP_PRAGMA)
5970 message = catenate_messages (gmsgid, " before %<#pragma%>");
5971 else if (token_type == CPP_PRAGMA_EOL)
5972 message = catenate_messages (gmsgid, " before end of line");
5973 else if (token_type == CPP_DECLTYPE)
5974 message = catenate_messages (gmsgid, " before %<decltype%>");
5975 else if (token_type < N_TTYPES)
5977 message = catenate_messages (gmsgid, " before %qs token");
5978 error_at_rich_loc (richloc, message, cpp_type2name (token_type, token_flags));
5979 free (message);
5980 message = NULL;
5982 else
5983 error_at_rich_loc (richloc, gmsgid);
5985 if (message)
5987 error_at_rich_loc (richloc, message);
5988 free (message);
5990 #undef catenate_messages
5993 /* Return the gcc option code associated with the reason for a cpp
5994 message, or 0 if none. */
5996 static int
5997 c_option_controlling_cpp_error (int reason)
5999 const struct cpp_reason_option_codes_t *entry;
6001 for (entry = cpp_reason_option_codes; entry->reason != CPP_W_NONE; entry++)
6003 if (entry->reason == reason)
6004 return entry->option_code;
6006 return 0;
6009 /* Callback from cpp_error for PFILE to print diagnostics from the
6010 preprocessor. The diagnostic is of type LEVEL, with REASON set
6011 to the reason code if LEVEL is represents a warning, at location
6012 RICHLOC unless this is after lexing and the compiler's location
6013 should be used instead; MSG is the translated message and AP
6014 the arguments. Returns true if a diagnostic was emitted, false
6015 otherwise. */
6017 bool
6018 c_cpp_error (cpp_reader *pfile ATTRIBUTE_UNUSED, int level, int reason,
6019 rich_location *richloc,
6020 const char *msg, va_list *ap)
6022 diagnostic_info diagnostic;
6023 diagnostic_t dlevel;
6024 bool save_warn_system_headers = global_dc->dc_warn_system_headers;
6025 bool ret;
6027 switch (level)
6029 case CPP_DL_WARNING_SYSHDR:
6030 if (flag_no_output)
6031 return false;
6032 global_dc->dc_warn_system_headers = 1;
6033 /* Fall through. */
6034 case CPP_DL_WARNING:
6035 if (flag_no_output)
6036 return false;
6037 dlevel = DK_WARNING;
6038 break;
6039 case CPP_DL_PEDWARN:
6040 if (flag_no_output && !flag_pedantic_errors)
6041 return false;
6042 dlevel = DK_PEDWARN;
6043 break;
6044 case CPP_DL_ERROR:
6045 dlevel = DK_ERROR;
6046 break;
6047 case CPP_DL_ICE:
6048 dlevel = DK_ICE;
6049 break;
6050 case CPP_DL_NOTE:
6051 dlevel = DK_NOTE;
6052 break;
6053 case CPP_DL_FATAL:
6054 dlevel = DK_FATAL;
6055 break;
6056 default:
6057 gcc_unreachable ();
6059 if (done_lexing)
6060 richloc->set_range (line_table, 0, input_location, true);
6061 diagnostic_set_info_translated (&diagnostic, msg, ap,
6062 richloc, dlevel);
6063 diagnostic_override_option_index (&diagnostic,
6064 c_option_controlling_cpp_error (reason));
6065 ret = diagnostic_report_diagnostic (global_dc, &diagnostic);
6066 if (level == CPP_DL_WARNING_SYSHDR)
6067 global_dc->dc_warn_system_headers = save_warn_system_headers;
6068 return ret;
6071 /* Convert a character from the host to the target execution character
6072 set. cpplib handles this, mostly. */
6074 HOST_WIDE_INT
6075 c_common_to_target_charset (HOST_WIDE_INT c)
6077 /* Character constants in GCC proper are sign-extended under -fsigned-char,
6078 zero-extended under -fno-signed-char. cpplib insists that characters
6079 and character constants are always unsigned. Hence we must convert
6080 back and forth. */
6081 cppchar_t uc = ((cppchar_t)c) & ((((cppchar_t)1) << CHAR_BIT)-1);
6083 uc = cpp_host_to_exec_charset (parse_in, uc);
6085 if (flag_signed_char)
6086 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE)
6087 >> (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE);
6088 else
6089 return uc;
6092 /* Fold an offsetof-like expression. EXPR is a nested sequence of component
6093 references with an INDIRECT_REF of a constant at the bottom; much like the
6094 traditional rendering of offsetof as a macro. Return the folded result. */
6096 tree
6097 fold_offsetof_1 (tree expr, enum tree_code ctx)
6099 tree base, off, t;
6100 tree_code code = TREE_CODE (expr);
6101 switch (code)
6103 case ERROR_MARK:
6104 return expr;
6106 case VAR_DECL:
6107 error ("cannot apply %<offsetof%> to static data member %qD", expr);
6108 return error_mark_node;
6110 case CALL_EXPR:
6111 case TARGET_EXPR:
6112 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
6113 return error_mark_node;
6115 case NOP_EXPR:
6116 case INDIRECT_REF:
6117 if (!TREE_CONSTANT (TREE_OPERAND (expr, 0)))
6119 error ("cannot apply %<offsetof%> to a non constant address");
6120 return error_mark_node;
6122 return TREE_OPERAND (expr, 0);
6124 case COMPONENT_REF:
6125 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), code);
6126 if (base == error_mark_node)
6127 return base;
6129 t = TREE_OPERAND (expr, 1);
6130 if (DECL_C_BIT_FIELD (t))
6132 error ("attempt to take address of bit-field structure "
6133 "member %qD", t);
6134 return error_mark_node;
6136 off = size_binop_loc (input_location, PLUS_EXPR, DECL_FIELD_OFFSET (t),
6137 size_int (tree_to_uhwi (DECL_FIELD_BIT_OFFSET (t))
6138 / BITS_PER_UNIT));
6139 break;
6141 case ARRAY_REF:
6142 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), code);
6143 if (base == error_mark_node)
6144 return base;
6146 t = TREE_OPERAND (expr, 1);
6148 /* Check if the offset goes beyond the upper bound of the array. */
6149 if (TREE_CODE (t) == INTEGER_CST && tree_int_cst_sgn (t) >= 0)
6151 tree upbound = array_ref_up_bound (expr);
6152 if (upbound != NULL_TREE
6153 && TREE_CODE (upbound) == INTEGER_CST
6154 && !tree_int_cst_equal (upbound,
6155 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
6157 if (ctx != ARRAY_REF && ctx != COMPONENT_REF)
6158 upbound = size_binop (PLUS_EXPR, upbound,
6159 build_int_cst (TREE_TYPE (upbound), 1));
6160 if (tree_int_cst_lt (upbound, t))
6162 tree v;
6164 for (v = TREE_OPERAND (expr, 0);
6165 TREE_CODE (v) == COMPONENT_REF;
6166 v = TREE_OPERAND (v, 0))
6167 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v, 0)))
6168 == RECORD_TYPE)
6170 tree fld_chain = DECL_CHAIN (TREE_OPERAND (v, 1));
6171 for (; fld_chain; fld_chain = DECL_CHAIN (fld_chain))
6172 if (TREE_CODE (fld_chain) == FIELD_DECL)
6173 break;
6175 if (fld_chain)
6176 break;
6178 /* Don't warn if the array might be considered a poor
6179 man's flexible array member with a very permissive
6180 definition thereof. */
6181 if (TREE_CODE (v) == ARRAY_REF
6182 || TREE_CODE (v) == COMPONENT_REF)
6183 warning (OPT_Warray_bounds,
6184 "index %E denotes an offset "
6185 "greater than size of %qT",
6186 t, TREE_TYPE (TREE_OPERAND (expr, 0)));
6191 t = convert (sizetype, t);
6192 off = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (TREE_TYPE (expr)), t);
6193 break;
6195 case COMPOUND_EXPR:
6196 /* Handle static members of volatile structs. */
6197 t = TREE_OPERAND (expr, 1);
6198 gcc_assert (VAR_P (t));
6199 return fold_offsetof_1 (t);
6201 default:
6202 gcc_unreachable ();
6205 return fold_build_pointer_plus (base, off);
6208 /* Likewise, but convert it to the return type of offsetof. */
6210 tree
6211 fold_offsetof (tree expr)
6213 return convert (size_type_node, fold_offsetof_1 (expr));
6217 /* *PTYPE is an incomplete array. Complete it with a domain based on
6218 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
6219 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
6220 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
6223 complete_array_type (tree *ptype, tree initial_value, bool do_default)
6225 tree maxindex, type, main_type, elt, unqual_elt;
6226 int failure = 0, quals;
6227 bool overflow_p = false;
6229 maxindex = size_zero_node;
6230 if (initial_value)
6232 if (TREE_CODE (initial_value) == STRING_CST)
6234 int eltsize
6235 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
6236 maxindex = size_int (TREE_STRING_LENGTH (initial_value)/eltsize - 1);
6238 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
6240 vec<constructor_elt, va_gc> *v = CONSTRUCTOR_ELTS (initial_value);
6242 if (vec_safe_is_empty (v))
6244 if (pedantic)
6245 failure = 3;
6246 maxindex = ssize_int (-1);
6248 else
6250 tree curindex;
6251 unsigned HOST_WIDE_INT cnt;
6252 constructor_elt *ce;
6253 bool fold_p = false;
6255 if ((*v)[0].index)
6256 maxindex = (*v)[0].index, fold_p = true;
6258 curindex = maxindex;
6260 for (cnt = 1; vec_safe_iterate (v, cnt, &ce); cnt++)
6262 bool curfold_p = false;
6263 if (ce->index)
6264 curindex = ce->index, curfold_p = true;
6265 else
6267 if (fold_p)
6269 /* Since we treat size types now as ordinary
6270 unsigned types, we need an explicit overflow
6271 check. */
6272 tree orig = curindex;
6273 curindex = fold_convert (sizetype, curindex);
6274 overflow_p |= tree_int_cst_lt (curindex, orig);
6276 curindex = size_binop (PLUS_EXPR, curindex,
6277 size_one_node);
6279 if (tree_int_cst_lt (maxindex, curindex))
6280 maxindex = curindex, fold_p = curfold_p;
6282 if (fold_p)
6284 tree orig = maxindex;
6285 maxindex = fold_convert (sizetype, maxindex);
6286 overflow_p |= tree_int_cst_lt (maxindex, orig);
6290 else
6292 /* Make an error message unless that happened already. */
6293 if (initial_value != error_mark_node)
6294 failure = 1;
6297 else
6299 failure = 2;
6300 if (!do_default)
6301 return failure;
6304 type = *ptype;
6305 elt = TREE_TYPE (type);
6306 quals = TYPE_QUALS (strip_array_types (elt));
6307 if (quals == 0)
6308 unqual_elt = elt;
6309 else
6310 unqual_elt = c_build_qualified_type (elt, KEEP_QUAL_ADDR_SPACE (quals));
6312 /* Using build_distinct_type_copy and modifying things afterward instead
6313 of using build_array_type to create a new type preserves all of the
6314 TYPE_LANG_FLAG_? bits that the front end may have set. */
6315 main_type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6316 TREE_TYPE (main_type) = unqual_elt;
6317 TYPE_DOMAIN (main_type)
6318 = build_range_type (TREE_TYPE (maxindex),
6319 build_int_cst (TREE_TYPE (maxindex), 0), maxindex);
6320 TYPE_TYPELESS_STORAGE (main_type) = TYPE_TYPELESS_STORAGE (type);
6321 layout_type (main_type);
6323 /* Make sure we have the canonical MAIN_TYPE. */
6324 hashval_t hashcode = type_hash_canon_hash (main_type);
6325 main_type = type_hash_canon (hashcode, main_type);
6327 /* Fix the canonical type. */
6328 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type))
6329 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type)))
6330 SET_TYPE_STRUCTURAL_EQUALITY (main_type);
6331 else if (TYPE_CANONICAL (TREE_TYPE (main_type)) != TREE_TYPE (main_type)
6332 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type))
6333 != TYPE_DOMAIN (main_type)))
6334 TYPE_CANONICAL (main_type)
6335 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type)),
6336 TYPE_CANONICAL (TYPE_DOMAIN (main_type)),
6337 TYPE_TYPELESS_STORAGE (main_type));
6338 else
6339 TYPE_CANONICAL (main_type) = main_type;
6341 if (quals == 0)
6342 type = main_type;
6343 else
6344 type = c_build_qualified_type (main_type, quals);
6346 if (COMPLETE_TYPE_P (type)
6347 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
6348 && (overflow_p || TREE_OVERFLOW (TYPE_SIZE_UNIT (type))))
6350 error ("size of array is too large");
6351 /* If we proceed with the array type as it is, we'll eventually
6352 crash in tree_to_[su]hwi(). */
6353 type = error_mark_node;
6356 *ptype = type;
6357 return failure;
6360 /* Like c_mark_addressable but don't check register qualifier. */
6361 void
6362 c_common_mark_addressable_vec (tree t)
6364 if (TREE_CODE (t) == C_MAYBE_CONST_EXPR)
6365 t = C_MAYBE_CONST_EXPR_EXPR (t);
6366 while (handled_component_p (t))
6367 t = TREE_OPERAND (t, 0);
6368 if (!VAR_P (t)
6369 && TREE_CODE (t) != PARM_DECL
6370 && TREE_CODE (t) != COMPOUND_LITERAL_EXPR)
6371 return;
6372 if (!VAR_P (t) || !DECL_HARD_REGISTER (t))
6373 TREE_ADDRESSABLE (t) = 1;
6378 /* Used to help initialize the builtin-types.def table. When a type of
6379 the correct size doesn't exist, use error_mark_node instead of NULL.
6380 The later results in segfaults even when a decl using the type doesn't
6381 get invoked. */
6383 tree
6384 builtin_type_for_size (int size, bool unsignedp)
6386 tree type = c_common_type_for_size (size, unsignedp);
6387 return type ? type : error_mark_node;
6390 /* A helper function for resolve_overloaded_builtin in resolving the
6391 overloaded __sync_ builtins. Returns a positive power of 2 if the
6392 first operand of PARAMS is a pointer to a supported data type.
6393 Returns 0 if an error is encountered.
6394 FETCH is true when FUNCTION is one of the _FETCH_OP_ or _OP_FETCH_
6395 built-ins. */
6397 static int
6398 sync_resolve_size (tree function, vec<tree, va_gc> *params, bool fetch)
6400 /* Type of the argument. */
6401 tree argtype;
6402 /* Type the argument points to. */
6403 tree type;
6404 int size;
6406 if (vec_safe_is_empty (params))
6408 error ("too few arguments to function %qE", function);
6409 return 0;
6412 argtype = type = TREE_TYPE ((*params)[0]);
6413 if (TREE_CODE (type) == ARRAY_TYPE && c_dialect_cxx ())
6415 /* Force array-to-pointer decay for C++. */
6416 (*params)[0] = default_conversion ((*params)[0]);
6417 type = TREE_TYPE ((*params)[0]);
6419 if (TREE_CODE (type) != POINTER_TYPE)
6420 goto incompatible;
6422 type = TREE_TYPE (type);
6423 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
6424 goto incompatible;
6426 if (!COMPLETE_TYPE_P (type))
6427 goto incompatible;
6429 if (fetch && TREE_CODE (type) == BOOLEAN_TYPE)
6430 goto incompatible;
6432 size = tree_to_uhwi (TYPE_SIZE_UNIT (type));
6433 if (size == 1 || size == 2 || size == 4 || size == 8 || size == 16)
6434 return size;
6436 incompatible:
6437 /* Issue the diagnostic only if the argument is valid, otherwise
6438 it would be redundant at best and could be misleading. */
6439 if (argtype != error_mark_node)
6440 error ("operand type %qT is incompatible with argument %d of %qE",
6441 argtype, 1, function);
6442 return 0;
6445 /* A helper function for resolve_overloaded_builtin. Adds casts to
6446 PARAMS to make arguments match up with those of FUNCTION. Drops
6447 the variadic arguments at the end. Returns false if some error
6448 was encountered; true on success. */
6450 static bool
6451 sync_resolve_params (location_t loc, tree orig_function, tree function,
6452 vec<tree, va_gc> *params, bool orig_format)
6454 function_args_iterator iter;
6455 tree ptype;
6456 unsigned int parmnum;
6458 function_args_iter_init (&iter, TREE_TYPE (function));
6459 /* We've declared the implementation functions to use "volatile void *"
6460 as the pointer parameter, so we shouldn't get any complaints from the
6461 call to check_function_arguments what ever type the user used. */
6462 function_args_iter_next (&iter);
6463 ptype = TREE_TYPE (TREE_TYPE ((*params)[0]));
6464 ptype = TYPE_MAIN_VARIANT (ptype);
6466 /* For the rest of the values, we need to cast these to FTYPE, so that we
6467 don't get warnings for passing pointer types, etc. */
6468 parmnum = 0;
6469 while (1)
6471 tree val, arg_type;
6473 arg_type = function_args_iter_cond (&iter);
6474 /* XXX void_type_node belies the abstraction. */
6475 if (arg_type == void_type_node)
6476 break;
6478 ++parmnum;
6479 if (params->length () <= parmnum)
6481 error_at (loc, "too few arguments to function %qE", orig_function);
6482 return false;
6485 /* Only convert parameters if arg_type is unsigned integer type with
6486 new format sync routines, i.e. don't attempt to convert pointer
6487 arguments (e.g. EXPECTED argument of __atomic_compare_exchange_n),
6488 bool arguments (e.g. WEAK argument) or signed int arguments (memmodel
6489 kinds). */
6490 if (TREE_CODE (arg_type) == INTEGER_TYPE && TYPE_UNSIGNED (arg_type))
6492 /* Ideally for the first conversion we'd use convert_for_assignment
6493 so that we get warnings for anything that doesn't match the pointer
6494 type. This isn't portable across the C and C++ front ends atm. */
6495 val = (*params)[parmnum];
6496 val = convert (ptype, val);
6497 val = convert (arg_type, val);
6498 (*params)[parmnum] = val;
6501 function_args_iter_next (&iter);
6504 /* __atomic routines are not variadic. */
6505 if (!orig_format && params->length () != parmnum + 1)
6507 error_at (loc, "too many arguments to function %qE", orig_function);
6508 return false;
6511 /* The definition of these primitives is variadic, with the remaining
6512 being "an optional list of variables protected by the memory barrier".
6513 No clue what that's supposed to mean, precisely, but we consider all
6514 call-clobbered variables to be protected so we're safe. */
6515 params->truncate (parmnum + 1);
6517 return true;
6520 /* A helper function for resolve_overloaded_builtin. Adds a cast to
6521 RESULT to make it match the type of the first pointer argument in
6522 PARAMS. */
6524 static tree
6525 sync_resolve_return (tree first_param, tree result, bool orig_format)
6527 tree ptype = TREE_TYPE (TREE_TYPE (first_param));
6528 tree rtype = TREE_TYPE (result);
6529 ptype = TYPE_MAIN_VARIANT (ptype);
6531 /* New format doesn't require casting unless the types are the same size. */
6532 if (orig_format || tree_int_cst_equal (TYPE_SIZE (ptype), TYPE_SIZE (rtype)))
6533 return convert (ptype, result);
6534 else
6535 return result;
6538 /* This function verifies the PARAMS to generic atomic FUNCTION.
6539 It returns the size if all the parameters are the same size, otherwise
6540 0 is returned if the parameters are invalid. */
6542 static int
6543 get_atomic_generic_size (location_t loc, tree function,
6544 vec<tree, va_gc> *params)
6546 unsigned int n_param;
6547 unsigned int n_model;
6548 unsigned int x;
6549 int size_0;
6550 tree type_0;
6552 /* Determine the parameter makeup. */
6553 switch (DECL_FUNCTION_CODE (function))
6555 case BUILT_IN_ATOMIC_EXCHANGE:
6556 n_param = 4;
6557 n_model = 1;
6558 break;
6559 case BUILT_IN_ATOMIC_LOAD:
6560 case BUILT_IN_ATOMIC_STORE:
6561 n_param = 3;
6562 n_model = 1;
6563 break;
6564 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
6565 n_param = 6;
6566 n_model = 2;
6567 break;
6568 default:
6569 gcc_unreachable ();
6572 if (vec_safe_length (params) != n_param)
6574 error_at (loc, "incorrect number of arguments to function %qE", function);
6575 return 0;
6578 /* Get type of first parameter, and determine its size. */
6579 type_0 = TREE_TYPE ((*params)[0]);
6580 if (TREE_CODE (type_0) == ARRAY_TYPE && c_dialect_cxx ())
6582 /* Force array-to-pointer decay for C++. */
6583 (*params)[0] = default_conversion ((*params)[0]);
6584 type_0 = TREE_TYPE ((*params)[0]);
6586 if (TREE_CODE (type_0) != POINTER_TYPE || VOID_TYPE_P (TREE_TYPE (type_0)))
6588 error_at (loc, "argument 1 of %qE must be a non-void pointer type",
6589 function);
6590 return 0;
6593 /* Types must be compile time constant sizes. */
6594 if (TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type_0)))) != INTEGER_CST)
6596 error_at (loc,
6597 "argument 1 of %qE must be a pointer to a constant size type",
6598 function);
6599 return 0;
6602 size_0 = tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (type_0)));
6604 /* Zero size objects are not allowed. */
6605 if (size_0 == 0)
6607 error_at (loc,
6608 "argument 1 of %qE must be a pointer to a nonzero size object",
6609 function);
6610 return 0;
6613 /* Check each other parameter is a pointer and the same size. */
6614 for (x = 0; x < n_param - n_model; x++)
6616 int size;
6617 tree type = TREE_TYPE ((*params)[x]);
6618 /* __atomic_compare_exchange has a bool in the 4th position, skip it. */
6619 if (n_param == 6 && x == 3)
6620 continue;
6621 if (TREE_CODE (type) == ARRAY_TYPE && c_dialect_cxx ())
6623 /* Force array-to-pointer decay for C++. */
6624 (*params)[x] = default_conversion ((*params)[x]);
6625 type = TREE_TYPE ((*params)[x]);
6627 if (!POINTER_TYPE_P (type))
6629 error_at (loc, "argument %d of %qE must be a pointer type", x + 1,
6630 function);
6631 return 0;
6633 else if (TYPE_SIZE_UNIT (TREE_TYPE (type))
6634 && TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type))))
6635 != INTEGER_CST)
6637 error_at (loc, "argument %d of %qE must be a pointer to a constant "
6638 "size type", x + 1, function);
6639 return 0;
6641 else if (FUNCTION_POINTER_TYPE_P (type))
6643 error_at (loc, "argument %d of %qE must not be a pointer to a "
6644 "function", x + 1, function);
6645 return 0;
6647 tree type_size = TYPE_SIZE_UNIT (TREE_TYPE (type));
6648 size = type_size ? tree_to_uhwi (type_size) : 0;
6649 if (size != size_0)
6651 error_at (loc, "size mismatch in argument %d of %qE", x + 1,
6652 function);
6653 return 0;
6657 /* Check memory model parameters for validity. */
6658 for (x = n_param - n_model ; x < n_param; x++)
6660 tree p = (*params)[x];
6661 if (TREE_CODE (p) == INTEGER_CST)
6663 int i = tree_to_uhwi (p);
6664 if (i < 0 || (memmodel_base (i) >= MEMMODEL_LAST))
6666 warning_at (loc, OPT_Winvalid_memory_model,
6667 "invalid memory model argument %d of %qE", x + 1,
6668 function);
6671 else
6672 if (!INTEGRAL_TYPE_P (TREE_TYPE (p)))
6674 error_at (loc, "non-integer memory model argument %d of %qE", x + 1,
6675 function);
6676 return 0;
6680 return size_0;
6684 /* This will take an __atomic_ generic FUNCTION call, and add a size parameter N
6685 at the beginning of the parameter list PARAMS representing the size of the
6686 objects. This is to match the library ABI requirement. LOC is the location
6687 of the function call.
6688 The new function is returned if it needed rebuilding, otherwise NULL_TREE is
6689 returned to allow the external call to be constructed. */
6691 static tree
6692 add_atomic_size_parameter (unsigned n, location_t loc, tree function,
6693 vec<tree, va_gc> *params)
6695 tree size_node;
6697 /* Insert a SIZE_T parameter as the first param. If there isn't
6698 enough space, allocate a new vector and recursively re-build with that. */
6699 if (!params->space (1))
6701 unsigned int z, len;
6702 vec<tree, va_gc> *v;
6703 tree f;
6705 len = params->length ();
6706 vec_alloc (v, len + 1);
6707 v->quick_push (build_int_cst (size_type_node, n));
6708 for (z = 0; z < len; z++)
6709 v->quick_push ((*params)[z]);
6710 f = build_function_call_vec (loc, vNULL, function, v, NULL);
6711 vec_free (v);
6712 return f;
6715 /* Add the size parameter and leave as a function call for processing. */
6716 size_node = build_int_cst (size_type_node, n);
6717 params->quick_insert (0, size_node);
6718 return NULL_TREE;
6722 /* Return whether atomic operations for naturally aligned N-byte
6723 arguments are supported, whether inline or through libatomic. */
6724 static bool
6725 atomic_size_supported_p (int n)
6727 switch (n)
6729 case 1:
6730 case 2:
6731 case 4:
6732 case 8:
6733 return true;
6735 case 16:
6736 return targetm.scalar_mode_supported_p (TImode);
6738 default:
6739 return false;
6743 /* This will process an __atomic_exchange function call, determine whether it
6744 needs to be mapped to the _N variation, or turned into a library call.
6745 LOC is the location of the builtin call.
6746 FUNCTION is the DECL that has been invoked;
6747 PARAMS is the argument list for the call. The return value is non-null
6748 TRUE is returned if it is translated into the proper format for a call to the
6749 external library, and NEW_RETURN is set the tree for that function.
6750 FALSE is returned if processing for the _N variation is required, and
6751 NEW_RETURN is set to the return value the result is copied into. */
6752 static bool
6753 resolve_overloaded_atomic_exchange (location_t loc, tree function,
6754 vec<tree, va_gc> *params, tree *new_return)
6756 tree p0, p1, p2, p3;
6757 tree I_type, I_type_ptr;
6758 int n = get_atomic_generic_size (loc, function, params);
6760 /* Size of 0 is an error condition. */
6761 if (n == 0)
6763 *new_return = error_mark_node;
6764 return true;
6767 /* If not a lock-free size, change to the library generic format. */
6768 if (!atomic_size_supported_p (n))
6770 *new_return = add_atomic_size_parameter (n, loc, function, params);
6771 return true;
6774 /* Otherwise there is a lockfree match, transform the call from:
6775 void fn(T* mem, T* desired, T* return, model)
6776 into
6777 *return = (T) (fn (In* mem, (In) *desired, model)) */
6779 p0 = (*params)[0];
6780 p1 = (*params)[1];
6781 p2 = (*params)[2];
6782 p3 = (*params)[3];
6784 /* Create pointer to appropriate size. */
6785 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6786 I_type_ptr = build_pointer_type (I_type);
6788 /* Convert object pointer to required type. */
6789 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6790 (*params)[0] = p0;
6791 /* Convert new value to required type, and dereference it. */
6792 p1 = build_indirect_ref (loc, p1, RO_UNARY_STAR);
6793 p1 = build1 (VIEW_CONVERT_EXPR, I_type, p1);
6794 (*params)[1] = p1;
6796 /* Move memory model to the 3rd position, and end param list. */
6797 (*params)[2] = p3;
6798 params->truncate (3);
6800 /* Convert return pointer and dereference it for later assignment. */
6801 *new_return = build_indirect_ref (loc, p2, RO_UNARY_STAR);
6803 return false;
6807 /* This will process an __atomic_compare_exchange function call, determine
6808 whether it needs to be mapped to the _N variation, or turned into a lib call.
6809 LOC is the location of the builtin call.
6810 FUNCTION is the DECL that has been invoked;
6811 PARAMS is the argument list for the call. The return value is non-null
6812 TRUE is returned if it is translated into the proper format for a call to the
6813 external library, and NEW_RETURN is set the tree for that function.
6814 FALSE is returned if processing for the _N variation is required. */
6816 static bool
6817 resolve_overloaded_atomic_compare_exchange (location_t loc, tree function,
6818 vec<tree, va_gc> *params,
6819 tree *new_return)
6821 tree p0, p1, p2;
6822 tree I_type, I_type_ptr;
6823 int n = get_atomic_generic_size (loc, function, params);
6825 /* Size of 0 is an error condition. */
6826 if (n == 0)
6828 *new_return = error_mark_node;
6829 return true;
6832 /* If not a lock-free size, change to the library generic format. */
6833 if (!atomic_size_supported_p (n))
6835 /* The library generic format does not have the weak parameter, so
6836 remove it from the param list. Since a parameter has been removed,
6837 we can be sure that there is room for the SIZE_T parameter, meaning
6838 there will not be a recursive rebuilding of the parameter list, so
6839 there is no danger this will be done twice. */
6840 if (n > 0)
6842 (*params)[3] = (*params)[4];
6843 (*params)[4] = (*params)[5];
6844 params->truncate (5);
6846 *new_return = add_atomic_size_parameter (n, loc, function, params);
6847 return true;
6850 /* Otherwise, there is a match, so the call needs to be transformed from:
6851 bool fn(T* mem, T* desired, T* return, weak, success, failure)
6852 into
6853 bool fn ((In *)mem, (In *)expected, (In) *desired, weak, succ, fail) */
6855 p0 = (*params)[0];
6856 p1 = (*params)[1];
6857 p2 = (*params)[2];
6859 /* Create pointer to appropriate size. */
6860 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6861 I_type_ptr = build_pointer_type (I_type);
6863 /* Convert object pointer to required type. */
6864 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6865 (*params)[0] = p0;
6867 /* Convert expected pointer to required type. */
6868 p1 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p1);
6869 (*params)[1] = p1;
6871 /* Convert desired value to required type, and dereference it. */
6872 p2 = build_indirect_ref (loc, p2, RO_UNARY_STAR);
6873 p2 = build1 (VIEW_CONVERT_EXPR, I_type, p2);
6874 (*params)[2] = p2;
6876 /* The rest of the parameters are fine. NULL means no special return value
6877 processing.*/
6878 *new_return = NULL;
6879 return false;
6883 /* This will process an __atomic_load function call, determine whether it
6884 needs to be mapped to the _N variation, or turned into a library call.
6885 LOC is the location of the builtin call.
6886 FUNCTION is the DECL that has been invoked;
6887 PARAMS is the argument list for the call. The return value is non-null
6888 TRUE is returned if it is translated into the proper format for a call to the
6889 external library, and NEW_RETURN is set the tree for that function.
6890 FALSE is returned if processing for the _N variation is required, and
6891 NEW_RETURN is set to the return value the result is copied into. */
6893 static bool
6894 resolve_overloaded_atomic_load (location_t loc, tree function,
6895 vec<tree, va_gc> *params, tree *new_return)
6897 tree p0, p1, p2;
6898 tree I_type, I_type_ptr;
6899 int n = get_atomic_generic_size (loc, function, params);
6901 /* Size of 0 is an error condition. */
6902 if (n == 0)
6904 *new_return = error_mark_node;
6905 return true;
6908 /* If not a lock-free size, change to the library generic format. */
6909 if (!atomic_size_supported_p (n))
6911 *new_return = add_atomic_size_parameter (n, loc, function, params);
6912 return true;
6915 /* Otherwise, there is a match, so the call needs to be transformed from:
6916 void fn(T* mem, T* return, model)
6917 into
6918 *return = (T) (fn ((In *) mem, model)) */
6920 p0 = (*params)[0];
6921 p1 = (*params)[1];
6922 p2 = (*params)[2];
6924 /* Create pointer to appropriate size. */
6925 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6926 I_type_ptr = build_pointer_type (I_type);
6928 /* Convert object pointer to required type. */
6929 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6930 (*params)[0] = p0;
6932 /* Move memory model to the 2nd position, and end param list. */
6933 (*params)[1] = p2;
6934 params->truncate (2);
6936 /* Convert return pointer and dereference it for later assignment. */
6937 *new_return = build_indirect_ref (loc, p1, RO_UNARY_STAR);
6939 return false;
6943 /* This will process an __atomic_store function call, determine whether it
6944 needs to be mapped to the _N variation, or turned into a library call.
6945 LOC is the location of the builtin call.
6946 FUNCTION is the DECL that has been invoked;
6947 PARAMS is the argument list for the call. The return value is non-null
6948 TRUE is returned if it is translated into the proper format for a call to the
6949 external library, and NEW_RETURN is set the tree for that function.
6950 FALSE is returned if processing for the _N variation is required, and
6951 NEW_RETURN is set to the return value the result is copied into. */
6953 static bool
6954 resolve_overloaded_atomic_store (location_t loc, tree function,
6955 vec<tree, va_gc> *params, tree *new_return)
6957 tree p0, p1;
6958 tree I_type, I_type_ptr;
6959 int n = get_atomic_generic_size (loc, function, params);
6961 /* Size of 0 is an error condition. */
6962 if (n == 0)
6964 *new_return = error_mark_node;
6965 return true;
6968 /* If not a lock-free size, change to the library generic format. */
6969 if (!atomic_size_supported_p (n))
6971 *new_return = add_atomic_size_parameter (n, loc, function, params);
6972 return true;
6975 /* Otherwise, there is a match, so the call needs to be transformed from:
6976 void fn(T* mem, T* value, model)
6977 into
6978 fn ((In *) mem, (In) *value, model) */
6980 p0 = (*params)[0];
6981 p1 = (*params)[1];
6983 /* Create pointer to appropriate size. */
6984 I_type = builtin_type_for_size (BITS_PER_UNIT * n, 1);
6985 I_type_ptr = build_pointer_type (I_type);
6987 /* Convert object pointer to required type. */
6988 p0 = build1 (VIEW_CONVERT_EXPR, I_type_ptr, p0);
6989 (*params)[0] = p0;
6991 /* Convert new value to required type, and dereference it. */
6992 p1 = build_indirect_ref (loc, p1, RO_UNARY_STAR);
6993 p1 = build1 (VIEW_CONVERT_EXPR, I_type, p1);
6994 (*params)[1] = p1;
6996 /* The memory model is in the right spot already. Return is void. */
6997 *new_return = NULL_TREE;
6999 return false;
7003 /* Some builtin functions are placeholders for other expressions. This
7004 function should be called immediately after parsing the call expression
7005 before surrounding code has committed to the type of the expression.
7007 LOC is the location of the builtin call.
7009 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
7010 PARAMS is the argument list for the call. The return value is non-null
7011 when expansion is complete, and null if normal processing should
7012 continue. */
7014 tree
7015 resolve_overloaded_builtin (location_t loc, tree function,
7016 vec<tree, va_gc> *params)
7018 enum built_in_function orig_code = DECL_FUNCTION_CODE (function);
7020 /* Is function one of the _FETCH_OP_ or _OP_FETCH_ built-ins?
7021 Those are not valid to call with a pointer to _Bool (or C++ bool)
7022 and so must be rejected. */
7023 bool fetch_op = true;
7024 bool orig_format = true;
7025 tree new_return = NULL_TREE;
7027 switch (DECL_BUILT_IN_CLASS (function))
7029 case BUILT_IN_NORMAL:
7030 break;
7031 case BUILT_IN_MD:
7032 if (targetm.resolve_overloaded_builtin)
7033 return targetm.resolve_overloaded_builtin (loc, function, params);
7034 else
7035 return NULL_TREE;
7036 default:
7037 return NULL_TREE;
7040 /* Handle BUILT_IN_NORMAL here. */
7041 switch (orig_code)
7043 case BUILT_IN_ATOMIC_EXCHANGE:
7044 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
7045 case BUILT_IN_ATOMIC_LOAD:
7046 case BUILT_IN_ATOMIC_STORE:
7048 /* Handle these 4 together so that they can fall through to the next
7049 case if the call is transformed to an _N variant. */
7050 switch (orig_code)
7052 case BUILT_IN_ATOMIC_EXCHANGE:
7054 if (resolve_overloaded_atomic_exchange (loc, function, params,
7055 &new_return))
7056 return new_return;
7057 /* Change to the _N variant. */
7058 orig_code = BUILT_IN_ATOMIC_EXCHANGE_N;
7059 break;
7062 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE:
7064 if (resolve_overloaded_atomic_compare_exchange (loc, function,
7065 params,
7066 &new_return))
7067 return new_return;
7068 /* Change to the _N variant. */
7069 orig_code = BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N;
7070 break;
7072 case BUILT_IN_ATOMIC_LOAD:
7074 if (resolve_overloaded_atomic_load (loc, function, params,
7075 &new_return))
7076 return new_return;
7077 /* Change to the _N variant. */
7078 orig_code = BUILT_IN_ATOMIC_LOAD_N;
7079 break;
7081 case BUILT_IN_ATOMIC_STORE:
7083 if (resolve_overloaded_atomic_store (loc, function, params,
7084 &new_return))
7085 return new_return;
7086 /* Change to the _N variant. */
7087 orig_code = BUILT_IN_ATOMIC_STORE_N;
7088 break;
7090 default:
7091 gcc_unreachable ();
7094 /* FALLTHRU */
7095 case BUILT_IN_ATOMIC_EXCHANGE_N:
7096 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N:
7097 case BUILT_IN_ATOMIC_LOAD_N:
7098 case BUILT_IN_ATOMIC_STORE_N:
7099 fetch_op = false;
7100 /* FALLTHRU */
7101 case BUILT_IN_ATOMIC_ADD_FETCH_N:
7102 case BUILT_IN_ATOMIC_SUB_FETCH_N:
7103 case BUILT_IN_ATOMIC_AND_FETCH_N:
7104 case BUILT_IN_ATOMIC_NAND_FETCH_N:
7105 case BUILT_IN_ATOMIC_XOR_FETCH_N:
7106 case BUILT_IN_ATOMIC_OR_FETCH_N:
7107 case BUILT_IN_ATOMIC_FETCH_ADD_N:
7108 case BUILT_IN_ATOMIC_FETCH_SUB_N:
7109 case BUILT_IN_ATOMIC_FETCH_AND_N:
7110 case BUILT_IN_ATOMIC_FETCH_NAND_N:
7111 case BUILT_IN_ATOMIC_FETCH_XOR_N:
7112 case BUILT_IN_ATOMIC_FETCH_OR_N:
7113 orig_format = false;
7114 /* FALLTHRU */
7115 case BUILT_IN_SYNC_FETCH_AND_ADD_N:
7116 case BUILT_IN_SYNC_FETCH_AND_SUB_N:
7117 case BUILT_IN_SYNC_FETCH_AND_OR_N:
7118 case BUILT_IN_SYNC_FETCH_AND_AND_N:
7119 case BUILT_IN_SYNC_FETCH_AND_XOR_N:
7120 case BUILT_IN_SYNC_FETCH_AND_NAND_N:
7121 case BUILT_IN_SYNC_ADD_AND_FETCH_N:
7122 case BUILT_IN_SYNC_SUB_AND_FETCH_N:
7123 case BUILT_IN_SYNC_OR_AND_FETCH_N:
7124 case BUILT_IN_SYNC_AND_AND_FETCH_N:
7125 case BUILT_IN_SYNC_XOR_AND_FETCH_N:
7126 case BUILT_IN_SYNC_NAND_AND_FETCH_N:
7127 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N:
7128 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N:
7129 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_N:
7130 case BUILT_IN_SYNC_LOCK_RELEASE_N:
7132 /* The following are not _FETCH_OPs and must be accepted with
7133 pointers to _Bool (or C++ bool). */
7134 if (fetch_op)
7135 fetch_op =
7136 (orig_code != BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
7137 && orig_code != BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N
7138 && orig_code != BUILT_IN_SYNC_LOCK_TEST_AND_SET_N
7139 && orig_code != BUILT_IN_SYNC_LOCK_RELEASE_N);
7141 int n = sync_resolve_size (function, params, fetch_op);
7142 tree new_function, first_param, result;
7143 enum built_in_function fncode;
7145 if (n == 0)
7146 return error_mark_node;
7148 fncode = (enum built_in_function)((int)orig_code + exact_log2 (n) + 1);
7149 new_function = builtin_decl_explicit (fncode);
7150 if (!sync_resolve_params (loc, function, new_function, params,
7151 orig_format))
7152 return error_mark_node;
7154 first_param = (*params)[0];
7155 result = build_function_call_vec (loc, vNULL, new_function, params,
7156 NULL);
7157 if (result == error_mark_node)
7158 return result;
7159 if (orig_code != BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
7160 && orig_code != BUILT_IN_SYNC_LOCK_RELEASE_N
7161 && orig_code != BUILT_IN_ATOMIC_STORE_N
7162 && orig_code != BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N)
7163 result = sync_resolve_return (first_param, result, orig_format);
7165 if (fetch_op)
7166 /* Prevent -Wunused-value warning. */
7167 TREE_USED (result) = true;
7169 /* If new_return is set, assign function to that expr and cast the
7170 result to void since the generic interface returned void. */
7171 if (new_return)
7173 /* Cast function result from I{1,2,4,8,16} to the required type. */
7174 result = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (new_return), result);
7175 result = build2 (MODIFY_EXPR, TREE_TYPE (new_return), new_return,
7176 result);
7177 TREE_SIDE_EFFECTS (result) = 1;
7178 protected_set_expr_location (result, loc);
7179 result = convert (void_type_node, result);
7181 return result;
7184 default:
7185 return NULL_TREE;
7189 /* vector_types_compatible_elements_p is used in type checks of vectors
7190 values used as operands of binary operators. Where it returns true, and
7191 the other checks of the caller succeed (being vector types in he first
7192 place, and matching number of elements), we can just treat the types
7193 as essentially the same.
7194 Contrast with vector_targets_convertible_p, which is used for vector
7195 pointer types, and vector_types_convertible_p, which will allow
7196 language-specific matches under the control of flag_lax_vector_conversions,
7197 and might still require a conversion. */
7198 /* True if vector types T1 and T2 can be inputs to the same binary
7199 operator without conversion.
7200 We don't check the overall vector size here because some of our callers
7201 want to give different error messages when the vectors are compatible
7202 except for the element count. */
7204 bool
7205 vector_types_compatible_elements_p (tree t1, tree t2)
7207 bool opaque = TYPE_VECTOR_OPAQUE (t1) || TYPE_VECTOR_OPAQUE (t2);
7208 t1 = TREE_TYPE (t1);
7209 t2 = TREE_TYPE (t2);
7211 enum tree_code c1 = TREE_CODE (t1), c2 = TREE_CODE (t2);
7213 gcc_assert ((c1 == INTEGER_TYPE || c1 == REAL_TYPE || c1 == FIXED_POINT_TYPE)
7214 && (c2 == INTEGER_TYPE || c2 == REAL_TYPE
7215 || c2 == FIXED_POINT_TYPE));
7217 t1 = c_common_signed_type (t1);
7218 t2 = c_common_signed_type (t2);
7219 /* Equality works here because c_common_signed_type uses
7220 TYPE_MAIN_VARIANT. */
7221 if (t1 == t2)
7222 return true;
7223 if (opaque && c1 == c2
7224 && (c1 == INTEGER_TYPE || c1 == REAL_TYPE)
7225 && TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
7226 return true;
7227 return false;
7230 /* Check for missing format attributes on function pointers. LTYPE is
7231 the new type or left-hand side type. RTYPE is the old type or
7232 right-hand side type. Returns TRUE if LTYPE is missing the desired
7233 attribute. */
7235 bool
7236 check_missing_format_attribute (tree ltype, tree rtype)
7238 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
7239 tree ra;
7241 for (ra = TYPE_ATTRIBUTES (ttr); ra; ra = TREE_CHAIN (ra))
7242 if (is_attribute_p ("format", TREE_PURPOSE (ra)))
7243 break;
7244 if (ra)
7246 tree la;
7247 for (la = TYPE_ATTRIBUTES (ttl); la; la = TREE_CHAIN (la))
7248 if (is_attribute_p ("format", TREE_PURPOSE (la)))
7249 break;
7250 return !la;
7252 else
7253 return false;
7256 /* Setup a TYPE_DECL node as a typedef representation.
7258 X is a TYPE_DECL for a typedef statement. Create a brand new
7259 ..._TYPE node (which will be just a variant of the existing
7260 ..._TYPE node with identical properties) and then install X
7261 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
7263 The whole point here is to end up with a situation where each
7264 and every ..._TYPE node the compiler creates will be uniquely
7265 associated with AT MOST one node representing a typedef name.
7266 This way, even though the compiler substitutes corresponding
7267 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
7268 early on, later parts of the compiler can always do the reverse
7269 translation and get back the corresponding typedef name. For
7270 example, given:
7272 typedef struct S MY_TYPE;
7273 MY_TYPE object;
7275 Later parts of the compiler might only know that `object' was of
7276 type `struct S' if it were not for code just below. With this
7277 code however, later parts of the compiler see something like:
7279 struct S' == struct S
7280 typedef struct S' MY_TYPE;
7281 struct S' object;
7283 And they can then deduce (from the node for type struct S') that
7284 the original object declaration was:
7286 MY_TYPE object;
7288 Being able to do this is important for proper support of protoize,
7289 and also for generating precise symbolic debugging information
7290 which takes full account of the programmer's (typedef) vocabulary.
7292 Obviously, we don't want to generate a duplicate ..._TYPE node if
7293 the TYPE_DECL node that we are now processing really represents a
7294 standard built-in type. */
7296 void
7297 set_underlying_type (tree x)
7299 if (x == error_mark_node)
7300 return;
7301 if (DECL_IS_BUILTIN (x) && TREE_CODE (TREE_TYPE (x)) != ARRAY_TYPE)
7303 if (TYPE_NAME (TREE_TYPE (x)) == 0)
7304 TYPE_NAME (TREE_TYPE (x)) = x;
7306 else if (TREE_TYPE (x) != error_mark_node
7307 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
7309 tree tt = TREE_TYPE (x);
7310 DECL_ORIGINAL_TYPE (x) = tt;
7311 tt = build_variant_type_copy (tt);
7312 TYPE_STUB_DECL (tt) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x));
7313 TYPE_NAME (tt) = x;
7315 /* Mark the type as used only when its type decl is decorated
7316 with attribute unused. */
7317 if (lookup_attribute ("unused", DECL_ATTRIBUTES (x)))
7318 TREE_USED (tt) = 1;
7320 TREE_TYPE (x) = tt;
7324 /* Record the types used by the current global variable declaration
7325 being parsed, so that we can decide later to emit their debug info.
7326 Those types are in types_used_by_cur_var_decl, and we are going to
7327 store them in the types_used_by_vars_hash hash table.
7328 DECL is the declaration of the global variable that has been parsed. */
7330 void
7331 record_types_used_by_current_var_decl (tree decl)
7333 gcc_assert (decl && DECL_P (decl) && TREE_STATIC (decl));
7335 while (types_used_by_cur_var_decl && !types_used_by_cur_var_decl->is_empty ())
7337 tree type = types_used_by_cur_var_decl->pop ();
7338 types_used_by_var_decl_insert (type, decl);
7342 /* The C and C++ parsers both use vectors to hold function arguments.
7343 For efficiency, we keep a cache of unused vectors. This is the
7344 cache. */
7346 typedef vec<tree, va_gc> *tree_gc_vec;
7347 static GTY((deletable)) vec<tree_gc_vec, va_gc> *tree_vector_cache;
7349 /* Return a new vector from the cache. If the cache is empty,
7350 allocate a new vector. These vectors are GC'ed, so it is OK if the
7351 pointer is not released.. */
7353 vec<tree, va_gc> *
7354 make_tree_vector (void)
7356 if (tree_vector_cache && !tree_vector_cache->is_empty ())
7357 return tree_vector_cache->pop ();
7358 else
7360 /* Passing 0 to vec::alloc returns NULL, and our callers require
7361 that we always return a non-NULL value. The vector code uses
7362 4 when growing a NULL vector, so we do too. */
7363 vec<tree, va_gc> *v;
7364 vec_alloc (v, 4);
7365 return v;
7369 /* Release a vector of trees back to the cache. */
7371 void
7372 release_tree_vector (vec<tree, va_gc> *vec)
7374 if (vec != NULL)
7376 vec->truncate (0);
7377 vec_safe_push (tree_vector_cache, vec);
7381 /* Get a new tree vector holding a single tree. */
7383 vec<tree, va_gc> *
7384 make_tree_vector_single (tree t)
7386 vec<tree, va_gc> *ret = make_tree_vector ();
7387 ret->quick_push (t);
7388 return ret;
7391 /* Get a new tree vector of the TREE_VALUEs of a TREE_LIST chain. */
7393 vec<tree, va_gc> *
7394 make_tree_vector_from_list (tree list)
7396 vec<tree, va_gc> *ret = make_tree_vector ();
7397 for (; list; list = TREE_CHAIN (list))
7398 vec_safe_push (ret, TREE_VALUE (list));
7399 return ret;
7402 /* Get a new tree vector of the values of a CONSTRUCTOR. */
7404 vec<tree, va_gc> *
7405 make_tree_vector_from_ctor (tree ctor)
7407 vec<tree,va_gc> *ret = make_tree_vector ();
7408 vec_safe_reserve (ret, CONSTRUCTOR_NELTS (ctor));
7409 for (unsigned i = 0; i < CONSTRUCTOR_NELTS (ctor); ++i)
7410 ret->quick_push (CONSTRUCTOR_ELT (ctor, i)->value);
7411 return ret;
7414 /* Get a new tree vector which is a copy of an existing one. */
7416 vec<tree, va_gc> *
7417 make_tree_vector_copy (const vec<tree, va_gc> *orig)
7419 vec<tree, va_gc> *ret;
7420 unsigned int ix;
7421 tree t;
7423 ret = make_tree_vector ();
7424 vec_safe_reserve (ret, vec_safe_length (orig));
7425 FOR_EACH_VEC_SAFE_ELT (orig, ix, t)
7426 ret->quick_push (t);
7427 return ret;
7430 /* Return true if KEYWORD starts a type specifier. */
7432 bool
7433 keyword_begins_type_specifier (enum rid keyword)
7435 switch (keyword)
7437 case RID_AUTO_TYPE:
7438 case RID_INT:
7439 case RID_CHAR:
7440 case RID_FLOAT:
7441 case RID_DOUBLE:
7442 case RID_VOID:
7443 case RID_UNSIGNED:
7444 case RID_LONG:
7445 case RID_SHORT:
7446 case RID_SIGNED:
7447 CASE_RID_FLOATN_NX:
7448 case RID_DFLOAT32:
7449 case RID_DFLOAT64:
7450 case RID_DFLOAT128:
7451 case RID_FRACT:
7452 case RID_ACCUM:
7453 case RID_BOOL:
7454 case RID_WCHAR:
7455 case RID_CHAR16:
7456 case RID_CHAR32:
7457 case RID_SAT:
7458 case RID_COMPLEX:
7459 case RID_TYPEOF:
7460 case RID_STRUCT:
7461 case RID_CLASS:
7462 case RID_UNION:
7463 case RID_ENUM:
7464 return true;
7465 default:
7466 if (keyword >= RID_FIRST_INT_N
7467 && keyword < RID_FIRST_INT_N + NUM_INT_N_ENTS
7468 && int_n_enabled_p[keyword-RID_FIRST_INT_N])
7469 return true;
7470 return false;
7474 /* Return true if KEYWORD names a type qualifier. */
7476 bool
7477 keyword_is_type_qualifier (enum rid keyword)
7479 switch (keyword)
7481 case RID_CONST:
7482 case RID_VOLATILE:
7483 case RID_RESTRICT:
7484 case RID_ATOMIC:
7485 return true;
7486 default:
7487 return false;
7491 /* Return true if KEYWORD names a storage class specifier.
7493 RID_TYPEDEF is not included in this list despite `typedef' being
7494 listed in C99 6.7.1.1. 6.7.1.3 indicates that `typedef' is listed as
7495 such for syntactic convenience only. */
7497 bool
7498 keyword_is_storage_class_specifier (enum rid keyword)
7500 switch (keyword)
7502 case RID_STATIC:
7503 case RID_EXTERN:
7504 case RID_REGISTER:
7505 case RID_AUTO:
7506 case RID_MUTABLE:
7507 case RID_THREAD:
7508 return true;
7509 default:
7510 return false;
7514 /* Return true if KEYWORD names a function-specifier [dcl.fct.spec]. */
7516 static bool
7517 keyword_is_function_specifier (enum rid keyword)
7519 switch (keyword)
7521 case RID_INLINE:
7522 case RID_NORETURN:
7523 case RID_VIRTUAL:
7524 case RID_EXPLICIT:
7525 return true;
7526 default:
7527 return false;
7531 /* Return true if KEYWORD names a decl-specifier [dcl.spec] or a
7532 declaration-specifier (C99 6.7). */
7534 bool
7535 keyword_is_decl_specifier (enum rid keyword)
7537 if (keyword_is_storage_class_specifier (keyword)
7538 || keyword_is_type_qualifier (keyword)
7539 || keyword_is_function_specifier (keyword))
7540 return true;
7542 switch (keyword)
7544 case RID_TYPEDEF:
7545 case RID_FRIEND:
7546 case RID_CONSTEXPR:
7547 return true;
7548 default:
7549 return false;
7553 /* Initialize language-specific-bits of tree_contains_struct. */
7555 void
7556 c_common_init_ts (void)
7558 MARK_TS_TYPED (C_MAYBE_CONST_EXPR);
7559 MARK_TS_TYPED (EXCESS_PRECISION_EXPR);
7560 MARK_TS_TYPED (ARRAY_NOTATION_REF);
7563 /* Build a user-defined numeric literal out of an integer constant type VALUE
7564 with identifier SUFFIX. */
7566 tree
7567 build_userdef_literal (tree suffix_id, tree value,
7568 enum overflow_type overflow, tree num_string)
7570 tree literal = make_node (USERDEF_LITERAL);
7571 USERDEF_LITERAL_SUFFIX_ID (literal) = suffix_id;
7572 USERDEF_LITERAL_VALUE (literal) = value;
7573 USERDEF_LITERAL_OVERFLOW (literal) = overflow;
7574 USERDEF_LITERAL_NUM_STRING (literal) = num_string;
7575 return literal;
7578 /* For vector[index], convert the vector to an array of the underlying type.
7579 Return true if the resulting ARRAY_REF should not be an lvalue. */
7581 bool
7582 convert_vector_to_array_for_subscript (location_t loc,
7583 tree *vecp, tree index)
7585 bool ret = false;
7586 if (VECTOR_TYPE_P (TREE_TYPE (*vecp)))
7588 tree type = TREE_TYPE (*vecp);
7590 ret = !lvalue_p (*vecp);
7592 if (TREE_CODE (index) == INTEGER_CST)
7593 if (!tree_fits_uhwi_p (index)
7594 || tree_to_uhwi (index) >= TYPE_VECTOR_SUBPARTS (type))
7595 warning_at (loc, OPT_Warray_bounds, "index value is out of bound");
7597 /* We are building an ARRAY_REF so mark the vector as addressable
7598 to not run into the gimplifiers premature setting of DECL_GIMPLE_REG_P
7599 for function parameters. */
7600 c_common_mark_addressable_vec (*vecp);
7602 *vecp = build1 (VIEW_CONVERT_EXPR,
7603 build_array_type_nelts (TREE_TYPE (type),
7604 TYPE_VECTOR_SUBPARTS (type)),
7605 *vecp);
7607 return ret;
7610 /* Determine which of the operands, if any, is a scalar that needs to be
7611 converted to a vector, for the range of operations. */
7612 enum stv_conv
7613 scalar_to_vector (location_t loc, enum tree_code code, tree op0, tree op1,
7614 bool complain)
7616 tree type0 = TREE_TYPE (op0);
7617 tree type1 = TREE_TYPE (op1);
7618 bool integer_only_op = false;
7619 enum stv_conv ret = stv_firstarg;
7621 gcc_assert (VECTOR_TYPE_P (type0) || VECTOR_TYPE_P (type1));
7622 switch (code)
7624 /* Most GENERIC binary expressions require homogeneous arguments.
7625 LSHIFT_EXPR and RSHIFT_EXPR are exceptions and accept a first
7626 argument that is a vector and a second one that is a scalar, so
7627 we never return stv_secondarg for them. */
7628 case RSHIFT_EXPR:
7629 case LSHIFT_EXPR:
7630 if (TREE_CODE (type0) == INTEGER_TYPE
7631 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
7633 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0,
7634 NULL_TREE, false))
7636 if (complain)
7637 error_at (loc, "conversion of scalar %qT to vector %qT "
7638 "involves truncation", type0, type1);
7639 return stv_error;
7641 else
7642 return stv_firstarg;
7644 break;
7646 case BIT_IOR_EXPR:
7647 case BIT_XOR_EXPR:
7648 case BIT_AND_EXPR:
7649 integer_only_op = true;
7650 /* fall through */
7652 case VEC_COND_EXPR:
7654 case PLUS_EXPR:
7655 case MINUS_EXPR:
7656 case MULT_EXPR:
7657 case TRUNC_DIV_EXPR:
7658 case CEIL_DIV_EXPR:
7659 case FLOOR_DIV_EXPR:
7660 case ROUND_DIV_EXPR:
7661 case EXACT_DIV_EXPR:
7662 case TRUNC_MOD_EXPR:
7663 case FLOOR_MOD_EXPR:
7664 case RDIV_EXPR:
7665 case EQ_EXPR:
7666 case NE_EXPR:
7667 case LE_EXPR:
7668 case GE_EXPR:
7669 case LT_EXPR:
7670 case GT_EXPR:
7671 /* What about UNLT_EXPR? */
7672 if (VECTOR_TYPE_P (type0))
7674 ret = stv_secondarg;
7675 std::swap (type0, type1);
7676 std::swap (op0, op1);
7679 if (TREE_CODE (type0) == INTEGER_TYPE
7680 && TREE_CODE (TREE_TYPE (type1)) == INTEGER_TYPE)
7682 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0,
7683 NULL_TREE, false))
7685 if (complain)
7686 error_at (loc, "conversion of scalar %qT to vector %qT "
7687 "involves truncation", type0, type1);
7688 return stv_error;
7690 return ret;
7692 else if (!integer_only_op
7693 /* Allow integer --> real conversion if safe. */
7694 && (TREE_CODE (type0) == REAL_TYPE
7695 || TREE_CODE (type0) == INTEGER_TYPE)
7696 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (type1)))
7698 if (unsafe_conversion_p (loc, TREE_TYPE (type1), op0,
7699 NULL_TREE, false))
7701 if (complain)
7702 error_at (loc, "conversion of scalar %qT to vector %qT "
7703 "involves truncation", type0, type1);
7704 return stv_error;
7706 return ret;
7708 default:
7709 break;
7712 return stv_nothing;
7715 /* Return the alignment of std::max_align_t.
7717 [support.types.layout] The type max_align_t is a POD type whose alignment
7718 requirement is at least as great as that of every scalar type, and whose
7719 alignment requirement is supported in every context. */
7721 unsigned
7722 max_align_t_align ()
7724 unsigned int max_align = MAX (TYPE_ALIGN (long_long_integer_type_node),
7725 TYPE_ALIGN (long_double_type_node));
7726 if (float128_type_node != NULL_TREE)
7727 max_align = MAX (max_align, TYPE_ALIGN (float128_type_node));
7728 return max_align;
7731 /* Return true iff ALIGN is an integral constant that is a fundamental
7732 alignment, as defined by [basic.align] in the c++-11
7733 specifications.
7735 That is:
7737 [A fundamental alignment is represented by an alignment less than or
7738 equal to the greatest alignment supported by the implementation
7739 in all contexts, which is equal to alignof(max_align_t)]. */
7741 bool
7742 cxx_fundamental_alignment_p (unsigned align)
7744 return (align <= max_align_t_align ());
7747 /* Return true if T is a pointer to a zero-sized aggregate. */
7749 bool
7750 pointer_to_zero_sized_aggr_p (tree t)
7752 if (!POINTER_TYPE_P (t))
7753 return false;
7754 t = TREE_TYPE (t);
7755 return (TYPE_SIZE (t) && integer_zerop (TYPE_SIZE (t)));
7758 /* For an EXPR of a FUNCTION_TYPE that references a GCC built-in function
7759 with no library fallback or for an ADDR_EXPR whose operand is such type
7760 issues an error pointing to the location LOC.
7761 Returns true when the expression has been diagnosed and false
7762 otherwise. */
7764 bool
7765 reject_gcc_builtin (const_tree expr, location_t loc /* = UNKNOWN_LOCATION */)
7767 if (TREE_CODE (expr) == ADDR_EXPR)
7768 expr = TREE_OPERAND (expr, 0);
7770 if (TREE_TYPE (expr)
7771 && TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE
7772 && TREE_CODE (expr) == FUNCTION_DECL
7773 /* The intersection of DECL_BUILT_IN and DECL_IS_BUILTIN avoids
7774 false positives for user-declared built-ins such as abs or
7775 strlen, and for C++ operators new and delete.
7776 The c_decl_implicit() test avoids false positives for implicitly
7777 declared built-ins with library fallbacks (such as abs). */
7778 && DECL_BUILT_IN (expr)
7779 && DECL_IS_BUILTIN (expr)
7780 && !c_decl_implicit (expr)
7781 && !DECL_ASSEMBLER_NAME_SET_P (expr))
7783 if (loc == UNKNOWN_LOCATION)
7784 loc = EXPR_LOC_OR_LOC (expr, input_location);
7786 /* Reject arguments that are built-in functions with
7787 no library fallback. */
7788 error_at (loc, "built-in function %qE must be directly called", expr);
7790 return true;
7793 return false;
7796 /* Check if array size calculations overflow or if the array covers more
7797 than half of the address space. Return true if the size of the array
7798 is valid, false otherwise. TYPE is the type of the array and NAME is
7799 the name of the array, or NULL_TREE for unnamed arrays. */
7801 bool
7802 valid_array_size_p (location_t loc, tree type, tree name)
7804 if (type != error_mark_node
7805 && COMPLETE_TYPE_P (type)
7806 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
7807 && !valid_constant_size_p (TYPE_SIZE_UNIT (type)))
7809 if (name)
7810 error_at (loc, "size of array %qE is too large", name);
7811 else
7812 error_at (loc, "size of unnamed array is too large");
7813 return false;
7815 return true;
7818 /* Read SOURCE_DATE_EPOCH from environment to have a deterministic
7819 timestamp to replace embedded current dates to get reproducible
7820 results. Returns -1 if SOURCE_DATE_EPOCH is not defined. */
7822 time_t
7823 cb_get_source_date_epoch (cpp_reader *pfile ATTRIBUTE_UNUSED)
7825 char *source_date_epoch;
7826 int64_t epoch;
7827 char *endptr;
7829 source_date_epoch = getenv ("SOURCE_DATE_EPOCH");
7830 if (!source_date_epoch)
7831 return (time_t) -1;
7833 errno = 0;
7834 #if defined(INT64_T_IS_LONG)
7835 epoch = strtol (source_date_epoch, &endptr, 10);
7836 #else
7837 epoch = strtoll (source_date_epoch, &endptr, 10);
7838 #endif
7839 if (errno != 0 || endptr == source_date_epoch || *endptr != '\0'
7840 || epoch < 0 || epoch > MAX_SOURCE_DATE_EPOCH)
7842 error_at (input_location, "environment variable SOURCE_DATE_EPOCH must "
7843 "expand to a non-negative integer less than or equal to %wd",
7844 MAX_SOURCE_DATE_EPOCH);
7845 return (time_t) -1;
7848 return (time_t) epoch;
7851 /* Callback for libcpp for offering spelling suggestions for misspelled
7852 directives. GOAL is an unrecognized string; CANDIDATES is a
7853 NULL-terminated array of candidate strings. Return the closest
7854 match to GOAL within CANDIDATES, or NULL if none are good
7855 suggestions. */
7857 const char *
7858 cb_get_suggestion (cpp_reader *, const char *goal,
7859 const char *const *candidates)
7861 best_match<const char *, const char *> bm (goal);
7862 while (*candidates)
7863 bm.consider (*candidates++);
7864 return bm.get_best_meaningful_candidate ();
7867 /* Return the latice point which is the wider of the two FLT_EVAL_METHOD
7868 modes X, Y. This isn't just >, as the FLT_EVAL_METHOD values added
7869 by C TS 18661-3 for interchange types that are computed in their
7870 native precision are larger than the C11 values for evaluating in the
7871 precision of float/double/long double. If either mode is
7872 FLT_EVAL_METHOD_UNPREDICTABLE, return that. */
7874 enum flt_eval_method
7875 excess_precision_mode_join (enum flt_eval_method x,
7876 enum flt_eval_method y)
7878 if (x == FLT_EVAL_METHOD_UNPREDICTABLE
7879 || y == FLT_EVAL_METHOD_UNPREDICTABLE)
7880 return FLT_EVAL_METHOD_UNPREDICTABLE;
7882 /* GCC only supports one interchange type right now, _Float16. If
7883 we're evaluating _Float16 in 16-bit precision, then flt_eval_method
7884 will be FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16. */
7885 if (x == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
7886 return y;
7887 if (y == FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16)
7888 return x;
7890 /* Other values for flt_eval_method are directly comparable, and we want
7891 the maximum. */
7892 return MAX (x, y);
7895 /* Return the value that should be set for FLT_EVAL_METHOD in the
7896 context of ISO/IEC TS 18861-3.
7898 This relates to the effective excess precision seen by the user,
7899 which is the join point of the precision the target requests for
7900 -fexcess-precision={standard,fast} and the implicit excess precision
7901 the target uses. */
7903 static enum flt_eval_method
7904 c_ts18661_flt_eval_method (void)
7906 enum flt_eval_method implicit
7907 = targetm.c.excess_precision (EXCESS_PRECISION_TYPE_IMPLICIT);
7909 enum excess_precision_type flag_type
7910 = (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
7911 ? EXCESS_PRECISION_TYPE_STANDARD
7912 : EXCESS_PRECISION_TYPE_FAST);
7914 enum flt_eval_method requested
7915 = targetm.c.excess_precision (flag_type);
7917 return excess_precision_mode_join (implicit, requested);
7920 /* As c_cpp_ts18661_flt_eval_method, but clamps the expected values to
7921 those that were permitted by C11. That is to say, eliminates
7922 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16. */
7924 static enum flt_eval_method
7925 c_c11_flt_eval_method (void)
7927 return excess_precision_mode_join (c_ts18661_flt_eval_method (),
7928 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT);
7931 /* Return the value that should be set for FLT_EVAL_METHOD.
7932 MAYBE_C11_ONLY_P is TRUE if we should check
7933 FLAG_PERMITTED_EVAL_METHODS as to whether we should limit the possible
7934 values we can return to those from C99/C11, and FALSE otherwise.
7935 See the comments on c_ts18661_flt_eval_method for what value we choose
7936 to set here. */
7939 c_flt_eval_method (bool maybe_c11_only_p)
7941 if (maybe_c11_only_p
7942 && flag_permitted_flt_eval_methods
7943 == PERMITTED_FLT_EVAL_METHODS_C11)
7944 return c_c11_flt_eval_method ();
7945 else
7946 return c_ts18661_flt_eval_method ();
7949 #if CHECKING_P
7951 namespace selftest {
7953 /* Run all of the tests within c-family. */
7955 void
7956 c_family_tests (void)
7958 c_format_c_tests ();
7961 } // namespace selftest
7963 #endif /* #if CHECKING_P */
7965 /* Attempt to locate a suitable location within FILE for a
7966 #include directive to be inserted before. FILE should
7967 be a string from libcpp (pointer equality is used).
7968 LOC is the location of the relevant diagnostic.
7970 Attempt to return the location within FILE immediately
7971 after the last #include within that file, or the start of
7972 that file if it has no #include directives.
7974 Return UNKNOWN_LOCATION if no suitable location is found,
7975 or if an error occurs. */
7977 static location_t
7978 try_to_locate_new_include_insertion_point (const char *file, location_t loc)
7980 /* Locate the last ordinary map within FILE that ended with a #include. */
7981 const line_map_ordinary *last_include_ord_map = NULL;
7983 /* ...and the next ordinary map within FILE after that one. */
7984 const line_map_ordinary *last_ord_map_after_include = NULL;
7986 /* ...and the first ordinary map within FILE. */
7987 const line_map_ordinary *first_ord_map_in_file = NULL;
7989 /* Get ordinary map containing LOC (or its expansion). */
7990 const line_map_ordinary *ord_map_for_loc = NULL;
7991 loc = linemap_resolve_location (line_table, loc, LRK_MACRO_EXPANSION_POINT,
7992 &ord_map_for_loc);
7993 gcc_assert (ord_map_for_loc);
7995 for (unsigned int i = 0; i < LINEMAPS_ORDINARY_USED (line_table); i++)
7997 const line_map_ordinary *ord_map
7998 = LINEMAPS_ORDINARY_MAP_AT (line_table, i);
8000 const line_map_ordinary *from = INCLUDED_FROM (line_table, ord_map);
8001 if (from)
8002 if (from->to_file == file)
8004 last_include_ord_map = from;
8005 last_ord_map_after_include = NULL;
8008 if (ord_map->to_file == file)
8010 if (!first_ord_map_in_file)
8011 first_ord_map_in_file = ord_map;
8012 if (last_include_ord_map && !last_ord_map_after_include)
8013 last_ord_map_after_include = ord_map;
8016 /* Stop searching when reaching the ord_map containing LOC,
8017 as it makes no sense to provide fix-it hints that appear
8018 after the diagnostic in question. */
8019 if (ord_map == ord_map_for_loc)
8020 break;
8023 /* Determine where to insert the #include. */
8024 const line_map_ordinary *ord_map_for_insertion;
8026 /* We want the next ordmap in the file after the last one that's a
8027 #include, but failing that, the start of the file. */
8028 if (last_ord_map_after_include)
8029 ord_map_for_insertion = last_ord_map_after_include;
8030 else
8031 ord_map_for_insertion = first_ord_map_in_file;
8033 if (!ord_map_for_insertion)
8034 return UNKNOWN_LOCATION;
8036 /* The "start_location" is column 0, meaning "the whole line".
8037 rich_location and edit_context can't cope with this, so use
8038 column 1 instead. */
8039 location_t col_0 = ord_map_for_insertion->start_location;
8040 return linemap_position_for_loc_and_offset (line_table, col_0, 1);
8043 /* A map from filenames to sets of headers added to them, for
8044 ensuring idempotency within maybe_add_include_fixit. */
8046 /* The values within the map. We need string comparison as there's
8047 no guarantee that two different diagnostics that are recommending
8048 adding e.g. "<stdio.h>" are using the same buffer. */
8050 typedef hash_set <const char *, nofree_string_hash> per_file_includes_t;
8052 /* The map itself. We don't need string comparison for the filename keys,
8053 as they come from libcpp. */
8055 typedef hash_map <const char *, per_file_includes_t *> added_includes_t;
8056 static added_includes_t *added_includes;
8058 /* Attempt to add a fix-it hint to RICHLOC, adding "#include HEADER\n"
8059 in a suitable location within the file of RICHLOC's primary
8060 location.
8062 This function is idempotent: a header will be added at most once to
8063 any given file. */
8065 void
8066 maybe_add_include_fixit (rich_location *richloc, const char *header)
8068 location_t loc = richloc->get_loc ();
8069 const char *file = LOCATION_FILE (loc);
8070 if (!file)
8071 return;
8073 /* Idempotency: don't add the same header more than once to a given file. */
8074 if (!added_includes)
8075 added_includes = new added_includes_t ();
8076 per_file_includes_t *&set = added_includes->get_or_insert (file);
8077 if (set)
8078 if (set->contains (header))
8079 /* ...then we've already added HEADER to that file. */
8080 return;
8081 if (!set)
8082 set = new per_file_includes_t ();
8083 set->add (header);
8085 /* Attempt to locate a suitable place for the new directive. */
8086 location_t include_insert_loc
8087 = try_to_locate_new_include_insertion_point (file, loc);
8088 if (include_insert_loc == UNKNOWN_LOCATION)
8089 return;
8091 char *text = xasprintf ("#include %s\n", header);
8092 richloc->add_fixit_insert_before (include_insert_loc, text);
8093 free (text);
8096 #include "gt-c-family-c-common.h"