OSDN Git Service

PR c++/8795
[pf3gnuchains/gcc-fork.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 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, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, 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
46 cpp_reader *parse_in;           /* Declared in c-pragma.h.  */
47
48 /* We let tm.h override the types used here, to handle trivial differences
49    such as the choice of unsigned int or long unsigned int for size_t.
50    When machines start needing nontrivial differences in the size type,
51    it would be best to do something here to figure out automatically
52    from other information what type to use.  */
53
54 #ifndef SIZE_TYPE
55 #define SIZE_TYPE "long unsigned int"
56 #endif
57
58 #ifndef WCHAR_TYPE
59 #define WCHAR_TYPE "int"
60 #endif
61
62 /* WCHAR_TYPE gets overridden by -fshort-wchar.  */
63 #define MODIFIED_WCHAR_TYPE \
64         (flag_short_wchar ? "short unsigned int" : WCHAR_TYPE)
65
66 #ifndef PTRDIFF_TYPE
67 #define PTRDIFF_TYPE "long int"
68 #endif
69
70 #ifndef WINT_TYPE
71 #define WINT_TYPE "unsigned int"
72 #endif
73
74 #ifndef INTMAX_TYPE
75 #define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE)     \
76                      ? "int"                                    \
77                      : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
78                         ? "long int"                            \
79                         : "long long int"))
80 #endif
81
82 #ifndef UINTMAX_TYPE
83 #define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE)    \
84                      ? "unsigned int"                           \
85                      : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
86                         ? "long unsigned int"                   \
87                         : "long long unsigned int"))
88 #endif
89
90 /* The following symbols are subsumed in the c_global_trees array, and
91    listed here individually for documentation purposes.
92
93    INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
94
95         tree short_integer_type_node;
96         tree long_integer_type_node;
97         tree long_long_integer_type_node;
98
99         tree short_unsigned_type_node;
100         tree long_unsigned_type_node;
101         tree long_long_unsigned_type_node;
102
103         tree truthvalue_type_node;
104         tree truthvalue_false_node;
105         tree truthvalue_true_node;
106
107         tree ptrdiff_type_node;
108
109         tree unsigned_char_type_node;
110         tree signed_char_type_node;
111         tree wchar_type_node;
112         tree signed_wchar_type_node;
113         tree unsigned_wchar_type_node;
114
115         tree float_type_node;
116         tree double_type_node;
117         tree long_double_type_node;
118
119         tree complex_integer_type_node;
120         tree complex_float_type_node;
121         tree complex_double_type_node;
122         tree complex_long_double_type_node;
123
124         tree intQI_type_node;
125         tree intHI_type_node;
126         tree intSI_type_node;
127         tree intDI_type_node;
128         tree intTI_type_node;
129
130         tree unsigned_intQI_type_node;
131         tree unsigned_intHI_type_node;
132         tree unsigned_intSI_type_node;
133         tree unsigned_intDI_type_node;
134         tree unsigned_intTI_type_node;
135
136         tree widest_integer_literal_type_node;
137         tree widest_unsigned_literal_type_node;
138
139    Nodes for types `void *' and `const void *'.
140
141         tree ptr_type_node, const_ptr_type_node;
142
143    Nodes for types `char *' and `const char *'.
144
145         tree string_type_node, const_string_type_node;
146
147    Type `char[SOMENUMBER]'.
148    Used when an array of char is needed and the size is irrelevant.
149
150         tree char_array_type_node;
151
152    Type `int[SOMENUMBER]' or something like it.
153    Used when an array of int needed and the size is irrelevant.
154
155         tree int_array_type_node;
156
157    Type `wchar_t[SOMENUMBER]' or something like it.
158    Used when a wide string literal is created.
159
160         tree wchar_array_type_node;
161
162    Type `int ()' -- used for implicit declaration of functions.
163
164         tree default_function_type;
165
166    A VOID_TYPE node, packaged in a TREE_LIST.
167
168         tree void_list_node;
169
170   The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
171   and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
172   VAR_DECLS, but C++ does.)
173
174         tree function_name_decl_node;
175         tree pretty_function_name_decl_node;
176         tree c99_function_name_decl_node;
177
178   Stack of nested function name VAR_DECLs.
179
180         tree saved_function_name_decls;
181
182 */
183
184 tree c_global_trees[CTI_MAX];
185
186 /* TRUE if a code represents a statement.  The front end init
187    langhook should take care of initialization of this array.  */
188
189 bool statement_code_p[MAX_TREE_CODES];
190 \f
191 /* Switches common to the C front ends.  */
192
193 /* Nonzero if prepreprocessing only.  */
194
195 int flag_preprocess_only;
196
197 /* Nonzero means don't output line number information.  */
198
199 char flag_no_line_commands;
200
201 /* Nonzero causes -E output not to be done, but directives such as
202    #define that have side effects are still obeyed.  */
203
204 char flag_no_output;
205
206 /* Nonzero means dump macros in some fashion.  */
207
208 char flag_dump_macros;
209
210 /* Nonzero means pass #include lines through to the output.  */
211
212 char flag_dump_includes;
213
214 /* The file name to which we should write a precompiled header, or
215    NULL if no header will be written in this compile.  */
216
217 const char *pch_file;
218
219 /* Nonzero if an ISO standard was selected.  It rejects macros in the
220    user's namespace.  */
221 int flag_iso;
222
223 /* Nonzero if -undef was given.  It suppresses target built-in macros
224    and assertions.  */
225 int flag_undef;
226
227 /* Nonzero means don't recognize the non-ANSI builtin functions.  */
228
229 int flag_no_builtin;
230
231 /* Nonzero means don't recognize the non-ANSI builtin functions.
232    -ansi sets this.  */
233
234 int flag_no_nonansi_builtin;
235
236 /* Nonzero means give `double' the same size as `float'.  */
237
238 int flag_short_double;
239
240 /* Nonzero means give `wchar_t' the same size as `short'.  */
241
242 int flag_short_wchar;
243
244 /* Nonzero means allow Microsoft extensions without warnings or errors.  */
245 int flag_ms_extensions;
246
247 /* Nonzero means don't recognize the keyword `asm'.  */
248
249 int flag_no_asm;
250
251 /* Nonzero means give string constants the type `const char *', as mandated
252    by the standard.  */
253
254 int flag_const_strings;
255
256 /* Nonzero means to treat bitfields as signed unless they say `unsigned'.  */
257
258 int flag_signed_bitfields = 1;
259 int explicit_flag_signed_bitfields;
260
261 /* Nonzero means warn about pointer casts that can drop a type qualifier
262    from the pointer target type.  */
263
264 int warn_cast_qual;
265
266 /* Warn about functions which might be candidates for format attributes.  */
267
268 int warn_missing_format_attribute;
269
270 /* Nonzero means warn about sizeof(function) or addition/subtraction
271    of function pointers.  */
272
273 int warn_pointer_arith;
274
275 /* Nonzero means warn for any global function def
276    without separate previous prototype decl.  */
277
278 int warn_missing_prototypes;
279
280 /* Warn if adding () is suggested.  */
281
282 int warn_parentheses;
283
284 /* Warn if initializer is not completely bracketed.  */
285
286 int warn_missing_braces;
287
288 /* Warn about comparison of signed and unsigned values.
289    If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified
290    (in which case -Wextra gets to decide).  */
291
292 int warn_sign_compare = -1;
293
294 /* Nonzero means warn about usage of long long when `-pedantic'.  */
295
296 int warn_long_long = 1;
297
298 /* Nonzero means warn about deprecated conversion from string constant to
299    `char *'.  */
300
301 int warn_write_strings;
302
303 /* Nonzero means warn about multiple (redundant) decls for the same single
304    variable or function.  */
305
306 int warn_redundant_decls;
307
308 /* Warn about testing equality of floating point numbers.  */
309
310 int warn_float_equal;
311
312 /* Warn about a subscript that has type char.  */
313
314 int warn_char_subscripts;
315
316 /* Warn if a type conversion is done that might have confusing results.  */
317
318 int warn_conversion;
319
320 /* Warn about #pragma directives that are not recognized.  */
321
322 int warn_unknown_pragmas; /* Tri state variable.  */
323
324 /* Warn about format/argument anomalies in calls to formatted I/O functions
325    (*printf, *scanf, strftime, strfmon, etc.).  */
326
327 int warn_format;
328
329 /* Warn about Y2K problems with strftime formats.  */
330
331 int warn_format_y2k;
332
333 /* Warn about excess arguments to formats.  */
334
335 int warn_format_extra_args;
336
337 /* Warn about zero-length formats.  */
338
339 int warn_format_zero_length;
340
341 /* Warn about non-literal format arguments.  */
342
343 int warn_format_nonliteral;
344
345 /* Warn about possible security problems with calls to format functions.  */
346
347 int warn_format_security;
348
349
350 /* C/ObjC language option variables.  */
351
352
353 /* Nonzero means message about use of implicit function declarations;
354  1 means warning; 2 means error.  */
355
356 int mesg_implicit_function_declaration = -1;
357
358 /* Nonzero means allow type mismatches in conditional expressions;
359    just make their values `void'.  */
360
361 int flag_cond_mismatch;
362
363 /* Nonzero means enable C89 Amendment 1 features.  */
364
365 int flag_isoc94;
366
367 /* Nonzero means use the ISO C99 dialect of C.  */
368
369 int flag_isoc99;
370
371 /* Nonzero means that we have builtin functions, and main is an int */
372
373 int flag_hosted = 1;
374
375 /* Nonzero means warn when casting a function call to a type that does
376    not match the return type (e.g. (float)sqrt() or (anything*)malloc()
377    when there is no previous declaration of sqrt or malloc.  */
378
379 int warn_bad_function_cast;
380
381 /* Warn about traditional constructs whose meanings changed in ANSI C.  */
382
383 int warn_traditional;
384
385 /* Nonzero means warn for a declaration found after a statement.  */
386
387 int warn_declaration_after_statement;
388
389 /* Nonzero means warn for non-prototype function decls
390    or non-prototyped defs without previous prototype.  */
391
392 int warn_strict_prototypes;
393
394 /* Nonzero means warn for any global function def
395    without separate previous decl.  */
396
397 int warn_missing_declarations;
398
399 /* Nonzero means warn about declarations of objects not at
400    file-scope level and about *all* declarations of functions (whether
401    or static) not at file-scope level.  Note that we exclude
402    implicit function declarations.  To get warnings about those, use
403    -Wimplicit.  */
404
405 int warn_nested_externs;
406
407 /* Warn if main is suspicious.  */
408
409 int warn_main;
410
411 /* Nonzero means warn about possible violations of sequence point rules.  */
412
413 int warn_sequence_point;
414
415 /* Nonzero means warn about uninitialized variable when it is initialized with itself.
416    For example: int i = i;, GCC will not warn about this when warn_init_self is nonzero.  */
417
418 int warn_init_self;
419
420 /* Nonzero means to warn about compile-time division by zero.  */
421 int warn_div_by_zero = 1;
422
423 /* Nonzero means warn about use of implicit int.  */
424
425 int warn_implicit_int;
426
427 /* Warn about NULL being passed to argument slots marked as requiring
428    non-NULL.  */
429
430 int warn_nonnull;
431
432
433 /* ObjC language option variables.  */
434
435
436 /* Open and close the file for outputting class declarations, if
437    requested (ObjC).  */
438
439 int flag_gen_declaration;
440
441 /* Generate code for GNU or NeXT runtime environment.  */
442
443 #ifdef NEXT_OBJC_RUNTIME
444 int flag_next_runtime = 1;
445 #else
446 int flag_next_runtime = 0;
447 #endif
448
449 /* Tells the compiler that this is a special run.  Do not perform any
450    compiling, instead we are to test some platform dependent features
451    and output a C header file with appropriate definitions.  */
452
453 int print_struct_values;
454
455 /* ???.  Undocumented.  */
456
457 const char *constant_string_class_name;
458
459 /* Warn if multiple methods are seen for the same selector, but with
460    different argument types.  Performs the check on the whole selector
461    table at the end of compilation.  */
462
463 int warn_selector;
464
465 /* Warn if a @selector() is found, and no method with that selector
466    has been previously declared.  The check is done on each
467    @selector() as soon as it is found - so it warns about forward
468    declarations.  */
469
470 int warn_undeclared_selector;
471
472 /* Warn if methods required by a protocol are not implemented in the
473    class adopting it.  When turned off, methods inherited to that
474    class are also considered implemented.  */
475
476 int warn_protocol = 1;
477
478
479 /* C++ language option variables.  */
480
481
482 /* Nonzero means don't recognize any extension keywords.  */
483
484 int flag_no_gnu_keywords;
485
486 /* Nonzero means do emit exported implementations of functions even if
487    they can be inlined.  */
488
489 int flag_implement_inlines = 1;
490
491 /* Nonzero means do emit exported implementations of templates, instead of
492    multiple static copies in each file that needs a definition.  */
493
494 int flag_external_templates;
495
496 /* Nonzero means that the decision to emit or not emit the implementation of a
497    template depends on where the template is instantiated, rather than where
498    it is defined.  */
499
500 int flag_alt_external_templates;
501
502 /* Nonzero means that implicit instantiations will be emitted if needed.  */
503
504 int flag_implicit_templates = 1;
505
506 /* Nonzero means that implicit instantiations of inline templates will be
507    emitted if needed, even if instantiations of non-inline templates
508    aren't.  */
509
510 int flag_implicit_inline_templates = 1;
511
512 /* Nonzero means generate separate instantiation control files and
513    juggle them at link time.  */
514
515 int flag_use_repository;
516
517 /* Nonzero if we want to issue diagnostics that the standard says are not
518    required.  */
519
520 int flag_optional_diags = 1;
521
522 /* Nonzero means we should attempt to elide constructors when possible.  */
523
524 int flag_elide_constructors = 1;
525
526 /* Nonzero means that member functions defined in class scope are
527    inline by default.  */
528
529 int flag_default_inline = 1;
530
531 /* Controls whether compiler generates 'type descriptor' that give
532    run-time type information.  */
533
534 int flag_rtti = 1;
535
536 /* Nonzero if we want to conserve space in the .o files.  We do this
537    by putting uninitialized data and runtime initialized data into
538    .common instead of .data at the expense of not flagging multiple
539    definitions.  */
540
541 int flag_conserve_space;
542
543 /* Nonzero if we want to obey access control semantics.  */
544
545 int flag_access_control = 1;
546
547 /* Nonzero if we want to check the return value of new and avoid calling
548    constructors if it is a null pointer.  */
549
550 int flag_check_new;
551
552 /* Nonzero if we want the new ISO rules for pushing a new scope for `for'
553    initialization variables.
554    0: Old rules, set by -fno-for-scope.
555    2: New ISO rules, set by -ffor-scope.
556    1: Try to implement new ISO rules, but with backup compatibility
557    (and warnings).  This is the default, for now.  */
558
559 int flag_new_for_scope = 1;
560
561 /* Nonzero if we want to emit defined symbols with common-like linkage as
562    weak symbols where possible, in order to conform to C++ semantics.
563    Otherwise, emit them as local symbols.  */
564
565 int flag_weak = 1;
566
567 /* 0 means we want the preprocessor to not emit line directives for
568    the current working directory.  1 means we want it to do it.  -1
569    means we should decide depending on whether debugging information
570    is being emitted or not.  */
571
572 int flag_working_directory = -1;
573
574 /* Nonzero to use __cxa_atexit, rather than atexit, to register
575    destructors for local statics and global objects.  */
576
577 int flag_use_cxa_atexit = DEFAULT_USE_CXA_ATEXIT;
578
579 /* Nonzero means make the default pedwarns warnings instead of errors.
580    The value of this flag is ignored if -pedantic is specified.  */
581
582 int flag_permissive;
583
584 /* Nonzero means to implement standard semantics for exception
585    specifications, calling unexpected if an exception is thrown that
586    doesn't match the specification.  Zero means to treat them as
587    assertions and optimize accordingly, but not check them.  */
588
589 int flag_enforce_eh_specs = 1;
590
591 /*  The version of the C++ ABI in use.  The following values are
592     allowed:
593
594     0: The version of the ABI believed most conformant with the
595        C++ ABI specification.  This ABI may change as bugs are
596        discovered and fixed.  Therefore, 0 will not necessarily
597        indicate the same ABI in different versions of G++.
598
599     1: The version of the ABI first used in G++ 3.2.
600
601     Additional positive integers will be assigned as new versions of
602     the ABI become the default version of the ABI.  */
603
604 int flag_abi_version = 1;
605
606 /* Nonzero means warn about things that will change when compiling
607    with an ABI-compliant compiler.  */
608
609 int warn_abi = 0;
610
611 /* Nonzero means warn about invalid uses of offsetof.  */
612
613 int warn_invalid_offsetof = 1;
614
615 /* Nonzero means warn about implicit declarations.  */
616
617 int warn_implicit = 1;
618
619 /* Nonzero means warn when all ctors or dtors are private, and the class
620    has no friends.  */
621
622 int warn_ctor_dtor_privacy = 0;
623
624 /* Nonzero means warn in function declared in derived class has the
625    same name as a virtual in the base class, but fails to match the
626    type signature of any virtual function in the base class.  */
627
628 int warn_overloaded_virtual;
629
630 /* Nonzero means warn when declaring a class that has a non virtual
631    destructor, when it really ought to have a virtual one.  */
632
633 int warn_nonvdtor;
634
635 /* Nonzero means warn when the compiler will reorder code.  */
636
637 int warn_reorder;
638
639 /* Nonzero means warn when synthesis behavior differs from Cfront's.  */
640
641 int warn_synth;
642
643 /* Nonzero means warn when we convert a pointer to member function
644    into a pointer to (void or function).  */
645
646 int warn_pmf2ptr = 1;
647
648 /* Nonzero means warn about violation of some Effective C++ style rules.  */
649
650 int warn_ecpp;
651
652 /* Nonzero means warn where overload resolution chooses a promotion from
653    unsigned to signed over a conversion to an unsigned of the same size.  */
654
655 int warn_sign_promo;
656
657 /* Nonzero means warn when an old-style cast is used.  */
658
659 int warn_old_style_cast;
660
661 /* Nonzero means warn when non-templatized friend functions are
662    declared within a template */
663
664 int warn_nontemplate_friend = 1;
665
666 /* Nonzero means complain about deprecated features.  */
667
668 int warn_deprecated = 1;
669
670 /* Maximum template instantiation depth.  This limit is rather
671    arbitrary, but it exists to limit the time it takes to notice
672    infinite template instantiations.  */
673
674 int max_tinst_depth = 500;
675
676
677
678 /* The elements of `ridpointers' are identifier nodes for the reserved
679    type names and storage classes.  It is indexed by a RID_... value.  */
680 tree *ridpointers;
681
682 tree (*make_fname_decl) (tree, int);
683
684 /* If non-NULL, the address of a language-specific function that takes
685    any action required right before expand_function_end is called.  */
686 void (*lang_expand_function_end) (void);
687
688 /* Nonzero means the expression being parsed will never be evaluated.
689    This is a count, since unevaluated expressions can nest.  */
690 int skip_evaluation;
691
692 /* Information about how a function name is generated.  */
693 struct fname_var_t
694 {
695   tree *const decl;     /* pointer to the VAR_DECL.  */
696   const unsigned rid;   /* RID number for the identifier.  */
697   const int pretty;     /* How pretty is it? */
698 };
699
700 /* The three ways of getting then name of the current function.  */
701
702 const struct fname_var_t fname_vars[] =
703 {
704   /* C99 compliant __func__, must be first.  */
705   {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
706   /* GCC __FUNCTION__ compliant.  */
707   {&function_name_decl_node, RID_FUNCTION_NAME, 0},
708   /* GCC __PRETTY_FUNCTION__ compliant.  */
709   {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
710   {NULL, 0, 0},
711 };
712
713 static int constant_fits_type_p (tree, tree);
714
715 /* Keep a stack of if statements.  We record the number of compound
716    statements seen up to the if keyword, as well as the line number
717    and file of the if.  If a potentially ambiguous else is seen, that
718    fact is recorded; the warning is issued when we can be sure that
719    the enclosing if statement does not have an else branch.  */
720 typedef struct
721 {
722   int compstmt_count;
723   location_t locus;
724   int needs_warning;
725   tree if_stmt;
726 } if_elt;
727
728 static if_elt *if_stack;
729
730 /* Amount of space in the if statement stack.  */
731 static int if_stack_space = 0;
732
733 /* Stack pointer.  */
734 static int if_stack_pointer = 0;
735
736 static tree handle_packed_attribute (tree *, tree, tree, int, bool *);
737 static tree handle_nocommon_attribute (tree *, tree, tree, int, bool *);
738 static tree handle_common_attribute (tree *, tree, tree, int, bool *);
739 static tree handle_noreturn_attribute (tree *, tree, tree, int, bool *);
740 static tree handle_noinline_attribute (tree *, tree, tree, int, bool *);
741 static tree handle_always_inline_attribute (tree *, tree, tree, int,
742                                             bool *);
743 static tree handle_used_attribute (tree *, tree, tree, int, bool *);
744 static tree handle_unused_attribute (tree *, tree, tree, int, bool *);
745 static tree handle_const_attribute (tree *, tree, tree, int, bool *);
746 static tree handle_transparent_union_attribute (tree *, tree, tree,
747                                                 int, bool *);
748 static tree handle_constructor_attribute (tree *, tree, tree, int, bool *);
749 static tree handle_destructor_attribute (tree *, tree, tree, int, bool *);
750 static tree handle_mode_attribute (tree *, tree, tree, int, bool *);
751 static tree handle_section_attribute (tree *, tree, tree, int, bool *);
752 static tree handle_aligned_attribute (tree *, tree, tree, int, bool *);
753 static tree handle_weak_attribute (tree *, tree, tree, int, bool *) ;
754 static tree handle_alias_attribute (tree *, tree, tree, int, bool *);
755 static tree handle_visibility_attribute (tree *, tree, tree, int,
756                                          bool *);
757 static tree handle_tls_model_attribute (tree *, tree, tree, int,
758                                         bool *);
759 static tree handle_no_instrument_function_attribute (tree *, tree,
760                                                      tree, int, bool *);
761 static tree handle_malloc_attribute (tree *, tree, tree, int, bool *);
762 static tree handle_no_limit_stack_attribute (tree *, tree, tree, int,
763                                              bool *);
764 static tree handle_pure_attribute (tree *, tree, tree, int, bool *);
765 static tree handle_deprecated_attribute (tree *, tree, tree, int,
766                                          bool *);
767 static tree handle_vector_size_attribute (tree *, tree, tree, int,
768                                           bool *);
769 static tree handle_nonnull_attribute (tree *, tree, tree, int, bool *);
770 static tree handle_nothrow_attribute (tree *, tree, tree, int, bool *);
771 static tree handle_cleanup_attribute (tree *, tree, tree, int, bool *);
772 static tree vector_size_helper (tree, tree);
773
774 static void check_function_nonnull (tree, tree);
775 static void check_nonnull_arg (void *, tree, unsigned HOST_WIDE_INT);
776 static bool nonnull_check_p (tree, unsigned HOST_WIDE_INT);
777 static bool get_nonnull_operand (tree, unsigned HOST_WIDE_INT *);
778 static int resort_field_decl_cmp (const void *, const void *);
779
780 /* Table of machine-independent attributes common to all C-like languages.  */
781 const struct attribute_spec c_common_attribute_table[] =
782 {
783   /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
784   { "packed",                 0, 0, false, false, false,
785                               handle_packed_attribute },
786   { "nocommon",               0, 0, true,  false, false,
787                               handle_nocommon_attribute },
788   { "common",                 0, 0, true,  false, false,
789                               handle_common_attribute },
790   /* FIXME: logically, noreturn attributes should be listed as
791      "false, true, true" and apply to function types.  But implementing this
792      would require all the places in the compiler that use TREE_THIS_VOLATILE
793      on a decl to identify non-returning functions to be located and fixed
794      to check the function type instead.  */
795   { "noreturn",               0, 0, true,  false, false,
796                               handle_noreturn_attribute },
797   { "volatile",               0, 0, true,  false, false,
798                               handle_noreturn_attribute },
799   { "noinline",               0, 0, true,  false, false,
800                               handle_noinline_attribute },
801   { "always_inline",          0, 0, true,  false, false,
802                               handle_always_inline_attribute },
803   { "used",                   0, 0, true,  false, false,
804                               handle_used_attribute },
805   { "unused",                 0, 0, false, false, false,
806                               handle_unused_attribute },
807   /* The same comments as for noreturn attributes apply to const ones.  */
808   { "const",                  0, 0, true,  false, false,
809                               handle_const_attribute },
810   { "transparent_union",      0, 0, false, false, false,
811                               handle_transparent_union_attribute },
812   { "constructor",            0, 0, true,  false, false,
813                               handle_constructor_attribute },
814   { "destructor",             0, 0, true,  false, false,
815                               handle_destructor_attribute },
816   { "mode",                   1, 1, false,  true, false,
817                               handle_mode_attribute },
818   { "section",                1, 1, true,  false, false,
819                               handle_section_attribute },
820   { "aligned",                0, 1, false, false, false,
821                               handle_aligned_attribute },
822   { "weak",                   0, 0, true,  false, false,
823                               handle_weak_attribute },
824   { "alias",                  1, 1, true,  false, false,
825                               handle_alias_attribute },
826   { "no_instrument_function", 0, 0, true,  false, false,
827                               handle_no_instrument_function_attribute },
828   { "malloc",                 0, 0, true,  false, false,
829                               handle_malloc_attribute },
830   { "no_stack_limit",         0, 0, true,  false, false,
831                               handle_no_limit_stack_attribute },
832   { "pure",                   0, 0, true,  false, false,
833                               handle_pure_attribute },
834   { "deprecated",             0, 0, false, false, false,
835                               handle_deprecated_attribute },
836   { "vector_size",            1, 1, false, true, false,
837                               handle_vector_size_attribute },
838   { "visibility",             1, 1, true,  false, false,
839                               handle_visibility_attribute },
840   { "tls_model",              1, 1, true,  false, false,
841                               handle_tls_model_attribute },
842   { "nonnull",                0, -1, false, true, true,
843                               handle_nonnull_attribute },
844   { "nothrow",                0, 0, true,  false, false,
845                               handle_nothrow_attribute },
846   { "may_alias",              0, 0, false, true, false, NULL },
847   { "cleanup",                1, 1, true, false, false,
848                               handle_cleanup_attribute },
849   { NULL,                     0, 0, false, false, false, NULL }
850 };
851
852 /* Give the specifications for the format attributes, used by C and all
853    descendants.  */
854
855 const struct attribute_spec c_common_format_attribute_table[] =
856 {
857   /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
858   { "format",                 3, 3, false, true,  true,
859                               handle_format_attribute },
860   { "format_arg",             1, 1, false, true,  true,
861                               handle_format_arg_attribute },
862   { NULL,                     0, 0, false, false, false, NULL }
863 };
864
865 /* Record the start of an if-then, and record the start of it
866    for ambiguous else detection.
867
868    COND is the condition for the if-then statement.
869
870    IF_STMT is the statement node that has already been created for
871    this if-then statement.  It is created before parsing the
872    condition to keep line number information accurate.  */
873
874 void
875 c_expand_start_cond (tree cond, int compstmt_count, tree if_stmt)
876 {
877   /* Make sure there is enough space on the stack.  */
878   if (if_stack_space == 0)
879     {
880       if_stack_space = 10;
881       if_stack = xmalloc (10 * sizeof (if_elt));
882     }
883   else if (if_stack_space == if_stack_pointer)
884     {
885       if_stack_space += 10;
886       if_stack = xrealloc (if_stack, if_stack_space * sizeof (if_elt));
887     }
888
889   IF_COND (if_stmt) = cond;
890   add_stmt (if_stmt);
891
892   /* Record this if statement.  */
893   if_stack[if_stack_pointer].compstmt_count = compstmt_count;
894   if_stack[if_stack_pointer].locus = input_location;
895   if_stack[if_stack_pointer].needs_warning = 0;
896   if_stack[if_stack_pointer].if_stmt = if_stmt;
897   if_stack_pointer++;
898 }
899
900 /* Called after the then-clause for an if-statement is processed.  */
901
902 void
903 c_finish_then (void)
904 {
905   tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
906   RECHAIN_STMTS (if_stmt, THEN_CLAUSE (if_stmt));
907 }
908
909 /* Record the end of an if-then.  Optionally warn if a nested
910    if statement had an ambiguous else clause.  */
911
912 void
913 c_expand_end_cond (void)
914 {
915   if_stack_pointer--;
916   if (if_stack[if_stack_pointer].needs_warning)
917     warning ("%Hsuggest explicit braces to avoid ambiguous `else'",
918              &if_stack[if_stack_pointer].locus);
919   last_expr_type = NULL_TREE;
920 }
921
922 /* Called between the then-clause and the else-clause
923    of an if-then-else.  */
924
925 void
926 c_expand_start_else (void)
927 {
928   /* An ambiguous else warning must be generated for the enclosing if
929      statement, unless we see an else branch for that one, too.  */
930   if (warn_parentheses
931       && if_stack_pointer > 1
932       && (if_stack[if_stack_pointer - 1].compstmt_count
933           == if_stack[if_stack_pointer - 2].compstmt_count))
934     if_stack[if_stack_pointer - 2].needs_warning = 1;
935
936   /* Even if a nested if statement had an else branch, it can't be
937      ambiguous if this one also has an else.  So don't warn in that
938      case.  Also don't warn for any if statements nested in this else.  */
939   if_stack[if_stack_pointer - 1].needs_warning = 0;
940   if_stack[if_stack_pointer - 1].compstmt_count--;
941 }
942
943 /* Called after the else-clause for an if-statement is processed.  */
944
945 void
946 c_finish_else (void)
947 {
948   tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
949   RECHAIN_STMTS (if_stmt, ELSE_CLAUSE (if_stmt));
950 }
951
952 /* Begin an if-statement.  Returns a newly created IF_STMT if
953    appropriate.
954
955    Unlike the C++ front-end, we do not call add_stmt here; it is
956    probably safe to do so, but I am not very familiar with this
957    code so I am being extra careful not to change its behavior
958    beyond what is strictly necessary for correctness.  */
959
960 tree
961 c_begin_if_stmt (void)
962 {
963   tree r;
964   r = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
965   return r;
966 }
967
968 /* Begin a while statement.  Returns a newly created WHILE_STMT if
969    appropriate.
970
971    Unlike the C++ front-end, we do not call add_stmt here; it is
972    probably safe to do so, but I am not very familiar with this
973    code so I am being extra careful not to change its behavior
974    beyond what is strictly necessary for correctness.  */
975
976 tree
977 c_begin_while_stmt (void)
978 {
979   tree r;
980   r = build_stmt (WHILE_STMT, NULL_TREE, NULL_TREE);
981   return r;
982 }
983
984 void
985 c_finish_while_stmt_cond (tree cond, tree while_stmt)
986 {
987   WHILE_COND (while_stmt) = cond;
988 }
989
990 /* Push current bindings for the function name VAR_DECLS.  */
991
992 void
993 start_fname_decls (void)
994 {
995   unsigned ix;
996   tree saved = NULL_TREE;
997
998   for (ix = 0; fname_vars[ix].decl; ix++)
999     {
1000       tree decl = *fname_vars[ix].decl;
1001
1002       if (decl)
1003         {
1004           saved = tree_cons (decl, build_int_2 (ix, 0), saved);
1005           *fname_vars[ix].decl = NULL_TREE;
1006         }
1007     }
1008   if (saved || saved_function_name_decls)
1009     /* Normally they'll have been NULL, so only push if we've got a
1010        stack, or they are non-NULL.  */
1011     saved_function_name_decls = tree_cons (saved, NULL_TREE,
1012                                            saved_function_name_decls);
1013 }
1014
1015 /* Finish up the current bindings, adding them into the
1016    current function's statement tree. This is done by wrapping the
1017    function's body in a COMPOUND_STMT containing these decls too. This
1018    must be done _before_ finish_stmt_tree is called. If there is no
1019    current function, we must be at file scope and no statements are
1020    involved. Pop the previous bindings.  */
1021
1022 void
1023 finish_fname_decls (void)
1024 {
1025   unsigned ix;
1026   tree body = NULL_TREE;
1027   tree stack = saved_function_name_decls;
1028
1029   for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
1030     body = chainon (TREE_VALUE (stack), body);
1031
1032   if (body)
1033     {
1034       /* They were called into existence, so add to statement tree.  Add
1035          the DECL_STMTs inside the outermost scope.  */
1036       tree *p = &DECL_SAVED_TREE (current_function_decl);
1037       /* Skip the dummy EXPR_STMT and any EH_SPEC_BLOCK.  */
1038       while (TREE_CODE (*p) != COMPOUND_STMT)
1039         p = &TREE_CHAIN (*p);
1040       p = &COMPOUND_BODY (*p);
1041       if (TREE_CODE (*p) == SCOPE_STMT)
1042         p = &TREE_CHAIN (*p);
1043
1044       body = chainon (body, *p);
1045       *p = body;
1046     }
1047
1048   for (ix = 0; fname_vars[ix].decl; ix++)
1049     *fname_vars[ix].decl = NULL_TREE;
1050
1051   if (stack)
1052     {
1053       /* We had saved values, restore them.  */
1054       tree saved;
1055
1056       for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
1057         {
1058           tree decl = TREE_PURPOSE (saved);
1059           unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
1060
1061           *fname_vars[ix].decl = decl;
1062         }
1063       stack = TREE_CHAIN (stack);
1064     }
1065   saved_function_name_decls = stack;
1066 }
1067
1068 /* Return the text name of the current function, suitably prettified
1069    by PRETTY_P.  */
1070
1071 const char *
1072 fname_as_string (int pretty_p)
1073 {
1074   const char *name = NULL;
1075
1076   if (pretty_p)
1077     name = (current_function_decl
1078             ? (*lang_hooks.decl_printable_name) (current_function_decl, 2)
1079             : "top level");
1080   else if (current_function_decl && DECL_NAME (current_function_decl))
1081     name = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
1082   else
1083     name = "";
1084   return name;
1085 }
1086
1087 /* Return the VAR_DECL for a const char array naming the current
1088    function. If the VAR_DECL has not yet been created, create it
1089    now. RID indicates how it should be formatted and IDENTIFIER_NODE
1090    ID is its name (unfortunately C and C++ hold the RID values of
1091    keywords in different places, so we can't derive RID from ID in
1092    this language independent code.  */
1093
1094 tree
1095 fname_decl (unsigned int rid, tree id)
1096 {
1097   unsigned ix;
1098   tree decl = NULL_TREE;
1099
1100   for (ix = 0; fname_vars[ix].decl; ix++)
1101     if (fname_vars[ix].rid == rid)
1102       break;
1103
1104   decl = *fname_vars[ix].decl;
1105   if (!decl)
1106     {
1107       tree saved_last_tree = last_tree;
1108       /* If a tree is built here, it would normally have the lineno of
1109          the current statement.  Later this tree will be moved to the
1110          beginning of the function and this line number will be wrong.
1111          To avoid this problem set the lineno to 0 here; that prevents
1112          it from appearing in the RTL.  */
1113       int saved_lineno = input_line;
1114       input_line = 0;
1115
1116       decl = (*make_fname_decl) (id, fname_vars[ix].pretty);
1117       if (last_tree != saved_last_tree)
1118         {
1119           /* We created some statement tree for the decl. This belongs
1120              at the start of the function, so remove it now and reinsert
1121              it after the function is complete.  */
1122           tree stmts = TREE_CHAIN (saved_last_tree);
1123
1124           TREE_CHAIN (saved_last_tree) = NULL_TREE;
1125           last_tree = saved_last_tree;
1126           saved_function_name_decls = tree_cons (decl, stmts,
1127                                                  saved_function_name_decls);
1128         }
1129       *fname_vars[ix].decl = decl;
1130       input_line = saved_lineno;
1131     }
1132   if (!ix && !current_function_decl)
1133     pedwarn ("%H'%D' is not defined outside of function scope",
1134              &DECL_SOURCE_LOCATION (decl), decl);
1135
1136   return decl;
1137 }
1138
1139 /* Given a STRING_CST, give it a suitable array-of-chars data type.  */
1140
1141 tree
1142 fix_string_type (tree value)
1143 {
1144   const int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
1145   const int wide_flag = TREE_TYPE (value) == wchar_array_type_node;
1146   const int nchars_max = flag_isoc99 ? 4095 : 509;
1147   int length = TREE_STRING_LENGTH (value);
1148   int nchars;
1149
1150   /* Compute the number of elements, for the array type.  */
1151   nchars = wide_flag ? length / wchar_bytes : length;
1152
1153   if (pedantic && nchars - 1 > nchars_max && !c_dialect_cxx ())
1154     pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
1155              nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
1156
1157   /* Create the array type for the string constant.
1158      -Wwrite-strings says make the string constant an array of const char
1159      so that copying it to a non-const pointer will get a warning.
1160      For C++, this is the standard behavior.  */
1161   if (flag_const_strings && ! flag_writable_strings)
1162     {
1163       tree elements
1164         = build_type_variant (wide_flag ? wchar_type_node : char_type_node,
1165                               1, 0);
1166       TREE_TYPE (value)
1167         = build_array_type (elements,
1168                             build_index_type (build_int_2 (nchars - 1, 0)));
1169     }
1170   else
1171     TREE_TYPE (value)
1172       = build_array_type (wide_flag ? wchar_type_node : char_type_node,
1173                           build_index_type (build_int_2 (nchars - 1, 0)));
1174
1175   TREE_CONSTANT (value) = 1;
1176   TREE_READONLY (value) = ! flag_writable_strings;
1177   TREE_STATIC (value) = 1;
1178   return value;
1179 }
1180 \f
1181 /* Print a warning if a constant expression had overflow in folding.
1182    Invoke this function on every expression that the language
1183    requires to be a constant expression.
1184    Note the ANSI C standard says it is erroneous for a
1185    constant expression to overflow.  */
1186
1187 void
1188 constant_expression_warning (tree value)
1189 {
1190   if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1191        || TREE_CODE (value) == VECTOR_CST
1192        || TREE_CODE (value) == COMPLEX_CST)
1193       && TREE_CONSTANT_OVERFLOW (value) && pedantic)
1194     pedwarn ("overflow in constant expression");
1195 }
1196
1197 /* Print a warning if an expression had overflow in folding.
1198    Invoke this function on every expression that
1199    (1) appears in the source code, and
1200    (2) might be a constant expression that overflowed, and
1201    (3) is not already checked by convert_and_check;
1202    however, do not invoke this function on operands of explicit casts.  */
1203
1204 void
1205 overflow_warning (tree value)
1206 {
1207   if ((TREE_CODE (value) == INTEGER_CST
1208        || (TREE_CODE (value) == COMPLEX_CST
1209            && TREE_CODE (TREE_REALPART (value)) == INTEGER_CST))
1210       && TREE_OVERFLOW (value))
1211     {
1212       TREE_OVERFLOW (value) = 0;
1213       if (skip_evaluation == 0)
1214         warning ("integer overflow in expression");
1215     }
1216   else if ((TREE_CODE (value) == REAL_CST
1217             || (TREE_CODE (value) == COMPLEX_CST
1218                 && TREE_CODE (TREE_REALPART (value)) == REAL_CST))
1219            && TREE_OVERFLOW (value))
1220     {
1221       TREE_OVERFLOW (value) = 0;
1222       if (skip_evaluation == 0)
1223         warning ("floating point overflow in expression");
1224     }
1225   else if (TREE_CODE (value) == VECTOR_CST && TREE_OVERFLOW (value))
1226     {
1227       TREE_OVERFLOW (value) = 0;
1228       if (skip_evaluation == 0)
1229         warning ("vector overflow in expression");
1230     }
1231 }
1232
1233 /* Print a warning if a large constant is truncated to unsigned,
1234    or if -Wconversion is used and a constant < 0 is converted to unsigned.
1235    Invoke this function on every expression that might be implicitly
1236    converted to an unsigned type.  */
1237
1238 void
1239 unsigned_conversion_warning (tree result, tree operand)
1240 {
1241   tree type = TREE_TYPE (result);
1242
1243   if (TREE_CODE (operand) == INTEGER_CST
1244       && TREE_CODE (type) == INTEGER_TYPE
1245       && TREE_UNSIGNED (type)
1246       && skip_evaluation == 0
1247       && !int_fits_type_p (operand, type))
1248     {
1249       if (!int_fits_type_p (operand, c_common_signed_type (type)))
1250         /* This detects cases like converting -129 or 256 to unsigned char.  */
1251         warning ("large integer implicitly truncated to unsigned type");
1252       else if (warn_conversion)
1253         warning ("negative integer implicitly converted to unsigned type");
1254     }
1255 }
1256
1257 /* Nonzero if constant C has a value that is permissible
1258    for type TYPE (an INTEGER_TYPE).  */
1259
1260 static int
1261 constant_fits_type_p (tree c, tree type)
1262 {
1263   if (TREE_CODE (c) == INTEGER_CST)
1264     return int_fits_type_p (c, type);
1265
1266   c = convert (type, c);
1267   return !TREE_OVERFLOW (c);
1268 }
1269
1270 /* Convert EXPR to TYPE, warning about conversion problems with constants.
1271    Invoke this function on every expression that is converted implicitly,
1272    i.e. because of language rules and not because of an explicit cast.  */
1273
1274 tree
1275 convert_and_check (tree type, tree expr)
1276 {
1277   tree t = convert (type, expr);
1278   if (TREE_CODE (t) == INTEGER_CST)
1279     {
1280       if (TREE_OVERFLOW (t))
1281         {
1282           TREE_OVERFLOW (t) = 0;
1283
1284           /* Do not diagnose overflow in a constant expression merely
1285              because a conversion overflowed.  */
1286           TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (expr);
1287
1288           /* No warning for converting 0x80000000 to int.  */
1289           if (!(TREE_UNSIGNED (type) < TREE_UNSIGNED (TREE_TYPE (expr))
1290                 && TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
1291                 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (expr))))
1292             /* If EXPR fits in the unsigned version of TYPE,
1293                don't warn unless pedantic.  */
1294             if ((pedantic
1295                  || TREE_UNSIGNED (type)
1296                  || ! constant_fits_type_p (expr,
1297                                             c_common_unsigned_type (type)))
1298                 && skip_evaluation == 0)
1299               warning ("overflow in implicit constant conversion");
1300         }
1301       else
1302         unsigned_conversion_warning (t, expr);
1303     }
1304   return t;
1305 }
1306 \f
1307 /* A node in a list that describes references to variables (EXPR), which are
1308    either read accesses if WRITER is zero, or write accesses, in which case
1309    WRITER is the parent of EXPR.  */
1310 struct tlist
1311 {
1312   struct tlist *next;
1313   tree expr, writer;
1314 };
1315
1316 /* Used to implement a cache the results of a call to verify_tree.  We only
1317    use this for SAVE_EXPRs.  */
1318 struct tlist_cache
1319 {
1320   struct tlist_cache *next;
1321   struct tlist *cache_before_sp;
1322   struct tlist *cache_after_sp;
1323   tree expr;
1324 };
1325
1326 /* Obstack to use when allocating tlist structures, and corresponding
1327    firstobj.  */
1328 static struct obstack tlist_obstack;
1329 static char *tlist_firstobj = 0;
1330
1331 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
1332    warnings.  */
1333 static struct tlist *warned_ids;
1334 /* SAVE_EXPRs need special treatment.  We process them only once and then
1335    cache the results.  */
1336 static struct tlist_cache *save_expr_cache;
1337
1338 static void add_tlist (struct tlist **, struct tlist *, tree, int);
1339 static void merge_tlist (struct tlist **, struct tlist *, int);
1340 static void verify_tree (tree, struct tlist **, struct tlist **, tree);
1341 static int warning_candidate_p (tree);
1342 static void warn_for_collisions (struct tlist *);
1343 static void warn_for_collisions_1 (tree, tree, struct tlist *, int);
1344 static struct tlist *new_tlist (struct tlist *, tree, tree);
1345 static void verify_sequence_points (tree);
1346
1347 /* Create a new struct tlist and fill in its fields.  */
1348 static struct tlist *
1349 new_tlist (struct tlist *next, tree t, tree writer)
1350 {
1351   struct tlist *l;
1352   l = obstack_alloc (&tlist_obstack, sizeof *l);
1353   l->next = next;
1354   l->expr = t;
1355   l->writer = writer;
1356   return l;
1357 }
1358
1359 /* Add duplicates of the nodes found in ADD to the list *TO.  If EXCLUDE_WRITER
1360    is nonnull, we ignore any node we find which has a writer equal to it.  */
1361
1362 static void
1363 add_tlist (struct tlist **to, struct tlist *add, tree exclude_writer, int copy)
1364 {
1365   while (add)
1366     {
1367       struct tlist *next = add->next;
1368       if (! copy)
1369         add->next = *to;
1370       if (! exclude_writer || add->writer != exclude_writer)
1371         *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
1372       add = next;
1373     }
1374 }
1375
1376 /* Merge the nodes of ADD into TO.  This merging process is done so that for
1377    each variable that already exists in TO, no new node is added; however if
1378    there is a write access recorded in ADD, and an occurrence on TO is only
1379    a read access, then the occurrence in TO will be modified to record the
1380    write.  */
1381
1382 static void
1383 merge_tlist (struct tlist **to, struct tlist *add, int copy)
1384 {
1385   struct tlist **end = to;
1386
1387   while (*end)
1388     end = &(*end)->next;
1389
1390   while (add)
1391     {
1392       int found = 0;
1393       struct tlist *tmp2;
1394       struct tlist *next = add->next;
1395
1396       for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
1397         if (tmp2->expr == add->expr)
1398           {
1399             found = 1;
1400             if (! tmp2->writer)
1401               tmp2->writer = add->writer;
1402           }
1403       if (! found)
1404         {
1405           *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
1406           end = &(*end)->next;
1407           *end = 0;
1408         }
1409       add = next;
1410     }
1411 }
1412
1413 /* WRITTEN is a variable, WRITER is its parent.  Warn if any of the variable
1414    references in list LIST conflict with it, excluding reads if ONLY writers
1415    is nonzero.  */
1416
1417 static void
1418 warn_for_collisions_1 (tree written, tree writer, struct tlist *list,
1419                        int only_writes)
1420 {
1421   struct tlist *tmp;
1422
1423   /* Avoid duplicate warnings.  */
1424   for (tmp = warned_ids; tmp; tmp = tmp->next)
1425     if (tmp->expr == written)
1426       return;
1427
1428   while (list)
1429     {
1430       if (list->expr == written
1431           && list->writer != writer
1432           && (! only_writes || list->writer))
1433         {
1434           warned_ids = new_tlist (warned_ids, written, NULL_TREE);
1435           warning ("operation on `%s' may be undefined",
1436                    IDENTIFIER_POINTER (DECL_NAME (list->expr)));
1437         }
1438       list = list->next;
1439     }
1440 }
1441
1442 /* Given a list LIST of references to variables, find whether any of these
1443    can cause conflicts due to missing sequence points.  */
1444
1445 static void
1446 warn_for_collisions (struct tlist *list)
1447 {
1448   struct tlist *tmp;
1449
1450   for (tmp = list; tmp; tmp = tmp->next)
1451     {
1452       if (tmp->writer)
1453         warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
1454     }
1455 }
1456
1457 /* Return nonzero if X is a tree that can be verified by the sequence point
1458    warnings.  */
1459 static int
1460 warning_candidate_p (tree x)
1461 {
1462   return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
1463 }
1464
1465 /* Walk the tree X, and record accesses to variables.  If X is written by the
1466    parent tree, WRITER is the parent.
1467    We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP.  If this
1468    expression or its only operand forces a sequence point, then everything up
1469    to the sequence point is stored in PBEFORE_SP.  Everything else gets stored
1470    in PNO_SP.
1471    Once we return, we will have emitted warnings if any subexpression before
1472    such a sequence point could be undefined.  On a higher level, however, the
1473    sequence point may not be relevant, and we'll merge the two lists.
1474
1475    Example: (b++, a) + b;
1476    The call that processes the COMPOUND_EXPR will store the increment of B
1477    in PBEFORE_SP, and the use of A in PNO_SP.  The higher-level call that
1478    processes the PLUS_EXPR will need to merge the two lists so that
1479    eventually, all accesses end up on the same list (and we'll warn about the
1480    unordered subexpressions b++ and b.
1481
1482    A note on merging.  If we modify the former example so that our expression
1483    becomes
1484      (b++, b) + a
1485    care must be taken not simply to add all three expressions into the final
1486    PNO_SP list.  The function merge_tlist takes care of that by merging the
1487    before-SP list of the COMPOUND_EXPR into its after-SP list in a special
1488    way, so that no more than one access to B is recorded.  */
1489
1490 static void
1491 verify_tree (tree x, struct tlist **pbefore_sp, struct tlist **pno_sp,
1492              tree writer)
1493 {
1494   struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
1495   enum tree_code code;
1496   char class;
1497
1498   /* X may be NULL if it is the operand of an empty statement expression
1499      ({ }).  */
1500   if (x == NULL)
1501     return;
1502
1503  restart:
1504   code = TREE_CODE (x);
1505   class = TREE_CODE_CLASS (code);
1506
1507   if (warning_candidate_p (x))
1508     {
1509       *pno_sp = new_tlist (*pno_sp, x, writer);
1510       return;
1511     }
1512
1513   switch (code)
1514     {
1515     case CONSTRUCTOR:
1516       return;
1517
1518     case COMPOUND_EXPR:
1519     case TRUTH_ANDIF_EXPR:
1520     case TRUTH_ORIF_EXPR:
1521       tmp_before = tmp_nosp = tmp_list3 = 0;
1522       verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1523       warn_for_collisions (tmp_nosp);
1524       merge_tlist (pbefore_sp, tmp_before, 0);
1525       merge_tlist (pbefore_sp, tmp_nosp, 0);
1526       verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
1527       merge_tlist (pbefore_sp, tmp_list3, 0);
1528       return;
1529
1530     case COND_EXPR:
1531       tmp_before = tmp_list2 = 0;
1532       verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1533       warn_for_collisions (tmp_list2);
1534       merge_tlist (pbefore_sp, tmp_before, 0);
1535       merge_tlist (pbefore_sp, tmp_list2, 1);
1536
1537       tmp_list3 = tmp_nosp = 0;
1538       verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1539       warn_for_collisions (tmp_nosp);
1540       merge_tlist (pbefore_sp, tmp_list3, 0);
1541
1542       tmp_list3 = tmp_list2 = 0;
1543       verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1544       warn_for_collisions (tmp_list2);
1545       merge_tlist (pbefore_sp, tmp_list3, 0);
1546       /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1547          two first, to avoid warning for (a ? b++ : b++).  */
1548       merge_tlist (&tmp_nosp, tmp_list2, 0);
1549       add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1550       return;
1551
1552     case PREDECREMENT_EXPR:
1553     case PREINCREMENT_EXPR:
1554     case POSTDECREMENT_EXPR:
1555     case POSTINCREMENT_EXPR:
1556       verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1557       return;
1558
1559     case MODIFY_EXPR:
1560       tmp_before = tmp_nosp = tmp_list3 = 0;
1561       verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1562       verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1563       /* Expressions inside the LHS are not ordered wrt. the sequence points
1564          in the RHS.  Example:
1565            *a = (a++, 2)
1566          Despite the fact that the modification of "a" is in the before_sp
1567          list (tmp_before), it conflicts with the use of "a" in the LHS.
1568          We can handle this by adding the contents of tmp_list3
1569          to those of tmp_before, and redoing the collision warnings for that
1570          list.  */
1571       add_tlist (&tmp_before, tmp_list3, x, 1);
1572       warn_for_collisions (tmp_before);
1573       /* Exclude the LHS itself here; we first have to merge it into the
1574          tmp_nosp list.  This is done to avoid warning for "a = a"; if we
1575          didn't exclude the LHS, we'd get it twice, once as a read and once
1576          as a write.  */
1577       add_tlist (pno_sp, tmp_list3, x, 0);
1578       warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1579
1580       merge_tlist (pbefore_sp, tmp_before, 0);
1581       if (warning_candidate_p (TREE_OPERAND (x, 0)))
1582         merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1583       add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1584       return;
1585
1586     case CALL_EXPR:
1587       /* We need to warn about conflicts among arguments and conflicts between
1588          args and the function address.  Side effects of the function address,
1589          however, are not ordered by the sequence point of the call.  */
1590       tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
1591       verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1592       if (TREE_OPERAND (x, 1))
1593         verify_tree (TREE_OPERAND (x, 1), &tmp_list2, &tmp_list3, NULL_TREE);
1594       merge_tlist (&tmp_list3, tmp_list2, 0);
1595       add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1596       add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1597       warn_for_collisions (tmp_before);
1598       add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1599       return;
1600
1601     case TREE_LIST:
1602       /* Scan all the list, e.g. indices of multi dimensional array.  */
1603       while (x)
1604         {
1605           tmp_before = tmp_nosp = 0;
1606           verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1607           merge_tlist (&tmp_nosp, tmp_before, 0);
1608           add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1609           x = TREE_CHAIN (x);
1610         }
1611       return;
1612
1613     case SAVE_EXPR:
1614       {
1615         struct tlist_cache *t;
1616         for (t = save_expr_cache; t; t = t->next)
1617           if (t->expr == x)
1618             break;
1619
1620         if (! t)
1621           {
1622             t = obstack_alloc (&tlist_obstack, sizeof *t);
1623             t->next = save_expr_cache;
1624             t->expr = x;
1625             save_expr_cache = t;
1626
1627             tmp_before = tmp_nosp = 0;
1628             verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1629             warn_for_collisions (tmp_nosp);
1630
1631             tmp_list3 = 0;
1632             while (tmp_nosp)
1633               {
1634                 struct tlist *t = tmp_nosp;
1635                 tmp_nosp = t->next;
1636                 merge_tlist (&tmp_list3, t, 0);
1637               }
1638             t->cache_before_sp = tmp_before;
1639             t->cache_after_sp = tmp_list3;
1640           }
1641         merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1642         add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1643         return;
1644       }
1645     default:
1646       break;
1647     }
1648
1649   if (class == '1')
1650     {
1651       if (first_rtl_op (code) == 0)
1652         return;
1653       x = TREE_OPERAND (x, 0);
1654       writer = 0;
1655       goto restart;
1656     }
1657
1658   switch (class)
1659     {
1660     case 'r':
1661     case '<':
1662     case '2':
1663     case 'b':
1664     case 'e':
1665     case 's':
1666     case 'x':
1667       {
1668         int lp;
1669         int max = first_rtl_op (TREE_CODE (x));
1670         for (lp = 0; lp < max; lp++)
1671           {
1672             tmp_before = tmp_nosp = 0;
1673             verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, NULL_TREE);
1674             merge_tlist (&tmp_nosp, tmp_before, 0);
1675             add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1676           }
1677         break;
1678       }
1679     }
1680 }
1681
1682 /* Try to warn for undefined behavior in EXPR due to missing sequence
1683    points.  */
1684
1685 static void
1686 verify_sequence_points (tree expr)
1687 {
1688   struct tlist *before_sp = 0, *after_sp = 0;
1689
1690   warned_ids = 0;
1691   save_expr_cache = 0;
1692   if (tlist_firstobj == 0)
1693     {
1694       gcc_obstack_init (&tlist_obstack);
1695       tlist_firstobj = obstack_alloc (&tlist_obstack, 0);
1696     }
1697
1698   verify_tree (expr, &before_sp, &after_sp, 0);
1699   warn_for_collisions (after_sp);
1700   obstack_free (&tlist_obstack, tlist_firstobj);
1701 }
1702
1703 tree
1704 c_expand_expr_stmt (tree expr)
1705 {
1706   /* Do default conversion if safe and possibly important,
1707      in case within ({...}).  */
1708   if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1709        && (flag_isoc99 || lvalue_p (expr)))
1710       || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
1711     expr = default_conversion (expr);
1712
1713   if (warn_sequence_point)
1714     verify_sequence_points (expr);
1715
1716   if (TREE_TYPE (expr) != error_mark_node
1717       && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
1718       && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
1719     error ("expression statement has incomplete type");
1720
1721   last_expr_type = TREE_TYPE (expr);
1722   return add_stmt (build_stmt (EXPR_STMT, expr));
1723 }
1724 \f
1725 /* Validate the expression after `case' and apply default promotions.  */
1726
1727 tree
1728 check_case_value (tree value)
1729 {
1730   if (value == NULL_TREE)
1731     return value;
1732
1733   /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue.  */
1734   STRIP_TYPE_NOPS (value);
1735   /* In C++, the following is allowed:
1736
1737        const int i = 3;
1738        switch (...) { case i: ... }
1739
1740      So, we try to reduce the VALUE to a constant that way.  */
1741   if (c_dialect_cxx ())
1742     {
1743       value = decl_constant_value (value);
1744       STRIP_TYPE_NOPS (value);
1745       value = fold (value);
1746     }
1747
1748   if (TREE_CODE (value) != INTEGER_CST
1749       && value != error_mark_node)
1750     {
1751       error ("case label does not reduce to an integer constant");
1752       value = error_mark_node;
1753     }
1754   else
1755     /* Promote char or short to int.  */
1756     value = default_conversion (value);
1757
1758   constant_expression_warning (value);
1759
1760   return value;
1761 }
1762 \f
1763 /* Return an integer type with BITS bits of precision,
1764    that is unsigned if UNSIGNEDP is nonzero, otherwise signed.  */
1765
1766 tree
1767 c_common_type_for_size (unsigned int bits, int unsignedp)
1768 {
1769   if (bits == TYPE_PRECISION (integer_type_node))
1770     return unsignedp ? unsigned_type_node : integer_type_node;
1771
1772   if (bits == TYPE_PRECISION (signed_char_type_node))
1773     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1774
1775   if (bits == TYPE_PRECISION (short_integer_type_node))
1776     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1777
1778   if (bits == TYPE_PRECISION (long_integer_type_node))
1779     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1780
1781   if (bits == TYPE_PRECISION (long_long_integer_type_node))
1782     return (unsignedp ? long_long_unsigned_type_node
1783             : long_long_integer_type_node);
1784
1785   if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1786     return (unsignedp ? widest_unsigned_literal_type_node
1787             : widest_integer_literal_type_node);
1788
1789   if (bits <= TYPE_PRECISION (intQI_type_node))
1790     return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1791
1792   if (bits <= TYPE_PRECISION (intHI_type_node))
1793     return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1794
1795   if (bits <= TYPE_PRECISION (intSI_type_node))
1796     return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1797
1798   if (bits <= TYPE_PRECISION (intDI_type_node))
1799     return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1800
1801   return 0;
1802 }
1803
1804 /* Return a data type that has machine mode MODE.
1805    If the mode is an integer,
1806    then UNSIGNEDP selects between signed and unsigned types.  */
1807
1808 tree
1809 c_common_type_for_mode (enum machine_mode mode, int unsignedp)
1810 {
1811   if (mode == TYPE_MODE (integer_type_node))
1812     return unsignedp ? unsigned_type_node : integer_type_node;
1813
1814   if (mode == TYPE_MODE (signed_char_type_node))
1815     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1816
1817   if (mode == TYPE_MODE (short_integer_type_node))
1818     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1819
1820   if (mode == TYPE_MODE (long_integer_type_node))
1821     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1822
1823   if (mode == TYPE_MODE (long_long_integer_type_node))
1824     return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
1825
1826   if (mode == TYPE_MODE (widest_integer_literal_type_node))
1827     return unsignedp ? widest_unsigned_literal_type_node
1828                      : widest_integer_literal_type_node;
1829
1830   if (mode == QImode)
1831     return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1832
1833   if (mode == HImode)
1834     return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1835
1836   if (mode == SImode)
1837     return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1838
1839   if (mode == DImode)
1840     return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1841
1842 #if HOST_BITS_PER_WIDE_INT >= 64
1843   if (mode == TYPE_MODE (intTI_type_node))
1844     return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1845 #endif
1846
1847   if (mode == TYPE_MODE (float_type_node))
1848     return float_type_node;
1849
1850   if (mode == TYPE_MODE (double_type_node))
1851     return double_type_node;
1852
1853   if (mode == TYPE_MODE (long_double_type_node))
1854     return long_double_type_node;
1855
1856   if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1857     return unsignedp ? make_unsigned_type (mode) : make_signed_type (mode);
1858
1859   if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1860     return unsignedp ? make_unsigned_type (mode) : make_signed_type (mode);
1861
1862   switch (mode)
1863     {
1864     case V16QImode:
1865       return unsignedp ? unsigned_V16QI_type_node : V16QI_type_node;
1866     case V8HImode:
1867       return unsignedp ? unsigned_V8HI_type_node : V8HI_type_node;
1868     case V4SImode:
1869       return unsignedp ? unsigned_V4SI_type_node : V4SI_type_node;
1870     case V2DImode:
1871       return unsignedp ? unsigned_V2DI_type_node : V2DI_type_node;
1872     case V2SImode:
1873       return unsignedp ? unsigned_V2SI_type_node : V2SI_type_node;
1874     case V2HImode:
1875       return unsignedp ? unsigned_V2HI_type_node : V2HI_type_node;
1876     case V4HImode:
1877       return unsignedp ? unsigned_V4HI_type_node : V4HI_type_node;
1878     case V8QImode:
1879       return unsignedp ? unsigned_V8QI_type_node : V8QI_type_node;
1880     case V1DImode:
1881       return unsignedp ? unsigned_V1DI_type_node : V1DI_type_node;
1882     case V16SFmode:
1883       return V16SF_type_node;
1884     case V4SFmode:
1885       return V4SF_type_node;
1886     case V2SFmode:
1887       return V2SF_type_node;
1888     case V2DFmode:
1889       return V2DF_type_node;
1890     case V4DFmode:
1891       return V4DF_type_node;
1892     default:
1893       break;
1894     }
1895
1896   return 0;
1897 }
1898
1899 /* Return an unsigned type the same as TYPE in other respects.  */
1900 tree
1901 c_common_unsigned_type (tree type)
1902 {
1903   tree type1 = TYPE_MAIN_VARIANT (type);
1904   if (type1 == signed_char_type_node || type1 == char_type_node)
1905     return unsigned_char_type_node;
1906   if (type1 == integer_type_node)
1907     return unsigned_type_node;
1908   if (type1 == short_integer_type_node)
1909     return short_unsigned_type_node;
1910   if (type1 == long_integer_type_node)
1911     return long_unsigned_type_node;
1912   if (type1 == long_long_integer_type_node)
1913     return long_long_unsigned_type_node;
1914   if (type1 == widest_integer_literal_type_node)
1915     return widest_unsigned_literal_type_node;
1916 #if HOST_BITS_PER_WIDE_INT >= 64
1917   if (type1 == intTI_type_node)
1918     return unsigned_intTI_type_node;
1919 #endif
1920   if (type1 == intDI_type_node)
1921     return unsigned_intDI_type_node;
1922   if (type1 == intSI_type_node)
1923     return unsigned_intSI_type_node;
1924   if (type1 == intHI_type_node)
1925     return unsigned_intHI_type_node;
1926   if (type1 == intQI_type_node)
1927     return unsigned_intQI_type_node;
1928
1929   return c_common_signed_or_unsigned_type (1, type);
1930 }
1931
1932 /* Return a signed type the same as TYPE in other respects.  */
1933
1934 tree
1935 c_common_signed_type (tree type)
1936 {
1937   tree type1 = TYPE_MAIN_VARIANT (type);
1938   if (type1 == unsigned_char_type_node || type1 == char_type_node)
1939     return signed_char_type_node;
1940   if (type1 == unsigned_type_node)
1941     return integer_type_node;
1942   if (type1 == short_unsigned_type_node)
1943     return short_integer_type_node;
1944   if (type1 == long_unsigned_type_node)
1945     return long_integer_type_node;
1946   if (type1 == long_long_unsigned_type_node)
1947     return long_long_integer_type_node;
1948   if (type1 == widest_unsigned_literal_type_node)
1949     return widest_integer_literal_type_node;
1950 #if HOST_BITS_PER_WIDE_INT >= 64
1951   if (type1 == unsigned_intTI_type_node)
1952     return intTI_type_node;
1953 #endif
1954   if (type1 == unsigned_intDI_type_node)
1955     return intDI_type_node;
1956   if (type1 == unsigned_intSI_type_node)
1957     return intSI_type_node;
1958   if (type1 == unsigned_intHI_type_node)
1959     return intHI_type_node;
1960   if (type1 == unsigned_intQI_type_node)
1961     return intQI_type_node;
1962
1963   return c_common_signed_or_unsigned_type (0, type);
1964 }
1965
1966 /* Return a type the same as TYPE except unsigned or
1967    signed according to UNSIGNEDP.  */
1968
1969 tree
1970 c_common_signed_or_unsigned_type (int unsignedp, tree type)
1971 {
1972   if (! INTEGRAL_TYPE_P (type)
1973       || TREE_UNSIGNED (type) == unsignedp)
1974     return type;
1975
1976   if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
1977     return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1978   if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1979     return unsignedp ? unsigned_type_node : integer_type_node;
1980   if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
1981     return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1982   if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
1983     return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1984   if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
1985     return (unsignedp ? long_long_unsigned_type_node
1986             : long_long_integer_type_node);
1987   if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
1988     return (unsignedp ? widest_unsigned_literal_type_node
1989             : widest_integer_literal_type_node);
1990
1991 #if HOST_BITS_PER_WIDE_INT >= 64
1992   if (TYPE_PRECISION (type) == TYPE_PRECISION (intTI_type_node))
1993     return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1994 #endif
1995   if (TYPE_PRECISION (type) == TYPE_PRECISION (intDI_type_node))
1996     return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1997   if (TYPE_PRECISION (type) == TYPE_PRECISION (intSI_type_node))
1998     return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1999   if (TYPE_PRECISION (type) == TYPE_PRECISION (intHI_type_node))
2000     return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2001   if (TYPE_PRECISION (type) == TYPE_PRECISION (intQI_type_node))
2002     return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2003
2004   return type;
2005 }
2006 \f
2007 /* Return the minimum number of bits needed to represent VALUE in a
2008    signed or unsigned type, UNSIGNEDP says which.  */
2009
2010 unsigned int
2011 min_precision (tree value, int unsignedp)
2012 {
2013   int log;
2014
2015   /* If the value is negative, compute its negative minus 1.  The latter
2016      adjustment is because the absolute value of the largest negative value
2017      is one larger than the largest positive value.  This is equivalent to
2018      a bit-wise negation, so use that operation instead.  */
2019
2020   if (tree_int_cst_sgn (value) < 0)
2021     value = fold (build1 (BIT_NOT_EXPR, TREE_TYPE (value), value));
2022
2023   /* Return the number of bits needed, taking into account the fact
2024      that we need one more bit for a signed than unsigned type.  */
2025
2026   if (integer_zerop (value))
2027     log = 0;
2028   else
2029     log = tree_floor_log2 (value);
2030
2031   return log + 1 + ! unsignedp;
2032 }
2033 \f
2034 /* Print an error message for invalid operands to arith operation
2035    CODE.  NOP_EXPR is used as a special case (see
2036    c_common_truthvalue_conversion).  */
2037
2038 void
2039 binary_op_error (enum tree_code code)
2040 {
2041   const char *opname;
2042
2043   switch (code)
2044     {
2045     case NOP_EXPR:
2046       error ("invalid truth-value expression");
2047       return;
2048
2049     case PLUS_EXPR:
2050       opname = "+"; break;
2051     case MINUS_EXPR:
2052       opname = "-"; break;
2053     case MULT_EXPR:
2054       opname = "*"; break;
2055     case MAX_EXPR:
2056       opname = "max"; break;
2057     case MIN_EXPR:
2058       opname = "min"; break;
2059     case EQ_EXPR:
2060       opname = "=="; break;
2061     case NE_EXPR:
2062       opname = "!="; break;
2063     case LE_EXPR:
2064       opname = "<="; break;
2065     case GE_EXPR:
2066       opname = ">="; break;
2067     case LT_EXPR:
2068       opname = "<"; break;
2069     case GT_EXPR:
2070       opname = ">"; break;
2071     case LSHIFT_EXPR:
2072       opname = "<<"; break;
2073     case RSHIFT_EXPR:
2074       opname = ">>"; break;
2075     case TRUNC_MOD_EXPR:
2076     case FLOOR_MOD_EXPR:
2077       opname = "%"; break;
2078     case TRUNC_DIV_EXPR:
2079     case FLOOR_DIV_EXPR:
2080       opname = "/"; break;
2081     case BIT_AND_EXPR:
2082       opname = "&"; break;
2083     case BIT_IOR_EXPR:
2084       opname = "|"; break;
2085     case TRUTH_ANDIF_EXPR:
2086       opname = "&&"; break;
2087     case TRUTH_ORIF_EXPR:
2088       opname = "||"; break;
2089     case BIT_XOR_EXPR:
2090       opname = "^"; break;
2091     case LROTATE_EXPR:
2092     case RROTATE_EXPR:
2093       opname = "rotate"; break;
2094     default:
2095       opname = "unknown"; break;
2096     }
2097   error ("invalid operands to binary %s", opname);
2098 }
2099 \f
2100 /* Subroutine of build_binary_op, used for comparison operations.
2101    See if the operands have both been converted from subword integer types
2102    and, if so, perhaps change them both back to their original type.
2103    This function is also responsible for converting the two operands
2104    to the proper common type for comparison.
2105
2106    The arguments of this function are all pointers to local variables
2107    of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
2108    RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
2109
2110    If this function returns nonzero, it means that the comparison has
2111    a constant value.  What this function returns is an expression for
2112    that value.  */
2113
2114 tree
2115 shorten_compare (tree *op0_ptr, tree *op1_ptr, tree *restype_ptr,
2116                  enum tree_code *rescode_ptr)
2117 {
2118   tree type;
2119   tree op0 = *op0_ptr;
2120   tree op1 = *op1_ptr;
2121   int unsignedp0, unsignedp1;
2122   int real1, real2;
2123   tree primop0, primop1;
2124   enum tree_code code = *rescode_ptr;
2125
2126   /* Throw away any conversions to wider types
2127      already present in the operands.  */
2128
2129   primop0 = get_narrower (op0, &unsignedp0);
2130   primop1 = get_narrower (op1, &unsignedp1);
2131
2132   /* Handle the case that OP0 does not *contain* a conversion
2133      but it *requires* conversion to FINAL_TYPE.  */
2134
2135   if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
2136     unsignedp0 = TREE_UNSIGNED (TREE_TYPE (op0));
2137   if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
2138     unsignedp1 = TREE_UNSIGNED (TREE_TYPE (op1));
2139
2140   /* If one of the operands must be floated, we cannot optimize.  */
2141   real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
2142   real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
2143
2144   /* If first arg is constant, swap the args (changing operation
2145      so value is preserved), for canonicalization.  Don't do this if
2146      the second arg is 0.  */
2147
2148   if (TREE_CONSTANT (primop0)
2149       && ! integer_zerop (primop1) && ! real_zerop (primop1))
2150     {
2151       tree tem = primop0;
2152       int temi = unsignedp0;
2153       primop0 = primop1;
2154       primop1 = tem;
2155       tem = op0;
2156       op0 = op1;
2157       op1 = tem;
2158       *op0_ptr = op0;
2159       *op1_ptr = op1;
2160       unsignedp0 = unsignedp1;
2161       unsignedp1 = temi;
2162       temi = real1;
2163       real1 = real2;
2164       real2 = temi;
2165
2166       switch (code)
2167         {
2168         case LT_EXPR:
2169           code = GT_EXPR;
2170           break;
2171         case GT_EXPR:
2172           code = LT_EXPR;
2173           break;
2174         case LE_EXPR:
2175           code = GE_EXPR;
2176           break;
2177         case GE_EXPR:
2178           code = LE_EXPR;
2179           break;
2180         default:
2181           break;
2182         }
2183       *rescode_ptr = code;
2184     }
2185
2186   /* If comparing an integer against a constant more bits wide,
2187      maybe we can deduce a value of 1 or 0 independent of the data.
2188      Or else truncate the constant now
2189      rather than extend the variable at run time.
2190
2191      This is only interesting if the constant is the wider arg.
2192      Also, it is not safe if the constant is unsigned and the
2193      variable arg is signed, since in this case the variable
2194      would be sign-extended and then regarded as unsigned.
2195      Our technique fails in this case because the lowest/highest
2196      possible unsigned results don't follow naturally from the
2197      lowest/highest possible values of the variable operand.
2198      For just EQ_EXPR and NE_EXPR there is another technique that
2199      could be used: see if the constant can be faithfully represented
2200      in the other operand's type, by truncating it and reextending it
2201      and see if that preserves the constant's value.  */
2202
2203   if (!real1 && !real2
2204       && TREE_CODE (primop1) == INTEGER_CST
2205       && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
2206     {
2207       int min_gt, max_gt, min_lt, max_lt;
2208       tree maxval, minval;
2209       /* 1 if comparison is nominally unsigned.  */
2210       int unsignedp = TREE_UNSIGNED (*restype_ptr);
2211       tree val;
2212
2213       type = c_common_signed_or_unsigned_type (unsignedp0,
2214                                                TREE_TYPE (primop0));
2215
2216       /* In C, if TYPE is an enumeration, then we need to get its
2217          min/max values from it's underlying integral type, not the
2218          enumerated type itself.  In C++, TYPE_MAX_VALUE and
2219          TYPE_MIN_VALUE have already been set correctly on the
2220          enumeration type.  */
2221       if (!c_dialect_cxx() && TREE_CODE (type) == ENUMERAL_TYPE)
2222         type = c_common_type_for_size (TYPE_PRECISION (type), unsignedp0);
2223
2224       maxval = TYPE_MAX_VALUE (type);
2225       minval = TYPE_MIN_VALUE (type);
2226
2227       if (unsignedp && !unsignedp0)
2228         *restype_ptr = c_common_signed_type (*restype_ptr);
2229
2230       if (TREE_TYPE (primop1) != *restype_ptr)
2231         primop1 = convert (*restype_ptr, primop1);
2232       if (type != *restype_ptr)
2233         {
2234           minval = convert (*restype_ptr, minval);
2235           maxval = convert (*restype_ptr, maxval);
2236         }
2237
2238       if (unsignedp && unsignedp0)
2239         {
2240           min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
2241           max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
2242           min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
2243           max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
2244         }
2245       else
2246         {
2247           min_gt = INT_CST_LT (primop1, minval);
2248           max_gt = INT_CST_LT (primop1, maxval);
2249           min_lt = INT_CST_LT (minval, primop1);
2250           max_lt = INT_CST_LT (maxval, primop1);
2251         }
2252
2253       val = 0;
2254       /* This used to be a switch, but Genix compiler can't handle that.  */
2255       if (code == NE_EXPR)
2256         {
2257           if (max_lt || min_gt)
2258             val = truthvalue_true_node;
2259         }
2260       else if (code == EQ_EXPR)
2261         {
2262           if (max_lt || min_gt)
2263             val = truthvalue_false_node;
2264         }
2265       else if (code == LT_EXPR)
2266         {
2267           if (max_lt)
2268             val = truthvalue_true_node;
2269           if (!min_lt)
2270             val = truthvalue_false_node;
2271         }
2272       else if (code == GT_EXPR)
2273         {
2274           if (min_gt)
2275             val = truthvalue_true_node;
2276           if (!max_gt)
2277             val = truthvalue_false_node;
2278         }
2279       else if (code == LE_EXPR)
2280         {
2281           if (!max_gt)
2282             val = truthvalue_true_node;
2283           if (min_gt)
2284             val = truthvalue_false_node;
2285         }
2286       else if (code == GE_EXPR)
2287         {
2288           if (!min_lt)
2289             val = truthvalue_true_node;
2290           if (max_lt)
2291             val = truthvalue_false_node;
2292         }
2293
2294       /* If primop0 was sign-extended and unsigned comparison specd,
2295          we did a signed comparison above using the signed type bounds.
2296          But the comparison we output must be unsigned.
2297
2298          Also, for inequalities, VAL is no good; but if the signed
2299          comparison had *any* fixed result, it follows that the
2300          unsigned comparison just tests the sign in reverse
2301          (positive values are LE, negative ones GE).
2302          So we can generate an unsigned comparison
2303          against an extreme value of the signed type.  */
2304
2305       if (unsignedp && !unsignedp0)
2306         {
2307           if (val != 0)
2308             switch (code)
2309               {
2310               case LT_EXPR:
2311               case GE_EXPR:
2312                 primop1 = TYPE_MIN_VALUE (type);
2313                 val = 0;
2314                 break;
2315
2316               case LE_EXPR:
2317               case GT_EXPR:
2318                 primop1 = TYPE_MAX_VALUE (type);
2319                 val = 0;
2320                 break;
2321
2322               default:
2323                 break;
2324               }
2325           type = c_common_unsigned_type (type);
2326         }
2327
2328       if (TREE_CODE (primop0) != INTEGER_CST)
2329         {
2330           if (val == truthvalue_false_node)
2331             warning ("comparison is always false due to limited range of data type");
2332           if (val == truthvalue_true_node)
2333             warning ("comparison is always true due to limited range of data type");
2334         }
2335
2336       if (val != 0)
2337         {
2338           /* Don't forget to evaluate PRIMOP0 if it has side effects.  */
2339           if (TREE_SIDE_EFFECTS (primop0))
2340             return build (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
2341           return val;
2342         }
2343
2344       /* Value is not predetermined, but do the comparison
2345          in the type of the operand that is not constant.
2346          TYPE is already properly set.  */
2347     }
2348   else if (real1 && real2
2349            && (TYPE_PRECISION (TREE_TYPE (primop0))
2350                == TYPE_PRECISION (TREE_TYPE (primop1))))
2351     type = TREE_TYPE (primop0);
2352
2353   /* If args' natural types are both narrower than nominal type
2354      and both extend in the same manner, compare them
2355      in the type of the wider arg.
2356      Otherwise must actually extend both to the nominal
2357      common type lest different ways of extending
2358      alter the result.
2359      (eg, (short)-1 == (unsigned short)-1  should be 0.)  */
2360
2361   else if (unsignedp0 == unsignedp1 && real1 == real2
2362            && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
2363            && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
2364     {
2365       type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
2366       type = c_common_signed_or_unsigned_type (unsignedp0
2367                                                || TREE_UNSIGNED (*restype_ptr),
2368                                                type);
2369       /* Make sure shorter operand is extended the right way
2370          to match the longer operand.  */
2371       primop0
2372         = convert (c_common_signed_or_unsigned_type (unsignedp0,
2373                                                      TREE_TYPE (primop0)),
2374                    primop0);
2375       primop1
2376         = convert (c_common_signed_or_unsigned_type (unsignedp1,
2377                                                      TREE_TYPE (primop1)),
2378                    primop1);
2379     }
2380   else
2381     {
2382       /* Here we must do the comparison on the nominal type
2383          using the args exactly as we received them.  */
2384       type = *restype_ptr;
2385       primop0 = op0;
2386       primop1 = op1;
2387
2388       if (!real1 && !real2 && integer_zerop (primop1)
2389           && TREE_UNSIGNED (*restype_ptr))
2390         {
2391           tree value = 0;
2392           switch (code)
2393             {
2394             case GE_EXPR:
2395               /* All unsigned values are >= 0, so we warn if extra warnings
2396                  are requested.  However, if OP0 is a constant that is
2397                  >= 0, the signedness of the comparison isn't an issue,
2398                  so suppress the warning.  */
2399               if (extra_warnings && !in_system_header
2400                   && ! (TREE_CODE (primop0) == INTEGER_CST
2401                         && ! TREE_OVERFLOW (convert (c_common_signed_type (type),
2402                                                      primop0))))
2403                 warning ("comparison of unsigned expression >= 0 is always true");
2404               value = truthvalue_true_node;
2405               break;
2406
2407             case LT_EXPR:
2408               if (extra_warnings && !in_system_header
2409                   && ! (TREE_CODE (primop0) == INTEGER_CST
2410                         && ! TREE_OVERFLOW (convert (c_common_signed_type (type),
2411                                                      primop0))))
2412                 warning ("comparison of unsigned expression < 0 is always false");
2413               value = truthvalue_false_node;
2414               break;
2415
2416             default:
2417               break;
2418             }
2419
2420           if (value != 0)
2421             {
2422               /* Don't forget to evaluate PRIMOP0 if it has side effects.  */
2423               if (TREE_SIDE_EFFECTS (primop0))
2424                 return build (COMPOUND_EXPR, TREE_TYPE (value),
2425                               primop0, value);
2426               return value;
2427             }
2428         }
2429     }
2430
2431   *op0_ptr = convert (type, primop0);
2432   *op1_ptr = convert (type, primop1);
2433
2434   *restype_ptr = truthvalue_type_node;
2435
2436   return 0;
2437 }
2438 \f
2439 /* Return a tree for the sum or difference (RESULTCODE says which)
2440    of pointer PTROP and integer INTOP.  */
2441
2442 tree
2443 pointer_int_sum (enum tree_code resultcode, tree ptrop, tree intop)
2444 {
2445   tree size_exp;
2446
2447   tree result;
2448   tree folded;
2449
2450   /* The result is a pointer of the same type that is being added.  */
2451
2452   tree result_type = TREE_TYPE (ptrop);
2453
2454   if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
2455     {
2456       if (pedantic || warn_pointer_arith)
2457         pedwarn ("pointer of type `void *' used in arithmetic");
2458       size_exp = integer_one_node;
2459     }
2460   else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
2461     {
2462       if (pedantic || warn_pointer_arith)
2463         pedwarn ("pointer to a function used in arithmetic");
2464       size_exp = integer_one_node;
2465     }
2466   else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
2467     {
2468       if (pedantic || warn_pointer_arith)
2469         pedwarn ("pointer to member function used in arithmetic");
2470       size_exp = integer_one_node;
2471     }
2472   else if (TREE_CODE (TREE_TYPE (result_type)) == OFFSET_TYPE)
2473     {
2474       if (pedantic || warn_pointer_arith)
2475         pedwarn ("pointer to a member used in arithmetic");
2476       size_exp = integer_one_node;
2477     }
2478   else
2479     size_exp = size_in_bytes (TREE_TYPE (result_type));
2480
2481   /* If what we are about to multiply by the size of the elements
2482      contains a constant term, apply distributive law
2483      and multiply that constant term separately.
2484      This helps produce common subexpressions.  */
2485
2486   if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
2487       && ! TREE_CONSTANT (intop)
2488       && TREE_CONSTANT (TREE_OPERAND (intop, 1))
2489       && TREE_CONSTANT (size_exp)
2490       /* If the constant comes from pointer subtraction,
2491          skip this optimization--it would cause an error.  */
2492       && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
2493       /* If the constant is unsigned, and smaller than the pointer size,
2494          then we must skip this optimization.  This is because it could cause
2495          an overflow error if the constant is negative but INTOP is not.  */
2496       && (! TREE_UNSIGNED (TREE_TYPE (intop))
2497           || (TYPE_PRECISION (TREE_TYPE (intop))
2498               == TYPE_PRECISION (TREE_TYPE (ptrop)))))
2499     {
2500       enum tree_code subcode = resultcode;
2501       tree int_type = TREE_TYPE (intop);
2502       if (TREE_CODE (intop) == MINUS_EXPR)
2503         subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2504       /* Convert both subexpression types to the type of intop,
2505          because weird cases involving pointer arithmetic
2506          can result in a sum or difference with different type args.  */
2507       ptrop = build_binary_op (subcode, ptrop,
2508                                convert (int_type, TREE_OPERAND (intop, 1)), 1);
2509       intop = convert (int_type, TREE_OPERAND (intop, 0));
2510     }
2511
2512   /* Convert the integer argument to a type the same size as sizetype
2513      so the multiply won't overflow spuriously.  */
2514
2515   if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
2516       || TREE_UNSIGNED (TREE_TYPE (intop)) != TREE_UNSIGNED (sizetype))
2517     intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
2518                                              TREE_UNSIGNED (sizetype)), intop);
2519
2520   /* Replace the integer argument with a suitable product by the object size.
2521      Do this multiplication as signed, then convert to the appropriate
2522      pointer type (actually unsigned integral).  */
2523
2524   intop = convert (result_type,
2525                    build_binary_op (MULT_EXPR, intop,
2526                                     convert (TREE_TYPE (intop), size_exp), 1));
2527
2528   /* Create the sum or difference.  */
2529
2530   result = build (resultcode, result_type, ptrop, intop);
2531
2532   folded = fold (result);
2533   if (folded == result)
2534     TREE_CONSTANT (folded) = TREE_CONSTANT (ptrop) & TREE_CONSTANT (intop);
2535   return folded;
2536 }
2537 \f
2538 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
2539    or validate its data type for an `if' or `while' statement or ?..: exp.
2540
2541    This preparation consists of taking the ordinary
2542    representation of an expression expr and producing a valid tree
2543    boolean expression describing whether expr is nonzero.  We could
2544    simply always do build_binary_op (NE_EXPR, expr, truthvalue_false_node, 1),
2545    but we optimize comparisons, &&, ||, and !.
2546
2547    The resulting type should always be `truthvalue_type_node'.  */
2548
2549 tree
2550 c_common_truthvalue_conversion (tree expr)
2551 {
2552   if (TREE_CODE (expr) == ERROR_MARK)
2553     return expr;
2554
2555 #if 0 /* This appears to be wrong for C++.  */
2556   /* These really should return error_mark_node after 2.4 is stable.
2557      But not all callers handle ERROR_MARK properly.  */
2558   switch (TREE_CODE (TREE_TYPE (expr)))
2559     {
2560     case RECORD_TYPE:
2561       error ("struct type value used where scalar is required");
2562       return truthvalue_false_node;
2563
2564     case UNION_TYPE:
2565       error ("union type value used where scalar is required");
2566       return truthvalue_false_node;
2567
2568     case ARRAY_TYPE:
2569       error ("array type value used where scalar is required");
2570       return truthvalue_false_node;
2571
2572     default:
2573       break;
2574     }
2575 #endif /* 0 */
2576
2577   switch (TREE_CODE (expr))
2578     {
2579     case EQ_EXPR:
2580     case NE_EXPR: case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2581     case TRUTH_ANDIF_EXPR:
2582     case TRUTH_ORIF_EXPR:
2583     case TRUTH_AND_EXPR:
2584     case TRUTH_OR_EXPR:
2585     case TRUTH_XOR_EXPR:
2586     case TRUTH_NOT_EXPR:
2587       TREE_TYPE (expr) = truthvalue_type_node;
2588       return expr;
2589
2590     case ERROR_MARK:
2591       return expr;
2592
2593     case INTEGER_CST:
2594       return integer_zerop (expr) ? truthvalue_false_node : truthvalue_true_node;
2595
2596     case REAL_CST:
2597       return real_zerop (expr) ? truthvalue_false_node : truthvalue_true_node;
2598
2599     case ADDR_EXPR:
2600       /* If we are taking the address of an external decl, it might be zero
2601          if it is weak, so we cannot optimize.  */
2602       if (DECL_P (TREE_OPERAND (expr, 0))
2603           && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
2604         break;
2605
2606       if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 0)))
2607         return build (COMPOUND_EXPR, truthvalue_type_node,
2608                       TREE_OPERAND (expr, 0), truthvalue_true_node);
2609       else
2610         return truthvalue_true_node;
2611
2612     case COMPLEX_EXPR:
2613       return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
2614                                ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2615                 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)),
2616                 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2617                               0);
2618
2619     case NEGATE_EXPR:
2620     case ABS_EXPR:
2621     case FLOAT_EXPR:
2622     case FFS_EXPR:
2623     case POPCOUNT_EXPR:
2624       /* These don't change whether an object is nonzero or zero.  */
2625       return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2626
2627     case LROTATE_EXPR:
2628     case RROTATE_EXPR:
2629       /* These don't change whether an object is zero or nonzero, but
2630          we can't ignore them if their second arg has side-effects.  */
2631       if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2632         return build (COMPOUND_EXPR, truthvalue_type_node, TREE_OPERAND (expr, 1),
2633                       c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)));
2634       else
2635         return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2636
2637     case COND_EXPR:
2638       /* Distribute the conversion into the arms of a COND_EXPR.  */
2639       return fold (build (COND_EXPR, truthvalue_type_node, TREE_OPERAND (expr, 0),
2640                 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2641                 c_common_truthvalue_conversion (TREE_OPERAND (expr, 2))));
2642
2643     case CONVERT_EXPR:
2644       /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
2645          since that affects how `default_conversion' will behave.  */
2646       if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
2647           || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2648         break;
2649       /* Fall through....  */
2650     case NOP_EXPR:
2651       /* If this is widening the argument, we can ignore it.  */
2652       if (TYPE_PRECISION (TREE_TYPE (expr))
2653           >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2654         return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2655       break;
2656
2657     case MINUS_EXPR:
2658       /* Perhaps reduce (x - y) != 0 to (x != y).  The expressions
2659          aren't guaranteed to the be same for modes that can represent
2660          infinity, since if x and y are both +infinity, or both
2661          -infinity, then x - y is not a number.
2662
2663          Note that this transformation is safe when x or y is NaN.
2664          (x - y) is then NaN, and both (x - y) != 0 and x != y will
2665          be false.  */
2666       if (HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (TREE_OPERAND (expr, 0)))))
2667         break;
2668       /* Fall through....  */
2669     case BIT_XOR_EXPR:
2670       /* This and MINUS_EXPR can be changed into a comparison of the
2671          two objects.  */
2672       if (TREE_TYPE (TREE_OPERAND (expr, 0))
2673           == TREE_TYPE (TREE_OPERAND (expr, 1)))
2674         return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2675                                 TREE_OPERAND (expr, 1), 1);
2676       return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2677                               fold (build1 (NOP_EXPR,
2678                                             TREE_TYPE (TREE_OPERAND (expr, 0)),
2679                                             TREE_OPERAND (expr, 1))), 1);
2680
2681     case BIT_AND_EXPR:
2682       if (integer_onep (TREE_OPERAND (expr, 1))
2683           && TREE_TYPE (expr) != truthvalue_type_node)
2684         /* Using convert here would cause infinite recursion.  */
2685         return build1 (NOP_EXPR, truthvalue_type_node, expr);
2686       break;
2687
2688     case MODIFY_EXPR:
2689       if (warn_parentheses && C_EXP_ORIGINAL_CODE (expr) == MODIFY_EXPR)
2690         warning ("suggest parentheses around assignment used as truth value");
2691       break;
2692
2693     default:
2694       break;
2695     }
2696
2697   if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
2698     {
2699       tree t = save_expr (expr);
2700       return (build_binary_op
2701               ((TREE_SIDE_EFFECTS (expr)
2702                 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2703         c_common_truthvalue_conversion (build_unary_op (REALPART_EXPR, t, 0)),
2704         c_common_truthvalue_conversion (build_unary_op (IMAGPART_EXPR, t, 0)),
2705                0));
2706     }
2707
2708   return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2709 }
2710 \f
2711 static tree builtin_function_2 (const char *, const char *, tree, tree,
2712                                 int, enum built_in_class, int, int,
2713                                 tree);
2714
2715 /* Make a variant type in the proper way for C/C++, propagating qualifiers
2716    down to the element type of an array.  */
2717
2718 tree
2719 c_build_qualified_type (tree type, int type_quals)
2720 {
2721   /* A restrict-qualified pointer type must be a pointer to object or
2722      incomplete type.  Note that the use of POINTER_TYPE_P also allows
2723      REFERENCE_TYPEs, which is appropriate for C++.  Unfortunately,
2724      the C++ front-end also use POINTER_TYPE for pointer-to-member
2725      values, so even though it should be illegal to use `restrict'
2726      with such an entity we don't flag that here.  Thus, special case
2727      code for that case is required in the C++ front-end.  */
2728   if ((type_quals & TYPE_QUAL_RESTRICT)
2729       && (!POINTER_TYPE_P (type)
2730           || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
2731     {
2732       error ("invalid use of `restrict'");
2733       type_quals &= ~TYPE_QUAL_RESTRICT;
2734     }
2735
2736   if (TREE_CODE (type) == ARRAY_TYPE)
2737     return build_array_type (c_build_qualified_type (TREE_TYPE (type),
2738                                                      type_quals),
2739                              TYPE_DOMAIN (type));
2740   return build_qualified_type (type, type_quals);
2741 }
2742
2743 /* Apply the TYPE_QUALS to the new DECL.  */
2744
2745 void
2746 c_apply_type_quals_to_decl (int type_quals, tree decl)
2747 {
2748   if ((type_quals & TYPE_QUAL_CONST)
2749       || (TREE_TYPE (decl)
2750           && TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE))
2751     TREE_READONLY (decl) = 1;
2752   if (type_quals & TYPE_QUAL_VOLATILE)
2753     {
2754       TREE_SIDE_EFFECTS (decl) = 1;
2755       TREE_THIS_VOLATILE (decl) = 1;
2756     }
2757   if (type_quals & TYPE_QUAL_RESTRICT)
2758     {
2759       if (!TREE_TYPE (decl)
2760           || !POINTER_TYPE_P (TREE_TYPE (decl))
2761           || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (TREE_TYPE (decl))))
2762         error ("invalid use of `restrict'");
2763       else if (flag_strict_aliasing)
2764         /* Indicate we need to make a unique alias set for this pointer.
2765            We can't do it here because it might be pointing to an
2766            incomplete type.  */
2767         DECL_POINTER_ALIAS_SET (decl) = -2;
2768     }
2769 }
2770
2771 /* Return the typed-based alias set for T, which may be an expression
2772    or a type.  Return -1 if we don't do anything special.  */
2773
2774 HOST_WIDE_INT
2775 c_common_get_alias_set (tree t)
2776 {
2777   tree u;
2778
2779   /* Permit type-punning when accessing a union, provided the access
2780      is directly through the union.  For example, this code does not
2781      permit taking the address of a union member and then storing
2782      through it.  Even the type-punning allowed here is a GCC
2783      extension, albeit a common and useful one; the C standard says
2784      that such accesses have implementation-defined behavior.  */
2785   for (u = t;
2786        TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
2787        u = TREE_OPERAND (u, 0))
2788     if (TREE_CODE (u) == COMPONENT_REF
2789         && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
2790       return 0;
2791
2792   /* That's all the expressions we handle specially.  */
2793   if (! TYPE_P (t))
2794     return -1;
2795
2796   /* The C standard guarantees that any object may be accessed via an
2797      lvalue that has character type.  */
2798   if (t == char_type_node
2799       || t == signed_char_type_node
2800       || t == unsigned_char_type_node)
2801     return 0;
2802
2803   /* If it has the may_alias attribute, it can alias anything.  */
2804   if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (t)))
2805     return 0;
2806
2807   /* The C standard specifically allows aliasing between signed and
2808      unsigned variants of the same type.  We treat the signed
2809      variant as canonical.  */
2810   if (TREE_CODE (t) == INTEGER_TYPE && TREE_UNSIGNED (t))
2811     {
2812       tree t1 = c_common_signed_type (t);
2813
2814       /* t1 == t can happen for boolean nodes which are always unsigned.  */
2815       if (t1 != t)
2816         return get_alias_set (t1);
2817     }
2818   else if (POINTER_TYPE_P (t))
2819     {
2820       tree t1;
2821
2822       /* Unfortunately, there is no canonical form of a pointer type.
2823          In particular, if we have `typedef int I', then `int *', and
2824          `I *' are different types.  So, we have to pick a canonical
2825          representative.  We do this below.
2826
2827          Technically, this approach is actually more conservative that
2828          it needs to be.  In particular, `const int *' and `int *'
2829          should be in different alias sets, according to the C and C++
2830          standard, since their types are not the same, and so,
2831          technically, an `int **' and `const int **' cannot point at
2832          the same thing.
2833
2834          But, the standard is wrong.  In particular, this code is
2835          legal C++:
2836
2837             int *ip;
2838             int **ipp = &ip;
2839             const int* const* cipp = &ipp;
2840
2841          And, it doesn't make sense for that to be legal unless you
2842          can dereference IPP and CIPP.  So, we ignore cv-qualifiers on
2843          the pointed-to types.  This issue has been reported to the
2844          C++ committee.  */
2845       t1 = build_type_no_quals (t);
2846       if (t1 != t)
2847         return get_alias_set (t1);
2848     }
2849
2850   return -1;
2851 }
2852 \f
2853 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where the
2854    second parameter indicates which OPERATOR is being applied.  The COMPLAIN
2855    flag controls whether we should diagnose possibly ill-formed
2856    constructs or not.  */
2857 tree
2858 c_sizeof_or_alignof_type (tree type, enum tree_code op, int complain)
2859 {
2860   const char *op_name;
2861   tree value = NULL;
2862   enum tree_code type_code = TREE_CODE (type);
2863
2864   my_friendly_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR, 20020720);
2865   op_name = op == SIZEOF_EXPR ? "sizeof" : "__alignof__";
2866
2867   if (type_code == FUNCTION_TYPE)
2868     {
2869       if (op == SIZEOF_EXPR)
2870         {
2871           if (complain && (pedantic || warn_pointer_arith))
2872             pedwarn ("invalid application of `sizeof' to a function type");
2873           value = size_one_node;
2874         }
2875       else
2876         value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
2877     }
2878   else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
2879     {
2880       if (type_code == VOID_TYPE
2881           && complain && (pedantic || warn_pointer_arith))
2882         pedwarn ("invalid application of `%s' to a void type", op_name);
2883       value = size_one_node;
2884     }
2885   else if (!COMPLETE_TYPE_P (type))
2886     {
2887       if (complain)
2888         error ("invalid application of `%s' to an incomplete type", op_name);
2889       value = size_zero_node;
2890     }
2891   else
2892     {
2893       if (op == SIZEOF_EXPR)
2894         /* Convert in case a char is more than one unit.  */
2895         value = size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
2896                             size_int (TYPE_PRECISION (char_type_node)
2897                                       / BITS_PER_UNIT));
2898       else
2899         value = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
2900     }
2901
2902   /* VALUE will have an integer type with TYPE_IS_SIZETYPE set.
2903      TYPE_IS_SIZETYPE means that certain things (like overflow) will
2904      never happen.  However, this node should really have type
2905      `size_t', which is just a typedef for an ordinary integer type.  */
2906   value = fold (build1 (NOP_EXPR, size_type_node, value));
2907   my_friendly_assert (!TYPE_IS_SIZETYPE (TREE_TYPE (value)), 20001021);
2908
2909   return value;
2910 }
2911
2912 /* Implement the __alignof keyword: Return the minimum required
2913    alignment of EXPR, measured in bytes.  For VAR_DECL's and
2914    FIELD_DECL's return DECL_ALIGN (which can be set from an
2915    "aligned" __attribute__ specification).  */
2916
2917 tree
2918 c_alignof_expr (tree expr)
2919 {
2920   tree t;
2921
2922   if (TREE_CODE (expr) == VAR_DECL)
2923     t = size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
2924
2925   else if (TREE_CODE (expr) == COMPONENT_REF
2926            && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
2927     {
2928       error ("`__alignof' applied to a bit-field");
2929       t = size_one_node;
2930     }
2931   else if (TREE_CODE (expr) == COMPONENT_REF
2932            && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
2933     t = size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
2934
2935   else if (TREE_CODE (expr) == INDIRECT_REF)
2936     {
2937       tree t = TREE_OPERAND (expr, 0);
2938       tree best = t;
2939       int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2940
2941       while (TREE_CODE (t) == NOP_EXPR
2942              && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
2943         {
2944           int thisalign;
2945
2946           t = TREE_OPERAND (t, 0);
2947           thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2948           if (thisalign > bestalign)
2949             best = t, bestalign = thisalign;
2950         }
2951       return c_alignof (TREE_TYPE (TREE_TYPE (best)));
2952     }
2953   else
2954     return c_alignof (TREE_TYPE (expr));
2955
2956   return fold (build1 (NOP_EXPR, size_type_node, t));
2957 }
2958 \f
2959 /* Handle C and C++ default attributes.  */
2960
2961 enum built_in_attribute
2962 {
2963 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
2964 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
2965 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
2966 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
2967 #include "builtin-attrs.def"
2968 #undef DEF_ATTR_NULL_TREE
2969 #undef DEF_ATTR_INT
2970 #undef DEF_ATTR_IDENT
2971 #undef DEF_ATTR_TREE_LIST
2972   ATTR_LAST
2973 };
2974
2975 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
2976
2977 static void c_init_attributes (void);
2978
2979 /* Build tree nodes and builtin functions common to both C and C++ language
2980    frontends.  */
2981
2982 void
2983 c_common_nodes_and_builtins (void)
2984 {
2985   enum builtin_type
2986   {
2987 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
2988 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
2989 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
2990 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
2991 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
2992 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
2993 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
2994 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
2995 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
2996 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
2997 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
2998 #include "builtin-types.def"
2999 #undef DEF_PRIMITIVE_TYPE
3000 #undef DEF_FUNCTION_TYPE_0
3001 #undef DEF_FUNCTION_TYPE_1
3002 #undef DEF_FUNCTION_TYPE_2
3003 #undef DEF_FUNCTION_TYPE_3
3004 #undef DEF_FUNCTION_TYPE_4
3005 #undef DEF_FUNCTION_TYPE_VAR_0
3006 #undef DEF_FUNCTION_TYPE_VAR_1
3007 #undef DEF_FUNCTION_TYPE_VAR_2
3008 #undef DEF_FUNCTION_TYPE_VAR_3
3009 #undef DEF_POINTER_TYPE
3010     BT_LAST
3011   };
3012
3013   typedef enum builtin_type builtin_type;
3014
3015   tree builtin_types[(int) BT_LAST];
3016   int wchar_type_size;
3017   tree array_domain_type;
3018   tree va_list_ref_type_node;
3019   tree va_list_arg_type_node;
3020
3021   /* Define `int' and `char' first so that dbx will output them first.  */
3022   record_builtin_type (RID_INT, NULL, integer_type_node);
3023   record_builtin_type (RID_CHAR, "char", char_type_node);
3024
3025   /* `signed' is the same as `int'.  FIXME: the declarations of "signed",
3026      "unsigned long", "long long unsigned" and "unsigned short" were in C++
3027      but not C.  Are the conditionals here needed?  */
3028   if (c_dialect_cxx ())
3029     record_builtin_type (RID_SIGNED, NULL, integer_type_node);
3030   record_builtin_type (RID_LONG, "long int", long_integer_type_node);
3031   record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
3032   record_builtin_type (RID_MAX, "long unsigned int",
3033                        long_unsigned_type_node);
3034   if (c_dialect_cxx ())
3035     record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
3036   record_builtin_type (RID_MAX, "long long int",
3037                        long_long_integer_type_node);
3038   record_builtin_type (RID_MAX, "long long unsigned int",
3039                        long_long_unsigned_type_node);
3040   if (c_dialect_cxx ())
3041     record_builtin_type (RID_MAX, "long long unsigned",
3042                          long_long_unsigned_type_node);
3043   record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
3044   record_builtin_type (RID_MAX, "short unsigned int",
3045                        short_unsigned_type_node);
3046   if (c_dialect_cxx ())
3047     record_builtin_type (RID_MAX, "unsigned short",
3048                          short_unsigned_type_node);
3049
3050   /* Define both `signed char' and `unsigned char'.  */
3051   record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
3052   record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
3053
3054   /* These are types that c_common_type_for_size and
3055      c_common_type_for_mode use.  */
3056   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3057                                             intQI_type_node));
3058   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3059                                             intHI_type_node));
3060   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3061                                             intSI_type_node));
3062   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3063                                             intDI_type_node));
3064 #if HOST_BITS_PER_WIDE_INT >= 64
3065   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3066                                             get_identifier ("__int128_t"),
3067                                             intTI_type_node));
3068 #endif
3069   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3070                                             unsigned_intQI_type_node));
3071   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3072                                             unsigned_intHI_type_node));
3073   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3074                                             unsigned_intSI_type_node));
3075   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3076                                             unsigned_intDI_type_node));
3077 #if HOST_BITS_PER_WIDE_INT >= 64
3078   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3079                                             get_identifier ("__uint128_t"),
3080                                             unsigned_intTI_type_node));
3081 #endif
3082
3083   /* Create the widest literal types.  */
3084   widest_integer_literal_type_node
3085     = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
3086   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3087                                             widest_integer_literal_type_node));
3088
3089   widest_unsigned_literal_type_node
3090     = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
3091   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3092                                             widest_unsigned_literal_type_node));
3093
3094   /* `unsigned long' is the standard type for sizeof.
3095      Note that stddef.h uses `unsigned long',
3096      and this must agree, even if long and int are the same size.  */
3097   size_type_node =
3098     TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
3099   signed_size_type_node = c_common_signed_type (size_type_node);
3100   set_sizetype (size_type_node);
3101
3102   build_common_tree_nodes_2 (flag_short_double);
3103
3104   record_builtin_type (RID_FLOAT, NULL, float_type_node);
3105   record_builtin_type (RID_DOUBLE, NULL, double_type_node);
3106   record_builtin_type (RID_MAX, "long double", long_double_type_node);
3107
3108   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3109                                             get_identifier ("complex int"),
3110                                             complex_integer_type_node));
3111   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3112                                             get_identifier ("complex float"),
3113                                             complex_float_type_node));
3114   (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3115                                             get_identifier ("complex double"),
3116                                             complex_double_type_node));
3117   (*lang_hooks.decls.pushdecl)
3118     (build_decl (TYPE_DECL, get_identifier ("complex long double"),
3119                  complex_long_double_type_node));
3120
3121   /* Types which are common to the fortran compiler and libf2c.  When
3122      changing these, you also need to be concerned with f/com.h.  */
3123
3124   if (TYPE_PRECISION (float_type_node)
3125       == TYPE_PRECISION (long_integer_type_node))
3126     {
3127       g77_integer_type_node = long_integer_type_node;
3128       g77_uinteger_type_node = long_unsigned_type_node;
3129     }
3130   else if (TYPE_PRECISION (float_type_node)
3131            == TYPE_PRECISION (integer_type_node))
3132     {
3133       g77_integer_type_node = integer_type_node;
3134       g77_uinteger_type_node = unsigned_type_node;
3135     }
3136   else
3137     g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3138
3139   if (g77_integer_type_node != NULL_TREE)
3140     {
3141       (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3142                                                 get_identifier ("__g77_integer"),
3143                                                 g77_integer_type_node));
3144       (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3145                                                 get_identifier ("__g77_uinteger"),
3146                                                 g77_uinteger_type_node));
3147     }
3148
3149   if (TYPE_PRECISION (float_type_node) * 2
3150       == TYPE_PRECISION (long_integer_type_node))
3151     {
3152       g77_longint_type_node = long_integer_type_node;
3153       g77_ulongint_type_node = long_unsigned_type_node;
3154     }
3155   else if (TYPE_PRECISION (float_type_node) * 2
3156            == TYPE_PRECISION (long_long_integer_type_node))
3157     {
3158       g77_longint_type_node = long_long_integer_type_node;
3159       g77_ulongint_type_node = long_long_unsigned_type_node;
3160     }
3161   else
3162     g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3163
3164   if (g77_longint_type_node != NULL_TREE)
3165     {
3166       (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3167                                                 get_identifier ("__g77_longint"),
3168                                                 g77_longint_type_node));
3169       (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3170                                                 get_identifier ("__g77_ulongint"),
3171                                                 g77_ulongint_type_node));
3172     }
3173
3174   record_builtin_type (RID_VOID, NULL, void_type_node);
3175
3176   void_zero_node = build_int_2 (0, 0);
3177   TREE_TYPE (void_zero_node) = void_type_node;
3178
3179   void_list_node = build_void_list_node ();
3180
3181   /* Make a type to be the domain of a few array types
3182      whose domains don't really matter.
3183      200 is small enough that it always fits in size_t
3184      and large enough that it can hold most function names for the
3185      initializations of __FUNCTION__ and __PRETTY_FUNCTION__.  */
3186   array_domain_type = build_index_type (size_int (200));
3187
3188   /* Make a type for arrays of characters.
3189      With luck nothing will ever really depend on the length of this
3190      array type.  */
3191   char_array_type_node
3192     = build_array_type (char_type_node, array_domain_type);
3193
3194   /* Likewise for arrays of ints.  */
3195   int_array_type_node
3196     = build_array_type (integer_type_node, array_domain_type);
3197
3198   string_type_node = build_pointer_type (char_type_node);
3199   const_string_type_node
3200     = build_pointer_type (build_qualified_type
3201                           (char_type_node, TYPE_QUAL_CONST));
3202
3203   /* This is special for C++ so functions can be overloaded.  */
3204   wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
3205   wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
3206   wchar_type_size = TYPE_PRECISION (wchar_type_node);
3207   if (c_dialect_cxx ())
3208     {
3209       if (TREE_UNSIGNED (wchar_type_node))
3210         wchar_type_node = make_unsigned_type (wchar_type_size);
3211       else
3212         wchar_type_node = make_signed_type (wchar_type_size);
3213       record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
3214     }
3215   else
3216     {
3217       signed_wchar_type_node = c_common_signed_type (wchar_type_node);
3218       unsigned_wchar_type_node = c_common_unsigned_type (wchar_type_node);
3219     }
3220
3221   /* This is for wide string constants.  */
3222   wchar_array_type_node
3223     = build_array_type (wchar_type_node, array_domain_type);
3224
3225   wint_type_node =
3226     TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
3227
3228   intmax_type_node =
3229     TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
3230   uintmax_type_node =
3231     TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
3232
3233   default_function_type = build_function_type (integer_type_node, NULL_TREE);
3234   ptrdiff_type_node
3235     = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
3236   unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
3237
3238   (*lang_hooks.decls.pushdecl)
3239     (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
3240                  va_list_type_node));
3241
3242   (*lang_hooks.decls.pushdecl)
3243     (build_decl (TYPE_DECL, get_identifier ("__builtin_ptrdiff_t"),
3244                  ptrdiff_type_node));
3245
3246   (*lang_hooks.decls.pushdecl)
3247     (build_decl (TYPE_DECL, get_identifier ("__builtin_size_t"),
3248                  sizetype));
3249
3250   if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
3251     {
3252       va_list_arg_type_node = va_list_ref_type_node =
3253         build_pointer_type (TREE_TYPE (va_list_type_node));
3254     }
3255   else
3256     {
3257       va_list_arg_type_node = va_list_type_node;
3258       va_list_ref_type_node = build_reference_type (va_list_type_node);
3259     }
3260
3261 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
3262   builtin_types[(int) ENUM] = VALUE;
3263 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN)               \
3264   builtin_types[(int) ENUM]                             \
3265     = build_function_type (builtin_types[(int) RETURN], \
3266                            void_list_node);
3267 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1)                         \
3268   builtin_types[(int) ENUM]                                             \
3269     = build_function_type (builtin_types[(int) RETURN],                 \
3270                            tree_cons (NULL_TREE,                        \
3271                                       builtin_types[(int) ARG1],        \
3272                                       void_list_node));
3273 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2)   \
3274   builtin_types[(int) ENUM]                             \
3275     = build_function_type                               \
3276       (builtin_types[(int) RETURN],                     \
3277        tree_cons (NULL_TREE,                            \
3278                   builtin_types[(int) ARG1],            \
3279                   tree_cons (NULL_TREE,                 \
3280                              builtin_types[(int) ARG2], \
3281                              void_list_node)));
3282 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3)              \
3283   builtin_types[(int) ENUM]                                              \
3284     = build_function_type                                                \
3285       (builtin_types[(int) RETURN],                                      \
3286        tree_cons (NULL_TREE,                                             \
3287                   builtin_types[(int) ARG1],                             \
3288                   tree_cons (NULL_TREE,                                  \
3289                              builtin_types[(int) ARG2],                  \
3290                              tree_cons (NULL_TREE,                       \
3291                                         builtin_types[(int) ARG3],       \
3292                                         void_list_node))));
3293 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4)       \
3294   builtin_types[(int) ENUM]                                             \
3295     = build_function_type                                               \
3296       (builtin_types[(int) RETURN],                                     \
3297        tree_cons (NULL_TREE,                                            \
3298                   builtin_types[(int) ARG1],                            \
3299                   tree_cons (NULL_TREE,                                 \
3300                              builtin_types[(int) ARG2],                 \
3301                              tree_cons                                  \
3302                              (NULL_TREE,                                \
3303                               builtin_types[(int) ARG3],                \
3304                               tree_cons (NULL_TREE,                     \
3305                                          builtin_types[(int) ARG4],     \
3306                                          void_list_node)))));
3307 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN)                           \
3308   builtin_types[(int) ENUM]                                             \
3309     = build_function_type (builtin_types[(int) RETURN], NULL_TREE);
3310 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1)                      \
3311    builtin_types[(int) ENUM]                                             \
3312     = build_function_type (builtin_types[(int) RETURN],          \
3313                            tree_cons (NULL_TREE,                         \
3314                                       builtin_types[(int) ARG1],         \
3315                                       NULL_TREE));
3316
3317 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2)       \
3318    builtin_types[(int) ENUM]                                    \
3319     = build_function_type                                       \
3320       (builtin_types[(int) RETURN],                             \
3321        tree_cons (NULL_TREE,                                    \
3322                   builtin_types[(int) ARG1],                    \
3323                   tree_cons (NULL_TREE,                         \
3324                              builtin_types[(int) ARG2],         \
3325                              NULL_TREE)));
3326
3327 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3)         \
3328    builtin_types[(int) ENUM]                                            \
3329     = build_function_type                                               \
3330       (builtin_types[(int) RETURN],                                     \
3331        tree_cons (NULL_TREE,                                            \
3332                   builtin_types[(int) ARG1],                            \
3333                   tree_cons (NULL_TREE,                                 \
3334                              builtin_types[(int) ARG2],                 \
3335                              tree_cons (NULL_TREE,                      \
3336                                         builtin_types[(int) ARG3],      \
3337                                         NULL_TREE))));
3338
3339 #define DEF_POINTER_TYPE(ENUM, TYPE)                    \
3340   builtin_types[(int) ENUM]                             \
3341     = build_pointer_type (builtin_types[(int) TYPE]);
3342 #include "builtin-types.def"
3343 #undef DEF_PRIMITIVE_TYPE
3344 #undef DEF_FUNCTION_TYPE_1
3345 #undef DEF_FUNCTION_TYPE_2
3346 #undef DEF_FUNCTION_TYPE_3
3347 #undef DEF_FUNCTION_TYPE_4
3348 #undef DEF_FUNCTION_TYPE_VAR_0
3349 #undef DEF_FUNCTION_TYPE_VAR_1
3350 #undef DEF_FUNCTION_TYPE_VAR_2
3351 #undef DEF_FUNCTION_TYPE_VAR_3
3352 #undef DEF_POINTER_TYPE
3353
3354   c_init_attributes ();
3355
3356 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE,                   \
3357                     BOTH_P, FALLBACK_P, NONANSI_P, ATTRS, IMPLICIT)     \
3358   if (NAME)                                                             \
3359     {                                                                   \
3360       tree decl;                                                        \
3361                                                                         \
3362       if (strncmp (NAME, "__builtin_", strlen ("__builtin_")) != 0)     \
3363         abort ();                                                       \
3364                                                                         \
3365       if (!BOTH_P)                                                      \
3366         decl = builtin_function (NAME, builtin_types[TYPE], ENUM,       \
3367                                  CLASS,                                 \
3368                                  (FALLBACK_P                            \
3369                                   ? (NAME + strlen ("__builtin_"))      \
3370                                   : NULL),                              \
3371                                  built_in_attributes[(int) ATTRS]);     \
3372       else                                                              \
3373         decl = builtin_function_2 (NAME,                                \
3374                                    NAME + strlen ("__builtin_"),        \
3375                                    builtin_types[TYPE],                 \
3376                                    builtin_types[LIBTYPE],              \
3377                                    ENUM,                                \
3378                                    CLASS,                               \
3379                                    FALLBACK_P,                          \
3380                                    NONANSI_P,                           \
3381                                    built_in_attributes[(int) ATTRS]);   \
3382                                                                         \
3383       built_in_decls[(int) ENUM] = decl;                                \
3384       if (IMPLICIT)                                                     \
3385         implicit_built_in_decls[(int) ENUM] = decl;                     \
3386     }
3387 #include "builtins.def"
3388 #undef DEF_BUILTIN
3389
3390   (*targetm.init_builtins) ();
3391
3392   main_identifier_node = get_identifier ("main");
3393 }
3394
3395 tree
3396 build_va_arg (tree expr, tree type)
3397 {
3398   return build1 (VA_ARG_EXPR, type, expr);
3399 }
3400
3401
3402 /* Linked list of disabled built-in functions.  */
3403
3404 typedef struct disabled_builtin
3405 {
3406   const char *name;
3407   struct disabled_builtin *next;
3408 } disabled_builtin;
3409 static disabled_builtin *disabled_builtins = NULL;
3410
3411 static bool builtin_function_disabled_p (const char *);
3412
3413 /* Disable a built-in function specified by -fno-builtin-NAME.  If NAME
3414    begins with "__builtin_", give an error.  */
3415
3416 void
3417 disable_builtin_function (const char *name)
3418 {
3419   if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
3420     error ("cannot disable built-in function `%s'", name);
3421   else
3422     {
3423       disabled_builtin *new = xmalloc (sizeof (disabled_builtin));
3424       new->name = name;
3425       new->next = disabled_builtins;
3426       disabled_builtins = new;
3427     }
3428 }
3429
3430
3431 /* Return true if the built-in function NAME has been disabled, false
3432    otherwise.  */
3433
3434 static bool
3435 builtin_function_disabled_p (const char *name)
3436 {
3437   disabled_builtin *p;
3438   for (p = disabled_builtins; p != NULL; p = p->next)
3439     {
3440       if (strcmp (name, p->name) == 0)
3441         return true;
3442     }
3443   return false;
3444 }
3445
3446
3447 /* Possibly define a builtin function with one or two names.  BUILTIN_NAME
3448    is an __builtin_-prefixed name; NAME is the ordinary name; one or both
3449    of these may be NULL (though both being NULL is useless).
3450    BUILTIN_TYPE is the type of the __builtin_-prefixed function;
3451    TYPE is the type of the function with the ordinary name.  These
3452    may differ if the ordinary name is declared with a looser type to avoid
3453    conflicts with headers.  FUNCTION_CODE and CLASS are as for
3454    builtin_function.  If LIBRARY_NAME_P is nonzero, NAME is passed as
3455    the LIBRARY_NAME parameter to builtin_function when declaring BUILTIN_NAME.
3456    If NONANSI_P is nonzero, the name NAME is treated as a non-ANSI name;
3457    ATTRS is the tree list representing the builtin's function attributes.
3458    Returns the declaration of BUILTIN_NAME, if any, otherwise
3459    the declaration of NAME.  Does not declare NAME if flag_no_builtin,
3460    or if NONANSI_P and flag_no_nonansi_builtin.  */
3461
3462 static tree
3463 builtin_function_2 (const char *builtin_name, const char *name,
3464                     tree builtin_type, tree type, int function_code,
3465                     enum built_in_class class, int library_name_p,
3466                     int nonansi_p, tree attrs)
3467 {
3468   tree bdecl = NULL_TREE;
3469   tree decl = NULL_TREE;
3470
3471   if (builtin_name != 0)
3472     bdecl = builtin_function (builtin_name, builtin_type, function_code,
3473                               class, library_name_p ? name : NULL, attrs);
3474
3475   if (name != 0 && !flag_no_builtin && !builtin_function_disabled_p (name)
3476       && !(nonansi_p && flag_no_nonansi_builtin))
3477     decl = builtin_function (name, type, function_code, class, NULL, attrs);
3478
3479   return (bdecl != 0 ? bdecl : decl);
3480 }
3481 \f
3482 /* Nonzero if the type T promotes to int.  This is (nearly) the
3483    integral promotions defined in ISO C99 6.3.1.1/2.  */
3484
3485 bool
3486 c_promoting_integer_type_p (tree t)
3487 {
3488   switch (TREE_CODE (t))
3489     {
3490     case INTEGER_TYPE:
3491       return (TYPE_MAIN_VARIANT (t) == char_type_node
3492               || TYPE_MAIN_VARIANT (t) == signed_char_type_node
3493               || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
3494               || TYPE_MAIN_VARIANT (t) == short_integer_type_node
3495               || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
3496               || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
3497
3498     case ENUMERAL_TYPE:
3499       /* ??? Technically all enumerations not larger than an int
3500          promote to an int.  But this is used along code paths
3501          that only want to notice a size change.  */
3502       return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
3503
3504     case BOOLEAN_TYPE:
3505       return 1;
3506
3507     default:
3508       return 0;
3509     }
3510 }
3511
3512 /* Return 1 if PARMS specifies a fixed number of parameters
3513    and none of their types is affected by default promotions.  */
3514
3515 int
3516 self_promoting_args_p (tree parms)
3517 {
3518   tree t;
3519   for (t = parms; t; t = TREE_CHAIN (t))
3520     {
3521       tree type = TREE_VALUE (t);
3522
3523       if (TREE_CHAIN (t) == 0 && type != void_type_node)
3524         return 0;
3525
3526       if (type == 0)
3527         return 0;
3528
3529       if (TYPE_MAIN_VARIANT (type) == float_type_node)
3530         return 0;
3531
3532       if (c_promoting_integer_type_p (type))
3533         return 0;
3534     }
3535   return 1;
3536 }
3537
3538 /* Recursively examines the array elements of TYPE, until a non-array
3539    element type is found.  */
3540
3541 tree
3542 strip_array_types (tree type)
3543 {
3544   while (TREE_CODE (type) == ARRAY_TYPE)
3545     type = TREE_TYPE (type);
3546
3547   return type;
3548 }
3549
3550 static tree expand_unordered_cmp (tree, tree, enum tree_code, enum tree_code);
3551
3552 /* Expand a call to an unordered comparison function such as
3553    __builtin_isgreater().  FUNCTION is the function's declaration and
3554    PARAMS a list of the values passed.  For __builtin_isunordered(),
3555    UNORDERED_CODE is UNORDERED_EXPR and ORDERED_CODE is NOP_EXPR.  In
3556    other cases, UNORDERED_CODE and ORDERED_CODE are comparison codes
3557    that give the opposite of the desired result.  UNORDERED_CODE is
3558    used for modes that can hold NaNs and ORDERED_CODE is used for the
3559    rest.  */
3560
3561 static tree
3562 expand_unordered_cmp (tree function, tree params,
3563                       enum tree_code unordered_code,
3564                       enum tree_code ordered_code)
3565 {
3566   tree arg0, arg1, type;
3567   enum tree_code code0, code1;
3568
3569   /* Check that we have exactly two arguments.  */
3570   if (params == 0 || TREE_CHAIN (params) == 0)
3571     {
3572       error ("too few arguments to function `%s'",
3573              IDENTIFIER_POINTER (DECL_NAME (function)));
3574       return error_mark_node;
3575     }
3576   else if (TREE_CHAIN (TREE_CHAIN (params)) != 0)
3577     {
3578       error ("too many arguments to function `%s'",
3579              IDENTIFIER_POINTER (DECL_NAME (function)));
3580       return error_mark_node;
3581     }
3582
3583   arg0 = TREE_VALUE (params);
3584   arg1 = TREE_VALUE (TREE_CHAIN (params));
3585
3586   code0 = TREE_CODE (TREE_TYPE (arg0));
3587   code1 = TREE_CODE (TREE_TYPE (arg1));
3588
3589   /* Make sure that the arguments have a common type of REAL.  */
3590   type = 0;
3591   if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3592       && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3593     type = common_type (TREE_TYPE (arg0), TREE_TYPE (arg1));
3594
3595   if (type == 0 || TREE_CODE (type) != REAL_TYPE)
3596     {
3597       error ("non-floating-point argument to function `%s'",
3598              IDENTIFIER_POINTER (DECL_NAME (function)));
3599       return error_mark_node;
3600     }
3601
3602   if (unordered_code == UNORDERED_EXPR)
3603     {
3604       if (MODE_HAS_NANS (TYPE_MODE (type)))
3605         return build_binary_op (unordered_code,
3606                                 convert (type, arg0),
3607                                 convert (type, arg1),
3608                                 0);
3609       else
3610         return integer_zero_node;
3611     }
3612
3613   return build_unary_op (TRUTH_NOT_EXPR,
3614                          build_binary_op (MODE_HAS_NANS (TYPE_MODE (type))
3615                                           ? unordered_code
3616                                           : ordered_code,
3617                                           convert (type, arg0),
3618                                           convert (type, arg1),
3619                                           0),
3620                          0);
3621 }
3622
3623
3624 /* Recognize certain built-in functions so we can make tree-codes
3625    other than CALL_EXPR.  We do this when it enables fold-const.c
3626    to do something useful.  */
3627 /* ??? By rights this should go in builtins.c, but only C and C++
3628    implement build_{binary,unary}_op.  Not exactly sure what bits
3629    of functionality are actually needed from those functions, or
3630    where the similar functionality exists in the other front ends.  */
3631
3632 tree
3633 expand_tree_builtin (tree function, tree params, tree coerced_params)
3634 {
3635   if (DECL_BUILT_IN_CLASS (function) != BUILT_IN_NORMAL)
3636     return NULL_TREE;
3637
3638   switch (DECL_FUNCTION_CODE (function))
3639     {
3640     case BUILT_IN_ABS:
3641     case BUILT_IN_LABS:
3642     case BUILT_IN_LLABS:
3643     case BUILT_IN_IMAXABS:
3644     case BUILT_IN_FABS:
3645     case BUILT_IN_FABSL:
3646     case BUILT_IN_FABSF:
3647       if (coerced_params == 0)
3648         return integer_zero_node;
3649       return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
3650
3651     case BUILT_IN_CONJ:
3652     case BUILT_IN_CONJF:
3653     case BUILT_IN_CONJL:
3654       if (coerced_params == 0)
3655         return integer_zero_node;
3656       return build_unary_op (CONJ_EXPR, TREE_VALUE (coerced_params), 0);
3657
3658     case BUILT_IN_CREAL:
3659     case BUILT_IN_CREALF:
3660     case BUILT_IN_CREALL:
3661       if (coerced_params == 0)
3662         return integer_zero_node;
3663       return build_unary_op (REALPART_EXPR, TREE_VALUE (coerced_params), 0);
3664
3665     case BUILT_IN_CIMAG:
3666     case BUILT_IN_CIMAGF:
3667     case BUILT_IN_CIMAGL:
3668       if (coerced_params == 0)
3669         return integer_zero_node;
3670       return build_unary_op (IMAGPART_EXPR, TREE_VALUE (coerced_params), 0);
3671
3672     case BUILT_IN_ISGREATER:
3673       return expand_unordered_cmp (function, params, UNLE_EXPR, LE_EXPR);
3674
3675     case BUILT_IN_ISGREATEREQUAL:
3676       return expand_unordered_cmp (function, params, UNLT_EXPR, LT_EXPR);
3677
3678     case BUILT_IN_ISLESS:
3679       return expand_unordered_cmp (function, params, UNGE_EXPR, GE_EXPR);
3680
3681     case BUILT_IN_ISLESSEQUAL:
3682       return expand_unordered_cmp (function, params, UNGT_EXPR, GT_EXPR);
3683
3684     case BUILT_IN_ISLESSGREATER:
3685       return expand_unordered_cmp (function, params, UNEQ_EXPR, EQ_EXPR);
3686
3687     case BUILT_IN_ISUNORDERED:
3688       return expand_unordered_cmp (function, params, UNORDERED_EXPR, NOP_EXPR);
3689
3690     default:
3691       break;
3692     }
3693
3694   return NULL_TREE;
3695 }
3696
3697 /* Walk the statement tree, rooted at *tp.  Apply FUNC to all the
3698    sub-trees of *TP in a pre-order traversal.  FUNC is called with the
3699    DATA and the address of each sub-tree.  If FUNC returns a non-NULL
3700    value, the traversal is aborted, and the value returned by FUNC is
3701    returned.  If FUNC sets WALK_SUBTREES to zero, then the subtrees of
3702    the node being visited are not walked.
3703
3704    We don't need a without_duplicates variant of this one because the
3705    statement tree is a tree, not a graph.  */
3706
3707 tree
3708 walk_stmt_tree (tree *tp, walk_tree_fn func, void *data)
3709 {
3710   enum tree_code code;
3711   int walk_subtrees;
3712   tree result;
3713   int i, len;
3714
3715 #define WALK_SUBTREE(NODE)                              \
3716   do                                                    \
3717     {                                                   \
3718       result = walk_stmt_tree (&(NODE), func, data);    \
3719       if (result)                                       \
3720         return result;                                  \
3721     }                                                   \
3722   while (0)
3723
3724   /* Skip empty subtrees.  */
3725   if (!*tp)
3726     return NULL_TREE;
3727
3728   /* Skip subtrees below non-statement nodes.  */
3729   if (!STATEMENT_CODE_P (TREE_CODE (*tp)))
3730     return NULL_TREE;
3731
3732   /* Call the function.  */
3733   walk_subtrees = 1;
3734   result = (*func) (tp, &walk_subtrees, data);
3735
3736   /* If we found something, return it.  */
3737   if (result)
3738     return result;
3739
3740   /* FUNC may have modified the tree, recheck that we're looking at a
3741      statement node.  */
3742   code = TREE_CODE (*tp);
3743   if (!STATEMENT_CODE_P (code))
3744     return NULL_TREE;
3745
3746   /* Visit the subtrees unless FUNC decided that there was nothing
3747      interesting below this point in the tree.  */
3748   if (walk_subtrees)
3749     {
3750       /* Walk over all the sub-trees of this operand.  Statement nodes
3751          never contain RTL, and we needn't worry about TARGET_EXPRs.  */
3752       len = TREE_CODE_LENGTH (code);
3753
3754       /* Go through the subtrees.  We need to do this in forward order so
3755          that the scope of a FOR_EXPR is handled properly.  */
3756       for (i = 0; i < len; ++i)
3757         WALK_SUBTREE (TREE_OPERAND (*tp, i));
3758     }
3759
3760   /* Finally visit the chain.  This can be tail-recursion optimized if
3761      we write it this way.  */
3762   return walk_stmt_tree (&TREE_CHAIN (*tp), func, data);
3763
3764 #undef WALK_SUBTREE
3765 }
3766
3767 /* Used to compare case labels.  K1 and K2 are actually tree nodes
3768    representing case labels, or NULL_TREE for a `default' label.
3769    Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
3770    K2, and 0 if K1 and K2 are equal.  */
3771
3772 int
3773 case_compare (splay_tree_key k1, splay_tree_key k2)
3774 {
3775   /* Consider a NULL key (such as arises with a `default' label) to be
3776      smaller than anything else.  */
3777   if (!k1)
3778     return k2 ? -1 : 0;
3779   else if (!k2)
3780     return k1 ? 1 : 0;
3781
3782   return tree_int_cst_compare ((tree) k1, (tree) k2);
3783 }
3784
3785 /* Process a case label for the range LOW_VALUE ... HIGH_VALUE.  If
3786    LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
3787    actually a `default' label.  If only HIGH_VALUE is NULL_TREE, then
3788    case label was declared using the usual C/C++ syntax, rather than
3789    the GNU case range extension.  CASES is a tree containing all the
3790    case ranges processed so far; COND is the condition for the
3791    switch-statement itself.  Returns the CASE_LABEL created, or
3792    ERROR_MARK_NODE if no CASE_LABEL is created.  */
3793
3794 tree
3795 c_add_case_label (splay_tree cases, tree cond, tree low_value,
3796                   tree high_value)
3797 {
3798   tree type;
3799   tree label;
3800   tree case_label;
3801   splay_tree_node node;
3802
3803   /* Create the LABEL_DECL itself.  */
3804   label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3805   DECL_CONTEXT (label) = current_function_decl;
3806
3807   /* If there was an error processing the switch condition, bail now
3808      before we get more confused.  */
3809   if (!cond || cond == error_mark_node)
3810     {
3811       /* Add a label anyhow so that the back-end doesn't think that
3812          the beginning of the switch is unreachable.  */
3813       if (!cases->root)
3814         add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3815       return error_mark_node;
3816     }
3817
3818   if ((low_value && TREE_TYPE (low_value)
3819        && POINTER_TYPE_P (TREE_TYPE (low_value)))
3820       || (high_value && TREE_TYPE (high_value)
3821           && POINTER_TYPE_P (TREE_TYPE (high_value))))
3822     error ("pointers are not permitted as case values");
3823
3824   /* Case ranges are a GNU extension.  */
3825   if (high_value && pedantic)
3826     pedwarn ("range expressions in switch statements are non-standard");
3827
3828   type = TREE_TYPE (cond);
3829   if (low_value)
3830     {
3831       low_value = check_case_value (low_value);
3832       low_value = convert_and_check (type, low_value);
3833     }
3834   if (high_value)
3835     {
3836       high_value = check_case_value (high_value);
3837       high_value = convert_and_check (type, high_value);
3838     }
3839
3840   /* If an error has occurred, bail out now.  */
3841   if (low_value == error_mark_node || high_value == error_mark_node)
3842     {
3843       if (!cases->root)
3844         add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3845       return error_mark_node;
3846     }
3847
3848   /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
3849      really a case range, even though it was written that way.  Remove
3850      the HIGH_VALUE to simplify later processing.  */
3851   if (tree_int_cst_equal (low_value, high_value))
3852     high_value = NULL_TREE;
3853   if (low_value && high_value
3854       && !tree_int_cst_lt (low_value, high_value))
3855     warning ("empty range specified");
3856
3857   /* Look up the LOW_VALUE in the table of case labels we already
3858      have.  */
3859   node = splay_tree_lookup (cases, (splay_tree_key) low_value);
3860   /* If there was not an exact match, check for overlapping ranges.
3861      There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
3862      that's a `default' label and the only overlap is an exact match.  */
3863   if (!node && (low_value || high_value))
3864     {
3865       splay_tree_node low_bound;
3866       splay_tree_node high_bound;
3867
3868       /* Even though there wasn't an exact match, there might be an
3869          overlap between this case range and another case range.
3870          Since we've (inductively) not allowed any overlapping case
3871          ranges, we simply need to find the greatest low case label
3872          that is smaller that LOW_VALUE, and the smallest low case
3873          label that is greater than LOW_VALUE.  If there is an overlap
3874          it will occur in one of these two ranges.  */
3875       low_bound = splay_tree_predecessor (cases,
3876                                           (splay_tree_key) low_value);
3877       high_bound = splay_tree_successor (cases,
3878                                          (splay_tree_key) low_value);
3879
3880       /* Check to see if the LOW_BOUND overlaps.  It is smaller than
3881          the LOW_VALUE, so there is no need to check unless the
3882          LOW_BOUND is in fact itself a case range.  */
3883       if (low_bound
3884           && CASE_HIGH ((tree) low_bound->value)
3885           && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
3886                                     low_value) >= 0)
3887         node = low_bound;
3888       /* Check to see if the HIGH_BOUND overlaps.  The low end of that
3889          range is bigger than the low end of the current range, so we
3890          are only interested if the current range is a real range, and
3891          not an ordinary case label.  */
3892       else if (high_bound
3893                && high_value
3894                && (tree_int_cst_compare ((tree) high_bound->key,
3895                                          high_value)
3896                    <= 0))
3897         node = high_bound;
3898     }
3899   /* If there was an overlap, issue an error.  */
3900   if (node)
3901     {
3902       tree duplicate = CASE_LABEL_DECL ((tree) node->value);
3903
3904       if (high_value)
3905         {
3906           error ("duplicate (or overlapping) case value");
3907           error ("%Hthis is the first entry overlapping that value",
3908                  &DECL_SOURCE_LOCATION (duplicate));
3909         }
3910       else if (low_value)
3911         {
3912           error ("duplicate case value") ;
3913           error ("%Hpreviously used here", &DECL_SOURCE_LOCATION (duplicate));
3914         }
3915       else
3916         {
3917           error ("multiple default labels in one switch");
3918           error ("%Hthis is the first default label",
3919                  &DECL_SOURCE_LOCATION (duplicate));
3920         }
3921       if (!cases->root)
3922         add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3923     }
3924
3925   /* Add a CASE_LABEL to the statement-tree.  */
3926   case_label = add_stmt (build_case_label (low_value, high_value, label));
3927   /* Register this case label in the splay tree.  */
3928   splay_tree_insert (cases,
3929                      (splay_tree_key) low_value,
3930                      (splay_tree_value) case_label);
3931
3932   return case_label;
3933 }
3934
3935 /* Finish an expression taking the address of LABEL (an
3936    IDENTIFIER_NODE).  Returns an expression for the address.  */
3937
3938 tree
3939 finish_label_address_expr (tree label)
3940 {
3941   tree result;
3942
3943   if (pedantic)
3944     pedwarn ("taking the address of a label is non-standard");
3945
3946   if (label == error_mark_node)
3947     return error_mark_node;
3948
3949   label = lookup_label (label);
3950   if (label == NULL_TREE)
3951     result = null_pointer_node;
3952   else
3953     {
3954       TREE_USED (label) = 1;
3955       result = build1 (ADDR_EXPR, ptr_type_node, label);
3956       TREE_CONSTANT (result) = 1;
3957       /* The current function in not necessarily uninlinable.
3958          Computed gotos are incompatible with inlining, but the value
3959          here could be used only in a diagnostic, for example.  */
3960     }
3961
3962   return result;
3963 }
3964
3965 /* Hook used by expand_expr to expand language-specific tree codes.  */
3966
3967 rtx
3968 c_expand_expr (tree exp, rtx target, enum machine_mode tmode, int modifier)
3969      /* Actually enum_modifier.  */
3970 {
3971   switch (TREE_CODE (exp))
3972     {
3973     case STMT_EXPR:
3974       {
3975         tree rtl_expr;
3976         rtx result;
3977         bool preserve_result = false;
3978         bool return_target = false;
3979
3980         /* Since expand_expr_stmt calls free_temp_slots after every
3981            expression statement, we must call push_temp_slots here.
3982            Otherwise, any temporaries in use now would be considered
3983            out-of-scope after the first EXPR_STMT from within the
3984            STMT_EXPR.  */
3985         push_temp_slots ();
3986         rtl_expr = expand_start_stmt_expr (!STMT_EXPR_NO_SCOPE (exp));
3987
3988         /* If we want the result of this expression, find the last
3989            EXPR_STMT in the COMPOUND_STMT and mark it as addressable.  */
3990         if (target != const0_rtx
3991             && TREE_CODE (STMT_EXPR_STMT (exp)) == COMPOUND_STMT
3992             && TREE_CODE (COMPOUND_BODY (STMT_EXPR_STMT (exp))) == SCOPE_STMT)
3993           {
3994             tree expr = COMPOUND_BODY (STMT_EXPR_STMT (exp));
3995             tree last = TREE_CHAIN (expr);
3996
3997             while (TREE_CHAIN (last))
3998               {
3999                 expr = last;
4000                 last = TREE_CHAIN (last);
4001               }
4002
4003             if (TREE_CODE (last) == SCOPE_STMT
4004                 && TREE_CODE (expr) == EXPR_STMT)
4005               {
4006                 if (target && TREE_CODE (EXPR_STMT_EXPR (expr)) == VAR_DECL
4007                     && DECL_RTL_IF_SET (EXPR_STMT_EXPR (expr)) == target)
4008                   /* If the last expression is a variable whose RTL is the
4009                      same as our target, just return the target; if it
4010                      isn't valid expanding the decl would produce different
4011                      RTL, and store_expr would try to do a copy.  */
4012                   return_target = true;
4013                 else
4014                   {
4015                     /* Otherwise, note that we want the value from the last
4016                        expression.  */
4017                     TREE_ADDRESSABLE (expr) = 1;
4018                     preserve_result = true;
4019                   }
4020               }
4021           }
4022
4023         expand_stmt (STMT_EXPR_STMT (exp));
4024         expand_end_stmt_expr (rtl_expr);
4025
4026         result = expand_expr (rtl_expr, target, tmode, modifier);
4027         if (return_target)
4028           result = target;
4029         else if (preserve_result && GET_CODE (result) == MEM)
4030           {
4031             if (GET_MODE (result) != BLKmode)
4032               result = copy_to_reg (result);
4033             else
4034               preserve_temp_slots (result);
4035           }
4036
4037         /* If the statment-expression does not have a scope, then the
4038            new temporaries we created within it must live beyond the
4039            statement-expression.  */
4040         if (STMT_EXPR_NO_SCOPE (exp))
4041           preserve_temp_slots (NULL_RTX);
4042
4043         pop_temp_slots ();
4044         return result;
4045       }
4046       break;
4047
4048     case COMPOUND_LITERAL_EXPR:
4049       {
4050         /* Initialize the anonymous variable declared in the compound
4051            literal, then return the variable.  */
4052         tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
4053         emit_local_var (decl);
4054         return expand_expr (decl, target, tmode, modifier);
4055       }
4056
4057     default:
4058       abort ();
4059     }
4060
4061   abort ();
4062   return NULL;
4063 }
4064
4065 /* Hook used by safe_from_p to handle language-specific tree codes.  */
4066
4067 int
4068 c_safe_from_p (rtx target, tree exp)
4069 {
4070   /* We can see statements here when processing the body of a
4071      statement-expression.  For a declaration statement declaring a
4072      variable, look at the variable's initializer.  */
4073   if (TREE_CODE (exp) == DECL_STMT)
4074     {
4075       tree decl = DECL_STMT_DECL (exp);
4076
4077       if (TREE_CODE (decl) == VAR_DECL
4078           && DECL_INITIAL (decl)
4079           && !safe_from_p (target, DECL_INITIAL (decl), /*top_p=*/0))
4080         return 0;
4081     }
4082
4083   /* For any statement, we must follow the statement-chain.  */
4084   if (STATEMENT_CODE_P (TREE_CODE (exp)) && TREE_CHAIN (exp))
4085     return safe_from_p (target, TREE_CHAIN (exp), /*top_p=*/0);
4086
4087   /* Assume everything else is safe.  */
4088   return 1;
4089 }
4090
4091 /* Hook used by unsafe_for_reeval to handle language-specific tree codes.  */
4092
4093 int
4094 c_common_unsafe_for_reeval (tree exp)
4095 {
4096   /* Statement expressions may not be reevaluated, likewise compound
4097      literals.  */
4098   if (TREE_CODE (exp) == STMT_EXPR
4099       || TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
4100     return 2;
4101
4102   /* Walk all other expressions.  */
4103   return -1;
4104 }
4105
4106 /* Hook used by staticp to handle language-specific tree codes.  */
4107
4108 int
4109 c_staticp (tree exp)
4110 {
4111   if (TREE_CODE (exp) == COMPOUND_LITERAL_EXPR
4112       && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp)))
4113     return 1;
4114   return 0;
4115 }
4116 \f
4117
4118 /* Given a boolean expression ARG, return a tree representing an increment
4119    or decrement (as indicated by CODE) of ARG.  The front end must check for
4120    invalid cases (e.g., decrement in C++).  */
4121 tree
4122 boolean_increment (enum tree_code code, tree arg)
4123 {
4124   tree val;
4125   tree true_res = boolean_true_node;
4126
4127   arg = stabilize_reference (arg);
4128   switch (code)
4129     {
4130     case PREINCREMENT_EXPR:
4131       val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4132       break;
4133     case POSTINCREMENT_EXPR:
4134       val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4135       arg = save_expr (arg);
4136       val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4137       val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4138       break;
4139     case PREDECREMENT_EXPR:
4140       val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
4141       break;
4142     case POSTDECREMENT_EXPR:
4143       val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
4144       arg = save_expr (arg);
4145       val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4146       val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4147       break;
4148     default:
4149       abort ();
4150     }
4151   TREE_SIDE_EFFECTS (val) = 1;
4152   return val;
4153 }
4154 \f
4155 /* Built-in macros for stddef.h, that require macros defined in this
4156    file.  */
4157 void
4158 c_stddef_cpp_builtins(void)
4159 {
4160   builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
4161   builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
4162   builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
4163   builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
4164 }
4165
4166 static void
4167 c_init_attributes (void)
4168 {
4169   /* Fill in the built_in_attributes array.  */
4170 #define DEF_ATTR_NULL_TREE(ENUM)                \
4171   built_in_attributes[(int) ENUM] = NULL_TREE;
4172 #define DEF_ATTR_INT(ENUM, VALUE)                                            \
4173   built_in_attributes[(int) ENUM] = build_int_2 (VALUE, VALUE < 0 ? -1 : 0);
4174 #define DEF_ATTR_IDENT(ENUM, STRING)                            \
4175   built_in_attributes[(int) ENUM] = get_identifier (STRING);
4176 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
4177   built_in_attributes[(int) ENUM]                       \
4178     = tree_cons (built_in_attributes[(int) PURPOSE],    \
4179                  built_in_attributes[(int) VALUE],      \
4180                  built_in_attributes[(int) CHAIN]);
4181 #include "builtin-attrs.def"
4182 #undef DEF_ATTR_NULL_TREE
4183 #undef DEF_ATTR_INT
4184 #undef DEF_ATTR_IDENT
4185 #undef DEF_ATTR_TREE_LIST
4186 }
4187
4188 /* Output a -Wshadow warning MSGCODE about NAME, and give the location
4189    of the previous declaration DECL.  */
4190 void
4191 shadow_warning (enum sw_kind msgcode, const char *name, tree decl)
4192 {
4193   static const char *const msgs[] = {
4194     /* SW_PARAM  */ N_("declaration of \"%s\" shadows a parameter"),
4195     /* SW_LOCAL  */ N_("declaration of \"%s\" shadows a previous local"),
4196     /* SW_GLOBAL */ N_("declaration of \"%s\" shadows a global declaration")
4197   };
4198
4199   warning (msgs[msgcode], name);
4200   warning ("%Hshadowed declaration is here", &DECL_SOURCE_LOCATION (decl));
4201 }
4202
4203 /* Attribute handlers common to C front ends.  */
4204
4205 /* Handle a "packed" attribute; arguments as in
4206    struct attribute_spec.handler.  */
4207
4208 static tree
4209 handle_packed_attribute (tree *node, tree name, tree args  ATTRIBUTE_UNUSED,
4210                          int flags, bool *no_add_attrs)
4211 {
4212   if (TYPE_P (*node))
4213     {
4214       if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4215         *node = build_type_copy (*node);
4216       TYPE_PACKED (*node) = 1;
4217       if (TYPE_MAIN_VARIANT (*node) == *node)
4218         {
4219           /* If it is the main variant, then pack the other variants
4220              too. This happens in,
4221              
4222              struct Foo {
4223                struct Foo const *ptr; // creates a variant w/o packed flag
4224                } __ attribute__((packed)); // packs it now.
4225           */
4226           tree probe;
4227           
4228           for (probe = *node; probe; probe = TYPE_NEXT_VARIANT (probe))
4229             TYPE_PACKED (probe) = 1;
4230         }
4231       
4232     }
4233   else if (TREE_CODE (*node) == FIELD_DECL)
4234     DECL_PACKED (*node) = 1;
4235   /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
4236      used for DECL_REGISTER.  It wouldn't mean anything anyway.
4237      We can't set DECL_PACKED on the type of a TYPE_DECL, because
4238      that changes what the typedef is typing.  */
4239   else
4240     {
4241       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4242       *no_add_attrs = true;
4243     }
4244
4245   return NULL_TREE;
4246 }
4247
4248 /* Handle a "nocommon" attribute; arguments as in
4249    struct attribute_spec.handler.  */
4250
4251 static tree
4252 handle_nocommon_attribute (tree *node, tree name,
4253                            tree args ATTRIBUTE_UNUSED,
4254                            int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4255 {
4256   if (TREE_CODE (*node) == VAR_DECL)
4257     DECL_COMMON (*node) = 0;
4258   else
4259     {
4260       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4261       *no_add_attrs = true;
4262     }
4263
4264   return NULL_TREE;
4265 }
4266
4267 /* Handle a "common" attribute; arguments as in
4268    struct attribute_spec.handler.  */
4269
4270 static tree
4271 handle_common_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4272                          int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4273 {
4274   if (TREE_CODE (*node) == VAR_DECL)
4275     DECL_COMMON (*node) = 1;
4276   else
4277     {
4278       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4279       *no_add_attrs = true;
4280     }
4281
4282   return NULL_TREE;
4283 }
4284
4285 /* Handle a "noreturn" attribute; arguments as in
4286    struct attribute_spec.handler.  */
4287
4288 static tree
4289 handle_noreturn_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4290                            int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4291 {
4292   tree type = TREE_TYPE (*node);
4293
4294   /* See FIXME comment in c_common_attribute_table.  */
4295   if (TREE_CODE (*node) == FUNCTION_DECL)
4296     TREE_THIS_VOLATILE (*node) = 1;
4297   else if (TREE_CODE (type) == POINTER_TYPE
4298            && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4299     TREE_TYPE (*node)
4300       = build_pointer_type
4301         (build_type_variant (TREE_TYPE (type),
4302                              TREE_READONLY (TREE_TYPE (type)), 1));
4303   else
4304     {
4305       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4306       *no_add_attrs = true;
4307     }
4308
4309   return NULL_TREE;
4310 }
4311
4312 /* Handle a "noinline" attribute; arguments as in
4313    struct attribute_spec.handler.  */
4314
4315 static tree
4316 handle_noinline_attribute (tree *node, tree name,
4317                            tree args ATTRIBUTE_UNUSED,
4318                            int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4319 {
4320   if (TREE_CODE (*node) == FUNCTION_DECL)
4321     DECL_UNINLINABLE (*node) = 1;
4322   else
4323     {
4324       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4325       *no_add_attrs = true;
4326     }
4327
4328   return NULL_TREE;
4329 }
4330
4331 /* Handle a "always_inline" attribute; arguments as in
4332    struct attribute_spec.handler.  */
4333
4334 static tree
4335 handle_always_inline_attribute (tree *node, tree name,
4336                                 tree args ATTRIBUTE_UNUSED,
4337                                 int flags ATTRIBUTE_UNUSED,
4338                                 bool *no_add_attrs)
4339 {
4340   if (TREE_CODE (*node) == FUNCTION_DECL)
4341     {
4342       /* Do nothing else, just set the attribute.  We'll get at
4343          it later with lookup_attribute.  */
4344     }
4345   else
4346     {
4347       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4348       *no_add_attrs = true;
4349     }
4350
4351   return NULL_TREE;
4352 }
4353
4354 /* Handle a "used" attribute; arguments as in
4355    struct attribute_spec.handler.  */
4356
4357 static tree
4358 handle_used_attribute (tree *pnode, tree name, tree args ATTRIBUTE_UNUSED,
4359                        int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4360 {
4361   tree node = *pnode;
4362
4363   if (TREE_CODE (node) == FUNCTION_DECL
4364       || (TREE_CODE (node) == VAR_DECL && TREE_STATIC (node)))
4365     {
4366       TREE_USED (node) = 1;
4367     }
4368   else
4369     {
4370       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4371       *no_add_attrs = true;
4372     }
4373
4374   return NULL_TREE;
4375 }
4376
4377 /* Handle a "unused" attribute; arguments as in
4378    struct attribute_spec.handler.  */
4379
4380 static tree
4381 handle_unused_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4382                          int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4383 {
4384   if (DECL_P (*node))
4385     {
4386       tree decl = *node;
4387
4388       if (TREE_CODE (decl) == PARM_DECL
4389           || TREE_CODE (decl) == VAR_DECL
4390           || TREE_CODE (decl) == FUNCTION_DECL
4391           || TREE_CODE (decl) == LABEL_DECL
4392           || TREE_CODE (decl) == TYPE_DECL)
4393         TREE_USED (decl) = 1;
4394       else
4395         {
4396           warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4397           *no_add_attrs = true;
4398         }
4399     }
4400   else
4401     {
4402       if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4403         *node = build_type_copy (*node);
4404       TREE_USED (*node) = 1;
4405     }
4406
4407   return NULL_TREE;
4408 }
4409
4410 /* Handle a "const" attribute; arguments as in
4411    struct attribute_spec.handler.  */
4412
4413 static tree
4414 handle_const_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4415                         int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4416 {
4417   tree type = TREE_TYPE (*node);
4418
4419   /* See FIXME comment on noreturn in c_common_attribute_table.  */
4420   if (TREE_CODE (*node) == FUNCTION_DECL)
4421     TREE_READONLY (*node) = 1;
4422   else if (TREE_CODE (type) == POINTER_TYPE
4423            && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4424     TREE_TYPE (*node)
4425       = build_pointer_type
4426         (build_type_variant (TREE_TYPE (type), 1,
4427                              TREE_THIS_VOLATILE (TREE_TYPE (type))));
4428   else
4429     {
4430       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4431       *no_add_attrs = true;
4432     }
4433
4434   return NULL_TREE;
4435 }
4436
4437 /* Handle a "transparent_union" attribute; arguments as in
4438    struct attribute_spec.handler.  */
4439
4440 static tree
4441 handle_transparent_union_attribute (tree *node, tree name,
4442                                     tree args ATTRIBUTE_UNUSED, int flags,
4443                                     bool *no_add_attrs)
4444 {
4445   tree decl = NULL_TREE;
4446   tree *type = NULL;
4447   int is_type = 0;
4448
4449   if (DECL_P (*node))
4450     {
4451       decl = *node;
4452       type = &TREE_TYPE (decl);
4453       is_type = TREE_CODE (*node) == TYPE_DECL;
4454     }
4455   else if (TYPE_P (*node))
4456     type = node, is_type = 1;
4457
4458   if (is_type
4459       && TREE_CODE (*type) == UNION_TYPE
4460       && (decl == 0
4461           || (TYPE_FIELDS (*type) != 0
4462               && TYPE_MODE (*type) == DECL_MODE (TYPE_FIELDS (*type)))))
4463     {
4464       if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4465         *type = build_type_copy (*type);
4466       TYPE_TRANSPARENT_UNION (*type) = 1;
4467     }
4468   else if (decl != 0 && TREE_CODE (decl) == PARM_DECL
4469            && TREE_CODE (*type) == UNION_TYPE
4470            && TYPE_MODE (*type) == DECL_MODE (TYPE_FIELDS (*type)))
4471     DECL_TRANSPARENT_UNION (decl) = 1;
4472   else
4473     {
4474       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4475       *no_add_attrs = true;
4476     }
4477
4478   return NULL_TREE;
4479 }
4480
4481 /* Handle a "constructor" attribute; arguments as in
4482    struct attribute_spec.handler.  */
4483
4484 static tree
4485 handle_constructor_attribute (tree *node, tree name,
4486                               tree args ATTRIBUTE_UNUSED,
4487                               int flags ATTRIBUTE_UNUSED,
4488                               bool *no_add_attrs)
4489 {
4490   tree decl = *node;
4491   tree type = TREE_TYPE (decl);
4492
4493   if (TREE_CODE (decl) == FUNCTION_DECL
4494       && TREE_CODE (type) == FUNCTION_TYPE
4495       && decl_function_context (decl) == 0)
4496     {
4497       DECL_STATIC_CONSTRUCTOR (decl) = 1;
4498       TREE_USED (decl) = 1;
4499     }
4500   else
4501     {
4502       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4503       *no_add_attrs = true;
4504     }
4505
4506   return NULL_TREE;
4507 }
4508
4509 /* Handle a "destructor" attribute; arguments as in
4510    struct attribute_spec.handler.  */
4511
4512 static tree
4513 handle_destructor_attribute (tree *node, tree name,
4514                              tree args ATTRIBUTE_UNUSED,
4515                              int flags ATTRIBUTE_UNUSED,
4516                              bool *no_add_attrs)
4517 {
4518   tree decl = *node;
4519   tree type = TREE_TYPE (decl);
4520
4521   if (TREE_CODE (decl) == FUNCTION_DECL
4522       && TREE_CODE (type) == FUNCTION_TYPE
4523       && decl_function_context (decl) == 0)
4524     {
4525       DECL_STATIC_DESTRUCTOR (decl) = 1;
4526       TREE_USED (decl) = 1;
4527     }
4528   else
4529     {
4530       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4531       *no_add_attrs = true;
4532     }
4533
4534   return NULL_TREE;
4535 }
4536
4537 /* Handle a "mode" attribute; arguments as in
4538    struct attribute_spec.handler.  */
4539
4540 static tree
4541 handle_mode_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4542                        int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4543 {
4544   tree type = *node;
4545
4546   *no_add_attrs = true;
4547
4548   if (TREE_CODE (TREE_VALUE (args)) != IDENTIFIER_NODE)
4549     warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4550   else
4551     {
4552       int j;
4553       const char *p = IDENTIFIER_POINTER (TREE_VALUE (args));
4554       int len = strlen (p);
4555       enum machine_mode mode = VOIDmode;
4556       tree typefm;
4557       tree ptr_type;
4558
4559       if (len > 4 && p[0] == '_' && p[1] == '_'
4560           && p[len - 1] == '_' && p[len - 2] == '_')
4561         {
4562           char *newp = alloca (len - 1);
4563
4564           strcpy (newp, &p[2]);
4565           newp[len - 4] = '\0';
4566           p = newp;
4567         }
4568
4569       /* Change this type to have a type with the specified mode.
4570          First check for the special modes.  */
4571       if (! strcmp (p, "byte"))
4572         mode = byte_mode;
4573       else if (!strcmp (p, "word"))
4574         mode = word_mode;
4575       else if (! strcmp (p, "pointer"))
4576         mode = ptr_mode;
4577       else
4578         for (j = 0; j < NUM_MACHINE_MODES; j++)
4579           if (!strcmp (p, GET_MODE_NAME (j)))
4580             mode = (enum machine_mode) j;
4581
4582       if (mode == VOIDmode)
4583         error ("unknown machine mode `%s'", p);
4584       else if (0 == (typefm = (*lang_hooks.types.type_for_mode)
4585                      (mode, TREE_UNSIGNED (type))))
4586         error ("no data type for mode `%s'", p);
4587       else if ((TREE_CODE (type) == POINTER_TYPE
4588                 || TREE_CODE (type) == REFERENCE_TYPE)
4589                && !(*targetm.valid_pointer_mode) (mode))
4590         error ("invalid pointer mode `%s'", p);
4591       else
4592         {
4593           /* If this is a vector, make sure we either have hardware
4594              support, or we can emulate it.  */
4595           if (VECTOR_MODE_P (mode) && !vector_mode_valid_p (mode))
4596             {
4597               error ("unable to emulate '%s'", GET_MODE_NAME (mode));
4598               return NULL_TREE;
4599             }
4600
4601           if (TREE_CODE (type) == POINTER_TYPE)
4602             {
4603               ptr_type = build_pointer_type_for_mode (TREE_TYPE (type),
4604                                                       mode);
4605               *node = ptr_type;
4606             }
4607           else if (TREE_CODE (type) == REFERENCE_TYPE)
4608             {
4609               ptr_type = build_reference_type_for_mode (TREE_TYPE (type),
4610                                                         mode);
4611               *node = ptr_type;
4612             }
4613           else
4614           *node = typefm;
4615           /* No need to layout the type here.  The caller should do this.  */
4616         }
4617     }
4618
4619   return NULL_TREE;
4620 }
4621
4622 /* Handle a "section" attribute; arguments as in
4623    struct attribute_spec.handler.  */
4624
4625 static tree
4626 handle_section_attribute (tree *node, tree name ATTRIBUTE_UNUSED, tree args,
4627                           int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4628 {
4629   tree decl = *node;
4630
4631   if (targetm.have_named_sections)
4632     {
4633       if ((TREE_CODE (decl) == FUNCTION_DECL
4634            || TREE_CODE (decl) == VAR_DECL)
4635           && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
4636         {
4637           if (TREE_CODE (decl) == VAR_DECL
4638               && current_function_decl != NULL_TREE
4639               && ! TREE_STATIC (decl))
4640             {
4641               error ("%Hsection attribute cannot be specified for "
4642                      "local variables", &DECL_SOURCE_LOCATION (decl));
4643               *no_add_attrs = true;
4644             }
4645
4646           /* The decl may have already been given a section attribute
4647              from a previous declaration.  Ensure they match.  */
4648           else if (DECL_SECTION_NAME (decl) != NULL_TREE
4649                    && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
4650                               TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
4651             {
4652               error ("%Hsection of '%D' conflicts with previous declaration",
4653                      &DECL_SOURCE_LOCATION (*node), *node);
4654               *no_add_attrs = true;
4655             }
4656           else
4657             DECL_SECTION_NAME (decl) = TREE_VALUE (args);
4658         }
4659       else
4660         {
4661           error ("%Hsection attribute not allowed for '%D'",
4662                  &DECL_SOURCE_LOCATION (*node), *node);
4663           *no_add_attrs = true;
4664         }
4665     }
4666   else
4667     {
4668       error ("%Hsection attributes are not supported for this target",
4669              &DECL_SOURCE_LOCATION (*node));
4670       *no_add_attrs = true;
4671     }
4672
4673   return NULL_TREE;
4674 }
4675
4676 /* Handle a "aligned" attribute; arguments as in
4677    struct attribute_spec.handler.  */
4678
4679 static tree
4680 handle_aligned_attribute (tree *node, tree name ATTRIBUTE_UNUSED, tree args,
4681                           int flags, bool *no_add_attrs)
4682 {
4683   tree decl = NULL_TREE;
4684   tree *type = NULL;
4685   int is_type = 0;
4686   tree align_expr = (args ? TREE_VALUE (args)
4687                      : size_int (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
4688   int i;
4689
4690   if (DECL_P (*node))
4691     {
4692       decl = *node;
4693       type = &TREE_TYPE (decl);
4694       is_type = TREE_CODE (*node) == TYPE_DECL;
4695     }
4696   else if (TYPE_P (*node))
4697     type = node, is_type = 1;
4698
4699   /* Strip any NOPs of any kind.  */
4700   while (TREE_CODE (align_expr) == NOP_EXPR
4701          || TREE_CODE (align_expr) == CONVERT_EXPR
4702          || TREE_CODE (align_expr) == NON_LVALUE_EXPR)
4703     align_expr = TREE_OPERAND (align_expr, 0);
4704
4705   if (TREE_CODE (align_expr) != INTEGER_CST)
4706     {
4707       error ("requested alignment is not a constant");
4708       *no_add_attrs = true;
4709     }
4710   else if ((i = tree_log2 (align_expr)) == -1)
4711     {
4712       error ("requested alignment is not a power of 2");
4713       *no_add_attrs = true;
4714     }
4715   else if (i > HOST_BITS_PER_INT - 2)
4716     {
4717       error ("requested alignment is too large");
4718       *no_add_attrs = true;
4719     }
4720   else if (is_type)
4721     {
4722       /* If we have a TYPE_DECL, then copy the type, so that we
4723          don't accidentally modify a builtin type.  See pushdecl.  */
4724       if (decl && TREE_TYPE (decl) != error_mark_node
4725           && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
4726         {
4727           tree tt = TREE_TYPE (decl);
4728           *type = build_type_copy (*type);
4729           DECL_ORIGINAL_TYPE (decl) = tt;
4730           TYPE_NAME (*type) = decl;
4731           TREE_USED (*type) = TREE_USED (decl);
4732           TREE_TYPE (decl) = *type;
4733         }
4734       else if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4735         *type = build_type_copy (*type);
4736
4737       TYPE_ALIGN (*type) = (1 << i) * BITS_PER_UNIT;
4738       TYPE_USER_ALIGN (*type) = 1;
4739     }
4740   else if (TREE_CODE (decl) != VAR_DECL
4741            && TREE_CODE (decl) != FIELD_DECL)
4742     {
4743       error ("%Halignment may not be specified for '%D'",
4744              &DECL_SOURCE_LOCATION (decl), decl);
4745       *no_add_attrs = true;
4746     }
4747   else
4748     {
4749       DECL_ALIGN (decl) = (1 << i) * BITS_PER_UNIT;
4750       DECL_USER_ALIGN (decl) = 1;
4751     }
4752
4753   return NULL_TREE;
4754 }
4755
4756 /* Handle a "weak" attribute; arguments as in
4757    struct attribute_spec.handler.  */
4758
4759 static tree
4760 handle_weak_attribute (tree *node, tree name ATTRIBUTE_UNUSED,
4761                        tree args ATTRIBUTE_UNUSED,
4762                        int flags ATTRIBUTE_UNUSED,
4763                        bool *no_add_attrs ATTRIBUTE_UNUSED)
4764 {
4765   declare_weak (*node);
4766
4767   return NULL_TREE;
4768 }
4769
4770 /* Handle an "alias" attribute; arguments as in
4771    struct attribute_spec.handler.  */
4772
4773 static tree
4774 handle_alias_attribute (tree *node, tree name, tree args,
4775                         int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4776 {
4777   tree decl = *node;
4778
4779   if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
4780       || (TREE_CODE (decl) != FUNCTION_DECL && ! DECL_EXTERNAL (decl)))
4781     {
4782       error ("%H'%D' defined both normally and as an alias",
4783              &DECL_SOURCE_LOCATION (decl), decl);
4784       *no_add_attrs = true;
4785     }
4786   else if (decl_function_context (decl) == 0)
4787     {
4788       tree id;
4789
4790       id = TREE_VALUE (args);
4791       if (TREE_CODE (id) != STRING_CST)
4792         {
4793           error ("alias arg not a string");
4794           *no_add_attrs = true;
4795           return NULL_TREE;
4796         }
4797       id = get_identifier (TREE_STRING_POINTER (id));
4798       /* This counts as a use of the object pointed to.  */
4799       TREE_USED (id) = 1;
4800
4801       if (TREE_CODE (decl) == FUNCTION_DECL)
4802         DECL_INITIAL (decl) = error_mark_node;
4803       else
4804         DECL_EXTERNAL (decl) = 0;
4805     }
4806   else
4807     {
4808       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4809       *no_add_attrs = true;
4810     }
4811
4812   return NULL_TREE;
4813 }
4814
4815 /* Handle an "visibility" attribute; arguments as in
4816    struct attribute_spec.handler.  */
4817
4818 static tree
4819 handle_visibility_attribute (tree *node, tree name, tree args,
4820                              int flags ATTRIBUTE_UNUSED,
4821                              bool *no_add_attrs)
4822 {
4823   tree decl = *node;
4824
4825   if (decl_function_context (decl) != 0 || ! TREE_PUBLIC (decl))
4826     {
4827       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4828       *no_add_attrs = true;
4829     }
4830   else
4831     {
4832       tree id;
4833
4834       id = TREE_VALUE (args);
4835       if (TREE_CODE (id) != STRING_CST)
4836         {
4837           error ("visibility arg not a string");
4838           *no_add_attrs = true;
4839           return NULL_TREE;
4840         }
4841       if (strcmp (TREE_STRING_POINTER (id), "hidden")
4842           && strcmp (TREE_STRING_POINTER (id), "protected")
4843           && strcmp (TREE_STRING_POINTER (id), "internal")
4844           && strcmp (TREE_STRING_POINTER (id), "default"))
4845         {
4846           error ("visibility arg must be one of \"default\", \"hidden\", \"protected\" or \"internal\"");
4847           *no_add_attrs = true;
4848           return NULL_TREE;
4849         }
4850     }
4851
4852   return NULL_TREE;
4853 }
4854
4855 /* Handle an "tls_model" attribute; arguments as in
4856    struct attribute_spec.handler.  */
4857
4858 static tree
4859 handle_tls_model_attribute (tree *node, tree name, tree args,
4860                             int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4861 {
4862   tree decl = *node;
4863
4864   if (! DECL_THREAD_LOCAL (decl))
4865     {
4866       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4867       *no_add_attrs = true;
4868     }
4869   else
4870     {
4871       tree id;
4872
4873       id = TREE_VALUE (args);
4874       if (TREE_CODE (id) != STRING_CST)
4875         {
4876           error ("tls_model arg not a string");
4877           *no_add_attrs = true;
4878           return NULL_TREE;
4879         }
4880       if (strcmp (TREE_STRING_POINTER (id), "local-exec")
4881           && strcmp (TREE_STRING_POINTER (id), "initial-exec")
4882           && strcmp (TREE_STRING_POINTER (id), "local-dynamic")
4883           && strcmp (TREE_STRING_POINTER (id), "global-dynamic"))
4884         {
4885           error ("tls_model arg must be one of \"local-exec\", \"initial-exec\", \"local-dynamic\" or \"global-dynamic\"");
4886           *no_add_attrs = true;
4887           return NULL_TREE;
4888         }
4889     }
4890
4891   return NULL_TREE;
4892 }
4893
4894 /* Handle a "no_instrument_function" attribute; arguments as in
4895    struct attribute_spec.handler.  */
4896
4897 static tree
4898 handle_no_instrument_function_attribute (tree *node, tree name,
4899                                          tree args ATTRIBUTE_UNUSED,
4900                                          int flags ATTRIBUTE_UNUSED,
4901                                          bool *no_add_attrs)
4902 {
4903   tree decl = *node;
4904
4905   if (TREE_CODE (decl) != FUNCTION_DECL)
4906     {
4907       error ("%H'%E' attribute applies only to functions",
4908              &DECL_SOURCE_LOCATION (decl), name);
4909       *no_add_attrs = true;
4910     }
4911   else if (DECL_INITIAL (decl))
4912     {
4913       error ("%Hcan't set '%E' attribute after definition",
4914              &DECL_SOURCE_LOCATION (decl), name);
4915       *no_add_attrs = true;
4916     }
4917   else
4918     DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
4919
4920   return NULL_TREE;
4921 }
4922
4923 /* Handle a "malloc" attribute; arguments as in
4924    struct attribute_spec.handler.  */
4925
4926 static tree
4927 handle_malloc_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4928                          int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4929 {
4930   if (TREE_CODE (*node) == FUNCTION_DECL)
4931     DECL_IS_MALLOC (*node) = 1;
4932   /* ??? TODO: Support types.  */
4933   else
4934     {
4935       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4936       *no_add_attrs = true;
4937     }
4938
4939   return NULL_TREE;
4940 }
4941
4942 /* Handle a "no_limit_stack" attribute; arguments as in
4943    struct attribute_spec.handler.  */
4944
4945 static tree
4946 handle_no_limit_stack_attribute (tree *node, tree name,
4947                                  tree args ATTRIBUTE_UNUSED,
4948                                  int flags ATTRIBUTE_UNUSED,
4949                                  bool *no_add_attrs)
4950 {
4951   tree decl = *node;
4952
4953   if (TREE_CODE (decl) != FUNCTION_DECL)
4954     {
4955       error ("%H'%E' attribute applies only to functions",
4956              &DECL_SOURCE_LOCATION (decl), name);
4957       *no_add_attrs = true;
4958     }
4959   else if (DECL_INITIAL (decl))
4960     {
4961       error ("%Hcan't set '%E' attribute after definition",
4962              &DECL_SOURCE_LOCATION (decl), name);
4963       *no_add_attrs = true;
4964     }
4965   else
4966     DECL_NO_LIMIT_STACK (decl) = 1;
4967
4968   return NULL_TREE;
4969 }
4970
4971 /* Handle a "pure" attribute; arguments as in
4972    struct attribute_spec.handler.  */
4973
4974 static tree
4975 handle_pure_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
4976                        int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
4977 {
4978   if (TREE_CODE (*node) == FUNCTION_DECL)
4979     DECL_IS_PURE (*node) = 1;
4980   /* ??? TODO: Support types.  */
4981   else
4982     {
4983       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4984       *no_add_attrs = true;
4985     }
4986
4987   return NULL_TREE;
4988 }
4989
4990 /* Handle a "deprecated" attribute; arguments as in
4991    struct attribute_spec.handler.  */
4992
4993 static tree
4994 handle_deprecated_attribute (tree *node, tree name,
4995                              tree args ATTRIBUTE_UNUSED, int flags,
4996                              bool *no_add_attrs)
4997 {
4998   tree type = NULL_TREE;
4999   int warn = 0;
5000   const char *what = NULL;
5001
5002   if (DECL_P (*node))
5003     {
5004       tree decl = *node;
5005       type = TREE_TYPE (decl);
5006
5007       if (TREE_CODE (decl) == TYPE_DECL
5008           || TREE_CODE (decl) == PARM_DECL
5009           || TREE_CODE (decl) == VAR_DECL
5010           || TREE_CODE (decl) == FUNCTION_DECL
5011           || TREE_CODE (decl) == FIELD_DECL)
5012         TREE_DEPRECATED (decl) = 1;
5013       else
5014         warn = 1;
5015     }
5016   else if (TYPE_P (*node))
5017     {
5018       if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5019         *node = build_type_copy (*node);
5020       TREE_DEPRECATED (*node) = 1;
5021       type = *node;
5022     }
5023   else
5024     warn = 1;
5025
5026   if (warn)
5027     {
5028       *no_add_attrs = true;
5029       if (type && TYPE_NAME (type))
5030         {
5031           if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
5032             what = IDENTIFIER_POINTER (TYPE_NAME (*node));
5033           else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
5034                    && DECL_NAME (TYPE_NAME (type)))
5035             what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
5036         }
5037       if (what)
5038         warning ("`%s' attribute ignored for `%s'",
5039                   IDENTIFIER_POINTER (name), what);
5040       else
5041         warning ("`%s' attribute ignored",
5042                       IDENTIFIER_POINTER (name));
5043     }
5044
5045   return NULL_TREE;
5046 }
5047
5048 /* Keep a list of vector type nodes we created in handle_vector_size_attribute,
5049    to prevent us from duplicating type nodes unnecessarily.
5050    The normal mechanism to prevent duplicates is to use type_hash_canon, but
5051    since we want to distinguish types that are essentially identical (except
5052    for their debug representation), we use a local list here.  */
5053 static GTY(()) tree vector_type_node_list = 0;
5054
5055 /* Handle a "vector_size" attribute; arguments as in
5056    struct attribute_spec.handler.  */
5057
5058 static tree
5059 handle_vector_size_attribute (tree *node, tree name, tree args,
5060                               int flags ATTRIBUTE_UNUSED,
5061                               bool *no_add_attrs)
5062 {
5063   unsigned HOST_WIDE_INT vecsize, nunits;
5064   enum machine_mode mode, orig_mode, new_mode;
5065   tree type = *node, new_type = NULL_TREE;
5066   tree type_list_node;
5067
5068   *no_add_attrs = true;
5069
5070   if (! host_integerp (TREE_VALUE (args), 1))
5071     {
5072       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5073       return NULL_TREE;
5074     }
5075
5076   /* Get the vector size (in bytes).  */
5077   vecsize = tree_low_cst (TREE_VALUE (args), 1);
5078
5079   /* We need to provide for vector pointers, vector arrays, and
5080      functions returning vectors.  For example:
5081
5082        __attribute__((vector_size(16))) short *foo;
5083
5084      In this case, the mode is SI, but the type being modified is
5085      HI, so we need to look further.  */
5086
5087   while (POINTER_TYPE_P (type)
5088          || TREE_CODE (type) == FUNCTION_TYPE
5089          || TREE_CODE (type) == METHOD_TYPE
5090          || TREE_CODE (type) == ARRAY_TYPE)
5091     type = TREE_TYPE (type);
5092
5093   /* Get the mode of the type being modified.  */
5094   orig_mode = TYPE_MODE (type);
5095
5096   if (TREE_CODE (type) == RECORD_TYPE
5097       || (GET_MODE_CLASS (orig_mode) != MODE_FLOAT
5098           && GET_MODE_CLASS (orig_mode) != MODE_INT)
5099       || ! host_integerp (TYPE_SIZE_UNIT (type), 1))
5100     {
5101       error ("invalid vector type for attribute `%s'",
5102              IDENTIFIER_POINTER (name));
5103       return NULL_TREE;
5104     }
5105
5106   /* Calculate how many units fit in the vector.  */
5107   nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5108
5109   /* Find a suitably sized vector.  */
5110   new_mode = VOIDmode;
5111   for (mode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_mode) == MODE_INT
5112                                         ? MODE_VECTOR_INT
5113                                         : MODE_VECTOR_FLOAT);
5114        mode != VOIDmode;
5115        mode = GET_MODE_WIDER_MODE (mode))
5116     if (vecsize == GET_MODE_SIZE (mode)
5117         && nunits == (unsigned HOST_WIDE_INT) GET_MODE_NUNITS (mode))
5118       {
5119         new_mode = mode;
5120         break;
5121       }
5122
5123     if (new_mode == VOIDmode)
5124     {
5125       error ("no vector mode with the size and type specified could be found");
5126       return NULL_TREE;
5127     }
5128
5129   for (type_list_node = vector_type_node_list; type_list_node;
5130        type_list_node = TREE_CHAIN (type_list_node))
5131     {
5132       tree other_type = TREE_VALUE (type_list_node);
5133       tree record = TYPE_DEBUG_REPRESENTATION_TYPE (other_type);
5134       tree fields = TYPE_FIELDS (record);
5135       tree field_type = TREE_TYPE (fields);
5136       tree array_type = TREE_TYPE (field_type);
5137       if (TREE_CODE (fields) != FIELD_DECL
5138           || TREE_CODE (field_type) != ARRAY_TYPE)
5139         abort ();
5140
5141       if (TYPE_MODE (other_type) == mode && type == array_type)
5142         {
5143           new_type = other_type;
5144           break;
5145         }
5146     }
5147
5148   if (new_type == NULL_TREE)
5149     {
5150       tree index, array, rt, list_node;
5151
5152       new_type = (*lang_hooks.types.type_for_mode) (new_mode,
5153                                                     TREE_UNSIGNED (type));
5154
5155       if (!new_type)
5156         {
5157           error ("no vector mode with the size and type specified could be found");
5158           return NULL_TREE;
5159         }
5160
5161       new_type = build_type_copy (new_type);
5162
5163       /* If this is a vector, make sure we either have hardware
5164          support, or we can emulate it.  */
5165       if ((GET_MODE_CLASS (mode) == MODE_VECTOR_INT
5166            || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
5167           && !vector_mode_valid_p (mode))
5168         {
5169           error ("unable to emulate '%s'", GET_MODE_NAME (mode));
5170           return NULL_TREE;
5171         }
5172
5173       /* Set the debug information here, because this is the only
5174          place where we know the underlying type for a vector made
5175          with vector_size.  For debugging purposes we pretend a vector
5176          is an array within a structure.  */
5177       index = build_int_2 (TYPE_VECTOR_SUBPARTS (new_type) - 1, 0);
5178       array = build_array_type (type, build_index_type (index));
5179       rt = make_node (RECORD_TYPE);
5180
5181       TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
5182       DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
5183       layout_type (rt);
5184       TYPE_DEBUG_REPRESENTATION_TYPE (new_type) = rt;
5185
5186       list_node = build_tree_list (NULL, new_type);
5187       TREE_CHAIN (list_node) = vector_type_node_list;
5188       vector_type_node_list = list_node;
5189     }
5190
5191   /* Build back pointers if needed.  */
5192   *node = vector_size_helper (*node, new_type);
5193
5194   return NULL_TREE;
5195 }
5196
5197 /* HACK.  GROSS.  This is absolutely disgusting.  I wish there was a
5198    better way.
5199
5200    If we requested a pointer to a vector, build up the pointers that
5201    we stripped off while looking for the inner type.  Similarly for
5202    return values from functions.
5203
5204    The argument "type" is the top of the chain, and "bottom" is the
5205    new type which we will point to.  */
5206
5207 static tree
5208 vector_size_helper (tree type, tree bottom)
5209 {
5210   tree inner, outer;
5211
5212   if (POINTER_TYPE_P (type))
5213     {
5214       inner = vector_size_helper (TREE_TYPE (type), bottom);
5215       outer = build_pointer_type (inner);
5216     }
5217   else if (TREE_CODE (type) == ARRAY_TYPE)
5218     {
5219       inner = vector_size_helper (TREE_TYPE (type), bottom);
5220       outer = build_array_type (inner, TYPE_DOMAIN (type));
5221     }
5222   else if (TREE_CODE (type) == FUNCTION_TYPE)
5223     {
5224       inner = vector_size_helper (TREE_TYPE (type), bottom);
5225       outer = build_function_type (inner, TYPE_ARG_TYPES (type));
5226     }
5227   else if (TREE_CODE (type) == METHOD_TYPE)
5228     {
5229       inner = vector_size_helper (TREE_TYPE (type), bottom);
5230       outer = build_method_type_directly (TYPE_METHOD_BASETYPE (type),
5231                                           inner, 
5232                                           TYPE_ARG_TYPES (type));
5233     }
5234   else
5235     return bottom;
5236
5237   TREE_READONLY (outer) = TREE_READONLY (type);
5238   TREE_THIS_VOLATILE (outer) = TREE_THIS_VOLATILE (type);
5239
5240   return outer;
5241 }
5242
5243 /* Handle the "nonnull" attribute.  */
5244 static tree
5245 handle_nonnull_attribute (tree *node, tree name ATTRIBUTE_UNUSED,
5246                           tree args, int flags ATTRIBUTE_UNUSED,
5247                           bool *no_add_attrs)
5248 {
5249   tree type = *node;
5250   unsigned HOST_WIDE_INT attr_arg_num;
5251
5252   /* If no arguments are specified, all pointer arguments should be
5253      non-null.  Verify a full prototype is given so that the arguments
5254      will have the correct types when we actually check them later.  */
5255   if (! args)
5256     {
5257       if (! TYPE_ARG_TYPES (type))
5258         {
5259           error ("nonnull attribute without arguments on a non-prototype");
5260           *no_add_attrs = true;
5261         }
5262       return NULL_TREE;
5263     }
5264
5265   /* Argument list specified.  Verify that each argument number references
5266      a pointer argument.  */
5267   for (attr_arg_num = 1; args; args = TREE_CHAIN (args))
5268     {
5269       tree argument;
5270       unsigned HOST_WIDE_INT arg_num, ck_num;
5271
5272       if (! get_nonnull_operand (TREE_VALUE (args), &arg_num))
5273         {
5274           error ("nonnull argument has invalid operand number (arg %lu)",
5275                  (unsigned long) attr_arg_num);
5276           *no_add_attrs = true;
5277           return NULL_TREE;
5278         }
5279
5280       argument = TYPE_ARG_TYPES (type);
5281       if (argument)
5282         {
5283           for (ck_num = 1; ; ck_num++)
5284             {
5285               if (! argument || ck_num == arg_num)
5286                 break;
5287               argument = TREE_CHAIN (argument);
5288             }
5289
5290           if (! argument
5291               || TREE_CODE (TREE_VALUE (argument)) == VOID_TYPE)
5292             {
5293               error ("nonnull argument with out-of-range operand number (arg %lu, operand %lu)",
5294                      (unsigned long) attr_arg_num, (unsigned long) arg_num);
5295               *no_add_attrs = true;
5296               return NULL_TREE;
5297             }
5298
5299           if (TREE_CODE (TREE_VALUE (argument)) != POINTER_TYPE)
5300             {
5301               error ("nonnull argument references non-pointer operand (arg %lu, operand %lu)",
5302                    (unsigned long) attr_arg_num, (unsigned long) arg_num);
5303               *no_add_attrs = true;
5304               return NULL_TREE;
5305             }
5306         }
5307     }
5308
5309   return NULL_TREE;
5310 }
5311
5312 /* Check the argument list of a function call for null in argument slots
5313    that are marked as requiring a non-null pointer argument.  */
5314
5315 static void
5316 check_function_nonnull (tree attrs, tree params)
5317 {
5318   tree a, args, param;
5319   int param_num;
5320
5321   for (a = attrs; a; a = TREE_CHAIN (a))
5322     {
5323       if (is_attribute_p ("nonnull", TREE_PURPOSE (a)))
5324         {
5325           args = TREE_VALUE (a);
5326
5327           /* Walk the argument list.  If we encounter an argument number we
5328              should check for non-null, do it.  If the attribute has no args,
5329              then every pointer argument is checked (in which case the check
5330              for pointer type is done in check_nonnull_arg).  */
5331           for (param = params, param_num = 1; ;
5332                param_num++, param = TREE_CHAIN (param))
5333             {
5334               if (! param)
5335         break;
5336               if (! args || nonnull_check_p (args, param_num))
5337         check_function_arguments_recurse (check_nonnull_arg, NULL,
5338                                           TREE_VALUE (param),
5339                                           param_num);
5340             }
5341         }
5342     }
5343 }
5344
5345 /* Helper for check_function_nonnull; given a list of operands which
5346    must be non-null in ARGS, determine if operand PARAM_NUM should be
5347    checked.  */
5348
5349 static bool
5350 nonnull_check_p (tree args, unsigned HOST_WIDE_INT param_num)
5351 {
5352   unsigned HOST_WIDE_INT arg_num;
5353
5354   for (; args; args = TREE_CHAIN (args))
5355     {
5356       if (! get_nonnull_operand (TREE_VALUE (args), &arg_num))
5357         abort ();
5358
5359       if (arg_num == param_num)
5360         return true;
5361     }
5362   return false;
5363 }
5364
5365 /* Check that the function argument PARAM (which is operand number
5366    PARAM_NUM) is non-null.  This is called by check_function_nonnull
5367    via check_function_arguments_recurse.  */
5368
5369 static void
5370 check_nonnull_arg (void *ctx ATTRIBUTE_UNUSED, tree param,
5371                    unsigned HOST_WIDE_INT param_num)
5372 {
5373   /* Just skip checking the argument if it's not a pointer.  This can
5374      happen if the "nonnull" attribute was given without an operand
5375      list (which means to check every pointer argument).  */
5376
5377   if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
5378     return;
5379
5380   if (integer_zerop (param))
5381     warning ("null argument where non-null required (arg %lu)",
5382              (unsigned long) param_num);
5383 }
5384
5385 /* Helper for nonnull attribute handling; fetch the operand number
5386    from the attribute argument list.  */
5387
5388 static bool
5389 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp)
5390 {
5391   /* Strip any conversions from the arg number and verify they
5392      are constants.  */
5393   while (TREE_CODE (arg_num_expr) == NOP_EXPR
5394          || TREE_CODE (arg_num_expr) == CONVERT_EXPR
5395          || TREE_CODE (arg_num_expr) == NON_LVALUE_EXPR)
5396     arg_num_expr = TREE_OPERAND (arg_num_expr, 0);
5397
5398   if (TREE_CODE (arg_num_expr) != INTEGER_CST
5399       || TREE_INT_CST_HIGH (arg_num_expr) != 0)
5400     return false;
5401
5402   *valp = TREE_INT_CST_LOW (arg_num_expr);
5403   return true;
5404 }
5405
5406 /* Handle a "nothrow" attribute; arguments as in
5407    struct attribute_spec.handler.  */
5408
5409 static tree
5410 handle_nothrow_attribute (tree *node, tree name, tree args ATTRIBUTE_UNUSED,
5411                           int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
5412 {
5413   if (TREE_CODE (*node) == FUNCTION_DECL)
5414     TREE_NOTHROW (*node) = 1;
5415   /* ??? TODO: Support types.  */
5416   else
5417     {
5418       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5419       *no_add_attrs = true;
5420     }
5421
5422   return NULL_TREE;
5423 }
5424
5425 /* Handle a "cleanup" attribute; arguments as in
5426    struct attribute_spec.handler.  */
5427
5428 static tree
5429 handle_cleanup_attribute (tree *node, tree name, tree args,
5430                           int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
5431 {
5432   tree decl = *node;
5433   tree cleanup_id, cleanup_decl;
5434
5435   /* ??? Could perhaps support cleanups on TREE_STATIC, much like we do
5436      for global destructors in C++.  This requires infrastructure that
5437      we don't have generically at the moment.  It's also not a feature
5438      we'd be missing too much, since we do have attribute constructor.  */
5439   if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl))
5440     {
5441       warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5442       *no_add_attrs = true;
5443       return NULL_TREE;
5444     }
5445
5446   /* Verify that the argument is a function in scope.  */
5447   /* ??? We could support pointers to functions here as well, if
5448      that was considered desirable.  */
5449   cleanup_id = TREE_VALUE (args);
5450   if (TREE_CODE (cleanup_id) != IDENTIFIER_NODE)
5451     {
5452       error ("cleanup arg not an identifier");
5453       *no_add_attrs = true;
5454       return NULL_TREE;
5455     }
5456   cleanup_decl = lookup_name (cleanup_id);
5457   if (!cleanup_decl || TREE_CODE (cleanup_decl) != FUNCTION_DECL)
5458     {
5459       error ("cleanup arg not a function");
5460       *no_add_attrs = true;
5461       return NULL_TREE;
5462     }
5463
5464   /* That the function has proper type is checked with the
5465      eventual call to build_function_call.  */
5466
5467   return NULL_TREE;
5468 }
5469 \f
5470 /* Check for valid arguments being passed to a function.  */
5471 void
5472 check_function_arguments (tree attrs, tree params)
5473 {
5474   /* Check for null being passed in a pointer argument that must be
5475      non-null.  We also need to do this if format checking is enabled.  */
5476
5477   if (warn_nonnull)
5478     check_function_nonnull (attrs, params);
5479
5480   /* Check for errors in format strings.  */
5481
5482   if (warn_format)
5483     check_function_format (NULL, attrs, params);
5484 }
5485
5486 /* Generic argument checking recursion routine.  PARAM is the argument to
5487    be checked.  PARAM_NUM is the number of the argument.  CALLBACK is invoked
5488    once the argument is resolved.  CTX is context for the callback.  */
5489 void
5490 check_function_arguments_recurse (void (*callback)
5491                                   (void *, tree, unsigned HOST_WIDE_INT),
5492                                   void *ctx, tree param,
5493                                   unsigned HOST_WIDE_INT param_num)
5494 {
5495   if (TREE_CODE (param) == NOP_EXPR)
5496     {
5497       /* Strip coercion.  */
5498       check_function_arguments_recurse (callback, ctx,
5499                                         TREE_OPERAND (param, 0), param_num);
5500       return;
5501     }
5502
5503   if (TREE_CODE (param) == CALL_EXPR)
5504     {
5505       tree type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (param, 0)));
5506       tree attrs;
5507       bool found_format_arg = false;
5508
5509       /* See if this is a call to a known internationalization function
5510          that modifies a format arg.  Such a function may have multiple
5511          format_arg attributes (for example, ngettext).  */
5512
5513       for (attrs = TYPE_ATTRIBUTES (type);
5514            attrs;
5515            attrs = TREE_CHAIN (attrs))
5516         if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
5517           {
5518             tree inner_args;
5519             tree format_num_expr;
5520             int format_num;
5521             int i;
5522
5523             /* Extract the argument number, which was previously checked
5524                to be valid.  */
5525             format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
5526             while (TREE_CODE (format_num_expr) == NOP_EXPR
5527                    || TREE_CODE (format_num_expr) == CONVERT_EXPR
5528                    || TREE_CODE (format_num_expr) == NON_LVALUE_EXPR)
5529               format_num_expr = TREE_OPERAND (format_num_expr, 0);
5530
5531             if (TREE_CODE (format_num_expr) != INTEGER_CST
5532                 || TREE_INT_CST_HIGH (format_num_expr) != 0)
5533               abort ();
5534
5535             format_num = TREE_INT_CST_LOW (format_num_expr);
5536
5537             for (inner_args = TREE_OPERAND (param, 1), i = 1;
5538                  inner_args != 0;
5539                  inner_args = TREE_CHAIN (inner_args), i++)
5540               if (i == format_num)
5541                 {
5542                   check_function_arguments_recurse (callback, ctx,
5543                                                     TREE_VALUE (inner_args),
5544                                                     param_num);
5545                   found_format_arg = true;
5546                   break;
5547                 }
5548           }
5549
5550       /* If we found a format_arg attribute and did a recursive check,
5551          we are done with checking this argument.  Otherwise, we continue
5552          and this will be considered a non-literal.  */
5553       if (found_format_arg)
5554         return;
5555     }
5556
5557   if (TREE_CODE (param) == COND_EXPR)
5558     {
5559       /* Check both halves of the conditional expression.  */
5560       check_function_arguments_recurse (callback, ctx,
5561                                         TREE_OPERAND (param, 1), param_num);
5562       check_function_arguments_recurse (callback, ctx,
5563                                         TREE_OPERAND (param, 2), param_num);
5564       return;
5565     }
5566
5567   (*callback) (ctx, param, param_num);
5568 }
5569
5570 /* Function to help qsort sort FIELD_DECLs by name order.  */
5571
5572 int
5573 field_decl_cmp (const void *x_p, const void *y_p)
5574 {
5575   const tree *const x = x_p;
5576   const tree *const y = y_p;
5577   if (DECL_NAME (*x) == DECL_NAME (*y))
5578     /* A nontype is "greater" than a type.  */
5579     return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
5580   if (DECL_NAME (*x) == NULL_TREE)
5581     return -1;
5582   if (DECL_NAME (*y) == NULL_TREE)
5583     return 1;
5584   if (DECL_NAME (*x) < DECL_NAME (*y))
5585     return -1;
5586   return 1;
5587 }
5588
5589 static struct {
5590   gt_pointer_operator new_value;
5591   void *cookie;
5592 } resort_data;
5593
5594 /* This routine compares two fields like field_decl_cmp but using the
5595 pointer operator in resort_data.  */
5596
5597 static int
5598 resort_field_decl_cmp (const void *x_p, const void *y_p)
5599 {
5600   const tree *const x = x_p;
5601   const tree *const y = y_p;
5602
5603   if (DECL_NAME (*x) == DECL_NAME (*y))
5604     /* A nontype is "greater" than a type.  */
5605     return (TREE_CODE (*y) == TYPE_DECL) - (TREE_CODE (*x) == TYPE_DECL);
5606   if (DECL_NAME (*x) == NULL_TREE)
5607     return -1;
5608   if (DECL_NAME (*y) == NULL_TREE)
5609     return 1;
5610   {
5611     tree d1 = DECL_NAME (*x);
5612     tree d2 = DECL_NAME (*y);
5613     resort_data.new_value (&d1, resort_data.cookie);
5614     resort_data.new_value (&d2, resort_data.cookie);
5615     if (d1 < d2)
5616       return -1;
5617   }
5618   return 1;
5619 }
5620
5621 /* Resort DECL_SORTED_FIELDS because pointers have been reordered.  */
5622
5623 void
5624 resort_sorted_fields (void *obj,
5625                       void *orig_obj ATTRIBUTE_UNUSED ,
5626                       gt_pointer_operator new_value,
5627                       void *cookie)
5628 {
5629   struct sorted_fields_type *sf = obj;
5630   resort_data.new_value = new_value;
5631   resort_data.cookie = cookie;
5632   qsort (&sf->elts[0], sf->len, sizeof (tree),
5633          resort_field_decl_cmp);
5634 }
5635
5636 /* Used by estimate_num_insns.  Estimate number of instructions seen
5637    by given statement.  */
5638 static tree
5639 c_estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
5640 {
5641   int *count = data;
5642   tree x = *tp;
5643
5644   if (TYPE_P (x) || DECL_P (x))
5645     {
5646       *walk_subtrees = 0;
5647       return NULL;
5648     }
5649   /* Assume that constants and references counts nothing.  These should
5650      be majorized by amount of operations among them we count later
5651      and are common target of CSE and similar optimizations.  */
5652   if (TREE_CODE_CLASS (TREE_CODE (x)) == 'c'
5653       || TREE_CODE_CLASS (TREE_CODE (x)) == 'r')
5654     return NULL;
5655   switch (TREE_CODE (x))
5656     { 
5657     /* Reconginze assignments of large structures and constructors of
5658        big arrays.  */
5659     case MODIFY_EXPR:
5660     case CONSTRUCTOR:
5661       {
5662         int size = int_size_in_bytes (TREE_TYPE (x));
5663
5664         if (!size || size > MOVE_MAX_PIECES)
5665           *count += 10;
5666         else
5667           *count += 2 * (size + MOVE_MAX - 1) / MOVE_MAX;
5668         return NULL;
5669       }
5670       break;
5671     /* Few special cases of expensive operations.  This is usefull
5672        to avoid inlining on functions having too many of these.  */
5673     case TRUNC_DIV_EXPR:
5674     case CEIL_DIV_EXPR:
5675     case FLOOR_DIV_EXPR:
5676     case ROUND_DIV_EXPR:
5677     case TRUNC_MOD_EXPR:
5678     case CEIL_MOD_EXPR:
5679     case FLOOR_MOD_EXPR:
5680     case ROUND_MOD_EXPR:
5681     case RDIV_EXPR:
5682     case CALL_EXPR:
5683       *count += 10;
5684       break;
5685     /* Various containers that will produce no code themselves.  */
5686     case INIT_EXPR:
5687     case TARGET_EXPR:
5688     case BIND_EXPR:
5689     case BLOCK:
5690     case TREE_LIST:
5691     case TREE_VEC:
5692     case IDENTIFIER_NODE:
5693     case PLACEHOLDER_EXPR:
5694     case WITH_CLEANUP_EXPR:
5695     case CLEANUP_POINT_EXPR:
5696     case NOP_EXPR:
5697     case VIEW_CONVERT_EXPR:
5698     case SAVE_EXPR:
5699     case UNSAVE_EXPR:
5700     case COMPLEX_EXPR:
5701     case REALPART_EXPR:
5702     case IMAGPART_EXPR:
5703     case TRY_CATCH_EXPR:
5704     case TRY_FINALLY_EXPR:
5705     case LABEL_EXPR:
5706     case EXIT_EXPR:
5707     case LABELED_BLOCK_EXPR:
5708     case EXIT_BLOCK_EXPR:
5709     case EXPR_WITH_FILE_LOCATION:
5710
5711     case EXPR_STMT:
5712     case COMPOUND_STMT:
5713     case RETURN_STMT:
5714     case LABEL_STMT:
5715     case SCOPE_STMT:
5716     case FILE_STMT:
5717     case CASE_LABEL:
5718     case STMT_EXPR:
5719     case CLEANUP_STMT:
5720
5721     case SIZEOF_EXPR:
5722     case ARROW_EXPR:
5723     case ALIGNOF_EXPR:
5724       break;
5725     case DECL_STMT:
5726       /* Do not account static initializers.  */
5727       if (TREE_STATIC (TREE_OPERAND (x, 0)))
5728         *walk_subtrees = 0;
5729       break;
5730     default:
5731       (*count)++;
5732     }
5733   return NULL;
5734 }
5735
5736 /*  Estimate number of instructions that will be created by expanding the body.  */
5737 int
5738 c_estimate_num_insns (tree decl)
5739 {
5740   int num = 0;
5741   walk_tree_without_duplicates (&DECL_SAVED_TREE (decl), c_estimate_num_insns_1, &num);
5742   return num;
5743 }
5744
5745 /* Used by c_decl_uninit to find where expressions like x = x + 1; */
5746
5747 static tree
5748 c_decl_uninit_1 (tree *t, int *walk_sub_trees, void *x)
5749 {
5750   /* If x = EXP(&x)EXP, then do not warn about the use of x.  */
5751   if (TREE_CODE (*t) == ADDR_EXPR && TREE_OPERAND (*t, 0) == x)
5752     {
5753       *walk_sub_trees = 0;
5754       return NULL_TREE;
5755     }
5756   if (*t == x)
5757     return *t;
5758   return NULL_TREE;
5759 }
5760
5761 /* Find out if a variable is uninitialized based on DECL_INITIAL.  */
5762
5763 bool
5764 c_decl_uninit (tree t)
5765 {
5766   /* int x = x; is GCC extension to turn off this warning, only if warn_init_self is zero.  */
5767   if (DECL_INITIAL (t) == t)
5768     return warn_init_self ? true : false;
5769
5770   /* Walk the trees looking for the variable itself.  */
5771   if (walk_tree_without_duplicates (&DECL_INITIAL (t), c_decl_uninit_1, t))
5772     return true;
5773   return false;
5774 }
5775
5776 #include "gt-c-common.h"