OSDN Git Service

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