2002-08-22 Paolo Carlini <pcarlini@unitus.it>
[official-gcc.git] / gcc / c-common.c
blob74224afd55ca2c611a8290fd6047555cd6b45b90
1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "tree.h"
25 #include "real.h"
26 #include "flags.h"
27 #include "toplev.h"
28 #include "output.h"
29 #include "c-pragma.h"
30 #include "rtl.h"
31 #include "ggc.h"
32 #include "expr.h"
33 #include "c-common.h"
34 #include "diagnostic.h"
35 #include "tm_p.h"
36 #include "obstack.h"
37 #include "cpplib.h"
38 #include "target.h"
39 #include "langhooks.h"
40 #include "except.h" /* For USING_SJLJ_EXCEPTIONS. */
42 cpp_reader *parse_in; /* Declared in c-pragma.h. */
44 /* We let tm.h override the types used here, to handle trivial differences
45 such as the choice of unsigned int or long unsigned int for size_t.
46 When machines start needing nontrivial differences in the size type,
47 it would be best to do something here to figure out automatically
48 from other information what type to use. */
50 #ifndef SIZE_TYPE
51 #define SIZE_TYPE "long unsigned int"
52 #endif
54 #ifndef WCHAR_TYPE
55 #define WCHAR_TYPE "int"
56 #endif
58 /* WCHAR_TYPE gets overridden by -fshort-wchar. */
59 #define MODIFIED_WCHAR_TYPE \
60 (flag_short_wchar ? "short unsigned int" : WCHAR_TYPE)
62 #ifndef PTRDIFF_TYPE
63 #define PTRDIFF_TYPE "long int"
64 #endif
66 #ifndef WINT_TYPE
67 #define WINT_TYPE "unsigned int"
68 #endif
70 #ifndef INTMAX_TYPE
71 #define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
72 ? "int" \
73 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
74 ? "long int" \
75 : "long long int"))
76 #endif
78 #ifndef UINTMAX_TYPE
79 #define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
80 ? "unsigned int" \
81 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
82 ? "long unsigned int" \
83 : "long long unsigned int"))
84 #endif
86 #ifndef REGISTER_PREFIX
87 #define REGISTER_PREFIX ""
88 #endif
90 /* The variant of the C language being processed. */
92 enum c_language_kind c_language;
94 /* The following symbols are subsumed in the c_global_trees array, and
95 listed here individually for documentation purposes.
97 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
99 tree short_integer_type_node;
100 tree long_integer_type_node;
101 tree long_long_integer_type_node;
103 tree short_unsigned_type_node;
104 tree long_unsigned_type_node;
105 tree long_long_unsigned_type_node;
107 tree boolean_type_node;
108 tree boolean_false_node;
109 tree boolean_true_node;
111 tree ptrdiff_type_node;
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;
119 tree float_type_node;
120 tree double_type_node;
121 tree long_double_type_node;
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;
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;
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;
140 tree widest_integer_literal_type_node;
141 tree widest_unsigned_literal_type_node;
143 Nodes for types `void *' and `const void *'.
145 tree ptr_type_node, const_ptr_type_node;
147 Nodes for types `char *' and `const char *'.
149 tree string_type_node, const_string_type_node;
151 Type `char[SOMENUMBER]'.
152 Used when an array of char is needed and the size is irrelevant.
154 tree char_array_type_node;
156 Type `int[SOMENUMBER]' or something like it.
157 Used when an array of int needed and the size is irrelevant.
159 tree int_array_type_node;
161 Type `wchar_t[SOMENUMBER]' or something like it.
162 Used when a wide string literal is created.
164 tree wchar_array_type_node;
166 Type `int ()' -- used for implicit declaration of functions.
168 tree default_function_type;
170 A VOID_TYPE node, packaged in a TREE_LIST.
172 tree void_list_node;
174 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
175 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
176 VAR_DECLS, but C++ does.)
178 tree function_name_decl_node;
179 tree pretty_function_name_decl_node;
180 tree c99_function_name_decl_node;
182 Stack of nested function name VAR_DECLs.
184 tree saved_function_name_decls;
188 tree c_global_trees[CTI_MAX];
190 /* Switches common to the C front ends. */
192 /* Nonzero if prepreprocessing only. */
193 int flag_preprocess_only;
195 /* Nonzero if an ISO standard was selected. It rejects macros in the
196 user's namespace. */
197 int flag_iso;
199 /* Nonzero whenever Objective-C functionality is being used. */
200 int flag_objc;
202 /* Nonzero if -undef was given. It suppresses target built-in macros
203 and assertions. */
204 int flag_undef;
206 /* Nonzero means don't recognize the non-ANSI builtin functions. */
208 int flag_no_builtin;
210 /* Nonzero means don't recognize the non-ANSI builtin functions.
211 -ansi sets this. */
213 int flag_no_nonansi_builtin;
215 /* Nonzero means give `double' the same size as `float'. */
217 int flag_short_double;
219 /* Nonzero means give `wchar_t' the same size as `short'. */
221 int flag_short_wchar;
223 /* Nonzero means allow Microsoft extensions without warnings or errors. */
224 int flag_ms_extensions;
226 /* Nonzero means don't recognize the keyword `asm'. */
228 int flag_no_asm;
230 /* Nonzero means give string constants the type `const char *', as mandated
231 by the standard. */
233 int flag_const_strings;
235 /* Nonzero means `$' can be in an identifier. */
237 #ifndef DOLLARS_IN_IDENTIFIERS
238 #define DOLLARS_IN_IDENTIFIERS 1
239 #endif
240 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
242 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
244 int flag_signed_bitfields = 1;
245 int explicit_flag_signed_bitfields;
247 /* Nonzero means warn about pointer casts that can drop a type qualifier
248 from the pointer target type. */
250 int warn_cast_qual;
252 /* Warn about functions which might be candidates for format attributes. */
254 int warn_missing_format_attribute;
256 /* Nonzero means warn about sizeof(function) or addition/subtraction
257 of function pointers. */
259 int warn_pointer_arith;
261 /* Nonzero means warn for any global function def
262 without separate previous prototype decl. */
264 int warn_missing_prototypes;
266 /* Warn if adding () is suggested. */
268 int warn_parentheses;
270 /* Warn if initializer is not completely bracketed. */
272 int warn_missing_braces;
274 /* Warn about comparison of signed and unsigned values.
275 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
277 int warn_sign_compare;
279 /* Nonzero means warn about usage of long long when `-pedantic'. */
281 int warn_long_long = 1;
283 /* Nonzero means warn about deprecated conversion from string constant to
284 `char *'. */
286 int warn_write_strings;
288 /* Nonzero means warn about multiple (redundant) decls for the same single
289 variable or function. */
291 int warn_redundant_decls;
293 /* Warn about testing equality of floating point numbers. */
295 int warn_float_equal;
297 /* Warn about a subscript that has type char. */
299 int warn_char_subscripts;
301 /* Warn if a type conversion is done that might have confusing results. */
303 int warn_conversion;
305 /* Warn about #pragma directives that are not recognised. */
307 int warn_unknown_pragmas; /* Tri state variable. */
309 /* Warn about format/argument anomalies in calls to formatted I/O functions
310 (*printf, *scanf, strftime, strfmon, etc.). */
312 int warn_format;
314 /* Warn about Y2K problems with strftime formats. */
316 int warn_format_y2k;
318 /* Warn about excess arguments to formats. */
320 int warn_format_extra_args;
322 /* Warn about zero-length formats. */
324 int warn_format_zero_length;
326 /* Warn about non-literal format arguments. */
328 int warn_format_nonliteral;
330 /* Warn about possible security problems with calls to format functions. */
332 int warn_format_security;
335 /* C/ObjC language option variables. */
338 /* Nonzero means message about use of implicit function declarations;
339 1 means warning; 2 means error. */
341 int mesg_implicit_function_declaration = -1;
343 /* Nonzero means allow type mismatches in conditional expressions;
344 just make their values `void'. */
346 int flag_cond_mismatch;
348 /* Nonzero means enable C89 Amendment 1 features. */
350 int flag_isoc94;
352 /* Nonzero means use the ISO C99 dialect of C. */
354 int flag_isoc99;
356 /* Nonzero means that we have builtin functions, and main is an int */
358 int flag_hosted = 1;
360 /* Nonzero means add default format_arg attributes for functions not
361 in ISO C. */
363 int flag_noniso_default_format_attributes = 1;
365 /* Nonzero means warn when casting a function call to a type that does
366 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
367 when there is no previous declaration of sqrt or malloc. */
369 int warn_bad_function_cast;
371 /* Warn about traditional constructs whose meanings changed in ANSI C. */
373 int warn_traditional;
375 /* Nonzero means warn for non-prototype function decls
376 or non-prototyped defs without previous prototype. */
378 int warn_strict_prototypes;
380 /* Nonzero means warn for any global function def
381 without separate previous decl. */
383 int warn_missing_declarations;
385 /* Nonzero means warn about declarations of objects not at
386 file-scope level and about *all* declarations of functions (whether
387 or static) not at file-scope level. Note that we exclude
388 implicit function declarations. To get warnings about those, use
389 -Wimplicit. */
391 int warn_nested_externs;
393 /* Warn if main is suspicious. */
395 int warn_main;
397 /* Nonzero means warn about possible violations of sequence point rules. */
399 int warn_sequence_point;
401 /* Nonzero means to warn about compile-time division by zero. */
402 int warn_div_by_zero = 1;
404 /* Nonzero means warn about use of implicit int. */
406 int warn_implicit_int;
408 /* Warn about NULL being passed to argument slots marked as requiring
409 non-NULL. */
411 int warn_nonnull;
414 /* ObjC language option variables. */
417 /* Open and close the file for outputting class declarations, if
418 requested (ObjC). */
420 int flag_gen_declaration;
422 /* Generate code for GNU or NeXT runtime environment. */
424 #ifdef NEXT_OBJC_RUNTIME
425 int flag_next_runtime = 1;
426 #else
427 int flag_next_runtime = 0;
428 #endif
430 /* Tells the compiler that this is a special run. Do not perform any
431 compiling, instead we are to test some platform dependent features
432 and output a C header file with appropriate definitions. */
434 int print_struct_values;
436 /* ???. Undocumented. */
438 const char *constant_string_class_name;
440 /* Warn if multiple methods are seen for the same selector, but with
441 different argument types. */
443 int warn_selector;
445 /* Warn if methods required by a protocol are not implemented in the
446 class adopting it. When turned off, methods inherited to that
447 class are also considered implemented. */
449 int warn_protocol = 1;
452 /* C++ language option variables. */
455 /* Nonzero means don't recognize any extension keywords. */
457 int flag_no_gnu_keywords;
459 /* Nonzero means do emit exported implementations of functions even if
460 they can be inlined. */
462 int flag_implement_inlines = 1;
464 /* Nonzero means do emit exported implementations of templates, instead of
465 multiple static copies in each file that needs a definition. */
467 int flag_external_templates;
469 /* Nonzero means that the decision to emit or not emit the implementation of a
470 template depends on where the template is instantiated, rather than where
471 it is defined. */
473 int flag_alt_external_templates;
475 /* Nonzero means that implicit instantiations will be emitted if needed. */
477 int flag_implicit_templates = 1;
479 /* Nonzero means that implicit instantiations of inline templates will be
480 emitted if needed, even if instantiations of non-inline templates
481 aren't. */
483 int flag_implicit_inline_templates = 1;
485 /* Nonzero means generate separate instantiation control files and
486 juggle them at link time. */
488 int flag_use_repository;
490 /* Nonzero if we want to issue diagnostics that the standard says are not
491 required. */
493 int flag_optional_diags = 1;
495 /* Nonzero means we should attempt to elide constructors when possible. */
497 int flag_elide_constructors = 1;
499 /* Nonzero means that member functions defined in class scope are
500 inline by default. */
502 int flag_default_inline = 1;
504 /* Controls whether compiler generates 'type descriptor' that give
505 run-time type information. */
507 int flag_rtti = 1;
509 /* Nonzero if we want to conserve space in the .o files. We do this
510 by putting uninitialized data and runtime initialized data into
511 .common instead of .data at the expense of not flagging multiple
512 definitions. */
514 int flag_conserve_space;
516 /* Nonzero if we want to obey access control semantics. */
518 int flag_access_control = 1;
520 /* Nonzero if we want to check the return value of new and avoid calling
521 constructors if it is a null pointer. */
523 int flag_check_new;
525 /* Nonzero if we want the new ISO rules for pushing a new scope for `for'
526 initialization variables.
527 0: Old rules, set by -fno-for-scope.
528 2: New ISO rules, set by -ffor-scope.
529 1: Try to implement new ISO rules, but with backup compatibility
530 (and warnings). This is the default, for now. */
532 int flag_new_for_scope = 1;
534 /* Nonzero if we want to emit defined symbols with common-like linkage as
535 weak symbols where possible, in order to conform to C++ semantics.
536 Otherwise, emit them as local symbols. */
538 int flag_weak = 1;
540 /* Nonzero to use __cxa_atexit, rather than atexit, to register
541 destructors for local statics and global objects. */
543 int flag_use_cxa_atexit = DEFAULT_USE_CXA_ATEXIT;
545 /* Nonzero means output .vtable_{entry,inherit} for use in doing vtable gc. */
547 int flag_vtable_gc;
549 /* Nonzero means make the default pedwarns warnings instead of errors.
550 The value of this flag is ignored if -pedantic is specified. */
552 int flag_permissive;
554 /* Nonzero means to implement standard semantics for exception
555 specifications, calling unexpected if an exception is thrown that
556 doesn't match the specification. Zero means to treat them as
557 assertions and optimize accordingly, but not check them. */
559 int flag_enforce_eh_specs = 1;
561 /* Nonzero means warn about implicit declarations. */
563 int warn_implicit = 1;
565 /* Nonzero means warn when all ctors or dtors are private, and the class
566 has no friends. */
568 int warn_ctor_dtor_privacy = 1;
570 /* Non-zero means warn in function declared in derived class has the
571 same name as a virtual in the base class, but fails to match the
572 type signature of any virtual function in the base class. */
574 int warn_overloaded_virtual;
576 /* Non-zero means warn when declaring a class that has a non virtual
577 destructor, when it really ought to have a virtual one. */
579 int warn_nonvdtor;
581 /* Non-zero means warn when the compiler will reorder code. */
583 int warn_reorder;
585 /* Non-zero means warn when synthesis behavior differs from Cfront's. */
587 int warn_synth;
589 /* Non-zero means warn when we convert a pointer to member function
590 into a pointer to (void or function). */
592 int warn_pmf2ptr = 1;
594 /* Nonzero means warn about violation of some Effective C++ style rules. */
596 int warn_ecpp;
598 /* Nonzero means warn where overload resolution chooses a promotion from
599 unsigned to signed over a conversion to an unsigned of the same size. */
601 int warn_sign_promo;
603 /* Nonzero means warn when an old-style cast is used. */
605 int warn_old_style_cast;
607 /* Nonzero means warn when non-templatized friend functions are
608 declared within a template */
610 int warn_nontemplate_friend = 1;
612 /* Nonzero means complain about deprecated features. */
614 int warn_deprecated = 1;
616 /* Maximum template instantiation depth. This limit is rather
617 arbitrary, but it exists to limit the time it takes to notice
618 infinite template instantiations. */
620 int max_tinst_depth = 500;
624 /* The elements of `ridpointers' are identifier nodes for the reserved
625 type names and storage classes. It is indexed by a RID_... value. */
626 tree *ridpointers;
628 tree (*make_fname_decl) PARAMS ((tree, int));
630 /* If non-NULL, the address of a language-specific function that
631 returns 1 for language-specific statement codes. */
632 int (*lang_statement_code_p) PARAMS ((enum tree_code));
634 /* If non-NULL, the address of a language-specific function that takes
635 any action required right before expand_function_end is called. */
636 void (*lang_expand_function_end) PARAMS ((void));
638 /* Nonzero means the expression being parsed will never be evaluated.
639 This is a count, since unevaluated expressions can nest. */
640 int skip_evaluation;
642 /* Information about how a function name is generated. */
643 struct fname_var_t
645 tree *const decl; /* pointer to the VAR_DECL. */
646 const unsigned rid; /* RID number for the identifier. */
647 const int pretty; /* How pretty is it? */
650 /* The three ways of getting then name of the current function. */
652 const struct fname_var_t fname_vars[] =
654 /* C99 compliant __func__, must be first. */
655 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
656 /* GCC __FUNCTION__ compliant. */
657 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
658 /* GCC __PRETTY_FUNCTION__ compliant. */
659 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
660 {NULL, 0, 0},
663 static int constant_fits_type_p PARAMS ((tree, tree));
665 /* Keep a stack of if statements. We record the number of compound
666 statements seen up to the if keyword, as well as the line number
667 and file of the if. If a potentially ambiguous else is seen, that
668 fact is recorded; the warning is issued when we can be sure that
669 the enclosing if statement does not have an else branch. */
670 typedef struct
672 int compstmt_count;
673 int line;
674 const char *file;
675 int needs_warning;
676 tree if_stmt;
677 } if_elt;
679 static if_elt *if_stack;
681 /* Amount of space in the if statement stack. */
682 static int if_stack_space = 0;
684 /* Stack pointer. */
685 static int if_stack_pointer = 0;
687 static tree handle_packed_attribute PARAMS ((tree *, tree, tree, int,
688 bool *));
689 static tree handle_nocommon_attribute PARAMS ((tree *, tree, tree, int,
690 bool *));
691 static tree handle_common_attribute PARAMS ((tree *, tree, tree, int,
692 bool *));
693 static tree handle_noreturn_attribute PARAMS ((tree *, tree, tree, int,
694 bool *));
695 static tree handle_noinline_attribute PARAMS ((tree *, tree, tree, int,
696 bool *));
697 static tree handle_always_inline_attribute PARAMS ((tree *, tree, tree, int,
698 bool *));
699 static tree handle_used_attribute PARAMS ((tree *, tree, tree, int,
700 bool *));
701 static tree handle_unused_attribute PARAMS ((tree *, tree, tree, int,
702 bool *));
703 static tree handle_const_attribute PARAMS ((tree *, tree, tree, int,
704 bool *));
705 static tree handle_transparent_union_attribute PARAMS ((tree *, tree, tree,
706 int, bool *));
707 static tree handle_constructor_attribute PARAMS ((tree *, tree, tree, int,
708 bool *));
709 static tree handle_destructor_attribute PARAMS ((tree *, tree, tree, int,
710 bool *));
711 static tree handle_mode_attribute PARAMS ((tree *, tree, tree, int,
712 bool *));
713 static tree handle_section_attribute PARAMS ((tree *, tree, tree, int,
714 bool *));
715 static tree handle_aligned_attribute PARAMS ((tree *, tree, tree, int,
716 bool *));
717 static tree handle_weak_attribute PARAMS ((tree *, tree, tree, int,
718 bool *));
719 static tree handle_alias_attribute PARAMS ((tree *, tree, tree, int,
720 bool *));
721 static tree handle_visibility_attribute PARAMS ((tree *, tree, tree, int,
722 bool *));
723 static tree handle_no_instrument_function_attribute PARAMS ((tree *, tree,
724 tree, int,
725 bool *));
726 static tree handle_malloc_attribute PARAMS ((tree *, tree, tree, int,
727 bool *));
728 static tree handle_no_limit_stack_attribute PARAMS ((tree *, tree, tree, int,
729 bool *));
730 static tree handle_pure_attribute PARAMS ((tree *, tree, tree, int,
731 bool *));
732 static tree handle_deprecated_attribute PARAMS ((tree *, tree, tree, int,
733 bool *));
734 static tree handle_vector_size_attribute PARAMS ((tree *, tree, tree, int,
735 bool *));
736 static tree handle_nonnull_attribute PARAMS ((tree *, tree, tree, int,
737 bool *));
738 static tree handle_nothrow_attribute PARAMS ((tree *, tree, tree, int,
739 bool *));
740 static tree vector_size_helper PARAMS ((tree, tree));
742 static void check_function_nonnull PARAMS ((tree, tree));
743 static void check_nonnull_arg PARAMS ((void *, tree,
744 unsigned HOST_WIDE_INT));
745 static bool nonnull_check_p PARAMS ((tree, unsigned HOST_WIDE_INT));
746 static bool get_nonnull_operand PARAMS ((tree,
747 unsigned HOST_WIDE_INT *));
748 void builtin_define_std PARAMS ((const char *));
749 static void builtin_define_with_value PARAMS ((const char *, const char *,
750 int));
751 static void builtin_define_type_max PARAMS ((const char *, tree, int));
753 /* Table of machine-independent attributes common to all C-like languages. */
754 const struct attribute_spec c_common_attribute_table[] =
756 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
757 { "packed", 0, 0, false, false, false,
758 handle_packed_attribute },
759 { "nocommon", 0, 0, true, false, false,
760 handle_nocommon_attribute },
761 { "common", 0, 0, true, false, false,
762 handle_common_attribute },
763 /* FIXME: logically, noreturn attributes should be listed as
764 "false, true, true" and apply to function types. But implementing this
765 would require all the places in the compiler that use TREE_THIS_VOLATILE
766 on a decl to identify non-returning functions to be located and fixed
767 to check the function type instead. */
768 { "noreturn", 0, 0, true, false, false,
769 handle_noreturn_attribute },
770 { "volatile", 0, 0, true, false, false,
771 handle_noreturn_attribute },
772 { "noinline", 0, 0, true, false, false,
773 handle_noinline_attribute },
774 { "always_inline", 0, 0, true, false, false,
775 handle_always_inline_attribute },
776 { "used", 0, 0, true, false, false,
777 handle_used_attribute },
778 { "unused", 0, 0, false, false, false,
779 handle_unused_attribute },
780 /* The same comments as for noreturn attributes apply to const ones. */
781 { "const", 0, 0, true, false, false,
782 handle_const_attribute },
783 { "transparent_union", 0, 0, false, false, false,
784 handle_transparent_union_attribute },
785 { "constructor", 0, 0, true, false, false,
786 handle_constructor_attribute },
787 { "destructor", 0, 0, true, false, false,
788 handle_destructor_attribute },
789 { "mode", 1, 1, false, true, false,
790 handle_mode_attribute },
791 { "section", 1, 1, true, false, false,
792 handle_section_attribute },
793 { "aligned", 0, 1, false, false, false,
794 handle_aligned_attribute },
795 { "weak", 0, 0, true, false, false,
796 handle_weak_attribute },
797 { "alias", 1, 1, true, false, false,
798 handle_alias_attribute },
799 { "no_instrument_function", 0, 0, true, false, false,
800 handle_no_instrument_function_attribute },
801 { "malloc", 0, 0, true, false, false,
802 handle_malloc_attribute },
803 { "no_stack_limit", 0, 0, true, false, false,
804 handle_no_limit_stack_attribute },
805 { "pure", 0, 0, true, false, false,
806 handle_pure_attribute },
807 { "deprecated", 0, 0, false, false, false,
808 handle_deprecated_attribute },
809 { "vector_size", 1, 1, false, true, false,
810 handle_vector_size_attribute },
811 { "visibility", 1, 1, true, false, false,
812 handle_visibility_attribute },
813 { "nonnull", 0, -1, false, true, true,
814 handle_nonnull_attribute },
815 { "nothrow", 0, 0, true, false, false,
816 handle_nothrow_attribute },
817 { "may_alias", 0, 0, false, true, false, NULL },
818 { NULL, 0, 0, false, false, false, NULL }
821 /* Give the specifications for the format attributes, used by C and all
822 descendents. */
824 const struct attribute_spec c_common_format_attribute_table[] =
826 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
827 { "format", 3, 3, false, true, true,
828 handle_format_attribute },
829 { "format_arg", 1, 1, false, true, true,
830 handle_format_arg_attribute },
831 { NULL, 0, 0, false, false, false, NULL }
834 /* Record the start of an if-then, and record the start of it
835 for ambiguous else detection.
837 COND is the condition for the if-then statement.
839 IF_STMT is the statement node that has already been created for
840 this if-then statement. It is created before parsing the
841 condition to keep line number information accurate. */
843 void
844 c_expand_start_cond (cond, compstmt_count, if_stmt)
845 tree cond;
846 int compstmt_count;
847 tree if_stmt;
849 /* Make sure there is enough space on the stack. */
850 if (if_stack_space == 0)
852 if_stack_space = 10;
853 if_stack = (if_elt *) xmalloc (10 * sizeof (if_elt));
855 else if (if_stack_space == if_stack_pointer)
857 if_stack_space += 10;
858 if_stack = (if_elt *) xrealloc (if_stack, if_stack_space * sizeof (if_elt));
861 IF_COND (if_stmt) = cond;
862 add_stmt (if_stmt);
864 /* Record this if statement. */
865 if_stack[if_stack_pointer].compstmt_count = compstmt_count;
866 if_stack[if_stack_pointer].file = input_filename;
867 if_stack[if_stack_pointer].line = lineno;
868 if_stack[if_stack_pointer].needs_warning = 0;
869 if_stack[if_stack_pointer].if_stmt = if_stmt;
870 if_stack_pointer++;
873 /* Called after the then-clause for an if-statement is processed. */
875 void
876 c_finish_then ()
878 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
879 RECHAIN_STMTS (if_stmt, THEN_CLAUSE (if_stmt));
882 /* Record the end of an if-then. Optionally warn if a nested
883 if statement had an ambiguous else clause. */
885 void
886 c_expand_end_cond ()
888 if_stack_pointer--;
889 if (if_stack[if_stack_pointer].needs_warning)
890 warning_with_file_and_line (if_stack[if_stack_pointer].file,
891 if_stack[if_stack_pointer].line,
892 "suggest explicit braces to avoid ambiguous `else'");
893 last_expr_type = NULL_TREE;
896 /* Called between the then-clause and the else-clause
897 of an if-then-else. */
899 void
900 c_expand_start_else ()
902 /* An ambiguous else warning must be generated for the enclosing if
903 statement, unless we see an else branch for that one, too. */
904 if (warn_parentheses
905 && if_stack_pointer > 1
906 && (if_stack[if_stack_pointer - 1].compstmt_count
907 == if_stack[if_stack_pointer - 2].compstmt_count))
908 if_stack[if_stack_pointer - 2].needs_warning = 1;
910 /* Even if a nested if statement had an else branch, it can't be
911 ambiguous if this one also has an else. So don't warn in that
912 case. Also don't warn for any if statements nested in this else. */
913 if_stack[if_stack_pointer - 1].needs_warning = 0;
914 if_stack[if_stack_pointer - 1].compstmt_count--;
917 /* Called after the else-clause for an if-statement is processed. */
919 void
920 c_finish_else ()
922 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
923 RECHAIN_STMTS (if_stmt, ELSE_CLAUSE (if_stmt));
926 /* Begin an if-statement. Returns a newly created IF_STMT if
927 appropriate.
929 Unlike the C++ front-end, we do not call add_stmt here; it is
930 probably safe to do so, but I am not very familiar with this
931 code so I am being extra careful not to change its behavior
932 beyond what is strictly necessary for correctness. */
934 tree
935 c_begin_if_stmt ()
937 tree r;
938 r = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
939 return r;
942 /* Begin a while statement. Returns a newly created WHILE_STMT if
943 appropriate.
945 Unlike the C++ front-end, we do not call add_stmt here; it is
946 probably safe to do so, but I am not very familiar with this
947 code so I am being extra careful not to change its behavior
948 beyond what is strictly necessary for correctness. */
950 tree
951 c_begin_while_stmt ()
953 tree r;
954 r = build_stmt (WHILE_STMT, NULL_TREE, NULL_TREE);
955 return r;
958 void
959 c_finish_while_stmt_cond (cond, while_stmt)
960 tree while_stmt;
961 tree cond;
963 WHILE_COND (while_stmt) = cond;
966 /* Push current bindings for the function name VAR_DECLS. */
968 void
969 start_fname_decls ()
971 unsigned ix;
972 tree saved = NULL_TREE;
974 for (ix = 0; fname_vars[ix].decl; ix++)
976 tree decl = *fname_vars[ix].decl;
978 if (decl)
980 saved = tree_cons (decl, build_int_2 (ix, 0), saved);
981 *fname_vars[ix].decl = NULL_TREE;
984 if (saved || saved_function_name_decls)
985 /* Normally they'll have been NULL, so only push if we've got a
986 stack, or they are non-NULL. */
987 saved_function_name_decls = tree_cons (saved, NULL_TREE,
988 saved_function_name_decls);
991 /* Finish up the current bindings, adding them into the
992 current function's statement tree. This is done by wrapping the
993 function's body in a COMPOUND_STMT containing these decls too. This
994 must be done _before_ finish_stmt_tree is called. If there is no
995 current function, we must be at file scope and no statements are
996 involved. Pop the previous bindings. */
998 void
999 finish_fname_decls ()
1001 unsigned ix;
1002 tree body = NULL_TREE;
1003 tree stack = saved_function_name_decls;
1005 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
1006 body = chainon (TREE_VALUE (stack), body);
1008 if (body)
1010 /* They were called into existence, so add to statement tree. */
1011 body = chainon (body,
1012 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)));
1013 body = build_stmt (COMPOUND_STMT, body);
1015 COMPOUND_STMT_NO_SCOPE (body) = 1;
1016 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)) = body;
1019 for (ix = 0; fname_vars[ix].decl; ix++)
1020 *fname_vars[ix].decl = NULL_TREE;
1022 if (stack)
1024 /* We had saved values, restore them. */
1025 tree saved;
1027 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
1029 tree decl = TREE_PURPOSE (saved);
1030 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
1032 *fname_vars[ix].decl = decl;
1034 stack = TREE_CHAIN (stack);
1036 saved_function_name_decls = stack;
1039 /* Return the text name of the current function, suitable prettified
1040 by PRETTY_P. */
1042 const char *
1043 fname_as_string (pretty_p)
1044 int pretty_p;
1046 const char *name = NULL;
1048 if (pretty_p)
1049 name = (current_function_decl
1050 ? (*lang_hooks.decl_printable_name) (current_function_decl, 2)
1051 : "top level");
1052 else if (current_function_decl && DECL_NAME (current_function_decl))
1053 name = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
1054 else
1055 name = "";
1056 return name;
1059 /* Return the text name of the current function, formatted as
1060 required by the supplied RID value. */
1062 const char *
1063 fname_string (rid)
1064 unsigned rid;
1066 unsigned ix;
1068 for (ix = 0; fname_vars[ix].decl; ix++)
1069 if (fname_vars[ix].rid == rid)
1070 break;
1071 return fname_as_string (fname_vars[ix].pretty);
1074 /* Return the VAR_DECL for a const char array naming the current
1075 function. If the VAR_DECL has not yet been created, create it
1076 now. RID indicates how it should be formatted and IDENTIFIER_NODE
1077 ID is its name (unfortunately C and C++ hold the RID values of
1078 keywords in different places, so we can't derive RID from ID in
1079 this language independent code. */
1081 tree
1082 fname_decl (rid, id)
1083 unsigned rid;
1084 tree id;
1086 unsigned ix;
1087 tree decl = NULL_TREE;
1089 for (ix = 0; fname_vars[ix].decl; ix++)
1090 if (fname_vars[ix].rid == rid)
1091 break;
1093 decl = *fname_vars[ix].decl;
1094 if (!decl)
1096 tree saved_last_tree = last_tree;
1097 /* If a tree is built here, it would normally have the lineno of
1098 the current statement. Later this tree will be moved to the
1099 beginning of the function and this line number will be wrong.
1100 To avoid this problem set the lineno to 0 here; that prevents
1101 it from appearing in the RTL. */
1102 int saved_lineno = lineno;
1103 lineno = 0;
1105 decl = (*make_fname_decl) (id, fname_vars[ix].pretty);
1106 if (last_tree != saved_last_tree)
1108 /* We created some statement tree for the decl. This belongs
1109 at the start of the function, so remove it now and reinsert
1110 it after the function is complete. */
1111 tree stmts = TREE_CHAIN (saved_last_tree);
1113 TREE_CHAIN (saved_last_tree) = NULL_TREE;
1114 last_tree = saved_last_tree;
1115 saved_function_name_decls = tree_cons (decl, stmts,
1116 saved_function_name_decls);
1118 *fname_vars[ix].decl = decl;
1119 lineno = saved_lineno;
1121 if (!ix && !current_function_decl)
1122 pedwarn_with_decl (decl, "`%s' is not defined outside of function scope");
1124 return decl;
1127 /* Given a STRING_CST, give it a suitable array-of-chars data type. */
1129 tree
1130 fix_string_type (value)
1131 tree value;
1133 const int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
1134 const int wide_flag = TREE_TYPE (value) == wchar_array_type_node;
1135 const int nchars_max = flag_isoc99 ? 4095 : 509;
1136 int length = TREE_STRING_LENGTH (value);
1137 int nchars;
1139 /* Compute the number of elements, for the array type. */
1140 nchars = wide_flag ? length / wchar_bytes : length;
1142 if (pedantic && nchars - 1 > nchars_max && c_language == clk_c)
1143 pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
1144 nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
1146 /* Create the array type for the string constant.
1147 -Wwrite-strings says make the string constant an array of const char
1148 so that copying it to a non-const pointer will get a warning.
1149 For C++, this is the standard behavior. */
1150 if (flag_const_strings && ! flag_writable_strings)
1152 tree elements
1153 = build_type_variant (wide_flag ? wchar_type_node : char_type_node,
1154 1, 0);
1155 TREE_TYPE (value)
1156 = build_array_type (elements,
1157 build_index_type (build_int_2 (nchars - 1, 0)));
1159 else
1160 TREE_TYPE (value)
1161 = build_array_type (wide_flag ? wchar_type_node : char_type_node,
1162 build_index_type (build_int_2 (nchars - 1, 0)));
1164 TREE_CONSTANT (value) = 1;
1165 TREE_READONLY (value) = ! flag_writable_strings;
1166 TREE_STATIC (value) = 1;
1167 return value;
1170 /* Given a VARRAY of STRING_CST nodes, concatenate them into one
1171 STRING_CST. */
1173 tree
1174 combine_strings (strings)
1175 varray_type strings;
1177 const int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
1178 const int nstrings = VARRAY_ACTIVE_SIZE (strings);
1179 tree value, t;
1180 int length = 1;
1181 int wide_length = 0;
1182 int wide_flag = 0;
1183 int i;
1184 char *p, *q;
1186 /* Don't include the \0 at the end of each substring. Count wide
1187 strings and ordinary strings separately. */
1188 for (i = 0; i < nstrings; ++i)
1190 t = VARRAY_TREE (strings, i);
1192 if (TREE_TYPE (t) == wchar_array_type_node)
1194 wide_length += TREE_STRING_LENGTH (t) - wchar_bytes;
1195 wide_flag = 1;
1197 else
1199 length += (TREE_STRING_LENGTH (t) - 1);
1200 if (C_ARTIFICIAL_STRING_P (t) && !in_system_header)
1201 warning ("concatenation of string literals with __FUNCTION__ is deprecated");
1205 /* If anything is wide, the non-wides will be converted,
1206 which makes them take more space. */
1207 if (wide_flag)
1208 length = length * wchar_bytes + wide_length;
1210 p = xmalloc (length);
1212 /* Copy the individual strings into the new combined string.
1213 If the combined string is wide, convert the chars to ints
1214 for any individual strings that are not wide. */
1216 q = p;
1217 for (i = 0; i < nstrings; ++i)
1219 int len, this_wide;
1221 t = VARRAY_TREE (strings, i);
1222 this_wide = TREE_TYPE (t) == wchar_array_type_node;
1223 len = TREE_STRING_LENGTH (t) - (this_wide ? wchar_bytes : 1);
1224 if (this_wide == wide_flag)
1226 memcpy (q, TREE_STRING_POINTER (t), len);
1227 q += len;
1229 else
1231 const int nzeros = (TYPE_PRECISION (wchar_type_node)
1232 / BITS_PER_UNIT) - 1;
1233 int j, k;
1235 if (BYTES_BIG_ENDIAN)
1237 for (k = 0; k < len; k++)
1239 for (j = 0; j < nzeros; j++)
1240 *q++ = 0;
1241 *q++ = TREE_STRING_POINTER (t)[k];
1244 else
1246 for (k = 0; k < len; k++)
1248 *q++ = TREE_STRING_POINTER (t)[k];
1249 for (j = 0; j < nzeros; j++)
1250 *q++ = 0;
1256 /* Nul terminate the string. */
1257 if (wide_flag)
1259 for (i = 0; i < wchar_bytes; i++)
1260 *q++ = 0;
1262 else
1263 *q = 0;
1265 value = build_string (length, p);
1266 free (p);
1268 if (wide_flag)
1269 TREE_TYPE (value) = wchar_array_type_node;
1270 else
1271 TREE_TYPE (value) = char_array_type_node;
1273 return value;
1276 static int is_valid_printf_arglist PARAMS ((tree));
1277 static rtx c_expand_builtin PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier));
1278 static rtx c_expand_builtin_printf PARAMS ((tree, rtx, enum machine_mode,
1279 enum expand_modifier, int, int));
1280 static rtx c_expand_builtin_fprintf PARAMS ((tree, rtx, enum machine_mode,
1281 enum expand_modifier, int, int));
1283 /* Print a warning if a constant expression had overflow in folding.
1284 Invoke this function on every expression that the language
1285 requires to be a constant expression.
1286 Note the ANSI C standard says it is erroneous for a
1287 constant expression to overflow. */
1289 void
1290 constant_expression_warning (value)
1291 tree value;
1293 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
1294 || TREE_CODE (value) == VECTOR_CST
1295 || TREE_CODE (value) == COMPLEX_CST)
1296 && TREE_CONSTANT_OVERFLOW (value) && pedantic)
1297 pedwarn ("overflow in constant expression");
1300 /* Print a warning if an expression had overflow in folding.
1301 Invoke this function on every expression that
1302 (1) appears in the source code, and
1303 (2) might be a constant expression that overflowed, and
1304 (3) is not already checked by convert_and_check;
1305 however, do not invoke this function on operands of explicit casts. */
1307 void
1308 overflow_warning (value)
1309 tree value;
1311 if ((TREE_CODE (value) == INTEGER_CST
1312 || (TREE_CODE (value) == COMPLEX_CST
1313 && TREE_CODE (TREE_REALPART (value)) == INTEGER_CST))
1314 && TREE_OVERFLOW (value))
1316 TREE_OVERFLOW (value) = 0;
1317 if (skip_evaluation == 0)
1318 warning ("integer overflow in expression");
1320 else if ((TREE_CODE (value) == REAL_CST
1321 || (TREE_CODE (value) == COMPLEX_CST
1322 && TREE_CODE (TREE_REALPART (value)) == REAL_CST))
1323 && TREE_OVERFLOW (value))
1325 TREE_OVERFLOW (value) = 0;
1326 if (skip_evaluation == 0)
1327 warning ("floating point overflow in expression");
1329 else if (TREE_CODE (value) == VECTOR_CST && TREE_OVERFLOW (value))
1331 TREE_OVERFLOW (value) = 0;
1332 if (skip_evaluation == 0)
1333 warning ("vector overflow in expression");
1337 /* Print a warning if a large constant is truncated to unsigned,
1338 or if -Wconversion is used and a constant < 0 is converted to unsigned.
1339 Invoke this function on every expression that might be implicitly
1340 converted to an unsigned type. */
1342 void
1343 unsigned_conversion_warning (result, operand)
1344 tree result, operand;
1346 tree type = TREE_TYPE (result);
1348 if (TREE_CODE (operand) == INTEGER_CST
1349 && TREE_CODE (type) == INTEGER_TYPE
1350 && TREE_UNSIGNED (type)
1351 && skip_evaluation == 0
1352 && !int_fits_type_p (operand, type))
1354 if (!int_fits_type_p (operand, c_common_signed_type (type)))
1355 /* This detects cases like converting -129 or 256 to unsigned char. */
1356 warning ("large integer implicitly truncated to unsigned type");
1357 else if (warn_conversion)
1358 warning ("negative integer implicitly converted to unsigned type");
1362 /* Nonzero if constant C has a value that is permissible
1363 for type TYPE (an INTEGER_TYPE). */
1365 static int
1366 constant_fits_type_p (c, type)
1367 tree c, type;
1369 if (TREE_CODE (c) == INTEGER_CST)
1370 return int_fits_type_p (c, type);
1372 c = convert (type, c);
1373 return !TREE_OVERFLOW (c);
1376 /* Convert EXPR to TYPE, warning about conversion problems with constants.
1377 Invoke this function on every expression that is converted implicitly,
1378 i.e. because of language rules and not because of an explicit cast. */
1380 tree
1381 convert_and_check (type, expr)
1382 tree type, expr;
1384 tree t = convert (type, expr);
1385 if (TREE_CODE (t) == INTEGER_CST)
1387 if (TREE_OVERFLOW (t))
1389 TREE_OVERFLOW (t) = 0;
1391 /* Do not diagnose overflow in a constant expression merely
1392 because a conversion overflowed. */
1393 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (expr);
1395 /* No warning for converting 0x80000000 to int. */
1396 if (!(TREE_UNSIGNED (type) < TREE_UNSIGNED (TREE_TYPE (expr))
1397 && TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
1398 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (expr))))
1399 /* If EXPR fits in the unsigned version of TYPE,
1400 don't warn unless pedantic. */
1401 if ((pedantic
1402 || TREE_UNSIGNED (type)
1403 || ! constant_fits_type_p (expr,
1404 c_common_unsigned_type (type)))
1405 && skip_evaluation == 0)
1406 warning ("overflow in implicit constant conversion");
1408 else
1409 unsigned_conversion_warning (t, expr);
1411 return t;
1414 /* A node in a list that describes references to variables (EXPR), which are
1415 either read accesses if WRITER is zero, or write accesses, in which case
1416 WRITER is the parent of EXPR. */
1417 struct tlist
1419 struct tlist *next;
1420 tree expr, writer;
1423 /* Used to implement a cache the results of a call to verify_tree. We only
1424 use this for SAVE_EXPRs. */
1425 struct tlist_cache
1427 struct tlist_cache *next;
1428 struct tlist *cache_before_sp;
1429 struct tlist *cache_after_sp;
1430 tree expr;
1433 /* Obstack to use when allocating tlist structures, and corresponding
1434 firstobj. */
1435 static struct obstack tlist_obstack;
1436 static char *tlist_firstobj = 0;
1438 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
1439 warnings. */
1440 static struct tlist *warned_ids;
1441 /* SAVE_EXPRs need special treatment. We process them only once and then
1442 cache the results. */
1443 static struct tlist_cache *save_expr_cache;
1445 static void add_tlist PARAMS ((struct tlist **, struct tlist *, tree, int));
1446 static void merge_tlist PARAMS ((struct tlist **, struct tlist *, int));
1447 static void verify_tree PARAMS ((tree, struct tlist **, struct tlist **, tree));
1448 static int warning_candidate_p PARAMS ((tree));
1449 static void warn_for_collisions PARAMS ((struct tlist *));
1450 static void warn_for_collisions_1 PARAMS ((tree, tree, struct tlist *, int));
1451 static struct tlist *new_tlist PARAMS ((struct tlist *, tree, tree));
1452 static void verify_sequence_points PARAMS ((tree));
1454 /* Create a new struct tlist and fill in its fields. */
1455 static struct tlist *
1456 new_tlist (next, t, writer)
1457 struct tlist *next;
1458 tree t;
1459 tree writer;
1461 struct tlist *l;
1462 l = (struct tlist *) obstack_alloc (&tlist_obstack, sizeof *l);
1463 l->next = next;
1464 l->expr = t;
1465 l->writer = writer;
1466 return l;
1469 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
1470 is nonnull, we ignore any node we find which has a writer equal to it. */
1472 static void
1473 add_tlist (to, add, exclude_writer, copy)
1474 struct tlist **to;
1475 struct tlist *add;
1476 tree exclude_writer;
1477 int copy;
1479 while (add)
1481 struct tlist *next = add->next;
1482 if (! copy)
1483 add->next = *to;
1484 if (! exclude_writer || add->writer != exclude_writer)
1485 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
1486 add = next;
1490 /* Merge the nodes of ADD into TO. This merging process is done so that for
1491 each variable that already exists in TO, no new node is added; however if
1492 there is a write access recorded in ADD, and an occurrence on TO is only
1493 a read access, then the occurrence in TO will be modified to record the
1494 write. */
1496 static void
1497 merge_tlist (to, add, copy)
1498 struct tlist **to;
1499 struct tlist *add;
1500 int copy;
1502 struct tlist **end = to;
1504 while (*end)
1505 end = &(*end)->next;
1507 while (add)
1509 int found = 0;
1510 struct tlist *tmp2;
1511 struct tlist *next = add->next;
1513 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
1514 if (tmp2->expr == add->expr)
1516 found = 1;
1517 if (! tmp2->writer)
1518 tmp2->writer = add->writer;
1520 if (! found)
1522 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
1523 end = &(*end)->next;
1524 *end = 0;
1526 add = next;
1530 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
1531 references in list LIST conflict with it, excluding reads if ONLY writers
1532 is nonzero. */
1534 static void
1535 warn_for_collisions_1 (written, writer, list, only_writes)
1536 tree written, writer;
1537 struct tlist *list;
1538 int only_writes;
1540 struct tlist *tmp;
1542 /* Avoid duplicate warnings. */
1543 for (tmp = warned_ids; tmp; tmp = tmp->next)
1544 if (tmp->expr == written)
1545 return;
1547 while (list)
1549 if (list->expr == written
1550 && list->writer != writer
1551 && (! only_writes || list->writer))
1553 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
1554 warning ("operation on `%s' may be undefined",
1555 IDENTIFIER_POINTER (DECL_NAME (list->expr)));
1557 list = list->next;
1561 /* Given a list LIST of references to variables, find whether any of these
1562 can cause conflicts due to missing sequence points. */
1564 static void
1565 warn_for_collisions (list)
1566 struct tlist *list;
1568 struct tlist *tmp;
1570 for (tmp = list; tmp; tmp = tmp->next)
1572 if (tmp->writer)
1573 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
1577 /* Return nonzero if X is a tree that can be verified by the sequence point
1578 warnings. */
1579 static int
1580 warning_candidate_p (x)
1581 tree x;
1583 return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
1586 /* Walk the tree X, and record accesses to variables. If X is written by the
1587 parent tree, WRITER is the parent.
1588 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
1589 expression or its only operand forces a sequence point, then everything up
1590 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
1591 in PNO_SP.
1592 Once we return, we will have emitted warnings if any subexpression before
1593 such a sequence point could be undefined. On a higher level, however, the
1594 sequence point may not be relevant, and we'll merge the two lists.
1596 Example: (b++, a) + b;
1597 The call that processes the COMPOUND_EXPR will store the increment of B
1598 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
1599 processes the PLUS_EXPR will need to merge the two lists so that
1600 eventually, all accesses end up on the same list (and we'll warn about the
1601 unordered subexpressions b++ and b.
1603 A note on merging. If we modify the former example so that our expression
1604 becomes
1605 (b++, b) + a
1606 care must be taken not simply to add all three expressions into the final
1607 PNO_SP list. The function merge_tlist takes care of that by merging the
1608 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
1609 way, so that no more than one access to B is recorded. */
1611 static void
1612 verify_tree (x, pbefore_sp, pno_sp, writer)
1613 tree x;
1614 struct tlist **pbefore_sp, **pno_sp;
1615 tree writer;
1617 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
1618 enum tree_code code;
1619 char class;
1621 /* X may be NULL if it is the operand of an empty statement expression
1622 ({ }). */
1623 if (x == NULL)
1624 return;
1626 restart:
1627 code = TREE_CODE (x);
1628 class = TREE_CODE_CLASS (code);
1630 if (warning_candidate_p (x))
1632 *pno_sp = new_tlist (*pno_sp, x, writer);
1633 return;
1636 switch (code)
1638 case CONSTRUCTOR:
1639 return;
1641 case COMPOUND_EXPR:
1642 case TRUTH_ANDIF_EXPR:
1643 case TRUTH_ORIF_EXPR:
1644 tmp_before = tmp_nosp = tmp_list3 = 0;
1645 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1646 warn_for_collisions (tmp_nosp);
1647 merge_tlist (pbefore_sp, tmp_before, 0);
1648 merge_tlist (pbefore_sp, tmp_nosp, 0);
1649 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
1650 merge_tlist (pbefore_sp, tmp_list3, 0);
1651 return;
1653 case COND_EXPR:
1654 tmp_before = tmp_list2 = 0;
1655 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1656 warn_for_collisions (tmp_list2);
1657 merge_tlist (pbefore_sp, tmp_before, 0);
1658 merge_tlist (pbefore_sp, tmp_list2, 1);
1660 tmp_list3 = tmp_nosp = 0;
1661 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1662 warn_for_collisions (tmp_nosp);
1663 merge_tlist (pbefore_sp, tmp_list3, 0);
1665 tmp_list3 = tmp_list2 = 0;
1666 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1667 warn_for_collisions (tmp_list2);
1668 merge_tlist (pbefore_sp, tmp_list3, 0);
1669 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1670 two first, to avoid warning for (a ? b++ : b++). */
1671 merge_tlist (&tmp_nosp, tmp_list2, 0);
1672 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1673 return;
1675 case PREDECREMENT_EXPR:
1676 case PREINCREMENT_EXPR:
1677 case POSTDECREMENT_EXPR:
1678 case POSTINCREMENT_EXPR:
1679 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1680 return;
1682 case MODIFY_EXPR:
1683 tmp_before = tmp_nosp = tmp_list3 = 0;
1684 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1685 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1686 /* Expressions inside the LHS are not ordered wrt. the sequence points
1687 in the RHS. Example:
1688 *a = (a++, 2)
1689 Despite the fact that the modification of "a" is in the before_sp
1690 list (tmp_before), it conflicts with the use of "a" in the LHS.
1691 We can handle this by adding the contents of tmp_list3
1692 to those of tmp_before, and redoing the collision warnings for that
1693 list. */
1694 add_tlist (&tmp_before, tmp_list3, x, 1);
1695 warn_for_collisions (tmp_before);
1696 /* Exclude the LHS itself here; we first have to merge it into the
1697 tmp_nosp list. This is done to avoid warning for "a = a"; if we
1698 didn't exclude the LHS, we'd get it twice, once as a read and once
1699 as a write. */
1700 add_tlist (pno_sp, tmp_list3, x, 0);
1701 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1703 merge_tlist (pbefore_sp, tmp_before, 0);
1704 if (warning_candidate_p (TREE_OPERAND (x, 0)))
1705 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1706 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1707 return;
1709 case CALL_EXPR:
1710 /* We need to warn about conflicts among arguments and conflicts between
1711 args and the function address. Side effects of the function address,
1712 however, are not ordered by the sequence point of the call. */
1713 tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
1714 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1715 if (TREE_OPERAND (x, 1))
1716 verify_tree (TREE_OPERAND (x, 1), &tmp_list2, &tmp_list3, NULL_TREE);
1717 merge_tlist (&tmp_list3, tmp_list2, 0);
1718 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1719 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1720 warn_for_collisions (tmp_before);
1721 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1722 return;
1724 case TREE_LIST:
1725 /* Scan all the list, e.g. indices of multi dimensional array. */
1726 while (x)
1728 tmp_before = tmp_nosp = 0;
1729 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1730 merge_tlist (&tmp_nosp, tmp_before, 0);
1731 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1732 x = TREE_CHAIN (x);
1734 return;
1736 case SAVE_EXPR:
1738 struct tlist_cache *t;
1739 for (t = save_expr_cache; t; t = t->next)
1740 if (t->expr == x)
1741 break;
1743 if (! t)
1745 t = (struct tlist_cache *) obstack_alloc (&tlist_obstack,
1746 sizeof *t);
1747 t->next = save_expr_cache;
1748 t->expr = x;
1749 save_expr_cache = t;
1751 tmp_before = tmp_nosp = 0;
1752 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1753 warn_for_collisions (tmp_nosp);
1755 tmp_list3 = 0;
1756 while (tmp_nosp)
1758 struct tlist *t = tmp_nosp;
1759 tmp_nosp = t->next;
1760 merge_tlist (&tmp_list3, t, 0);
1762 t->cache_before_sp = tmp_before;
1763 t->cache_after_sp = tmp_list3;
1765 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1766 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1767 return;
1769 default:
1770 break;
1773 if (class == '1')
1775 if (first_rtl_op (code) == 0)
1776 return;
1777 x = TREE_OPERAND (x, 0);
1778 writer = 0;
1779 goto restart;
1782 switch (class)
1784 case 'r':
1785 case '<':
1786 case '2':
1787 case 'b':
1788 case 'e':
1789 case 's':
1790 case 'x':
1792 int lp;
1793 int max = first_rtl_op (TREE_CODE (x));
1794 for (lp = 0; lp < max; lp++)
1796 tmp_before = tmp_nosp = 0;
1797 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, NULL_TREE);
1798 merge_tlist (&tmp_nosp, tmp_before, 0);
1799 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1801 break;
1806 /* Try to warn for undefined behaviour in EXPR due to missing sequence
1807 points. */
1809 static void
1810 verify_sequence_points (expr)
1811 tree expr;
1813 struct tlist *before_sp = 0, *after_sp = 0;
1815 warned_ids = 0;
1816 save_expr_cache = 0;
1817 if (tlist_firstobj == 0)
1819 gcc_obstack_init (&tlist_obstack);
1820 tlist_firstobj = obstack_alloc (&tlist_obstack, 0);
1823 verify_tree (expr, &before_sp, &after_sp, 0);
1824 warn_for_collisions (after_sp);
1825 obstack_free (&tlist_obstack, tlist_firstobj);
1828 tree
1829 c_expand_expr_stmt (expr)
1830 tree expr;
1832 /* Do default conversion if safe and possibly important,
1833 in case within ({...}). */
1834 if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1835 && (flag_isoc99 || lvalue_p (expr)))
1836 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
1837 expr = default_conversion (expr);
1839 if (warn_sequence_point)
1840 verify_sequence_points (expr);
1842 if (TREE_TYPE (expr) != error_mark_node
1843 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
1844 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
1845 error ("expression statement has incomplete type");
1847 last_expr_type = TREE_TYPE (expr);
1848 return add_stmt (build_stmt (EXPR_STMT, expr));
1851 /* Validate the expression after `case' and apply default promotions. */
1853 tree
1854 check_case_value (value)
1855 tree value;
1857 if (value == NULL_TREE)
1858 return value;
1860 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
1861 STRIP_TYPE_NOPS (value);
1862 /* In C++, the following is allowed:
1864 const int i = 3;
1865 switch (...) { case i: ... }
1867 So, we try to reduce the VALUE to a constant that way. */
1868 if (c_language == clk_cplusplus)
1870 value = decl_constant_value (value);
1871 STRIP_TYPE_NOPS (value);
1872 value = fold (value);
1875 if (TREE_CODE (value) != INTEGER_CST
1876 && value != error_mark_node)
1878 error ("case label does not reduce to an integer constant");
1879 value = error_mark_node;
1881 else
1882 /* Promote char or short to int. */
1883 value = default_conversion (value);
1885 constant_expression_warning (value);
1887 return value;
1890 /* Return an integer type with BITS bits of precision,
1891 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
1893 tree
1894 c_common_type_for_size (bits, unsignedp)
1895 unsigned bits;
1896 int unsignedp;
1898 if (bits == TYPE_PRECISION (integer_type_node))
1899 return unsignedp ? unsigned_type_node : integer_type_node;
1901 if (bits == TYPE_PRECISION (signed_char_type_node))
1902 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1904 if (bits == TYPE_PRECISION (short_integer_type_node))
1905 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1907 if (bits == TYPE_PRECISION (long_integer_type_node))
1908 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1910 if (bits == TYPE_PRECISION (long_long_integer_type_node))
1911 return (unsignedp ? long_long_unsigned_type_node
1912 : long_long_integer_type_node);
1914 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1915 return (unsignedp ? widest_unsigned_literal_type_node
1916 : widest_integer_literal_type_node);
1918 if (bits <= TYPE_PRECISION (intQI_type_node))
1919 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1921 if (bits <= TYPE_PRECISION (intHI_type_node))
1922 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1924 if (bits <= TYPE_PRECISION (intSI_type_node))
1925 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1927 if (bits <= TYPE_PRECISION (intDI_type_node))
1928 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1930 return 0;
1933 /* Return a data type that has machine mode MODE.
1934 If the mode is an integer,
1935 then UNSIGNEDP selects between signed and unsigned types. */
1937 tree
1938 c_common_type_for_mode (mode, unsignedp)
1939 enum machine_mode mode;
1940 int unsignedp;
1942 if (mode == TYPE_MODE (integer_type_node))
1943 return unsignedp ? unsigned_type_node : integer_type_node;
1945 if (mode == TYPE_MODE (signed_char_type_node))
1946 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1948 if (mode == TYPE_MODE (short_integer_type_node))
1949 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1951 if (mode == TYPE_MODE (long_integer_type_node))
1952 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1954 if (mode == TYPE_MODE (long_long_integer_type_node))
1955 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
1957 if (mode == TYPE_MODE (widest_integer_literal_type_node))
1958 return unsignedp ? widest_unsigned_literal_type_node
1959 : widest_integer_literal_type_node;
1961 if (mode == QImode)
1962 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1964 if (mode == HImode)
1965 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1967 if (mode == SImode)
1968 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1970 if (mode == DImode)
1971 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1973 #if HOST_BITS_PER_WIDE_INT >= 64
1974 if (mode == TYPE_MODE (intTI_type_node))
1975 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1976 #endif
1978 if (mode == TYPE_MODE (float_type_node))
1979 return float_type_node;
1981 if (mode == TYPE_MODE (double_type_node))
1982 return double_type_node;
1984 if (mode == TYPE_MODE (long_double_type_node))
1985 return long_double_type_node;
1987 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1988 return build_pointer_type (char_type_node);
1990 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1991 return build_pointer_type (integer_type_node);
1993 switch (mode)
1995 case V16QImode:
1996 return unsignedp ? unsigned_V16QI_type_node : V16QI_type_node;
1997 case V8HImode:
1998 return unsignedp ? unsigned_V8HI_type_node : V8HI_type_node;
1999 case V4SImode:
2000 return unsignedp ? unsigned_V4SI_type_node : V4SI_type_node;
2001 case V2DImode:
2002 return unsignedp ? unsigned_V2DI_type_node : V2DI_type_node;
2003 case V2SImode:
2004 return unsignedp ? unsigned_V2SI_type_node : V2SI_type_node;
2005 case V4HImode:
2006 return unsignedp ? unsigned_V4HI_type_node : V4HI_type_node;
2007 case V8QImode:
2008 return unsignedp ? unsigned_V8QI_type_node : V8QI_type_node;
2009 case V16SFmode:
2010 return V16SF_type_node;
2011 case V4SFmode:
2012 return V4SF_type_node;
2013 case V2SFmode:
2014 return V2SF_type_node;
2015 case V2DFmode:
2016 return V2DF_type_node;
2017 default:
2018 break;
2021 return 0;
2024 /* Return an unsigned type the same as TYPE in other respects. */
2025 tree
2026 c_common_unsigned_type (type)
2027 tree type;
2029 tree type1 = TYPE_MAIN_VARIANT (type);
2030 if (type1 == signed_char_type_node || type1 == char_type_node)
2031 return unsigned_char_type_node;
2032 if (type1 == integer_type_node)
2033 return unsigned_type_node;
2034 if (type1 == short_integer_type_node)
2035 return short_unsigned_type_node;
2036 if (type1 == long_integer_type_node)
2037 return long_unsigned_type_node;
2038 if (type1 == long_long_integer_type_node)
2039 return long_long_unsigned_type_node;
2040 if (type1 == widest_integer_literal_type_node)
2041 return widest_unsigned_literal_type_node;
2042 #if HOST_BITS_PER_WIDE_INT >= 64
2043 if (type1 == intTI_type_node)
2044 return unsigned_intTI_type_node;
2045 #endif
2046 if (type1 == intDI_type_node)
2047 return unsigned_intDI_type_node;
2048 if (type1 == intSI_type_node)
2049 return unsigned_intSI_type_node;
2050 if (type1 == intHI_type_node)
2051 return unsigned_intHI_type_node;
2052 if (type1 == intQI_type_node)
2053 return unsigned_intQI_type_node;
2055 return c_common_signed_or_unsigned_type (1, type);
2058 /* Return a signed type the same as TYPE in other respects. */
2060 tree
2061 c_common_signed_type (type)
2062 tree type;
2064 tree type1 = TYPE_MAIN_VARIANT (type);
2065 if (type1 == unsigned_char_type_node || type1 == char_type_node)
2066 return signed_char_type_node;
2067 if (type1 == unsigned_type_node)
2068 return integer_type_node;
2069 if (type1 == short_unsigned_type_node)
2070 return short_integer_type_node;
2071 if (type1 == long_unsigned_type_node)
2072 return long_integer_type_node;
2073 if (type1 == long_long_unsigned_type_node)
2074 return long_long_integer_type_node;
2075 if (type1 == widest_unsigned_literal_type_node)
2076 return widest_integer_literal_type_node;
2077 #if HOST_BITS_PER_WIDE_INT >= 64
2078 if (type1 == unsigned_intTI_type_node)
2079 return intTI_type_node;
2080 #endif
2081 if (type1 == unsigned_intDI_type_node)
2082 return intDI_type_node;
2083 if (type1 == unsigned_intSI_type_node)
2084 return intSI_type_node;
2085 if (type1 == unsigned_intHI_type_node)
2086 return intHI_type_node;
2087 if (type1 == unsigned_intQI_type_node)
2088 return intQI_type_node;
2090 return c_common_signed_or_unsigned_type (0, type);
2093 /* Return a type the same as TYPE except unsigned or
2094 signed according to UNSIGNEDP. */
2096 tree
2097 c_common_signed_or_unsigned_type (unsignedp, type)
2098 int unsignedp;
2099 tree type;
2101 if (! INTEGRAL_TYPE_P (type)
2102 || TREE_UNSIGNED (type) == unsignedp)
2103 return type;
2105 if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
2106 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
2107 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
2108 return unsignedp ? unsigned_type_node : integer_type_node;
2109 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
2110 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
2111 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
2112 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
2113 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
2114 return (unsignedp ? long_long_unsigned_type_node
2115 : long_long_integer_type_node);
2116 if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
2117 return (unsignedp ? widest_unsigned_literal_type_node
2118 : widest_integer_literal_type_node);
2120 #if HOST_BITS_PER_WIDE_INT >= 64
2121 if (TYPE_PRECISION (type) == TYPE_PRECISION (intTI_type_node))
2122 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
2123 #endif
2124 if (TYPE_PRECISION (type) == TYPE_PRECISION (intDI_type_node))
2125 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
2126 if (TYPE_PRECISION (type) == TYPE_PRECISION (intSI_type_node))
2127 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
2128 if (TYPE_PRECISION (type) == TYPE_PRECISION (intHI_type_node))
2129 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
2130 if (TYPE_PRECISION (type) == TYPE_PRECISION (intQI_type_node))
2131 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
2133 return type;
2136 /* Return the minimum number of bits needed to represent VALUE in a
2137 signed or unsigned type, UNSIGNEDP says which. */
2139 unsigned int
2140 min_precision (value, unsignedp)
2141 tree value;
2142 int unsignedp;
2144 int log;
2146 /* If the value is negative, compute its negative minus 1. The latter
2147 adjustment is because the absolute value of the largest negative value
2148 is one larger than the largest positive value. This is equivalent to
2149 a bit-wise negation, so use that operation instead. */
2151 if (tree_int_cst_sgn (value) < 0)
2152 value = fold (build1 (BIT_NOT_EXPR, TREE_TYPE (value), value));
2154 /* Return the number of bits needed, taking into account the fact
2155 that we need one more bit for a signed than unsigned type. */
2157 if (integer_zerop (value))
2158 log = 0;
2159 else
2160 log = tree_floor_log2 (value);
2162 return log + 1 + ! unsignedp;
2165 /* Print an error message for invalid operands to arith operation
2166 CODE. NOP_EXPR is used as a special case (see
2167 c_common_truthvalue_conversion). */
2169 void
2170 binary_op_error (code)
2171 enum tree_code code;
2173 const char *opname;
2175 switch (code)
2177 case NOP_EXPR:
2178 error ("invalid truth-value expression");
2179 return;
2181 case PLUS_EXPR:
2182 opname = "+"; break;
2183 case MINUS_EXPR:
2184 opname = "-"; break;
2185 case MULT_EXPR:
2186 opname = "*"; break;
2187 case MAX_EXPR:
2188 opname = "max"; break;
2189 case MIN_EXPR:
2190 opname = "min"; break;
2191 case EQ_EXPR:
2192 opname = "=="; break;
2193 case NE_EXPR:
2194 opname = "!="; break;
2195 case LE_EXPR:
2196 opname = "<="; break;
2197 case GE_EXPR:
2198 opname = ">="; break;
2199 case LT_EXPR:
2200 opname = "<"; break;
2201 case GT_EXPR:
2202 opname = ">"; break;
2203 case LSHIFT_EXPR:
2204 opname = "<<"; break;
2205 case RSHIFT_EXPR:
2206 opname = ">>"; break;
2207 case TRUNC_MOD_EXPR:
2208 case FLOOR_MOD_EXPR:
2209 opname = "%"; break;
2210 case TRUNC_DIV_EXPR:
2211 case FLOOR_DIV_EXPR:
2212 opname = "/"; break;
2213 case BIT_AND_EXPR:
2214 opname = "&"; break;
2215 case BIT_IOR_EXPR:
2216 opname = "|"; break;
2217 case TRUTH_ANDIF_EXPR:
2218 opname = "&&"; break;
2219 case TRUTH_ORIF_EXPR:
2220 opname = "||"; break;
2221 case BIT_XOR_EXPR:
2222 opname = "^"; break;
2223 case LROTATE_EXPR:
2224 case RROTATE_EXPR:
2225 opname = "rotate"; break;
2226 default:
2227 opname = "unknown"; break;
2229 error ("invalid operands to binary %s", opname);
2232 /* Subroutine of build_binary_op, used for comparison operations.
2233 See if the operands have both been converted from subword integer types
2234 and, if so, perhaps change them both back to their original type.
2235 This function is also responsible for converting the two operands
2236 to the proper common type for comparison.
2238 The arguments of this function are all pointers to local variables
2239 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
2240 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
2242 If this function returns nonzero, it means that the comparison has
2243 a constant value. What this function returns is an expression for
2244 that value. */
2246 tree
2247 shorten_compare (op0_ptr, op1_ptr, restype_ptr, rescode_ptr)
2248 tree *op0_ptr, *op1_ptr;
2249 tree *restype_ptr;
2250 enum tree_code *rescode_ptr;
2252 tree type;
2253 tree op0 = *op0_ptr;
2254 tree op1 = *op1_ptr;
2255 int unsignedp0, unsignedp1;
2256 int real1, real2;
2257 tree primop0, primop1;
2258 enum tree_code code = *rescode_ptr;
2260 /* Throw away any conversions to wider types
2261 already present in the operands. */
2263 primop0 = get_narrower (op0, &unsignedp0);
2264 primop1 = get_narrower (op1, &unsignedp1);
2266 /* Handle the case that OP0 does not *contain* a conversion
2267 but it *requires* conversion to FINAL_TYPE. */
2269 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
2270 unsignedp0 = TREE_UNSIGNED (TREE_TYPE (op0));
2271 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
2272 unsignedp1 = TREE_UNSIGNED (TREE_TYPE (op1));
2274 /* If one of the operands must be floated, we cannot optimize. */
2275 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
2276 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
2278 /* If first arg is constant, swap the args (changing operation
2279 so value is preserved), for canonicalization. Don't do this if
2280 the second arg is 0. */
2282 if (TREE_CONSTANT (primop0)
2283 && ! integer_zerop (primop1) && ! real_zerop (primop1))
2285 tree tem = primop0;
2286 int temi = unsignedp0;
2287 primop0 = primop1;
2288 primop1 = tem;
2289 tem = op0;
2290 op0 = op1;
2291 op1 = tem;
2292 *op0_ptr = op0;
2293 *op1_ptr = op1;
2294 unsignedp0 = unsignedp1;
2295 unsignedp1 = temi;
2296 temi = real1;
2297 real1 = real2;
2298 real2 = temi;
2300 switch (code)
2302 case LT_EXPR:
2303 code = GT_EXPR;
2304 break;
2305 case GT_EXPR:
2306 code = LT_EXPR;
2307 break;
2308 case LE_EXPR:
2309 code = GE_EXPR;
2310 break;
2311 case GE_EXPR:
2312 code = LE_EXPR;
2313 break;
2314 default:
2315 break;
2317 *rescode_ptr = code;
2320 /* If comparing an integer against a constant more bits wide,
2321 maybe we can deduce a value of 1 or 0 independent of the data.
2322 Or else truncate the constant now
2323 rather than extend the variable at run time.
2325 This is only interesting if the constant is the wider arg.
2326 Also, it is not safe if the constant is unsigned and the
2327 variable arg is signed, since in this case the variable
2328 would be sign-extended and then regarded as unsigned.
2329 Our technique fails in this case because the lowest/highest
2330 possible unsigned results don't follow naturally from the
2331 lowest/highest possible values of the variable operand.
2332 For just EQ_EXPR and NE_EXPR there is another technique that
2333 could be used: see if the constant can be faithfully represented
2334 in the other operand's type, by truncating it and reextending it
2335 and see if that preserves the constant's value. */
2337 if (!real1 && !real2
2338 && TREE_CODE (primop1) == INTEGER_CST
2339 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
2341 int min_gt, max_gt, min_lt, max_lt;
2342 tree maxval, minval;
2343 /* 1 if comparison is nominally unsigned. */
2344 int unsignedp = TREE_UNSIGNED (*restype_ptr);
2345 tree val;
2347 type = c_common_signed_or_unsigned_type (unsignedp0,
2348 TREE_TYPE (primop0));
2350 /* If TYPE is an enumeration, then we need to get its min/max
2351 values from it's underlying integral type, not the enumerated
2352 type itself. */
2353 if (TREE_CODE (type) == ENUMERAL_TYPE)
2354 type = c_common_type_for_size (TYPE_PRECISION (type), unsignedp0);
2356 maxval = TYPE_MAX_VALUE (type);
2357 minval = TYPE_MIN_VALUE (type);
2359 if (unsignedp && !unsignedp0)
2360 *restype_ptr = c_common_signed_type (*restype_ptr);
2362 if (TREE_TYPE (primop1) != *restype_ptr)
2363 primop1 = convert (*restype_ptr, primop1);
2364 if (type != *restype_ptr)
2366 minval = convert (*restype_ptr, minval);
2367 maxval = convert (*restype_ptr, maxval);
2370 if (unsignedp && unsignedp0)
2372 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
2373 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
2374 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
2375 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
2377 else
2379 min_gt = INT_CST_LT (primop1, minval);
2380 max_gt = INT_CST_LT (primop1, maxval);
2381 min_lt = INT_CST_LT (minval, primop1);
2382 max_lt = INT_CST_LT (maxval, primop1);
2385 val = 0;
2386 /* This used to be a switch, but Genix compiler can't handle that. */
2387 if (code == NE_EXPR)
2389 if (max_lt || min_gt)
2390 val = boolean_true_node;
2392 else if (code == EQ_EXPR)
2394 if (max_lt || min_gt)
2395 val = boolean_false_node;
2397 else if (code == LT_EXPR)
2399 if (max_lt)
2400 val = boolean_true_node;
2401 if (!min_lt)
2402 val = boolean_false_node;
2404 else if (code == GT_EXPR)
2406 if (min_gt)
2407 val = boolean_true_node;
2408 if (!max_gt)
2409 val = boolean_false_node;
2411 else if (code == LE_EXPR)
2413 if (!max_gt)
2414 val = boolean_true_node;
2415 if (min_gt)
2416 val = boolean_false_node;
2418 else if (code == GE_EXPR)
2420 if (!min_lt)
2421 val = boolean_true_node;
2422 if (max_lt)
2423 val = boolean_false_node;
2426 /* If primop0 was sign-extended and unsigned comparison specd,
2427 we did a signed comparison above using the signed type bounds.
2428 But the comparison we output must be unsigned.
2430 Also, for inequalities, VAL is no good; but if the signed
2431 comparison had *any* fixed result, it follows that the
2432 unsigned comparison just tests the sign in reverse
2433 (positive values are LE, negative ones GE).
2434 So we can generate an unsigned comparison
2435 against an extreme value of the signed type. */
2437 if (unsignedp && !unsignedp0)
2439 if (val != 0)
2440 switch (code)
2442 case LT_EXPR:
2443 case GE_EXPR:
2444 primop1 = TYPE_MIN_VALUE (type);
2445 val = 0;
2446 break;
2448 case LE_EXPR:
2449 case GT_EXPR:
2450 primop1 = TYPE_MAX_VALUE (type);
2451 val = 0;
2452 break;
2454 default:
2455 break;
2457 type = c_common_unsigned_type (type);
2460 if (TREE_CODE (primop0) != INTEGER_CST)
2462 if (val == boolean_false_node)
2463 warning ("comparison is always false due to limited range of data type");
2464 if (val == boolean_true_node)
2465 warning ("comparison is always true due to limited range of data type");
2468 if (val != 0)
2470 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2471 if (TREE_SIDE_EFFECTS (primop0))
2472 return build (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
2473 return val;
2476 /* Value is not predetermined, but do the comparison
2477 in the type of the operand that is not constant.
2478 TYPE is already properly set. */
2480 else if (real1 && real2
2481 && (TYPE_PRECISION (TREE_TYPE (primop0))
2482 == TYPE_PRECISION (TREE_TYPE (primop1))))
2483 type = TREE_TYPE (primop0);
2485 /* If args' natural types are both narrower than nominal type
2486 and both extend in the same manner, compare them
2487 in the type of the wider arg.
2488 Otherwise must actually extend both to the nominal
2489 common type lest different ways of extending
2490 alter the result.
2491 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
2493 else if (unsignedp0 == unsignedp1 && real1 == real2
2494 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
2495 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
2497 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
2498 type = c_common_signed_or_unsigned_type (unsignedp0
2499 || TREE_UNSIGNED (*restype_ptr),
2500 type);
2501 /* Make sure shorter operand is extended the right way
2502 to match the longer operand. */
2503 primop0
2504 = convert (c_common_signed_or_unsigned_type (unsignedp0,
2505 TREE_TYPE (primop0)),
2506 primop0);
2507 primop1
2508 = convert (c_common_signed_or_unsigned_type (unsignedp1,
2509 TREE_TYPE (primop1)),
2510 primop1);
2512 else
2514 /* Here we must do the comparison on the nominal type
2515 using the args exactly as we received them. */
2516 type = *restype_ptr;
2517 primop0 = op0;
2518 primop1 = op1;
2520 if (!real1 && !real2 && integer_zerop (primop1)
2521 && TREE_UNSIGNED (*restype_ptr))
2523 tree value = 0;
2524 switch (code)
2526 case GE_EXPR:
2527 /* All unsigned values are >= 0, so we warn if extra warnings
2528 are requested. However, if OP0 is a constant that is
2529 >= 0, the signedness of the comparison isn't an issue,
2530 so suppress the warning. */
2531 if (extra_warnings && !in_system_header
2532 && ! (TREE_CODE (primop0) == INTEGER_CST
2533 && ! TREE_OVERFLOW (convert (c_common_signed_type (type),
2534 primop0))))
2535 warning ("comparison of unsigned expression >= 0 is always true");
2536 value = boolean_true_node;
2537 break;
2539 case LT_EXPR:
2540 if (extra_warnings && !in_system_header
2541 && ! (TREE_CODE (primop0) == INTEGER_CST
2542 && ! TREE_OVERFLOW (convert (c_common_signed_type (type),
2543 primop0))))
2544 warning ("comparison of unsigned expression < 0 is always false");
2545 value = boolean_false_node;
2546 break;
2548 default:
2549 break;
2552 if (value != 0)
2554 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2555 if (TREE_SIDE_EFFECTS (primop0))
2556 return build (COMPOUND_EXPR, TREE_TYPE (value),
2557 primop0, value);
2558 return value;
2563 *op0_ptr = convert (type, primop0);
2564 *op1_ptr = convert (type, primop1);
2566 *restype_ptr = boolean_type_node;
2568 return 0;
2571 /* Return a tree for the sum or difference (RESULTCODE says which)
2572 of pointer PTROP and integer INTOP. */
2574 tree
2575 pointer_int_sum (resultcode, ptrop, intop)
2576 enum tree_code resultcode;
2577 tree ptrop, intop;
2579 tree size_exp;
2581 tree result;
2582 tree folded;
2584 /* The result is a pointer of the same type that is being added. */
2586 tree result_type = TREE_TYPE (ptrop);
2588 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
2590 if (pedantic || warn_pointer_arith)
2591 pedwarn ("pointer of type `void *' used in arithmetic");
2592 size_exp = integer_one_node;
2594 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
2596 if (pedantic || warn_pointer_arith)
2597 pedwarn ("pointer to a function used in arithmetic");
2598 size_exp = integer_one_node;
2600 else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
2602 if (pedantic || warn_pointer_arith)
2603 pedwarn ("pointer to member function used in arithmetic");
2604 size_exp = integer_one_node;
2606 else if (TREE_CODE (TREE_TYPE (result_type)) == OFFSET_TYPE)
2608 if (pedantic || warn_pointer_arith)
2609 pedwarn ("pointer to a member used in arithmetic");
2610 size_exp = integer_one_node;
2612 else
2613 size_exp = size_in_bytes (TREE_TYPE (result_type));
2615 /* If what we are about to multiply by the size of the elements
2616 contains a constant term, apply distributive law
2617 and multiply that constant term separately.
2618 This helps produce common subexpressions. */
2620 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
2621 && ! TREE_CONSTANT (intop)
2622 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
2623 && TREE_CONSTANT (size_exp)
2624 /* If the constant comes from pointer subtraction,
2625 skip this optimization--it would cause an error. */
2626 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
2627 /* If the constant is unsigned, and smaller than the pointer size,
2628 then we must skip this optimization. This is because it could cause
2629 an overflow error if the constant is negative but INTOP is not. */
2630 && (! TREE_UNSIGNED (TREE_TYPE (intop))
2631 || (TYPE_PRECISION (TREE_TYPE (intop))
2632 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
2634 enum tree_code subcode = resultcode;
2635 tree int_type = TREE_TYPE (intop);
2636 if (TREE_CODE (intop) == MINUS_EXPR)
2637 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2638 /* Convert both subexpression types to the type of intop,
2639 because weird cases involving pointer arithmetic
2640 can result in a sum or difference with different type args. */
2641 ptrop = build_binary_op (subcode, ptrop,
2642 convert (int_type, TREE_OPERAND (intop, 1)), 1);
2643 intop = convert (int_type, TREE_OPERAND (intop, 0));
2646 /* Convert the integer argument to a type the same size as sizetype
2647 so the multiply won't overflow spuriously. */
2649 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
2650 || TREE_UNSIGNED (TREE_TYPE (intop)) != TREE_UNSIGNED (sizetype))
2651 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
2652 TREE_UNSIGNED (sizetype)), intop);
2654 /* Replace the integer argument with a suitable product by the object size.
2655 Do this multiplication as signed, then convert to the appropriate
2656 pointer type (actually unsigned integral). */
2658 intop = convert (result_type,
2659 build_binary_op (MULT_EXPR, intop,
2660 convert (TREE_TYPE (intop), size_exp), 1));
2662 /* Create the sum or difference. */
2664 result = build (resultcode, result_type, ptrop, intop);
2666 folded = fold (result);
2667 if (folded == result)
2668 TREE_CONSTANT (folded) = TREE_CONSTANT (ptrop) & TREE_CONSTANT (intop);
2669 return folded;
2672 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
2673 or validate its data type for an `if' or `while' statement or ?..: exp.
2675 This preparation consists of taking the ordinary
2676 representation of an expression expr and producing a valid tree
2677 boolean expression describing whether expr is nonzero. We could
2678 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
2679 but we optimize comparisons, &&, ||, and !.
2681 The resulting type should always be `boolean_type_node'. */
2683 tree
2684 c_common_truthvalue_conversion (expr)
2685 tree expr;
2687 if (TREE_CODE (expr) == ERROR_MARK)
2688 return expr;
2690 #if 0 /* This appears to be wrong for C++. */
2691 /* These really should return error_mark_node after 2.4 is stable.
2692 But not all callers handle ERROR_MARK properly. */
2693 switch (TREE_CODE (TREE_TYPE (expr)))
2695 case RECORD_TYPE:
2696 error ("struct type value used where scalar is required");
2697 return boolean_false_node;
2699 case UNION_TYPE:
2700 error ("union type value used where scalar is required");
2701 return boolean_false_node;
2703 case ARRAY_TYPE:
2704 error ("array type value used where scalar is required");
2705 return boolean_false_node;
2707 default:
2708 break;
2710 #endif /* 0 */
2712 switch (TREE_CODE (expr))
2714 case EQ_EXPR:
2715 case NE_EXPR: case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2716 case TRUTH_ANDIF_EXPR:
2717 case TRUTH_ORIF_EXPR:
2718 case TRUTH_AND_EXPR:
2719 case TRUTH_OR_EXPR:
2720 case TRUTH_XOR_EXPR:
2721 case TRUTH_NOT_EXPR:
2722 TREE_TYPE (expr) = boolean_type_node;
2723 return expr;
2725 case ERROR_MARK:
2726 return expr;
2728 case INTEGER_CST:
2729 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
2731 case REAL_CST:
2732 return real_zerop (expr) ? boolean_false_node : boolean_true_node;
2734 case ADDR_EXPR:
2735 /* If we are taking the address of an external decl, it might be zero
2736 if it is weak, so we cannot optimize. */
2737 if (DECL_P (TREE_OPERAND (expr, 0))
2738 && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
2739 break;
2741 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 0)))
2742 return build (COMPOUND_EXPR, boolean_type_node,
2743 TREE_OPERAND (expr, 0), boolean_true_node);
2744 else
2745 return boolean_true_node;
2747 case COMPLEX_EXPR:
2748 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
2749 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2750 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)),
2751 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2754 case NEGATE_EXPR:
2755 case ABS_EXPR:
2756 case FLOAT_EXPR:
2757 case FFS_EXPR:
2758 /* These don't change whether an object is non-zero or zero. */
2759 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2761 case LROTATE_EXPR:
2762 case RROTATE_EXPR:
2763 /* These don't change whether an object is zero or non-zero, but
2764 we can't ignore them if their second arg has side-effects. */
2765 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2766 return build (COMPOUND_EXPR, boolean_type_node, TREE_OPERAND (expr, 1),
2767 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)));
2768 else
2769 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2771 case COND_EXPR:
2772 /* Distribute the conversion into the arms of a COND_EXPR. */
2773 return fold (build (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
2774 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2775 c_common_truthvalue_conversion (TREE_OPERAND (expr, 2))));
2777 case CONVERT_EXPR:
2778 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
2779 since that affects how `default_conversion' will behave. */
2780 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
2781 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2782 break;
2783 /* fall through... */
2784 case NOP_EXPR:
2785 /* If this is widening the argument, we can ignore it. */
2786 if (TYPE_PRECISION (TREE_TYPE (expr))
2787 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2788 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
2789 break;
2791 case MINUS_EXPR:
2792 /* Perhaps reduce (x - y) != 0 to (x != y). The expressions
2793 aren't guaranteed to the be same for modes that can represent
2794 infinity, since if x and y are both +infinity, or both
2795 -infinity, then x - y is not a number.
2797 Note that this transformation is safe when x or y is NaN.
2798 (x - y) is then NaN, and both (x - y) != 0 and x != y will
2799 be false. */
2800 if (HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (TREE_OPERAND (expr, 0)))))
2801 break;
2802 /* fall through... */
2803 case BIT_XOR_EXPR:
2804 /* This and MINUS_EXPR can be changed into a comparison of the
2805 two objects. */
2806 if (TREE_TYPE (TREE_OPERAND (expr, 0))
2807 == TREE_TYPE (TREE_OPERAND (expr, 1)))
2808 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2809 TREE_OPERAND (expr, 1), 1);
2810 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2811 fold (build1 (NOP_EXPR,
2812 TREE_TYPE (TREE_OPERAND (expr, 0)),
2813 TREE_OPERAND (expr, 1))), 1);
2815 case BIT_AND_EXPR:
2816 if (integer_onep (TREE_OPERAND (expr, 1))
2817 && TREE_TYPE (expr) != boolean_type_node)
2818 /* Using convert here would cause infinite recursion. */
2819 return build1 (NOP_EXPR, boolean_type_node, expr);
2820 break;
2822 case MODIFY_EXPR:
2823 if (warn_parentheses && C_EXP_ORIGINAL_CODE (expr) == MODIFY_EXPR)
2824 warning ("suggest parentheses around assignment used as truth value");
2825 break;
2827 default:
2828 break;
2831 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
2833 tree t = save_expr (expr);
2834 return (build_binary_op
2835 ((TREE_SIDE_EFFECTS (expr)
2836 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2837 c_common_truthvalue_conversion (build_unary_op (REALPART_EXPR, t, 0)),
2838 c_common_truthvalue_conversion (build_unary_op (IMAGPART_EXPR, t, 0)),
2839 0));
2842 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2845 static tree builtin_function_2 PARAMS ((const char *, const char *, tree, tree,
2846 int, enum built_in_class, int, int,
2847 tree));
2849 /* Make a variant type in the proper way for C/C++, propagating qualifiers
2850 down to the element type of an array. */
2852 tree
2853 c_build_qualified_type (type, type_quals)
2854 tree type;
2855 int type_quals;
2857 /* A restrict-qualified pointer type must be a pointer to object or
2858 incomplete type. Note that the use of POINTER_TYPE_P also allows
2859 REFERENCE_TYPEs, which is appropriate for C++. Unfortunately,
2860 the C++ front-end also use POINTER_TYPE for pointer-to-member
2861 values, so even though it should be illegal to use `restrict'
2862 with such an entity we don't flag that here. Thus, special case
2863 code for that case is required in the C++ front-end. */
2864 if ((type_quals & TYPE_QUAL_RESTRICT)
2865 && (!POINTER_TYPE_P (type)
2866 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
2868 error ("invalid use of `restrict'");
2869 type_quals &= ~TYPE_QUAL_RESTRICT;
2872 if (TREE_CODE (type) == ARRAY_TYPE)
2873 return build_array_type (c_build_qualified_type (TREE_TYPE (type),
2874 type_quals),
2875 TYPE_DOMAIN (type));
2876 return build_qualified_type (type, type_quals);
2879 /* Apply the TYPE_QUALS to the new DECL. */
2881 void
2882 c_apply_type_quals_to_decl (type_quals, decl)
2883 int type_quals;
2884 tree decl;
2886 if ((type_quals & TYPE_QUAL_CONST)
2887 || (TREE_TYPE (decl)
2888 && TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE))
2889 TREE_READONLY (decl) = 1;
2890 if (type_quals & TYPE_QUAL_VOLATILE)
2892 TREE_SIDE_EFFECTS (decl) = 1;
2893 TREE_THIS_VOLATILE (decl) = 1;
2895 if (type_quals & TYPE_QUAL_RESTRICT)
2897 if (!TREE_TYPE (decl)
2898 || !POINTER_TYPE_P (TREE_TYPE (decl))
2899 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (TREE_TYPE (decl))))
2900 error ("invalid use of `restrict'");
2901 else if (flag_strict_aliasing)
2902 /* Indicate we need to make a unique alias set for this pointer.
2903 We can't do it here because it might be pointing to an
2904 incomplete type. */
2905 DECL_POINTER_ALIAS_SET (decl) = -2;
2909 /* Return the typed-based alias set for T, which may be an expression
2910 or a type. Return -1 if we don't do anything special. */
2912 HOST_WIDE_INT
2913 c_common_get_alias_set (t)
2914 tree t;
2916 tree u;
2918 /* Permit type-punning when accessing a union, provided the access
2919 is directly through the union. For example, this code does not
2920 permit taking the address of a union member and then storing
2921 through it. Even the type-punning allowed here is a GCC
2922 extension, albeit a common and useful one; the C standard says
2923 that such accesses have implementation-defined behavior. */
2924 for (u = t;
2925 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
2926 u = TREE_OPERAND (u, 0))
2927 if (TREE_CODE (u) == COMPONENT_REF
2928 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
2929 return 0;
2931 /* That's all the expressions we handle specially. */
2932 if (! TYPE_P (t))
2933 return -1;
2935 /* The C standard guarantess that any object may be accessed via an
2936 lvalue that has character type. */
2937 if (t == char_type_node
2938 || t == signed_char_type_node
2939 || t == unsigned_char_type_node)
2940 return 0;
2942 /* If it has the may_alias attribute, it can alias anything. */
2943 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (t)))
2944 return 0;
2946 /* The C standard specifically allows aliasing between signed and
2947 unsigned variants of the same type. We treat the signed
2948 variant as canonical. */
2949 if (TREE_CODE (t) == INTEGER_TYPE && TREE_UNSIGNED (t))
2951 tree t1 = c_common_signed_type (t);
2953 /* t1 == t can happen for boolean nodes which are always unsigned. */
2954 if (t1 != t)
2955 return get_alias_set (t1);
2957 else if (POINTER_TYPE_P (t))
2959 tree t1;
2961 /* Unfortunately, there is no canonical form of a pointer type.
2962 In particular, if we have `typedef int I', then `int *', and
2963 `I *' are different types. So, we have to pick a canonical
2964 representative. We do this below.
2966 Technically, this approach is actually more conservative that
2967 it needs to be. In particular, `const int *' and `int *'
2968 should be in different alias sets, according to the C and C++
2969 standard, since their types are not the same, and so,
2970 technically, an `int **' and `const int **' cannot point at
2971 the same thing.
2973 But, the standard is wrong. In particular, this code is
2974 legal C++:
2976 int *ip;
2977 int **ipp = &ip;
2978 const int* const* cipp = &ipp;
2980 And, it doesn't make sense for that to be legal unless you
2981 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
2982 the pointed-to types. This issue has been reported to the
2983 C++ committee. */
2984 t1 = build_type_no_quals (t);
2985 if (t1 != t)
2986 return get_alias_set (t1);
2989 return -1;
2992 /* Compute the value of 'sizeof (TYPE)' or '__alignof__ (TYPE)', where the
2993 second parameter indicates which OPERATOR is being applied. The COMPLAIN
2994 flag controls whether we should diagnose possibly ill-formed
2995 constructs or not. */
2996 tree
2997 c_sizeof_or_alignof_type (type, op, complain)
2998 tree type;
2999 enum tree_code op;
3000 int complain;
3002 const char *op_name;
3003 tree value = NULL;
3004 enum tree_code type_code = TREE_CODE (type);
3006 my_friendly_assert (op == SIZEOF_EXPR || op == ALIGNOF_EXPR, 20020720);
3007 op_name = op == SIZEOF_EXPR ? "sizeof" : "__alignof__";
3009 if (type_code == FUNCTION_TYPE)
3011 if (op == SIZEOF_EXPR)
3013 if (complain && (pedantic || warn_pointer_arith))
3014 pedwarn ("invalid application of `sizeof' to a function type");
3015 value = size_one_node;
3017 else
3018 value = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
3020 else if (type_code == VOID_TYPE || type_code == ERROR_MARK)
3022 if (type_code == VOID_TYPE
3023 && complain && (pedantic || warn_pointer_arith))
3024 pedwarn ("invalid application of `%s' to a void type", op_name);
3025 value = size_one_node;
3027 else if (!COMPLETE_TYPE_P (type))
3029 if (complain)
3030 error ("invalid application of `%s' to an incomplete type", op_name);
3031 value = size_zero_node;
3033 else
3035 if (op == SIZEOF_EXPR)
3036 /* Convert in case a char is more than one unit. */
3037 value = size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
3038 size_int (TYPE_PRECISION (char_type_node)
3039 / BITS_PER_UNIT));
3040 else
3041 value = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
3044 /* VALUE will have an integer type with TYPE_IS_SIZETYPE set.
3045 TYPE_IS_SIZETYPE means that certain things (like overflow) will
3046 never happen. However, this node should really have type
3047 `size_t', which is just a typedef for an ordinary integer type. */
3048 value = fold (build1 (NOP_EXPR, c_size_type_node, value));
3049 my_friendly_assert (!TYPE_IS_SIZETYPE (TREE_TYPE (value)), 20001021);
3051 return value;
3054 /* Implement the __alignof keyword: Return the minimum required
3055 alignment of EXPR, measured in bytes. For VAR_DECL's and
3056 FIELD_DECL's return DECL_ALIGN (which can be set from an
3057 "aligned" __attribute__ specification). */
3059 tree
3060 c_alignof_expr (expr)
3061 tree expr;
3063 tree t;
3065 if (TREE_CODE (expr) == VAR_DECL)
3066 t = size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
3068 else if (TREE_CODE (expr) == COMPONENT_REF
3069 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
3071 error ("`__alignof' applied to a bit-field");
3072 t = size_one_node;
3074 else if (TREE_CODE (expr) == COMPONENT_REF
3075 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
3076 t = size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
3078 else if (TREE_CODE (expr) == INDIRECT_REF)
3080 tree t = TREE_OPERAND (expr, 0);
3081 tree best = t;
3082 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
3084 while (TREE_CODE (t) == NOP_EXPR
3085 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
3087 int thisalign;
3089 t = TREE_OPERAND (t, 0);
3090 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
3091 if (thisalign > bestalign)
3092 best = t, bestalign = thisalign;
3094 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
3096 else
3097 return c_alignof (TREE_TYPE (expr));
3099 return fold (build1 (NOP_EXPR, c_size_type_node, t));
3102 /* Handle C and C++ default attributes. */
3104 enum built_in_attribute
3106 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
3107 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
3108 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
3109 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
3110 #define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No entry needed in enum. */
3111 #include "builtin-attrs.def"
3112 #undef DEF_ATTR_NULL_TREE
3113 #undef DEF_ATTR_INT
3114 #undef DEF_ATTR_IDENT
3115 #undef DEF_ATTR_TREE_LIST
3116 #undef DEF_FN_ATTR
3117 ATTR_LAST
3120 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
3122 static bool c_attrs_initialized = false;
3124 static void c_init_attributes PARAMS ((void));
3126 /* Build tree nodes and builtin functions common to both C and C++ language
3127 frontends. */
3129 void
3130 c_common_nodes_and_builtins ()
3132 enum builtin_type
3134 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
3135 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
3136 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
3137 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
3138 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
3139 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
3140 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
3141 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
3142 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
3143 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
3144 #include "builtin-types.def"
3145 #undef DEF_PRIMITIVE_TYPE
3146 #undef DEF_FUNCTION_TYPE_0
3147 #undef DEF_FUNCTION_TYPE_1
3148 #undef DEF_FUNCTION_TYPE_2
3149 #undef DEF_FUNCTION_TYPE_3
3150 #undef DEF_FUNCTION_TYPE_4
3151 #undef DEF_FUNCTION_TYPE_VAR_0
3152 #undef DEF_FUNCTION_TYPE_VAR_1
3153 #undef DEF_FUNCTION_TYPE_VAR_2
3154 #undef DEF_POINTER_TYPE
3155 BT_LAST
3158 typedef enum builtin_type builtin_type;
3160 tree builtin_types[(int) BT_LAST];
3161 int wchar_type_size;
3162 tree array_domain_type;
3163 tree va_list_ref_type_node;
3164 tree va_list_arg_type_node;
3166 /* Define `int' and `char' first so that dbx will output them first. */
3167 record_builtin_type (RID_INT, NULL, integer_type_node);
3168 record_builtin_type (RID_CHAR, "char", char_type_node);
3170 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
3171 "unsigned long", "long long unsigned" and "unsigned short" were in C++
3172 but not C. Are the conditionals here needed? */
3173 if (c_language == clk_cplusplus)
3174 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
3175 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
3176 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
3177 record_builtin_type (RID_MAX, "long unsigned int",
3178 long_unsigned_type_node);
3179 if (c_language == clk_cplusplus)
3180 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
3181 record_builtin_type (RID_MAX, "long long int",
3182 long_long_integer_type_node);
3183 record_builtin_type (RID_MAX, "long long unsigned int",
3184 long_long_unsigned_type_node);
3185 if (c_language == clk_cplusplus)
3186 record_builtin_type (RID_MAX, "long long unsigned",
3187 long_long_unsigned_type_node);
3188 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
3189 record_builtin_type (RID_MAX, "short unsigned int",
3190 short_unsigned_type_node);
3191 if (c_language == clk_cplusplus)
3192 record_builtin_type (RID_MAX, "unsigned short",
3193 short_unsigned_type_node);
3195 /* Define both `signed char' and `unsigned char'. */
3196 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
3197 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
3199 /* These are types that c_common_type_for_size and
3200 c_common_type_for_mode use. */
3201 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3202 intQI_type_node));
3203 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3204 intHI_type_node));
3205 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3206 intSI_type_node));
3207 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3208 intDI_type_node));
3209 #if HOST_BITS_PER_WIDE_INT >= 64
3210 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3211 get_identifier ("__int128_t"),
3212 intTI_type_node));
3213 #endif
3214 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3215 unsigned_intQI_type_node));
3216 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3217 unsigned_intHI_type_node));
3218 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3219 unsigned_intSI_type_node));
3220 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3221 unsigned_intDI_type_node));
3222 #if HOST_BITS_PER_WIDE_INT >= 64
3223 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3224 get_identifier ("__uint128_t"),
3225 unsigned_intTI_type_node));
3226 #endif
3228 /* Create the widest literal types. */
3229 widest_integer_literal_type_node
3230 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
3231 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3232 widest_integer_literal_type_node));
3234 widest_unsigned_literal_type_node
3235 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
3236 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
3237 widest_unsigned_literal_type_node));
3239 /* `unsigned long' is the standard type for sizeof.
3240 Note that stddef.h uses `unsigned long',
3241 and this must agree, even if long and int are the same size. */
3242 c_size_type_node =
3243 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
3244 signed_size_type_node = c_common_signed_type (c_size_type_node);
3245 set_sizetype (c_size_type_node);
3247 build_common_tree_nodes_2 (flag_short_double);
3249 record_builtin_type (RID_FLOAT, NULL, float_type_node);
3250 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
3251 record_builtin_type (RID_MAX, "long double", long_double_type_node);
3253 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3254 get_identifier ("complex int"),
3255 complex_integer_type_node));
3256 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3257 get_identifier ("complex float"),
3258 complex_float_type_node));
3259 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3260 get_identifier ("complex double"),
3261 complex_double_type_node));
3262 (*lang_hooks.decls.pushdecl)
3263 (build_decl (TYPE_DECL, get_identifier ("complex long double"),
3264 complex_long_double_type_node));
3266 /* Types which are common to the fortran compiler and libf2c. When
3267 changing these, you also need to be concerned with f/com.h. */
3269 if (TYPE_PRECISION (float_type_node)
3270 == TYPE_PRECISION (long_integer_type_node))
3272 g77_integer_type_node = long_integer_type_node;
3273 g77_uinteger_type_node = long_unsigned_type_node;
3275 else if (TYPE_PRECISION (float_type_node)
3276 == TYPE_PRECISION (integer_type_node))
3278 g77_integer_type_node = integer_type_node;
3279 g77_uinteger_type_node = unsigned_type_node;
3281 else
3282 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3284 if (g77_integer_type_node != NULL_TREE)
3286 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3287 get_identifier ("__g77_integer"),
3288 g77_integer_type_node));
3289 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3290 get_identifier ("__g77_uinteger"),
3291 g77_uinteger_type_node));
3294 if (TYPE_PRECISION (float_type_node) * 2
3295 == TYPE_PRECISION (long_integer_type_node))
3297 g77_longint_type_node = long_integer_type_node;
3298 g77_ulongint_type_node = long_unsigned_type_node;
3300 else if (TYPE_PRECISION (float_type_node) * 2
3301 == TYPE_PRECISION (long_long_integer_type_node))
3303 g77_longint_type_node = long_long_integer_type_node;
3304 g77_ulongint_type_node = long_long_unsigned_type_node;
3306 else
3307 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3309 if (g77_longint_type_node != NULL_TREE)
3311 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3312 get_identifier ("__g77_longint"),
3313 g77_longint_type_node));
3314 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
3315 get_identifier ("__g77_ulongint"),
3316 g77_ulongint_type_node));
3319 record_builtin_type (RID_VOID, NULL, void_type_node);
3321 void_zero_node = build_int_2 (0, 0);
3322 TREE_TYPE (void_zero_node) = void_type_node;
3324 void_list_node = build_void_list_node ();
3326 /* Make a type to be the domain of a few array types
3327 whose domains don't really matter.
3328 200 is small enough that it always fits in size_t
3329 and large enough that it can hold most function names for the
3330 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3331 array_domain_type = build_index_type (size_int (200));
3333 /* Make a type for arrays of characters.
3334 With luck nothing will ever really depend on the length of this
3335 array type. */
3336 char_array_type_node
3337 = build_array_type (char_type_node, array_domain_type);
3339 /* Likewise for arrays of ints. */
3340 int_array_type_node
3341 = build_array_type (integer_type_node, array_domain_type);
3343 string_type_node = build_pointer_type (char_type_node);
3344 const_string_type_node
3345 = build_pointer_type (build_qualified_type
3346 (char_type_node, TYPE_QUAL_CONST));
3348 (*targetm.init_builtins) ();
3350 /* This is special for C++ so functions can be overloaded. */
3351 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
3352 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
3353 wchar_type_size = TYPE_PRECISION (wchar_type_node);
3354 if (c_language == clk_cplusplus)
3356 if (TREE_UNSIGNED (wchar_type_node))
3357 wchar_type_node = make_unsigned_type (wchar_type_size);
3358 else
3359 wchar_type_node = make_signed_type (wchar_type_size);
3360 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
3362 else
3364 signed_wchar_type_node = c_common_signed_type (wchar_type_node);
3365 unsigned_wchar_type_node = c_common_unsigned_type (wchar_type_node);
3368 /* This is for wide string constants. */
3369 wchar_array_type_node
3370 = build_array_type (wchar_type_node, array_domain_type);
3372 wint_type_node =
3373 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
3375 intmax_type_node =
3376 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
3377 uintmax_type_node =
3378 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
3380 default_function_type = build_function_type (integer_type_node, NULL_TREE);
3381 ptrdiff_type_node
3382 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
3383 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
3385 (*lang_hooks.decls.pushdecl)
3386 (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
3387 va_list_type_node));
3389 (*lang_hooks.decls.pushdecl)
3390 (build_decl (TYPE_DECL, get_identifier ("__builtin_ptrdiff_t"),
3391 ptrdiff_type_node));
3393 (*lang_hooks.decls.pushdecl)
3394 (build_decl (TYPE_DECL, get_identifier ("__builtin_size_t"),
3395 sizetype));
3397 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
3399 va_list_arg_type_node = va_list_ref_type_node =
3400 build_pointer_type (TREE_TYPE (va_list_type_node));
3402 else
3404 va_list_arg_type_node = va_list_type_node;
3405 va_list_ref_type_node = build_reference_type (va_list_type_node);
3408 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
3409 builtin_types[(int) ENUM] = VALUE;
3410 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
3411 builtin_types[(int) ENUM] \
3412 = build_function_type (builtin_types[(int) RETURN], \
3413 void_list_node);
3414 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
3415 builtin_types[(int) ENUM] \
3416 = build_function_type (builtin_types[(int) RETURN], \
3417 tree_cons (NULL_TREE, \
3418 builtin_types[(int) ARG1], \
3419 void_list_node));
3420 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
3421 builtin_types[(int) ENUM] \
3422 = build_function_type \
3423 (builtin_types[(int) RETURN], \
3424 tree_cons (NULL_TREE, \
3425 builtin_types[(int) ARG1], \
3426 tree_cons (NULL_TREE, \
3427 builtin_types[(int) ARG2], \
3428 void_list_node)));
3429 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
3430 builtin_types[(int) ENUM] \
3431 = build_function_type \
3432 (builtin_types[(int) RETURN], \
3433 tree_cons (NULL_TREE, \
3434 builtin_types[(int) ARG1], \
3435 tree_cons (NULL_TREE, \
3436 builtin_types[(int) ARG2], \
3437 tree_cons (NULL_TREE, \
3438 builtin_types[(int) ARG3], \
3439 void_list_node))));
3440 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
3441 builtin_types[(int) ENUM] \
3442 = build_function_type \
3443 (builtin_types[(int) RETURN], \
3444 tree_cons (NULL_TREE, \
3445 builtin_types[(int) ARG1], \
3446 tree_cons (NULL_TREE, \
3447 builtin_types[(int) ARG2], \
3448 tree_cons \
3449 (NULL_TREE, \
3450 builtin_types[(int) ARG3], \
3451 tree_cons (NULL_TREE, \
3452 builtin_types[(int) ARG4], \
3453 void_list_node)))));
3454 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
3455 builtin_types[(int) ENUM] \
3456 = build_function_type (builtin_types[(int) RETURN], NULL_TREE);
3457 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
3458 builtin_types[(int) ENUM] \
3459 = build_function_type (builtin_types[(int) RETURN], \
3460 tree_cons (NULL_TREE, \
3461 builtin_types[(int) ARG1], \
3462 NULL_TREE));
3464 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
3465 builtin_types[(int) ENUM] \
3466 = build_function_type \
3467 (builtin_types[(int) RETURN], \
3468 tree_cons (NULL_TREE, \
3469 builtin_types[(int) ARG1], \
3470 tree_cons (NULL_TREE, \
3471 builtin_types[(int) ARG2], \
3472 NULL_TREE)));
3473 #define DEF_POINTER_TYPE(ENUM, TYPE) \
3474 builtin_types[(int) ENUM] \
3475 = build_pointer_type (builtin_types[(int) TYPE]);
3476 #include "builtin-types.def"
3477 #undef DEF_PRIMITIVE_TYPE
3478 #undef DEF_FUNCTION_TYPE_1
3479 #undef DEF_FUNCTION_TYPE_2
3480 #undef DEF_FUNCTION_TYPE_3
3481 #undef DEF_FUNCTION_TYPE_4
3482 #undef DEF_FUNCTION_TYPE_VAR_0
3483 #undef DEF_FUNCTION_TYPE_VAR_1
3484 #undef DEF_POINTER_TYPE
3486 if (!c_attrs_initialized)
3487 c_init_attributes ();
3489 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, \
3490 BOTH_P, FALLBACK_P, NONANSI_P, ATTRS) \
3491 if (NAME) \
3493 tree decl; \
3495 if (strncmp (NAME, "__builtin_", strlen ("__builtin_")) != 0) \
3496 abort (); \
3498 if (!BOTH_P) \
3499 decl = builtin_function (NAME, builtin_types[TYPE], ENUM, \
3500 CLASS, \
3501 (FALLBACK_P \
3502 ? (NAME + strlen ("__builtin_")) \
3503 : NULL), \
3504 built_in_attributes[(int) ATTRS]); \
3505 else \
3506 decl = builtin_function_2 (NAME, \
3507 NAME + strlen ("__builtin_"), \
3508 builtin_types[TYPE], \
3509 builtin_types[LIBTYPE], \
3510 ENUM, \
3511 CLASS, \
3512 FALLBACK_P, \
3513 NONANSI_P, \
3514 built_in_attributes[(int) ATTRS]); \
3516 built_in_decls[(int) ENUM] = decl; \
3518 #include "builtins.def"
3519 #undef DEF_BUILTIN
3521 main_identifier_node = get_identifier ("main");
3524 tree
3525 build_va_arg (expr, type)
3526 tree expr, type;
3528 return build1 (VA_ARG_EXPR, type, expr);
3532 /* Linked list of disabled built-in functions. */
3534 typedef struct disabled_builtin
3536 const char *name;
3537 struct disabled_builtin *next;
3538 } disabled_builtin;
3539 static disabled_builtin *disabled_builtins = NULL;
3541 static bool builtin_function_disabled_p PARAMS ((const char *));
3543 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
3544 begins with "__builtin_", give an error. */
3546 void
3547 disable_builtin_function (name)
3548 const char *name;
3550 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
3551 error ("cannot disable built-in function `%s'", name);
3552 else
3554 disabled_builtin *new = xmalloc (sizeof (disabled_builtin));
3555 new->name = name;
3556 new->next = disabled_builtins;
3557 disabled_builtins = new;
3562 /* Return true if the built-in function NAME has been disabled, false
3563 otherwise. */
3565 static bool
3566 builtin_function_disabled_p (name)
3567 const char *name;
3569 disabled_builtin *p;
3570 for (p = disabled_builtins; p != NULL; p = p->next)
3572 if (strcmp (name, p->name) == 0)
3573 return true;
3575 return false;
3579 /* Possibly define a builtin function with one or two names. BUILTIN_NAME
3580 is an __builtin_-prefixed name; NAME is the ordinary name; one or both
3581 of these may be NULL (though both being NULL is useless).
3582 BUILTIN_TYPE is the type of the __builtin_-prefixed function;
3583 TYPE is the type of the function with the ordinary name. These
3584 may differ if the ordinary name is declared with a looser type to avoid
3585 conflicts with headers. FUNCTION_CODE and CLASS are as for
3586 builtin_function. If LIBRARY_NAME_P is nonzero, NAME is passed as
3587 the LIBRARY_NAME parameter to builtin_function when declaring BUILTIN_NAME.
3588 If NONANSI_P is nonzero, the name NAME is treated as a non-ANSI name;
3589 ATTRS is the tree list representing the builtin's function attributes.
3590 Returns the declaration of BUILTIN_NAME, if any, otherwise
3591 the declaration of NAME. Does not declare NAME if flag_no_builtin,
3592 or if NONANSI_P and flag_no_nonansi_builtin. */
3594 static tree
3595 builtin_function_2 (builtin_name, name, builtin_type, type, function_code,
3596 class, library_name_p, nonansi_p, attrs)
3597 const char *builtin_name;
3598 const char *name;
3599 tree builtin_type;
3600 tree type;
3601 int function_code;
3602 enum built_in_class class;
3603 int library_name_p;
3604 int nonansi_p;
3605 tree attrs;
3607 tree bdecl = NULL_TREE;
3608 tree decl = NULL_TREE;
3609 if (builtin_name != 0)
3611 bdecl = builtin_function (builtin_name, builtin_type, function_code,
3612 class, library_name_p ? name : NULL,
3613 attrs);
3615 if (name != 0 && !flag_no_builtin && !builtin_function_disabled_p (name)
3616 && !(nonansi_p && flag_no_nonansi_builtin))
3618 decl = builtin_function (name, type, function_code, class, NULL,
3619 attrs);
3620 if (nonansi_p)
3621 DECL_BUILT_IN_NONANSI (decl) = 1;
3623 return (bdecl != 0 ? bdecl : decl);
3626 /* Nonzero if the type T promotes to int. This is (nearly) the
3627 integral promotions defined in ISO C99 6.3.1.1/2. */
3629 bool
3630 c_promoting_integer_type_p (t)
3631 tree t;
3633 switch (TREE_CODE (t))
3635 case INTEGER_TYPE:
3636 return (TYPE_MAIN_VARIANT (t) == char_type_node
3637 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
3638 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
3639 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
3640 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
3641 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
3643 case ENUMERAL_TYPE:
3644 /* ??? Technically all enumerations not larger than an int
3645 promote to an int. But this is used along code paths
3646 that only want to notice a size change. */
3647 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
3649 case BOOLEAN_TYPE:
3650 return 1;
3652 default:
3653 return 0;
3657 /* Return 1 if PARMS specifies a fixed number of parameters
3658 and none of their types is affected by default promotions. */
3661 self_promoting_args_p (parms)
3662 tree parms;
3664 tree t;
3665 for (t = parms; t; t = TREE_CHAIN (t))
3667 tree type = TREE_VALUE (t);
3669 if (TREE_CHAIN (t) == 0 && type != void_type_node)
3670 return 0;
3672 if (type == 0)
3673 return 0;
3675 if (TYPE_MAIN_VARIANT (type) == float_type_node)
3676 return 0;
3678 if (c_promoting_integer_type_p (type))
3679 return 0;
3681 return 1;
3684 /* Recursively examines the array elements of TYPE, until a non-array
3685 element type is found. */
3687 tree
3688 strip_array_types (type)
3689 tree type;
3691 while (TREE_CODE (type) == ARRAY_TYPE)
3692 type = TREE_TYPE (type);
3694 return type;
3697 static tree expand_unordered_cmp PARAMS ((tree, tree, enum tree_code,
3698 enum tree_code));
3700 /* Expand a call to an unordered comparison function such as
3701 __builtin_isgreater(). FUNCTION is the function's declaration and
3702 PARAMS a list of the values passed. For __builtin_isunordered(),
3703 UNORDERED_CODE is UNORDERED_EXPR and ORDERED_CODE is NOP_EXPR. In
3704 other cases, UNORDERED_CODE and ORDERED_CODE are comparison codes
3705 that give the opposite of the desired result. UNORDERED_CODE is
3706 used for modes that can hold NaNs and ORDERED_CODE is used for the
3707 rest. */
3709 static tree
3710 expand_unordered_cmp (function, params, unordered_code, ordered_code)
3711 tree function, params;
3712 enum tree_code unordered_code, ordered_code;
3714 tree arg0, arg1, type;
3715 enum tree_code code0, code1;
3717 /* Check that we have exactly two arguments. */
3718 if (params == 0 || TREE_CHAIN (params) == 0)
3720 error ("too few arguments to function `%s'",
3721 IDENTIFIER_POINTER (DECL_NAME (function)));
3722 return error_mark_node;
3724 else if (TREE_CHAIN (TREE_CHAIN (params)) != 0)
3726 error ("too many arguments to function `%s'",
3727 IDENTIFIER_POINTER (DECL_NAME (function)));
3728 return error_mark_node;
3731 arg0 = TREE_VALUE (params);
3732 arg1 = TREE_VALUE (TREE_CHAIN (params));
3734 code0 = TREE_CODE (TREE_TYPE (arg0));
3735 code1 = TREE_CODE (TREE_TYPE (arg1));
3737 /* Make sure that the arguments have a common type of REAL. */
3738 type = 0;
3739 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3740 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3741 type = common_type (TREE_TYPE (arg0), TREE_TYPE (arg1));
3743 if (type == 0 || TREE_CODE (type) != REAL_TYPE)
3745 error ("non-floating-point argument to function `%s'",
3746 IDENTIFIER_POINTER (DECL_NAME (function)));
3747 return error_mark_node;
3750 if (unordered_code == UNORDERED_EXPR)
3752 if (MODE_HAS_NANS (TYPE_MODE (type)))
3753 return build_binary_op (unordered_code,
3754 convert (type, arg0),
3755 convert (type, arg1),
3757 else
3758 return integer_zero_node;
3761 return build_unary_op (TRUTH_NOT_EXPR,
3762 build_binary_op (MODE_HAS_NANS (TYPE_MODE (type))
3763 ? unordered_code
3764 : ordered_code,
3765 convert (type, arg0),
3766 convert (type, arg1),
3772 /* Recognize certain built-in functions so we can make tree-codes
3773 other than CALL_EXPR. We do this when it enables fold-const.c
3774 to do something useful. */
3775 /* ??? By rights this should go in builtins.c, but only C and C++
3776 implement build_{binary,unary}_op. Not exactly sure what bits
3777 of functionality are actually needed from those functions, or
3778 where the similar functionality exists in the other front ends. */
3780 tree
3781 expand_tree_builtin (function, params, coerced_params)
3782 tree function, params, coerced_params;
3784 if (DECL_BUILT_IN_CLASS (function) != BUILT_IN_NORMAL)
3785 return NULL_TREE;
3787 switch (DECL_FUNCTION_CODE (function))
3789 case BUILT_IN_ABS:
3790 case BUILT_IN_LABS:
3791 case BUILT_IN_LLABS:
3792 case BUILT_IN_IMAXABS:
3793 case BUILT_IN_FABS:
3794 case BUILT_IN_FABSL:
3795 case BUILT_IN_FABSF:
3796 if (coerced_params == 0)
3797 return integer_zero_node;
3798 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
3800 case BUILT_IN_CONJ:
3801 case BUILT_IN_CONJF:
3802 case BUILT_IN_CONJL:
3803 if (coerced_params == 0)
3804 return integer_zero_node;
3805 return build_unary_op (CONJ_EXPR, TREE_VALUE (coerced_params), 0);
3807 case BUILT_IN_CREAL:
3808 case BUILT_IN_CREALF:
3809 case BUILT_IN_CREALL:
3810 if (coerced_params == 0)
3811 return integer_zero_node;
3812 return build_unary_op (REALPART_EXPR, TREE_VALUE (coerced_params), 0);
3814 case BUILT_IN_CIMAG:
3815 case BUILT_IN_CIMAGF:
3816 case BUILT_IN_CIMAGL:
3817 if (coerced_params == 0)
3818 return integer_zero_node;
3819 return build_unary_op (IMAGPART_EXPR, TREE_VALUE (coerced_params), 0);
3821 case BUILT_IN_ISGREATER:
3822 return expand_unordered_cmp (function, params, UNLE_EXPR, LE_EXPR);
3824 case BUILT_IN_ISGREATEREQUAL:
3825 return expand_unordered_cmp (function, params, UNLT_EXPR, LT_EXPR);
3827 case BUILT_IN_ISLESS:
3828 return expand_unordered_cmp (function, params, UNGE_EXPR, GE_EXPR);
3830 case BUILT_IN_ISLESSEQUAL:
3831 return expand_unordered_cmp (function, params, UNGT_EXPR, GT_EXPR);
3833 case BUILT_IN_ISLESSGREATER:
3834 return expand_unordered_cmp (function, params, UNEQ_EXPR, EQ_EXPR);
3836 case BUILT_IN_ISUNORDERED:
3837 return expand_unordered_cmp (function, params, UNORDERED_EXPR, NOP_EXPR);
3839 default:
3840 break;
3843 return NULL_TREE;
3846 /* Returns non-zero if CODE is the code for a statement. */
3849 statement_code_p (code)
3850 enum tree_code code;
3852 switch (code)
3854 case CLEANUP_STMT:
3855 case EXPR_STMT:
3856 case COMPOUND_STMT:
3857 case DECL_STMT:
3858 case IF_STMT:
3859 case FOR_STMT:
3860 case WHILE_STMT:
3861 case DO_STMT:
3862 case RETURN_STMT:
3863 case BREAK_STMT:
3864 case CONTINUE_STMT:
3865 case SCOPE_STMT:
3866 case SWITCH_STMT:
3867 case GOTO_STMT:
3868 case LABEL_STMT:
3869 case ASM_STMT:
3870 case FILE_STMT:
3871 case CASE_LABEL:
3872 return 1;
3874 default:
3875 if (lang_statement_code_p)
3876 return (*lang_statement_code_p) (code);
3877 return 0;
3881 /* Walk the statement tree, rooted at *tp. Apply FUNC to all the
3882 sub-trees of *TP in a pre-order traversal. FUNC is called with the
3883 DATA and the address of each sub-tree. If FUNC returns a non-NULL
3884 value, the traversal is aborted, and the value returned by FUNC is
3885 returned. If FUNC sets WALK_SUBTREES to zero, then the subtrees of
3886 the node being visited are not walked.
3888 We don't need a without_duplicates variant of this one because the
3889 statement tree is a tree, not a graph. */
3891 tree
3892 walk_stmt_tree (tp, func, data)
3893 tree *tp;
3894 walk_tree_fn func;
3895 void *data;
3897 enum tree_code code;
3898 int walk_subtrees;
3899 tree result;
3900 int i, len;
3902 #define WALK_SUBTREE(NODE) \
3903 do \
3905 result = walk_stmt_tree (&(NODE), func, data); \
3906 if (result) \
3907 return result; \
3909 while (0)
3911 /* Skip empty subtrees. */
3912 if (!*tp)
3913 return NULL_TREE;
3915 /* Skip subtrees below non-statement nodes. */
3916 if (!statement_code_p (TREE_CODE (*tp)))
3917 return NULL_TREE;
3919 /* Call the function. */
3920 walk_subtrees = 1;
3921 result = (*func) (tp, &walk_subtrees, data);
3923 /* If we found something, return it. */
3924 if (result)
3925 return result;
3927 /* FUNC may have modified the tree, recheck that we're looking at a
3928 statement node. */
3929 code = TREE_CODE (*tp);
3930 if (!statement_code_p (code))
3931 return NULL_TREE;
3933 /* Visit the subtrees unless FUNC decided that there was nothing
3934 interesting below this point in the tree. */
3935 if (walk_subtrees)
3937 /* Walk over all the sub-trees of this operand. Statement nodes
3938 never contain RTL, and we needn't worry about TARGET_EXPRs. */
3939 len = TREE_CODE_LENGTH (code);
3941 /* Go through the subtrees. We need to do this in forward order so
3942 that the scope of a FOR_EXPR is handled properly. */
3943 for (i = 0; i < len; ++i)
3944 WALK_SUBTREE (TREE_OPERAND (*tp, i));
3947 /* Finally visit the chain. This can be tail-recursion optimized if
3948 we write it this way. */
3949 return walk_stmt_tree (&TREE_CHAIN (*tp), func, data);
3951 #undef WALK_SUBTREE
3954 /* Used to compare case labels. K1 and K2 are actually tree nodes
3955 representing case labels, or NULL_TREE for a `default' label.
3956 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
3957 K2, and 0 if K1 and K2 are equal. */
3960 case_compare (k1, k2)
3961 splay_tree_key k1;
3962 splay_tree_key k2;
3964 /* Consider a NULL key (such as arises with a `default' label) to be
3965 smaller than anything else. */
3966 if (!k1)
3967 return k2 ? -1 : 0;
3968 else if (!k2)
3969 return k1 ? 1 : 0;
3971 return tree_int_cst_compare ((tree) k1, (tree) k2);
3974 /* Process a case label for the range LOW_VALUE ... HIGH_VALUE. If
3975 LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
3976 actually a `default' label. If only HIGH_VALUE is NULL_TREE, then
3977 case label was declared using the usual C/C++ syntax, rather than
3978 the GNU case range extension. CASES is a tree containing all the
3979 case ranges processed so far; COND is the condition for the
3980 switch-statement itself. Returns the CASE_LABEL created, or
3981 ERROR_MARK_NODE if no CASE_LABEL is created. */
3983 tree
3984 c_add_case_label (cases, cond, low_value, high_value)
3985 splay_tree cases;
3986 tree cond;
3987 tree low_value;
3988 tree high_value;
3990 tree type;
3991 tree label;
3992 tree case_label;
3993 splay_tree_node node;
3995 /* Create the LABEL_DECL itself. */
3996 label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3997 DECL_CONTEXT (label) = current_function_decl;
3999 /* If there was an error processing the switch condition, bail now
4000 before we get more confused. */
4001 if (!cond || cond == error_mark_node)
4003 /* Add a label anyhow so that the back-end doesn't think that
4004 the beginning of the switch is unreachable. */
4005 if (!cases->root)
4006 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
4007 return error_mark_node;
4010 if ((low_value && TREE_TYPE (low_value)
4011 && POINTER_TYPE_P (TREE_TYPE (low_value)))
4012 || (high_value && TREE_TYPE (high_value)
4013 && POINTER_TYPE_P (TREE_TYPE (high_value))))
4014 error ("pointers are not permitted as case values");
4016 /* Case ranges are a GNU extension. */
4017 if (high_value && pedantic)
4019 if (c_language == clk_cplusplus)
4020 pedwarn ("ISO C++ forbids range expressions in switch statements");
4021 else
4022 pedwarn ("ISO C forbids range expressions in switch statements");
4025 type = TREE_TYPE (cond);
4026 if (low_value)
4028 low_value = check_case_value (low_value);
4029 low_value = convert_and_check (type, low_value);
4031 if (high_value)
4033 high_value = check_case_value (high_value);
4034 high_value = convert_and_check (type, high_value);
4037 /* If an error has occurred, bail out now. */
4038 if (low_value == error_mark_node || high_value == error_mark_node)
4040 if (!cases->root)
4041 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
4042 return error_mark_node;
4045 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
4046 really a case range, even though it was written that way. Remove
4047 the HIGH_VALUE to simplify later processing. */
4048 if (tree_int_cst_equal (low_value, high_value))
4049 high_value = NULL_TREE;
4050 if (low_value && high_value
4051 && !tree_int_cst_lt (low_value, high_value))
4052 warning ("empty range specified");
4054 /* Look up the LOW_VALUE in the table of case labels we already
4055 have. */
4056 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
4057 /* If there was not an exact match, check for overlapping ranges.
4058 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
4059 that's a `default' label and the only overlap is an exact match. */
4060 if (!node && (low_value || high_value))
4062 splay_tree_node low_bound;
4063 splay_tree_node high_bound;
4065 /* Even though there wasn't an exact match, there might be an
4066 overlap between this case range and another case range.
4067 Since we've (inductively) not allowed any overlapping case
4068 ranges, we simply need to find the greatest low case label
4069 that is smaller that LOW_VALUE, and the smallest low case
4070 label that is greater than LOW_VALUE. If there is an overlap
4071 it will occur in one of these two ranges. */
4072 low_bound = splay_tree_predecessor (cases,
4073 (splay_tree_key) low_value);
4074 high_bound = splay_tree_successor (cases,
4075 (splay_tree_key) low_value);
4077 /* Check to see if the LOW_BOUND overlaps. It is smaller than
4078 the LOW_VALUE, so there is no need to check unless the
4079 LOW_BOUND is in fact itself a case range. */
4080 if (low_bound
4081 && CASE_HIGH ((tree) low_bound->value)
4082 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
4083 low_value) >= 0)
4084 node = low_bound;
4085 /* Check to see if the HIGH_BOUND overlaps. The low end of that
4086 range is bigger than the low end of the current range, so we
4087 are only interested if the current range is a real range, and
4088 not an ordinary case label. */
4089 else if (high_bound
4090 && high_value
4091 && (tree_int_cst_compare ((tree) high_bound->key,
4092 high_value)
4093 <= 0))
4094 node = high_bound;
4096 /* If there was an overlap, issue an error. */
4097 if (node)
4099 tree duplicate = CASE_LABEL_DECL ((tree) node->value);
4101 if (high_value)
4103 error ("duplicate (or overlapping) case value");
4104 error_with_decl (duplicate,
4105 "this is the first entry overlapping that value");
4107 else if (low_value)
4109 error ("duplicate case value") ;
4110 error_with_decl (duplicate, "previously used here");
4112 else
4114 error ("multiple default labels in one switch");
4115 error_with_decl (duplicate, "this is the first default label");
4117 if (!cases->root)
4118 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
4121 /* Add a CASE_LABEL to the statement-tree. */
4122 case_label = add_stmt (build_case_label (low_value, high_value, label));
4123 /* Register this case label in the splay tree. */
4124 splay_tree_insert (cases,
4125 (splay_tree_key) low_value,
4126 (splay_tree_value) case_label);
4128 return case_label;
4131 /* Finish an expression taking the address of LABEL. Returns an
4132 expression for the address. */
4134 tree
4135 finish_label_address_expr (label)
4136 tree label;
4138 tree result;
4140 if (pedantic)
4142 if (c_language == clk_cplusplus)
4143 pedwarn ("ISO C++ forbids taking the address of a label");
4144 else
4145 pedwarn ("ISO C forbids taking the address of a label");
4148 label = lookup_label (label);
4149 if (label == NULL_TREE)
4150 result = null_pointer_node;
4151 else
4153 TREE_USED (label) = 1;
4154 result = build1 (ADDR_EXPR, ptr_type_node, label);
4155 TREE_CONSTANT (result) = 1;
4156 /* The current function in not necessarily uninlinable.
4157 Computed gotos are incompatible with inlining, but the value
4158 here could be used only in a diagnostic, for example. */
4161 return result;
4164 /* Hook used by expand_expr to expand language-specific tree codes. */
4167 c_expand_expr (exp, target, tmode, modifier)
4168 tree exp;
4169 rtx target;
4170 enum machine_mode tmode;
4171 int modifier; /* Actually enum_modifier. */
4173 switch (TREE_CODE (exp))
4175 case STMT_EXPR:
4177 tree rtl_expr;
4178 rtx result;
4179 bool preserve_result = false;
4180 bool return_target = false;
4182 /* Since expand_expr_stmt calls free_temp_slots after every
4183 expression statement, we must call push_temp_slots here.
4184 Otherwise, any temporaries in use now would be considered
4185 out-of-scope after the first EXPR_STMT from within the
4186 STMT_EXPR. */
4187 push_temp_slots ();
4188 rtl_expr = expand_start_stmt_expr (!STMT_EXPR_NO_SCOPE (exp));
4190 /* If we want the result of this expression, find the last
4191 EXPR_STMT in the COMPOUND_STMT and mark it as addressable. */
4192 if (target != const0_rtx
4193 && TREE_CODE (STMT_EXPR_STMT (exp)) == COMPOUND_STMT
4194 && TREE_CODE (COMPOUND_BODY (STMT_EXPR_STMT (exp))) == SCOPE_STMT)
4196 tree expr = COMPOUND_BODY (STMT_EXPR_STMT (exp));
4197 tree last = TREE_CHAIN (expr);
4199 while (TREE_CHAIN (last))
4201 expr = last;
4202 last = TREE_CHAIN (last);
4205 if (TREE_CODE (last) == SCOPE_STMT
4206 && TREE_CODE (expr) == EXPR_STMT)
4208 if (target && TREE_CODE (EXPR_STMT_EXPR (expr)) == VAR_DECL
4209 && DECL_RTL_IF_SET (EXPR_STMT_EXPR (expr)) == target)
4210 /* If the last expression is a variable whose RTL is the
4211 same as our target, just return the target; if it
4212 isn't valid expanding the decl would produce different
4213 RTL, and store_expr would try to do a copy. */
4214 return_target = true;
4215 else
4217 /* Otherwise, note that we want the value from the last
4218 expression. */
4219 TREE_ADDRESSABLE (expr) = 1;
4220 preserve_result = true;
4225 expand_stmt (STMT_EXPR_STMT (exp));
4226 expand_end_stmt_expr (rtl_expr);
4228 result = expand_expr (rtl_expr, target, tmode, modifier);
4229 if (return_target)
4230 result = target;
4231 else if (preserve_result && GET_CODE (result) == MEM)
4233 if (GET_MODE (result) != BLKmode)
4234 result = copy_to_reg (result);
4235 else
4236 preserve_temp_slots (result);
4239 /* If the statment-expression does not have a scope, then the
4240 new temporaries we created within it must live beyond the
4241 statement-expression. */
4242 if (STMT_EXPR_NO_SCOPE (exp))
4243 preserve_temp_slots (NULL_RTX);
4245 pop_temp_slots ();
4246 return result;
4248 break;
4250 case CALL_EXPR:
4252 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
4253 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
4254 == FUNCTION_DECL)
4255 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
4256 && (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
4257 == BUILT_IN_FRONTEND))
4258 return c_expand_builtin (exp, target, tmode, modifier);
4259 else
4260 abort ();
4262 break;
4264 case COMPOUND_LITERAL_EXPR:
4266 /* Initialize the anonymous variable declared in the compound
4267 literal, then return the variable. */
4268 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
4269 emit_local_var (decl);
4270 return expand_expr (decl, target, tmode, modifier);
4273 default:
4274 abort ();
4277 abort ();
4278 return NULL;
4281 /* Hook used by safe_from_p to handle language-specific tree codes. */
4284 c_safe_from_p (target, exp)
4285 rtx target;
4286 tree exp;
4288 /* We can see statements here when processing the body of a
4289 statement-expression. For a declaration statement declaring a
4290 variable, look at the variable's initializer. */
4291 if (TREE_CODE (exp) == DECL_STMT)
4293 tree decl = DECL_STMT_DECL (exp);
4295 if (TREE_CODE (decl) == VAR_DECL
4296 && DECL_INITIAL (decl)
4297 && !safe_from_p (target, DECL_INITIAL (decl), /*top_p=*/0))
4298 return 0;
4301 /* For any statement, we must follow the statement-chain. */
4302 if (statement_code_p (TREE_CODE (exp)) && TREE_CHAIN (exp))
4303 return safe_from_p (target, TREE_CHAIN (exp), /*top_p=*/0);
4305 /* Assume everything else is safe. */
4306 return 1;
4309 /* Hook used by unsafe_for_reeval to handle language-specific tree codes. */
4312 c_common_unsafe_for_reeval (exp)
4313 tree exp;
4315 /* Statement expressions may not be reevaluated, likewise compound
4316 literals. */
4317 if (TREE_CODE (exp) == STMT_EXPR
4318 || TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
4319 return 2;
4321 /* Walk all other expressions. */
4322 return -1;
4325 /* Hook used by staticp to handle language-specific tree codes. */
4328 c_staticp (exp)
4329 tree exp;
4331 if (TREE_CODE (exp) == COMPOUND_LITERAL_EXPR
4332 && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp)))
4333 return 1;
4334 return 0;
4337 #define CALLED_AS_BUILT_IN(NODE) \
4338 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
4340 static rtx
4341 c_expand_builtin (exp, target, tmode, modifier)
4342 tree exp;
4343 rtx target;
4344 enum machine_mode tmode;
4345 enum expand_modifier modifier;
4347 tree type = TREE_TYPE (exp);
4348 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
4349 tree arglist = TREE_OPERAND (exp, 1);
4350 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
4351 enum tree_code code = TREE_CODE (exp);
4352 const int ignore = (target == const0_rtx
4353 || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
4354 || code == CONVERT_EXPR || code == REFERENCE_EXPR
4355 || code == COND_EXPR)
4356 && TREE_CODE (type) == VOID_TYPE));
4358 if (! optimize && ! CALLED_AS_BUILT_IN (fndecl))
4359 return expand_call (exp, target, ignore);
4361 switch (fcode)
4363 case BUILT_IN_PRINTF:
4364 target = c_expand_builtin_printf (arglist, target, tmode,
4365 modifier, ignore, /*unlocked=*/ 0);
4366 if (target)
4367 return target;
4368 break;
4370 case BUILT_IN_PRINTF_UNLOCKED:
4371 target = c_expand_builtin_printf (arglist, target, tmode,
4372 modifier, ignore, /*unlocked=*/ 1);
4373 if (target)
4374 return target;
4375 break;
4377 case BUILT_IN_FPRINTF:
4378 target = c_expand_builtin_fprintf (arglist, target, tmode,
4379 modifier, ignore, /*unlocked=*/ 0);
4380 if (target)
4381 return target;
4382 break;
4384 case BUILT_IN_FPRINTF_UNLOCKED:
4385 target = c_expand_builtin_fprintf (arglist, target, tmode,
4386 modifier, ignore, /*unlocked=*/ 1);
4387 if (target)
4388 return target;
4389 break;
4391 default: /* just do library call, if unknown builtin */
4392 error ("built-in function `%s' not currently supported",
4393 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
4396 /* The switch statement above can drop through to cause the function
4397 to be called normally. */
4398 return expand_call (exp, target, ignore);
4401 /* Check an arglist to *printf for problems. The arglist should start
4402 at the format specifier, with the remaining arguments immediately
4403 following it. */
4404 static int
4405 is_valid_printf_arglist (arglist)
4406 tree arglist;
4408 /* Save this value so we can restore it later. */
4409 const int SAVE_pedantic = pedantic;
4410 int diagnostic_occurred = 0;
4411 tree attrs;
4413 /* Set this to a known value so the user setting won't affect code
4414 generation. */
4415 pedantic = 1;
4416 /* Check to make sure there are no format specifier errors. */
4417 attrs = tree_cons (get_identifier ("format"),
4418 tree_cons (NULL_TREE,
4419 get_identifier ("printf"),
4420 tree_cons (NULL_TREE,
4421 integer_one_node,
4422 tree_cons (NULL_TREE,
4423 build_int_2 (2, 0),
4424 NULL_TREE))),
4425 NULL_TREE);
4426 check_function_format (&diagnostic_occurred, attrs, arglist);
4428 /* Restore the value of `pedantic'. */
4429 pedantic = SAVE_pedantic;
4431 /* If calling `check_function_format_ptr' produces a warning, we
4432 return false, otherwise we return true. */
4433 return ! diagnostic_occurred;
4436 /* If the arguments passed to printf are suitable for optimizations,
4437 we attempt to transform the call. */
4438 static rtx
4439 c_expand_builtin_printf (arglist, target, tmode, modifier, ignore, unlocked)
4440 tree arglist;
4441 rtx target;
4442 enum machine_mode tmode;
4443 enum expand_modifier modifier;
4444 int ignore;
4445 int unlocked;
4447 tree fn_putchar = unlocked ?
4448 built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED] : built_in_decls[BUILT_IN_PUTCHAR];
4449 tree fn_puts = unlocked ?
4450 built_in_decls[BUILT_IN_PUTS_UNLOCKED] : built_in_decls[BUILT_IN_PUTS];
4451 tree fn, format_arg, stripped_string;
4453 /* If the return value is used, or the replacement _DECL isn't
4454 initialized, don't do the transformation. */
4455 if (!ignore || !fn_putchar || !fn_puts)
4456 return 0;
4458 /* Verify the required arguments in the original call. */
4459 if (arglist == 0
4460 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE))
4461 return 0;
4463 /* Check the specifier vs. the parameters. */
4464 if (!is_valid_printf_arglist (arglist))
4465 return 0;
4467 format_arg = TREE_VALUE (arglist);
4468 stripped_string = format_arg;
4469 STRIP_NOPS (stripped_string);
4470 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
4471 stripped_string = TREE_OPERAND (stripped_string, 0);
4473 /* If the format specifier isn't a STRING_CST, punt. */
4474 if (TREE_CODE (stripped_string) != STRING_CST)
4475 return 0;
4477 /* OK! We can attempt optimization. */
4479 /* If the format specifier was "%s\n", call __builtin_puts(arg2). */
4480 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s\n") == 0)
4482 arglist = TREE_CHAIN (arglist);
4483 fn = fn_puts;
4485 /* If the format specifier was "%c", call __builtin_putchar (arg2). */
4486 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
4488 arglist = TREE_CHAIN (arglist);
4489 fn = fn_putchar;
4491 else
4493 /* We can't handle anything else with % args or %% ... yet. */
4494 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
4495 return 0;
4497 /* If the resulting constant string has a length of 1, call
4498 putchar. Note, TREE_STRING_LENGTH includes the terminating
4499 NULL in its count. */
4500 if (TREE_STRING_LENGTH (stripped_string) == 2)
4502 /* Given printf("c"), (where c is any one character,)
4503 convert "c"[0] to an int and pass that to the replacement
4504 function. */
4505 arglist = build_int_2 (TREE_STRING_POINTER (stripped_string)[0], 0);
4506 arglist = build_tree_list (NULL_TREE, arglist);
4508 fn = fn_putchar;
4510 /* If the resulting constant was "string\n", call
4511 __builtin_puts("string"). Ensure "string" has at least one
4512 character besides the trailing \n. Note, TREE_STRING_LENGTH
4513 includes the terminating NULL in its count. */
4514 else if (TREE_STRING_LENGTH (stripped_string) > 2
4515 && TREE_STRING_POINTER (stripped_string)
4516 [TREE_STRING_LENGTH (stripped_string) - 2] == '\n')
4518 /* Create a NULL-terminated string that's one char shorter
4519 than the original, stripping off the trailing '\n'. */
4520 const int newlen = TREE_STRING_LENGTH (stripped_string) - 1;
4521 char *newstr = (char *) alloca (newlen);
4522 memcpy (newstr, TREE_STRING_POINTER (stripped_string), newlen - 1);
4523 newstr[newlen - 1] = 0;
4525 arglist = fix_string_type (build_string (newlen, newstr));
4526 arglist = build_tree_list (NULL_TREE, arglist);
4527 fn = fn_puts;
4529 else
4530 /* We'd like to arrange to call fputs(string) here, but we
4531 need stdout and don't have a way to get it ... yet. */
4532 return 0;
4535 return expand_expr (build_function_call (fn, arglist),
4536 (ignore ? const0_rtx : target),
4537 tmode, modifier);
4540 /* If the arguments passed to fprintf are suitable for optimizations,
4541 we attempt to transform the call. */
4542 static rtx
4543 c_expand_builtin_fprintf (arglist, target, tmode, modifier, ignore, unlocked)
4544 tree arglist;
4545 rtx target;
4546 enum machine_mode tmode;
4547 enum expand_modifier modifier;
4548 int ignore;
4549 int unlocked;
4551 tree fn_fputc = unlocked ?
4552 built_in_decls[BUILT_IN_FPUTC_UNLOCKED] : built_in_decls[BUILT_IN_FPUTC];
4553 tree fn_fputs = unlocked ?
4554 built_in_decls[BUILT_IN_FPUTS_UNLOCKED] : built_in_decls[BUILT_IN_FPUTS];
4555 tree fn, format_arg, stripped_string;
4557 /* If the return value is used, or the replacement _DECL isn't
4558 initialized, don't do the transformation. */
4559 if (!ignore || !fn_fputc || !fn_fputs)
4560 return 0;
4562 /* Verify the required arguments in the original call. */
4563 if (arglist == 0
4564 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE)
4565 || (TREE_CHAIN (arglist) == 0)
4566 || (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (arglist)))) !=
4567 POINTER_TYPE))
4568 return 0;
4570 /* Check the specifier vs. the parameters. */
4571 if (!is_valid_printf_arglist (TREE_CHAIN (arglist)))
4572 return 0;
4574 format_arg = TREE_VALUE (TREE_CHAIN (arglist));
4575 stripped_string = format_arg;
4576 STRIP_NOPS (stripped_string);
4577 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
4578 stripped_string = TREE_OPERAND (stripped_string, 0);
4580 /* If the format specifier isn't a STRING_CST, punt. */
4581 if (TREE_CODE (stripped_string) != STRING_CST)
4582 return 0;
4584 /* OK! We can attempt optimization. */
4586 /* If the format specifier was "%s", call __builtin_fputs(arg3, arg1). */
4587 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s") == 0)
4589 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
4590 arglist = tree_cons (NULL_TREE,
4591 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
4592 newarglist);
4593 fn = fn_fputs;
4595 /* If the format specifier was "%c", call __builtin_fputc (arg3, arg1). */
4596 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
4598 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
4599 arglist = tree_cons (NULL_TREE,
4600 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
4601 newarglist);
4602 fn = fn_fputc;
4604 else
4606 /* We can't handle anything else with % args or %% ... yet. */
4607 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
4608 return 0;
4610 /* When "string" doesn't contain %, replace all cases of
4611 fprintf(stream,string) with fputs(string,stream). The fputs
4612 builtin will take take of special cases like length==1. */
4613 arglist = tree_cons (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)),
4614 build_tree_list (NULL_TREE, TREE_VALUE (arglist)));
4615 fn = fn_fputs;
4618 return expand_expr (build_function_call (fn, arglist),
4619 (ignore ? const0_rtx : target),
4620 tmode, modifier);
4624 /* Given a boolean expression ARG, return a tree representing an increment
4625 or decrement (as indicated by CODE) of ARG. The front end must check for
4626 invalid cases (e.g., decrement in C++). */
4627 tree
4628 boolean_increment (code, arg)
4629 enum tree_code code;
4630 tree arg;
4632 tree val;
4633 tree true_res = (c_language == clk_cplusplus
4634 ? boolean_true_node
4635 : c_bool_true_node);
4636 arg = stabilize_reference (arg);
4637 switch (code)
4639 case PREINCREMENT_EXPR:
4640 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4641 break;
4642 case POSTINCREMENT_EXPR:
4643 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4644 arg = save_expr (arg);
4645 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4646 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4647 break;
4648 case PREDECREMENT_EXPR:
4649 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
4650 break;
4651 case POSTDECREMENT_EXPR:
4652 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
4653 arg = save_expr (arg);
4654 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4655 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4656 break;
4657 default:
4658 abort ();
4660 TREE_SIDE_EFFECTS (val) = 1;
4661 return val;
4664 /* Hook that registers front end and target-specific built-ins. */
4665 void
4666 cb_register_builtins (pfile)
4667 cpp_reader *pfile;
4669 /* -undef turns off target-specific built-ins. */
4670 if (flag_undef)
4671 return;
4673 if (c_language == clk_cplusplus)
4675 if (SUPPORTS_ONE_ONLY)
4676 cpp_define (pfile, "__GXX_WEAK__=1");
4677 else
4678 cpp_define (pfile, "__GXX_WEAK__=0");
4679 if (flag_exceptions)
4680 cpp_define (pfile, "__EXCEPTIONS");
4681 if (warn_deprecated)
4682 cpp_define (pfile, "__DEPRECATED");
4685 /* represents the C++ ABI version, always defined so it can be used while
4686 preprocessing C and assembler. */
4687 cpp_define (pfile, "__GXX_ABI_VERSION=102");
4689 /* libgcc needs to know this. */
4690 if (USING_SJLJ_EXCEPTIONS)
4691 cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
4693 /* stddef.h needs to know these. */
4694 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
4695 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
4696 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
4697 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
4699 /* limits.h needs to know these. */
4700 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node, 0);
4701 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node, 0);
4702 builtin_define_type_max ("__INT_MAX__", integer_type_node, 0);
4703 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node, 1);
4704 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node, 2);
4707 char buf[8];
4708 sprintf (buf, "%d", (int) TYPE_PRECISION (signed_char_type_node));
4709 builtin_define_with_value ("__CHAR_BIT__", buf, 0);
4712 /* For use in assembly language. */
4713 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
4714 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
4716 /* Misc. */
4717 builtin_define_with_value ("__VERSION__", version_string, 1);
4719 /* Other target-independent built-ins determined by command-line
4720 options. */
4721 if (optimize_size)
4722 cpp_define (pfile, "__OPTIMIZE_SIZE__");
4723 if (optimize)
4724 cpp_define (pfile, "__OPTIMIZE__");
4726 if (flag_hosted)
4727 cpp_define (pfile, "__STDC_HOSTED__=1");
4728 else
4729 cpp_define (pfile, "__STDC_HOSTED__=0");
4731 if (fast_math_flags_set_p ())
4732 cpp_define (pfile, "__FAST_MATH__");
4733 if (flag_no_inline)
4734 cpp_define (pfile, "__NO_INLINE__");
4735 if (flag_signaling_nans)
4736 cpp_define (pfile, "__SUPPORT_SNAN__");
4737 if (flag_finite_math_only)
4738 cpp_define (pfile, "__FINITE_MATH_ONLY__=1");
4739 else
4740 cpp_define (pfile, "__FINITE_MATH_ONLY__=0");
4742 if (flag_iso)
4743 cpp_define (pfile, "__STRICT_ANSI__");
4745 if (!flag_signed_char)
4746 cpp_define (pfile, "__CHAR_UNSIGNED__");
4748 /* Make the choice of ObjC runtime visible to source code. */
4749 if (flag_objc && flag_next_runtime)
4750 cpp_define (pfile, "__NEXT_RUNTIME__");
4752 /* A straightforward target hook doesn't work, because of problems
4753 linking that hook's body when part of non-C front ends. */
4754 # define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
4755 # define builtin_define(TXT) cpp_define (pfile, TXT)
4756 # define builtin_assert(TXT) cpp_assert (pfile, TXT)
4757 TARGET_CPU_CPP_BUILTINS ();
4758 TARGET_OS_CPP_BUILTINS ();
4761 /* Pass an object-like macro. If it doesn't lie in the user's
4762 namespace, defines it unconditionally. Otherwise define a version
4763 with two leading underscores, and another version with two leading
4764 and trailing underscores, and define the original only if an ISO
4765 standard was not nominated.
4767 e.g. passing "unix" defines "__unix", "__unix__" and possibly
4768 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
4769 "_mips". */
4770 void
4771 builtin_define_std (macro)
4772 const char *macro;
4774 size_t len = strlen (macro);
4775 char *buff = alloca (len + 5);
4776 char *p = buff + 2;
4777 char *q = p + len;
4779 /* prepend __ (or maybe just _) if in user's namespace. */
4780 memcpy (p, macro, len + 1);
4781 if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
4783 if (*p != '_')
4784 *--p = '_';
4785 if (p[1] != '_')
4786 *--p = '_';
4788 cpp_define (parse_in, p);
4790 /* If it was in user's namespace... */
4791 if (p != buff + 2)
4793 /* Define the macro with leading and following __. */
4794 if (q[-1] != '_')
4795 *q++ = '_';
4796 if (q[-2] != '_')
4797 *q++ = '_';
4798 *q = '\0';
4799 cpp_define (parse_in, p);
4801 /* Finally, define the original macro if permitted. */
4802 if (!flag_iso)
4803 cpp_define (parse_in, macro);
4807 /* Pass an object-like macro and a value to define it to. The third
4808 parameter says whether or not to turn the value into a string
4809 constant. */
4810 static void
4811 builtin_define_with_value (macro, expansion, is_str)
4812 const char *macro;
4813 const char *expansion;
4814 int is_str;
4816 char *buf;
4817 size_t mlen = strlen (macro);
4818 size_t elen = strlen (expansion);
4819 size_t extra = 2; /* space for an = and a NUL */
4821 if (is_str)
4822 extra += 2; /* space for two quote marks */
4824 buf = alloca (mlen + elen + extra);
4825 if (is_str)
4826 sprintf (buf, "%s=\"%s\"", macro, expansion);
4827 else
4828 sprintf (buf, "%s=%s", macro, expansion);
4830 cpp_define (parse_in, buf);
4833 /* Define MAX for TYPE based on the precision of the type, which is assumed
4834 to be signed. IS_LONG is 1 for type "long" and 2 for "long long". */
4836 static void
4837 builtin_define_type_max (macro, type, is_long)
4838 const char *macro;
4839 tree type;
4840 int is_long;
4842 const char *value;
4843 char *buf;
4844 size_t mlen, vlen, extra;
4846 /* Pre-rendering the values mean we don't have to futz with printing a
4847 multi-word decimal value. There are also a very limited number of
4848 precisions that we support, so it's really a waste of time. */
4849 switch (TYPE_PRECISION (type))
4851 case 8:
4852 value = "127";
4853 break;
4854 case 16:
4855 value = "32767";
4856 break;
4857 case 32:
4858 value = "2147483647";
4859 break;
4860 case 64:
4861 value = "9223372036854775807";
4862 break;
4863 case 128:
4864 value = "170141183460469231731687303715884105727";
4865 break;
4866 default:
4867 abort ();
4870 mlen = strlen (macro);
4871 vlen = strlen (value);
4872 extra = 2 + is_long;
4873 buf = alloca (mlen + vlen + extra);
4875 sprintf (buf, "%s=%s%s", macro, value,
4876 (is_long == 1 ? "L" : is_long == 2 ? "LL" : ""));
4878 cpp_define (parse_in, buf);
4881 static void
4882 c_init_attributes ()
4884 /* Fill in the built_in_attributes array. */
4885 #define DEF_ATTR_NULL_TREE(ENUM) \
4886 built_in_attributes[(int) ENUM] = NULL_TREE;
4887 #define DEF_ATTR_INT(ENUM, VALUE) \
4888 built_in_attributes[(int) ENUM] = build_int_2 (VALUE, VALUE < 0 ? -1 : 0);
4889 #define DEF_ATTR_IDENT(ENUM, STRING) \
4890 built_in_attributes[(int) ENUM] = get_identifier (STRING);
4891 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
4892 built_in_attributes[(int) ENUM] \
4893 = tree_cons (built_in_attributes[(int) PURPOSE], \
4894 built_in_attributes[(int) VALUE], \
4895 built_in_attributes[(int) CHAIN]);
4896 #define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No initialization needed. */
4897 #include "builtin-attrs.def"
4898 #undef DEF_ATTR_NULL_TREE
4899 #undef DEF_ATTR_INT
4900 #undef DEF_ATTR_IDENT
4901 #undef DEF_ATTR_TREE_LIST
4902 #undef DEF_FN_ATTR
4903 c_attrs_initialized = true;
4906 /* Depending on the name of DECL, apply default attributes to it. */
4908 void
4909 c_common_insert_default_attributes (decl)
4910 tree decl;
4912 tree name = DECL_NAME (decl);
4914 if (!c_attrs_initialized)
4915 c_init_attributes ();
4917 #define DEF_ATTR_NULL_TREE(ENUM) /* Nothing needed after initialization. */
4918 #define DEF_ATTR_INT(ENUM, VALUE)
4919 #define DEF_ATTR_IDENT(ENUM, STRING)
4920 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN)
4921 #define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) \
4922 if ((PREDICATE) && name == built_in_attributes[(int) NAME]) \
4923 decl_attributes (&decl, built_in_attributes[(int) ATTRS], \
4924 ATTR_FLAG_BUILT_IN);
4925 #include "builtin-attrs.def"
4926 #undef DEF_ATTR_NULL_TREE
4927 #undef DEF_ATTR_INT
4928 #undef DEF_ATTR_IDENT
4929 #undef DEF_ATTR_TREE_LIST
4930 #undef DEF_FN_ATTR
4933 /* Output a -Wshadow warning MSGID about NAME, an IDENTIFIER_NODE, and
4934 additionally give the location of the previous declaration DECL. */
4935 void
4936 shadow_warning (msgid, name, decl)
4937 const char *msgid;
4938 tree name, decl;
4940 warning ("declaration of `%s' shadows %s", IDENTIFIER_POINTER (name), msgid);
4941 warning_with_file_and_line (DECL_SOURCE_FILE (decl),
4942 DECL_SOURCE_LINE (decl),
4943 "shadowed declaration is here");
4946 /* Attribute handlers common to C front ends. */
4948 /* Handle a "packed" attribute; arguments as in
4949 struct attribute_spec.handler. */
4951 static tree
4952 handle_packed_attribute (node, name, args, flags, no_add_attrs)
4953 tree *node;
4954 tree name;
4955 tree args ATTRIBUTE_UNUSED;
4956 int flags;
4957 bool *no_add_attrs;
4959 tree *type = NULL;
4960 if (DECL_P (*node))
4962 if (TREE_CODE (*node) == TYPE_DECL)
4963 type = &TREE_TYPE (*node);
4965 else
4966 type = node;
4968 if (type)
4970 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4971 *type = build_type_copy (*type);
4972 TYPE_PACKED (*type) = 1;
4974 else if (TREE_CODE (*node) == FIELD_DECL)
4975 DECL_PACKED (*node) = 1;
4976 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
4977 used for DECL_REGISTER. It wouldn't mean anything anyway. */
4978 else
4980 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4981 *no_add_attrs = true;
4984 return NULL_TREE;
4987 /* Handle a "nocommon" attribute; arguments as in
4988 struct attribute_spec.handler. */
4990 static tree
4991 handle_nocommon_attribute (node, name, args, flags, no_add_attrs)
4992 tree *node;
4993 tree name;
4994 tree args ATTRIBUTE_UNUSED;
4995 int flags ATTRIBUTE_UNUSED;
4996 bool *no_add_attrs;
4998 if (TREE_CODE (*node) == VAR_DECL)
4999 DECL_COMMON (*node) = 0;
5000 else
5002 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5003 *no_add_attrs = true;
5006 return NULL_TREE;
5009 /* Handle a "common" attribute; arguments as in
5010 struct attribute_spec.handler. */
5012 static tree
5013 handle_common_attribute (node, name, args, flags, no_add_attrs)
5014 tree *node;
5015 tree name;
5016 tree args ATTRIBUTE_UNUSED;
5017 int flags ATTRIBUTE_UNUSED;
5018 bool *no_add_attrs;
5020 if (TREE_CODE (*node) == VAR_DECL)
5021 DECL_COMMON (*node) = 1;
5022 else
5024 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5025 *no_add_attrs = true;
5028 return NULL_TREE;
5031 /* Handle a "noreturn" attribute; arguments as in
5032 struct attribute_spec.handler. */
5034 static tree
5035 handle_noreturn_attribute (node, name, args, flags, no_add_attrs)
5036 tree *node;
5037 tree name;
5038 tree args ATTRIBUTE_UNUSED;
5039 int flags ATTRIBUTE_UNUSED;
5040 bool *no_add_attrs;
5042 tree type = TREE_TYPE (*node);
5044 /* See FIXME comment in c_common_attribute_table. */
5045 if (TREE_CODE (*node) == FUNCTION_DECL)
5046 TREE_THIS_VOLATILE (*node) = 1;
5047 else if (TREE_CODE (type) == POINTER_TYPE
5048 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
5049 TREE_TYPE (*node)
5050 = build_pointer_type
5051 (build_type_variant (TREE_TYPE (type),
5052 TREE_READONLY (TREE_TYPE (type)), 1));
5053 else
5055 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5056 *no_add_attrs = true;
5059 return NULL_TREE;
5062 /* Handle a "noinline" attribute; arguments as in
5063 struct attribute_spec.handler. */
5065 static tree
5066 handle_noinline_attribute (node, name, args, flags, no_add_attrs)
5067 tree *node;
5068 tree name;
5069 tree args ATTRIBUTE_UNUSED;
5070 int flags ATTRIBUTE_UNUSED;
5071 bool *no_add_attrs;
5073 if (TREE_CODE (*node) == FUNCTION_DECL)
5074 DECL_UNINLINABLE (*node) = 1;
5075 else
5077 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5078 *no_add_attrs = true;
5081 return NULL_TREE;
5084 /* Handle a "always_inline" attribute; arguments as in
5085 struct attribute_spec.handler. */
5087 static tree
5088 handle_always_inline_attribute (node, name, args, flags, no_add_attrs)
5089 tree *node;
5090 tree name;
5091 tree args ATTRIBUTE_UNUSED;
5092 int flags ATTRIBUTE_UNUSED;
5093 bool *no_add_attrs;
5095 if (TREE_CODE (*node) == FUNCTION_DECL)
5097 /* Do nothing else, just set the attribute. We'll get at
5098 it later with lookup_attribute. */
5100 else
5102 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5103 *no_add_attrs = true;
5106 return NULL_TREE;
5109 /* Handle a "used" attribute; arguments as in
5110 struct attribute_spec.handler. */
5112 static tree
5113 handle_used_attribute (node, name, args, flags, no_add_attrs)
5114 tree *node;
5115 tree name;
5116 tree args ATTRIBUTE_UNUSED;
5117 int flags ATTRIBUTE_UNUSED;
5118 bool *no_add_attrs;
5120 if (TREE_CODE (*node) == FUNCTION_DECL)
5121 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (*node))
5122 = TREE_USED (*node) = 1;
5123 else
5125 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5126 *no_add_attrs = true;
5129 return NULL_TREE;
5132 /* Handle a "unused" attribute; arguments as in
5133 struct attribute_spec.handler. */
5135 static tree
5136 handle_unused_attribute (node, name, args, flags, no_add_attrs)
5137 tree *node;
5138 tree name;
5139 tree args ATTRIBUTE_UNUSED;
5140 int flags;
5141 bool *no_add_attrs;
5143 if (DECL_P (*node))
5145 tree decl = *node;
5147 if (TREE_CODE (decl) == PARM_DECL
5148 || TREE_CODE (decl) == VAR_DECL
5149 || TREE_CODE (decl) == FUNCTION_DECL
5150 || TREE_CODE (decl) == LABEL_DECL
5151 || TREE_CODE (decl) == TYPE_DECL)
5152 TREE_USED (decl) = 1;
5153 else
5155 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5156 *no_add_attrs = true;
5159 else
5161 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5162 *node = build_type_copy (*node);
5163 TREE_USED (*node) = 1;
5166 return NULL_TREE;
5169 /* Handle a "const" attribute; arguments as in
5170 struct attribute_spec.handler. */
5172 static tree
5173 handle_const_attribute (node, name, args, flags, no_add_attrs)
5174 tree *node;
5175 tree name;
5176 tree args ATTRIBUTE_UNUSED;
5177 int flags ATTRIBUTE_UNUSED;
5178 bool *no_add_attrs;
5180 tree type = TREE_TYPE (*node);
5182 /* See FIXME comment on noreturn in c_common_attribute_table. */
5183 if (TREE_CODE (*node) == FUNCTION_DECL)
5184 TREE_READONLY (*node) = 1;
5185 else if (TREE_CODE (type) == POINTER_TYPE
5186 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
5187 TREE_TYPE (*node)
5188 = build_pointer_type
5189 (build_type_variant (TREE_TYPE (type), 1,
5190 TREE_THIS_VOLATILE (TREE_TYPE (type))));
5191 else
5193 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5194 *no_add_attrs = true;
5197 return NULL_TREE;
5200 /* Handle a "transparent_union" attribute; arguments as in
5201 struct attribute_spec.handler. */
5203 static tree
5204 handle_transparent_union_attribute (node, name, args, flags, no_add_attrs)
5205 tree *node;
5206 tree name;
5207 tree args ATTRIBUTE_UNUSED;
5208 int flags;
5209 bool *no_add_attrs;
5211 tree decl = NULL_TREE;
5212 tree *type = NULL;
5213 int is_type = 0;
5215 if (DECL_P (*node))
5217 decl = *node;
5218 type = &TREE_TYPE (decl);
5219 is_type = TREE_CODE (*node) == TYPE_DECL;
5221 else if (TYPE_P (*node))
5222 type = node, is_type = 1;
5224 if (is_type
5225 && TREE_CODE (*type) == UNION_TYPE
5226 && (decl == 0
5227 || (TYPE_FIELDS (*type) != 0
5228 && TYPE_MODE (*type) == DECL_MODE (TYPE_FIELDS (*type)))))
5230 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5231 *type = build_type_copy (*type);
5232 TYPE_TRANSPARENT_UNION (*type) = 1;
5234 else if (decl != 0 && TREE_CODE (decl) == PARM_DECL
5235 && TREE_CODE (*type) == UNION_TYPE
5236 && TYPE_MODE (*type) == DECL_MODE (TYPE_FIELDS (*type)))
5237 DECL_TRANSPARENT_UNION (decl) = 1;
5238 else
5240 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5241 *no_add_attrs = true;
5244 return NULL_TREE;
5247 /* Handle a "constructor" attribute; arguments as in
5248 struct attribute_spec.handler. */
5250 static tree
5251 handle_constructor_attribute (node, name, args, flags, no_add_attrs)
5252 tree *node;
5253 tree name;
5254 tree args ATTRIBUTE_UNUSED;
5255 int flags ATTRIBUTE_UNUSED;
5256 bool *no_add_attrs;
5258 tree decl = *node;
5259 tree type = TREE_TYPE (decl);
5261 if (TREE_CODE (decl) == FUNCTION_DECL
5262 && TREE_CODE (type) == FUNCTION_TYPE
5263 && decl_function_context (decl) == 0)
5265 DECL_STATIC_CONSTRUCTOR (decl) = 1;
5266 TREE_USED (decl) = 1;
5268 else
5270 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5271 *no_add_attrs = true;
5274 return NULL_TREE;
5277 /* Handle a "destructor" attribute; arguments as in
5278 struct attribute_spec.handler. */
5280 static tree
5281 handle_destructor_attribute (node, name, args, flags, no_add_attrs)
5282 tree *node;
5283 tree name;
5284 tree args ATTRIBUTE_UNUSED;
5285 int flags ATTRIBUTE_UNUSED;
5286 bool *no_add_attrs;
5288 tree decl = *node;
5289 tree type = TREE_TYPE (decl);
5291 if (TREE_CODE (decl) == FUNCTION_DECL
5292 && TREE_CODE (type) == FUNCTION_TYPE
5293 && decl_function_context (decl) == 0)
5295 DECL_STATIC_DESTRUCTOR (decl) = 1;
5296 TREE_USED (decl) = 1;
5298 else
5300 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5301 *no_add_attrs = true;
5304 return NULL_TREE;
5307 /* Handle a "mode" attribute; arguments as in
5308 struct attribute_spec.handler. */
5310 static tree
5311 handle_mode_attribute (node, name, args, flags, no_add_attrs)
5312 tree *node;
5313 tree name;
5314 tree args;
5315 int flags ATTRIBUTE_UNUSED;
5316 bool *no_add_attrs;
5318 tree type = *node;
5320 *no_add_attrs = true;
5322 if (TREE_CODE (TREE_VALUE (args)) != IDENTIFIER_NODE)
5323 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5324 else
5326 int j;
5327 const char *p = IDENTIFIER_POINTER (TREE_VALUE (args));
5328 int len = strlen (p);
5329 enum machine_mode mode = VOIDmode;
5330 tree typefm;
5332 if (len > 4 && p[0] == '_' && p[1] == '_'
5333 && p[len - 1] == '_' && p[len - 2] == '_')
5335 char *newp = (char *) alloca (len - 1);
5337 strcpy (newp, &p[2]);
5338 newp[len - 4] = '\0';
5339 p = newp;
5342 /* Change this type to have a type with the specified mode.
5343 First check for the special modes. */
5344 if (! strcmp (p, "byte"))
5345 mode = byte_mode;
5346 else if (!strcmp (p, "word"))
5347 mode = word_mode;
5348 else if (! strcmp (p, "pointer"))
5349 mode = ptr_mode;
5350 else
5351 for (j = 0; j < NUM_MACHINE_MODES; j++)
5352 if (!strcmp (p, GET_MODE_NAME (j)))
5353 mode = (enum machine_mode) j;
5355 if (mode == VOIDmode)
5356 error ("unknown machine mode `%s'", p);
5357 else if (0 == (typefm = (*lang_hooks.types.type_for_mode)
5358 (mode, TREE_UNSIGNED (type))))
5359 error ("no data type for mode `%s'", p);
5360 else
5362 /* If this is a vector, make sure we either have hardware
5363 support, or we can emulate it. */
5364 if ((GET_MODE_CLASS (mode) == MODE_VECTOR_INT
5365 || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
5366 && !vector_mode_valid_p (mode))
5368 error ("unable to emulate '%s'", GET_MODE_NAME (mode));
5369 return NULL_TREE;
5372 *node = typefm;
5373 /* No need to layout the type here. The caller should do this. */
5377 return NULL_TREE;
5380 /* Handle a "section" attribute; arguments as in
5381 struct attribute_spec.handler. */
5383 static tree
5384 handle_section_attribute (node, name, args, flags, no_add_attrs)
5385 tree *node;
5386 tree name ATTRIBUTE_UNUSED;
5387 tree args;
5388 int flags ATTRIBUTE_UNUSED;
5389 bool *no_add_attrs;
5391 tree decl = *node;
5393 if (targetm.have_named_sections)
5395 if ((TREE_CODE (decl) == FUNCTION_DECL
5396 || TREE_CODE (decl) == VAR_DECL)
5397 && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
5399 if (TREE_CODE (decl) == VAR_DECL
5400 && current_function_decl != NULL_TREE
5401 && ! TREE_STATIC (decl))
5403 error_with_decl (decl,
5404 "section attribute cannot be specified for local variables");
5405 *no_add_attrs = true;
5408 /* The decl may have already been given a section attribute
5409 from a previous declaration. Ensure they match. */
5410 else if (DECL_SECTION_NAME (decl) != NULL_TREE
5411 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
5412 TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
5414 error_with_decl (*node,
5415 "section of `%s' conflicts with previous declaration");
5416 *no_add_attrs = true;
5418 else
5419 DECL_SECTION_NAME (decl) = TREE_VALUE (args);
5421 else
5423 error_with_decl (*node,
5424 "section attribute not allowed for `%s'");
5425 *no_add_attrs = true;
5428 else
5430 error_with_decl (*node,
5431 "section attributes are not supported for this target");
5432 *no_add_attrs = true;
5435 return NULL_TREE;
5438 /* Handle a "aligned" attribute; arguments as in
5439 struct attribute_spec.handler. */
5441 static tree
5442 handle_aligned_attribute (node, name, args, flags, no_add_attrs)
5443 tree *node;
5444 tree name ATTRIBUTE_UNUSED;
5445 tree args;
5446 int flags;
5447 bool *no_add_attrs;
5449 tree decl = NULL_TREE;
5450 tree *type = NULL;
5451 int is_type = 0;
5452 tree align_expr = (args ? TREE_VALUE (args)
5453 : size_int (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
5454 int i;
5456 if (DECL_P (*node))
5458 decl = *node;
5459 type = &TREE_TYPE (decl);
5460 is_type = TREE_CODE (*node) == TYPE_DECL;
5462 else if (TYPE_P (*node))
5463 type = node, is_type = 1;
5465 /* Strip any NOPs of any kind. */
5466 while (TREE_CODE (align_expr) == NOP_EXPR
5467 || TREE_CODE (align_expr) == CONVERT_EXPR
5468 || TREE_CODE (align_expr) == NON_LVALUE_EXPR)
5469 align_expr = TREE_OPERAND (align_expr, 0);
5471 if (TREE_CODE (align_expr) != INTEGER_CST)
5473 error ("requested alignment is not a constant");
5474 *no_add_attrs = true;
5476 else if ((i = tree_log2 (align_expr)) == -1)
5478 error ("requested alignment is not a power of 2");
5479 *no_add_attrs = true;
5481 else if (i > HOST_BITS_PER_INT - 2)
5483 error ("requested alignment is too large");
5484 *no_add_attrs = true;
5486 else if (is_type)
5488 /* If we have a TYPE_DECL, then copy the type, so that we
5489 don't accidentally modify a builtin type. See pushdecl. */
5490 if (decl && TREE_TYPE (decl) != error_mark_node
5491 && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
5493 tree tt = TREE_TYPE (decl);
5494 *type = build_type_copy (*type);
5495 DECL_ORIGINAL_TYPE (decl) = tt;
5496 TYPE_NAME (*type) = decl;
5497 TREE_USED (*type) = TREE_USED (decl);
5498 TREE_TYPE (decl) = *type;
5500 else if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5501 *type = build_type_copy (*type);
5503 TYPE_ALIGN (*type) = (1 << i) * BITS_PER_UNIT;
5504 TYPE_USER_ALIGN (*type) = 1;
5506 else if (TREE_CODE (decl) != VAR_DECL
5507 && TREE_CODE (decl) != FIELD_DECL)
5509 error_with_decl (decl,
5510 "alignment may not be specified for `%s'");
5511 *no_add_attrs = true;
5513 else
5515 DECL_ALIGN (decl) = (1 << i) * BITS_PER_UNIT;
5516 DECL_USER_ALIGN (decl) = 1;
5519 return NULL_TREE;
5522 /* Handle a "weak" attribute; arguments as in
5523 struct attribute_spec.handler. */
5525 static tree
5526 handle_weak_attribute (node, name, args, flags, no_add_attrs)
5527 tree *node;
5528 tree name ATTRIBUTE_UNUSED;
5529 tree args ATTRIBUTE_UNUSED;
5530 int flags ATTRIBUTE_UNUSED;
5531 bool *no_add_attrs ATTRIBUTE_UNUSED;
5533 declare_weak (*node);
5535 return NULL_TREE;
5538 /* Handle an "alias" attribute; arguments as in
5539 struct attribute_spec.handler. */
5541 static tree
5542 handle_alias_attribute (node, name, args, flags, no_add_attrs)
5543 tree *node;
5544 tree name;
5545 tree args;
5546 int flags ATTRIBUTE_UNUSED;
5547 bool *no_add_attrs;
5549 tree decl = *node;
5551 if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
5552 || (TREE_CODE (decl) != FUNCTION_DECL && ! DECL_EXTERNAL (decl)))
5554 error_with_decl (decl,
5555 "`%s' defined both normally and as an alias");
5556 *no_add_attrs = true;
5558 else if (decl_function_context (decl) == 0)
5560 tree id;
5562 id = TREE_VALUE (args);
5563 if (TREE_CODE (id) != STRING_CST)
5565 error ("alias arg not a string");
5566 *no_add_attrs = true;
5567 return NULL_TREE;
5569 id = get_identifier (TREE_STRING_POINTER (id));
5570 /* This counts as a use of the object pointed to. */
5571 TREE_USED (id) = 1;
5573 if (TREE_CODE (decl) == FUNCTION_DECL)
5574 DECL_INITIAL (decl) = error_mark_node;
5575 else
5576 DECL_EXTERNAL (decl) = 0;
5578 else
5580 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5581 *no_add_attrs = true;
5584 return NULL_TREE;
5587 /* Handle an "visibility" attribute; arguments as in
5588 struct attribute_spec.handler. */
5590 static tree
5591 handle_visibility_attribute (node, name, args, flags, no_add_attrs)
5592 tree *node;
5593 tree name;
5594 tree args;
5595 int flags ATTRIBUTE_UNUSED;
5596 bool *no_add_attrs;
5598 tree decl = *node;
5600 if (decl_function_context (decl) != 0 || ! TREE_PUBLIC (decl))
5602 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5603 *no_add_attrs = true;
5605 else
5607 tree id;
5609 id = TREE_VALUE (args);
5610 if (TREE_CODE (id) != STRING_CST)
5612 error ("visibility arg not a string");
5613 *no_add_attrs = true;
5614 return NULL_TREE;
5616 if (strcmp (TREE_STRING_POINTER (id), "hidden")
5617 && strcmp (TREE_STRING_POINTER (id), "protected")
5618 && strcmp (TREE_STRING_POINTER (id), "internal"))
5620 error ("visibility arg must be one of \"hidden\", \"protected\" or \"internal\"");
5621 *no_add_attrs = true;
5622 return NULL_TREE;
5626 return NULL_TREE;
5629 /* Handle a "no_instrument_function" attribute; arguments as in
5630 struct attribute_spec.handler. */
5632 static tree
5633 handle_no_instrument_function_attribute (node, name, args, flags, no_add_attrs)
5634 tree *node;
5635 tree name;
5636 tree args ATTRIBUTE_UNUSED;
5637 int flags ATTRIBUTE_UNUSED;
5638 bool *no_add_attrs;
5640 tree decl = *node;
5642 if (TREE_CODE (decl) != FUNCTION_DECL)
5644 error_with_decl (decl,
5645 "`%s' attribute applies only to functions",
5646 IDENTIFIER_POINTER (name));
5647 *no_add_attrs = true;
5649 else if (DECL_INITIAL (decl))
5651 error_with_decl (decl,
5652 "can't set `%s' attribute after definition",
5653 IDENTIFIER_POINTER (name));
5654 *no_add_attrs = true;
5656 else
5657 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
5659 return NULL_TREE;
5662 /* Handle a "malloc" attribute; arguments as in
5663 struct attribute_spec.handler. */
5665 static tree
5666 handle_malloc_attribute (node, name, args, flags, no_add_attrs)
5667 tree *node;
5668 tree name;
5669 tree args ATTRIBUTE_UNUSED;
5670 int flags ATTRIBUTE_UNUSED;
5671 bool *no_add_attrs;
5673 if (TREE_CODE (*node) == FUNCTION_DECL)
5674 DECL_IS_MALLOC (*node) = 1;
5675 /* ??? TODO: Support types. */
5676 else
5678 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5679 *no_add_attrs = true;
5682 return NULL_TREE;
5685 /* Handle a "no_limit_stack" attribute; arguments as in
5686 struct attribute_spec.handler. */
5688 static tree
5689 handle_no_limit_stack_attribute (node, name, args, flags, no_add_attrs)
5690 tree *node;
5691 tree name;
5692 tree args ATTRIBUTE_UNUSED;
5693 int flags ATTRIBUTE_UNUSED;
5694 bool *no_add_attrs;
5696 tree decl = *node;
5698 if (TREE_CODE (decl) != FUNCTION_DECL)
5700 error_with_decl (decl,
5701 "`%s' attribute applies only to functions",
5702 IDENTIFIER_POINTER (name));
5703 *no_add_attrs = true;
5705 else if (DECL_INITIAL (decl))
5707 error_with_decl (decl,
5708 "can't set `%s' attribute after definition",
5709 IDENTIFIER_POINTER (name));
5710 *no_add_attrs = true;
5712 else
5713 DECL_NO_LIMIT_STACK (decl) = 1;
5715 return NULL_TREE;
5718 /* Handle a "pure" attribute; arguments as in
5719 struct attribute_spec.handler. */
5721 static tree
5722 handle_pure_attribute (node, name, args, flags, no_add_attrs)
5723 tree *node;
5724 tree name;
5725 tree args ATTRIBUTE_UNUSED;
5726 int flags ATTRIBUTE_UNUSED;
5727 bool *no_add_attrs;
5729 if (TREE_CODE (*node) == FUNCTION_DECL)
5730 DECL_IS_PURE (*node) = 1;
5731 /* ??? TODO: Support types. */
5732 else
5734 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5735 *no_add_attrs = true;
5738 return NULL_TREE;
5741 /* Handle a "deprecated" attribute; arguments as in
5742 struct attribute_spec.handler. */
5744 static tree
5745 handle_deprecated_attribute (node, name, args, flags, no_add_attrs)
5746 tree *node;
5747 tree name;
5748 tree args ATTRIBUTE_UNUSED;
5749 int flags;
5750 bool *no_add_attrs;
5752 tree type = NULL_TREE;
5753 int warn = 0;
5754 const char *what = NULL;
5756 if (DECL_P (*node))
5758 tree decl = *node;
5759 type = TREE_TYPE (decl);
5761 if (TREE_CODE (decl) == TYPE_DECL
5762 || TREE_CODE (decl) == PARM_DECL
5763 || TREE_CODE (decl) == VAR_DECL
5764 || TREE_CODE (decl) == FUNCTION_DECL
5765 || TREE_CODE (decl) == FIELD_DECL)
5766 TREE_DEPRECATED (decl) = 1;
5767 else
5768 warn = 1;
5770 else if (TYPE_P (*node))
5772 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5773 *node = build_type_copy (*node);
5774 TREE_DEPRECATED (*node) = 1;
5775 type = *node;
5777 else
5778 warn = 1;
5780 if (warn)
5782 *no_add_attrs = true;
5783 if (type && TYPE_NAME (type))
5785 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
5786 what = IDENTIFIER_POINTER (TYPE_NAME (*node));
5787 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
5788 && DECL_NAME (TYPE_NAME (type)))
5789 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
5791 if (what)
5792 warning ("`%s' attribute ignored for `%s'",
5793 IDENTIFIER_POINTER (name), what);
5794 else
5795 warning ("`%s' attribute ignored",
5796 IDENTIFIER_POINTER (name));
5799 return NULL_TREE;
5802 /* Keep a list of vector type nodes we created in handle_vector_size_attribute,
5803 to prevent us from duplicating type nodes unnecessarily.
5804 The normal mechanism to prevent duplicates is to use type_hash_canon, but
5805 since we want to distinguish types that are essentially identical (except
5806 for their debug representation), we use a local list here. */
5807 static tree vector_type_node_list = 0;
5809 /* Handle a "vector_size" attribute; arguments as in
5810 struct attribute_spec.handler. */
5812 static tree
5813 handle_vector_size_attribute (node, name, args, flags, no_add_attrs)
5814 tree *node;
5815 tree name;
5816 tree args;
5817 int flags ATTRIBUTE_UNUSED;
5818 bool *no_add_attrs;
5820 unsigned HOST_WIDE_INT vecsize, nunits;
5821 enum machine_mode mode, orig_mode, new_mode;
5822 tree type = *node, new_type = NULL_TREE;
5823 tree type_list_node;
5825 *no_add_attrs = true;
5827 if (! host_integerp (TREE_VALUE (args), 1))
5829 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5830 return NULL_TREE;
5833 /* Get the vector size (in bytes). */
5834 vecsize = tree_low_cst (TREE_VALUE (args), 1);
5836 /* We need to provide for vector pointers, vector arrays, and
5837 functions returning vectors. For example:
5839 __attribute__((vector_size(16))) short *foo;
5841 In this case, the mode is SI, but the type being modified is
5842 HI, so we need to look further. */
5844 while (POINTER_TYPE_P (type)
5845 || TREE_CODE (type) == FUNCTION_TYPE
5846 || TREE_CODE (type) == ARRAY_TYPE)
5847 type = TREE_TYPE (type);
5849 /* Get the mode of the type being modified. */
5850 orig_mode = TYPE_MODE (type);
5852 if (TREE_CODE (type) == RECORD_TYPE
5853 || (GET_MODE_CLASS (orig_mode) != MODE_FLOAT
5854 && GET_MODE_CLASS (orig_mode) != MODE_INT)
5855 || ! host_integerp (TYPE_SIZE_UNIT (type), 1))
5857 error ("invalid vector type for attribute `%s'",
5858 IDENTIFIER_POINTER (name));
5859 return NULL_TREE;
5862 /* Calculate how many units fit in the vector. */
5863 nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5865 /* Find a suitably sized vector. */
5866 new_mode = VOIDmode;
5867 for (mode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_mode) == MODE_INT
5868 ? MODE_VECTOR_INT
5869 : MODE_VECTOR_FLOAT);
5870 mode != VOIDmode;
5871 mode = GET_MODE_WIDER_MODE (mode))
5872 if (vecsize == GET_MODE_SIZE (mode)
5873 && nunits == (unsigned HOST_WIDE_INT) GET_MODE_NUNITS (mode))
5875 new_mode = mode;
5876 break;
5879 if (new_mode == VOIDmode)
5881 error ("no vector mode with the size and type specified could be found");
5882 return NULL_TREE;
5885 for (type_list_node = vector_type_node_list; type_list_node;
5886 type_list_node = TREE_CHAIN (type_list_node))
5888 tree other_type = TREE_VALUE (type_list_node);
5889 tree record = TYPE_DEBUG_REPRESENTATION_TYPE (other_type);
5890 tree fields = TYPE_FIELDS (record);
5891 tree field_type = TREE_TYPE (fields);
5892 tree array_type = TREE_TYPE (field_type);
5893 if (TREE_CODE (fields) != FIELD_DECL
5894 || TREE_CODE (field_type) != ARRAY_TYPE)
5895 abort ();
5897 if (TYPE_MODE (other_type) == mode && type == array_type)
5899 new_type = other_type;
5900 break;
5904 if (new_type == NULL_TREE)
5906 tree index, array, rt, list_node;
5908 new_type = (*lang_hooks.types.type_for_mode) (new_mode,
5909 TREE_UNSIGNED (type));
5911 if (!new_type)
5913 error ("no vector mode with the size and type specified could be found");
5914 return NULL_TREE;
5917 new_type = build_type_copy (new_type);
5919 /* If this is a vector, make sure we either have hardware
5920 support, or we can emulate it. */
5921 if ((GET_MODE_CLASS (mode) == MODE_VECTOR_INT
5922 || GET_MODE_CLASS (mode) == MODE_VECTOR_FLOAT)
5923 && !vector_mode_valid_p (mode))
5925 error ("unable to emulate '%s'", GET_MODE_NAME (mode));
5926 return NULL_TREE;
5929 /* Set the debug information here, because this is the only
5930 place where we know the underlying type for a vector made
5931 with vector_size. For debugging purposes we pretend a vector
5932 is an array within a structure. */
5933 index = build_int_2 (TYPE_VECTOR_SUBPARTS (new_type) - 1, 0);
5934 array = build_array_type (type, build_index_type (index));
5935 rt = make_node (RECORD_TYPE);
5937 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
5938 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
5939 layout_type (rt);
5940 TYPE_DEBUG_REPRESENTATION_TYPE (new_type) = rt;
5942 list_node = build_tree_list (NULL, new_type);
5943 TREE_CHAIN (list_node) = vector_type_node_list;
5944 vector_type_node_list = list_node;
5947 /* Build back pointers if needed. */
5948 *node = vector_size_helper (*node, new_type);
5950 return NULL_TREE;
5953 /* HACK. GROSS. This is absolutely disgusting. I wish there was a
5954 better way.
5956 If we requested a pointer to a vector, build up the pointers that
5957 we stripped off while looking for the inner type. Similarly for
5958 return values from functions.
5960 The argument "type" is the top of the chain, and "bottom" is the
5961 new type which we will point to. */
5963 static tree
5964 vector_size_helper (type, bottom)
5965 tree type, bottom;
5967 tree inner, outer;
5969 if (POINTER_TYPE_P (type))
5971 inner = vector_size_helper (TREE_TYPE (type), bottom);
5972 outer = build_pointer_type (inner);
5974 else if (TREE_CODE (type) == ARRAY_TYPE)
5976 inner = vector_size_helper (TREE_TYPE (type), bottom);
5977 outer = build_array_type (inner, TYPE_VALUES (type));
5979 else if (TREE_CODE (type) == FUNCTION_TYPE)
5981 inner = vector_size_helper (TREE_TYPE (type), bottom);
5982 outer = build_function_type (inner, TYPE_VALUES (type));
5984 else
5985 return bottom;
5987 TREE_READONLY (outer) = TREE_READONLY (type);
5988 TREE_THIS_VOLATILE (outer) = TREE_THIS_VOLATILE (type);
5990 return outer;
5993 /* Handle the "nonnull" attribute. */
5994 static tree
5995 handle_nonnull_attribute (node, name, args, flags, no_add_attrs)
5996 tree *node;
5997 tree name ATTRIBUTE_UNUSED;
5998 tree args;
5999 int flags ATTRIBUTE_UNUSED;
6000 bool *no_add_attrs;
6002 tree type = *node;
6003 unsigned HOST_WIDE_INT attr_arg_num;
6005 /* If no arguments are specified, all pointer arguments should be
6006 non-null. Veryify a full prototype is given so that the arguments
6007 will have the correct types when we actually check them later. */
6008 if (! args)
6010 if (! TYPE_ARG_TYPES (type))
6012 error ("nonnull attribute without arguments on a non-prototype");
6013 *no_add_attrs = true;
6015 return NULL_TREE;
6018 /* Argument list specified. Verify that each argument number references
6019 a pointer argument. */
6020 for (attr_arg_num = 1; args; args = TREE_CHAIN (args))
6022 tree argument;
6023 unsigned HOST_WIDE_INT arg_num, ck_num;
6025 if (! get_nonnull_operand (TREE_VALUE (args), &arg_num))
6027 error ("nonnull argument has invalid operand number (arg %lu)",
6028 (unsigned long) attr_arg_num);
6029 *no_add_attrs = true;
6030 return NULL_TREE;
6033 argument = TYPE_ARG_TYPES (type);
6034 if (argument)
6036 for (ck_num = 1; ; ck_num++)
6038 if (! argument || ck_num == arg_num)
6039 break;
6040 argument = TREE_CHAIN (argument);
6043 if (! argument
6044 || TREE_CODE (TREE_VALUE (argument)) == VOID_TYPE)
6046 error ("nonnull argument with out-of-range operand number (arg %lu, operand %lu)",
6047 (unsigned long) attr_arg_num, (unsigned long) arg_num);
6048 *no_add_attrs = true;
6049 return NULL_TREE;
6052 if (TREE_CODE (TREE_VALUE (argument)) != POINTER_TYPE)
6054 error ("nonnull argument references non-pointer operand (arg %lu, operand %lu)",
6055 (unsigned long) attr_arg_num, (unsigned long) arg_num);
6056 *no_add_attrs = true;
6057 return NULL_TREE;
6062 return NULL_TREE;
6065 /* Check the argument list of a function call for null in argument slots
6066 that are marked as requiring a non-null pointer argument. */
6068 static void
6069 check_function_nonnull (attrs, params)
6070 tree attrs;
6071 tree params;
6073 tree a, args, param;
6074 int param_num;
6076 for (a = attrs; a; a = TREE_CHAIN (a))
6078 if (is_attribute_p ("nonnull", TREE_PURPOSE (a)))
6080 args = TREE_VALUE (a);
6082 /* Walk the argument list. If we encounter an argument number we
6083 should check for non-null, do it. If the attribute has no args,
6084 then every pointer argument is checked (in which case the check
6085 for pointer type is done in check_nonnull_arg). */
6086 for (param = params, param_num = 1; ;
6087 param_num++, param = TREE_CHAIN (param))
6089 if (! param)
6090 break;
6091 if (! args || nonnull_check_p (args, param_num))
6092 check_function_arguments_recurse (check_nonnull_arg, NULL,
6093 TREE_VALUE (param),
6094 param_num);
6100 /* Helper for check_function_nonnull; given a list of operands which
6101 must be non-null in ARGS, determine if operand PARAM_NUM should be
6102 checked. */
6104 static bool
6105 nonnull_check_p (args, param_num)
6106 tree args;
6107 unsigned HOST_WIDE_INT param_num;
6109 unsigned HOST_WIDE_INT arg_num;
6111 for (; args; args = TREE_CHAIN (args))
6113 if (! get_nonnull_operand (TREE_VALUE (args), &arg_num))
6114 abort ();
6116 if (arg_num == param_num)
6117 return true;
6119 return false;
6122 /* Check that the function argument PARAM (which is operand number
6123 PARAM_NUM) is non-null. This is called by check_function_nonnull
6124 via check_function_arguments_recurse. */
6126 static void
6127 check_nonnull_arg (ctx, param, param_num)
6128 void *ctx ATTRIBUTE_UNUSED;
6129 tree param;
6130 unsigned HOST_WIDE_INT param_num;
6132 /* Just skip checking the argument if it's not a pointer. This can
6133 happen if the "nonnull" attribute was given without an operand
6134 list (which means to check every pointer argument). */
6136 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
6137 return;
6139 if (integer_zerop (param))
6140 warning ("null argument where non-null required (arg %lu)",
6141 (unsigned long) param_num);
6144 /* Helper for nonnull attribute handling; fetch the operand number
6145 from the attribute argument list. */
6147 static bool
6148 get_nonnull_operand (arg_num_expr, valp)
6149 tree arg_num_expr;
6150 unsigned HOST_WIDE_INT *valp;
6152 /* Strip any conversions from the arg number and verify they
6153 are constants. */
6154 while (TREE_CODE (arg_num_expr) == NOP_EXPR
6155 || TREE_CODE (arg_num_expr) == CONVERT_EXPR
6156 || TREE_CODE (arg_num_expr) == NON_LVALUE_EXPR)
6157 arg_num_expr = TREE_OPERAND (arg_num_expr, 0);
6159 if (TREE_CODE (arg_num_expr) != INTEGER_CST
6160 || TREE_INT_CST_HIGH (arg_num_expr) != 0)
6161 return false;
6163 *valp = TREE_INT_CST_LOW (arg_num_expr);
6164 return true;
6167 /* Handle a "nothrow" attribute; arguments as in
6168 struct attribute_spec.handler. */
6170 static tree
6171 handle_nothrow_attribute (node, name, args, flags, no_add_attrs)
6172 tree *node;
6173 tree name;
6174 tree args ATTRIBUTE_UNUSED;
6175 int flags ATTRIBUTE_UNUSED;
6176 bool *no_add_attrs;
6178 if (TREE_CODE (*node) == FUNCTION_DECL)
6179 TREE_NOTHROW (*node) = 1;
6180 /* ??? TODO: Support types. */
6181 else
6183 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
6184 *no_add_attrs = true;
6187 return NULL_TREE;
6190 /* Check for valid arguments being passed to a function. */
6191 void
6192 check_function_arguments (attrs, params)
6193 tree attrs;
6194 tree params;
6196 /* Check for null being passed in a pointer argument that must be
6197 non-null. We also need to do this if format checking is enabled. */
6199 if (warn_nonnull)
6200 check_function_nonnull (attrs, params);
6202 /* Check for errors in format strings. */
6204 if (warn_format)
6205 check_function_format (NULL, attrs, params);
6208 /* Generic argument checking recursion routine. PARAM is the argument to
6209 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
6210 once the argument is resolved. CTX is context for the callback. */
6211 void
6212 check_function_arguments_recurse (callback, ctx, param, param_num)
6213 void (*callback) PARAMS ((void *, tree, unsigned HOST_WIDE_INT));
6214 void *ctx;
6215 tree param;
6216 unsigned HOST_WIDE_INT param_num;
6218 if (TREE_CODE (param) == NOP_EXPR)
6220 /* Strip coercion. */
6221 check_function_arguments_recurse (callback, ctx,
6222 TREE_OPERAND (param, 0), param_num);
6223 return;
6226 if (TREE_CODE (param) == CALL_EXPR)
6228 tree type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (param, 0)));
6229 tree attrs;
6230 bool found_format_arg = false;
6232 /* See if this is a call to a known internationalization function
6233 that modifies a format arg. Such a function may have multiple
6234 format_arg attributes (for example, ngettext). */
6236 for (attrs = TYPE_ATTRIBUTES (type);
6237 attrs;
6238 attrs = TREE_CHAIN (attrs))
6239 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
6241 tree inner_args;
6242 tree format_num_expr;
6243 int format_num;
6244 int i;
6246 /* Extract the argument number, which was previously checked
6247 to be valid. */
6248 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
6249 while (TREE_CODE (format_num_expr) == NOP_EXPR
6250 || TREE_CODE (format_num_expr) == CONVERT_EXPR
6251 || TREE_CODE (format_num_expr) == NON_LVALUE_EXPR)
6252 format_num_expr = TREE_OPERAND (format_num_expr, 0);
6254 if (TREE_CODE (format_num_expr) != INTEGER_CST
6255 || TREE_INT_CST_HIGH (format_num_expr) != 0)
6256 abort ();
6258 format_num = TREE_INT_CST_LOW (format_num_expr);
6260 for (inner_args = TREE_OPERAND (param, 1), i = 1;
6261 inner_args != 0;
6262 inner_args = TREE_CHAIN (inner_args), i++)
6263 if (i == format_num)
6265 check_function_arguments_recurse (callback, ctx,
6266 TREE_VALUE (inner_args),
6267 param_num);
6268 found_format_arg = true;
6269 break;
6273 /* If we found a format_arg attribute and did a recursive check,
6274 we are done with checking this argument. Otherwise, we continue
6275 and this will be considered a non-literal. */
6276 if (found_format_arg)
6277 return;
6280 if (TREE_CODE (param) == COND_EXPR)
6282 /* Check both halves of the conditional expression. */
6283 check_function_arguments_recurse (callback, ctx,
6284 TREE_OPERAND (param, 1), param_num);
6285 check_function_arguments_recurse (callback, ctx,
6286 TREE_OPERAND (param, 2), param_num);
6287 return;
6290 (*callback) (ctx, param, param_num);
6293 #include "gt-c-common.h"