(in m32rx patch): Replace "." with "@." when preceeded by a capital letter
[official-gcc.git] / gcc / c-common.c
blobdde1af3b892f93ffe4b36af92e67be04b71d70d6
1 /* Subroutines shared by all languages that are variants of C.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "tree.h"
25 #include "flags.h"
26 #include "toplev.h"
27 #include "output.h"
28 #include "c-pragma.h"
29 #include "rtl.h"
30 #include "ggc.h"
31 #include "expr.h"
32 #include "c-common.h"
33 #include "diagnostic.h"
34 #include "tm_p.h"
35 #include "obstack.h"
36 #include "c-lex.h"
37 #include "cpplib.h"
38 #include "target.h"
39 cpp_reader *parse_in; /* Declared in c-lex.h. */
41 #undef WCHAR_TYPE_SIZE
42 #define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node)
44 /* We let tm.h override the types used here, to handle trivial differences
45 such as the choice of unsigned int or long unsigned int for size_t.
46 When machines start needing nontrivial differences in the size type,
47 it would be best to do something here to figure out automatically
48 from other information what type to use. */
50 #ifndef SIZE_TYPE
51 #define SIZE_TYPE "long unsigned int"
52 #endif
54 #ifndef WCHAR_TYPE
55 #define WCHAR_TYPE "int"
56 #endif
58 #ifndef PTRDIFF_TYPE
59 #define PTRDIFF_TYPE "long int"
60 #endif
62 #ifndef WINT_TYPE
63 #define WINT_TYPE "unsigned int"
64 #endif
66 #ifndef INTMAX_TYPE
67 #define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
68 ? "int" \
69 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
70 ? "long int" \
71 : "long long int"))
72 #endif
74 #ifndef UINTMAX_TYPE
75 #define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
76 ? "unsigned int" \
77 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
78 ? "long unsigned int" \
79 : "long long unsigned int"))
80 #endif
82 /* The following symbols are subsumed in the c_global_trees array, and
83 listed here individually for documentation purposes.
85 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
87 tree short_integer_type_node;
88 tree long_integer_type_node;
89 tree long_long_integer_type_node;
91 tree short_unsigned_type_node;
92 tree long_unsigned_type_node;
93 tree long_long_unsigned_type_node;
95 tree boolean_type_node;
96 tree boolean_false_node;
97 tree boolean_true_node;
99 tree ptrdiff_type_node;
101 tree unsigned_char_type_node;
102 tree signed_char_type_node;
103 tree wchar_type_node;
104 tree signed_wchar_type_node;
105 tree unsigned_wchar_type_node;
107 tree float_type_node;
108 tree double_type_node;
109 tree long_double_type_node;
111 tree complex_integer_type_node;
112 tree complex_float_type_node;
113 tree complex_double_type_node;
114 tree complex_long_double_type_node;
116 tree intQI_type_node;
117 tree intHI_type_node;
118 tree intSI_type_node;
119 tree intDI_type_node;
120 tree intTI_type_node;
122 tree unsigned_intQI_type_node;
123 tree unsigned_intHI_type_node;
124 tree unsigned_intSI_type_node;
125 tree unsigned_intDI_type_node;
126 tree unsigned_intTI_type_node;
128 tree widest_integer_literal_type_node;
129 tree widest_unsigned_literal_type_node;
131 Nodes for types `void *' and `const void *'.
133 tree ptr_type_node, const_ptr_type_node;
135 Nodes for types `char *' and `const char *'.
137 tree string_type_node, const_string_type_node;
139 Type `char[SOMENUMBER]'.
140 Used when an array of char is needed and the size is irrelevant.
142 tree char_array_type_node;
144 Type `int[SOMENUMBER]' or something like it.
145 Used when an array of int needed and the size is irrelevant.
147 tree int_array_type_node;
149 Type `wchar_t[SOMENUMBER]' or something like it.
150 Used when a wide string literal is created.
152 tree wchar_array_type_node;
154 Type `int ()' -- used for implicit declaration of functions.
156 tree default_function_type;
158 A VOID_TYPE node, packaged in a TREE_LIST.
160 tree void_list_node;
162 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
163 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
164 VAR_DECLS, but C++ does.)
166 tree function_name_decl_node;
167 tree pretty_function_name_decl_node;
168 tree c99_function_name_decl_node;
170 Stack of nested function name VAR_DECLs.
172 tree saved_function_name_decls;
176 tree c_global_trees[CTI_MAX];
178 /* Nonzero means don't recognize the non-ANSI builtin functions. */
180 int flag_no_builtin;
182 /* Nonzero means don't recognize the non-ANSI builtin functions.
183 -ansi sets this. */
185 int flag_no_nonansi_builtin;
187 /* Nonzero means give `double' the same size as `float'. */
189 int flag_short_double;
191 /* Nonzero means give `wchar_t' the same size as `short'. */
193 int flag_short_wchar;
195 /* Nonzero means warn about possible violations of sequence point rules. */
197 int warn_sequence_point;
199 /* Nonzero means to warn about compile-time division by zero. */
200 int warn_div_by_zero = 1;
202 /* The elements of `ridpointers' are identifier nodes for the reserved
203 type names and storage classes. It is indexed by a RID_... value. */
204 tree *ridpointers;
206 tree (*make_fname_decl) PARAMS ((tree, int));
208 /* If non-NULL, the address of a language-specific function that
209 returns 1 for language-specific statement codes. */
210 int (*lang_statement_code_p) PARAMS ((enum tree_code));
212 /* If non-NULL, the address of a language-specific function that takes
213 any action required right before expand_function_end is called. */
214 void (*lang_expand_function_end) PARAMS ((void));
216 /* If this variable is defined to a non-NULL value, it will be called
217 after the file has been completely parsed. */
218 void (*back_end_hook) PARAMS ((tree));
220 /* Nonzero means the expression being parsed will never be evaluated.
221 This is a count, since unevaluated expressions can nest. */
222 int skip_evaluation;
224 /* Information about how a function name is generated. */
225 struct fname_var_t
227 tree *const decl; /* pointer to the VAR_DECL. */
228 const unsigned rid; /* RID number for the identifier. */
229 const int pretty; /* How pretty is it? */
232 /* The three ways of getting then name of the current function. */
234 const struct fname_var_t fname_vars[] =
236 /* C99 compliant __func__, must be first. */
237 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
238 /* GCC __FUNCTION__ compliant. */
239 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
240 /* GCC __PRETTY_FUNCTION__ compliant. */
241 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
242 {NULL, 0, 0},
245 static int constant_fits_type_p PARAMS ((tree, tree));
247 /* Keep a stack of if statements. We record the number of compound
248 statements seen up to the if keyword, as well as the line number
249 and file of the if. If a potentially ambiguous else is seen, that
250 fact is recorded; the warning is issued when we can be sure that
251 the enclosing if statement does not have an else branch. */
252 typedef struct
254 int compstmt_count;
255 int line;
256 const char *file;
257 int needs_warning;
258 tree if_stmt;
259 } if_elt;
261 static if_elt *if_stack;
263 /* Amount of space in the if statement stack. */
264 static int if_stack_space = 0;
266 /* Stack pointer. */
267 static int if_stack_pointer = 0;
269 /* Record the start of an if-then, and record the start of it
270 for ambiguous else detection. */
272 void
273 c_expand_start_cond (cond, compstmt_count)
274 tree cond;
275 int compstmt_count;
277 tree if_stmt;
279 /* Make sure there is enough space on the stack. */
280 if (if_stack_space == 0)
282 if_stack_space = 10;
283 if_stack = (if_elt *)xmalloc (10 * sizeof (if_elt));
285 else if (if_stack_space == if_stack_pointer)
287 if_stack_space += 10;
288 if_stack = (if_elt *)xrealloc (if_stack, if_stack_space * sizeof (if_elt));
291 if_stmt = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
292 IF_COND (if_stmt) = cond;
293 add_stmt (if_stmt);
295 /* Record this if statement. */
296 if_stack[if_stack_pointer].compstmt_count = compstmt_count;
297 if_stack[if_stack_pointer].file = input_filename;
298 if_stack[if_stack_pointer].line = lineno;
299 if_stack[if_stack_pointer].needs_warning = 0;
300 if_stack[if_stack_pointer].if_stmt = if_stmt;
301 if_stack_pointer++;
304 /* Called after the then-clause for an if-statement is processed. */
306 void
307 c_finish_then ()
309 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
310 RECHAIN_STMTS (if_stmt, THEN_CLAUSE (if_stmt));
313 /* Record the end of an if-then. Optionally warn if a nested
314 if statement had an ambiguous else clause. */
316 void
317 c_expand_end_cond ()
319 if_stack_pointer--;
320 if (if_stack[if_stack_pointer].needs_warning)
321 warning_with_file_and_line (if_stack[if_stack_pointer].file,
322 if_stack[if_stack_pointer].line,
323 "suggest explicit braces to avoid ambiguous `else'");
324 last_expr_type = NULL_TREE;
327 /* Called between the then-clause and the else-clause
328 of an if-then-else. */
330 void
331 c_expand_start_else ()
333 /* An ambiguous else warning must be generated for the enclosing if
334 statement, unless we see an else branch for that one, too. */
335 if (warn_parentheses
336 && if_stack_pointer > 1
337 && (if_stack[if_stack_pointer - 1].compstmt_count
338 == if_stack[if_stack_pointer - 2].compstmt_count))
339 if_stack[if_stack_pointer - 2].needs_warning = 1;
341 /* Even if a nested if statement had an else branch, it can't be
342 ambiguous if this one also has an else. So don't warn in that
343 case. Also don't warn for any if statements nested in this else. */
344 if_stack[if_stack_pointer - 1].needs_warning = 0;
345 if_stack[if_stack_pointer - 1].compstmt_count--;
348 /* Called after the else-clause for an if-statement is processed. */
350 void
351 c_finish_else ()
353 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
354 RECHAIN_STMTS (if_stmt, ELSE_CLAUSE (if_stmt));
357 /* Push current bindings for the function name VAR_DECLS. */
359 void
360 start_fname_decls ()
362 unsigned ix;
363 tree saved = NULL_TREE;
365 for (ix = 0; fname_vars[ix].decl; ix++)
367 tree decl = *fname_vars[ix].decl;
369 if (decl)
371 saved = tree_cons (decl, build_int_2 (ix, 0), saved);
372 *fname_vars[ix].decl = NULL_TREE;
375 if (saved || saved_function_name_decls)
376 /* Normally they'll have been NULL, so only push if we've got a
377 stack, or they are non-NULL. */
378 saved_function_name_decls = tree_cons (saved, NULL_TREE,
379 saved_function_name_decls);
382 /* Finish up the current bindings, adding them into the
383 current function's statement tree. This is done by wrapping the
384 function's body in a COMPOUND_STMT containing these decls too. This
385 must be done _before_ finish_stmt_tree is called. If there is no
386 current function, we must be at file scope and no statements are
387 involved. Pop the previous bindings. */
389 void
390 finish_fname_decls ()
392 unsigned ix;
393 tree body = NULL_TREE;
394 tree stack = saved_function_name_decls;
396 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
397 body = chainon (TREE_VALUE (stack), body);
399 if (body)
401 /* They were called into existence, so add to statement tree. */
402 body = chainon (body,
403 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)));
404 body = build_stmt (COMPOUND_STMT, body);
406 COMPOUND_STMT_NO_SCOPE (body) = 1;
407 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)) = body;
410 for (ix = 0; fname_vars[ix].decl; ix++)
411 *fname_vars[ix].decl = NULL_TREE;
413 if (stack)
415 /* We had saved values, restore them. */
416 tree saved;
418 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
420 tree decl = TREE_PURPOSE (saved);
421 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
423 *fname_vars[ix].decl = decl;
425 stack = TREE_CHAIN (stack);
427 saved_function_name_decls = stack;
430 /* Return the text name of the current function, suitable prettified
431 by PRETTY_P. */
433 const char *
434 fname_as_string (pretty_p)
435 int pretty_p;
437 const char *name = NULL;
439 if (pretty_p)
440 name = (current_function_decl
441 ? (*decl_printable_name) (current_function_decl, 2)
442 : "top level");
443 else if (current_function_decl && DECL_NAME (current_function_decl))
444 name = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
445 else
446 name = "";
447 return name;
450 /* Return the text name of the current function, formatted as
451 required by the supplied RID value. */
453 const char *
454 fname_string (rid)
455 unsigned rid;
457 unsigned ix;
459 for (ix = 0; fname_vars[ix].decl; ix++)
460 if (fname_vars[ix].rid == rid)
461 break;
462 return fname_as_string (fname_vars[ix].pretty);
465 /* Return the VAR_DECL for a const char array naming the current
466 function. If the VAR_DECL has not yet been created, create it
467 now. RID indicates how it should be formatted and IDENTIFIER_NODE
468 ID is its name (unfortunately C and C++ hold the RID values of
469 keywords in different places, so we can't derive RID from ID in
470 this language independent code. */
472 tree
473 fname_decl (rid, id)
474 unsigned rid;
475 tree id;
477 unsigned ix;
478 tree decl = NULL_TREE;
480 for (ix = 0; fname_vars[ix].decl; ix++)
481 if (fname_vars[ix].rid == rid)
482 break;
484 decl = *fname_vars[ix].decl;
485 if (!decl)
487 tree saved_last_tree = last_tree;
489 decl = (*make_fname_decl) (id, fname_vars[ix].pretty);
490 if (last_tree != saved_last_tree)
492 /* We created some statement tree for the decl. This belongs
493 at the start of the function, so remove it now and reinsert
494 it after the function is complete. */
495 tree stmts = TREE_CHAIN (saved_last_tree);
497 TREE_CHAIN (saved_last_tree) = NULL_TREE;
498 last_tree = saved_last_tree;
499 saved_function_name_decls = tree_cons (decl, stmts,
500 saved_function_name_decls);
502 *fname_vars[ix].decl = decl;
504 if (!ix && !current_function_decl)
505 pedwarn_with_decl (decl, "`%s' is not defined outside of function scope");
507 return decl;
510 /* Given a chain of STRING_CST nodes,
511 concatenate them into one STRING_CST
512 and give it a suitable array-of-chars data type. */
514 tree
515 combine_strings (strings)
516 tree strings;
518 tree value, t;
519 int length = 1;
520 int wide_length = 0;
521 int wide_flag = 0;
522 int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
523 int nchars;
524 const int nchars_max = flag_isoc99 ? 4095 : 509;
526 if (TREE_CHAIN (strings))
528 /* More than one in the chain, so concatenate. */
529 char *p, *q;
531 /* Don't include the \0 at the end of each substring,
532 except for the last one.
533 Count wide strings and ordinary strings separately. */
534 for (t = strings; t; t = TREE_CHAIN (t))
536 if (TREE_TYPE (t) == wchar_array_type_node)
538 wide_length += (TREE_STRING_LENGTH (t) - wchar_bytes);
539 wide_flag = 1;
541 else
542 length += (TREE_STRING_LENGTH (t) - 1);
545 /* If anything is wide, the non-wides will be converted,
546 which makes them take more space. */
547 if (wide_flag)
548 length = length * wchar_bytes + wide_length;
550 p = alloca (length);
552 /* Copy the individual strings into the new combined string.
553 If the combined string is wide, convert the chars to ints
554 for any individual strings that are not wide. */
556 q = p;
557 for (t = strings; t; t = TREE_CHAIN (t))
559 int len = (TREE_STRING_LENGTH (t)
560 - ((TREE_TYPE (t) == wchar_array_type_node)
561 ? wchar_bytes : 1));
562 if ((TREE_TYPE (t) == wchar_array_type_node) == wide_flag)
564 memcpy (q, TREE_STRING_POINTER (t), len);
565 q += len;
567 else
569 int i, j;
570 for (i = 0; i < len; i++)
572 if (BYTES_BIG_ENDIAN)
574 for (j=0; j<(WCHAR_TYPE_SIZE / BITS_PER_UNIT)-1; j++)
575 *q++ = 0;
576 *q++ = TREE_STRING_POINTER (t)[i];
578 else
580 *q++ = TREE_STRING_POINTER (t)[i];
581 for (j=0; j<(WCHAR_TYPE_SIZE / BITS_PER_UNIT)-1; j++)
582 *q++ = 0;
587 if (wide_flag)
589 int i;
590 for (i = 0; i < wchar_bytes; i++)
591 *q++ = 0;
593 else
594 *q = 0;
596 value = build_string (length, p);
598 else
600 value = strings;
601 length = TREE_STRING_LENGTH (value);
602 if (TREE_TYPE (value) == wchar_array_type_node)
603 wide_flag = 1;
606 /* Compute the number of elements, for the array type. */
607 nchars = wide_flag ? length / wchar_bytes : length;
609 if (pedantic && nchars - 1 > nchars_max && c_language == clk_c)
610 pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
611 nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
613 /* Create the array type for the string constant.
614 -Wwrite-strings says make the string constant an array of const char
615 so that copying it to a non-const pointer will get a warning.
616 For C++, this is the standard behavior. */
617 if (flag_const_strings
618 && (! flag_traditional && ! flag_writable_strings))
620 tree elements
621 = build_type_variant (wide_flag ? wchar_type_node : char_type_node,
622 1, 0);
623 TREE_TYPE (value)
624 = build_array_type (elements,
625 build_index_type (build_int_2 (nchars - 1, 0)));
627 else
628 TREE_TYPE (value)
629 = build_array_type (wide_flag ? wchar_type_node : char_type_node,
630 build_index_type (build_int_2 (nchars - 1, 0)));
632 TREE_CONSTANT (value) = 1;
633 TREE_READONLY (value) = ! flag_writable_strings;
634 TREE_STATIC (value) = 1;
635 return value;
638 static int is_valid_printf_arglist PARAMS ((tree));
639 static rtx c_expand_builtin PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier));
640 static rtx c_expand_builtin_printf PARAMS ((tree, rtx, enum machine_mode,
641 enum expand_modifier, int));
642 static rtx c_expand_builtin_fprintf PARAMS ((tree, rtx, enum machine_mode,
643 enum expand_modifier, int));
645 /* Print a warning if a constant expression had overflow in folding.
646 Invoke this function on every expression that the language
647 requires to be a constant expression.
648 Note the ANSI C standard says it is erroneous for a
649 constant expression to overflow. */
651 void
652 constant_expression_warning (value)
653 tree value;
655 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
656 || TREE_CODE (value) == COMPLEX_CST)
657 && TREE_CONSTANT_OVERFLOW (value) && pedantic)
658 pedwarn ("overflow in constant expression");
661 /* Print a warning if an expression had overflow in folding.
662 Invoke this function on every expression that
663 (1) appears in the source code, and
664 (2) might be a constant expression that overflowed, and
665 (3) is not already checked by convert_and_check;
666 however, do not invoke this function on operands of explicit casts. */
668 void
669 overflow_warning (value)
670 tree value;
672 if ((TREE_CODE (value) == INTEGER_CST
673 || (TREE_CODE (value) == COMPLEX_CST
674 && TREE_CODE (TREE_REALPART (value)) == INTEGER_CST))
675 && TREE_OVERFLOW (value))
677 TREE_OVERFLOW (value) = 0;
678 if (skip_evaluation == 0)
679 warning ("integer overflow in expression");
681 else if ((TREE_CODE (value) == REAL_CST
682 || (TREE_CODE (value) == COMPLEX_CST
683 && TREE_CODE (TREE_REALPART (value)) == REAL_CST))
684 && TREE_OVERFLOW (value))
686 TREE_OVERFLOW (value) = 0;
687 if (skip_evaluation == 0)
688 warning ("floating point overflow in expression");
692 /* Print a warning if a large constant is truncated to unsigned,
693 or if -Wconversion is used and a constant < 0 is converted to unsigned.
694 Invoke this function on every expression that might be implicitly
695 converted to an unsigned type. */
697 void
698 unsigned_conversion_warning (result, operand)
699 tree result, operand;
701 if (TREE_CODE (operand) == INTEGER_CST
702 && TREE_CODE (TREE_TYPE (result)) == INTEGER_TYPE
703 && TREE_UNSIGNED (TREE_TYPE (result))
704 && skip_evaluation == 0
705 && !int_fits_type_p (operand, TREE_TYPE (result)))
707 if (!int_fits_type_p (operand, signed_type (TREE_TYPE (result))))
708 /* This detects cases like converting -129 or 256 to unsigned char. */
709 warning ("large integer implicitly truncated to unsigned type");
710 else if (warn_conversion)
711 warning ("negative integer implicitly converted to unsigned type");
715 /* Nonzero if constant C has a value that is permissible
716 for type TYPE (an INTEGER_TYPE). */
718 static int
719 constant_fits_type_p (c, type)
720 tree c, type;
722 if (TREE_CODE (c) == INTEGER_CST)
723 return int_fits_type_p (c, type);
725 c = convert (type, c);
726 return !TREE_OVERFLOW (c);
729 /* Convert EXPR to TYPE, warning about conversion problems with constants.
730 Invoke this function on every expression that is converted implicitly,
731 i.e. because of language rules and not because of an explicit cast. */
733 tree
734 convert_and_check (type, expr)
735 tree type, expr;
737 tree t = convert (type, expr);
738 if (TREE_CODE (t) == INTEGER_CST)
740 if (TREE_OVERFLOW (t))
742 TREE_OVERFLOW (t) = 0;
744 /* Do not diagnose overflow in a constant expression merely
745 because a conversion overflowed. */
746 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (expr);
748 /* No warning for converting 0x80000000 to int. */
749 if (!(TREE_UNSIGNED (type) < TREE_UNSIGNED (TREE_TYPE (expr))
750 && TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
751 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (expr))))
752 /* If EXPR fits in the unsigned version of TYPE,
753 don't warn unless pedantic. */
754 if ((pedantic
755 || TREE_UNSIGNED (type)
756 || ! constant_fits_type_p (expr, unsigned_type (type)))
757 && skip_evaluation == 0)
758 warning ("overflow in implicit constant conversion");
760 else
761 unsigned_conversion_warning (t, expr);
763 return t;
766 /* A node in a list that describes references to variables (EXPR), which are
767 either read accesses if WRITER is zero, or write accesses, in which case
768 WRITER is the parent of EXPR. */
769 struct tlist
771 struct tlist *next;
772 tree expr, writer;
775 /* Used to implement a cache the results of a call to verify_tree. We only
776 use this for SAVE_EXPRs. */
777 struct tlist_cache
779 struct tlist_cache *next;
780 struct tlist *cache_before_sp;
781 struct tlist *cache_after_sp;
782 tree expr;
785 /* Obstack to use when allocating tlist structures, and corresponding
786 firstobj. */
787 static struct obstack tlist_obstack;
788 static char *tlist_firstobj = 0;
790 /* Keep track of the identifiers we've warned about, so we can avoid duplicate
791 warnings. */
792 static struct tlist *warned_ids;
793 /* SAVE_EXPRs need special treatment. We process them only once and then
794 cache the results. */
795 static struct tlist_cache *save_expr_cache;
797 static void add_tlist PARAMS ((struct tlist **, struct tlist *, tree, int));
798 static void merge_tlist PARAMS ((struct tlist **, struct tlist *, int));
799 static void verify_tree PARAMS ((tree, struct tlist **, struct tlist **, tree));
800 static int warning_candidate_p PARAMS ((tree));
801 static void warn_for_collisions PARAMS ((struct tlist *));
802 static void warn_for_collisions_1 PARAMS ((tree, tree, struct tlist *, int));
803 static struct tlist *new_tlist PARAMS ((struct tlist *, tree, tree));
804 static void verify_sequence_points PARAMS ((tree));
806 /* Create a new struct tlist and fill in its fields. */
807 static struct tlist *
808 new_tlist (next, t, writer)
809 struct tlist *next;
810 tree t;
811 tree writer;
813 struct tlist *l;
814 l = (struct tlist *) obstack_alloc (&tlist_obstack, sizeof *l);
815 l->next = next;
816 l->expr = t;
817 l->writer = writer;
818 return l;
821 /* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
822 is nonnull, we ignore any node we find which has a writer equal to it. */
824 static void
825 add_tlist (to, add, exclude_writer, copy)
826 struct tlist **to;
827 struct tlist *add;
828 tree exclude_writer;
829 int copy;
831 while (add)
833 struct tlist *next = add->next;
834 if (! copy)
835 add->next = *to;
836 if (! exclude_writer || add->writer != exclude_writer)
837 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
838 add = next;
842 /* Merge the nodes of ADD into TO. This merging process is done so that for
843 each variable that already exists in TO, no new node is added; however if
844 there is a write access recorded in ADD, and an occurrence on TO is only
845 a read access, then the occurrence in TO will be modified to record the
846 write. */
848 static void
849 merge_tlist (to, add, copy)
850 struct tlist **to;
851 struct tlist *add;
852 int copy;
854 struct tlist **end = to;
856 while (*end)
857 end = &(*end)->next;
859 while (add)
861 int found = 0;
862 struct tlist *tmp2;
863 struct tlist *next = add->next;
865 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
866 if (tmp2->expr == add->expr)
868 found = 1;
869 if (! tmp2->writer)
870 tmp2->writer = add->writer;
872 if (! found)
874 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
875 end = &(*end)->next;
876 *end = 0;
878 add = next;
882 /* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
883 references in list LIST conflict with it, excluding reads if ONLY writers
884 is nonzero. */
886 static void
887 warn_for_collisions_1 (written, writer, list, only_writes)
888 tree written, writer;
889 struct tlist *list;
890 int only_writes;
892 struct tlist *tmp;
894 /* Avoid duplicate warnings. */
895 for (tmp = warned_ids; tmp; tmp = tmp->next)
896 if (tmp->expr == written)
897 return;
899 while (list)
901 if (list->expr == written
902 && list->writer != writer
903 && (! only_writes || list->writer))
905 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
906 warning ("operation on `%s' may be undefined",
907 IDENTIFIER_POINTER (DECL_NAME (list->expr)));
909 list = list->next;
913 /* Given a list LIST of references to variables, find whether any of these
914 can cause conflicts due to missing sequence points. */
916 static void
917 warn_for_collisions (list)
918 struct tlist *list;
920 struct tlist *tmp;
922 for (tmp = list; tmp; tmp = tmp->next)
924 if (tmp->writer)
925 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
929 /* Return nonzero if X is a tree that can be verified by the sequence point
930 warnings. */
931 static int
932 warning_candidate_p (x)
933 tree x;
935 return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
938 /* Walk the tree X, and record accesses to variables. If X is written by the
939 parent tree, WRITER is the parent.
940 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
941 expression or its only operand forces a sequence point, then everything up
942 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
943 in PNO_SP.
944 Once we return, we will have emitted warnings if any subexpression before
945 such a sequence point could be undefined. On a higher level, however, the
946 sequence point may not be relevant, and we'll merge the two lists.
948 Example: (b++, a) + b;
949 The call that processes the COMPOUND_EXPR will store the increment of B
950 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
951 processes the PLUS_EXPR will need to merge the two lists so that
952 eventually, all accesses end up on the same list (and we'll warn about the
953 unordered subexpressions b++ and b.
955 A note on merging. If we modify the former example so that our expression
956 becomes
957 (b++, b) + a
958 care must be taken not simply to add all three expressions into the final
959 PNO_SP list. The function merge_tlist takes care of that by merging the
960 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
961 way, so that no more than one access to B is recorded. */
963 static void
964 verify_tree (x, pbefore_sp, pno_sp, writer)
965 tree x;
966 struct tlist **pbefore_sp, **pno_sp;
967 tree writer;
969 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
970 enum tree_code code;
971 char class;
973 /* X may be NULL if it is the operand of an empty statement expression
974 ({ }). */
975 if (x == NULL)
976 return;
978 restart:
979 code = TREE_CODE (x);
980 class = TREE_CODE_CLASS (code);
982 if (warning_candidate_p (x))
984 *pno_sp = new_tlist (*pno_sp, x, writer);
985 return;
988 switch (code)
990 case CONSTRUCTOR:
991 return;
993 case COMPOUND_EXPR:
994 case TRUTH_ANDIF_EXPR:
995 case TRUTH_ORIF_EXPR:
996 tmp_before = tmp_nosp = tmp_list3 = 0;
997 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
998 warn_for_collisions (tmp_nosp);
999 merge_tlist (pbefore_sp, tmp_before, 0);
1000 merge_tlist (pbefore_sp, tmp_nosp, 0);
1001 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
1002 merge_tlist (pbefore_sp, tmp_list3, 0);
1003 return;
1005 case COND_EXPR:
1006 tmp_before = tmp_list2 = 0;
1007 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1008 warn_for_collisions (tmp_list2);
1009 merge_tlist (pbefore_sp, tmp_before, 0);
1010 merge_tlist (pbefore_sp, tmp_list2, 1);
1012 tmp_list3 = tmp_nosp = 0;
1013 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1014 warn_for_collisions (tmp_nosp);
1015 merge_tlist (pbefore_sp, tmp_list3, 0);
1017 tmp_list3 = tmp_list2 = 0;
1018 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1019 warn_for_collisions (tmp_list2);
1020 merge_tlist (pbefore_sp, tmp_list3, 0);
1021 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1022 two first, to avoid warning for (a ? b++ : b++). */
1023 merge_tlist (&tmp_nosp, tmp_list2, 0);
1024 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1025 return;
1027 case PREDECREMENT_EXPR:
1028 case PREINCREMENT_EXPR:
1029 case POSTDECREMENT_EXPR:
1030 case POSTINCREMENT_EXPR:
1031 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1032 return;
1034 case MODIFY_EXPR:
1035 tmp_before = tmp_nosp = tmp_list3 = 0;
1036 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1037 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1038 /* Expressions inside the LHS are not ordered wrt. the sequence points
1039 in the RHS. Example:
1040 *a = (a++, 2)
1041 Despite the fact that the modification of "a" is in the before_sp
1042 list (tmp_before), it conflicts with the use of "a" in the LHS.
1043 We can handle this by adding the contents of tmp_list3
1044 to those of tmp_before, and redoing the collision warnings for that
1045 list. */
1046 add_tlist (&tmp_before, tmp_list3, x, 1);
1047 warn_for_collisions (tmp_before);
1048 /* Exclude the LHS itself here; we first have to merge it into the
1049 tmp_nosp list. This is done to avoid warning for "a = a"; if we
1050 didn't exclude the LHS, we'd get it twice, once as a read and once
1051 as a write. */
1052 add_tlist (pno_sp, tmp_list3, x, 0);
1053 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1055 merge_tlist (pbefore_sp, tmp_before, 0);
1056 if (warning_candidate_p (TREE_OPERAND (x, 0)))
1057 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1058 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1059 return;
1061 case CALL_EXPR:
1062 /* We need to warn about conflicts among arguments and conflicts between
1063 args and the function address. Side effects of the function address,
1064 however, are not ordered by the sequence point of the call. */
1065 tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
1066 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1067 if (TREE_OPERAND (x, 1))
1068 verify_tree (TREE_OPERAND (x, 1), &tmp_list2, &tmp_list3, NULL_TREE);
1069 merge_tlist (&tmp_list3, tmp_list2, 0);
1070 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1071 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1072 warn_for_collisions (tmp_before);
1073 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1074 return;
1076 case TREE_LIST:
1077 /* Scan all the list, e.g. indices of multi dimensional array. */
1078 while (x)
1080 tmp_before = tmp_nosp = 0;
1081 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1082 merge_tlist (&tmp_nosp, tmp_before, 0);
1083 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1084 x = TREE_CHAIN (x);
1086 return;
1088 case SAVE_EXPR:
1090 struct tlist_cache *t;
1091 for (t = save_expr_cache; t; t = t->next)
1092 if (t->expr == x)
1093 break;
1095 if (! t)
1097 t = (struct tlist_cache *) obstack_alloc (&tlist_obstack,
1098 sizeof *t);
1099 t->next = save_expr_cache;
1100 t->expr = x;
1101 save_expr_cache = t;
1103 tmp_before = tmp_nosp = 0;
1104 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1105 warn_for_collisions (tmp_nosp);
1107 tmp_list3 = 0;
1108 while (tmp_nosp)
1110 struct tlist *t = tmp_nosp;
1111 tmp_nosp = t->next;
1112 merge_tlist (&tmp_list3, t, 0);
1114 t->cache_before_sp = tmp_before;
1115 t->cache_after_sp = tmp_list3;
1117 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1118 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1119 return;
1121 default:
1122 break;
1125 if (class == '1')
1127 if (first_rtl_op (code) == 0)
1128 return;
1129 x = TREE_OPERAND (x, 0);
1130 writer = 0;
1131 goto restart;
1134 switch (class)
1136 case 'r':
1137 case '<':
1138 case '2':
1139 case 'b':
1140 case 'e':
1141 case 's':
1142 case 'x':
1144 int lp;
1145 int max = first_rtl_op (TREE_CODE (x));
1146 for (lp = 0; lp < max; lp++)
1148 tmp_before = tmp_nosp = 0;
1149 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, NULL_TREE);
1150 merge_tlist (&tmp_nosp, tmp_before, 0);
1151 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1153 break;
1158 /* Try to warn for undefined behaviour in EXPR due to missing sequence
1159 points. */
1161 static void
1162 verify_sequence_points (expr)
1163 tree expr;
1165 struct tlist *before_sp = 0, *after_sp = 0;
1167 warned_ids = 0;
1168 save_expr_cache = 0;
1169 if (tlist_firstobj == 0)
1171 gcc_obstack_init (&tlist_obstack);
1172 tlist_firstobj = obstack_alloc (&tlist_obstack, 0);
1175 verify_tree (expr, &before_sp, &after_sp, 0);
1176 warn_for_collisions (after_sp);
1177 obstack_free (&tlist_obstack, tlist_firstobj);
1180 tree
1181 c_expand_expr_stmt (expr)
1182 tree expr;
1184 /* Do default conversion if safe and possibly important,
1185 in case within ({...}). */
1186 if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1187 && (flag_isoc99 || lvalue_p (expr)))
1188 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
1189 expr = default_conversion (expr);
1191 if (warn_sequence_point)
1192 verify_sequence_points (expr);
1194 if (TREE_TYPE (expr) != error_mark_node
1195 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
1196 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
1197 error ("expression statement has incomplete type");
1199 last_expr_type = TREE_TYPE (expr);
1200 return add_stmt (build_stmt (EXPR_STMT, expr));
1203 /* Validate the expression after `case' and apply default promotions. */
1205 tree
1206 check_case_value (value)
1207 tree value;
1209 if (value == NULL_TREE)
1210 return value;
1212 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
1213 STRIP_TYPE_NOPS (value);
1214 /* In C++, the following is allowed:
1216 const int i = 3;
1217 switch (...) { case i: ... }
1219 So, we try to reduce the VALUE to a constant that way. */
1220 if (c_language == clk_cplusplus)
1222 value = decl_constant_value (value);
1223 STRIP_TYPE_NOPS (value);
1224 value = fold (value);
1227 if (TREE_CODE (value) != INTEGER_CST
1228 && value != error_mark_node)
1230 error ("case label does not reduce to an integer constant");
1231 value = error_mark_node;
1233 else
1234 /* Promote char or short to int. */
1235 value = default_conversion (value);
1237 constant_expression_warning (value);
1239 return value;
1242 /* Return an integer type with BITS bits of precision,
1243 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
1245 tree
1246 type_for_size (bits, unsignedp)
1247 unsigned bits;
1248 int unsignedp;
1250 if (bits == TYPE_PRECISION (integer_type_node))
1251 return unsignedp ? unsigned_type_node : integer_type_node;
1253 if (bits == TYPE_PRECISION (signed_char_type_node))
1254 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1256 if (bits == TYPE_PRECISION (short_integer_type_node))
1257 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1259 if (bits == TYPE_PRECISION (long_integer_type_node))
1260 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1262 if (bits == TYPE_PRECISION (long_long_integer_type_node))
1263 return (unsignedp ? long_long_unsigned_type_node
1264 : long_long_integer_type_node);
1266 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1267 return (unsignedp ? widest_unsigned_literal_type_node
1268 : widest_integer_literal_type_node);
1270 if (bits <= TYPE_PRECISION (intQI_type_node))
1271 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1273 if (bits <= TYPE_PRECISION (intHI_type_node))
1274 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1276 if (bits <= TYPE_PRECISION (intSI_type_node))
1277 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1279 if (bits <= TYPE_PRECISION (intDI_type_node))
1280 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1282 return 0;
1285 /* Return a data type that has machine mode MODE.
1286 If the mode is an integer,
1287 then UNSIGNEDP selects between signed and unsigned types. */
1289 tree
1290 type_for_mode (mode, unsignedp)
1291 enum machine_mode mode;
1292 int unsignedp;
1294 if (mode == TYPE_MODE (integer_type_node))
1295 return unsignedp ? unsigned_type_node : integer_type_node;
1297 if (mode == TYPE_MODE (signed_char_type_node))
1298 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1300 if (mode == TYPE_MODE (short_integer_type_node))
1301 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1303 if (mode == TYPE_MODE (long_integer_type_node))
1304 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1306 if (mode == TYPE_MODE (long_long_integer_type_node))
1307 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
1309 if (mode == TYPE_MODE (widest_integer_literal_type_node))
1310 return unsignedp ? widest_unsigned_literal_type_node
1311 : widest_integer_literal_type_node;
1313 if (mode == TYPE_MODE (intQI_type_node))
1314 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1316 if (mode == TYPE_MODE (intHI_type_node))
1317 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1319 if (mode == TYPE_MODE (intSI_type_node))
1320 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1322 if (mode == TYPE_MODE (intDI_type_node))
1323 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1325 #if HOST_BITS_PER_WIDE_INT >= 64
1326 if (mode == TYPE_MODE (intTI_type_node))
1327 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1328 #endif
1330 if (mode == TYPE_MODE (float_type_node))
1331 return float_type_node;
1333 if (mode == TYPE_MODE (double_type_node))
1334 return double_type_node;
1336 if (mode == TYPE_MODE (long_double_type_node))
1337 return long_double_type_node;
1339 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1340 return build_pointer_type (char_type_node);
1342 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1343 return build_pointer_type (integer_type_node);
1345 #ifdef VECTOR_MODE_SUPPORTED_P
1346 if (mode == TYPE_MODE (V16QI_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1347 return V16QI_type_node;
1348 if (mode == TYPE_MODE (V8HI_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1349 return V8HI_type_node;
1350 if (mode == TYPE_MODE (V4SF_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1351 return V4SF_type_node;
1352 if (mode == TYPE_MODE (V4SI_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1353 return V4SI_type_node;
1354 if (mode == TYPE_MODE (V2SI_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1355 return V2SI_type_node;
1356 if (mode == TYPE_MODE (V4HI_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1357 return V4HI_type_node;
1358 if (mode == TYPE_MODE (V8QI_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1359 return V8QI_type_node;
1360 if (mode == TYPE_MODE (V2SF_type_node) && VECTOR_MODE_SUPPORTED_P (mode))
1361 return V2SF_type_node;
1362 #endif
1364 return 0;
1367 /* Return an unsigned type the same as TYPE in other respects. */
1368 tree
1369 unsigned_type (type)
1370 tree type;
1372 tree type1 = TYPE_MAIN_VARIANT (type);
1373 if (type1 == signed_char_type_node || type1 == char_type_node)
1374 return unsigned_char_type_node;
1375 if (type1 == integer_type_node)
1376 return unsigned_type_node;
1377 if (type1 == short_integer_type_node)
1378 return short_unsigned_type_node;
1379 if (type1 == long_integer_type_node)
1380 return long_unsigned_type_node;
1381 if (type1 == long_long_integer_type_node)
1382 return long_long_unsigned_type_node;
1383 if (type1 == widest_integer_literal_type_node)
1384 return widest_unsigned_literal_type_node;
1385 #if HOST_BITS_PER_WIDE_INT >= 64
1386 if (type1 == intTI_type_node)
1387 return unsigned_intTI_type_node;
1388 #endif
1389 if (type1 == intDI_type_node)
1390 return unsigned_intDI_type_node;
1391 if (type1 == intSI_type_node)
1392 return unsigned_intSI_type_node;
1393 if (type1 == intHI_type_node)
1394 return unsigned_intHI_type_node;
1395 if (type1 == intQI_type_node)
1396 return unsigned_intQI_type_node;
1398 return signed_or_unsigned_type (1, type);
1401 /* Return a signed type the same as TYPE in other respects. */
1403 tree
1404 signed_type (type)
1405 tree type;
1407 tree type1 = TYPE_MAIN_VARIANT (type);
1408 if (type1 == unsigned_char_type_node || type1 == char_type_node)
1409 return signed_char_type_node;
1410 if (type1 == unsigned_type_node)
1411 return integer_type_node;
1412 if (type1 == short_unsigned_type_node)
1413 return short_integer_type_node;
1414 if (type1 == long_unsigned_type_node)
1415 return long_integer_type_node;
1416 if (type1 == long_long_unsigned_type_node)
1417 return long_long_integer_type_node;
1418 if (type1 == widest_unsigned_literal_type_node)
1419 return widest_integer_literal_type_node;
1420 #if HOST_BITS_PER_WIDE_INT >= 64
1421 if (type1 == unsigned_intTI_type_node)
1422 return intTI_type_node;
1423 #endif
1424 if (type1 == unsigned_intDI_type_node)
1425 return intDI_type_node;
1426 if (type1 == unsigned_intSI_type_node)
1427 return intSI_type_node;
1428 if (type1 == unsigned_intHI_type_node)
1429 return intHI_type_node;
1430 if (type1 == unsigned_intQI_type_node)
1431 return intQI_type_node;
1433 return signed_or_unsigned_type (0, type);
1436 /* Return a type the same as TYPE except unsigned or
1437 signed according to UNSIGNEDP. */
1439 tree
1440 signed_or_unsigned_type (unsignedp, type)
1441 int unsignedp;
1442 tree type;
1444 if (! INTEGRAL_TYPE_P (type)
1445 || TREE_UNSIGNED (type) == unsignedp)
1446 return type;
1448 if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
1449 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1450 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
1451 return unsignedp ? unsigned_type_node : integer_type_node;
1452 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
1453 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1454 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
1455 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1456 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
1457 return (unsignedp ? long_long_unsigned_type_node
1458 : long_long_integer_type_node);
1459 if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
1460 return (unsignedp ? widest_unsigned_literal_type_node
1461 : widest_integer_literal_type_node);
1463 #if HOST_BITS_PER_WIDE_INT >= 64
1464 if (TYPE_PRECISION (type) == TYPE_PRECISION (intTI_type_node))
1465 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1466 #endif
1467 if (TYPE_PRECISION (type) == TYPE_PRECISION (intDI_type_node))
1468 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1469 if (TYPE_PRECISION (type) == TYPE_PRECISION (intSI_type_node))
1470 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1471 if (TYPE_PRECISION (type) == TYPE_PRECISION (intHI_type_node))
1472 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1473 if (TYPE_PRECISION (type) == TYPE_PRECISION (intQI_type_node))
1474 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1476 return type;
1479 /* Return the minimum number of bits needed to represent VALUE in a
1480 signed or unsigned type, UNSIGNEDP says which. */
1482 unsigned int
1483 min_precision (value, unsignedp)
1484 tree value;
1485 int unsignedp;
1487 int log;
1489 /* If the value is negative, compute its negative minus 1. The latter
1490 adjustment is because the absolute value of the largest negative value
1491 is one larger than the largest positive value. This is equivalent to
1492 a bit-wise negation, so use that operation instead. */
1494 if (tree_int_cst_sgn (value) < 0)
1495 value = fold (build1 (BIT_NOT_EXPR, TREE_TYPE (value), value));
1497 /* Return the number of bits needed, taking into account the fact
1498 that we need one more bit for a signed than unsigned type. */
1500 if (integer_zerop (value))
1501 log = 0;
1502 else
1503 log = tree_floor_log2 (value);
1505 return log + 1 + ! unsignedp;
1508 /* Print an error message for invalid operands to arith operation CODE.
1509 NOP_EXPR is used as a special case (see truthvalue_conversion). */
1511 void
1512 binary_op_error (code)
1513 enum tree_code code;
1515 const char *opname;
1517 switch (code)
1519 case NOP_EXPR:
1520 error ("invalid truth-value expression");
1521 return;
1523 case PLUS_EXPR:
1524 opname = "+"; break;
1525 case MINUS_EXPR:
1526 opname = "-"; break;
1527 case MULT_EXPR:
1528 opname = "*"; break;
1529 case MAX_EXPR:
1530 opname = "max"; break;
1531 case MIN_EXPR:
1532 opname = "min"; break;
1533 case EQ_EXPR:
1534 opname = "=="; break;
1535 case NE_EXPR:
1536 opname = "!="; break;
1537 case LE_EXPR:
1538 opname = "<="; break;
1539 case GE_EXPR:
1540 opname = ">="; break;
1541 case LT_EXPR:
1542 opname = "<"; break;
1543 case GT_EXPR:
1544 opname = ">"; break;
1545 case LSHIFT_EXPR:
1546 opname = "<<"; break;
1547 case RSHIFT_EXPR:
1548 opname = ">>"; break;
1549 case TRUNC_MOD_EXPR:
1550 case FLOOR_MOD_EXPR:
1551 opname = "%"; break;
1552 case TRUNC_DIV_EXPR:
1553 case FLOOR_DIV_EXPR:
1554 opname = "/"; break;
1555 case BIT_AND_EXPR:
1556 opname = "&"; break;
1557 case BIT_IOR_EXPR:
1558 opname = "|"; break;
1559 case TRUTH_ANDIF_EXPR:
1560 opname = "&&"; break;
1561 case TRUTH_ORIF_EXPR:
1562 opname = "||"; break;
1563 case BIT_XOR_EXPR:
1564 opname = "^"; break;
1565 case LROTATE_EXPR:
1566 case RROTATE_EXPR:
1567 opname = "rotate"; break;
1568 default:
1569 opname = "unknown"; break;
1571 error ("invalid operands to binary %s", opname);
1574 /* Subroutine of build_binary_op, used for comparison operations.
1575 See if the operands have both been converted from subword integer types
1576 and, if so, perhaps change them both back to their original type.
1577 This function is also responsible for converting the two operands
1578 to the proper common type for comparison.
1580 The arguments of this function are all pointers to local variables
1581 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
1582 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
1584 If this function returns nonzero, it means that the comparison has
1585 a constant value. What this function returns is an expression for
1586 that value. */
1588 tree
1589 shorten_compare (op0_ptr, op1_ptr, restype_ptr, rescode_ptr)
1590 tree *op0_ptr, *op1_ptr;
1591 tree *restype_ptr;
1592 enum tree_code *rescode_ptr;
1594 tree type;
1595 tree op0 = *op0_ptr;
1596 tree op1 = *op1_ptr;
1597 int unsignedp0, unsignedp1;
1598 int real1, real2;
1599 tree primop0, primop1;
1600 enum tree_code code = *rescode_ptr;
1602 /* Throw away any conversions to wider types
1603 already present in the operands. */
1605 primop0 = get_narrower (op0, &unsignedp0);
1606 primop1 = get_narrower (op1, &unsignedp1);
1608 /* Handle the case that OP0 does not *contain* a conversion
1609 but it *requires* conversion to FINAL_TYPE. */
1611 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
1612 unsignedp0 = TREE_UNSIGNED (TREE_TYPE (op0));
1613 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
1614 unsignedp1 = TREE_UNSIGNED (TREE_TYPE (op1));
1616 /* If one of the operands must be floated, we cannot optimize. */
1617 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
1618 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
1620 /* If first arg is constant, swap the args (changing operation
1621 so value is preserved), for canonicalization. Don't do this if
1622 the second arg is 0. */
1624 if (TREE_CONSTANT (primop0)
1625 && ! integer_zerop (primop1) && ! real_zerop (primop1))
1627 tree tem = primop0;
1628 int temi = unsignedp0;
1629 primop0 = primop1;
1630 primop1 = tem;
1631 tem = op0;
1632 op0 = op1;
1633 op1 = tem;
1634 *op0_ptr = op0;
1635 *op1_ptr = op1;
1636 unsignedp0 = unsignedp1;
1637 unsignedp1 = temi;
1638 temi = real1;
1639 real1 = real2;
1640 real2 = temi;
1642 switch (code)
1644 case LT_EXPR:
1645 code = GT_EXPR;
1646 break;
1647 case GT_EXPR:
1648 code = LT_EXPR;
1649 break;
1650 case LE_EXPR:
1651 code = GE_EXPR;
1652 break;
1653 case GE_EXPR:
1654 code = LE_EXPR;
1655 break;
1656 default:
1657 break;
1659 *rescode_ptr = code;
1662 /* If comparing an integer against a constant more bits wide,
1663 maybe we can deduce a value of 1 or 0 independent of the data.
1664 Or else truncate the constant now
1665 rather than extend the variable at run time.
1667 This is only interesting if the constant is the wider arg.
1668 Also, it is not safe if the constant is unsigned and the
1669 variable arg is signed, since in this case the variable
1670 would be sign-extended and then regarded as unsigned.
1671 Our technique fails in this case because the lowest/highest
1672 possible unsigned results don't follow naturally from the
1673 lowest/highest possible values of the variable operand.
1674 For just EQ_EXPR and NE_EXPR there is another technique that
1675 could be used: see if the constant can be faithfully represented
1676 in the other operand's type, by truncating it and reextending it
1677 and see if that preserves the constant's value. */
1679 if (!real1 && !real2
1680 && TREE_CODE (primop1) == INTEGER_CST
1681 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
1683 int min_gt, max_gt, min_lt, max_lt;
1684 tree maxval, minval;
1685 /* 1 if comparison is nominally unsigned. */
1686 int unsignedp = TREE_UNSIGNED (*restype_ptr);
1687 tree val;
1689 type = signed_or_unsigned_type (unsignedp0, TREE_TYPE (primop0));
1691 /* If TYPE is an enumeration, then we need to get its min/max
1692 values from it's underlying integral type, not the enumerated
1693 type itself. */
1694 if (TREE_CODE (type) == ENUMERAL_TYPE)
1695 type = type_for_size (TYPE_PRECISION (type), unsignedp0);
1697 maxval = TYPE_MAX_VALUE (type);
1698 minval = TYPE_MIN_VALUE (type);
1700 if (unsignedp && !unsignedp0)
1701 *restype_ptr = signed_type (*restype_ptr);
1703 if (TREE_TYPE (primop1) != *restype_ptr)
1704 primop1 = convert (*restype_ptr, primop1);
1705 if (type != *restype_ptr)
1707 minval = convert (*restype_ptr, minval);
1708 maxval = convert (*restype_ptr, maxval);
1711 if (unsignedp && unsignedp0)
1713 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
1714 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
1715 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
1716 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
1718 else
1720 min_gt = INT_CST_LT (primop1, minval);
1721 max_gt = INT_CST_LT (primop1, maxval);
1722 min_lt = INT_CST_LT (minval, primop1);
1723 max_lt = INT_CST_LT (maxval, primop1);
1726 val = 0;
1727 /* This used to be a switch, but Genix compiler can't handle that. */
1728 if (code == NE_EXPR)
1730 if (max_lt || min_gt)
1731 val = boolean_true_node;
1733 else if (code == EQ_EXPR)
1735 if (max_lt || min_gt)
1736 val = boolean_false_node;
1738 else if (code == LT_EXPR)
1740 if (max_lt)
1741 val = boolean_true_node;
1742 if (!min_lt)
1743 val = boolean_false_node;
1745 else if (code == GT_EXPR)
1747 if (min_gt)
1748 val = boolean_true_node;
1749 if (!max_gt)
1750 val = boolean_false_node;
1752 else if (code == LE_EXPR)
1754 if (!max_gt)
1755 val = boolean_true_node;
1756 if (min_gt)
1757 val = boolean_false_node;
1759 else if (code == GE_EXPR)
1761 if (!min_lt)
1762 val = boolean_true_node;
1763 if (max_lt)
1764 val = boolean_false_node;
1767 /* If primop0 was sign-extended and unsigned comparison specd,
1768 we did a signed comparison above using the signed type bounds.
1769 But the comparison we output must be unsigned.
1771 Also, for inequalities, VAL is no good; but if the signed
1772 comparison had *any* fixed result, it follows that the
1773 unsigned comparison just tests the sign in reverse
1774 (positive values are LE, negative ones GE).
1775 So we can generate an unsigned comparison
1776 against an extreme value of the signed type. */
1778 if (unsignedp && !unsignedp0)
1780 if (val != 0)
1781 switch (code)
1783 case LT_EXPR:
1784 case GE_EXPR:
1785 primop1 = TYPE_MIN_VALUE (type);
1786 val = 0;
1787 break;
1789 case LE_EXPR:
1790 case GT_EXPR:
1791 primop1 = TYPE_MAX_VALUE (type);
1792 val = 0;
1793 break;
1795 default:
1796 break;
1798 type = unsigned_type (type);
1801 if (!max_gt && !unsignedp0 && TREE_CODE (primop0) != INTEGER_CST)
1803 /* This is the case of (char)x >?< 0x80, which people used to use
1804 expecting old C compilers to change the 0x80 into -0x80. */
1805 if (val == boolean_false_node)
1806 warning ("comparison is always false due to limited range of data type");
1807 if (val == boolean_true_node)
1808 warning ("comparison is always true due to limited range of data type");
1811 if (!min_lt && unsignedp0 && TREE_CODE (primop0) != INTEGER_CST)
1813 /* This is the case of (unsigned char)x >?< -1 or < 0. */
1814 if (val == boolean_false_node)
1815 warning ("comparison is always false due to limited range of data type");
1816 if (val == boolean_true_node)
1817 warning ("comparison is always true due to limited range of data type");
1820 if (val != 0)
1822 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
1823 if (TREE_SIDE_EFFECTS (primop0))
1824 return build (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
1825 return val;
1828 /* Value is not predetermined, but do the comparison
1829 in the type of the operand that is not constant.
1830 TYPE is already properly set. */
1832 else if (real1 && real2
1833 && (TYPE_PRECISION (TREE_TYPE (primop0))
1834 == TYPE_PRECISION (TREE_TYPE (primop1))))
1835 type = TREE_TYPE (primop0);
1837 /* If args' natural types are both narrower than nominal type
1838 and both extend in the same manner, compare them
1839 in the type of the wider arg.
1840 Otherwise must actually extend both to the nominal
1841 common type lest different ways of extending
1842 alter the result.
1843 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
1845 else if (unsignedp0 == unsignedp1 && real1 == real2
1846 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
1847 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
1849 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
1850 type = signed_or_unsigned_type (unsignedp0
1851 || TREE_UNSIGNED (*restype_ptr),
1852 type);
1853 /* Make sure shorter operand is extended the right way
1854 to match the longer operand. */
1855 primop0 = convert (signed_or_unsigned_type (unsignedp0, TREE_TYPE (primop0)),
1856 primop0);
1857 primop1 = convert (signed_or_unsigned_type (unsignedp1, TREE_TYPE (primop1)),
1858 primop1);
1860 else
1862 /* Here we must do the comparison on the nominal type
1863 using the args exactly as we received them. */
1864 type = *restype_ptr;
1865 primop0 = op0;
1866 primop1 = op1;
1868 if (!real1 && !real2 && integer_zerop (primop1)
1869 && TREE_UNSIGNED (*restype_ptr))
1871 tree value = 0;
1872 switch (code)
1874 case GE_EXPR:
1875 /* All unsigned values are >= 0, so we warn if extra warnings
1876 are requested. However, if OP0 is a constant that is
1877 >= 0, the signedness of the comparison isn't an issue,
1878 so suppress the warning. */
1879 if (extra_warnings && !in_system_header
1880 && ! (TREE_CODE (primop0) == INTEGER_CST
1881 && ! TREE_OVERFLOW (convert (signed_type (type),
1882 primop0))))
1883 warning ("comparison of unsigned expression >= 0 is always true");
1884 value = boolean_true_node;
1885 break;
1887 case LT_EXPR:
1888 if (extra_warnings && !in_system_header
1889 && ! (TREE_CODE (primop0) == INTEGER_CST
1890 && ! TREE_OVERFLOW (convert (signed_type (type),
1891 primop0))))
1892 warning ("comparison of unsigned expression < 0 is always false");
1893 value = boolean_false_node;
1894 break;
1896 default:
1897 break;
1900 if (value != 0)
1902 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
1903 if (TREE_SIDE_EFFECTS (primop0))
1904 return build (COMPOUND_EXPR, TREE_TYPE (value),
1905 primop0, value);
1906 return value;
1911 *op0_ptr = convert (type, primop0);
1912 *op1_ptr = convert (type, primop1);
1914 *restype_ptr = boolean_type_node;
1916 return 0;
1919 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
1920 or validate its data type for an `if' or `while' statement or ?..: exp.
1922 This preparation consists of taking the ordinary
1923 representation of an expression expr and producing a valid tree
1924 boolean expression describing whether expr is nonzero. We could
1925 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
1926 but we optimize comparisons, &&, ||, and !.
1928 The resulting type should always be `boolean_type_node'. */
1930 tree
1931 truthvalue_conversion (expr)
1932 tree expr;
1934 if (TREE_CODE (expr) == ERROR_MARK)
1935 return expr;
1937 #if 0 /* This appears to be wrong for C++. */
1938 /* These really should return error_mark_node after 2.4 is stable.
1939 But not all callers handle ERROR_MARK properly. */
1940 switch (TREE_CODE (TREE_TYPE (expr)))
1942 case RECORD_TYPE:
1943 error ("struct type value used where scalar is required");
1944 return boolean_false_node;
1946 case UNION_TYPE:
1947 error ("union type value used where scalar is required");
1948 return boolean_false_node;
1950 case ARRAY_TYPE:
1951 error ("array type value used where scalar is required");
1952 return boolean_false_node;
1954 default:
1955 break;
1957 #endif /* 0 */
1959 switch (TREE_CODE (expr))
1961 case EQ_EXPR:
1962 case NE_EXPR: case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
1963 case TRUTH_ANDIF_EXPR:
1964 case TRUTH_ORIF_EXPR:
1965 case TRUTH_AND_EXPR:
1966 case TRUTH_OR_EXPR:
1967 case TRUTH_XOR_EXPR:
1968 case TRUTH_NOT_EXPR:
1969 TREE_TYPE (expr) = boolean_type_node;
1970 return expr;
1972 case ERROR_MARK:
1973 return expr;
1975 case INTEGER_CST:
1976 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
1978 case REAL_CST:
1979 return real_zerop (expr) ? boolean_false_node : boolean_true_node;
1981 case ADDR_EXPR:
1982 /* If we are taking the address of an external decl, it might be zero
1983 if it is weak, so we cannot optimize. */
1984 if (DECL_P (TREE_OPERAND (expr, 0))
1985 && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
1986 break;
1988 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 0)))
1989 return build (COMPOUND_EXPR, boolean_type_node,
1990 TREE_OPERAND (expr, 0), boolean_true_node);
1991 else
1992 return boolean_true_node;
1994 case COMPLEX_EXPR:
1995 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
1996 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
1997 truthvalue_conversion (TREE_OPERAND (expr, 0)),
1998 truthvalue_conversion (TREE_OPERAND (expr, 1)),
2001 case NEGATE_EXPR:
2002 case ABS_EXPR:
2003 case FLOAT_EXPR:
2004 case FFS_EXPR:
2005 /* These don't change whether an object is non-zero or zero. */
2006 return truthvalue_conversion (TREE_OPERAND (expr, 0));
2008 case LROTATE_EXPR:
2009 case RROTATE_EXPR:
2010 /* These don't change whether an object is zero or non-zero, but
2011 we can't ignore them if their second arg has side-effects. */
2012 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
2013 return build (COMPOUND_EXPR, boolean_type_node, TREE_OPERAND (expr, 1),
2014 truthvalue_conversion (TREE_OPERAND (expr, 0)));
2015 else
2016 return truthvalue_conversion (TREE_OPERAND (expr, 0));
2018 case COND_EXPR:
2019 /* Distribute the conversion into the arms of a COND_EXPR. */
2020 return fold (build (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
2021 truthvalue_conversion (TREE_OPERAND (expr, 1)),
2022 truthvalue_conversion (TREE_OPERAND (expr, 2))));
2024 case CONVERT_EXPR:
2025 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
2026 since that affects how `default_conversion' will behave. */
2027 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
2028 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2029 break;
2030 /* fall through... */
2031 case NOP_EXPR:
2032 /* If this is widening the argument, we can ignore it. */
2033 if (TYPE_PRECISION (TREE_TYPE (expr))
2034 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2035 return truthvalue_conversion (TREE_OPERAND (expr, 0));
2036 break;
2038 case MINUS_EXPR:
2039 /* With IEEE arithmetic, x - x may not equal 0, so we can't optimize
2040 this case. */
2041 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
2042 && TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE)
2043 break;
2044 /* fall through... */
2045 case BIT_XOR_EXPR:
2046 /* This and MINUS_EXPR can be changed into a comparison of the
2047 two objects. */
2048 if (TREE_TYPE (TREE_OPERAND (expr, 0))
2049 == TREE_TYPE (TREE_OPERAND (expr, 1)))
2050 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2051 TREE_OPERAND (expr, 1), 1);
2052 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2053 fold (build1 (NOP_EXPR,
2054 TREE_TYPE (TREE_OPERAND (expr, 0)),
2055 TREE_OPERAND (expr, 1))), 1);
2057 case BIT_AND_EXPR:
2058 if (integer_onep (TREE_OPERAND (expr, 1))
2059 && TREE_TYPE (expr) != boolean_type_node)
2060 /* Using convert here would cause infinite recursion. */
2061 return build1 (NOP_EXPR, boolean_type_node, expr);
2062 break;
2064 case MODIFY_EXPR:
2065 if (warn_parentheses && C_EXP_ORIGINAL_CODE (expr) == MODIFY_EXPR)
2066 warning ("suggest parentheses around assignment used as truth value");
2067 break;
2069 default:
2070 break;
2073 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
2075 tree tem = save_expr (expr);
2076 return (build_binary_op
2077 ((TREE_SIDE_EFFECTS (expr)
2078 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2079 truthvalue_conversion (build_unary_op (REALPART_EXPR, tem, 0)),
2080 truthvalue_conversion (build_unary_op (IMAGPART_EXPR, tem, 0)),
2081 0));
2084 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2087 static tree builtin_function_2 PARAMS ((const char *, const char *, tree, tree,
2088 int, enum built_in_class, int, int,
2089 int));
2091 /* Make a variant type in the proper way for C/C++, propagating qualifiers
2092 down to the element type of an array. */
2094 tree
2095 c_build_qualified_type (type, type_quals)
2096 tree type;
2097 int type_quals;
2099 /* A restrict-qualified pointer type must be a pointer to object or
2100 incomplete type. Note that the use of POINTER_TYPE_P also allows
2101 REFERENCE_TYPEs, which is appropriate for C++. Unfortunately,
2102 the C++ front-end also use POINTER_TYPE for pointer-to-member
2103 values, so even though it should be illegal to use `restrict'
2104 with such an entity we don't flag that here. Thus, special case
2105 code for that case is required in the C++ front-end. */
2106 if ((type_quals & TYPE_QUAL_RESTRICT)
2107 && (!POINTER_TYPE_P (type)
2108 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
2110 error ("invalid use of `restrict'");
2111 type_quals &= ~TYPE_QUAL_RESTRICT;
2114 if (TREE_CODE (type) == ARRAY_TYPE)
2115 return build_array_type (c_build_qualified_type (TREE_TYPE (type),
2116 type_quals),
2117 TYPE_DOMAIN (type));
2118 return build_qualified_type (type, type_quals);
2121 /* Apply the TYPE_QUALS to the new DECL. */
2123 void
2124 c_apply_type_quals_to_decl (type_quals, decl)
2125 int type_quals;
2126 tree decl;
2128 if ((type_quals & TYPE_QUAL_CONST)
2129 || (TREE_TYPE (decl)
2130 && TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE))
2131 TREE_READONLY (decl) = 1;
2132 if (type_quals & TYPE_QUAL_VOLATILE)
2134 TREE_SIDE_EFFECTS (decl) = 1;
2135 TREE_THIS_VOLATILE (decl) = 1;
2137 if (type_quals & TYPE_QUAL_RESTRICT)
2139 if (!TREE_TYPE (decl)
2140 || !POINTER_TYPE_P (TREE_TYPE (decl))
2141 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (TREE_TYPE (decl))))
2142 error ("invalid use of `restrict'");
2143 else if (flag_strict_aliasing)
2144 /* Indicate we need to make a unique alias set for this pointer.
2145 We can't do it here because it might be pointing to an
2146 incomplete type. */
2147 DECL_POINTER_ALIAS_SET (decl) = -2;
2152 /* Return the typed-based alias set for T, which may be an expression
2153 or a type. Return -1 if we don't do anything special. */
2155 HOST_WIDE_INT
2156 c_common_get_alias_set (t)
2157 tree t;
2159 tree u;
2161 /* We know nothing about vector types */
2162 if (TREE_CODE (t) == VECTOR_TYPE)
2163 return 0;
2165 /* Permit type-punning when accessing a union, provided the access
2166 is directly through the union. For example, this code does not
2167 permit taking the address of a union member and then storing
2168 through it. Even the type-punning allowed here is a GCC
2169 extension, albeit a common and useful one; the C standard says
2170 that such accesses have implementation-defined behavior. */
2171 for (u = t;
2172 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
2173 u = TREE_OPERAND (u, 0))
2174 if (TREE_CODE (u) == COMPONENT_REF
2175 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
2176 return 0;
2178 /* If this is a char *, the ANSI C standard says it can alias
2179 anything. Note that all references need do this. */
2180 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'r'
2181 && TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
2182 && TYPE_PRECISION (TREE_TYPE (t)) == TYPE_PRECISION (char_type_node))
2183 return 0;
2185 /* That's all the expressions we handle specially. */
2186 if (! TYPE_P (t))
2187 return -1;
2189 /* The C standard specifically allows aliasing between signed and
2190 unsigned variants of the same type. We treat the signed
2191 variant as canonical. */
2192 if (TREE_CODE (t) == INTEGER_TYPE && TREE_UNSIGNED (t))
2194 tree t1 = signed_type (t);
2196 /* t1 == t can happen for boolean nodes which are always unsigned. */
2197 if (t1 != t)
2198 return get_alias_set (t1);
2200 else if (POINTER_TYPE_P (t))
2202 tree t1;
2204 /* Unfortunately, there is no canonical form of a pointer type.
2205 In particular, if we have `typedef int I', then `int *', and
2206 `I *' are different types. So, we have to pick a canonical
2207 representative. We do this below.
2209 Technically, this approach is actually more conservative that
2210 it needs to be. In particular, `const int *' and `int *'
2211 should be in different alias sets, according to the C and C++
2212 standard, since their types are not the same, and so,
2213 technically, an `int **' and `const int **' cannot point at
2214 the same thing.
2216 But, the standard is wrong. In particular, this code is
2217 legal C++:
2219 int *ip;
2220 int **ipp = &ip;
2221 const int* const* cipp = &ipp;
2223 And, it doesn't make sense for that to be legal unless you
2224 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
2225 the pointed-to types. This issue has been reported to the
2226 C++ committee. */
2227 t1 = build_type_no_quals (t);
2228 if (t1 != t)
2229 return get_alias_set (t1);
2232 return -1;
2235 /* Implement the __alignof keyword: Return the minimum required
2236 alignment of TYPE, measured in bytes. */
2238 tree
2239 c_alignof (type)
2240 tree type;
2242 enum tree_code code = TREE_CODE (type);
2243 tree t;
2245 /* In C++, sizeof applies to the referent. Handle alignof the same way. */
2246 if (code == REFERENCE_TYPE)
2248 type = TREE_TYPE (type);
2249 code = TREE_CODE (type);
2252 if (code == FUNCTION_TYPE)
2253 t = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
2254 else if (code == VOID_TYPE || code == ERROR_MARK)
2255 t = size_one_node;
2256 else if (!COMPLETE_TYPE_P (type))
2258 error ("__alignof__ applied to an incomplete type");
2259 t = size_zero_node;
2261 else
2262 t = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
2264 return fold (build1 (NOP_EXPR, c_size_type_node, t));
2267 /* Implement the __alignof keyword: Return the minimum required
2268 alignment of EXPR, measured in bytes. For VAR_DECL's and
2269 FIELD_DECL's return DECL_ALIGN (which can be set from an
2270 "aligned" __attribute__ specification). */
2272 tree
2273 c_alignof_expr (expr)
2274 tree expr;
2276 tree t;
2278 if (TREE_CODE (expr) == VAR_DECL)
2279 t = size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
2281 else if (TREE_CODE (expr) == COMPONENT_REF
2282 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
2284 error ("`__alignof' applied to a bit-field");
2285 t = size_one_node;
2287 else if (TREE_CODE (expr) == COMPONENT_REF
2288 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
2289 t = size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
2291 else if (TREE_CODE (expr) == INDIRECT_REF)
2293 tree t = TREE_OPERAND (expr, 0);
2294 tree best = t;
2295 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2297 while (TREE_CODE (t) == NOP_EXPR
2298 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
2300 int thisalign;
2302 t = TREE_OPERAND (t, 0);
2303 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2304 if (thisalign > bestalign)
2305 best = t, bestalign = thisalign;
2307 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
2309 else
2310 return c_alignof (TREE_TYPE (expr));
2312 return fold (build1 (NOP_EXPR, c_size_type_node, t));
2315 /* Give the specifications for the format attributes, used by C and all
2316 descendents. */
2318 static const struct attribute_spec c_format_attribute_table[] =
2320 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
2321 { "format", 3, 3, false, true, true,
2322 handle_format_attribute },
2323 { "format_arg", 1, 1, false, true, true,
2324 handle_format_arg_attribute },
2325 { NULL, 0, 0, false, false, false, NULL }
2328 /* Build tree nodes and builtin functions common to both C and C++ language
2329 frontends. */
2331 void
2332 c_common_nodes_and_builtins ()
2334 enum builtin_type
2336 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
2337 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
2338 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
2339 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
2340 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
2341 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
2342 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
2343 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
2344 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
2345 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
2346 #include "builtin-types.def"
2347 #undef DEF_PRIMITIVE_TYPE
2348 #undef DEF_FUNCTION_TYPE_0
2349 #undef DEF_FUNCTION_TYPE_1
2350 #undef DEF_FUNCTION_TYPE_2
2351 #undef DEF_FUNCTION_TYPE_3
2352 #undef DEF_FUNCTION_TYPE_4
2353 #undef DEF_FUNCTION_TYPE_VAR_0
2354 #undef DEF_FUNCTION_TYPE_VAR_1
2355 #undef DEF_FUNCTION_TYPE_VAR_2
2356 #undef DEF_POINTER_TYPE
2357 BT_LAST
2360 typedef enum builtin_type builtin_type;
2362 tree builtin_types[(int)BT_LAST];
2363 int wchar_type_size;
2364 tree array_domain_type;
2365 /* Either char* or void*. */
2366 tree traditional_ptr_type_node;
2367 /* Either const char* or const void*. */
2368 tree traditional_cptr_type_node;
2369 tree traditional_len_type_node;
2370 tree va_list_ref_type_node;
2371 tree va_list_arg_type_node;
2373 /* We must initialize this before any builtin functions (which might have
2374 attributes) are declared. (c_common_lang_init is too late.) */
2375 format_attribute_table = c_format_attribute_table;
2377 /* Define `int' and `char' first so that dbx will output them first. */
2378 record_builtin_type (RID_INT, NULL, integer_type_node);
2379 record_builtin_type (RID_CHAR, "char", char_type_node);
2381 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
2382 "unsigned long", "long long unsigned" and "unsigned short" were in C++
2383 but not C. Are the conditionals here needed? */
2384 if (c_language == clk_cplusplus)
2385 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
2386 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
2387 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
2388 record_builtin_type (RID_MAX, "long unsigned int",
2389 long_unsigned_type_node);
2390 if (c_language == clk_cplusplus)
2391 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
2392 record_builtin_type (RID_MAX, "long long int",
2393 long_long_integer_type_node);
2394 record_builtin_type (RID_MAX, "long long unsigned int",
2395 long_long_unsigned_type_node);
2396 if (c_language == clk_cplusplus)
2397 record_builtin_type (RID_MAX, "long long unsigned",
2398 long_long_unsigned_type_node);
2399 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
2400 record_builtin_type (RID_MAX, "short unsigned int",
2401 short_unsigned_type_node);
2402 if (c_language == clk_cplusplus)
2403 record_builtin_type (RID_MAX, "unsigned short",
2404 short_unsigned_type_node);
2406 /* Define both `signed char' and `unsigned char'. */
2407 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
2408 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
2410 /* These are types that type_for_size and type_for_mode use. */
2411 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2412 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2413 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2414 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2415 #if HOST_BITS_PER_WIDE_INT >= 64
2416 pushdecl (build_decl (TYPE_DECL, get_identifier ("__int128_t"), intTI_type_node));
2417 #endif
2418 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2419 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
2420 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
2421 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
2422 #if HOST_BITS_PER_WIDE_INT >= 64
2423 pushdecl (build_decl (TYPE_DECL, get_identifier ("__uint128_t"), unsigned_intTI_type_node));
2424 #endif
2426 /* Create the widest literal types. */
2427 widest_integer_literal_type_node
2428 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
2429 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2430 widest_integer_literal_type_node));
2432 widest_unsigned_literal_type_node
2433 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
2434 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2435 widest_unsigned_literal_type_node));
2437 /* `unsigned long' is the standard type for sizeof.
2438 Note that stddef.h uses `unsigned long',
2439 and this must agree, even if long and int are the same size. */
2440 c_size_type_node =
2441 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
2442 signed_size_type_node = signed_type (c_size_type_node);
2443 if (flag_traditional)
2444 c_size_type_node = signed_size_type_node;
2445 set_sizetype (c_size_type_node);
2447 build_common_tree_nodes_2 (flag_short_double);
2449 record_builtin_type (RID_FLOAT, NULL, float_type_node);
2450 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
2451 record_builtin_type (RID_MAX, "long double", long_double_type_node);
2453 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
2454 complex_integer_type_node));
2455 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
2456 complex_float_type_node));
2457 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
2458 complex_double_type_node));
2459 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2460 complex_long_double_type_node));
2462 record_builtin_type (RID_VOID, NULL, void_type_node);
2464 void_zero_node = build_int_2 (0, 0);
2465 TREE_TYPE (void_zero_node) = void_type_node;
2467 void_list_node = build_void_list_node ();
2469 /* Make a type to be the domain of a few array types
2470 whose domains don't really matter.
2471 200 is small enough that it always fits in size_t
2472 and large enough that it can hold most function names for the
2473 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
2474 array_domain_type = build_index_type (size_int (200));
2476 /* Make a type for arrays of characters.
2477 With luck nothing will ever really depend on the length of this
2478 array type. */
2479 char_array_type_node
2480 = build_array_type (char_type_node, array_domain_type);
2482 /* Likewise for arrays of ints. */
2483 int_array_type_node
2484 = build_array_type (integer_type_node, array_domain_type);
2486 string_type_node = build_pointer_type (char_type_node);
2487 const_string_type_node
2488 = build_pointer_type (build_qualified_type
2489 (char_type_node, TYPE_QUAL_CONST));
2491 traditional_ptr_type_node = ((flag_traditional &&
2492 c_language != clk_cplusplus)
2493 ? string_type_node : ptr_type_node);
2494 traditional_cptr_type_node = ((flag_traditional &&
2495 c_language != clk_cplusplus)
2496 ? const_string_type_node : const_ptr_type_node);
2498 (*targetm.init_builtins) ();
2500 /* This is special for C++ so functions can be overloaded. */
2501 wchar_type_node = get_identifier (flag_short_wchar
2502 ? "short unsigned int"
2503 : WCHAR_TYPE);
2504 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
2505 wchar_type_size = TYPE_PRECISION (wchar_type_node);
2506 if (c_language == clk_cplusplus)
2508 if (TREE_UNSIGNED (wchar_type_node))
2509 wchar_type_node = make_unsigned_type (wchar_type_size);
2510 else
2511 wchar_type_node = make_signed_type (wchar_type_size);
2512 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
2514 else
2516 signed_wchar_type_node = signed_type (wchar_type_node);
2517 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
2520 /* This is for wide string constants. */
2521 wchar_array_type_node
2522 = build_array_type (wchar_type_node, array_domain_type);
2524 wint_type_node =
2525 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
2527 intmax_type_node =
2528 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
2529 uintmax_type_node =
2530 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
2532 default_function_type = build_function_type (integer_type_node, NULL_TREE);
2533 ptrdiff_type_node
2534 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
2535 unsigned_ptrdiff_type_node = unsigned_type (ptrdiff_type_node);
2537 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
2538 va_list_type_node));
2540 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_ptrdiff_t"),
2541 ptrdiff_type_node));
2543 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_size_t"),
2544 sizetype));
2546 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
2548 va_list_arg_type_node = va_list_ref_type_node =
2549 build_pointer_type (TREE_TYPE (va_list_type_node));
2551 else
2553 va_list_arg_type_node = va_list_type_node;
2554 va_list_ref_type_node = build_reference_type (va_list_type_node);
2557 traditional_len_type_node = ((flag_traditional &&
2558 c_language != clk_cplusplus)
2559 ? integer_type_node : sizetype);
2561 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
2562 builtin_types[(int) ENUM] = VALUE;
2563 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
2564 builtin_types[(int) ENUM] \
2565 = build_function_type (builtin_types[(int) RETURN], \
2566 void_list_node);
2567 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
2568 builtin_types[(int) ENUM] \
2569 = build_function_type (builtin_types[(int) RETURN], \
2570 tree_cons (NULL_TREE, \
2571 builtin_types[(int) ARG1], \
2572 void_list_node));
2573 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
2574 builtin_types[(int) ENUM] \
2575 = build_function_type \
2576 (builtin_types[(int) RETURN], \
2577 tree_cons (NULL_TREE, \
2578 builtin_types[(int) ARG1], \
2579 tree_cons (NULL_TREE, \
2580 builtin_types[(int) ARG2], \
2581 void_list_node)));
2582 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
2583 builtin_types[(int) ENUM] \
2584 = build_function_type \
2585 (builtin_types[(int) RETURN], \
2586 tree_cons (NULL_TREE, \
2587 builtin_types[(int) ARG1], \
2588 tree_cons (NULL_TREE, \
2589 builtin_types[(int) ARG2], \
2590 tree_cons (NULL_TREE, \
2591 builtin_types[(int) ARG3], \
2592 void_list_node))));
2593 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
2594 builtin_types[(int) ENUM] \
2595 = build_function_type \
2596 (builtin_types[(int) RETURN], \
2597 tree_cons (NULL_TREE, \
2598 builtin_types[(int) ARG1], \
2599 tree_cons (NULL_TREE, \
2600 builtin_types[(int) ARG2], \
2601 tree_cons \
2602 (NULL_TREE, \
2603 builtin_types[(int) ARG3], \
2604 tree_cons (NULL_TREE, \
2605 builtin_types[(int) ARG4], \
2606 void_list_node)))));
2607 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
2608 builtin_types[(int) ENUM] \
2609 = build_function_type (builtin_types[(int) RETURN], NULL_TREE);
2610 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
2611 builtin_types[(int) ENUM] \
2612 = build_function_type (builtin_types[(int) RETURN], \
2613 tree_cons (NULL_TREE, \
2614 builtin_types[(int) ARG1], \
2615 NULL_TREE));
2617 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
2618 builtin_types[(int) ENUM] \
2619 = build_function_type \
2620 (builtin_types[(int) RETURN], \
2621 tree_cons (NULL_TREE, \
2622 builtin_types[(int) ARG1], \
2623 tree_cons (NULL_TREE, \
2624 builtin_types[(int) ARG2], \
2625 NULL_TREE)));
2626 #define DEF_POINTER_TYPE(ENUM, TYPE) \
2627 builtin_types[(int) ENUM] \
2628 = build_pointer_type (builtin_types[(int) TYPE]);
2629 #include "builtin-types.def"
2630 #undef DEF_PRIMITIVE_TYPE
2631 #undef DEF_FUNCTION_TYPE_1
2632 #undef DEF_FUNCTION_TYPE_2
2633 #undef DEF_FUNCTION_TYPE_3
2634 #undef DEF_FUNCTION_TYPE_4
2635 #undef DEF_FUNCTION_TYPE_VAR_0
2636 #undef DEF_FUNCTION_TYPE_VAR_1
2637 #undef DEF_POINTER_TYPE
2639 #define DEF_BUILTIN(ENUM, NAME, CLASS, \
2640 TYPE, LIBTYPE, BOTH_P, FALLBACK_P, NONANSI_P) \
2641 if (NAME) \
2643 tree decl; \
2645 if (strncmp (NAME, "__builtin_", strlen ("__builtin_")) != 0) \
2646 abort (); \
2648 if (!BOTH_P) \
2649 decl = builtin_function (NAME, builtin_types[TYPE], ENUM, \
2650 CLASS, \
2651 (FALLBACK_P \
2652 ? (NAME + strlen ("__builtin_")) \
2653 : NULL)); \
2654 else \
2655 decl = builtin_function_2 (NAME, \
2656 NAME + strlen ("__builtin_"), \
2657 builtin_types[TYPE], \
2658 builtin_types[LIBTYPE], \
2659 ENUM, \
2660 CLASS, \
2661 FALLBACK_P, \
2662 NONANSI_P, \
2663 /*noreturn_p=*/0); \
2665 built_in_decls[(int) ENUM] = decl; \
2667 #include "builtins.def"
2668 #undef DEF_BUILTIN
2670 /* Declare _exit and _Exit just to mark them as non-returning. */
2671 builtin_function_2 (NULL, "_exit", NULL_TREE,
2672 builtin_types[BT_FN_VOID_INT],
2673 0, NOT_BUILT_IN, 0, 1, 1);
2674 builtin_function_2 (NULL, "_Exit", NULL_TREE,
2675 builtin_types[BT_FN_VOID_INT],
2676 0, NOT_BUILT_IN, 0, !flag_isoc99, 1);
2678 /* Declare these functions non-returning
2679 to avoid spurious "control drops through" warnings. */
2680 builtin_function_2 (NULL, "abort",
2681 NULL_TREE, ((c_language == clk_cplusplus)
2682 ? builtin_types[BT_FN_VOID]
2683 : builtin_types[BT_FN_VOID_VAR]),
2684 0, NOT_BUILT_IN, 0, 0, 1);
2686 builtin_function_2 (NULL, "exit",
2687 NULL_TREE, ((c_language == clk_cplusplus)
2688 ? builtin_types[BT_FN_VOID_INT]
2689 : builtin_types[BT_FN_VOID_VAR]),
2690 0, NOT_BUILT_IN, 0, 0, 1);
2692 main_identifier_node = get_identifier ("main");
2694 /* ??? Perhaps there's a better place to do this. But it is related
2695 to __builtin_va_arg, so it isn't that off-the-wall. */
2696 lang_type_promotes_to = simple_type_promotes_to;
2699 tree
2700 build_va_arg (expr, type)
2701 tree expr, type;
2703 return build1 (VA_ARG_EXPR, type, expr);
2707 /* Linked list of disabled built-in functions. */
2709 typedef struct disabled_builtin
2711 const char *name;
2712 struct disabled_builtin *next;
2713 } disabled_builtin;
2714 static disabled_builtin *disabled_builtins = NULL;
2716 static bool builtin_function_disabled_p PARAMS ((const char *));
2718 /* Disable a built-in function specified by -fno-builtin-NAME. If NAME
2719 begins with "__builtin_", give an error. */
2721 void
2722 disable_builtin_function (name)
2723 const char *name;
2725 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
2726 error ("cannot disable built-in function `%s'", name);
2727 else
2729 disabled_builtin *new = xmalloc (sizeof (disabled_builtin));
2730 new->name = name;
2731 new->next = disabled_builtins;
2732 disabled_builtins = new;
2737 /* Return true if the built-in function NAME has been disabled, false
2738 otherwise. */
2740 static bool
2741 builtin_function_disabled_p (name)
2742 const char *name;
2744 disabled_builtin *p;
2745 for (p = disabled_builtins; p != NULL; p = p->next)
2747 if (strcmp (name, p->name) == 0)
2748 return true;
2750 return false;
2754 /* Possibly define a builtin function with one or two names. BUILTIN_NAME
2755 is an __builtin_-prefixed name; NAME is the ordinary name; one or both
2756 of these may be NULL (though both being NULL is useless).
2757 BUILTIN_TYPE is the type of the __builtin_-prefixed function;
2758 TYPE is the type of the function with the ordinary name. These
2759 may differ if the ordinary name is declared with a looser type to avoid
2760 conflicts with headers. FUNCTION_CODE and CLASS are as for
2761 builtin_function. If LIBRARY_NAME_P is nonzero, NAME is passed as
2762 the LIBRARY_NAME parameter to builtin_function when declaring BUILTIN_NAME.
2763 If NONANSI_P is nonzero, the name NAME is treated as a non-ANSI name; if
2764 NORETURN_P is nonzero, the function is marked as non-returning.
2765 Returns the declaration of BUILTIN_NAME, if any, otherwise
2766 the declaration of NAME. Does not declare NAME if flag_no_builtin,
2767 or if NONANSI_P and flag_no_nonansi_builtin. */
2769 static tree
2770 builtin_function_2 (builtin_name, name, builtin_type, type, function_code,
2771 class, library_name_p, nonansi_p, noreturn_p)
2772 const char *builtin_name;
2773 const char *name;
2774 tree builtin_type;
2775 tree type;
2776 int function_code;
2777 enum built_in_class class;
2778 int library_name_p;
2779 int nonansi_p;
2780 int noreturn_p;
2782 tree bdecl = NULL_TREE;
2783 tree decl = NULL_TREE;
2784 if (builtin_name != 0)
2786 bdecl = builtin_function (builtin_name, builtin_type, function_code,
2787 class, library_name_p ? name : NULL);
2788 if (noreturn_p)
2790 TREE_THIS_VOLATILE (bdecl) = 1;
2791 TREE_SIDE_EFFECTS (bdecl) = 1;
2794 if (name != 0 && !flag_no_builtin && !builtin_function_disabled_p (name)
2795 && !(nonansi_p && flag_no_nonansi_builtin))
2797 decl = builtin_function (name, type, function_code, class, NULL);
2798 if (nonansi_p)
2799 DECL_BUILT_IN_NONANSI (decl) = 1;
2800 if (noreturn_p)
2802 TREE_THIS_VOLATILE (decl) = 1;
2803 TREE_SIDE_EFFECTS (decl) = 1;
2806 return (bdecl != 0 ? bdecl : decl);
2809 /* Nonzero if the type T promotes to int. This is (nearly) the
2810 integral promotions defined in ISO C99 6.3.1.1/2. */
2812 bool
2813 c_promoting_integer_type_p (t)
2814 tree t;
2816 switch (TREE_CODE (t))
2818 case INTEGER_TYPE:
2819 return (TYPE_MAIN_VARIANT (t) == char_type_node
2820 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
2821 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
2822 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
2823 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
2824 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
2826 case ENUMERAL_TYPE:
2827 /* ??? Technically all enumerations not larger than an int
2828 promote to an int. But this is used along code paths
2829 that only want to notice a size change. */
2830 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
2832 case BOOLEAN_TYPE:
2833 return 1;
2835 default:
2836 return 0;
2840 /* Given a type, apply default promotions wrt unnamed function arguments
2841 and return the new type. Return NULL_TREE if no change. */
2842 /* ??? There is a function of the same name in the C++ front end that
2843 does something similar, but is more thorough and does not return NULL
2844 if no change. We could perhaps share code, but it would make the
2845 self_promoting_type property harder to identify. */
2847 tree
2848 simple_type_promotes_to (type)
2849 tree type;
2851 if (TYPE_MAIN_VARIANT (type) == float_type_node)
2852 return double_type_node;
2854 if (c_promoting_integer_type_p (type))
2856 /* Traditionally, unsignedness is preserved in default promotions.
2857 Also preserve unsignedness if not really getting any wider. */
2858 if (TREE_UNSIGNED (type)
2859 && (flag_traditional
2860 || TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
2861 return unsigned_type_node;
2862 return integer_type_node;
2865 return NULL_TREE;
2868 /* Return 1 if PARMS specifies a fixed number of parameters
2869 and none of their types is affected by default promotions. */
2872 self_promoting_args_p (parms)
2873 tree parms;
2875 tree t;
2876 for (t = parms; t; t = TREE_CHAIN (t))
2878 tree type = TREE_VALUE (t);
2880 if (TREE_CHAIN (t) == 0 && type != void_type_node)
2881 return 0;
2883 if (type == 0)
2884 return 0;
2886 if (TYPE_MAIN_VARIANT (type) == float_type_node)
2887 return 0;
2889 if (c_promoting_integer_type_p (type))
2890 return 0;
2892 return 1;
2895 /* Recursively examines the array elements of TYPE, until a non-array
2896 element type is found. */
2898 tree
2899 strip_array_types (type)
2900 tree type;
2902 while (TREE_CODE (type) == ARRAY_TYPE)
2903 type = TREE_TYPE (type);
2905 return type;
2908 /* Recognize certain built-in functions so we can make tree-codes
2909 other than CALL_EXPR. We do this when it enables fold-const.c
2910 to do something useful. */
2911 /* ??? By rights this should go in builtins.c, but only C and C++
2912 implement build_{binary,unary}_op. Not exactly sure what bits
2913 of functionality are actually needed from those functions, or
2914 where the similar functionality exists in the other front ends. */
2916 tree
2917 expand_tree_builtin (function, params, coerced_params)
2918 tree function, params, coerced_params;
2920 enum tree_code code;
2922 if (DECL_BUILT_IN_CLASS (function) != BUILT_IN_NORMAL)
2923 return NULL_TREE;
2925 switch (DECL_FUNCTION_CODE (function))
2927 case BUILT_IN_ABS:
2928 case BUILT_IN_LABS:
2929 case BUILT_IN_LLABS:
2930 case BUILT_IN_IMAXABS:
2931 case BUILT_IN_FABS:
2932 case BUILT_IN_FABSL:
2933 case BUILT_IN_FABSF:
2934 if (coerced_params == 0)
2935 return integer_zero_node;
2936 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
2938 case BUILT_IN_CONJ:
2939 case BUILT_IN_CONJF:
2940 case BUILT_IN_CONJL:
2941 if (coerced_params == 0)
2942 return integer_zero_node;
2943 return build_unary_op (CONJ_EXPR, TREE_VALUE (coerced_params), 0);
2945 case BUILT_IN_CREAL:
2946 case BUILT_IN_CREALF:
2947 case BUILT_IN_CREALL:
2948 if (coerced_params == 0)
2949 return integer_zero_node;
2950 return build_unary_op (REALPART_EXPR, TREE_VALUE (coerced_params), 0);
2952 case BUILT_IN_CIMAG:
2953 case BUILT_IN_CIMAGF:
2954 case BUILT_IN_CIMAGL:
2955 if (coerced_params == 0)
2956 return integer_zero_node;
2957 return build_unary_op (IMAGPART_EXPR, TREE_VALUE (coerced_params), 0);
2959 case BUILT_IN_ISGREATER:
2960 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2961 code = UNLE_EXPR;
2962 else
2963 code = LE_EXPR;
2964 goto unordered_cmp;
2966 case BUILT_IN_ISGREATEREQUAL:
2967 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2968 code = UNLT_EXPR;
2969 else
2970 code = LT_EXPR;
2971 goto unordered_cmp;
2973 case BUILT_IN_ISLESS:
2974 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2975 code = UNGE_EXPR;
2976 else
2977 code = GE_EXPR;
2978 goto unordered_cmp;
2980 case BUILT_IN_ISLESSEQUAL:
2981 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2982 code = UNGT_EXPR;
2983 else
2984 code = GT_EXPR;
2985 goto unordered_cmp;
2987 case BUILT_IN_ISLESSGREATER:
2988 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2989 code = UNEQ_EXPR;
2990 else
2991 code = EQ_EXPR;
2992 goto unordered_cmp;
2994 case BUILT_IN_ISUNORDERED:
2995 if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT)
2996 return integer_zero_node;
2997 code = UNORDERED_EXPR;
2998 goto unordered_cmp;
3000 unordered_cmp:
3002 tree arg0, arg1;
3004 if (params == 0
3005 || TREE_CHAIN (params) == 0)
3007 error ("too few arguments to function `%s'",
3008 IDENTIFIER_POINTER (DECL_NAME (function)));
3009 return error_mark_node;
3011 else if (TREE_CHAIN (TREE_CHAIN (params)) != 0)
3013 error ("too many arguments to function `%s'",
3014 IDENTIFIER_POINTER (DECL_NAME (function)));
3015 return error_mark_node;
3018 arg0 = TREE_VALUE (params);
3019 arg1 = TREE_VALUE (TREE_CHAIN (params));
3020 arg0 = build_binary_op (code, arg0, arg1, 0);
3021 if (code != UNORDERED_EXPR)
3022 arg0 = build_unary_op (TRUTH_NOT_EXPR, arg0, 0);
3023 return arg0;
3025 break;
3027 default:
3028 break;
3031 return NULL_TREE;
3034 /* Returns non-zero if CODE is the code for a statement. */
3037 statement_code_p (code)
3038 enum tree_code code;
3040 switch (code)
3042 case EXPR_STMT:
3043 case COMPOUND_STMT:
3044 case DECL_STMT:
3045 case IF_STMT:
3046 case FOR_STMT:
3047 case WHILE_STMT:
3048 case DO_STMT:
3049 case RETURN_STMT:
3050 case BREAK_STMT:
3051 case CONTINUE_STMT:
3052 case SCOPE_STMT:
3053 case SWITCH_STMT:
3054 case GOTO_STMT:
3055 case LABEL_STMT:
3056 case ASM_STMT:
3057 case CASE_LABEL:
3058 return 1;
3060 default:
3061 if (lang_statement_code_p)
3062 return (*lang_statement_code_p) (code);
3063 return 0;
3067 /* Walk the statement tree, rooted at *tp. Apply FUNC to all the
3068 sub-trees of *TP in a pre-order traversal. FUNC is called with the
3069 DATA and the address of each sub-tree. If FUNC returns a non-NULL
3070 value, the traversal is aborted, and the value returned by FUNC is
3071 returned. If FUNC sets WALK_SUBTREES to zero, then the subtrees of
3072 the node being visited are not walked.
3074 We don't need a without_duplicates variant of this one because the
3075 statement tree is a tree, not a graph. */
3077 tree
3078 walk_stmt_tree (tp, func, data)
3079 tree *tp;
3080 walk_tree_fn func;
3081 void *data;
3083 enum tree_code code;
3084 int walk_subtrees;
3085 tree result;
3086 int i, len;
3088 #define WALK_SUBTREE(NODE) \
3089 do \
3091 result = walk_stmt_tree (&(NODE), func, data); \
3092 if (result) \
3093 return result; \
3095 while (0)
3097 /* Skip empty subtrees. */
3098 if (!*tp)
3099 return NULL_TREE;
3101 /* Skip subtrees below non-statement nodes. */
3102 if (!statement_code_p (TREE_CODE (*tp)))
3103 return NULL_TREE;
3105 /* Call the function. */
3106 walk_subtrees = 1;
3107 result = (*func) (tp, &walk_subtrees, data);
3109 /* If we found something, return it. */
3110 if (result)
3111 return result;
3113 /* FUNC may have modified the tree, recheck that we're looking at a
3114 statement node. */
3115 code = TREE_CODE (*tp);
3116 if (!statement_code_p (code))
3117 return NULL_TREE;
3119 /* Visit the subtrees unless FUNC decided that there was nothing
3120 interesting below this point in the tree. */
3121 if (walk_subtrees)
3123 /* Walk over all the sub-trees of this operand. Statement nodes
3124 never contain RTL, and we needn't worry about TARGET_EXPRs. */
3125 len = TREE_CODE_LENGTH (code);
3127 /* Go through the subtrees. We need to do this in forward order so
3128 that the scope of a FOR_EXPR is handled properly. */
3129 for (i = 0; i < len; ++i)
3130 WALK_SUBTREE (TREE_OPERAND (*tp, i));
3133 /* Finally visit the chain. This can be tail-recursion optimized if
3134 we write it this way. */
3135 return walk_stmt_tree (&TREE_CHAIN (*tp), func, data);
3137 #undef WALK_SUBTREE
3140 /* Used to compare case labels. K1 and K2 are actually tree nodes
3141 representing case labels, or NULL_TREE for a `default' label.
3142 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
3143 K2, and 0 if K1 and K2 are equal. */
3146 case_compare (k1, k2)
3147 splay_tree_key k1;
3148 splay_tree_key k2;
3150 /* Consider a NULL key (such as arises with a `default' label) to be
3151 smaller than anything else. */
3152 if (!k1)
3153 return k2 ? -1 : 0;
3154 else if (!k2)
3155 return k1 ? 1 : 0;
3157 return tree_int_cst_compare ((tree) k1, (tree) k2);
3160 /* Process a case label for the range LOW_VALUE ... HIGH_VALUE. If
3161 LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
3162 actually a `default' label. If only HIGH_VALUE is NULL_TREE, then
3163 case label was declared using the usual C/C++ syntax, rather than
3164 the GNU case range extension. CASES is a tree containing all the
3165 case ranges processed so far; COND is the condition for the
3166 switch-statement itself. Returns the CASE_LABEL created, or
3167 ERROR_MARK_NODE if no CASE_LABEL is created. */
3169 tree
3170 c_add_case_label (cases, cond, low_value, high_value)
3171 splay_tree cases;
3172 tree cond;
3173 tree low_value;
3174 tree high_value;
3176 tree type;
3177 tree label;
3178 tree case_label;
3179 splay_tree_node node;
3181 /* Create the LABEL_DECL itself. */
3182 label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3183 DECL_CONTEXT (label) = current_function_decl;
3185 /* If there was an error processing the switch condition, bail now
3186 before we get more confused. */
3187 if (!cond || cond == error_mark_node)
3189 /* Add a label anyhow so that the back-end doesn't think that
3190 the beginning of the switch is unreachable. */
3191 if (!cases->root)
3192 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3193 return error_mark_node;
3196 if ((low_value && TREE_TYPE (low_value)
3197 && POINTER_TYPE_P (TREE_TYPE (low_value)))
3198 || (high_value && TREE_TYPE (high_value)
3199 && POINTER_TYPE_P (TREE_TYPE (high_value))))
3200 error ("pointers are not permitted as case values");
3202 /* Case ranges are a GNU extension. */
3203 if (high_value && pedantic)
3205 if (c_language == clk_cplusplus)
3206 pedwarn ("ISO C++ forbids range expressions in switch statements");
3207 else
3208 pedwarn ("ISO C forbids range expressions in switch statements");
3211 type = TREE_TYPE (cond);
3212 if (low_value)
3214 low_value = check_case_value (low_value);
3215 low_value = convert_and_check (type, low_value);
3217 if (high_value)
3219 high_value = check_case_value (high_value);
3220 high_value = convert_and_check (type, high_value);
3223 /* If an error has occurred, bail out now. */
3224 if (low_value == error_mark_node || high_value == error_mark_node)
3226 if (!cases->root)
3227 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3228 return error_mark_node;
3231 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
3232 really a case range, even though it was written that way. Remove
3233 the HIGH_VALUE to simplify later processing. */
3234 if (tree_int_cst_equal (low_value, high_value))
3235 high_value = NULL_TREE;
3236 if (low_value && high_value
3237 && !tree_int_cst_lt (low_value, high_value))
3238 warning ("empty range specified");
3240 /* Look up the LOW_VALUE in the table of case labels we already
3241 have. */
3242 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
3243 /* If there was not an exact match, check for overlapping ranges.
3244 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
3245 that's a `default' label and the only overlap is an exact match. */
3246 if (!node && (low_value || high_value))
3248 splay_tree_node low_bound;
3249 splay_tree_node high_bound;
3251 /* Even though there wasn't an exact match, there might be an
3252 overlap between this case range and another case range.
3253 Since we've (inductively) not allowed any overlapping case
3254 ranges, we simply need to find the greatest low case label
3255 that is smaller that LOW_VALUE, and the smallest low case
3256 label that is greater than LOW_VALUE. If there is an overlap
3257 it will occur in one of these two ranges. */
3258 low_bound = splay_tree_predecessor (cases,
3259 (splay_tree_key) low_value);
3260 high_bound = splay_tree_successor (cases,
3261 (splay_tree_key) low_value);
3263 /* Check to see if the LOW_BOUND overlaps. It is smaller than
3264 the LOW_VALUE, so there is no need to check unless the
3265 LOW_BOUND is in fact itself a case range. */
3266 if (low_bound
3267 && CASE_HIGH ((tree) low_bound->value)
3268 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
3269 low_value) >= 0)
3270 node = low_bound;
3271 /* Check to see if the HIGH_BOUND overlaps. The low end of that
3272 range is bigger than the low end of the current range, so we
3273 are only interested if the current range is a real range, and
3274 not an ordinary case label. */
3275 else if (high_bound
3276 && high_value
3277 && (tree_int_cst_compare ((tree) high_bound->key,
3278 high_value)
3279 <= 0))
3280 node = high_bound;
3282 /* If there was an overlap, issue an error. */
3283 if (node)
3285 tree duplicate = CASE_LABEL_DECL ((tree) node->value);
3287 if (high_value)
3289 error ("duplicate (or overlapping) case value");
3290 error_with_decl (duplicate,
3291 "this is the first entry overlapping that value");
3293 else if (low_value)
3295 error ("duplicate case value") ;
3296 error_with_decl (duplicate, "previously used here");
3298 else
3300 error ("multiple default labels in one switch");
3301 error_with_decl (duplicate, "this is the first default label");
3303 if (!cases->root)
3304 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3307 /* Add a CASE_LABEL to the statement-tree. */
3308 case_label = add_stmt (build_case_label (low_value, high_value, label));
3309 /* Register this case label in the splay tree. */
3310 splay_tree_insert (cases,
3311 (splay_tree_key) low_value,
3312 (splay_tree_value) case_label);
3314 return case_label;
3317 /* Finish an expression taking the address of LABEL. Returns an
3318 expression for the address. */
3320 tree
3321 finish_label_address_expr (label)
3322 tree label;
3324 tree result;
3326 if (pedantic)
3328 if (c_language == clk_cplusplus)
3329 pedwarn ("ISO C++ forbids taking the address of a label");
3330 else
3331 pedwarn ("ISO C forbids taking the address of a label");
3334 label = lookup_label (label);
3335 if (label == NULL_TREE)
3336 result = null_pointer_node;
3337 else
3339 TREE_USED (label) = 1;
3340 result = build1 (ADDR_EXPR, ptr_type_node, label);
3341 TREE_CONSTANT (result) = 1;
3342 /* The current function in not necessarily uninlinable.
3343 Computed gotos are incompatible with inlining, but the value
3344 here could be used only in a diagnostic, for example. */
3347 return result;
3350 /* Mark P (a stmt_tree) for GC. The use of a `void *' for the
3351 parameter allows this function to be used as a GC-marking
3352 function. */
3354 void
3355 mark_stmt_tree (p)
3356 void *p;
3358 stmt_tree st = (stmt_tree) p;
3360 ggc_mark_tree (st->x_last_stmt);
3361 ggc_mark_tree (st->x_last_expr_type);
3364 /* Mark LD for GC. */
3366 void
3367 c_mark_lang_decl (c)
3368 struct c_lang_decl *c ATTRIBUTE_UNUSED;
3372 /* Mark F for GC. */
3374 void
3375 mark_c_language_function (f)
3376 struct language_function *f;
3378 if (!f)
3379 return;
3381 mark_stmt_tree (&f->x_stmt_tree);
3382 ggc_mark_tree (f->x_scope_stmt_stack);
3385 /* Hook used by expand_expr to expand language-specific tree codes. */
3388 c_expand_expr (exp, target, tmode, modifier)
3389 tree exp;
3390 rtx target;
3391 enum machine_mode tmode;
3392 enum expand_modifier modifier;
3394 switch (TREE_CODE (exp))
3396 case STMT_EXPR:
3398 tree rtl_expr;
3399 rtx result;
3401 /* Since expand_expr_stmt calls free_temp_slots after every
3402 expression statement, we must call push_temp_slots here.
3403 Otherwise, any temporaries in use now would be considered
3404 out-of-scope after the first EXPR_STMT from within the
3405 STMT_EXPR. */
3406 push_temp_slots ();
3407 rtl_expr = expand_start_stmt_expr ();
3408 expand_stmt (STMT_EXPR_STMT (exp));
3409 expand_end_stmt_expr (rtl_expr);
3410 result = expand_expr (rtl_expr, target, tmode, modifier);
3411 pop_temp_slots ();
3412 return result;
3414 break;
3416 case CALL_EXPR:
3418 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
3419 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3420 == FUNCTION_DECL)
3421 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3422 && (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3423 == BUILT_IN_FRONTEND))
3424 return c_expand_builtin (exp, target, tmode, modifier);
3425 else
3426 abort();
3428 break;
3430 default:
3431 abort ();
3434 abort ();
3435 return NULL;
3438 /* Hook used by safe_from_p to handle language-specific tree codes. */
3441 c_safe_from_p (target, exp)
3442 rtx target;
3443 tree exp;
3445 /* We can see statements here when processing the body of a
3446 statement-expression. For a declaration statement declaring a
3447 variable, look at the variable's initializer. */
3448 if (TREE_CODE (exp) == DECL_STMT)
3450 tree decl = DECL_STMT_DECL (exp);
3452 if (TREE_CODE (decl) == VAR_DECL
3453 && DECL_INITIAL (decl)
3454 && !safe_from_p (target, DECL_INITIAL (decl), /*top_p=*/0))
3455 return 0;
3458 /* For any statement, we must follow the statement-chain. */
3459 if (statement_code_p (TREE_CODE (exp)) && TREE_CHAIN (exp))
3460 return safe_from_p (target, TREE_CHAIN (exp), /*top_p=*/0);
3462 /* Assume everything else is safe. */
3463 return 1;
3466 /* Hook used by unsafe_for_reeval to handle language-specific tree codes. */
3469 c_unsafe_for_reeval (exp)
3470 tree exp;
3472 /* Statement expressions may not be reevaluated. */
3473 if (TREE_CODE (exp) == STMT_EXPR)
3474 return 2;
3476 /* Walk all other expressions. */
3477 return -1;
3480 /* Tree code classes. */
3482 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
3484 static const char c_tree_code_type[] = {
3485 'x',
3486 #include "c-common.def"
3488 #undef DEFTREECODE
3490 /* Table indexed by tree code giving number of expression
3491 operands beyond the fixed part of the node structure.
3492 Not used for types or decls. */
3494 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
3496 static const int c_tree_code_length[] = {
3498 #include "c-common.def"
3500 #undef DEFTREECODE
3502 /* Names of tree components.
3503 Used for printing out the tree and error messages. */
3504 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
3506 static const char *const c_tree_code_name[] = {
3507 "@@dummy",
3508 #include "c-common.def"
3510 #undef DEFTREECODE
3512 /* Adds the tree codes specific to the C front end to the list of all
3513 tree codes. */
3515 void
3516 add_c_tree_codes ()
3518 memcpy (tree_code_type + (int) LAST_AND_UNUSED_TREE_CODE,
3519 c_tree_code_type,
3520 (int)LAST_C_TREE_CODE - (int)LAST_AND_UNUSED_TREE_CODE);
3521 memcpy (tree_code_length + (int) LAST_AND_UNUSED_TREE_CODE,
3522 c_tree_code_length,
3523 (LAST_C_TREE_CODE - (int)LAST_AND_UNUSED_TREE_CODE) * sizeof (int));
3524 memcpy (tree_code_name + (int) LAST_AND_UNUSED_TREE_CODE,
3525 c_tree_code_name,
3526 (LAST_C_TREE_CODE - (int)LAST_AND_UNUSED_TREE_CODE) * sizeof (char *));
3527 lang_unsafe_for_reeval = c_unsafe_for_reeval;
3530 #define CALLED_AS_BUILT_IN(NODE) \
3531 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
3533 static rtx
3534 c_expand_builtin (exp, target, tmode, modifier)
3535 tree exp;
3536 rtx target;
3537 enum machine_mode tmode;
3538 enum expand_modifier modifier;
3540 tree type = TREE_TYPE (exp);
3541 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
3542 tree arglist = TREE_OPERAND (exp, 1);
3543 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
3544 enum tree_code code = TREE_CODE (exp);
3545 const int ignore = (target == const0_rtx
3546 || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
3547 || code == CONVERT_EXPR || code == REFERENCE_EXPR
3548 || code == COND_EXPR)
3549 && TREE_CODE (type) == VOID_TYPE));
3551 if (! optimize && ! CALLED_AS_BUILT_IN (fndecl))
3552 return expand_call (exp, target, ignore);
3554 switch (fcode)
3556 case BUILT_IN_PRINTF:
3557 target = c_expand_builtin_printf (arglist, target, tmode,
3558 modifier, ignore);
3559 if (target)
3560 return target;
3561 break;
3563 case BUILT_IN_FPRINTF:
3564 target = c_expand_builtin_fprintf (arglist, target, tmode,
3565 modifier, ignore);
3566 if (target)
3567 return target;
3568 break;
3570 default: /* just do library call, if unknown builtin */
3571 error ("built-in function `%s' not currently supported",
3572 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
3575 /* The switch statement above can drop through to cause the function
3576 to be called normally. */
3577 return expand_call (exp, target, ignore);
3580 /* Check an arglist to *printf for problems. The arglist should start
3581 at the format specifier, with the remaining arguments immediately
3582 following it. */
3583 static int
3584 is_valid_printf_arglist (arglist)
3585 tree arglist;
3587 /* Save this value so we can restore it later. */
3588 const int SAVE_pedantic = pedantic;
3589 int diagnostic_occurred = 0;
3590 tree attrs;
3592 /* Set this to a known value so the user setting won't affect code
3593 generation. */
3594 pedantic = 1;
3595 /* Check to make sure there are no format specifier errors. */
3596 attrs = tree_cons (get_identifier ("format"),
3597 tree_cons (NULL_TREE,
3598 get_identifier ("printf"),
3599 tree_cons (NULL_TREE,
3600 integer_one_node,
3601 tree_cons (NULL_TREE,
3602 build_int_2 (2, 0),
3603 NULL_TREE))),
3604 NULL_TREE);
3605 check_function_format (&diagnostic_occurred, attrs, arglist);
3607 /* Restore the value of `pedantic'. */
3608 pedantic = SAVE_pedantic;
3610 /* If calling `check_function_format_ptr' produces a warning, we
3611 return false, otherwise we return true. */
3612 return ! diagnostic_occurred;
3615 /* If the arguments passed to printf are suitable for optimizations,
3616 we attempt to transform the call. */
3617 static rtx
3618 c_expand_builtin_printf (arglist, target, tmode, modifier, ignore)
3619 tree arglist;
3620 rtx target;
3621 enum machine_mode tmode;
3622 enum expand_modifier modifier;
3623 int ignore;
3625 tree fn_putchar = built_in_decls[BUILT_IN_PUTCHAR],
3626 fn_puts = built_in_decls[BUILT_IN_PUTS];
3627 tree fn, format_arg, stripped_string;
3629 /* If the return value is used, or the replacement _DECL isn't
3630 initialized, don't do the transformation. */
3631 if (!ignore || !fn_putchar || !fn_puts)
3632 return 0;
3634 /* Verify the required arguments in the original call. */
3635 if (arglist == 0
3636 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE))
3637 return 0;
3639 /* Check the specifier vs. the parameters. */
3640 if (!is_valid_printf_arglist (arglist))
3641 return 0;
3643 format_arg = TREE_VALUE (arglist);
3644 stripped_string = format_arg;
3645 STRIP_NOPS (stripped_string);
3646 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
3647 stripped_string = TREE_OPERAND (stripped_string, 0);
3649 /* If the format specifier isn't a STRING_CST, punt. */
3650 if (TREE_CODE (stripped_string) != STRING_CST)
3651 return 0;
3653 /* OK! We can attempt optimization. */
3655 /* If the format specifier was "%s\n", call __builtin_puts(arg2). */
3656 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s\n") == 0)
3658 arglist = TREE_CHAIN (arglist);
3659 fn = fn_puts;
3661 /* If the format specifier was "%c", call __builtin_putchar (arg2). */
3662 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
3664 arglist = TREE_CHAIN (arglist);
3665 fn = fn_putchar;
3667 else
3669 /* We can't handle anything else with % args or %% ... yet. */
3670 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
3671 return 0;
3673 /* If the resulting constant string has a length of 1, call
3674 putchar. Note, TREE_STRING_LENGTH includes the terminating
3675 NULL in its count. */
3676 if (TREE_STRING_LENGTH (stripped_string) == 2)
3678 /* Given printf("c"), (where c is any one character,)
3679 convert "c"[0] to an int and pass that to the replacement
3680 function. */
3681 arglist = build_int_2 (TREE_STRING_POINTER (stripped_string)[0], 0);
3682 arglist = build_tree_list (NULL_TREE, arglist);
3684 fn = fn_putchar;
3686 /* If the resulting constant was "string\n", call
3687 __builtin_puts("string"). Ensure "string" has at least one
3688 character besides the trailing \n. Note, TREE_STRING_LENGTH
3689 includes the terminating NULL in its count. */
3690 else if (TREE_STRING_LENGTH (stripped_string) > 2
3691 && TREE_STRING_POINTER (stripped_string)
3692 [TREE_STRING_LENGTH (stripped_string) - 2] == '\n')
3694 /* Create a NULL-terminated string that's one char shorter
3695 than the original, stripping off the trailing '\n'. */
3696 const int newlen = TREE_STRING_LENGTH (stripped_string) - 1;
3697 char *newstr = (char *) alloca (newlen);
3698 memcpy (newstr, TREE_STRING_POINTER (stripped_string), newlen - 1);
3699 newstr[newlen - 1] = 0;
3701 arglist = combine_strings (build_string (newlen, newstr));
3702 arglist = build_tree_list (NULL_TREE, arglist);
3703 fn = fn_puts;
3705 else
3706 /* We'd like to arrange to call fputs(string) here, but we
3707 need stdout and don't have a way to get it ... yet. */
3708 return 0;
3711 return expand_expr (build_function_call (fn, arglist),
3712 (ignore ? const0_rtx : target),
3713 tmode, modifier);
3716 /* If the arguments passed to fprintf are suitable for optimizations,
3717 we attempt to transform the call. */
3718 static rtx
3719 c_expand_builtin_fprintf (arglist, target, tmode, modifier, ignore)
3720 tree arglist;
3721 rtx target;
3722 enum machine_mode tmode;
3723 enum expand_modifier modifier;
3724 int ignore;
3726 tree fn_fputc = built_in_decls[BUILT_IN_FPUTC],
3727 fn_fputs = built_in_decls[BUILT_IN_FPUTS];
3728 tree fn, format_arg, stripped_string;
3730 /* If the return value is used, or the replacement _DECL isn't
3731 initialized, don't do the transformation. */
3732 if (!ignore || !fn_fputc || !fn_fputs)
3733 return 0;
3735 /* Verify the required arguments in the original call. */
3736 if (arglist == 0
3737 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE)
3738 || (TREE_CHAIN (arglist) == 0)
3739 || (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (arglist)))) !=
3740 POINTER_TYPE))
3741 return 0;
3743 /* Check the specifier vs. the parameters. */
3744 if (!is_valid_printf_arglist (TREE_CHAIN (arglist)))
3745 return 0;
3747 format_arg = TREE_VALUE (TREE_CHAIN (arglist));
3748 stripped_string = format_arg;
3749 STRIP_NOPS (stripped_string);
3750 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
3751 stripped_string = TREE_OPERAND (stripped_string, 0);
3753 /* If the format specifier isn't a STRING_CST, punt. */
3754 if (TREE_CODE (stripped_string) != STRING_CST)
3755 return 0;
3757 /* OK! We can attempt optimization. */
3759 /* If the format specifier was "%s", call __builtin_fputs(arg3, arg1). */
3760 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s") == 0)
3762 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
3763 arglist = tree_cons (NULL_TREE,
3764 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
3765 newarglist);
3766 fn = fn_fputs;
3768 /* If the format specifier was "%c", call __builtin_fputc (arg3, arg1). */
3769 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
3771 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
3772 arglist = tree_cons (NULL_TREE,
3773 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
3774 newarglist);
3775 fn = fn_fputc;
3777 else
3779 /* We can't handle anything else with % args or %% ... yet. */
3780 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
3781 return 0;
3783 /* When "string" doesn't contain %, replace all cases of
3784 fprintf(stream,string) with fputs(string,stream). The fputs
3785 builtin will take take of special cases like length==1. */
3786 arglist = tree_cons (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)),
3787 build_tree_list (NULL_TREE, TREE_VALUE (arglist)));
3788 fn = fn_fputs;
3791 return expand_expr (build_function_call (fn, arglist),
3792 (ignore ? const0_rtx : target),
3793 tmode, modifier);
3797 /* Given a boolean expression ARG, return a tree representing an increment
3798 or decrement (as indicated by CODE) of ARG. The front end must check for
3799 invalid cases (e.g., decrement in C++). */
3800 tree
3801 boolean_increment (code, arg)
3802 enum tree_code code;
3803 tree arg;
3805 tree val;
3806 tree true_res = (c_language == clk_cplusplus
3807 ? boolean_true_node
3808 : c_bool_true_node);
3809 arg = stabilize_reference (arg);
3810 switch (code)
3812 case PREINCREMENT_EXPR:
3813 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
3814 break;
3815 case POSTINCREMENT_EXPR:
3816 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
3817 arg = save_expr (arg);
3818 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
3819 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
3820 break;
3821 case PREDECREMENT_EXPR:
3822 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
3823 break;
3824 case POSTDECREMENT_EXPR:
3825 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
3826 arg = save_expr (arg);
3827 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
3828 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
3829 break;
3830 default:
3831 abort ();
3833 TREE_SIDE_EFFECTS (val) = 1;
3834 return val;
3837 /* Handle C and C++ default attributes. */
3839 enum built_in_attribute
3841 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
3842 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
3843 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
3844 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
3845 #define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No entry needed in enum. */
3846 #include "builtin-attrs.def"
3847 #undef DEF_ATTR_NULL_TREE
3848 #undef DEF_ATTR_INT
3849 #undef DEF_ATTR_IDENT
3850 #undef DEF_ATTR_TREE_LIST
3851 #undef DEF_FN_ATTR
3852 ATTR_LAST
3855 static tree built_in_attributes[(int) ATTR_LAST];
3857 static bool c_attrs_initialized = false;
3859 static void c_init_attributes PARAMS ((void));
3861 /* Do the parts of lang_init common to C and C++. */
3862 const char *
3863 c_common_lang_init (filename)
3864 const char *filename;
3866 filename = init_c_lex (filename);
3868 init_pragma ();
3870 /* If still "unspecified", make it match -fbounded-pointers. */
3871 if (flag_bounds_check < 0)
3872 flag_bounds_check = flag_bounded_pointers;
3874 /* Special format checking options don't work without -Wformat; warn if
3875 they are used. */
3876 if (warn_format_y2k && !warn_format)
3877 warning ("-Wformat-y2k ignored without -Wformat");
3878 if (warn_format_extra_args && !warn_format)
3879 warning ("-Wformat-extra-args ignored without -Wformat");
3880 if (warn_format_nonliteral && !warn_format)
3881 warning ("-Wformat-nonliteral ignored without -Wformat");
3882 if (warn_format_security && !warn_format)
3883 warning ("-Wformat-security ignored without -Wformat");
3884 if (warn_missing_format_attribute && !warn_format)
3885 warning ("-Wmissing-format-attribute ignored without -Wformat");
3887 if (!c_attrs_initialized)
3888 c_init_attributes ();
3890 return filename;
3893 /* Common finish hook for the C, ObjC and C++ front ends. */
3894 void
3895 c_common_finish ()
3897 cpp_finish (parse_in);
3899 /* For performance, avoid tearing down cpplib's internal structures.
3900 Call cpp_errors () instead of cpp_destroy (). */
3901 errorcount += cpp_errors (parse_in);
3904 static void
3905 c_init_attributes ()
3907 /* Fill in the built_in_attributes array. */
3908 #define DEF_ATTR_NULL_TREE(ENUM) \
3909 built_in_attributes[(int) ENUM] = NULL_TREE;
3910 #define DEF_ATTR_INT(ENUM, VALUE) \
3911 built_in_attributes[(int) ENUM] = build_int_2 (VALUE, VALUE < 0 ? -1 : 0);
3912 #define DEF_ATTR_IDENT(ENUM, STRING) \
3913 built_in_attributes[(int) ENUM] = get_identifier (STRING);
3914 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
3915 built_in_attributes[(int) ENUM] \
3916 = tree_cons (built_in_attributes[(int) PURPOSE], \
3917 built_in_attributes[(int) VALUE], \
3918 built_in_attributes[(int) CHAIN]);
3919 #define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No initialization needed. */
3920 #include "builtin-attrs.def"
3921 #undef DEF_ATTR_NULL_TREE
3922 #undef DEF_ATTR_INT
3923 #undef DEF_ATTR_IDENT
3924 #undef DEF_ATTR_TREE_LIST
3925 #undef DEF_FN_ATTR
3926 ggc_add_tree_root (built_in_attributes, (int) ATTR_LAST);
3927 c_attrs_initialized = true;
3930 /* Depending on the name of DECL, apply default attributes to it. */
3932 void
3933 c_common_insert_default_attributes (decl)
3934 tree decl;
3936 tree name = DECL_NAME (decl);
3938 if (!c_attrs_initialized)
3939 c_init_attributes ();
3941 #define DEF_ATTR_NULL_TREE(ENUM) /* Nothing needed after initialization. */
3942 #define DEF_ATTR_INT(ENUM, VALUE)
3943 #define DEF_ATTR_IDENT(ENUM, STRING)
3944 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN)
3945 #define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) \
3946 if ((PREDICATE) && name == built_in_attributes[(int) NAME]) \
3947 decl_attributes (&decl, built_in_attributes[(int) ATTRS], \
3948 ATTR_FLAG_BUILT_IN);
3949 #include "builtin-attrs.def"
3950 #undef DEF_ATTR_NULL_TREE
3951 #undef DEF_ATTR_INT
3952 #undef DEF_ATTR_IDENT
3953 #undef DEF_ATTR_TREE_LIST
3954 #undef DEF_FN_ATTR