errors.h (warning, [...]): Mark as cold.
[gcc.git] / gcc / c-common.c
1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "intl.h"
27 #include "tree.h"
28 #include "flags.h"
29 #include "output.h"
30 #include "c-pragma.h"
31 #include "rtl.h"
32 #include "ggc.h"
33 #include "varray.h"
34 #include "expr.h"
35 #include "c-common.h"
36 #include "diagnostic.h"
37 #include "tm_p.h"
38 #include "obstack.h"
39 #include "cpplib.h"
40 #include "target.h"
41 #include "langhooks.h"
42 #include "tree-inline.h"
43 #include "c-tree.h"
44 #include "toplev.h"
45 #include "tree-iterator.h"
46 #include "hashtab.h"
47 #include "tree-mudflap.h"
48 #include "opts.h"
49 #include "real.h"
50 #include "cgraph.h"
51 #include "target-def.h"
52
53 cpp_reader *parse_in; /* Declared in c-pragma.h. */
54
55 /* We let tm.h override the types used here, to handle trivial differences
56 such as the choice of unsigned int or long unsigned int for size_t.
57 When machines start needing nontrivial differences in the size type,
58 it would be best to do something here to figure out automatically
59 from other information what type to use. */
60
61 #ifndef SIZE_TYPE
62 #define SIZE_TYPE "long unsigned int"
63 #endif
64
65 #ifndef PID_TYPE
66 #define PID_TYPE "int"
67 #endif
68
69 #ifndef WCHAR_TYPE
70 #define WCHAR_TYPE "int"
71 #endif
72
73 /* WCHAR_TYPE gets overridden by -fshort-wchar. */
74 #define MODIFIED_WCHAR_TYPE \
75 (flag_short_wchar ? "short unsigned int" : WCHAR_TYPE)
76
77 #ifndef PTRDIFF_TYPE
78 #define PTRDIFF_TYPE "long int"
79 #endif
80
81 #ifndef WINT_TYPE
82 #define WINT_TYPE "unsigned int"
83 #endif
84
85 #ifndef INTMAX_TYPE
86 #define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
87 ? "int" \
88 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
89 ? "long int" \
90 : "long long int"))
91 #endif
92
93 #ifndef UINTMAX_TYPE
94 #define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
95 ? "unsigned int" \
96 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
97 ? "long unsigned int" \
98 : "long long unsigned int"))
99 #endif
100
101 /* The following symbols are subsumed in the c_global_trees array, and
102 listed here individually for documentation purposes.
103
104 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
105
106 tree short_integer_type_node;
107 tree long_integer_type_node;
108 tree long_long_integer_type_node;
109
110 tree short_unsigned_type_node;
111 tree long_unsigned_type_node;
112 tree long_long_unsigned_type_node;
113
114 tree truthvalue_type_node;
115 tree truthvalue_false_node;
116 tree truthvalue_true_node;
117
118 tree ptrdiff_type_node;
119
120 tree unsigned_char_type_node;
121 tree signed_char_type_node;
122 tree wchar_type_node;
123 tree signed_wchar_type_node;
124 tree unsigned_wchar_type_node;
125
126 tree float_type_node;
127 tree double_type_node;
128 tree long_double_type_node;
129
130 tree complex_integer_type_node;
131 tree complex_float_type_node;
132 tree complex_double_type_node;
133 tree complex_long_double_type_node;
134
135 tree dfloat32_type_node;
136 tree dfloat64_type_node;
137 tree_dfloat128_type_node;
138
139 tree intQI_type_node;
140 tree intHI_type_node;
141 tree intSI_type_node;
142 tree intDI_type_node;
143 tree intTI_type_node;
144
145 tree unsigned_intQI_type_node;
146 tree unsigned_intHI_type_node;
147 tree unsigned_intSI_type_node;
148 tree unsigned_intDI_type_node;
149 tree unsigned_intTI_type_node;
150
151 tree widest_integer_literal_type_node;
152 tree widest_unsigned_literal_type_node;
153
154 Nodes for types `void *' and `const void *'.
155
156 tree ptr_type_node, const_ptr_type_node;
157
158 Nodes for types `char *' and `const char *'.
159
160 tree string_type_node, const_string_type_node;
161
162 Type `char[SOMENUMBER]'.
163 Used when an array of char is needed and the size is irrelevant.
164
165 tree char_array_type_node;
166
167 Type `int[SOMENUMBER]' or something like it.
168 Used when an array of int needed and the size is irrelevant.
169
170 tree int_array_type_node;
171
172 Type `wchar_t[SOMENUMBER]' or something like it.
173 Used when a wide string literal is created.
174
175 tree wchar_array_type_node;
176
177 Type `int ()' -- used for implicit declaration of functions.
178
179 tree default_function_type;
180
181 A VOID_TYPE node, packaged in a TREE_LIST.
182
183 tree void_list_node;
184
185 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
186 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
187 VAR_DECLS, but C++ does.)
188
189 tree function_name_decl_node;
190 tree pretty_function_name_decl_node;
191 tree c99_function_name_decl_node;
192
193 Stack of nested function name VAR_DECLs.
194
195 tree saved_function_name_decls;
196
197 */
198
199 tree c_global_trees[CTI_MAX];
200 \f
201 /* Switches common to the C front ends. */
202
203 /* Nonzero if prepreprocessing only. */
204
205 int flag_preprocess_only;
206
207 /* Nonzero means don't output line number information. */
208
209 char flag_no_line_commands;
210
211 /* Nonzero causes -E output not to be done, but directives such as
212 #define that have side effects are still obeyed. */
213
214 char flag_no_output;
215
216 /* Nonzero means dump macros in some fashion. */
217
218 char flag_dump_macros;
219
220 /* Nonzero means pass #include lines through to the output. */
221
222 char flag_dump_includes;
223
224 /* Nonzero means process PCH files while preprocessing. */
225
226 bool flag_pch_preprocess;
227
228 /* The file name to which we should write a precompiled header, or
229 NULL if no header will be written in this compile. */
230
231 const char *pch_file;
232
233 /* Nonzero if an ISO standard was selected. It rejects macros in the
234 user's namespace. */
235 int flag_iso;
236
237 /* Nonzero if -undef was given. It suppresses target built-in macros
238 and assertions. */
239 int flag_undef;
240
241 /* Nonzero means don't recognize the non-ANSI builtin functions. */
242
243 int flag_no_builtin;
244
245 /* Nonzero means don't recognize the non-ANSI builtin functions.
246 -ansi sets this. */
247
248 int flag_no_nonansi_builtin;
249
250 /* Nonzero means give `double' the same size as `float'. */
251
252 int flag_short_double;
253
254 /* Nonzero means give `wchar_t' the same size as `short'. */
255
256 int flag_short_wchar;
257
258 /* Nonzero means allow implicit conversions between vectors with
259 differing numbers of subparts and/or differing element types. */
260 int flag_lax_vector_conversions;
261
262 /* Nonzero means allow Microsoft extensions without warnings or errors. */
263 int flag_ms_extensions;
264
265 /* Nonzero means don't recognize the keyword `asm'. */
266
267 int flag_no_asm;
268
269 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
270
271 int flag_signed_bitfields = 1;
272
273 /* Warn about #pragma directives that are not recognized. */
274
275 int warn_unknown_pragmas; /* Tri state variable. */
276
277 /* Warn about format/argument anomalies in calls to formatted I/O functions
278 (*printf, *scanf, strftime, strfmon, etc.). */
279
280 int warn_format;
281
282 /* Warn about using __null (as NULL in C++) as sentinel. For code compiled
283 with GCC this doesn't matter as __null is guaranteed to have the right
284 size. */
285
286 int warn_strict_null_sentinel;
287
288 /* Zero means that faster, ...NonNil variants of objc_msgSend...
289 calls will be used in ObjC; passing nil receivers to such calls
290 will most likely result in crashes. */
291 int flag_nil_receivers = 1;
292
293 /* Nonzero means that code generation will be altered to support
294 "zero-link" execution. This currently affects ObjC only, but may
295 affect other languages in the future. */
296 int flag_zero_link = 0;
297
298 /* Nonzero means emit an '__OBJC, __image_info' for the current translation
299 unit. It will inform the ObjC runtime that class definition(s) herein
300 contained are to replace one(s) previously loaded. */
301 int flag_replace_objc_classes = 0;
302
303 /* C/ObjC language option variables. */
304
305
306 /* Nonzero means allow type mismatches in conditional expressions;
307 just make their values `void'. */
308
309 int flag_cond_mismatch;
310
311 /* Nonzero means enable C89 Amendment 1 features. */
312
313 int flag_isoc94;
314
315 /* Nonzero means use the ISO C99 dialect of C. */
316
317 int flag_isoc99;
318
319 /* Nonzero means that we have builtin functions, and main is an int. */
320
321 int flag_hosted = 1;
322
323 /* Warn if main is suspicious. */
324
325 int warn_main;
326
327
328 /* ObjC language option variables. */
329
330
331 /* Open and close the file for outputting class declarations, if
332 requested (ObjC). */
333
334 int flag_gen_declaration;
335
336 /* Tells the compiler that this is a special run. Do not perform any
337 compiling, instead we are to test some platform dependent features
338 and output a C header file with appropriate definitions. */
339
340 int print_struct_values;
341
342 /* Tells the compiler what is the constant string class for Objc. */
343
344 const char *constant_string_class_name;
345
346
347 /* C++ language option variables. */
348
349
350 /* Nonzero means don't recognize any extension keywords. */
351
352 int flag_no_gnu_keywords;
353
354 /* Nonzero means do emit exported implementations of functions even if
355 they can be inlined. */
356
357 int flag_implement_inlines = 1;
358
359 /* Nonzero means that implicit instantiations will be emitted if needed. */
360
361 int flag_implicit_templates = 1;
362
363 /* Nonzero means that implicit instantiations of inline templates will be
364 emitted if needed, even if instantiations of non-inline templates
365 aren't. */
366
367 int flag_implicit_inline_templates = 1;
368
369 /* Nonzero means generate separate instantiation control files and
370 juggle them at link time. */
371
372 int flag_use_repository;
373
374 /* Nonzero if we want to issue diagnostics that the standard says are not
375 required. */
376
377 int flag_optional_diags = 1;
378
379 /* Nonzero means we should attempt to elide constructors when possible. */
380
381 int flag_elide_constructors = 1;
382
383 /* Nonzero means that member functions defined in class scope are
384 inline by default. */
385
386 int flag_default_inline = 1;
387
388 /* Controls whether compiler generates 'type descriptor' that give
389 run-time type information. */
390
391 int flag_rtti = 1;
392
393 /* Nonzero if we want to conserve space in the .o files. We do this
394 by putting uninitialized data and runtime initialized data into
395 .common instead of .data at the expense of not flagging multiple
396 definitions. */
397
398 int flag_conserve_space;
399
400 /* Nonzero if we want to obey access control semantics. */
401
402 int flag_access_control = 1;
403
404 /* Nonzero if we want to check the return value of new and avoid calling
405 constructors if it is a null pointer. */
406
407 int flag_check_new;
408
409 /* Nonzero if we want to allow the use of experimental features that
410 are likely to become part of C++0x. */
411
412 int flag_cpp0x = 0;
413
414 /* Nonzero if we want the new ISO rules for pushing a new scope for `for'
415 initialization variables.
416 0: Old rules, set by -fno-for-scope.
417 2: New ISO rules, set by -ffor-scope.
418 1: Try to implement new ISO rules, but with backup compatibility
419 (and warnings). This is the default, for now. */
420
421 int flag_new_for_scope = 1;
422
423 /* Nonzero if we want to emit defined symbols with common-like linkage as
424 weak symbols where possible, in order to conform to C++ semantics.
425 Otherwise, emit them as local symbols. */
426
427 int flag_weak = 1;
428
429 /* 0 means we want the preprocessor to not emit line directives for
430 the current working directory. 1 means we want it to do it. -1
431 means we should decide depending on whether debugging information
432 is being emitted or not. */
433
434 int flag_working_directory = -1;
435
436 /* Nonzero to use __cxa_atexit, rather than atexit, to register
437 destructors for local statics and global objects. '2' means it has been
438 set nonzero as a default, not by a command-line flag. */
439
440 int flag_use_cxa_atexit = DEFAULT_USE_CXA_ATEXIT;
441
442 /* Nonzero to use __cxa_get_exception_ptr in C++ exception-handling
443 code. '2' means it has not been set explicitly on the command line. */
444
445 int flag_use_cxa_get_exception_ptr = 2;
446
447 /* Nonzero means make the default pedwarns warnings instead of errors.
448 The value of this flag is ignored if -pedantic is specified. */
449
450 int flag_permissive;
451
452 /* Nonzero means to implement standard semantics for exception
453 specifications, calling unexpected if an exception is thrown that
454 doesn't match the specification. Zero means to treat them as
455 assertions and optimize accordingly, but not check them. */
456
457 int flag_enforce_eh_specs = 1;
458
459 /* Nonzero means to generate thread-safe code for initializing local
460 statics. */
461
462 int flag_threadsafe_statics = 1;
463
464 /* Nonzero means warn about implicit declarations. */
465
466 int warn_implicit = 1;
467
468 /* Maximum template instantiation depth. This limit is rather
469 arbitrary, but it exists to limit the time it takes to notice
470 infinite template instantiations. */
471
472 int max_tinst_depth = 500;
473
474
475
476 /* The elements of `ridpointers' are identifier nodes for the reserved
477 type names and storage classes. It is indexed by a RID_... value. */
478 tree *ridpointers;
479
480 tree (*make_fname_decl) (tree, int);
481
482 /* Nonzero means the expression being parsed will never be evaluated.
483 This is a count, since unevaluated expressions can nest. */
484 int skip_evaluation;
485
486 /* Information about how a function name is generated. */
487 struct fname_var_t
488 {
489 tree *const decl; /* pointer to the VAR_DECL. */
490 const unsigned rid; /* RID number for the identifier. */
491 const int pretty; /* How pretty is it? */
492 };
493
494 /* The three ways of getting then name of the current function. */
495
496 const struct fname_var_t fname_vars[] =
497 {
498 /* C99 compliant __func__, must be first. */
499 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
500 /* GCC __FUNCTION__ compliant. */
501 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
502 /* GCC __PRETTY_FUNCTION__ compliant. */
503 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
504 {NULL, 0, 0},
505 };
506
507 static tree check_case_value (tree);
508 static bool check_case_bounds (tree, tree, tree *, tree *);
509
510 static tree handle_packed_attribute (tree *, tree, tree, int, bool *);
511 static tree handle_nocommon_attribute (tree *, tree, tree, int, bool *);
512 static tree handle_common_attribute (tree *, tree, tree, int, bool *);
513 static tree handle_noreturn_attribute (tree *, tree, tree, int, bool *);
514 static tree handle_hot_attribute (tree *, tree, tree, int, bool *);
515 static tree handle_cold_attribute (tree *, tree, tree, int, bool *);
516 static tree handle_noinline_attribute (tree *, tree, tree, int, bool *);
517 static tree handle_always_inline_attribute (tree *, tree, tree, int,
518 bool *);
519 static tree handle_gnu_inline_attribute (tree *, tree, tree, int,
520 bool *);
521 static tree handle_flatten_attribute (tree *, tree, tree, int, bool *);
522 static tree handle_used_attribute (tree *, tree, tree, int, bool *);
523 static tree handle_unused_attribute (tree *, tree, tree, int, bool *);
524 static tree handle_externally_visible_attribute (tree *, tree, tree, int,
525 bool *);
526 static tree handle_const_attribute (tree *, tree, tree, int, bool *);
527 static tree handle_transparent_union_attribute (tree *, tree, tree,
528 int, bool *);
529 static tree handle_constructor_attribute (tree *, tree, tree, int, bool *);
530 static tree handle_destructor_attribute (tree *, tree, tree, int, bool *);
531 static tree handle_mode_attribute (tree *, tree, tree, int, bool *);
532 static tree handle_section_attribute (tree *, tree, tree, int, bool *);
533 static tree handle_aligned_attribute (tree *, tree, tree, int, bool *);
534 static tree handle_weak_attribute (tree *, tree, tree, int, bool *) ;
535 static tree handle_alias_attribute (tree *, tree, tree, int, bool *);
536 static tree handle_weakref_attribute (tree *, tree, tree, int, bool *) ;
537 static tree handle_visibility_attribute (tree *, tree, tree, int,
538 bool *);
539 static tree handle_tls_model_attribute (tree *, tree, tree, int,
540 bool *);
541 static tree handle_no_instrument_function_attribute (tree *, tree,
542 tree, int, bool *);
543 static tree handle_malloc_attribute (tree *, tree, tree, int, bool *);
544 static tree handle_returns_twice_attribute (tree *, tree, tree, int, bool *);
545 static tree handle_no_limit_stack_attribute (tree *, tree, tree, int,
546 bool *);
547 static tree handle_pure_attribute (tree *, tree, tree, int, bool *);
548 static tree handle_novops_attribute (tree *, tree, tree, int, bool *);
549 static tree handle_deprecated_attribute (tree *, tree, tree, int,
550 bool *);
551 static tree handle_vector_size_attribute (tree *, tree, tree, int,
552 bool *);
553 static tree handle_nonnull_attribute (tree *, tree, tree, int, bool *);
554 static tree handle_nothrow_attribute (tree *, tree, tree, int, bool *);
555 static tree handle_cleanup_attribute (tree *, tree, tree, int, bool *);
556 static tree handle_warn_unused_result_attribute (tree *, tree, tree, int,
557 bool *);
558 static tree handle_sentinel_attribute (tree *, tree, tree, int, bool *);
559
560 static void check_function_nonnull (tree, int, tree *);
561 static void check_nonnull_arg (void *, tree, unsigned HOST_WIDE_INT);
562 static bool nonnull_check_p (tree, unsigned HOST_WIDE_INT);
563 static bool get_nonnull_operand (tree, unsigned HOST_WIDE_INT *);
564 static int resort_field_decl_cmp (const void *, const void *);
565
566 /* Table of machine-independent attributes common to all C-like languages. */
567 const struct attribute_spec c_common_attribute_table[] =
568 {
569 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
570 { "packed", 0, 0, false, false, false,
571 handle_packed_attribute },
572 { "nocommon", 0, 0, true, false, false,
573 handle_nocommon_attribute },
574 { "common", 0, 0, true, false, false,
575 handle_common_attribute },
576 /* FIXME: logically, noreturn attributes should be listed as
577 "false, true, true" and apply to function types. But implementing this
578 would require all the places in the compiler that use TREE_THIS_VOLATILE
579 on a decl to identify non-returning functions to be located and fixed
580 to check the function type instead. */
581 { "noreturn", 0, 0, true, false, false,
582 handle_noreturn_attribute },
583 { "volatile", 0, 0, true, false, false,
584 handle_noreturn_attribute },
585 { "noinline", 0, 0, true, false, false,
586 handle_noinline_attribute },
587 { "always_inline", 0, 0, true, false, false,
588 handle_always_inline_attribute },
589 { "gnu_inline", 0, 0, true, false, false,
590 handle_gnu_inline_attribute },
591 { "flatten", 0, 0, true, false, false,
592 handle_flatten_attribute },
593 { "used", 0, 0, true, false, false,
594 handle_used_attribute },
595 { "unused", 0, 0, false, false, false,
596 handle_unused_attribute },
597 { "externally_visible", 0, 0, true, false, false,
598 handle_externally_visible_attribute },
599 /* The same comments as for noreturn attributes apply to const ones. */
600 { "const", 0, 0, true, false, false,
601 handle_const_attribute },
602 { "transparent_union", 0, 0, false, false, false,
603 handle_transparent_union_attribute },
604 { "constructor", 0, 1, true, false, false,
605 handle_constructor_attribute },
606 { "destructor", 0, 1, true, false, false,
607 handle_destructor_attribute },
608 { "mode", 1, 1, false, true, false,
609 handle_mode_attribute },
610 { "section", 1, 1, true, false, false,
611 handle_section_attribute },
612 { "aligned", 0, 1, false, false, false,
613 handle_aligned_attribute },
614 { "weak", 0, 0, true, false, false,
615 handle_weak_attribute },
616 { "alias", 1, 1, true, false, false,
617 handle_alias_attribute },
618 { "weakref", 0, 1, true, false, false,
619 handle_weakref_attribute },
620 { "no_instrument_function", 0, 0, true, false, false,
621 handle_no_instrument_function_attribute },
622 { "malloc", 0, 0, true, false, false,
623 handle_malloc_attribute },
624 { "returns_twice", 0, 0, true, false, false,
625 handle_returns_twice_attribute },
626 { "no_stack_limit", 0, 0, true, false, false,
627 handle_no_limit_stack_attribute },
628 { "pure", 0, 0, true, false, false,
629 handle_pure_attribute },
630 /* For internal use (marking of builtins) only. The name contains space
631 to prevent its usage in source code. */
632 { "no vops", 0, 0, true, false, false,
633 handle_novops_attribute },
634 { "deprecated", 0, 0, false, false, false,
635 handle_deprecated_attribute },
636 { "vector_size", 1, 1, false, true, false,
637 handle_vector_size_attribute },
638 { "visibility", 1, 1, false, false, false,
639 handle_visibility_attribute },
640 { "tls_model", 1, 1, true, false, false,
641 handle_tls_model_attribute },
642 { "nonnull", 0, -1, false, true, true,
643 handle_nonnull_attribute },
644 { "nothrow", 0, 0, true, false, false,
645 handle_nothrow_attribute },
646 { "may_alias", 0, 0, false, true, false, NULL },
647 { "cleanup", 1, 1, true, false, false,
648 handle_cleanup_attribute },
649 { "warn_unused_result", 0, 0, false, true, true,
650 handle_warn_unused_result_attribute },
651 { "sentinel", 0, 1, false, true, true,
652 handle_sentinel_attribute },
653 { "cold", 0, 0, true, false, false,
654 handle_cold_attribute },
655 { "hot", 0, 0, true, false, false,
656 handle_hot_attribute },
657 { NULL, 0, 0, false, false, false, NULL }
658 };
659
660 /* Give the specifications for the format attributes, used by C and all
661 descendants. */
662
663 const struct attribute_spec c_common_format_attribute_table[] =
664 {
665 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
666 { "format", 3, 3, false, true, true,
667 handle_format_attribute },
668 { "format_arg", 1, 1, false, true, true,
669 handle_format_arg_attribute },
670 { NULL, 0, 0, false, false, false, NULL }
671 };
672
673 /* Functions called automatically at the beginning and end of execution. */
674
675 tree static_ctors;
676 tree static_dtors;
677
678 /* Push current bindings for the function name VAR_DECLS. */
679
680 void
681 start_fname_decls (void)
682 {
683 unsigned ix;
684 tree saved = NULL_TREE;
685
686 for (ix = 0; fname_vars[ix].decl; ix++)
687 {
688 tree decl = *fname_vars[ix].decl;
689
690 if (decl)
691 {
692 saved = tree_cons (decl, build_int_cst (NULL_TREE, ix), saved);
693 *fname_vars[ix].decl = NULL_TREE;
694 }
695 }
696 if (saved || saved_function_name_decls)
697 /* Normally they'll have been NULL, so only push if we've got a
698 stack, or they are non-NULL. */
699 saved_function_name_decls = tree_cons (saved, NULL_TREE,
700 saved_function_name_decls);
701 }
702
703 /* Finish up the current bindings, adding them into the current function's
704 statement tree. This must be done _before_ finish_stmt_tree is called.
705 If there is no current function, we must be at file scope and no statements
706 are involved. Pop the previous bindings. */
707
708 void
709 finish_fname_decls (void)
710 {
711 unsigned ix;
712 tree stmts = NULL_TREE;
713 tree stack = saved_function_name_decls;
714
715 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
716 append_to_statement_list (TREE_VALUE (stack), &stmts);
717
718 if (stmts)
719 {
720 tree *bodyp = &DECL_SAVED_TREE (current_function_decl);
721
722 if (TREE_CODE (*bodyp) == BIND_EXPR)
723 bodyp = &BIND_EXPR_BODY (*bodyp);
724
725 append_to_statement_list_force (*bodyp, &stmts);
726 *bodyp = stmts;
727 }
728
729 for (ix = 0; fname_vars[ix].decl; ix++)
730 *fname_vars[ix].decl = NULL_TREE;
731
732 if (stack)
733 {
734 /* We had saved values, restore them. */
735 tree saved;
736
737 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
738 {
739 tree decl = TREE_PURPOSE (saved);
740 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
741
742 *fname_vars[ix].decl = decl;
743 }
744 stack = TREE_CHAIN (stack);
745 }
746 saved_function_name_decls = stack;
747 }
748
749 /* Return the text name of the current function, suitably prettified
750 by PRETTY_P. Return string must be freed by caller. */
751
752 const char *
753 fname_as_string (int pretty_p)
754 {
755 const char *name = "top level";
756 char *namep;
757 int vrb = 2;
758
759 if (!pretty_p)
760 {
761 name = "";
762 vrb = 0;
763 }
764
765 if (current_function_decl)
766 name = lang_hooks.decl_printable_name (current_function_decl, vrb);
767
768 if (c_lex_string_translate)
769 {
770 int len = strlen (name) + 3; /* Two for '"'s. One for NULL. */
771 cpp_string cstr = { 0, 0 }, strname;
772
773 namep = XNEWVEC (char, len);
774 snprintf (namep, len, "\"%s\"", name);
775 strname.text = (unsigned char *) namep;
776 strname.len = len - 1;
777
778 if (cpp_interpret_string (parse_in, &strname, 1, &cstr, false))
779 {
780 XDELETEVEC (namep);
781 return (char *) cstr.text;
782 }
783 }
784 else
785 namep = xstrdup (name);
786
787 return namep;
788 }
789
790 /* Expand DECL if it declares an entity not handled by the
791 common code. */
792
793 int
794 c_expand_decl (tree decl)
795 {
796 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
797 {
798 /* Let the back-end know about this variable. */
799 if (!anon_aggr_type_p (TREE_TYPE (decl)))
800 emit_local_var (decl);
801 else
802 expand_anon_union_decl (decl, NULL_TREE,
803 DECL_ANON_UNION_ELEMS (decl));
804 }
805 else
806 return 0;
807
808 return 1;
809 }
810
811
812 /* Return the VAR_DECL for a const char array naming the current
813 function. If the VAR_DECL has not yet been created, create it
814 now. RID indicates how it should be formatted and IDENTIFIER_NODE
815 ID is its name (unfortunately C and C++ hold the RID values of
816 keywords in different places, so we can't derive RID from ID in
817 this language independent code. */
818
819 tree
820 fname_decl (unsigned int rid, tree id)
821 {
822 unsigned ix;
823 tree decl = NULL_TREE;
824
825 for (ix = 0; fname_vars[ix].decl; ix++)
826 if (fname_vars[ix].rid == rid)
827 break;
828
829 decl = *fname_vars[ix].decl;
830 if (!decl)
831 {
832 /* If a tree is built here, it would normally have the lineno of
833 the current statement. Later this tree will be moved to the
834 beginning of the function and this line number will be wrong.
835 To avoid this problem set the lineno to 0 here; that prevents
836 it from appearing in the RTL. */
837 tree stmts;
838 location_t saved_location = input_location;
839 #ifdef USE_MAPPED_LOCATION
840 input_location = UNKNOWN_LOCATION;
841 #else
842 input_line = 0;
843 #endif
844
845 stmts = push_stmt_list ();
846 decl = (*make_fname_decl) (id, fname_vars[ix].pretty);
847 stmts = pop_stmt_list (stmts);
848 if (!IS_EMPTY_STMT (stmts))
849 saved_function_name_decls
850 = tree_cons (decl, stmts, saved_function_name_decls);
851 *fname_vars[ix].decl = decl;
852 input_location = saved_location;
853 }
854 if (!ix && !current_function_decl)
855 pedwarn ("%qD is not defined outside of function scope", decl);
856
857 return decl;
858 }
859
860 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
861
862 tree
863 fix_string_type (tree value)
864 {
865 const int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
866 const int wide_flag = TREE_TYPE (value) == wchar_array_type_node;
867 int length = TREE_STRING_LENGTH (value);
868 int nchars;
869 tree e_type, i_type, a_type;
870
871 /* Compute the number of elements, for the array type. */
872 nchars = wide_flag ? length / wchar_bytes : length;
873
874 /* C89 2.2.4.1, C99 5.2.4.1 (Translation limits). The analogous
875 limit in C++98 Annex B is very large (65536) and is not normative,
876 so we do not diagnose it (warn_overlength_strings is forced off
877 in c_common_post_options). */
878 if (warn_overlength_strings)
879 {
880 const int nchars_max = flag_isoc99 ? 4095 : 509;
881 const int relevant_std = flag_isoc99 ? 99 : 90;
882 if (nchars - 1 > nchars_max)
883 /* Translators: The %d after 'ISO C' will be 90 or 99. Do not
884 separate the %d from the 'C'. 'ISO' should not be
885 translated, but it may be moved after 'C%d' in languages
886 where modifiers follow nouns. */
887 pedwarn ("string length %qd is greater than the length %qd "
888 "ISO C%d compilers are required to support",
889 nchars - 1, nchars_max, relevant_std);
890 }
891
892 /* Create the array type for the string constant. The ISO C++
893 standard says that a string literal has type `const char[N]' or
894 `const wchar_t[N]'. We use the same logic when invoked as a C
895 front-end with -Wwrite-strings.
896 ??? We should change the type of an expression depending on the
897 state of a warning flag. We should just be warning -- see how
898 this is handled in the C++ front-end for the deprecated implicit
899 conversion from string literals to `char*' or `wchar_t*'.
900
901 The C++ front end relies on TYPE_MAIN_VARIANT of a cv-qualified
902 array type being the unqualified version of that type.
903 Therefore, if we are constructing an array of const char, we must
904 construct the matching unqualified array type first. The C front
905 end does not require this, but it does no harm, so we do it
906 unconditionally. */
907 e_type = wide_flag ? wchar_type_node : char_type_node;
908 i_type = build_index_type (build_int_cst (NULL_TREE, nchars - 1));
909 a_type = build_array_type (e_type, i_type);
910 if (c_dialect_cxx() || warn_write_strings)
911 a_type = c_build_qualified_type (a_type, TYPE_QUAL_CONST);
912
913 TREE_TYPE (value) = a_type;
914 TREE_CONSTANT (value) = 1;
915 TREE_INVARIANT (value) = 1;
916 TREE_READONLY (value) = 1;
917 TREE_STATIC (value) = 1;
918 return value;
919 }
920 \f
921 /* Print a warning if a constant expression had overflow in folding.
922 Invoke this function on every expression that the language
923 requires to be a constant expression.
924 Note the ANSI C standard says it is erroneous for a
925 constant expression to overflow. */
926
927 void
928 constant_expression_warning (tree value)
929 {
930 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
931 || TREE_CODE (value) == VECTOR_CST
932 || TREE_CODE (value) == COMPLEX_CST)
933 && TREE_OVERFLOW (value)
934 && warn_overflow
935 && pedantic)
936 pedwarn ("overflow in constant expression");
937 }
938
939 /* Print a warning if an expression had overflow in folding and its
940 operands hadn't.
941
942 Invoke this function on every expression that
943 (1) appears in the source code, and
944 (2) is a constant expression that overflowed, and
945 (3) is not already checked by convert_and_check;
946 however, do not invoke this function on operands of explicit casts
947 or when the expression is the result of an operator and any operand
948 already overflowed. */
949
950 void
951 overflow_warning (tree value)
952 {
953 if (skip_evaluation) return;
954
955 switch (TREE_CODE (value))
956 {
957 case INTEGER_CST:
958 warning (OPT_Woverflow, "integer overflow in expression");
959 break;
960
961 case REAL_CST:
962 warning (OPT_Woverflow, "floating point overflow in expression");
963 break;
964
965 case VECTOR_CST:
966 warning (OPT_Woverflow, "vector overflow in expression");
967 break;
968
969 case COMPLEX_CST:
970 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST)
971 warning (OPT_Woverflow, "complex integer overflow in expression");
972 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST)
973 warning (OPT_Woverflow, "complex floating point overflow in expression");
974 break;
975
976 default:
977 break;
978 }
979 }
980
981 /* Print a warning about casts that might indicate violation
982 of strict aliasing rules if -Wstrict-aliasing is used and
983 strict aliasing mode is in effect. OTYPE is the original
984 TREE_TYPE of EXPR, and TYPE the type we're casting to. */
985
986 void
987 strict_aliasing_warning (tree otype, tree type, tree expr)
988 {
989 if (flag_strict_aliasing && warn_strict_aliasing
990 && POINTER_TYPE_P (type) && POINTER_TYPE_P (otype)
991 && TREE_CODE (expr) == ADDR_EXPR
992 && (DECL_P (TREE_OPERAND (expr, 0))
993 || handled_component_p (TREE_OPERAND (expr, 0)))
994 && !VOID_TYPE_P (TREE_TYPE (type)))
995 {
996 /* Casting the address of an object to non void pointer. Warn
997 if the cast breaks type based aliasing. */
998 if (!COMPLETE_TYPE_P (TREE_TYPE (type)))
999 warning (OPT_Wstrict_aliasing, "type-punning to incomplete type "
1000 "might break strict-aliasing rules");
1001 else
1002 {
1003 HOST_WIDE_INT set1 = get_alias_set (TREE_TYPE (TREE_OPERAND (expr, 0)));
1004 HOST_WIDE_INT set2 = get_alias_set (TREE_TYPE (type));
1005
1006 if (!alias_sets_conflict_p (set1, set2))
1007 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1008 "pointer will break strict-aliasing rules");
1009 else if (warn_strict_aliasing > 1
1010 && !alias_sets_might_conflict_p (set1, set2))
1011 warning (OPT_Wstrict_aliasing, "dereferencing type-punned "
1012 "pointer might break strict-aliasing rules");
1013 }
1014 }
1015 }
1016
1017 /* Print a warning about if (); or if () .. else; constructs
1018 via the special empty statement node that we create. INNER_THEN
1019 and INNER_ELSE are the statement lists of the if and the else
1020 block. */
1021
1022 void
1023 empty_body_warning (tree inner_then, tree inner_else)
1024 {
1025 if (warn_empty_body)
1026 {
1027 if (TREE_CODE (inner_then) == STATEMENT_LIST
1028 && STATEMENT_LIST_TAIL (inner_then))
1029 inner_then = STATEMENT_LIST_TAIL (inner_then)->stmt;
1030
1031 if (inner_else && TREE_CODE (inner_else) == STATEMENT_LIST
1032 && STATEMENT_LIST_TAIL (inner_else))
1033 inner_else = STATEMENT_LIST_TAIL (inner_else)->stmt;
1034
1035 if (IS_EMPTY_STMT (inner_then) && !inner_else)
1036 warning (OPT_Wempty_body, "%Hempty body in an if-statement",
1037 EXPR_LOCUS (inner_then));
1038
1039 if (inner_else && IS_EMPTY_STMT (inner_else))
1040 warning (OPT_Wempty_body, "%Hempty body in an else-statement",
1041 EXPR_LOCUS (inner_else));
1042 }
1043 }
1044
1045 /* Warn for unlikely, improbable, or stupid DECL declarations
1046 of `main'. */
1047
1048 void
1049 check_main_parameter_types (tree decl)
1050 {
1051 tree args;
1052 int argct = 0;
1053
1054 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl)); args;
1055 args = TREE_CHAIN (args))
1056 {
1057 tree type = args ? TREE_VALUE (args) : 0;
1058
1059 if (type == void_type_node || type == error_mark_node )
1060 break;
1061
1062 ++argct;
1063 switch (argct)
1064 {
1065 case 1:
1066 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
1067 pedwarn ("first argument of %q+D should be %<int%>", decl);
1068 break;
1069
1070 case 2:
1071 if (TREE_CODE (type) != POINTER_TYPE
1072 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
1073 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
1074 != char_type_node))
1075 pedwarn ("second argument of %q+D should be %<char **%>",
1076 decl);
1077 break;
1078
1079 case 3:
1080 if (TREE_CODE (type) != POINTER_TYPE
1081 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
1082 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
1083 != char_type_node))
1084 pedwarn ("third argument of %q+D should probably be "
1085 "%<char **%>", decl);
1086 break;
1087 }
1088 }
1089
1090 /* It is intentional that this message does not mention the third
1091 argument because it's only mentioned in an appendix of the
1092 standard. */
1093 if (argct > 0 && (argct < 2 || argct > 3))
1094 pedwarn ("%q+D takes only zero or two arguments", decl);
1095 }
1096
1097 /* True if vector types T1 and T2 can be converted to each other
1098 without an explicit cast. If EMIT_LAX_NOTE is true, and T1 and T2
1099 can only be converted with -flax-vector-conversions yet that is not
1100 in effect, emit a note telling the user about that option if such
1101 a note has not previously been emitted. */
1102 bool
1103 vector_types_convertible_p (tree t1, tree t2, bool emit_lax_note)
1104 {
1105 static bool emitted_lax_note = false;
1106 bool convertible_lax;
1107
1108 if ((targetm.vector_opaque_p (t1) || targetm.vector_opaque_p (t2))
1109 && tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2)))
1110 return true;
1111
1112 convertible_lax =
1113 (tree_int_cst_equal (TYPE_SIZE (t1), TYPE_SIZE (t2))
1114 && (TREE_CODE (TREE_TYPE (t1)) != REAL_TYPE ||
1115 TYPE_PRECISION (t1) == TYPE_PRECISION (t2))
1116 && (INTEGRAL_TYPE_P (TREE_TYPE (t1))
1117 == INTEGRAL_TYPE_P (TREE_TYPE (t2))));
1118
1119 if (!convertible_lax || flag_lax_vector_conversions)
1120 return convertible_lax;
1121
1122 if (TYPE_VECTOR_SUBPARTS (t1) == TYPE_VECTOR_SUBPARTS (t2)
1123 && comptypes (TREE_TYPE (t1), TREE_TYPE (t2)))
1124 return true;
1125
1126 if (emit_lax_note && !emitted_lax_note)
1127 {
1128 emitted_lax_note = true;
1129 inform ("use -flax-vector-conversions to permit "
1130 "conversions between vectors with differing "
1131 "element types or numbers of subparts");
1132 }
1133
1134 return false;
1135 }
1136
1137 /* Warns if the conversion of EXPR to TYPE may alter a value.
1138 This function is called from convert_and_check. */
1139
1140 static void
1141 conversion_warning (tree type, tree expr)
1142 {
1143 bool give_warning = false;
1144
1145 unsigned int formal_prec = TYPE_PRECISION (type);
1146
1147 if (TREE_CODE (expr) == REAL_CST || TREE_CODE (expr) == INTEGER_CST)
1148 {
1149 /* Warn for real constant that is not an exact integer converted
1150 to integer type. */
1151 if (TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
1152 && TREE_CODE (type) == INTEGER_TYPE)
1153 {
1154 if (!real_isinteger (TREE_REAL_CST_PTR (expr), TYPE_MODE (TREE_TYPE (expr))))
1155 give_warning = true;
1156 }
1157 /* Warn for an integer constant that does not fit into integer type. */
1158 else if (TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
1159 && TREE_CODE (type) == INTEGER_TYPE
1160 && !int_fits_type_p (expr, type))
1161 {
1162 if (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (TREE_TYPE (expr)))
1163 warning (OPT_Wconversion,
1164 "negative integer implicitly converted to unsigned type");
1165 else
1166 give_warning = true;
1167 }
1168 else if (TREE_CODE (type) == REAL_TYPE)
1169 {
1170 /* Warn for an integer constant that does not fit into real type. */
1171 if (TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE)
1172 {
1173 REAL_VALUE_TYPE a = real_value_from_int_cst (0, expr);
1174 if (!exact_real_truncate (TYPE_MODE (type), &a))
1175 give_warning = true;
1176 }
1177 /* Warn for a real constant that does not fit into a smaller
1178 real type. */
1179 else if (TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
1180 && formal_prec < TYPE_PRECISION (TREE_TYPE (expr)))
1181 {
1182 REAL_VALUE_TYPE a = TREE_REAL_CST (expr);
1183 if (!exact_real_truncate (TYPE_MODE (type), &a))
1184 give_warning = true;
1185 }
1186 }
1187
1188 if (give_warning)
1189 warning (OPT_Wconversion,
1190 "conversion to %qT alters %qT constant value",
1191 type, TREE_TYPE (expr));
1192 }
1193 else /* 'expr' is not a constant. */
1194 {
1195 /* Warn for real types converted to integer types. */
1196 if (TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
1197 && TREE_CODE (type) == INTEGER_TYPE)
1198 give_warning = true;
1199
1200 else if (TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
1201 && TREE_CODE (type) == INTEGER_TYPE)
1202 {
1203 /* Warn for integer types converted to smaller integer types. */
1204 if (formal_prec < TYPE_PRECISION (TREE_TYPE (expr))
1205 /* When they are the same width but different signedness,
1206 then the value may change. */
1207 || (formal_prec == TYPE_PRECISION (TREE_TYPE (expr))
1208 && TYPE_UNSIGNED (TREE_TYPE (expr)) != TYPE_UNSIGNED (type))
1209 /* Even when converted to a bigger type, if the type is
1210 unsigned but expr is signed, then negative values
1211 will be changed. */
1212 || (TYPE_UNSIGNED (type) && !TYPE_UNSIGNED (TREE_TYPE (expr))))
1213 give_warning = true;
1214 }
1215
1216 /* Warn for integer types converted to real types if and only if
1217 all the range of values of the integer type cannot be
1218 represented by the real type. */
1219 else if (TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
1220 && TREE_CODE (type) == REAL_TYPE)
1221 {
1222 tree type_low_bound = TYPE_MIN_VALUE (TREE_TYPE (expr));
1223 tree type_high_bound = TYPE_MAX_VALUE (TREE_TYPE (expr));
1224 REAL_VALUE_TYPE real_low_bound = real_value_from_int_cst (0, type_low_bound);
1225 REAL_VALUE_TYPE real_high_bound = real_value_from_int_cst (0, type_high_bound);
1226
1227 if (!exact_real_truncate (TYPE_MODE (type), &real_low_bound)
1228 || !exact_real_truncate (TYPE_MODE (type), &real_high_bound))
1229 give_warning = true;
1230 }
1231
1232 /* Warn for real types converted to smaller real types. */
1233 else if (TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE
1234 && TREE_CODE (type) == REAL_TYPE
1235 && formal_prec < TYPE_PRECISION (TREE_TYPE (expr)))
1236 give_warning = true;
1237
1238
1239 if (give_warning)
1240 warning (OPT_Wconversion,
1241 "conversion to %qT from %qT may alter its value",
1242 type, TREE_TYPE (expr));
1243 }
1244 }
1245
1246 /* Convert EXPR to TYPE, warning about conversion problems with constants.
1247 Invoke this function on every expression that is converted implicitly,
1248 i.e. because of language rules and not because of an explicit cast. */
1249
1250 tree
1251 convert_and_check (tree type, tree expr)
1252 {
1253 tree result;
1254
1255 if (TREE_TYPE (expr) == type)
1256 return expr;
1257
1258 result = convert (type, expr);
1259
1260 if (skip_evaluation || TREE_OVERFLOW_P (expr))
1261 return result;
1262
1263 if (TREE_CODE (expr) == INTEGER_CST
1264 && (TREE_CODE (type) == INTEGER_TYPE
1265 || TREE_CODE (type) == ENUMERAL_TYPE)
1266 && !int_fits_type_p (expr, type))
1267 {
1268 /* Do not diagnose overflow in a constant expression merely
1269 because a conversion overflowed. */
1270 if (TREE_OVERFLOW (result))
1271 TREE_OVERFLOW (result) = TREE_OVERFLOW (expr);
1272
1273 if (TYPE_UNSIGNED (type))
1274 {
1275 /* This detects cases like converting -129 or 256 to
1276 unsigned char. */
1277 if (!int_fits_type_p (expr, c_common_signed_type (type)))
1278 warning (OPT_Woverflow,
1279 "large integer implicitly truncated to unsigned type");
1280 else if (warn_conversion)
1281 conversion_warning (type, expr);
1282 }
1283 else if (!int_fits_type_p (expr, c_common_unsigned_type (type)))
1284 warning (OPT_Woverflow,
1285 "overflow in implicit constant conversion");
1286 /* No warning for converting 0x80000000 to int. */
1287 else if (pedantic
1288 && (TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE
1289 || TYPE_PRECISION (TREE_TYPE (expr))
1290 != TYPE_PRECISION (type)))
1291 warning (OPT_Woverflow,
1292 "overflow in implicit constant conversion");
1293
1294 else if (warn_conversion)
1295 conversion_warning (type, expr);
1296 }
1297 else if (TREE_CODE (result) == INTEGER_CST && TREE_OVERFLOW (result))
1298 warning (OPT_Woverflow,
1299 "overflow in implicit constant conversion");
1300 else if (warn_conversion)
1301 conversion_warning (type, expr);
1302
1303 return result;
1304 }
1305 \f
1306 /* A node in a list that describes references to variables (EXPR), which are
1307 either read accesses if WRITER is zero, or write accesses, in which case
1308 WRITER is the parent of EXPR. */
1309 struct tlist
1310 {
1311 struct tlist *next;
1312 tree expr, writer;
1313 };
1314
1315 /* Used to implement a cache the results of a call to verify_tree. We only
1316 use this for SAVE_EXPRs. */
1317 struct tlist_cache
1318 {
1319 struct tlist_cache *next;
1320 struct tlist *cache_before_sp;
1321 struct tlist *cache_after_sp;
1322 tree expr;
1323 };
1324
1325 /* Obstack to use when allocating tlist structures, and corresponding
1326 firstobj. */
1327 static struct obstack tlist_obstack;
1328 static char *tlist_firstobj = 0;
1329
1330 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
1331 warnings. */
1332 static struct tlist *warned_ids;
1333 /* SAVE_EXPRs need special treatment. We process them only once and then
1334 cache the results. */
1335 static struct tlist_cache *save_expr_cache;
1336
1337 static void add_tlist (struct tlist **, struct tlist *, tree, int);
1338 static void merge_tlist (struct tlist **, struct tlist *, int);
1339 static void verify_tree (tree, struct tlist **, struct tlist **, tree);
1340 static int warning_candidate_p (tree);
1341 static void warn_for_collisions (struct tlist *);
1342 static void warn_for_collisions_1 (tree, tree, struct tlist *, int);
1343 static struct tlist *new_tlist (struct tlist *, tree, tree);
1344
1345 /* Create a new struct tlist and fill in its fields. */
1346 static struct tlist *
1347 new_tlist (struct tlist *next, tree t, tree writer)
1348 {
1349 struct tlist *l;
1350 l = XOBNEW (&tlist_obstack, struct tlist);
1351 l->next = next;
1352 l->expr = t;
1353 l->writer = writer;
1354 return l;
1355 }
1356
1357 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
1358 is nonnull, we ignore any node we find which has a writer equal to it. */
1359
1360 static void
1361 add_tlist (struct tlist **to, struct tlist *add, tree exclude_writer, int copy)
1362 {
1363 while (add)
1364 {
1365 struct tlist *next = add->next;
1366 if (!copy)
1367 add->next = *to;
1368 if (!exclude_writer || add->writer != exclude_writer)
1369 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
1370 add = next;
1371 }
1372 }
1373
1374 /* Merge the nodes of ADD into TO. This merging process is done so that for
1375 each variable that already exists in TO, no new node is added; however if
1376 there is a write access recorded in ADD, and an occurrence on TO is only
1377 a read access, then the occurrence in TO will be modified to record the
1378 write. */
1379
1380 static void
1381 merge_tlist (struct tlist **to, struct tlist *add, int copy)
1382 {
1383 struct tlist **end = to;
1384
1385 while (*end)
1386 end = &(*end)->next;
1387
1388 while (add)
1389 {
1390 int found = 0;
1391 struct tlist *tmp2;
1392 struct tlist *next = add->next;
1393
1394 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
1395 if (tmp2->expr == add->expr)
1396 {
1397 found = 1;
1398 if (!tmp2->writer)
1399 tmp2->writer = add->writer;
1400 }
1401 if (!found)
1402 {
1403 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
1404 end = &(*end)->next;
1405 *end = 0;
1406 }
1407 add = next;
1408 }
1409 }
1410
1411 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
1412 references in list LIST conflict with it, excluding reads if ONLY writers
1413 is nonzero. */
1414
1415 static void
1416 warn_for_collisions_1 (tree written, tree writer, struct tlist *list,
1417 int only_writes)
1418 {
1419 struct tlist *tmp;
1420
1421 /* Avoid duplicate warnings. */
1422 for (tmp = warned_ids; tmp; tmp = tmp->next)
1423 if (tmp->expr == written)
1424 return;
1425
1426 while (list)
1427 {
1428 if (list->expr == written
1429 && list->writer != writer
1430 && (!only_writes || list->writer)
1431 && DECL_NAME (list->expr))
1432 {
1433 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
1434 warning (0, "operation on %qE may be undefined", list->expr);
1435 }
1436 list = list->next;
1437 }
1438 }
1439
1440 /* Given a list LIST of references to variables, find whether any of these
1441 can cause conflicts due to missing sequence points. */
1442
1443 static void
1444 warn_for_collisions (struct tlist *list)
1445 {
1446 struct tlist *tmp;
1447
1448 for (tmp = list; tmp; tmp = tmp->next)
1449 {
1450 if (tmp->writer)
1451 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
1452 }
1453 }
1454
1455 /* Return nonzero if X is a tree that can be verified by the sequence point
1456 warnings. */
1457 static int
1458 warning_candidate_p (tree x)
1459 {
1460 return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
1461 }
1462
1463 /* Walk the tree X, and record accesses to variables. If X is written by the
1464 parent tree, WRITER is the parent.
1465 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
1466 expression or its only operand forces a sequence point, then everything up
1467 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
1468 in PNO_SP.
1469 Once we return, we will have emitted warnings if any subexpression before
1470 such a sequence point could be undefined. On a higher level, however, the
1471 sequence point may not be relevant, and we'll merge the two lists.
1472
1473 Example: (b++, a) + b;
1474 The call that processes the COMPOUND_EXPR will store the increment of B
1475 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
1476 processes the PLUS_EXPR will need to merge the two lists so that
1477 eventually, all accesses end up on the same list (and we'll warn about the
1478 unordered subexpressions b++ and b.
1479
1480 A note on merging. If we modify the former example so that our expression
1481 becomes
1482 (b++, b) + a
1483 care must be taken not simply to add all three expressions into the final
1484 PNO_SP list. The function merge_tlist takes care of that by merging the
1485 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
1486 way, so that no more than one access to B is recorded. */
1487
1488 static void
1489 verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp,
1490 tree writer)
1491 {
1492 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
1493 enum tree_code code;
1494 enum tree_code_class cl;
1495
1496 /* X may be NULL if it is the operand of an empty statement expression
1497 ({ }). */
1498 if (x == NULL)
1499 return;
1500
1501 restart:
1502 code = TREE_CODE (x);
1503 cl = TREE_CODE_CLASS (code);
1504
1505 if (warning_candidate_p (x))
1506 {
1507 *pno_sp = new_tlist (*pno_sp, x, writer);
1508 return;
1509 }
1510
1511 switch (code)
1512 {
1513 case CONSTRUCTOR:
1514 return;
1515
1516 case COMPOUND_EXPR:
1517 case TRUTH_ANDIF_EXPR:
1518 case TRUTH_ORIF_EXPR:
1519 tmp_before = tmp_nosp = tmp_list3 = 0;
1520 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1521 warn_for_collisions (tmp_nosp);
1522 merge_tlist (pbefore_sp, tmp_before, 0);
1523 merge_tlist (pbefore_sp, tmp_nosp, 0);
1524 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
1525 merge_tlist (pbefore_sp, tmp_list3, 0);
1526 return;
1527
1528 case COND_EXPR:
1529 tmp_before = tmp_list2 = 0;
1530 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1531 warn_for_collisions (tmp_list2);
1532 merge_tlist (pbefore_sp, tmp_before, 0);
1533 merge_tlist (pbefore_sp, tmp_list2, 1);
1534
1535 tmp_list3 = tmp_nosp = 0;
1536 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1537 warn_for_collisions (tmp_nosp);
1538 merge_tlist (pbefore_sp, tmp_list3, 0);
1539
1540 tmp_list3 = tmp_list2 = 0;
1541 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1542 warn_for_collisions (tmp_list2);
1543 merge_tlist (pbefore_sp, tmp_list3, 0);
1544 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1545 two first, to avoid warning for (a ? b++ : b++). */
1546 merge_tlist (&tmp_nosp, tmp_list2, 0);
1547 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1548 return;
1549
1550 case PREDECREMENT_EXPR:
1551 case PREINCREMENT_EXPR:
1552 case POSTDECREMENT_EXPR:
1553 case POSTINCREMENT_EXPR:
1554 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1555 return;
1556
1557 case MODIFY_EXPR:
1558 tmp_before = tmp_nosp = tmp_list3 = 0;
1559 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1560 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1561 /* Expressions inside the LHS are not ordered wrt. the sequence points
1562 in the RHS. Example:
1563 *a = (a++, 2)
1564 Despite the fact that the modification of "a" is in the before_sp
1565 list (tmp_before), it conflicts with the use of "a" in the LHS.
1566 We can handle this by adding the contents of tmp_list3
1567 to those of tmp_before, and redoing the collision warnings for that
1568 list. */
1569 add_tlist (&tmp_before, tmp_list3, x, 1);
1570 warn_for_collisions (tmp_before);
1571 /* Exclude the LHS itself here; we first have to merge it into the
1572 tmp_nosp list. This is done to avoid warning for "a = a"; if we
1573 didn't exclude the LHS, we'd get it twice, once as a read and once
1574 as a write. */
1575 add_tlist (pno_sp, tmp_list3, x, 0);
1576 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1577
1578 merge_tlist (pbefore_sp, tmp_before, 0);
1579 if (warning_candidate_p (TREE_OPERAND (x, 0)))
1580 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1581 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1582 return;
1583
1584 case CALL_EXPR:
1585 /* We need to warn about conflicts among arguments and conflicts between
1586 args and the function address. Side effects of the function address,
1587 however, are not ordered by the sequence point of the call. */
1588 {
1589 call_expr_arg_iterator iter;
1590 tree arg;
1591 tmp_before = tmp_nosp = 0;
1592 verify_tree (CALL_EXPR_FN (x), &tmp_before, &tmp_nosp, NULL_TREE);
1593 FOR_EACH_CALL_EXPR_ARG (arg, iter, x)
1594 {
1595 tmp_list2 = tmp_list3 = 0;
1596 verify_tree (arg, &tmp_list2, &tmp_list3, NULL_TREE);
1597 merge_tlist (&tmp_list3, tmp_list2, 0);
1598 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1599 }
1600 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1601 warn_for_collisions (tmp_before);
1602 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1603 return;
1604 }
1605
1606 case TREE_LIST:
1607 /* Scan all the list, e.g. indices of multi dimensional array. */
1608 while (x)
1609 {
1610 tmp_before = tmp_nosp = 0;
1611 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1612 merge_tlist (&tmp_nosp, tmp_before, 0);
1613 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1614 x = TREE_CHAIN (x);
1615 }
1616 return;
1617
1618 case SAVE_EXPR:
1619 {
1620 struct tlist_cache *t;
1621 for (t = save_expr_cache; t; t = t->next)
1622 if (t->expr == x)
1623 break;
1624
1625 if (!t)
1626 {
1627 t = XOBNEW (&tlist_obstack, struct tlist_cache);
1628 t->next = save_expr_cache;
1629 t->expr = x;
1630 save_expr_cache = t;
1631
1632 tmp_before = tmp_nosp = 0;
1633 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1634 warn_for_collisions (tmp_nosp);
1635
1636 tmp_list3 = 0;
1637 while (tmp_nosp)
1638 {
1639 struct tlist *t = tmp_nosp;
1640 tmp_nosp = t->next;
1641 merge_tlist (&tmp_list3, t, 0);
1642 }
1643 t->cache_before_sp = tmp_before;
1644 t->cache_after_sp = tmp_list3;
1645 }
1646 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1647 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1648 return;
1649 }
1650
1651 default:
1652 /* For other expressions, simply recurse on their operands.
1653 Manual tail recursion for unary expressions.
1654 Other non-expressions need not be processed. */
1655 if (cl == tcc_unary)
1656 {
1657 x = TREE_OPERAND (x, 0);
1658 writer = 0;
1659 goto restart;
1660 }
1661 else if (IS_EXPR_CODE_CLASS (cl))
1662 {
1663 int lp;
1664 int max = TREE_OPERAND_LENGTH (x);
1665 for (lp = 0; lp < max; lp++)
1666 {
1667 tmp_before = tmp_nosp = 0;
1668 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, 0);
1669 merge_tlist (&tmp_nosp, tmp_before, 0);
1670 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1671 }
1672 }
1673 return;
1674 }
1675 }
1676
1677 /* Try to warn for undefined behavior in EXPR due to missing sequence
1678 points. */
1679
1680 void
1681 verify_sequence_points (tree expr)
1682 {
1683 struct tlist *before_sp = 0, *after_sp = 0;
1684
1685 warned_ids = 0;
1686 save_expr_cache = 0;
1687 if (tlist_firstobj == 0)
1688 {
1689 gcc_obstack_init (&tlist_obstack);
1690 tlist_firstobj = (char *) obstack_alloc (&tlist_obstack, 0);
1691 }
1692
1693 verify_tree (expr, &before_sp, &after_sp, 0);
1694 warn_for_collisions (after_sp);
1695 obstack_free (&tlist_obstack, tlist_firstobj);
1696 }
1697 \f
1698 /* Validate the expression after `case' and apply default promotions. */
1699
1700 static tree
1701 check_case_value (tree value)
1702 {
1703 if (value == NULL_TREE)
1704 return value;
1705
1706 /* ??? Can we ever get nops here for a valid case value? We
1707 shouldn't for C. */
1708 STRIP_TYPE_NOPS (value);
1709 /* In C++, the following is allowed:
1710
1711 const int i = 3;
1712 switch (...) { case i: ... }
1713
1714 So, we try to reduce the VALUE to a constant that way. */
1715 if (c_dialect_cxx ())
1716 {
1717 value = decl_constant_value (value);
1718 STRIP_TYPE_NOPS (value);
1719 value = fold (value);
1720 }
1721
1722 if (TREE_CODE (value) == INTEGER_CST)
1723 /* Promote char or short to int. */
1724 value = perform_integral_promotions (value);
1725 else if (value != error_mark_node)
1726 {
1727 error ("case label does not reduce to an integer constant");
1728 value = error_mark_node;
1729 }
1730
1731 constant_expression_warning (value);
1732
1733 return value;
1734 }
1735 \f
1736 /* See if the case values LOW and HIGH are in the range of the original
1737 type (i.e. before the default conversion to int) of the switch testing
1738 expression.
1739 TYPE is the promoted type of the testing expression, and ORIG_TYPE is
1740 the type before promoting it. CASE_LOW_P is a pointer to the lower
1741 bound of the case label, and CASE_HIGH_P is the upper bound or NULL
1742 if the case is not a case range.
1743 The caller has to make sure that we are not called with NULL for
1744 CASE_LOW_P (i.e. the default case).
1745 Returns true if the case label is in range of ORIG_TYPE (saturated or
1746 untouched) or false if the label is out of range. */
1747
1748 static bool
1749 check_case_bounds (tree type, tree orig_type,
1750 tree *case_low_p, tree *case_high_p)
1751 {
1752 tree min_value, max_value;
1753 tree case_low = *case_low_p;
1754 tree case_high = case_high_p ? *case_high_p : case_low;
1755
1756 /* If there was a problem with the original type, do nothing. */
1757 if (orig_type == error_mark_node)
1758 return true;
1759
1760 min_value = TYPE_MIN_VALUE (orig_type);
1761 max_value = TYPE_MAX_VALUE (orig_type);
1762
1763 /* Case label is less than minimum for type. */
1764 if (tree_int_cst_compare (case_low, min_value) < 0
1765 && tree_int_cst_compare (case_high, min_value) < 0)
1766 {
1767 warning (0, "case label value is less than minimum value for type");
1768 return false;
1769 }
1770
1771 /* Case value is greater than maximum for type. */
1772 if (tree_int_cst_compare (case_low, max_value) > 0
1773 && tree_int_cst_compare (case_high, max_value) > 0)
1774 {
1775 warning (0, "case label value exceeds maximum value for type");
1776 return false;
1777 }
1778
1779 /* Saturate lower case label value to minimum. */
1780 if (tree_int_cst_compare (case_high, min_value) >= 0
1781 && tree_int_cst_compare (case_low, min_value) < 0)
1782 {
1783 warning (0, "lower value in case label range"
1784 " less than minimum value for type");
1785 case_low = min_value;
1786 }
1787
1788 /* Saturate upper case label value to maximum. */
1789 if (tree_int_cst_compare (case_low, max_value) <= 0
1790 && tree_int_cst_compare (case_high, max_value) > 0)
1791 {
1792 warning (0, "upper value in case label range"
1793 " exceeds maximum value for type");
1794 case_high = max_value;
1795 }
1796
1797 if (*case_low_p != case_low)
1798 *case_low_p = convert (type, case_low);
1799 if (case_high_p && *case_high_p != case_high)
1800 *case_high_p = convert (type, case_high);
1801
1802 return true;
1803 }
1804 \f
1805 /* Return an integer type with BITS bits of precision,
1806 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
1807
1808 tree
1809 c_common_type_for_size (unsigned int bits, int unsignedp)
1810 {
1811 if (bits == TYPE_PRECISION (integer_type_node))
1812 return unsignedp ? unsigned_type_node : integer_type_node;
1813
1814 if (bits == TYPE_PRECISION (signed_char_type_node))
1815 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1816
1817 if (bits == TYPE_PRECISION (short_integer_type_node))
1818 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1819
1820 if (bits == TYPE_PRECISION (long_integer_type_node))
1821 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1822
1823 if (bits == TYPE_PRECISION (long_long_integer_type_node))
1824 return (unsignedp ? long_long_unsigned_type_node
1825 : long_long_integer_type_node);
1826
1827 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1828 return (unsignedp ? widest_unsigned_literal_type_node
1829 : widest_integer_literal_type_node);
1830
1831 if (bits <= TYPE_PRECISION (intQI_type_node))
1832 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1833
1834 if (bits <= TYPE_PRECISION (intHI_type_node))
1835 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1836
1837 if (bits <= TYPE_PRECISION (intSI_type_node))
1838 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1839
1840 if (bits <= TYPE_PRECISION (intDI_type_node))
1841 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1842
1843 return 0;
1844 }
1845
1846 /* Used for communication between c_common_type_for_mode and
1847 c_register_builtin_type. */
1848 static GTY(()) tree registered_builtin_types;
1849
1850 /* Return a data type that has machine mode MODE.
1851 If the mode is an integer,
1852 then UNSIGNEDP selects between signed and unsigned types. */
1853
1854 tree
1855 c_common_type_for_mode (enum machine_mode mode, int unsignedp)
1856 {
1857 tree t;
1858
1859 if (mode == TYPE_MODE (integer_type_node))
1860 return unsignedp ? unsigned_type_node : integer_type_node;
1861
1862 if (mode == TYPE_MODE (signed_char_type_node))
1863 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1864
1865 if (mode == TYPE_MODE (short_integer_type_node))
1866 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1867
1868 if (mode == TYPE_MODE (long_integer_type_node))
1869 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1870
1871 if (mode == TYPE_MODE (long_long_integer_type_node))
1872 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
1873
1874 if (mode == TYPE_MODE (widest_integer_literal_type_node))
1875 return unsignedp ? widest_unsigned_literal_type_node
1876 : widest_integer_literal_type_node;
1877
1878 if (mode == QImode)
1879 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1880
1881 if (mode == HImode)
1882 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1883
1884 if (mode == SImode)
1885 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1886
1887 if (mode == DImode)
1888 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1889
1890 #if HOST_BITS_PER_WIDE_INT >= 64
1891 if (mode == TYPE_MODE (intTI_type_node))
1892 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1893 #endif
1894
1895 if (mode == TYPE_MODE (float_type_node))
1896 return float_type_node;
1897
1898 if (mode == TYPE_MODE (double_type_node))
1899 return double_type_node;
1900
1901 if (mode == TYPE_MODE (long_double_type_node))
1902 return long_double_type_node;
1903
1904 if (mode == TYPE_MODE (void_type_node))
1905 return void_type_node;
1906
1907 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1908 return (unsignedp
1909 ? make_unsigned_type (GET_MODE_PRECISION (mode))
1910 : make_signed_type (GET_MODE_PRECISION (mode)));
1911
1912 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1913 return (unsignedp
1914 ? make_unsigned_type (GET_MODE_PRECISION (mode))
1915 : make_signed_type (GET_MODE_PRECISION (mode)));
1916
1917 if (COMPLEX_MODE_P (mode))
1918 {
1919 enum machine_mode inner_mode;
1920 tree inner_type;
1921
1922 if (mode == TYPE_MODE (complex_float_type_node))
1923 return complex_float_type_node;
1924 if (mode == TYPE_MODE (complex_double_type_node))
1925 return complex_double_type_node;
1926 if (mode == TYPE_MODE (complex_long_double_type_node))
1927 return complex_long_double_type_node;
1928
1929 if (mode == TYPE_MODE (complex_integer_type_node) && !unsignedp)
1930 return complex_integer_type_node;
1931
1932 inner_mode = GET_MODE_INNER (mode);
1933 inner_type = c_common_type_for_mode (inner_mode, unsignedp);
1934 if (inner_type != NULL_TREE)
1935 return build_complex_type (inner_type);
1936 }
1937 else if (VECTOR_MODE_P (mode))
1938 {
1939 enum machine_mode inner_mode = GET_MODE_INNER (mode);
1940 tree inner_type = c_common_type_for_mode (inner_mode, unsignedp);
1941 if (inner_type != NULL_TREE)
1942 return build_vector_type_for_mode (inner_type, mode);
1943 }
1944
1945 if (mode == TYPE_MODE (dfloat32_type_node))
1946 return dfloat32_type_node;
1947 if (mode == TYPE_MODE (dfloat64_type_node))
1948 return dfloat64_type_node;
1949 if (mode == TYPE_MODE (dfloat128_type_node))
1950 return dfloat128_type_node;
1951
1952 for (t = registered_builtin_types; t; t = TREE_CHAIN (t))
1953 if (TYPE_MODE (TREE_VALUE (t)) == mode)
1954 return TREE_VALUE (t);
1955
1956 return 0;
1957 }
1958
1959 /* Return an unsigned type the same as TYPE in other respects. */
1960 tree
1961 c_common_unsigned_type (tree type)
1962 {
1963 tree type1 = TYPE_MAIN_VARIANT (type);
1964 if (type1 == signed_char_type_node || type1 == char_type_node)
1965 return unsigned_char_type_node;
1966 if (type1 == integer_type_node)
1967 return unsigned_type_node;
1968 if (type1 == short_integer_type_node)
1969 return short_unsigned_type_node;
1970 if (type1 == long_integer_type_node)
1971 return long_unsigned_type_node;
1972 if (type1 == long_long_integer_type_node)
1973 return long_long_unsigned_type_node;
1974 if (type1 == widest_integer_literal_type_node)
1975 return widest_unsigned_literal_type_node;
1976 #if HOST_BITS_PER_WIDE_INT >= 64
1977 if (type1 == intTI_type_node)
1978 return unsigned_intTI_type_node;
1979 #endif
1980 if (type1 == intDI_type_node)
1981 return unsigned_intDI_type_node;
1982 if (type1 == intSI_type_node)
1983 return unsigned_intSI_type_node;
1984 if (type1 == intHI_type_node)
1985 return unsigned_intHI_type_node;
1986 if (type1 == intQI_type_node)
1987 return unsigned_intQI_type_node;
1988
1989 return c_common_signed_or_unsigned_type (1, type);
1990 }
1991
1992 /* Return a signed type the same as TYPE in other respects. */
1993
1994 tree
1995 c_common_signed_type (tree type)
1996 {
1997 tree type1 = TYPE_MAIN_VARIANT (type);
1998 if (type1 == unsigned_char_type_node || type1 == char_type_node)
1999 return signed_char_type_node;
2000 if (type1 == unsigned_type_node)
2001 return integer_type_node;
2002 if (type1 == short_unsigned_type_node)
2003 return short_integer_type_node;
2004 if (type1 == long_unsigned_type_node)
2005 return long_integer_type_node;
2006 if (type1 == long_long_unsigned_type_node)
2007 return long_long_integer_type_node;
2008 if (type1 == widest_unsigned_literal_type_node)
2009 return widest_integer_literal_type_node;
2010 #if HOST_BITS_PER_WIDE_INT >= 64
2011 if (type1 == unsigned_intTI_type_node)
2012 return intTI_type_node;
2013 #endif
2014 if (type1 == unsigned_intDI_type_node)
2015 return intDI_type_node;
2016 if (type1 == unsigned_intSI_type_node)
2017 return intSI_type_node;
2018 if (type1 == unsigned_intHI_type_node)
2019 return intHI_type_node;
2020 if (type1 == unsigned_intQI_type_node)
2021 return intQI_type_node;
2022
2023 return c_common_signed_or_unsigned_type (0, type);
2024 }
2025
2026 /* Return a type the same as TYPE except unsigned or
2027 signed according to UNSIGNEDP. */
2028
2029 tree
2030 c_common_signed_or_unsigned_type (int unsignedp, tree type)
2031 {
2032 if (!INTEGRAL_TYPE_P (type)
2033 || TYPE_UNSIGNED (type) == unsignedp)
2034 return type;
2035
2036 /* For ENUMERAL_TYPEs in C++, must check the mode of the types, not
2037 the precision; they have precision set to match their range, but
2038 may use a wider mode to match an ABI. If we change modes, we may
2039 wind up with bad conversions. For INTEGER_TYPEs in C, must check
2040 the precision as well, so as to yield correct results for
2041 bit-field types. C++ does not have these separate bit-field
2042 types, and producing a signed or unsigned variant of an
2043 ENUMERAL_TYPE may cause other problems as well. */
2044
2045 #define TYPE_OK(node) \
2046 (TYPE_MODE (type) == TYPE_MODE (node) \
2047 && (c_dialect_cxx () || TYPE_PRECISION (type) == TYPE_PRECISION (node)))
2048 if (TYPE_OK (signed_char_type_node))
2049 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2050 if (TYPE_OK (integer_type_node))
2051 return unsignedp ? unsigned_type_node : integer_type_node;
2052 if (TYPE_OK (short_integer_type_node))
2053 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2054 if (TYPE_OK (long_integer_type_node))
2055 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2056 if (TYPE_OK (long_long_integer_type_node))
2057 return (unsignedp ? long_long_unsigned_type_node
2058 : long_long_integer_type_node);
2059 if (TYPE_OK (widest_integer_literal_type_node))
2060 return (unsignedp ? widest_unsigned_literal_type_node
2061 : widest_integer_literal_type_node);
2062
2063 #if HOST_BITS_PER_WIDE_INT >= 64
2064 if (TYPE_OK (intTI_type_node))
2065 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2066 #endif
2067 if (TYPE_OK (intDI_type_node))
2068 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2069 if (TYPE_OK (intSI_type_node))
2070 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2071 if (TYPE_OK (intHI_type_node))
2072 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2073 if (TYPE_OK (intQI_type_node))
2074 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2075 #undef TYPE_OK
2076
2077 if (c_dialect_cxx ())
2078 return type;
2079 else
2080 return build_nonstandard_integer_type (TYPE_PRECISION (type), unsignedp);
2081 }
2082
2083 /* Build a bit-field integer type for the given WIDTH and UNSIGNEDP. */
2084
2085 tree
2086 c_build_bitfield_integer_type (unsigned HOST_WIDE_INT width, int unsignedp)
2087 {
2088 /* Extended integer types of the same width as a standard type have
2089 lesser rank, so those of the same width as int promote to int or
2090 unsigned int and are valid for printf formats expecting int or
2091 unsigned int. To avoid such special cases, avoid creating
2092 extended integer types for bit-fields if a standard integer type
2093 is available. */
2094 if (width == TYPE_PRECISION (integer_type_node))
2095 return unsignedp ? unsigned_type_node : integer_type_node;
2096 if (width == TYPE_PRECISION (signed_char_type_node))
2097 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2098 if (width == TYPE_PRECISION (short_integer_type_node))
2099 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2100 if (width == TYPE_PRECISION (long_integer_type_node))
2101 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2102 if (width == TYPE_PRECISION (long_long_integer_type_node))
2103 return (unsignedp ? long_long_unsigned_type_node
2104 : long_long_integer_type_node);
2105 return build_nonstandard_integer_type (width, unsignedp);
2106 }
2107
2108 /* The C version of the register_builtin_type langhook. */
2109
2110 void
2111 c_register_builtin_type (tree type, const char* name)
2112 {
2113 tree decl;
2114
2115 decl = build_decl (TYPE_DECL, get_identifier (name), type);
2116 DECL_ARTIFICIAL (decl) = 1;
2117 if (!TYPE_NAME (type))
2118 TYPE_NAME (type) = decl;
2119 pushdecl (decl);
2120
2121 registered_builtin_types = tree_cons (0, type, registered_builtin_types);
2122 }
2123
2124 \f
2125 /* Return the minimum number of bits needed to represent VALUE in a
2126 signed or unsigned type, UNSIGNEDP says which. */
2127
2128 unsigned int
2129 min_precision (tree value, int unsignedp)
2130 {
2131 int log;
2132
2133 /* If the value is negative, compute its negative minus 1. The latter
2134 adjustment is because the absolute value of the largest negative value
2135 is one larger than the largest positive value. This is equivalent to
2136 a bit-wise negation, so use that operation instead. */
2137
2138 if (tree_int_cst_sgn (value) < 0)
2139 value = fold_build1 (BIT_NOT_EXPR, TREE_TYPE (value), value);
2140
2141 /* Return the number of bits needed, taking into account the fact
2142 that we need one more bit for a signed than unsigned type. */
2143
2144 if (integer_zerop (value))
2145 log = 0;
2146 else
2147 log = tree_floor_log2 (value);
2148
2149 return log + 1 + !unsignedp;
2150 }
2151 \f
2152 /* Print an error message for invalid operands to arith operation
2153 CODE. */
2154
2155 void
2156 binary_op_error (enum tree_code code)
2157 {
2158 const char *opname;
2159
2160 switch (code)
2161 {
2162 case PLUS_EXPR:
2163 opname = "+"; break;
2164 case MINUS_EXPR:
2165 opname = "-"; break;
2166 case MULT_EXPR:
2167 opname = "*"; break;
2168 case MAX_EXPR:
2169 opname = "max"; break;
2170 case MIN_EXPR:
2171 opname = "min"; break;
2172 case EQ_EXPR:
2173 opname = "=="; break;
2174 case NE_EXPR:
2175 opname = "!="; break;
2176 case LE_EXPR:
2177 opname = "<="; break;
2178 case GE_EXPR:
2179 opname = ">="; break;
2180 case LT_EXPR:
2181 opname = "<"; break;
2182 case GT_EXPR:
2183 opname = ">"; break;
2184 case LSHIFT_EXPR:
2185 opname = "<<"; break;
2186 case RSHIFT_EXPR:
2187 opname = ">>"; break;
2188 case TRUNC_MOD_EXPR:
2189 case FLOOR_MOD_EXPR:
2190 opname = "%"; break;
2191 case TRUNC_DIV_EXPR:
2192 case FLOOR_DIV_EXPR:
2193 opname = "/"; break;
2194 case BIT_AND_EXPR:
2195 opname = "&"; break;
2196 case BIT_IOR_EXPR:
2197 opname = "|"; break;
2198 case TRUTH_ANDIF_EXPR:
2199 opname = "&&"; break;
2200 case TRUTH_ORIF_EXPR:
2201 opname = "||"; break;
2202 case BIT_XOR_EXPR:
2203 opname = "^"; break;
2204 default:
2205 gcc_unreachable ();
2206 }
2207 error ("invalid operands to binary %s", opname);
2208 }
2209 \f
2210 /* Subroutine of build_binary_op, used for comparison operations.
2211 See if the operands have both been converted from subword integer types
2212 and, if so, perhaps change them both back to their original type.
2213 This function is also responsible for converting the two operands
2214 to the proper common type for comparison.
2215
2216 The arguments of this function are all pointers to local variables
2217 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
2218 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
2219
2220 If this function returns nonzero, it means that the comparison has
2221 a constant value. What this function returns is an expression for
2222 that value. */
2223
2224 tree
2225 shorten_compare (tree *op0_ptr, tree *op1_ptr, tree *restype_ptr,
2226 enum tree_code *rescode_ptr)
2227 {
2228 tree type;
2229 tree op0 = *op0_ptr;
2230 tree op1 = *op1_ptr;
2231 int unsignedp0, unsignedp1;
2232 int real1, real2;
2233 tree primop0, primop1;
2234 enum tree_code code = *rescode_ptr;
2235
2236 /* Throw away any conversions to wider types
2237 already present in the operands. */
2238
2239 primop0 = get_narrower (op0, &unsignedp0);
2240 primop1 = get_narrower (op1, &unsignedp1);
2241
2242 /* Handle the case that OP0 does not *contain* a conversion
2243 but it *requires* conversion to FINAL_TYPE. */
2244
2245 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
2246 unsignedp0 = TYPE_UNSIGNED (TREE_TYPE (op0));
2247 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
2248 unsignedp1 = TYPE_UNSIGNED (TREE_TYPE (op1));
2249
2250 /* If one of the operands must be floated, we cannot optimize. */
2251 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
2252 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
2253
2254 /* If first arg is constant, swap the args (changing operation
2255 so value is preserved), for canonicalization. Don't do this if
2256 the second arg is 0. */
2257
2258 if (TREE_CONSTANT (primop0)
2259 && !integer_zerop (primop1) && !real_zerop (primop1))
2260 {
2261 tree tem = primop0;
2262 int temi = unsignedp0;
2263 primop0 = primop1;
2264 primop1 = tem;
2265 tem = op0;
2266 op0 = op1;
2267 op1 = tem;
2268 *op0_ptr = op0;
2269 *op1_ptr = op1;
2270 unsignedp0 = unsignedp1;
2271 unsignedp1 = temi;
2272 temi = real1;
2273 real1 = real2;
2274 real2 = temi;
2275
2276 switch (code)
2277 {
2278 case LT_EXPR:
2279 code = GT_EXPR;
2280 break;
2281 case GT_EXPR:
2282 code = LT_EXPR;
2283 break;
2284 case LE_EXPR:
2285 code = GE_EXPR;
2286 break;
2287 case GE_EXPR:
2288 code = LE_EXPR;
2289 break;
2290 default:
2291 break;
2292 }
2293 *rescode_ptr = code;
2294 }
2295
2296 /* If comparing an integer against a constant more bits wide,
2297 maybe we can deduce a value of 1 or 0 independent of the data.
2298 Or else truncate the constant now
2299 rather than extend the variable at run time.
2300
2301 This is only interesting if the constant is the wider arg.
2302 Also, it is not safe if the constant is unsigned and the
2303 variable arg is signed, since in this case the variable
2304 would be sign-extended and then regarded as unsigned.
2305 Our technique fails in this case because the lowest/highest
2306 possible unsigned results don't follow naturally from the
2307 lowest/highest possible values of the variable operand.
2308 For just EQ_EXPR and NE_EXPR there is another technique that
2309 could be used: see if the constant can be faithfully represented
2310 in the other operand's type, by truncating it and reextending it
2311 and see if that preserves the constant's value. */
2312
2313 if (!real1 && !real2
2314 && TREE_CODE (primop1) == INTEGER_CST
2315 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
2316 {
2317 int min_gt, max_gt, min_lt, max_lt;
2318 tree maxval, minval;
2319 /* 1 if comparison is nominally unsigned. */
2320 int unsignedp = TYPE_UNSIGNED (*restype_ptr);
2321 tree val;
2322
2323 type = c_common_signed_or_unsigned_type (unsignedp0,
2324 TREE_TYPE (primop0));
2325
2326 maxval = TYPE_MAX_VALUE (type);
2327 minval = TYPE_MIN_VALUE (type);
2328
2329 if (unsignedp && !unsignedp0)
2330 *restype_ptr = c_common_signed_type (*restype_ptr);
2331
2332 if (TREE_TYPE (primop1) != *restype_ptr)
2333 {
2334 /* Convert primop1 to target type, but do not introduce
2335 additional overflow. We know primop1 is an int_cst. */
2336 primop1 = force_fit_type_double (*restype_ptr,
2337 TREE_INT_CST_LOW (primop1),
2338 TREE_INT_CST_HIGH (primop1), 0,
2339 TREE_OVERFLOW (primop1));
2340 }
2341 if (type != *restype_ptr)
2342 {
2343 minval = convert (*restype_ptr, minval);
2344 maxval = convert (*restype_ptr, maxval);
2345 }
2346
2347 if (unsignedp && unsignedp0)
2348 {
2349 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
2350 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
2351 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
2352 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
2353 }
2354 else
2355 {
2356 min_gt = INT_CST_LT (primop1, minval);
2357 max_gt = INT_CST_LT (primop1, maxval);
2358 min_lt = INT_CST_LT (minval, primop1);
2359 max_lt = INT_CST_LT (maxval, primop1);
2360 }
2361
2362 val = 0;
2363 /* This used to be a switch, but Genix compiler can't handle that. */
2364 if (code == NE_EXPR)
2365 {
2366 if (max_lt || min_gt)
2367 val = truthvalue_true_node;
2368 }
2369 else if (code == EQ_EXPR)
2370 {
2371 if (max_lt || min_gt)
2372 val = truthvalue_false_node;
2373 }
2374 else if (code == LT_EXPR)
2375 {
2376 if (max_lt)
2377 val = truthvalue_true_node;
2378 if (!min_lt)
2379 val = truthvalue_false_node;
2380 }
2381 else if (code == GT_EXPR)
2382 {
2383 if (min_gt)
2384 val = truthvalue_true_node;
2385 if (!max_gt)
2386 val = truthvalue_false_node;
2387 }
2388 else if (code == LE_EXPR)
2389 {
2390 if (!max_gt)
2391 val = truthvalue_true_node;
2392 if (min_gt)
2393 val = truthvalue_false_node;
2394 }
2395 else if (code == GE_EXPR)
2396 {
2397 if (!min_lt)
2398 val = truthvalue_true_node;
2399 if (max_lt)
2400 val = truthvalue_false_node;
2401 }
2402
2403 /* If primop0 was sign-extended and unsigned comparison specd,
2404 we did a signed comparison above using the signed type bounds.
2405 But the comparison we output must be unsigned.
2406
2407 Also, for inequalities, VAL is no good; but if the signed
2408 comparison had *any* fixed result, it follows that the
2409 unsigned comparison just tests the sign in reverse
2410 (positive values are LE, negative ones GE).
2411 So we can generate an unsigned comparison
2412 against an extreme value of the signed type. */
2413
2414 if (unsignedp && !unsignedp0)
2415 {
2416 if (val != 0)
2417 switch (code)
2418 {
2419 case LT_EXPR:
2420 case GE_EXPR:
2421 primop1 = TYPE_MIN_VALUE (type);
2422 val = 0;
2423 break;
2424
2425 case LE_EXPR:
2426 case GT_EXPR:
2427 primop1 = TYPE_MAX_VALUE (type);
2428 val = 0;
2429 break;
2430
2431 default:
2432 break;
2433 }
2434 type = c_common_unsigned_type (type);
2435 }
2436
2437 if (TREE_CODE (primop0) != INTEGER_CST)
2438 {
2439 if (val == truthvalue_false_node)
2440 warning (0, "comparison is always false due to limited range of data type");
2441 if (val == truthvalue_true_node)
2442 warning (0, "comparison is always true due to limited range of data type");
2443 }
2444
2445 if (val != 0)
2446 {
2447 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2448 if (TREE_SIDE_EFFECTS (primop0))
2449 return build2 (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
2450 return val;
2451 }
2452
2453 /* Value is not predetermined, but do the comparison
2454 in the type of the operand that is not constant.
2455 TYPE is already properly set. */
2456 }
2457
2458 /* If either arg is decimal float and the other is float, find the
2459 proper common type to use for comparison. */
2460 else if (real1 && real2
2461 && (DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop0)))
2462 || DECIMAL_FLOAT_MODE_P (TYPE_MODE (TREE_TYPE (primop1)))))
2463 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
2464
2465 else if (real1 && real2
2466 && (TYPE_PRECISION (TREE_TYPE (primop0))
2467 == TYPE_PRECISION (TREE_TYPE (primop1))))
2468 type = TREE_TYPE (primop0);
2469
2470 /* If args' natural types are both narrower than nominal type
2471 and both extend in the same manner, compare them
2472 in the type of the wider arg.
2473 Otherwise must actually extend both to the nominal
2474 common type lest different ways of extending
2475 alter the result.
2476 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
2477
2478 else if (unsignedp0 == unsignedp1 && real1 == real2
2479 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
2480 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
2481 {
2482 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
2483 type = c_common_signed_or_unsigned_type (unsignedp0
2484 || TYPE_UNSIGNED (*restype_ptr),
2485 type);
2486 /* Make sure shorter operand is extended the right way
2487 to match the longer operand. */
2488 primop0
2489 = convert (c_common_signed_or_unsigned_type (unsignedp0,
2490 TREE_TYPE (primop0)),
2491 primop0);
2492 primop1
2493 = convert (c_common_signed_or_unsigned_type (unsignedp1,
2494 TREE_TYPE (primop1)),
2495 primop1);
2496 }
2497 else
2498 {
2499 /* Here we must do the comparison on the nominal type
2500 using the args exactly as we received them. */
2501 type = *restype_ptr;
2502 primop0 = op0;
2503 primop1 = op1;
2504
2505 if (!real1 && !real2 && integer_zerop (primop1)
2506 && TYPE_UNSIGNED (*restype_ptr))
2507 {
2508 tree value = 0;
2509 switch (code)
2510 {
2511 case GE_EXPR:
2512 /* All unsigned values are >= 0, so we warn if extra warnings
2513 are requested. However, if OP0 is a constant that is
2514 >= 0, the signedness of the comparison isn't an issue,
2515 so suppress the warning. */
2516 if (extra_warnings && !in_system_header
2517 && !(TREE_CODE (primop0) == INTEGER_CST
2518 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
2519 primop0))))
2520 warning (0, "comparison of unsigned expression >= 0 is always true");
2521 value = truthvalue_true_node;
2522 break;
2523
2524 case LT_EXPR:
2525 if (extra_warnings && !in_system_header
2526 && !(TREE_CODE (primop0) == INTEGER_CST
2527 && !TREE_OVERFLOW (convert (c_common_signed_type (type),
2528 primop0))))
2529 warning (0, "comparison of unsigned expression < 0 is always false");
2530 value = truthvalue_false_node;
2531 break;
2532
2533 default:
2534 break;
2535 }
2536
2537 if (value != 0)
2538 {
2539 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2540 if (TREE_SIDE_EFFECTS (primop0))
2541 return build2 (COMPOUND_EXPR, TREE_TYPE (value),
2542 primop0, value);
2543 return value;
2544 }
2545 }
2546 }
2547
2548 *op0_ptr = convert (type, primop0);
2549 *op1_ptr = convert (type, primop1);
2550
2551 *restype_ptr = truthvalue_type_node;
2552
2553 return 0;
2554 }
2555 \f
2556 /* Return a tree for the sum or difference (RESULTCODE says which)
2557 of pointer PTROP and integer INTOP. */
2558
2559 tree
2560 pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop)
2561 {
2562 tree size_exp, ret;
2563
2564 /* The result is a pointer of the same type that is being added. */
2565
2566 tree result_type = TREE_TYPE (ptrop);
2567
2568 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
2569 {
2570 if (pedantic || warn_pointer_arith)
2571 pedwarn ("pointer of type %<void *%> used in arithmetic");
2572 size_exp = integer_one_node;
2573 }
2574 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
2575 {
2576 if (pedantic || warn_pointer_arith)
2577 pedwarn ("pointer to a function used in arithmetic");
2578 size_exp = integer_one_node;
2579 }
2580 else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
2581 {
2582 if (pedantic || warn_pointer_arith)
2583 pedwarn ("pointer to member function used in arithmetic");
2584 size_exp = integer_one_node;
2585 }
2586 else
2587 size_exp = size_in_bytes (TREE_TYPE (result_type));
2588
2589 /* We are manipulating pointer values, so we don't need to warn
2590 about relying on undefined signed overflow. We disable the
2591 warning here because we use integer types so fold won't know that
2592 they are really pointers. */
2593 fold_defer_overflow_warnings ();
2594
2595 /* If what we are about to multiply by the size of the elements
2596 contains a constant term, apply distributive law
2597 and multiply that constant term separately.
2598 This helps produce common subexpressions. */
2599
2600 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
2601 && !TREE_CONSTANT (intop)
2602 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
2603 && TREE_CONSTANT (size_exp)
2604 /* If the constant comes from pointer subtraction,
2605 skip this optimization--it would cause an error. */
2606 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
2607 /* If the constant is unsigned, and smaller than the pointer size,
2608 then we must skip this optimization. This is because it could cause
2609 an overflow error if the constant is negative but INTOP is not. */
2610 && (!TYPE_UNSIGNED (TREE_TYPE (intop))
2611 || (TYPE_PRECISION (TREE_TYPE (intop))
2612 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
2613 {
2614 enum tree_code subcode = resultcode;
2615 tree int_type = TREE_TYPE (intop);
2616 if (TREE_CODE (intop) == MINUS_EXPR)
2617 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2618 /* Convert both subexpression types to the type of intop,
2619 because weird cases involving pointer arithmetic
2620 can result in a sum or difference with different type args. */
2621 ptrop = build_binary_op (subcode, ptrop,
2622 convert (int_type, TREE_OPERAND (intop, 1)), 1);
2623 intop = convert (int_type, TREE_OPERAND (intop, 0));
2624 }
2625
2626 /* Convert the integer argument to a type the same size as sizetype
2627 so the multiply won't overflow spuriously. */
2628
2629 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
2630 || TYPE_UNSIGNED (TREE_TYPE (intop)) != TYPE_UNSIGNED (sizetype))
2631 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
2632 TYPE_UNSIGNED (sizetype)), intop);
2633
2634 /* Replace the integer argument with a suitable product by the object size.
2635 Do this multiplication as signed, then convert to the appropriate
2636 pointer type (actually unsigned integral). */
2637
2638 intop = convert (result_type,
2639 build_binary_op (MULT_EXPR, intop,
2640 convert (TREE_TYPE (intop), size_exp), 1));
2641
2642 /* Create the sum or difference. */
2643 ret = fold_build2 (resultcode, result_type, ptrop, intop);
2644
2645 fold_undefer_and_ignore_overflow_warnings ();
2646
2647 return ret;
2648 }
2649 \f
2650 /* Return whether EXPR is a declaration whose address can never be
2651 NULL. */
2652
2653 bool
2654 decl_with_nonnull_addr_p (tree expr)
2655 {
2656 return (DECL_P (expr)
2657 && (TREE_CODE (expr) == PARM_DECL
2658 || TREE_CODE (expr) == LABEL_DECL
2659 || !DECL_WEAK (expr)));
2660 }
2661
2662 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
2663 or for an `if' or `while' statement or ?..: exp. It should already
2664 have been validated to be of suitable type; otherwise, a bad
2665 diagnostic may result.
2666
2667 This preparation consists of taking the ordinary
2668 representation of an expression expr and producing a valid tree
2669 boolean expression describing whether expr is nonzero. We could
2670 simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
2671 but we optimize comparisons, &&, ||, and !.
2672
2673 The resulting type should always be `truthvalue_type_node'. */
2674
2675 tree
2676 c_common_truthvalue_conversion (tree expr)
2677 {
2678 switch (TREE_CODE (expr))
2679 {
2680 case EQ_EXPR: case NE_EXPR: case UNEQ_EXPR: case LTGT_EXPR:
2681 case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2682 case UNLE_EXPR: case UNGE_EXPR: case UNLT_EXPR: case UNGT_EXPR:
2683 case ORDERED_EXPR: case UNORDERED_EXPR:
2684 if (TREE_TYPE (expr) == truthvalue_type_node)
2685 return expr;
2686 return build2 (TREE_CODE (expr), truthvalue_type_node,
2687 TREE_OPERAND (expr, 0), TREE_OPERAND (expr, 1));
2688
2689 case TRUTH_ANDIF_EXPR:
2690 case TRUTH_ORIF_EXPR:
2691 case TRUTH_AND_EXPR:
2692 case TRUTH_OR_EXPR:
2693 case TRUTH_XOR_EXPR:
2694 if (TREE_TYPE (expr) == truthvalue_type_node)
2695 return expr;
2696 return build2 (TREE_CODE (expr), truthvalue_type_node,
2697 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)),
2698 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)));
2699
2700 case TRUTH_NOT_EXPR:
2701 if (TREE_TYPE (expr) == truthvalue_type_node)
2702 return expr;
2703 return build1 (TREE_CODE (expr), truthvalue_type_node,
2704 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)));
2705
2706 case ERROR_MARK:
2707 return expr;
2708
2709 case INTEGER_CST:
2710 return integer_zerop (expr) ? truthvalue_false_node
2711 : truthvalue_true_node;
2712
2713 case REAL_CST:
2714 return real_compare (NE_EXPR, &TREE_REAL_CST (expr), &dconst0)
2715 ? truthvalue_true_node
2716 : truthvalue_false_node;
2717
2718 case FUNCTION_DECL:
2719 expr = build_unary_op (ADDR_EXPR, expr, 0);
2720 /* Fall through. */
2721
2722 case ADDR_EXPR:
2723 {
2724 tree inner = TREE_OPERAND (expr, 0);
2725 if (decl_with_nonnull_addr_p (inner))
2726 {
2727 /* Common Ada/Pascal programmer's mistake. */
2728 warning (OPT_Waddress,
2729 "the address of %qD will always evaluate as %<true%>",
2730 inner);
2731 return truthvalue_true_node;
2732 }
2733
2734 /* If we still have a decl, it is possible for its address to
2735 be NULL, so we cannot optimize. */
2736 if (DECL_P (inner))
2737 {
2738 gcc_assert (DECL_WEAK (inner));
2739 break;
2740 }
2741
2742 if (TREE_SIDE_EFFECTS (inner))
2743 return build2 (COMPOUND_EXPR, truthvalue_type_node,
2744 inner, truthvalue_true_node);
2745 else
2746 return truthvalue_true_node;
2747 }
2748
2749 case COMPLEX_EXPR:
2750 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
2751 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2752 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)),
2753 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2754 0);
2755
2756 case NEGATE_EXPR:
2757 case ABS_EXPR:
2758 case FLOAT_EXPR:
2759 /* These don't change whether an object is nonzero or zero. */
2760 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2761
2762 case LROTATE_EXPR:
2763 case RROTATE_EXPR:
2764 /* These don't change whether an object is zero or nonzero, but
2765 we can't ignore them if their second arg has side-effects. */
2766 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2767 return build2 (COMPOUND_EXPR, truthvalue_type_node,
2768 TREE_OPERAND (expr, 1),
2769 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)));
2770 else
2771 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2772
2773 case COND_EXPR:
2774 /* Distribute the conversion into the arms of a COND_EXPR. */
2775 return fold_build3 (COND_EXPR, truthvalue_type_node,
2776 TREE_OPERAND (expr, 0),
2777 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2778 c_common_truthvalue_conversion (TREE_OPERAND (expr, 2)));
2779
2780 case CONVERT_EXPR:
2781 case NOP_EXPR:
2782 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
2783 since that affects how `default_conversion' will behave. */
2784 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
2785 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2786 break;
2787 /* If this is widening the argument, we can ignore it. */
2788 if (TYPE_PRECISION (TREE_TYPE (expr))
2789 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2790 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2791 break;
2792
2793 case MODIFY_EXPR:
2794 if (!TREE_NO_WARNING (expr)
2795 && warn_parentheses)
2796 {
2797 warning (OPT_Wparentheses,
2798 "suggest parentheses around assignment used as truth value");
2799 TREE_NO_WARNING (expr) = 1;
2800 }
2801 break;
2802
2803 default:
2804 break;
2805 }
2806
2807 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
2808 {
2809 tree t = save_expr (expr);
2810 return (build_binary_op
2811 ((TREE_SIDE_EFFECTS (expr)
2812 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2813 c_common_truthvalue_conversion (build_unary_op (REALPART_EXPR, t, 0)),
2814 c_common_truthvalue_conversion (build_unary_op (IMAGPART_EXPR, t, 0)),
2815 0));
2816 }
2817
2818 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2819 }
2820 \f
2821 static void def_builtin_1 (enum built_in_function fncode,
2822 const char *name,
2823 enum built_in_class fnclass,
2824 tree fntype, tree libtype,
2825 bool both_p, bool fallback_p, bool nonansi_p,
2826 tree fnattrs, bool implicit_p);
2827
2828 /* Make a variant type in the proper way for C/C++, propagating qualifiers
2829 down to the element type of an array. */
2830
2831 tree
2832 c_build_qualified_type (tree type, int type_quals)
2833 {
2834 if (type == error_mark_node)
2835 return type;
2836
2837 if (TREE_CODE (type) == ARRAY_TYPE)
2838 {
2839 tree t;
2840 tree element_type = c_build_qualified_type (TREE_TYPE (type),
2841 type_quals);
2842
2843 /* See if we already have an identically qualified type. */
2844 for (t = TYPE_MAIN_VARIANT (type); t; t = TYPE_NEXT_VARIANT (t))
2845 {
2846 if (TYPE_QUALS (strip_array_types (t)) == type_quals
2847 && TYPE_NAME (t) == TYPE_NAME (type)
2848 && TYPE_CONTEXT (t) == TYPE_CONTEXT (type)
2849 && attribute_list_equal (TYPE_ATTRIBUTES (t),
2850 TYPE_ATTRIBUTES (type)))
2851 break;
2852 }
2853 if (!t)
2854 {
2855 t = build_variant_type_copy (type);
2856 TREE_TYPE (t) = element_type;
2857 }
2858 return t;
2859 }
2860
2861 /* A restrict-qualified pointer type must be a pointer to object or
2862 incomplete type. Note that the use of POINTER_TYPE_P also allows
2863 REFERENCE_TYPEs, which is appropriate for C++. */
2864 if ((type_quals & TYPE_QUAL_RESTRICT)
2865 && (!POINTER_TYPE_P (type)
2866 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
2867 {
2868 error ("invalid use of %<restrict%>");
2869 type_quals &= ~TYPE_QUAL_RESTRICT;
2870 }
2871
2872 return build_qualified_type (type, type_quals);
2873 }
2874
2875 /* Apply the TYPE_QUALS to the new DECL. */
2876
2877 void
2878 c_apply_type_quals_to_decl (int type_quals, tree decl)
2879 {
2880 tree type = TREE_TYPE (decl);
2881
2882 if (type == error_mark_node)
2883 return;
2884
2885 if (((type_quals & TYPE_QUAL_CONST)
2886 || (type && TREE_CODE (type) == REFERENCE_TYPE))
2887 /* An object declared 'const' is only readonly after it is
2888 initialized. We don't have any way of expressing this currently,
2889 so we need to be conservative and unset TREE_READONLY for types
2890 with constructors. Otherwise aliasing code will ignore stores in
2891 an inline constructor. */
2892 && !(type && TYPE_NEEDS_CONSTRUCTING (type)))
2893 TREE_READONLY (decl) = 1;
2894 if (type_quals & TYPE_QUAL_VOLATILE)
2895 {
2896 TREE_SIDE_EFFECTS (decl) = 1;
2897 TREE_THIS_VOLATILE (decl) = 1;
2898 }
2899 if (type_quals & TYPE_QUAL_RESTRICT)
2900 {
2901 while (type && TREE_CODE (type) == ARRAY_TYPE)
2902 /* Allow 'restrict' on arrays of pointers.
2903 FIXME currently we just ignore it. */
2904 type = TREE_TYPE (type);
2905 if (!type
2906 || !POINTER_TYPE_P (type)
2907 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type)))
2908 error ("invalid use of %<restrict%>");
2909 else if (flag_strict_aliasing && type == TREE_TYPE (decl))
2910 /* Indicate we need to make a unique alias set for this pointer.
2911 We can't do it here because it might be pointing to an
2912 incomplete type. */
2913 DECL_POINTER_ALIAS_SET (decl) = -2;
2914 }
2915 }
2916
2917 /* Hash function for the problem of multiple type definitions in
2918 different files. This must hash all types that will compare
2919 equal via comptypes to the same value. In practice it hashes
2920 on some of the simple stuff and leaves the details to comptypes. */
2921
2922 static hashval_t
2923 c_type_hash (const void *p)
2924 {
2925 int i = 0;
2926 int shift, size;
2927 tree t = (tree) p;
2928 tree t2;
2929 switch (TREE_CODE (t))
2930 {
2931 /* For pointers, hash on pointee type plus some swizzling. */
2932 case POINTER_TYPE:
2933 return c_type_hash (TREE_TYPE (t)) ^ 0x3003003;
2934 /* Hash on number of elements and total size. */
2935 case ENUMERAL_TYPE:
2936 shift = 3;
2937 t2 = TYPE_VALUES (t);
2938 break;
2939 case RECORD_TYPE:
2940 shift = 0;
2941 t2 = TYPE_FIELDS (t);
2942 break;
2943 case QUAL_UNION_TYPE:
2944 shift = 1;
2945 t2 = TYPE_FIELDS (t);
2946 break;
2947 case UNION_TYPE:
2948 shift = 2;
2949 t2 = TYPE_FIELDS (t);
2950 break;
2951 default:
2952 gcc_unreachable ();
2953 }
2954 for (; t2; t2 = TREE_CHAIN (t2))
2955 i++;
2956 size = TREE_INT_CST_LOW (TYPE_SIZE (t));
2957 return ((size << 24) | (i << shift));
2958 }
2959
2960 static GTY((param_is (union tree_node))) htab_t type_hash_table;
2961
2962 /* Return the typed-based alias set for T, which may be an expression
2963 or a type. Return -1 if we don't do anything special. */
2964
2965 HOST_WIDE_INT
2966 c_common_get_alias_set (tree t)
2967 {
2968 tree u;
2969 PTR *slot;
2970
2971 /* Permit type-punning when accessing a union, provided the access
2972 is directly through the union. For example, this code does not
2973 permit taking the address of a union member and then storing
2974 through it. Even the type-punning allowed here is a GCC
2975 extension, albeit a common and useful one; the C standard says
2976 that such accesses have implementation-defined behavior. */
2977 for (u = t;
2978 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
2979 u = TREE_OPERAND (u, 0))
2980 if (TREE_CODE (u) == COMPONENT_REF
2981 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
2982 return 0;
2983
2984 /* That's all the expressions we handle specially. */
2985 if (!TYPE_P (t))
2986 return -1;
2987
2988 /* The C standard guarantees that any object may be accessed via an
2989 lvalue that has character type. */
2990 if (t == char_type_node
2991 || t == signed_char_type_node
2992 || t == unsigned_char_type_node)
2993 return 0;
2994
2995 /* If it has the may_alias attribute, it can alias anything. */
2996 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (t)))
2997 return 0;
2998
2999 /* The C standard specifically allows aliasing between signed and
3000 unsigned variants of the same type. We treat the signed
3001 variant as canonical. */
3002 if (TREE_CODE (t) == INTEGER_TYPE && TYPE_UNSIGNED (t))
3003 {
3004 tree t1 = c_common_signed_type (t);
3005
3006 /* t1 == t can happen for boolean nodes which are always unsigned. */
3007 if (t1 != t)
3008 return get_alias_set (t1);
3009 }
3010 else if (POINTER_TYPE_P (t))
3011 {
3012 tree t1;
3013
3014 /* Unfortunately, there is no canonical form of a pointer type.
3015 In particular, if we have `typedef int I', then `int *', and
3016 `I *' are different types. So, we have to pick a canonical
3017 representative. We do this below.
3018
3019 Technically, this approach is actually more conservative that
3020 it needs to be. In particular, `const int *' and `int *'
3021 should be in different alias sets, according to the C and C++
3022 standard, since their types are not the same, and so,
3023 technically, an `int **' and `const int **' cannot point at
3024 the same thing.
3025
3026 But, the standard is wrong. In particular, this code is
3027 legal C++:
3028
3029 int *ip;
3030 int **ipp = &ip;
3031 const int* const* cipp = ipp;
3032
3033 And, it doesn't make sense for that to be legal unless you
3034 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
3035 the pointed-to types. This issue has been reported to the
3036 C++ committee. */
3037 t1 = build_type_no_quals (t);
3038 if (t1 != t)
3039 return get_alias_set (t1);
3040 }
3041
3042 /* Handle the case of multiple type nodes referring to "the same" type,
3043 which occurs with IMA. These share an alias set. FIXME: Currently only
3044 C90 is handled. (In C99 type compatibility is not transitive, which
3045 complicates things mightily. The alias set splay trees can theoretically
3046 represent this, but insertion is tricky when you consider all the
3047 different orders things might arrive in.) */
3048
3049 if (c_language != clk_c || flag_isoc99)
3050 return -1;
3051
3052 /* Save time if there's only one input file. */
3053 if (num_in_fnames == 1)
3054 return -1;
3055
3056 /* Pointers need special handling if they point to any type that
3057 needs special handling (below). */
3058 if (TREE_CODE (t) == POINTER_TYPE)
3059 {
3060 tree t2;
3061 /* Find bottom type under any nested POINTERs. */
3062 for (t2 = TREE_TYPE (t);
3063 TREE_CODE (t2) == POINTER_TYPE;
3064 t2 = TREE_TYPE (t2))
3065 ;
3066 if (TREE_CODE (t2) != RECORD_TYPE
3067 && TREE_CODE (t2) != ENUMERAL_TYPE
3068 && TREE_CODE (t2) != QUAL_UNION_TYPE
3069 && TREE_CODE (t2) != UNION_TYPE)
3070 return -1;
3071 if (TYPE_SIZE (t2) == 0)
3072 return -1;
3073 }
3074 /* These are the only cases that need special handling. */
3075 if (TREE_CODE (t) != RECORD_TYPE
3076 && TREE_CODE (t) != ENUMERAL_TYPE
3077 && TREE_CODE (t) != QUAL_UNION_TYPE
3078 && TREE_CODE (t) != UNION_TYPE
3079 && TREE_CODE (t) != POINTER_TYPE)
3080 return -1;
3081 /* Undefined? */
3082 if (TYPE_SIZE (t) == 0)
3083 return -1;
3084
3085 /* Look up t in hash table. Only one of the compatible types within each
3086 alias set is recorded in the table. */
3087 if (!type_hash_table)
3088 type_hash_table = htab_create_ggc (1021, c_type_hash,
3089 (htab_eq) lang_hooks.types_compatible_p,
3090 NULL);
3091 slot = htab_find_slot (type_hash_table, t, INSERT);
3092 if (*slot != NULL)
3093 {
3094 TYPE_ALIAS_SET (t) = TYPE_ALIAS_SET ((tree)*slot);
3095 return TYPE_ALIAS_SET ((tree)*slot);
3096 }
3097 else
3098 /* Our caller will assign and record (in t) a new alias set; all we need
3099 to do is remember t in the hash table. */
3100 *slot = t;
3101
3102 return -1;
3103 }
3104 \f
3105 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where the
3106 second parameter indicates which OPERATOR is being applied. The COMPLAIN
3107 flag controls whether we should diagnose possibly ill-formed
3108 constructs or not. */
3109
3110 tree
3111 c_sizeof_or_alignof_type (tree type, bool is_sizeof, int complain)
3112 {
3113 const char *op_name;
3114 tree value = NULL;
3115 enum tree_code type_code = TREE_CODE (type);
3116
3117 op_name = is_sizeof ? "sizeof" : "__alignof__";
3118
3119 if (type_code == FUNCTION_TYPE)
3120 {
3121 if (is_sizeof)
3122 {
3123 if (complain && (pedantic || warn_pointer_arith))
3124 pedwarn ("invalid application of %<sizeof%> to a function type");
3125 value = size_one_node;
3126 }
3127 else
3128 value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
3129 }
3130 else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
3131 {
3132 if (type_code == VOID_TYPE
3133 && complain && (pedantic || warn_pointer_arith))
3134 pedwarn ("invalid application of %qs to a void type", op_name);
3135 value = size_one_node;
3136 }
3137 else if (!COMPLETE_TYPE_P (type))
3138 {
3139 if (complain)
3140 error ("invalid application of %qs to incomplete type %qT ",
3141 op_name, type);
3142 value = size_zero_node;
3143 }
3144 else
3145 {
3146 if (is_sizeof)
3147 /* Convert in case a char is more than one unit. */
3148 value = size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
3149 size_int (TYPE_PRECISION (char_type_node)
3150 / BITS_PER_UNIT));
3151 else
3152 value = size_int (TYPE_ALIGN_UNIT (type));
3153 }
3154
3155 /* VALUE will have an integer type with TYPE_IS_SIZETYPE set.
3156 TYPE_IS_SIZETYPE means that certain things (like overflow) will
3157 never happen. However, this node should really have type
3158 `size_t', which is just a typedef for an ordinary integer type. */
3159 value = fold_convert (size_type_node, value);
3160 gcc_assert (!TYPE_IS_SIZETYPE (TREE_TYPE (value)));
3161
3162 return value;
3163 }
3164
3165 /* Implement the __alignof keyword: Return the minimum required
3166 alignment of EXPR, measured in bytes. For VAR_DECL's and
3167 FIELD_DECL's return DECL_ALIGN (which can be set from an
3168 "aligned" __attribute__ specification). */
3169
3170 tree
3171 c_alignof_expr (tree expr)
3172 {
3173 tree t;
3174
3175 if (TREE_CODE (expr) == VAR_DECL)
3176 t = size_int (DECL_ALIGN_UNIT (expr));
3177
3178 else if (TREE_CODE (expr) == COMPONENT_REF
3179 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
3180 {
3181 error ("%<__alignof%> applied to a bit-field");
3182 t = size_one_node;
3183 }
3184 else if (TREE_CODE (expr) == COMPONENT_REF
3185 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
3186 t = size_int (DECL_ALIGN_UNIT (TREE_OPERAND (expr, 1)));
3187
3188 else if (TREE_CODE (expr) == INDIRECT_REF)
3189 {
3190 tree t = TREE_OPERAND (expr, 0);
3191 tree best = t;
3192 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
3193
3194 while ((TREE_CODE (t) == NOP_EXPR || TREE_CODE (t) == CONVERT_EXPR)
3195 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
3196 {
3197 int thisalign;
3198
3199 t = TREE_OPERAND (t, 0);
3200 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
3201 if (thisalign > bestalign)
3202 best = t, bestalign = thisalign;
3203 }
3204 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
3205 }
3206 else
3207 return c_alignof (TREE_TYPE (expr));
3208
3209 return fold_convert (size_type_node, t);
3210 }
3211 \f
3212 /* Handle C and C++ default attributes. */
3213
3214 enum built_in_attribute
3215 {
3216 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
3217 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
3218 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
3219 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
3220 #include "builtin-attrs.def"
3221 #undef DEF_ATTR_NULL_TREE
3222 #undef DEF_ATTR_INT
3223 #undef DEF_ATTR_IDENT
3224 #undef DEF_ATTR_TREE_LIST
3225 ATTR_LAST
3226 };
3227
3228 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
3229
3230 static void c_init_attributes (void);
3231
3232 enum c_builtin_type
3233 {
3234 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
3235 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
3236 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
3237 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
3238 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
3239 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
3240 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
3241 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) NAME,
3242 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) NAME,
3243 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
3244 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
3245 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
3246 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
3247 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
3248 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG6) \
3249 NAME,
3250 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
3251 #include "builtin-types.def"
3252 #undef DEF_PRIMITIVE_TYPE
3253 #undef DEF_FUNCTION_TYPE_0
3254 #undef DEF_FUNCTION_TYPE_1
3255 #undef DEF_FUNCTION_TYPE_2
3256 #undef DEF_FUNCTION_TYPE_3
3257 #undef DEF_FUNCTION_TYPE_4
3258 #undef DEF_FUNCTION_TYPE_5
3259 #undef DEF_FUNCTION_TYPE_6
3260 #undef DEF_FUNCTION_TYPE_7
3261 #undef DEF_FUNCTION_TYPE_VAR_0
3262 #undef DEF_FUNCTION_TYPE_VAR_1
3263 #undef DEF_FUNCTION_TYPE_VAR_2
3264 #undef DEF_FUNCTION_TYPE_VAR_3
3265 #undef DEF_FUNCTION_TYPE_VAR_4
3266 #undef DEF_FUNCTION_TYPE_VAR_5
3267 #undef DEF_POINTER_TYPE
3268 BT_LAST
3269 };
3270
3271 typedef enum c_builtin_type builtin_type;
3272
3273 /* A temporary array for c_common_nodes_and_builtins. Used in
3274 communication with def_fn_type. */
3275 static tree builtin_types[(int) BT_LAST + 1];
3276
3277 /* A helper function for c_common_nodes_and_builtins. Build function type
3278 for DEF with return type RET and N arguments. If VAR is true, then the
3279 function should be variadic after those N arguments.
3280
3281 Takes special care not to ICE if any of the types involved are
3282 error_mark_node, which indicates that said type is not in fact available
3283 (see builtin_type_for_size). In which case the function type as a whole
3284 should be error_mark_node. */
3285
3286 static void
3287 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
3288 {
3289 tree args = NULL, t;
3290 va_list list;
3291 int i;
3292
3293 va_start (list, n);
3294 for (i = 0; i < n; ++i)
3295 {
3296 builtin_type a = va_arg (list, builtin_type);
3297 t = builtin_types[a];
3298 if (t == error_mark_node)
3299 goto egress;
3300 args = tree_cons (NULL_TREE, t, args);
3301 }
3302 va_end (list);
3303
3304 args = nreverse (args);
3305 if (!var)
3306 args = chainon (args, void_list_node);
3307
3308 t = builtin_types[ret];
3309 if (t == error_mark_node)
3310 goto egress;
3311 t = build_function_type (t, args);
3312
3313 egress:
3314 builtin_types[def] = t;
3315 }
3316
3317 /* Build builtin functions common to both C and C++ language
3318 frontends. */
3319
3320 static void
3321 c_define_builtins (tree va_list_ref_type_node, tree va_list_arg_type_node)
3322 {
3323 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
3324 builtin_types[ENUM] = VALUE;
3325 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
3326 def_fn_type (ENUM, RETURN, 0, 0);
3327 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
3328 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
3329 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
3330 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
3331 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
3332 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
3333 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
3334 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
3335 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
3336 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
3337 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3338 ARG6) \
3339 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
3340 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
3341 ARG6, ARG7) \
3342 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
3343 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
3344 def_fn_type (ENUM, RETURN, 1, 0);
3345 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
3346 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
3347 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
3348 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
3349 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
3350 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
3351 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
3352 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
3353 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
3354 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
3355 #define DEF_POINTER_TYPE(ENUM, TYPE) \
3356 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
3357
3358 #include "builtin-types.def"
3359
3360 #undef DEF_PRIMITIVE_TYPE
3361 #undef DEF_FUNCTION_TYPE_1
3362 #undef DEF_FUNCTION_TYPE_2
3363 #undef DEF_FUNCTION_TYPE_3
3364 #undef DEF_FUNCTION_TYPE_4
3365 #undef DEF_FUNCTION_TYPE_5
3366 #undef DEF_FUNCTION_TYPE_6
3367 #undef DEF_FUNCTION_TYPE_VAR_0
3368 #undef DEF_FUNCTION_TYPE_VAR_1
3369 #undef DEF_FUNCTION_TYPE_VAR_2
3370 #undef DEF_FUNCTION_TYPE_VAR_3
3371 #undef DEF_FUNCTION_TYPE_VAR_4
3372 #undef DEF_FUNCTION_TYPE_VAR_5
3373 #undef DEF_POINTER_TYPE
3374 builtin_types[(int) BT_LAST] = NULL_TREE;
3375
3376 c_init_attributes ();
3377
3378 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
3379 NONANSI_P, ATTRS, IMPLICIT, COND) \
3380 if (NAME && COND) \
3381 def_builtin_1 (ENUM, NAME, CLASS, \
3382 builtin_types[(int) TYPE], \
3383 builtin_types[(int) LIBTYPE], \
3384 BOTH_P, FALLBACK_P, NONANSI_P, \
3385 built_in_attributes[(int) ATTRS], IMPLICIT);
3386 #include "builtins.def"
3387 #undef DEF_BUILTIN
3388
3389 build_common_builtin_nodes ();
3390
3391 targetm.init_builtins ();
3392 if (flag_mudflap)
3393 mudflap_init ();
3394 }
3395
3396 /* Build tree nodes and builtin functions common to both C and C++ language
3397 frontends. */
3398
3399 void
3400 c_common_nodes_and_builtins (void)
3401 {
3402 int wchar_type_size;
3403 tree array_domain_type;
3404 tree va_list_ref_type_node;
3405 tree va_list_arg_type_node;
3406
3407 /* Define `int' and `char' first so that dbx will output them first. */
3408 record_builtin_type (RID_INT, NULL, integer_type_node);
3409 record_builtin_type (RID_CHAR, "char", char_type_node);
3410
3411 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
3412 "unsigned long", "long long unsigned" and "unsigned short" were in C++
3413 but not C. Are the conditionals here needed? */
3414 if (c_dialect_cxx ())
3415 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
3416 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
3417 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
3418 record_builtin_type (RID_MAX, "long unsigned int",
3419 long_unsigned_type_node);
3420 if (c_dialect_cxx ())
3421 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
3422 record_builtin_type (RID_MAX, "long long int",
3423 long_long_integer_type_node);
3424 record_builtin_type (RID_MAX, "long long unsigned int",
3425 long_long_unsigned_type_node);
3426 if (c_dialect_cxx ())
3427 record_builtin_type (RID_MAX, "long long unsigned",
3428 long_long_unsigned_type_node);
3429 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
3430 record_builtin_type (RID_MAX, "short unsigned int",
3431 short_unsigned_type_node);
3432 if (c_dialect_cxx ())
3433 record_builtin_type (RID_MAX, "unsigned short",
3434 short_unsigned_type_node);
3435
3436 /* Define both `signed char' and `unsigned char'. */
3437 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
3438 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
3439
3440 /* These are types that c_common_type_for_size and
3441 c_common_type_for_mode use. */
3442 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3443 intQI_type_node));
3444 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3445 intHI_type_node));
3446 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3447 intSI_type_node));
3448 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3449 intDI_type_node));
3450 #if HOST_BITS_PER_WIDE_INT >= 64
3451 if (targetm.scalar_mode_supported_p (TImode))
3452 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL,
3453 get_identifier ("__int128_t"),
3454 intTI_type_node));
3455 #endif
3456 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3457 unsigned_intQI_type_node));
3458 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3459 unsigned_intHI_type_node));
3460 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3461 unsigned_intSI_type_node));
3462 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3463 unsigned_intDI_type_node));
3464 #if HOST_BITS_PER_WIDE_INT >= 64
3465 if (targetm.scalar_mode_supported_p (TImode))
3466 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL,
3467 get_identifier ("__uint128_t"),
3468 unsigned_intTI_type_node));
3469 #endif
3470
3471 /* Create the widest literal types. */
3472 widest_integer_literal_type_node
3473 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
3474 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3475 widest_integer_literal_type_node));
3476
3477 widest_unsigned_literal_type_node
3478 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
3479 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL, NULL_TREE,
3480 widest_unsigned_literal_type_node));
3481
3482 /* `unsigned long' is the standard type for sizeof.
3483 Note that stddef.h uses `unsigned long',
3484 and this must agree, even if long and int are the same size. */
3485 size_type_node =
3486 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
3487 signed_size_type_node = c_common_signed_type (size_type_node);
3488 set_sizetype (size_type_node);
3489
3490 pid_type_node =
3491 TREE_TYPE (identifier_global_value (get_identifier (PID_TYPE)));
3492
3493 build_common_tree_nodes_2 (flag_short_double);
3494
3495 record_builtin_type (RID_FLOAT, NULL, float_type_node);
3496 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
3497 record_builtin_type (RID_MAX, "long double", long_double_type_node);
3498
3499 /* Only supported decimal floating point extension if the target
3500 actually supports underlying modes. */
3501 if (targetm.scalar_mode_supported_p (SDmode)
3502 && targetm.scalar_mode_supported_p (DDmode)
3503 && targetm.scalar_mode_supported_p (TDmode))
3504 {
3505 record_builtin_type (RID_DFLOAT32, NULL, dfloat32_type_node);
3506 record_builtin_type (RID_DFLOAT64, NULL, dfloat64_type_node);
3507 record_builtin_type (RID_DFLOAT128, NULL, dfloat128_type_node);
3508 }
3509
3510 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL,
3511 get_identifier ("complex int"),
3512 complex_integer_type_node));
3513 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL,
3514 get_identifier ("complex float"),
3515 complex_float_type_node));
3516 lang_hooks.decls.pushdecl (build_decl (TYPE_DECL,
3517 get_identifier ("complex double"),
3518 complex_double_type_node));
3519 lang_hooks.decls.pushdecl
3520 (build_decl (TYPE_DECL, get_identifier ("complex long double"),
3521 complex_long_double_type_node));
3522
3523 if (c_dialect_cxx ())
3524 /* For C++, make fileptr_type_node a distinct void * type until
3525 FILE type is defined. */
3526 fileptr_type_node = build_variant_type_copy (ptr_type_node);
3527
3528 record_builtin_type (RID_VOID, NULL, void_type_node);
3529
3530 /* Set the TYPE_NAME for any variants that were built before
3531 record_builtin_type gave names to the built-in types. */
3532 {
3533 tree void_name = TYPE_NAME (void_type_node);
3534 TYPE_NAME (void_type_node) = NULL_TREE;
3535 TYPE_NAME (build_qualified_type (void_type_node, TYPE_QUAL_CONST))
3536 = void_name;
3537 TYPE_NAME (void_type_node) = void_name;
3538 }
3539
3540 /* This node must not be shared. */
3541 void_zero_node = make_node (INTEGER_CST);
3542 TREE_TYPE (void_zero_node) = void_type_node;
3543
3544 void_list_node = build_void_list_node ();
3545
3546 /* Make a type to be the domain of a few array types
3547 whose domains don't really matter.
3548 200 is small enough that it always fits in size_t
3549 and large enough that it can hold most function names for the
3550 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3551 array_domain_type = build_index_type (size_int (200));
3552
3553 /* Make a type for arrays of characters.
3554 With luck nothing will ever really depend on the length of this
3555 array type. */
3556 char_array_type_node
3557 = build_array_type (char_type_node, array_domain_type);
3558
3559 /* Likewise for arrays of ints. */
3560 int_array_type_node
3561 = build_array_type (integer_type_node, array_domain_type);
3562
3563 string_type_node = build_pointer_type (char_type_node);
3564 const_string_type_node
3565 = build_pointer_type (build_qualified_type
3566 (char_type_node, TYPE_QUAL_CONST));
3567
3568 /* This is special for C++ so functions can be overloaded. */
3569 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
3570 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
3571 wchar_type_size = TYPE_PRECISION (wchar_type_node);
3572 if (c_dialect_cxx ())
3573 {
3574 if (TYPE_UNSIGNED (wchar_type_node))
3575 wchar_type_node = make_unsigned_type (wchar_type_size);
3576 else
3577 wchar_type_node = make_signed_type (wchar_type_size);
3578 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
3579 }
3580 else
3581 {
3582 signed_wchar_type_node = c_common_signed_type (wchar_type_node);
3583 unsigned_wchar_type_node = c_common_unsigned_type (wchar_type_node);
3584 }
3585
3586 /* This is for wide string constants. */
3587 wchar_array_type_node
3588 = build_array_type (wchar_type_node, array_domain_type);
3589
3590 wint_type_node =
3591 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
3592
3593 intmax_type_node =
3594 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
3595 uintmax_type_node =
3596 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
3597
3598 default_function_type = build_function_type (integer_type_node, NULL_TREE);
3599 ptrdiff_type_node
3600 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
3601 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
3602
3603 lang_hooks.decls.pushdecl
3604 (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
3605 va_list_type_node));
3606
3607 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
3608 {
3609 va_list_arg_type_node = va_list_ref_type_node =
3610 build_pointer_type (TREE_TYPE (va_list_type_node));
3611 }
3612 else
3613 {
3614 va_list_arg_type_node = va_list_type_node;
3615 va_list_ref_type_node = build_reference_type (va_list_type_node);
3616 }
3617
3618 if (!flag_preprocess_only)
3619 c_define_builtins (va_list_ref_type_node, va_list_arg_type_node);
3620
3621 main_identifier_node = get_identifier ("main");
3622
3623 /* Create the built-in __null node. It is important that this is
3624 not shared. */
3625 null_node = make_node (INTEGER_CST);
3626 TREE_TYPE (null_node) = c_common_type_for_size (POINTER_SIZE, 0);
3627
3628 /* Since builtin_types isn't gc'ed, don't export these nodes. */
3629 memset (builtin_types, 0, sizeof (builtin_types));
3630 }
3631
3632 /* Look up the function in built_in_decls that corresponds to DECL
3633 and set ASMSPEC as its user assembler name. DECL must be a
3634 function decl that declares a builtin. */
3635
3636 void
3637 set_builtin_user_assembler_name (tree decl, const char *asmspec)
3638 {
3639 tree builtin;
3640 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
3641 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
3642 && asmspec != 0);
3643
3644 builtin = built_in_decls [DECL_FUNCTION_CODE (decl)];
3645 set_user_assembler_name (builtin, asmspec);
3646 if (DECL_FUNCTION_CODE (decl) == BUILT_IN_MEMCPY)
3647 init_block_move_fn (asmspec);
3648 else if (DECL_FUNCTION_CODE (decl) == BUILT_IN_MEMSET)
3649 init_block_clear_fn (asmspec);
3650 }
3651
3652 /* The number of named compound-literals generated thus far. */
3653 static GTY(()) int compound_literal_number;
3654
3655 /* Set DECL_NAME for DECL, a VAR_DECL for a compound-literal. */
3656
3657 void
3658 set_compound_literal_name (tree decl)
3659 {
3660 char *name;
3661 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal",
3662 compound_literal_number);
3663 compound_literal_number++;
3664 DECL_NAME (decl) = get_identifier (name);
3665 }
3666
3667 tree
3668 build_va_arg (tree expr, tree type)
3669 {
3670 return build1 (VA_ARG_EXPR, type, expr);
3671 }
3672
3673
3674 /* Linked list of disabled built-in functions. */
3675
3676 typedef struct disabled_builtin
3677 {
3678 const char *name;
3679 struct disabled_builtin *next;
3680 } disabled_builtin;
3681 static disabled_builtin *disabled_builtins = NULL;
3682
3683 static bool builtin_function_disabled_p (const char *);
3684
3685 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
3686 begins with "__builtin_", give an error. */
3687
3688 void
3689 disable_builtin_function (const char *name)
3690 {
3691 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
3692 error ("cannot disable built-in function %qs", name);
3693 else
3694 {
3695 disabled_builtin *new_disabled_builtin = XNEW (disabled_builtin);
3696 new_disabled_builtin->name = name;
3697 new_disabled_builtin->next = disabled_builtins;
3698 disabled_builtins = new_disabled_builtin;
3699 }
3700 }
3701
3702
3703 /* Return true if the built-in function NAME has been disabled, false
3704 otherwise. */
3705
3706 static bool
3707 builtin_function_disabled_p (const char *name)
3708 {
3709 disabled_builtin *p;
3710 for (p = disabled_builtins; p != NULL; p = p->next)
3711 {
3712 if (strcmp (name, p->name) == 0)
3713 return true;
3714 }
3715 return false;
3716 }
3717
3718
3719 /* Worker for DEF_BUILTIN.
3720 Possibly define a builtin function with one or two names.
3721 Does not declare a non-__builtin_ function if flag_no_builtin, or if
3722 nonansi_p and flag_no_nonansi_builtin. */
3723
3724 static void
3725 def_builtin_1 (enum built_in_function fncode,
3726 const char *name,
3727 enum built_in_class fnclass,
3728 tree fntype, tree libtype,
3729 bool both_p, bool fallback_p, bool nonansi_p,
3730 tree fnattrs, bool implicit_p)
3731 {
3732 tree decl;
3733 const char *libname;
3734
3735 if (fntype == error_mark_node)
3736 return;
3737
3738 gcc_assert ((!both_p && !fallback_p)
3739 || !strncmp (name, "__builtin_",
3740 strlen ("__builtin_")));
3741
3742 libname = name + strlen ("__builtin_");
3743 decl = add_builtin_function (name, fntype, fncode, fnclass,
3744 (fallback_p ? libname : NULL),
3745 fnattrs);
3746 if (both_p
3747 && !flag_no_builtin && !builtin_function_disabled_p (libname)
3748 && !(nonansi_p && flag_no_nonansi_builtin))
3749 add_builtin_function (libname, libtype, fncode, fnclass,
3750 NULL, fnattrs);
3751
3752 built_in_decls[(int) fncode] = decl;
3753 if (implicit_p)
3754 implicit_built_in_decls[(int) fncode] = decl;
3755 }
3756 \f
3757 /* Nonzero if the type T promotes to int. This is (nearly) the
3758 integral promotions defined in ISO C99 6.3.1.1/2. */
3759
3760 bool
3761 c_promoting_integer_type_p (tree t)
3762 {
3763 switch (TREE_CODE (t))
3764 {
3765 case INTEGER_TYPE:
3766 return (TYPE_MAIN_VARIANT (t) == char_type_node
3767 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
3768 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
3769 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
3770 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
3771 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
3772
3773 case ENUMERAL_TYPE:
3774 /* ??? Technically all enumerations not larger than an int
3775 promote to an int. But this is used along code paths
3776 that only want to notice a size change. */
3777 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
3778
3779 case BOOLEAN_TYPE:
3780 return 1;
3781
3782 default:
3783 return 0;
3784 }
3785 }
3786
3787 /* Return 1 if PARMS specifies a fixed number of parameters
3788 and none of their types is affected by default promotions. */
3789
3790 int
3791 self_promoting_args_p (tree parms)
3792 {
3793 tree t;
3794 for (t = parms; t; t = TREE_CHAIN (t))
3795 {
3796 tree type = TREE_VALUE (t);
3797
3798 if (type == error_mark_node)
3799 continue;
3800
3801 if (TREE_CHAIN (t) == 0 && type != void_type_node)
3802 return 0;
3803
3804 if (type == 0)
3805 return 0;
3806
3807 if (TYPE_MAIN_VARIANT (type) == float_type_node)
3808 return 0;
3809
3810 if (c_promoting_integer_type_p (type))
3811 return 0;
3812 }
3813 return 1;
3814 }
3815
3816 /* Recursively examines the array elements of TYPE, until a non-array
3817 element type is found. */
3818
3819 tree
3820 strip_array_types (tree type)
3821 {
3822 while (TREE_CODE (type) == ARRAY_TYPE)
3823 type = TREE_TYPE (type);
3824
3825 return type;
3826 }
3827
3828 /* Recursively remove any '*' or '&' operator from TYPE. */
3829 tree
3830 strip_pointer_operator (tree t)
3831 {
3832 while (POINTER_TYPE_P (t))
3833 t = TREE_TYPE (t);
3834 return t;
3835 }
3836
3837 /* Used to compare case labels. K1 and K2 are actually tree nodes
3838 representing case labels, or NULL_TREE for a `default' label.
3839 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
3840 K2, and 0 if K1 and K2 are equal. */
3841
3842 int
3843 case_compare (splay_tree_key k1, splay_tree_key k2)
3844 {
3845 /* Consider a NULL key (such as arises with a `default' label) to be
3846 smaller than anything else. */
3847 if (!k1)
3848 return k2 ? -1 : 0;
3849 else if (!k2)
3850 return k1 ? 1 : 0;
3851
3852 return tree_int_cst_compare ((tree) k1, (tree) k2);
3853 }
3854
3855 /* Process a case label for the range LOW_VALUE ... HIGH_VALUE. If
3856 LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
3857 actually a `default' label. If only HIGH_VALUE is NULL_TREE, then
3858 case label was declared using the usual C/C++ syntax, rather than
3859 the GNU case range extension. CASES is a tree containing all the
3860 case ranges processed so far; COND is the condition for the
3861 switch-statement itself. Returns the CASE_LABEL_EXPR created, or
3862 ERROR_MARK_NODE if no CASE_LABEL_EXPR is created. */
3863
3864 tree
3865 c_add_case_label (splay_tree cases, tree cond, tree orig_type,
3866 tree low_value, tree high_value)
3867 {
3868 tree type;
3869 tree label;
3870 tree case_label;
3871 splay_tree_node node;
3872
3873 /* Create the LABEL_DECL itself. */
3874 label = create_artificial_label ();
3875
3876 /* If there was an error processing the switch condition, bail now
3877 before we get more confused. */
3878 if (!cond || cond == error_mark_node)
3879 goto error_out;
3880
3881 if ((low_value && TREE_TYPE (low_value)
3882 && POINTER_TYPE_P (TREE_TYPE (low_value)))
3883 || (high_value && TREE_TYPE (high_value)
3884 && POINTER_TYPE_P (TREE_TYPE (high_value))))
3885 {
3886 error ("pointers are not permitted as case values");
3887 goto error_out;
3888 }
3889
3890 /* Case ranges are a GNU extension. */
3891 if (high_value && pedantic)
3892 pedwarn ("range expressions in switch statements are non-standard");
3893
3894 type = TREE_TYPE (cond);
3895 if (low_value)
3896 {
3897 low_value = check_case_value (low_value);
3898 low_value = convert_and_check (type, low_value);
3899 if (low_value == error_mark_node)
3900 goto error_out;
3901 }
3902 if (high_value)
3903 {
3904 high_value = check_case_value (high_value);
3905 high_value = convert_and_check (type, high_value);
3906 if (high_value == error_mark_node)
3907 goto error_out;
3908 }
3909
3910 if (low_value && high_value)
3911 {
3912 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
3913 really a case range, even though it was written that way.
3914 Remove the HIGH_VALUE to simplify later processing. */
3915 if (tree_int_cst_equal (low_value, high_value))
3916 high_value = NULL_TREE;
3917 else if (!tree_int_cst_lt (low_value, high_value))
3918 warning (0, "empty range specified");
3919 }
3920
3921 /* See if the case is in range of the type of the original testing
3922 expression. If both low_value and high_value are out of range,
3923 don't insert the case label and return NULL_TREE. */
3924 if (low_value
3925 && !check_case_bounds (type, orig_type,
3926 &low_value, high_value ? &high_value : NULL))
3927 return NULL_TREE;
3928
3929 /* Look up the LOW_VALUE in the table of case labels we already
3930 have. */
3931 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
3932 /* If there was not an exact match, check for overlapping ranges.
3933 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
3934 that's a `default' label and the only overlap is an exact match. */
3935 if (!node && (low_value || high_value))
3936 {
3937 splay_tree_node low_bound;
3938 splay_tree_node high_bound;
3939
3940 /* Even though there wasn't an exact match, there might be an
3941 overlap between this case range and another case range.
3942 Since we've (inductively) not allowed any overlapping case
3943 ranges, we simply need to find the greatest low case label
3944 that is smaller that LOW_VALUE, and the smallest low case
3945 label that is greater than LOW_VALUE. If there is an overlap
3946 it will occur in one of these two ranges. */
3947 low_bound = splay_tree_predecessor (cases,
3948 (splay_tree_key) low_value);
3949 high_bound = splay_tree_successor (cases,
3950 (splay_tree_key) low_value);
3951
3952 /* Check to see if the LOW_BOUND overlaps. It is smaller than
3953 the LOW_VALUE, so there is no need to check unless the
3954 LOW_BOUND is in fact itself a case range. */
3955 if (low_bound
3956 && CASE_HIGH ((tree) low_bound->value)
3957 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
3958 low_value) >= 0)
3959 node = low_bound;
3960 /* Check to see if the HIGH_BOUND overlaps. The low end of that
3961 range is bigger than the low end of the current range, so we
3962 are only interested if the current range is a real range, and
3963 not an ordinary case label. */
3964 else if (high_bound
3965 && high_value
3966 && (tree_int_cst_compare ((tree) high_bound->key,
3967 high_value)
3968 <= 0))
3969 node = high_bound;
3970 }
3971 /* If there was an overlap, issue an error. */
3972 if (node)
3973 {
3974 tree duplicate = CASE_LABEL ((tree) node->value);
3975
3976 if (high_value)
3977 {
3978 error ("duplicate (or overlapping) case value");
3979 error ("%Jthis is the first entry overlapping that value", duplicate);
3980 }
3981 else if (low_value)
3982 {
3983 error ("duplicate case value") ;
3984 error ("%Jpreviously used here", duplicate);
3985 }
3986 else
3987 {
3988 error ("multiple default labels in one switch");
3989 error ("%Jthis is the first default label", duplicate);
3990 }
3991 goto error_out;
3992 }
3993
3994 /* Add a CASE_LABEL to the statement-tree. */
3995 case_label = add_stmt (build_case_label (low_value, high_value, label));
3996 /* Register this case label in the splay tree. */
3997 splay_tree_insert (cases,
3998 (splay_tree_key) low_value,
3999 (splay_tree_value) case_label);
4000
4001 return case_label;
4002
4003 error_out:
4004 /* Add a label so that the back-end doesn't think that the beginning of
4005 the switch is unreachable. Note that we do not add a case label, as
4006 that just leads to duplicates and thence to failure later on. */
4007 if (!cases->root)
4008 {
4009 tree t = create_artificial_label ();
4010 add_stmt (build_stmt (LABEL_EXPR, t));
4011 }
4012 return error_mark_node;
4013 }
4014
4015 /* Subroutines of c_do_switch_warnings, called via splay_tree_foreach.
4016 Used to verify that case values match up with enumerator values. */
4017
4018 static void
4019 match_case_to_enum_1 (tree key, tree type, tree label)
4020 {
4021 char buf[2 + 2*HOST_BITS_PER_WIDE_INT/4 + 1];
4022
4023 /* ??? Not working too hard to print the double-word value.
4024 Should perhaps be done with %lwd in the diagnostic routines? */
4025 if (TREE_INT_CST_HIGH (key) == 0)
4026 snprintf (buf, sizeof (buf), HOST_WIDE_INT_PRINT_UNSIGNED,
4027 TREE_INT_CST_LOW (key));
4028 else if (!TYPE_UNSIGNED (type)
4029 && TREE_INT_CST_HIGH (key) == -1
4030 && TREE_INT_CST_LOW (key) != 0)
4031 snprintf (buf, sizeof (buf), "-" HOST_WIDE_INT_PRINT_UNSIGNED,
4032 -TREE_INT_CST_LOW (key));
4033 else
4034 snprintf (buf, sizeof (buf), HOST_WIDE_INT_PRINT_DOUBLE_HEX,
4035 TREE_INT_CST_HIGH (key), TREE_INT_CST_LOW (key));
4036
4037 if (TYPE_NAME (type) == 0)
4038 warning (0, "%Jcase value %qs not in enumerated type",
4039 CASE_LABEL (label), buf);
4040 else
4041 warning (0, "%Jcase value %qs not in enumerated type %qT",
4042 CASE_LABEL (label), buf, type);
4043 }
4044
4045 /* Subroutine of c_do_switch_warnings, called via splay_tree_foreach.
4046 Used to verify that case values match up with enumerator values. */
4047
4048 static int
4049 match_case_to_enum (splay_tree_node node, void *data)
4050 {
4051 tree label = (tree) node->value;
4052 tree type = (tree) data;
4053
4054 /* Skip default case. */
4055 if (!CASE_LOW (label))
4056 return 0;
4057
4058 /* If CASE_LOW_SEEN is not set, that means CASE_LOW did not appear
4059 when we did our enum->case scan. Reset our scratch bit after. */
4060 if (!CASE_LOW_SEEN (label))
4061 match_case_to_enum_1 (CASE_LOW (label), type, label);
4062 else
4063 CASE_LOW_SEEN (label) = 0;
4064
4065 /* If CASE_HIGH is non-null, we have a range. If CASE_HIGH_SEEN is
4066 not set, that means that CASE_HIGH did not appear when we did our
4067 enum->case scan. Reset our scratch bit after. */
4068 if (CASE_HIGH (label))
4069 {
4070 if (!CASE_HIGH_SEEN (label))
4071 match_case_to_enum_1 (CASE_HIGH (label), type, label);
4072 else
4073 CASE_HIGH_SEEN (label) = 0;
4074 }
4075
4076 return 0;
4077 }
4078
4079 /* Handle -Wswitch*. Called from the front end after parsing the
4080 switch construct. */
4081 /* ??? Should probably be somewhere generic, since other languages
4082 besides C and C++ would want this. At the moment, however, C/C++
4083 are the only tree-ssa languages that support enumerations at all,
4084 so the point is moot. */
4085
4086 void
4087 c_do_switch_warnings (splay_tree cases, location_t switch_location,
4088 tree type, tree cond)
4089 {
4090 splay_tree_node default_node;
4091 splay_tree_node node;
4092 tree chain;
4093
4094 if (!warn_switch && !warn_switch_enum && !warn_switch_default)
4095 return;
4096
4097 default_node = splay_tree_lookup (cases, (splay_tree_key) NULL);
4098 if (!default_node)
4099 warning (OPT_Wswitch_default, "%Hswitch missing default case",
4100 &switch_location);
4101
4102 /* From here on, we only care about about enumerated types. */
4103 if (!type || TREE_CODE (type) != ENUMERAL_TYPE)
4104 return;
4105
4106 /* If the switch expression was an enumerated type, check that
4107 exactly all enumeration literals are covered by the cases.
4108 The check is made when -Wswitch was specified and there is no
4109 default case, or when -Wswitch-enum was specified. */
4110
4111 if (!warn_switch_enum
4112 && !(warn_switch && !default_node))
4113 return;
4114
4115 /* Clearing COND if it is not an integer constant simplifies
4116 the tests inside the loop below. */
4117 if (TREE_CODE (cond) != INTEGER_CST)
4118 cond = NULL_TREE;
4119
4120 /* The time complexity here is O(N*lg(N)) worst case, but for the
4121 common case of monotonically increasing enumerators, it is
4122 O(N), since the nature of the splay tree will keep the next
4123 element adjacent to the root at all times. */
4124
4125 for (chain = TYPE_VALUES (type); chain; chain = TREE_CHAIN (chain))
4126 {
4127 tree value = TREE_VALUE (chain);
4128 node = splay_tree_lookup (cases, (splay_tree_key) value);
4129 if (node)
4130 {
4131 /* Mark the CASE_LOW part of the case entry as seen. */
4132 tree label = (tree) node->value;
4133 CASE_LOW_SEEN (label) = 1;
4134 continue;
4135 }
4136
4137 /* Even though there wasn't an exact match, there might be a
4138 case range which includes the enumator's value. */
4139 node = splay_tree_predecessor (cases, (splay_tree_key) value);
4140 if (node && CASE_HIGH ((tree) node->value))
4141 {
4142 tree label = (tree) node->value;
4143 int cmp = tree_int_cst_compare (CASE_HIGH (label), value);
4144 if (cmp >= 0)
4145 {
4146 /* If we match the upper bound exactly, mark the CASE_HIGH
4147 part of the case entry as seen. */
4148 if (cmp == 0)
4149 CASE_HIGH_SEEN (label) = 1;
4150 continue;
4151 }
4152 }
4153
4154 /* We've now determined that this enumerated literal isn't
4155 handled by the case labels of the switch statement. */
4156
4157 /* If the switch expression is a constant, we only really care
4158 about whether that constant is handled by the switch. */
4159 if (cond && tree_int_cst_compare (cond, value))
4160 continue;
4161
4162 warning (0, "%Henumeration value %qE not handled in switch",
4163 &switch_location, TREE_PURPOSE (chain));
4164 }
4165
4166 /* Warn if there are case expressions that don't correspond to
4167 enumerators. This can occur since C and C++ don't enforce
4168 type-checking of assignments to enumeration variables.
4169
4170 The time complexity here is now always O(N) worst case, since
4171 we should have marked both the lower bound and upper bound of
4172 every disjoint case label, with CASE_LOW_SEEN and CASE_HIGH_SEEN
4173 above. This scan also resets those fields. */
4174 splay_tree_foreach (cases, match_case_to_enum, type);
4175 }
4176
4177 /* Finish an expression taking the address of LABEL (an
4178 IDENTIFIER_NODE). Returns an expression for the address. */
4179
4180 tree
4181 finish_label_address_expr (tree label)
4182 {
4183 tree result;
4184
4185 if (pedantic)
4186 pedwarn ("taking the address of a label is non-standard");
4187
4188 if (label == error_mark_node)
4189 return error_mark_node;
4190
4191 label = lookup_label (label);
4192 if (label == NULL_TREE)
4193 result = null_pointer_node;
4194 else
4195 {
4196 TREE_USED (label) = 1;
4197 result = build1 (ADDR_EXPR, ptr_type_node, label);
4198 /* The current function in not necessarily uninlinable.
4199 Computed gotos are incompatible with inlining, but the value
4200 here could be used only in a diagnostic, for example. */
4201 }
4202
4203 return result;
4204 }
4205
4206 /* Hook used by expand_expr to expand language-specific tree codes. */
4207 /* The only things that should go here are bits needed to expand
4208 constant initializers. Everything else should be handled by the
4209 gimplification routines. */
4210
4211 rtx
4212 c_expand_expr (tree exp, rtx target, enum machine_mode tmode,
4213 int modifier /* Actually enum_modifier. */,
4214 rtx *alt_rtl)
4215 {
4216 switch (TREE_CODE (exp))
4217 {
4218 case COMPOUND_LITERAL_EXPR:
4219 {
4220 /* Initialize the anonymous variable declared in the compound
4221 literal, then return the variable. */
4222 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
4223 emit_local_var (decl);
4224 return expand_expr_real (decl, target, tmode, modifier, alt_rtl);
4225 }
4226
4227 default:
4228 gcc_unreachable ();
4229 }
4230 }
4231
4232
4233 /* Generate the RTL for the body of FNDECL. */
4234
4235 void
4236 c_expand_body (tree fndecl)
4237 {
4238
4239 if (!DECL_INITIAL (fndecl)
4240 || DECL_INITIAL (fndecl) == error_mark_node)
4241 return;
4242
4243 tree_rest_of_compilation (fndecl);
4244
4245 if (DECL_STATIC_CONSTRUCTOR (fndecl)
4246 && targetm.have_ctors_dtors)
4247 targetm.asm_out.constructor (XEXP (DECL_RTL (fndecl), 0),
4248 decl_init_priority_lookup (fndecl));
4249 if (DECL_STATIC_DESTRUCTOR (fndecl)
4250 && targetm.have_ctors_dtors)
4251 targetm.asm_out.destructor (XEXP (DECL_RTL (fndecl), 0),
4252 decl_fini_priority_lookup (fndecl));
4253 }
4254
4255 /* Hook used by staticp to handle language-specific tree codes. */
4256
4257 tree
4258 c_staticp (tree exp)
4259 {
4260 return (TREE_CODE (exp) == COMPOUND_LITERAL_EXPR
4261 && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp))
4262 ? exp : NULL);
4263 }
4264 \f
4265
4266 /* Given a boolean expression ARG, return a tree representing an increment
4267 or decrement (as indicated by CODE) of ARG. The front end must check for
4268 invalid cases (e.g., decrement in C++). */
4269 tree
4270 boolean_increment (enum tree_code code, tree arg)
4271 {
4272 tree val;
4273 tree true_res = boolean_true_node;
4274
4275 arg = stabilize_reference (arg);
4276 switch (code)
4277 {
4278 case PREINCREMENT_EXPR:
4279 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4280 break;
4281 case POSTINCREMENT_EXPR:
4282 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4283 arg = save_expr (arg);
4284 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4285 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4286 break;
4287 case PREDECREMENT_EXPR:
4288 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
4289 invert_truthvalue (arg));
4290 break;
4291 case POSTDECREMENT_EXPR:
4292 val = build2 (MODIFY_EXPR, TREE_TYPE (arg), arg,
4293 invert_truthvalue (arg));
4294 arg = save_expr (arg);
4295 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4296 val = build2 (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4297 break;
4298 default:
4299 gcc_unreachable ();
4300 }
4301 TREE_SIDE_EFFECTS (val) = 1;
4302 return val;
4303 }
4304 \f
4305 /* Built-in macros for stddef.h, that require macros defined in this
4306 file. */
4307 void
4308 c_stddef_cpp_builtins(void)
4309 {
4310 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
4311 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
4312 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
4313 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
4314 builtin_define_with_value ("__INTMAX_TYPE__", INTMAX_TYPE, 0);
4315 builtin_define_with_value ("__UINTMAX_TYPE__", UINTMAX_TYPE, 0);
4316 }
4317
4318 static void
4319 c_init_attributes (void)
4320 {
4321 /* Fill in the built_in_attributes array. */
4322 #define DEF_ATTR_NULL_TREE(ENUM) \
4323 built_in_attributes[(int) ENUM] = NULL_TREE;
4324 #define DEF_ATTR_INT(ENUM, VALUE) \
4325 built_in_attributes[(int) ENUM] = build_int_cst (NULL_TREE, VALUE);
4326 #define DEF_ATTR_IDENT(ENUM, STRING) \
4327 built_in_attributes[(int) ENUM] = get_identifier (STRING);
4328 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
4329 built_in_attributes[(int) ENUM] \
4330 = tree_cons (built_in_attributes[(int) PURPOSE], \
4331 built_in_attributes[(int) VALUE], \
4332 built_in_attributes[(int) CHAIN]);
4333 #include "builtin-attrs.def"
4334 #undef DEF_ATTR_NULL_TREE
4335 #undef DEF_ATTR_INT
4336 #undef DEF_ATTR_IDENT
4337 #undef DEF_ATTR_TREE_LIST
4338 }
4339
4340 /* Attribute handlers common to C front ends. */
4341
4342 /* Handle a "packed" attribute; arguments as in
4343 struct attribute_spec.handler. */
4344
4345 static tree
4346 handle_packed_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4347 int flags, bool *no_add_attrs)
4348 {
4349 if (TYPE_P (*node))
4350 {
4351 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4352 *node = build_variant_type_copy (*node);
4353 TYPE_PACKED (*node) = 1;
4354 }
4355 else if (TREE_CODE (*node) == FIELD_DECL)
4356 {
4357 if (TYPE_ALIGN (TREE_TYPE (*node)) <= BITS_PER_UNIT)
4358 warning (OPT_Wattributes,
4359 "%qE attribute ignored for field of type %qT",
4360 name, TREE_TYPE (*node));
4361 else
4362 DECL_PACKED (*node) = 1;
4363 }
4364 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
4365 used for DECL_REGISTER. It wouldn't mean anything anyway.
4366 We can't set DECL_PACKED on the type of a TYPE_DECL, because
4367 that changes what the typedef is typing. */
4368 else
4369 {
4370 warning (OPT_Wattributes, "%qE attribute ignored", name);
4371 *no_add_attrs = true;
4372 }
4373
4374 return NULL_TREE;
4375 }
4376
4377 /* Handle a "nocommon" attribute; arguments as in
4378 struct attribute_spec.handler. */
4379
4380 static tree
4381 handle_nocommon_attribute (tree *node, tree name,
4382 tree ARG_UNUSED (args),
4383 int ARG_UNUSED (flags), bool *no_add_attrs)
4384 {
4385 if (TREE_CODE (*node) == VAR_DECL)
4386 DECL_COMMON (*node) = 0;
4387 else
4388 {
4389 warning (OPT_Wattributes, "%qE attribute ignored", name);
4390 *no_add_attrs = true;
4391 }
4392
4393 return NULL_TREE;
4394 }
4395
4396 /* Handle a "common" attribute; arguments as in
4397 struct attribute_spec.handler. */
4398
4399 static tree
4400 handle_common_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4401 int ARG_UNUSED (flags), bool *no_add_attrs)
4402 {
4403 if (TREE_CODE (*node) == VAR_DECL)
4404 DECL_COMMON (*node) = 1;
4405 else
4406 {
4407 warning (OPT_Wattributes, "%qE attribute ignored", name);
4408 *no_add_attrs = true;
4409 }
4410
4411 return NULL_TREE;
4412 }
4413
4414 /* Handle a "noreturn" attribute; arguments as in
4415 struct attribute_spec.handler. */
4416
4417 static tree
4418 handle_noreturn_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4419 int ARG_UNUSED (flags), bool *no_add_attrs)
4420 {
4421 tree type = TREE_TYPE (*node);
4422
4423 /* See FIXME comment in c_common_attribute_table. */
4424 if (TREE_CODE (*node) == FUNCTION_DECL)
4425 TREE_THIS_VOLATILE (*node) = 1;
4426 else if (TREE_CODE (type) == POINTER_TYPE
4427 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4428 TREE_TYPE (*node)
4429 = build_pointer_type
4430 (build_type_variant (TREE_TYPE (type),
4431 TYPE_READONLY (TREE_TYPE (type)), 1));
4432 else
4433 {
4434 warning (OPT_Wattributes, "%qE attribute ignored", name);
4435 *no_add_attrs = true;
4436 }
4437
4438 return NULL_TREE;
4439 }
4440
4441 /* Handle a "hot" and attribute; arguments as in
4442 struct attribute_spec.handler. */
4443
4444 static tree
4445 handle_hot_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4446 int ARG_UNUSED (flags), bool *no_add_attrs)
4447 {
4448 if (TREE_CODE (*node) == FUNCTION_DECL)
4449 {
4450 if (lookup_attribute ("cold", DECL_ATTRIBUTES (*node)) != NULL)
4451 {
4452 warning (OPT_Wattributes, "%qE attribute conflicts with attribute %s",
4453 name, "cold");
4454 *no_add_attrs = true;
4455 }
4456 /* Do nothing else, just set the attribute. We'll get at
4457 it later with lookup_attribute. */
4458 }
4459 else
4460 {
4461 warning (OPT_Wattributes, "%qE attribute ignored", name);
4462 *no_add_attrs = true;
4463 }
4464
4465 return NULL_TREE;
4466 }
4467 /* Handle a "cold" and attribute; arguments as in
4468 struct attribute_spec.handler. */
4469
4470 static tree
4471 handle_cold_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4472 int ARG_UNUSED (flags), bool *no_add_attrs)
4473 {
4474 if (TREE_CODE (*node) == FUNCTION_DECL)
4475 {
4476 if (lookup_attribute ("hot", DECL_ATTRIBUTES (*node)) != NULL)
4477 {
4478 warning (OPT_Wattributes, "%qE attribute conflicts with attribute %s",
4479 name, "hot");
4480 *no_add_attrs = true;
4481 }
4482 /* Do nothing else, just set the attribute. We'll get at
4483 it later with lookup_attribute. */
4484 }
4485 else
4486 {
4487 warning (OPT_Wattributes, "%qE attribute ignored", name);
4488 *no_add_attrs = true;
4489 }
4490
4491 return NULL_TREE;
4492 }
4493
4494 /* Handle a "noinline" attribute; arguments as in
4495 struct attribute_spec.handler. */
4496
4497 static tree
4498 handle_noinline_attribute (tree *node, tree name,
4499 tree ARG_UNUSED (args),
4500 int ARG_UNUSED (flags), bool *no_add_attrs)
4501 {
4502 if (TREE_CODE (*node) == FUNCTION_DECL)
4503 DECL_UNINLINABLE (*node) = 1;
4504 else
4505 {
4506 warning (OPT_Wattributes, "%qE attribute ignored", name);
4507 *no_add_attrs = true;
4508 }
4509
4510 return NULL_TREE;
4511 }
4512
4513 /* Handle a "always_inline" attribute; arguments as in
4514 struct attribute_spec.handler. */
4515
4516 static tree
4517 handle_always_inline_attribute (tree *node, tree name,
4518 tree ARG_UNUSED (args),
4519 int ARG_UNUSED (flags),
4520 bool *no_add_attrs)
4521 {
4522 if (TREE_CODE (*node) == FUNCTION_DECL)
4523 {
4524 /* Do nothing else, just set the attribute. We'll get at
4525 it later with lookup_attribute. */
4526 }
4527 else
4528 {
4529 warning (OPT_Wattributes, "%qE attribute ignored", name);
4530 *no_add_attrs = true;
4531 }
4532
4533 return NULL_TREE;
4534 }
4535
4536 /* Handle a "gnu_inline" attribute; arguments as in
4537 struct attribute_spec.handler. */
4538
4539 static tree
4540 handle_gnu_inline_attribute (tree *node, tree name,
4541 tree ARG_UNUSED (args),
4542 int ARG_UNUSED (flags),
4543 bool *no_add_attrs)
4544 {
4545 if (TREE_CODE (*node) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (*node))
4546 {
4547 /* Do nothing else, just set the attribute. We'll get at
4548 it later with lookup_attribute. */
4549 }
4550 else
4551 {
4552 warning (OPT_Wattributes, "%qE attribute ignored", name);
4553 *no_add_attrs = true;
4554 }
4555
4556 return NULL_TREE;
4557 }
4558
4559 /* Handle a "flatten" attribute; arguments as in
4560 struct attribute_spec.handler. */
4561
4562 static tree
4563 handle_flatten_attribute (tree *node, tree name,
4564 tree args ATTRIBUTE_UNUSED,
4565 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4566 {
4567 if (TREE_CODE (*node) == FUNCTION_DECL)
4568 /* Do nothing else, just set the attribute. We'll get at
4569 it later with lookup_attribute. */
4570 ;
4571 else
4572 {
4573 warning (OPT_Wattributes, "%qE attribute ignored", name);
4574 *no_add_attrs = true;
4575 }
4576
4577 return NULL_TREE;
4578 }
4579
4580
4581 /* Handle a "used" attribute; arguments as in
4582 struct attribute_spec.handler. */
4583
4584 static tree
4585 handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args),
4586 int ARG_UNUSED (flags), bool *no_add_attrs)
4587 {
4588 tree node = *pnode;
4589
4590 if (TREE_CODE (node) == FUNCTION_DECL
4591 || (TREE_CODE (node) == VAR_DECL && TREE_STATIC (node)))
4592 {
4593 TREE_USED (node) = 1;
4594 DECL_PRESERVE_P (node) = 1;
4595 }
4596 else
4597 {
4598 warning (OPT_Wattributes, "%qE attribute ignored", name);
4599 *no_add_attrs = true;
4600 }
4601
4602 return NULL_TREE;
4603 }
4604
4605 /* Handle a "unused" attribute; arguments as in
4606 struct attribute_spec.handler. */
4607
4608 static tree
4609 handle_unused_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4610 int flags, bool *no_add_attrs)
4611 {
4612 if (DECL_P (*node))
4613 {
4614 tree decl = *node;
4615
4616 if (TREE_CODE (decl) == PARM_DECL
4617 || TREE_CODE (decl) == VAR_DECL
4618 || TREE_CODE (decl) == FUNCTION_DECL
4619 || TREE_CODE (decl) == LABEL_DECL
4620 || TREE_CODE (decl) == TYPE_DECL)
4621 TREE_USED (decl) = 1;
4622 else
4623 {
4624 warning (OPT_Wattributes, "%qE attribute ignored", name);
4625 *no_add_attrs = true;
4626 }
4627 }
4628 else
4629 {
4630 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4631 *node = build_variant_type_copy (*node);
4632 TREE_USED (*node) = 1;
4633 }
4634
4635 return NULL_TREE;
4636 }
4637
4638 /* Handle a "externally_visible" attribute; arguments as in
4639 struct attribute_spec.handler. */
4640
4641 static tree
4642 handle_externally_visible_attribute (tree *pnode, tree name,
4643 tree ARG_UNUSED (args),
4644 int ARG_UNUSED (flags),
4645 bool *no_add_attrs)
4646 {
4647 tree node = *pnode;
4648
4649 if (TREE_CODE (node) == FUNCTION_DECL || TREE_CODE (node) == VAR_DECL)
4650 {
4651 if ((!TREE_STATIC (node) && TREE_CODE (node) != FUNCTION_DECL
4652 && !DECL_EXTERNAL (node)) || !TREE_PUBLIC (node))
4653 {
4654 warning (OPT_Wattributes,
4655 "%qE attribute have effect only on public objects", name);
4656 *no_add_attrs = true;
4657 }
4658 }
4659 else
4660 {
4661 warning (OPT_Wattributes, "%qE attribute ignored", name);
4662 *no_add_attrs = true;
4663 }
4664
4665 return NULL_TREE;
4666 }
4667
4668 /* Handle a "const" attribute; arguments as in
4669 struct attribute_spec.handler. */
4670
4671 static tree
4672 handle_const_attribute (tree *node, tree name, tree ARG_UNUSED (args),
4673 int ARG_UNUSED (flags), bool *no_add_attrs)
4674 {
4675 tree type = TREE_TYPE (*node);
4676
4677 /* See FIXME comment on noreturn in c_common_attribute_table. */
4678 if (TREE_CODE (*node) == FUNCTION_DECL)
4679 TREE_READONLY (*node) = 1;
4680 else if (TREE_CODE (type) == POINTER_TYPE
4681 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4682 TREE_TYPE (*node)
4683 = build_pointer_type
4684 (build_type_variant (TREE_TYPE (type), 1,
4685 TREE_THIS_VOLATILE (TREE_TYPE (type))));
4686 else
4687 {
4688 warning (OPT_Wattributes, "%qE attribute ignored", name);
4689 *no_add_attrs = true;
4690 }
4691
4692 return NULL_TREE;
4693 }
4694
4695 /* Handle a "transparent_union" attribute; arguments as in
4696 struct attribute_spec.handler. */
4697
4698 static tree
4699 handle_transparent_union_attribute (tree *node, tree name,
4700 tree ARG_UNUSED (args), int flags,
4701 bool *no_add_attrs)
4702 {
4703 tree type = NULL;
4704
4705 *no_add_attrs = true;
4706
4707 if (DECL_P (*node))
4708 {
4709 if (TREE_CODE (*node) != TYPE_DECL)
4710 goto ignored;
4711 node = &TREE_TYPE (*node);
4712 type = *node;
4713 }
4714 else if (TYPE_P (*node))
4715 type = *node;
4716 else
4717 goto ignored;
4718
4719 if (TREE_CODE (type) == UNION_TYPE)
4720 {
4721 /* When IN_PLACE is set, leave the check for FIELDS and MODE to
4722 the code in finish_struct. */
4723 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4724 {
4725 if (TYPE_FIELDS (type) == NULL_TREE
4726 || TYPE_MODE (type) != DECL_MODE (TYPE_FIELDS (type)))
4727 goto ignored;
4728
4729 /* A type variant isn't good enough, since we don't a cast
4730 to such a type removed as a no-op. */
4731 *node = type = build_duplicate_type (type);
4732 }
4733
4734 TYPE_TRANSPARENT_UNION (type) = 1;
4735 return NULL_TREE;
4736 }
4737
4738 ignored:
4739 warning (OPT_Wattributes, "%qE attribute ignored", name);
4740 return NULL_TREE;
4741 }
4742
4743 /* Subroutine of handle_{con,de}structor_attribute. Evaluate ARGS to
4744 get the requested priority for a constructor or destructor,
4745 possibly issuing diagnostics for invalid or reserved
4746 priorities. */
4747
4748 static priority_type
4749 get_priority (tree args, bool is_destructor)
4750 {
4751 HOST_WIDE_INT pri;
4752 tree arg;
4753
4754 if (!args)
4755 return DEFAULT_INIT_PRIORITY;
4756
4757 if (!SUPPORTS_INIT_PRIORITY)
4758 {
4759 if (is_destructor)
4760 error ("destructor priorities are not supported");
4761 else
4762 error ("constructor priorities are not supported");
4763 return DEFAULT_INIT_PRIORITY;
4764 }
4765
4766 arg = TREE_VALUE (args);
4767 if (!host_integerp (arg, /*pos=*/0)
4768 || !INTEGRAL_TYPE_P (TREE_TYPE (arg)))
4769 goto invalid;
4770
4771 pri = tree_low_cst (TREE_VALUE (args), /*pos=*/0);
4772 if (pri < 0 || pri > MAX_INIT_PRIORITY)
4773 goto invalid;
4774
4775 if (pri <= MAX_RESERVED_INIT_PRIORITY)
4776 {
4777 if (is_destructor)
4778 warning (0,
4779 "destructor priorities from 0 to %d are reserved "
4780 "for the implementation",
4781 MAX_RESERVED_INIT_PRIORITY);
4782 else
4783 warning (0,
4784 "constructor priorities from 0 to %d are reserved "
4785 "for the implementation",
4786 MAX_RESERVED_INIT_PRIORITY);
4787 }
4788 return pri;
4789
4790 invalid:
4791 if (is_destructor)
4792 error ("destructor priorities must be integers from 0 to %d inclusive",
4793 MAX_INIT_PRIORITY);
4794 else
4795 error ("constructor priorities must be integers from 0 to %d inclusive",
4796 MAX_INIT_PRIORITY);
4797 return DEFAULT_INIT_PRIORITY;
4798 }
4799
4800 /* Handle a "constructor" attribute; arguments as in
4801 struct attribute_spec.handler. */
4802
4803 static tree
4804 handle_constructor_attribute (tree *node, tree name, tree args,
4805 int ARG_UNUSED (flags),
4806 bool *no_add_attrs)
4807 {
4808 tree decl = *node;
4809 tree type = TREE_TYPE (decl);
4810
4811 if (TREE_CODE (decl) == FUNCTION_DECL
4812 && TREE_CODE (type) == FUNCTION_TYPE
4813 && decl_function_context (decl) == 0)
4814 {
4815 priority_type priority;
4816 DECL_STATIC_CONSTRUCTOR (decl) = 1;
4817 priority = get_priority (args, /*is_destructor=*/false);
4818 SET_DECL_INIT_PRIORITY (decl, priority);
4819 TREE_USED (decl) = 1;
4820 }
4821 else
4822 {
4823 warning (OPT_Wattributes, "%qE attribute ignored", name);
4824 *no_add_attrs = true;
4825 }
4826
4827 return NULL_TREE;
4828 }
4829
4830 /* Handle a "destructor" attribute; arguments as in
4831 struct attribute_spec.handler. */
4832
4833 static tree
4834 handle_destructor_attribute (tree *node, tree name, tree args,
4835 int ARG_UNUSED (flags),
4836 bool *no_add_attrs)
4837 {
4838 tree decl = *node;
4839 tree type = TREE_TYPE (decl);
4840
4841 if (TREE_CODE (decl) == FUNCTION_DECL
4842 && TREE_CODE (type) == FUNCTION_TYPE
4843 && decl_function_context (decl) == 0)
4844 {
4845 priority_type priority;
4846 DECL_STATIC_DESTRUCTOR (decl) = 1;
4847 priority = get_priority (args, /*is_destructor=*/true);
4848 SET_DECL_FINI_PRIORITY (decl, priority);
4849 TREE_USED (decl) = 1;
4850 }
4851 else
4852 {
4853 warning (OPT_Wattributes, "%qE attribute ignored", name);
4854 *no_add_attrs = true;
4855 }
4856
4857 return NULL_TREE;
4858 }
4859
4860 /* Handle a "mode" attribute; arguments as in
4861 struct attribute_spec.handler. */
4862
4863 static tree
4864 handle_mode_attribute (tree *node, tree name, tree args,
4865 int ARG_UNUSED (flags), bool *no_add_attrs)
4866 {
4867 tree type = *node;
4868
4869 *no_add_attrs = true;
4870
4871 if (TREE_CODE (TREE_VALUE (args)) != IDENTIFIER_NODE)
4872 warning (OPT_Wattributes, "%qE attribute ignored", name);
4873 else
4874 {
4875 int j;
4876 const char *p = IDENTIFIER_POINTER (TREE_VALUE (args));
4877 int len = strlen (p);
4878 enum machine_mode mode = VOIDmode;
4879 tree typefm;
4880 bool valid_mode;
4881
4882 if (len > 4 && p[0] == '_' && p[1] == '_'
4883 && p[len - 1] == '_' && p[len - 2] == '_')
4884 {
4885 char *newp = (char *) alloca (len - 1);
4886
4887 strcpy (newp, &p[2]);
4888 newp[len - 4] = '\0';
4889 p = newp;
4890 }
4891
4892 /* Change this type to have a type with the specified mode.
4893 First check for the special modes. */
4894 if (!strcmp (p, "byte"))
4895 mode = byte_mode;
4896 else if (!strcmp (p, "word"))
4897 mode = word_mode;
4898 else if (!strcmp (p, "pointer"))
4899 mode = ptr_mode;
4900 else
4901 for (j = 0; j < NUM_MACHINE_MODES; j++)
4902 if (!strcmp (p, GET_MODE_NAME (j)))
4903 {
4904 mode = (enum machine_mode) j;
4905 break;
4906 }
4907
4908 if (mode == VOIDmode)
4909 {
4910 error ("unknown machine mode %qs", p);
4911 return NULL_TREE;
4912 }
4913
4914 valid_mode = false;
4915 switch (GET_MODE_CLASS (mode))
4916 {
4917 case MODE_INT:
4918 case MODE_PARTIAL_INT:
4919 case MODE_FLOAT:
4920 case MODE_DECIMAL_FLOAT:
4921 valid_mode = targetm.scalar_mode_supported_p (mode);
4922 break;
4923
4924 case MODE_COMPLEX_INT:
4925 case MODE_COMPLEX_FLOAT:
4926 valid_mode = targetm.scalar_mode_supported_p (GET_MODE_INNER (mode));
4927 break;
4928
4929 case MODE_VECTOR_INT:
4930 case MODE_VECTOR_FLOAT:
4931 warning (OPT_Wattributes, "specifying vector types with "
4932 "__attribute__ ((mode)) is deprecated");
4933 warning (OPT_Wattributes,
4934 "use __attribute__ ((vector_size)) instead");
4935 valid_mode = vector_mode_valid_p (mode);
4936 break;
4937
4938 default:
4939 break;
4940 }
4941 if (!valid_mode)
4942 {
4943 error ("unable to emulate %qs", p);
4944 return NULL_TREE;
4945 }
4946
4947 if (POINTER_TYPE_P (type))
4948 {
4949 tree (*fn)(tree, enum machine_mode, bool);
4950
4951 if (!targetm.valid_pointer_mode (mode))
4952 {
4953 error ("invalid pointer mode %qs", p);
4954 return NULL_TREE;
4955 }
4956
4957 if (TREE_CODE (type) == POINTER_TYPE)
4958 fn = build_pointer_type_for_mode;
4959 else
4960 fn = build_reference_type_for_mode;
4961 typefm = fn (TREE_TYPE (type), mode, false);
4962 }
4963 else
4964 typefm = lang_hooks.types.type_for_mode (mode, TYPE_UNSIGNED (type));
4965
4966 if (typefm == NULL_TREE)
4967 {
4968 error ("no data type for mode %qs", p);
4969 return NULL_TREE;
4970 }
4971 else if (TREE_CODE (type) == ENUMERAL_TYPE)
4972 {
4973 /* For enumeral types, copy the precision from the integer
4974 type returned above. If not an INTEGER_TYPE, we can't use
4975 this mode for this type. */
4976 if (TREE_CODE (typefm) != INTEGER_TYPE)
4977 {
4978 error ("cannot use mode %qs for enumeral types", p);
4979 return NULL_TREE;
4980 }
4981
4982 if (flags & ATTR_FLAG_TYPE_IN_PLACE)
4983 {
4984 TYPE_PRECISION (type) = TYPE_PRECISION (typefm);
4985 typefm = type;
4986 }
4987 else
4988 {
4989 /* We cannot build a type variant, as there's code that assumes
4990 that TYPE_MAIN_VARIANT has the same mode. This includes the
4991 debug generators. Instead, create a subrange type. This
4992 results in all of the enumeral values being emitted only once
4993 in the original, and the subtype gets them by reference. */
4994 if (TYPE_UNSIGNED (type))
4995 typefm = make_unsigned_type (TYPE_PRECISION (typefm));
4996 else
4997 typefm = make_signed_type (TYPE_PRECISION (typefm));
4998 TREE_TYPE (typefm) = type;
4999 }
5000 }
5001 else if (VECTOR_MODE_P (mode)
5002 ? TREE_CODE (type) != TREE_CODE (TREE_TYPE (typefm))
5003 : TREE_CODE (type) != TREE_CODE (typefm))
5004 {
5005 error ("mode %qs applied to inappropriate type", p);
5006 return NULL_TREE;
5007 }
5008
5009 *node = typefm;
5010 }
5011
5012 return NULL_TREE;
5013 }
5014
5015 /* Handle a "section" attribute; arguments as in
5016 struct attribute_spec.handler. */
5017
5018 static tree
5019 handle_section_attribute (tree *node, tree ARG_UNUSED (name), tree args,
5020 int ARG_UNUSED (flags), bool *no_add_attrs)
5021 {
5022 tree decl = *node;
5023
5024 if (targetm.have_named_sections)
5025 {
5026 user_defined_section_attribute = true;
5027
5028 if ((TREE_CODE (decl) == FUNCTION_DECL
5029 || TREE_CODE (decl) == VAR_DECL)
5030 && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
5031 {
5032 if (TREE_CODE (decl) == VAR_DECL
5033 && current_function_decl != NULL_TREE
5034 && !TREE_STATIC (decl))
5035 {
5036 error ("%Jsection attribute cannot be specified for "
5037 "local variables", decl);
5038 *no_add_attrs = true;
5039 }
5040
5041 /* The decl may have already been given a section attribute
5042 from a previous declaration. Ensure they match. */
5043 else if (DECL_SECTION_NAME (decl) != NULL_TREE
5044 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
5045 TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
5046 {
5047 error ("section of %q+D conflicts with previous declaration",
5048 *node);
5049 *no_add_attrs = true;
5050 }
5051 else
5052 DECL_SECTION_NAME (decl) = TREE_VALUE (args);
5053 }
5054 else
5055 {
5056 error ("section attribute not allowed for %q+D", *node);
5057 *no_add_attrs = true;
5058 }
5059 }
5060 else
5061 {
5062 error ("%Jsection attributes are not supported for this target", *node);
5063 *no_add_attrs = true;
5064 }
5065
5066 return NULL_TREE;
5067 }
5068
5069 /* Handle a "aligned" attribute; arguments as in
5070 struct attribute_spec.handler. */
5071
5072 static tree
5073 handle_aligned_attribute (tree *node, tree ARG_UNUSED (name), tree args,
5074 int flags, bool *no_add_attrs)
5075 {
5076 tree decl = NULL_TREE;
5077 tree *type = NULL;
5078 int is_type = 0;
5079 tree align_expr = (args ? TREE_VALUE (args)
5080 : size_int (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
5081 int i;
5082
5083 if (DECL_P (*node))
5084 {
5085 decl = *node;
5086 type = &TREE_TYPE (decl);
5087 is_type = TREE_CODE (*node) == TYPE_DECL;
5088 }
5089 else if (TYPE_P (*node))
5090 type = node, is_type = 1;
5091
5092 if (TREE_CODE (align_expr) != INTEGER_CST)
5093 {
5094 error ("requested alignment is not a constant");
5095 *no_add_attrs = true;
5096 }
5097 else if ((i = tree_log2 (align_expr)) == -1)
5098 {
5099 error ("requested alignment is not a power of 2");
5100 *no_add_attrs = true;
5101 }
5102 else if (i > HOST_BITS_PER_INT - 2)
5103 {
5104 error ("requested alignment is too large");
5105 *no_add_attrs = true;
5106 }
5107 else if (is_type)
5108 {
5109 /* If we have a TYPE_DECL, then copy the type, so that we
5110 don't accidentally modify a builtin type. See pushdecl. */
5111 if (decl && TREE_TYPE (decl) != error_mark_node
5112 && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
5113 {
5114 tree tt = TREE_TYPE (decl);
5115 *type = build_variant_type_copy (*type);
5116 DECL_ORIGINAL_TYPE (decl) = tt;
5117 TYPE_NAME (*type) = decl;
5118 TREE_USED (*type) = TREE_USED (decl);
5119 TREE_TYPE (decl) = *type;
5120 }
5121 else if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5122 *type = build_variant_type_copy (*type);
5123
5124 TYPE_ALIGN (*type) = (1 << i) * BITS_PER_UNIT;
5125 TYPE_USER_ALIGN (*type) = 1;
5126 }
5127 else if (TREE_CODE (decl) != VAR_DECL
5128 && TREE_CODE (decl) != FIELD_DECL)
5129 {
5130 error ("alignment may not be specified for %q+D", decl);
5131 *no_add_attrs = true;
5132 }
5133 else
5134 {
5135 DECL_ALIGN (decl) = (1 << i) * BITS_PER_UNIT;
5136 DECL_USER_ALIGN (decl) = 1;
5137 }
5138
5139 return NULL_TREE;
5140 }
5141
5142 /* Handle a "weak" attribute; arguments as in
5143 struct attribute_spec.handler. */
5144
5145 static tree
5146 handle_weak_attribute (tree *node, tree name,
5147 tree ARG_UNUSED (args),
5148 int ARG_UNUSED (flags),
5149 bool * ARG_UNUSED (no_add_attrs))
5150 {
5151 if (TREE_CODE (*node) == FUNCTION_DECL
5152 || TREE_CODE (*node) == VAR_DECL)
5153 declare_weak (*node);
5154 else
5155 warning (OPT_Wattributes, "%qE attribute ignored", name);
5156
5157
5158 return NULL_TREE;
5159 }
5160
5161 /* Handle an "alias" attribute; arguments as in
5162 struct attribute_spec.handler. */
5163
5164 static tree
5165 handle_alias_attribute (tree *node, tree name, tree args,
5166 int ARG_UNUSED (flags), bool *no_add_attrs)
5167 {
5168 tree decl = *node;
5169
5170 if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
5171 || (TREE_CODE (decl) != FUNCTION_DECL
5172 && TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
5173 /* A static variable declaration is always a tentative definition,
5174 but the alias is a non-tentative definition which overrides. */
5175 || (TREE_CODE (decl) != FUNCTION_DECL
5176 && ! TREE_PUBLIC (decl) && DECL_INITIAL (decl)))
5177 {
5178 error ("%q+D defined both normally and as an alias", decl);
5179 *no_add_attrs = true;
5180 }
5181
5182 /* Note that the very first time we process a nested declaration,
5183 decl_function_context will not be set. Indeed, *would* never
5184 be set except for the DECL_INITIAL/DECL_EXTERNAL frobbery that
5185 we do below. After such frobbery, pushdecl would set the context.
5186 In any case, this is never what we want. */
5187 else if (decl_function_context (decl) == 0 && current_function_decl == NULL)
5188 {
5189 tree id;
5190
5191 id = TREE_VALUE (args);
5192 if (TREE_CODE (id) != STRING_CST)
5193 {
5194 error ("alias argument not a string");
5195 *no_add_attrs = true;
5196 return NULL_TREE;
5197 }
5198 id = get_identifier (TREE_STRING_POINTER (id));
5199 /* This counts as a use of the object pointed to. */
5200 TREE_USED (id) = 1;
5201
5202 if (TREE_CODE (decl) == FUNCTION_DECL)
5203 DECL_INITIAL (decl) = error_mark_node;
5204 else
5205 {
5206 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl)))
5207 DECL_EXTERNAL (decl) = 1;
5208 else
5209 DECL_EXTERNAL (decl) = 0;
5210 TREE_STATIC (decl) = 1;
5211 }
5212 }
5213 else
5214 {
5215 warning (OPT_Wattributes, "%qE attribute ignored", name);
5216 *no_add_attrs = true;
5217 }
5218
5219 return NULL_TREE;
5220 }
5221
5222 /* Handle a "weakref" attribute; arguments as in struct
5223 attribute_spec.handler. */
5224
5225 static tree
5226 handle_weakref_attribute (tree *node, tree ARG_UNUSED (name), tree args,
5227 int flags, bool *no_add_attrs)
5228 {
5229 tree attr = NULL_TREE;
5230
5231 /* We must ignore the attribute when it is associated with
5232 local-scoped decls, since attribute alias is ignored and many
5233 such symbols do not even have a DECL_WEAK field. */
5234 if (decl_function_context (*node) || current_function_decl)
5235 {
5236 warning (OPT_Wattributes, "%qE attribute ignored", name);
5237 *no_add_attrs = true;
5238 return NULL_TREE;
5239 }
5240
5241 /* The idea here is that `weakref("name")' mutates into `weakref,
5242 alias("name")', and weakref without arguments, in turn,
5243 implicitly adds weak. */
5244
5245 if (args)
5246 {
5247 attr = tree_cons (get_identifier ("alias"), args, attr);
5248 attr = tree_cons (get_identifier ("weakref"), NULL_TREE, attr);
5249
5250 *no_add_attrs = true;
5251
5252 decl_attributes (node, attr, flags);
5253 }
5254 else
5255 {
5256 if (lookup_attribute ("alias", DECL_ATTRIBUTES (*node)))
5257 error ("%Jweakref attribute must appear before alias attribute",
5258 *node);
5259
5260 /* Can't call declare_weak because it wants this to be TREE_PUBLIC,
5261 and that isn't supported; and because it wants to add it to
5262 the list of weak decls, which isn't helpful. */
5263 DECL_WEAK (*node) = 1;
5264 }
5265
5266 return NULL_TREE;
5267 }
5268
5269 /* Handle an "visibility" attribute; arguments as in
5270 struct attribute_spec.handler. */
5271
5272 static tree
5273 handle_visibility_attribute (tree *node, tree name, tree args,
5274 int ARG_UNUSED (flags),
5275 bool *ARG_UNUSED (no_add_attrs))
5276 {
5277 tree decl = *node;
5278 tree id = TREE_VALUE (args);
5279 enum symbol_visibility vis;
5280
5281 if (TYPE_P (*node))
5282 {
5283 if (TREE_CODE (*node) == ENUMERAL_TYPE)
5284 /* OK */;
5285 else if (TREE_CODE (*node) != RECORD_TYPE && TREE_CODE (*node) != UNION_TYPE)
5286 {
5287 warning (OPT_Wattributes, "%qE attribute ignored on non-class types",
5288 name);
5289 return NULL_TREE;
5290 }
5291 else if (TYPE_FIELDS (*node))
5292 {
5293 error ("%qE attribute ignored because %qT is already defined",
5294 name, *node);
5295 return NULL_TREE;
5296 }
5297 }
5298 else if (decl_function_context (decl) != 0 || !TREE_PUBLIC (decl))
5299 {
5300 warning (OPT_Wattributes, "%qE attribute ignored", name);
5301 return NULL_TREE;
5302 }
5303
5304 if (TREE_CODE (id) != STRING_CST)
5305 {
5306 error ("visibility argument not a string");
5307 return NULL_TREE;
5308 }
5309
5310 /* If this is a type, set the visibility on the type decl. */
5311 if (TYPE_P (decl))
5312 {
5313 decl = TYPE_NAME (decl);
5314 if (!decl)
5315 return NULL_TREE;
5316 if (TREE_CODE (decl) == IDENTIFIER_NODE)
5317 {
5318 warning (OPT_Wattributes, "%qE attribute ignored on types",
5319 name);
5320 return NULL_TREE;
5321 }
5322 }
5323
5324 if (strcmp (TREE_STRING_POINTER (id), "default") == 0)
5325 vis = VISIBILITY_DEFAULT;
5326 else if (strcmp (TREE_STRING_POINTER (id), "internal") == 0)
5327 vis = VISIBILITY_INTERNAL;
5328 else if (strcmp (TREE_STRING_POINTER (id), "hidden") == 0)
5329 vis = VISIBILITY_HIDDEN;
5330 else if (strcmp (TREE_STRING_POINTER (id), "protected") == 0)
5331 vis = VISIBILITY_PROTECTED;
5332 else
5333 {
5334 error ("visibility argument must be one of \"default\", \"hidden\", \"protected\" or \"internal\"");
5335 vis = VISIBILITY_DEFAULT;
5336 }
5337
5338 if (DECL_VISIBILITY_SPECIFIED (decl)
5339 && vis != DECL_VISIBILITY (decl)
5340 && lookup_attribute ("visibility", (TYPE_P (*node)
5341 ? TYPE_ATTRIBUTES (*node)
5342 : DECL_ATTRIBUTES (decl))))
5343 error ("%qD redeclared with different visibility", decl);
5344
5345 DECL_VISIBILITY (decl) = vis;
5346 DECL_VISIBILITY_SPECIFIED (decl) = 1;
5347
5348 /* Go ahead and attach the attribute to the node as well. This is needed
5349 so we can determine whether we have VISIBILITY_DEFAULT because the
5350 visibility was not specified, or because it was explicitly overridden
5351 from the containing scope. */
5352
5353 return NULL_TREE;
5354 }
5355
5356 /* Determine the ELF symbol visibility for DECL, which is either a
5357 variable or a function. It is an error to use this function if a
5358 definition of DECL is not available in this translation unit.
5359 Returns true if the final visibility has been determined by this
5360 function; false if the caller is free to make additional
5361 modifications. */
5362
5363 bool
5364 c_determine_visibility (tree decl)
5365 {
5366 gcc_assert (TREE_CODE (decl) == VAR_DECL
5367 || TREE_CODE (decl) == FUNCTION_DECL);
5368
5369 /* If the user explicitly specified the visibility with an
5370 attribute, honor that. DECL_VISIBILITY will have been set during
5371 the processing of the attribute. We check for an explicit
5372 attribute, rather than just checking DECL_VISIBILITY_SPECIFIED,
5373 to distinguish the use of an attribute from the use of a "#pragma
5374 GCC visibility push(...)"; in the latter case we still want other
5375 considerations to be able to overrule the #pragma. */
5376 if (lookup_attribute ("visibility", DECL_ATTRIBUTES (decl)))
5377 return true;
5378
5379 /* Anything that is exported must have default visibility. */
5380 if (TARGET_DLLIMPORT_DECL_ATTRIBUTES
5381 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (decl)))
5382 {
5383 DECL_VISIBILITY (decl) = VISIBILITY_DEFAULT;
5384 DECL_VISIBILITY_SPECIFIED (decl) = 1;
5385 return true;
5386 }
5387
5388 /* Set default visibility to whatever the user supplied with
5389 visibility_specified depending on #pragma GCC visibility. */
5390 if (!DECL_VISIBILITY_SPECIFIED (decl))
5391 {
5392 DECL_VISIBILITY (decl) = default_visibility;
5393 DECL_VISIBILITY_SPECIFIED (decl) = visibility_options.inpragma;
5394 }
5395 return false;
5396 }
5397
5398 /* Handle an "tls_model" attribute; arguments as in
5399 struct attribute_spec.handler. */
5400
5401 static tree
5402 handle_tls_model_attribute (tree *node, tree name, tree args,
5403 int ARG_UNUSED (flags), bool *no_add_attrs)
5404 {
5405 tree id;
5406 tree decl = *node;
5407 enum tls_model kind;
5408
5409 *no_add_attrs = true;
5410
5411 if (!DECL_THREAD_LOCAL_P (decl))
5412 {
5413 warning (OPT_Wattributes, "%qE attribute ignored", name);
5414 return NULL_TREE;
5415 }
5416
5417 kind = DECL_TLS_MODEL (decl);
5418 id = TREE_VALUE (args);
5419 if (TREE_CODE (id) != STRING_CST)
5420 {
5421 error ("tls_model argument not a string");
5422 return NULL_TREE;
5423 }
5424
5425 if (!strcmp (TREE_STRING_POINTER (id), "local-exec"))
5426 kind = TLS_MODEL_LOCAL_EXEC;
5427 else if (!strcmp (TREE_STRING_POINTER (id), "initial-exec"))
5428 kind = TLS_MODEL_INITIAL_EXEC;
5429 else if (!strcmp (TREE_STRING_POINTER (id), "local-dynamic"))
5430 kind = optimize ? TLS_MODEL_LOCAL_DYNAMIC : TLS_MODEL_GLOBAL_DYNAMIC;
5431 else if (!strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
5432 kind = TLS_MODEL_GLOBAL_DYNAMIC;
5433 else
5434 error ("tls_model argument must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
5435
5436 DECL_TLS_MODEL (decl) = kind;
5437 return NULL_TREE;
5438 }
5439
5440 /* Handle a "no_instrument_function" attribute; arguments as in
5441 struct attribute_spec.handler. */
5442
5443 static tree
5444 handle_no_instrument_function_attribute (tree *node, tree name,
5445 tree ARG_UNUSED (args),
5446 int ARG_UNUSED (flags),
5447 bool *no_add_attrs)
5448 {
5449 tree decl = *node;
5450
5451 if (TREE_CODE (decl) != FUNCTION_DECL)
5452 {
5453 error ("%J%qE attribute applies only to functions", decl, name);
5454 *no_add_attrs = true;
5455 }
5456 else if (DECL_INITIAL (decl))
5457 {
5458 error ("%Jcan%'t set %qE attribute after definition", decl, name);
5459 *no_add_attrs = true;
5460 }
5461 else
5462 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
5463
5464 return NULL_TREE;
5465 }
5466
5467 /* Handle a "malloc" attribute; arguments as in
5468 struct attribute_spec.handler. */
5469
5470 static tree
5471 handle_malloc_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5472 int ARG_UNUSED (flags), bool *no_add_attrs)
5473 {
5474 if (TREE_CODE (*node) == FUNCTION_DECL
5475 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (*node))))
5476 DECL_IS_MALLOC (*node) = 1;
5477 else
5478 {
5479 warning (OPT_Wattributes, "%qE attribute ignored", name);
5480 *no_add_attrs = true;
5481 }
5482
5483 return NULL_TREE;
5484 }
5485
5486 /* Handle a "returns_twice" attribute; arguments as in
5487 struct attribute_spec.handler. */
5488
5489 static tree
5490 handle_returns_twice_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5491 int ARG_UNUSED (flags), bool *no_add_attrs)
5492 {
5493 if (TREE_CODE (*node) == FUNCTION_DECL)
5494 DECL_IS_RETURNS_TWICE (*node) = 1;
5495 else
5496 {
5497 warning (OPT_Wattributes, "%qE attribute ignored", name);
5498 *no_add_attrs = true;
5499 }
5500
5501 return NULL_TREE;
5502 }
5503
5504 /* Handle a "no_limit_stack" attribute; arguments as in
5505 struct attribute_spec.handler. */
5506
5507 static tree
5508 handle_no_limit_stack_attribute (tree *node, tree name,
5509 tree ARG_UNUSED (args),
5510 int ARG_UNUSED (flags),
5511 bool *no_add_attrs)
5512 {
5513 tree decl = *node;
5514
5515 if (TREE_CODE (decl) != FUNCTION_DECL)
5516 {
5517 error ("%J%qE attribute applies only to functions", decl, name);
5518 *no_add_attrs = true;
5519 }
5520 else if (DECL_INITIAL (decl))
5521 {
5522 error ("%Jcan%'t set %qE attribute after definition", decl, name);
5523 *no_add_attrs = true;
5524 }
5525 else
5526 DECL_NO_LIMIT_STACK (decl) = 1;
5527
5528 return NULL_TREE;
5529 }
5530
5531 /* Handle a "pure" attribute; arguments as in
5532 struct attribute_spec.handler. */
5533
5534 static tree
5535 handle_pure_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5536 int ARG_UNUSED (flags), bool *no_add_attrs)
5537 {
5538 if (TREE_CODE (*node) == FUNCTION_DECL)
5539 DECL_IS_PURE (*node) = 1;
5540 /* ??? TODO: Support types. */
5541 else
5542 {
5543 warning (OPT_Wattributes, "%qE attribute ignored", name);
5544 *no_add_attrs = true;
5545 }
5546
5547 return NULL_TREE;
5548 }
5549
5550 /* Handle a "no vops" attribute; arguments as in
5551 struct attribute_spec.handler. */
5552
5553 static tree
5554 handle_novops_attribute (tree *node, tree ARG_UNUSED (name),
5555 tree ARG_UNUSED (args), int ARG_UNUSED (flags),
5556 bool *ARG_UNUSED (no_add_attrs))
5557 {
5558 gcc_assert (TREE_CODE (*node) == FUNCTION_DECL);
5559 DECL_IS_NOVOPS (*node) = 1;
5560 return NULL_TREE;
5561 }
5562
5563 /* Handle a "deprecated" attribute; arguments as in
5564 struct attribute_spec.handler. */
5565
5566 static tree
5567 handle_deprecated_attribute (tree *node, tree name,
5568 tree ARG_UNUSED (args), int flags,
5569 bool *no_add_attrs)
5570 {
5571 tree type = NULL_TREE;
5572 int warn = 0;
5573 tree what = NULL_TREE;
5574
5575 if (DECL_P (*node))
5576 {
5577 tree decl = *node;
5578 type = TREE_TYPE (decl);
5579
5580 if (TREE_CODE (decl) == TYPE_DECL
5581 || TREE_CODE (decl) == PARM_DECL
5582 || TREE_CODE (decl) == VAR_DECL
5583 || TREE_CODE (decl) == FUNCTION_DECL
5584 || TREE_CODE (decl) == FIELD_DECL)
5585 TREE_DEPRECATED (decl) = 1;
5586 else
5587 warn = 1;
5588 }
5589 else if (TYPE_P (*node))
5590 {
5591 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5592 *node = build_variant_type_copy (*node);
5593 TREE_DEPRECATED (*node) = 1;
5594 type = *node;
5595 }
5596 else
5597 warn = 1;
5598
5599 if (warn)
5600 {
5601 *no_add_attrs = true;
5602 if (type && TYPE_NAME (type))
5603 {
5604 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
5605 what = TYPE_NAME (*node);
5606 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
5607 && DECL_NAME (TYPE_NAME (type)))
5608 what = DECL_NAME (TYPE_NAME (type));
5609 }
5610 if (what)
5611 warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what);
5612 else
5613 warning (OPT_Wattributes, "%qE attribute ignored", name);
5614 }
5615
5616 return NULL_TREE;
5617 }
5618
5619 /* Handle a "vector_size" attribute; arguments as in
5620 struct attribute_spec.handler. */
5621
5622 static tree
5623 handle_vector_size_attribute (tree *node, tree name, tree args,
5624 int ARG_UNUSED (flags),
5625 bool *no_add_attrs)
5626 {
5627 unsigned HOST_WIDE_INT vecsize, nunits;
5628 enum machine_mode orig_mode;
5629 tree type = *node, new_type, size;
5630
5631 *no_add_attrs = true;
5632
5633 size = TREE_VALUE (args);
5634
5635 if (!host_integerp (size, 1))
5636 {
5637 warning (OPT_Wattributes, "%qE attribute ignored", name);
5638 return NULL_TREE;
5639 }
5640
5641 /* Get the vector size (in bytes). */
5642 vecsize = tree_low_cst (size, 1);
5643
5644 /* We need to provide for vector pointers, vector arrays, and
5645 functions returning vectors. For example:
5646
5647 __attribute__((vector_size(16))) short *foo;
5648
5649 In this case, the mode is SI, but the type being modified is
5650 HI, so we need to look further. */
5651
5652 while (POINTER_TYPE_P (type)
5653 || TREE_CODE (type) == FUNCTION_TYPE
5654 || TREE_CODE (type) == METHOD_TYPE
5655 || TREE_CODE (type) == ARRAY_TYPE)
5656 type = TREE_TYPE (type);
5657
5658 /* Get the mode of the type being modified. */
5659 orig_mode = TYPE_MODE (type);
5660
5661 if (TREE_CODE (type) == RECORD_TYPE
5662 || TREE_CODE (type) == UNION_TYPE
5663 || TREE_CODE (type) == VECTOR_TYPE
5664 || (!SCALAR_FLOAT_MODE_P (orig_mode)
5665 && GET_MODE_CLASS (orig_mode) != MODE_INT)
5666 || !host_integerp (TYPE_SIZE_UNIT (type), 1))
5667 {
5668 error ("invalid vector type for attribute %qE", name);
5669 return NULL_TREE;
5670 }
5671
5672 if (vecsize % tree_low_cst (TYPE_SIZE_UNIT (type), 1))
5673 {
5674 error ("vector size not an integral multiple of component size");
5675 return NULL;
5676 }
5677
5678 if (vecsize == 0)
5679 {
5680 error ("zero vector size");
5681 return NULL;
5682 }
5683
5684 /* Calculate how many units fit in the vector. */
5685 nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5686 if (nunits & (nunits - 1))
5687 {
5688 error ("number of components of the vector not a power of two");
5689 return NULL_TREE;
5690 }
5691
5692 new_type = build_vector_type (type, nunits);
5693
5694 /* Build back pointers if needed. */
5695 *node = reconstruct_complex_type (*node, new_type);
5696
5697 return NULL_TREE;
5698 }
5699
5700 /* Handle the "nonnull" attribute. */
5701 static tree
5702 handle_nonnull_attribute (tree *node, tree ARG_UNUSED (name),
5703 tree args, int ARG_UNUSED (flags),
5704 bool *no_add_attrs)
5705 {
5706 tree type = *node;
5707 unsigned HOST_WIDE_INT attr_arg_num;
5708
5709 /* If no arguments are specified, all pointer arguments should be
5710 non-null. Verify a full prototype is given so that the arguments
5711 will have the correct types when we actually check them later. */
5712 if (!args)
5713 {
5714 if (!TYPE_ARG_TYPES (type))
5715 {
5716 error ("nonnull attribute without arguments on a non-prototype");
5717 *no_add_attrs = true;
5718 }
5719 return NULL_TREE;
5720 }
5721
5722 /* Argument list specified. Verify that each argument number references
5723 a pointer argument. */
5724 for (attr_arg_num = 1; args; args = TREE_CHAIN (args))
5725 {
5726 tree argument;
5727 unsigned HOST_WIDE_INT arg_num = 0, ck_num;
5728
5729 if (!get_nonnull_operand (TREE_VALUE (args), &arg_num))
5730 {
5731 error ("nonnull argument has invalid operand number (argument %lu)",
5732 (unsigned long) attr_arg_num);
5733 *no_add_attrs = true;
5734 return NULL_TREE;
5735 }
5736
5737 argument = TYPE_ARG_TYPES (type);
5738 if (argument)
5739 {
5740 for (ck_num = 1; ; ck_num++)
5741 {
5742 if (!argument || ck_num == arg_num)
5743 break;
5744 argument = TREE_CHAIN (argument);
5745 }
5746
5747 if (!argument
5748 || TREE_CODE (TREE_VALUE (argument)) == VOID_TYPE)
5749 {
5750 error ("nonnull argument with out-of-range operand number (argument %lu, operand %lu)",
5751 (unsigned long) attr_arg_num, (unsigned long) arg_num);
5752 *no_add_attrs = true;
5753 return NULL_TREE;
5754 }
5755
5756 if (TREE_CODE (TREE_VALUE (argument)) != POINTER_TYPE)
5757 {
5758 error ("nonnull argument references non-pointer operand (argument %lu, operand %lu)",
5759 (unsigned long) attr_arg_num, (unsigned long) arg_num);
5760 *no_add_attrs = true;
5761 return NULL_TREE;
5762 }
5763 }
5764 }
5765
5766 return NULL_TREE;
5767 }
5768
5769 /* Check the argument list of a function call for null in argument slots
5770 that are marked as requiring a non-null pointer argument. The NARGS
5771 arguments are passed in the array ARGARRAY.
5772 */
5773
5774 static void
5775 check_function_nonnull (tree attrs, int nargs, tree *argarray)
5776 {
5777 tree a, args;
5778 int i;
5779
5780 for (a = attrs; a; a = TREE_CHAIN (a))
5781 {
5782 if (is_attribute_p ("nonnull", TREE_PURPOSE (a)))
5783 {
5784 args = TREE_VALUE (a);
5785
5786 /* Walk the argument list. If we encounter an argument number we
5787 should check for non-null, do it. If the attribute has no args,
5788 then every pointer argument is checked (in which case the check
5789 for pointer type is done in check_nonnull_arg). */
5790 for (i = 0; i < nargs; i++)
5791 {
5792 if (!args || nonnull_check_p (args, i + 1))
5793 check_function_arguments_recurse (check_nonnull_arg, NULL,
5794 argarray[i],
5795 i + 1);
5796 }
5797 }
5798 }
5799 }
5800
5801 /* Check that the Nth argument of a function call (counting backwards
5802 from the end) is a (pointer)0. The NARGS arguments are passed in the
5803 array ARGARRAY. */
5804
5805 static void
5806 check_function_sentinel (tree attrs, int nargs, tree *argarray, tree typelist)
5807 {
5808 tree attr = lookup_attribute ("sentinel", attrs);
5809
5810 if (attr)
5811 {
5812 int len = 0;
5813 int pos = 0;
5814 tree sentinel;
5815
5816 /* Skip over the named arguments. */
5817 while (typelist && len < nargs)
5818 {
5819 typelist = TREE_CHAIN (typelist);
5820 len++;
5821 }
5822
5823 if (TREE_VALUE (attr))
5824 {
5825 tree p = TREE_VALUE (TREE_VALUE (attr));
5826 pos = TREE_INT_CST_LOW (p);
5827 }
5828
5829 /* The sentinel must be one of the varargs, i.e.
5830 in position >= the number of fixed arguments. */
5831 if ((nargs - 1 - pos) < len)
5832 {
5833 warning (OPT_Wformat,
5834 "not enough variable arguments to fit a sentinel");
5835 return;
5836 }
5837
5838 /* Validate the sentinel. */
5839 sentinel = argarray[nargs - 1 - pos];
5840 if ((!POINTER_TYPE_P (TREE_TYPE (sentinel))
5841 || !integer_zerop (sentinel))
5842 /* Although __null (in C++) is only an integer we allow it
5843 nevertheless, as we are guaranteed that it's exactly
5844 as wide as a pointer, and we don't want to force
5845 users to cast the NULL they have written there.
5846 We warn with -Wstrict-null-sentinel, though. */
5847 && (warn_strict_null_sentinel || null_node != sentinel))
5848 warning (OPT_Wformat, "missing sentinel in function call");
5849 }
5850 }
5851
5852 /* Helper for check_function_nonnull; given a list of operands which
5853 must be non-null in ARGS, determine if operand PARAM_NUM should be
5854 checked. */
5855
5856 static bool
5857 nonnull_check_p (tree args, unsigned HOST_WIDE_INT param_num)
5858 {
5859 unsigned HOST_WIDE_INT arg_num = 0;
5860
5861 for (; args; args = TREE_CHAIN (args))
5862 {
5863 bool found = get_nonnull_operand (TREE_VALUE (args), &arg_num);
5864
5865 gcc_assert (found);
5866
5867 if (arg_num == param_num)
5868 return true;
5869 }
5870 return false;
5871 }
5872
5873 /* Check that the function argument PARAM (which is operand number
5874 PARAM_NUM) is non-null. This is called by check_function_nonnull
5875 via check_function_arguments_recurse. */
5876
5877 static void
5878 check_nonnull_arg (void * ARG_UNUSED (ctx), tree param,
5879 unsigned HOST_WIDE_INT param_num)
5880 {
5881 /* Just skip checking the argument if it's not a pointer. This can
5882 happen if the "nonnull" attribute was given without an operand
5883 list (which means to check every pointer argument). */
5884
5885 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
5886 return;
5887
5888 if (integer_zerop (param))
5889 warning (OPT_Wnonnull, "null argument where non-null required "
5890 "(argument %lu)", (unsigned long) param_num);
5891 }
5892
5893 /* Helper for nonnull attribute handling; fetch the operand number
5894 from the attribute argument list. */
5895
5896 static bool
5897 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
5898 {
5899 /* Verify the arg number is a constant. */
5900 if (TREE_CODE (arg_num_expr) != INTEGER_CST
5901 || TREE_INT_CST_HIGH (arg_num_expr) != 0)
5902 return false;
5903
5904 *valp = TREE_INT_CST_LOW (arg_num_expr);
5905 return true;
5906 }
5907
5908 /* Handle a "nothrow" attribute; arguments as in
5909 struct attribute_spec.handler. */
5910
5911 static tree
5912 handle_nothrow_attribute (tree *node, tree name, tree ARG_UNUSED (args),
5913 int ARG_UNUSED (flags), bool *no_add_attrs)
5914 {
5915 if (TREE_CODE (*node) == FUNCTION_DECL)
5916 TREE_NOTHROW (*node) = 1;
5917 /* ??? TODO: Support types. */
5918 else
5919 {
5920 warning (OPT_Wattributes, "%qE attribute ignored", name);
5921 *no_add_attrs = true;
5922 }
5923
5924 return NULL_TREE;
5925 }
5926
5927 /* Handle a "cleanup" attribute; arguments as in
5928 struct attribute_spec.handler. */
5929
5930 static tree
5931 handle_cleanup_attribute (tree *node, tree name, tree args,
5932 int ARG_UNUSED (flags), bool *no_add_attrs)
5933 {
5934 tree decl = *node;
5935 tree cleanup_id, cleanup_decl;
5936
5937 /* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
5938 for global destructors in C++. This requires infrastructure that
5939 we don't have generically at the moment. It's also not a feature
5940 we'd be missing too much, since we do have attribute constructor. */
5941 if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl))
5942 {
5943 warning (OPT_Wattributes, "%qE attribute ignored", name);
5944 *no_add_attrs = true;
5945 return NULL_TREE;
5946 }
5947
5948 /* Verify that the argument is a function in scope. */
5949 /* ??? We could support pointers to functions here as well, if
5950 that was considered desirable. */
5951 cleanup_id = TREE_VALUE (args);
5952 if (TREE_CODE (cleanup_id) != IDENTIFIER_NODE)
5953 {
5954 error ("cleanup argument not an identifier");
5955 *no_add_attrs = true;
5956 return NULL_TREE;
5957 }
5958 cleanup_decl = lookup_name (cleanup_id);
5959 if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL)
5960 {
5961 error ("cleanup argument not a function");
5962 *no_add_attrs = true;
5963 return NULL_TREE;
5964 }
5965
5966 /* That the function has proper type is checked with the
5967 eventual call to build_function_call. */
5968
5969 return NULL_TREE;
5970 }
5971
5972 /* Handle a "warn_unused_result" attribute. No special handling. */
5973
5974 static tree
5975 handle_warn_unused_result_attribute (tree *node, tree name,
5976 tree ARG_UNUSED (args),
5977 int ARG_UNUSED (flags), bool *no_add_attrs)
5978 {
5979 /* Ignore the attribute for functions not returning any value. */
5980 if (VOID_TYPE_P (TREE_TYPE (*node)))
5981 {
5982 warning (OPT_Wattributes, "%qE attribute ignored", name);
5983 *no_add_attrs = true;
5984 }
5985
5986 return NULL_TREE;
5987 }
5988
5989 /* Handle a "sentinel" attribute. */
5990
5991 static tree
5992 handle_sentinel_attribute (tree *node, tree name, tree args,
5993 int ARG_UNUSED (flags), bool *no_add_attrs)
5994 {
5995 tree params = TYPE_ARG_TYPES (*node);
5996
5997 if (!params)
5998 {
5999 warning (OPT_Wattributes,
6000 "%qE attribute requires prototypes with named arguments", name);
6001 *no_add_attrs = true;
6002 }
6003 else
6004 {
6005 while (TREE_CHAIN (params))
6006 params = TREE_CHAIN (params);
6007
6008 if (VOID_TYPE_P (TREE_VALUE (params)))
6009 {
6010 warning (OPT_Wattributes,
6011 "%qE attribute only applies to variadic functions", name);
6012 *no_add_attrs = true;
6013 }
6014 }
6015
6016 if (args)
6017 {
6018 tree position = TREE_VALUE (args);
6019
6020 if (TREE_CODE (position) != INTEGER_CST)
6021 {
6022 warning (0, "requested position is not an integer constant");
6023 *no_add_attrs = true;
6024 }
6025 else
6026 {
6027 if (tree_int_cst_lt (position, integer_zero_node))
6028 {
6029 warning (0, "requested position is less than zero");
6030 *no_add_attrs = true;
6031 }
6032 }
6033 }
6034
6035 return NULL_TREE;
6036 }
6037 \f
6038 /* Check for valid arguments being passed to a function.
6039 ATTRS is a list of attributes. There are NARGS arguments in the array
6040 ARGARRAY. TYPELIST is the list of argument types for the function.
6041 */
6042 void
6043 check_function_arguments (tree attrs, int nargs, tree *argarray, tree typelist)
6044 {
6045 /* Check for null being passed in a pointer argument that must be
6046 non-null. We also need to do this if format checking is enabled. */
6047
6048 if (warn_nonnull)
6049 check_function_nonnull (attrs, nargs, argarray);
6050
6051 /* Check for errors in format strings. */
6052
6053 if (warn_format || warn_missing_format_attribute)
6054 check_function_format (attrs, nargs, argarray);
6055
6056 if (warn_format)
6057 check_function_sentinel (attrs, nargs, argarray, typelist);
6058 }
6059
6060 /* Generic argument checking recursion routine. PARAM is the argument to
6061 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
6062 once the argument is resolved. CTX is context for the callback. */
6063 void
6064 check_function_arguments_recurse (void (*callback)
6065 (void *, tree, unsigned HOST_WIDE_INT),
6066 void *ctx, tree param,
6067 unsigned HOST_WIDE_INT param_num)
6068 {
6069 if ((TREE_CODE (param) == NOP_EXPR || TREE_CODE (param) == CONVERT_EXPR)
6070 && (TYPE_PRECISION (TREE_TYPE (param))
6071 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (param, 0)))))
6072 {
6073 /* Strip coercion. */
6074 check_function_arguments_recurse (callback, ctx,
6075 TREE_OPERAND (param, 0), param_num);
6076 return;
6077 }
6078
6079 if (TREE_CODE (param) == CALL_EXPR)
6080 {
6081 tree type = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (param)));
6082 tree attrs;
6083 bool found_format_arg = false;
6084
6085 /* See if this is a call to a known internationalization function
6086 that modifies a format arg. Such a function may have multiple
6087 format_arg attributes (for example, ngettext). */
6088
6089 for (attrs = TYPE_ATTRIBUTES (type);
6090 attrs;
6091 attrs = TREE_CHAIN (attrs))
6092 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
6093 {
6094 tree inner_arg;
6095 tree format_num_expr;
6096 int format_num;
6097 int i;
6098 call_expr_arg_iterator iter;
6099
6100 /* Extract the argument number, which was previously checked
6101 to be valid. */
6102 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
6103
6104 gcc_assert (TREE_CODE (format_num_expr) == INTEGER_CST
6105 && !TREE_INT_CST_HIGH (format_num_expr));
6106
6107 format_num = TREE_INT_CST_LOW (format_num_expr);
6108
6109 for (inner_arg = first_call_expr_arg (param, &iter), i = 1;
6110 inner_arg != 0;
6111 inner_arg = next_call_expr_arg (&iter), i++)
6112 if (i == format_num)
6113 {
6114 check_function_arguments_recurse (callback, ctx,
6115 inner_arg, param_num);
6116 found_format_arg = true;
6117 break;
6118 }
6119 }
6120
6121 /* If we found a format_arg attribute and did a recursive check,
6122 we are done with checking this argument. Otherwise, we continue
6123 and this will be considered a non-literal. */
6124 if (found_format_arg)
6125 return;
6126 }
6127
6128 if (TREE_CODE (param) == COND_EXPR)
6129 {
6130 /* Check both halves of the conditional expression. */
6131 check_function_arguments_recurse (callback, ctx,
6132 TREE_OPERAND (param, 1), param_num);
6133 check_function_arguments_recurse (callback, ctx,
6134 TREE_OPERAND (param, 2), param_num);
6135 return;
6136 }
6137
6138 (*callback) (ctx, param, param_num);
6139 }
6140
6141 /* Function to help qsort sort FIELD_DECLs by name order. */
6142
6143 int
6144 field_decl_cmp (const void *x_p, const void *y_p)
6145 {
6146 const tree *const x = (const tree *const) x_p;
6147 const tree *const y = (const tree *const) y_p;
6148
6149 if (DECL_NAME (*x) == DECL_NAME (*y))
6150 /* A nontype is "greater" than a type. */
6151 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
6152 if (DECL_NAME (*x) == NULL_TREE)
6153 return -1;
6154 if (DECL_NAME (*y) == NULL_TREE)
6155 return 1;
6156 if (DECL_NAME (*x) < DECL_NAME (*y))
6157 return -1;
6158 return 1;
6159 }
6160
6161 static struct {
6162 gt_pointer_operator new_value;
6163 void *cookie;
6164 } resort_data;
6165
6166 /* This routine compares two fields like field_decl_cmp but using the
6167 pointer operator in resort_data. */
6168
6169 static int
6170 resort_field_decl_cmp (const void *x_p, const void *y_p)
6171 {
6172 const tree *const x = (const tree *const) x_p;
6173 const tree *const y = (const tree *const) y_p;
6174
6175 if (DECL_NAME (*x) == DECL_NAME (*y))
6176 /* A nontype is "greater" than a type. */
6177 return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
6178 if (DECL_NAME (*x) == NULL_TREE)
6179 return -1;
6180 if (DECL_NAME (*y) == NULL_TREE)
6181 return 1;
6182 {
6183 tree d1 = DECL_NAME (*x);
6184 tree d2 = DECL_NAME (*y);
6185 resort_data.new_value (&d1, resort_data.cookie);
6186 resort_data.new_value (&d2, resort_data.cookie);
6187 if (d1 < d2)
6188 return -1;
6189 }
6190 return 1;
6191 }
6192
6193 /* Resort DECL_SORTED_FIELDS because pointers have been reordered. */
6194
6195 void
6196 resort_sorted_fields (void *obj,
6197 void * ARG_UNUSED (orig_obj),
6198 gt_pointer_operator new_value,
6199 void *cookie)
6200 {
6201 struct sorted_fields_type *sf = (struct sorted_fields_type *) obj;
6202 resort_data.new_value = new_value;
6203 resort_data.cookie = cookie;
6204 qsort (&sf->elts[0], sf->len, sizeof (tree),
6205 resort_field_decl_cmp);
6206 }
6207
6208 /* Subroutine of c_parse_error.
6209 Return the result of concatenating LHS and RHS. RHS is really
6210 a string literal, its first character is indicated by RHS_START and
6211 RHS_SIZE is its length (including the terminating NUL character).
6212
6213 The caller is responsible for deleting the returned pointer. */
6214
6215 static char *
6216 catenate_strings (const char *lhs, const char *rhs_start, int rhs_size)
6217 {
6218 const int lhs_size = strlen (lhs);
6219 char *result = XNEWVEC (char, lhs_size + rhs_size);
6220 strncpy (result, lhs, lhs_size);
6221 strncpy (result + lhs_size, rhs_start, rhs_size);
6222 return result;
6223 }
6224
6225 /* Issue the error given by GMSGID, indicating that it occurred before
6226 TOKEN, which had the associated VALUE. */
6227
6228 void
6229 c_parse_error (const char *gmsgid, enum cpp_ttype token, tree value)
6230 {
6231 #define catenate_messages(M1, M2) catenate_strings ((M1), (M2), sizeof (M2))
6232
6233 char *message = NULL;
6234
6235 if (token == CPP_EOF)
6236 message = catenate_messages (gmsgid, " at end of input");
6237 else if (token == CPP_CHAR || token == CPP_WCHAR)
6238 {
6239 unsigned int val = TREE_INT_CST_LOW (value);
6240 const char *const ell = (token == CPP_CHAR) ? "" : "L";
6241 if (val <= UCHAR_MAX && ISGRAPH (val))
6242 message = catenate_messages (gmsgid, " before %s'%c'");
6243 else
6244 message = catenate_messages (gmsgid, " before %s'\\x%x'");
6245
6246 error (message, ell, val);
6247 free (message);
6248 message = NULL;
6249 }
6250 else if (token == CPP_STRING || token == CPP_WSTRING)
6251 message = catenate_messages (gmsgid, " before string constant");
6252 else if (token == CPP_NUMBER)
6253 message = catenate_messages (gmsgid, " before numeric constant");
6254 else if (token == CPP_NAME)
6255 {
6256 message = catenate_messages (gmsgid, " before %qE");
6257 error (message, value);
6258 free (message);
6259 message = NULL;
6260 }
6261 else if (token == CPP_PRAGMA)
6262 message = catenate_messages (gmsgid, " before %<#pragma%>");
6263 else if (token == CPP_PRAGMA_EOL)
6264 message = catenate_messages (gmsgid, " before end of line");
6265 else if (token < N_TTYPES)
6266 {
6267 message = catenate_messages (gmsgid, " before %qs token");
6268 error (message, cpp_type2name (token));
6269 free (message);
6270 message = NULL;
6271 }
6272 else
6273 error (gmsgid);
6274
6275 if (message)
6276 {
6277 error (message);
6278 free (message);
6279 }
6280 #undef catenate_messages
6281 }
6282
6283 /* Walk a gimplified function and warn for functions whose return value is
6284 ignored and attribute((warn_unused_result)) is set. This is done before
6285 inlining, so we don't have to worry about that. */
6286
6287 void
6288 c_warn_unused_result (tree *top_p)
6289 {
6290 tree t = *top_p;
6291 tree_stmt_iterator i;
6292 tree fdecl, ftype;
6293
6294 switch (TREE_CODE (t))
6295 {
6296 case STATEMENT_LIST:
6297 for (i = tsi_start (*top_p); !tsi_end_p (i); tsi_next (&i))
6298 c_warn_unused_result (tsi_stmt_ptr (i));
6299 break;
6300
6301 case COND_EXPR:
6302 c_warn_unused_result (&COND_EXPR_THEN (t));
6303 c_warn_unused_result (&COND_EXPR_ELSE (t));
6304 break;
6305 case BIND_EXPR:
6306 c_warn_unused_result (&BIND_EXPR_BODY (t));
6307 break;
6308 case TRY_FINALLY_EXPR:
6309 case TRY_CATCH_EXPR:
6310 c_warn_unused_result (&TREE_OPERAND (t, 0));
6311 c_warn_unused_result (&TREE_OPERAND (t, 1));
6312 break;
6313 case CATCH_EXPR:
6314 c_warn_unused_result (&CATCH_BODY (t));
6315 break;
6316 case EH_FILTER_EXPR:
6317 c_warn_unused_result (&EH_FILTER_FAILURE (t));
6318 break;
6319
6320 case CALL_EXPR:
6321 if (TREE_USED (t))
6322 break;
6323
6324 /* This is a naked call, as opposed to a CALL_EXPR nested inside
6325 a MODIFY_EXPR. All calls whose value is ignored should be
6326 represented like this. Look for the attribute. */
6327 fdecl = get_callee_fndecl (t);
6328 if (fdecl)
6329 ftype = TREE_TYPE (fdecl);
6330 else
6331 {
6332 ftype = TREE_TYPE (CALL_EXPR_FN (t));
6333 /* Look past pointer-to-function to the function type itself. */
6334 ftype = TREE_TYPE (ftype);
6335 }
6336
6337 if (lookup_attribute ("warn_unused_result", TYPE_ATTRIBUTES (ftype)))
6338 {
6339 if (fdecl)
6340 warning (0, "%Hignoring return value of %qD, "
6341 "declared with attribute warn_unused_result",
6342 EXPR_LOCUS (t), fdecl);
6343 else
6344 warning (0, "%Hignoring return value of function "
6345 "declared with attribute warn_unused_result",
6346 EXPR_LOCUS (t));
6347 }
6348 break;
6349
6350 default:
6351 /* Not a container, not a call, or a call whose value is used. */
6352 break;
6353 }
6354 }
6355
6356 /* Convert a character from the host to the target execution character
6357 set. cpplib handles this, mostly. */
6358
6359 HOST_WIDE_INT
6360 c_common_to_target_charset (HOST_WIDE_INT c)
6361 {
6362 /* Character constants in GCC proper are sign-extended under -fsigned-char,
6363 zero-extended under -fno-signed-char. cpplib insists that characters
6364 and character constants are always unsigned. Hence we must convert
6365 back and forth. */
6366 cppchar_t uc = ((cppchar_t)c) & ((((cppchar_t)1) << CHAR_BIT)-1);
6367
6368 uc = cpp_host_to_exec_charset (parse_in, uc);
6369
6370 if (flag_signed_char)
6371 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE)
6372 >> (HOST_BITS_PER_WIDE_INT - CHAR_TYPE_SIZE);
6373 else
6374 return uc;
6375 }
6376
6377 /* Build the result of __builtin_offsetof. EXPR is a nested sequence of
6378 component references, with STOP_REF, or alternatively an INDIRECT_REF of
6379 NULL, at the bottom; much like the traditional rendering of offsetof as a
6380 macro. Returns the folded and properly cast result. */
6381
6382 static tree
6383 fold_offsetof_1 (tree expr, tree stop_ref)
6384 {
6385 enum tree_code code = PLUS_EXPR;
6386 tree base, off, t;
6387
6388 if (expr == stop_ref && TREE_CODE (expr) != ERROR_MARK)
6389 return size_zero_node;
6390
6391 switch (TREE_CODE (expr))
6392 {
6393 case ERROR_MARK:
6394 return expr;
6395
6396 case VAR_DECL:
6397 error ("cannot apply %<offsetof%> to static data member %qD", expr);
6398 return error_mark_node;
6399
6400 case CALL_EXPR:
6401 error ("cannot apply %<offsetof%> when %<operator[]%> is overloaded");
6402 return error_mark_node;
6403
6404 case INTEGER_CST:
6405 gcc_assert (integer_zerop (expr));
6406 return size_zero_node;
6407
6408 case NOP_EXPR:
6409 case INDIRECT_REF:
6410 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
6411 gcc_assert (base == error_mark_node || base == size_zero_node);
6412 return base;
6413
6414 case COMPONENT_REF:
6415 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
6416 if (base == error_mark_node)
6417 return base;
6418
6419 t = TREE_OPERAND (expr, 1);
6420 if (DECL_C_BIT_FIELD (t))
6421 {
6422 error ("attempt to take address of bit-field structure "
6423 "member %qD", t);
6424 return error_mark_node;
6425 }
6426 off = size_binop (PLUS_EXPR, DECL_FIELD_OFFSET (t),
6427 size_int (tree_low_cst (DECL_FIELD_BIT_OFFSET (t), 1)
6428 / BITS_PER_UNIT));
6429 break;
6430
6431 case ARRAY_REF:
6432 base = fold_offsetof_1 (TREE_OPERAND (expr, 0), stop_ref);
6433 if (base == error_mark_node)
6434 return base;
6435
6436 t = TREE_OPERAND (expr, 1);
6437 if (TREE_CODE (t) == INTEGER_CST && tree_int_cst_sgn (t) < 0)
6438 {
6439 code = MINUS_EXPR;
6440 t = fold_build1 (NEGATE_EXPR, TREE_TYPE (t), t);
6441 }
6442 t = convert (sizetype, t);
6443 off = size_binop (MULT_EXPR, TYPE_SIZE_UNIT (TREE_TYPE (expr)), t);
6444 break;
6445
6446 default:
6447 gcc_unreachable ();
6448 }
6449
6450 return size_binop (code, base, off);
6451 }
6452
6453 tree
6454 fold_offsetof (tree expr, tree stop_ref)
6455 {
6456 /* Convert back from the internal sizetype to size_t. */
6457 return convert (size_type_node, fold_offsetof_1 (expr, stop_ref));
6458 }
6459
6460 /* Print an error message for an invalid lvalue. USE says
6461 how the lvalue is being used and so selects the error message. */
6462
6463 void
6464 lvalue_error (enum lvalue_use use)
6465 {
6466 switch (use)
6467 {
6468 case lv_assign:
6469 error ("lvalue required as left operand of assignment");
6470 break;
6471 case lv_increment:
6472 error ("lvalue required as increment operand");
6473 break;
6474 case lv_decrement:
6475 error ("lvalue required as decrement operand");
6476 break;
6477 case lv_addressof:
6478 error ("lvalue required as unary %<&%> operand");
6479 break;
6480 case lv_asm:
6481 error ("lvalue required in asm statement");
6482 break;
6483 default:
6484 gcc_unreachable ();
6485 }
6486 }
6487 \f
6488 /* *PTYPE is an incomplete array. Complete it with a domain based on
6489 INITIAL_VALUE. If INITIAL_VALUE is not present, use 1 if DO_DEFAULT
6490 is true. Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
6491 2 if INITIAL_VALUE was NULL, and 3 if INITIAL_VALUE was empty. */
6492
6493 int
6494 complete_array_type (tree *ptype, tree initial_value, bool do_default)
6495 {
6496 tree maxindex, type, main_type, elt, unqual_elt;
6497 int failure = 0, quals;
6498 hashval_t hashcode = 0;
6499
6500 maxindex = size_zero_node;
6501 if (initial_value)
6502 {
6503 if (TREE_CODE (initial_value) == STRING_CST)
6504 {
6505 int eltsize
6506 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
6507 maxindex = size_int (TREE_STRING_LENGTH (initial_value)/eltsize - 1);
6508 }
6509 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
6510 {
6511 VEC(constructor_elt,gc) *v = CONSTRUCTOR_ELTS (initial_value);
6512
6513 if (VEC_empty (constructor_elt, v))
6514 {
6515 if (pedantic)
6516 failure = 3;
6517 maxindex = integer_minus_one_node;
6518 }
6519 else
6520 {
6521 tree curindex;
6522 unsigned HOST_WIDE_INT cnt;
6523 constructor_elt *ce;
6524
6525 if (VEC_index (constructor_elt, v, 0)->index)
6526 maxindex = fold_convert (sizetype,
6527 VEC_index (constructor_elt,
6528 v, 0)->index);
6529 curindex = maxindex;
6530
6531 for (cnt = 1;
6532 VEC_iterate (constructor_elt, v, cnt, ce);
6533 cnt++)
6534 {
6535 if (ce->index)
6536 curindex = fold_convert (sizetype, ce->index);
6537 else
6538 curindex = size_binop (PLUS_EXPR, curindex, size_one_node);
6539
6540 if (tree_int_cst_lt (maxindex, curindex))
6541 maxindex = curindex;
6542 }
6543 }
6544 }
6545 else
6546 {
6547 /* Make an error message unless that happened already. */
6548 if (initial_value != error_mark_node)
6549 failure = 1;
6550 }
6551 }
6552 else
6553 {
6554 failure = 2;
6555 if (!do_default)
6556 return failure;
6557 }
6558
6559 type = *ptype;
6560 elt = TREE_TYPE (type);
6561 quals = TYPE_QUALS (strip_array_types (elt));
6562 if (quals == 0)
6563 unqual_elt = elt;
6564 else
6565 unqual_elt = c_build_qualified_type (elt, TYPE_UNQUALIFIED);
6566
6567 /* Using build_distinct_type_copy and modifying things afterward instead
6568 of using build_array_type to create a new type preserves all of the
6569 TYPE_LANG_FLAG_? bits that the front end may have set. */
6570 main_type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
6571 TREE_TYPE (main_type) = unqual_elt;
6572 TYPE_DOMAIN (main_type) = build_index_type (maxindex);
6573 layout_type (main_type);
6574
6575 /* Make sure we have the canonical MAIN_TYPE. */
6576 hashcode = iterative_hash_object (TYPE_HASH (unqual_elt), hashcode);
6577 hashcode = iterative_hash_object (TYPE_HASH (TYPE_DOMAIN (main_type)),
6578 hashcode);
6579 main_type = type_hash_canon (hashcode, main_type);
6580
6581 if (quals == 0)
6582 type = main_type;
6583 else
6584 type = c_build_qualified_type (main_type, quals);
6585
6586 *ptype = type;
6587 return failure;
6588 }
6589
6590 \f
6591 /* Used to help initialize the builtin-types.def table. When a type of
6592 the correct size doesn't exist, use error_mark_node instead of NULL.
6593 The later results in segfaults even when a decl using the type doesn't
6594 get invoked. */
6595
6596 tree
6597 builtin_type_for_size (int size, bool unsignedp)
6598 {
6599 tree type = lang_hooks.types.type_for_size (size, unsignedp);
6600 return type ? type : error_mark_node;
6601 }
6602
6603 /* A helper function for resolve_overloaded_builtin in resolving the
6604 overloaded __sync_ builtins. Returns a positive power of 2 if the
6605 first operand of PARAMS is a pointer to a supported data type.
6606 Returns 0 if an error is encountered. */
6607
6608 static int
6609 sync_resolve_size (tree function, tree params)
6610 {
6611 tree type;
6612 int size;
6613
6614 if (params == NULL)
6615 {
6616 error ("too few arguments to function %qE", function);
6617 return 0;
6618 }
6619
6620 type = TREE_TYPE (TREE_VALUE (params));
6621 if (TREE_CODE (type) != POINTER_TYPE)
6622 goto incompatible;
6623
6624 type = TREE_TYPE (type);
6625 if (!INTEGRAL_TYPE_P (type) && !POINTER_TYPE_P (type))
6626 goto incompatible;
6627
6628 size = tree_low_cst (TYPE_SIZE_UNIT (type), 1);
6629 if (size == 1 || size == 2 || size == 4 || size == 8 || size == 16)
6630 return size;
6631
6632 incompatible:
6633 error ("incompatible type for argument %d of %qE", 1, function);
6634 return 0;
6635 }
6636
6637 /* A helper function for resolve_overloaded_builtin. Adds casts to
6638 PARAMS to make arguments match up with those of FUNCTION. Drops
6639 the variadic arguments at the end. Returns false if some error
6640 was encountered; true on success. */
6641
6642 static bool
6643 sync_resolve_params (tree orig_function, tree function, tree params)
6644 {
6645 tree arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
6646 tree ptype;
6647 int number;
6648
6649 /* We've declared the implementation functions to use "volatile void *"
6650 as the pointer parameter, so we shouldn't get any complaints from the
6651 call to check_function_arguments what ever type the user used. */
6652 arg_types = TREE_CHAIN (arg_types);
6653 ptype = TREE_TYPE (TREE_TYPE (TREE_VALUE (params)));
6654 number = 2;
6655
6656 /* For the rest of the values, we need to cast these to FTYPE, so that we
6657 don't get warnings for passing pointer types, etc. */
6658 while (arg_types != void_list_node)
6659 {
6660 tree val;
6661
6662 params = TREE_CHAIN (params);
6663 if (params == NULL)
6664 {
6665 error ("too few arguments to function %qE", orig_function);
6666 return false;
6667 }
6668
6669 /* ??? Ideally for the first conversion we'd use convert_for_assignment
6670 so that we get warnings for anything that doesn't match the pointer
6671 type. This isn't portable across the C and C++ front ends atm. */
6672 val = TREE_VALUE (params);
6673 val = convert (ptype, val);
6674 val = convert (TREE_VALUE (arg_types), val);
6675 TREE_VALUE (params) = val;
6676
6677 arg_types = TREE_CHAIN (arg_types);
6678 number++;
6679 }
6680
6681 /* The definition of these primitives is variadic, with the remaining
6682 being "an optional list of variables protected by the memory barrier".
6683 No clue what that's supposed to mean, precisely, but we consider all
6684 call-clobbered variables to be protected so we're safe. */
6685 TREE_CHAIN (params) = NULL;
6686
6687 return true;
6688 }
6689
6690 /* A helper function for resolve_overloaded_builtin. Adds a cast to
6691 RESULT to make it match the type of the first pointer argument in
6692 PARAMS. */
6693
6694 static tree
6695 sync_resolve_return (tree params, tree result)
6696 {
6697 tree ptype = TREE_TYPE (TREE_TYPE (TREE_VALUE (params)));
6698 ptype = TYPE_MAIN_VARIANT (ptype);
6699 return convert (ptype, result);
6700 }
6701
6702 /* Some builtin functions are placeholders for other expressions. This
6703 function should be called immediately after parsing the call expression
6704 before surrounding code has committed to the type of the expression.
6705
6706 FUNCTION is the DECL that has been invoked; it is known to be a builtin.
6707 PARAMS is the argument list for the call. The return value is non-null
6708 when expansion is complete, and null if normal processing should
6709 continue. */
6710
6711 tree
6712 resolve_overloaded_builtin (tree function, tree params)
6713 {
6714 enum built_in_function orig_code = DECL_FUNCTION_CODE (function);
6715 switch (DECL_BUILT_IN_CLASS (function))
6716 {
6717 case BUILT_IN_NORMAL:
6718 break;
6719 case BUILT_IN_MD:
6720 if (targetm.resolve_overloaded_builtin)
6721 return targetm.resolve_overloaded_builtin (function, params);
6722 else
6723 return NULL_TREE;
6724 default:
6725 return NULL_TREE;
6726 }
6727
6728 /* Handle BUILT_IN_NORMAL here. */
6729 switch (orig_code)
6730 {
6731 case BUILT_IN_FETCH_AND_ADD_N:
6732 case BUILT_IN_FETCH_AND_SUB_N:
6733 case BUILT_IN_FETCH_AND_OR_N:
6734 case BUILT_IN_FETCH_AND_AND_N:
6735 case BUILT_IN_FETCH_AND_XOR_N:
6736 case BUILT_IN_FETCH_AND_NAND_N:
6737 case BUILT_IN_ADD_AND_FETCH_N:
6738 case BUILT_IN_SUB_AND_FETCH_N:
6739 case BUILT_IN_OR_AND_FETCH_N:
6740 case BUILT_IN_AND_AND_FETCH_N:
6741 case BUILT_IN_XOR_AND_FETCH_N:
6742 case BUILT_IN_NAND_AND_FETCH_N:
6743 case BUILT_IN_BOOL_COMPARE_AND_SWAP_N:
6744 case BUILT_IN_VAL_COMPARE_AND_SWAP_N:
6745 case BUILT_IN_LOCK_TEST_AND_SET_N:
6746 case BUILT_IN_LOCK_RELEASE_N:
6747 {
6748 int n = sync_resolve_size (function, params);
6749 tree new_function, result;
6750
6751 if (n == 0)
6752 return error_mark_node;
6753
6754 new_function = built_in_decls[orig_code + exact_log2 (n) + 1];
6755 if (!sync_resolve_params (function, new_function, params))
6756 return error_mark_node;
6757
6758 result = build_function_call (new_function, params);
6759 if (orig_code != BUILT_IN_BOOL_COMPARE_AND_SWAP_N
6760 && orig_code != BUILT_IN_LOCK_RELEASE_N)
6761 result = sync_resolve_return (params, result);
6762
6763 return result;
6764 }
6765
6766 default:
6767 return NULL_TREE;
6768 }
6769 }
6770
6771 /* Ignoring their sign, return true if two scalar types are the same. */
6772 bool
6773 same_scalar_type_ignoring_signedness (tree t1, tree t2)
6774 {
6775 enum tree_code c1 = TREE_CODE (t1), c2 = TREE_CODE (t2);
6776
6777 gcc_assert ((c1 == INTEGER_TYPE || c1 == REAL_TYPE)
6778 && (c2 == INTEGER_TYPE || c2 == REAL_TYPE));
6779
6780 /* Equality works here because c_common_signed_type uses
6781 TYPE_MAIN_VARIANT. */
6782 return lang_hooks.types.signed_type (t1)
6783 == lang_hooks.types.signed_type (t2);
6784 }
6785
6786 /* Check for missing format attributes on function pointers. LTYPE is
6787 the new type or left-hand side type. RTYPE is the old type or
6788 right-hand side type. Returns TRUE if LTYPE is missing the desired
6789 attribute. */
6790
6791 bool
6792 check_missing_format_attribute (tree ltype, tree rtype)
6793 {
6794 tree const ttr = TREE_TYPE (rtype), ttl = TREE_TYPE (ltype);
6795 tree ra;
6796
6797 for (ra = TYPE_ATTRIBUTES (ttr); ra; ra = TREE_CHAIN (ra))
6798 if (is_attribute_p ("format", TREE_PURPOSE (ra)))
6799 break;
6800 if (ra)
6801 {
6802 tree la;
6803 for (la = TYPE_ATTRIBUTES (ttl); la; la = TREE_CHAIN (la))
6804 if (is_attribute_p ("format", TREE_PURPOSE (la)))
6805 break;
6806 return !la;
6807 }
6808 else
6809 return false;
6810 }
6811
6812 /* Subscripting with type char is likely to lose on a machine where
6813 chars are signed. So warn on any machine, but optionally. Don't
6814 warn for unsigned char since that type is safe. Don't warn for
6815 signed char because anyone who uses that must have done so
6816 deliberately. Furthermore, we reduce the false positive load by
6817 warning only for non-constant value of type char. */
6818
6819 void
6820 warn_array_subscript_with_type_char (tree index)
6821 {
6822 if (TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node
6823 && TREE_CODE (index) != INTEGER_CST)
6824 warning (OPT_Wchar_subscripts, "array subscript has type %<char%>");
6825 }
6826
6827 /* Implement -Wparentheses for the unexpected C precedence rules, to
6828 cover cases like x + y << z which readers are likely to
6829 misinterpret. We have seen an expression in which CODE is a binary
6830 operator used to combine expressions headed by CODE_LEFT and
6831 CODE_RIGHT. CODE_LEFT and CODE_RIGHT may be ERROR_MARK, which
6832 means that that side of the expression was not formed using a
6833 binary operator, or it was enclosed in parentheses. */
6834
6835 void
6836 warn_about_parentheses (enum tree_code code, enum tree_code code_left,
6837 enum tree_code code_right)
6838 {
6839 if (!warn_parentheses)
6840 return;
6841
6842 if (code == LSHIFT_EXPR || code == RSHIFT_EXPR)
6843 {
6844 if (code_left == PLUS_EXPR || code_left == MINUS_EXPR
6845 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
6846 warning (OPT_Wparentheses,
6847 "suggest parentheses around + or - inside shift");
6848 }
6849
6850 if (code == TRUTH_ORIF_EXPR)
6851 {
6852 if (code_left == TRUTH_ANDIF_EXPR
6853 || code_right == TRUTH_ANDIF_EXPR)
6854 warning (OPT_Wparentheses,
6855 "suggest parentheses around && within ||");
6856 }
6857
6858 if (code == BIT_IOR_EXPR)
6859 {
6860 if (code_left == BIT_AND_EXPR || code_left == BIT_XOR_EXPR
6861 || code_left == PLUS_EXPR || code_left == MINUS_EXPR
6862 || code_right == BIT_AND_EXPR || code_right == BIT_XOR_EXPR
6863 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
6864 warning (OPT_Wparentheses,
6865 "suggest parentheses around arithmetic in operand of |");
6866 /* Check cases like x|y==z */
6867 if (TREE_CODE_CLASS (code_left) == tcc_comparison
6868 || TREE_CODE_CLASS (code_right) == tcc_comparison)
6869 warning (OPT_Wparentheses,
6870 "suggest parentheses around comparison in operand of |");
6871 }
6872
6873 if (code == BIT_XOR_EXPR)
6874 {
6875 if (code_left == BIT_AND_EXPR
6876 || code_left == PLUS_EXPR || code_left == MINUS_EXPR
6877 || code_right == BIT_AND_EXPR
6878 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
6879 warning (OPT_Wparentheses,
6880 "suggest parentheses around arithmetic in operand of ^");
6881 /* Check cases like x^y==z */
6882 if (TREE_CODE_CLASS (code_left) == tcc_comparison
6883 || TREE_CODE_CLASS (code_right) == tcc_comparison)
6884 warning (OPT_Wparentheses,
6885 "suggest parentheses around comparison in operand of ^");
6886 }
6887
6888 if (code == BIT_AND_EXPR)
6889 {
6890 if (code_left == PLUS_EXPR || code_left == MINUS_EXPR
6891 || code_right == PLUS_EXPR || code_right == MINUS_EXPR)
6892 warning (OPT_Wparentheses,
6893 "suggest parentheses around + or - in operand of &");
6894 /* Check cases like x&y==z */
6895 if (TREE_CODE_CLASS (code_left) == tcc_comparison
6896 || TREE_CODE_CLASS (code_right) == tcc_comparison)
6897 warning (OPT_Wparentheses,
6898 "suggest parentheses around comparison in operand of &");
6899 }
6900
6901 if (code == EQ_EXPR || code == NE_EXPR)
6902 {
6903 if (TREE_CODE_CLASS (code_left) == tcc_comparison
6904 || TREE_CODE_CLASS (code_right) == tcc_comparison)
6905 warning (OPT_Wparentheses,
6906 "suggest parentheses around comparison in operand of %s",
6907 code == EQ_EXPR ? "==" : "!=");
6908 }
6909 else if (TREE_CODE_CLASS (code) == tcc_comparison)
6910 {
6911 if ((TREE_CODE_CLASS (code_left) == tcc_comparison
6912 && code_left != NE_EXPR && code_left != EQ_EXPR)
6913 || (TREE_CODE_CLASS (code_right) == tcc_comparison
6914 && code_right != NE_EXPR && code_right != EQ_EXPR))
6915 warning (OPT_Wparentheses, "comparisons like X<=Y<=Z do not "
6916 "have their mathematical meaning");
6917 }
6918 }
6919
6920 /* If LABEL (a LABEL_DECL) has not been used, issue a warning. */
6921
6922 void
6923 warn_for_unused_label (tree label)
6924 {
6925 if (!TREE_USED (label))
6926 {
6927 if (DECL_INITIAL (label))
6928 warning (OPT_Wunused_label, "label %q+D defined but not used", label);
6929 else
6930 warning (OPT_Wunused_label, "label %q+D declared but not defined", label);
6931 }
6932 }
6933
6934 /* If FNDECL is a static constructor or destructor, add it to the list
6935 of functions to be called by the file scope initialization
6936 function. */
6937
6938 void
6939 c_record_cdtor_fn (tree fndecl)
6940 {
6941 if (targetm.have_ctors_dtors)
6942 return;
6943
6944 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6945 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6946 if (DECL_STATIC_DESTRUCTOR (fndecl))
6947 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6948 }
6949
6950 /* Synthesize a function which calls all the global ctors or global
6951 dtors in this file. This is only used for targets which do not
6952 support .ctors/.dtors sections. FIXME: Migrate into cgraph. */
6953 static void
6954 build_cdtor (int method_type, tree cdtors)
6955 {
6956 tree body = 0;
6957
6958 if (!cdtors)
6959 return;
6960
6961 for (; cdtors; cdtors = TREE_CHAIN (cdtors))
6962 append_to_statement_list (build_function_call (TREE_VALUE (cdtors), 0),
6963 &body);
6964
6965 cgraph_build_static_cdtor (method_type, body, DEFAULT_INIT_PRIORITY);
6966 }
6967
6968 /* Generate functions to call static constructors and destructors
6969 for targets that do not support .ctors/.dtors sections. These
6970 functions have magic names which are detected by collect2. */
6971
6972 void
6973 c_build_cdtor_fns (void)
6974 {
6975 if (!targetm.have_ctors_dtors)
6976 {
6977 build_cdtor ('I', static_ctors);
6978 static_ctors = NULL_TREE;
6979 build_cdtor ('D', static_dtors);
6980 static_dtors = NULL_TREE;
6981 }
6982 else
6983 {
6984 gcc_assert (!static_ctors);
6985 gcc_assert (!static_dtors);
6986 }
6987 }
6988
6989 #ifndef TARGET_HAS_TARGETCM
6990 struct gcc_targetcm targetcm = TARGETCM_INITIALIZER;
6991 #endif
6992
6993 #include "gt-c-common.h"