OSDN Git Service

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