1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
35 #include "diagnostic.h"
42 #undef WCHAR_TYPE_SIZE
43 #define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node)
45 /* The following symbols are subsumed in the c_global_trees array, and
46 listed here individually for documentation purposes.
48 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
50 tree short_integer_type_node;
51 tree long_integer_type_node;
52 tree long_long_integer_type_node;
54 tree short_unsigned_type_node;
55 tree long_unsigned_type_node;
56 tree long_long_unsigned_type_node;
58 tree boolean_type_node;
59 tree boolean_false_node;
60 tree boolean_true_node;
62 tree ptrdiff_type_node;
64 tree unsigned_char_type_node;
65 tree signed_char_type_node;
67 tree signed_wchar_type_node;
68 tree unsigned_wchar_type_node;
71 tree double_type_node;
72 tree long_double_type_node;
74 tree complex_integer_type_node;
75 tree complex_float_type_node;
76 tree complex_double_type_node;
77 tree complex_long_double_type_node;
85 tree unsigned_intQI_type_node;
86 tree unsigned_intHI_type_node;
87 tree unsigned_intSI_type_node;
88 tree unsigned_intDI_type_node;
89 tree unsigned_intTI_type_node;
91 tree widest_integer_literal_type_node;
92 tree widest_unsigned_literal_type_node;
94 Nodes for types `void *' and `const void *'.
96 tree ptr_type_node, const_ptr_type_node;
98 Nodes for types `char *' and `const char *'.
100 tree string_type_node, const_string_type_node;
102 Type `char[SOMENUMBER]'.
103 Used when an array of char is needed and the size is irrelevant.
105 tree char_array_type_node;
107 Type `int[SOMENUMBER]' or something like it.
108 Used when an array of int needed and the size is irrelevant.
110 tree int_array_type_node;
112 Type `wchar_t[SOMENUMBER]' or something like it.
113 Used when a wide string literal is created.
115 tree wchar_array_type_node;
117 Type `int ()' -- used for implicit declaration of functions.
119 tree default_function_type;
121 Function types `int (int)', etc.
127 tree ptr_ftype_sizetype;
129 A VOID_TYPE node, packaged in a TREE_LIST.
133 The identifiers __FUNCTION__, __PRETTY_FUNCTION__, and __func__.
135 tree function_id_node;
136 tree pretty_function_id_node;
141 tree c_global_trees
[CTI_MAX
];
143 /* The elements of `ridpointers' are identifier nodes for the reserved
144 type names and storage classes. It is indexed by a RID_... value. */
147 tree (*make_fname_decl
) PARAMS ((tree
, const char *, int));
149 /* If non-NULL, the address of a language-specific function that
150 returns 1 for language-specific statement codes. */
151 int (*lang_statement_code_p
) PARAMS ((enum tree_code
));
153 /* If non-NULL, the address of a language-specific function that takes
154 any action required right before expand_function_end is called. */
155 void (*lang_expand_function_end
) PARAMS ((void));
157 /* Nonzero means the expression being parsed will never be evaluated.
158 This is a count, since unevaluated expressions can nest. */
161 enum attrs
{A_PACKED
, A_NOCOMMON
, A_COMMON
, A_NORETURN
, A_CONST
, A_T_UNION
,
162 A_NO_CHECK_MEMORY_USAGE
, A_NO_INSTRUMENT_FUNCTION
,
163 A_CONSTRUCTOR
, A_DESTRUCTOR
, A_MODE
, A_SECTION
, A_ALIGNED
,
164 A_UNUSED
, A_FORMAT
, A_FORMAT_ARG
, A_WEAK
, A_ALIAS
, A_MALLOC
,
165 A_NO_LIMIT_STACK
, A_PURE
};
167 enum format_type
{ printf_format_type
, scanf_format_type
,
168 strftime_format_type
};
170 static void add_attribute
PARAMS ((enum attrs
, const char *,
172 static void init_attributes
PARAMS ((void));
173 static void record_function_format
PARAMS ((tree
, tree
, enum format_type
,
175 static void record_international_format
PARAMS ((tree
, tree
, int));
176 static int default_valid_lang_attribute
PARAMS ((tree
, tree
, tree
, tree
));
178 /* Keep a stack of if statements. We record the number of compound
179 statements seen up to the if keyword, as well as the line number
180 and file of the if. If a potentially ambiguous else is seen, that
181 fact is recorded; the warning is issued when we can be sure that
182 the enclosing if statement does not have an else branch. */
192 static if_elt
*if_stack
;
194 /* Amount of space in the if statement stack. */
195 static int if_stack_space
= 0;
198 static int if_stack_pointer
= 0;
200 /* Record the start of an if-then, and record the start of it
201 for ambiguous else detection. */
204 c_expand_start_cond (cond
, compstmt_count
)
210 /* Make sure there is enough space on the stack. */
211 if (if_stack_space
== 0)
214 if_stack
= (if_elt
*)xmalloc (10 * sizeof (if_elt
));
216 else if (if_stack_space
== if_stack_pointer
)
218 if_stack_space
+= 10;
219 if_stack
= (if_elt
*)xrealloc (if_stack
, if_stack_space
* sizeof (if_elt
));
222 if_stmt
= build_stmt (IF_STMT
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
223 IF_COND (if_stmt
) = cond
;
226 /* Record this if statement. */
227 if_stack
[if_stack_pointer
].compstmt_count
= compstmt_count
;
228 if_stack
[if_stack_pointer
].file
= input_filename
;
229 if_stack
[if_stack_pointer
].line
= lineno
;
230 if_stack
[if_stack_pointer
].needs_warning
= 0;
231 if_stack
[if_stack_pointer
].if_stmt
= if_stmt
;
235 /* Called after the then-clause for an if-statement is processed. */
240 tree if_stmt
= if_stack
[if_stack_pointer
- 1].if_stmt
;
241 RECHAIN_STMTS (if_stmt
, THEN_CLAUSE (if_stmt
));
244 /* Record the end of an if-then. Optionally warn if a nested
245 if statement had an ambiguous else clause. */
251 if (if_stack
[if_stack_pointer
].needs_warning
)
252 warning_with_file_and_line (if_stack
[if_stack_pointer
].file
,
253 if_stack
[if_stack_pointer
].line
,
254 "suggest explicit braces to avoid ambiguous `else'");
255 last_expr_type
= NULL_TREE
;
258 /* Called between the then-clause and the else-clause
259 of an if-then-else. */
262 c_expand_start_else ()
264 /* An ambiguous else warning must be generated for the enclosing if
265 statement, unless we see an else branch for that one, too. */
267 && if_stack_pointer
> 1
268 && (if_stack
[if_stack_pointer
- 1].compstmt_count
269 == if_stack
[if_stack_pointer
- 2].compstmt_count
))
270 if_stack
[if_stack_pointer
- 2].needs_warning
= 1;
272 /* Even if a nested if statement had an else branch, it can't be
273 ambiguous if this one also has an else. So don't warn in that
274 case. Also don't warn for any if statements nested in this else. */
275 if_stack
[if_stack_pointer
- 1].needs_warning
= 0;
276 if_stack
[if_stack_pointer
- 1].compstmt_count
--;
279 /* Called after the else-clause for an if-statement is processed. */
284 tree if_stmt
= if_stack
[if_stack_pointer
- 1].if_stmt
;
285 RECHAIN_STMTS (if_stmt
, ELSE_CLAUSE (if_stmt
));
288 /* Make bindings for __FUNCTION__, __PRETTY_FUNCTION__, and __func__. */
291 declare_function_name ()
293 const char *name
, *printable_name
;
295 if (current_function_decl
== NULL
)
298 printable_name
= "top level";
302 /* Allow functions to be nameless (such as artificial ones). */
303 if (DECL_NAME (current_function_decl
))
304 name
= IDENTIFIER_POINTER (DECL_NAME (current_function_decl
));
307 printable_name
= (*decl_printable_name
) (current_function_decl
, 2);
309 /* ISO C99 defines __func__, which is a variable, not a string
310 constant, and which is not a defined symbol at file scope. */
311 (*make_fname_decl
) (func_id_node
, name
, 0);
314 (*make_fname_decl
) (function_id_node
, name
, 0);
315 (*make_fname_decl
) (pretty_function_id_node
, printable_name
, 1);
318 /* Given a chain of STRING_CST nodes,
319 concatenate them into one STRING_CST
320 and give it a suitable array-of-chars data type. */
323 combine_strings (strings
)
326 register tree value
, t
;
327 register int length
= 1;
330 int wchar_bytes
= TYPE_PRECISION (wchar_type_node
) / BITS_PER_UNIT
;
332 const int nchars_max
= flag_isoc99
? 4095 : 509;
334 if (TREE_CHAIN (strings
))
336 /* More than one in the chain, so concatenate. */
337 register char *p
, *q
;
339 /* Don't include the \0 at the end of each substring,
340 except for the last one.
341 Count wide strings and ordinary strings separately. */
342 for (t
= strings
; t
; t
= TREE_CHAIN (t
))
344 if (TREE_TYPE (t
) == wchar_array_type_node
)
346 wide_length
+= (TREE_STRING_LENGTH (t
) - wchar_bytes
);
350 length
+= (TREE_STRING_LENGTH (t
) - 1);
353 /* If anything is wide, the non-wides will be converted,
354 which makes them take more space. */
356 length
= length
* wchar_bytes
+ wide_length
;
358 p
= ggc_alloc_string (NULL
, length
);
360 /* Copy the individual strings into the new combined string.
361 If the combined string is wide, convert the chars to ints
362 for any individual strings that are not wide. */
365 for (t
= strings
; t
; t
= TREE_CHAIN (t
))
367 int len
= (TREE_STRING_LENGTH (t
)
368 - ((TREE_TYPE (t
) == wchar_array_type_node
)
370 if ((TREE_TYPE (t
) == wchar_array_type_node
) == wide_flag
)
372 memcpy (q
, TREE_STRING_POINTER (t
), len
);
378 for (i
= 0; i
< len
; i
++)
380 if (WCHAR_TYPE_SIZE
== HOST_BITS_PER_SHORT
)
381 ((short *) q
)[i
] = TREE_STRING_POINTER (t
)[i
];
383 ((int *) q
)[i
] = TREE_STRING_POINTER (t
)[i
];
385 q
+= len
* wchar_bytes
;
391 for (i
= 0; i
< wchar_bytes
; i
++)
397 value
= make_node (STRING_CST
);
398 TREE_STRING_POINTER (value
) = p
;
399 TREE_STRING_LENGTH (value
) = length
;
404 length
= TREE_STRING_LENGTH (value
);
405 if (TREE_TYPE (value
) == wchar_array_type_node
)
409 /* Compute the number of elements, for the array type. */
410 nchars
= wide_flag
? length
/ wchar_bytes
: length
;
412 if (pedantic
&& nchars
> nchars_max
)
413 pedwarn ("string length `%d' is greater than the minimum length `%d' ISO C%d is required to support",
414 nchars
, nchars_max
, flag_isoc99
? 99 : 89);
416 /* Create the array type for the string constant.
417 -Wwrite-strings says make the string constant an array of const char
418 so that copying it to a non-const pointer will get a warning.
419 For C++, this is the standard behavior. */
420 if (flag_const_strings
421 && (! flag_traditional
&& ! flag_writable_strings
))
424 = build_type_variant (wide_flag
? wchar_type_node
: char_type_node
,
427 = build_array_type (elements
,
428 build_index_type (build_int_2 (nchars
- 1, 0)));
432 = build_array_type (wide_flag
? wchar_type_node
: char_type_node
,
433 build_index_type (build_int_2 (nchars
- 1, 0)));
435 TREE_CONSTANT (value
) = 1;
436 TREE_READONLY (value
) = ! flag_writable_strings
;
437 TREE_STATIC (value
) = 1;
441 /* To speed up processing of attributes, we maintain an array of
442 IDENTIFIER_NODES and the corresponding attribute types. */
444 /* Array to hold attribute information. */
446 static struct {enum attrs id
; tree name
; int min
, max
, decl_req
;} attrtab
[50];
448 static int attrtab_idx
= 0;
450 /* Add an entry to the attribute table above. */
453 add_attribute (id
, string
, min_len
, max_len
, decl_req
)
456 int min_len
, max_len
;
461 attrtab
[attrtab_idx
].id
= id
;
462 attrtab
[attrtab_idx
].name
= get_identifier (string
);
463 attrtab
[attrtab_idx
].min
= min_len
;
464 attrtab
[attrtab_idx
].max
= max_len
;
465 attrtab
[attrtab_idx
++].decl_req
= decl_req
;
467 sprintf (buf
, "__%s__", string
);
469 attrtab
[attrtab_idx
].id
= id
;
470 attrtab
[attrtab_idx
].name
= get_identifier (buf
);
471 attrtab
[attrtab_idx
].min
= min_len
;
472 attrtab
[attrtab_idx
].max
= max_len
;
473 attrtab
[attrtab_idx
++].decl_req
= decl_req
;
476 /* Initialize attribute table. */
481 add_attribute (A_PACKED
, "packed", 0, 0, 0);
482 add_attribute (A_NOCOMMON
, "nocommon", 0, 0, 1);
483 add_attribute (A_COMMON
, "common", 0, 0, 1);
484 add_attribute (A_NORETURN
, "noreturn", 0, 0, 1);
485 add_attribute (A_NORETURN
, "volatile", 0, 0, 1);
486 add_attribute (A_UNUSED
, "unused", 0, 0, 0);
487 add_attribute (A_CONST
, "const", 0, 0, 1);
488 add_attribute (A_T_UNION
, "transparent_union", 0, 0, 0);
489 add_attribute (A_CONSTRUCTOR
, "constructor", 0, 0, 1);
490 add_attribute (A_DESTRUCTOR
, "destructor", 0, 0, 1);
491 add_attribute (A_MODE
, "mode", 1, 1, 1);
492 add_attribute (A_SECTION
, "section", 1, 1, 1);
493 add_attribute (A_ALIGNED
, "aligned", 0, 1, 0);
494 add_attribute (A_FORMAT
, "format", 3, 3, 1);
495 add_attribute (A_FORMAT_ARG
, "format_arg", 1, 1, 1);
496 add_attribute (A_WEAK
, "weak", 0, 0, 1);
497 add_attribute (A_ALIAS
, "alias", 1, 1, 1);
498 add_attribute (A_NO_INSTRUMENT_FUNCTION
, "no_instrument_function", 0, 0, 1);
499 add_attribute (A_NO_CHECK_MEMORY_USAGE
, "no_check_memory_usage", 0, 0, 1);
500 add_attribute (A_MALLOC
, "malloc", 0, 0, 1);
501 add_attribute (A_NO_LIMIT_STACK
, "no_stack_limit", 0, 0, 1);
502 add_attribute (A_PURE
, "pure", 0, 0, 1);
505 /* Default implementation of valid_lang_attribute, below. By default, there
506 are no language-specific attributes. */
509 default_valid_lang_attribute (attr_name
, attr_args
, decl
, type
)
510 tree attr_name ATTRIBUTE_UNUSED
;
511 tree attr_args ATTRIBUTE_UNUSED
;
512 tree decl ATTRIBUTE_UNUSED
;
513 tree type ATTRIBUTE_UNUSED
;
518 /* Return a 1 if ATTR_NAME and ATTR_ARGS denote a valid language-specific
519 attribute for either declaration DECL or type TYPE and 0 otherwise. */
521 int (*valid_lang_attribute
) PARAMS ((tree
, tree
, tree
, tree
))
522 = default_valid_lang_attribute
;
524 /* Process the attributes listed in ATTRIBUTES and PREFIX_ATTRIBUTES
525 and install them in NODE, which is either a DECL (including a TYPE_DECL)
526 or a TYPE. PREFIX_ATTRIBUTES can appear after the declaration specifiers
527 and declaration modifiers but before the declaration proper. */
530 decl_attributes (node
, attributes
, prefix_attributes
)
531 tree node
, attributes
, prefix_attributes
;
533 tree decl
= 0, type
= 0;
537 if (attrtab_idx
== 0)
543 type
= TREE_TYPE (decl
);
544 is_type
= TREE_CODE (node
) == TYPE_DECL
;
546 else if (TYPE_P (node
))
547 type
= node
, is_type
= 1;
549 #ifdef PRAGMA_INSERT_ATTRIBUTES
550 /* If the code in c-pragma.c wants to insert some attributes then
551 allow it to do so. Do this before allowing machine back ends to
552 insert attributes, so that they have the opportunity to override
553 anything done here. */
554 PRAGMA_INSERT_ATTRIBUTES (node
, & attributes
, & prefix_attributes
);
557 #ifdef INSERT_ATTRIBUTES
558 INSERT_ATTRIBUTES (node
, & attributes
, & prefix_attributes
);
561 attributes
= chainon (prefix_attributes
, attributes
);
563 for (a
= attributes
; a
; a
= TREE_CHAIN (a
))
565 tree name
= TREE_PURPOSE (a
);
566 tree args
= TREE_VALUE (a
);
570 for (i
= 0; i
< attrtab_idx
; i
++)
571 if (attrtab
[i
].name
== name
)
574 if (i
== attrtab_idx
)
576 if (! valid_machine_attribute (name
, args
, decl
, type
)
577 && ! (* valid_lang_attribute
) (name
, args
, decl
, type
))
578 warning ("`%s' attribute directive ignored",
579 IDENTIFIER_POINTER (name
));
581 type
= TREE_TYPE (decl
);
584 else if (attrtab
[i
].decl_req
&& decl
== 0)
586 warning ("`%s' attribute does not apply to types",
587 IDENTIFIER_POINTER (name
));
590 else if (list_length (args
) < attrtab
[i
].min
591 || list_length (args
) > attrtab
[i
].max
)
593 error ("wrong number of arguments specified for `%s' attribute",
594 IDENTIFIER_POINTER (name
));
603 TYPE_PACKED (type
) = 1;
604 else if (TREE_CODE (decl
) == FIELD_DECL
)
605 DECL_PACKED (decl
) = 1;
606 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
607 used for DECL_REGISTER. It wouldn't mean anything anyway. */
609 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
613 if (TREE_CODE (decl
) == VAR_DECL
)
614 DECL_COMMON (decl
) = 0;
616 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
620 if (TREE_CODE (decl
) == VAR_DECL
)
621 DECL_COMMON (decl
) = 1;
623 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
627 if (TREE_CODE (decl
) == FUNCTION_DECL
)
628 TREE_THIS_VOLATILE (decl
) = 1;
629 else if (TREE_CODE (type
) == POINTER_TYPE
630 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
631 TREE_TYPE (decl
) = type
633 (build_type_variant (TREE_TYPE (type
),
634 TREE_READONLY (TREE_TYPE (type
)), 1));
636 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
640 if (TREE_CODE (decl
) == FUNCTION_DECL
)
641 DECL_IS_MALLOC (decl
) = 1;
642 /* ??? TODO: Support types. */
644 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
650 TREE_USED (decl
) = 1;
652 TREE_USED (type
) = 1;
653 else if (TREE_CODE (decl
) == PARM_DECL
654 || TREE_CODE (decl
) == VAR_DECL
655 || TREE_CODE (decl
) == FUNCTION_DECL
656 || TREE_CODE (decl
) == LABEL_DECL
)
657 TREE_USED (decl
) = 1;
659 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
663 if (TREE_CODE (decl
) == FUNCTION_DECL
)
664 TREE_READONLY (decl
) = 1;
665 else if (TREE_CODE (type
) == POINTER_TYPE
666 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
667 TREE_TYPE (decl
) = type
669 (build_type_variant (TREE_TYPE (type
), 1,
670 TREE_THIS_VOLATILE (TREE_TYPE (type
))));
672 warning ( "`%s' attribute ignored", IDENTIFIER_POINTER (name
));
676 if (TREE_CODE (decl
) == FUNCTION_DECL
)
677 DECL_IS_PURE (decl
) = 1;
678 /* ??? TODO: Support types. */
680 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
686 && TREE_CODE (type
) == UNION_TYPE
688 || (TYPE_FIELDS (type
) != 0
689 && TYPE_MODE (type
) == DECL_MODE (TYPE_FIELDS (type
)))))
690 TYPE_TRANSPARENT_UNION (type
) = 1;
691 else if (decl
!= 0 && TREE_CODE (decl
) == PARM_DECL
692 && TREE_CODE (type
) == UNION_TYPE
693 && TYPE_MODE (type
) == DECL_MODE (TYPE_FIELDS (type
)))
694 DECL_TRANSPARENT_UNION (decl
) = 1;
696 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
700 if (TREE_CODE (decl
) == FUNCTION_DECL
701 && TREE_CODE (type
) == FUNCTION_TYPE
702 && decl_function_context (decl
) == 0)
704 DECL_STATIC_CONSTRUCTOR (decl
) = 1;
705 TREE_USED (decl
) = 1;
708 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
712 if (TREE_CODE (decl
) == FUNCTION_DECL
713 && TREE_CODE (type
) == FUNCTION_TYPE
714 && decl_function_context (decl
) == 0)
716 DECL_STATIC_DESTRUCTOR (decl
) = 1;
717 TREE_USED (decl
) = 1;
720 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
724 if (TREE_CODE (TREE_VALUE (args
)) != IDENTIFIER_NODE
)
725 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
729 const char *p
= IDENTIFIER_POINTER (TREE_VALUE (args
));
730 int len
= strlen (p
);
731 enum machine_mode mode
= VOIDmode
;
734 if (len
> 4 && p
[0] == '_' && p
[1] == '_'
735 && p
[len
- 1] == '_' && p
[len
- 2] == '_')
737 char *newp
= (char *) alloca (len
- 1);
739 strcpy (newp
, &p
[2]);
740 newp
[len
- 4] = '\0';
744 /* Give this decl a type with the specified mode.
745 First check for the special modes. */
746 if (! strcmp (p
, "byte"))
748 else if (!strcmp (p
, "word"))
750 else if (! strcmp (p
, "pointer"))
753 for (j
= 0; j
< NUM_MACHINE_MODES
; j
++)
754 if (!strcmp (p
, GET_MODE_NAME (j
)))
755 mode
= (enum machine_mode
) j
;
757 if (mode
== VOIDmode
)
758 error ("unknown machine mode `%s'", p
);
759 else if (0 == (typefm
= type_for_mode (mode
,
760 TREE_UNSIGNED (type
))))
761 error ("no data type for mode `%s'", p
);
764 TREE_TYPE (decl
) = type
= typefm
;
765 DECL_SIZE (decl
) = DECL_SIZE_UNIT (decl
) = 0;
766 layout_decl (decl
, 0);
772 #ifdef ASM_OUTPUT_SECTION_NAME
773 if ((TREE_CODE (decl
) == FUNCTION_DECL
774 || TREE_CODE (decl
) == VAR_DECL
)
775 && TREE_CODE (TREE_VALUE (args
)) == STRING_CST
)
777 if (TREE_CODE (decl
) == VAR_DECL
778 && current_function_decl
!= NULL_TREE
779 && ! TREE_STATIC (decl
))
780 error_with_decl (decl
,
781 "section attribute cannot be specified for local variables");
782 /* The decl may have already been given a section attribute from
783 a previous declaration. Ensure they match. */
784 else if (DECL_SECTION_NAME (decl
) != NULL_TREE
785 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl
)),
786 TREE_STRING_POINTER (TREE_VALUE (args
))) != 0)
787 error_with_decl (node
,
788 "section of `%s' conflicts with previous declaration");
790 DECL_SECTION_NAME (decl
) = TREE_VALUE (args
);
793 error_with_decl (node
,
794 "section attribute not allowed for `%s'");
796 error_with_decl (node
,
797 "section attributes are not supported for this target");
804 = (args
? TREE_VALUE (args
)
805 : size_int (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
808 /* Strip any NOPs of any kind. */
809 while (TREE_CODE (align_expr
) == NOP_EXPR
810 || TREE_CODE (align_expr
) == CONVERT_EXPR
811 || TREE_CODE (align_expr
) == NON_LVALUE_EXPR
)
812 align_expr
= TREE_OPERAND (align_expr
, 0);
814 if (TREE_CODE (align_expr
) != INTEGER_CST
)
816 error ("requested alignment is not a constant");
820 if ((i
= tree_log2 (align_expr
)) == -1)
821 error ("requested alignment is not a power of 2");
822 else if (i
> HOST_BITS_PER_INT
- 2)
823 error ("requested alignment is too large");
826 /* If we have a TYPE_DECL, then copy the type, so that we
827 don't accidentally modify a builtin type. See pushdecl. */
828 if (decl
&& TREE_TYPE (decl
) != error_mark_node
829 && DECL_ORIGINAL_TYPE (decl
) == NULL_TREE
)
831 tree tt
= TREE_TYPE (decl
);
832 DECL_ORIGINAL_TYPE (decl
) = tt
;
833 tt
= build_type_copy (tt
);
834 TYPE_NAME (tt
) = decl
;
835 TREE_USED (tt
) = TREE_USED (decl
);
836 TREE_TYPE (decl
) = tt
;
840 TYPE_ALIGN (type
) = (1 << i
) * BITS_PER_UNIT
;
841 TYPE_USER_ALIGN (type
) = 1;
843 else if (TREE_CODE (decl
) != VAR_DECL
844 && TREE_CODE (decl
) != FIELD_DECL
)
845 error_with_decl (decl
,
846 "alignment may not be specified for `%s'");
849 DECL_ALIGN (decl
) = (1 << i
) * BITS_PER_UNIT
;
850 DECL_USER_ALIGN (decl
) = 1;
857 tree format_type_id
= TREE_VALUE (args
);
858 tree format_num_expr
= TREE_VALUE (TREE_CHAIN (args
));
859 tree first_arg_num_expr
860 = TREE_VALUE (TREE_CHAIN (TREE_CHAIN (args
)));
861 unsigned HOST_WIDE_INT format_num
, first_arg_num
;
862 enum format_type format_type
;
864 unsigned int arg_num
;
866 if (TREE_CODE (decl
) != FUNCTION_DECL
)
868 error_with_decl (decl
,
869 "argument format specified for non-function `%s'");
873 if (TREE_CODE (format_type_id
) != IDENTIFIER_NODE
)
875 error ("unrecognized format specifier");
880 const char *p
= IDENTIFIER_POINTER (format_type_id
);
882 if (!strcmp (p
, "printf") || !strcmp (p
, "__printf__"))
883 format_type
= printf_format_type
;
884 else if (!strcmp (p
, "scanf") || !strcmp (p
, "__scanf__"))
885 format_type
= scanf_format_type
;
886 else if (!strcmp (p
, "strftime")
887 || !strcmp (p
, "__strftime__"))
888 format_type
= strftime_format_type
;
891 warning ("`%s' is an unrecognized format function type", p
);
896 /* Strip any conversions from the string index and first arg number
897 and verify they are constants. */
898 while (TREE_CODE (format_num_expr
) == NOP_EXPR
899 || TREE_CODE (format_num_expr
) == CONVERT_EXPR
900 || TREE_CODE (format_num_expr
) == NON_LVALUE_EXPR
)
901 format_num_expr
= TREE_OPERAND (format_num_expr
, 0);
903 while (TREE_CODE (first_arg_num_expr
) == NOP_EXPR
904 || TREE_CODE (first_arg_num_expr
) == CONVERT_EXPR
905 || TREE_CODE (first_arg_num_expr
) == NON_LVALUE_EXPR
)
906 first_arg_num_expr
= TREE_OPERAND (first_arg_num_expr
, 0);
908 if (TREE_CODE (format_num_expr
) != INTEGER_CST
909 || TREE_INT_CST_HIGH (format_num_expr
) != 0
910 || TREE_CODE (first_arg_num_expr
) != INTEGER_CST
911 || TREE_INT_CST_HIGH (first_arg_num_expr
) != 0)
913 error ("format string has invalid operand number");
917 format_num
= TREE_INT_CST_LOW (format_num_expr
);
918 first_arg_num
= TREE_INT_CST_LOW (first_arg_num_expr
);
919 if (first_arg_num
!= 0 && first_arg_num
<= format_num
)
921 error ("format string arg follows the args to be formatted");
925 /* If a parameter list is specified, verify that the format_num
926 argument is actually a string, in case the format attribute
928 argument
= TYPE_ARG_TYPES (type
);
931 for (arg_num
= 1; argument
!= 0 && arg_num
!= format_num
;
932 ++arg_num
, argument
= TREE_CHAIN (argument
))
936 || TREE_CODE (TREE_VALUE (argument
)) != POINTER_TYPE
937 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (argument
)))
940 error ("format string arg not a string type");
944 else if (first_arg_num
!= 0)
946 /* Verify that first_arg_num points to the last arg,
949 arg_num
++, argument
= TREE_CHAIN (argument
);
951 if (arg_num
!= first_arg_num
)
953 error ("args to be formatted is not '...'");
959 record_function_format (DECL_NAME (decl
),
960 DECL_ASSEMBLER_NAME (decl
),
961 format_type
, format_num
, first_arg_num
);
967 tree format_num_expr
= TREE_VALUE (args
);
968 unsigned HOST_WIDE_INT format_num
;
969 unsigned int arg_num
;
972 if (TREE_CODE (decl
) != FUNCTION_DECL
)
974 error_with_decl (decl
,
975 "argument format specified for non-function `%s'");
979 /* Strip any conversions from the first arg number and verify it
981 while (TREE_CODE (format_num_expr
) == NOP_EXPR
982 || TREE_CODE (format_num_expr
) == CONVERT_EXPR
983 || TREE_CODE (format_num_expr
) == NON_LVALUE_EXPR
)
984 format_num_expr
= TREE_OPERAND (format_num_expr
, 0);
986 if (TREE_CODE (format_num_expr
) != INTEGER_CST
987 || TREE_INT_CST_HIGH (format_num_expr
) != 0)
989 error ("format string has invalid operand number");
993 format_num
= TREE_INT_CST_LOW (format_num_expr
);
995 /* If a parameter list is specified, verify that the format_num
996 argument is actually a string, in case the format attribute
998 argument
= TYPE_ARG_TYPES (type
);
1001 for (arg_num
= 1; argument
!= 0 && arg_num
!= format_num
;
1002 ++arg_num
, argument
= TREE_CHAIN (argument
))
1006 || TREE_CODE (TREE_VALUE (argument
)) != POINTER_TYPE
1007 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_VALUE (argument
)))
1010 error ("format string arg not a string type");
1015 if (TREE_CODE (TREE_TYPE (TREE_TYPE (decl
))) != POINTER_TYPE
1016 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (TREE_TYPE (decl
))))
1019 error ("function does not return string type");
1023 record_international_format (DECL_NAME (decl
),
1024 DECL_ASSEMBLER_NAME (decl
),
1030 declare_weak (decl
);
1034 if ((TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_INITIAL (decl
))
1035 || (TREE_CODE (decl
) != FUNCTION_DECL
&& ! DECL_EXTERNAL (decl
)))
1036 error_with_decl (decl
,
1037 "`%s' defined both normally and as an alias");
1038 else if (decl_function_context (decl
) == 0)
1042 id
= TREE_VALUE (args
);
1043 if (TREE_CODE (id
) != STRING_CST
)
1045 error ("alias arg not a string");
1048 id
= get_identifier (TREE_STRING_POINTER (id
));
1049 /* This counts as a use of the object pointed to. */
1052 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1053 DECL_INITIAL (decl
) = error_mark_node
;
1055 DECL_EXTERNAL (decl
) = 0;
1056 assemble_alias (decl
, id
);
1059 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name
));
1062 case A_NO_CHECK_MEMORY_USAGE
:
1063 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1065 error_with_decl (decl
,
1066 "`%s' attribute applies only to functions",
1067 IDENTIFIER_POINTER (name
));
1069 else if (DECL_INITIAL (decl
))
1071 error_with_decl (decl
,
1072 "can't set `%s' attribute after definition",
1073 IDENTIFIER_POINTER (name
));
1076 DECL_NO_CHECK_MEMORY_USAGE (decl
) = 1;
1079 case A_NO_INSTRUMENT_FUNCTION
:
1080 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1082 error_with_decl (decl
,
1083 "`%s' attribute applies only to functions",
1084 IDENTIFIER_POINTER (name
));
1086 else if (DECL_INITIAL (decl
))
1088 error_with_decl (decl
,
1089 "can't set `%s' attribute after definition",
1090 IDENTIFIER_POINTER (name
));
1093 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl
) = 1;
1096 case A_NO_LIMIT_STACK
:
1097 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1099 error_with_decl (decl
,
1100 "`%s' attribute applies only to functions",
1101 IDENTIFIER_POINTER (name
));
1103 else if (DECL_INITIAL (decl
))
1105 error_with_decl (decl
,
1106 "can't set `%s' attribute after definition",
1107 IDENTIFIER_POINTER (name
));
1110 DECL_NO_LIMIT_STACK (decl
) = 1;
1116 /* Split SPECS_ATTRS, a list of declspecs and prefix attributes, into two
1117 lists. SPECS_ATTRS may also be just a typespec (eg: RECORD_TYPE).
1119 The head of the declspec list is stored in DECLSPECS.
1120 The head of the attribute list is stored in PREFIX_ATTRIBUTES.
1122 Note that attributes in SPECS_ATTRS are stored in the TREE_PURPOSE of
1123 the list elements. We drop the containing TREE_LIST nodes and link the
1124 resulting attributes together the way decl_attributes expects them. */
1127 split_specs_attrs (specs_attrs
, declspecs
, prefix_attributes
)
1129 tree
*declspecs
, *prefix_attributes
;
1131 tree t
, s
, a
, next
, specs
, attrs
;
1133 /* This can happen after an __extension__ in pedantic mode. */
1134 if (specs_attrs
!= NULL_TREE
1135 && TREE_CODE (specs_attrs
) == INTEGER_CST
)
1137 *declspecs
= NULL_TREE
;
1138 *prefix_attributes
= NULL_TREE
;
1142 /* This can happen in c++ (eg: decl: typespec initdecls ';'). */
1143 if (specs_attrs
!= NULL_TREE
1144 && TREE_CODE (specs_attrs
) != TREE_LIST
)
1146 *declspecs
= specs_attrs
;
1147 *prefix_attributes
= NULL_TREE
;
1151 /* Remember to keep the lists in the same order, element-wise. */
1153 specs
= s
= NULL_TREE
;
1154 attrs
= a
= NULL_TREE
;
1155 for (t
= specs_attrs
; t
; t
= next
)
1157 next
= TREE_CHAIN (t
);
1158 /* Declspecs have a non-NULL TREE_VALUE. */
1159 if (TREE_VALUE (t
) != NULL_TREE
)
1161 if (specs
== NULL_TREE
)
1171 if (attrs
== NULL_TREE
)
1172 attrs
= a
= TREE_PURPOSE (t
);
1175 TREE_CHAIN (a
) = TREE_PURPOSE (t
);
1176 a
= TREE_PURPOSE (t
);
1178 /* More attrs can be linked here, move A to the end. */
1179 while (TREE_CHAIN (a
) != NULL_TREE
)
1184 /* Terminate the lists. */
1186 TREE_CHAIN (s
) = NULL_TREE
;
1188 TREE_CHAIN (a
) = NULL_TREE
;
1192 *prefix_attributes
= attrs
;
1195 /* Strip attributes from SPECS_ATTRS, a list of declspecs and attributes.
1196 This function is used by the parser when a rule will accept attributes
1197 in a particular position, but we don't want to support that just yet.
1199 A warning is issued for every ignored attribute. */
1202 strip_attrs (specs_attrs
)
1207 split_specs_attrs (specs_attrs
, &specs
, &attrs
);
1211 warning ("`%s' attribute ignored",
1212 IDENTIFIER_POINTER (TREE_PURPOSE (attrs
)));
1213 attrs
= TREE_CHAIN (attrs
);
1219 /* Check a printf/fprintf/sprintf/scanf/fscanf/sscanf format against
1220 a parameter list. */
1222 /* The meaningfully distinct length modifiers for format checking recognised
1239 /* The standard versions in which various format features appeared. */
1240 enum format_std_version
1249 /* Structure describing a length modifier supported in format checking, and
1250 possibly a doubled version such as "hh". */
1253 /* Name of the single-character length modifier. */
1255 /* Index into a format_char_info.types array. */
1256 enum format_lengths index
;
1257 /* Standard version this length appears in. */
1258 enum format_std_version std
;
1259 /* Same, if the modifier can be repeated, or NULL if it can't. */
1260 const char *double_name
;
1261 enum format_lengths double_index
;
1262 enum format_std_version double_std
;
1263 } format_length_info
;
1266 /* Structure desribing the combination of a conversion specifier
1267 (or a set of specifiers which act identically) and a length modifier. */
1270 /* The standard version this combination of length and type appeared in.
1271 This is only relevant if greater than those for length and type
1272 individually; otherwise it is ignored. */
1273 enum format_std_version std
;
1274 /* The name to use for the type, if different from that generated internally
1275 (e.g., "signed size_t"). */
1277 /* The type itself. */
1279 } format_type_detail
;
1282 /* Macros to fill out tables of these. */
1283 #define BADLEN { 0, NULL, NULL }
1284 #define NOLENGTHS { BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }
1287 /* Structure desribing a format conversion specifier (or a set of specifiers
1288 which act identically), and the length modifiers used with it. */
1291 const char *format_chars
;
1293 enum format_std_version std
;
1294 /* Types accepted for each length modifier. */
1295 format_type_detail types
[FMT_LEN_MAX
];
1296 /* List of other modifier characters allowed with these specifiers.
1297 This lists flags, and additionally "w" for width, "p" for precision,
1298 "a" for scanf "a" allocation extension (not applicable in C99 mode),
1299 "*" for scanf suppression, and "E" and "O" for those strftime
1301 const char *flag_chars
;
1302 /* List of additional flags describing these conversion specifiers.
1303 "c" for generic character pointers being allowed, "2" for strftime
1304 two digit year formats, "3" for strftime formats giving two digit
1305 years in some locales, "o" if use of strftime "O"
1306 is a GNU extension beyond C99, "W" if the argument is a pointer
1307 which is dereferenced and written into, "i" for printf integer
1308 formats where the '0' flag is ignored with precision, and "["
1309 for the starting character of a scanf scanset. */
1314 /* Structure describing a particular kind of format processed by GCC. */
1317 /* The name of this kind of format, for use in diagnostics. */
1319 /* Specifications of the length modifiers accepted; possibly NULL. */
1320 const format_length_info
*length_char_specs
;
1321 /* Details of the conversion specification characters accepted. */
1322 const format_char_info
*conversion_specs
;
1326 /* Structure describing details of a type expected in format checking,
1327 and the type to check against it. */
1328 typedef struct format_wanted_type
1330 /* The type wanted. */
1332 /* The name of this type to use in diagnostics. */
1333 const char *wanted_type_name
;
1334 /* The level of indirection through pointers at which this type occurs. */
1336 /* Whether, when pointer_count is 1, to allow any character type when
1337 pedantic, rather than just the character or void type specified. */
1338 int char_lenient_flag
;
1339 /* Whether the argument, dereferenced once, is written into and so the
1340 argument must not be a pointer to a const-qualified type. */
1341 int writing_in_flag
;
1342 /* If warnings should be of the form "field precision is not type int",
1343 the name to use (in this case "field precision"), otherwise NULL,
1344 for "%s format, %s arg" type messages. If (in an extension), this
1345 is a pointer type, wanted_type_name should be set to include the
1346 terminating '*' characters of the type name to give a correct
1349 /* The actual parameter to check against the wanted type. */
1351 /* The argument number of that parameter. */
1353 /* The next type to check for this format conversion, or NULL if none. */
1354 struct format_wanted_type
*next
;
1355 } format_wanted_type
;
1358 static const format_length_info printf_length_specs
[] =
1360 { "h", FMT_LEN_h
, STD_C89
, "hh", FMT_LEN_hh
, STD_C99
},
1361 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C99
},
1362 { "q", FMT_LEN_ll
, STD_EXT
, NULL
, 0, 0 },
1363 { "L", FMT_LEN_L
, STD_C89
, NULL
, 0, 0 },
1364 { "z", FMT_LEN_z
, STD_C99
, NULL
, 0, 0 },
1365 { "Z", FMT_LEN_z
, STD_EXT
, NULL
, 0, 0 },
1366 { "t", FMT_LEN_t
, STD_C99
, NULL
, 0, 0 },
1367 { "j", FMT_LEN_j
, STD_C99
, NULL
, 0, 0 },
1368 { NULL
, 0, 0, NULL
, 0, 0 }
1372 /* This differs from printf_length_specs only in that "Z" is not accepted. */
1373 static const format_length_info scanf_length_specs
[] =
1375 { "h", FMT_LEN_h
, STD_C89
, "hh", FMT_LEN_hh
, STD_C99
},
1376 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C99
},
1377 { "q", FMT_LEN_ll
, STD_EXT
, NULL
, 0, 0 },
1378 { "L", FMT_LEN_L
, STD_C89
, NULL
, 0, 0 },
1379 { "z", FMT_LEN_z
, STD_C99
, NULL
, 0, 0 },
1380 { "t", FMT_LEN_t
, STD_C99
, NULL
, 0, 0 },
1381 { "j", FMT_LEN_j
, STD_C99
, NULL
, 0, 0 },
1382 { NULL
, 0, 0, NULL
, 0, 0 }
1386 #define T_I &integer_type_node
1387 #define T89_I { STD_C89, NULL, T_I }
1388 #define T99_I { STD_C99, NULL, T_I }
1389 #define T_L &long_integer_type_node
1390 #define T89_L { STD_C89, NULL, T_L }
1391 #define T_LL &long_long_integer_type_node
1392 #define T99_LL { STD_C99, NULL, T_LL }
1393 #define TEX_LL { STD_EXT, NULL, T_LL }
1394 #define T_S &short_integer_type_node
1395 #define T89_S { STD_C89, NULL, T_S }
1396 #define T_UI &unsigned_type_node
1397 #define T89_UI { STD_C89, NULL, T_UI }
1398 #define T99_UI { STD_C99, NULL, T_UI }
1399 #define T_UL &long_unsigned_type_node
1400 #define T89_UL { STD_C89, NULL, T_UL }
1401 #define T_ULL &long_long_unsigned_type_node
1402 #define T99_ULL { STD_C99, NULL, T_ULL }
1403 #define TEX_ULL { STD_EXT, NULL, T_ULL }
1404 #define T_US &short_unsigned_type_node
1405 #define T89_US { STD_C89, NULL, T_US }
1406 #define T_F &float_type_node
1407 #define T89_F { STD_C89, NULL, T_F }
1408 #define T99_F { STD_C99, NULL, T_F }
1409 #define T_D &double_type_node
1410 #define T89_D { STD_C89, NULL, T_D }
1411 #define T99_D { STD_C99, NULL, T_D }
1412 #define T_LD &long_double_type_node
1413 #define T89_LD { STD_C89, NULL, T_LD }
1414 #define T99_LD { STD_C99, NULL, T_LD }
1415 #define T_C &char_type_node
1416 #define T89_C { STD_C89, NULL, T_C }
1417 #define T_SC &signed_char_type_node
1418 #define T99_SC { STD_C99, NULL, T_SC }
1419 #define T_UC &unsigned_char_type_node
1420 #define T99_UC { STD_C99, NULL, T_UC }
1421 #define T_V &void_type_node
1422 #define T89_V { STD_C89, NULL, T_V }
1423 #define T_W &wchar_type_node
1424 #define T94_W { STD_C94, "wchar_t", T_W }
1425 #define TEX_W { STD_EXT, "wchar_t", T_W }
1426 #define T_WI &wint_type_node
1427 #define T94_WI { STD_C94, "wint_t", T_WI }
1428 #define TEX_WI { STD_EXT, "wint_t", T_WI }
1429 #define T_ST &c_size_type_node
1430 #define T99_ST { STD_C99, "size_t", T_ST }
1431 #define T_SST &signed_size_type_node
1432 #define T99_SST { STD_C99, "signed size_t", T_SST }
1433 #define T_PD &ptrdiff_type_node
1434 #define T99_PD { STD_C99, "ptrdiff_t", T_PD }
1435 #define T_UPD &unsigned_ptrdiff_type_node
1436 #define T99_UPD { STD_C99, "unsigned ptrdiff_t", T_UPD }
1437 #define T_IM NULL /* intmax_t not yet implemented. */
1438 #define T99_IM { STD_C99, "intmax_t", T_IM }
1439 #define T_UIM NULL /* uintmax_t not yet implemented. */
1440 #define T99_UIM { STD_C99, "uintmax_t", T_UIM }
1442 static const format_char_info print_char_table
[] =
1444 /* C89 conversion specifiers. */
1445 { "di", 0, STD_C89
, { T89_I
, T99_I
, T89_I
, T89_L
, T99_LL
, TEX_LL
, T99_SST
, T99_PD
, T99_IM
}, "-wp0 +'I", "i" },
1446 { "oxX", 0, STD_C89
, { T89_UI
, T99_UI
, T89_UI
, T89_UL
, T99_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
}, "-wp0#", "i" },
1447 { "u", 0, STD_C89
, { T89_UI
, T99_UI
, T89_UI
, T89_UL
, T99_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
}, "-wp0'I", "i" },
1448 { "fgG", 0, STD_C89
, { T89_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +#'", "" },
1449 { "eE", 0, STD_C89
, { T89_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +#", "" },
1450 { "c", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T94_WI
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "" },
1451 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "c" },
1452 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "c" },
1453 { "n", 1, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T99_LL
, BADLEN
, T99_SST
, T99_PD
, T99_IM
}, "", "W" },
1454 /* C99 conversion specifiers. */
1455 { "F", 0, STD_C99
, { T99_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +#'", "" },
1456 { "aA", 0, STD_C99
, { T99_D
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
}, "-wp0 +#", "" },
1457 /* X/Open conversion specifiers. */
1458 { "C", 0, STD_EXT
, { TEX_WI
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-w", "" },
1459 { "S", 1, STD_EXT
, { TEX_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "" },
1460 /* GNU conversion specifiers. */
1461 { "m", 0, STD_EXT
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "-wp", "" },
1462 { NULL
, 0, 0, NOLENGTHS
, NULL
, NULL
}
1465 static const format_char_info scan_char_table
[] =
1467 /* C89 conversion specifiers. */
1468 { "di", 1, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T99_LL
, TEX_LL
, T99_SST
, T99_PD
, T99_IM
}, "*w", "W" },
1469 { "ouxX", 1, STD_C89
, { T89_UI
, T99_UC
, T89_US
, T89_UL
, T99_ULL
, TEX_ULL
, T99_ST
, T99_UPD
, T99_UIM
}, "*w", "W" },
1470 { "efgEG", 1, STD_C89
, { T89_F
, BADLEN
, BADLEN
, T89_D
, BADLEN
, T89_LD
, BADLEN
, BADLEN
, BADLEN
}, "*w", "W" },
1471 { "c", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*w", "cW" },
1472 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*aw", "cW" },
1473 { "[", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, T94_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*aw", "cW[" },
1474 { "p", 2, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*w", "W" },
1475 { "n", 1, STD_C89
, { T89_I
, T99_SC
, T89_S
, T89_L
, T99_LL
, BADLEN
, T99_SST
, T99_PD
, T99_IM
}, "", "W" },
1476 /* C99 conversion specifiers. */
1477 { "FaA", 1, STD_C99
, { T99_F
, BADLEN
, BADLEN
, T99_D
, BADLEN
, T99_LD
, BADLEN
, BADLEN
, BADLEN
}, "*w", "W" },
1478 /* X/Open conversion specifiers. */
1479 { "C", 1, STD_EXT
, { TEX_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*w", "W" },
1480 { "S", 1, STD_EXT
, { TEX_W
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "*aw", "W" },
1481 { NULL
, 0, 0, NOLENGTHS
, NULL
, NULL
}
1484 static format_char_info time_char_table
[] =
1486 /* C89 conversion specifiers. */
1487 { "ABZab", 0, STD_C89
, NOLENGTHS
, "^#", "" },
1488 { "cx", 0, STD_C89
, NOLENGTHS
, "E", "3" },
1489 { "HIMSUWdmw", 0, STD_C89
, NOLENGTHS
, "-_0Ow", "" },
1490 { "j", 0, STD_C89
, NOLENGTHS
, "-_0Ow", "o" },
1491 { "p", 0, STD_C89
, NOLENGTHS
, "#", "" },
1492 { "X", 0, STD_C89
, NOLENGTHS
, "E", "" },
1493 { "y", 0, STD_C89
, NOLENGTHS
, "EO-_0w", "2" },
1494 { "Y", 0, STD_C89
, NOLENGTHS
, "-_0EOw", "o" },
1495 { "%", 0, STD_C89
, NOLENGTHS
, "", "" },
1496 /* C99 conversion specifiers. */
1497 { "C", 0, STD_C99
, NOLENGTHS
, "-_0EOw", "o" },
1498 { "D", 0, STD_C99
, NOLENGTHS
, "", "2" },
1499 { "eVu", 0, STD_C99
, NOLENGTHS
, "-_0Ow", "" },
1500 { "FRTnrt", 0, STD_C99
, NOLENGTHS
, "", "" },
1501 { "g", 0, STD_C99
, NOLENGTHS
, "O-_0w", "2o" },
1502 { "G", 0, STD_C99
, NOLENGTHS
, "-_0Ow", "o" },
1503 { "h", 0, STD_C99
, NOLENGTHS
, "^#", "" },
1504 { "z", 0, STD_C99
, NOLENGTHS
, "O", "o" },
1505 /* GNU conversion specifiers. */
1506 { "kls", 0, STD_EXT
, NOLENGTHS
, "-_0Ow", "" },
1507 { "P", 0, STD_EXT
, NOLENGTHS
, "", "" },
1508 { NULL
, 0, 0, NOLENGTHS
, NULL
, NULL
}
1512 /* This must be in the same order as enum format_type. */
1513 static const format_kind_info format_types
[] =
1515 { "printf", printf_length_specs
, print_char_table
},
1516 { "scanf", scanf_length_specs
, scan_char_table
},
1517 { "strftime", NULL
, time_char_table
}
1521 typedef struct function_format_info
1523 struct function_format_info
*next
; /* next structure on the list */
1524 tree name
; /* identifier such as "printf" */
1525 tree assembler_name
; /* optional mangled identifier (for C++) */
1526 enum format_type format_type
; /* type of format (printf, scanf, etc.) */
1527 int format_num
; /* number of format argument */
1528 int first_arg_num
; /* number of first arg (zero for varargs) */
1529 } function_format_info
;
1531 static function_format_info
*function_format_list
= NULL
;
1533 typedef struct international_format_info
1535 struct international_format_info
*next
; /* next structure on the list */
1536 tree name
; /* identifier such as "gettext" */
1537 tree assembler_name
; /* optional mangled identifier (for C++) */
1538 int format_num
; /* number of format argument */
1539 } international_format_info
;
1541 static international_format_info
*international_format_list
= NULL
;
1543 static void check_format_info
PARAMS ((int *, function_format_info
*, tree
));
1544 static void status_warning
PARAMS ((int *, const char *, ...))
1547 static void init_dollar_format_checking
PARAMS ((int, tree
));
1548 static int maybe_read_dollar_number
PARAMS ((int *, const char **, int,
1550 static void finish_dollar_format_checking
PARAMS ((int *));
1552 static void check_format_types
PARAMS ((int *, format_wanted_type
*));
1553 static int is_valid_printf_arglist
PARAMS ((tree
));
1554 static rtx
c_expand_builtin (tree
, rtx
, enum machine_mode
, enum expand_modifier
);
1555 static rtx c_expand_builtin_printf
PARAMS ((tree
, rtx
, enum machine_mode
,
1556 enum expand_modifier
, int));
1558 /* Initialize the table of functions to perform format checking on.
1559 The ISO C functions are always checked (whether <stdio.h> is
1560 included or not), since it is common to call printf without
1561 including <stdio.h>. There shouldn't be a problem with this,
1562 since ISO C reserves these function names whether you include the
1563 header file or not. In any case, the checking is harmless. With
1564 -ffreestanding, these default attributes are disabled, and must be
1565 specified manually if desired.
1567 Also initialize the name of function that modify the format string for
1568 internationalization purposes. */
1571 init_function_format_info ()
1575 /* Functions from ISO/IEC 9899:1990. */
1576 record_function_format (get_identifier ("printf"), NULL_TREE
,
1577 printf_format_type
, 1, 2);
1578 record_function_format (get_identifier ("__builtin_printf"), NULL_TREE
,
1579 printf_format_type
, 1, 2);
1580 record_function_format (get_identifier ("fprintf"), NULL_TREE
,
1581 printf_format_type
, 2, 3);
1582 record_function_format (get_identifier ("sprintf"), NULL_TREE
,
1583 printf_format_type
, 2, 3);
1584 record_function_format (get_identifier ("scanf"), NULL_TREE
,
1585 scanf_format_type
, 1, 2);
1586 record_function_format (get_identifier ("fscanf"), NULL_TREE
,
1587 scanf_format_type
, 2, 3);
1588 record_function_format (get_identifier ("sscanf"), NULL_TREE
,
1589 scanf_format_type
, 2, 3);
1590 record_function_format (get_identifier ("vprintf"), NULL_TREE
,
1591 printf_format_type
, 1, 0);
1592 record_function_format (get_identifier ("vfprintf"), NULL_TREE
,
1593 printf_format_type
, 2, 0);
1594 record_function_format (get_identifier ("vsprintf"), NULL_TREE
,
1595 printf_format_type
, 2, 0);
1596 record_function_format (get_identifier ("strftime"), NULL_TREE
,
1597 strftime_format_type
, 3, 0);
1600 if (flag_hosted
&& flag_isoc99
)
1602 /* ISO C99 adds the snprintf and vscanf family functions. */
1603 record_function_format (get_identifier ("snprintf"), NULL_TREE
,
1604 printf_format_type
, 3, 4);
1605 record_function_format (get_identifier ("vsnprintf"), NULL_TREE
,
1606 printf_format_type
, 3, 0);
1607 record_function_format (get_identifier ("vscanf"), NULL_TREE
,
1608 scanf_format_type
, 1, 0);
1609 record_function_format (get_identifier ("vfscanf"), NULL_TREE
,
1610 scanf_format_type
, 2, 0);
1611 record_function_format (get_identifier ("vsscanf"), NULL_TREE
,
1612 scanf_format_type
, 2, 0);
1615 if (flag_hosted
&& flag_noniso_default_format_attributes
)
1617 /* Uniforum/GNU gettext functions, not in ISO C. */
1618 record_international_format (get_identifier ("gettext"), NULL_TREE
, 1);
1619 record_international_format (get_identifier ("dgettext"), NULL_TREE
, 2);
1620 record_international_format (get_identifier ("dcgettext"), NULL_TREE
, 2);
1624 /* Record information for argument format checking. FUNCTION_IDENT is
1625 the identifier node for the name of the function to check (its decl
1626 need not exist yet).
1627 FORMAT_TYPE specifies the type of format checking. FORMAT_NUM is the number
1628 of the argument which is the format control string (starting from 1).
1629 FIRST_ARG_NUM is the number of the first actual argument to check
1630 against the format string, or zero if no checking is not be done
1631 (e.g. for varargs such as vfprintf). */
1634 record_function_format (name
, assembler_name
, format_type
,
1635 format_num
, first_arg_num
)
1637 tree assembler_name
;
1638 enum format_type format_type
;
1642 function_format_info
*info
;
1644 /* Re-use existing structure if it's there. */
1646 for (info
= function_format_list
; info
; info
= info
->next
)
1648 if (info
->name
== name
&& info
->assembler_name
== assembler_name
)
1653 info
= (function_format_info
*) xmalloc (sizeof (function_format_info
));
1654 info
->next
= function_format_list
;
1655 function_format_list
= info
;
1658 info
->assembler_name
= assembler_name
;
1661 info
->format_type
= format_type
;
1662 info
->format_num
= format_num
;
1663 info
->first_arg_num
= first_arg_num
;
1666 /* Record information for the names of function that modify the format
1667 argument to format functions. FUNCTION_IDENT is the identifier node for
1668 the name of the function (its decl need not exist yet) and FORMAT_NUM is
1669 the number of the argument which is the format control string (starting
1673 record_international_format (name
, assembler_name
, format_num
)
1675 tree assembler_name
;
1678 international_format_info
*info
;
1680 /* Re-use existing structure if it's there. */
1682 for (info
= international_format_list
; info
; info
= info
->next
)
1684 if (info
->name
== name
&& info
->assembler_name
== assembler_name
)
1691 = (international_format_info
*)
1692 xmalloc (sizeof (international_format_info
));
1693 info
->next
= international_format_list
;
1694 international_format_list
= info
;
1697 info
->assembler_name
= assembler_name
;
1700 info
->format_num
= format_num
;
1703 /* Check the argument list of a call to printf, scanf, etc.
1704 NAME is the function identifier.
1705 ASSEMBLER_NAME is the function's assembler identifier.
1706 (Either NAME or ASSEMBLER_NAME, but not both, may be NULL_TREE.)
1707 PARAMS is the list of argument values. */
1710 check_function_format (status
, name
, assembler_name
, params
)
1713 tree assembler_name
;
1716 function_format_info
*info
;
1718 /* See if this function is a format function. */
1719 for (info
= function_format_list
; info
; info
= info
->next
)
1721 if (info
->assembler_name
1722 ? (info
->assembler_name
== assembler_name
)
1723 : (info
->name
== name
))
1725 /* Yup; check it. */
1726 check_format_info (status
, info
, params
);
1732 /* This function replaces `warning' inside the printf format checking
1733 functions. If the `status' parameter is non-NULL, then it is
1734 dereferenced and set to 1 whenever a warning is caught. Otherwise
1735 it warns as usual by replicating the innards of the warning
1736 function from diagnostic.c. */
1738 status_warning
VPARAMS ((int *status
, const char *msgid
, ...))
1740 #ifndef ANSI_PROTOTYPES
1745 diagnostic_context dc
;
1751 VA_START (ap
, msgid
);
1753 #ifndef ANSI_PROTOTYPES
1754 status
= va_arg (ap
, int *);
1755 msgid
= va_arg (ap
, const char *);
1758 /* This duplicates the warning function behavior. */
1759 set_diagnostic_context
1760 (&dc
, msgid
, &ap
, input_filename
, lineno
, /* warn = */ 1);
1761 report_diagnostic (&dc
);
1767 /* Variables used by the checking of $ operand number formats. */
1768 static char *dollar_arguments_used
= NULL
;
1769 static int dollar_arguments_alloc
= 0;
1770 static int dollar_arguments_count
;
1771 static int dollar_first_arg_num
;
1772 static int dollar_max_arg_used
;
1773 static int dollar_format_warned
;
1775 /* Initialize the checking for a format string that may contain $
1776 parameter number specifications; we will need to keep track of whether
1777 each parameter has been used. FIRST_ARG_NUM is the number of the first
1778 argument that is a parameter to the format, or 0 for a vprintf-style
1779 function; PARAMS is the list of arguments starting at this argument. */
1782 init_dollar_format_checking (first_arg_num
, params
)
1786 dollar_first_arg_num
= first_arg_num
;
1787 dollar_arguments_count
= 0;
1788 dollar_max_arg_used
= 0;
1789 dollar_format_warned
= 0;
1790 if (first_arg_num
> 0)
1794 dollar_arguments_count
++;
1795 params
= TREE_CHAIN (params
);
1798 if (dollar_arguments_alloc
< dollar_arguments_count
)
1800 if (dollar_arguments_used
)
1801 free (dollar_arguments_used
);
1802 dollar_arguments_alloc
= dollar_arguments_count
;
1803 dollar_arguments_used
= xmalloc (dollar_arguments_alloc
);
1805 if (dollar_arguments_alloc
)
1806 memset (dollar_arguments_used
, 0, dollar_arguments_alloc
);
1810 /* Look for a decimal number followed by a $ in *FORMAT. If DOLLAR_NEEDED
1811 is set, it is an error if one is not found; otherwise, it is OK. If
1812 such a number is found, check whether it is within range and mark that
1813 numbered operand as being used for later checking. Returns the operand
1814 number if found and within range, zero if no such number was found and
1815 this is OK, or -1 on error. PARAMS points to the first operand of the
1816 format; PARAM_PTR is made to point to the parameter referred to. If
1817 a $ format is found, *FORMAT is updated to point just after it. */
1820 maybe_read_dollar_number (status
, format
, dollar_needed
, params
, param_ptr
)
1822 const char **format
;
1829 const char *fcp
= *format
;
1830 if (*fcp
< '0' || *fcp
> '9')
1834 status_warning (status
, "missing $ operand number in format");
1842 while (*fcp
>= '0' && *fcp
<= '9')
1845 nargnum
= 10 * argnum
+ (*fcp
- '0');
1846 if (nargnum
< 0 || nargnum
/ 10 != argnum
)
1855 status_warning (status
, "missing $ operand number in format");
1862 if (pedantic
&& !dollar_format_warned
)
1864 status_warning (status
, "ISO C does not support %%n$ operand number formats");
1865 dollar_format_warned
= 1;
1867 if (overflow_flag
|| argnum
== 0
1868 || (dollar_first_arg_num
&& argnum
> dollar_arguments_count
))
1870 status_warning (status
, "operand number out of range in format");
1873 if (argnum
> dollar_max_arg_used
)
1874 dollar_max_arg_used
= argnum
;
1875 /* For vprintf-style functions we may need to allocate more memory to
1876 track which arguments are used. */
1877 while (dollar_arguments_alloc
< dollar_max_arg_used
)
1880 nalloc
= 2 * dollar_arguments_alloc
+ 16;
1881 dollar_arguments_used
= xrealloc (dollar_arguments_used
, nalloc
);
1882 memset (dollar_arguments_used
+ dollar_arguments_alloc
, 0,
1883 nalloc
- dollar_arguments_alloc
);
1884 dollar_arguments_alloc
= nalloc
;
1886 dollar_arguments_used
[argnum
- 1] = 1;
1887 if (dollar_first_arg_num
)
1890 *param_ptr
= params
;
1891 for (i
= 1; i
< argnum
&& *param_ptr
!= 0; i
++)
1892 *param_ptr
= TREE_CHAIN (*param_ptr
);
1894 if (*param_ptr
== 0)
1896 /* This case shouldn't be caught here. */
1906 /* Finish the checking for a format string that used $ operand number formats
1907 instead of non-$ formats. We check for unused operands before used ones
1908 (a serious error, since the implementation of the format function
1909 can't know what types to pass to va_arg to find the later arguments).
1910 and for unused operands at the end of the format (if we know how many
1911 arguments the format had, so not for vprintf). If there were operand
1912 numbers out of range on a non-vprintf-style format, we won't have reached
1916 finish_dollar_format_checking (status
)
1920 for (i
= 0; i
< dollar_max_arg_used
; i
++)
1922 if (!dollar_arguments_used
[i
])
1923 status_warning (status
, "format argument %d unused before used argument %d in $-style format",
1924 i
+ 1, dollar_max_arg_used
);
1926 if (dollar_first_arg_num
&& dollar_max_arg_used
< dollar_arguments_count
)
1927 status_warning (status
, "unused arguments in $-style format");
1931 /* Check the argument list of a call to printf, scanf, etc.
1932 INFO points to the function_format_info structure.
1933 PARAMS is the list of argument values. */
1936 check_format_info (status
, info
, params
)
1938 function_format_info
*info
;
1943 int suppressed
, wide
, precise
;
1944 const char *length_chars
= NULL
;
1945 enum format_lengths length_chars_val
= FMT_LEN_none
;
1946 enum format_std_version length_chars_std
= STD_C89
;
1953 tree main_arg_params
;
1954 enum format_std_version wanted_type_std
;
1955 const char *wanted_type_name
;
1956 format_wanted_type width_wanted_type
;
1957 format_wanted_type precision_wanted_type
;
1958 format_wanted_type main_wanted_type
;
1959 format_wanted_type
*first_wanted_type
;
1960 format_wanted_type
*last_wanted_type
;
1961 tree first_fillin_param
;
1962 const char *format_chars
;
1963 const format_kind_info
*fki
= NULL
;
1964 const format_length_info
*fli
= NULL
;
1965 const format_char_info
*fci
= NULL
;
1967 /* -1 if no conversions taking an operand have been found; 0 if one has
1968 and it didn't use $; 1 if $ formats are in use. */
1969 int has_operand_number
= -1;
1971 /* Skip to format argument. If the argument isn't available, there's
1972 no work for us to do; prototype checking will catch the problem. */
1973 for (arg_num
= 1; ; ++arg_num
)
1977 if (arg_num
== info
->format_num
)
1979 params
= TREE_CHAIN (params
);
1981 format_tree
= TREE_VALUE (params
);
1982 params
= TREE_CHAIN (params
);
1983 if (format_tree
== 0)
1986 /* We can only check the format if it's a string constant. */
1987 while (TREE_CODE (format_tree
) == NOP_EXPR
)
1988 format_tree
= TREE_OPERAND (format_tree
, 0); /* strip coercion */
1990 if (TREE_CODE (format_tree
) == CALL_EXPR
1991 && TREE_CODE (TREE_OPERAND (format_tree
, 0)) == ADDR_EXPR
1992 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (format_tree
, 0), 0))
1995 tree function
= TREE_OPERAND (TREE_OPERAND (format_tree
, 0), 0);
1997 /* See if this is a call to a known internationalization function
1998 that modifies the format arg. */
1999 international_format_info
*info
;
2001 for (info
= international_format_list
; info
; info
= info
->next
)
2002 if (info
->assembler_name
2003 ? (info
->assembler_name
== DECL_ASSEMBLER_NAME (function
))
2004 : (info
->name
== DECL_NAME (function
)))
2009 for (inner_args
= TREE_OPERAND (format_tree
, 1), i
= 1;
2011 inner_args
= TREE_CHAIN (inner_args
), i
++)
2012 if (i
== info
->format_num
)
2014 format_tree
= TREE_VALUE (inner_args
);
2016 while (TREE_CODE (format_tree
) == NOP_EXPR
)
2017 format_tree
= TREE_OPERAND (format_tree
, 0);
2022 if (integer_zerop (format_tree
))
2024 status_warning (status
, "null format string");
2027 if (TREE_CODE (format_tree
) != ADDR_EXPR
)
2029 /* The user may get multiple warnings if the supplied argument
2030 isn't even a string pointer. */
2031 /* Functions taking a va_list normally pass a non-literal format
2032 string. These functions typically are declared with
2033 first_arg_num == 0, so avoid warning in those cases. */
2034 if (info
->first_arg_num
!= 0 && warn_format
> 1)
2035 status_warning (status
, "format not a string literal, argument types not checked");
2038 format_tree
= TREE_OPERAND (format_tree
, 0);
2039 if (TREE_CODE (format_tree
) != STRING_CST
)
2041 /* The user may get multiple warnings if the supplied argument
2042 isn't even a string pointer. */
2043 /* Functions taking a va_list normally pass a non-literal format
2044 string. These functions typically are declared with
2045 first_arg_num == 0, so avoid warning in those cases. */
2046 if (info
->first_arg_num
!= 0 && warn_format
> 1)
2047 status_warning (status
, "format not a string literal, argument types not checked");
2050 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (format_tree
))) != char_type_node
)
2052 status_warning (status
, "format is a wide character string");
2055 format_chars
= TREE_STRING_POINTER (format_tree
);
2056 format_length
= TREE_STRING_LENGTH (format_tree
);
2057 if (format_length
<= 1)
2058 status_warning (status
, "zero-length format string");
2059 if (format_chars
[--format_length
] != 0)
2061 status_warning (status
, "unterminated format string");
2064 /* Skip to first argument to check. */
2065 while (arg_num
+ 1 < info
->first_arg_num
)
2069 params
= TREE_CHAIN (params
);
2073 first_fillin_param
= params
;
2074 init_dollar_format_checking (info
->first_arg_num
, first_fillin_param
);
2075 fki
= &format_types
[info
->format_type
];
2079 first_wanted_type
= NULL
;
2080 last_wanted_type
= NULL
;
2081 if (*format_chars
== 0)
2083 if (format_chars
- TREE_STRING_POINTER (format_tree
) != format_length
)
2084 status_warning (status
, "embedded `\\0' in format");
2085 if (info
->first_arg_num
!= 0 && params
!= 0
2086 && has_operand_number
<= 0)
2087 status_warning (status
, "too many arguments for format");
2088 if (has_operand_number
> 0)
2089 finish_dollar_format_checking (status
);
2092 if (*format_chars
++ != '%')
2094 if (*format_chars
== 0)
2096 status_warning (status
, "spurious trailing `%%' in format");
2099 if (*format_chars
== '%')
2105 suppressed
= wide
= precise
= FALSE
;
2107 main_arg_params
= 0;
2108 if (info
->format_type
== scanf_format_type
)
2110 int non_zero_width_char
= FALSE
;
2111 suppressed
= *format_chars
== '*';
2114 else if (has_operand_number
!= 0)
2117 opnum
= maybe_read_dollar_number (status
, &format_chars
,
2118 has_operand_number
== 1,
2125 has_operand_number
= 1;
2126 main_arg_num
= opnum
+ info
->first_arg_num
- 1;
2129 has_operand_number
= 0;
2131 while (ISDIGIT (*format_chars
))
2134 if (*format_chars
!= '0')
2135 non_zero_width_char
= TRUE
;
2138 if (wide
&& !non_zero_width_char
)
2139 status_warning (status
, "zero width in scanf format");
2141 else if (info
->format_type
== strftime_format_type
)
2143 while (*format_chars
!= 0 && index ("_-0^#", *format_chars
) != 0)
2146 status_warning (status
, "ISO C does not support the strftime `%c' flag",
2148 if (index (flag_chars
, *format_chars
) != 0)
2150 status_warning (status
, "repeated `%c' flag in format",
2156 i
= strlen (flag_chars
);
2157 flag_chars
[i
++] = *format_chars
++;
2161 while (ISDIGIT ((unsigned char) *format_chars
))
2166 if (wide
&& pedantic
)
2167 status_warning (status
, "ISO C does not support strftime format width");
2168 if (*format_chars
== 'E' || *format_chars
== 'O')
2170 i
= strlen (flag_chars
);
2171 flag_chars
[i
++] = *format_chars
++;
2173 if (*format_chars
== 'E' || *format_chars
== 'O')
2175 status_warning (status
, "multiple E/O modifiers in format");
2176 while (*format_chars
== 'E' || *format_chars
== 'O')
2181 else if (info
->format_type
== printf_format_type
)
2183 if (has_operand_number
!= 0)
2186 opnum
= maybe_read_dollar_number (status
, &format_chars
,
2187 0, first_fillin_param
,
2193 has_operand_number
= 1;
2194 main_arg_num
= opnum
+ info
->first_arg_num
- 1;
2198 while (*format_chars
!= 0 && index (" +#0-'I", *format_chars
) != 0)
2200 if (index (flag_chars
, *format_chars
) != 0)
2201 status_warning (status
, "repeated `%c' flag in format", *format_chars
++);
2204 i
= strlen (flag_chars
);
2205 flag_chars
[i
++] = *format_chars
++;
2209 /* "If the space and + flags both appear,
2210 the space flag will be ignored." */
2211 if (index (flag_chars
, ' ') != 0
2212 && index (flag_chars
, '+') != 0)
2213 status_warning (status
, "use of both ` ' and `+' flags in format");
2214 /* "If the 0 and - flags both appear,
2215 the 0 flag will be ignored." */
2216 if (index (flag_chars
, '0') != 0
2217 && index (flag_chars
, '-') != 0)
2218 status_warning (status
, "use of both `0' and `-' flags in format");
2219 if (index (flag_chars
, '\'') && pedantic
)
2220 status_warning (status
, "ISO C does not support the `'' format flag");
2221 if (index (flag_chars
, 'I') && pedantic
)
2222 status_warning (status
, "ISO C does not support the `I' format flag");
2223 if (*format_chars
== '*')
2226 /* "...a field width...may be indicated by an asterisk.
2227 In this case, an int argument supplies the field width..." */
2231 status_warning (status
, "too few arguments for format");
2234 if (has_operand_number
!= 0)
2237 opnum
= maybe_read_dollar_number (status
, &format_chars
,
2238 has_operand_number
== 1,
2245 has_operand_number
= 1;
2246 arg_num
= opnum
+ info
->first_arg_num
- 1;
2249 has_operand_number
= 0;
2251 if (info
->first_arg_num
!= 0)
2253 cur_param
= TREE_VALUE (params
);
2254 if (has_operand_number
<= 0)
2256 params
= TREE_CHAIN (params
);
2259 width_wanted_type
.wanted_type
= integer_type_node
;
2260 width_wanted_type
.wanted_type_name
= NULL
;
2261 width_wanted_type
.pointer_count
= 0;
2262 width_wanted_type
.char_lenient_flag
= 0;
2263 width_wanted_type
.writing_in_flag
= 0;
2264 width_wanted_type
.name
= _("field width");
2265 width_wanted_type
.param
= cur_param
;
2266 width_wanted_type
.arg_num
= arg_num
;
2267 width_wanted_type
.next
= NULL
;
2268 if (last_wanted_type
!= 0)
2269 last_wanted_type
->next
= &width_wanted_type
;
2270 if (first_wanted_type
== 0)
2271 first_wanted_type
= &width_wanted_type
;
2272 last_wanted_type
= &width_wanted_type
;
2277 while (ISDIGIT (*format_chars
))
2283 if (*format_chars
== '.')
2287 /* "...a...precision...may be indicated by an asterisk.
2288 In this case, an int argument supplies the...precision." */
2289 if (*format_chars
== '*')
2292 if (has_operand_number
!= 0)
2295 opnum
= maybe_read_dollar_number (status
, &format_chars
,
2296 has_operand_number
== 1,
2303 has_operand_number
= 1;
2304 arg_num
= opnum
+ info
->first_arg_num
- 1;
2307 has_operand_number
= 0;
2309 if (info
->first_arg_num
!= 0)
2313 status_warning (status
, "too few arguments for format");
2316 cur_param
= TREE_VALUE (params
);
2317 if (has_operand_number
<= 0)
2319 params
= TREE_CHAIN (params
);
2322 precision_wanted_type
.wanted_type
= integer_type_node
;
2323 precision_wanted_type
.wanted_type_name
= NULL
;
2324 precision_wanted_type
.pointer_count
= 0;
2325 precision_wanted_type
.char_lenient_flag
= 0;
2326 precision_wanted_type
.writing_in_flag
= 0;
2327 precision_wanted_type
.name
= _("field precision");
2328 precision_wanted_type
.param
= cur_param
;
2329 precision_wanted_type
.arg_num
= arg_num
;
2330 precision_wanted_type
.next
= NULL
;
2331 if (last_wanted_type
!= 0)
2332 last_wanted_type
->next
= &precision_wanted_type
;
2333 if (first_wanted_type
== 0)
2334 first_wanted_type
= &precision_wanted_type
;
2335 last_wanted_type
= &precision_wanted_type
;
2340 while (ISDIGIT (*format_chars
))
2348 fli
= fki
->length_char_specs
;
2351 while (fli
->name
!= 0 && fli
->name
[0] != *format_chars
)
2356 if (fli
->double_name
!= 0 && fli
->name
[0] == *format_chars
)
2359 length_chars
= fli
->double_name
;
2360 length_chars_val
= fli
->double_index
;
2361 length_chars_std
= fli
->double_std
;
2365 length_chars
= fli
->name
;
2366 length_chars_val
= fli
->index
;
2367 length_chars_std
= fli
->std
;
2372 length_chars
= NULL
;
2373 length_chars_val
= FMT_LEN_none
;
2374 length_chars_std
= STD_C89
;
2378 /* Warn if the length modifier is non-standard. */
2379 if (length_chars_std
== STD_EXT
)
2380 status_warning (status
, "ISO C does not support the `%s' %s length modifier",
2381 length_chars
, fki
->name
);
2382 else if ((length_chars_std
== STD_C99
&& !flag_isoc99
)
2383 || (length_chars_std
== STD_C94
&& !flag_isoc94
))
2384 status_warning (status
, "ISO C89 does not support the `%s' %s length modifier",
2385 length_chars
, fki
->name
);
2387 if (*format_chars
== 'a' && info
->format_type
== scanf_format_type
2390 if (format_chars
[1] == 's' || format_chars
[1] == 'S'
2391 || format_chars
[1] == '[')
2393 /* `a' is used as a flag. */
2398 if (suppressed
&& length_chars_val
!= FMT_LEN_none
)
2399 status_warning (status
, "use of `*' and `%s' together in format", length_chars
);
2401 format_char
= *format_chars
;
2402 if (format_char
== 0
2403 || (info
->format_type
!= strftime_format_type
&& format_char
== '%'))
2405 status_warning (status
, "conversion lacks type at end of format");
2409 fci
= fki
->conversion_specs
;
2410 while (fci
->format_chars
!= 0
2411 && index (fci
->format_chars
, format_char
) == 0)
2413 if (fci
->format_chars
== 0)
2415 if (ISGRAPH(format_char
))
2416 status_warning (status
, "unknown conversion type character `%c' in format",
2419 status_warning (status
, "unknown conversion type character 0x%x in format",
2425 if (fci
->std
== STD_EXT
)
2426 status_warning (status
, "ISO C does not support the `%%%c' %s format",
2427 format_char
, fki
->name
);
2428 else if ((fci
->std
== STD_C99
&& !flag_isoc99
)
2429 || (fci
->std
== STD_C94
&& !flag_isoc94
))
2430 status_warning (status
, "ISO C89 does not support the `%%%c' %s format",
2431 format_char
, fki
->name
);
2432 if (index (flag_chars
, 'O') != 0)
2434 if (index (fci
->flags2
, 'o') != 0)
2435 status_warning (status
, "ISO C does not support `%%O%c'", format_char
);
2436 else if (!flag_isoc99
&& index (fci
->flag_chars
, 'O') != 0)
2437 status_warning (status
, "ISO C89 does not support `%%O%c'", format_char
);
2439 if (!flag_isoc99
&& index (flag_chars
, 'E'))
2440 status_warning (status
, "ISO C89 does not support `%%E%c'", format_char
);
2442 if (wide
&& index (fci
->flag_chars
, 'w') == 0)
2443 status_warning (status
, "width used with `%c' format", format_char
);
2444 if (index (fci
->flags2
, '3') != 0
2445 || (format_char
== 'y' && index (flag_chars
, 'E')))
2446 status_warning (status
, "`%%%c' yields only last 2 digits of year in some locales",
2448 else if (index (fci
->flags2
, '2') != 0)
2449 status_warning (status
, "`%%%c' yields only last 2 digits of year", format_char
);
2450 if (precise
&& index (fci
->flag_chars
, 'p') == 0)
2451 status_warning (status
, "precision used with `%c' format", format_char
);
2452 if (aflag
&& index (fci
->flag_chars
, 'a') == 0)
2454 status_warning (status
, "`a' flag used with `%c' format", format_char
);
2455 /* To simplify the following code. */
2458 /* The a flag is a GNU extension. */
2459 else if (pedantic
&& aflag
)
2460 status_warning (status
, "ISO C does not support the `a' flag");
2461 if (index (fci
->flags2
, '[') != 0)
2463 /* Skip over scan set, in case it happens to have '%' in it. */
2464 if (*format_chars
== '^')
2466 /* Find closing bracket; if one is hit immediately, then
2467 it's part of the scan set rather than a terminator. */
2468 if (*format_chars
== ']')
2470 while (*format_chars
&& *format_chars
!= ']')
2472 if (*format_chars
!= ']')
2473 /* The end of the format string was reached. */
2474 status_warning (status
, "no closing `]' for `%%[' format");
2478 if (index (fci
->flag_chars
, '*') == 0)
2479 status_warning (status
, "suppression of `%c' conversion in format", format_char
);
2482 for (i
= 0; flag_chars
[i
] != 0; ++i
)
2484 if (index (fci
->flag_chars
, flag_chars
[i
]) == 0)
2485 status_warning (status
, "flag `%c' used with type `%c'",
2486 flag_chars
[i
], format_char
);
2488 if (info
->format_type
== strftime_format_type
)
2490 if (precise
&& index (flag_chars
, '0') != 0
2491 && (index (fci
->flags2
, 'i') != 0))
2492 status_warning (status
, "`0' flag ignored with precision specifier and `%c' format",
2494 wanted_type
= (fci
->types
[length_chars_val
].type
2495 ? *fci
->types
[length_chars_val
].type
: 0);
2496 wanted_type_name
= fci
->types
[length_chars_val
].name
;
2497 wanted_type_std
= fci
->types
[length_chars_val
].std
;
2498 if (wanted_type
== 0)
2500 status_warning (status
, "use of `%s' length modifier with `%c' type character",
2501 length_chars
, format_char
);
2502 /* Heuristic: skip one argument when an invalid length/type
2503 combination is encountered. */
2507 status_warning (status
, "too few arguments for format");
2510 params
= TREE_CHAIN (params
);
2514 /* Warn if non-standard, provided it is more non-standard
2515 than the length and type characters that may already
2516 have been warned for. */
2517 && wanted_type_std
> length_chars_std
2518 && wanted_type_std
> fci
->std
)
2520 if (wanted_type_std
== STD_EXT
)
2521 status_warning (status
, "ISO C does not support the `%%%s%c' %s format",
2522 length_chars
, format_char
, fki
->name
);
2523 else if ((wanted_type_std
== STD_C99
&& !flag_isoc99
)
2524 || (wanted_type_std
== STD_C94
&& !flag_isoc94
))
2525 status_warning (status
, "ISO C89 does not support the `%%%s%c' %s format",
2526 length_chars
, format_char
, fki
->name
);
2529 /* Finally. . .check type of argument against desired type! */
2530 if (info
->first_arg_num
== 0)
2532 if (fci
->pointer_count
== 0 && wanted_type
== void_type_node
)
2534 if (main_arg_num
!= 0)
2535 status_warning (status
, "operand number specified for format taking no argument");
2539 if (main_arg_num
!= 0)
2541 arg_num
= main_arg_num
;
2542 params
= main_arg_params
;
2547 if (has_operand_number
> 0)
2549 status_warning (status
, "missing $ operand number in format");
2553 has_operand_number
= 0;
2556 status_warning (status
, "too few arguments for format");
2560 cur_param
= TREE_VALUE (params
);
2561 params
= TREE_CHAIN (params
);
2562 main_wanted_type
.wanted_type
= wanted_type
;
2563 main_wanted_type
.wanted_type_name
= wanted_type_name
;
2564 main_wanted_type
.pointer_count
= fci
->pointer_count
+ aflag
;
2565 main_wanted_type
.char_lenient_flag
= 0;
2566 if (index (fci
->flags2
, 'c') != 0)
2567 main_wanted_type
.char_lenient_flag
= 1;
2568 main_wanted_type
.writing_in_flag
= 0;
2569 if (index (fci
->flags2
, 'W') != 0)
2570 main_wanted_type
.writing_in_flag
= 1;
2571 main_wanted_type
.name
= NULL
;
2572 main_wanted_type
.param
= cur_param
;
2573 main_wanted_type
.arg_num
= arg_num
;
2574 main_wanted_type
.next
= NULL
;
2575 if (last_wanted_type
!= 0)
2576 last_wanted_type
->next
= &main_wanted_type
;
2577 if (first_wanted_type
== 0)
2578 first_wanted_type
= &main_wanted_type
;
2579 last_wanted_type
= &main_wanted_type
;
2582 if (first_wanted_type
!= 0)
2583 check_format_types (status
, first_wanted_type
);
2589 /* Check the argument types from a single format conversion (possibly
2590 including width and precision arguments). */
2592 check_format_types (status
, types
)
2594 format_wanted_type
*types
;
2596 for (; types
!= 0; types
= types
->next
)
2605 cur_param
= types
->param
;
2606 cur_type
= TREE_TYPE (cur_param
);
2607 if (TREE_CODE (cur_type
) == ERROR_MARK
)
2610 wanted_type
= types
->wanted_type
;
2611 arg_num
= types
->arg_num
;
2613 /* The following should not occur here. */
2614 if (wanted_type
== 0)
2616 if (wanted_type
== void_type_node
&& types
->pointer_count
== 0)
2619 STRIP_NOPS (cur_param
);
2621 /* Check the types of any additional pointer arguments
2622 that precede the "real" argument. */
2623 for (i
= 0; i
< types
->pointer_count
; ++i
)
2625 if (TREE_CODE (cur_type
) == POINTER_TYPE
)
2627 cur_type
= TREE_TYPE (cur_type
);
2628 if (TREE_CODE (cur_type
) == ERROR_MARK
)
2631 if (cur_param
!= 0 && TREE_CODE (cur_param
) == ADDR_EXPR
)
2632 cur_param
= TREE_OPERAND (cur_param
, 0);
2636 /* See if this is an attempt to write into a const type with
2637 scanf or with printf "%n". Note: the writing in happens
2638 at the first indirection only, if for example
2639 void * const * is passed to scanf %p; passing
2640 const void ** is simply passing an incompatible type. */
2641 if (types
->writing_in_flag
2643 && (TYPE_READONLY (cur_type
)
2645 && (TREE_CODE_CLASS (TREE_CODE (cur_param
)) == 'c'
2646 || (DECL_P (cur_param
)
2647 && TREE_READONLY (cur_param
))))))
2648 status_warning (status
, "writing into constant object (arg %d)", arg_num
);
2650 /* If there are extra type qualifiers beyond the first
2651 indirection, then this makes the types technically
2655 && (TYPE_READONLY (cur_type
)
2656 || TYPE_VOLATILE (cur_type
)
2657 || TYPE_RESTRICT (cur_type
)))
2658 status_warning (status
, "extra type qualifiers in format argument (arg %d)",
2664 if (types
->pointer_count
== 1)
2665 status_warning (status
, "format argument is not a pointer (arg %d)", arg_num
);
2667 status_warning (status
, "format argument is not a pointer to a pointer (arg %d)", arg_num
);
2672 if (i
< types
->pointer_count
)
2675 orig_cur_type
= cur_type
;
2676 cur_type
= TYPE_MAIN_VARIANT (cur_type
);
2678 /* Check whether the argument type is a character type. This leniency
2679 only applies to certain formats, flagged with 'c'.
2681 if (types
->char_lenient_flag
)
2682 char_type_flag
= (cur_type
== char_type_node
2683 || cur_type
== signed_char_type_node
2684 || cur_type
== unsigned_char_type_node
);
2686 /* Check the type of the "real" argument, if there's a type we want. */
2687 if (wanted_type
== cur_type
)
2689 /* If we want `void *', allow any pointer type.
2690 (Anything else would already have got a warning.)
2691 With -pedantic, only allow pointers to void and to character
2693 if (wanted_type
== void_type_node
2694 && (!pedantic
|| (i
== 1 && char_type_flag
)))
2696 /* Don't warn about differences merely in signedness, unless
2697 -pedantic. With -pedantic, warn if the type is a pointer
2698 target and not a character type, and for character types at
2699 a second level of indirection. */
2700 if (TREE_CODE (wanted_type
) == INTEGER_TYPE
2701 && TREE_CODE (cur_type
) == INTEGER_TYPE
2702 && (! pedantic
|| i
== 0 || (i
== 1 && char_type_flag
))
2703 && (TREE_UNSIGNED (wanted_type
)
2704 ? wanted_type
== unsigned_type (cur_type
)
2705 : wanted_type
== signed_type (cur_type
)))
2707 /* Likewise, "signed char", "unsigned char" and "char" are
2708 equivalent but the above test won't consider them equivalent. */
2709 if (wanted_type
== char_type_node
2710 && (! pedantic
|| i
< 2)
2713 /* Now we have a type mismatch. */
2715 register const char *this;
2716 register const char *that
;
2718 this = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (wanted_type
)));
2720 if (TYPE_NAME (orig_cur_type
) != 0
2721 && TREE_CODE (orig_cur_type
) != INTEGER_TYPE
2722 && !(TREE_CODE (orig_cur_type
) == POINTER_TYPE
2723 && TREE_CODE (TREE_TYPE (orig_cur_type
)) == INTEGER_TYPE
))
2725 if (TREE_CODE (TYPE_NAME (orig_cur_type
)) == TYPE_DECL
2726 && DECL_NAME (TYPE_NAME (orig_cur_type
)) != 0)
2727 that
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (orig_cur_type
)));
2729 that
= IDENTIFIER_POINTER (TYPE_NAME (orig_cur_type
));
2732 /* A nameless type can't possibly match what the format wants.
2733 So there will be a warning for it.
2734 Make up a string to describe vaguely what it is. */
2737 if (TREE_CODE (orig_cur_type
) == POINTER_TYPE
)
2740 that
= "different type";
2743 /* Make the warning better in case of mismatch of int vs long. */
2744 if (TREE_CODE (orig_cur_type
) == INTEGER_TYPE
2745 && TREE_CODE (wanted_type
) == INTEGER_TYPE
2746 && TYPE_PRECISION (orig_cur_type
) == TYPE_PRECISION (wanted_type
)
2747 && TYPE_NAME (orig_cur_type
) != 0
2748 && TREE_CODE (TYPE_NAME (orig_cur_type
)) == TYPE_DECL
)
2749 that
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (orig_cur_type
)));
2751 if (strcmp (this, that
) != 0)
2753 /* There may be a better name for the format, e.g. size_t,
2754 but we should allow for programs with a perverse typedef
2755 making size_t something other than what the compiler
2757 if (types
->wanted_type_name
!= 0
2758 && strcmp (types
->wanted_type_name
, that
) != 0)
2759 this = types
->wanted_type_name
;
2760 if (types
->name
!= 0)
2761 status_warning (status
, "%s is not type %s (arg %d)", types
->name
, this,
2764 status_warning (status
, "%s format, %s arg (arg %d)", this, that
, arg_num
);
2770 /* Print a warning if a constant expression had overflow in folding.
2771 Invoke this function on every expression that the language
2772 requires to be a constant expression.
2773 Note the ANSI C standard says it is erroneous for a
2774 constant expression to overflow. */
2777 constant_expression_warning (value
)
2780 if ((TREE_CODE (value
) == INTEGER_CST
|| TREE_CODE (value
) == REAL_CST
2781 || TREE_CODE (value
) == COMPLEX_CST
)
2782 && TREE_CONSTANT_OVERFLOW (value
) && pedantic
)
2783 pedwarn ("overflow in constant expression");
2786 /* Print a warning if an expression had overflow in folding.
2787 Invoke this function on every expression that
2788 (1) appears in the source code, and
2789 (2) might be a constant expression that overflowed, and
2790 (3) is not already checked by convert_and_check;
2791 however, do not invoke this function on operands of explicit casts. */
2794 overflow_warning (value
)
2797 if ((TREE_CODE (value
) == INTEGER_CST
2798 || (TREE_CODE (value
) == COMPLEX_CST
2799 && TREE_CODE (TREE_REALPART (value
)) == INTEGER_CST
))
2800 && TREE_OVERFLOW (value
))
2802 TREE_OVERFLOW (value
) = 0;
2803 if (skip_evaluation
== 0)
2804 warning ("integer overflow in expression");
2806 else if ((TREE_CODE (value
) == REAL_CST
2807 || (TREE_CODE (value
) == COMPLEX_CST
2808 && TREE_CODE (TREE_REALPART (value
)) == REAL_CST
))
2809 && TREE_OVERFLOW (value
))
2811 TREE_OVERFLOW (value
) = 0;
2812 if (skip_evaluation
== 0)
2813 warning ("floating point overflow in expression");
2817 /* Print a warning if a large constant is truncated to unsigned,
2818 or if -Wconversion is used and a constant < 0 is converted to unsigned.
2819 Invoke this function on every expression that might be implicitly
2820 converted to an unsigned type. */
2823 unsigned_conversion_warning (result
, operand
)
2824 tree result
, operand
;
2826 if (TREE_CODE (operand
) == INTEGER_CST
2827 && TREE_CODE (TREE_TYPE (result
)) == INTEGER_TYPE
2828 && TREE_UNSIGNED (TREE_TYPE (result
))
2829 && skip_evaluation
== 0
2830 && !int_fits_type_p (operand
, TREE_TYPE (result
)))
2832 if (!int_fits_type_p (operand
, signed_type (TREE_TYPE (result
))))
2833 /* This detects cases like converting -129 or 256 to unsigned char. */
2834 warning ("large integer implicitly truncated to unsigned type");
2835 else if (warn_conversion
)
2836 warning ("negative integer implicitly converted to unsigned type");
2840 /* Convert EXPR to TYPE, warning about conversion problems with constants.
2841 Invoke this function on every expression that is converted implicitly,
2842 i.e. because of language rules and not because of an explicit cast. */
2845 convert_and_check (type
, expr
)
2848 tree t
= convert (type
, expr
);
2849 if (TREE_CODE (t
) == INTEGER_CST
)
2851 if (TREE_OVERFLOW (t
))
2853 TREE_OVERFLOW (t
) = 0;
2855 /* Do not diagnose overflow in a constant expression merely
2856 because a conversion overflowed. */
2857 TREE_CONSTANT_OVERFLOW (t
) = TREE_CONSTANT_OVERFLOW (expr
);
2859 /* No warning for converting 0x80000000 to int. */
2860 if (!(TREE_UNSIGNED (type
) < TREE_UNSIGNED (TREE_TYPE (expr
))
2861 && TREE_CODE (TREE_TYPE (expr
)) == INTEGER_TYPE
2862 && TYPE_PRECISION (type
) == TYPE_PRECISION (TREE_TYPE (expr
))))
2863 /* If EXPR fits in the unsigned version of TYPE,
2864 don't warn unless pedantic. */
2866 || TREE_UNSIGNED (type
)
2867 || ! int_fits_type_p (expr
, unsigned_type (type
)))
2868 && skip_evaluation
== 0)
2869 warning ("overflow in implicit constant conversion");
2872 unsigned_conversion_warning (t
, expr
);
2878 c_expand_expr_stmt (expr
)
2881 /* Do default conversion if safe and possibly important,
2882 in case within ({...}). */
2883 if ((TREE_CODE (TREE_TYPE (expr
)) == ARRAY_TYPE
&& lvalue_p (expr
))
2884 || TREE_CODE (TREE_TYPE (expr
)) == FUNCTION_TYPE
)
2885 expr
= default_conversion (expr
);
2887 if (TREE_TYPE (expr
) != error_mark_node
2888 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr
))
2889 && TREE_CODE (TREE_TYPE (expr
)) != ARRAY_TYPE
)
2890 error ("expression statement has incomplete type");
2892 last_expr_type
= TREE_TYPE (expr
);
2893 add_stmt (build_stmt (EXPR_STMT
, expr
));
2896 /* Validate the expression after `case' and apply default promotions. */
2899 check_case_value (value
)
2902 if (value
== NULL_TREE
)
2905 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
2906 STRIP_TYPE_NOPS (value
);
2907 /* In C++, the following is allowed:
2910 switch (...) { case i: ... }
2912 So, we try to reduce the VALUE to a constant that way. */
2913 if (c_language
== clk_cplusplus
)
2915 value
= decl_constant_value (value
);
2916 STRIP_TYPE_NOPS (value
);
2917 value
= fold (value
);
2920 if (TREE_CODE (value
) != INTEGER_CST
2921 && value
!= error_mark_node
)
2923 error ("case label does not reduce to an integer constant");
2924 value
= error_mark_node
;
2927 /* Promote char or short to int. */
2928 value
= default_conversion (value
);
2930 constant_expression_warning (value
);
2935 /* Return an integer type with BITS bits of precision,
2936 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
2939 type_for_size (bits
, unsignedp
)
2943 if (bits
== TYPE_PRECISION (integer_type_node
))
2944 return unsignedp
? unsigned_type_node
: integer_type_node
;
2946 if (bits
== TYPE_PRECISION (signed_char_type_node
))
2947 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2949 if (bits
== TYPE_PRECISION (short_integer_type_node
))
2950 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2952 if (bits
== TYPE_PRECISION (long_integer_type_node
))
2953 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2955 if (bits
== TYPE_PRECISION (long_long_integer_type_node
))
2956 return (unsignedp
? long_long_unsigned_type_node
2957 : long_long_integer_type_node
);
2959 if (bits
== TYPE_PRECISION (widest_integer_literal_type_node
))
2960 return (unsignedp
? widest_unsigned_literal_type_node
2961 : widest_integer_literal_type_node
);
2963 if (bits
<= TYPE_PRECISION (intQI_type_node
))
2964 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
2966 if (bits
<= TYPE_PRECISION (intHI_type_node
))
2967 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
2969 if (bits
<= TYPE_PRECISION (intSI_type_node
))
2970 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
2972 if (bits
<= TYPE_PRECISION (intDI_type_node
))
2973 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
2978 /* Return a data type that has machine mode MODE.
2979 If the mode is an integer,
2980 then UNSIGNEDP selects between signed and unsigned types. */
2983 type_for_mode (mode
, unsignedp
)
2984 enum machine_mode mode
;
2987 if (mode
== TYPE_MODE (integer_type_node
))
2988 return unsignedp
? unsigned_type_node
: integer_type_node
;
2990 if (mode
== TYPE_MODE (signed_char_type_node
))
2991 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
2993 if (mode
== TYPE_MODE (short_integer_type_node
))
2994 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
2996 if (mode
== TYPE_MODE (long_integer_type_node
))
2997 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
2999 if (mode
== TYPE_MODE (long_long_integer_type_node
))
3000 return unsignedp
? long_long_unsigned_type_node
: long_long_integer_type_node
;
3002 if (mode
== TYPE_MODE (widest_integer_literal_type_node
))
3003 return unsignedp
? widest_unsigned_literal_type_node
3004 : widest_integer_literal_type_node
;
3006 if (mode
== TYPE_MODE (intQI_type_node
))
3007 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
3009 if (mode
== TYPE_MODE (intHI_type_node
))
3010 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
3012 if (mode
== TYPE_MODE (intSI_type_node
))
3013 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
3015 if (mode
== TYPE_MODE (intDI_type_node
))
3016 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
3018 #if HOST_BITS_PER_WIDE_INT >= 64
3019 if (mode
== TYPE_MODE (intTI_type_node
))
3020 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
3023 if (mode
== TYPE_MODE (float_type_node
))
3024 return float_type_node
;
3026 if (mode
== TYPE_MODE (double_type_node
))
3027 return double_type_node
;
3029 if (mode
== TYPE_MODE (long_double_type_node
))
3030 return long_double_type_node
;
3032 if (mode
== TYPE_MODE (build_pointer_type (char_type_node
)))
3033 return build_pointer_type (char_type_node
);
3035 if (mode
== TYPE_MODE (build_pointer_type (integer_type_node
)))
3036 return build_pointer_type (integer_type_node
);
3038 #ifdef VECTOR_MODE_SUPPORTED_P
3039 if (mode
== TYPE_MODE (V4SF_type_node
) && VECTOR_MODE_SUPPORTED_P (mode
))
3040 return V4SF_type_node
;
3041 if (mode
== TYPE_MODE (V4SI_type_node
) && VECTOR_MODE_SUPPORTED_P (mode
))
3042 return V4SI_type_node
;
3043 if (mode
== TYPE_MODE (V2SI_type_node
) && VECTOR_MODE_SUPPORTED_P (mode
))
3044 return V2SI_type_node
;
3045 if (mode
== TYPE_MODE (V4HI_type_node
) && VECTOR_MODE_SUPPORTED_P (mode
))
3046 return V4HI_type_node
;
3047 if (mode
== TYPE_MODE (V8QI_type_node
) && VECTOR_MODE_SUPPORTED_P (mode
))
3048 return V8QI_type_node
;
3054 /* Return an unsigned type the same as TYPE in other respects. */
3056 unsigned_type (type
)
3059 tree type1
= TYPE_MAIN_VARIANT (type
);
3060 if (type1
== signed_char_type_node
|| type1
== char_type_node
)
3061 return unsigned_char_type_node
;
3062 if (type1
== integer_type_node
)
3063 return unsigned_type_node
;
3064 if (type1
== short_integer_type_node
)
3065 return short_unsigned_type_node
;
3066 if (type1
== long_integer_type_node
)
3067 return long_unsigned_type_node
;
3068 if (type1
== long_long_integer_type_node
)
3069 return long_long_unsigned_type_node
;
3070 if (type1
== widest_integer_literal_type_node
)
3071 return widest_unsigned_literal_type_node
;
3072 #if HOST_BITS_PER_WIDE_INT >= 64
3073 if (type1
== intTI_type_node
)
3074 return unsigned_intTI_type_node
;
3076 if (type1
== intDI_type_node
)
3077 return unsigned_intDI_type_node
;
3078 if (type1
== intSI_type_node
)
3079 return unsigned_intSI_type_node
;
3080 if (type1
== intHI_type_node
)
3081 return unsigned_intHI_type_node
;
3082 if (type1
== intQI_type_node
)
3083 return unsigned_intQI_type_node
;
3085 return signed_or_unsigned_type (1, type
);
3088 /* Return a signed type the same as TYPE in other respects. */
3094 tree type1
= TYPE_MAIN_VARIANT (type
);
3095 if (type1
== unsigned_char_type_node
|| type1
== char_type_node
)
3096 return signed_char_type_node
;
3097 if (type1
== unsigned_type_node
)
3098 return integer_type_node
;
3099 if (type1
== short_unsigned_type_node
)
3100 return short_integer_type_node
;
3101 if (type1
== long_unsigned_type_node
)
3102 return long_integer_type_node
;
3103 if (type1
== long_long_unsigned_type_node
)
3104 return long_long_integer_type_node
;
3105 if (type1
== widest_unsigned_literal_type_node
)
3106 return widest_integer_literal_type_node
;
3107 #if HOST_BITS_PER_WIDE_INT >= 64
3108 if (type1
== unsigned_intTI_type_node
)
3109 return intTI_type_node
;
3111 if (type1
== unsigned_intDI_type_node
)
3112 return intDI_type_node
;
3113 if (type1
== unsigned_intSI_type_node
)
3114 return intSI_type_node
;
3115 if (type1
== unsigned_intHI_type_node
)
3116 return intHI_type_node
;
3117 if (type1
== unsigned_intQI_type_node
)
3118 return intQI_type_node
;
3120 return signed_or_unsigned_type (0, type
);
3123 /* Return a type the same as TYPE except unsigned or
3124 signed according to UNSIGNEDP. */
3127 signed_or_unsigned_type (unsignedp
, type
)
3131 if (! INTEGRAL_TYPE_P (type
)
3132 || TREE_UNSIGNED (type
) == unsignedp
)
3135 if (TYPE_PRECISION (type
) == TYPE_PRECISION (signed_char_type_node
))
3136 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
3137 if (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
3138 return unsignedp
? unsigned_type_node
: integer_type_node
;
3139 if (TYPE_PRECISION (type
) == TYPE_PRECISION (short_integer_type_node
))
3140 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
3141 if (TYPE_PRECISION (type
) == TYPE_PRECISION (long_integer_type_node
))
3142 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
3143 if (TYPE_PRECISION (type
) == TYPE_PRECISION (long_long_integer_type_node
))
3144 return (unsignedp
? long_long_unsigned_type_node
3145 : long_long_integer_type_node
);
3146 if (TYPE_PRECISION (type
) == TYPE_PRECISION (widest_integer_literal_type_node
))
3147 return (unsignedp
? widest_unsigned_literal_type_node
3148 : widest_integer_literal_type_node
);
3152 /* Return the minimum number of bits needed to represent VALUE in a
3153 signed or unsigned type, UNSIGNEDP says which. */
3156 min_precision (value
, unsignedp
)
3162 /* If the value is negative, compute its negative minus 1. The latter
3163 adjustment is because the absolute value of the largest negative value
3164 is one larger than the largest positive value. This is equivalent to
3165 a bit-wise negation, so use that operation instead. */
3167 if (tree_int_cst_sgn (value
) < 0)
3168 value
= fold (build1 (BIT_NOT_EXPR
, TREE_TYPE (value
), value
));
3170 /* Return the number of bits needed, taking into account the fact
3171 that we need one more bit for a signed than unsigned type. */
3173 if (integer_zerop (value
))
3176 log
= tree_floor_log2 (value
);
3178 return log
+ 1 + ! unsignedp
;
3181 /* Print an error message for invalid operands to arith operation CODE.
3182 NOP_EXPR is used as a special case (see truthvalue_conversion). */
3185 binary_op_error (code
)
3186 enum tree_code code
;
3188 register const char *opname
;
3193 error ("invalid truth-value expression");
3197 opname
= "+"; break;
3199 opname
= "-"; break;
3201 opname
= "*"; break;
3203 opname
= "max"; break;
3205 opname
= "min"; break;
3207 opname
= "=="; break;
3209 opname
= "!="; break;
3211 opname
= "<="; break;
3213 opname
= ">="; break;
3215 opname
= "<"; break;
3217 opname
= ">"; break;
3219 opname
= "<<"; break;
3221 opname
= ">>"; break;
3222 case TRUNC_MOD_EXPR
:
3223 case FLOOR_MOD_EXPR
:
3224 opname
= "%"; break;
3225 case TRUNC_DIV_EXPR
:
3226 case FLOOR_DIV_EXPR
:
3227 opname
= "/"; break;
3229 opname
= "&"; break;
3231 opname
= "|"; break;
3232 case TRUTH_ANDIF_EXPR
:
3233 opname
= "&&"; break;
3234 case TRUTH_ORIF_EXPR
:
3235 opname
= "||"; break;
3237 opname
= "^"; break;
3240 opname
= "rotate"; break;
3242 opname
= "unknown"; break;
3244 error ("invalid operands to binary %s", opname
);
3247 /* Subroutine of build_binary_op, used for comparison operations.
3248 See if the operands have both been converted from subword integer types
3249 and, if so, perhaps change them both back to their original type.
3250 This function is also responsible for converting the two operands
3251 to the proper common type for comparison.
3253 The arguments of this function are all pointers to local variables
3254 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
3255 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
3257 If this function returns nonzero, it means that the comparison has
3258 a constant value. What this function returns is an expression for
3262 shorten_compare (op0_ptr
, op1_ptr
, restype_ptr
, rescode_ptr
)
3263 tree
*op0_ptr
, *op1_ptr
;
3265 enum tree_code
*rescode_ptr
;
3268 tree op0
= *op0_ptr
;
3269 tree op1
= *op1_ptr
;
3270 int unsignedp0
, unsignedp1
;
3272 tree primop0
, primop1
;
3273 enum tree_code code
= *rescode_ptr
;
3275 /* Throw away any conversions to wider types
3276 already present in the operands. */
3278 primop0
= get_narrower (op0
, &unsignedp0
);
3279 primop1
= get_narrower (op1
, &unsignedp1
);
3281 /* Handle the case that OP0 does not *contain* a conversion
3282 but it *requires* conversion to FINAL_TYPE. */
3284 if (op0
== primop0
&& TREE_TYPE (op0
) != *restype_ptr
)
3285 unsignedp0
= TREE_UNSIGNED (TREE_TYPE (op0
));
3286 if (op1
== primop1
&& TREE_TYPE (op1
) != *restype_ptr
)
3287 unsignedp1
= TREE_UNSIGNED (TREE_TYPE (op1
));
3289 /* If one of the operands must be floated, we cannot optimize. */
3290 real1
= TREE_CODE (TREE_TYPE (primop0
)) == REAL_TYPE
;
3291 real2
= TREE_CODE (TREE_TYPE (primop1
)) == REAL_TYPE
;
3293 /* If first arg is constant, swap the args (changing operation
3294 so value is preserved), for canonicalization. Don't do this if
3295 the second arg is 0. */
3297 if (TREE_CONSTANT (primop0
)
3298 && ! integer_zerop (primop1
) && ! real_zerop (primop1
))
3300 register tree tem
= primop0
;
3301 register int temi
= unsignedp0
;
3309 unsignedp0
= unsignedp1
;
3332 *rescode_ptr
= code
;
3335 /* If comparing an integer against a constant more bits wide,
3336 maybe we can deduce a value of 1 or 0 independent of the data.
3337 Or else truncate the constant now
3338 rather than extend the variable at run time.
3340 This is only interesting if the constant is the wider arg.
3341 Also, it is not safe if the constant is unsigned and the
3342 variable arg is signed, since in this case the variable
3343 would be sign-extended and then regarded as unsigned.
3344 Our technique fails in this case because the lowest/highest
3345 possible unsigned results don't follow naturally from the
3346 lowest/highest possible values of the variable operand.
3347 For just EQ_EXPR and NE_EXPR there is another technique that
3348 could be used: see if the constant can be faithfully represented
3349 in the other operand's type, by truncating it and reextending it
3350 and see if that preserves the constant's value. */
3352 if (!real1
&& !real2
3353 && TREE_CODE (primop1
) == INTEGER_CST
3354 && TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (*restype_ptr
))
3356 int min_gt
, max_gt
, min_lt
, max_lt
;
3357 tree maxval
, minval
;
3358 /* 1 if comparison is nominally unsigned. */
3359 int unsignedp
= TREE_UNSIGNED (*restype_ptr
);
3362 type
= signed_or_unsigned_type (unsignedp0
, TREE_TYPE (primop0
));
3364 /* If TYPE is an enumeration, then we need to get its min/max
3365 values from it's underlying integral type, not the enumerated
3367 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
3368 type
= type_for_size (TYPE_PRECISION (type
), unsignedp0
);
3370 maxval
= TYPE_MAX_VALUE (type
);
3371 minval
= TYPE_MIN_VALUE (type
);
3373 if (unsignedp
&& !unsignedp0
)
3374 *restype_ptr
= signed_type (*restype_ptr
);
3376 if (TREE_TYPE (primop1
) != *restype_ptr
)
3377 primop1
= convert (*restype_ptr
, primop1
);
3378 if (type
!= *restype_ptr
)
3380 minval
= convert (*restype_ptr
, minval
);
3381 maxval
= convert (*restype_ptr
, maxval
);
3384 if (unsignedp
&& unsignedp0
)
3386 min_gt
= INT_CST_LT_UNSIGNED (primop1
, minval
);
3387 max_gt
= INT_CST_LT_UNSIGNED (primop1
, maxval
);
3388 min_lt
= INT_CST_LT_UNSIGNED (minval
, primop1
);
3389 max_lt
= INT_CST_LT_UNSIGNED (maxval
, primop1
);
3393 min_gt
= INT_CST_LT (primop1
, minval
);
3394 max_gt
= INT_CST_LT (primop1
, maxval
);
3395 min_lt
= INT_CST_LT (minval
, primop1
);
3396 max_lt
= INT_CST_LT (maxval
, primop1
);
3400 /* This used to be a switch, but Genix compiler can't handle that. */
3401 if (code
== NE_EXPR
)
3403 if (max_lt
|| min_gt
)
3404 val
= boolean_true_node
;
3406 else if (code
== EQ_EXPR
)
3408 if (max_lt
|| min_gt
)
3409 val
= boolean_false_node
;
3411 else if (code
== LT_EXPR
)
3414 val
= boolean_true_node
;
3416 val
= boolean_false_node
;
3418 else if (code
== GT_EXPR
)
3421 val
= boolean_true_node
;
3423 val
= boolean_false_node
;
3425 else if (code
== LE_EXPR
)
3428 val
= boolean_true_node
;
3430 val
= boolean_false_node
;
3432 else if (code
== GE_EXPR
)
3435 val
= boolean_true_node
;
3437 val
= boolean_false_node
;
3440 /* If primop0 was sign-extended and unsigned comparison specd,
3441 we did a signed comparison above using the signed type bounds.
3442 But the comparison we output must be unsigned.
3444 Also, for inequalities, VAL is no good; but if the signed
3445 comparison had *any* fixed result, it follows that the
3446 unsigned comparison just tests the sign in reverse
3447 (positive values are LE, negative ones GE).
3448 So we can generate an unsigned comparison
3449 against an extreme value of the signed type. */
3451 if (unsignedp
&& !unsignedp0
)
3458 primop1
= TYPE_MIN_VALUE (type
);
3464 primop1
= TYPE_MAX_VALUE (type
);
3471 type
= unsigned_type (type
);
3474 if (!max_gt
&& !unsignedp0
&& TREE_CODE (primop0
) != INTEGER_CST
)
3476 /* This is the case of (char)x >?< 0x80, which people used to use
3477 expecting old C compilers to change the 0x80 into -0x80. */
3478 if (val
== boolean_false_node
)
3479 warning ("comparison is always false due to limited range of data type");
3480 if (val
== boolean_true_node
)
3481 warning ("comparison is always true due to limited range of data type");
3484 if (!min_lt
&& unsignedp0
&& TREE_CODE (primop0
) != INTEGER_CST
)
3486 /* This is the case of (unsigned char)x >?< -1 or < 0. */
3487 if (val
== boolean_false_node
)
3488 warning ("comparison is always false due to limited range of data type");
3489 if (val
== boolean_true_node
)
3490 warning ("comparison is always true due to limited range of data type");
3495 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3496 if (TREE_SIDE_EFFECTS (primop0
))
3497 return build (COMPOUND_EXPR
, TREE_TYPE (val
), primop0
, val
);
3501 /* Value is not predetermined, but do the comparison
3502 in the type of the operand that is not constant.
3503 TYPE is already properly set. */
3505 else if (real1
&& real2
3506 && (TYPE_PRECISION (TREE_TYPE (primop0
))
3507 == TYPE_PRECISION (TREE_TYPE (primop1
))))
3508 type
= TREE_TYPE (primop0
);
3510 /* If args' natural types are both narrower than nominal type
3511 and both extend in the same manner, compare them
3512 in the type of the wider arg.
3513 Otherwise must actually extend both to the nominal
3514 common type lest different ways of extending
3516 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
3518 else if (unsignedp0
== unsignedp1
&& real1
== real2
3519 && TYPE_PRECISION (TREE_TYPE (primop0
)) < TYPE_PRECISION (*restype_ptr
)
3520 && TYPE_PRECISION (TREE_TYPE (primop1
)) < TYPE_PRECISION (*restype_ptr
))
3522 type
= common_type (TREE_TYPE (primop0
), TREE_TYPE (primop1
));
3523 type
= signed_or_unsigned_type (unsignedp0
3524 || TREE_UNSIGNED (*restype_ptr
),
3526 /* Make sure shorter operand is extended the right way
3527 to match the longer operand. */
3528 primop0
= convert (signed_or_unsigned_type (unsignedp0
, TREE_TYPE (primop0
)),
3530 primop1
= convert (signed_or_unsigned_type (unsignedp1
, TREE_TYPE (primop1
)),
3535 /* Here we must do the comparison on the nominal type
3536 using the args exactly as we received them. */
3537 type
= *restype_ptr
;
3541 if (!real1
&& !real2
&& integer_zerop (primop1
)
3542 && TREE_UNSIGNED (*restype_ptr
))
3548 /* All unsigned values are >= 0, so we warn if extra warnings
3549 are requested. However, if OP0 is a constant that is
3550 >= 0, the signedness of the comparison isn't an issue,
3551 so suppress the warning. */
3552 if (extra_warnings
&& !in_system_header
3553 && ! (TREE_CODE (primop0
) == INTEGER_CST
3554 && ! TREE_OVERFLOW (convert (signed_type (type
),
3556 warning ("comparison of unsigned expression >= 0 is always true");
3557 value
= boolean_true_node
;
3561 if (extra_warnings
&& !in_system_header
3562 && ! (TREE_CODE (primop0
) == INTEGER_CST
3563 && ! TREE_OVERFLOW (convert (signed_type (type
),
3565 warning ("comparison of unsigned expression < 0 is always false");
3566 value
= boolean_false_node
;
3575 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
3576 if (TREE_SIDE_EFFECTS (primop0
))
3577 return build (COMPOUND_EXPR
, TREE_TYPE (value
),
3584 *op0_ptr
= convert (type
, primop0
);
3585 *op1_ptr
= convert (type
, primop1
);
3587 *restype_ptr
= boolean_type_node
;
3592 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
3593 or validate its data type for an `if' or `while' statement or ?..: exp.
3595 This preparation consists of taking the ordinary
3596 representation of an expression expr and producing a valid tree
3597 boolean expression describing whether expr is nonzero. We could
3598 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
3599 but we optimize comparisons, &&, ||, and !.
3601 The resulting type should always be `boolean_type_node'. */
3604 truthvalue_conversion (expr
)
3607 if (TREE_CODE (expr
) == ERROR_MARK
)
3610 #if 0 /* This appears to be wrong for C++. */
3611 /* These really should return error_mark_node after 2.4 is stable.
3612 But not all callers handle ERROR_MARK properly. */
3613 switch (TREE_CODE (TREE_TYPE (expr
)))
3616 error ("struct type value used where scalar is required");
3617 return boolean_false_node
;
3620 error ("union type value used where scalar is required");
3621 return boolean_false_node
;
3624 error ("array type value used where scalar is required");
3625 return boolean_false_node
;
3632 switch (TREE_CODE (expr
))
3635 case NE_EXPR
: case LE_EXPR
: case GE_EXPR
: case LT_EXPR
: case GT_EXPR
:
3636 case TRUTH_ANDIF_EXPR
:
3637 case TRUTH_ORIF_EXPR
:
3638 case TRUTH_AND_EXPR
:
3640 case TRUTH_XOR_EXPR
:
3641 case TRUTH_NOT_EXPR
:
3642 TREE_TYPE (expr
) = boolean_type_node
;
3649 return integer_zerop (expr
) ? boolean_false_node
: boolean_true_node
;
3652 return real_zerop (expr
) ? boolean_false_node
: boolean_true_node
;
3655 /* If we are taking the address of a external decl, it might be zero
3656 if it is weak, so we cannot optimize. */
3657 if (DECL_P (TREE_OPERAND (expr
, 0))
3658 && DECL_EXTERNAL (TREE_OPERAND (expr
, 0)))
3661 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 0)))
3662 return build (COMPOUND_EXPR
, boolean_type_node
,
3663 TREE_OPERAND (expr
, 0), boolean_true_node
);
3665 return boolean_true_node
;
3668 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 1))
3669 ? TRUTH_OR_EXPR
: TRUTH_ORIF_EXPR
),
3670 truthvalue_conversion (TREE_OPERAND (expr
, 0)),
3671 truthvalue_conversion (TREE_OPERAND (expr
, 1)),
3678 /* These don't change whether an object is non-zero or zero. */
3679 return truthvalue_conversion (TREE_OPERAND (expr
, 0));
3683 /* These don't change whether an object is zero or non-zero, but
3684 we can't ignore them if their second arg has side-effects. */
3685 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr
, 1)))
3686 return build (COMPOUND_EXPR
, boolean_type_node
, TREE_OPERAND (expr
, 1),
3687 truthvalue_conversion (TREE_OPERAND (expr
, 0)));
3689 return truthvalue_conversion (TREE_OPERAND (expr
, 0));
3692 /* Distribute the conversion into the arms of a COND_EXPR. */
3693 return fold (build (COND_EXPR
, boolean_type_node
, TREE_OPERAND (expr
, 0),
3694 truthvalue_conversion (TREE_OPERAND (expr
, 1)),
3695 truthvalue_conversion (TREE_OPERAND (expr
, 2))));
3698 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
3699 since that affects how `default_conversion' will behave. */
3700 if (TREE_CODE (TREE_TYPE (expr
)) == REFERENCE_TYPE
3701 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr
, 0))) == REFERENCE_TYPE
)
3703 /* fall through... */
3705 /* If this is widening the argument, we can ignore it. */
3706 if (TYPE_PRECISION (TREE_TYPE (expr
))
3707 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr
, 0))))
3708 return truthvalue_conversion (TREE_OPERAND (expr
, 0));
3712 /* With IEEE arithmetic, x - x may not equal 0, so we can't optimize
3714 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
3715 && TREE_CODE (TREE_TYPE (expr
)) == REAL_TYPE
)
3717 /* fall through... */
3719 /* This and MINUS_EXPR can be changed into a comparison of the
3721 if (TREE_TYPE (TREE_OPERAND (expr
, 0))
3722 == TREE_TYPE (TREE_OPERAND (expr
, 1)))
3723 return build_binary_op (NE_EXPR
, TREE_OPERAND (expr
, 0),
3724 TREE_OPERAND (expr
, 1), 1);
3725 return build_binary_op (NE_EXPR
, TREE_OPERAND (expr
, 0),
3726 fold (build1 (NOP_EXPR
,
3727 TREE_TYPE (TREE_OPERAND (expr
, 0)),
3728 TREE_OPERAND (expr
, 1))), 1);
3731 if (integer_onep (TREE_OPERAND (expr
, 1))
3732 && TREE_TYPE (expr
) != boolean_type_node
)
3733 /* Using convert here would cause infinite recursion. */
3734 return build1 (NOP_EXPR
, boolean_type_node
, expr
);
3738 if (warn_parentheses
&& C_EXP_ORIGINAL_CODE (expr
) == MODIFY_EXPR
)
3739 warning ("suggest parentheses around assignment used as truth value");
3746 if (TREE_CODE (TREE_TYPE (expr
)) == COMPLEX_TYPE
)
3748 tree tem
= save_expr (expr
);
3749 return (build_binary_op
3750 ((TREE_SIDE_EFFECTS (expr
)
3751 ? TRUTH_OR_EXPR
: TRUTH_ORIF_EXPR
),
3752 truthvalue_conversion (build_unary_op (REALPART_EXPR
, tem
, 0)),
3753 truthvalue_conversion (build_unary_op (IMAGPART_EXPR
, tem
, 0)),
3757 return build_binary_op (NE_EXPR
, expr
, integer_zero_node
, 1);
3761 /* Read the rest of a #-directive from input stream FINPUT.
3762 In normal use, the directive name and the white space after it
3763 have already been read, so they won't be included in the result.
3764 We allow for the fact that the directive line may contain
3765 a newline embedded within a character or string literal which forms
3766 a part of the directive.
3768 The value is a string in a reusable buffer. It remains valid
3769 only until the next time this function is called.
3771 The terminating character ('\n' or EOF) is left in FINPUT for the
3772 caller to re-read. */
3775 get_directive_line (finput
)
3776 register FILE *finput
;
3778 static char *directive_buffer
= NULL
;
3779 static unsigned buffer_length
= 0;
3781 register char *buffer_limit
;
3782 register int looking_for
= 0;
3783 register int char_escaped
= 0;
3785 if (buffer_length
== 0)
3787 directive_buffer
= (char *)xmalloc (128);
3788 buffer_length
= 128;
3791 buffer_limit
= &directive_buffer
[buffer_length
];
3793 for (p
= directive_buffer
; ; )
3797 /* Make buffer bigger if it is full. */
3798 if (p
>= buffer_limit
)
3800 register unsigned bytes_used
= (p
- directive_buffer
);
3804 = (char *)xrealloc (directive_buffer
, buffer_length
);
3805 p
= &directive_buffer
[bytes_used
];
3806 buffer_limit
= &directive_buffer
[buffer_length
];
3811 /* Discard initial whitespace. */
3812 if ((c
== ' ' || c
== '\t') && p
== directive_buffer
)
3815 /* Detect the end of the directive. */
3816 if (looking_for
== 0
3817 && (c
== '\n' || c
== EOF
))
3826 return directive_buffer
;
3828 /* Handle string and character constant syntax. */
3831 if (looking_for
== c
&& !char_escaped
)
3832 looking_for
= 0; /* Found terminator... stop looking. */
3835 if (c
== '\'' || c
== '"')
3836 looking_for
= c
; /* Don't stop buffering until we see another
3837 one of these (or an EOF). */
3839 /* Handle backslash. */
3840 char_escaped
= (c
== '\\' && ! char_escaped
);
3843 #endif /* USE_CPPLIB */
3845 /* Make a variant type in the proper way for C/C++, propagating qualifiers
3846 down to the element type of an array. */
3849 c_build_qualified_type (type
, type_quals
)
3853 /* A restrict-qualified pointer type must be a pointer to object or
3854 incomplete type. Note that the use of POINTER_TYPE_P also allows
3855 REFERENCE_TYPEs, which is appropriate for C++. Unfortunately,
3856 the C++ front-end also use POINTER_TYPE for pointer-to-member
3857 values, so even though it should be illegal to use `restrict'
3858 with such an entity we don't flag that here. Thus, special case
3859 code for that case is required in the C++ front-end. */
3860 if ((type_quals
& TYPE_QUAL_RESTRICT
)
3861 && (!POINTER_TYPE_P (type
)
3862 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type
))))
3864 error ("invalid use of `restrict'");
3865 type_quals
&= ~TYPE_QUAL_RESTRICT
;
3868 if (TREE_CODE (type
) == ARRAY_TYPE
)
3869 return build_array_type (c_build_qualified_type (TREE_TYPE (type
),
3871 TYPE_DOMAIN (type
));
3872 return build_qualified_type (type
, type_quals
);
3875 /* Apply the TYPE_QUALS to the new DECL. */
3878 c_apply_type_quals_to_decl (type_quals
, decl
)
3882 if ((type_quals
& TYPE_QUAL_CONST
)
3883 || (TREE_TYPE (decl
)
3884 && TREE_CODE (TREE_TYPE (decl
)) == REFERENCE_TYPE
))
3885 TREE_READONLY (decl
) = 1;
3886 if (type_quals
& TYPE_QUAL_VOLATILE
)
3888 TREE_SIDE_EFFECTS (decl
) = 1;
3889 TREE_THIS_VOLATILE (decl
) = 1;
3891 if (type_quals
& TYPE_QUAL_RESTRICT
)
3893 if (!TREE_TYPE (decl
)
3894 || !POINTER_TYPE_P (TREE_TYPE (decl
))
3895 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (TREE_TYPE (decl
))))
3896 error ("invalid use of `restrict'");
3897 else if (flag_strict_aliasing
)
3899 /* No two restricted pointers can point at the same thing.
3900 However, a restricted pointer can point at the same thing
3901 as an unrestricted pointer, if that unrestricted pointer
3902 is based on the restricted pointer. So, we make the
3903 alias set for the restricted pointer a subset of the
3904 alias set for the type pointed to by the type of the
3907 HOST_WIDE_INT pointed_to_alias_set
3908 = get_alias_set (TREE_TYPE (TREE_TYPE (decl
)));
3910 if (pointed_to_alias_set
== 0)
3911 /* It's not legal to make a subset of alias set zero. */
3915 DECL_POINTER_ALIAS_SET (decl
) = new_alias_set ();
3916 record_alias_subset (pointed_to_alias_set
,
3917 DECL_POINTER_ALIAS_SET (decl
));
3924 /* Return the typed-based alias set for T, which may be an expression
3925 or a type. Return -1 if we don't do anything special. */
3928 lang_get_alias_set (t
)
3933 /* Permit type-punning when accessing a union, provided the access
3934 is directly through the union. For example, this code does not
3935 permit taking the address of a union member and then storing
3936 through it. Even the type-punning allowed here is a GCC
3937 extension, albeit a common and useful one; the C standard says
3938 that such accesses have implementation-defined behavior. */
3940 TREE_CODE (u
) == COMPONENT_REF
|| TREE_CODE (u
) == ARRAY_REF
;
3941 u
= TREE_OPERAND (u
, 0))
3942 if (TREE_CODE (u
) == COMPONENT_REF
3943 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u
, 0))) == UNION_TYPE
)
3946 /* If this is a char *, the ANSI C standard says it can alias
3947 anything. Note that all references need do this. */
3948 if (TREE_CODE_CLASS (TREE_CODE (t
)) == 'r'
3949 && TREE_CODE (TREE_TYPE (t
)) == INTEGER_TYPE
3950 && TYPE_PRECISION (TREE_TYPE (t
)) == TYPE_PRECISION (char_type_node
))
3953 /* That's all the expressions we handle specially. */
3957 /* The C standard specifically allows aliasing between signed and
3958 unsigned variants of the same type. We treat the signed
3959 variant as canonical. */
3960 if (TREE_CODE (t
) == INTEGER_TYPE
&& TREE_UNSIGNED (t
))
3962 tree t1
= signed_type (t
);
3964 /* t1 == t can happen for boolean nodes which are always unsigned. */
3966 return get_alias_set (t1
);
3968 else if (POINTER_TYPE_P (t
))
3972 /* Unfortunately, there is no canonical form of a pointer type.
3973 In particular, if we have `typedef int I', then `int *', and
3974 `I *' are different types. So, we have to pick a canonical
3975 representative. We do this below.
3977 Technically, this approach is actually more conservative that
3978 it needs to be. In particular, `const int *' and `int *'
3979 chould be in different alias sets, according to the C and C++
3980 standard, since their types are not the same, and so,
3981 technically, an `int **' and `const int **' cannot point at
3984 But, the standard is wrong. In particular, this code is
3989 const int* const* cipp = &ip;
3991 And, it doesn't make sense for that to be legal unless you
3992 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
3993 the pointed-to types. This issue has been reported to the
3995 t1
= TYPE_MAIN_VARIANT (TREE_TYPE (t
));
3996 t1
= ((TREE_CODE (t
) == POINTER_TYPE
)
3997 ? build_pointer_type (t1
) : build_reference_type (t1
));
3999 return get_alias_set (t1
);
4001 /* It's not yet safe to use alias sets for classes in C++ because
4002 the TYPE_FIELDs list for a class doesn't mention base classes. */
4003 else if (c_language
== clk_cplusplus
&& AGGREGATE_TYPE_P (t
))
4009 /* Build tree nodes and builtin functions common to both C and C++ language
4011 CPLUS_MODE is nonzero if we are called from the C++ frontend, we generate
4012 some stricter prototypes in that case.
4013 NO_BUILTINS and NO_NONANSI_BUILTINS contain the respective values of
4014 the language frontend flags flag_no_builtin and
4015 flag_no_nonansi_builtin. */
4018 c_common_nodes_and_builtins (cplus_mode
, no_builtins
, no_nonansi_builtins
)
4019 int cplus_mode
, no_builtins
, no_nonansi_builtins
;
4022 tree memcpy_ftype
, memset_ftype
, strlen_ftype
;
4023 tree bzero_ftype
, bcmp_ftype
, puts_ftype
, printf_ftype
;
4024 tree endlink
, int_endlink
, double_endlink
, unsigned_endlink
;
4025 tree sizetype_endlink
;
4026 tree ptr_ftype
, ptr_ftype_unsigned
;
4027 tree void_ftype_any
, void_ftype_int
, int_ftype_any
, sizet_ftype_any
;
4028 tree double_ftype_double
, double_ftype_double_double
;
4029 tree float_ftype_float
, ldouble_ftype_ldouble
;
4030 tree int_ftype_cptr_cptr_sizet
;
4031 tree int_ftype_string_string
, string_ftype_ptr_ptr
;
4032 tree long_ftype_long
;
4033 tree longlong_ftype_longlong
;
4034 /* Either char* or void*. */
4035 tree traditional_ptr_type_node
;
4036 /* Either const char* or const void*. */
4037 tree traditional_cptr_type_node
;
4038 tree traditional_len_type_node
;
4039 tree traditional_len_endlink
;
4040 tree va_list_ref_type_node
;
4041 tree va_list_arg_type_node
;
4043 pushdecl (build_decl (TYPE_DECL
, get_identifier ("__builtin_va_list"),
4044 va_list_type_node
));
4046 pushdecl (build_decl (TYPE_DECL
, get_identifier ("__builtin_ptrdiff_t"),
4047 ptrdiff_type_node
));
4049 pushdecl (build_decl (TYPE_DECL
, get_identifier ("__builtin_size_t"),
4052 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
4054 va_list_arg_type_node
= va_list_ref_type_node
=
4055 build_pointer_type (TREE_TYPE (va_list_type_node
));
4059 va_list_arg_type_node
= va_list_type_node
;
4060 va_list_ref_type_node
= build_reference_type (va_list_type_node
);
4063 endlink
= void_list_node
;
4064 int_endlink
= tree_cons (NULL_TREE
, integer_type_node
, endlink
);
4065 double_endlink
= tree_cons (NULL_TREE
, double_type_node
, endlink
);
4066 unsigned_endlink
= tree_cons (NULL_TREE
, unsigned_type_node
, endlink
);
4068 ptr_ftype
= build_function_type (ptr_type_node
, NULL_TREE
);
4069 ptr_ftype_unsigned
= build_function_type (ptr_type_node
, unsigned_endlink
);
4070 sizetype_endlink
= tree_cons (NULL_TREE
, TYPE_DOMAIN (sizetype
), endlink
);
4071 /* We realloc here because sizetype could be int or unsigned. S'ok. */
4072 ptr_ftype_sizetype
= build_function_type (ptr_type_node
, sizetype_endlink
);
4074 sizet_ftype_any
= build_function_type (sizetype
, NULL_TREE
);
4075 int_ftype_any
= build_function_type (integer_type_node
, NULL_TREE
);
4076 void_ftype_any
= build_function_type (void_type_node
, NULL_TREE
);
4077 void_ftype
= build_function_type (void_type_node
, endlink
);
4078 void_ftype_int
= build_function_type (void_type_node
, int_endlink
);
4080 = build_function_type (void_type_node
,
4081 tree_cons (NULL_TREE
, ptr_type_node
, endlink
));
4084 = build_function_type (float_type_node
,
4085 tree_cons (NULL_TREE
, float_type_node
, endlink
));
4088 = build_function_type (double_type_node
, double_endlink
);
4090 ldouble_ftype_ldouble
4091 = build_function_type (long_double_type_node
,
4092 tree_cons (NULL_TREE
, long_double_type_node
,
4095 double_ftype_double_double
4096 = build_function_type (double_type_node
,
4097 tree_cons (NULL_TREE
, double_type_node
,
4101 = build_function_type (integer_type_node
, int_endlink
);
4104 = build_function_type (long_integer_type_node
,
4105 tree_cons (NULL_TREE
, long_integer_type_node
,
4108 longlong_ftype_longlong
4109 = build_function_type (long_long_integer_type_node
,
4110 tree_cons (NULL_TREE
, long_long_integer_type_node
,
4113 int_ftype_cptr_cptr_sizet
4114 = build_function_type (integer_type_node
,
4115 tree_cons (NULL_TREE
, const_ptr_type_node
,
4116 tree_cons (NULL_TREE
, const_ptr_type_node
,
4117 tree_cons (NULL_TREE
,
4121 void_zero_node
= build_int_2 (0, 0);
4122 TREE_TYPE (void_zero_node
) = void_type_node
;
4124 /* Prototype for strcpy. */
4125 string_ftype_ptr_ptr
4126 = build_function_type (string_type_node
,
4127 tree_cons (NULL_TREE
, string_type_node
,
4128 tree_cons (NULL_TREE
,
4129 const_string_type_node
,
4132 traditional_len_type_node
= (flag_traditional
&& ! cplus_mode
4133 ? integer_type_node
: sizetype
);
4134 traditional_len_endlink
= tree_cons (NULL_TREE
, traditional_len_type_node
,
4137 /* Prototype for strcmp. */
4138 int_ftype_string_string
4139 = build_function_type (integer_type_node
,
4140 tree_cons (NULL_TREE
, const_string_type_node
,
4141 tree_cons (NULL_TREE
,
4142 const_string_type_node
,
4145 /* Prototype for strlen. */
4147 = build_function_type (traditional_len_type_node
,
4148 tree_cons (NULL_TREE
, const_string_type_node
,
4151 traditional_ptr_type_node
= (flag_traditional
&& ! cplus_mode
4152 ? string_type_node
: ptr_type_node
);
4153 traditional_cptr_type_node
= (flag_traditional
&& ! cplus_mode
4154 ? const_string_type_node
: const_ptr_type_node
);
4156 /* Prototype for memcpy. */
4158 = build_function_type (traditional_ptr_type_node
,
4159 tree_cons (NULL_TREE
, ptr_type_node
,
4160 tree_cons (NULL_TREE
, const_ptr_type_node
,
4161 sizetype_endlink
)));
4163 /* Prototype for memset. */
4165 = build_function_type (traditional_ptr_type_node
,
4166 tree_cons (NULL_TREE
, ptr_type_node
,
4167 tree_cons (NULL_TREE
, integer_type_node
,
4168 tree_cons (NULL_TREE
,
4172 /* Prototype for bzero. */
4174 = build_function_type (void_type_node
,
4175 tree_cons (NULL_TREE
, traditional_ptr_type_node
,
4176 traditional_len_endlink
));
4178 /* Prototype for bcmp. */
4180 = build_function_type (integer_type_node
,
4181 tree_cons (NULL_TREE
, traditional_cptr_type_node
,
4182 tree_cons (NULL_TREE
,
4183 traditional_cptr_type_node
,
4184 traditional_len_endlink
)));
4186 /* Prototype for puts. */
4188 = build_function_type (integer_type_node
,
4189 tree_cons (NULL_TREE
, const_string_type_node
,
4192 /* Prototype for printf. */
4194 = build_function_type (integer_type_node
,
4195 tree_cons (NULL_TREE
, const_string_type_node
,
4198 builtin_function ("__builtin_constant_p", default_function_type
,
4199 BUILT_IN_CONSTANT_P
, BUILT_IN_NORMAL
, NULL_PTR
);
4201 builtin_function ("__builtin_return_address", ptr_ftype_unsigned
,
4202 BUILT_IN_RETURN_ADDRESS
, BUILT_IN_NORMAL
, NULL_PTR
);
4204 builtin_function ("__builtin_frame_address", ptr_ftype_unsigned
,
4205 BUILT_IN_FRAME_ADDRESS
, BUILT_IN_NORMAL
, NULL_PTR
);
4207 builtin_function ("__builtin_alloca", ptr_ftype_sizetype
,
4208 BUILT_IN_ALLOCA
, BUILT_IN_NORMAL
, "alloca");
4209 builtin_function ("__builtin_ffs", int_ftype_int
, BUILT_IN_FFS
,
4210 BUILT_IN_NORMAL
, NULL_PTR
);
4211 /* Define alloca, ffs as builtins.
4212 Declare _exit just to mark it as volatile. */
4213 if (! no_builtins
&& ! no_nonansi_builtins
)
4216 temp
= builtin_function ("alloca", ptr_ftype_sizetype
,
4217 BUILT_IN_ALLOCA
, BUILT_IN_NORMAL
, NULL_PTR
);
4218 /* Suppress error if redefined as a non-function. */
4219 DECL_BUILT_IN_NONANSI (temp
) = 1;
4221 temp
= builtin_function ("ffs", int_ftype_int
, BUILT_IN_FFS
,
4222 BUILT_IN_NORMAL
, NULL_PTR
);
4223 /* Suppress error if redefined as a non-function. */
4224 DECL_BUILT_IN_NONANSI (temp
) = 1;
4225 temp
= builtin_function ("_exit", void_ftype_int
,
4226 0, NOT_BUILT_IN
, NULL_PTR
);
4227 TREE_THIS_VOLATILE (temp
) = 1;
4228 TREE_SIDE_EFFECTS (temp
) = 1;
4229 /* Suppress error if redefined as a non-function. */
4230 DECL_BUILT_IN_NONANSI (temp
) = 1;
4232 /* The system prototypes for these functions have many
4233 variations, so don't specify parameters to avoid conflicts.
4234 The expand_* functions check the argument types anyway. */
4235 temp
= builtin_function ("bzero", void_ftype_any
,
4236 BUILT_IN_BZERO
, BUILT_IN_NORMAL
, NULL_PTR
);
4237 DECL_BUILT_IN_NONANSI (temp
) = 1;
4238 temp
= builtin_function ("bcmp", int_ftype_any
,
4239 BUILT_IN_BCMP
, BUILT_IN_NORMAL
, NULL_PTR
);
4240 DECL_BUILT_IN_NONANSI (temp
) = 1;
4243 builtin_function ("__builtin_abs", int_ftype_int
, BUILT_IN_ABS
,
4244 BUILT_IN_NORMAL
, NULL_PTR
);
4245 builtin_function ("__builtin_fabsf", float_ftype_float
, BUILT_IN_FABS
,
4246 BUILT_IN_NORMAL
, NULL_PTR
);
4247 builtin_function ("__builtin_fabs", double_ftype_double
, BUILT_IN_FABS
,
4248 BUILT_IN_NORMAL
, NULL_PTR
);
4249 builtin_function ("__builtin_fabsl", ldouble_ftype_ldouble
, BUILT_IN_FABS
,
4250 BUILT_IN_NORMAL
, NULL_PTR
);
4251 builtin_function ("__builtin_labs", long_ftype_long
, BUILT_IN_LABS
,
4252 BUILT_IN_NORMAL
, NULL_PTR
);
4253 builtin_function ("__builtin_llabs", longlong_ftype_longlong
, BUILT_IN_LLABS
,
4254 BUILT_IN_NORMAL
, NULL_PTR
);
4255 builtin_function ("__builtin_saveregs", ptr_ftype
, BUILT_IN_SAVEREGS
,
4256 BUILT_IN_NORMAL
, NULL_PTR
);
4257 builtin_function ("__builtin_classify_type", default_function_type
,
4258 BUILT_IN_CLASSIFY_TYPE
, BUILT_IN_NORMAL
, NULL_PTR
);
4259 builtin_function ("__builtin_next_arg", ptr_ftype
, BUILT_IN_NEXT_ARG
,
4260 BUILT_IN_NORMAL
, NULL_PTR
);
4261 builtin_function ("__builtin_args_info", int_ftype_int
, BUILT_IN_ARGS_INFO
,
4262 BUILT_IN_NORMAL
, NULL_PTR
);
4263 builtin_function ("__builtin_setjmp",
4264 build_function_type (integer_type_node
,
4265 tree_cons (NULL_TREE
, ptr_type_node
,
4267 BUILT_IN_SETJMP
, BUILT_IN_NORMAL
, NULL_PTR
);
4268 builtin_function ("__builtin_longjmp",
4269 build_function_type (void_type_node
,
4270 tree_cons (NULL_TREE
, ptr_type_node
,
4271 tree_cons (NULL_TREE
,
4274 BUILT_IN_LONGJMP
, BUILT_IN_NORMAL
, NULL_PTR
);
4275 builtin_function ("__builtin_trap", void_ftype
, BUILT_IN_TRAP
,
4276 BUILT_IN_NORMAL
, NULL_PTR
);
4278 /* ISO C99 IEEE Unordered compares. */
4279 builtin_function ("__builtin_isgreater", default_function_type
,
4280 BUILT_IN_ISGREATER
, BUILT_IN_NORMAL
, NULL_PTR
);
4281 builtin_function ("__builtin_isgreaterequal", default_function_type
,
4282 BUILT_IN_ISGREATEREQUAL
, BUILT_IN_NORMAL
, NULL_PTR
);
4283 builtin_function ("__builtin_isless", default_function_type
,
4284 BUILT_IN_ISLESS
, BUILT_IN_NORMAL
, NULL_PTR
);
4285 builtin_function ("__builtin_islessequal", default_function_type
,
4286 BUILT_IN_ISLESSEQUAL
, BUILT_IN_NORMAL
, NULL_PTR
);
4287 builtin_function ("__builtin_islessgreater", default_function_type
,
4288 BUILT_IN_ISLESSGREATER
, BUILT_IN_NORMAL
, NULL_PTR
);
4289 builtin_function ("__builtin_isunordered", default_function_type
,
4290 BUILT_IN_ISUNORDERED
, BUILT_IN_NORMAL
, NULL_PTR
);
4292 /* Untyped call and return. */
4293 builtin_function ("__builtin_apply_args", ptr_ftype
,
4294 BUILT_IN_APPLY_ARGS
, BUILT_IN_NORMAL
, NULL_PTR
);
4296 temp
= tree_cons (NULL_TREE
,
4297 build_pointer_type (build_function_type (void_type_node
,
4299 tree_cons (NULL_TREE
,
4301 tree_cons (NULL_TREE
,
4304 builtin_function ("__builtin_apply",
4305 build_function_type (ptr_type_node
, temp
),
4306 BUILT_IN_APPLY
, BUILT_IN_NORMAL
, NULL_PTR
);
4307 builtin_function ("__builtin_return", void_ftype_ptr
,
4308 BUILT_IN_RETURN
, BUILT_IN_NORMAL
, NULL_PTR
);
4310 /* Support for varargs.h and stdarg.h. */
4311 builtin_function ("__builtin_varargs_start",
4312 build_function_type (void_type_node
,
4313 tree_cons (NULL_TREE
,
4314 va_list_ref_type_node
,
4316 BUILT_IN_VARARGS_START
, BUILT_IN_NORMAL
, NULL_PTR
);
4318 builtin_function ("__builtin_stdarg_start",
4319 build_function_type (void_type_node
,
4320 tree_cons (NULL_TREE
,
4321 va_list_ref_type_node
,
4323 BUILT_IN_STDARG_START
, BUILT_IN_NORMAL
, NULL_PTR
);
4325 builtin_function ("__builtin_va_end",
4326 build_function_type (void_type_node
,
4327 tree_cons (NULL_TREE
,
4328 va_list_ref_type_node
,
4330 BUILT_IN_VA_END
, BUILT_IN_NORMAL
, NULL_PTR
);
4332 builtin_function ("__builtin_va_copy",
4333 build_function_type (void_type_node
,
4334 tree_cons (NULL_TREE
,
4335 va_list_ref_type_node
,
4336 tree_cons (NULL_TREE
,
4337 va_list_arg_type_node
,
4339 BUILT_IN_VA_COPY
, BUILT_IN_NORMAL
, NULL_PTR
);
4341 /* ??? Ought to be `T __builtin_expect(T, T)' for any type T. */
4342 builtin_function ("__builtin_expect",
4343 build_function_type (long_integer_type_node
,
4344 tree_cons (NULL_TREE
,
4345 long_integer_type_node
,
4346 tree_cons (NULL_TREE
,
4347 long_integer_type_node
,
4349 BUILT_IN_EXPECT
, BUILT_IN_NORMAL
, NULL_PTR
);
4351 /* Currently under experimentation. */
4352 builtin_function ("__builtin_memcpy", memcpy_ftype
, BUILT_IN_MEMCPY
,
4353 BUILT_IN_NORMAL
, "memcpy");
4354 builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet
,
4355 BUILT_IN_MEMCMP
, BUILT_IN_NORMAL
, "memcmp");
4356 builtin_function ("__builtin_memset", memset_ftype
,
4357 BUILT_IN_MEMSET
, BUILT_IN_NORMAL
, "memset");
4358 builtin_function ("__builtin_bzero", bzero_ftype
,
4359 BUILT_IN_BZERO
, BUILT_IN_NORMAL
, "bzero");
4360 builtin_function ("__builtin_bcmp", bcmp_ftype
,
4361 BUILT_IN_BCMP
, BUILT_IN_NORMAL
, "bcmp");
4362 builtin_function ("__builtin_strcmp", int_ftype_string_string
,
4363 BUILT_IN_STRCMP
, BUILT_IN_NORMAL
, "strcmp");
4364 builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr
,
4365 BUILT_IN_STRCPY
, BUILT_IN_NORMAL
, "strcpy");
4366 builtin_function ("__builtin_strlen", strlen_ftype
,
4367 BUILT_IN_STRLEN
, BUILT_IN_NORMAL
, "strlen");
4368 builtin_function ("__builtin_sqrtf", float_ftype_float
,
4369 BUILT_IN_FSQRT
, BUILT_IN_NORMAL
, "sqrtf");
4370 builtin_function ("__builtin_fsqrt", double_ftype_double
,
4371 BUILT_IN_FSQRT
, BUILT_IN_NORMAL
, "sqrt");
4372 builtin_function ("__builtin_sqrtl", ldouble_ftype_ldouble
,
4373 BUILT_IN_FSQRT
, BUILT_IN_NORMAL
, "sqrtl");
4374 builtin_function ("__builtin_sinf", float_ftype_float
,
4375 BUILT_IN_SIN
, BUILT_IN_NORMAL
, "sinf");
4376 builtin_function ("__builtin_sin", double_ftype_double
,
4377 BUILT_IN_SIN
, BUILT_IN_NORMAL
, "sin");
4378 builtin_function ("__builtin_sinl", ldouble_ftype_ldouble
,
4379 BUILT_IN_SIN
, BUILT_IN_NORMAL
, "sinl");
4380 builtin_function ("__builtin_cosf", float_ftype_float
,
4381 BUILT_IN_COS
, BUILT_IN_NORMAL
, "cosf");
4382 builtin_function ("__builtin_cos", double_ftype_double
,
4383 BUILT_IN_COS
, BUILT_IN_NORMAL
, "cos");
4384 builtin_function ("__builtin_cosl", ldouble_ftype_ldouble
,
4385 BUILT_IN_COS
, BUILT_IN_NORMAL
, "cosl");
4386 built_in_decls
[BUILT_IN_PUTCHAR
] =
4387 builtin_function ("__builtin_putchar", int_ftype_int
,
4388 BUILT_IN_PUTCHAR
, BUILT_IN_NORMAL
, "putchar");
4389 built_in_decls
[BUILT_IN_PUTS
] =
4390 builtin_function ("__builtin_puts", puts_ftype
,
4391 BUILT_IN_PUTS
, BUILT_IN_NORMAL
, "puts");
4392 builtin_function ("__builtin_printf", printf_ftype
,
4393 BUILT_IN_PRINTF
, BUILT_IN_FRONTEND
, "printf");
4394 /* We declare these without argument so that the initial declaration
4395 for these identifiers is a builtin. That allows us to redeclare
4396 them later with argument without worrying about the explicit
4397 declarations in stdio.h being taken as the initial declaration.
4398 Also, save the _DECL for these so we can use them later. */
4399 built_in_decls
[BUILT_IN_FWRITE
] =
4400 builtin_function ("__builtin_fwrite", sizet_ftype_any
,
4401 BUILT_IN_FWRITE
, BUILT_IN_NORMAL
, "fwrite");
4402 built_in_decls
[BUILT_IN_FPUTC
] =
4403 builtin_function ("__builtin_fputc", int_ftype_any
,
4404 BUILT_IN_FPUTC
, BUILT_IN_NORMAL
, "fputc");
4405 built_in_decls
[BUILT_IN_FPUTS
] =
4406 builtin_function ("__builtin_fputs", int_ftype_any
,
4407 BUILT_IN_FPUTS
, BUILT_IN_NORMAL
, "fputs");
4411 builtin_function ("abs", int_ftype_int
, BUILT_IN_ABS
,
4412 BUILT_IN_NORMAL
, NULL_PTR
);
4413 builtin_function ("fabsf", float_ftype_float
, BUILT_IN_FABS
,
4414 BUILT_IN_NORMAL
, NULL_PTR
);
4415 builtin_function ("fabs", double_ftype_double
, BUILT_IN_FABS
,
4416 BUILT_IN_NORMAL
, NULL_PTR
);
4417 builtin_function ("fabsl", ldouble_ftype_ldouble
, BUILT_IN_FABS
,
4418 BUILT_IN_NORMAL
, NULL_PTR
);
4419 builtin_function ("labs", long_ftype_long
, BUILT_IN_LABS
,
4420 BUILT_IN_NORMAL
, NULL_PTR
);
4421 if (flag_isoc99
|| ! no_nonansi_builtins
)
4422 builtin_function ("llabs", longlong_ftype_longlong
, BUILT_IN_LLABS
,
4423 BUILT_IN_NORMAL
, NULL_PTR
);
4424 builtin_function ("memcpy", memcpy_ftype
, BUILT_IN_MEMCPY
,
4425 BUILT_IN_NORMAL
, NULL_PTR
);
4426 builtin_function ("memcmp", int_ftype_cptr_cptr_sizet
, BUILT_IN_MEMCMP
,
4427 BUILT_IN_NORMAL
, NULL_PTR
);
4428 builtin_function ("memset", memset_ftype
, BUILT_IN_MEMSET
,
4429 BUILT_IN_NORMAL
, NULL_PTR
);
4430 builtin_function ("strcmp", int_ftype_string_string
, BUILT_IN_STRCMP
,
4431 BUILT_IN_NORMAL
, NULL_PTR
);
4432 builtin_function ("strcpy", string_ftype_ptr_ptr
, BUILT_IN_STRCPY
,
4433 BUILT_IN_NORMAL
, NULL_PTR
);
4434 builtin_function ("strlen", strlen_ftype
, BUILT_IN_STRLEN
,
4435 BUILT_IN_NORMAL
, NULL_PTR
);
4436 builtin_function ("sqrtf", float_ftype_float
, BUILT_IN_FSQRT
,
4437 BUILT_IN_NORMAL
, NULL_PTR
);
4438 builtin_function ("sqrt", double_ftype_double
, BUILT_IN_FSQRT
,
4439 BUILT_IN_NORMAL
, NULL_PTR
);
4440 builtin_function ("sqrtl", ldouble_ftype_ldouble
, BUILT_IN_FSQRT
,
4441 BUILT_IN_NORMAL
, NULL_PTR
);
4442 builtin_function ("sinf", float_ftype_float
, BUILT_IN_SIN
,
4443 BUILT_IN_NORMAL
, NULL_PTR
);
4444 builtin_function ("sin", double_ftype_double
, BUILT_IN_SIN
,
4445 BUILT_IN_NORMAL
, NULL_PTR
);
4446 builtin_function ("sinl", ldouble_ftype_ldouble
, BUILT_IN_SIN
,
4447 BUILT_IN_NORMAL
, NULL_PTR
);
4448 builtin_function ("cosf", float_ftype_float
, BUILT_IN_COS
,
4449 BUILT_IN_NORMAL
, NULL_PTR
);
4450 builtin_function ("cos", double_ftype_double
, BUILT_IN_COS
,
4451 BUILT_IN_NORMAL
, NULL_PTR
);
4452 builtin_function ("cosl", ldouble_ftype_ldouble
, BUILT_IN_COS
,
4453 BUILT_IN_NORMAL
, NULL_PTR
);
4454 builtin_function ("printf", printf_ftype
, BUILT_IN_PRINTF
,
4455 BUILT_IN_FRONTEND
, NULL_PTR
);
4456 /* We declare these without argument so that the initial
4457 declaration for these identifiers is a builtin. That allows
4458 us to redeclare them later with argument without worrying
4459 about the explicit declarations in stdio.h being taken as the
4460 initial declaration. */
4461 builtin_function ("fputc", int_ftype_any
, BUILT_IN_FPUTC
,
4462 BUILT_IN_NORMAL
, NULL_PTR
);
4463 builtin_function ("fputs", int_ftype_any
, BUILT_IN_FPUTS
,
4464 BUILT_IN_NORMAL
, NULL_PTR
);
4466 /* Declare these functions volatile
4467 to avoid spurious "control drops through" warnings. */
4468 temp
= builtin_function ("abort", cplus_mode
? void_ftype
: void_ftype_any
,
4469 0, NOT_BUILT_IN
, NULL_PTR
);
4470 TREE_THIS_VOLATILE (temp
) = 1;
4471 TREE_SIDE_EFFECTS (temp
) = 1;
4473 #if 0 /* ??? The C++ frontend used to do this. */
4474 /* Well, these are actually ANSI, but we can't set DECL_BUILT_IN on
4476 DECL_BUILT_IN_NONANSI (temp
) = 1;
4478 temp
= builtin_function ("exit",
4479 cplus_mode
? void_ftype_int
: void_ftype_any
,
4480 0, NOT_BUILT_IN
, NULL_PTR
);
4481 TREE_THIS_VOLATILE (temp
) = 1;
4482 TREE_SIDE_EFFECTS (temp
) = 1;
4484 #if 0 /* ??? The C++ frontend used to do this. */
4485 /* Well, these are actually ANSI, but we can't set DECL_BUILT_IN on
4487 DECL_BUILT_IN_NONANSI (temp
) = 1;
4492 /* Support for these has not been written in either expand_builtin
4493 or build_function_call. */
4494 builtin_function ("__builtin_div", default_ftype
, BUILT_IN_DIV
,
4495 BUILT_IN_NORMAL
, NULL_PTR
);
4496 builtin_function ("__builtin_ldiv", default_ftype
, BUILT_IN_LDIV
,
4497 BUILT_IN_NORMAL
, NULL_PTR
);
4498 builtin_function ("__builtin_ffloor", double_ftype_double
, BUILT_IN_FFLOOR
,
4499 BUILT_IN_NORMAL
, NULL_PTR
);
4500 builtin_function ("__builtin_fceil", double_ftype_double
, BUILT_IN_FCEIL
,
4501 BUILT_IN_NORMAL
, NULL_PTR
);
4502 builtin_function ("__builtin_fmod", double_ftype_double_double
,
4503 BUILT_IN_FMOD
, BUILT_IN_NORMAL
, NULL_PTR
);
4504 builtin_function ("__builtin_frem", double_ftype_double_double
,
4505 BUILT_IN_FREM
, BUILT_IN_NORMAL
, NULL_PTR
);
4506 builtin_function ("__builtin_getexp", double_ftype_double
, BUILT_IN_GETEXP
,
4507 BUILT_IN_NORMAL
, NULL_PTR
);
4508 builtin_function ("__builtin_getman", double_ftype_double
, BUILT_IN_GETMAN
,
4509 BUILT_IN_NORMAL
, NULL_PTR
);
4512 main_identifier_node
= get_identifier ("main");
4514 /* ??? Perhaps there's a better place to do this. But it is related
4515 to __builtin_va_arg, so it isn't that off-the-wall. */
4516 lang_type_promotes_to
= simple_type_promotes_to
;
4520 build_va_arg (expr
, type
)
4523 return build1 (VA_ARG_EXPR
, type
, expr
);
4526 /* Given a type, apply default promotions wrt unnamed function arguments
4527 and return the new type. Return NULL_TREE if no change. */
4528 /* ??? There is a function of the same name in the C++ front end that
4529 does something similar, but is more thorough and does not return NULL
4530 if no change. We could perhaps share code, but it would make the
4531 self_promoting_type property harder to identify. */
4534 simple_type_promotes_to (type
)
4537 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
4538 return double_type_node
;
4540 if (C_PROMOTING_INTEGER_TYPE_P (type
))
4542 /* Traditionally, unsignedness is preserved in default promotions.
4543 Also preserve unsignedness if not really getting any wider. */
4544 if (TREE_UNSIGNED (type
)
4545 && (flag_traditional
4546 || TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)))
4547 return unsigned_type_node
;
4548 return integer_type_node
;
4554 /* Return 1 if PARMS specifies a fixed number of parameters
4555 and none of their types is affected by default promotions. */
4558 self_promoting_args_p (parms
)
4562 for (t
= parms
; t
; t
= TREE_CHAIN (t
))
4564 register tree type
= TREE_VALUE (t
);
4566 if (TREE_CHAIN (t
) == 0 && type
!= void_type_node
)
4572 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
4575 if (C_PROMOTING_INTEGER_TYPE_P (type
))
4581 /* Recognize certain built-in functions so we can make tree-codes
4582 other than CALL_EXPR. We do this when it enables fold-const.c
4583 to do something useful. */
4584 /* ??? By rights this should go in builtins.c, but only C and C++
4585 implement build_{binary,unary}_op. Not exactly sure what bits
4586 of functionality are actually needed from those functions, or
4587 where the similar functionality exists in the other front ends. */
4590 expand_tree_builtin (function
, params
, coerced_params
)
4591 tree function
, params
, coerced_params
;
4593 enum tree_code code
;
4595 if (DECL_BUILT_IN_CLASS (function
) != BUILT_IN_NORMAL
)
4598 switch (DECL_FUNCTION_CODE (function
))
4602 case BUILT_IN_LLABS
:
4604 if (coerced_params
== 0)
4605 return integer_zero_node
;
4606 return build_unary_op (ABS_EXPR
, TREE_VALUE (coerced_params
), 0);
4608 case BUILT_IN_ISGREATER
:
4609 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
)
4615 case BUILT_IN_ISGREATEREQUAL
:
4616 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
)
4622 case BUILT_IN_ISLESS
:
4623 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
)
4629 case BUILT_IN_ISLESSEQUAL
:
4630 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
)
4636 case BUILT_IN_ISLESSGREATER
:
4637 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
)
4643 case BUILT_IN_ISUNORDERED
:
4644 if (TARGET_FLOAT_FORMAT
!= IEEE_FLOAT_FORMAT
)
4645 return integer_zero_node
;
4646 code
= UNORDERED_EXPR
;
4654 || TREE_CHAIN (params
) == 0)
4656 error ("too few arguments to function `%s'",
4657 IDENTIFIER_POINTER (DECL_NAME (function
)));
4658 return error_mark_node
;
4660 else if (TREE_CHAIN (TREE_CHAIN (params
)) != 0)
4662 error ("too many arguments to function `%s'",
4663 IDENTIFIER_POINTER (DECL_NAME (function
)));
4664 return error_mark_node
;
4667 arg0
= TREE_VALUE (params
);
4668 arg1
= TREE_VALUE (TREE_CHAIN (params
));
4669 arg0
= build_binary_op (code
, arg0
, arg1
, 0);
4670 if (code
!= UNORDERED_EXPR
)
4671 arg0
= build_unary_op (TRUTH_NOT_EXPR
, arg0
, 0);
4683 /* Returns non-zero if CODE is the code for a statement. */
4686 statement_code_p (code
)
4687 enum tree_code code
;
4710 if (lang_statement_code_p
)
4711 return (*lang_statement_code_p
) (code
);
4716 /* Walk the statemen tree, rooted at *tp. Apply FUNC to all the
4717 sub-trees of *TP in a pre-order traversal. FUNC is called with the
4718 DATA and the address of each sub-tree. If FUNC returns a non-NULL
4719 value, the traversal is aborted, and the value returned by FUNC is
4720 returned. If FUNC sets WALK_SUBTREES to zero, then the subtrees of
4721 the node being visited are not walked.
4723 We don't need a without_duplicates variant of this one because the
4724 statement tree is a tree, not a graph. */
4727 walk_stmt_tree (tp
, func
, data
)
4732 enum tree_code code
;
4737 #define WALK_SUBTREE(NODE) \
4740 result = walk_stmt_tree (&(NODE), func, data); \
4746 /* Skip empty subtrees. */
4750 /* Skip subtrees below non-statement nodes. */
4751 if (!statement_code_p (TREE_CODE (*tp
)))
4754 /* Call the function. */
4756 result
= (*func
) (tp
, &walk_subtrees
, data
);
4758 /* If we found something, return it. */
4762 /* Even if we didn't, FUNC may have decided that there was nothing
4763 interesting below this point in the tree. */
4767 /* FUNC may have modified the tree, recheck that we're looking at a
4769 code
= TREE_CODE (*tp
);
4770 if (!statement_code_p (code
))
4773 /* Walk over all the sub-trees of this operand. Statement nodes never
4774 contain RTL, and we needn't worry about TARGET_EXPRs. */
4775 len
= TREE_CODE_LENGTH (code
);
4777 /* Go through the subtrees. We need to do this in forward order so
4778 that the scope of a FOR_EXPR is handled properly. */
4779 for (i
= 0; i
< len
; ++i
)
4780 WALK_SUBTREE (TREE_OPERAND (*tp
, i
));
4782 /* Finally visit the chain. This can be tail-recursion optimized if
4783 we write it this way. */
4784 return walk_stmt_tree (&TREE_CHAIN (*tp
), func
, data
);
4789 /* Used to compare case labels. K1 and K2 are actually tree nodes
4790 representing case labels, or NULL_TREE for a `default' label.
4791 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
4792 K2, and 0 if K1 and K2 are equal. */
4795 case_compare (k1
, k2
)
4799 /* Consider a NULL key (such as arises with a `default' label) to be
4800 smaller than anything else. */
4806 return tree_int_cst_compare ((tree
) k1
, (tree
) k2
);
4809 /* Process a case label for the range LOW_VALUE ... HIGH_VALUE. If
4810 LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
4811 actually a `default' label. If only HIGH_VALUE is NULL_TREE, then
4812 case label was declared using the usual C/C++ syntax, rather than
4813 the GNU case range extension. CASES is a tree containing all the
4814 case ranges processed so far; COND is the condition for the
4815 switch-statement itself. Returns the CASE_LABEL created, or
4816 ERROR_MARK_NODE if no CASE_LABEL is created. */
4819 c_add_case_label (cases
, cond
, low_value
, high_value
)
4828 splay_tree_node node
;
4830 /* Create the LABEL_DECL itself. */
4831 label
= build_decl (LABEL_DECL
, NULL_TREE
, NULL_TREE
);
4832 DECL_CONTEXT (label
) = current_function_decl
;
4834 /* If there was an error processing the switch condition, bail now
4835 before we get more confused. */
4836 if (!cond
|| cond
== error_mark_node
)
4838 /* Add a label anyhow so that the back-end doesn't think that
4839 the beginning of the switch is unreachable. */
4841 add_stmt (build_case_label (NULL_TREE
, NULL_TREE
, label
));
4842 return error_mark_node
;
4845 if ((low_value
&& TREE_TYPE (low_value
)
4846 && POINTER_TYPE_P (TREE_TYPE (low_value
)))
4847 || (high_value
&& TREE_TYPE (high_value
)
4848 && POINTER_TYPE_P (TREE_TYPE (high_value
))))
4849 error ("pointers are not permitted as case values");
4851 /* Case ranges are a GNU extension. */
4852 if (high_value
&& pedantic
)
4854 if (c_language
== clk_cplusplus
)
4855 pedwarn ("ISO C++ forbids range expressions in switch statements");
4857 pedwarn ("ISO C forbids range expressions in switch statements");
4860 type
= TREE_TYPE (cond
);
4863 low_value
= check_case_value (low_value
);
4864 low_value
= convert_and_check (type
, low_value
);
4868 high_value
= check_case_value (high_value
);
4869 high_value
= convert_and_check (type
, high_value
);
4872 /* If an error has occurred, bail out now. */
4873 if (low_value
== error_mark_node
|| high_value
== error_mark_node
)
4876 add_stmt (build_case_label (NULL_TREE
, NULL_TREE
, label
));
4877 return error_mark_node
;
4880 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
4881 really a case range, even though it was written that way. Remove
4882 the HIGH_VALUE to simplify later processing. */
4883 if (tree_int_cst_equal (low_value
, high_value
))
4884 high_value
= NULL_TREE
;
4885 if (low_value
&& high_value
4886 && !tree_int_cst_lt (low_value
, high_value
))
4887 warning ("empty range specified");
4889 /* Look up the LOW_VALUE in the table of case labels we already
4891 node
= splay_tree_lookup (cases
, (splay_tree_key
) low_value
);
4892 /* If there was not an exact match, check for overlapping ranges.
4893 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
4894 that's a `default' label and the only overlap is an exact match. */
4895 if (!node
&& (low_value
|| high_value
))
4897 splay_tree_node low_bound
;
4898 splay_tree_node high_bound
;
4900 /* Even though there wasn't an exact match, there might be an
4901 overlap between this case range and another case range.
4902 Since we've (inductively) not allowed any overlapping case
4903 ranges, we simply need to find the greatest low case label
4904 that is smaller that LOW_VALUE, and the smallest low case
4905 label that is greater than LOW_VALUE. If there is an overlap
4906 it will occur in one of these two ranges. */
4907 low_bound
= splay_tree_predecessor (cases
,
4908 (splay_tree_key
) low_value
);
4909 high_bound
= splay_tree_successor (cases
,
4910 (splay_tree_key
) low_value
);
4912 /* Check to see if the LOW_BOUND overlaps. It is smaller than
4913 the LOW_VALUE, so there is no need to check unless the
4914 LOW_BOUND is in fact itself a case range. */
4916 && CASE_HIGH ((tree
) low_bound
->value
)
4917 && tree_int_cst_compare (CASE_HIGH ((tree
) low_bound
->value
),
4920 /* Check to see if the HIGH_BOUND overlaps. The low end of that
4921 range is bigger than the low end of the current range, so we
4922 are only interested if the current range is a real range, and
4923 not an ordinary case label. */
4926 && (tree_int_cst_compare ((tree
) high_bound
->key
,
4931 /* If there was an overlap, issue an error. */
4934 tree duplicate
= CASE_LABEL_DECL ((tree
) node
->value
);
4938 error ("duplicate (or overlapping) case value");
4939 error_with_decl (duplicate
,
4940 "this is the first entry overlapping that value");
4944 error ("duplicate case value") ;
4945 error_with_decl (duplicate
, "previously used here");
4949 error ("multiple default labels in one switch");
4950 error_with_decl (duplicate
, "this is the first default label");
4953 add_stmt (build_case_label (NULL_TREE
, NULL_TREE
, label
));
4956 /* Add a CASE_LABEL to the statement-tree. */
4957 case_label
= add_stmt (build_case_label (low_value
, high_value
, label
));
4958 /* Register this case label in the splay tree. */
4959 splay_tree_insert (cases
,
4960 (splay_tree_key
) low_value
,
4961 (splay_tree_value
) case_label
);
4966 /* Mark P (a stmt_tree) for GC. The use of a `void *' for the
4967 parameter allows this function to be used as a GC-marking
4974 stmt_tree st
= (stmt_tree
) p
;
4976 ggc_mark_tree (st
->x_last_stmt
);
4977 ggc_mark_tree (st
->x_last_expr_type
);
4980 /* Mark LD for GC. */
4983 c_mark_lang_decl (c
)
4984 struct c_lang_decl
*c
;
4986 ggc_mark_tree (c
->saved_tree
);
4989 /* Mark F for GC. */
4992 mark_c_language_function (f
)
4993 struct language_function
*f
;
4998 mark_stmt_tree (&f
->x_stmt_tree
);
4999 ggc_mark_tree (f
->x_scope_stmt_stack
);
5002 /* Hook used by expand_expr to expand language-specific tree codes. */
5005 c_expand_expr (exp
, target
, tmode
, modifier
)
5008 enum machine_mode tmode
;
5009 enum expand_modifier modifier
;
5011 switch (TREE_CODE (exp
))
5018 /* Since expand_expr_stmt calls free_temp_slots after every
5019 expression statement, we must call push_temp_slots here.
5020 Otherwise, any temporaries in use now would be considered
5021 out-of-scope after the first EXPR_STMT from within the
5024 rtl_expr
= expand_start_stmt_expr ();
5025 expand_stmt (STMT_EXPR_STMT (exp
));
5026 expand_end_stmt_expr (rtl_expr
);
5027 result
= expand_expr (rtl_expr
, target
, tmode
, modifier
);
5035 if (TREE_CODE (TREE_OPERAND (exp
, 0)) == ADDR_EXPR
5036 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
5038 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
5039 && (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp
, 0), 0))
5040 == BUILT_IN_FRONTEND
))
5041 return c_expand_builtin (exp
, target
, tmode
, modifier
);
5055 /* Hook used by safe_from_p to handle language-specific tree codes. */
5058 c_safe_from_p (target
, exp
)
5062 /* We can see statements here when processing the body of a
5063 statement-expression. For a declaration statement declaring a
5064 variable, look at the variable's initializer. */
5065 if (TREE_CODE (exp
) == DECL_STMT
)
5067 tree decl
= DECL_STMT_DECL (exp
);
5069 if (TREE_CODE (decl
) == VAR_DECL
5070 && DECL_INITIAL (decl
)
5071 && !safe_from_p (target
, DECL_INITIAL (decl
), /*top_p=*/0))
5075 /* For any statement, we must follow the statement-chain. */
5076 if (statement_code_p (TREE_CODE (exp
)) && TREE_CHAIN (exp
))
5077 return safe_from_p (target
, TREE_CHAIN (exp
), /*top_p=*/0);
5079 /* Assume everything else is safe. */
5083 /* Tree code classes. */
5085 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
5087 static char c_tree_code_type
[] = {
5089 #include "c-common.def"
5093 /* Table indexed by tree code giving number of expression
5094 operands beyond the fixed part of the node structure.
5095 Not used for types or decls. */
5097 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
5099 static int c_tree_code_length
[] = {
5101 #include "c-common.def"
5105 /* Names of tree components.
5106 Used for printing out the tree and error messages. */
5107 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
5109 static const char *c_tree_code_name
[] = {
5111 #include "c-common.def"
5115 /* Adds the tree codes specific to the C front end to the list of all
5121 memcpy (tree_code_type
+ (int) LAST_AND_UNUSED_TREE_CODE
,
5123 (int)LAST_C_TREE_CODE
- (int)LAST_AND_UNUSED_TREE_CODE
);
5124 memcpy (tree_code_length
+ (int) LAST_AND_UNUSED_TREE_CODE
,
5126 (LAST_C_TREE_CODE
- (int)LAST_AND_UNUSED_TREE_CODE
) * sizeof (int));
5127 memcpy (tree_code_name
+ (int) LAST_AND_UNUSED_TREE_CODE
,
5129 (LAST_C_TREE_CODE
- (int)LAST_AND_UNUSED_TREE_CODE
) * sizeof (char *));
5132 #define CALLED_AS_BUILT_IN(NODE) \
5133 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
5136 c_expand_builtin (exp
, target
, tmode
, modifier
)
5139 enum machine_mode tmode
;
5140 enum expand_modifier modifier
;
5142 tree type
= TREE_TYPE (exp
);
5143 tree fndecl
= TREE_OPERAND (TREE_OPERAND (exp
, 0), 0);
5144 tree arglist
= TREE_OPERAND (exp
, 1);
5145 enum built_in_function fcode
= DECL_FUNCTION_CODE (fndecl
);
5146 enum tree_code code
= TREE_CODE (exp
);
5147 const int ignore
= (target
== const0_rtx
5148 || ((code
== NON_LVALUE_EXPR
|| code
== NOP_EXPR
5149 || code
== CONVERT_EXPR
|| code
== REFERENCE_EXPR
5150 || code
== COND_EXPR
)
5151 && TREE_CODE (type
) == VOID_TYPE
));
5153 if (! optimize
&& ! CALLED_AS_BUILT_IN (fndecl
))
5154 return expand_call (exp
, target
, ignore
);
5158 case BUILT_IN_PRINTF
:
5159 target
= c_expand_builtin_printf (arglist
, target
, tmode
,
5165 default: /* just do library call, if unknown builtin */
5166 error ("built-in function `%s' not currently supported",
5167 IDENTIFIER_POINTER (DECL_NAME (fndecl
)));
5170 /* The switch statement above can drop through to cause the function
5171 to be called normally. */
5172 return expand_call (exp
, target
, ignore
);
5175 /* Check an arglist to *printf for problems. The arglist should start
5176 at the format specifier, with the remaining arguments immediately
5179 is_valid_printf_arglist (arglist
)
5182 /* Save this value so we can restore it later. */
5183 const int SAVE_pedantic
= pedantic
;
5184 int diagnostic_occurred
= 0;
5186 /* Set this to a known value so the user setting won't affect code
5189 /* Check to make sure there are no format specifier errors. */
5190 check_function_format (&diagnostic_occurred
,
5191 maybe_get_identifier("printf"),
5192 NULL_TREE
, arglist
);
5194 /* Restore the value of `pedantic'. */
5195 pedantic
= SAVE_pedantic
;
5197 /* If calling `check_function_format_ptr' produces a warning, we
5198 return false, otherwise we return true. */
5199 return ! diagnostic_occurred
;
5202 /* If the arguments passed to printf are suitable for optimizations,
5203 we attempt to transform the call. */
5205 c_expand_builtin_printf (arglist
, target
, tmode
, modifier
, ignore
)
5208 enum machine_mode tmode
;
5209 enum expand_modifier modifier
;
5212 tree fn_putchar
= built_in_decls
[BUILT_IN_PUTCHAR
],
5213 fn_puts
= built_in_decls
[BUILT_IN_PUTS
];
5214 tree fn
, format_arg
, stripped_string
;
5216 /* If the return value is used, or the replacement _DECL isn't
5217 initialized, don't do the transformation. */
5218 if (!ignore
|| !fn_putchar
|| !fn_puts
)
5221 /* Verify the required arguments in the original call. */
5223 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist
))) != POINTER_TYPE
))
5226 /* Check the specifier vs. the parameters. */
5227 if (!is_valid_printf_arglist (arglist
))
5230 format_arg
= TREE_VALUE (arglist
);
5231 stripped_string
= format_arg
;
5232 STRIP_NOPS (stripped_string
);
5233 if (stripped_string
&& TREE_CODE (stripped_string
) == ADDR_EXPR
)
5234 stripped_string
= TREE_OPERAND (stripped_string
, 0);
5236 /* If the format specifier isn't a STRING_CST, punt. */
5237 if (TREE_CODE (stripped_string
) != STRING_CST
)
5240 /* OK! We can attempt optimization. */
5242 /* If the format specifier was "%s\n", call __builtin_puts(arg2). */
5243 if (strcmp (TREE_STRING_POINTER (stripped_string
), "%s\n") == 0)
5245 arglist
= TREE_CHAIN (arglist
);
5248 /* If the format specifier was "%c", call __builtin_putchar (arg2). */
5249 else if (strcmp (TREE_STRING_POINTER (stripped_string
), "%c") == 0)
5251 arglist
= TREE_CHAIN (arglist
);
5256 /* We can't handle anything else with % args or %% ... yet. */
5257 if (strchr (TREE_STRING_POINTER (stripped_string
), '%'))
5260 /* If the resulting constant string has a length of 1, call
5261 putchar. Note, TREE_STRING_LENGTH includes the terminating
5262 NULL in its count. */
5263 if (TREE_STRING_LENGTH (stripped_string
) == 2)
5265 /* Given printf("c"), (where c is any one character,)
5266 convert "c"[0] to an int and pass that to the replacement
5268 arglist
= build_int_2 (TREE_STRING_POINTER (stripped_string
)[0], 0);
5269 arglist
= build_tree_list (NULL_TREE
, arglist
);
5273 /* If the resulting constant was "string\n", call
5274 __builtin_puts("string"). Ensure "string" has at least one
5275 character besides the trailing \n. Note, TREE_STRING_LENGTH
5276 includes the terminating NULL in its count. */
5277 else if (TREE_STRING_LENGTH (stripped_string
) > 2
5278 && TREE_STRING_POINTER (stripped_string
)
5279 [TREE_STRING_LENGTH (stripped_string
) - 2] == '\n')
5281 /* Create a NULL-terminated string that's one char shorter
5282 than the original, stripping off the trailing '\n'. */
5283 const int newlen
= TREE_STRING_LENGTH (stripped_string
) - 1;
5284 char *newstr
= (char *) alloca (newlen
);
5285 memcpy (newstr
, TREE_STRING_POINTER (stripped_string
), newlen
- 1);
5286 newstr
[newlen
- 1] = 0;
5288 arglist
= build_string (newlen
, newstr
);
5289 TREE_TYPE (arglist
) =
5290 build_type_variant (char_array_type_node
, 1, 0);
5291 arglist
= build_tree_list (NULL_TREE
, arglist
);
5295 /* We'd like to arrange to call fputs(string) here, but we
5296 need stdout and don't have a way to get it ... yet. */
5300 return expand_expr (build_function_call (fn
, arglist
),
5301 (ignore
? const0_rtx
: target
),