OSDN Git Service

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