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