1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992-2023 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
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
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
24 #include "coretypes.h"
30 #include "gimple-expr.h"
32 #include "stringpool.h"
34 #include "diagnostic.h"
36 #include "stor-layout.h"
40 #include "trans-mem.h"
42 #include "common/common-target.h"
43 #include "langhooks.h"
44 #include "tree-inline.h"
46 #include "tree-iterator.h"
49 #include "substring-locations.h"
50 #include "spellcheck.h"
51 #include "c-spellcheck.h"
54 #include "tree-vector-builder.h"
55 #include "vec-perm-indices.h"
57 cpp_reader
*parse_in
; /* Declared in c-pragma.h. */
59 /* Mode used to build pointers (VOIDmode means ptr_mode). */
61 machine_mode c_default_pointer_mode
= VOIDmode
;
63 /* The following symbols are subsumed in the c_global_trees array, and
64 listed here individually for documentation purposes.
66 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
68 tree short_integer_type_node;
69 tree long_integer_type_node;
70 tree long_long_integer_type_node;
72 tree short_unsigned_type_node;
73 tree long_unsigned_type_node;
74 tree long_long_unsigned_type_node;
76 tree truthvalue_type_node;
77 tree truthvalue_false_node;
78 tree truthvalue_true_node;
80 tree ptrdiff_type_node;
82 tree unsigned_char_type_node;
83 tree signed_char_type_node;
87 tree char16_type_node;
88 tree char32_type_node;
91 tree double_type_node;
92 tree long_double_type_node;
94 tree complex_integer_type_node;
95 tree complex_float_type_node;
96 tree complex_double_type_node;
97 tree complex_long_double_type_node;
99 tree dfloat32_type_node;
100 tree dfloat64_type_node;
101 tree_dfloat128_type_node;
103 tree intQI_type_node;
104 tree intHI_type_node;
105 tree intSI_type_node;
106 tree intDI_type_node;
107 tree intTI_type_node;
109 tree unsigned_intQI_type_node;
110 tree unsigned_intHI_type_node;
111 tree unsigned_intSI_type_node;
112 tree unsigned_intDI_type_node;
113 tree unsigned_intTI_type_node;
115 tree widest_integer_literal_type_node;
116 tree widest_unsigned_literal_type_node;
118 Nodes for types `void *' and `const void *'.
120 tree ptr_type_node, const_ptr_type_node;
122 Nodes for types `char *' and `const char *'.
124 tree string_type_node, const_string_type_node;
126 Type `char[SOMENUMBER]'.
127 Used when an array of char is needed and the size is irrelevant.
129 tree char_array_type_node;
131 Type `wchar_t[SOMENUMBER]' or something like it.
132 Used when a wide string literal is created.
134 tree wchar_array_type_node;
136 Type `char8_t[SOMENUMBER]' or something like it.
137 Used when a UTF-8 string literal is created.
139 tree char8_array_type_node;
141 Type `char16_t[SOMENUMBER]' or something like it.
142 Used when a UTF-16 string literal is created.
144 tree char16_array_type_node;
146 Type `char32_t[SOMENUMBER]' or something like it.
147 Used when a UTF-32 string literal is created.
149 tree char32_array_type_node;
151 Type `int ()' -- used for implicit declaration of functions.
153 tree default_function_type;
155 A VOID_TYPE node, packaged in a TREE_LIST.
159 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
160 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
161 VAR_DECLS, but C++ does.)
163 tree function_name_decl_node;
164 tree pretty_function_name_decl_node;
165 tree c99_function_name_decl_node;
167 Stack of nested function name VAR_DECLs.
169 tree saved_function_name_decls;
173 tree c_global_trees
[CTI_MAX
];
175 /* Switches common to the C front ends. */
177 /* Nonzero means don't output line number information. */
179 char flag_no_line_commands
;
181 /* Nonzero causes -E output not to be done, but directives such as
182 #define that have side effects are still obeyed. */
186 /* Nonzero means dump macros in some fashion. */
188 char flag_dump_macros
;
190 /* Nonzero means pass #include lines through to the output. */
192 char flag_dump_includes
;
194 /* Nonzero means process PCH files while preprocessing. */
196 bool flag_pch_preprocess
;
198 /* The file name to which we should write a precompiled header, or
199 NULL if no header will be written in this compile. */
201 const char *pch_file
;
203 /* Nonzero if an ISO standard was selected. It rejects macros in the
207 /* C/ObjC language option variables. */
210 /* Nonzero means allow type mismatches in conditional expressions;
211 just make their values `void'. */
213 int flag_cond_mismatch
;
215 /* Nonzero means enable C89 Amendment 1 features. */
219 /* Nonzero means use the ISO C99 (or C11) dialect of C. */
223 /* Nonzero means use the ISO C11 dialect of C. */
227 /* Nonzero means use the ISO C2X dialect of C. */
231 /* Nonzero means that we have builtin functions, and main is an int. */
236 /* ObjC language option variables. */
239 /* Tells the compiler that this is a special run. Do not perform any
240 compiling, instead we are to test some platform dependent features
241 and output a C header file with appropriate definitions. */
243 int print_struct_values
;
245 /* Tells the compiler what is the constant string class for ObjC. */
247 const char *constant_string_class_name
;
250 /* C++ language option variables. */
252 /* The reference version of the ABI for -Wabi. */
254 int warn_abi_version
= -1;
256 /* The C++ dialect being used. Default set in c_common_post_options. */
258 enum cxx_dialect cxx_dialect
= cxx_unset
;
260 /* Maximum template instantiation depth. This limit exists to limit the
261 time it takes to notice excessively recursive template instantiations.
263 The default is lower than the 1024 recommended by the C++0x standard
264 because G++ runs out of stack before 1024 with highly recursive template
265 argument deduction substitution (g++.dg/cpp0x/enum11.C). */
267 int max_tinst_depth
= 900;
269 /* The elements of `ridpointers' are identifier nodes for the reserved
270 type names and storage classes. It is indexed by a RID_... value. */
273 tree (*make_fname_decl
) (location_t
, tree
, int);
275 /* Nonzero means don't warn about problems that occur when the code is
277 int c_inhibit_evaluation_warnings
;
279 /* Whether we are building a boolean conversion inside
280 convert_for_assignment, or some other late binary operation. If
281 build_binary_op is called for C (from code shared by C and C++) in
282 this case, then the operands have already been folded and the
283 result will not be folded again, so C_MAYBE_CONST_EXPR should not
285 bool in_late_binary_op
;
287 /* Depending on which phase of processing we are in, we may need
288 to prefer input_location to libcpp's locations. (Specifically,
289 after the C++ lexer is done lexing tokens, but prior to calling
290 cpp_finish (), we need to do so. */
291 bool override_libcpp_locations
;
293 /* Information about how a function name is generated. */
296 tree
*const decl
; /* pointer to the VAR_DECL. */
297 const unsigned rid
; /* RID number for the identifier. */
298 const int pretty
; /* How pretty is it? */
301 /* The three ways of getting then name of the current function. */
303 const struct fname_var_t fname_vars
[] =
305 /* C99 compliant __func__, must be first. */
306 {&c99_function_name_decl_node
, RID_C99_FUNCTION_NAME
, 0},
307 /* GCC __FUNCTION__ compliant. */
308 {&function_name_decl_node
, RID_FUNCTION_NAME
, 0},
309 /* GCC __PRETTY_FUNCTION__ compliant. */
310 {&pretty_function_name_decl_node
, RID_PRETTY_FUNCTION_NAME
, 1},
314 /* Global visibility options. */
315 struct visibility_flags visibility_options
;
317 static tree
check_case_value (location_t
, tree
);
320 static void check_nonnull_arg (void *, tree
, unsigned HOST_WIDE_INT
);
321 static bool nonnull_check_p (tree
, unsigned HOST_WIDE_INT
);
323 /* Reserved words. The third field is a mask: keywords are disabled
324 if they match the mask.
327 C --std=c89: D_C99 | D_C2X | D_CXXONLY | D_OBJC | D_CXX_OBJC
328 C --std=c99: D_C2X | D_CXXONLY | D_OBJC
329 C --std=c17: D_C2X | D_CXXONLY | D_OBJC
330 C --std=c2x: D_CXXONLY | D_OBJC
331 ObjC is like C except that D_OBJC and D_CXX_OBJC are not set
332 C++ --std=c++98: D_CONLY | D_CXX11 | D_CXX20 | D_OBJC
333 C++ --std=c++11: D_CONLY | D_CXX20 | D_OBJC
334 C++ --std=c++20: D_CONLY | D_OBJC
335 ObjC++ is like C++ except that D_OBJC is not set
337 If -fno-asm is used, D_ASM is added to the mask. If
338 -fno-gnu-keywords is used, D_EXT is added. If -fno-asm and C in
339 C89 mode, D_EXT89 is added for both -fno-asm and -fno-gnu-keywords.
340 In C with -Wc++-compat, we warn if D_CXXWARN is set.
342 Note the complication of the D_CXX_OBJC keywords. These are
343 reserved words such as 'class'. In C++, 'class' is a reserved
344 word. In Objective-C++ it is too. In Objective-C, it is a
345 reserved word too, but only if it follows an '@' sign.
347 const struct c_common_resword c_common_reswords
[] =
349 { "_Alignas", RID_ALIGNAS
, D_CONLY
},
350 { "_Alignof", RID_ALIGNOF
, D_CONLY
},
351 { "_Atomic", RID_ATOMIC
, D_CONLY
},
352 { "_BitInt", RID_BITINT
, D_CONLY
},
353 { "_Bool", RID_BOOL
, D_CONLY
},
354 { "_Complex", RID_COMPLEX
, 0 },
355 { "_Imaginary", RID_IMAGINARY
, D_CONLY
},
356 { "_Float16", RID_FLOAT16
, 0 },
357 { "_Float32", RID_FLOAT32
, 0 },
358 { "_Float64", RID_FLOAT64
, 0 },
359 { "_Float128", RID_FLOAT128
, 0 },
360 { "_Float32x", RID_FLOAT32X
, 0 },
361 { "_Float64x", RID_FLOAT64X
, 0 },
362 { "_Float128x", RID_FLOAT128X
, 0 },
363 { "_Decimal32", RID_DFLOAT32
, D_CONLY
},
364 { "_Decimal64", RID_DFLOAT64
, D_CONLY
},
365 { "_Decimal128", RID_DFLOAT128
, D_CONLY
},
366 { "_Fract", RID_FRACT
, D_CONLY
| D_EXT
},
367 { "_Accum", RID_ACCUM
, D_CONLY
| D_EXT
},
368 { "_Sat", RID_SAT
, D_CONLY
| D_EXT
},
369 { "_Static_assert", RID_STATIC_ASSERT
, D_CONLY
},
370 { "_Noreturn", RID_NORETURN
, D_CONLY
},
371 { "_Generic", RID_GENERIC
, D_CONLY
},
372 { "_Thread_local", RID_THREAD
, D_CONLY
},
373 { "__FUNCTION__", RID_FUNCTION_NAME
, 0 },
374 { "__PRETTY_FUNCTION__", RID_PRETTY_FUNCTION_NAME
, 0 },
375 { "__alignof", RID_ALIGNOF
, 0 },
376 { "__alignof__", RID_ALIGNOF
, 0 },
377 { "__asm", RID_ASM
, 0 },
378 { "__asm__", RID_ASM
, 0 },
379 { "__attribute", RID_ATTRIBUTE
, 0 },
380 { "__attribute__", RID_ATTRIBUTE
, 0 },
381 { "__auto_type", RID_AUTO_TYPE
, D_CONLY
},
382 { "__builtin_addressof", RID_ADDRESSOF
, D_CXXONLY
},
383 { "__builtin_bit_cast", RID_BUILTIN_BIT_CAST
, D_CXXONLY
},
384 { "__builtin_call_with_static_chain",
385 RID_BUILTIN_CALL_WITH_STATIC_CHAIN
, D_CONLY
},
386 { "__builtin_choose_expr", RID_CHOOSE_EXPR
, D_CONLY
},
387 { "__builtin_complex", RID_BUILTIN_COMPLEX
, D_CONLY
},
388 { "__builtin_convertvector", RID_BUILTIN_CONVERTVECTOR
, 0 },
389 { "__builtin_has_attribute", RID_BUILTIN_HAS_ATTRIBUTE
, 0 },
390 { "__builtin_launder", RID_BUILTIN_LAUNDER
, D_CXXONLY
},
391 { "__builtin_assoc_barrier", RID_BUILTIN_ASSOC_BARRIER
, 0 },
392 { "__builtin_shuffle", RID_BUILTIN_SHUFFLE
, 0 },
393 { "__builtin_shufflevector", RID_BUILTIN_SHUFFLEVECTOR
, 0 },
394 { "__builtin_tgmath", RID_BUILTIN_TGMATH
, D_CONLY
},
395 { "__builtin_offsetof", RID_OFFSETOF
, 0 },
396 { "__builtin_types_compatible_p", RID_TYPES_COMPATIBLE_P
, D_CONLY
},
397 { "__builtin_va_arg", RID_VA_ARG
, 0 },
398 { "__complex", RID_COMPLEX
, 0 },
399 { "__complex__", RID_COMPLEX
, 0 },
400 { "__const", RID_CONST
, 0 },
401 { "__const__", RID_CONST
, 0 },
402 { "__constinit", RID_CONSTINIT
, D_CXXONLY
},
403 { "__decltype", RID_DECLTYPE
, D_CXXONLY
},
404 { "__extension__", RID_EXTENSION
, 0 },
405 { "__func__", RID_C99_FUNCTION_NAME
, 0 },
406 { "__imag", RID_IMAGPART
, 0 },
407 { "__imag__", RID_IMAGPART
, 0 },
408 { "__inline", RID_INLINE
, 0 },
409 { "__inline__", RID_INLINE
, 0 },
410 { "__label__", RID_LABEL
, 0 },
411 { "__null", RID_NULL
, 0 },
412 { "__real", RID_REALPART
, 0 },
413 { "__real__", RID_REALPART
, 0 },
414 { "__restrict", RID_RESTRICT
, 0 },
415 { "__restrict__", RID_RESTRICT
, 0 },
416 { "__signed", RID_SIGNED
, 0 },
417 { "__signed__", RID_SIGNED
, 0 },
418 { "__thread", RID_THREAD
, 0 },
419 { "__transaction_atomic", RID_TRANSACTION_ATOMIC
, 0 },
420 { "__transaction_relaxed", RID_TRANSACTION_RELAXED
, 0 },
421 { "__transaction_cancel", RID_TRANSACTION_CANCEL
, 0 },
422 { "__typeof", RID_TYPEOF
, 0 },
423 { "__typeof__", RID_TYPEOF
, 0 },
424 { "__typeof_unqual", RID_TYPEOF_UNQUAL
, D_CONLY
},
425 { "__typeof_unqual__", RID_TYPEOF_UNQUAL
, D_CONLY
},
426 { "__volatile", RID_VOLATILE
, 0 },
427 { "__volatile__", RID_VOLATILE
, 0 },
428 { "__GIMPLE", RID_GIMPLE
, D_CONLY
},
429 { "__PHI", RID_PHI
, D_CONLY
},
430 { "__RTL", RID_RTL
, D_CONLY
},
431 { "alignas", RID_ALIGNAS
, D_C2X
| D_CXX11
| D_CXXWARN
},
432 { "alignof", RID_ALIGNOF
, D_C2X
| D_CXX11
| D_CXXWARN
},
433 { "asm", RID_ASM
, D_ASM
},
434 { "auto", RID_AUTO
, 0 },
435 { "bool", RID_BOOL
, D_C2X
| D_CXXWARN
},
436 { "break", RID_BREAK
, 0 },
437 { "case", RID_CASE
, 0 },
438 { "catch", RID_CATCH
, D_CXX_OBJC
| D_CXXWARN
},
439 { "char", RID_CHAR
, 0 },
440 { "char8_t", RID_CHAR8
, D_CXX_CHAR8_T_FLAGS
| D_CXXWARN
},
441 { "char16_t", RID_CHAR16
, D_CXXONLY
| D_CXX11
| D_CXXWARN
},
442 { "char32_t", RID_CHAR32
, D_CXXONLY
| D_CXX11
| D_CXXWARN
},
443 { "class", RID_CLASS
, D_CXX_OBJC
| D_CXXWARN
},
444 { "const", RID_CONST
, 0 },
445 { "consteval", RID_CONSTEVAL
, D_CXXONLY
| D_CXX20
| D_CXXWARN
},
446 { "constexpr", RID_CONSTEXPR
, D_C2X
| D_CXX11
| D_CXXWARN
},
447 { "constinit", RID_CONSTINIT
, D_CXXONLY
| D_CXX20
| D_CXXWARN
},
448 { "const_cast", RID_CONSTCAST
, D_CXXONLY
| D_CXXWARN
},
449 { "continue", RID_CONTINUE
, 0 },
450 { "decltype", RID_DECLTYPE
, D_CXXONLY
| D_CXX11
| D_CXXWARN
},
451 { "default", RID_DEFAULT
, 0 },
452 { "delete", RID_DELETE
, D_CXXONLY
| D_CXXWARN
},
454 { "double", RID_DOUBLE
, 0 },
455 { "dynamic_cast", RID_DYNCAST
, D_CXXONLY
| D_CXXWARN
},
456 { "else", RID_ELSE
, 0 },
457 { "enum", RID_ENUM
, 0 },
458 { "explicit", RID_EXPLICIT
, D_CXXONLY
| D_CXXWARN
},
459 { "export", RID_EXPORT
, D_CXXONLY
| D_CXXWARN
},
460 { "extern", RID_EXTERN
, 0 },
461 { "false", RID_FALSE
, D_C2X
| D_CXXWARN
},
462 { "float", RID_FLOAT
, 0 },
463 { "for", RID_FOR
, 0 },
464 { "friend", RID_FRIEND
, D_CXXONLY
| D_CXXWARN
},
465 { "goto", RID_GOTO
, 0 },
467 { "inline", RID_INLINE
, D_EXT89
},
468 { "int", RID_INT
, 0 },
469 { "long", RID_LONG
, 0 },
470 { "mutable", RID_MUTABLE
, D_CXXONLY
| D_CXXWARN
},
471 { "namespace", RID_NAMESPACE
, D_CXXONLY
| D_CXXWARN
},
472 { "new", RID_NEW
, D_CXXONLY
| D_CXXWARN
},
473 { "noexcept", RID_NOEXCEPT
, D_CXXONLY
| D_CXX11
| D_CXXWARN
},
474 { "nullptr", RID_NULLPTR
, D_C2X
| D_CXX11
| D_CXXWARN
},
475 { "operator", RID_OPERATOR
, D_CXXONLY
| D_CXXWARN
},
476 { "private", RID_PRIVATE
, D_CXX_OBJC
| D_CXXWARN
},
477 { "protected", RID_PROTECTED
, D_CXX_OBJC
| D_CXXWARN
},
478 { "public", RID_PUBLIC
, D_CXX_OBJC
| D_CXXWARN
},
479 { "register", RID_REGISTER
, 0 },
480 { "reinterpret_cast", RID_REINTCAST
, D_CXXONLY
| D_CXXWARN
},
481 { "restrict", RID_RESTRICT
, D_CONLY
| D_C99
},
482 { "return", RID_RETURN
, 0 },
483 { "short", RID_SHORT
, 0 },
484 { "signed", RID_SIGNED
, 0 },
485 { "sizeof", RID_SIZEOF
, 0 },
486 { "static", RID_STATIC
, 0 },
487 { "static_assert", RID_STATIC_ASSERT
, D_C2X
| D_CXX11
| D_CXXWARN
},
488 { "static_cast", RID_STATCAST
, D_CXXONLY
| D_CXXWARN
},
489 { "struct", RID_STRUCT
, 0 },
490 { "switch", RID_SWITCH
, 0 },
491 { "template", RID_TEMPLATE
, D_CXXONLY
| D_CXXWARN
},
492 { "this", RID_THIS
, D_CXXONLY
| D_CXXWARN
},
493 { "thread_local", RID_THREAD
, D_C2X
| D_CXX11
| D_CXXWARN
},
494 { "throw", RID_THROW
, D_CXX_OBJC
| D_CXXWARN
},
495 { "true", RID_TRUE
, D_C2X
| D_CXXWARN
},
496 { "try", RID_TRY
, D_CXX_OBJC
| D_CXXWARN
},
497 { "typedef", RID_TYPEDEF
, 0 },
498 { "typename", RID_TYPENAME
, D_CXXONLY
| D_CXXWARN
},
499 { "typeid", RID_TYPEID
, D_CXXONLY
| D_CXXWARN
},
500 { "typeof", RID_TYPEOF
, D_EXT11
},
501 { "typeof_unqual", RID_TYPEOF_UNQUAL
, D_CONLY
| D_C2X
},
502 { "union", RID_UNION
, 0 },
503 { "unsigned", RID_UNSIGNED
, 0 },
504 { "using", RID_USING
, D_CXXONLY
| D_CXXWARN
},
505 { "virtual", RID_VIRTUAL
, D_CXXONLY
| D_CXXWARN
},
506 { "void", RID_VOID
, 0 },
507 { "volatile", RID_VOLATILE
, 0 },
508 { "wchar_t", RID_WCHAR
, D_CXXONLY
},
509 { "while", RID_WHILE
, 0 },
511 #define DEFTRAIT(TCC, CODE, NAME, ARITY) \
512 { NAME, RID_##CODE, D_CXXONLY },
513 #include "cp/cp-trait.def"
515 /* An alias for __is_same. */
516 { "__is_same_as", RID_IS_SAME
, D_CXXONLY
},
518 /* C++ transactional memory. */
519 { "synchronized", RID_SYNCHRONIZED
, D_CXX_OBJC
| D_TRANSMEM
},
520 { "atomic_noexcept", RID_ATOMIC_NOEXCEPT
, D_CXXONLY
| D_TRANSMEM
},
521 { "atomic_cancel", RID_ATOMIC_CANCEL
, D_CXXONLY
| D_TRANSMEM
},
522 { "atomic_commit", RID_TRANSACTION_ATOMIC
, D_CXXONLY
| D_TRANSMEM
},
524 /* Concepts-related keywords */
525 { "concept", RID_CONCEPT
, D_CXX_CONCEPTS_FLAGS
| D_CXXWARN
},
526 { "requires", RID_REQUIRES
, D_CXX_CONCEPTS_FLAGS
| D_CXXWARN
},
528 /* Modules-related keywords, these are internal unspellable tokens,
529 created by the preprocessor. */
530 { "module ", RID__MODULE
, D_CXX_MODULES_FLAGS
| D_CXXWARN
},
531 { "import ", RID__IMPORT
, D_CXX_MODULES_FLAGS
| D_CXXWARN
},
532 { "export ", RID__EXPORT
, D_CXX_MODULES_FLAGS
| D_CXXWARN
},
534 /* Coroutines-related keywords */
535 { "co_await", RID_CO_AWAIT
, D_CXX_COROUTINES_FLAGS
| D_CXXWARN
},
536 { "co_yield", RID_CO_YIELD
, D_CXX_COROUTINES_FLAGS
| D_CXXWARN
},
537 { "co_return", RID_CO_RETURN
, D_CXX_COROUTINES_FLAGS
| D_CXXWARN
},
539 /* These Objective-C keywords are recognized only immediately after
541 { "compatibility_alias", RID_AT_ALIAS
, D_OBJC
},
542 { "defs", RID_AT_DEFS
, D_OBJC
},
543 { "encode", RID_AT_ENCODE
, D_OBJC
},
544 { "end", RID_AT_END
, D_OBJC
},
545 { "implementation", RID_AT_IMPLEMENTATION
, D_OBJC
},
546 { "interface", RID_AT_INTERFACE
, D_OBJC
},
547 { "protocol", RID_AT_PROTOCOL
, D_OBJC
},
548 { "selector", RID_AT_SELECTOR
, D_OBJC
},
549 { "finally", RID_AT_FINALLY
, D_OBJC
},
550 { "optional", RID_AT_OPTIONAL
, D_OBJC
},
551 { "required", RID_AT_REQUIRED
, D_OBJC
},
552 { "property", RID_AT_PROPERTY
, D_OBJC
},
553 { "package", RID_AT_PACKAGE
, D_OBJC
},
554 { "synthesize", RID_AT_SYNTHESIZE
, D_OBJC
},
555 { "dynamic", RID_AT_DYNAMIC
, D_OBJC
},
556 /* These are recognized only in protocol-qualifier context
558 { "bycopy", RID_BYCOPY
, D_OBJC
},
559 { "byref", RID_BYREF
, D_OBJC
},
560 { "in", RID_IN
, D_OBJC
},
561 { "inout", RID_INOUT
, D_OBJC
},
562 { "oneway", RID_ONEWAY
, D_OBJC
},
563 { "out", RID_OUT
, D_OBJC
},
564 /* These are recognized inside a property attribute list */
565 { "assign", RID_ASSIGN
, D_OBJC
},
566 { "atomic", RID_PROPATOMIC
, D_OBJC
},
567 { "copy", RID_COPY
, D_OBJC
},
568 { "getter", RID_GETTER
, D_OBJC
},
569 { "nonatomic", RID_NONATOMIC
, D_OBJC
},
570 { "readonly", RID_READONLY
, D_OBJC
},
571 { "readwrite", RID_READWRITE
, D_OBJC
},
572 { "retain", RID_RETAIN
, D_OBJC
},
573 { "setter", RID_SETTER
, D_OBJC
},
574 /* These are Objective C implementation of nullability, accepted only in
575 specific contexts. */
576 { "null_unspecified", RID_NULL_UNSPECIFIED
, D_OBJC
},
577 { "nullable", RID_NULLABLE
, D_OBJC
},
578 { "nonnull", RID_NONNULL
, D_OBJC
},
579 { "null_resettable", RID_NULL_RESETTABLE
, D_OBJC
},
582 const unsigned int num_c_common_reswords
= ARRAY_SIZE (c_common_reswords
);
584 /* Return identifier for address space AS. */
587 c_addr_space_name (addr_space_t as
)
589 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
590 gcc_assert (ridpointers
[rid
]);
591 return IDENTIFIER_POINTER (ridpointers
[rid
]);
594 /* Push current bindings for the function name VAR_DECLS. */
597 start_fname_decls (void)
600 tree saved
= NULL_TREE
;
602 for (ix
= 0; fname_vars
[ix
].decl
; ix
++)
604 tree decl
= *fname_vars
[ix
].decl
;
608 saved
= tree_cons (decl
, build_int_cst (integer_type_node
, ix
),
610 *fname_vars
[ix
].decl
= NULL_TREE
;
613 if (saved
|| saved_function_name_decls
)
614 /* Normally they'll have been NULL, so only push if we've got a
615 stack, or they are non-NULL. */
616 saved_function_name_decls
= tree_cons (saved
, NULL_TREE
,
617 saved_function_name_decls
);
620 /* Finish up the current bindings, adding them into the current function's
621 statement tree. This must be done _before_ finish_stmt_tree is called.
622 If there is no current function, we must be at file scope and no statements
623 are involved. Pop the previous bindings. */
626 finish_fname_decls (void)
629 tree stmts
= NULL_TREE
;
630 tree stack
= saved_function_name_decls
;
632 for (; stack
&& TREE_VALUE (stack
); stack
= TREE_CHAIN (stack
))
633 append_to_statement_list (TREE_VALUE (stack
), &stmts
);
637 tree
*bodyp
= &DECL_SAVED_TREE (current_function_decl
);
639 if (TREE_CODE (*bodyp
) == BIND_EXPR
)
640 bodyp
= &BIND_EXPR_BODY (*bodyp
);
642 append_to_statement_list_force (*bodyp
, &stmts
);
646 for (ix
= 0; fname_vars
[ix
].decl
; ix
++)
647 *fname_vars
[ix
].decl
= NULL_TREE
;
651 /* We had saved values, restore them. */
654 for (saved
= TREE_PURPOSE (stack
); saved
; saved
= TREE_CHAIN (saved
))
656 tree decl
= TREE_PURPOSE (saved
);
657 unsigned ix
= TREE_INT_CST_LOW (TREE_VALUE (saved
));
659 *fname_vars
[ix
].decl
= decl
;
661 stack
= TREE_CHAIN (stack
);
663 saved_function_name_decls
= stack
;
666 /* Return the text name of the current function, suitably prettified
667 by PRETTY_P. Return string must be freed by caller. */
670 fname_as_string (int pretty_p
)
672 const char *name
= "top level";
675 cpp_string cstr
= { 0, 0 }, strname
;
683 if (current_function_decl
)
684 name
= lang_hooks
.decl_printable_name (current_function_decl
, vrb
);
686 len
= strlen (name
) + 3; /* Two for '"'s. One for NULL. */
688 namep
= XNEWVEC (char, len
);
689 snprintf (namep
, len
, "\"%s\"", name
);
690 strname
.text
= (unsigned char *) namep
;
691 strname
.len
= len
- 1;
693 if (cpp_interpret_string (parse_in
, &strname
, 1, &cstr
, CPP_STRING
))
696 return (const char *) cstr
.text
;
702 /* Return the VAR_DECL for a const char array naming the current
703 function. If the VAR_DECL has not yet been created, create it
704 now. RID indicates how it should be formatted and IDENTIFIER_NODE
705 ID is its name (unfortunately C and C++ hold the RID values of
706 keywords in different places, so we can't derive RID from ID in
707 this language independent code. LOC is the location of the
711 fname_decl (location_t loc
, unsigned int rid
, tree id
)
714 tree decl
= NULL_TREE
;
716 for (ix
= 0; fname_vars
[ix
].decl
; ix
++)
717 if (fname_vars
[ix
].rid
== rid
)
720 decl
= *fname_vars
[ix
].decl
;
723 /* If a tree is built here, it would normally have the lineno of
724 the current statement. Later this tree will be moved to the
725 beginning of the function and this line number will be wrong.
726 To avoid this problem set the lineno to 0 here; that prevents
727 it from appearing in the RTL. */
729 location_t saved_location
= input_location
;
730 input_location
= UNKNOWN_LOCATION
;
732 stmts
= push_stmt_list ();
733 decl
= (*make_fname_decl
) (loc
, id
, fname_vars
[ix
].pretty
);
734 stmts
= pop_stmt_list (stmts
);
735 if (!IS_EMPTY_STMT (stmts
))
736 saved_function_name_decls
737 = tree_cons (decl
, stmts
, saved_function_name_decls
);
738 *fname_vars
[ix
].decl
= decl
;
739 input_location
= saved_location
;
741 if (!ix
&& !current_function_decl
)
742 pedwarn (loc
, 0, "%qD is not defined outside of function scope", decl
);
747 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
750 fix_string_type (tree value
)
752 int length
= TREE_STRING_LENGTH (value
);
754 tree e_type
, i_type
, a_type
;
756 /* Compute the number of elements, for the array type. */
757 if (TREE_TYPE (value
) == char_array_type_node
|| !TREE_TYPE (value
))
760 e_type
= char_type_node
;
762 else if (flag_char8_t
&& TREE_TYPE (value
) == char8_array_type_node
)
764 charsz
= TYPE_PRECISION (char8_type_node
) / BITS_PER_UNIT
;
765 e_type
= char8_type_node
;
767 else if (TREE_TYPE (value
) == char16_array_type_node
)
769 charsz
= TYPE_PRECISION (char16_type_node
) / BITS_PER_UNIT
;
770 e_type
= char16_type_node
;
772 else if (TREE_TYPE (value
) == char32_array_type_node
)
774 charsz
= TYPE_PRECISION (char32_type_node
) / BITS_PER_UNIT
;
775 e_type
= char32_type_node
;
779 charsz
= TYPE_PRECISION (wchar_type_node
) / BITS_PER_UNIT
;
780 e_type
= wchar_type_node
;
783 /* This matters only for targets where ssizetype has smaller precision
785 if (wi::lts_p (wi::to_wide (TYPE_MAX_VALUE (ssizetype
)), length
))
787 error ("size of string literal is too large");
788 length
= tree_to_shwi (TYPE_MAX_VALUE (ssizetype
)) / charsz
* charsz
;
789 char *str
= CONST_CAST (char *, TREE_STRING_POINTER (value
));
790 memset (str
+ length
, '\0',
791 MIN (TREE_STRING_LENGTH (value
) - length
, charsz
));
792 TREE_STRING_LENGTH (value
) = length
;
794 nchars
= length
/ charsz
;
796 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
797 limit in C++98 Annex B is very large (65536) and is not normative,
798 so we do not diagnose it (warn_overlength_strings is forced off
799 in c_common_post_options). */
800 if (warn_overlength_strings
)
802 const int nchars_max
= flag_isoc99
? 4095 : 509;
803 const int relevant_std
= flag_isoc99
? 99 : 90;
804 if (nchars
- 1 > nchars_max
)
805 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
806 separate the %d from the 'C'. 'ISO' should not be
807 translated, but it may be moved after 'C%d' in languages
808 where modifiers follow nouns. */
809 pedwarn (input_location
, OPT_Woverlength_strings
,
810 "string length %qd is greater than the length %qd "
811 "ISO C%d compilers are required to support",
812 nchars
- 1, nchars_max
, relevant_std
);
815 /* Create the array type for the string constant. The ISO C++
816 standard says that a string literal has type `const char[N]' or
817 `const wchar_t[N]'. We use the same logic when invoked as a C
818 front-end with -Wwrite-strings.
819 ??? We should change the type of an expression depending on the
820 state of a warning flag. We should just be warning -- see how
821 this is handled in the C++ front-end for the deprecated implicit
822 conversion from string literals to `char*' or `wchar_t*'.
824 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
825 array type being the unqualified version of that type.
826 Therefore, if we are constructing an array of const char, we must
827 construct the matching unqualified array type first. The C front
828 end does not require this, but it does no harm, so we do it
830 i_type
= build_index_type (size_int (nchars
- 1));
831 a_type
= build_array_type (e_type
, i_type
);
832 if (c_dialect_cxx() || warn_write_strings
)
833 a_type
= c_build_qualified_type (a_type
, TYPE_QUAL_CONST
);
835 TREE_TYPE (value
) = a_type
;
836 TREE_CONSTANT (value
) = 1;
837 TREE_READONLY (value
) = 1;
838 TREE_STATIC (value
) = 1;
842 /* Given a string of type STRING_TYPE, determine what kind of string
843 token would give an equivalent execution encoding: CPP_STRING,
844 CPP_STRING16, or CPP_STRING32. Return CPP_OTHER in case of error.
845 This may not be exactly the string token type that initially created
846 the string, since CPP_WSTRING is indistinguishable from the 16/32 bit
847 string type, and CPP_UTF8STRING is indistinguishable from CPP_STRING
850 This effectively reverses part of the logic in lex_string and
853 static enum cpp_ttype
854 get_cpp_ttype_from_string_type (tree string_type
)
856 gcc_assert (string_type
);
857 if (TREE_CODE (string_type
) == POINTER_TYPE
)
858 string_type
= TREE_TYPE (string_type
);
860 if (TREE_CODE (string_type
) != ARRAY_TYPE
)
863 tree element_type
= TREE_TYPE (string_type
);
864 if (TREE_CODE (element_type
) != INTEGER_TYPE
)
867 int bits_per_character
= TYPE_PRECISION (element_type
);
868 switch (bits_per_character
)
871 return CPP_STRING
; /* It could have also been CPP_UTF8STRING. */
881 /* The global record of string concatentations, for use in
882 extracting locations within string literals. */
884 GTY(()) string_concat_db
*g_string_concat_db
;
886 /* Implementation of LANG_HOOKS_GET_SUBSTRING_LOCATION. */
889 c_get_substring_location (const substring_loc
&substr_loc
,
892 enum cpp_ttype tok_type
893 = get_cpp_ttype_from_string_type (substr_loc
.get_string_type ());
894 if (tok_type
== CPP_OTHER
)
895 return "unrecognized string type";
897 return get_location_within_string (parse_in
, g_string_concat_db
,
898 substr_loc
.get_fmt_string_loc (),
900 substr_loc
.get_caret_idx (),
901 substr_loc
.get_start_idx (),
902 substr_loc
.get_end_idx (),
907 /* Return true iff T is a boolean promoted to int. */
910 bool_promoted_to_int_p (tree t
)
912 return (CONVERT_EXPR_P (t
)
913 && TREE_TYPE (t
) == integer_type_node
914 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t
, 0))) == BOOLEAN_TYPE
);
917 /* vector_targets_convertible_p is used for vector pointer types. The
918 callers perform various checks that the qualifiers are satisfactory,
919 while OTOH vector_targets_convertible_p ignores the number of elements
920 in the vectors. That's fine with vector pointers as we can consider,
921 say, a vector of 8 elements as two consecutive vectors of 4 elements,
922 and that does not require and conversion of the pointer values.
923 In contrast, vector_types_convertible_p and
924 vector_types_compatible_elements_p are used for vector value types. */
925 /* True if pointers to distinct types T1 and T2 can be converted to
926 each other without an explicit cast. Only returns true for opaque
929 vector_targets_convertible_p (const_tree t1
, const_tree t2
)
931 if (VECTOR_TYPE_P (t1
) && VECTOR_TYPE_P (t2
)
932 && (TYPE_VECTOR_OPAQUE (t1
) || TYPE_VECTOR_OPAQUE (t2
))
933 && tree_int_cst_equal (TYPE_SIZE (t1
), TYPE_SIZE (t2
)))
939 /* vector_types_convertible_p is used for vector value types.
940 It could in principle call vector_targets_convertible_p as a subroutine,
941 but then the check for vector type would be duplicated with its callers,
942 and also the purpose of vector_targets_convertible_p would become
944 Where vector_types_convertible_p returns true, a conversion might still be
945 needed to make the types match.
946 In contrast, vector_targets_convertible_p is used for vector pointer
947 values, and vector_types_compatible_elements_p is used specifically
948 in the context for binary operators, as a check if use is possible without
950 /* True if vector types T1 and T2 can be converted to each other
951 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
952 can only be converted with -flax-vector-conversions yet that is not
953 in effect, emit a note telling the user about that option if such
954 a note has not previously been emitted. */
956 vector_types_convertible_p (const_tree t1
, const_tree t2
, bool emit_lax_note
)
958 static bool emitted_lax_note
= false;
959 bool convertible_lax
;
961 if ((TYPE_VECTOR_OPAQUE (t1
) || TYPE_VECTOR_OPAQUE (t2
))
962 && tree_int_cst_equal (TYPE_SIZE (t1
), TYPE_SIZE (t2
)))
966 (tree_int_cst_equal (TYPE_SIZE (t1
), TYPE_SIZE (t2
))
967 && (TREE_CODE (TREE_TYPE (t1
)) != REAL_TYPE
968 || known_eq (TYPE_VECTOR_SUBPARTS (t1
),
969 TYPE_VECTOR_SUBPARTS (t2
)))
970 && (INTEGRAL_TYPE_P (TREE_TYPE (t1
))
971 == INTEGRAL_TYPE_P (TREE_TYPE (t2
))));
973 if (!convertible_lax
|| flag_lax_vector_conversions
)
974 return convertible_lax
;
976 if (known_eq (TYPE_VECTOR_SUBPARTS (t1
), TYPE_VECTOR_SUBPARTS (t2
))
977 && lang_hooks
.types_compatible_p (TREE_TYPE (t1
), TREE_TYPE (t2
)))
980 if (emit_lax_note
&& !emitted_lax_note
)
982 emitted_lax_note
= true;
983 inform (input_location
, "use %<-flax-vector-conversions%> to permit "
984 "conversions between vectors with differing "
985 "element types or numbers of subparts");
991 /* Build a VEC_PERM_EXPR if V0, V1 and MASK are not error_mark_nodes
992 and have vector types, V0 has the same type as V1, and the number of
993 elements of V0, V1, MASK is the same.
995 In case V1 is a NULL_TREE it is assumed that __builtin_shuffle was
996 called with two arguments. In this case implementation passes the
997 first argument twice in order to share the same tree code. This fact
998 could enable the mask-values being twice the vector length. This is
999 an implementation accident and this semantics is not guaranteed to
1002 c_build_vec_perm_expr (location_t loc
, tree v0
, tree v1
, tree mask
,
1007 bool maybe_const
= false;
1008 bool two_arguments
= false;
1010 if (v1
== NULL_TREE
)
1012 two_arguments
= true;
1016 if (v0
== error_mark_node
|| v1
== error_mark_node
1017 || mask
== error_mark_node
)
1018 return error_mark_node
;
1020 if (!gnu_vector_type_p (TREE_TYPE (mask
))
1021 || !VECTOR_INTEGER_TYPE_P (TREE_TYPE (mask
)))
1024 error_at (loc
, "%<__builtin_shuffle%> last argument must "
1025 "be an integer vector");
1026 return error_mark_node
;
1029 if (!gnu_vector_type_p (TREE_TYPE (v0
))
1030 || !gnu_vector_type_p (TREE_TYPE (v1
)))
1033 error_at (loc
, "%<__builtin_shuffle%> arguments must be vectors");
1034 return error_mark_node
;
1037 if (TYPE_MAIN_VARIANT (TREE_TYPE (v0
)) != TYPE_MAIN_VARIANT (TREE_TYPE (v1
)))
1040 error_at (loc
, "%<__builtin_shuffle%> argument vectors must be of "
1042 return error_mark_node
;
1045 if (maybe_ne (TYPE_VECTOR_SUBPARTS (TREE_TYPE (v0
)),
1046 TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask
)))
1047 && maybe_ne (TYPE_VECTOR_SUBPARTS (TREE_TYPE (v1
)),
1048 TYPE_VECTOR_SUBPARTS (TREE_TYPE (mask
))))
1051 error_at (loc
, "%<__builtin_shuffle%> number of elements of the "
1052 "argument vector(s) and the mask vector should "
1054 return error_mark_node
;
1057 if (GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (v0
))))
1058 != GET_MODE_BITSIZE (SCALAR_TYPE_MODE (TREE_TYPE (TREE_TYPE (mask
)))))
1061 error_at (loc
, "%<__builtin_shuffle%> argument vector(s) inner type "
1062 "must have the same size as inner type of the mask");
1063 return error_mark_node
;
1066 if (!c_dialect_cxx ())
1068 /* Avoid C_MAYBE_CONST_EXPRs inside VEC_PERM_EXPR. */
1069 v0
= c_fully_fold (v0
, false, &maybe_const
);
1070 wrap
&= maybe_const
;
1073 v1
= v0
= save_expr (v0
);
1076 v1
= c_fully_fold (v1
, false, &maybe_const
);
1077 wrap
&= maybe_const
;
1080 mask
= c_fully_fold (mask
, false, &maybe_const
);
1081 wrap
&= maybe_const
;
1083 else if (two_arguments
)
1084 v1
= v0
= save_expr (v0
);
1086 ret
= build3_loc (loc
, VEC_PERM_EXPR
, TREE_TYPE (v0
), v0
, v1
, mask
);
1088 if (!c_dialect_cxx () && !wrap
)
1089 ret
= c_wrap_maybe_const (ret
, true);
1094 /* Build a VEC_PERM_EXPR if V0, V1 are not error_mark_nodes
1095 and have vector types, V0 has the same element type as V1, and the
1096 number of elements the result is that of MASK. */
1098 c_build_shufflevector (location_t loc
, tree v0
, tree v1
,
1099 const vec
<tree
> &mask
, bool complain
)
1103 bool maybe_const
= false;
1105 if (v0
== error_mark_node
|| v1
== error_mark_node
)
1106 return error_mark_node
;
1108 if (!gnu_vector_type_p (TREE_TYPE (v0
))
1109 || !gnu_vector_type_p (TREE_TYPE (v1
)))
1112 error_at (loc
, "%<__builtin_shufflevector%> arguments must be vectors");
1113 return error_mark_node
;
1116 /* ??? In principle one could select a constant part of a variable size
1117 vector but things get a bit awkward with trying to support this here. */
1118 unsigned HOST_WIDE_INT v0n
, v1n
;
1119 if (!TYPE_VECTOR_SUBPARTS (TREE_TYPE (v0
)).is_constant (&v0n
)
1120 || !TYPE_VECTOR_SUBPARTS (TREE_TYPE (v1
)).is_constant (&v1n
))
1123 error_at (loc
, "%<__builtin_shufflevector%> arguments must be constant"
1125 return error_mark_node
;
1128 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (v0
)))
1129 != TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (v1
))))
1132 error_at (loc
, "%<__builtin_shufflevector%> argument vectors must "
1133 "have the same element type");
1134 return error_mark_node
;
1137 if (!pow2p_hwi (mask
.length ()))
1140 error_at (loc
, "%<__builtin_shufflevector%> must specify a result "
1141 "with a power of two number of elements");
1142 return error_mark_node
;
1145 if (!c_dialect_cxx ())
1147 /* Avoid C_MAYBE_CONST_EXPRs inside VEC_PERM_EXPR. */
1148 v0
= c_fully_fold (v0
, false, &maybe_const
);
1149 wrap
&= maybe_const
;
1151 v1
= c_fully_fold (v1
, false, &maybe_const
);
1152 wrap
&= maybe_const
;
1155 unsigned HOST_WIDE_INT maskl
= MAX (mask
.length (), MAX (v0n
, v1n
));
1156 unsigned HOST_WIDE_INT pad
= (v0n
< maskl
? maskl
- v0n
: 0);
1157 vec_perm_builder
sel (maskl
, maskl
, 1);
1159 for (i
= 0; i
< mask
.length (); ++i
)
1162 if (!tree_fits_shwi_p (idx
))
1165 error_at (loc
, "invalid element index %qE to "
1166 "%<__builtin_shufflevector%>", idx
);
1167 return error_mark_node
;
1169 HOST_WIDE_INT iidx
= tree_to_shwi (idx
);
1172 && (unsigned HOST_WIDE_INT
) iidx
>= v0n
+ v1n
))
1175 error_at (loc
, "invalid element index %qE to "
1176 "%<__builtin_shufflevector%>", idx
);
1177 return error_mark_node
;
1179 /* ??? Our VEC_PERM_EXPR does not allow for -1 yet. */
1182 /* ??? Our VEC_PERM_EXPR does not allow different sized inputs,
1183 so pad out a smaller v0. */
1184 else if ((unsigned HOST_WIDE_INT
) iidx
>= v0n
)
1186 sel
.quick_push (iidx
);
1188 /* ??? VEC_PERM_EXPR does not support a result that is smaller than
1189 the inputs, so we have to pad id out. */
1190 for (; i
< maskl
; ++i
)
1193 vec_perm_indices
indices (sel
, 2, maskl
);
1195 tree ret_type
= build_vector_type (TREE_TYPE (TREE_TYPE (v0
)), maskl
);
1196 tree mask_type
= build_vector_type (build_nonstandard_integer_type
1197 (TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (ret_type
))), 1),
1199 /* Pad out arguments to the common vector size. */
1202 constructor_elt elt
= { NULL_TREE
, build_zero_cst (TREE_TYPE (v0
)) };
1203 v0
= build_constructor_single (ret_type
, NULL_TREE
, v0
);
1204 for (i
= 1; i
< maskl
/ v0n
; ++i
)
1205 vec_safe_push (CONSTRUCTOR_ELTS (v0
), elt
);
1209 constructor_elt elt
= { NULL_TREE
, build_zero_cst (TREE_TYPE (v1
)) };
1210 v1
= build_constructor_single (ret_type
, NULL_TREE
, v1
);
1211 for (i
= 1; i
< maskl
/ v1n
; ++i
)
1212 vec_safe_push (CONSTRUCTOR_ELTS (v1
), elt
);
1214 ret
= build3_loc (loc
, VEC_PERM_EXPR
, ret_type
, v0
, v1
,
1215 vec_perm_indices_to_tree (mask_type
, indices
));
1216 /* Get the lowpart we are interested in. */
1217 if (mask
.length () < maskl
)
1219 tree lpartt
= build_vector_type (TREE_TYPE (ret_type
), mask
.length ());
1220 ret
= build3_loc (loc
, BIT_FIELD_REF
,
1221 lpartt
, ret
, TYPE_SIZE (lpartt
), bitsize_zero_node
);
1222 /* Wrap the lowpart operation in a TARGET_EXPR so it gets a separate
1223 temporary during gimplification. See PR101530 for cases where
1224 we'd otherwise end up with non-toplevel BIT_FIELD_REFs. */
1225 tree tem
= create_tmp_var_raw (lpartt
);
1226 DECL_CONTEXT (tem
) = current_function_decl
;
1227 ret
= build4 (TARGET_EXPR
, lpartt
, tem
, ret
, NULL_TREE
, NULL_TREE
);
1228 TREE_SIDE_EFFECTS (ret
) = 1;
1231 if (!c_dialect_cxx () && !wrap
)
1232 ret
= c_wrap_maybe_const (ret
, true);
1237 /* Build a VEC_CONVERT ifn for __builtin_convertvector builtin. */
1240 c_build_vec_convert (location_t loc1
, tree expr
, location_t loc2
, tree type
,
1243 if (error_operand_p (type
))
1244 return error_mark_node
;
1245 if (error_operand_p (expr
))
1246 return error_mark_node
;
1248 if (!gnu_vector_type_p (TREE_TYPE (expr
))
1249 || (!VECTOR_INTEGER_TYPE_P (TREE_TYPE (expr
))
1250 && !VECTOR_FLOAT_TYPE_P (TREE_TYPE (expr
))))
1253 error_at (loc1
, "%<__builtin_convertvector%> first argument must "
1254 "be an integer or floating vector");
1255 return error_mark_node
;
1258 if (!gnu_vector_type_p (type
)
1259 || (!VECTOR_INTEGER_TYPE_P (type
) && !VECTOR_FLOAT_TYPE_P (type
)))
1262 error_at (loc2
, "%<__builtin_convertvector%> second argument must "
1263 "be an integer or floating vector type");
1264 return error_mark_node
;
1267 if (maybe_ne (TYPE_VECTOR_SUBPARTS (TREE_TYPE (expr
)),
1268 TYPE_VECTOR_SUBPARTS (type
)))
1271 error_at (loc1
, "%<__builtin_convertvector%> number of elements "
1272 "of the first argument vector and the second argument "
1273 "vector type should be the same");
1274 return error_mark_node
;
1277 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (expr
)))
1278 == TYPE_MAIN_VARIANT (TREE_TYPE (type
)))
1279 || (VECTOR_INTEGER_TYPE_P (TREE_TYPE (expr
))
1280 && VECTOR_INTEGER_TYPE_P (type
)
1281 && (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (expr
)))
1282 == TYPE_PRECISION (TREE_TYPE (type
)))))
1283 return build1_loc (loc1
, VIEW_CONVERT_EXPR
, type
, expr
);
1286 bool maybe_const
= false;
1288 if (!c_dialect_cxx ())
1290 /* Avoid C_MAYBE_CONST_EXPRs inside of VEC_CONVERT argument. */
1291 expr
= c_fully_fold (expr
, false, &maybe_const
);
1292 wrap
&= maybe_const
;
1295 ret
= build_call_expr_internal_loc (loc1
, IFN_VEC_CONVERT
, type
, 1, expr
);
1298 ret
= c_wrap_maybe_const (ret
, true);
1303 /* Like tree.cc:get_narrower, but retain conversion from C++0x scoped enum
1304 to integral type. */
1307 c_common_get_narrower (tree op
, int *unsignedp_ptr
)
1309 op
= get_narrower (op
, unsignedp_ptr
);
1311 if (TREE_CODE (TREE_TYPE (op
)) == ENUMERAL_TYPE
1312 && ENUM_IS_SCOPED (TREE_TYPE (op
)))
1314 /* C++0x scoped enumerations don't implicitly convert to integral
1315 type; if we stripped an explicit conversion to a larger type we
1316 need to replace it so common_type will still work. */
1317 tree type
= c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op
)),
1318 TYPE_UNSIGNED (TREE_TYPE (op
)));
1319 op
= fold_convert (type
, op
);
1324 /* This is a helper function of build_binary_op.
1326 For certain operations if both args were extended from the same
1327 smaller type, do the arithmetic in that type and then extend.
1329 BITWISE indicates a bitwise operation.
1330 For them, this optimization is safe only if
1331 both args are zero-extended or both are sign-extended.
1332 Otherwise, we might change the result.
1333 Eg, (short)-1 | (unsigned short)-1 is (int)-1
1334 but calculated in (unsigned short) it would be (unsigned short)-1.
1337 shorten_binary_op (tree result_type
, tree op0
, tree op1
, bool bitwise
)
1339 int unsigned0
, unsigned1
;
1344 /* Do not shorten vector operations. */
1345 if (VECTOR_TYPE_P (result_type
))
1348 /* Cast OP0 and OP1 to RESULT_TYPE. Doing so prevents
1349 excessive narrowing when we call get_narrower below. For
1350 example, suppose that OP0 is of unsigned int extended
1351 from signed char and that RESULT_TYPE is long long int.
1352 If we explicitly cast OP0 to RESULT_TYPE, OP0 would look
1355 (long long int) (unsigned int) signed_char
1357 which get_narrower would narrow down to
1359 (unsigned int) signed char
1361 If we do not cast OP0 first, get_narrower would return
1362 signed_char, which is inconsistent with the case of the
1364 op0
= convert (result_type
, op0
);
1365 op1
= convert (result_type
, op1
);
1367 arg0
= c_common_get_narrower (op0
, &unsigned0
);
1368 arg1
= c_common_get_narrower (op1
, &unsigned1
);
1370 /* UNS is 1 if the operation to be done is an unsigned one. */
1371 uns
= TYPE_UNSIGNED (result_type
);
1373 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
1374 but it *requires* conversion to FINAL_TYPE. */
1376 if ((TYPE_PRECISION (TREE_TYPE (op0
))
1377 == TYPE_PRECISION (TREE_TYPE (arg0
)))
1378 && TREE_TYPE (op0
) != result_type
)
1379 unsigned0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
1380 if ((TYPE_PRECISION (TREE_TYPE (op1
))
1381 == TYPE_PRECISION (TREE_TYPE (arg1
)))
1382 && TREE_TYPE (op1
) != result_type
)
1383 unsigned1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
1385 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
1387 /* For bitwise operations, signedness of nominal type
1388 does not matter. Consider only how operands were extended. */
1392 /* Note that in all three cases below we refrain from optimizing
1393 an unsigned operation on sign-extended args.
1394 That would not be valid. */
1396 /* Both args variable: if both extended in same way
1397 from same width, do it in that width.
1398 Do it unsigned if args were zero-extended. */
1399 if ((TYPE_PRECISION (TREE_TYPE (arg0
))
1400 < TYPE_PRECISION (result_type
))
1401 && (TYPE_PRECISION (TREE_TYPE (arg1
))
1402 == TYPE_PRECISION (TREE_TYPE (arg0
)))
1403 && unsigned0
== unsigned1
1404 && (unsigned0
|| !uns
))
1406 tree ctype
= common_type (TREE_TYPE (arg0
), TREE_TYPE (arg1
));
1407 if (ctype
!= error_mark_node
)
1408 return c_common_signed_or_unsigned_type (unsigned0
, ctype
);
1411 else if (TREE_CODE (arg0
) == INTEGER_CST
1412 && (unsigned1
|| !uns
)
1413 && (TYPE_PRECISION (TREE_TYPE (arg1
))
1414 < TYPE_PRECISION (result_type
))
1416 = c_common_signed_or_unsigned_type (unsigned1
,
1418 && !POINTER_TYPE_P (type
)
1419 && int_fits_type_p (arg0
, type
))
1422 else if (TREE_CODE (arg1
) == INTEGER_CST
1423 && (unsigned0
|| !uns
)
1424 && (TYPE_PRECISION (TREE_TYPE (arg0
))
1425 < TYPE_PRECISION (result_type
))
1427 = c_common_signed_or_unsigned_type (unsigned0
,
1429 && !POINTER_TYPE_P (type
)
1430 && int_fits_type_p (arg1
, type
))
1436 /* Returns true iff any integer value of type FROM_TYPE can be represented as
1437 real of type TO_TYPE. This is a helper function for unsafe_conversion_p. */
1440 int_safely_convertible_to_real_p (const_tree from_type
, const_tree to_type
)
1442 tree type_low_bound
= TYPE_MIN_VALUE (from_type
);
1443 tree type_high_bound
= TYPE_MAX_VALUE (from_type
);
1444 REAL_VALUE_TYPE real_low_bound
=
1445 real_value_from_int_cst (0, type_low_bound
);
1446 REAL_VALUE_TYPE real_high_bound
=
1447 real_value_from_int_cst (0, type_high_bound
);
1449 return exact_real_truncate (TYPE_MODE (to_type
), &real_low_bound
)
1450 && exact_real_truncate (TYPE_MODE (to_type
), &real_high_bound
);
1453 /* Checks if expression EXPR of complex/real/integer type cannot be converted
1454 to the complex/real/integer type TYPE. Function returns non-zero when:
1455 * EXPR is a constant which cannot be exactly converted to TYPE.
1456 * EXPR is not a constant and size of EXPR's type > than size of TYPE,
1457 for EXPR type and TYPE being both integers or both real, or both
1459 * EXPR is not a constant of complex type and TYPE is a real or
1461 * EXPR is not a constant of real type and TYPE is an integer.
1462 * EXPR is not a constant of integer type which cannot be
1463 exactly converted to real type.
1465 Function allows conversions between types of different signedness if
1466 CHECK_SIGN is false and can return SAFE_CONVERSION (zero) in that
1467 case. Function can return UNSAFE_SIGN if CHECK_SIGN is true.
1469 RESULT, when non-null is the result of the conversion. When constant
1470 it is included in the text of diagnostics.
1472 Function allows conversions from complex constants to non-complex types,
1473 provided that imaginary part is zero and real part can be safely converted
1476 enum conversion_safety
1477 unsafe_conversion_p (tree type
, tree expr
, tree result
, bool check_sign
)
1479 enum conversion_safety give_warning
= SAFE_CONVERSION
; /* is 0 or false */
1480 tree expr_type
= TREE_TYPE (expr
);
1482 expr
= fold_for_warn (expr
);
1484 if (TREE_CODE (expr
) == REAL_CST
|| TREE_CODE (expr
) == INTEGER_CST
)
1486 /* If type is complex, we are interested in compatibility with
1488 if (TREE_CODE (type
) == COMPLEX_TYPE
)
1489 type
= TREE_TYPE (type
);
1491 /* Warn for real constant that is not an exact integer converted
1493 if (SCALAR_FLOAT_TYPE_P (expr_type
)
1494 && (TREE_CODE (type
) == INTEGER_TYPE
1495 || TREE_CODE (type
) == BITINT_TYPE
))
1497 if (!real_isinteger (TREE_REAL_CST_PTR (expr
), TYPE_MODE (expr_type
)))
1498 give_warning
= UNSAFE_REAL
;
1500 /* Warn for an integer constant that does not fit into integer type. */
1501 else if ((TREE_CODE (expr_type
) == INTEGER_TYPE
1502 || TREE_CODE (expr_type
) == BITINT_TYPE
)
1503 && (TREE_CODE (type
) == INTEGER_TYPE
1504 || TREE_CODE (type
) == BITINT_TYPE
)
1505 && !int_fits_type_p (expr
, type
))
1507 if (TYPE_UNSIGNED (type
) && !TYPE_UNSIGNED (expr_type
)
1508 && tree_int_cst_sgn (expr
) < 0)
1511 give_warning
= UNSAFE_SIGN
;
1513 else if (!TYPE_UNSIGNED (type
) && TYPE_UNSIGNED (expr_type
))
1516 give_warning
= UNSAFE_SIGN
;
1519 give_warning
= UNSAFE_OTHER
;
1521 else if (SCALAR_FLOAT_TYPE_P (type
))
1523 /* Warn for an integer constant that does not fit into real type. */
1524 if (TREE_CODE (expr_type
) == INTEGER_TYPE
1525 || TREE_CODE (expr_type
) == BITINT_TYPE
)
1527 REAL_VALUE_TYPE a
= real_value_from_int_cst (0, expr
);
1528 if (!exact_real_truncate (TYPE_MODE (type
), &a
))
1529 give_warning
= UNSAFE_REAL
;
1531 /* Warn for a real constant that does not fit into a smaller
1533 else if (SCALAR_FLOAT_TYPE_P (expr_type
)
1534 && TYPE_PRECISION (type
) < TYPE_PRECISION (expr_type
))
1536 REAL_VALUE_TYPE a
= TREE_REAL_CST (expr
);
1537 if (!exact_real_truncate (TYPE_MODE (type
), &a
))
1538 give_warning
= UNSAFE_REAL
;
1543 else if (TREE_CODE (expr
) == COMPLEX_CST
)
1545 tree imag_part
= TREE_IMAGPART (expr
);
1546 /* Conversion from complex constant with zero imaginary part,
1547 perform check for conversion of real part. */
1548 if ((TREE_CODE (imag_part
) == REAL_CST
1549 && real_zerop (imag_part
))
1550 || (TREE_CODE (imag_part
) == INTEGER_CST
1551 && integer_zerop (imag_part
)))
1552 /* Note: in this branch we use recursive call to unsafe_conversion_p
1553 with different type of EXPR, but it is still safe, because when EXPR
1554 is a constant, it's type is not used in text of generated warnings
1555 (otherwise they could sound misleading). */
1556 return unsafe_conversion_p (type
, TREE_REALPART (expr
), result
,
1558 /* Conversion from complex constant with non-zero imaginary part. */
1561 /* Conversion to complex type.
1562 Perform checks for both real and imaginary parts. */
1563 if (TREE_CODE (type
) == COMPLEX_TYPE
)
1565 enum conversion_safety re_safety
=
1566 unsafe_conversion_p (type
, TREE_REALPART (expr
),
1567 result
, check_sign
);
1568 enum conversion_safety im_safety
=
1569 unsafe_conversion_p (type
, imag_part
, result
, check_sign
);
1571 /* Merge the results into appropriate single warning. */
1573 /* Note: this case includes SAFE_CONVERSION, i.e. success. */
1574 if (re_safety
== im_safety
)
1575 give_warning
= re_safety
;
1576 else if (!re_safety
&& im_safety
)
1577 give_warning
= im_safety
;
1578 else if (re_safety
&& !im_safety
)
1579 give_warning
= re_safety
;
1581 give_warning
= UNSAFE_OTHER
;
1583 /* Warn about conversion from complex to real or integer type. */
1585 give_warning
= UNSAFE_IMAGINARY
;
1589 /* Checks for remaining case: EXPR is not constant. */
1592 /* Warn for real types converted to integer types. */
1593 if (SCALAR_FLOAT_TYPE_P (expr_type
)
1594 && (TREE_CODE (type
) == INTEGER_TYPE
1595 || TREE_CODE (type
) == BITINT_TYPE
))
1596 give_warning
= UNSAFE_REAL
;
1598 else if ((TREE_CODE (expr_type
) == INTEGER_TYPE
1599 || TREE_CODE (expr_type
) == BITINT_TYPE
)
1600 && (TREE_CODE (type
) == INTEGER_TYPE
1601 || TREE_CODE (type
) == BITINT_TYPE
))
1603 /* Don't warn about unsigned char y = 0xff, x = (int) y; */
1604 expr
= get_unwidened (expr
, 0);
1605 expr_type
= TREE_TYPE (expr
);
1607 /* Don't warn for short y; short x = ((int)y & 0xff); */
1608 if (TREE_CODE (expr
) == BIT_AND_EXPR
1609 || TREE_CODE (expr
) == BIT_IOR_EXPR
1610 || TREE_CODE (expr
) == BIT_XOR_EXPR
)
1612 /* If both args were extended from a shortest type,
1613 use that type if that is safe. */
1614 expr_type
= shorten_binary_op (expr_type
,
1615 TREE_OPERAND (expr
, 0),
1616 TREE_OPERAND (expr
, 1),
1619 if (TREE_CODE (expr
) == BIT_AND_EXPR
)
1621 tree op0
= TREE_OPERAND (expr
, 0);
1622 tree op1
= TREE_OPERAND (expr
, 1);
1623 bool unsigned0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
1624 bool unsigned1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
1626 /* If one of the operands is a non-negative constant
1627 that fits in the target type, then the type of the
1628 other operand does not matter. */
1629 if ((TREE_CODE (op0
) == INTEGER_CST
1630 && int_fits_type_p (op0
, c_common_signed_type (type
))
1631 && int_fits_type_p (op0
, c_common_unsigned_type (type
)))
1632 || (TREE_CODE (op1
) == INTEGER_CST
1633 && int_fits_type_p (op1
, c_common_signed_type (type
))
1634 && int_fits_type_p (op1
,
1635 c_common_unsigned_type (type
))))
1636 return SAFE_CONVERSION
;
1637 /* If constant is unsigned and fits in the target
1638 type, then the result will also fit. */
1639 else if ((TREE_CODE (op0
) == INTEGER_CST
1641 && int_fits_type_p (op0
, type
))
1642 || (TREE_CODE (op1
) == INTEGER_CST
1644 && int_fits_type_p (op1
, type
)))
1645 return SAFE_CONVERSION
;
1648 /* Warn for integer types converted to smaller integer types. */
1649 if (TYPE_PRECISION (type
) < TYPE_PRECISION (expr_type
))
1650 give_warning
= UNSAFE_OTHER
;
1652 /* When they are the same width but different signedness,
1653 then the value may change. */
1654 else if (((TYPE_PRECISION (type
) == TYPE_PRECISION (expr_type
)
1655 && TYPE_UNSIGNED (expr_type
) != TYPE_UNSIGNED (type
))
1656 /* Even when converted to a bigger type, if the type is
1657 unsigned but expr is signed, then negative values
1659 || (TYPE_UNSIGNED (type
) && !TYPE_UNSIGNED (expr_type
)))
1661 give_warning
= UNSAFE_SIGN
;
1664 /* Warn for integer types converted to real types if and only if
1665 all the range of values of the integer type cannot be
1666 represented by the real type. */
1667 else if ((TREE_CODE (expr_type
) == INTEGER_TYPE
1668 || TREE_CODE (expr_type
) == BITINT_TYPE
)
1669 && SCALAR_FLOAT_TYPE_P (type
))
1671 /* Don't warn about char y = 0xff; float x = (int) y; */
1672 expr
= get_unwidened (expr
, 0);
1673 expr_type
= TREE_TYPE (expr
);
1675 if (!int_safely_convertible_to_real_p (expr_type
, type
))
1676 give_warning
= UNSAFE_OTHER
;
1679 /* Warn for real types converted to smaller real types. */
1680 else if (SCALAR_FLOAT_TYPE_P (expr_type
)
1681 && SCALAR_FLOAT_TYPE_P (type
)
1682 && TYPE_PRECISION (type
) < TYPE_PRECISION (expr_type
))
1683 give_warning
= UNSAFE_REAL
;
1685 /* Check conversion between two complex types. */
1686 else if (TREE_CODE (expr_type
) == COMPLEX_TYPE
1687 && TREE_CODE (type
) == COMPLEX_TYPE
)
1689 /* Extract underlying types (i.e., type of real and imaginary
1690 parts) of expr_type and type. */
1691 tree from_type
= TREE_TYPE (expr_type
);
1692 tree to_type
= TREE_TYPE (type
);
1694 /* Warn for real types converted to integer types. */
1695 if (SCALAR_FLOAT_TYPE_P (from_type
)
1696 && TREE_CODE (to_type
) == INTEGER_TYPE
)
1697 give_warning
= UNSAFE_REAL
;
1699 /* Warn for real types converted to smaller real types. */
1700 else if (SCALAR_FLOAT_TYPE_P (from_type
)
1701 && SCALAR_FLOAT_TYPE_P (to_type
)
1702 && TYPE_PRECISION (to_type
) < TYPE_PRECISION (from_type
))
1703 give_warning
= UNSAFE_REAL
;
1705 /* Check conversion for complex integer types. Here implementation
1706 is simpler than for real-domain integers because it does not
1707 involve sophisticated cases, such as bitmasks, casts, etc. */
1708 else if (TREE_CODE (from_type
) == INTEGER_TYPE
1709 && TREE_CODE (to_type
) == INTEGER_TYPE
)
1711 /* Warn for integer types converted to smaller integer types. */
1712 if (TYPE_PRECISION (to_type
) < TYPE_PRECISION (from_type
))
1713 give_warning
= UNSAFE_OTHER
;
1715 /* Check for different signedness, see case for real-domain
1716 integers (above) for a more detailed comment. */
1717 else if (((TYPE_PRECISION (to_type
) == TYPE_PRECISION (from_type
)
1718 && TYPE_UNSIGNED (to_type
) != TYPE_UNSIGNED (from_type
))
1719 || (TYPE_UNSIGNED (to_type
) && !TYPE_UNSIGNED (from_type
)))
1721 give_warning
= UNSAFE_SIGN
;
1723 else if (TREE_CODE (from_type
) == INTEGER_TYPE
1724 && SCALAR_FLOAT_TYPE_P (to_type
)
1725 && !int_safely_convertible_to_real_p (from_type
, to_type
))
1726 give_warning
= UNSAFE_OTHER
;
1729 /* Warn for complex types converted to real or integer types. */
1730 else if (TREE_CODE (expr_type
) == COMPLEX_TYPE
1731 && TREE_CODE (type
) != COMPLEX_TYPE
)
1732 give_warning
= UNSAFE_IMAGINARY
;
1735 return give_warning
;
1739 /* Convert EXPR to TYPE, warning about conversion problems with constants.
1740 Invoke this function on every expression that is converted implicitly,
1741 i.e. because of language rules and not because of an explicit cast.
1742 INIT_CONST is true if the conversion is for arithmetic types for a static
1743 initializer and folding must apply accordingly (discarding floating-point
1744 exceptions and assuming the default rounding mode is in effect). */
1747 convert_and_check (location_t loc
, tree type
, tree expr
, bool init_const
)
1750 tree expr_for_warning
;
1752 /* Convert from a value with possible excess precision rather than
1753 via the semantic type, but do not warn about values not fitting
1754 exactly in the semantic type. */
1755 if (TREE_CODE (expr
) == EXCESS_PRECISION_EXPR
)
1757 tree orig_type
= TREE_TYPE (expr
);
1758 expr
= TREE_OPERAND (expr
, 0);
1759 expr_for_warning
= (init_const
1760 ? convert_init (orig_type
, expr
)
1761 : convert (orig_type
, expr
));
1762 if (orig_type
== type
)
1763 return expr_for_warning
;
1766 expr_for_warning
= expr
;
1768 if (TREE_TYPE (expr
) == type
)
1771 result
= init_const
? convert_init (type
, expr
) : convert (type
, expr
);
1773 if (c_inhibit_evaluation_warnings
== 0
1774 && !TREE_OVERFLOW_P (expr
)
1775 && result
!= error_mark_node
)
1776 warnings_for_convert_and_check (loc
, type
, expr_for_warning
, result
);
1781 /* A node in a list that describes references to variables (EXPR), which are
1782 either read accesses if WRITER is zero, or write accesses, in which case
1783 WRITER is the parent of EXPR. */
1790 /* Used to implement a cache the results of a call to verify_tree. We only
1791 use this for SAVE_EXPRs. */
1794 struct tlist_cache
*next
;
1795 struct tlist
*cache_before_sp
;
1796 struct tlist
*cache_after_sp
;
1800 /* Obstack to use when allocating tlist structures, and corresponding
1802 static struct obstack tlist_obstack
;
1803 static char *tlist_firstobj
= 0;
1805 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
1807 static struct tlist
*warned_ids
;
1808 /* SAVE_EXPRs need special treatment. We process them only once and then
1809 cache the results. */
1810 static struct tlist_cache
*save_expr_cache
;
1812 static void add_tlist (struct tlist
**, struct tlist
*, tree
, int);
1813 static void merge_tlist (struct tlist
**, struct tlist
*, int);
1814 static void verify_tree (tree
, struct tlist
**, struct tlist
**, tree
);
1815 static bool warning_candidate_p (tree
);
1816 static bool candidate_equal_p (const_tree
, const_tree
);
1817 static void warn_for_collisions (struct tlist
*);
1818 static void warn_for_collisions_1 (tree
, tree
, struct tlist
*, int);
1819 static struct tlist
*new_tlist (struct tlist
*, tree
, tree
);
1821 /* Create a new struct tlist and fill in its fields. */
1822 static struct tlist
*
1823 new_tlist (struct tlist
*next
, tree t
, tree writer
)
1826 l
= XOBNEW (&tlist_obstack
, struct tlist
);
1833 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
1834 is nonnull, we ignore any node we find which has a writer equal to it. */
1837 add_tlist (struct tlist
**to
, struct tlist
*add
, tree exclude_writer
, int copy
)
1841 struct tlist
*next
= add
->next
;
1844 if (!exclude_writer
|| !candidate_equal_p (add
->writer
, exclude_writer
))
1845 *to
= copy
? new_tlist (*to
, add
->expr
, add
->writer
) : add
;
1850 /* Merge the nodes of ADD into TO. This merging process is done so that for
1851 each variable that already exists in TO, no new node is added; however if
1852 there is a write access recorded in ADD, and an occurrence on TO is only
1853 a read access, then the occurrence in TO will be modified to record the
1857 merge_tlist (struct tlist
**to
, struct tlist
*add
, int copy
)
1859 struct tlist
**end
= to
;
1862 end
= &(*end
)->next
;
1868 struct tlist
*next
= add
->next
;
1870 for (tmp2
= *to
; tmp2
; tmp2
= tmp2
->next
)
1871 if (candidate_equal_p (tmp2
->expr
, add
->expr
))
1875 tmp2
->writer
= add
->writer
;
1879 *end
= copy
? new_tlist (NULL
, add
->expr
, add
->writer
) : add
;
1880 end
= &(*end
)->next
;
1887 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
1888 references in list LIST conflict with it, excluding reads if ONLY writers
1892 warn_for_collisions_1 (tree written
, tree writer
, struct tlist
*list
,
1897 /* Avoid duplicate warnings. */
1898 for (tmp
= warned_ids
; tmp
; tmp
= tmp
->next
)
1899 if (candidate_equal_p (tmp
->expr
, written
))
1904 if (candidate_equal_p (list
->expr
, written
)
1905 && !candidate_equal_p (list
->writer
, writer
)
1906 && (!only_writes
|| list
->writer
))
1908 warned_ids
= new_tlist (warned_ids
, written
, NULL_TREE
);
1909 warning_at (EXPR_LOC_OR_LOC (writer
, input_location
),
1910 OPT_Wsequence_point
, "operation on %qE may be undefined",
1917 /* Given a list LIST of references to variables, find whether any of these
1918 can cause conflicts due to missing sequence points. */
1921 warn_for_collisions (struct tlist
*list
)
1925 for (tmp
= list
; tmp
; tmp
= tmp
->next
)
1928 warn_for_collisions_1 (tmp
->expr
, tmp
->writer
, list
, 0);
1932 /* Return nonzero if X is a tree that can be verified by the sequence point
1936 warning_candidate_p (tree x
)
1938 if (DECL_P (x
) && DECL_ARTIFICIAL (x
))
1941 if (TREE_CODE (x
) == BLOCK
)
1944 /* VOID_TYPE_P (TREE_TYPE (x)) is workaround for cp/tree.cc
1945 (lvalue_p) crash on TRY/CATCH. */
1946 if (TREE_TYPE (x
) == NULL_TREE
|| VOID_TYPE_P (TREE_TYPE (x
)))
1952 /* No point to track non-const calls, they will never satisfy
1954 if (TREE_CODE (x
) == CALL_EXPR
&& (call_expr_flags (x
) & ECF_CONST
) == 0)
1957 if (TREE_CODE (x
) == STRING_CST
)
1963 /* Return nonzero if X and Y appear to be the same candidate (or NULL) */
1965 candidate_equal_p (const_tree x
, const_tree y
)
1967 return (x
== y
) || (x
&& y
&& operand_equal_p (x
, y
, 0));
1970 /* Walk the tree X, and record accesses to variables. If X is written by the
1971 parent tree, WRITER is the parent.
1972 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
1973 expression or its only operand forces a sequence point, then everything up
1974 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
1976 Once we return, we will have emitted warnings if any subexpression before
1977 such a sequence point could be undefined. On a higher level, however, the
1978 sequence point may not be relevant, and we'll merge the two lists.
1980 Example: (b++, a) + b;
1981 The call that processes the COMPOUND_EXPR will store the increment of B
1982 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
1983 processes the PLUS_EXPR will need to merge the two lists so that
1984 eventually, all accesses end up on the same list (and we'll warn about the
1985 unordered subexpressions b++ and b.
1987 A note on merging. If we modify the former example so that our expression
1990 care must be taken not simply to add all three expressions into the final
1991 PNO_SP list. The function merge_tlist takes care of that by merging the
1992 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
1993 way, so that no more than one access to B is recorded. */
1996 verify_tree (tree x
, struct tlist
**pbefore_sp
, struct tlist
**pno_sp
,
1999 struct tlist
*tmp_before
, *tmp_nosp
, *tmp_list2
, *tmp_list3
;
2000 enum tree_code code
;
2001 enum tree_code_class cl
;
2004 /* X may be NULL if it is the operand of an empty statement expression
2009 code
= TREE_CODE (x
);
2010 cl
= TREE_CODE_CLASS (code
);
2012 if (warning_candidate_p (x
))
2013 *pno_sp
= new_tlist (*pno_sp
, x
, writer
);
2019 case PAREN_SIZEOF_EXPR
:
2023 case TRUTH_ANDIF_EXPR
:
2024 case TRUTH_ORIF_EXPR
:
2026 tmp_before
= tmp_nosp
= tmp_list2
= tmp_list3
= 0;
2027 verify_tree (TREE_OPERAND (x
, 0), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2028 warn_for_collisions (tmp_nosp
);
2029 merge_tlist (pbefore_sp
, tmp_before
, 0);
2030 merge_tlist (pbefore_sp
, tmp_nosp
, 0);
2031 verify_tree (TREE_OPERAND (x
, 1), &tmp_list3
, &tmp_list2
, NULL_TREE
);
2032 warn_for_collisions (tmp_list2
);
2033 merge_tlist (pbefore_sp
, tmp_list3
, 0);
2034 merge_tlist (pno_sp
, tmp_list2
, 0);
2038 tmp_before
= tmp_list2
= 0;
2039 verify_tree (TREE_OPERAND (x
, 0), &tmp_before
, &tmp_list2
, NULL_TREE
);
2040 warn_for_collisions (tmp_list2
);
2041 merge_tlist (pbefore_sp
, tmp_before
, 0);
2042 merge_tlist (pbefore_sp
, tmp_list2
, 0);
2044 tmp_list3
= tmp_nosp
= 0;
2045 verify_tree (TREE_OPERAND (x
, 1), &tmp_list3
, &tmp_nosp
, NULL_TREE
);
2046 warn_for_collisions (tmp_nosp
);
2047 merge_tlist (pbefore_sp
, tmp_list3
, 0);
2049 tmp_list3
= tmp_list2
= 0;
2050 verify_tree (TREE_OPERAND (x
, 2), &tmp_list3
, &tmp_list2
, NULL_TREE
);
2051 warn_for_collisions (tmp_list2
);
2052 merge_tlist (pbefore_sp
, tmp_list3
, 0);
2053 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
2054 two first, to avoid warning for (a ? b++ : b++). */
2055 merge_tlist (&tmp_nosp
, tmp_list2
, 0);
2056 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 0);
2059 case PREDECREMENT_EXPR
:
2060 case PREINCREMENT_EXPR
:
2061 case POSTDECREMENT_EXPR
:
2062 case POSTINCREMENT_EXPR
:
2063 verify_tree (TREE_OPERAND (x
, 0), pno_sp
, pno_sp
, x
);
2067 tmp_before
= tmp_nosp
= tmp_list3
= 0;
2068 verify_tree (TREE_OPERAND (x
, 1), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2069 verify_tree (TREE_OPERAND (x
, 0), &tmp_list3
, &tmp_list3
, x
);
2070 /* Expressions inside the LHS are not ordered wrt. the sequence points
2071 in the RHS. Example:
2073 Despite the fact that the modification of "a" is in the before_sp
2074 list (tmp_before), it conflicts with the use of "a" in the LHS.
2075 We can handle this by adding the contents of tmp_list3
2076 to those of tmp_before, and redoing the collision warnings for that
2078 add_tlist (&tmp_before
, tmp_list3
, x
, 1);
2079 warn_for_collisions (tmp_before
);
2080 /* Exclude the LHS itself here; we first have to merge it into the
2081 tmp_nosp list. This is done to avoid warning for "a = a"; if we
2082 didn't exclude the LHS, we'd get it twice, once as a read and once
2084 add_tlist (pno_sp
, tmp_list3
, x
, 0);
2085 warn_for_collisions_1 (TREE_OPERAND (x
, 0), x
, tmp_nosp
, 1);
2087 merge_tlist (pbefore_sp
, tmp_before
, 0);
2088 if (warning_candidate_p (TREE_OPERAND (x
, 0)))
2089 merge_tlist (&tmp_nosp
, new_tlist (NULL
, TREE_OPERAND (x
, 0), x
), 0);
2090 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 1);
2094 /* We need to warn about conflicts among arguments and conflicts between
2095 args and the function address. Side effects of the function address,
2096 however, are not ordered by the sequence point of the call. */
2098 call_expr_arg_iterator iter
;
2100 tmp_before
= tmp_nosp
= 0;
2101 verify_tree (CALL_EXPR_FN (x
), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2102 FOR_EACH_CALL_EXPR_ARG (arg
, iter
, x
)
2104 tmp_list2
= tmp_list3
= 0;
2105 verify_tree (arg
, &tmp_list2
, &tmp_list3
, NULL_TREE
);
2106 merge_tlist (&tmp_list3
, tmp_list2
, 0);
2107 add_tlist (&tmp_before
, tmp_list3
, NULL_TREE
, 0);
2109 add_tlist (&tmp_before
, tmp_nosp
, NULL_TREE
, 0);
2110 warn_for_collisions (tmp_before
);
2111 add_tlist (pbefore_sp
, tmp_before
, NULL_TREE
, 0);
2116 /* Scan all the list, e.g. indices of multi dimensional array. */
2119 tmp_before
= tmp_nosp
= 0;
2120 verify_tree (TREE_VALUE (x
), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2121 merge_tlist (&tmp_nosp
, tmp_before
, 0);
2122 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 0);
2129 struct tlist_cache
*t
;
2130 for (t
= save_expr_cache
; t
; t
= t
->next
)
2131 if (candidate_equal_p (t
->expr
, x
))
2136 t
= XOBNEW (&tlist_obstack
, struct tlist_cache
);
2137 t
->next
= save_expr_cache
;
2139 save_expr_cache
= t
;
2141 tmp_before
= tmp_nosp
= 0;
2142 verify_tree (TREE_OPERAND (x
, 0), &tmp_before
, &tmp_nosp
, NULL_TREE
);
2143 warn_for_collisions (tmp_nosp
);
2146 merge_tlist (&tmp_list3
, tmp_nosp
, 0);
2147 t
->cache_before_sp
= tmp_before
;
2148 t
->cache_after_sp
= tmp_list3
;
2150 merge_tlist (pbefore_sp
, t
->cache_before_sp
, 1);
2151 add_tlist (pno_sp
, t
->cache_after_sp
, NULL_TREE
, 1);
2156 x
= TREE_OPERAND (x
, 0);
2162 case VIEW_CONVERT_EXPR
:
2163 if (location_wrapper_p (x
))
2165 x
= TREE_OPERAND (x
, 0);
2173 if (cxx_dialect
>= cxx17
)
2174 goto sequenced_binary
;
2178 /* Treat as unary, the other operands aren't evaluated. */
2179 x
= TREE_OPERAND (x
, 0);
2185 /* For other expressions, simply recurse on their operands.
2186 Manual tail recursion for unary expressions.
2187 Other non-expressions need not be processed. */
2188 if (cl
== tcc_unary
)
2190 x
= TREE_OPERAND (x
, 0);
2194 else if (IS_EXPR_CODE_CLASS (cl
))
2197 int max
= TREE_OPERAND_LENGTH (x
);
2198 for (lp
= 0; lp
< max
; lp
++)
2200 tmp_before
= tmp_nosp
= 0;
2201 verify_tree (TREE_OPERAND (x
, lp
), &tmp_before
, &tmp_nosp
, 0);
2202 merge_tlist (&tmp_nosp
, tmp_before
, 0);
2203 add_tlist (pno_sp
, tmp_nosp
, NULL_TREE
, 0);
2210 static constexpr size_t verify_sequence_points_limit
= 1024;
2212 /* Called from verify_sequence_points via walk_tree. */
2215 verify_tree_lim_r (tree
*tp
, int *walk_subtrees
, void *data
)
2217 if (++*((size_t *) data
) > verify_sequence_points_limit
)
2218 return integer_zero_node
;
2226 /* Try to warn for undefined behavior in EXPR due to missing sequence
2230 verify_sequence_points (tree expr
)
2232 tlist
*before_sp
= nullptr, *after_sp
= nullptr;
2234 /* verify_tree is highly recursive, and merge_tlist is O(n^2),
2235 so we return early if the expression is too big. */
2237 if (walk_tree (&expr
, verify_tree_lim_r
, &n
, nullptr))
2240 warned_ids
= nullptr;
2241 save_expr_cache
= nullptr;
2242 if (!tlist_firstobj
)
2244 gcc_obstack_init (&tlist_obstack
);
2245 tlist_firstobj
= (char *) obstack_alloc (&tlist_obstack
, 0);
2248 verify_tree (expr
, &before_sp
, &after_sp
, NULL_TREE
);
2249 warn_for_collisions (after_sp
);
2250 obstack_free (&tlist_obstack
, tlist_firstobj
);
2253 /* Validate the expression after `case' and apply default promotions. */
2256 check_case_value (location_t loc
, tree value
)
2258 if (value
== NULL_TREE
)
2261 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
2262 && TREE_CODE (value
) == INTEGER_CST
)
2263 /* Promote char or short to int. */
2264 value
= perform_integral_promotions (value
);
2265 else if (value
!= error_mark_node
)
2267 error_at (loc
, "case label does not reduce to an integer constant");
2268 value
= error_mark_node
;
2271 constant_expression_warning (value
);
2276 /* Return an integer type with BITS bits of precision,
2277 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2280 c_common_type_for_size (unsigned int bits
, int unsignedp
)
2284 if (bits
== TYPE_PRECISION (integer_type_node
))
2285 return unsignedp
? unsigned_type_node
: integer_type_node
;
2287 if (bits
== TYPE_PRECISION (signed_char_type_node
))
2288 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2290 if (bits
== TYPE_PRECISION (short_integer_type_node
))
2291 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2293 if (bits
== TYPE_PRECISION (long_integer_type_node
))
2294 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2296 if (bits
== TYPE_PRECISION (long_long_integer_type_node
))
2297 return (unsignedp
? long_long_unsigned_type_node
2298 : long_long_integer_type_node
);
2300 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2301 if (int_n_enabled_p
[i
]
2302 && bits
== int_n_data
[i
].bitsize
)
2303 return (unsignedp
? int_n_trees
[i
].unsigned_type
2304 : int_n_trees
[i
].signed_type
);
2306 if (bits
== TYPE_PRECISION (widest_integer_literal_type_node
))
2307 return (unsignedp
? widest_unsigned_literal_type_node
2308 : widest_integer_literal_type_node
);
2310 if (bits
<= TYPE_PRECISION (intQI_type_node
))
2311 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2313 if (bits
<= TYPE_PRECISION (intHI_type_node
))
2314 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2316 if (bits
<= TYPE_PRECISION (intSI_type_node
))
2317 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2319 if (bits
<= TYPE_PRECISION (intDI_type_node
))
2320 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2322 if (bits
<= TYPE_PRECISION (widest_integer_literal_type_node
))
2323 return (unsignedp
? widest_unsigned_literal_type_node
2324 : widest_integer_literal_type_node
);
2329 /* Return a fixed-point type that has at least IBIT ibits and FBIT fbits
2330 that is unsigned if UNSIGNEDP is nonzero, otherwise signed;
2331 and saturating if SATP is nonzero, otherwise not saturating. */
2334 c_common_fixed_point_type_for_size (unsigned int ibit
, unsigned int fbit
,
2335 int unsignedp
, int satp
)
2337 enum mode_class mclass
;
2339 mclass
= unsignedp
? MODE_UFRACT
: MODE_FRACT
;
2341 mclass
= unsignedp
? MODE_UACCUM
: MODE_ACCUM
;
2343 opt_scalar_mode opt_mode
;
2345 FOR_EACH_MODE_IN_CLASS (opt_mode
, mclass
)
2347 mode
= opt_mode
.require ();
2348 if (GET_MODE_IBIT (mode
) >= ibit
&& GET_MODE_FBIT (mode
) >= fbit
)
2352 if (!opt_mode
.exists (&mode
) || !targetm
.scalar_mode_supported_p (mode
))
2354 sorry ("GCC cannot support operators with integer types and "
2355 "fixed-point types that have too many integral and "
2356 "fractional bits together");
2360 return c_common_type_for_mode (mode
, satp
);
2363 /* Used for communication between c_common_type_for_mode and
2364 c_register_builtin_type. */
2365 tree registered_builtin_types
;
2367 /* Return a data type that has machine mode MODE.
2368 If the mode is an integer,
2369 then UNSIGNEDP selects between signed and unsigned types.
2370 If the mode is a fixed-point mode,
2371 then UNSIGNEDP selects between saturating and nonsaturating types. */
2374 c_common_type_for_mode (machine_mode mode
, int unsignedp
)
2379 if (mode
== TYPE_MODE (integer_type_node
))
2380 return unsignedp
? unsigned_type_node
: integer_type_node
;
2382 if (mode
== TYPE_MODE (signed_char_type_node
))
2383 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2385 if (mode
== TYPE_MODE (short_integer_type_node
))
2386 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2388 if (mode
== TYPE_MODE (long_integer_type_node
))
2389 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2391 if (mode
== TYPE_MODE (long_long_integer_type_node
))
2392 return unsignedp
? long_long_unsigned_type_node
: long_long_integer_type_node
;
2394 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2395 if (int_n_enabled_p
[i
]
2396 && mode
== int_n_data
[i
].m
)
2397 return (unsignedp
? int_n_trees
[i
].unsigned_type
2398 : int_n_trees
[i
].signed_type
);
2401 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2404 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2407 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2410 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2412 #if HOST_BITS_PER_WIDE_INT >= 64
2413 if (mode
== TYPE_MODE (intTI_type_node
))
2414 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
2417 if (mode
== TYPE_MODE (float_type_node
))
2418 return float_type_node
;
2420 if (mode
== TYPE_MODE (double_type_node
))
2421 return double_type_node
;
2423 if (mode
== TYPE_MODE (long_double_type_node
))
2424 return long_double_type_node
;
2426 for (i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
2427 if (FLOATN_NX_TYPE_NODE (i
) != NULL_TREE
2428 && mode
== TYPE_MODE (FLOATN_NX_TYPE_NODE (i
)))
2429 return FLOATN_NX_TYPE_NODE (i
);
2431 if (mode
== TYPE_MODE (void_type_node
))
2432 return void_type_node
;
2434 if (mode
== TYPE_MODE (build_pointer_type (char_type_node
))
2435 || mode
== TYPE_MODE (build_pointer_type (integer_type_node
)))
2437 unsigned int precision
2438 = GET_MODE_PRECISION (as_a
<scalar_int_mode
> (mode
));
2440 ? make_unsigned_type (precision
)
2441 : make_signed_type (precision
));
2444 if (COMPLEX_MODE_P (mode
))
2446 machine_mode inner_mode
;
2449 if (mode
== TYPE_MODE (complex_float_type_node
))
2450 return complex_float_type_node
;
2451 if (mode
== TYPE_MODE (complex_double_type_node
))
2452 return complex_double_type_node
;
2453 if (mode
== TYPE_MODE (complex_long_double_type_node
))
2454 return complex_long_double_type_node
;
2456 for (i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
2457 if (COMPLEX_FLOATN_NX_TYPE_NODE (i
) != NULL_TREE
2458 && mode
== TYPE_MODE (COMPLEX_FLOATN_NX_TYPE_NODE (i
)))
2459 return COMPLEX_FLOATN_NX_TYPE_NODE (i
);
2461 if (mode
== TYPE_MODE (complex_integer_type_node
) && !unsignedp
)
2462 return complex_integer_type_node
;
2464 inner_mode
= GET_MODE_INNER (mode
);
2465 inner_type
= c_common_type_for_mode (inner_mode
, unsignedp
);
2466 if (inner_type
!= NULL_TREE
)
2467 return build_complex_type (inner_type
);
2469 else if (GET_MODE_CLASS (mode
) == MODE_VECTOR_BOOL
2470 && valid_vector_subparts_p (GET_MODE_NUNITS (mode
)))
2472 unsigned int elem_bits
= vector_element_size (GET_MODE_PRECISION (mode
),
2473 GET_MODE_NUNITS (mode
));
2474 tree bool_type
= build_nonstandard_boolean_type (elem_bits
);
2475 return build_vector_type_for_mode (bool_type
, mode
);
2477 else if (VECTOR_MODE_P (mode
)
2478 && valid_vector_subparts_p (GET_MODE_NUNITS (mode
)))
2480 machine_mode inner_mode
= GET_MODE_INNER (mode
);
2481 tree inner_type
= c_common_type_for_mode (inner_mode
, unsignedp
);
2482 if (inner_type
!= NULL_TREE
)
2483 return build_vector_type_for_mode (inner_type
, mode
);
2486 if (dfloat32_type_node
!= NULL_TREE
2487 && mode
== TYPE_MODE (dfloat32_type_node
))
2488 return dfloat32_type_node
;
2489 if (dfloat64_type_node
!= NULL_TREE
2490 && mode
== TYPE_MODE (dfloat64_type_node
))
2491 return dfloat64_type_node
;
2492 if (dfloat128_type_node
!= NULL_TREE
2493 && mode
== TYPE_MODE (dfloat128_type_node
))
2494 return dfloat128_type_node
;
2496 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode
))
2498 if (mode
== TYPE_MODE (short_fract_type_node
))
2499 return unsignedp
? sat_short_fract_type_node
: short_fract_type_node
;
2500 if (mode
== TYPE_MODE (fract_type_node
))
2501 return unsignedp
? sat_fract_type_node
: fract_type_node
;
2502 if (mode
== TYPE_MODE (long_fract_type_node
))
2503 return unsignedp
? sat_long_fract_type_node
: long_fract_type_node
;
2504 if (mode
== TYPE_MODE (long_long_fract_type_node
))
2505 return unsignedp
? sat_long_long_fract_type_node
2506 : long_long_fract_type_node
;
2508 if (mode
== TYPE_MODE (unsigned_short_fract_type_node
))
2509 return unsignedp
? sat_unsigned_short_fract_type_node
2510 : unsigned_short_fract_type_node
;
2511 if (mode
== TYPE_MODE (unsigned_fract_type_node
))
2512 return unsignedp
? sat_unsigned_fract_type_node
2513 : unsigned_fract_type_node
;
2514 if (mode
== TYPE_MODE (unsigned_long_fract_type_node
))
2515 return unsignedp
? sat_unsigned_long_fract_type_node
2516 : unsigned_long_fract_type_node
;
2517 if (mode
== TYPE_MODE (unsigned_long_long_fract_type_node
))
2518 return unsignedp
? sat_unsigned_long_long_fract_type_node
2519 : unsigned_long_long_fract_type_node
;
2521 if (mode
== TYPE_MODE (short_accum_type_node
))
2522 return unsignedp
? sat_short_accum_type_node
: short_accum_type_node
;
2523 if (mode
== TYPE_MODE (accum_type_node
))
2524 return unsignedp
? sat_accum_type_node
: accum_type_node
;
2525 if (mode
== TYPE_MODE (long_accum_type_node
))
2526 return unsignedp
? sat_long_accum_type_node
: long_accum_type_node
;
2527 if (mode
== TYPE_MODE (long_long_accum_type_node
))
2528 return unsignedp
? sat_long_long_accum_type_node
2529 : long_long_accum_type_node
;
2531 if (mode
== TYPE_MODE (unsigned_short_accum_type_node
))
2532 return unsignedp
? sat_unsigned_short_accum_type_node
2533 : unsigned_short_accum_type_node
;
2534 if (mode
== TYPE_MODE (unsigned_accum_type_node
))
2535 return unsignedp
? sat_unsigned_accum_type_node
2536 : unsigned_accum_type_node
;
2537 if (mode
== TYPE_MODE (unsigned_long_accum_type_node
))
2538 return unsignedp
? sat_unsigned_long_accum_type_node
2539 : unsigned_long_accum_type_node
;
2540 if (mode
== TYPE_MODE (unsigned_long_long_accum_type_node
))
2541 return unsignedp
? sat_unsigned_long_long_accum_type_node
2542 : unsigned_long_long_accum_type_node
;
2545 return unsignedp
? sat_qq_type_node
: qq_type_node
;
2547 return unsignedp
? sat_hq_type_node
: hq_type_node
;
2549 return unsignedp
? sat_sq_type_node
: sq_type_node
;
2551 return unsignedp
? sat_dq_type_node
: dq_type_node
;
2553 return unsignedp
? sat_tq_type_node
: tq_type_node
;
2555 if (mode
== UQQmode
)
2556 return unsignedp
? sat_uqq_type_node
: uqq_type_node
;
2557 if (mode
== UHQmode
)
2558 return unsignedp
? sat_uhq_type_node
: uhq_type_node
;
2559 if (mode
== USQmode
)
2560 return unsignedp
? sat_usq_type_node
: usq_type_node
;
2561 if (mode
== UDQmode
)
2562 return unsignedp
? sat_udq_type_node
: udq_type_node
;
2563 if (mode
== UTQmode
)
2564 return unsignedp
? sat_utq_type_node
: utq_type_node
;
2567 return unsignedp
? sat_ha_type_node
: ha_type_node
;
2569 return unsignedp
? sat_sa_type_node
: sa_type_node
;
2571 return unsignedp
? sat_da_type_node
: da_type_node
;
2573 return unsignedp
? sat_ta_type_node
: ta_type_node
;
2575 if (mode
== UHAmode
)
2576 return unsignedp
? sat_uha_type_node
: uha_type_node
;
2577 if (mode
== USAmode
)
2578 return unsignedp
? sat_usa_type_node
: usa_type_node
;
2579 if (mode
== UDAmode
)
2580 return unsignedp
? sat_uda_type_node
: uda_type_node
;
2581 if (mode
== UTAmode
)
2582 return unsignedp
? sat_uta_type_node
: uta_type_node
;
2585 for (t
= registered_builtin_types
; t
; t
= TREE_CHAIN (t
))
2587 tree type
= TREE_VALUE (t
);
2588 if (TYPE_MODE (type
) == mode
2589 && VECTOR_TYPE_P (type
) == VECTOR_MODE_P (mode
)
2590 && !!unsignedp
== !!TYPE_UNSIGNED (type
))
2597 c_common_unsigned_type (tree type
)
2599 return c_common_signed_or_unsigned_type (1, type
);
2602 /* Return a signed type the same as TYPE in other respects. */
2605 c_common_signed_type (tree type
)
2607 return c_common_signed_or_unsigned_type (0, type
);
2610 /* Return a type the same as TYPE except unsigned or
2611 signed according to UNSIGNEDP. */
2614 c_common_signed_or_unsigned_type (int unsignedp
, tree type
)
2619 /* This block of code emulates the behavior of the old
2620 c_common_unsigned_type. In particular, it returns
2621 long_unsigned_type_node if passed a long, even when a int would
2622 have the same size. This is necessary for warnings to work
2623 correctly in archs where sizeof(int) == sizeof(long) */
2625 type1
= TYPE_MAIN_VARIANT (type
);
2626 if (type1
== signed_char_type_node
|| type1
== char_type_node
|| type1
== unsigned_char_type_node
)
2627 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2628 if (type1
== integer_type_node
|| type1
== unsigned_type_node
)
2629 return unsignedp
? unsigned_type_node
: integer_type_node
;
2630 if (type1
== short_integer_type_node
|| type1
== short_unsigned_type_node
)
2631 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2632 if (type1
== long_integer_type_node
|| type1
== long_unsigned_type_node
)
2633 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2634 if (type1
== long_long_integer_type_node
|| type1
== long_long_unsigned_type_node
)
2635 return unsignedp
? long_long_unsigned_type_node
: long_long_integer_type_node
;
2637 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2638 if (int_n_enabled_p
[i
]
2639 && (type1
== int_n_trees
[i
].unsigned_type
2640 || type1
== int_n_trees
[i
].signed_type
))
2641 return (unsignedp
? int_n_trees
[i
].unsigned_type
2642 : int_n_trees
[i
].signed_type
);
2644 #if HOST_BITS_PER_WIDE_INT >= 64
2645 if (type1
== intTI_type_node
|| type1
== unsigned_intTI_type_node
)
2646 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
2648 if (type1
== intDI_type_node
|| type1
== unsigned_intDI_type_node
)
2649 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2650 if (type1
== intSI_type_node
|| type1
== unsigned_intSI_type_node
)
2651 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2652 if (type1
== intHI_type_node
|| type1
== unsigned_intHI_type_node
)
2653 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2654 if (type1
== intQI_type_node
|| type1
== unsigned_intQI_type_node
)
2655 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2657 #define C_COMMON_FIXED_TYPES(NAME) \
2658 if (type1 == short_ ## NAME ## _type_node \
2659 || type1 == unsigned_short_ ## NAME ## _type_node) \
2660 return unsignedp ? unsigned_short_ ## NAME ## _type_node \
2661 : short_ ## NAME ## _type_node; \
2662 if (type1 == NAME ## _type_node \
2663 || type1 == unsigned_ ## NAME ## _type_node) \
2664 return unsignedp ? unsigned_ ## NAME ## _type_node \
2665 : NAME ## _type_node; \
2666 if (type1 == long_ ## NAME ## _type_node \
2667 || type1 == unsigned_long_ ## NAME ## _type_node) \
2668 return unsignedp ? unsigned_long_ ## NAME ## _type_node \
2669 : long_ ## NAME ## _type_node; \
2670 if (type1 == long_long_ ## NAME ## _type_node \
2671 || type1 == unsigned_long_long_ ## NAME ## _type_node) \
2672 return unsignedp ? unsigned_long_long_ ## NAME ## _type_node \
2673 : long_long_ ## NAME ## _type_node;
2675 #define C_COMMON_FIXED_MODE_TYPES(NAME) \
2676 if (type1 == NAME ## _type_node \
2677 || type1 == u ## NAME ## _type_node) \
2678 return unsignedp ? u ## NAME ## _type_node \
2679 : NAME ## _type_node;
2681 #define C_COMMON_FIXED_TYPES_SAT(NAME) \
2682 if (type1 == sat_ ## short_ ## NAME ## _type_node \
2683 || type1 == sat_ ## unsigned_short_ ## NAME ## _type_node) \
2684 return unsignedp ? sat_ ## unsigned_short_ ## NAME ## _type_node \
2685 : sat_ ## short_ ## NAME ## _type_node; \
2686 if (type1 == sat_ ## NAME ## _type_node \
2687 || type1 == sat_ ## unsigned_ ## NAME ## _type_node) \
2688 return unsignedp ? sat_ ## unsigned_ ## NAME ## _type_node \
2689 : sat_ ## NAME ## _type_node; \
2690 if (type1 == sat_ ## long_ ## NAME ## _type_node \
2691 || type1 == sat_ ## unsigned_long_ ## NAME ## _type_node) \
2692 return unsignedp ? sat_ ## unsigned_long_ ## NAME ## _type_node \
2693 : sat_ ## long_ ## NAME ## _type_node; \
2694 if (type1 == sat_ ## long_long_ ## NAME ## _type_node \
2695 || type1 == sat_ ## unsigned_long_long_ ## NAME ## _type_node) \
2696 return unsignedp ? sat_ ## unsigned_long_long_ ## NAME ## _type_node \
2697 : sat_ ## long_long_ ## NAME ## _type_node;
2699 #define C_COMMON_FIXED_MODE_TYPES_SAT(NAME) \
2700 if (type1 == sat_ ## NAME ## _type_node \
2701 || type1 == sat_ ## u ## NAME ## _type_node) \
2702 return unsignedp ? sat_ ## u ## NAME ## _type_node \
2703 : sat_ ## NAME ## _type_node;
2705 C_COMMON_FIXED_TYPES (fract
);
2706 C_COMMON_FIXED_TYPES_SAT (fract
);
2707 C_COMMON_FIXED_TYPES (accum
);
2708 C_COMMON_FIXED_TYPES_SAT (accum
);
2710 C_COMMON_FIXED_MODE_TYPES (qq
);
2711 C_COMMON_FIXED_MODE_TYPES (hq
);
2712 C_COMMON_FIXED_MODE_TYPES (sq
);
2713 C_COMMON_FIXED_MODE_TYPES (dq
);
2714 C_COMMON_FIXED_MODE_TYPES (tq
);
2715 C_COMMON_FIXED_MODE_TYPES_SAT (qq
);
2716 C_COMMON_FIXED_MODE_TYPES_SAT (hq
);
2717 C_COMMON_FIXED_MODE_TYPES_SAT (sq
);
2718 C_COMMON_FIXED_MODE_TYPES_SAT (dq
);
2719 C_COMMON_FIXED_MODE_TYPES_SAT (tq
);
2720 C_COMMON_FIXED_MODE_TYPES (ha
);
2721 C_COMMON_FIXED_MODE_TYPES (sa
);
2722 C_COMMON_FIXED_MODE_TYPES (da
);
2723 C_COMMON_FIXED_MODE_TYPES (ta
);
2724 C_COMMON_FIXED_MODE_TYPES_SAT (ha
);
2725 C_COMMON_FIXED_MODE_TYPES_SAT (sa
);
2726 C_COMMON_FIXED_MODE_TYPES_SAT (da
);
2727 C_COMMON_FIXED_MODE_TYPES_SAT (ta
);
2729 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2730 the precision; they have precision set to match their range, but
2731 may use a wider mode to match an ABI. If we change modes, we may
2732 wind up with bad conversions. For INTEGER_TYPEs in C, must check
2733 the precision as well, so as to yield correct results for
2734 bit-field types. C++ does not have these separate bit-field
2735 types, and producing a signed or unsigned variant of an
2736 ENUMERAL_TYPE may cause other problems as well. */
2738 if (!INTEGRAL_TYPE_P (type
)
2739 || TYPE_UNSIGNED (type
) == unsignedp
)
2742 if (TREE_CODE (type
) == BITINT_TYPE
2743 /* signed _BitInt(1) is invalid, avoid creating that. */
2744 && (unsignedp
|| TYPE_PRECISION (type
) > 1))
2745 return build_bitint_type (TYPE_PRECISION (type
), unsignedp
);
2747 #define TYPE_OK(node) \
2748 (TYPE_MODE (type) == TYPE_MODE (node) \
2749 && TYPE_PRECISION (type) == TYPE_PRECISION (node))
2750 if (TYPE_OK (signed_char_type_node
))
2751 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2752 if (TYPE_OK (integer_type_node
))
2753 return unsignedp
? unsigned_type_node
: integer_type_node
;
2754 if (TYPE_OK (short_integer_type_node
))
2755 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2756 if (TYPE_OK (long_integer_type_node
))
2757 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2758 if (TYPE_OK (long_long_integer_type_node
))
2759 return (unsignedp
? long_long_unsigned_type_node
2760 : long_long_integer_type_node
);
2762 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2763 if (int_n_enabled_p
[i
]
2764 && TYPE_MODE (type
) == int_n_data
[i
].m
2765 && TYPE_PRECISION (type
) == int_n_data
[i
].bitsize
)
2766 return (unsignedp
? int_n_trees
[i
].unsigned_type
2767 : int_n_trees
[i
].signed_type
);
2769 #if HOST_BITS_PER_WIDE_INT >= 64
2770 if (TYPE_OK (intTI_type_node
))
2771 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
2773 if (TYPE_OK (intDI_type_node
))
2774 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2775 if (TYPE_OK (intSI_type_node
))
2776 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2777 if (TYPE_OK (intHI_type_node
))
2778 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2779 if (TYPE_OK (intQI_type_node
))
2780 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2783 return build_nonstandard_integer_type (TYPE_PRECISION (type
), unsignedp
);
2786 /* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
2789 c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width
, int unsignedp
)
2793 /* Extended integer types of the same width as a standard type have
2794 lesser rank, so those of the same width as int promote to int or
2795 unsigned int and are valid for printf formats expecting int or
2796 unsigned int. To avoid such special cases, avoid creating
2797 extended integer types for bit-fields if a standard integer type
2799 if (width
== TYPE_PRECISION (integer_type_node
))
2800 return unsignedp
? unsigned_type_node
: integer_type_node
;
2801 if (width
== TYPE_PRECISION (signed_char_type_node
))
2802 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2803 if (width
== TYPE_PRECISION (short_integer_type_node
))
2804 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2805 if (width
== TYPE_PRECISION (long_integer_type_node
))
2806 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2807 if (width
== TYPE_PRECISION (long_long_integer_type_node
))
2808 return (unsignedp
? long_long_unsigned_type_node
2809 : long_long_integer_type_node
);
2810 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
2811 if (int_n_enabled_p
[i
]
2812 && width
== int_n_data
[i
].bitsize
)
2813 return (unsignedp
? int_n_trees
[i
].unsigned_type
2814 : int_n_trees
[i
].signed_type
);
2815 return build_nonstandard_integer_type (width
, unsignedp
);
2818 /* The C version of the register_builtin_type langhook. */
2821 c_register_builtin_type (tree type
, const char* name
)
2825 decl
= build_decl (UNKNOWN_LOCATION
,
2826 TYPE_DECL
, get_identifier (name
), type
);
2827 DECL_ARTIFICIAL (decl
) = 1;
2828 if (!TYPE_NAME (type
))
2829 TYPE_NAME (type
) = decl
;
2830 lang_hooks
.decls
.pushdecl (decl
);
2832 registered_builtin_types
= tree_cons (0, type
, registered_builtin_types
);
2835 /* Print an error message for invalid operands to arith operation
2836 CODE with TYPE0 for operand 0, and TYPE1 for operand 1.
2837 RICHLOC is a rich location for the message, containing either
2838 three separate locations for each of the operator and operands
2843 (C FE), or one location ranging over all over them
2851 binary_op_error (rich_location
*richloc
, enum tree_code code
,
2852 tree type0
, tree type1
)
2859 opname
= "+"; break;
2861 opname
= "-"; break;
2863 opname
= "*"; break;
2865 opname
= "max"; break;
2867 opname
= "min"; break;
2869 opname
= "=="; break;
2871 opname
= "!="; break;
2873 opname
= "<="; break;
2875 opname
= ">="; break;
2877 opname
= "<"; break;
2879 opname
= ">"; break;
2881 opname
= "<<"; break;
2883 opname
= ">>"; break;
2884 case TRUNC_MOD_EXPR
:
2885 case FLOOR_MOD_EXPR
:
2886 opname
= "%"; break;
2887 case TRUNC_DIV_EXPR
:
2888 case FLOOR_DIV_EXPR
:
2889 opname
= "/"; break;
2891 opname
= "&"; break;
2893 opname
= "|"; break;
2894 case TRUTH_ANDIF_EXPR
:
2895 opname
= "&&"; break;
2896 case TRUTH_ORIF_EXPR
:
2897 opname
= "||"; break;
2899 opname
= "^"; break;
2904 "invalid operands to binary %s (have %qT and %qT)",
2905 opname
, type0
, type1
);
2908 /* Given an expression as a tree, return its original type. Do this
2909 by stripping any conversion that preserves the sign and precision. */
2911 expr_original_type (tree expr
)
2913 STRIP_SIGN_NOPS (expr
);
2914 return TREE_TYPE (expr
);
2917 /* Subroutine of build_binary_op, used for comparison operations.
2918 See if the operands have both been converted from subword integer types
2919 and, if so, perhaps change them both back to their original type.
2920 This function is also responsible for converting the two operands
2921 to the proper common type for comparison.
2923 The arguments of this function are all pointers to local variables
2924 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
2925 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
2927 LOC is the location of the comparison.
2929 If this function returns non-NULL_TREE, it means that the comparison has
2930 a constant value. What this function returns is an expression for
2934 shorten_compare (location_t loc
, tree
*op0_ptr
, tree
*op1_ptr
,
2935 tree
*restype_ptr
, enum tree_code
*rescode_ptr
)
2938 tree op0
= *op0_ptr
;
2939 tree op1
= *op1_ptr
;
2940 int unsignedp0
, unsignedp1
;
2942 tree primop0
, primop1
;
2943 enum tree_code code
= *rescode_ptr
;
2945 /* Throw away any conversions to wider types
2946 already present in the operands. */
2948 primop0
= c_common_get_narrower (op0
, &unsignedp0
);
2949 primop1
= c_common_get_narrower (op1
, &unsignedp1
);
2951 /* If primopN is first sign-extended from primopN's precision to opN's
2952 precision, then zero-extended from opN's precision to
2953 *restype_ptr precision, shortenings might be invalid. */
2954 if (TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (TREE_TYPE (op0
))
2955 && TYPE_PRECISION (TREE_TYPE (op0
)) < TYPE_PRECISION (*restype_ptr
)
2957 && TYPE_UNSIGNED (TREE_TYPE (op0
)))
2959 if (TYPE_PRECISION (TREE_TYPE (primop1
)) < TYPE_PRECISION (TREE_TYPE (op1
))
2960 && TYPE_PRECISION (TREE_TYPE (op1
)) < TYPE_PRECISION (*restype_ptr
)
2962 && TYPE_UNSIGNED (TREE_TYPE (op1
)))
2965 /* Handle the case that OP0 does not *contain* a conversion
2966 but it *requires* conversion to FINAL_TYPE. */
2968 if (op0
== primop0
&& TREE_TYPE (op0
) != *restype_ptr
)
2969 unsignedp0
= TYPE_UNSIGNED (TREE_TYPE (op0
));
2970 if (op1
== primop1
&& TREE_TYPE (op1
) != *restype_ptr
)
2971 unsignedp1
= TYPE_UNSIGNED (TREE_TYPE (op1
));
2973 /* If one of the operands must be floated, we cannot optimize. */
2974 real1
= SCALAR_FLOAT_TYPE_P (TREE_TYPE (primop0
));
2975 real2
= SCALAR_FLOAT_TYPE_P (TREE_TYPE (primop1
));
2977 /* If first arg is constant, swap the args (changing operation
2978 so value is preserved), for canonicalization. Don't do this if
2979 the second arg is 0. */
2981 if (TREE_CONSTANT (primop0
)
2982 && !integer_zerop (primop1
) && !real_zerop (primop1
)
2983 && !fixed_zerop (primop1
))
2985 std::swap (primop0
, primop1
);
2986 std::swap (op0
, op1
);
2989 std::swap (unsignedp0
, unsignedp1
);
2990 std::swap (real1
, real2
);
3009 *rescode_ptr
= code
;
3012 /* If comparing an integer against a constant more bits wide,
3013 maybe we can deduce a value of 1 or 0 independent of the data.
3014 Or else truncate the constant now
3015 rather than extend the variable at run time.
3017 This is only interesting if the constant is the wider arg.
3018 Also, it is not safe if the constant is unsigned and the
3019 variable arg is signed, since in this case the variable
3020 would be sign-extended and then regarded as unsigned.
3021 Our technique fails in this case because the lowest/highest
3022 possible unsigned results don't follow naturally from the
3023 lowest/highest possible values of the variable operand.
3024 For just EQ_EXPR and NE_EXPR there is another technique that
3025 could be used: see if the constant can be faithfully represented
3026 in the other operand's type, by truncating it and reextending it
3027 and see if that preserves the constant's value. */
3029 if (!real1
&& !real2
3030 && TREE_CODE (TREE_TYPE (primop0
)) != FIXED_POINT_TYPE
3031 && TREE_CODE (primop1
) == INTEGER_CST
3032 && TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (*restype_ptr
))
3034 int min_gt
, max_gt
, min_lt
, max_lt
;
3035 tree maxval
, minval
;
3036 /* 1 if comparison is nominally unsigned. */
3037 int unsignedp
= TYPE_UNSIGNED (*restype_ptr
);
3040 type
= c_common_signed_or_unsigned_type (unsignedp0
,
3041 TREE_TYPE (primop0
));
3043 maxval
= TYPE_MAX_VALUE (type
);
3044 minval
= TYPE_MIN_VALUE (type
);
3046 if (unsignedp
&& !unsignedp0
)
3047 *restype_ptr
= c_common_signed_type (*restype_ptr
);
3049 if (TREE_TYPE (primop1
) != *restype_ptr
)
3051 /* Convert primop1 to target type, but do not introduce
3052 additional overflow. We know primop1 is an int_cst. */
3053 primop1
= force_fit_type (*restype_ptr
,
3056 TYPE_PRECISION (*restype_ptr
)),
3057 0, TREE_OVERFLOW (primop1
));
3059 if (type
!= *restype_ptr
)
3061 minval
= convert (*restype_ptr
, minval
);
3062 maxval
= convert (*restype_ptr
, maxval
);
3065 min_gt
= tree_int_cst_lt (primop1
, minval
);
3066 max_gt
= tree_int_cst_lt (primop1
, maxval
);
3067 min_lt
= tree_int_cst_lt (minval
, primop1
);
3068 max_lt
= tree_int_cst_lt (maxval
, primop1
);
3071 /* This used to be a switch, but Genix compiler can't handle that. */
3072 if (code
== NE_EXPR
)
3074 if (max_lt
|| min_gt
)
3075 val
= truthvalue_true_node
;
3077 else if (code
== EQ_EXPR
)
3079 if (max_lt
|| min_gt
)
3080 val
= truthvalue_false_node
;
3082 else if (code
== LT_EXPR
)
3085 val
= truthvalue_true_node
;
3087 val
= truthvalue_false_node
;
3089 else if (code
== GT_EXPR
)
3092 val
= truthvalue_true_node
;
3094 val
= truthvalue_false_node
;
3096 else if (code
== LE_EXPR
)
3099 val
= truthvalue_true_node
;
3101 val
= truthvalue_false_node
;
3103 else if (code
== GE_EXPR
)
3106 val
= truthvalue_true_node
;
3108 val
= truthvalue_false_node
;
3111 /* If primop0 was sign-extended and unsigned comparison specd,
3112 we did a signed comparison above using the signed type bounds.
3113 But the comparison we output must be unsigned.
3115 Also, for inequalities, VAL is no good; but if the signed
3116 comparison had *any* fixed result, it follows that the
3117 unsigned comparison just tests the sign in reverse
3118 (positive values are LE, negative ones GE).
3119 So we can generate an unsigned comparison
3120 against an extreme value of the signed type. */
3122 if (unsignedp
&& !unsignedp0
)
3129 primop1
= TYPE_MIN_VALUE (type
);
3135 primop1
= TYPE_MAX_VALUE (type
);
3142 type
= c_common_unsigned_type (type
);
3145 if (TREE_CODE (primop0
) != INTEGER_CST
3146 /* Don't warn if it's from a (non-system) macro. */
3147 && !(from_macro_expansion_at
3148 (expansion_point_location_if_in_system_header
3149 (EXPR_LOCATION (primop0
)))))
3151 if (val
== truthvalue_false_node
)
3152 warning_at (loc
, OPT_Wtype_limits
,
3153 "comparison is always false due to limited range of data type");
3154 if (val
== truthvalue_true_node
)
3155 warning_at (loc
, OPT_Wtype_limits
,
3156 "comparison is always true due to limited range of data type");
3161 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3162 if (TREE_SIDE_EFFECTS (primop0
))
3163 return build2 (COMPOUND_EXPR
, TREE_TYPE (val
), primop0
, val
);
3167 /* Value is not predetermined, but do the comparison
3168 in the type of the operand that is not constant.
3169 TYPE is already properly set. */
3172 /* If either arg is decimal float and the other is float, find the
3173 proper common type to use for comparison. */
3174 else if (real1
&& real2
3175 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0
)))
3176 && DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1
))))
3177 type
= common_type (TREE_TYPE (primop0
), TREE_TYPE (primop1
));
3179 /* If either arg is decimal float and the other is float, fail. */
3180 else if (real1
&& real2
3181 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0
)))
3182 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1
)))))
3184 type
= *restype_ptr
;
3189 else if (real1
&& real2
3190 && (TYPE_PRECISION (TREE_TYPE (primop0
))
3191 == TYPE_PRECISION (TREE_TYPE (primop1
))))
3192 type
= TREE_TYPE (primop0
);
3194 /* If args' natural types are both narrower than nominal type
3195 and both extend in the same manner, compare them
3196 in the type of the wider arg.
3197 Otherwise must actually extend both to the nominal
3198 common type lest different ways of extending
3200 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
3202 else if (unsignedp0
== unsignedp1
&& real1
== real2
3203 && TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (*restype_ptr
)
3204 && TYPE_PRECISION (TREE_TYPE (primop1
)) < TYPE_PRECISION (*restype_ptr
)
3205 && (type
= common_type (TREE_TYPE (primop0
), TREE_TYPE (primop1
)))
3208 type
= c_common_signed_or_unsigned_type (unsignedp0
3209 || TYPE_UNSIGNED (*restype_ptr
),
3211 /* Make sure shorter operand is extended the right way
3212 to match the longer operand. */
3214 = convert (c_common_signed_or_unsigned_type (unsignedp0
,
3215 TREE_TYPE (primop0
)),
3218 = convert (c_common_signed_or_unsigned_type (unsignedp1
,
3219 TREE_TYPE (primop1
)),
3224 /* Here we must do the comparison on the nominal type
3225 using the args exactly as we received them. */
3226 type
= *restype_ptr
;
3230 /* We want to fold unsigned comparisons of >= and < against zero.
3231 For these, we may also issue a warning if we have a non-constant
3232 compared against zero, where the zero was spelled as "0" (rather
3233 than merely folding to it).
3234 If we have at least one constant, then op1 is constant
3235 and we may have a non-constant expression as op0. */
3236 if (!real1
&& !real2
&& integer_zerop (primop1
)
3237 && TYPE_UNSIGNED (*restype_ptr
))
3239 tree value
= NULL_TREE
;
3240 /* All unsigned values are >= 0, so we warn. However,
3241 if OP0 is a constant that is >= 0, the signedness of
3242 the comparison isn't an issue, so suppress the
3244 tree folded_op0
= fold_for_warn (op0
);
3246 warn_type_limits
&& !in_system_header_at (loc
)
3247 && !(TREE_CODE (folded_op0
) == INTEGER_CST
3248 && !TREE_OVERFLOW (convert (c_common_signed_type (type
),
3250 /* Do not warn for enumeration types. */
3251 && (TREE_CODE (expr_original_type (folded_op0
)) != ENUMERAL_TYPE
);
3257 warning_at (loc
, OPT_Wtype_limits
,
3258 "comparison of unsigned expression in %<>= 0%> "
3260 value
= truthvalue_true_node
;
3265 warning_at (loc
, OPT_Wtype_limits
,
3266 "comparison of unsigned expression in %<< 0%> "
3268 value
= truthvalue_false_node
;
3275 if (value
!= NULL_TREE
)
3277 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3278 if (TREE_SIDE_EFFECTS (primop0
))
3279 return build2 (COMPOUND_EXPR
, TREE_TYPE (value
),
3286 *op0_ptr
= convert (type
, primop0
);
3287 *op1_ptr
= convert (type
, primop1
);
3289 *restype_ptr
= truthvalue_type_node
;
3294 /* Return a tree for the sum or difference (RESULTCODE says which)
3295 of pointer PTROP and integer INTOP. */
3298 pointer_int_sum (location_t loc
, enum tree_code resultcode
,
3299 tree ptrop
, tree intop
, bool complain
)
3303 /* The result is a pointer of the same type that is being added. */
3304 tree result_type
= TREE_TYPE (ptrop
);
3306 if (VOID_TYPE_P (TREE_TYPE (result_type
)))
3308 if (complain
&& warn_pointer_arith
)
3309 pedwarn (loc
, OPT_Wpointer_arith
,
3310 "pointer of type %<void *%> used in arithmetic");
3312 return error_mark_node
;
3313 size_exp
= integer_one_node
;
3315 else if (TREE_CODE (TREE_TYPE (result_type
)) == FUNCTION_TYPE
)
3317 if (complain
&& warn_pointer_arith
)
3318 pedwarn (loc
, OPT_Wpointer_arith
,
3319 "pointer to a function used in arithmetic");
3321 return error_mark_node
;
3322 size_exp
= integer_one_node
;
3324 else if (!verify_type_context (loc
, TCTX_POINTER_ARITH
,
3325 TREE_TYPE (result_type
)))
3326 size_exp
= integer_one_node
;
3329 if (!complain
&& !COMPLETE_TYPE_P (TREE_TYPE (result_type
)))
3330 return error_mark_node
;
3331 size_exp
= size_in_bytes_loc (loc
, TREE_TYPE (result_type
));
3332 /* Wrap the pointer expression in a SAVE_EXPR to make sure it
3333 is evaluated first when the size expression may depend
3334 on it for VM types. */
3335 if (TREE_SIDE_EFFECTS (size_exp
)
3336 && TREE_SIDE_EFFECTS (ptrop
)
3337 && variably_modified_type_p (TREE_TYPE (ptrop
), NULL
))
3339 ptrop
= save_expr (ptrop
);
3340 size_exp
= build2 (COMPOUND_EXPR
, TREE_TYPE (intop
), ptrop
, size_exp
);
3344 /* We are manipulating pointer values, so we don't need to warn
3345 about relying on undefined signed overflow. We disable the
3346 warning here because we use integer types so fold won't know that
3347 they are really pointers. */
3348 fold_defer_overflow_warnings ();
3350 /* If what we are about to multiply by the size of the elements
3351 contains a constant term, apply distributive law
3352 and multiply that constant term separately.
3353 This helps produce common subexpressions. */
3354 if ((TREE_CODE (intop
) == PLUS_EXPR
|| TREE_CODE (intop
) == MINUS_EXPR
)
3355 && !TREE_CONSTANT (intop
)
3356 && TREE_CONSTANT (TREE_OPERAND (intop
, 1))
3357 && TREE_CONSTANT (size_exp
)
3358 /* If the constant comes from pointer subtraction,
3359 skip this optimization--it would cause an error. */
3360 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop
, 0))) == INTEGER_TYPE
3361 /* If the constant is unsigned, and smaller than the pointer size,
3362 then we must skip this optimization. This is because it could cause
3363 an overflow error if the constant is negative but INTOP is not. */
3364 && (TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (intop
))
3365 || (TYPE_PRECISION (TREE_TYPE (intop
))
3366 == TYPE_PRECISION (TREE_TYPE (ptrop
)))))
3368 enum tree_code subcode
= resultcode
;
3369 tree int_type
= TREE_TYPE (intop
);
3370 if (TREE_CODE (intop
) == MINUS_EXPR
)
3371 subcode
= (subcode
== PLUS_EXPR
? MINUS_EXPR
: PLUS_EXPR
);
3372 /* Convert both subexpression types to the type of intop,
3373 because weird cases involving pointer arithmetic
3374 can result in a sum or difference with different type args. */
3375 ptrop
= build_binary_op (EXPR_LOCATION (TREE_OPERAND (intop
, 1)),
3377 convert (int_type
, TREE_OPERAND (intop
, 1)),
3379 intop
= convert (int_type
, TREE_OPERAND (intop
, 0));
3382 /* Convert the integer argument to a type the same size as sizetype
3383 so the multiply won't overflow spuriously. */
3384 if (TYPE_PRECISION (TREE_TYPE (intop
)) != TYPE_PRECISION (sizetype
)
3385 || TYPE_UNSIGNED (TREE_TYPE (intop
)) != TYPE_UNSIGNED (sizetype
))
3386 intop
= convert (c_common_type_for_size (TYPE_PRECISION (sizetype
),
3387 TYPE_UNSIGNED (sizetype
)), intop
);
3389 /* Replace the integer argument with a suitable product by the object size.
3390 Do this multiplication as signed, then convert to the appropriate type
3391 for the pointer operation and disregard an overflow that occurred only
3392 because of the sign-extension change in the latter conversion. */
3394 tree t
= fold_build2_loc (loc
, MULT_EXPR
, TREE_TYPE (intop
), intop
,
3395 convert (TREE_TYPE (intop
), size_exp
));
3396 intop
= convert (sizetype
, t
);
3397 if (TREE_OVERFLOW_P (intop
) && !TREE_OVERFLOW (t
))
3398 intop
= wide_int_to_tree (TREE_TYPE (intop
), wi::to_wide (intop
));
3401 /* Create the sum or difference. */
3402 if (resultcode
== MINUS_EXPR
)
3403 intop
= fold_build1_loc (loc
, NEGATE_EXPR
, sizetype
, intop
);
3405 ret
= fold_build_pointer_plus_loc (loc
, ptrop
, intop
);
3407 fold_undefer_and_ignore_overflow_warnings ();
3412 /* Wrap a C_MAYBE_CONST_EXPR around an expression that is fully folded
3413 and if NON_CONST is known not to be permitted in an evaluated part
3414 of a constant expression. */
3417 c_wrap_maybe_const (tree expr
, bool non_const
)
3419 location_t loc
= EXPR_LOCATION (expr
);
3421 /* This should never be called for C++. */
3422 if (c_dialect_cxx ())
3425 /* The result of folding may have a NOP_EXPR to set TREE_NO_WARNING. */
3426 STRIP_TYPE_NOPS (expr
);
3427 expr
= build2 (C_MAYBE_CONST_EXPR
, TREE_TYPE (expr
), NULL
, expr
);
3428 C_MAYBE_CONST_EXPR_NON_CONST (expr
) = non_const
;
3429 protected_set_expr_location (expr
, loc
);
3434 /* Return whether EXPR is a declaration whose address can never be NULL.
3435 The address of the first struct member could be NULL only if it were
3436 accessed through a NULL pointer, and such an access would be invalid.
3437 The address of a weak symbol may be null unless it has a definition. */
3440 decl_with_nonnull_addr_p (const_tree expr
)
3445 if (TREE_CODE (expr
) == FIELD_DECL
3446 || TREE_CODE (expr
) == PARM_DECL
3447 || TREE_CODE (expr
) == LABEL_DECL
)
3450 if (!VAR_OR_FUNCTION_DECL_P (expr
))
3453 if (!DECL_WEAK (expr
))
3454 /* Ordinary (non-weak) symbols have nonnull addresses. */
3457 if (DECL_INITIAL (expr
) && DECL_INITIAL (expr
) != error_mark_node
)
3458 /* Initialized weak symbols have nonnull addresses. */
3461 if (DECL_EXTERNAL (expr
) || !TREE_STATIC (expr
))
3462 /* Uninitialized extern weak symbols and weak symbols with no
3463 allocated storage might have a null address. */
3466 tree attribs
= DECL_ATTRIBUTES (expr
);
3467 if (lookup_attribute ("weakref", attribs
))
3468 /* Weakref symbols might have a null address unless their referent
3469 is known not to. Don't bother following weakref targets here. */
3475 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
3476 or for an `if' or `while' statement or ?..: exp. It should already
3477 have been validated to be of suitable type; otherwise, a bad
3478 diagnostic may result.
3480 The EXPR is located at LOCATION.
3482 This preparation consists of taking the ordinary
3483 representation of an expression expr and producing a valid tree
3484 boolean expression describing whether expr is nonzero. We could
3485 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
3486 but we optimize comparisons, &&, ||, and !.
3488 The resulting type should always be `truthvalue_type_node'. */
3491 c_common_truthvalue_conversion (location_t location
, tree expr
)
3493 STRIP_ANY_LOCATION_WRAPPER (expr
);
3494 switch (TREE_CODE (expr
))
3496 case EQ_EXPR
: case NE_EXPR
: case UNEQ_EXPR
: case LTGT_EXPR
:
3497 case LE_EXPR
: case GE_EXPR
: case LT_EXPR
: case GT_EXPR
:
3498 case UNLE_EXPR
: case UNGE_EXPR
: case UNLT_EXPR
: case UNGT_EXPR
:
3499 case ORDERED_EXPR
: case UNORDERED_EXPR
:
3500 if (TREE_TYPE (expr
) == truthvalue_type_node
)
3502 expr
= build2 (TREE_CODE (expr
), truthvalue_type_node
,
3503 TREE_OPERAND (expr
, 0), TREE_OPERAND (expr
, 1));
3506 case TRUTH_ANDIF_EXPR
:
3507 case TRUTH_ORIF_EXPR
:
3508 case TRUTH_AND_EXPR
:
3510 case TRUTH_XOR_EXPR
:
3511 if (TREE_TYPE (expr
) == truthvalue_type_node
)
3513 expr
= build2 (TREE_CODE (expr
), truthvalue_type_node
,
3514 c_common_truthvalue_conversion (location
,
3515 TREE_OPERAND (expr
, 0)),
3516 c_common_truthvalue_conversion (location
,
3517 TREE_OPERAND (expr
, 1)));
3520 case TRUTH_NOT_EXPR
:
3521 if (TREE_TYPE (expr
) == truthvalue_type_node
)
3523 expr
= build1 (TREE_CODE (expr
), truthvalue_type_node
,
3524 c_common_truthvalue_conversion (location
,
3525 TREE_OPERAND (expr
, 0)));
3532 if (TREE_CODE (TREE_TYPE (expr
)) == ENUMERAL_TYPE
3533 && !integer_zerop (expr
)
3534 && !integer_onep (expr
))
3535 warning_at (location
, OPT_Wint_in_bool_context
,
3536 "enum constant in boolean context");
3537 return integer_zerop (expr
) ? truthvalue_false_node
3538 : truthvalue_true_node
;
3541 return real_compare (NE_EXPR
, &TREE_REAL_CST (expr
), &dconst0
)
3542 ? truthvalue_true_node
3543 : truthvalue_false_node
;
3546 return fixed_compare (NE_EXPR
, &TREE_FIXED_CST (expr
),
3547 &FCONST0 (TYPE_MODE (TREE_TYPE (expr
))))
3548 ? truthvalue_true_node
3549 : truthvalue_false_node
;
3552 expr
= build_unary_op (location
, ADDR_EXPR
, expr
, false);
3557 tree inner
= TREE_OPERAND (expr
, 0);
3558 if (decl_with_nonnull_addr_p (inner
)
3559 /* Check both EXPR and INNER for suppression. */
3560 && !warning_suppressed_p (expr
, OPT_Waddress
)
3561 && !warning_suppressed_p (inner
, OPT_Waddress
))
3563 /* Common Ada programmer's mistake. */
3564 warning_at (location
,
3566 "the address of %qD will always evaluate as %<true%>",
3568 suppress_warning (inner
, OPT_Waddress
);
3569 return truthvalue_true_node
;
3575 expr
= build_binary_op (EXPR_LOCATION (expr
),
3576 (TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 1))
3577 ? TRUTH_OR_EXPR
: TRUTH_ORIF_EXPR
),
3578 c_common_truthvalue_conversion (location
,
3579 TREE_OPERAND (expr
, 0)),
3580 c_common_truthvalue_conversion (location
,
3581 TREE_OPERAND (expr
, 1)),
3589 case EXCESS_PRECISION_EXPR
:
3590 /* These don't change whether an object is nonzero or zero. */
3591 return c_common_truthvalue_conversion (location
, TREE_OPERAND (expr
, 0));
3595 /* These don't change whether an object is zero or nonzero, but
3596 we can't ignore them if their second arg has side-effects. */
3597 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 1)))
3599 expr
= build2 (COMPOUND_EXPR
, truthvalue_type_node
,
3600 TREE_OPERAND (expr
, 1),
3601 c_common_truthvalue_conversion
3602 (location
, TREE_OPERAND (expr
, 0)));
3606 return c_common_truthvalue_conversion (location
,
3607 TREE_OPERAND (expr
, 0));
3610 warning_at (EXPR_LOCATION (expr
), OPT_Wint_in_bool_context
,
3611 "%<*%> in boolean context, suggest %<&&%> instead");
3615 /* We will only warn on signed shifts here, because the majority of
3616 false positive warnings happen in code where unsigned arithmetic
3617 was used in anticipation of a possible overflow.
3618 Furthermore, if we see an unsigned type here we know that the
3619 result of the shift is not subject to integer promotion rules. */
3620 if ((TREE_CODE (TREE_TYPE (expr
)) == INTEGER_TYPE
3621 || TREE_CODE (TREE_TYPE (expr
)) == BITINT_TYPE
)
3622 && !TYPE_UNSIGNED (TREE_TYPE (expr
)))
3623 warning_at (EXPR_LOCATION (expr
), OPT_Wint_in_bool_context
,
3624 "%<<<%> in boolean context, did you mean %<<%>?");
3628 if (warn_int_in_bool_context
3629 && !from_macro_definition_at (EXPR_LOCATION (expr
)))
3631 tree val1
= fold_for_warn (TREE_OPERAND (expr
, 1));
3632 tree val2
= fold_for_warn (TREE_OPERAND (expr
, 2));
3633 if (TREE_CODE (val1
) == INTEGER_CST
3634 && TREE_CODE (val2
) == INTEGER_CST
3635 && !integer_zerop (val1
)
3636 && !integer_zerop (val2
)
3637 && (!integer_onep (val1
)
3638 || !integer_onep (val2
)))
3639 warning_at (EXPR_LOCATION (expr
), OPT_Wint_in_bool_context
,
3640 "%<?:%> using integer constants in boolean context, "
3641 "the expression will always evaluate to %<true%>");
3642 else if ((TREE_CODE (val1
) == INTEGER_CST
3643 && !integer_zerop (val1
)
3644 && !integer_onep (val1
))
3645 || (TREE_CODE (val2
) == INTEGER_CST
3646 && !integer_zerop (val2
)
3647 && !integer_onep (val2
)))
3648 warning_at (EXPR_LOCATION (expr
), OPT_Wint_in_bool_context
,
3649 "%<?:%> using integer constants in boolean context");
3651 /* Distribute the conversion into the arms of a COND_EXPR. */
3652 if (c_dialect_cxx ())
3653 /* Avoid premature folding. */
3657 int w
= warn_int_in_bool_context
;
3658 warn_int_in_bool_context
= 0;
3659 /* Folding will happen later for C. */
3660 expr
= build3 (COND_EXPR
, truthvalue_type_node
,
3661 TREE_OPERAND (expr
, 0),
3662 c_common_truthvalue_conversion (location
,
3663 TREE_OPERAND (expr
, 1)),
3664 c_common_truthvalue_conversion (location
,
3665 TREE_OPERAND (expr
, 2)));
3666 warn_int_in_bool_context
= w
;
3672 tree totype
= TREE_TYPE (expr
);
3673 tree fromtype
= TREE_TYPE (TREE_OPERAND (expr
, 0));
3675 if (POINTER_TYPE_P (totype
)
3676 && !c_inhibit_evaluation_warnings
3677 && TREE_CODE (fromtype
) == REFERENCE_TYPE
)
3683 warning_at (location
,
3685 "the compiler can assume that the address of "
3686 "%qD will always evaluate to %<true%>",
3690 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
3691 since that affects how `default_conversion' will behave. */
3692 if (TREE_CODE (totype
) == REFERENCE_TYPE
3693 || TREE_CODE (fromtype
) == REFERENCE_TYPE
)
3695 /* Don't strip a conversion from C++0x scoped enum, since they
3696 don't implicitly convert to other types. */
3697 if (TREE_CODE (fromtype
) == ENUMERAL_TYPE
3698 && ENUM_IS_SCOPED (fromtype
))
3700 /* If this isn't narrowing the argument, we can ignore it. */
3701 if (TYPE_PRECISION (totype
) >= TYPE_PRECISION (fromtype
))
3703 tree op0
= TREE_OPERAND (expr
, 0);
3704 if ((TREE_CODE (fromtype
) == POINTER_TYPE
3705 && (TREE_CODE (totype
) == INTEGER_TYPE
3706 || TREE_CODE (totype
) == BITINT_TYPE
))
3707 || warning_suppressed_p (expr
, OPT_Waddress
))
3708 /* Suppress -Waddress for casts to intptr_t, propagating
3709 any suppression from the enclosing expression to its
3711 suppress_warning (op0
, OPT_Waddress
);
3712 return c_common_truthvalue_conversion (location
, op0
);
3718 if (!warning_suppressed_p (expr
, OPT_Wparentheses
)
3720 && warning_at (location
, OPT_Wparentheses
,
3721 "suggest parentheses around assignment used as "
3723 suppress_warning (expr
, OPT_Wparentheses
);
3728 tree folded_expr
= fold_for_warn (expr
);
3729 if (folded_expr
!= expr
)
3730 return c_common_truthvalue_conversion (location
, folded_expr
);
3738 if (TREE_CODE (TREE_TYPE (expr
)) == COMPLEX_TYPE
)
3740 tree t
= save_expr (expr
);
3741 expr
= (build_binary_op
3742 (EXPR_LOCATION (expr
),
3743 (TREE_SIDE_EFFECTS (expr
)
3744 ? TRUTH_OR_EXPR
: TRUTH_ORIF_EXPR
),
3745 c_common_truthvalue_conversion
3747 build_unary_op (location
, REALPART_EXPR
, t
, false)),
3748 c_common_truthvalue_conversion
3750 build_unary_op (location
, IMAGPART_EXPR
, t
, false)),
3755 if (FIXED_POINT_TYPE_P (TREE_TYPE (expr
)))
3757 tree fixed_zero_node
= build_fixed (TREE_TYPE (expr
),
3759 (TREE_TYPE (expr
))));
3760 return build_binary_op (location
, NE_EXPR
, expr
, fixed_zero_node
, true);
3763 return build_binary_op (location
, NE_EXPR
, expr
, integer_zero_node
, true);
3766 protected_set_expr_location (expr
, location
);
3770 static void def_builtin_1 (enum built_in_function fncode
,
3772 enum built_in_class fnclass
,
3773 tree fntype
, tree libtype
,
3774 bool both_p
, bool fallback_p
, bool nonansi_p
,
3775 tree fnattrs
, bool implicit_p
);
3778 /* Apply the TYPE_QUALS to the new DECL. */
3781 c_apply_type_quals_to_decl (int type_quals
, tree decl
)
3783 tree type
= TREE_TYPE (decl
);
3785 if (type
== error_mark_node
)
3788 if ((type_quals
& TYPE_QUAL_CONST
)
3789 || (type
&& TREE_CODE (type
) == REFERENCE_TYPE
))
3790 /* We used to check TYPE_NEEDS_CONSTRUCTING here, but now a constexpr
3791 constructor can produce constant init, so rely on cp_finish_decl to
3792 clear TREE_READONLY if the variable has non-constant init. */
3793 TREE_READONLY (decl
) = 1;
3794 if (type_quals
& TYPE_QUAL_VOLATILE
)
3796 TREE_SIDE_EFFECTS (decl
) = 1;
3797 TREE_THIS_VOLATILE (decl
) = 1;
3799 if (type_quals
& TYPE_QUAL_RESTRICT
)
3801 while (type
&& TREE_CODE (type
) == ARRAY_TYPE
)
3802 /* Allow 'restrict' on arrays of pointers.
3803 FIXME currently we just ignore it. */
3804 type
= TREE_TYPE (type
);
3806 || !POINTER_TYPE_P (type
)
3807 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type
)))
3808 error ("invalid use of %<restrict%>");
3812 /* Return the typed-based alias set for T, which may be an expression
3813 or a type. Return -1 if we don't do anything special. */
3816 c_common_get_alias_set (tree t
)
3818 /* For VLAs, use the alias set of the element type rather than the
3819 default of alias set 0 for types compared structurally. */
3820 if (TYPE_P (t
) && TYPE_STRUCTURAL_EQUALITY_P (t
))
3822 if (TREE_CODE (t
) == ARRAY_TYPE
)
3823 return get_alias_set (TREE_TYPE (t
));
3827 /* That's all the expressions we handle specially. */
3831 /* Unlike char, char8_t doesn't alias. */
3832 if (flag_char8_t
&& t
== char8_type_node
)
3835 /* The C standard guarantees that any object may be accessed via an
3836 lvalue that has narrow character type (except char8_t). */
3837 if (t
== char_type_node
3838 || t
== signed_char_type_node
3839 || t
== unsigned_char_type_node
)
3842 /* The C standard specifically allows aliasing between signed and
3843 unsigned variants of the same type. We treat the signed
3844 variant as canonical. */
3845 if ((TREE_CODE (t
) == INTEGER_TYPE
|| TREE_CODE (t
) == BITINT_TYPE
)
3846 && TYPE_UNSIGNED (t
))
3848 tree t1
= c_common_signed_type (t
);
3850 /* t1 == t can happen for boolean nodes which are always unsigned. */
3852 return get_alias_set (t1
);
3858 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where
3859 the IS_SIZEOF parameter indicates which operator is being applied.
3860 The COMPLAIN flag controls whether we should diagnose possibly
3861 ill-formed constructs or not. LOC is the location of the SIZEOF or
3862 TYPEOF operator. If MIN_ALIGNOF, the least alignment required for
3863 a type in any context should be returned, rather than the normal
3864 alignment for that type. */
3867 c_sizeof_or_alignof_type (location_t loc
,
3868 tree type
, bool is_sizeof
, bool min_alignof
,
3871 const char *op_name
;
3873 enum tree_code type_code
= TREE_CODE (type
);
3875 op_name
= is_sizeof
? "sizeof" : "__alignof__";
3877 if (type_code
== FUNCTION_TYPE
)
3881 if (complain
&& warn_pointer_arith
)
3882 pedwarn (loc
, OPT_Wpointer_arith
,
3883 "invalid application of %<sizeof%> to a function type");
3885 return error_mark_node
;
3886 value
= size_one_node
;
3892 if (c_dialect_cxx ())
3893 pedwarn (loc
, OPT_Wpedantic
, "ISO C++ does not permit "
3894 "%<alignof%> applied to a function type");
3896 pedwarn (loc
, OPT_Wpedantic
, "ISO C does not permit "
3897 "%<_Alignof%> applied to a function type");
3899 value
= size_int (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
3902 else if (type_code
== VOID_TYPE
|| type_code
== ERROR_MARK
)
3904 if (type_code
== VOID_TYPE
3905 && complain
&& warn_pointer_arith
)
3906 pedwarn (loc
, OPT_Wpointer_arith
,
3907 "invalid application of %qs to a void type", op_name
);
3909 return error_mark_node
;
3910 value
= size_one_node
;
3912 else if (!COMPLETE_TYPE_P (type
)
3913 && (!c_dialect_cxx () || is_sizeof
|| type_code
!= ARRAY_TYPE
))
3916 error_at (loc
, "invalid application of %qs to incomplete type %qT",
3918 return error_mark_node
;
3920 else if (c_dialect_cxx () && type_code
== ARRAY_TYPE
3921 && !COMPLETE_TYPE_P (TREE_TYPE (type
)))
3924 error_at (loc
, "invalid application of %qs to array type %qT of "
3925 "incomplete element type", op_name
, type
);
3926 return error_mark_node
;
3928 else if (!verify_type_context (loc
, is_sizeof
? TCTX_SIZEOF
: TCTX_ALIGNOF
,
3932 return error_mark_node
;
3933 value
= size_one_node
;
3938 /* Convert in case a char is more than one unit. */
3939 value
= size_binop_loc (loc
, CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
3940 size_int (TYPE_PRECISION (char_type_node
)
3942 else if (min_alignof
)
3943 value
= size_int (min_align_of_type (type
));
3945 value
= size_int (TYPE_ALIGN_UNIT (type
));
3948 /* VALUE will have the middle-end integer type sizetype.
3949 However, we should really return a value of type `size_t',
3950 which is just a typedef for an ordinary integer type. */
3951 value
= fold_convert_loc (loc
, size_type_node
, value
);
3956 /* Implement the __alignof keyword: Return the minimum required
3957 alignment of EXPR, measured in bytes. For VAR_DECLs,
3958 FUNCTION_DECLs and FIELD_DECLs return DECL_ALIGN (which can be set
3959 from an "aligned" __attribute__ specification). LOC is the
3960 location of the ALIGNOF operator. */
3963 c_alignof_expr (location_t loc
, tree expr
)
3967 if (!verify_type_context (loc
, TCTX_ALIGNOF
, TREE_TYPE (expr
)))
3970 else if (VAR_OR_FUNCTION_DECL_P (expr
))
3971 t
= size_int (DECL_ALIGN_UNIT (expr
));
3973 else if (TREE_CODE (expr
) == COMPONENT_REF
3974 && DECL_C_BIT_FIELD (TREE_OPERAND (expr
, 1)))
3976 error_at (loc
, "%<__alignof%> applied to a bit-field");
3979 else if (TREE_CODE (expr
) == COMPONENT_REF
3980 && TREE_CODE (TREE_OPERAND (expr
, 1)) == FIELD_DECL
)
3981 t
= size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr
, 1)));
3983 else if (INDIRECT_REF_P (expr
))
3985 tree t
= TREE_OPERAND (expr
, 0);
3987 int bestalign
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t
)));
3989 while (CONVERT_EXPR_P (t
)
3990 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t
, 0))) == POINTER_TYPE
)
3994 t
= TREE_OPERAND (t
, 0);
3995 thisalign
= TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t
)));
3996 if (thisalign
> bestalign
)
3997 best
= t
, bestalign
= thisalign
;
3999 return c_alignof (loc
, TREE_TYPE (TREE_TYPE (best
)));
4002 return c_alignof (loc
, TREE_TYPE (expr
));
4004 return fold_convert_loc (loc
, size_type_node
, t
);
4007 /* Handle C and C++ default attributes. */
4009 enum built_in_attribute
4011 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
4012 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
4013 #define DEF_ATTR_STRING(ENUM, VALUE) ENUM,
4014 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
4015 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
4016 #include "builtin-attrs.def"
4017 #undef DEF_ATTR_NULL_TREE
4019 #undef DEF_ATTR_STRING
4020 #undef DEF_ATTR_IDENT
4021 #undef DEF_ATTR_TREE_LIST
4025 static GTY(()) tree built_in_attributes
[(int) ATTR_LAST
];
4027 static void c_init_attributes (void);
4031 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
4032 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
4033 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
4034 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
4035 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4036 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4037 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
4038 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4040 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4042 #define DEF_FUNCTION_TYPE_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4043 ARG6, ARG7, ARG8) NAME,
4044 #define DEF_FUNCTION_TYPE_9(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4045 ARG6, ARG7, ARG8, ARG9) NAME,
4046 #define DEF_FUNCTION_TYPE_10(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4047 ARG6, ARG7, ARG8, ARG9, ARG10) NAME,
4048 #define DEF_FUNCTION_TYPE_11(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4049 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) NAME,
4050 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
4051 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
4052 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
4053 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
4054 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
4055 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4057 #define DEF_FUNCTION_TYPE_VAR_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4059 #define DEF_FUNCTION_TYPE_VAR_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4061 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
4062 #include "builtin-types.def"
4063 #undef DEF_PRIMITIVE_TYPE
4064 #undef DEF_FUNCTION_TYPE_0
4065 #undef DEF_FUNCTION_TYPE_1
4066 #undef DEF_FUNCTION_TYPE_2
4067 #undef DEF_FUNCTION_TYPE_3
4068 #undef DEF_FUNCTION_TYPE_4
4069 #undef DEF_FUNCTION_TYPE_5
4070 #undef DEF_FUNCTION_TYPE_6
4071 #undef DEF_FUNCTION_TYPE_7
4072 #undef DEF_FUNCTION_TYPE_8
4073 #undef DEF_FUNCTION_TYPE_9
4074 #undef DEF_FUNCTION_TYPE_10
4075 #undef DEF_FUNCTION_TYPE_11
4076 #undef DEF_FUNCTION_TYPE_VAR_0
4077 #undef DEF_FUNCTION_TYPE_VAR_1
4078 #undef DEF_FUNCTION_TYPE_VAR_2
4079 #undef DEF_FUNCTION_TYPE_VAR_3
4080 #undef DEF_FUNCTION_TYPE_VAR_4
4081 #undef DEF_FUNCTION_TYPE_VAR_5
4082 #undef DEF_FUNCTION_TYPE_VAR_6
4083 #undef DEF_FUNCTION_TYPE_VAR_7
4084 #undef DEF_POINTER_TYPE
4088 typedef enum c_builtin_type builtin_type
;
4090 /* A temporary array for c_common_nodes_and_builtins. Used in
4091 communication with def_fn_type. */
4092 static tree builtin_types
[(int) BT_LAST
+ 1];
4094 /* A helper function for c_common_nodes_and_builtins. Build function type
4095 for DEF with return type RET and N arguments. If VAR is true, then the
4096 function should be variadic after those N arguments, or, if N is zero,
4099 Takes special care not to ICE if any of the types involved are
4100 error_mark_node, which indicates that said type is not in fact available
4101 (see builtin_type_for_size). In which case the function type as a whole
4102 should be error_mark_node. */
4105 def_fn_type (builtin_type def
, builtin_type ret
, bool var
, int n
, ...)
4108 tree
*args
= XALLOCAVEC (tree
, n
);
4113 for (i
= 0; i
< n
; ++i
)
4115 builtin_type a
= (builtin_type
) va_arg (list
, int);
4116 t
= builtin_types
[a
];
4117 if (t
== error_mark_node
)
4122 t
= builtin_types
[ret
];
4123 if (t
== error_mark_node
)
4127 t
= build_function_type (t
, NULL_TREE
);
4129 t
= build_varargs_function_type_array (t
, n
, args
);
4131 t
= build_function_type_array (t
, n
, args
);
4134 builtin_types
[def
] = t
;
4138 /* Build builtin functions common to both C and C++ language
4142 c_define_builtins (tree va_list_ref_type_node
, tree va_list_arg_type_node
)
4144 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
4145 builtin_types[ENUM] = VALUE;
4146 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
4147 def_fn_type (ENUM, RETURN, 0, 0);
4148 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
4149 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
4150 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
4151 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
4152 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4153 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
4154 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4155 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
4156 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4157 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4158 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4160 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
4161 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4163 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
4164 #define DEF_FUNCTION_TYPE_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4166 def_fn_type (ENUM, RETURN, 0, 8, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
4168 #define DEF_FUNCTION_TYPE_9(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4169 ARG6, ARG7, ARG8, ARG9) \
4170 def_fn_type (ENUM, RETURN, 0, 9, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
4172 #define DEF_FUNCTION_TYPE_10(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4173 ARG6, ARG7, ARG8, ARG9, ARG10) \
4174 def_fn_type (ENUM, RETURN, 0, 10, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
4175 ARG7, ARG8, ARG9, ARG10);
4176 #define DEF_FUNCTION_TYPE_11(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4177 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) \
4178 def_fn_type (ENUM, RETURN, 0, 11, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
4179 ARG7, ARG8, ARG9, ARG10, ARG11);
4180 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
4181 def_fn_type (ENUM, RETURN, 1, 0);
4182 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
4183 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
4184 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
4185 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
4186 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
4187 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
4188 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
4189 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
4190 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
4191 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
4192 #define DEF_FUNCTION_TYPE_VAR_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4194 def_fn_type (ENUM, RETURN, 1, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
4195 #define DEF_FUNCTION_TYPE_VAR_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
4197 def_fn_type (ENUM, RETURN, 1, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
4198 #define DEF_POINTER_TYPE(ENUM, TYPE) \
4199 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
4201 #include "builtin-types.def"
4203 #undef DEF_PRIMITIVE_TYPE
4204 #undef DEF_FUNCTION_TYPE_0
4205 #undef DEF_FUNCTION_TYPE_1
4206 #undef DEF_FUNCTION_TYPE_2
4207 #undef DEF_FUNCTION_TYPE_3
4208 #undef DEF_FUNCTION_TYPE_4
4209 #undef DEF_FUNCTION_TYPE_5
4210 #undef DEF_FUNCTION_TYPE_6
4211 #undef DEF_FUNCTION_TYPE_7
4212 #undef DEF_FUNCTION_TYPE_8
4213 #undef DEF_FUNCTION_TYPE_9
4214 #undef DEF_FUNCTION_TYPE_10
4215 #undef DEF_FUNCTION_TYPE_11
4216 #undef DEF_FUNCTION_TYPE_VAR_0
4217 #undef DEF_FUNCTION_TYPE_VAR_1
4218 #undef DEF_FUNCTION_TYPE_VAR_2
4219 #undef DEF_FUNCTION_TYPE_VAR_3
4220 #undef DEF_FUNCTION_TYPE_VAR_4
4221 #undef DEF_FUNCTION_TYPE_VAR_5
4222 #undef DEF_FUNCTION_TYPE_VAR_6
4223 #undef DEF_FUNCTION_TYPE_VAR_7
4224 #undef DEF_POINTER_TYPE
4225 builtin_types
[(int) BT_LAST
] = NULL_TREE
;
4227 c_init_attributes ();
4229 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
4230 NONANSI_P, ATTRS, IMPLICIT, COND) \
4232 def_builtin_1 (ENUM, NAME, CLASS, \
4233 builtin_types[(int) TYPE], \
4234 builtin_types[(int) LIBTYPE], \
4235 BOTH_P, FALLBACK_P, NONANSI_P, \
4236 built_in_attributes[(int) ATTRS], IMPLICIT);
4237 #include "builtins.def"
4239 targetm
.init_builtins ();
4241 build_common_builtin_nodes ();
4244 /* Like get_identifier, but avoid warnings about null arguments when
4245 the argument may be NULL for targets where GCC lacks stdint.h type
4249 c_get_ident (const char *id
)
4251 return get_identifier (id
);
4254 /* Build tree nodes and builtin functions common to both C and C++ language
4258 c_common_nodes_and_builtins (void)
4260 int char8_type_size
;
4261 int char16_type_size
;
4262 int char32_type_size
;
4263 int wchar_type_size
;
4264 tree array_domain_type
;
4265 tree va_list_ref_type_node
;
4266 tree va_list_arg_type_node
;
4269 build_common_tree_nodes (flag_signed_char
);
4271 /* Define `int' and `char' first so that dbx will output them first. */
4272 record_builtin_type (RID_INT
, NULL
, integer_type_node
);
4273 record_builtin_type (RID_CHAR
, "char", char_type_node
);
4275 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
4276 "unsigned long", "long long unsigned" and "unsigned short" were in C++
4277 but not C. Are the conditionals here needed? */
4278 if (c_dialect_cxx ())
4279 record_builtin_type (RID_SIGNED
, NULL
, integer_type_node
);
4280 record_builtin_type (RID_LONG
, "long int", long_integer_type_node
);
4281 record_builtin_type (RID_UNSIGNED
, "unsigned int", unsigned_type_node
);
4282 record_builtin_type (RID_MAX
, "long unsigned int",
4283 long_unsigned_type_node
);
4285 for (i
= 0; i
< NUM_INT_N_ENTS
; i
++)
4289 sprintf (name
, "__int%d", int_n_data
[i
].bitsize
);
4290 record_builtin_type ((enum rid
)(RID_FIRST_INT_N
+ i
), name
,
4291 int_n_trees
[i
].signed_type
);
4292 sprintf (name
, "__int%d__", int_n_data
[i
].bitsize
);
4293 record_builtin_type ((enum rid
)(RID_FIRST_INT_N
+ i
), name
,
4294 int_n_trees
[i
].signed_type
);
4295 ridpointers
[RID_FIRST_INT_N
+ i
]
4296 = DECL_NAME (TYPE_NAME (int_n_trees
[i
].signed_type
));
4298 sprintf (name
, "__int%d unsigned", int_n_data
[i
].bitsize
);
4299 record_builtin_type (RID_MAX
, name
, int_n_trees
[i
].unsigned_type
);
4300 sprintf (name
, "__int%d__ unsigned", int_n_data
[i
].bitsize
);
4301 record_builtin_type (RID_MAX
, name
, int_n_trees
[i
].unsigned_type
);
4304 if (c_dialect_cxx ())
4305 record_builtin_type (RID_MAX
, "unsigned long", long_unsigned_type_node
);
4306 record_builtin_type (RID_MAX
, "long long int",
4307 long_long_integer_type_node
);
4308 record_builtin_type (RID_MAX
, "long long unsigned int",
4309 long_long_unsigned_type_node
);
4310 if (c_dialect_cxx ())
4311 record_builtin_type (RID_MAX
, "long long unsigned",
4312 long_long_unsigned_type_node
);
4313 record_builtin_type (RID_SHORT
, "short int", short_integer_type_node
);
4314 record_builtin_type (RID_MAX
, "short unsigned int",
4315 short_unsigned_type_node
);
4316 if (c_dialect_cxx ())
4317 record_builtin_type (RID_MAX
, "unsigned short",
4318 short_unsigned_type_node
);
4320 /* Define both `signed char' and `unsigned char'. */
4321 record_builtin_type (RID_MAX
, "signed char", signed_char_type_node
);
4322 record_builtin_type (RID_MAX
, "unsigned char", unsigned_char_type_node
);
4324 /* These are types that c_common_type_for_size and
4325 c_common_type_for_mode use. */
4326 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4327 TYPE_DECL
, NULL_TREE
,
4329 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4330 TYPE_DECL
, NULL_TREE
,
4332 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4333 TYPE_DECL
, NULL_TREE
,
4335 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4336 TYPE_DECL
, NULL_TREE
,
4338 #if HOST_BITS_PER_WIDE_INT >= 64
4339 /* Note that this is different than the __int128 type that's part of
4340 the generic __intN support. */
4341 if (targetm
.scalar_mode_supported_p (TImode
))
4342 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4344 get_identifier ("__int128_t"),
4347 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4348 TYPE_DECL
, NULL_TREE
,
4349 unsigned_intQI_type_node
));
4350 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4351 TYPE_DECL
, NULL_TREE
,
4352 unsigned_intHI_type_node
));
4353 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4354 TYPE_DECL
, NULL_TREE
,
4355 unsigned_intSI_type_node
));
4356 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4357 TYPE_DECL
, NULL_TREE
,
4358 unsigned_intDI_type_node
));
4359 #if HOST_BITS_PER_WIDE_INT >= 64
4360 if (targetm
.scalar_mode_supported_p (TImode
))
4361 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4363 get_identifier ("__uint128_t"),
4364 unsigned_intTI_type_node
));
4367 /* Create the widest literal types. */
4368 if (targetm
.scalar_mode_supported_p (TImode
))
4370 widest_integer_literal_type_node
= intTI_type_node
;
4371 widest_unsigned_literal_type_node
= unsigned_intTI_type_node
;
4375 widest_integer_literal_type_node
= intDI_type_node
;
4376 widest_unsigned_literal_type_node
= unsigned_intDI_type_node
;
4379 signed_size_type_node
= c_common_signed_type (size_type_node
);
4382 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE
)));
4384 record_builtin_type (RID_FLOAT
, NULL
, float_type_node
);
4385 record_builtin_type (RID_DOUBLE
, NULL
, double_type_node
);
4386 record_builtin_type (RID_MAX
, "long double", long_double_type_node
);
4388 for (i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
4390 if (FLOATN_NX_TYPE_NODE (i
) != NULL_TREE
)
4391 record_builtin_type ((enum rid
) (RID_FLOATN_NX_FIRST
+ i
), NULL
,
4392 FLOATN_NX_TYPE_NODE (i
));
4395 /* For C, let float128t_type_node (__float128 in some backends) be the
4396 same type as float128_type_node (_Float128), for C++ let those
4397 be distinct types that mangle and behave differently. */
4398 if (c_dialect_cxx ())
4399 float128t_type_node
= NULL_TREE
;
4401 /* Only supported decimal floating point extension if the target
4402 actually supports underlying modes. */
4403 if (targetm
.scalar_mode_supported_p (SDmode
)
4404 && targetm
.scalar_mode_supported_p (DDmode
)
4405 && targetm
.scalar_mode_supported_p (TDmode
))
4407 record_builtin_type (RID_DFLOAT32
, NULL
, dfloat32_type_node
);
4408 record_builtin_type (RID_DFLOAT64
, NULL
, dfloat64_type_node
);
4409 record_builtin_type (RID_DFLOAT128
, NULL
, dfloat128_type_node
);
4412 if (targetm
.fixed_point_supported_p ())
4414 record_builtin_type (RID_MAX
, "short _Fract", short_fract_type_node
);
4415 record_builtin_type (RID_FRACT
, NULL
, fract_type_node
);
4416 record_builtin_type (RID_MAX
, "long _Fract", long_fract_type_node
);
4417 record_builtin_type (RID_MAX
, "long long _Fract",
4418 long_long_fract_type_node
);
4419 record_builtin_type (RID_MAX
, "unsigned short _Fract",
4420 unsigned_short_fract_type_node
);
4421 record_builtin_type (RID_MAX
, "unsigned _Fract",
4422 unsigned_fract_type_node
);
4423 record_builtin_type (RID_MAX
, "unsigned long _Fract",
4424 unsigned_long_fract_type_node
);
4425 record_builtin_type (RID_MAX
, "unsigned long long _Fract",
4426 unsigned_long_long_fract_type_node
);
4427 record_builtin_type (RID_MAX
, "_Sat short _Fract",
4428 sat_short_fract_type_node
);
4429 record_builtin_type (RID_MAX
, "_Sat _Fract", sat_fract_type_node
);
4430 record_builtin_type (RID_MAX
, "_Sat long _Fract",
4431 sat_long_fract_type_node
);
4432 record_builtin_type (RID_MAX
, "_Sat long long _Fract",
4433 sat_long_long_fract_type_node
);
4434 record_builtin_type (RID_MAX
, "_Sat unsigned short _Fract",
4435 sat_unsigned_short_fract_type_node
);
4436 record_builtin_type (RID_MAX
, "_Sat unsigned _Fract",
4437 sat_unsigned_fract_type_node
);
4438 record_builtin_type (RID_MAX
, "_Sat unsigned long _Fract",
4439 sat_unsigned_long_fract_type_node
);
4440 record_builtin_type (RID_MAX
, "_Sat unsigned long long _Fract",
4441 sat_unsigned_long_long_fract_type_node
);
4442 record_builtin_type (RID_MAX
, "short _Accum", short_accum_type_node
);
4443 record_builtin_type (RID_ACCUM
, NULL
, accum_type_node
);
4444 record_builtin_type (RID_MAX
, "long _Accum", long_accum_type_node
);
4445 record_builtin_type (RID_MAX
, "long long _Accum",
4446 long_long_accum_type_node
);
4447 record_builtin_type (RID_MAX
, "unsigned short _Accum",
4448 unsigned_short_accum_type_node
);
4449 record_builtin_type (RID_MAX
, "unsigned _Accum",
4450 unsigned_accum_type_node
);
4451 record_builtin_type (RID_MAX
, "unsigned long _Accum",
4452 unsigned_long_accum_type_node
);
4453 record_builtin_type (RID_MAX
, "unsigned long long _Accum",
4454 unsigned_long_long_accum_type_node
);
4455 record_builtin_type (RID_MAX
, "_Sat short _Accum",
4456 sat_short_accum_type_node
);
4457 record_builtin_type (RID_MAX
, "_Sat _Accum", sat_accum_type_node
);
4458 record_builtin_type (RID_MAX
, "_Sat long _Accum",
4459 sat_long_accum_type_node
);
4460 record_builtin_type (RID_MAX
, "_Sat long long _Accum",
4461 sat_long_long_accum_type_node
);
4462 record_builtin_type (RID_MAX
, "_Sat unsigned short _Accum",
4463 sat_unsigned_short_accum_type_node
);
4464 record_builtin_type (RID_MAX
, "_Sat unsigned _Accum",
4465 sat_unsigned_accum_type_node
);
4466 record_builtin_type (RID_MAX
, "_Sat unsigned long _Accum",
4467 sat_unsigned_long_accum_type_node
);
4468 record_builtin_type (RID_MAX
, "_Sat unsigned long long _Accum",
4469 sat_unsigned_long_long_accum_type_node
);
4473 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4475 get_identifier ("complex int"),
4476 complex_integer_type_node
));
4477 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4479 get_identifier ("complex float"),
4480 complex_float_type_node
));
4481 lang_hooks
.decls
.pushdecl (build_decl (UNKNOWN_LOCATION
,
4483 get_identifier ("complex double"),
4484 complex_double_type_node
));
4485 lang_hooks
.decls
.pushdecl
4486 (build_decl (UNKNOWN_LOCATION
,
4487 TYPE_DECL
, get_identifier ("complex long double"),
4488 complex_long_double_type_node
));
4490 if (!c_dialect_cxx ())
4491 for (i
= 0; i
< NUM_FLOATN_NX_TYPES
; i
++)
4492 if (COMPLEX_FLOATN_NX_TYPE_NODE (i
) != NULL_TREE
)
4495 sprintf (buf
, "complex _Float%d%s", floatn_nx_types
[i
].n
,
4496 floatn_nx_types
[i
].extended
? "x" : "");
4497 lang_hooks
.decls
.pushdecl
4498 (build_decl (UNKNOWN_LOCATION
,
4500 get_identifier (buf
),
4501 COMPLEX_FLOATN_NX_TYPE_NODE (i
)));
4504 /* Make fileptr_type_node a distinct void * type until
4505 FILE type is defined. Likewise for const struct tm*. */
4506 for (unsigned i
= 0; i
< ARRAY_SIZE (builtin_structptr_types
); ++i
)
4507 builtin_structptr_types
[i
].node
4508 = build_variant_type_copy (builtin_structptr_types
[i
].base
);
4510 record_builtin_type (RID_VOID
, NULL
, void_type_node
);
4512 /* Set the TYPE_NAME for any variants that were built before
4513 record_builtin_type gave names to the built-in types. */
4515 tree void_name
= TYPE_NAME (void_type_node
);
4516 TYPE_NAME (void_type_node
) = NULL_TREE
;
4517 TYPE_NAME (build_qualified_type (void_type_node
, TYPE_QUAL_CONST
))
4519 TYPE_NAME (void_type_node
) = void_name
;
4522 /* Make a type to be the domain of a few array types
4523 whose domains don't really matter.
4524 200 is small enough that it always fits in size_t
4525 and large enough that it can hold most function names for the
4526 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
4527 array_domain_type
= build_index_type (size_int (200));
4529 /* Make a type for arrays of characters.
4530 With luck nothing will ever really depend on the length of this
4532 char_array_type_node
4533 = build_array_type (char_type_node
, array_domain_type
);
4535 string_type_node
= build_pointer_type (char_type_node
);
4536 const_string_type_node
4537 = build_pointer_type (build_qualified_type
4538 (char_type_node
, TYPE_QUAL_CONST
));
4540 /* This is special for C++ so functions can be overloaded. */
4541 wchar_type_node
= get_identifier (MODIFIED_WCHAR_TYPE
);
4542 wchar_type_node
= TREE_TYPE (identifier_global_value (wchar_type_node
));
4543 wchar_type_size
= TYPE_PRECISION (wchar_type_node
);
4544 underlying_wchar_type_node
= wchar_type_node
;
4545 if (c_dialect_cxx ())
4547 if (TYPE_UNSIGNED (wchar_type_node
))
4548 wchar_type_node
= make_unsigned_type (wchar_type_size
);
4550 wchar_type_node
= make_signed_type (wchar_type_size
);
4551 record_builtin_type (RID_WCHAR
, "wchar_t", wchar_type_node
);
4554 /* This is for wide string constants. */
4555 wchar_array_type_node
4556 = build_array_type (wchar_type_node
, array_domain_type
);
4558 /* Define 'char8_t'. */
4559 char8_type_node
= get_identifier (CHAR8_TYPE
);
4560 char8_type_node
= TREE_TYPE (identifier_global_value (char8_type_node
));
4561 char8_type_size
= TYPE_PRECISION (char8_type_node
);
4562 if (c_dialect_cxx ())
4564 char8_type_node
= make_unsigned_type (char8_type_size
);
4565 TYPE_STRING_FLAG (char8_type_node
) = true;
4568 record_builtin_type (RID_CHAR8
, "char8_t", char8_type_node
);
4571 /* This is for UTF-8 string constants. */
4572 char8_array_type_node
4573 = build_array_type (char8_type_node
, array_domain_type
);
4575 /* Define 'char16_t'. */
4576 char16_type_node
= get_identifier (CHAR16_TYPE
);
4577 char16_type_node
= TREE_TYPE (identifier_global_value (char16_type_node
));
4578 char16_type_size
= TYPE_PRECISION (char16_type_node
);
4579 if (c_dialect_cxx ())
4581 char16_type_node
= make_unsigned_type (char16_type_size
);
4583 if (cxx_dialect
>= cxx11
)
4584 record_builtin_type (RID_CHAR16
, "char16_t", char16_type_node
);
4587 /* This is for UTF-16 string constants. */
4588 char16_array_type_node
4589 = build_array_type (char16_type_node
, array_domain_type
);
4591 /* Define 'char32_t'. */
4592 char32_type_node
= get_identifier (CHAR32_TYPE
);
4593 char32_type_node
= TREE_TYPE (identifier_global_value (char32_type_node
));
4594 char32_type_size
= TYPE_PRECISION (char32_type_node
);
4595 if (c_dialect_cxx ())
4597 char32_type_node
= make_unsigned_type (char32_type_size
);
4599 if (cxx_dialect
>= cxx11
)
4600 record_builtin_type (RID_CHAR32
, "char32_t", char32_type_node
);
4603 /* This is for UTF-32 string constants. */
4604 char32_array_type_node
4605 = build_array_type (char32_type_node
, array_domain_type
);
4607 if (strcmp (WINT_TYPE
, "wchar_t") == 0)
4608 wint_type_node
= wchar_type_node
;
4611 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE
)));
4614 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE
)));
4616 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE
)));
4618 if (SIG_ATOMIC_TYPE
)
4619 sig_atomic_type_node
=
4620 TREE_TYPE (identifier_global_value (c_get_ident (SIG_ATOMIC_TYPE
)));
4623 TREE_TYPE (identifier_global_value (c_get_ident (INT8_TYPE
)));
4626 TREE_TYPE (identifier_global_value (c_get_ident (INT16_TYPE
)));
4629 TREE_TYPE (identifier_global_value (c_get_ident (INT32_TYPE
)));
4632 TREE_TYPE (identifier_global_value (c_get_ident (INT64_TYPE
)));
4635 TREE_TYPE (identifier_global_value (c_get_ident (UINT8_TYPE
)));
4637 c_uint16_type_node
= uint16_type_node
=
4638 TREE_TYPE (identifier_global_value (c_get_ident (UINT16_TYPE
)));
4640 c_uint32_type_node
= uint32_type_node
=
4641 TREE_TYPE (identifier_global_value (c_get_ident (UINT32_TYPE
)));
4643 c_uint64_type_node
= uint64_type_node
=
4644 TREE_TYPE (identifier_global_value (c_get_ident (UINT64_TYPE
)));
4645 if (INT_LEAST8_TYPE
)
4646 int_least8_type_node
=
4647 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST8_TYPE
)));
4648 if (INT_LEAST16_TYPE
)
4649 int_least16_type_node
=
4650 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST16_TYPE
)));
4651 if (INT_LEAST32_TYPE
)
4652 int_least32_type_node
=
4653 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST32_TYPE
)));
4654 if (INT_LEAST64_TYPE
)
4655 int_least64_type_node
=
4656 TREE_TYPE (identifier_global_value (c_get_ident (INT_LEAST64_TYPE
)));
4657 if (UINT_LEAST8_TYPE
)
4658 uint_least8_type_node
=
4659 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST8_TYPE
)));
4660 if (UINT_LEAST16_TYPE
)
4661 uint_least16_type_node
=
4662 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST16_TYPE
)));
4663 if (UINT_LEAST32_TYPE
)
4664 uint_least32_type_node
=
4665 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST32_TYPE
)));
4666 if (UINT_LEAST64_TYPE
)
4667 uint_least64_type_node
=
4668 TREE_TYPE (identifier_global_value (c_get_ident (UINT_LEAST64_TYPE
)));
4670 int_fast8_type_node
=
4671 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST8_TYPE
)));
4672 if (INT_FAST16_TYPE
)
4673 int_fast16_type_node
=
4674 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST16_TYPE
)));
4675 if (INT_FAST32_TYPE
)
4676 int_fast32_type_node
=
4677 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST32_TYPE
)));
4678 if (INT_FAST64_TYPE
)
4679 int_fast64_type_node
=
4680 TREE_TYPE (identifier_global_value (c_get_ident (INT_FAST64_TYPE
)));
4681 if (UINT_FAST8_TYPE
)
4682 uint_fast8_type_node
=
4683 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST8_TYPE
)));
4684 if (UINT_FAST16_TYPE
)
4685 uint_fast16_type_node
=
4686 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST16_TYPE
)));
4687 if (UINT_FAST32_TYPE
)
4688 uint_fast32_type_node
=
4689 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST32_TYPE
)));
4690 if (UINT_FAST64_TYPE
)
4691 uint_fast64_type_node
=
4692 TREE_TYPE (identifier_global_value (c_get_ident (UINT_FAST64_TYPE
)));
4695 TREE_TYPE (identifier_global_value (c_get_ident (INTPTR_TYPE
)));
4698 TREE_TYPE (identifier_global_value (c_get_ident (UINTPTR_TYPE
)));
4700 default_function_type
= build_function_type (integer_type_node
, NULL_TREE
);
4701 unsigned_ptrdiff_type_node
= c_common_unsigned_type (ptrdiff_type_node
);
4703 lang_hooks
.decls
.pushdecl
4704 (build_decl (UNKNOWN_LOCATION
,
4705 TYPE_DECL
, get_identifier ("__builtin_va_list"),
4706 va_list_type_node
));
4707 if (targetm
.enum_va_list_p
)
4713 for (l
= 0; targetm
.enum_va_list_p (l
, &pname
, &ptype
); ++l
)
4715 lang_hooks
.decls
.pushdecl
4716 (build_decl (UNKNOWN_LOCATION
,
4717 TYPE_DECL
, get_identifier (pname
),
4723 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
4725 va_list_arg_type_node
= va_list_ref_type_node
=
4726 build_pointer_type (TREE_TYPE (va_list_type_node
));
4730 va_list_arg_type_node
= va_list_type_node
;
4731 va_list_ref_type_node
= build_reference_type (va_list_type_node
);
4734 c_define_builtins (va_list_ref_type_node
, va_list_arg_type_node
);
4736 main_identifier_node
= get_identifier ("main");
4738 /* Create the built-in __null node. It is important that this is
4740 null_node
= make_int_cst (1, 1);
4741 TREE_TYPE (null_node
) = c_common_type_for_size (POINTER_SIZE
, 0);
4743 /* Create the built-in nullptr node. This part of its initialization is
4744 common to C and C++. The front ends can further adjust its definition
4745 in {c,cxx}_init_decl_processing. In particular, we aren't setting the
4746 alignment here for C++ backward ABI bug compatibility. */
4747 nullptr_type_node
= make_node (NULLPTR_TYPE
);
4748 TYPE_SIZE (nullptr_type_node
) = bitsize_int (GET_MODE_BITSIZE (ptr_mode
));
4749 TYPE_SIZE_UNIT (nullptr_type_node
) = size_int (GET_MODE_SIZE (ptr_mode
));
4750 TYPE_UNSIGNED (nullptr_type_node
) = 1;
4751 TYPE_PRECISION (nullptr_type_node
) = GET_MODE_BITSIZE (ptr_mode
);
4752 SET_TYPE_MODE (nullptr_type_node
, ptr_mode
);
4753 nullptr_node
= build_int_cst (nullptr_type_node
, 0);
4755 /* Since builtin_types isn't gc'ed, don't export these nodes. */
4756 memset (builtin_types
, 0, sizeof (builtin_types
));
4759 /* The number of named compound-literals generated thus far. */
4760 static GTY(()) int compound_literal_number
;
4762 /* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
4765 set_compound_literal_name (tree decl
)
4768 ASM_FORMAT_PRIVATE_NAME (name
, "__compound_literal",
4769 compound_literal_number
);
4770 compound_literal_number
++;
4771 DECL_NAME (decl
) = get_identifier (name
);
4774 /* build_va_arg helper function. Return a VA_ARG_EXPR with location LOC, type
4775 TYPE and operand OP. */
4778 build_va_arg_1 (location_t loc
, tree type
, tree op
)
4780 tree expr
= build1 (VA_ARG_EXPR
, type
, op
);
4781 SET_EXPR_LOCATION (expr
, loc
);
4785 /* Return a VA_ARG_EXPR corresponding to a source-level expression
4786 va_arg (EXPR, TYPE) at source location LOC. */
4789 build_va_arg (location_t loc
, tree expr
, tree type
)
4791 tree va_type
= TREE_TYPE (expr
);
4792 tree canon_va_type
= (va_type
== error_mark_node
4794 : targetm
.canonical_va_list_type (va_type
));
4796 if (va_type
== error_mark_node
4797 || canon_va_type
== NULL_TREE
)
4799 if (canon_va_type
== NULL_TREE
)
4800 error_at (loc
, "first argument to %<va_arg%> not of type %<va_list%>");
4802 /* Let's handle things neutrally, if expr:
4803 - has undeclared type, or
4804 - is not an va_list type. */
4805 return build_va_arg_1 (loc
, type
, error_mark_node
);
4808 if (TREE_CODE (canon_va_type
) != ARRAY_TYPE
)
4810 /* Case 1: Not an array type. */
4812 /* Take the address, to get '&ap'. Note that &ap is not a va_list
4814 c_common_mark_addressable_vec (expr
);
4815 expr
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (expr
)), expr
);
4817 return build_va_arg_1 (loc
, type
, expr
);
4820 /* Case 2: Array type.
4824 For contrast, let's start with the simple case (case 1). If
4825 canon_va_type is not an array type, but say a char *, then when
4826 passing-by-value a va_list, the type of the va_list param decl is
4827 the same as for another va_list decl (all ap's are char *):
4830 D.1815 = VA_ARG (&ap, 0B, 1);
4836 __builtin_va_start (&ap, 0);
4839 __builtin_va_end (&ap);
4843 However, if canon_va_type is ARRAY_TYPE, then when passing-by-value a
4844 va_list the type of the va_list param decl (case 2b, struct * ap) is not
4845 the same as for another va_list decl (case 2a, struct ap[1]).
4848 D.1844 = VA_ARG (ap, 0B, 0);
4853 __builtin_va_start (&ap, 0);
4855 __builtin_va_end (&ap);
4859 Case 2b is different because:
4860 - on the callee side, the parm decl has declared type va_list, but
4861 grokdeclarator changes the type of the parm decl to a pointer to the
4863 - on the caller side, the pass-by-value uses &ap.
4865 We unify these two cases (case 2a: va_list is array type,
4866 case 2b: va_list is pointer to array elem type), by adding '&' for the
4867 array type case, such that we have a pointer to array elem in both
4870 if (TREE_CODE (va_type
) == ARRAY_TYPE
)
4872 /* Case 2a: va_list is array type. */
4874 /* Take the address, to get '&ap'. Make sure it's a pointer to array
4876 c_common_mark_addressable_vec (expr
);
4877 expr
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (canon_va_type
)),
4880 /* Verify that &ap is still recognized as having va_list type. */
4881 tree canon_expr_type
4882 = targetm
.canonical_va_list_type (TREE_TYPE (expr
));
4883 gcc_assert (canon_expr_type
!= NULL_TREE
);
4887 /* Case 2b: va_list is pointer to array elem type. */
4888 gcc_assert (POINTER_TYPE_P (va_type
));
4890 /* Comparison as in std_canonical_va_list_type. */
4891 gcc_assert (TYPE_MAIN_VARIANT (TREE_TYPE (va_type
))
4892 == TYPE_MAIN_VARIANT (TREE_TYPE (canon_va_type
)));
4894 /* Don't take the address. We've already got '&ap'. */
4898 return build_va_arg_1 (loc
, type
, expr
);
4902 /* Linked list of disabled built-in functions. */
4904 struct disabled_builtin
4907 struct disabled_builtin
*next
;
4909 static disabled_builtin
*disabled_builtins
= NULL
;
4911 static bool builtin_function_disabled_p (const char *);
4913 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
4914 begins with "__builtin_", give an error. */
4917 disable_builtin_function (const char *name
)
4919 if (startswith (name
, "__builtin_"))
4920 error ("cannot disable built-in function %qs", name
);
4923 disabled_builtin
*new_disabled_builtin
= XNEW (disabled_builtin
);
4924 new_disabled_builtin
->name
= name
;
4925 new_disabled_builtin
->next
= disabled_builtins
;
4926 disabled_builtins
= new_disabled_builtin
;
4931 /* Return true if the built-in function NAME has been disabled, false
4935 builtin_function_disabled_p (const char *name
)
4937 disabled_builtin
*p
;
4938 for (p
= disabled_builtins
; p
!= NULL
; p
= p
->next
)
4940 if (strcmp (name
, p
->name
) == 0)
4947 /* Worker for DEF_BUILTIN.
4948 Possibly define a builtin function with one or two names.
4949 Does not declare a non-__builtin_ function if flag_no_builtin, or if
4950 nonansi_p and flag_no_nonansi_builtin. */
4953 def_builtin_1 (enum built_in_function fncode
,
4955 enum built_in_class fnclass
,
4956 tree fntype
, tree libtype
,
4957 bool both_p
, bool fallback_p
, bool nonansi_p
,
4958 tree fnattrs
, bool implicit_p
)
4961 const char *libname
;
4963 if (fntype
== error_mark_node
)
4966 gcc_assert ((!both_p
&& !fallback_p
)
4967 || startswith (name
, "__builtin_"));
4969 libname
= name
+ strlen ("__builtin_");
4970 decl
= add_builtin_function (name
, fntype
, fncode
, fnclass
,
4971 (fallback_p
? libname
: NULL
),
4974 set_builtin_decl (fncode
, decl
, implicit_p
);
4977 && !flag_no_builtin
&& !builtin_function_disabled_p (libname
)
4978 && !(nonansi_p
&& flag_no_nonansi_builtin
))
4979 add_builtin_function (libname
, libtype
, fncode
, fnclass
,
4983 /* Nonzero if the type T promotes to int. This is (nearly) the
4984 integral promotions defined in ISO C99 6.3.1.1/2. */
4987 c_promoting_integer_type_p (const_tree t
)
4989 switch (TREE_CODE (t
))
4992 return (TYPE_MAIN_VARIANT (t
) == char_type_node
4993 || TYPE_MAIN_VARIANT (t
) == signed_char_type_node
4994 || TYPE_MAIN_VARIANT (t
) == unsigned_char_type_node
4995 || TYPE_MAIN_VARIANT (t
) == short_integer_type_node
4996 || TYPE_MAIN_VARIANT (t
) == short_unsigned_type_node
4997 || TYPE_PRECISION (t
) < TYPE_PRECISION (integer_type_node
));
5000 /* ??? Technically all enumerations not larger than an int
5001 promote to an int. But this is used along code paths
5002 that only want to notice a size change. */
5003 return TYPE_PRECISION (t
) < TYPE_PRECISION (integer_type_node
);
5013 /* Return 1 if PARMS specifies a fixed number of parameters
5014 and none of their types is affected by default promotions. */
5017 self_promoting_args_p (const_tree parms
)
5020 for (t
= parms
; t
; t
= TREE_CHAIN (t
))
5022 tree type
= TREE_VALUE (t
);
5024 if (type
== error_mark_node
)
5027 if (TREE_CHAIN (t
) == NULL_TREE
&& type
!= void_type_node
)
5030 if (type
== NULL_TREE
)
5033 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
5036 if (c_promoting_integer_type_p (type
))
5042 /* Recursively remove any '*' or '&' operator from TYPE. */
5044 strip_pointer_operator (tree t
)
5046 while (POINTER_TYPE_P (t
))
5051 /* Recursively remove pointer or array type from TYPE. */
5053 strip_pointer_or_array_types (tree t
)
5055 while (TREE_CODE (t
) == ARRAY_TYPE
|| POINTER_TYPE_P (t
))
5060 /* Used to compare case labels. K1 and K2 are actually tree nodes
5061 representing case labels, or NULL_TREE for a `default' label.
5062 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
5063 K2, and 0 if K1 and K2 are equal. */
5066 case_compare (splay_tree_key k1
, splay_tree_key k2
)
5068 /* Consider a NULL key (such as arises with a `default' label) to be
5069 smaller than anything else. */
5075 return tree_int_cst_compare ((tree
) k1
, (tree
) k2
);
5078 /* Process a case label, located at LOC, for the range LOW_VALUE
5079 ... HIGH_VALUE. If LOW_VALUE and HIGH_VALUE are both NULL_TREE
5080 then this case label is actually a `default' label. If only
5081 HIGH_VALUE is NULL_TREE, then case label was declared using the
5082 usual C/C++ syntax, rather than the GNU case range extension.
5083 CASES is a tree containing all the case ranges processed so far;
5084 COND is the condition for the switch-statement itself.
5085 Returns the CASE_LABEL_EXPR created, or ERROR_MARK_NODE if no
5086 CASE_LABEL_EXPR is created. ATTRS are the attributes to be applied
5090 c_add_case_label (location_t loc
, splay_tree cases
, tree cond
,
5091 tree low_value
, tree high_value
, tree attrs
)
5096 splay_tree_node node
;
5098 /* Create the LABEL_DECL itself. */
5099 label
= create_artificial_label (loc
);
5100 decl_attributes (&label
, attrs
, 0);
5102 /* If there was an error processing the switch condition, bail now
5103 before we get more confused. */
5104 if (!cond
|| cond
== error_mark_node
)
5107 if ((low_value
&& TREE_TYPE (low_value
)
5108 && POINTER_TYPE_P (TREE_TYPE (low_value
)))
5109 || (high_value
&& TREE_TYPE (high_value
)
5110 && POINTER_TYPE_P (TREE_TYPE (high_value
))))
5112 error_at (loc
, "pointers are not permitted as case values");
5116 /* Case ranges are a GNU extension. */
5118 pedwarn (loc
, OPT_Wpedantic
,
5119 "range expressions in switch statements are non-standard");
5121 type
= TREE_TYPE (cond
);
5124 low_value
= check_case_value (loc
, low_value
);
5125 low_value
= convert_and_check (loc
, type
, low_value
);
5126 low_value
= fold (low_value
);
5127 if (low_value
== error_mark_node
)
5132 high_value
= check_case_value (loc
, high_value
);
5133 high_value
= convert_and_check (loc
, type
, high_value
);
5134 high_value
= fold (high_value
);
5135 if (high_value
== error_mark_node
)
5139 if (low_value
&& high_value
)
5141 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
5142 really a case range, even though it was written that way.
5143 Remove the HIGH_VALUE to simplify later processing. */
5144 if (tree_int_cst_equal (low_value
, high_value
))
5145 high_value
= NULL_TREE
;
5146 else if (!tree_int_cst_lt (low_value
, high_value
))
5147 warning_at (loc
, 0, "empty range specified");
5150 /* Look up the LOW_VALUE in the table of case labels we already
5152 node
= splay_tree_lookup (cases
, (splay_tree_key
) low_value
);
5153 /* If there was not an exact match, check for overlapping ranges.
5154 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
5155 that's a `default' label and the only overlap is an exact match. */
5156 if (!node
&& (low_value
|| high_value
))
5158 splay_tree_node low_bound
;
5159 splay_tree_node high_bound
;
5161 /* Even though there wasn't an exact match, there might be an
5162 overlap between this case range and another case range.
5163 Since we've (inductively) not allowed any overlapping case
5164 ranges, we simply need to find the greatest low case label
5165 that is smaller that LOW_VALUE, and the smallest low case
5166 label that is greater than LOW_VALUE. If there is an overlap
5167 it will occur in one of these two ranges. */
5168 low_bound
= splay_tree_predecessor (cases
,
5169 (splay_tree_key
) low_value
);
5170 high_bound
= splay_tree_successor (cases
,
5171 (splay_tree_key
) low_value
);
5173 /* Check to see if the LOW_BOUND overlaps. It is smaller than
5174 the LOW_VALUE, so there is no need to check unless the
5175 LOW_BOUND is in fact itself a case range. */
5177 && CASE_HIGH ((tree
) low_bound
->value
)
5178 && tree_int_cst_compare (CASE_HIGH ((tree
) low_bound
->value
),
5181 /* Check to see if the HIGH_BOUND overlaps. The low end of that
5182 range is bigger than the low end of the current range, so we
5183 are only interested if the current range is a real range, and
5184 not an ordinary case label. */
5187 && (tree_int_cst_compare ((tree
) high_bound
->key
,
5192 /* If there was an overlap, issue an error. */
5195 tree duplicate
= CASE_LABEL ((tree
) node
->value
);
5199 error_at (loc
, "duplicate (or overlapping) case value");
5200 inform (DECL_SOURCE_LOCATION (duplicate
),
5201 "this is the first entry overlapping that value");
5205 error_at (loc
, "duplicate case value") ;
5206 inform (DECL_SOURCE_LOCATION (duplicate
), "previously used here");
5210 error_at (loc
, "multiple default labels in one switch");
5211 inform (DECL_SOURCE_LOCATION (duplicate
),
5212 "this is the first default label");
5217 /* Add a CASE_LABEL to the statement-tree. */
5218 case_label
= add_stmt (build_case_label (low_value
, high_value
, label
));
5219 /* Register this case label in the splay tree. */
5220 splay_tree_insert (cases
,
5221 (splay_tree_key
) low_value
,
5222 (splay_tree_value
) case_label
);
5227 /* Add a label so that the back-end doesn't think that the beginning of
5228 the switch is unreachable. Note that we do not add a case label, as
5229 that just leads to duplicates and thence to failure later on. */
5232 tree t
= create_artificial_label (loc
);
5233 add_stmt (build_stmt (loc
, LABEL_EXPR
, t
));
5235 return error_mark_node
;
5238 /* Subroutine of c_switch_covers_all_cases_p, called via
5239 splay_tree_foreach. Return 1 if it doesn't cover all the cases.
5240 ARGS[0] is initially NULL and after the first iteration is the
5241 so far highest case label. ARGS[1] is the minimum of SWITCH_COND's
5245 c_switch_covers_all_cases_p_1 (splay_tree_node node
, void *data
)
5247 tree label
= (tree
) node
->value
;
5248 tree
*args
= (tree
*) data
;
5250 /* If there is a default case, we shouldn't have called this. */
5251 gcc_assert (CASE_LOW (label
));
5253 if (args
[0] == NULL_TREE
)
5255 if (wi::to_widest (args
[1]) < wi::to_widest (CASE_LOW (label
)))
5258 else if (wi::add (wi::to_widest (args
[0]), 1)
5259 != wi::to_widest (CASE_LOW (label
)))
5261 if (CASE_HIGH (label
))
5262 args
[0] = CASE_HIGH (label
);
5264 args
[0] = CASE_LOW (label
);
5268 /* Return true if switch with CASES and switch condition with type
5269 covers all possible values in the case labels. */
5272 c_switch_covers_all_cases_p (splay_tree cases
, tree type
)
5274 /* If there is default:, this is always the case. */
5275 splay_tree_node default_node
5276 = splay_tree_lookup (cases
, (splay_tree_key
) NULL
);
5280 if (!INTEGRAL_TYPE_P (type
))
5283 tree args
[2] = { NULL_TREE
, TYPE_MIN_VALUE (type
) };
5284 if (splay_tree_foreach (cases
, c_switch_covers_all_cases_p_1
, args
))
5287 /* If there are no cases at all, or if the highest case label
5288 is smaller than TYPE_MAX_VALUE, return false. */
5289 if (args
[0] == NULL_TREE
5290 || wi::to_widest (args
[0]) < wi::to_widest (TYPE_MAX_VALUE (type
)))
5296 /* Return true if stmt can fall through. Used by block_may_fallthru
5300 c_block_may_fallthru (const_tree stmt
)
5302 switch (TREE_CODE (stmt
))
5305 return (!SWITCH_STMT_ALL_CASES_P (stmt
)
5306 || !SWITCH_STMT_NO_BREAK_P (stmt
)
5307 || block_may_fallthru (SWITCH_STMT_BODY (stmt
)));
5314 /* Finish an expression taking the address of LABEL (an
5315 IDENTIFIER_NODE). Returns an expression for the address.
5317 LOC is the location for the expression returned. */
5320 finish_label_address_expr (tree label
, location_t loc
)
5324 pedwarn (input_location
, OPT_Wpedantic
, "taking the address of a label is non-standard");
5326 if (label
== error_mark_node
)
5327 return error_mark_node
;
5329 label
= lookup_label (label
);
5330 if (label
== NULL_TREE
)
5331 result
= null_pointer_node
;
5334 TREE_USED (label
) = 1;
5335 result
= build1 (ADDR_EXPR
, ptr_type_node
, label
);
5336 /* The current function is not necessarily uninlinable.
5337 Computed gotos are incompatible with inlining, but the value
5338 here could be used only in a diagnostic, for example. */
5339 protected_set_expr_location (result
, loc
);
5346 /* Given a boolean expression ARG, return a tree representing an increment
5347 or decrement (as indicated by CODE) of ARG. The front end must check for
5348 invalid cases (e.g., decrement in C++). */
5350 boolean_increment (enum tree_code code
, tree arg
)
5353 tree true_res
= build_int_cst (TREE_TYPE (arg
), 1);
5355 arg
= stabilize_reference (arg
);
5358 case PREINCREMENT_EXPR
:
5359 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
, true_res
);
5361 case POSTINCREMENT_EXPR
:
5362 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
, true_res
);
5363 arg
= save_expr (arg
);
5364 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), val
, arg
);
5365 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), arg
, val
);
5367 case PREDECREMENT_EXPR
:
5368 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
,
5369 invert_truthvalue_loc (input_location
, arg
));
5371 case POSTDECREMENT_EXPR
:
5372 val
= build2 (MODIFY_EXPR
, TREE_TYPE (arg
), arg
,
5373 invert_truthvalue_loc (input_location
, arg
));
5374 arg
= save_expr (arg
);
5375 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), val
, arg
);
5376 val
= build2 (COMPOUND_EXPR
, TREE_TYPE (arg
), arg
, val
);
5381 TREE_SIDE_EFFECTS (val
) = 1;
5385 /* Built-in macros for stddef.h and stdint.h, that require macros
5386 defined in this file. */
5388 c_stddef_cpp_builtins(void)
5390 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE
, 0);
5391 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE
, 0);
5392 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE
, 0);
5393 /* C++ has wchar_t as a builtin type, C doesn't, so if WINT_TYPE
5394 maps to wchar_t, define it to the underlying WCHAR_TYPE in C, and
5395 to wchar_t in C++, so the desired type equivalence holds. */
5396 if (!c_dialect_cxx ()
5397 && strcmp (WINT_TYPE
, "wchar_t") == 0)
5398 builtin_define_with_value ("__WINT_TYPE__", WCHAR_TYPE
, 0);
5400 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE
, 0);
5401 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE
, 0);
5402 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE
, 0);
5404 builtin_define_with_value ("__CHAR8_TYPE__", CHAR8_TYPE
, 0);
5405 builtin_define_with_value ("__CHAR16_TYPE__", CHAR16_TYPE
, 0);
5406 builtin_define_with_value ("__CHAR32_TYPE__", CHAR32_TYPE
, 0);
5407 if (SIG_ATOMIC_TYPE
)
5408 builtin_define_with_value ("__SIG_ATOMIC_TYPE__", SIG_ATOMIC_TYPE
, 0);
5410 builtin_define_with_value ("__INT8_TYPE__", INT8_TYPE
, 0);
5412 builtin_define_with_value ("__INT16_TYPE__", INT16_TYPE
, 0);
5414 builtin_define_with_value ("__INT32_TYPE__", INT32_TYPE
, 0);
5416 builtin_define_with_value ("__INT64_TYPE__", INT64_TYPE
, 0);
5418 builtin_define_with_value ("__UINT8_TYPE__", UINT8_TYPE
, 0);
5420 builtin_define_with_value ("__UINT16_TYPE__", UINT16_TYPE
, 0);
5422 builtin_define_with_value ("__UINT32_TYPE__", UINT32_TYPE
, 0);
5424 builtin_define_with_value ("__UINT64_TYPE__", UINT64_TYPE
, 0);
5425 if (INT_LEAST8_TYPE
)
5426 builtin_define_with_value ("__INT_LEAST8_TYPE__", INT_LEAST8_TYPE
, 0);
5427 if (INT_LEAST16_TYPE
)
5428 builtin_define_with_value ("__INT_LEAST16_TYPE__", INT_LEAST16_TYPE
, 0);
5429 if (INT_LEAST32_TYPE
)
5430 builtin_define_with_value ("__INT_LEAST32_TYPE__", INT_LEAST32_TYPE
, 0);
5431 if (INT_LEAST64_TYPE
)
5432 builtin_define_with_value ("__INT_LEAST64_TYPE__", INT_LEAST64_TYPE
, 0);
5433 if (UINT_LEAST8_TYPE
)
5434 builtin_define_with_value ("__UINT_LEAST8_TYPE__", UINT_LEAST8_TYPE
, 0);
5435 if (UINT_LEAST16_TYPE
)
5436 builtin_define_with_value ("__UINT_LEAST16_TYPE__", UINT_LEAST16_TYPE
, 0);
5437 if (UINT_LEAST32_TYPE
)
5438 builtin_define_with_value ("__UINT_LEAST32_TYPE__", UINT_LEAST32_TYPE
, 0);
5439 if (UINT_LEAST64_TYPE
)
5440 builtin_define_with_value ("__UINT_LEAST64_TYPE__", UINT_LEAST64_TYPE
, 0);
5442 builtin_define_with_value ("__INT_FAST8_TYPE__", INT_FAST8_TYPE
, 0);
5443 if (INT_FAST16_TYPE
)
5444 builtin_define_with_value ("__INT_FAST16_TYPE__", INT_FAST16_TYPE
, 0);
5445 if (INT_FAST32_TYPE
)
5446 builtin_define_with_value ("__INT_FAST32_TYPE__", INT_FAST32_TYPE
, 0);
5447 if (INT_FAST64_TYPE
)
5448 builtin_define_with_value ("__INT_FAST64_TYPE__", INT_FAST64_TYPE
, 0);
5449 if (UINT_FAST8_TYPE
)
5450 builtin_define_with_value ("__UINT_FAST8_TYPE__", UINT_FAST8_TYPE
, 0);
5451 if (UINT_FAST16_TYPE
)
5452 builtin_define_with_value ("__UINT_FAST16_TYPE__", UINT_FAST16_TYPE
, 0);
5453 if (UINT_FAST32_TYPE
)
5454 builtin_define_with_value ("__UINT_FAST32_TYPE__", UINT_FAST32_TYPE
, 0);
5455 if (UINT_FAST64_TYPE
)
5456 builtin_define_with_value ("__UINT_FAST64_TYPE__", UINT_FAST64_TYPE
, 0);
5458 builtin_define_with_value ("__INTPTR_TYPE__", INTPTR_TYPE
, 0);
5460 builtin_define_with_value ("__UINTPTR_TYPE__", UINTPTR_TYPE
, 0);
5461 /* GIMPLE FE testcases need access to the GCC internal 'sizetype'.
5462 Expose it as __SIZETYPE__. */
5464 builtin_define_with_value ("__SIZETYPE__", SIZETYPE
, 0);
5468 c_init_attributes (void)
5470 /* Fill in the built_in_attributes array. */
5471 #define DEF_ATTR_NULL_TREE(ENUM) \
5472 built_in_attributes[(int) ENUM] = NULL_TREE;
5473 #define DEF_ATTR_INT(ENUM, VALUE) \
5474 built_in_attributes[(int) ENUM] = build_int_cst (integer_type_node, VALUE);
5475 #define DEF_ATTR_STRING(ENUM, VALUE) \
5476 built_in_attributes[(int) ENUM] = build_string (strlen (VALUE), VALUE);
5477 #define DEF_ATTR_IDENT(ENUM, STRING) \
5478 built_in_attributes[(int) ENUM] = get_identifier (STRING);
5479 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
5480 built_in_attributes[(int) ENUM] \
5481 = tree_cons (built_in_attributes[(int) PURPOSE], \
5482 built_in_attributes[(int) VALUE], \
5483 built_in_attributes[(int) CHAIN]);
5484 #include "builtin-attrs.def"
5485 #undef DEF_ATTR_NULL_TREE
5487 #undef DEF_ATTR_IDENT
5488 #undef DEF_ATTR_TREE_LIST
5491 /* Check whether the byte alignment ALIGN is a valid user-specified
5492 alignment less than the supported maximum. If so, return ALIGN's
5493 base-2 log; if not, output an error and return -1. If OBJFILE
5494 then reject alignments greater than MAX_OFILE_ALIGNMENT when
5495 converted to bits. Otherwise, consider valid only alignments
5496 that are less than HOST_BITS_PER_INT - LOG2_BITS_PER_UNIT.
5497 Zero is not considered a valid argument (and results in -1 on
5498 return) but it only triggers a warning when WARN_ZERO is set. */
5501 check_user_alignment (const_tree align
, bool objfile
, bool warn_zero
)
5503 if (error_operand_p (align
))
5506 if (TREE_CODE (align
) != INTEGER_CST
5507 || !INTEGRAL_TYPE_P (TREE_TYPE (align
)))
5509 error ("requested alignment is not an integer constant");
5513 if (integer_zerop (align
))
5516 warning (OPT_Wattributes
,
5517 "requested alignment %qE is not a positive power of 2",
5522 /* Log2 of the byte alignment ALIGN. */
5524 if (tree_int_cst_sgn (align
) == -1
5525 || (log2align
= tree_log2 (align
)) == -1)
5527 error ("requested alignment %qE is not a positive power of 2",
5534 unsigned maxalign
= MAX_OFILE_ALIGNMENT
/ BITS_PER_UNIT
;
5535 if (!tree_fits_uhwi_p (align
) || tree_to_uhwi (align
) > maxalign
)
5537 error ("requested alignment %qE exceeds object file maximum %u",
5543 if (log2align
>= HOST_BITS_PER_INT
- LOG2_BITS_PER_UNIT
)
5545 error ("requested alignment %qE exceeds maximum %u",
5546 align
, 1U << (HOST_BITS_PER_INT
- LOG2_BITS_PER_UNIT
- 1));
5553 /* Determine the ELF symbol visibility for DECL, which is either a
5554 variable or a function. It is an error to use this function if a
5555 definition of DECL is not available in this translation unit.
5556 Returns true if the final visibility has been determined by this
5557 function; false if the caller is free to make additional
5561 c_determine_visibility (tree decl
)
5563 gcc_assert (VAR_OR_FUNCTION_DECL_P (decl
));
5565 /* If the user explicitly specified the visibility with an
5566 attribute, honor that. DECL_VISIBILITY will have been set during
5567 the processing of the attribute. We check for an explicit
5568 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
5569 to distinguish the use of an attribute from the use of a "#pragma
5570 GCC visibility push(...)"; in the latter case we still want other
5571 considerations to be able to overrule the #pragma. */
5572 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl
))
5573 || (TARGET_DLLIMPORT_DECL_ATTRIBUTES
5574 && (lookup_attribute ("dllimport", DECL_ATTRIBUTES (decl
))
5575 || lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl
)))))
5578 /* Set default visibility to whatever the user supplied with
5579 visibility_specified depending on #pragma GCC visibility. */
5580 if (!DECL_VISIBILITY_SPECIFIED (decl
))
5582 if (visibility_options
.inpragma
5583 || DECL_VISIBILITY (decl
) != default_visibility
)
5585 DECL_VISIBILITY (decl
) = default_visibility
;
5586 DECL_VISIBILITY_SPECIFIED (decl
) = visibility_options
.inpragma
;
5587 /* If visibility changed and DECL already has DECL_RTL, ensure
5588 symbol flags are updated. */
5589 if (((VAR_P (decl
) && TREE_STATIC (decl
))
5590 || TREE_CODE (decl
) == FUNCTION_DECL
)
5591 && DECL_RTL_SET_P (decl
))
5592 make_decl_rtl (decl
);
5598 /* Data to communicate through check_function_arguments_recurse between
5599 check_function_nonnull and check_nonnull_arg. */
5601 struct nonnull_arg_ctx
5603 /* Location of the call. */
5605 /* The function whose arguments are being checked and its type (used
5606 for calls through function pointers). */
5607 const_tree fndecl
, fntype
;
5608 /* True if a warning has been issued. */
5612 /* Check the argument list of a function call to CTX.FNDECL of CTX.FNTYPE
5613 for null in argument slots that are marked as requiring a non-null
5614 pointer argument. The NARGS arguments are passed in the array ARGARRAY.
5615 Return true if we have warned. */
5618 check_function_nonnull (nonnull_arg_ctx
&ctx
, int nargs
, tree
*argarray
)
5621 if (TREE_CODE (ctx
.fntype
) == METHOD_TYPE
)
5623 bool closure
= false;
5626 /* For certain lambda expressions the C++ front end emits calls
5627 that pass a null this pointer as an argument named __closure
5628 to the member operator() of empty function. Detect those
5629 and avoid checking them, but proceed to check the remaining
5631 tree arg0
= DECL_ARGUMENTS (ctx
.fndecl
);
5632 if (tree arg0name
= DECL_NAME (arg0
))
5633 closure
= id_equal (arg0name
, "__closure");
5636 /* In calls to C++ non-static member functions check the this
5637 pointer regardless of whether the function is declared with
5638 attribute nonnull. */
5641 check_function_arguments_recurse (check_nonnull_arg
, &ctx
, argarray
[0],
5642 firstarg
, OPT_Wnonnull
);
5645 tree attrs
= lookup_attribute ("nonnull", TYPE_ATTRIBUTES (ctx
.fntype
));
5646 if (attrs
== NULL_TREE
)
5647 return ctx
.warned_p
;
5650 /* See if any of the nonnull attributes has no arguments. If so,
5651 then every pointer argument is checked (in which case the check
5652 for pointer type is done in check_nonnull_arg). */
5653 if (TREE_VALUE (a
) != NULL_TREE
)
5655 a
= lookup_attribute ("nonnull", TREE_CHAIN (a
));
5656 while (a
!= NULL_TREE
&& TREE_VALUE (a
) != NULL_TREE
);
5659 for (int i
= firstarg
; i
< nargs
; i
++)
5660 check_function_arguments_recurse (check_nonnull_arg
, &ctx
, argarray
[i
],
5661 i
+ 1, OPT_Wnonnull
);
5664 /* Walk the argument list. If we encounter an argument number we
5665 should check for non-null, do it. */
5666 for (int i
= firstarg
; i
< nargs
; i
++)
5668 for (a
= attrs
; ; a
= TREE_CHAIN (a
))
5670 a
= lookup_attribute ("nonnull", a
);
5671 if (a
== NULL_TREE
|| nonnull_check_p (TREE_VALUE (a
), i
+ 1))
5676 check_function_arguments_recurse (check_nonnull_arg
, &ctx
,
5681 return ctx
.warned_p
;
5684 /* Check that the Nth argument of a function call (counting backwards
5685 from the end) is a (pointer)0. The NARGS arguments are passed in the
5689 check_function_sentinel (const_tree fntype
, int nargs
, tree
*argarray
)
5691 tree attr
= lookup_attribute ("sentinel", TYPE_ATTRIBUTES (fntype
));
5698 function_args_iterator iter
;
5701 /* Skip over the named arguments. */
5702 FOREACH_FUNCTION_ARGS (fntype
, t
, iter
)
5709 if (TREE_VALUE (attr
))
5711 tree p
= TREE_VALUE (TREE_VALUE (attr
));
5712 pos
= TREE_INT_CST_LOW (p
);
5715 /* The sentinel must be one of the varargs, i.e.
5716 in position >= the number of fixed arguments. */
5717 if ((nargs
- 1 - pos
) < len
)
5719 warning (OPT_Wformat_
,
5720 "not enough variable arguments to fit a sentinel");
5724 /* Validate the sentinel. */
5725 sentinel
= fold_for_warn (argarray
[nargs
- 1 - pos
]);
5726 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel
))
5727 || !integer_zerop (sentinel
))
5728 /* Although __null (in C++) is only an integer we allow it
5729 nevertheless, as we are guaranteed that it's exactly
5730 as wide as a pointer, and we don't want to force
5731 users to cast the NULL they have written there.
5732 We warn with -Wstrict-null-sentinel, though. */
5733 && (warn_strict_null_sentinel
|| null_node
!= sentinel
))
5734 warning (OPT_Wformat_
, "missing sentinel in function call");
5738 /* Check that the same argument isn't passed to two or more
5739 restrict-qualified formal and issue a -Wrestrict warning
5740 if it is. Return true if a warning has been issued. */
5743 check_function_restrict (const_tree fndecl
, const_tree fntype
,
5744 int nargs
, tree
*unfolded_argarray
)
5747 tree parms
= TYPE_ARG_TYPES (fntype
);
5749 /* Call fold_for_warn on all of the arguments. */
5750 auto_vec
<tree
> argarray (nargs
);
5751 for (i
= 0; i
< nargs
; i
++)
5752 argarray
.quick_push (fold_for_warn (unfolded_argarray
[i
]));
5755 && TREE_CODE (fndecl
) == FUNCTION_DECL
)
5757 /* Avoid diagnosing calls built-ins with a zero size/bound
5758 here. They are checked in more detail elsewhere. */
5759 if (fndecl_built_in_p (fndecl
, BUILT_IN_NORMAL
)
5761 && TREE_CODE (argarray
[2]) == INTEGER_CST
5762 && integer_zerop (argarray
[2]))
5765 if (DECL_ARGUMENTS (fndecl
))
5766 parms
= DECL_ARGUMENTS (fndecl
);
5769 for (i
= 0; i
< nargs
; i
++)
5770 TREE_VISITED (argarray
[i
]) = 0;
5772 bool warned
= false;
5774 for (i
= 0; i
< nargs
&& parms
&& parms
!= void_list_node
; i
++)
5777 if (TREE_CODE (parms
) == PARM_DECL
)
5779 type
= TREE_TYPE (parms
);
5780 parms
= DECL_CHAIN (parms
);
5784 type
= TREE_VALUE (parms
);
5785 parms
= TREE_CHAIN (parms
);
5787 if (POINTER_TYPE_P (type
)
5788 && TYPE_RESTRICT (type
)
5789 && !TYPE_READONLY (TREE_TYPE (type
)))
5790 warned
|= warn_for_restrict (i
, argarray
.address (), nargs
);
5793 for (i
= 0; i
< nargs
; i
++)
5794 TREE_VISITED (argarray
[i
]) = 0;
5799 /* Helper for check_function_nonnull; given a list of operands which
5800 must be non-null in ARGS, determine if operand PARAM_NUM should be
5804 nonnull_check_p (tree args
, unsigned HOST_WIDE_INT param_num
)
5806 unsigned HOST_WIDE_INT arg_num
= 0;
5808 for (; args
; args
= TREE_CHAIN (args
))
5810 bool found
= get_attribute_operand (TREE_VALUE (args
), &arg_num
);
5814 if (arg_num
== param_num
)
5820 /* Check that the function argument PARAM (which is operand number
5821 PARAM_NUM) is non-null. This is called by check_function_nonnull
5822 via check_function_arguments_recurse. */
5825 check_nonnull_arg (void *ctx
, tree param
, unsigned HOST_WIDE_INT param_num
)
5827 struct nonnull_arg_ctx
*pctx
= (struct nonnull_arg_ctx
*) ctx
;
5829 /* Just skip checking the argument if it's not a pointer. This can
5830 happen if the "nonnull" attribute was given without an operand
5831 list (which means to check every pointer argument). */
5833 tree paramtype
= TREE_TYPE (param
);
5834 if (TREE_CODE (paramtype
) != POINTER_TYPE
5835 && TREE_CODE (paramtype
) != NULLPTR_TYPE
)
5838 /* Diagnose the simple cases of null arguments. */
5839 if (!integer_zerop (fold_for_warn (param
)))
5842 auto_diagnostic_group adg
;
5844 const location_t loc
= EXPR_LOC_OR_LOC (param
, pctx
->loc
);
5846 if (TREE_CODE (pctx
->fntype
) == METHOD_TYPE
)
5852 warned
= warning_at (loc
, OPT_Wnonnull
,
5853 "%qs pointer is null", "this");
5854 if (warned
&& pctx
->fndecl
)
5855 inform (DECL_SOURCE_LOCATION (pctx
->fndecl
),
5856 "in a call to non-static member function %qD",
5861 warned
= warning_at (loc
, OPT_Wnonnull
,
5862 "argument %u null where non-null expected",
5863 (unsigned) param_num
);
5864 if (warned
&& pctx
->fndecl
)
5865 inform (DECL_SOURCE_LOCATION (pctx
->fndecl
),
5866 "in a call to function %qD declared %qs",
5867 pctx
->fndecl
, "nonnull");
5871 pctx
->warned_p
= true;
5874 /* Helper for attribute handling; fetch the operand number from
5875 the attribute argument list. */
5878 get_attribute_operand (tree arg_num_expr
, unsigned HOST_WIDE_INT
*valp
)
5880 /* Verify the arg number is a small constant. */
5881 if (tree_fits_uhwi_p (arg_num_expr
))
5883 *valp
= tree_to_uhwi (arg_num_expr
);
5890 /* Arguments being collected for optimization. */
5891 typedef const char *const_char_p
; /* For DEF_VEC_P. */
5892 static GTY(()) vec
<const_char_p
, va_gc
> *optimize_args
;
5895 /* Inner function to convert a TREE_LIST to argv string to parse the optimize
5896 options in ARGS. ATTR_P is true if this is for attribute(optimize), and
5897 false for #pragma GCC optimize. */
5900 parse_optimize_options (tree args
, bool attr_p
)
5905 const char **opt_argv
;
5906 struct cl_decoded_option
*decoded_options
;
5907 unsigned int decoded_options_count
;
5910 /* Build up argv vector. Just in case the string is stored away, use garbage
5911 collected strings. */
5912 vec_safe_truncate (optimize_args
, 0);
5913 vec_safe_push (optimize_args
, (const char *) NULL
);
5915 for (ap
= args
; ap
!= NULL_TREE
; ap
= TREE_CHAIN (ap
))
5917 tree value
= TREE_VALUE (ap
);
5919 if (TREE_CODE (value
) == INTEGER_CST
)
5921 char buffer
[HOST_BITS_PER_LONG
/ 3 + 4];
5922 sprintf (buffer
, "-O%ld", (long) TREE_INT_CST_LOW (value
));
5923 vec_safe_push (optimize_args
, ggc_strdup (buffer
));
5926 else if (TREE_CODE (value
) == STRING_CST
)
5928 /* Split string into multiple substrings. */
5929 size_t len
= TREE_STRING_LENGTH (value
);
5930 char *p
= ASTRDUP (TREE_STRING_POINTER (value
));
5931 char *end
= p
+ len
;
5935 while (next_p
!= NULL
)
5941 comma
= strchr (p
, ',');
5954 /* If the user supplied -Oxxx or -fxxx, only allow -Oxxx or -fxxx
5956 if (*p
== '-' && p
[1] != 'O' && p
[1] != 'f')
5960 warning (OPT_Wattributes
,
5961 "bad option %qs to attribute %<optimize%>", p
);
5963 warning (OPT_Wpragmas
,
5964 "bad option %qs to pragma %<optimize%>", p
);
5968 /* Can't use GC memory here, see PR88007. */
5969 r
= q
= XOBNEWVEC (&opts_obstack
, char, len2
+ 3);
5975 /* Assume that Ox is -Ox, a numeric value is -Ox, a s by
5976 itself is -Os, and any other switch begins with a -f. */
5977 if ((*p
>= '0' && *p
<= '9')
5978 || (p
[0] == 's' && p
[1] == '\0'))
5984 memcpy (r
, p
, len2
);
5986 vec_safe_push (optimize_args
, (const char *) q
);
5992 opt_argc
= optimize_args
->length ();
5993 opt_argv
= (const char **) alloca (sizeof (char *) * (opt_argc
+ 1));
5995 for (i
= 1; i
< opt_argc
; i
++)
5996 opt_argv
[i
] = (*optimize_args
)[i
];
5998 /* Now parse the options. */
5999 decode_cmdline_options_to_array_default_mask (opt_argc
, opt_argv
,
6001 &decoded_options_count
);
6002 /* Drop non-Optimization options. */
6004 for (i
= 1; i
< decoded_options_count
; ++i
)
6006 if (! (cl_options
[decoded_options
[i
].opt_index
].flags
& CL_OPTIMIZATION
))
6010 warning (OPT_Wattributes
,
6011 "bad option %qs to attribute %<optimize%>",
6012 decoded_options
[i
].orig_option_with_args_text
);
6014 warning (OPT_Wpragmas
,
6015 "bad option %qs to pragma %<optimize%>",
6016 decoded_options
[i
].orig_option_with_args_text
);
6020 decoded_options
[j
] = decoded_options
[i
];
6023 decoded_options_count
= j
;
6025 /* Merge the decoded options with save_decoded_options. */
6026 unsigned save_opt_count
= save_opt_decoded_options
->length ();
6027 unsigned merged_decoded_options_count
6028 = save_opt_count
+ decoded_options_count
;
6029 cl_decoded_option
*merged_decoded_options
6030 = XNEWVEC (cl_decoded_option
, merged_decoded_options_count
);
6032 /* Note the first decoded_options is used for the program name. */
6033 for (unsigned i
= 0; i
< save_opt_count
; ++i
)
6034 merged_decoded_options
[i
+ 1] = (*save_opt_decoded_options
)[i
];
6035 for (unsigned i
= 1; i
< decoded_options_count
; ++i
)
6036 merged_decoded_options
[save_opt_count
+ i
] = decoded_options
[i
];
6038 /* And apply them. */
6039 decode_options (&global_options
, &global_options_set
,
6040 merged_decoded_options
, merged_decoded_options_count
,
6041 input_location
, global_dc
, NULL
);
6042 free (decoded_options
);
6044 targetm
.override_options_after_change();
6046 optimize_args
->truncate (0);
6050 /* Check whether ATTR is a valid attribute fallthrough. */
6053 attribute_fallthrough_p (tree attr
)
6055 if (attr
== error_mark_node
)
6057 tree t
= lookup_attribute ("", "fallthrough", attr
);
6060 /* It is no longer true that "this attribute shall appear at most once in
6061 each attribute-list", but we still give a warning. */
6062 if (lookup_attribute ("", "fallthrough", TREE_CHAIN (t
)))
6063 warning (OPT_Wattributes
, "attribute %<fallthrough%> specified multiple "
6065 /* No attribute-argument-clause shall be present. */
6066 else if (TREE_VALUE (t
) != NULL_TREE
)
6067 warning (OPT_Wattributes
, "%<fallthrough%> attribute specified with "
6069 /* Warn if other attributes are found. */
6070 for (t
= attr
; t
!= NULL_TREE
; t
= TREE_CHAIN (t
))
6072 tree name
= get_attribute_name (t
);
6073 if (!is_attribute_p ("fallthrough", name
)
6074 || !is_attribute_namespace_p ("", t
))
6076 if (!c_dialect_cxx () && get_attribute_namespace (t
) == NULL_TREE
)
6077 /* The specifications of standard attributes in C mean
6078 this is a constraint violation. */
6079 pedwarn (input_location
, OPT_Wattributes
, "%qE attribute ignored",
6080 get_attribute_name (t
));
6082 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
6089 /* Check for valid arguments being passed to a function with FNTYPE.
6090 There are NARGS arguments in the array ARGARRAY. LOC should be used
6091 for diagnostics. Return true if either -Wnonnull or -Wrestrict has
6094 The arguments in ARGARRAY may not have been folded yet (e.g. for C++,
6095 to preserve location wrappers); checks that require folded arguments
6096 should call fold_for_warn on them. */
6099 check_function_arguments (location_t loc
, const_tree fndecl
, const_tree fntype
,
6100 int nargs
, tree
*argarray
, vec
<location_t
> *arglocs
)
6102 bool warned_p
= false;
6104 /* Check for null being passed in a pointer argument that must be
6105 non-null. In C++, this includes the this pointer. We also need
6106 to do this if format checking is enabled. */
6109 nonnull_arg_ctx ctx
= { loc
, fndecl
, fntype
, false };
6110 warned_p
= check_function_nonnull (ctx
, nargs
, argarray
);
6113 /* Check for errors in format strings. */
6115 if (warn_format
|| warn_suggest_attribute_format
)
6116 check_function_format (fndecl
? fndecl
: fntype
, TYPE_ATTRIBUTES (fntype
), nargs
,
6120 check_function_sentinel (fntype
, nargs
, argarray
);
6122 if (fndecl
&& fndecl_built_in_p (fndecl
, BUILT_IN_NORMAL
))
6124 switch (DECL_FUNCTION_CODE (fndecl
))
6126 case BUILT_IN_SPRINTF
:
6127 case BUILT_IN_SPRINTF_CHK
:
6128 case BUILT_IN_SNPRINTF
:
6129 case BUILT_IN_SNPRINTF_CHK
:
6130 /* Let the sprintf pass handle these. */
6138 /* check_function_restrict sets the DECL_READ_P for arguments
6139 so it must be called unconditionally. */
6140 warned_p
|= check_function_restrict (fndecl
, fntype
, nargs
, argarray
);
6145 /* Generic argument checking recursion routine. PARAM is the argument to
6146 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
6147 once the argument is resolved. CTX is context for the callback.
6148 OPT is the warning for which this is done. */
6150 check_function_arguments_recurse (void (*callback
)
6151 (void *, tree
, unsigned HOST_WIDE_INT
),
6152 void *ctx
, tree param
,
6153 unsigned HOST_WIDE_INT param_num
,
6156 if (opt
!= OPT_Wformat_
&& warning_suppressed_p (param
))
6159 if (CONVERT_EXPR_P (param
)
6160 && (TYPE_PRECISION (TREE_TYPE (param
))
6161 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param
, 0)))))
6163 /* Strip coercion. */
6164 check_function_arguments_recurse (callback
, ctx
,
6165 TREE_OPERAND (param
, 0), param_num
,
6170 if (TREE_CODE (param
) == CALL_EXPR
&& CALL_EXPR_FN (param
))
6172 tree type
= TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param
)));
6174 bool found_format_arg
= false;
6176 /* See if this is a call to a known internationalization function
6177 that modifies a format arg. Such a function may have multiple
6178 format_arg attributes (for example, ngettext). */
6180 for (attrs
= TYPE_ATTRIBUTES (type
);
6182 attrs
= TREE_CHAIN (attrs
))
6183 if (is_attribute_p ("format_arg", get_attribute_name (attrs
)))
6186 tree format_num_expr
;
6189 call_expr_arg_iterator iter
;
6191 /* Extract the argument number, which was previously checked
6193 format_num_expr
= TREE_VALUE (TREE_VALUE (attrs
));
6195 format_num
= tree_to_uhwi (format_num_expr
);
6197 for (inner_arg
= first_call_expr_arg (param
, &iter
), i
= 1;
6198 inner_arg
!= NULL_TREE
;
6199 inner_arg
= next_call_expr_arg (&iter
), i
++)
6200 if (i
== format_num
)
6202 check_function_arguments_recurse (callback
, ctx
,
6203 inner_arg
, param_num
,
6205 found_format_arg
= true;
6210 /* If we found a format_arg attribute and did a recursive check,
6211 we are done with checking this argument. Otherwise, we continue
6212 and this will be considered a non-literal. */
6213 if (found_format_arg
)
6217 if (TREE_CODE (param
) == COND_EXPR
)
6219 /* Simplify to avoid warning for an impossible case. */
6220 param
= fold_for_warn (param
);
6221 if (TREE_CODE (param
) == COND_EXPR
)
6223 /* Check both halves of the conditional expression. */
6224 check_function_arguments_recurse (callback
, ctx
,
6225 TREE_OPERAND (param
, 1),
6227 check_function_arguments_recurse (callback
, ctx
,
6228 TREE_OPERAND (param
, 2),
6234 (*callback
) (ctx
, param
, param_num
);
6237 /* Checks for a builtin function FNDECL that the number of arguments
6238 NARGS against the required number REQUIRED and issues an error if
6239 there is a mismatch. Returns true if the number of arguments is
6240 correct, otherwise false. LOC is the location of FNDECL. */
6243 builtin_function_validate_nargs (location_t loc
, tree fndecl
, int nargs
,
6246 if (nargs
< required
)
6248 error_at (loc
, "too few arguments to function %qE", fndecl
);
6251 else if (nargs
> required
)
6253 error_at (loc
, "too many arguments to function %qE", fndecl
);
6259 /* Helper macro for check_builtin_function_arguments. */
6260 #define ARG_LOCATION(N) \
6261 (arg_loc.is_empty () \
6262 ? EXPR_LOC_OR_LOC (args[(N)], input_location) \
6263 : expansion_point_location (arg_loc[(N)]))
6265 /* Verifies the NARGS arguments ARGS to the builtin function FNDECL.
6266 Returns false if there was an error, otherwise true. LOC is the
6267 location of the function; ARG_LOC is a vector of locations of the
6268 arguments. If FNDECL is the result of resolving an overloaded
6269 target built-in, ORIG_FNDECL is the original function decl,
6270 otherwise it is null. */
6273 check_builtin_function_arguments (location_t loc
, vec
<location_t
> arg_loc
,
6274 tree fndecl
, tree orig_fndecl
,
6275 int nargs
, tree
*args
)
6277 if (!fndecl_built_in_p (fndecl
))
6280 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_MD
)
6281 return (!targetm
.check_builtin_call
6282 || targetm
.check_builtin_call (loc
, arg_loc
, fndecl
,
6283 orig_fndecl
, nargs
, args
));
6285 if (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_FRONTEND
)
6288 gcc_assert (DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
);
6289 switch (DECL_FUNCTION_CODE (fndecl
))
6291 case BUILT_IN_ALLOCA_WITH_ALIGN_AND_MAX
:
6292 if (!tree_fits_uhwi_p (args
[2]))
6294 error_at (ARG_LOCATION (2),
6295 "third argument to function %qE must be a constant integer",
6301 case BUILT_IN_ALLOCA_WITH_ALIGN
:
6303 /* Get the requested alignment (in bits) if it's a constant
6304 integer expression. */
6305 unsigned HOST_WIDE_INT align
6306 = tree_fits_uhwi_p (args
[1]) ? tree_to_uhwi (args
[1]) : 0;
6308 /* Determine if the requested alignment is a power of 2. */
6309 if ((align
& (align
- 1)))
6312 /* The maximum alignment in bits corresponding to the same
6313 maximum in bytes enforced in check_user_alignment(). */
6314 unsigned maxalign
= (UINT_MAX
>> 1) + 1;
6316 /* Reject invalid alignments. */
6317 if (align
< BITS_PER_UNIT
|| maxalign
< align
)
6319 error_at (ARG_LOCATION (1),
6320 "second argument to function %qE must be a constant "
6321 "integer power of 2 between %qi and %qu bits",
6322 fndecl
, BITS_PER_UNIT
, maxalign
);
6328 case BUILT_IN_CONSTANT_P
:
6329 return builtin_function_validate_nargs (loc
, fndecl
, nargs
, 1);
6331 case BUILT_IN_ISFINITE
:
6332 case BUILT_IN_ISINF
:
6333 case BUILT_IN_ISINF_SIGN
:
6334 case BUILT_IN_ISNAN
:
6335 case BUILT_IN_ISNORMAL
:
6336 case BUILT_IN_ISSIGNALING
:
6337 case BUILT_IN_SIGNBIT
:
6338 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 1))
6340 if (TREE_CODE (TREE_TYPE (args
[0])) != REAL_TYPE
)
6342 error_at (ARG_LOCATION (0), "non-floating-point argument in "
6343 "call to function %qE", fndecl
);
6350 case BUILT_IN_ISGREATER
:
6351 case BUILT_IN_ISGREATEREQUAL
:
6352 case BUILT_IN_ISLESS
:
6353 case BUILT_IN_ISLESSEQUAL
:
6354 case BUILT_IN_ISLESSGREATER
:
6355 case BUILT_IN_ISUNORDERED
:
6356 case BUILT_IN_ISEQSIG
:
6357 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 2))
6359 enum tree_code code0
, code1
;
6360 code0
= TREE_CODE (TREE_TYPE (args
[0]));
6361 code1
= TREE_CODE (TREE_TYPE (args
[1]));
6362 if (!((code0
== REAL_TYPE
&& code1
== REAL_TYPE
)
6363 || (code0
== REAL_TYPE
6364 && (code1
== INTEGER_TYPE
|| code1
== BITINT_TYPE
))
6365 || ((code0
== INTEGER_TYPE
|| code0
== BITINT_TYPE
)
6366 && code1
== REAL_TYPE
)))
6368 error_at (loc
, "non-floating-point arguments in call to "
6369 "function %qE", fndecl
);
6376 case BUILT_IN_FPCLASSIFY
:
6377 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 6))
6379 for (unsigned int i
= 0; i
< 5; i
++)
6380 if (TREE_CODE (args
[i
]) != INTEGER_CST
)
6382 error_at (ARG_LOCATION (i
), "non-const integer argument %u in "
6383 "call to function %qE", i
+ 1, fndecl
);
6387 if (TREE_CODE (TREE_TYPE (args
[5])) != REAL_TYPE
)
6389 error_at (ARG_LOCATION (5), "non-floating-point argument in "
6390 "call to function %qE", fndecl
);
6397 case BUILT_IN_ASSUME_ALIGNED
:
6398 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 2 + (nargs
> 2)))
6401 && TREE_CODE (TREE_TYPE (args
[2])) != INTEGER_TYPE
6402 && TREE_CODE (TREE_TYPE (args
[2])) != BITINT_TYPE
)
6404 error_at (ARG_LOCATION (2), "non-integer argument 3 in call to "
6405 "function %qE", fndecl
);
6412 case BUILT_IN_ADD_OVERFLOW
:
6413 case BUILT_IN_SUB_OVERFLOW
:
6414 case BUILT_IN_MUL_OVERFLOW
:
6415 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 3))
6418 for (i
= 0; i
< 2; i
++)
6419 if (!INTEGRAL_TYPE_P (TREE_TYPE (args
[i
])))
6421 error_at (ARG_LOCATION (i
), "argument %u in call to function "
6422 "%qE does not have integral type", i
+ 1, fndecl
);
6425 if (TREE_CODE (TREE_TYPE (args
[2])) != POINTER_TYPE
6426 || !INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (args
[2]))))
6428 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
6429 "does not have pointer to integral type", fndecl
);
6432 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args
[2]))) == ENUMERAL_TYPE
)
6434 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
6435 "has pointer to enumerated type", fndecl
);
6438 else if (TREE_CODE (TREE_TYPE (TREE_TYPE (args
[2]))) == BOOLEAN_TYPE
)
6440 error_at (ARG_LOCATION (2), "argument 3 in call to function %qE "
6441 "has pointer to boolean type", fndecl
);
6444 else if (TYPE_READONLY (TREE_TYPE (TREE_TYPE (args
[2]))))
6446 error_at (ARG_LOCATION (2), "argument %u in call to function %qE "
6447 "has pointer to %qs type (%qT)", 3, fndecl
, "const",
6448 TREE_TYPE (args
[2]));
6451 else if (TYPE_ATOMIC (TREE_TYPE (TREE_TYPE (args
[2]))))
6453 error_at (ARG_LOCATION (2), "argument %u in call to function %qE "
6454 "has pointer to %qs type (%qT)", 3, fndecl
,
6455 "_Atomic", TREE_TYPE (args
[2]));
6462 case BUILT_IN_ADD_OVERFLOW_P
:
6463 case BUILT_IN_SUB_OVERFLOW_P
:
6464 case BUILT_IN_MUL_OVERFLOW_P
:
6465 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 3))
6468 for (i
= 0; i
< 3; i
++)
6469 if (!INTEGRAL_TYPE_P (TREE_TYPE (args
[i
])))
6471 error_at (ARG_LOCATION (i
), "argument %u in call to function "
6472 "%qE does not have integral type", i
+ 1, fndecl
);
6475 if (TREE_CODE (TREE_TYPE (args
[2])) == ENUMERAL_TYPE
)
6477 error_at (ARG_LOCATION (2), "argument 3 in call to function "
6478 "%qE has enumerated type", fndecl
);
6481 else if (TREE_CODE (TREE_TYPE (args
[2])) == BOOLEAN_TYPE
)
6483 error_at (ARG_LOCATION (2), "argument 3 in call to function "
6484 "%qE has boolean type", fndecl
);
6491 case BUILT_IN_CLEAR_PADDING
:
6492 if (builtin_function_validate_nargs (loc
, fndecl
, nargs
, 1))
6494 if (!POINTER_TYPE_P (TREE_TYPE (args
[0])))
6496 error_at (ARG_LOCATION (0), "argument %u in call to function "
6497 "%qE does not have pointer type", 1, fndecl
);
6500 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (args
[0]))))
6502 error_at (ARG_LOCATION (0), "argument %u in call to function "
6503 "%qE points to incomplete type", 1, fndecl
);
6506 else if (TYPE_READONLY (TREE_TYPE (TREE_TYPE (args
[0]))))
6508 error_at (ARG_LOCATION (0), "argument %u in call to function %qE "
6509 "has pointer to %qs type (%qT)", 1, fndecl
, "const",
6510 TREE_TYPE (args
[0]));
6513 else if (TYPE_ATOMIC (TREE_TYPE (TREE_TYPE (args
[0]))))
6515 error_at (ARG_LOCATION (0), "argument %u in call to function %qE "
6516 "has pointer to %qs type (%qT)", 1, fndecl
,
6517 "_Atomic", TREE_TYPE (args
[0]));
6529 /* Subroutine of c_parse_error.
6530 Return the result of concatenating LHS and RHS. RHS is really
6531 a string literal, its first character is indicated by RHS_START and
6532 RHS_SIZE is its length (including the terminating NUL character).
6534 The caller is responsible for deleting the returned pointer. */
6537 catenate_strings (const char *lhs
, const char *rhs_start
, int rhs_size
)
6539 const size_t lhs_size
= strlen (lhs
);
6540 char *result
= XNEWVEC (char, lhs_size
+ rhs_size
);
6541 memcpy (result
, lhs
, lhs_size
);
6542 memcpy (result
+ lhs_size
, rhs_start
, rhs_size
);
6546 /* Issue the error given by GMSGID at RICHLOC, indicating that it occurred
6547 before TOKEN, which had the associated VALUE. */
6550 c_parse_error (const char *gmsgid
, enum cpp_ttype token_type
,
6551 tree value
, unsigned char token_flags
,
6552 rich_location
*richloc
)
6554 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
6556 char *message
= NULL
;
6558 if (token_type
== CPP_EOF
)
6559 message
= catenate_messages (gmsgid
, " at end of input");
6560 else if (token_type
== CPP_CHAR
6561 || token_type
== CPP_WCHAR
6562 || token_type
== CPP_CHAR16
6563 || token_type
== CPP_CHAR32
6564 || token_type
== CPP_UTF8CHAR
)
6566 unsigned int val
= TREE_INT_CST_LOW (value
);
6588 if (val
<= UCHAR_MAX
&& ISGRAPH (val
))
6589 message
= catenate_messages (gmsgid
, " before %s'%c'");
6591 message
= catenate_messages (gmsgid
, " before %s'\\x%x'");
6593 error_at (richloc
, message
, prefix
, val
);
6597 else if (token_type
== CPP_CHAR_USERDEF
6598 || token_type
== CPP_WCHAR_USERDEF
6599 || token_type
== CPP_CHAR16_USERDEF
6600 || token_type
== CPP_CHAR32_USERDEF
6601 || token_type
== CPP_UTF8CHAR_USERDEF
)
6602 message
= catenate_messages (gmsgid
,
6603 " before user-defined character literal");
6604 else if (token_type
== CPP_STRING_USERDEF
6605 || token_type
== CPP_WSTRING_USERDEF
6606 || token_type
== CPP_STRING16_USERDEF
6607 || token_type
== CPP_STRING32_USERDEF
6608 || token_type
== CPP_UTF8STRING_USERDEF
)
6609 message
= catenate_messages (gmsgid
, " before user-defined string literal");
6610 else if (token_type
== CPP_STRING
6611 || token_type
== CPP_WSTRING
6612 || token_type
== CPP_STRING16
6613 || token_type
== CPP_STRING32
6614 || token_type
== CPP_UTF8STRING
)
6615 message
= catenate_messages (gmsgid
, " before string constant");
6616 else if (token_type
== CPP_NUMBER
)
6617 message
= catenate_messages (gmsgid
, " before numeric constant");
6618 else if (token_type
== CPP_NAME
)
6620 message
= catenate_messages (gmsgid
, " before %qE");
6621 error_at (richloc
, message
, value
);
6625 else if (token_type
== CPP_PRAGMA
)
6626 message
= catenate_messages (gmsgid
, " before %<#pragma%>");
6627 else if (token_type
== CPP_PRAGMA_EOL
)
6628 message
= catenate_messages (gmsgid
, " before end of line");
6629 else if (token_type
== CPP_DECLTYPE
)
6630 message
= catenate_messages (gmsgid
, " before %<decltype%>");
6631 else if (token_type
< N_TTYPES
)
6633 message
= catenate_messages (gmsgid
, " before %qs token");
6634 error_at (richloc
, message
, cpp_type2name (token_type
, token_flags
));
6639 error_at (richloc
, gmsgid
);
6643 error_at (richloc
, message
);
6646 #undef catenate_messages
6649 /* Return the gcc option code associated with the reason for a cpp
6650 message, or 0 if none. */
6653 c_option_controlling_cpp_diagnostic (enum cpp_warning_reason reason
)
6655 const struct cpp_reason_option_codes_t
*entry
;
6657 for (entry
= cpp_reason_option_codes
; entry
->reason
!= CPP_W_NONE
; entry
++)
6659 if (entry
->reason
== reason
)
6660 return entry
->option_code
;
6665 /* Return TRUE if the given option index corresponds to a diagnostic
6666 issued by libcpp. Linear search seems fine for now. */
6668 c_option_is_from_cpp_diagnostics (int option_index
)
6670 for (auto entry
= cpp_reason_option_codes
; entry
->reason
!= CPP_W_NONE
;
6673 if (entry
->option_code
== option_index
)
6679 /* Callback from cpp_diagnostic for PFILE to print diagnostics from the
6680 preprocessor. The diagnostic is of type LEVEL, with REASON set
6681 to the reason code if LEVEL is represents a warning, at location
6682 RICHLOC unless this is after lexing and the compiler's location
6683 should be used instead; MSG is the translated message and AP
6684 the arguments. Returns true if a diagnostic was emitted, false
6688 c_cpp_diagnostic (cpp_reader
*pfile ATTRIBUTE_UNUSED
,
6689 enum cpp_diagnostic_level level
,
6690 enum cpp_warning_reason reason
,
6691 rich_location
*richloc
,
6692 const char *msg
, va_list *ap
)
6694 diagnostic_info diagnostic
;
6695 diagnostic_t dlevel
;
6696 bool save_warn_system_headers
= global_dc
->dc_warn_system_headers
;
6701 case CPP_DL_WARNING_SYSHDR
:
6704 global_dc
->dc_warn_system_headers
= 1;
6706 case CPP_DL_WARNING
:
6709 dlevel
= DK_WARNING
;
6711 case CPP_DL_PEDWARN
:
6712 if (flag_no_output
&& !flag_pedantic_errors
)
6714 dlevel
= DK_PEDWARN
;
6731 if (override_libcpp_locations
)
6732 richloc
->set_range (0, input_location
, SHOW_RANGE_WITH_CARET
);
6733 diagnostic_set_info_translated (&diagnostic
, msg
, ap
,
6735 diagnostic_override_option_index
6737 c_option_controlling_cpp_diagnostic (reason
));
6738 ret
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
6739 if (level
== CPP_DL_WARNING_SYSHDR
)
6740 global_dc
->dc_warn_system_headers
= save_warn_system_headers
;
6744 /* Convert a character from the host to the target execution character
6745 set. cpplib handles this, mostly. */
6748 c_common_to_target_charset (HOST_WIDE_INT c
)
6750 /* Character constants in GCC proper are sign-extended under -fsigned-char,
6751 zero-extended under -fno-signed-char. cpplib insists that characters
6752 and character constants are always unsigned. Hence we must convert
6754 cppchar_t uc
= ((cppchar_t
)c
) & ((((cppchar_t
)1) << CHAR_BIT
)-1);
6756 uc
= cpp_host_to_exec_charset (parse_in
, uc
);
6758 if (flag_signed_char
)
6759 return ((HOST_WIDE_INT
)uc
) << (HOST_BITS_PER_WIDE_INT
- CHAR_TYPE_SIZE
)
6760 >> (HOST_BITS_PER_WIDE_INT
- CHAR_TYPE_SIZE
);
6765 /* Fold an offsetof-like expression. EXPR is a nested sequence of component
6766 references with an INDIRECT_REF of a constant at the bottom; much like the
6767 traditional rendering of offsetof as a macro. TYPE is the desired type of
6768 the whole expression. Return the folded result. */
6771 fold_offsetof (tree expr
, tree type
, enum tree_code ctx
)
6774 tree_code code
= TREE_CODE (expr
);
6781 error ("cannot apply %<offsetof%> to static data member %qD", expr
);
6782 return error_mark_node
;
6786 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
6787 return error_mark_node
;
6791 if (!TREE_CONSTANT (TREE_OPERAND (expr
, 0)))
6793 error ("cannot apply %<offsetof%> to a non constant address");
6794 return error_mark_node
;
6796 return convert (type
, TREE_OPERAND (expr
, 0));
6799 base
= fold_offsetof (TREE_OPERAND (expr
, 0), type
, code
);
6800 if (base
== error_mark_node
)
6803 t
= TREE_OPERAND (expr
, 1);
6804 if (DECL_C_BIT_FIELD (t
))
6806 error ("attempt to take address of bit-field structure "
6808 return error_mark_node
;
6810 off
= size_binop_loc (input_location
, PLUS_EXPR
, DECL_FIELD_OFFSET (t
),
6811 size_int (tree_to_uhwi (DECL_FIELD_BIT_OFFSET (t
))
6816 base
= fold_offsetof (TREE_OPERAND (expr
, 0), type
, code
);
6817 if (base
== error_mark_node
)
6820 t
= TREE_OPERAND (expr
, 1);
6821 STRIP_ANY_LOCATION_WRAPPER (t
);
6823 /* Check if the offset goes beyond the upper bound of the array. */
6824 if (TREE_CODE (t
) == INTEGER_CST
&& tree_int_cst_sgn (t
) >= 0)
6826 tree upbound
= array_ref_up_bound (expr
);
6827 if (upbound
!= NULL_TREE
6828 && TREE_CODE (upbound
) == INTEGER_CST
6829 && !tree_int_cst_equal (upbound
,
6830 TYPE_MAX_VALUE (TREE_TYPE (upbound
))))
6832 if (ctx
!= ARRAY_REF
&& ctx
!= COMPONENT_REF
)
6833 upbound
= size_binop (PLUS_EXPR
, upbound
,
6834 build_int_cst (TREE_TYPE (upbound
), 1));
6835 if (tree_int_cst_lt (upbound
, t
))
6839 for (v
= TREE_OPERAND (expr
, 0);
6840 TREE_CODE (v
) == COMPONENT_REF
;
6841 v
= TREE_OPERAND (v
, 0))
6842 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (v
, 0)))
6845 tree fld_chain
= DECL_CHAIN (TREE_OPERAND (v
, 1));
6846 for (; fld_chain
; fld_chain
= DECL_CHAIN (fld_chain
))
6847 if (TREE_CODE (fld_chain
) == FIELD_DECL
)
6853 /* Don't warn if the array might be considered a poor
6854 man's flexible array member with a very permissive
6855 definition thereof. */
6856 if (TREE_CODE (v
) == ARRAY_REF
6857 || TREE_CODE (v
) == COMPONENT_REF
)
6858 warning (OPT_Warray_bounds_
,
6859 "index %E denotes an offset "
6860 "greater than size of %qT",
6861 t
, TREE_TYPE (TREE_OPERAND (expr
, 0)));
6866 t
= convert (sizetype
, t
);
6867 off
= size_binop (MULT_EXPR
, TYPE_SIZE_UNIT (TREE_TYPE (expr
)), t
);
6871 /* Handle static members of volatile structs. */
6872 t
= TREE_OPERAND (expr
, 1);
6873 gcc_checking_assert (VAR_P (get_base_address (t
)));
6874 return fold_offsetof (t
, type
);
6880 if (!POINTER_TYPE_P (type
))
6881 return size_binop (PLUS_EXPR
, base
, convert (type
, off
));
6882 return fold_build_pointer_plus (base
, off
);
6885 /* *PTYPE is an incomplete array. Complete it with a domain based on
6886 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
6887 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
6888 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
6891 complete_array_type (tree
*ptype
, tree initial_value
, bool do_default
)
6893 tree maxindex
, type
, main_type
, elt
, unqual_elt
;
6894 int failure
= 0, quals
;
6895 bool overflow_p
= false;
6897 maxindex
= size_zero_node
;
6900 STRIP_ANY_LOCATION_WRAPPER (initial_value
);
6902 if (TREE_CODE (initial_value
) == STRING_CST
)
6905 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value
)));
6906 maxindex
= size_int (TREE_STRING_LENGTH (initial_value
)/eltsize
- 1);
6908 else if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
6910 vec
<constructor_elt
, va_gc
> *v
= CONSTRUCTOR_ELTS (initial_value
);
6912 if (vec_safe_is_empty (v
))
6916 maxindex
= ssize_int (-1);
6921 unsigned HOST_WIDE_INT cnt
;
6922 constructor_elt
*ce
;
6923 bool fold_p
= false;
6926 maxindex
= (*v
)[0].index
, fold_p
= true;
6928 curindex
= maxindex
;
6930 for (cnt
= 1; vec_safe_iterate (v
, cnt
, &ce
); cnt
++)
6932 bool curfold_p
= false;
6934 curindex
= ce
->index
, curfold_p
= true;
6939 /* Since we treat size types now as ordinary
6940 unsigned types, we need an explicit overflow
6942 tree orig
= curindex
;
6943 curindex
= fold_convert (sizetype
, curindex
);
6944 overflow_p
|= tree_int_cst_lt (curindex
, orig
);
6946 curindex
= size_binop (PLUS_EXPR
, curindex
,
6949 if (tree_int_cst_lt (maxindex
, curindex
))
6950 maxindex
= curindex
, fold_p
= curfold_p
;
6954 tree orig
= maxindex
;
6955 maxindex
= fold_convert (sizetype
, maxindex
);
6956 overflow_p
|= tree_int_cst_lt (maxindex
, orig
);
6962 /* Make an error message unless that happened already. */
6963 if (initial_value
!= error_mark_node
)
6975 elt
= TREE_TYPE (type
);
6976 quals
= TYPE_QUALS (strip_array_types (elt
));
6980 unqual_elt
= c_build_qualified_type (elt
, KEEP_QUAL_ADDR_SPACE (quals
));
6982 /* Using build_distinct_type_copy and modifying things afterward instead
6983 of using build_array_type to create a new type preserves all of the
6984 TYPE_LANG_FLAG_? bits that the front end may have set. */
6985 main_type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
6986 TREE_TYPE (main_type
) = unqual_elt
;
6987 TYPE_DOMAIN (main_type
)
6988 = build_range_type (TREE_TYPE (maxindex
),
6989 build_int_cst (TREE_TYPE (maxindex
), 0), maxindex
);
6990 TYPE_TYPELESS_STORAGE (main_type
) = TYPE_TYPELESS_STORAGE (type
);
6991 layout_type (main_type
);
6993 /* Make sure we have the canonical MAIN_TYPE. */
6994 hashval_t hashcode
= type_hash_canon_hash (main_type
);
6995 main_type
= type_hash_canon (hashcode
, main_type
);
6997 /* Fix the canonical type. */
6998 if (TYPE_STRUCTURAL_EQUALITY_P (TREE_TYPE (main_type
))
6999 || TYPE_STRUCTURAL_EQUALITY_P (TYPE_DOMAIN (main_type
)))
7000 SET_TYPE_STRUCTURAL_EQUALITY (main_type
);
7001 else if (TYPE_CANONICAL (TREE_TYPE (main_type
)) != TREE_TYPE (main_type
)
7002 || (TYPE_CANONICAL (TYPE_DOMAIN (main_type
))
7003 != TYPE_DOMAIN (main_type
)))
7004 TYPE_CANONICAL (main_type
)
7005 = build_array_type (TYPE_CANONICAL (TREE_TYPE (main_type
)),
7006 TYPE_CANONICAL (TYPE_DOMAIN (main_type
)),
7007 TYPE_TYPELESS_STORAGE (main_type
));
7009 TYPE_CANONICAL (main_type
) = main_type
;
7014 type
= c_build_qualified_type (main_type
, quals
);
7016 if (COMPLETE_TYPE_P (type
)
7017 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
7018 && (overflow_p
|| TREE_OVERFLOW (TYPE_SIZE_UNIT (type
))))
7020 error ("size of array is too large");
7021 /* If we proceed with the array type as it is, we'll eventually
7022 crash in tree_to_[su]hwi(). */
7023 type
= error_mark_node
;
7030 /* INIT is an constructor of a structure with a flexible array member.
7031 Complete the flexible array member with a domain based on it's value. */
7033 complete_flexible_array_elts (tree init
)
7037 if (init
== NULL_TREE
|| TREE_CODE (init
) != CONSTRUCTOR
)
7040 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init
)))
7043 elt
= CONSTRUCTOR_ELTS (init
)->last ().value
;
7044 type
= TREE_TYPE (elt
);
7045 if (TREE_CODE (type
) == ARRAY_TYPE
7046 && TYPE_SIZE (type
) == NULL_TREE
)
7047 complete_array_type (&TREE_TYPE (elt
), elt
, false);
7049 complete_flexible_array_elts (elt
);
7052 /* Like c_mark_addressable but don't check register qualifier. */
7054 c_common_mark_addressable_vec (tree t
)
7056 while (handled_component_p (t
) || TREE_CODE (t
) == C_MAYBE_CONST_EXPR
)
7058 if (TREE_CODE (t
) == C_MAYBE_CONST_EXPR
)
7059 t
= C_MAYBE_CONST_EXPR_EXPR (t
);
7061 t
= TREE_OPERAND (t
, 0);
7064 && TREE_CODE (t
) != PARM_DECL
7065 && TREE_CODE (t
) != COMPOUND_LITERAL_EXPR
7066 && TREE_CODE (t
) != TARGET_EXPR
)
7068 if (!VAR_P (t
) || !DECL_HARD_REGISTER (t
))
7069 TREE_ADDRESSABLE (t
) = 1;
7070 if (TREE_CODE (t
) == COMPOUND_LITERAL_EXPR
)
7071 TREE_ADDRESSABLE (COMPOUND_LITERAL_EXPR_DECL (t
)) = 1;
7072 else if (TREE_CODE (t
) == TARGET_EXPR
)
7073 TREE_ADDRESSABLE (TARGET_EXPR_SLOT (t
)) = 1;
7078 /* Used to help initialize the builtin-types.def table. When a type of
7079 the correct size doesn't exist, use error_mark_node instead of NULL.
7080 The later results in segfaults even when a decl using the type doesn't
7084 builtin_type_for_size (int size
, bool unsignedp
)
7086 tree type
= c_common_type_for_size (size
, unsignedp
);
7087 return type
? type
: error_mark_node
;
7090 /* Work out the size of the first argument of a call to
7091 __builtin_speculation_safe_value. Only pointers and integral types
7092 are permitted. Return -1 if the argument type is not supported or
7093 the size is too large; 0 if the argument type is a pointer or the
7094 size if it is integral. */
7095 static enum built_in_function
7096 speculation_safe_value_resolve_call (tree function
, vec
<tree
, va_gc
> *params
)
7098 /* Type of the argument. */
7102 if (vec_safe_is_empty (params
))
7104 error ("too few arguments to function %qE", function
);
7105 return BUILT_IN_NONE
;
7108 type
= TREE_TYPE ((*params
)[0]);
7109 if (TREE_CODE (type
) == ARRAY_TYPE
&& c_dialect_cxx ())
7111 /* Force array-to-pointer decay for C++. */
7112 (*params
)[0] = default_conversion ((*params
)[0]);
7113 type
= TREE_TYPE ((*params
)[0]);
7116 if (POINTER_TYPE_P (type
))
7117 return BUILT_IN_SPECULATION_SAFE_VALUE_PTR
;
7119 if (!INTEGRAL_TYPE_P (type
))
7122 if (!COMPLETE_TYPE_P (type
))
7125 size
= tree_to_uhwi (TYPE_SIZE_UNIT (type
));
7126 if (size
== 1 || size
== 2 || size
== 4 || size
== 8 || size
== 16)
7127 return ((enum built_in_function
)
7128 ((int) BUILT_IN_SPECULATION_SAFE_VALUE_1
+ exact_log2 (size
)));
7131 /* Issue the diagnostic only if the argument is valid, otherwise
7132 it would be redundant at best and could be misleading. */
7133 if (type
!= error_mark_node
)
7134 error ("operand type %qT is incompatible with argument %d of %qE",
7137 return BUILT_IN_NONE
;
7140 /* Validate and coerce PARAMS, the arguments to ORIG_FUNCTION to fit
7141 the prototype for FUNCTION. The first argument is mandatory, a second
7142 argument, if present, must be type compatible with the first. */
7144 speculation_safe_value_resolve_params (location_t loc
, tree orig_function
,
7145 vec
<tree
, va_gc
> *params
)
7149 if (params
->length () == 0)
7151 error_at (loc
, "too few arguments to function %qE", orig_function
);
7155 else if (params
->length () > 2)
7157 error_at (loc
, "too many arguments to function %qE", orig_function
);
7162 if (TREE_CODE (TREE_TYPE (val
)) == ARRAY_TYPE
)
7163 val
= default_conversion (val
);
7164 if (!(TREE_CODE (TREE_TYPE (val
)) == POINTER_TYPE
7165 || TREE_CODE (TREE_TYPE (val
)) == INTEGER_TYPE
))
7168 "expecting argument of type pointer or of type integer "
7174 if (params
->length () == 2)
7176 tree val2
= (*params
)[1];
7177 if (TREE_CODE (TREE_TYPE (val2
)) == ARRAY_TYPE
)
7178 val2
= default_conversion (val2
);
7179 if (error_operand_p (val2
))
7181 if (!(TREE_TYPE (val
) == TREE_TYPE (val2
)
7182 || useless_type_conversion_p (TREE_TYPE (val
), TREE_TYPE (val2
))))
7184 error_at (loc
, "both arguments must be compatible");
7187 (*params
)[1] = val2
;
7193 /* Cast the result of the builtin back to the type of the first argument,
7194 preserving any qualifiers that it might have. */
7196 speculation_safe_value_resolve_return (tree first_param
, tree result
)
7198 tree ptype
= TREE_TYPE (first_param
);
7199 tree rtype
= TREE_TYPE (result
);
7200 ptype
= TYPE_MAIN_VARIANT (ptype
);
7202 if (tree_int_cst_equal (TYPE_SIZE (ptype
), TYPE_SIZE (rtype
)))
7203 return convert (ptype
, result
);
7208 /* A helper function for resolve_overloaded_builtin in resolving the
7209 overloaded __sync_ builtins. Returns a positive power of 2 if the
7210 first operand of PARAMS is a pointer to a supported data type.
7211 Returns 0 if an error is encountered. Return -1 for _BitInt
7212 __atomic*fetch* with unsupported type which should be handled by
7214 FETCH is true when FUNCTION is one of the _FETCH_OP_ or _OP_FETCH_
7215 built-ins. ORIG_FORMAT is for __sync_* rather than __atomic_*
7219 sync_resolve_size (tree function
, vec
<tree
, va_gc
> *params
, bool fetch
,
7222 /* Type of the argument. */
7224 /* Type the argument points to. */
7228 if (vec_safe_is_empty (params
))
7230 error ("too few arguments to function %qE", function
);
7234 argtype
= type
= TREE_TYPE ((*params
)[0]);
7235 if (TREE_CODE (type
) == ARRAY_TYPE
&& c_dialect_cxx ())
7237 /* Force array-to-pointer decay for C++. */
7238 (*params
)[0] = default_conversion ((*params
)[0]);
7239 type
= TREE_TYPE ((*params
)[0]);
7241 if (TREE_CODE (type
) != POINTER_TYPE
)
7244 type
= TREE_TYPE (type
);
7245 if (!INTEGRAL_TYPE_P (type
) && !POINTER_TYPE_P (type
))
7248 if (!COMPLETE_TYPE_P (type
))
7251 if (fetch
&& TREE_CODE (type
) == BOOLEAN_TYPE
)
7254 size
= tree_to_uhwi (TYPE_SIZE_UNIT (type
));
7258 && TREE_CODE (type
) == BITINT_TYPE
7259 && !targetm
.scalar_mode_supported_p (TImode
))
7262 if (size
== 1 || size
== 2 || size
== 4 || size
== 8 || size
== 16)
7265 if (fetch
&& !orig_format
&& TREE_CODE (type
) == BITINT_TYPE
)
7269 /* Issue the diagnostic only if the argument is valid, otherwise
7270 it would be redundant at best and could be misleading. */
7271 if (argtype
!= error_mark_node
)
7272 error ("operand type %qT is incompatible with argument %d of %qE",
7273 argtype
, 1, function
);
7277 /* A helper function for resolve_overloaded_builtin. Adds casts to
7278 PARAMS to make arguments match up with those of FUNCTION. Drops
7279 the variadic arguments at the end. Returns false if some error
7280 was encountered; true on success. */
7283 sync_resolve_params (location_t loc
, tree orig_function
, tree function
,
7284 vec
<tree
, va_gc
> *params
, bool orig_format
)
7286 function_args_iterator iter
;
7288 unsigned int parmnum
;
7290 function_args_iter_init (&iter
, TREE_TYPE (function
));
7291 /* We've declared the implementation functions to use "volatile void *"
7292 as the pointer parameter, so we shouldn't get any complaints from the
7293 call to check_function_arguments what ever type the user used. */
7294 function_args_iter_next (&iter
);
7295 ptype
= TREE_TYPE (TREE_TYPE ((*params
)[0]));
7296 ptype
= TYPE_MAIN_VARIANT (ptype
);
7298 /* For the rest of the values, we need to cast these to FTYPE, so that we
7299 don't get warnings for passing pointer types, etc. */
7305 arg_type
= function_args_iter_cond (&iter
);
7306 /* XXX void_type_node belies the abstraction. */
7307 if (arg_type
== void_type_node
)
7311 if (params
->length () <= parmnum
)
7313 error_at (loc
, "too few arguments to function %qE", orig_function
);
7317 /* Only convert parameters if arg_type is unsigned integer type with
7318 new format sync routines, i.e. don't attempt to convert pointer
7319 arguments (e.g. EXPECTED argument of __atomic_compare_exchange_n),
7320 bool arguments (e.g. WEAK argument) or signed int arguments (memmodel
7322 if (TREE_CODE (arg_type
) == INTEGER_TYPE
&& TYPE_UNSIGNED (arg_type
))
7324 /* Ideally for the first conversion we'd use convert_for_assignment
7325 so that we get warnings for anything that doesn't match the pointer
7326 type. This isn't portable across the C and C++ front ends atm. */
7327 val
= (*params
)[parmnum
];
7328 val
= convert (ptype
, val
);
7329 val
= convert (arg_type
, val
);
7330 (*params
)[parmnum
] = val
;
7333 function_args_iter_next (&iter
);
7336 /* __atomic routines are not variadic. */
7337 if (!orig_format
&& params
->length () != parmnum
+ 1)
7339 error_at (loc
, "too many arguments to function %qE", orig_function
);
7343 /* The definition of these primitives is variadic, with the remaining
7344 being "an optional list of variables protected by the memory barrier".
7345 No clue what that's supposed to mean, precisely, but we consider all
7346 call-clobbered variables to be protected so we're safe. */
7347 params
->truncate (parmnum
+ 1);
7352 /* A helper function for resolve_overloaded_builtin. Adds a cast to
7353 RESULT to make it match the type of the first pointer argument in
7357 sync_resolve_return (tree first_param
, tree result
, bool orig_format
)
7359 tree ptype
= TREE_TYPE (TREE_TYPE (first_param
));
7360 tree rtype
= TREE_TYPE (result
);
7361 ptype
= TYPE_MAIN_VARIANT (ptype
);
7363 /* New format doesn't require casting unless the types are the same size. */
7364 if (orig_format
|| tree_int_cst_equal (TYPE_SIZE (ptype
), TYPE_SIZE (rtype
)))
7365 return convert (ptype
, result
);
7370 /* This function verifies the PARAMS to generic atomic FUNCTION.
7371 It returns the size if all the parameters are the same size, otherwise
7372 0 is returned if the parameters are invalid. */
7375 get_atomic_generic_size (location_t loc
, tree function
,
7376 vec
<tree
, va_gc
> *params
)
7378 unsigned int n_param
;
7379 unsigned int n_model
;
7380 unsigned int outputs
= 0; // bitset of output parameters
7385 /* Determine the parameter makeup. */
7386 switch (DECL_FUNCTION_CODE (function
))
7388 case BUILT_IN_ATOMIC_EXCHANGE
:
7393 case BUILT_IN_ATOMIC_LOAD
:
7398 case BUILT_IN_ATOMIC_STORE
:
7403 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE
:
7412 if (vec_safe_length (params
) != n_param
)
7414 error_at (loc
, "incorrect number of arguments to function %qE", function
);
7418 /* Get type of first parameter, and determine its size. */
7419 type_0
= TREE_TYPE ((*params
)[0]);
7420 if (TREE_CODE (type_0
) == ARRAY_TYPE
&& c_dialect_cxx ())
7422 /* Force array-to-pointer decay for C++. */
7423 (*params
)[0] = default_conversion ((*params
)[0]);
7424 type_0
= TREE_TYPE ((*params
)[0]);
7426 if (TREE_CODE (type_0
) != POINTER_TYPE
|| VOID_TYPE_P (TREE_TYPE (type_0
)))
7428 error_at (loc
, "argument 1 of %qE must be a non-void pointer type",
7433 if (!COMPLETE_TYPE_P (TREE_TYPE (type_0
)))
7435 error_at (loc
, "argument 1 of %qE must be a pointer to a complete type",
7440 /* Types must be compile time constant sizes. */
7441 if (!tree_fits_uhwi_p ((TYPE_SIZE_UNIT (TREE_TYPE (type_0
)))))
7444 "argument 1 of %qE must be a pointer to a constant size type",
7449 size_0
= tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (type_0
)));
7451 /* Zero size objects are not allowed. */
7455 "argument 1 of %qE must be a pointer to a nonzero size object",
7460 /* Check each other parameter is a pointer and the same size. */
7461 for (x
= 0; x
< n_param
- n_model
; x
++)
7464 tree type
= TREE_TYPE ((*params
)[x
]);
7465 /* __atomic_compare_exchange has a bool in the 4th position, skip it. */
7466 if (n_param
== 6 && x
== 3)
7468 if (TREE_CODE (type
) == ARRAY_TYPE
&& c_dialect_cxx ())
7470 /* Force array-to-pointer decay for C++. */
7471 (*params
)[x
] = default_conversion ((*params
)[x
]);
7472 type
= TREE_TYPE ((*params
)[x
]);
7474 if (!POINTER_TYPE_P (type
))
7476 error_at (loc
, "argument %d of %qE must be a pointer type", x
+ 1,
7480 else if (TYPE_SIZE_UNIT (TREE_TYPE (type
))
7481 && TREE_CODE ((TYPE_SIZE_UNIT (TREE_TYPE (type
))))
7484 error_at (loc
, "argument %d of %qE must be a pointer to a constant "
7485 "size type", x
+ 1, function
);
7488 else if (FUNCTION_POINTER_TYPE_P (type
))
7490 error_at (loc
, "argument %d of %qE must not be a pointer to a "
7491 "function", x
+ 1, function
);
7494 tree type_size
= TYPE_SIZE_UNIT (TREE_TYPE (type
));
7495 size
= type_size
? tree_to_uhwi (type_size
) : 0;
7498 error_at (loc
, "size mismatch in argument %d of %qE", x
+ 1,
7504 auto_diagnostic_group d
;
7505 int quals
= TYPE_QUALS (TREE_TYPE (type
));
7506 /* Must not write to an argument of a const-qualified type. */
7507 if (outputs
& (1 << x
) && quals
& TYPE_QUAL_CONST
)
7509 if (c_dialect_cxx ())
7511 error_at (loc
, "argument %d of %qE must not be a pointer to "
7512 "a %<const%> type", x
+ 1, function
);
7516 pedwarn (loc
, OPT_Wincompatible_pointer_types
, "argument %d "
7517 "of %qE discards %<const%> qualifier", x
+ 1,
7520 /* Only the first argument is allowed to be volatile. */
7521 if (x
> 0 && quals
& TYPE_QUAL_VOLATILE
)
7523 if (c_dialect_cxx ())
7525 error_at (loc
, "argument %d of %qE must not be a pointer to "
7526 "a %<volatile%> type", x
+ 1, function
);
7530 pedwarn (loc
, OPT_Wincompatible_pointer_types
, "argument %d "
7531 "of %qE discards %<volatile%> qualifier", x
+ 1,
7537 /* Check memory model parameters for validity. */
7538 for (x
= n_param
- n_model
; x
< n_param
; x
++)
7540 tree p
= (*params
)[x
];
7541 if (!INTEGRAL_TYPE_P (TREE_TYPE (p
)))
7543 error_at (loc
, "non-integer memory model argument %d of %qE", x
+ 1,
7547 p
= fold_for_warn (p
);
7548 if (TREE_CODE (p
) == INTEGER_CST
)
7550 /* memmodel_base masks the low 16 bits, thus ignore any bits above
7551 it by using TREE_INT_CST_LOW instead of tree_to_*hwi. Those high
7552 bits will be checked later during expansion in target specific
7554 if (memmodel_base (TREE_INT_CST_LOW (p
)) >= MEMMODEL_LAST
)
7555 warning_at (loc
, OPT_Winvalid_memory_model
,
7556 "invalid memory model argument %d of %qE", x
+ 1,
7565 /* This will take an __atomic_ generic FUNCTION call, and add a size parameter N
7566 at the beginning of the parameter list PARAMS representing the size of the
7567 objects. This is to match the library ABI requirement. LOC is the location
7568 of the function call.
7569 The new function is returned if it needed rebuilding, otherwise NULL_TREE is
7570 returned to allow the external call to be constructed. */
7573 add_atomic_size_parameter (unsigned n
, location_t loc
, tree function
,
7574 vec
<tree
, va_gc
> *params
)
7578 /* Insert a SIZE_T parameter as the first param. If there isn't
7579 enough space, allocate a new vector and recursively re-build with that. */
7580 if (!params
->space (1))
7582 unsigned int z
, len
;
7583 vec
<tree
, va_gc
> *v
;
7586 len
= params
->length ();
7587 vec_alloc (v
, len
+ 1);
7588 v
->quick_push (build_int_cst (size_type_node
, n
));
7589 for (z
= 0; z
< len
; z
++)
7590 v
->quick_push ((*params
)[z
]);
7591 f
= build_function_call_vec (loc
, vNULL
, function
, v
, NULL
);
7596 /* Add the size parameter and leave as a function call for processing. */
7597 size_node
= build_int_cst (size_type_node
, n
);
7598 params
->quick_insert (0, size_node
);
7603 /* Return whether atomic operations for naturally aligned N-byte
7604 arguments are supported, whether inline or through libatomic. */
7606 atomic_size_supported_p (int n
)
7617 return targetm
.scalar_mode_supported_p (TImode
);
7624 /* This will process an __atomic_exchange function call, determine whether it
7625 needs to be mapped to the _N variation, or turned into a library call.
7626 LOC is the location of the builtin call.
7627 FUNCTION is the DECL that has been invoked;
7628 PARAMS is the argument list for the call. The return value is non-null
7629 TRUE is returned if it is translated into the proper format for a call to the
7630 external library, and NEW_RETURN is set the tree for that function.
7631 FALSE is returned if processing for the _N variation is required, and
7632 NEW_RETURN is set to the return value the result is copied into. */
7634 resolve_overloaded_atomic_exchange (location_t loc
, tree function
,
7635 vec
<tree
, va_gc
> *params
, tree
*new_return
)
7637 tree p0
, p1
, p2
, p3
;
7638 tree I_type
, I_type_ptr
;
7639 int n
= get_atomic_generic_size (loc
, function
, params
);
7641 /* Size of 0 is an error condition. */
7644 *new_return
= error_mark_node
;
7648 /* If not a lock-free size, change to the library generic format. */
7649 if (!atomic_size_supported_p (n
))
7651 *new_return
= add_atomic_size_parameter (n
, loc
, function
, params
);
7655 /* Otherwise there is a lockfree match, transform the call from:
7656 void fn(T* mem, T* desired, T* return, model)
7658 *return = (T) (fn (In* mem, (In) *desired, model)) */
7665 /* Create pointer to appropriate size. */
7666 I_type
= builtin_type_for_size (BITS_PER_UNIT
* n
, 1);
7667 I_type_ptr
= build_pointer_type (I_type
);
7669 /* Convert object pointer to required type. */
7670 p0
= build1 (VIEW_CONVERT_EXPR
, I_type_ptr
, p0
);
7672 /* Convert new value to required type, and dereference it. */
7673 p1
= build_indirect_ref (loc
, p1
, RO_UNARY_STAR
);
7674 p1
= build1 (VIEW_CONVERT_EXPR
, I_type
, p1
);
7677 /* Move memory model to the 3rd position, and end param list. */
7679 params
->truncate (3);
7681 /* Convert return pointer and dereference it for later assignment. */
7682 *new_return
= build_indirect_ref (loc
, p2
, RO_UNARY_STAR
);
7688 /* This will process an __atomic_compare_exchange function call, determine
7689 whether it needs to be mapped to the _N variation, or turned into a lib call.
7690 LOC is the location of the builtin call.
7691 FUNCTION is the DECL that has been invoked;
7692 PARAMS is the argument list for the call. The return value is non-null
7693 TRUE is returned if it is translated into the proper format for a call to the
7694 external library, and NEW_RETURN is set the tree for that function.
7695 FALSE is returned if processing for the _N variation is required. */
7698 resolve_overloaded_atomic_compare_exchange (location_t loc
, tree function
,
7699 vec
<tree
, va_gc
> *params
,
7703 tree I_type
, I_type_ptr
;
7704 int n
= get_atomic_generic_size (loc
, function
, params
);
7706 /* Size of 0 is an error condition. */
7709 *new_return
= error_mark_node
;
7713 /* If not a lock-free size, change to the library generic format. */
7714 if (!atomic_size_supported_p (n
))
7716 /* The library generic format does not have the weak parameter, so
7717 remove it from the param list. Since a parameter has been removed,
7718 we can be sure that there is room for the SIZE_T parameter, meaning
7719 there will not be a recursive rebuilding of the parameter list, so
7720 there is no danger this will be done twice. */
7723 (*params
)[3] = (*params
)[4];
7724 (*params
)[4] = (*params
)[5];
7725 params
->truncate (5);
7727 *new_return
= add_atomic_size_parameter (n
, loc
, function
, params
);
7731 /* Otherwise, there is a match, so the call needs to be transformed from:
7732 bool fn(T* mem, T* desired, T* return, weak, success, failure)
7734 bool fn ((In *)mem, (In *)expected, (In) *desired, weak, succ, fail) */
7740 /* Create pointer to appropriate size. */
7741 I_type
= builtin_type_for_size (BITS_PER_UNIT
* n
, 1);
7742 I_type_ptr
= build_pointer_type (I_type
);
7744 /* Convert object pointer to required type. */
7745 p0
= build1 (VIEW_CONVERT_EXPR
, I_type_ptr
, p0
);
7748 /* Convert expected pointer to required type. */
7749 p1
= build1 (VIEW_CONVERT_EXPR
, I_type_ptr
, p1
);
7752 /* Convert desired value to required type, and dereference it. */
7753 p2
= build_indirect_ref (loc
, p2
, RO_UNARY_STAR
);
7754 p2
= build1 (VIEW_CONVERT_EXPR
, I_type
, p2
);
7757 /* The rest of the parameters are fine. NULL means no special return value
7764 /* This will process an __atomic_load function call, determine whether it
7765 needs to be mapped to the _N variation, or turned into a library call.
7766 LOC is the location of the builtin call.
7767 FUNCTION is the DECL that has been invoked;
7768 PARAMS is the argument list for the call. The return value is non-null
7769 TRUE is returned if it is translated into the proper format for a call to the
7770 external library, and NEW_RETURN is set the tree for that function.
7771 FALSE is returned if processing for the _N variation is required, and
7772 NEW_RETURN is set to the return value the result is copied into. */
7775 resolve_overloaded_atomic_load (location_t loc
, tree function
,
7776 vec
<tree
, va_gc
> *params
, tree
*new_return
)
7779 tree I_type
, I_type_ptr
;
7780 int n
= get_atomic_generic_size (loc
, function
, params
);
7782 /* Size of 0 is an error condition. */
7785 *new_return
= error_mark_node
;
7789 /* If not a lock-free size, change to the library generic format. */
7790 if (!atomic_size_supported_p (n
))
7792 *new_return
= add_atomic_size_parameter (n
, loc
, function
, params
);
7796 /* Otherwise, there is a match, so the call needs to be transformed from:
7797 void fn(T* mem, T* return, model)
7799 *return = (T) (fn ((In *) mem, model)) */
7805 /* Create pointer to appropriate size. */
7806 I_type
= builtin_type_for_size (BITS_PER_UNIT
* n
, 1);
7807 I_type_ptr
= build_pointer_type (I_type
);
7809 /* Convert object pointer to required type. */
7810 p0
= build1 (VIEW_CONVERT_EXPR
, I_type_ptr
, p0
);
7813 /* Move memory model to the 2nd position, and end param list. */
7815 params
->truncate (2);
7817 /* Convert return pointer and dereference it for later assignment. */
7818 *new_return
= build_indirect_ref (loc
, p1
, RO_UNARY_STAR
);
7824 /* This will process an __atomic_store function call, determine whether it
7825 needs to be mapped to the _N variation, or turned into a library call.
7826 LOC is the location of the builtin call.
7827 FUNCTION is the DECL that has been invoked;
7828 PARAMS is the argument list for the call. The return value is non-null
7829 TRUE is returned if it is translated into the proper format for a call to the
7830 external library, and NEW_RETURN is set the tree for that function.
7831 FALSE is returned if processing for the _N variation is required, and
7832 NEW_RETURN is set to the return value the result is copied into. */
7835 resolve_overloaded_atomic_store (location_t loc
, tree function
,
7836 vec
<tree
, va_gc
> *params
, tree
*new_return
)
7839 tree I_type
, I_type_ptr
;
7840 int n
= get_atomic_generic_size (loc
, function
, params
);
7842 /* Size of 0 is an error condition. */
7845 *new_return
= error_mark_node
;
7849 /* If not a lock-free size, change to the library generic format. */
7850 if (!atomic_size_supported_p (n
))
7852 *new_return
= add_atomic_size_parameter (n
, loc
, function
, params
);
7856 /* Otherwise, there is a match, so the call needs to be transformed from:
7857 void fn(T* mem, T* value, model)
7859 fn ((In *) mem, (In) *value, model) */
7864 /* Create pointer to appropriate size. */
7865 I_type
= builtin_type_for_size (BITS_PER_UNIT
* n
, 1);
7866 I_type_ptr
= build_pointer_type (I_type
);
7868 /* Convert object pointer to required type. */
7869 p0
= build1 (VIEW_CONVERT_EXPR
, I_type_ptr
, p0
);
7872 /* Convert new value to required type, and dereference it. */
7873 p1
= build_indirect_ref (loc
, p1
, RO_UNARY_STAR
);
7874 p1
= build1 (VIEW_CONVERT_EXPR
, I_type
, p1
);
7877 /* The memory model is in the right spot already. Return is void. */
7878 *new_return
= NULL_TREE
;
7884 /* Emit __atomic*fetch* on _BitInt which doesn't have a size of
7885 1, 2, 4, 8 or 16 bytes using __atomic_compare_exchange loop.
7886 ORIG_CODE is the DECL_FUNCTION_CODE of ORIG_FUNCTION and
7887 ORIG_PARAMS arguments of the call. */
7890 atomic_bitint_fetch_using_cas_loop (location_t loc
,
7891 enum built_in_function orig_code
,
7893 vec
<tree
, va_gc
> *orig_params
)
7895 enum tree_code code
= ERROR_MARK
;
7896 bool return_old_p
= false;
7899 case BUILT_IN_ATOMIC_ADD_FETCH_N
:
7902 case BUILT_IN_ATOMIC_SUB_FETCH_N
:
7905 case BUILT_IN_ATOMIC_AND_FETCH_N
:
7906 code
= BIT_AND_EXPR
;
7908 case BUILT_IN_ATOMIC_NAND_FETCH_N
:
7910 case BUILT_IN_ATOMIC_XOR_FETCH_N
:
7911 code
= BIT_XOR_EXPR
;
7913 case BUILT_IN_ATOMIC_OR_FETCH_N
:
7914 code
= BIT_IOR_EXPR
;
7916 case BUILT_IN_ATOMIC_FETCH_ADD_N
:
7918 return_old_p
= true;
7920 case BUILT_IN_ATOMIC_FETCH_SUB_N
:
7922 return_old_p
= true;
7924 case BUILT_IN_ATOMIC_FETCH_AND_N
:
7925 code
= BIT_AND_EXPR
;
7926 return_old_p
= true;
7928 case BUILT_IN_ATOMIC_FETCH_NAND_N
:
7929 return_old_p
= true;
7931 case BUILT_IN_ATOMIC_FETCH_XOR_N
:
7932 code
= BIT_XOR_EXPR
;
7933 return_old_p
= true;
7935 case BUILT_IN_ATOMIC_FETCH_OR_N
:
7936 code
= BIT_IOR_EXPR
;
7937 return_old_p
= true;
7943 if (orig_params
->length () != 3)
7945 if (orig_params
->length () < 3)
7946 error_at (loc
, "too few arguments to function %qE", orig_function
);
7948 error_at (loc
, "too many arguments to function %qE", orig_function
);
7949 return error_mark_node
;
7952 tree stmts
= push_stmt_list ();
7954 tree nonatomic_lhs_type
= TREE_TYPE (TREE_TYPE ((*orig_params
)[0]));
7955 nonatomic_lhs_type
= TYPE_MAIN_VARIANT (nonatomic_lhs_type
);
7956 gcc_assert (TREE_CODE (nonatomic_lhs_type
) == BITINT_TYPE
);
7958 tree lhs_addr
= (*orig_params
)[0];
7959 tree val
= convert (nonatomic_lhs_type
, (*orig_params
)[1]);
7960 tree model
= convert (integer_type_node
, (*orig_params
)[2]);
7961 if (TREE_SIDE_EFFECTS (lhs_addr
))
7963 tree var
= create_tmp_var_raw (TREE_TYPE (lhs_addr
));
7964 lhs_addr
= build4 (TARGET_EXPR
, TREE_TYPE (lhs_addr
), var
, lhs_addr
,
7965 NULL_TREE
, NULL_TREE
);
7966 add_stmt (lhs_addr
);
7968 if (TREE_SIDE_EFFECTS (val
))
7970 tree var
= create_tmp_var_raw (nonatomic_lhs_type
);
7971 val
= build4 (TARGET_EXPR
, nonatomic_lhs_type
, var
, val
, NULL_TREE
,
7975 if (TREE_SIDE_EFFECTS (model
))
7977 tree var
= create_tmp_var_raw (integer_type_node
);
7978 model
= build4 (TARGET_EXPR
, integer_type_node
, var
, model
, NULL_TREE
,
7983 tree old
= create_tmp_var_raw (nonatomic_lhs_type
);
7984 tree old_addr
= build_unary_op (loc
, ADDR_EXPR
, old
, false);
7985 TREE_ADDRESSABLE (old
) = 1;
7986 suppress_warning (old
);
7988 tree newval
= create_tmp_var_raw (nonatomic_lhs_type
);
7989 tree newval_addr
= build_unary_op (loc
, ADDR_EXPR
, newval
, false);
7990 TREE_ADDRESSABLE (newval
) = 1;
7991 suppress_warning (newval
);
7993 tree loop_decl
= create_artificial_label (loc
);
7994 tree loop_label
= build1 (LABEL_EXPR
, void_type_node
, loop_decl
);
7996 tree done_decl
= create_artificial_label (loc
);
7997 tree done_label
= build1 (LABEL_EXPR
, void_type_node
, done_decl
);
7999 vec
<tree
, va_gc
> *params
;
8000 vec_alloc (params
, 6);
8002 /* __atomic_load (addr, &old, SEQ_CST). */
8003 tree fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_LOAD
);
8004 params
->quick_push (lhs_addr
);
8005 params
->quick_push (old_addr
);
8006 params
->quick_push (build_int_cst (integer_type_node
, MEMMODEL_RELAXED
));
8007 tree func_call
= resolve_overloaded_builtin (loc
, fndecl
, params
);
8008 if (func_call
== NULL_TREE
)
8009 func_call
= build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
8010 old
= build4 (TARGET_EXPR
, nonatomic_lhs_type
, old
, func_call
, NULL_TREE
,
8013 params
->truncate (0);
8016 add_stmt (loop_label
);
8018 /* newval = old + val; */
8024 if (!TYPE_OVERFLOW_WRAPS (nonatomic_lhs_type
))
8027 = build_bitint_type (TYPE_PRECISION (nonatomic_lhs_type
), 1);
8028 rhs
= convert (nonatomic_lhs_type
,
8029 build2_loc (loc
, code
, utype
,
8030 convert (utype
, old
),
8031 convert (utype
, val
)));
8034 rhs
= build2_loc (loc
, code
, nonatomic_lhs_type
, old
, val
);
8039 rhs
= build2_loc (loc
, code
, nonatomic_lhs_type
, old
, val
);
8042 rhs
= build2_loc (loc
, BIT_AND_EXPR
, nonatomic_lhs_type
,
8043 build1_loc (loc
, BIT_NOT_EXPR
,
8044 nonatomic_lhs_type
, old
), val
);
8049 rhs
= build4 (TARGET_EXPR
, nonatomic_lhs_type
, newval
, rhs
, NULL_TREE
,
8051 SET_EXPR_LOCATION (rhs
, loc
);
8054 /* if (__atomic_compare_exchange (addr, &old, &new, false, model, model))
8056 fndecl
= builtin_decl_explicit (BUILT_IN_ATOMIC_COMPARE_EXCHANGE
);
8057 params
->quick_push (lhs_addr
);
8058 params
->quick_push (old_addr
);
8059 params
->quick_push (newval_addr
);
8060 params
->quick_push (integer_zero_node
);
8061 params
->quick_push (model
);
8062 if (tree_fits_uhwi_p (model
)
8063 && (tree_to_uhwi (model
) == MEMMODEL_RELEASE
8064 || tree_to_uhwi (model
) == MEMMODEL_ACQ_REL
))
8065 params
->quick_push (build_int_cst (integer_type_node
, MEMMODEL_RELAXED
));
8067 params
->quick_push (model
);
8068 func_call
= resolve_overloaded_builtin (loc
, fndecl
, params
);
8069 if (func_call
== NULL_TREE
)
8070 func_call
= build_function_call_vec (loc
, vNULL
, fndecl
, params
, NULL
);
8072 tree goto_stmt
= build1 (GOTO_EXPR
, void_type_node
, done_decl
);
8073 SET_EXPR_LOCATION (goto_stmt
, loc
);
8076 = build3 (COND_EXPR
, void_type_node
, func_call
, goto_stmt
, NULL_TREE
);
8077 SET_EXPR_LOCATION (stmt
, loc
);
8081 goto_stmt
= build1 (GOTO_EXPR
, void_type_node
, loop_decl
);
8082 SET_EXPR_LOCATION (goto_stmt
, loc
);
8083 add_stmt (goto_stmt
);
8086 add_stmt (done_label
);
8088 tree ret
= create_tmp_var_raw (nonatomic_lhs_type
);
8089 stmt
= build2_loc (loc
, MODIFY_EXPR
, void_type_node
, ret
,
8090 return_old_p
? old
: newval
);
8093 /* Finish the compound statement. */
8094 stmts
= pop_stmt_list (stmts
);
8096 return build4 (TARGET_EXPR
, nonatomic_lhs_type
, ret
, stmts
, NULL_TREE
,
8101 /* Some builtin functions are placeholders for other expressions. This
8102 function should be called immediately after parsing the call expression
8103 before surrounding code has committed to the type of the expression.
8105 LOC is the location of the builtin call.
8107 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
8108 PARAMS is the argument list for the call. The return value is non-null
8109 when expansion is complete, and null if normal processing should
8113 resolve_overloaded_builtin (location_t loc
, tree function
,
8114 vec
<tree
, va_gc
> *params
)
8116 /* Is function one of the _FETCH_OP_ or _OP_FETCH_ built-ins?
8117 Those are not valid to call with a pointer to _Bool (or C++ bool)
8118 and so must be rejected. */
8119 bool fetch_op
= true;
8120 bool orig_format
= true;
8121 tree new_return
= NULL_TREE
;
8123 switch (DECL_BUILT_IN_CLASS (function
))
8125 case BUILT_IN_NORMAL
:
8128 if (targetm
.resolve_overloaded_builtin
)
8129 return targetm
.resolve_overloaded_builtin (loc
, function
, params
);
8136 /* Handle BUILT_IN_NORMAL here. */
8137 enum built_in_function orig_code
= DECL_FUNCTION_CODE (function
);
8140 case BUILT_IN_SPECULATION_SAFE_VALUE_N
:
8142 tree new_function
, first_param
, result
;
8143 enum built_in_function fncode
8144 = speculation_safe_value_resolve_call (function
, params
);
8146 if (fncode
== BUILT_IN_NONE
)
8147 return error_mark_node
;
8149 first_param
= (*params
)[0];
8150 if (!speculation_safe_value_resolve_params (loc
, function
, params
))
8151 return error_mark_node
;
8153 if (targetm
.have_speculation_safe_value (true))
8155 new_function
= builtin_decl_explicit (fncode
);
8156 result
= build_function_call_vec (loc
, vNULL
, new_function
, params
,
8159 if (result
== error_mark_node
)
8162 return speculation_safe_value_resolve_return (first_param
, result
);
8166 /* This target doesn't have, or doesn't need, active mitigation
8167 against incorrect speculative execution. Simply return the
8168 first parameter to the builtin. */
8169 if (!targetm
.have_speculation_safe_value (false))
8170 /* The user has invoked __builtin_speculation_safe_value
8171 even though __HAVE_SPECULATION_SAFE_VALUE is not
8172 defined: emit a warning. */
8173 warning_at (input_location
, 0,
8174 "this target does not define a speculation barrier; "
8175 "your program will still execute correctly, "
8176 "but incorrect speculation may not be "
8179 /* If the optional second argument is present, handle any side
8181 if (params
->length () == 2
8182 && TREE_SIDE_EFFECTS ((*params
)[1]))
8183 return build2 (COMPOUND_EXPR
, TREE_TYPE (first_param
),
8184 (*params
)[1], first_param
);
8190 case BUILT_IN_ATOMIC_EXCHANGE
:
8191 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE
:
8192 case BUILT_IN_ATOMIC_LOAD
:
8193 case BUILT_IN_ATOMIC_STORE
:
8195 /* Handle these 4 together so that they can fall through to the next
8196 case if the call is transformed to an _N variant. */
8199 case BUILT_IN_ATOMIC_EXCHANGE
:
8201 if (resolve_overloaded_atomic_exchange (loc
, function
, params
,
8204 /* Change to the _N variant. */
8205 orig_code
= BUILT_IN_ATOMIC_EXCHANGE_N
;
8209 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE
:
8211 if (resolve_overloaded_atomic_compare_exchange (loc
, function
,
8215 /* Change to the _N variant. */
8216 orig_code
= BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N
;
8219 case BUILT_IN_ATOMIC_LOAD
:
8221 if (resolve_overloaded_atomic_load (loc
, function
, params
,
8224 /* Change to the _N variant. */
8225 orig_code
= BUILT_IN_ATOMIC_LOAD_N
;
8228 case BUILT_IN_ATOMIC_STORE
:
8230 if (resolve_overloaded_atomic_store (loc
, function
, params
,
8233 /* Change to the _N variant. */
8234 orig_code
= BUILT_IN_ATOMIC_STORE_N
;
8242 case BUILT_IN_ATOMIC_EXCHANGE_N
:
8243 case BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N
:
8244 case BUILT_IN_ATOMIC_LOAD_N
:
8245 case BUILT_IN_ATOMIC_STORE_N
:
8248 case BUILT_IN_ATOMIC_ADD_FETCH_N
:
8249 case BUILT_IN_ATOMIC_SUB_FETCH_N
:
8250 case BUILT_IN_ATOMIC_AND_FETCH_N
:
8251 case BUILT_IN_ATOMIC_NAND_FETCH_N
:
8252 case BUILT_IN_ATOMIC_XOR_FETCH_N
:
8253 case BUILT_IN_ATOMIC_OR_FETCH_N
:
8254 case BUILT_IN_ATOMIC_FETCH_ADD_N
:
8255 case BUILT_IN_ATOMIC_FETCH_SUB_N
:
8256 case BUILT_IN_ATOMIC_FETCH_AND_N
:
8257 case BUILT_IN_ATOMIC_FETCH_NAND_N
:
8258 case BUILT_IN_ATOMIC_FETCH_XOR_N
:
8259 case BUILT_IN_ATOMIC_FETCH_OR_N
:
8260 orig_format
= false;
8262 case BUILT_IN_SYNC_FETCH_AND_ADD_N
:
8263 case BUILT_IN_SYNC_FETCH_AND_SUB_N
:
8264 case BUILT_IN_SYNC_FETCH_AND_OR_N
:
8265 case BUILT_IN_SYNC_FETCH_AND_AND_N
:
8266 case BUILT_IN_SYNC_FETCH_AND_XOR_N
:
8267 case BUILT_IN_SYNC_FETCH_AND_NAND_N
:
8268 case BUILT_IN_SYNC_ADD_AND_FETCH_N
:
8269 case BUILT_IN_SYNC_SUB_AND_FETCH_N
:
8270 case BUILT_IN_SYNC_OR_AND_FETCH_N
:
8271 case BUILT_IN_SYNC_AND_AND_FETCH_N
:
8272 case BUILT_IN_SYNC_XOR_AND_FETCH_N
:
8273 case BUILT_IN_SYNC_NAND_AND_FETCH_N
:
8274 case BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
:
8275 case BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N
:
8276 case BUILT_IN_SYNC_LOCK_TEST_AND_SET_N
:
8277 case BUILT_IN_SYNC_LOCK_RELEASE_N
:
8279 /* The following are not _FETCH_OPs and must be accepted with
8280 pointers to _Bool (or C++ bool). */
8282 fetch_op
= (orig_code
!= BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
8283 && orig_code
!= BUILT_IN_SYNC_VAL_COMPARE_AND_SWAP_N
8284 && orig_code
!= BUILT_IN_SYNC_LOCK_TEST_AND_SET_N
8285 && orig_code
!= BUILT_IN_SYNC_LOCK_RELEASE_N
);
8287 int n
= sync_resolve_size (function
, params
, fetch_op
, orig_format
);
8288 tree new_function
, first_param
, result
;
8289 enum built_in_function fncode
;
8292 return error_mark_node
;
8295 return atomic_bitint_fetch_using_cas_loop (loc
, orig_code
,
8298 fncode
= (enum built_in_function
)((int)orig_code
+ exact_log2 (n
) + 1);
8299 new_function
= builtin_decl_explicit (fncode
);
8300 if (!sync_resolve_params (loc
, function
, new_function
, params
,
8302 return error_mark_node
;
8304 first_param
= (*params
)[0];
8305 result
= build_function_call_vec (loc
, vNULL
, new_function
, params
,
8307 if (result
== error_mark_node
)
8309 if (orig_code
!= BUILT_IN_SYNC_BOOL_COMPARE_AND_SWAP_N
8310 && orig_code
!= BUILT_IN_SYNC_LOCK_RELEASE_N
8311 && orig_code
!= BUILT_IN_ATOMIC_STORE_N
8312 && orig_code
!= BUILT_IN_ATOMIC_COMPARE_EXCHANGE_N
)
8313 result
= sync_resolve_return (first_param
, result
, orig_format
);
8316 /* Prevent -Wunused-value warning. */
8317 TREE_USED (result
) = true;
8319 /* If new_return is set, assign function to that expr and cast the
8320 result to void since the generic interface returned void. */
8323 /* Cast function result from I{1,2,4,8,16} to the required type. */
8324 result
= build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (new_return
), result
);
8325 result
= build2 (MODIFY_EXPR
, TREE_TYPE (new_return
), new_return
,
8327 TREE_SIDE_EFFECTS (result
) = 1;
8328 protected_set_expr_location (result
, loc
);
8329 result
= convert (void_type_node
, result
);
8339 /* vector_types_compatible_elements_p is used in type checks of vectors
8340 values used as operands of binary operators. Where it returns true, and
8341 the other checks of the caller succeed (being vector types in he first
8342 place, and matching number of elements), we can just treat the types
8343 as essentially the same.
8344 Contrast with vector_targets_convertible_p, which is used for vector
8345 pointer types, and vector_types_convertible_p, which will allow
8346 language-specific matches under the control of flag_lax_vector_conversions,
8347 and might still require a conversion. */
8348 /* True if vector types T1 and T2 can be inputs to the same binary
8349 operator without conversion.
8350 We don't check the overall vector size here because some of our callers
8351 want to give different error messages when the vectors are compatible
8352 except for the element count. */
8355 vector_types_compatible_elements_p (tree t1
, tree t2
)
8357 bool opaque
= TYPE_VECTOR_OPAQUE (t1
) || TYPE_VECTOR_OPAQUE (t2
);
8358 t1
= TREE_TYPE (t1
);
8359 t2
= TREE_TYPE (t2
);
8361 enum tree_code c1
= TREE_CODE (t1
), c2
= TREE_CODE (t2
);
8363 gcc_assert ((INTEGRAL_TYPE_P (t1
)
8365 || c1
== FIXED_POINT_TYPE
)
8366 && (INTEGRAL_TYPE_P (t2
)
8368 || c2
== FIXED_POINT_TYPE
));
8370 t1
= c_common_signed_type (t1
);
8371 t2
= c_common_signed_type (t2
);
8372 /* Equality works here because c_common_signed_type uses
8373 TYPE_MAIN_VARIANT. */
8376 if (opaque
&& c1
== c2
8377 && (INTEGRAL_TYPE_P (t1
) || c1
== REAL_TYPE
)
8378 && TYPE_PRECISION (t1
) == TYPE_PRECISION (t2
))
8383 /* Check for missing format attributes on function pointers. LTYPE is
8384 the new type or left-hand side type. RTYPE is the old type or
8385 right-hand side type. Returns TRUE if LTYPE is missing the desired
8389 check_missing_format_attribute (tree ltype
, tree rtype
)
8391 tree
const ttr
= TREE_TYPE (rtype
), ttl
= TREE_TYPE (ltype
);
8394 for (ra
= TYPE_ATTRIBUTES (ttr
); ra
; ra
= TREE_CHAIN (ra
))
8395 if (is_attribute_p ("format", get_attribute_name (ra
)))
8400 for (la
= TYPE_ATTRIBUTES (ttl
); la
; la
= TREE_CHAIN (la
))
8401 if (is_attribute_p ("format", get_attribute_name (la
)))
8409 /* Setup a TYPE_DECL node as a typedef representation.
8411 X is a TYPE_DECL for a typedef statement. Create a brand new
8412 ..._TYPE node (which will be just a variant of the existing
8413 ..._TYPE node with identical properties) and then install X
8414 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
8416 The whole point here is to end up with a situation where each
8417 and every ..._TYPE node the compiler creates will be uniquely
8418 associated with AT MOST one node representing a typedef name.
8419 This way, even though the compiler substitutes corresponding
8420 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
8421 early on, later parts of the compiler can always do the reverse
8422 translation and get back the corresponding typedef name. For
8425 typedef struct S MY_TYPE;
8428 Later parts of the compiler might only know that `object' was of
8429 type `struct S' if it were not for code just below. With this
8430 code however, later parts of the compiler see something like:
8432 struct S' == struct S
8433 typedef struct S' MY_TYPE;
8436 And they can then deduce (from the node for type struct S') that
8437 the original object declaration was:
8441 Being able to do this is important for proper support of protoize,
8442 and also for generating precise symbolic debugging information
8443 which takes full account of the programmer's (typedef) vocabulary.
8445 Obviously, we don't want to generate a duplicate ..._TYPE node if
8446 the TYPE_DECL node that we are now processing really represents a
8447 standard built-in type. */
8450 set_underlying_type (tree x
)
8452 if (x
== error_mark_node
|| TREE_TYPE (x
) == error_mark_node
)
8454 if (DECL_IS_UNDECLARED_BUILTIN (x
) && TREE_CODE (TREE_TYPE (x
)) != ARRAY_TYPE
)
8456 if (TYPE_NAME (TREE_TYPE (x
)) == 0)
8457 TYPE_NAME (TREE_TYPE (x
)) = x
;
8459 else if (DECL_ORIGINAL_TYPE (x
))
8460 gcc_checking_assert (TYPE_NAME (TREE_TYPE (x
)) == x
);
8463 tree tt
= TREE_TYPE (x
);
8464 DECL_ORIGINAL_TYPE (x
) = tt
;
8465 tt
= build_variant_type_copy (tt
);
8466 TYPE_STUB_DECL (tt
) = TYPE_STUB_DECL (DECL_ORIGINAL_TYPE (x
));
8469 /* Mark the type as used only when its type decl is decorated
8470 with attribute unused. */
8471 if (lookup_attribute ("unused", DECL_ATTRIBUTES (x
)))
8478 /* Return true if it is worth exposing the DECL_ORIGINAL_TYPE of TYPE to
8479 the user in diagnostics, false if it would be better to use TYPE itself.
8480 TYPE is known to satisfy typedef_variant_p. */
8483 user_facing_original_type_p (const_tree type
)
8485 gcc_assert (typedef_variant_p (type
));
8486 tree decl
= TYPE_NAME (type
);
8488 /* Look through any typedef in "user" code. */
8489 if (!DECL_IN_SYSTEM_HEADER (decl
) && !DECL_IS_UNDECLARED_BUILTIN (decl
))
8492 /* If the original type is also named and is in the user namespace,
8493 assume it too is a user-facing type. */
8494 tree orig_type
= DECL_ORIGINAL_TYPE (decl
);
8495 if (tree orig_id
= TYPE_IDENTIFIER (orig_type
))
8496 if (!name_reserved_for_implementation_p (IDENTIFIER_POINTER (orig_id
)))
8499 switch (TREE_CODE (orig_type
))
8501 /* Don't look through to an anonymous vector type, since the syntax
8502 we use for them in diagnostics isn't real C or C++ syntax.
8503 And if ORIG_TYPE is named but in the implementation namespace,
8504 TYPE is likely to be more meaningful to the user. */
8508 /* Don't expose anonymous tag types that are presumably meant to be
8509 known by their typedef name. Also don't expose tags that are in
8510 the implementation namespace, such as:
8512 typedef struct __foo foo; */
8518 /* Look through to anything else. */
8524 /* Record the types used by the current global variable declaration
8525 being parsed, so that we can decide later to emit their debug info.
8526 Those types are in types_used_by_cur_var_decl, and we are going to
8527 store them in the types_used_by_vars_hash hash table.
8528 DECL is the declaration of the global variable that has been parsed. */
8531 record_types_used_by_current_var_decl (tree decl
)
8533 gcc_assert (decl
&& DECL_P (decl
) && TREE_STATIC (decl
));
8535 while (types_used_by_cur_var_decl
&& !types_used_by_cur_var_decl
->is_empty ())
8537 tree type
= types_used_by_cur_var_decl
->pop ();
8538 types_used_by_var_decl_insert (type
, decl
);
8542 /* The C and C++ parsers both use vectors to hold function arguments.
8543 For efficiency, we keep a cache of unused vectors. This is the
8546 typedef vec
<tree
, va_gc
> *tree_gc_vec
;
8547 static GTY((deletable
)) vec
<tree_gc_vec
, va_gc
> *tree_vector_cache
;
8549 /* Return a new vector from the cache. If the cache is empty,
8550 allocate a new vector. These vectors are GC'ed, so it is OK if the
8551 pointer is not released.. */
8554 make_tree_vector (void)
8556 if (tree_vector_cache
&& !tree_vector_cache
->is_empty ())
8557 return tree_vector_cache
->pop ();
8560 /* Passing 0 to vec::alloc returns NULL, and our callers require
8561 that we always return a non-NULL value. The vector code uses
8562 4 when growing a NULL vector, so we do too. */
8563 vec
<tree
, va_gc
> *v
;
8569 /* Release a vector of trees back to the cache. */
8572 release_tree_vector (vec
<tree
, va_gc
> *vec
)
8576 if (vec
->allocated () >= 16)
8577 /* Don't cache vecs that have expanded more than once. On a p64
8578 target, vecs double in alloc size with each power of 2 elements, e.g
8579 at 16 elements the alloc increases from 128 to 256 bytes. */
8584 vec_safe_push (tree_vector_cache
, vec
);
8589 /* Get a new tree vector holding a single tree. */
8592 make_tree_vector_single (tree t
)
8594 vec
<tree
, va_gc
> *ret
= make_tree_vector ();
8595 ret
->quick_push (t
);
8599 /* Get a new tree vector of the TREE_VALUEs of a TREE_LIST chain. */
8602 make_tree_vector_from_list (tree list
)
8604 vec
<tree
, va_gc
> *ret
= make_tree_vector ();
8605 for (; list
; list
= TREE_CHAIN (list
))
8606 vec_safe_push (ret
, TREE_VALUE (list
));
8610 /* Get a new tree vector of the values of a CONSTRUCTOR. */
8613 make_tree_vector_from_ctor (tree ctor
)
8615 vec
<tree
,va_gc
> *ret
= make_tree_vector ();
8616 vec_safe_reserve (ret
, CONSTRUCTOR_NELTS (ctor
));
8617 for (unsigned i
= 0; i
< CONSTRUCTOR_NELTS (ctor
); ++i
)
8618 ret
->quick_push (CONSTRUCTOR_ELT (ctor
, i
)->value
);
8622 /* Get a new tree vector which is a copy of an existing one. */
8625 make_tree_vector_copy (const vec
<tree
, va_gc
> *orig
)
8627 vec
<tree
, va_gc
> *ret
;
8631 ret
= make_tree_vector ();
8632 vec_safe_reserve (ret
, vec_safe_length (orig
));
8633 FOR_EACH_VEC_SAFE_ELT (orig
, ix
, t
)
8634 ret
->quick_push (t
);
8638 /* Return true if KEYWORD starts a type specifier. */
8641 keyword_begins_type_specifier (enum rid keyword
)
8676 if (keyword
>= RID_FIRST_INT_N
8677 && keyword
< RID_FIRST_INT_N
+ NUM_INT_N_ENTS
8678 && int_n_enabled_p
[keyword
-RID_FIRST_INT_N
])
8684 /* Return true if KEYWORD names a type qualifier. */
8687 keyword_is_type_qualifier (enum rid keyword
)
8701 /* Return true if KEYWORD names a storage class specifier.
8703 RID_TYPEDEF is not included in this list despite `typedef' being
8704 listed in C99 6.7.1.1. 6.7.1.3 indicates that `typedef' is listed as
8705 such for syntactic convenience only. */
8708 keyword_is_storage_class_specifier (enum rid keyword
)
8724 /* Return true if KEYWORD names a function-specifier [dcl.fct.spec]. */
8727 keyword_is_function_specifier (enum rid keyword
)
8741 /* Return true if KEYWORD names a decl-specifier [dcl.spec] or a
8742 declaration-specifier (C99 6.7). */
8745 keyword_is_decl_specifier (enum rid keyword
)
8747 if (keyword_is_storage_class_specifier (keyword
)
8748 || keyword_is_type_qualifier (keyword
)
8749 || keyword_is_function_specifier (keyword
))
8764 /* Initialize language-specific-bits of tree_contains_struct. */
8767 c_common_init_ts (void)
8769 MARK_TS_EXP (SIZEOF_EXPR
);
8770 MARK_TS_EXP (PAREN_SIZEOF_EXPR
);
8771 MARK_TS_EXP (C_MAYBE_CONST_EXPR
);
8772 MARK_TS_EXP (EXCESS_PRECISION_EXPR
);
8773 MARK_TS_EXP (BREAK_STMT
);
8774 MARK_TS_EXP (CONTINUE_STMT
);
8775 MARK_TS_EXP (DO_STMT
);
8776 MARK_TS_EXP (FOR_STMT
);
8777 MARK_TS_EXP (SWITCH_STMT
);
8778 MARK_TS_EXP (WHILE_STMT
);
8780 MARK_TS_DECL_COMMON (CONCEPT_DECL
);
8783 /* Build a user-defined numeric literal out of an integer constant type VALUE
8784 with identifier SUFFIX. */
8787 build_userdef_literal (tree suffix_id
, tree value
,
8788 enum overflow_type overflow
, tree num_string
)
8790 tree literal
= make_node (USERDEF_LITERAL
);
8791 USERDEF_LITERAL_SUFFIX_ID (literal
) = suffix_id
;
8792 USERDEF_LITERAL_VALUE (literal
) = value
;
8793 USERDEF_LITERAL_OVERFLOW (literal
) = overflow
;
8794 USERDEF_LITERAL_NUM_STRING (literal
) = num_string
;
8798 /* For vector[index], convert the vector to an array of the underlying type.
8799 Return true if the resulting ARRAY_REF should not be an lvalue. */
8802 convert_vector_to_array_for_subscript (location_t loc
,
8803 tree
*vecp
, tree index
)
8806 if (gnu_vector_type_p (TREE_TYPE (*vecp
)))
8808 tree type
= TREE_TYPE (*vecp
);
8810 ret
= !lvalue_p (*vecp
);
8812 index
= fold_for_warn (index
);
8813 if (TREE_CODE (index
) == INTEGER_CST
)
8814 if (!tree_fits_uhwi_p (index
)
8815 || maybe_ge (tree_to_uhwi (index
), TYPE_VECTOR_SUBPARTS (type
)))
8816 warning_at (loc
, OPT_Warray_bounds_
, "index value is out of bound");
8818 /* We are building an ARRAY_REF so mark the vector as addressable
8819 to not run into the gimplifiers premature setting of DECL_GIMPLE_REG_P
8820 for function parameters. */
8821 c_common_mark_addressable_vec (*vecp
);
8823 *vecp
= build1 (VIEW_CONVERT_EXPR
,
8824 build_array_type_nelts (TREE_TYPE (type
),
8825 TYPE_VECTOR_SUBPARTS (type
)),
8831 /* Determine which of the operands, if any, is a scalar that needs to be
8832 converted to a vector, for the range of operations. */
8834 scalar_to_vector (location_t loc
, enum tree_code code
, tree op0
, tree op1
,
8837 tree type0
= TREE_TYPE (op0
);
8838 tree type1
= TREE_TYPE (op1
);
8839 bool integer_only_op
= false;
8840 enum stv_conv ret
= stv_firstarg
;
8842 gcc_assert (gnu_vector_type_p (type0
) || gnu_vector_type_p (type1
));
8845 /* Most GENERIC binary expressions require homogeneous arguments.
8846 LSHIFT_EXPR and RSHIFT_EXPR are exceptions and accept a first
8847 argument that is a vector and a second one that is a scalar, so
8848 we never return stv_secondarg for them. */
8851 if (TREE_CODE (type0
) == INTEGER_TYPE
8852 && TREE_CODE (TREE_TYPE (type1
)) == INTEGER_TYPE
)
8854 if (unsafe_conversion_p (TREE_TYPE (type1
), op0
,
8858 error_at (loc
, "conversion of scalar %qT to vector %qT "
8859 "involves truncation", type0
, type1
);
8863 return stv_firstarg
;
8870 integer_only_op
= true;
8878 case TRUNC_DIV_EXPR
:
8880 case FLOOR_DIV_EXPR
:
8881 case ROUND_DIV_EXPR
:
8882 case EXACT_DIV_EXPR
:
8883 case TRUNC_MOD_EXPR
:
8884 case FLOOR_MOD_EXPR
:
8892 /* What about UNLT_EXPR? */
8893 if (gnu_vector_type_p (type0
))
8895 ret
= stv_secondarg
;
8896 std::swap (type0
, type1
);
8897 std::swap (op0
, op1
);
8900 if (TREE_CODE (type0
) == INTEGER_TYPE
8901 && TREE_CODE (TREE_TYPE (type1
)) == INTEGER_TYPE
)
8903 if (unsafe_conversion_p (TREE_TYPE (type1
), op0
,
8907 error_at (loc
, "conversion of scalar %qT to vector %qT "
8908 "involves truncation", type0
, type1
);
8913 else if (!integer_only_op
8914 /* Allow integer --> real conversion if safe. */
8915 && (SCALAR_FLOAT_TYPE_P (type0
)
8916 || TREE_CODE (type0
) == INTEGER_TYPE
)
8917 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (type1
)))
8919 if (unsafe_conversion_p (TREE_TYPE (type1
), op0
,
8923 error_at (loc
, "conversion of scalar %qT to vector %qT "
8924 "involves truncation", type0
, type1
);
8936 /* Return the alignment of std::max_align_t.
8938 [support.types.layout] The type max_align_t is a POD type whose alignment
8939 requirement is at least as great as that of every scalar type, and whose
8940 alignment requirement is supported in every context. */
8943 max_align_t_align ()
8945 unsigned int max_align
= MAX (TYPE_ALIGN (long_long_integer_type_node
),
8946 TYPE_ALIGN (long_double_type_node
));
8947 if (float128_type_node
!= NULL_TREE
)
8948 max_align
= MAX (max_align
, TYPE_ALIGN (float128_type_node
));
8952 /* Return true iff ALIGN is an integral constant that is a fundamental
8953 alignment, as defined by [basic.align] in the c++-11
8958 [A fundamental alignment is represented by an alignment less than or
8959 equal to the greatest alignment supported by the implementation
8960 in all contexts, which is equal to alignof(max_align_t)]. */
8963 cxx_fundamental_alignment_p (unsigned align
)
8965 return (align
<= max_align_t_align ());
8968 /* Return true if T is a pointer to a zero-sized aggregate. */
8971 pointer_to_zero_sized_aggr_p (tree t
)
8973 if (!POINTER_TYPE_P (t
))
8976 return (TYPE_SIZE (t
) && integer_zerop (TYPE_SIZE (t
)));
8979 /* For an EXPR of a FUNCTION_TYPE that references a GCC built-in function
8980 with no library fallback or for an ADDR_EXPR whose operand is such type
8981 issues an error pointing to the location LOC.
8982 Returns true when the expression has been diagnosed and false
8986 reject_gcc_builtin (const_tree expr
, location_t loc
/* = UNKNOWN_LOCATION */)
8988 if (TREE_CODE (expr
) == ADDR_EXPR
)
8989 expr
= TREE_OPERAND (expr
, 0);
8991 STRIP_ANY_LOCATION_WRAPPER (expr
);
8993 if (TREE_TYPE (expr
)
8994 && TREE_CODE (TREE_TYPE (expr
)) == FUNCTION_TYPE
8995 && TREE_CODE (expr
) == FUNCTION_DECL
8996 /* The intersection of DECL_BUILT_IN and DECL_IS_UNDECLARED_BUILTIN avoids
8997 false positives for user-declared built-ins such as abs or
8998 strlen, and for C++ operators new and delete.
8999 The c_decl_implicit() test avoids false positives for implicitly
9000 declared built-ins with library fallbacks (such as abs). */
9001 && fndecl_built_in_p (expr
)
9002 && DECL_IS_UNDECLARED_BUILTIN (expr
)
9003 && !c_decl_implicit (expr
)
9004 && !DECL_ASSEMBLER_NAME_SET_P (expr
))
9006 if (loc
== UNKNOWN_LOCATION
)
9007 loc
= EXPR_LOC_OR_LOC (expr
, input_location
);
9009 /* Reject arguments that are built-in functions with
9010 no library fallback. */
9011 error_at (loc
, "built-in function %qE must be directly called", expr
);
9019 /* Issue an ERROR for an invalid SIZE of array NAME which is null
9020 for unnamed arrays. */
9023 invalid_array_size_error (location_t loc
, cst_size_error error
,
9024 const_tree size
, const_tree name
)
9026 tree maxsize
= max_object_size ();
9029 case cst_size_not_constant
:
9031 error_at (loc
, "size of array %qE is not a constant expression",
9034 error_at (loc
, "size of array is not a constant expression");
9036 case cst_size_negative
:
9038 error_at (loc
, "size %qE of array %qE is negative",
9041 error_at (loc
, "size %qE of array is negative",
9044 case cst_size_too_big
:
9046 error_at (loc
, "size %qE of array %qE exceeds maximum "
9047 "object size %qE", size
, name
, maxsize
);
9049 error_at (loc
, "size %qE of array exceeds maximum "
9050 "object size %qE", size
, maxsize
);
9052 case cst_size_overflow
:
9054 error_at (loc
, "size of array %qE exceeds maximum "
9055 "object size %qE", name
, maxsize
);
9057 error_at (loc
, "size of array exceeds maximum "
9058 "object size %qE", maxsize
);
9065 /* Check if array size calculations overflow or if the array covers more
9066 than half of the address space. Return true if the size of the array
9067 is valid, false otherwise. T is either the type of the array or its
9068 size, and NAME is the name of the array, or null for unnamed arrays. */
9071 valid_array_size_p (location_t loc
, const_tree t
, tree name
, bool complain
)
9073 if (t
== error_mark_node
)
9079 if (!COMPLETE_TYPE_P (t
))
9081 size
= TYPE_SIZE_UNIT (t
);
9086 if (TREE_CODE (size
) != INTEGER_CST
)
9089 cst_size_error error
;
9090 if (valid_constant_size_p (size
, &error
))
9096 if (TREE_CODE (TREE_TYPE (size
)) == ENUMERAL_TYPE
)
9097 /* Show the value of the enumerator rather than its name. */
9098 size
= convert (ssizetype
, const_cast<tree
> (size
));
9100 invalid_array_size_error (loc
, error
, size
, name
);
9104 /* Read SOURCE_DATE_EPOCH from environment to have a deterministic
9105 timestamp to replace embedded current dates to get reproducible
9106 results. Returns -1 if SOURCE_DATE_EPOCH is not defined. */
9109 cb_get_source_date_epoch (cpp_reader
*pfile ATTRIBUTE_UNUSED
)
9111 char *source_date_epoch
;
9115 source_date_epoch
= getenv ("SOURCE_DATE_EPOCH");
9116 if (!source_date_epoch
)
9120 #if defined(INT64_T_IS_LONG)
9121 epoch
= strtol (source_date_epoch
, &endptr
, 10);
9123 epoch
= strtoll (source_date_epoch
, &endptr
, 10);
9125 if (errno
!= 0 || endptr
== source_date_epoch
|| *endptr
!= '\0'
9126 || epoch
< 0 || epoch
> MAX_SOURCE_DATE_EPOCH
)
9128 error_at (input_location
, "environment variable %qs must "
9129 "expand to a non-negative integer less than or equal to %wd",
9130 "SOURCE_DATE_EPOCH", MAX_SOURCE_DATE_EPOCH
);
9134 return (time_t) epoch
;
9137 /* Callback for libcpp for offering spelling suggestions for misspelled
9138 directives. GOAL is an unrecognized string; CANDIDATES is a
9139 NULL-terminated array of candidate strings. Return the closest
9140 match to GOAL within CANDIDATES, or NULL if none are good
9144 cb_get_suggestion (cpp_reader
*, const char *goal
,
9145 const char *const *candidates
)
9147 best_match
<const char *, const char *> bm (goal
);
9149 bm
.consider (*candidates
++);
9150 return bm
.get_best_meaningful_candidate ();
9153 /* Return the latice point which is the wider of the two FLT_EVAL_METHOD
9154 modes X, Y. This isn't just >, as the FLT_EVAL_METHOD values added
9155 by C TS 18661-3 for interchange types that are computed in their
9156 native precision are larger than the C11 values for evaluating in the
9157 precision of float/double/long double. If either mode is
9158 FLT_EVAL_METHOD_UNPREDICTABLE, return that. */
9160 enum flt_eval_method
9161 excess_precision_mode_join (enum flt_eval_method x
,
9162 enum flt_eval_method y
)
9164 if (x
== FLT_EVAL_METHOD_UNPREDICTABLE
9165 || y
== FLT_EVAL_METHOD_UNPREDICTABLE
)
9166 return FLT_EVAL_METHOD_UNPREDICTABLE
;
9168 /* GCC only supports one interchange type right now, _Float16. If
9169 we're evaluating _Float16 in 16-bit precision, then flt_eval_method
9170 will be FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16. */
9171 if (x
== FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16
)
9173 if (y
== FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16
)
9176 /* Other values for flt_eval_method are directly comparable, and we want
9181 /* Return the value that should be set for FLT_EVAL_METHOD in the
9182 context of ISO/IEC TS 18861-3.
9184 This relates to the effective excess precision seen by the user,
9185 which is the join point of the precision the target requests for
9186 -fexcess-precision={standard,fast,16} and the implicit excess precision
9189 static enum flt_eval_method
9190 c_ts18661_flt_eval_method (void)
9192 enum flt_eval_method implicit
9193 = targetm
.c
.excess_precision (EXCESS_PRECISION_TYPE_IMPLICIT
);
9195 enum excess_precision_type flag_type
9196 = (flag_excess_precision
== EXCESS_PRECISION_STANDARD
9197 ? EXCESS_PRECISION_TYPE_STANDARD
9198 : (flag_excess_precision
== EXCESS_PRECISION_FLOAT16
9199 ? EXCESS_PRECISION_TYPE_FLOAT16
9200 : EXCESS_PRECISION_TYPE_FAST
));
9202 enum flt_eval_method requested
9203 = targetm
.c
.excess_precision (flag_type
);
9205 return excess_precision_mode_join (implicit
, requested
);
9208 /* As c_cpp_ts18661_flt_eval_method, but clamps the expected values to
9209 those that were permitted by C11. That is to say, eliminates
9210 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT16. */
9212 static enum flt_eval_method
9213 c_c11_flt_eval_method (void)
9215 return excess_precision_mode_join (c_ts18661_flt_eval_method (),
9216 FLT_EVAL_METHOD_PROMOTE_TO_FLOAT
);
9219 /* Return the value that should be set for FLT_EVAL_METHOD.
9220 MAYBE_C11_ONLY_P is TRUE if we should check
9221 FLAG_PERMITTED_EVAL_METHODS as to whether we should limit the possible
9222 values we can return to those from C99/C11, and FALSE otherwise.
9223 See the comments on c_ts18661_flt_eval_method for what value we choose
9227 c_flt_eval_method (bool maybe_c11_only_p
)
9229 if (maybe_c11_only_p
9230 && flag_permitted_flt_eval_methods
9231 == PERMITTED_FLT_EVAL_METHODS_C11
)
9232 return c_c11_flt_eval_method ();
9234 return c_ts18661_flt_eval_method ();
9237 /* An enum for get_missing_token_insertion_kind for describing the best
9238 place to insert a missing token, if there is one. */
9240 enum missing_token_insertion_kind
9243 MTIK_INSERT_BEFORE_NEXT
,
9244 MTIK_INSERT_AFTER_PREV
9247 /* Given a missing token of TYPE, determine if it is reasonable to
9248 emit a fix-it hint suggesting the insertion of the token, and,
9249 if so, where the token should be inserted relative to other tokens.
9251 It only makes sense to do this for values of TYPE that are symbols.
9253 Some symbols should go before the next token, e.g. in:
9255 we want to insert the missing '(' immediately before "flag",
9260 These use MTIK_INSERT_BEFORE_NEXT.
9262 Other symbols should go after the previous token, e.g. in:
9265 we want to insert the missing ')' immediately after the "flag",
9272 These use MTIK_INSERT_AFTER_PREV. */
9274 static enum missing_token_insertion_kind
9275 get_missing_token_insertion_kind (enum cpp_ttype type
)
9279 /* Insert missing "opening" brackets immediately
9280 before the next token. */
9281 case CPP_OPEN_SQUARE
:
9282 case CPP_OPEN_PAREN
:
9283 return MTIK_INSERT_BEFORE_NEXT
;
9285 /* Insert other missing symbols immediately after
9286 the previous token. */
9287 case CPP_CLOSE_PAREN
:
9288 case CPP_CLOSE_SQUARE
:
9292 return MTIK_INSERT_AFTER_PREV
;
9294 /* Other kinds of token don't get fix-it hints. */
9296 return MTIK_IMPOSSIBLE
;
9300 /* Given RICHLOC, a location for a diagnostic describing a missing token
9301 of kind TOKEN_TYPE, potentially add a fix-it hint suggesting the
9302 insertion of the token.
9304 The location of the attempted fix-it hint depends on TOKEN_TYPE:
9306 (a) immediately after PREV_TOKEN_LOC, or
9308 (b) immediately before the primary location within RICHLOC (taken to
9309 be that of the token following where the token was expected).
9311 If we manage to add a fix-it hint, then the location of the
9312 fix-it hint is likely to be more useful as the primary location
9313 of the diagnostic than that of the following token, so we swap
9316 For example, given this bogus code:
9317 123456789012345678901234567890
9318 1 | int missing_semicolon (void)
9325 "expected ';' before '}'"
9327 RICHLOC's primary location is at the closing brace, so before "swapping"
9328 we would emit the error at line 4 column 1:
9330 123456789012345678901234567890
9331 3 | return 42 |< fix-it hint emitted for this line
9333 4 | } |< "expected ';' before '}'" emitted at this line
9336 It's more useful for the location of the diagnostic to be at the
9337 fix-it hint, so we swap the locations, so the primary location
9338 is at the fix-it hint, with the old primary location inserted
9339 as a secondary location, giving this, with the error at line 3
9342 123456789012345678901234567890
9343 3 | return 42 |< "expected ';' before '}'" emitted at this line,
9344 | ^ | with fix-it hint
9346 | } |< secondary range emitted here
9350 maybe_suggest_missing_token_insertion (rich_location
*richloc
,
9351 enum cpp_ttype token_type
,
9352 location_t prev_token_loc
)
9354 gcc_assert (richloc
);
9356 enum missing_token_insertion_kind mtik
9357 = get_missing_token_insertion_kind (token_type
);
9365 case MTIK_IMPOSSIBLE
:
9368 case MTIK_INSERT_BEFORE_NEXT
:
9369 /* Attempt to add the fix-it hint before the primary location
9371 richloc
->add_fixit_insert_before (cpp_type2name (token_type
, 0));
9374 case MTIK_INSERT_AFTER_PREV
:
9375 /* Attempt to add the fix-it hint after PREV_TOKEN_LOC. */
9376 richloc
->add_fixit_insert_after (prev_token_loc
,
9377 cpp_type2name (token_type
, 0));
9381 /* If we were successful, use the fix-it hint's location as the
9382 primary location within RICHLOC, adding the old primary location
9383 back as a secondary location. */
9384 if (!richloc
->seen_impossible_fixit_p ())
9386 fixit_hint
*hint
= richloc
->get_last_fixit_hint ();
9387 location_t hint_loc
= hint
->get_start_loc ();
9388 location_t old_loc
= richloc
->get_loc ();
9390 richloc
->set_range (0, hint_loc
, SHOW_RANGE_WITH_CARET
);
9391 richloc
->add_range (old_loc
);
9397 namespace selftest
{
9399 /* Verify that fold_for_warn on error_mark_node is safe. */
9402 test_fold_for_warn ()
9404 ASSERT_EQ (error_mark_node
, fold_for_warn (error_mark_node
));
9407 /* Run all of the selftests within this file. */
9410 c_common_cc_tests ()
9412 test_fold_for_warn ();
9415 /* Run all of the tests within c-family. */
9418 c_family_tests (void)
9420 c_common_cc_tests ();
9421 c_format_cc_tests ();
9422 c_indentation_cc_tests ();
9423 c_pretty_print_cc_tests ();
9424 c_spellcheck_cc_tests ();
9425 c_diagnostic_cc_tests ();
9426 c_opt_problem_cc_tests ();
9429 } // namespace selftest
9431 #endif /* #if CHECKING_P */
9433 /* Attempt to locate a suitable location within FILE for a
9434 #include directive to be inserted before.
9435 LOC is the location of the relevant diagnostic.
9437 Attempt to return the location within FILE immediately
9438 after the last #include within that file, or the start of
9439 that file if it has no #include directives.
9441 Return UNKNOWN_LOCATION if no suitable location is found,
9442 or if an error occurs. */
9445 try_to_locate_new_include_insertion_point (const char *file
, location_t loc
)
9447 /* Locate the last ordinary map within FILE that ended with a #include. */
9448 const line_map_ordinary
*last_include_ord_map
= NULL
;
9450 /* ...and the next ordinary map within FILE after that one. */
9451 const line_map_ordinary
*last_ord_map_after_include
= NULL
;
9453 /* ...and the first ordinary map within FILE. */
9454 const line_map_ordinary
*first_ord_map_in_file
= NULL
;
9456 /* Get ordinary map containing LOC (or its expansion). */
9457 const line_map_ordinary
*ord_map_for_loc
= NULL
;
9458 linemap_resolve_location (line_table
, loc
, LRK_MACRO_EXPANSION_POINT
,
9460 gcc_assert (ord_map_for_loc
);
9462 for (unsigned int i
= 0; i
< LINEMAPS_ORDINARY_USED (line_table
); i
++)
9464 const line_map_ordinary
*ord_map
9465 = LINEMAPS_ORDINARY_MAP_AT (line_table
, i
);
9467 if (const line_map_ordinary
*from
9468 = linemap_included_from_linemap (line_table
, ord_map
))
9469 /* We cannot use pointer equality, because with preprocessed
9470 input all filename strings are unique. */
9471 if (0 == strcmp (from
->to_file
, file
))
9473 last_include_ord_map
= from
;
9474 last_ord_map_after_include
= NULL
;
9477 /* Likewise, use strcmp, and reject any line-zero introductory
9479 if (ord_map
->to_line
&& 0 == strcmp (ord_map
->to_file
, file
))
9481 if (!first_ord_map_in_file
)
9482 first_ord_map_in_file
= ord_map
;
9483 if (last_include_ord_map
&& !last_ord_map_after_include
)
9484 last_ord_map_after_include
= ord_map
;
9487 /* Stop searching when reaching the ord_map containing LOC,
9488 as it makes no sense to provide fix-it hints that appear
9489 after the diagnostic in question. */
9490 if (ord_map
== ord_map_for_loc
)
9494 /* Determine where to insert the #include. */
9495 const line_map_ordinary
*ord_map_for_insertion
;
9497 /* We want the next ordmap in the file after the last one that's a
9498 #include, but failing that, the start of the file. */
9499 if (last_ord_map_after_include
)
9500 ord_map_for_insertion
= last_ord_map_after_include
;
9502 ord_map_for_insertion
= first_ord_map_in_file
;
9504 if (!ord_map_for_insertion
)
9505 return UNKNOWN_LOCATION
;
9507 /* The "start_location" is column 0, meaning "the whole line".
9508 rich_location and edit_context can't cope with this, so use
9509 column 1 instead. */
9510 location_t col_0
= ord_map_for_insertion
->start_location
;
9511 return linemap_position_for_loc_and_offset (line_table
, col_0
, 1);
9514 /* A map from filenames to sets of headers added to them, for
9515 ensuring idempotency within maybe_add_include_fixit. */
9517 /* The values within the map. We need string comparison as there's
9518 no guarantee that two different diagnostics that are recommending
9519 adding e.g. "<stdio.h>" are using the same buffer. */
9521 typedef hash_set
<const char *, false, nofree_string_hash
> per_file_includes_t
;
9523 /* The map itself. We don't need string comparison for the filename keys,
9524 as they come from libcpp. */
9526 typedef hash_map
<const char *, per_file_includes_t
*> added_includes_t
;
9527 static added_includes_t
*added_includes
;
9529 /* Attempt to add a fix-it hint to RICHLOC, adding "#include HEADER\n"
9530 in a suitable location within the file of RICHLOC's primary
9533 This function is idempotent: a header will be added at most once to
9536 If OVERRIDE_LOCATION is true, then if a fix-it is added and will be
9537 printed, then RICHLOC's primary location will be replaced by that of
9538 the fix-it hint (for use by "inform" notes where the location of the
9539 issue has already been reported). */
9542 maybe_add_include_fixit (rich_location
*richloc
, const char *header
,
9543 bool override_location
)
9545 location_t loc
= richloc
->get_loc ();
9546 const char *file
= LOCATION_FILE (loc
);
9550 /* Idempotency: don't add the same header more than once to a given file. */
9551 if (!added_includes
)
9552 added_includes
= new added_includes_t ();
9553 per_file_includes_t
*&set
= added_includes
->get_or_insert (file
);
9555 if (set
->contains (header
))
9556 /* ...then we've already added HEADER to that file. */
9559 set
= new per_file_includes_t ();
9562 /* Attempt to locate a suitable place for the new directive. */
9563 location_t include_insert_loc
9564 = try_to_locate_new_include_insertion_point (file
, loc
);
9565 if (include_insert_loc
== UNKNOWN_LOCATION
)
9568 char *text
= xasprintf ("#include %s\n", header
);
9569 richloc
->add_fixit_insert_before (include_insert_loc
, text
);
9572 if (override_location
&& global_dc
->m_source_printing
.enabled
)
9574 /* Replace the primary location with that of the insertion point for the
9577 We use SHOW_LINES_WITHOUT_RANGE so that we don't meaningless print a
9578 caret for the insertion point (or colorize it).
9580 Hence we print e.g.:
9582 ../x86_64-pc-linux-gnu/libstdc++-v3/include/vector:74:1: note: msg 2
9583 73 | # include <debug/vector>
9584 +++ |+#include <vector>
9589 ../x86_64-pc-linux-gnu/libstdc++-v3/include/vector:74:1: note: msg 2
9590 73 | # include <debug/vector>
9591 +++ |+#include <vector>
9595 avoiding the caret on the first column of line 74. */
9596 richloc
->set_range (0, include_insert_loc
, SHOW_LINES_WITHOUT_RANGE
);
9600 /* Attempt to convert a braced array initializer list CTOR for array
9601 TYPE into a STRING_CST for convenience and efficiency. Return
9602 the converted string on success or the original ctor on failure. */
9605 braced_list_to_string (tree type
, tree ctor
, bool member
)
9607 /* Ignore non-members with unknown size like arrays with unspecified
9609 tree typesize
= TYPE_SIZE_UNIT (type
);
9610 if (!member
&& !tree_fits_uhwi_p (typesize
))
9613 /* If the target char size differs from the host char size, we'd risk
9614 loosing data and getting object sizes wrong by converting to
9616 if (TYPE_PRECISION (char_type_node
) != CHAR_BIT
)
9619 /* STRING_CST doesn't support wide characters. */
9620 gcc_checking_assert (TYPE_PRECISION (TREE_TYPE (type
)) == CHAR_BIT
);
9622 /* If the array has an explicit bound, use it to constrain the size
9623 of the string. If it doesn't, be sure to create a string that's
9624 as long as implied by the index of the last zero specified via
9625 a designator, as in:
9626 const char a[] = { [7] = 0 }; */
9627 unsigned HOST_WIDE_INT maxelts
;
9630 maxelts
= tree_to_uhwi (typesize
);
9631 maxelts
/= tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (type
)));
9634 maxelts
= HOST_WIDE_INT_M1U
;
9636 /* Avoid converting initializers for zero-length arrays (but do
9637 create them for flexible array members). */
9641 unsigned HOST_WIDE_INT nelts
= CONSTRUCTOR_NELTS (ctor
);
9644 str
.reserve (nelts
+ 1);
9646 unsigned HOST_WIDE_INT i
;
9649 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor
), i
, index
, value
)
9651 unsigned HOST_WIDE_INT idx
= i
;
9654 if (!tree_fits_uhwi_p (index
))
9656 idx
= tree_to_uhwi (index
);
9659 /* auto_vec is limited to UINT_MAX elements. */
9663 /* Avoid non-constant initializers. */
9664 if (!tree_fits_shwi_p (value
))
9667 /* Skip over embedded nuls except the last one (initializer
9668 elements are in ascending order of indices). */
9669 HOST_WIDE_INT val
= tree_to_shwi (value
);
9670 if (!val
&& i
+ 1 < nelts
)
9673 if (idx
< str
.length())
9676 /* Bail if the CTOR has a block of more than 256 embedded nuls
9677 due to implicitly initialized elements. */
9678 unsigned nchars
= (idx
- str
.length ()) + 1;
9685 str
.quick_grow_cleared (idx
);
9691 str
.safe_insert (idx
, val
);
9694 /* Append a nul string termination. */
9695 if (maxelts
!= HOST_WIDE_INT_M1U
&& str
.length () < maxelts
)
9698 /* Build a STRING_CST with the same type as the array. */
9699 tree res
= build_string (str
.length (), str
.begin ());
9700 TREE_TYPE (res
) = type
;
9704 /* Implementation of the two-argument braced_lists_to_string withe
9705 the same arguments plus MEMBER which is set for struct members
9706 to allow initializers for flexible member arrays. */
9709 braced_lists_to_strings (tree type
, tree ctor
, bool member
)
9711 if (TREE_CODE (ctor
) != CONSTRUCTOR
)
9714 tree_code code
= TREE_CODE (type
);
9717 if (code
== ARRAY_TYPE
)
9718 ttp
= TREE_TYPE (type
);
9719 else if (code
== RECORD_TYPE
)
9721 ttp
= TREE_TYPE (ctor
);
9722 if (TREE_CODE (ttp
) == ARRAY_TYPE
)
9725 ttp
= TREE_TYPE (ttp
);
9731 if ((TREE_CODE (ttp
) == ARRAY_TYPE
|| TREE_CODE (ttp
) == INTEGER_TYPE
)
9732 && TYPE_STRING_FLAG (ttp
))
9733 return braced_list_to_string (type
, ctor
, member
);
9735 code
= TREE_CODE (ttp
);
9736 if (code
== ARRAY_TYPE
|| RECORD_OR_UNION_TYPE_P (ttp
))
9738 bool rec
= RECORD_OR_UNION_TYPE_P (ttp
);
9740 /* Handle array of arrays or struct member initializers. */
9742 unsigned HOST_WIDE_INT idx
;
9743 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (ctor
), idx
, val
)
9745 val
= braced_lists_to_strings (ttp
, val
, rec
);
9746 CONSTRUCTOR_ELT (ctor
, idx
)->value
= val
;
9753 /* Attempt to convert a CTOR containing braced array initializer lists
9754 for array TYPE into one containing STRING_CSTs, for convenience and
9755 efficiency. Recurse for arrays of arrays and member initializers.
9756 Return the converted CTOR or STRING_CST on success or the original
9760 braced_lists_to_strings (tree type
, tree ctor
)
9762 return braced_lists_to_strings (type
, ctor
, false);
9766 /* Emit debug for functions before finalizing early debug. */
9769 c_common_finalize_early_debug (void)
9771 /* Emit early debug for reachable functions, and by consequence,
9772 locally scoped symbols. Also emit debug for extern declared
9773 functions that are still reachable at this point. */
9774 struct cgraph_node
*cnode
;
9775 FOR_EACH_FUNCTION (cnode
)
9776 if (!cnode
->alias
&& !cnode
->thunk
9777 && (cnode
->has_gimple_body_p ()
9778 || !DECL_IS_UNDECLARED_BUILTIN (cnode
->decl
)))
9779 (*debug_hooks
->early_global_decl
) (cnode
->decl
);
9782 /* Get the LEVEL of the strict_flex_array for the ARRAY_FIELD based on the
9783 values of attribute strict_flex_array and the flag_strict_flex_arrays. */
9785 c_strict_flex_array_level_of (tree array_field
)
9787 gcc_assert (TREE_CODE (array_field
) == FIELD_DECL
);
9788 unsigned int strict_flex_array_level
= flag_strict_flex_arrays
;
9790 tree attr_strict_flex_array
9791 = lookup_attribute ("strict_flex_array", DECL_ATTRIBUTES (array_field
));
9792 /* If there is a strict_flex_array attribute attached to the field,
9793 override the flag_strict_flex_arrays. */
9794 if (attr_strict_flex_array
)
9796 /* Get the value of the level first from the attribute. */
9797 unsigned HOST_WIDE_INT attr_strict_flex_array_level
= 0;
9798 gcc_assert (TREE_VALUE (attr_strict_flex_array
) != NULL_TREE
);
9799 attr_strict_flex_array
= TREE_VALUE (attr_strict_flex_array
);
9800 gcc_assert (TREE_VALUE (attr_strict_flex_array
) != NULL_TREE
);
9801 attr_strict_flex_array
= TREE_VALUE (attr_strict_flex_array
);
9802 gcc_assert (tree_fits_uhwi_p (attr_strict_flex_array
));
9803 attr_strict_flex_array_level
= tree_to_uhwi (attr_strict_flex_array
);
9805 /* The attribute has higher priority than flag_struct_flex_array. */
9806 strict_flex_array_level
= attr_strict_flex_array_level
;
9808 return strict_flex_array_level
;
9811 #include "gt-c-family-c-common.h"