OSDN Git Service

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