OSDN Git Service

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