]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-common.c
2002-01-04 Paolo Carlini <pcarlini@unitus.it>
[thirdparty/gcc.git] / gcc / c-common.c
CommitLineData
b0fc3e72 1/* Subroutines shared by all languages that are variants of C.
d513ec2f 2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
b0fc3e72 4
f12b58b3 5This file is part of GCC.
b0fc3e72 6
f12b58b3 7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
b0fc3e72 11
f12b58b3 12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
b0fc3e72 16
17You should have received a copy of the GNU General Public License
f12b58b3 18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
b0fc3e72 21
22#include "config.h"
405711de 23#include "system.h"
b0fc3e72 24#include "tree.h"
b0fc3e72 25#include "flags.h"
9cdfa0b0 26#include "toplev.h"
cd03a192 27#include "output.h"
a3fa7feb 28#include "c-pragma.h"
a5b1863e 29#include "rtl.h"
dc12af01 30#include "ggc.h"
74647769 31#include "expr.h"
e41f0d80 32#include "c-common.h"
435fb09b 33#include "tree-inline.h"
cdc9fa3e 34#include "diagnostic.h"
d8c9779c 35#include "tm_p.h"
4e91a871 36#include "obstack.h"
9ceb1c29 37#include "c-lex.h"
a654e028 38#include "cpplib.h"
8ee295a7 39#include "target.h"
41a9aa85 40cpp_reader *parse_in; /* Declared in c-lex.h. */
a654e028 41
be37a9cb 42#undef WCHAR_TYPE_SIZE
43#define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node)
c83bcd28 44
174fcc61 45/* We let tm.h override the types used here, to handle trivial differences
46 such as the choice of unsigned int or long unsigned int for size_t.
47 When machines start needing nontrivial differences in the size type,
48 it would be best to do something here to figure out automatically
49 from other information what type to use. */
50
51#ifndef SIZE_TYPE
52#define SIZE_TYPE "long unsigned int"
53#endif
54
55#ifndef WCHAR_TYPE
56#define WCHAR_TYPE "int"
57#endif
58
194c4d9f 59#ifndef PTRDIFF_TYPE
60#define PTRDIFF_TYPE "long int"
61#endif
62
6bf5ed8d 63#ifndef WINT_TYPE
64#define WINT_TYPE "unsigned int"
65#endif
66
67#ifndef INTMAX_TYPE
68#define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
69 ? "int" \
70 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
71 ? "long int" \
72 : "long long int"))
73#endif
74
75#ifndef UINTMAX_TYPE
76#define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
77 ? "unsigned int" \
78 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
79 ? "long unsigned int" \
80 : "long long unsigned int"))
81#endif
82
435fb09b 83/* The variant of the C language being processed. */
84
85enum c_language_kind c_language;
86
72040e7e 87/* The following symbols are subsumed in the c_global_trees array, and
44e9fa65 88 listed here individually for documentation purposes.
72040e7e 89
90 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
91
92 tree short_integer_type_node;
93 tree long_integer_type_node;
94 tree long_long_integer_type_node;
95
96 tree short_unsigned_type_node;
97 tree long_unsigned_type_node;
98 tree long_long_unsigned_type_node;
99
100 tree boolean_type_node;
101 tree boolean_false_node;
102 tree boolean_true_node;
103
104 tree ptrdiff_type_node;
105
106 tree unsigned_char_type_node;
107 tree signed_char_type_node;
108 tree wchar_type_node;
109 tree signed_wchar_type_node;
110 tree unsigned_wchar_type_node;
111
112 tree float_type_node;
113 tree double_type_node;
114 tree long_double_type_node;
115
116 tree complex_integer_type_node;
117 tree complex_float_type_node;
118 tree complex_double_type_node;
119 tree complex_long_double_type_node;
120
121 tree intQI_type_node;
122 tree intHI_type_node;
123 tree intSI_type_node;
124 tree intDI_type_node;
125 tree intTI_type_node;
126
127 tree unsigned_intQI_type_node;
128 tree unsigned_intHI_type_node;
129 tree unsigned_intSI_type_node;
130 tree unsigned_intDI_type_node;
131 tree unsigned_intTI_type_node;
132
133 tree widest_integer_literal_type_node;
134 tree widest_unsigned_literal_type_node;
135
136 Nodes for types `void *' and `const void *'.
137
138 tree ptr_type_node, const_ptr_type_node;
139
140 Nodes for types `char *' and `const char *'.
141
142 tree string_type_node, const_string_type_node;
143
144 Type `char[SOMENUMBER]'.
145 Used when an array of char is needed and the size is irrelevant.
146
147 tree char_array_type_node;
148
149 Type `int[SOMENUMBER]' or something like it.
150 Used when an array of int needed and the size is irrelevant.
151
152 tree int_array_type_node;
153
154 Type `wchar_t[SOMENUMBER]' or something like it.
155 Used when a wide string literal is created.
156
157 tree wchar_array_type_node;
158
159 Type `int ()' -- used for implicit declaration of functions.
160
161 tree default_function_type;
162
72040e7e 163 A VOID_TYPE node, packaged in a TREE_LIST.
164
165 tree void_list_node;
166
734c98be 167 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
65b7f83f 168 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
169 VAR_DECLS, but C++ does.)
71d9fc9b 170
65b7f83f 171 tree function_name_decl_node;
734c98be 172 tree pretty_function_name_decl_node;
65b7f83f 173 tree c99_function_name_decl_node;
174
175 Stack of nested function name VAR_DECLs.
176
177 tree saved_function_name_decls;
71d9fc9b 178
72040e7e 179*/
180
181tree c_global_trees[CTI_MAX];
ceee5ef4 182
0270ae90 183/* Nonzero means don't recognize the non-ANSI builtin functions. */
184
185int flag_no_builtin;
186
187/* Nonzero means don't recognize the non-ANSI builtin functions.
188 -ansi sets this. */
189
190int flag_no_nonansi_builtin;
191
174fcc61 192/* Nonzero means give `double' the same size as `float'. */
193
194int flag_short_double;
195
196/* Nonzero means give `wchar_t' the same size as `short'. */
197
198int flag_short_wchar;
199
481c6ce6 200/* Nonzero means warn about possible violations of sequence point rules. */
201
202int warn_sequence_point;
203
bd08a4e6 204/* Nonzero means to warn about compile-time division by zero. */
205int warn_div_by_zero = 1;
206
988fc1d1 207/* The elements of `ridpointers' are identifier nodes for the reserved
208 type names and storage classes. It is indexed by a RID_... value. */
209tree *ridpointers;
210
65b7f83f 211tree (*make_fname_decl) PARAMS ((tree, int));
9e5a737d 212
a08e60ae 213/* If non-NULL, the address of a language-specific function that
214 returns 1 for language-specific statement codes. */
215int (*lang_statement_code_p) PARAMS ((enum tree_code));
216
e41f0d80 217/* If non-NULL, the address of a language-specific function that takes
218 any action required right before expand_function_end is called. */
219void (*lang_expand_function_end) PARAMS ((void));
220
e78703c1 221/* Nonzero means the expression being parsed will never be evaluated.
222 This is a count, since unevaluated expressions can nest. */
223int skip_evaluation;
224
2c0e001b 225/* Information about how a function name is generated. */
65b7f83f 226struct fname_var_t
227{
e99c3a1d 228 tree *const decl; /* pointer to the VAR_DECL. */
229 const unsigned rid; /* RID number for the identifier. */
230 const int pretty; /* How pretty is it? */
65b7f83f 231};
232
2c0e001b 233/* The three ways of getting then name of the current function. */
65b7f83f 234
235const struct fname_var_t fname_vars[] =
236{
2c0e001b 237 /* C99 compliant __func__, must be first. */
65b7f83f 238 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
2c0e001b 239 /* GCC __FUNCTION__ compliant. */
65b7f83f 240 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
2c0e001b 241 /* GCC __PRETTY_FUNCTION__ compliant. */
65b7f83f 242 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
243 {NULL, 0, 0},
244};
245
7f728835 246static int constant_fits_type_p PARAMS ((tree, tree));
be43ff5a 247
9fc84d48 248/* Keep a stack of if statements. We record the number of compound
249 statements seen up to the if keyword, as well as the line number
250 and file of the if. If a potentially ambiguous else is seen, that
251 fact is recorded; the warning is issued when we can be sure that
252 the enclosing if statement does not have an else branch. */
253typedef struct
254{
255 int compstmt_count;
256 int line;
3eee82c5 257 const char *file;
9fc84d48 258 int needs_warning;
e41f0d80 259 tree if_stmt;
9fc84d48 260} if_elt;
261
262static if_elt *if_stack;
31f820d2 263
264/* Amount of space in the if statement stack. */
265static int if_stack_space = 0;
266
267/* Stack pointer. */
268static int if_stack_pointer = 0;
269
e41f0d80 270/* Record the start of an if-then, and record the start of it
9fc84d48 271 for ambiguous else detection. */
272
31f820d2 273void
e41f0d80 274c_expand_start_cond (cond, compstmt_count)
31f820d2 275 tree cond;
31f820d2 276 int compstmt_count;
277{
e41f0d80 278 tree if_stmt;
279
31f820d2 280 /* Make sure there is enough space on the stack. */
281 if (if_stack_space == 0)
282 {
283 if_stack_space = 10;
7cc7e163 284 if_stack = (if_elt *) xmalloc (10 * sizeof (if_elt));
31f820d2 285 }
286 else if (if_stack_space == if_stack_pointer)
287 {
288 if_stack_space += 10;
7cc7e163 289 if_stack = (if_elt *) xrealloc (if_stack, if_stack_space * sizeof (if_elt));
31f820d2 290 }
9fc84d48 291
e41f0d80 292 if_stmt = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
293 IF_COND (if_stmt) = cond;
294 add_stmt (if_stmt);
295
31f820d2 296 /* Record this if statement. */
9fc84d48 297 if_stack[if_stack_pointer].compstmt_count = compstmt_count;
298 if_stack[if_stack_pointer].file = input_filename;
299 if_stack[if_stack_pointer].line = lineno;
300 if_stack[if_stack_pointer].needs_warning = 0;
e41f0d80 301 if_stack[if_stack_pointer].if_stmt = if_stmt;
9fc84d48 302 if_stack_pointer++;
e41f0d80 303}
31f820d2 304
e41f0d80 305/* Called after the then-clause for an if-statement is processed. */
306
307void
308c_finish_then ()
309{
310 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
311 RECHAIN_STMTS (if_stmt, THEN_CLAUSE (if_stmt));
31f820d2 312}
313
e41f0d80 314/* Record the end of an if-then. Optionally warn if a nested
9fc84d48 315 if statement had an ambiguous else clause. */
316
31f820d2 317void
318c_expand_end_cond ()
319{
320 if_stack_pointer--;
9fc84d48 321 if (if_stack[if_stack_pointer].needs_warning)
322 warning_with_file_and_line (if_stack[if_stack_pointer].file,
323 if_stack[if_stack_pointer].line,
324 "suggest explicit braces to avoid ambiguous `else'");
e41f0d80 325 last_expr_type = NULL_TREE;
31f820d2 326}
327
e41f0d80 328/* Called between the then-clause and the else-clause
9fc84d48 329 of an if-then-else. */
330
31f820d2 331void
332c_expand_start_else ()
333{
9fc84d48 334 /* An ambiguous else warning must be generated for the enclosing if
335 statement, unless we see an else branch for that one, too. */
31f820d2 336 if (warn_parentheses
337 && if_stack_pointer > 1
9fc84d48 338 && (if_stack[if_stack_pointer - 1].compstmt_count
339 == if_stack[if_stack_pointer - 2].compstmt_count))
340 if_stack[if_stack_pointer - 2].needs_warning = 1;
341
342 /* Even if a nested if statement had an else branch, it can't be
343 ambiguous if this one also has an else. So don't warn in that
344 case. Also don't warn for any if statements nested in this else. */
345 if_stack[if_stack_pointer - 1].needs_warning = 0;
346 if_stack[if_stack_pointer - 1].compstmt_count--;
e41f0d80 347}
348
349/* Called after the else-clause for an if-statement is processed. */
31f820d2 350
e41f0d80 351void
352c_finish_else ()
353{
354 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
355 RECHAIN_STMTS (if_stmt, ELSE_CLAUSE (if_stmt));
31f820d2 356}
357
2c0e001b 358/* Push current bindings for the function name VAR_DECLS. */
f4e3c278 359
360void
65b7f83f 361start_fname_decls ()
f4e3c278 362{
65b7f83f 363 unsigned ix;
364 tree saved = NULL_TREE;
365
366 for (ix = 0; fname_vars[ix].decl; ix++)
367 {
368 tree decl = *fname_vars[ix].decl;
f4e3c278 369
65b7f83f 370 if (decl)
371 {
372 saved = tree_cons (decl, build_int_2 (ix, 0), saved);
373 *fname_vars[ix].decl = NULL_TREE;
374 }
375 }
376 if (saved || saved_function_name_decls)
377 /* Normally they'll have been NULL, so only push if we've got a
378 stack, or they are non-NULL. */
379 saved_function_name_decls = tree_cons (saved, NULL_TREE,
380 saved_function_name_decls);
381}
382
383/* Finish up the current bindings, adding them into the
384 current function's statement tree. This is done by wrapping the
385 function's body in a COMPOUND_STMT containing these decls too. This
386 must be done _before_ finish_stmt_tree is called. If there is no
387 current function, we must be at file scope and no statements are
2c0e001b 388 involved. Pop the previous bindings. */
65b7f83f 389
390void
391finish_fname_decls ()
392{
393 unsigned ix;
394 tree body = NULL_TREE;
395 tree stack = saved_function_name_decls;
396
397 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
398 body = chainon (TREE_VALUE (stack), body);
399
400 if (body)
401 {
424da949 402 /* They were called into existence, so add to statement tree. */
65b7f83f 403 body = chainon (body,
404 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)));
405 body = build_stmt (COMPOUND_STMT, body);
406
407 COMPOUND_STMT_NO_SCOPE (body) = 1;
408 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)) = body;
409 }
410
411 for (ix = 0; fname_vars[ix].decl; ix++)
412 *fname_vars[ix].decl = NULL_TREE;
413
414 if (stack)
f4e3c278 415 {
2c0e001b 416 /* We had saved values, restore them. */
65b7f83f 417 tree saved;
418
419 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
420 {
421 tree decl = TREE_PURPOSE (saved);
422 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
423
424 *fname_vars[ix].decl = decl;
425 }
426 stack = TREE_CHAIN (stack);
f4e3c278 427 }
65b7f83f 428 saved_function_name_decls = stack;
429}
430
431/* Return the text name of the current function, suitable prettified
2c0e001b 432 by PRETTY_P. */
65b7f83f 433
434const char *
435fname_as_string (pretty_p)
436 int pretty_p;
437{
438 const char *name = NULL;
439
440 if (pretty_p)
441 name = (current_function_decl
442 ? (*decl_printable_name) (current_function_decl, 2)
443 : "top level");
444 else if (current_function_decl && DECL_NAME (current_function_decl))
445 name = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
f4e3c278 446 else
65b7f83f 447 name = "";
448 return name;
449}
450
451/* Return the text name of the current function, formatted as
452 required by the supplied RID value. */
453
454const char *
455fname_string (rid)
456 unsigned rid;
457{
458 unsigned ix;
459
460 for (ix = 0; fname_vars[ix].decl; ix++)
461 if (fname_vars[ix].rid == rid)
462 break;
463 return fname_as_string (fname_vars[ix].pretty);
464}
465
466/* Return the VAR_DECL for a const char array naming the current
467 function. If the VAR_DECL has not yet been created, create it
468 now. RID indicates how it should be formatted and IDENTIFIER_NODE
469 ID is its name (unfortunately C and C++ hold the RID values of
470 keywords in different places, so we can't derive RID from ID in
dd5b4b36 471 this language independent code. */
65b7f83f 472
473tree
474fname_decl (rid, id)
475 unsigned rid;
476 tree id;
477{
478 unsigned ix;
479 tree decl = NULL_TREE;
480
481 for (ix = 0; fname_vars[ix].decl; ix++)
482 if (fname_vars[ix].rid == rid)
483 break;
484
485 decl = *fname_vars[ix].decl;
486 if (!decl)
f4e3c278 487 {
65b7f83f 488 tree saved_last_tree = last_tree;
489
490 decl = (*make_fname_decl) (id, fname_vars[ix].pretty);
491 if (last_tree != saved_last_tree)
492 {
493 /* We created some statement tree for the decl. This belongs
494 at the start of the function, so remove it now and reinsert
2c0e001b 495 it after the function is complete. */
65b7f83f 496 tree stmts = TREE_CHAIN (saved_last_tree);
497
498 TREE_CHAIN (saved_last_tree) = NULL_TREE;
499 last_tree = saved_last_tree;
500 saved_function_name_decls = tree_cons (decl, stmts,
501 saved_function_name_decls);
502 }
503 *fname_vars[ix].decl = decl;
f4e3c278 504 }
65b7f83f 505 if (!ix && !current_function_decl)
506 pedwarn_with_decl (decl, "`%s' is not defined outside of function scope");
9e5a737d 507
65b7f83f 508 return decl;
f4e3c278 509}
510
b0fc3e72 511/* Given a chain of STRING_CST nodes,
512 concatenate them into one STRING_CST
513 and give it a suitable array-of-chars data type. */
514
515tree
516combine_strings (strings)
517 tree strings;
518{
19cb6b50 519 tree value, t;
520 int length = 1;
b0fc3e72 521 int wide_length = 0;
522 int wide_flag = 0;
523 int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
524 int nchars;
82cfc7f7 525 const int nchars_max = flag_isoc99 ? 4095 : 509;
b0fc3e72 526
527 if (TREE_CHAIN (strings))
528 {
529 /* More than one in the chain, so concatenate. */
19cb6b50 530 char *p, *q;
b0fc3e72 531
532 /* Don't include the \0 at the end of each substring,
533 except for the last one.
534 Count wide strings and ordinary strings separately. */
535 for (t = strings; t; t = TREE_CHAIN (t))
536 {
537 if (TREE_TYPE (t) == wchar_array_type_node)
538 {
539 wide_length += (TREE_STRING_LENGTH (t) - wchar_bytes);
540 wide_flag = 1;
541 }
542 else
a96b8d26 543 {
544 length += (TREE_STRING_LENGTH (t) - 1);
545 if (C_ARTIFICIAL_STRING_P (t) && !in_system_header)
546 warning ("concatenation of string literals with __FUNCTION__ is deprecated. This feature will be removed in future");
547 }
b0fc3e72 548 }
549
550 /* If anything is wide, the non-wides will be converted,
551 which makes them take more space. */
552 if (wide_flag)
553 length = length * wchar_bytes + wide_length;
554
44acf429 555 p = alloca (length);
b0fc3e72 556
557 /* Copy the individual strings into the new combined string.
558 If the combined string is wide, convert the chars to ints
559 for any individual strings that are not wide. */
560
561 q = p;
562 for (t = strings; t; t = TREE_CHAIN (t))
563 {
564 int len = (TREE_STRING_LENGTH (t)
565 - ((TREE_TYPE (t) == wchar_array_type_node)
566 ? wchar_bytes : 1));
567 if ((TREE_TYPE (t) == wchar_array_type_node) == wide_flag)
568 {
d7e36a01 569 memcpy (q, TREE_STRING_POINTER (t), len);
b0fc3e72 570 q += len;
571 }
572 else
573 {
8195e9ca 574 int i, j;
b0fc3e72 575 for (i = 0; i < len; i++)
c9dcb798 576 {
8195e9ca 577 if (BYTES_BIG_ENDIAN)
578 {
579 for (j=0; j<(WCHAR_TYPE_SIZE / BITS_PER_UNIT)-1; j++)
580 *q++ = 0;
581 *q++ = TREE_STRING_POINTER (t)[i];
582 }
c9dcb798 583 else
8195e9ca 584 {
585 *q++ = TREE_STRING_POINTER (t)[i];
586 for (j=0; j<(WCHAR_TYPE_SIZE / BITS_PER_UNIT)-1; j++)
587 *q++ = 0;
588 }
c9dcb798 589 }
b0fc3e72 590 }
591 }
592 if (wide_flag)
593 {
594 int i;
595 for (i = 0; i < wchar_bytes; i++)
596 *q++ = 0;
597 }
598 else
599 *q = 0;
600
44acf429 601 value = build_string (length, p);
b0fc3e72 602 }
603 else
604 {
605 value = strings;
606 length = TREE_STRING_LENGTH (value);
607 if (TREE_TYPE (value) == wchar_array_type_node)
608 wide_flag = 1;
609 }
610
73be5127 611 /* Compute the number of elements, for the array type. */
b0fc3e72 612 nchars = wide_flag ? length / wchar_bytes : length;
613
89e32525 614 if (pedantic && nchars - 1 > nchars_max && c_language == clk_c)
960bf856 615 pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
89e32525 616 nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
82cfc7f7 617
b0fc3e72 618 /* Create the array type for the string constant.
619 -Wwrite-strings says make the string constant an array of const char
3a10ba35 620 so that copying it to a non-const pointer will get a warning.
621 For C++, this is the standard behavior. */
622 if (flag_const_strings
b0fc3e72 623 && (! flag_traditional && ! flag_writable_strings))
624 {
625 tree elements
626 = build_type_variant (wide_flag ? wchar_type_node : char_type_node,
627 1, 0);
628 TREE_TYPE (value)
629 = build_array_type (elements,
630 build_index_type (build_int_2 (nchars - 1, 0)));
631 }
632 else
633 TREE_TYPE (value)
634 = build_array_type (wide_flag ? wchar_type_node : char_type_node,
635 build_index_type (build_int_2 (nchars - 1, 0)));
3a10ba35 636
b8e3b7ad 637 TREE_CONSTANT (value) = 1;
638 TREE_READONLY (value) = ! flag_writable_strings;
b0fc3e72 639 TREE_STATIC (value) = 1;
640 return value;
641}
642\f
edbbe5ca 643static int is_valid_printf_arglist PARAMS ((tree));
f4e55e4d 644static rtx c_expand_builtin PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier));
edbbe5ca 645static rtx c_expand_builtin_printf PARAMS ((tree, rtx, enum machine_mode,
c013a46e 646 enum expand_modifier, int, int));
96df8b77 647static rtx c_expand_builtin_fprintf PARAMS ((tree, rtx, enum machine_mode,
c013a46e 648 enum expand_modifier, int, int));
fce9faf9 649\f
2a1736ed 650/* Print a warning if a constant expression had overflow in folding.
651 Invoke this function on every expression that the language
652 requires to be a constant expression.
653 Note the ANSI C standard says it is erroneous for a
654 constant expression to overflow. */
b2806639 655
656void
657constant_expression_warning (value)
658 tree value;
659{
837e1122 660 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
661 || TREE_CODE (value) == COMPLEX_CST)
662 && TREE_CONSTANT_OVERFLOW (value) && pedantic)
663 pedwarn ("overflow in constant expression");
2a1736ed 664}
665
666/* Print a warning if an expression had overflow in folding.
667 Invoke this function on every expression that
668 (1) appears in the source code, and
669 (2) might be a constant expression that overflowed, and
670 (3) is not already checked by convert_and_check;
671 however, do not invoke this function on operands of explicit casts. */
672
673void
674overflow_warning (value)
675 tree value;
676{
837e1122 677 if ((TREE_CODE (value) == INTEGER_CST
678 || (TREE_CODE (value) == COMPLEX_CST
679 && TREE_CODE (TREE_REALPART (value)) == INTEGER_CST))
680 && TREE_OVERFLOW (value))
2a1736ed 681 {
b04da9b5 682 TREE_OVERFLOW (value) = 0;
e78703c1 683 if (skip_evaluation == 0)
684 warning ("integer overflow in expression");
2a1736ed 685 }
837e1122 686 else if ((TREE_CODE (value) == REAL_CST
687 || (TREE_CODE (value) == COMPLEX_CST
688 && TREE_CODE (TREE_REALPART (value)) == REAL_CST))
689 && TREE_OVERFLOW (value))
690 {
691 TREE_OVERFLOW (value) = 0;
e78703c1 692 if (skip_evaluation == 0)
693 warning ("floating point overflow in expression");
837e1122 694 }
2a1736ed 695}
696
697/* Print a warning if a large constant is truncated to unsigned,
698 or if -Wconversion is used and a constant < 0 is converted to unsigned.
699 Invoke this function on every expression that might be implicitly
700 converted to an unsigned type. */
701
702void
703unsigned_conversion_warning (result, operand)
704 tree result, operand;
705{
706 if (TREE_CODE (operand) == INTEGER_CST
707 && TREE_CODE (TREE_TYPE (result)) == INTEGER_TYPE
708 && TREE_UNSIGNED (TREE_TYPE (result))
e78703c1 709 && skip_evaluation == 0
2a1736ed 710 && !int_fits_type_p (operand, TREE_TYPE (result)))
711 {
712 if (!int_fits_type_p (operand, signed_type (TREE_TYPE (result))))
713 /* This detects cases like converting -129 or 256 to unsigned char. */
454b5afb 714 warning ("large integer implicitly truncated to unsigned type");
2a1736ed 715 else if (warn_conversion)
454b5afb 716 warning ("negative integer implicitly converted to unsigned type");
2a1736ed 717 }
718}
719
7f728835 720/* Nonzero if constant C has a value that is permissible
721 for type TYPE (an INTEGER_TYPE). */
722
723static int
724constant_fits_type_p (c, type)
725 tree c, type;
726{
727 if (TREE_CODE (c) == INTEGER_CST)
728 return int_fits_type_p (c, type);
729
730 c = convert (type, c);
731 return !TREE_OVERFLOW (c);
732}
733
2a1736ed 734/* Convert EXPR to TYPE, warning about conversion problems with constants.
735 Invoke this function on every expression that is converted implicitly,
736 i.e. because of language rules and not because of an explicit cast. */
737
738tree
739convert_and_check (type, expr)
740 tree type, expr;
741{
742 tree t = convert (type, expr);
743 if (TREE_CODE (t) == INTEGER_CST)
744 {
b04da9b5 745 if (TREE_OVERFLOW (t))
2a1736ed 746 {
b04da9b5 747 TREE_OVERFLOW (t) = 0;
748
2c4232f8 749 /* Do not diagnose overflow in a constant expression merely
750 because a conversion overflowed. */
751 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (expr);
752
b04da9b5 753 /* No warning for converting 0x80000000 to int. */
754 if (!(TREE_UNSIGNED (type) < TREE_UNSIGNED (TREE_TYPE (expr))
755 && TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
756 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (expr))))
96730c20 757 /* If EXPR fits in the unsigned version of TYPE,
758 don't warn unless pedantic. */
e78703c1 759 if ((pedantic
760 || TREE_UNSIGNED (type)
7f728835 761 || ! constant_fits_type_p (expr, unsigned_type (type)))
e78703c1 762 && skip_evaluation == 0)
d1f11193 763 warning ("overflow in implicit constant conversion");
2a1736ed 764 }
765 else
766 unsigned_conversion_warning (t, expr);
767 }
768 return t;
b2806639 769}
770\f
4e91a871 771/* A node in a list that describes references to variables (EXPR), which are
772 either read accesses if WRITER is zero, or write accesses, in which case
773 WRITER is the parent of EXPR. */
774struct tlist
775{
776 struct tlist *next;
777 tree expr, writer;
778};
779
780/* Used to implement a cache the results of a call to verify_tree. We only
781 use this for SAVE_EXPRs. */
782struct tlist_cache
783{
784 struct tlist_cache *next;
785 struct tlist *cache_before_sp;
786 struct tlist *cache_after_sp;
787 tree expr;
481c6ce6 788};
789
4e91a871 790/* Obstack to use when allocating tlist structures, and corresponding
791 firstobj. */
792static struct obstack tlist_obstack;
793static char *tlist_firstobj = 0;
794
795/* Keep track of the identifiers we've warned about, so we can avoid duplicate
796 warnings. */
797static struct tlist *warned_ids;
798/* SAVE_EXPRs need special treatment. We process them only once and then
799 cache the results. */
800static struct tlist_cache *save_expr_cache;
801
802static void add_tlist PARAMS ((struct tlist **, struct tlist *, tree, int));
803static void merge_tlist PARAMS ((struct tlist **, struct tlist *, int));
804static void verify_tree PARAMS ((tree, struct tlist **, struct tlist **, tree));
805static int warning_candidate_p PARAMS ((tree));
806static void warn_for_collisions PARAMS ((struct tlist *));
807static void warn_for_collisions_1 PARAMS ((tree, tree, struct tlist *, int));
808static struct tlist *new_tlist PARAMS ((struct tlist *, tree, tree));
481c6ce6 809static void verify_sequence_points PARAMS ((tree));
810
4e91a871 811/* Create a new struct tlist and fill in its fields. */
812static struct tlist *
813new_tlist (next, t, writer)
814 struct tlist *next;
815 tree t;
816 tree writer;
817{
818 struct tlist *l;
819 l = (struct tlist *) obstack_alloc (&tlist_obstack, sizeof *l);
820 l->next = next;
821 l->expr = t;
822 l->writer = writer;
823 return l;
824}
825
826/* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
827 is nonnull, we ignore any node we find which has a writer equal to it. */
828
829static void
830add_tlist (to, add, exclude_writer, copy)
831 struct tlist **to;
832 struct tlist *add;
833 tree exclude_writer;
834 int copy;
835{
836 while (add)
837 {
838 struct tlist *next = add->next;
839 if (! copy)
840 add->next = *to;
841 if (! exclude_writer || add->writer != exclude_writer)
842 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
843 add = next;
844 }
845}
846
847/* Merge the nodes of ADD into TO. This merging process is done so that for
848 each variable that already exists in TO, no new node is added; however if
849 there is a write access recorded in ADD, and an occurrence on TO is only
850 a read access, then the occurrence in TO will be modified to record the
851 write. */
481c6ce6 852
853static void
4e91a871 854merge_tlist (to, add, copy)
855 struct tlist **to;
856 struct tlist *add;
857 int copy;
858{
859 struct tlist **end = to;
860
861 while (*end)
862 end = &(*end)->next;
863
864 while (add)
865 {
866 int found = 0;
867 struct tlist *tmp2;
868 struct tlist *next = add->next;
869
870 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
871 if (tmp2->expr == add->expr)
872 {
873 found = 1;
874 if (! tmp2->writer)
875 tmp2->writer = add->writer;
876 }
877 if (! found)
878 {
879 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
880 end = &(*end)->next;
881 *end = 0;
882 }
883 add = next;
884 }
885}
886
887/* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
888 references in list LIST conflict with it, excluding reads if ONLY writers
889 is nonzero. */
890
891static void
892warn_for_collisions_1 (written, writer, list, only_writes)
893 tree written, writer;
894 struct tlist *list;
895 int only_writes;
896{
897 struct tlist *tmp;
898
899 /* Avoid duplicate warnings. */
900 for (tmp = warned_ids; tmp; tmp = tmp->next)
901 if (tmp->expr == written)
902 return;
903
904 while (list)
905 {
906 if (list->expr == written
907 && list->writer != writer
908 && (! only_writes || list->writer))
909 {
910 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
911 warning ("operation on `%s' may be undefined",
912 IDENTIFIER_POINTER (DECL_NAME (list->expr)));
913 }
914 list = list->next;
915 }
916}
917
918/* Given a list LIST of references to variables, find whether any of these
919 can cause conflicts due to missing sequence points. */
920
921static void
922warn_for_collisions (list)
923 struct tlist *list;
924{
925 struct tlist *tmp;
926
927 for (tmp = list; tmp; tmp = tmp->next)
928 {
929 if (tmp->writer)
930 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
931 }
932}
933
734c98be 934/* Return nonzero if X is a tree that can be verified by the sequence point
4e91a871 935 warnings. */
936static int
937warning_candidate_p (x)
481c6ce6 938 tree x;
481c6ce6 939{
4e91a871 940 return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
941}
481c6ce6 942
4e91a871 943/* Walk the tree X, and record accesses to variables. If X is written by the
944 parent tree, WRITER is the parent.
945 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
946 expression or its only operand forces a sequence point, then everything up
947 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
948 in PNO_SP.
949 Once we return, we will have emitted warnings if any subexpression before
950 such a sequence point could be undefined. On a higher level, however, the
951 sequence point may not be relevant, and we'll merge the two lists.
952
953 Example: (b++, a) + b;
954 The call that processes the COMPOUND_EXPR will store the increment of B
955 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
956 processes the PLUS_EXPR will need to merge the two lists so that
957 eventually, all accesses end up on the same list (and we'll warn about the
958 unordered subexpressions b++ and b.
959
960 A note on merging. If we modify the former example so that our expression
961 becomes
962 (b++, b) + a
963 care must be taken not simply to add all three expressions into the final
964 PNO_SP list. The function merge_tlist takes care of that by merging the
965 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
966 way, so that no more than one access to B is recorded. */
481c6ce6 967
4e91a871 968static void
969verify_tree (x, pbefore_sp, pno_sp, writer)
970 tree x;
971 struct tlist **pbefore_sp, **pno_sp;
972 tree writer;
973{
974 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
975 enum tree_code code;
976 char class;
481c6ce6 977
e5b75768 978 /* X may be NULL if it is the operand of an empty statement expression
979 ({ }). */
980 if (x == NULL)
981 return;
982
4e91a871 983 restart:
984 code = TREE_CODE (x);
985 class = TREE_CODE_CLASS (code);
481c6ce6 986
4e91a871 987 if (warning_candidate_p (x))
481c6ce6 988 {
4e91a871 989 *pno_sp = new_tlist (*pno_sp, x, writer);
990 return;
991 }
992
993 switch (code)
994 {
67b28e3e 995 case CONSTRUCTOR:
996 return;
997
4e91a871 998 case COMPOUND_EXPR:
999 case TRUTH_ANDIF_EXPR:
1000 case TRUTH_ORIF_EXPR:
1001 tmp_before = tmp_nosp = tmp_list3 = 0;
1002 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1003 warn_for_collisions (tmp_nosp);
1004 merge_tlist (pbefore_sp, tmp_before, 0);
1005 merge_tlist (pbefore_sp, tmp_nosp, 0);
1006 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
1007 merge_tlist (pbefore_sp, tmp_list3, 0);
1008 return;
1009
1010 case COND_EXPR:
1011 tmp_before = tmp_list2 = 0;
1012 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1013 warn_for_collisions (tmp_list2);
1014 merge_tlist (pbefore_sp, tmp_before, 0);
1015 merge_tlist (pbefore_sp, tmp_list2, 1);
1016
1017 tmp_list3 = tmp_nosp = 0;
1018 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1019 warn_for_collisions (tmp_nosp);
1020 merge_tlist (pbefore_sp, tmp_list3, 0);
1021
1022 tmp_list3 = tmp_list2 = 0;
1023 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1024 warn_for_collisions (tmp_list2);
1025 merge_tlist (pbefore_sp, tmp_list3, 0);
1026 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1027 two first, to avoid warning for (a ? b++ : b++). */
1028 merge_tlist (&tmp_nosp, tmp_list2, 0);
1029 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1030 return;
1031
481c6ce6 1032 case PREDECREMENT_EXPR:
1033 case PREINCREMENT_EXPR:
1034 case POSTDECREMENT_EXPR:
1035 case POSTINCREMENT_EXPR:
4e91a871 1036 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1037 return;
1038
1039 case MODIFY_EXPR:
1040 tmp_before = tmp_nosp = tmp_list3 = 0;
1041 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1042 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1043 /* Expressions inside the LHS are not ordered wrt. the sequence points
1044 in the RHS. Example:
1045 *a = (a++, 2)
1046 Despite the fact that the modification of "a" is in the before_sp
1047 list (tmp_before), it conflicts with the use of "a" in the LHS.
1048 We can handle this by adding the contents of tmp_list3
1049 to those of tmp_before, and redoing the collision warnings for that
1050 list. */
1051 add_tlist (&tmp_before, tmp_list3, x, 1);
1052 warn_for_collisions (tmp_before);
1053 /* Exclude the LHS itself here; we first have to merge it into the
1054 tmp_nosp list. This is done to avoid warning for "a = a"; if we
1055 didn't exclude the LHS, we'd get it twice, once as a read and once
1056 as a write. */
1057 add_tlist (pno_sp, tmp_list3, x, 0);
1058 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1059
1060 merge_tlist (pbefore_sp, tmp_before, 0);
1061 if (warning_candidate_p (TREE_OPERAND (x, 0)))
1062 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1063 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1064 return;
481c6ce6 1065
1066 case CALL_EXPR:
4e91a871 1067 /* We need to warn about conflicts among arguments and conflicts between
1068 args and the function address. Side effects of the function address,
1069 however, are not ordered by the sequence point of the call. */
1070 tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
1071 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1072 if (TREE_OPERAND (x, 1))
1073 verify_tree (TREE_OPERAND (x, 1), &tmp_list2, &tmp_list3, NULL_TREE);
1074 merge_tlist (&tmp_list3, tmp_list2, 0);
1075 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1076 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1077 warn_for_collisions (tmp_before);
1078 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1079 return;
481c6ce6 1080
1081 case TREE_LIST:
1082 /* Scan all the list, e.g. indices of multi dimensional array. */
1083 while (x)
1084 {
4e91a871 1085 tmp_before = tmp_nosp = 0;
1086 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1087 merge_tlist (&tmp_nosp, tmp_before, 0);
1088 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
481c6ce6 1089 x = TREE_CHAIN (x);
1090 }
4e91a871 1091 return;
481c6ce6 1092
4e91a871 1093 case SAVE_EXPR:
1094 {
1095 struct tlist_cache *t;
1096 for (t = save_expr_cache; t; t = t->next)
1097 if (t->expr == x)
1098 break;
481c6ce6 1099
4e91a871 1100 if (! t)
481c6ce6 1101 {
4e91a871 1102 t = (struct tlist_cache *) obstack_alloc (&tlist_obstack,
1103 sizeof *t);
1104 t->next = save_expr_cache;
1105 t->expr = x;
1106 save_expr_cache = t;
1107
1108 tmp_before = tmp_nosp = 0;
1109 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1110 warn_for_collisions (tmp_nosp);
1111
1112 tmp_list3 = 0;
1113 while (tmp_nosp)
1114 {
1115 struct tlist *t = tmp_nosp;
1116 tmp_nosp = t->next;
1117 merge_tlist (&tmp_list3, t, 0);
1118 }
1119 t->cache_before_sp = tmp_before;
1120 t->cache_after_sp = tmp_list3;
481c6ce6 1121 }
4e91a871 1122 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1123 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1124 return;
1125 }
1126 default:
481c6ce6 1127 break;
1128 }
481c6ce6 1129
4e91a871 1130 if (class == '1')
481c6ce6 1131 {
4e91a871 1132 if (first_rtl_op (code) == 0)
1133 return;
1134 x = TREE_OPERAND (x, 0);
1135 writer = 0;
1136 goto restart;
481c6ce6 1137 }
1138
4e91a871 1139 switch (class)
481c6ce6 1140 {
4e91a871 1141 case 'r':
1142 case '<':
1143 case '2':
1144 case 'b':
1145 case 'e':
1146 case 's':
1147 case 'x':
1148 {
1149 int lp;
1150 int max = first_rtl_op (TREE_CODE (x));
1151 for (lp = 0; lp < max; lp++)
1152 {
1153 tmp_before = tmp_nosp = 0;
1154 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, NULL_TREE);
1155 merge_tlist (&tmp_nosp, tmp_before, 0);
1156 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1157 }
1158 break;
1159 }
481c6ce6 1160 }
481c6ce6 1161}
1162
1163/* Try to warn for undefined behaviour in EXPR due to missing sequence
1164 points. */
1165
1166static void
1167verify_sequence_points (expr)
1168 tree expr;
1169{
4e91a871 1170 struct tlist *before_sp = 0, *after_sp = 0;
481c6ce6 1171
4e91a871 1172 warned_ids = 0;
1173 save_expr_cache = 0;
1174 if (tlist_firstobj == 0)
481c6ce6 1175 {
4e91a871 1176 gcc_obstack_init (&tlist_obstack);
1177 tlist_firstobj = obstack_alloc (&tlist_obstack, 0);
481c6ce6 1178 }
1179
4e91a871 1180 verify_tree (expr, &before_sp, &after_sp, 0);
1181 warn_for_collisions (after_sp);
1182 obstack_free (&tlist_obstack, tlist_firstobj);
481c6ce6 1183}
1184
7cad36f4 1185tree
b0fc3e72 1186c_expand_expr_stmt (expr)
1187 tree expr;
1188{
1189 /* Do default conversion if safe and possibly important,
1190 in case within ({...}). */
62827f44 1191 if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1192 && (flag_isoc99 || lvalue_p (expr)))
b0fc3e72 1193 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
1194 expr = default_conversion (expr);
1195
481c6ce6 1196 if (warn_sequence_point)
1197 verify_sequence_points (expr);
1198
b0fc3e72 1199 if (TREE_TYPE (expr) != error_mark_node
5fd5d738 1200 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
b0fc3e72 1201 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
1202 error ("expression statement has incomplete type");
1203
e41f0d80 1204 last_expr_type = TREE_TYPE (expr);
7cad36f4 1205 return add_stmt (build_stmt (EXPR_STMT, expr));
b0fc3e72 1206}
1207\f
1208/* Validate the expression after `case' and apply default promotions. */
1209
1210tree
1211check_case_value (value)
1212 tree value;
1213{
1214 if (value == NULL_TREE)
1215 return value;
1216
1217 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
fce1d6af 1218 STRIP_TYPE_NOPS (value);
225ec6aa 1219 /* In C++, the following is allowed:
1220
1221 const int i = 3;
1222 switch (...) { case i: ... }
1223
1224 So, we try to reduce the VALUE to a constant that way. */
1225 if (c_language == clk_cplusplus)
1226 {
1227 value = decl_constant_value (value);
1228 STRIP_TYPE_NOPS (value);
1229 value = fold (value);
1230 }
b0fc3e72 1231
1232 if (TREE_CODE (value) != INTEGER_CST
1233 && value != error_mark_node)
1234 {
1235 error ("case label does not reduce to an integer constant");
1236 value = error_mark_node;
1237 }
1238 else
1239 /* Promote char or short to int. */
1240 value = default_conversion (value);
1241
6433f1c2 1242 constant_expression_warning (value);
1243
b0fc3e72 1244 return value;
1245}
1246\f
1247/* Return an integer type with BITS bits of precision,
1248 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
1249
1250tree
1251type_for_size (bits, unsignedp)
1252 unsigned bits;
1253 int unsignedp;
1254{
46375237 1255 if (bits == TYPE_PRECISION (integer_type_node))
1256 return unsignedp ? unsigned_type_node : integer_type_node;
1257
bacde65a 1258 if (bits == TYPE_PRECISION (signed_char_type_node))
b0fc3e72 1259 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1260
bacde65a 1261 if (bits == TYPE_PRECISION (short_integer_type_node))
b0fc3e72 1262 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1263
bacde65a 1264 if (bits == TYPE_PRECISION (long_integer_type_node))
b0fc3e72 1265 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1266
bacde65a 1267 if (bits == TYPE_PRECISION (long_long_integer_type_node))
b0fc3e72 1268 return (unsignedp ? long_long_unsigned_type_node
1269 : long_long_integer_type_node);
1270
f57fa2ea 1271 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1272 return (unsignedp ? widest_unsigned_literal_type_node
1273 : widest_integer_literal_type_node);
1274
bacde65a 1275 if (bits <= TYPE_PRECISION (intQI_type_node))
1276 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1277
1278 if (bits <= TYPE_PRECISION (intHI_type_node))
1279 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1280
1281 if (bits <= TYPE_PRECISION (intSI_type_node))
1282 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1283
1284 if (bits <= TYPE_PRECISION (intDI_type_node))
1285 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1286
b0fc3e72 1287 return 0;
1288}
1289
1290/* Return a data type that has machine mode MODE.
1291 If the mode is an integer,
1292 then UNSIGNEDP selects between signed and unsigned types. */
1293
1294tree
1295type_for_mode (mode, unsignedp)
1296 enum machine_mode mode;
1297 int unsignedp;
1298{
46375237 1299 if (mode == TYPE_MODE (integer_type_node))
1300 return unsignedp ? unsigned_type_node : integer_type_node;
1301
b0fc3e72 1302 if (mode == TYPE_MODE (signed_char_type_node))
1303 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1304
1305 if (mode == TYPE_MODE (short_integer_type_node))
1306 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1307
b0fc3e72 1308 if (mode == TYPE_MODE (long_integer_type_node))
1309 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1310
1311 if (mode == TYPE_MODE (long_long_integer_type_node))
1312 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
1313
f57fa2ea 1314 if (mode == TYPE_MODE (widest_integer_literal_type_node))
44e9fa65 1315 return unsignedp ? widest_unsigned_literal_type_node
f57fa2ea 1316 : widest_integer_literal_type_node;
1317
88ae7f04 1318 if (mode == QImode)
bacde65a 1319 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1320
88ae7f04 1321 if (mode == HImode)
bacde65a 1322 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1323
88ae7f04 1324 if (mode == SImode)
bacde65a 1325 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1326
88ae7f04 1327 if (mode == DImode)
bacde65a 1328 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1329
cc1cc1c7 1330#if HOST_BITS_PER_WIDE_INT >= 64
6274009c 1331 if (mode == TYPE_MODE (intTI_type_node))
1332 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
cc1cc1c7 1333#endif
6274009c 1334
b0fc3e72 1335 if (mode == TYPE_MODE (float_type_node))
1336 return float_type_node;
1337
1338 if (mode == TYPE_MODE (double_type_node))
1339 return double_type_node;
1340
1341 if (mode == TYPE_MODE (long_double_type_node))
1342 return long_double_type_node;
1343
1344 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1345 return build_pointer_type (char_type_node);
1346
1347 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1348 return build_pointer_type (integer_type_node);
1349
e2ea7e3a 1350#ifdef VECTOR_MODE_SUPPORTED_P
88ae7f04 1351 if (VECTOR_MODE_SUPPORTED_P (mode))
1352 {
1353 switch (mode)
1354 {
1355 case V16QImode:
1356 return unsignedp ? unsigned_V16QI_type_node : V16QI_type_node;
1357 case V8HImode:
1358 return unsignedp ? unsigned_V8HI_type_node : V8HI_type_node;
1359 case V4SImode:
1360 return unsignedp ? unsigned_V4SI_type_node : V4SI_type_node;
1361 case V2SImode:
1362 return unsignedp ? unsigned_V2SI_type_node : V2SI_type_node;
1363 case V4HImode:
1364 return unsignedp ? unsigned_V4HI_type_node : V4HI_type_node;
1365 case V8QImode:
1366 return unsignedp ? unsigned_V8QI_type_node : V8QI_type_node;
1367 case V4SFmode:
1368 return V4SF_type_node;
1369 case V2SFmode:
1370 return V2SF_type_node;
1371 default:
1372 break;
1373 }
1374 }
e2ea7e3a 1375#endif
1376
b0fc3e72 1377 return 0;
1378}
20d39783 1379
2c0e001b 1380/* Return an unsigned type the same as TYPE in other respects. */
20d39783 1381tree
1382unsigned_type (type)
1383 tree type;
1384{
1385 tree type1 = TYPE_MAIN_VARIANT (type);
1386 if (type1 == signed_char_type_node || type1 == char_type_node)
1387 return unsigned_char_type_node;
1388 if (type1 == integer_type_node)
1389 return unsigned_type_node;
1390 if (type1 == short_integer_type_node)
1391 return short_unsigned_type_node;
1392 if (type1 == long_integer_type_node)
1393 return long_unsigned_type_node;
1394 if (type1 == long_long_integer_type_node)
1395 return long_long_unsigned_type_node;
1396 if (type1 == widest_integer_literal_type_node)
1397 return widest_unsigned_literal_type_node;
1398#if HOST_BITS_PER_WIDE_INT >= 64
1399 if (type1 == intTI_type_node)
1400 return unsigned_intTI_type_node;
1401#endif
1402 if (type1 == intDI_type_node)
1403 return unsigned_intDI_type_node;
1404 if (type1 == intSI_type_node)
1405 return unsigned_intSI_type_node;
1406 if (type1 == intHI_type_node)
1407 return unsigned_intHI_type_node;
1408 if (type1 == intQI_type_node)
1409 return unsigned_intQI_type_node;
1410
1411 return signed_or_unsigned_type (1, type);
1412}
1413
1414/* Return a signed type the same as TYPE in other respects. */
1415
1416tree
1417signed_type (type)
1418 tree type;
1419{
1420 tree type1 = TYPE_MAIN_VARIANT (type);
1421 if (type1 == unsigned_char_type_node || type1 == char_type_node)
1422 return signed_char_type_node;
1423 if (type1 == unsigned_type_node)
1424 return integer_type_node;
1425 if (type1 == short_unsigned_type_node)
1426 return short_integer_type_node;
1427 if (type1 == long_unsigned_type_node)
1428 return long_integer_type_node;
1429 if (type1 == long_long_unsigned_type_node)
1430 return long_long_integer_type_node;
1431 if (type1 == widest_unsigned_literal_type_node)
1432 return widest_integer_literal_type_node;
1433#if HOST_BITS_PER_WIDE_INT >= 64
1434 if (type1 == unsigned_intTI_type_node)
1435 return intTI_type_node;
1436#endif
1437 if (type1 == unsigned_intDI_type_node)
1438 return intDI_type_node;
1439 if (type1 == unsigned_intSI_type_node)
1440 return intSI_type_node;
1441 if (type1 == unsigned_intHI_type_node)
1442 return intHI_type_node;
1443 if (type1 == unsigned_intQI_type_node)
1444 return intQI_type_node;
1445
1446 return signed_or_unsigned_type (0, type);
1447}
1448
1449/* Return a type the same as TYPE except unsigned or
1450 signed according to UNSIGNEDP. */
1451
1452tree
1453signed_or_unsigned_type (unsignedp, type)
1454 int unsignedp;
1455 tree type;
1456{
1457 if (! INTEGRAL_TYPE_P (type)
1458 || TREE_UNSIGNED (type) == unsignedp)
1459 return type;
1460
1461 if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
1462 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
44e9fa65 1463 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
20d39783 1464 return unsignedp ? unsigned_type_node : integer_type_node;
44e9fa65 1465 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
20d39783 1466 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
44e9fa65 1467 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
20d39783 1468 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
44e9fa65 1469 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
20d39783 1470 return (unsignedp ? long_long_unsigned_type_node
1471 : long_long_integer_type_node);
44e9fa65 1472 if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
20d39783 1473 return (unsignedp ? widest_unsigned_literal_type_node
1474 : widest_integer_literal_type_node);
ef11801e 1475
1476#if HOST_BITS_PER_WIDE_INT >= 64
1477 if (TYPE_PRECISION (type) == TYPE_PRECISION (intTI_type_node))
1478 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1479#endif
1480 if (TYPE_PRECISION (type) == TYPE_PRECISION (intDI_type_node))
1481 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1482 if (TYPE_PRECISION (type) == TYPE_PRECISION (intSI_type_node))
1483 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1484 if (TYPE_PRECISION (type) == TYPE_PRECISION (intHI_type_node))
1485 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1486 if (TYPE_PRECISION (type) == TYPE_PRECISION (intQI_type_node))
1487 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1488
20d39783 1489 return type;
1490}
b0fc3e72 1491\f
a9b9d10c 1492/* Return the minimum number of bits needed to represent VALUE in a
1493 signed or unsigned type, UNSIGNEDP says which. */
1494
a0c2c45b 1495unsigned int
a9b9d10c 1496min_precision (value, unsignedp)
1497 tree value;
1498 int unsignedp;
1499{
1500 int log;
1501
1502 /* If the value is negative, compute its negative minus 1. The latter
1503 adjustment is because the absolute value of the largest negative value
1504 is one larger than the largest positive value. This is equivalent to
1505 a bit-wise negation, so use that operation instead. */
1506
1507 if (tree_int_cst_sgn (value) < 0)
1508 value = fold (build1 (BIT_NOT_EXPR, TREE_TYPE (value), value));
1509
1510 /* Return the number of bits needed, taking into account the fact
1511 that we need one more bit for a signed than unsigned type. */
1512
1513 if (integer_zerop (value))
1514 log = 0;
a9b9d10c 1515 else
a0c2c45b 1516 log = tree_floor_log2 (value);
a9b9d10c 1517
1518 return log + 1 + ! unsignedp;
1519}
1520\f
b0fc3e72 1521/* Print an error message for invalid operands to arith operation CODE.
1522 NOP_EXPR is used as a special case (see truthvalue_conversion). */
1523
1524void
1525binary_op_error (code)
1526 enum tree_code code;
1527{
19cb6b50 1528 const char *opname;
f03946e4 1529
b0fc3e72 1530 switch (code)
1531 {
1532 case NOP_EXPR:
1533 error ("invalid truth-value expression");
1534 return;
1535
1536 case PLUS_EXPR:
1537 opname = "+"; break;
1538 case MINUS_EXPR:
1539 opname = "-"; break;
1540 case MULT_EXPR:
1541 opname = "*"; break;
1542 case MAX_EXPR:
1543 opname = "max"; break;
1544 case MIN_EXPR:
1545 opname = "min"; break;
1546 case EQ_EXPR:
1547 opname = "=="; break;
1548 case NE_EXPR:
1549 opname = "!="; break;
1550 case LE_EXPR:
1551 opname = "<="; break;
1552 case GE_EXPR:
1553 opname = ">="; break;
1554 case LT_EXPR:
1555 opname = "<"; break;
1556 case GT_EXPR:
1557 opname = ">"; break;
1558 case LSHIFT_EXPR:
1559 opname = "<<"; break;
1560 case RSHIFT_EXPR:
1561 opname = ">>"; break;
1562 case TRUNC_MOD_EXPR:
66618a1e 1563 case FLOOR_MOD_EXPR:
b0fc3e72 1564 opname = "%"; break;
1565 case TRUNC_DIV_EXPR:
66618a1e 1566 case FLOOR_DIV_EXPR:
b0fc3e72 1567 opname = "/"; break;
1568 case BIT_AND_EXPR:
1569 opname = "&"; break;
1570 case BIT_IOR_EXPR:
1571 opname = "|"; break;
1572 case TRUTH_ANDIF_EXPR:
1573 opname = "&&"; break;
1574 case TRUTH_ORIF_EXPR:
1575 opname = "||"; break;
1576 case BIT_XOR_EXPR:
1577 opname = "^"; break;
66618a1e 1578 case LROTATE_EXPR:
1579 case RROTATE_EXPR:
1580 opname = "rotate"; break;
31f820d2 1581 default:
1582 opname = "unknown"; break;
b0fc3e72 1583 }
1584 error ("invalid operands to binary %s", opname);
1585}
1586\f
1587/* Subroutine of build_binary_op, used for comparison operations.
1588 See if the operands have both been converted from subword integer types
1589 and, if so, perhaps change them both back to their original type.
5b511807 1590 This function is also responsible for converting the two operands
1591 to the proper common type for comparison.
b0fc3e72 1592
1593 The arguments of this function are all pointers to local variables
1594 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
1595 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
1596
1597 If this function returns nonzero, it means that the comparison has
1598 a constant value. What this function returns is an expression for
1599 that value. */
1600
1601tree
1602shorten_compare (op0_ptr, op1_ptr, restype_ptr, rescode_ptr)
1603 tree *op0_ptr, *op1_ptr;
1604 tree *restype_ptr;
1605 enum tree_code *rescode_ptr;
1606{
19cb6b50 1607 tree type;
b0fc3e72 1608 tree op0 = *op0_ptr;
1609 tree op1 = *op1_ptr;
1610 int unsignedp0, unsignedp1;
1611 int real1, real2;
1612 tree primop0, primop1;
1613 enum tree_code code = *rescode_ptr;
1614
1615 /* Throw away any conversions to wider types
1616 already present in the operands. */
1617
1618 primop0 = get_narrower (op0, &unsignedp0);
1619 primop1 = get_narrower (op1, &unsignedp1);
1620
1621 /* Handle the case that OP0 does not *contain* a conversion
1622 but it *requires* conversion to FINAL_TYPE. */
1623
1624 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
1625 unsignedp0 = TREE_UNSIGNED (TREE_TYPE (op0));
1626 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
1627 unsignedp1 = TREE_UNSIGNED (TREE_TYPE (op1));
1628
1629 /* If one of the operands must be floated, we cannot optimize. */
1630 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
1631 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
1632
1633 /* If first arg is constant, swap the args (changing operation
2bd278cc 1634 so value is preserved), for canonicalization. Don't do this if
1635 the second arg is 0. */
b0fc3e72 1636
2bd278cc 1637 if (TREE_CONSTANT (primop0)
1638 && ! integer_zerop (primop1) && ! real_zerop (primop1))
b0fc3e72 1639 {
19cb6b50 1640 tree tem = primop0;
1641 int temi = unsignedp0;
b0fc3e72 1642 primop0 = primop1;
1643 primop1 = tem;
1644 tem = op0;
1645 op0 = op1;
1646 op1 = tem;
1647 *op0_ptr = op0;
1648 *op1_ptr = op1;
1649 unsignedp0 = unsignedp1;
1650 unsignedp1 = temi;
1651 temi = real1;
1652 real1 = real2;
1653 real2 = temi;
1654
1655 switch (code)
1656 {
1657 case LT_EXPR:
1658 code = GT_EXPR;
1659 break;
1660 case GT_EXPR:
1661 code = LT_EXPR;
1662 break;
1663 case LE_EXPR:
1664 code = GE_EXPR;
1665 break;
1666 case GE_EXPR:
1667 code = LE_EXPR;
1668 break;
31f820d2 1669 default:
1670 break;
b0fc3e72 1671 }
1672 *rescode_ptr = code;
1673 }
1674
1675 /* If comparing an integer against a constant more bits wide,
1676 maybe we can deduce a value of 1 or 0 independent of the data.
1677 Or else truncate the constant now
1678 rather than extend the variable at run time.
1679
1680 This is only interesting if the constant is the wider arg.
1681 Also, it is not safe if the constant is unsigned and the
1682 variable arg is signed, since in this case the variable
1683 would be sign-extended and then regarded as unsigned.
1684 Our technique fails in this case because the lowest/highest
1685 possible unsigned results don't follow naturally from the
1686 lowest/highest possible values of the variable operand.
1687 For just EQ_EXPR and NE_EXPR there is another technique that
1688 could be used: see if the constant can be faithfully represented
1689 in the other operand's type, by truncating it and reextending it
1690 and see if that preserves the constant's value. */
1691
1692 if (!real1 && !real2
1693 && TREE_CODE (primop1) == INTEGER_CST
1694 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
1695 {
1696 int min_gt, max_gt, min_lt, max_lt;
1697 tree maxval, minval;
1698 /* 1 if comparison is nominally unsigned. */
1699 int unsignedp = TREE_UNSIGNED (*restype_ptr);
1700 tree val;
1701
1702 type = signed_or_unsigned_type (unsignedp0, TREE_TYPE (primop0));
cda09c61 1703
1704 /* If TYPE is an enumeration, then we need to get its min/max
1705 values from it's underlying integral type, not the enumerated
1706 type itself. */
1707 if (TREE_CODE (type) == ENUMERAL_TYPE)
1708 type = type_for_size (TYPE_PRECISION (type), unsignedp0);
b0fc3e72 1709
1710 maxval = TYPE_MAX_VALUE (type);
1711 minval = TYPE_MIN_VALUE (type);
1712
1713 if (unsignedp && !unsignedp0)
1714 *restype_ptr = signed_type (*restype_ptr);
1715
1716 if (TREE_TYPE (primop1) != *restype_ptr)
1717 primop1 = convert (*restype_ptr, primop1);
1718 if (type != *restype_ptr)
1719 {
1720 minval = convert (*restype_ptr, minval);
1721 maxval = convert (*restype_ptr, maxval);
1722 }
1723
1724 if (unsignedp && unsignedp0)
1725 {
1726 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
1727 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
1728 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
1729 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
1730 }
1731 else
1732 {
1733 min_gt = INT_CST_LT (primop1, minval);
1734 max_gt = INT_CST_LT (primop1, maxval);
1735 min_lt = INT_CST_LT (minval, primop1);
1736 max_lt = INT_CST_LT (maxval, primop1);
1737 }
1738
1739 val = 0;
1740 /* This used to be a switch, but Genix compiler can't handle that. */
1741 if (code == NE_EXPR)
1742 {
1743 if (max_lt || min_gt)
8a7e5d0d 1744 val = boolean_true_node;
b0fc3e72 1745 }
1746 else if (code == EQ_EXPR)
1747 {
1748 if (max_lt || min_gt)
8a7e5d0d 1749 val = boolean_false_node;
b0fc3e72 1750 }
1751 else if (code == LT_EXPR)
1752 {
1753 if (max_lt)
8a7e5d0d 1754 val = boolean_true_node;
b0fc3e72 1755 if (!min_lt)
8a7e5d0d 1756 val = boolean_false_node;
b0fc3e72 1757 }
1758 else if (code == GT_EXPR)
1759 {
1760 if (min_gt)
8a7e5d0d 1761 val = boolean_true_node;
b0fc3e72 1762 if (!max_gt)
8a7e5d0d 1763 val = boolean_false_node;
b0fc3e72 1764 }
1765 else if (code == LE_EXPR)
1766 {
1767 if (!max_gt)
8a7e5d0d 1768 val = boolean_true_node;
b0fc3e72 1769 if (min_gt)
8a7e5d0d 1770 val = boolean_false_node;
b0fc3e72 1771 }
1772 else if (code == GE_EXPR)
1773 {
1774 if (!min_lt)
8a7e5d0d 1775 val = boolean_true_node;
b0fc3e72 1776 if (max_lt)
8a7e5d0d 1777 val = boolean_false_node;
b0fc3e72 1778 }
1779
1780 /* If primop0 was sign-extended and unsigned comparison specd,
1781 we did a signed comparison above using the signed type bounds.
1782 But the comparison we output must be unsigned.
1783
1784 Also, for inequalities, VAL is no good; but if the signed
1785 comparison had *any* fixed result, it follows that the
1786 unsigned comparison just tests the sign in reverse
1787 (positive values are LE, negative ones GE).
1788 So we can generate an unsigned comparison
1789 against an extreme value of the signed type. */
1790
1791 if (unsignedp && !unsignedp0)
1792 {
1793 if (val != 0)
1794 switch (code)
1795 {
1796 case LT_EXPR:
1797 case GE_EXPR:
1798 primop1 = TYPE_MIN_VALUE (type);
1799 val = 0;
1800 break;
1801
1802 case LE_EXPR:
1803 case GT_EXPR:
1804 primop1 = TYPE_MAX_VALUE (type);
1805 val = 0;
1806 break;
31f820d2 1807
1808 default:
1809 break;
b0fc3e72 1810 }
1811 type = unsigned_type (type);
1812 }
1813
78dafd61 1814 if (!max_gt && !unsignedp0 && TREE_CODE (primop0) != INTEGER_CST)
b0fc3e72 1815 {
1816 /* This is the case of (char)x >?< 0x80, which people used to use
1817 expecting old C compilers to change the 0x80 into -0x80. */
8a7e5d0d 1818 if (val == boolean_false_node)
9a64a879 1819 warning ("comparison is always false due to limited range of data type");
8a7e5d0d 1820 if (val == boolean_true_node)
9a64a879 1821 warning ("comparison is always true due to limited range of data type");
b0fc3e72 1822 }
1823
78dafd61 1824 if (!min_lt && unsignedp0 && TREE_CODE (primop0) != INTEGER_CST)
b0fc3e72 1825 {
a693ee7d 1826 /* This is the case of (unsigned char)x >?< -1 or < 0. */
8a7e5d0d 1827 if (val == boolean_false_node)
9a64a879 1828 warning ("comparison is always false due to limited range of data type");
8a7e5d0d 1829 if (val == boolean_true_node)
9a64a879 1830 warning ("comparison is always true due to limited range of data type");
b0fc3e72 1831 }
1832
1833 if (val != 0)
1834 {
1835 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
1836 if (TREE_SIDE_EFFECTS (primop0))
1837 return build (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
1838 return val;
1839 }
1840
1841 /* Value is not predetermined, but do the comparison
1842 in the type of the operand that is not constant.
1843 TYPE is already properly set. */
1844 }
1845 else if (real1 && real2
2203bd5c 1846 && (TYPE_PRECISION (TREE_TYPE (primop0))
1847 == TYPE_PRECISION (TREE_TYPE (primop1))))
b0fc3e72 1848 type = TREE_TYPE (primop0);
1849
1850 /* If args' natural types are both narrower than nominal type
1851 and both extend in the same manner, compare them
1852 in the type of the wider arg.
1853 Otherwise must actually extend both to the nominal
1854 common type lest different ways of extending
1855 alter the result.
1856 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
1857
1858 else if (unsignedp0 == unsignedp1 && real1 == real2
1859 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
1860 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
1861 {
1862 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
1863 type = signed_or_unsigned_type (unsignedp0
1864 || TREE_UNSIGNED (*restype_ptr),
1865 type);
1866 /* Make sure shorter operand is extended the right way
1867 to match the longer operand. */
1868 primop0 = convert (signed_or_unsigned_type (unsignedp0, TREE_TYPE (primop0)),
1869 primop0);
1870 primop1 = convert (signed_or_unsigned_type (unsignedp1, TREE_TYPE (primop1)),
1871 primop1);
1872 }
1873 else
1874 {
1875 /* Here we must do the comparison on the nominal type
1876 using the args exactly as we received them. */
1877 type = *restype_ptr;
1878 primop0 = op0;
1879 primop1 = op1;
1880
1881 if (!real1 && !real2 && integer_zerop (primop1)
32ab5039 1882 && TREE_UNSIGNED (*restype_ptr))
b0fc3e72 1883 {
1884 tree value = 0;
1885 switch (code)
1886 {
1887 case GE_EXPR:
2bd278cc 1888 /* All unsigned values are >= 0, so we warn if extra warnings
1889 are requested. However, if OP0 is a constant that is
1890 >= 0, the signedness of the comparison isn't an issue,
1891 so suppress the warning. */
da99cd78 1892 if (extra_warnings && !in_system_header
2bd278cc 1893 && ! (TREE_CODE (primop0) == INTEGER_CST
1894 && ! TREE_OVERFLOW (convert (signed_type (type),
1895 primop0))))
9a64a879 1896 warning ("comparison of unsigned expression >= 0 is always true");
8a7e5d0d 1897 value = boolean_true_node;
b0fc3e72 1898 break;
1899
1900 case LT_EXPR:
da99cd78 1901 if (extra_warnings && !in_system_header
2bd278cc 1902 && ! (TREE_CODE (primop0) == INTEGER_CST
1903 && ! TREE_OVERFLOW (convert (signed_type (type),
1904 primop0))))
9a64a879 1905 warning ("comparison of unsigned expression < 0 is always false");
8a7e5d0d 1906 value = boolean_false_node;
31f820d2 1907 break;
1908
1909 default:
1910 break;
b0fc3e72 1911 }
1912
1913 if (value != 0)
1914 {
1915 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
1916 if (TREE_SIDE_EFFECTS (primop0))
1917 return build (COMPOUND_EXPR, TREE_TYPE (value),
1918 primop0, value);
1919 return value;
1920 }
1921 }
1922 }
1923
1924 *op0_ptr = convert (type, primop0);
1925 *op1_ptr = convert (type, primop1);
1926
8a7e5d0d 1927 *restype_ptr = boolean_type_node;
b0fc3e72 1928
1929 return 0;
1930}
1931\f
1932/* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
1933 or validate its data type for an `if' or `while' statement or ?..: exp.
1934
1935 This preparation consists of taking the ordinary
1936 representation of an expression expr and producing a valid tree
1937 boolean expression describing whether expr is nonzero. We could
8a7e5d0d 1938 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
b0fc3e72 1939 but we optimize comparisons, &&, ||, and !.
1940
8a7e5d0d 1941 The resulting type should always be `boolean_type_node'. */
b0fc3e72 1942
1943tree
1944truthvalue_conversion (expr)
1945 tree expr;
1946{
baa1f4f5 1947 if (TREE_CODE (expr) == ERROR_MARK)
1948 return expr;
1949
a70adbe5 1950#if 0 /* This appears to be wrong for C++. */
baa1f4f5 1951 /* These really should return error_mark_node after 2.4 is stable.
1952 But not all callers handle ERROR_MARK properly. */
1953 switch (TREE_CODE (TREE_TYPE (expr)))
1954 {
1955 case RECORD_TYPE:
1956 error ("struct type value used where scalar is required");
8a7e5d0d 1957 return boolean_false_node;
baa1f4f5 1958
1959 case UNION_TYPE:
1960 error ("union type value used where scalar is required");
8a7e5d0d 1961 return boolean_false_node;
baa1f4f5 1962
1963 case ARRAY_TYPE:
1964 error ("array type value used where scalar is required");
8a7e5d0d 1965 return boolean_false_node;
baa1f4f5 1966
1967 default:
1968 break;
1969 }
a70adbe5 1970#endif /* 0 */
baa1f4f5 1971
b0fc3e72 1972 switch (TREE_CODE (expr))
1973 {
b0fc3e72 1974 case EQ_EXPR:
b0fc3e72 1975 case NE_EXPR: case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
1976 case TRUTH_ANDIF_EXPR:
1977 case TRUTH_ORIF_EXPR:
1978 case TRUTH_AND_EXPR:
1979 case TRUTH_OR_EXPR:
31f6e93c 1980 case TRUTH_XOR_EXPR:
7bbc42b5 1981 case TRUTH_NOT_EXPR:
8a7e5d0d 1982 TREE_TYPE (expr) = boolean_type_node;
1983 return expr;
3e851b85 1984
b0fc3e72 1985 case ERROR_MARK:
1986 return expr;
1987
1988 case INTEGER_CST:
8a7e5d0d 1989 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
b0fc3e72 1990
1991 case REAL_CST:
8a7e5d0d 1992 return real_zerop (expr) ? boolean_false_node : boolean_true_node;
b0fc3e72 1993
1994 case ADDR_EXPR:
20dd417a 1995 /* If we are taking the address of an external decl, it might be zero
65b5e6a6 1996 if it is weak, so we cannot optimize. */
9308e976 1997 if (DECL_P (TREE_OPERAND (expr, 0))
65b5e6a6 1998 && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
1999 break;
2000
b0fc3e72 2001 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 0)))
8a7e5d0d 2002 return build (COMPOUND_EXPR, boolean_type_node,
2003 TREE_OPERAND (expr, 0), boolean_true_node);
b0fc3e72 2004 else
8a7e5d0d 2005 return boolean_true_node;
b0fc3e72 2006
2203bd5c 2007 case COMPLEX_EXPR:
2ba726d2 2008 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
95809de4 2009 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2ba726d2 2010 truthvalue_conversion (TREE_OPERAND (expr, 0)),
2011 truthvalue_conversion (TREE_OPERAND (expr, 1)),
2203bd5c 2012 0);
2013
b0fc3e72 2014 case NEGATE_EXPR:
2015 case ABS_EXPR:
2016 case FLOAT_EXPR:
2017 case FFS_EXPR:
2018 /* These don't change whether an object is non-zero or zero. */
2019 return truthvalue_conversion (TREE_OPERAND (expr, 0));
2020
2021 case LROTATE_EXPR:
2022 case RROTATE_EXPR:
2023 /* These don't change whether an object is zero or non-zero, but
2024 we can't ignore them if their second arg has side-effects. */
2025 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
8a7e5d0d 2026 return build (COMPOUND_EXPR, boolean_type_node, TREE_OPERAND (expr, 1),
b0fc3e72 2027 truthvalue_conversion (TREE_OPERAND (expr, 0)));
2028 else
2029 return truthvalue_conversion (TREE_OPERAND (expr, 0));
73be5127 2030
b0fc3e72 2031 case COND_EXPR:
2032 /* Distribute the conversion into the arms of a COND_EXPR. */
8a7e5d0d 2033 return fold (build (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
b0fc3e72 2034 truthvalue_conversion (TREE_OPERAND (expr, 1)),
2035 truthvalue_conversion (TREE_OPERAND (expr, 2))));
2036
2037 case CONVERT_EXPR:
2038 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
2039 since that affects how `default_conversion' will behave. */
2040 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
2041 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2042 break;
a92771b8 2043 /* fall through... */
b0fc3e72 2044 case NOP_EXPR:
2045 /* If this is widening the argument, we can ignore it. */
2046 if (TYPE_PRECISION (TREE_TYPE (expr))
2047 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
2048 return truthvalue_conversion (TREE_OPERAND (expr, 0));
2049 break;
2050
b0fc3e72 2051 case MINUS_EXPR:
fe0a0255 2052 /* With IEEE arithmetic, x - x may not equal 0, so we can't optimize
2053 this case. */
2054 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
2055 && TREE_CODE (TREE_TYPE (expr)) == REAL_TYPE)
2056 break;
a92771b8 2057 /* fall through... */
fe0a0255 2058 case BIT_XOR_EXPR:
a70adbe5 2059 /* This and MINUS_EXPR can be changed into a comparison of the
fe0a0255 2060 two objects. */
b0fc3e72 2061 if (TREE_TYPE (TREE_OPERAND (expr, 0))
2062 == TREE_TYPE (TREE_OPERAND (expr, 1)))
2063 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2064 TREE_OPERAND (expr, 1), 1);
2065 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2066 fold (build1 (NOP_EXPR,
2067 TREE_TYPE (TREE_OPERAND (expr, 0)),
2068 TREE_OPERAND (expr, 1))), 1);
16837b18 2069
c2edbca4 2070 case BIT_AND_EXPR:
cc4c7eaf 2071 if (integer_onep (TREE_OPERAND (expr, 1))
2072 && TREE_TYPE (expr) != boolean_type_node)
2073 /* Using convert here would cause infinite recursion. */
2074 return build1 (NOP_EXPR, boolean_type_node, expr);
2075 break;
c2edbca4 2076
16837b18 2077 case MODIFY_EXPR:
2078 if (warn_parentheses && C_EXP_ORIGINAL_CODE (expr) == MODIFY_EXPR)
2079 warning ("suggest parentheses around assignment used as truth value");
2080 break;
73be5127 2081
31f820d2 2082 default:
2083 break;
b0fc3e72 2084 }
2085
2ba726d2 2086 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
a0748b7d 2087 {
2088 tree tem = save_expr (expr);
2089 return (build_binary_op
2090 ((TREE_SIDE_EFFECTS (expr)
2091 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
2092 truthvalue_conversion (build_unary_op (REALPART_EXPR, tem, 0)),
2093 truthvalue_conversion (build_unary_op (IMAGPART_EXPR, tem, 0)),
2094 0));
2095 }
2ba726d2 2096
b0fc3e72 2097 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2098}
2099\f
0d4238dc 2100static tree builtin_function_2 PARAMS ((const char *, const char *, tree, tree,
2101 int, enum built_in_class, int, int,
2102 int));
2103
ceee5ef4 2104/* Make a variant type in the proper way for C/C++, propagating qualifiers
2105 down to the element type of an array. */
2106
2107tree
a5b1863e 2108c_build_qualified_type (type, type_quals)
ceee5ef4 2109 tree type;
a5b1863e 2110 int type_quals;
ceee5ef4 2111{
a5b1863e 2112 /* A restrict-qualified pointer type must be a pointer to object or
2113 incomplete type. Note that the use of POINTER_TYPE_P also allows
2114 REFERENCE_TYPEs, which is appropriate for C++. Unfortunately,
2115 the C++ front-end also use POINTER_TYPE for pointer-to-member
2116 values, so even though it should be illegal to use `restrict'
2117 with such an entity we don't flag that here. Thus, special case
2118 code for that case is required in the C++ front-end. */
2119 if ((type_quals & TYPE_QUAL_RESTRICT)
2120 && (!POINTER_TYPE_P (type)
2121 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
2122 {
2123 error ("invalid use of `restrict'");
2124 type_quals &= ~TYPE_QUAL_RESTRICT;
2125 }
2126
ceee5ef4 2127 if (TREE_CODE (type) == ARRAY_TYPE)
a5b1863e 2128 return build_array_type (c_build_qualified_type (TREE_TYPE (type),
2129 type_quals),
754d8048 2130 TYPE_DOMAIN (type));
a5b1863e 2131 return build_qualified_type (type, type_quals);
2132}
2133
2134/* Apply the TYPE_QUALS to the new DECL. */
2135
2136void
2137c_apply_type_quals_to_decl (type_quals, decl)
2138 int type_quals;
2139 tree decl;
2140{
73bfa249 2141 if ((type_quals & TYPE_QUAL_CONST)
2142 || (TREE_TYPE (decl)
2143 && TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE))
a5b1863e 2144 TREE_READONLY (decl) = 1;
2145 if (type_quals & TYPE_QUAL_VOLATILE)
2146 {
2147 TREE_SIDE_EFFECTS (decl) = 1;
2148 TREE_THIS_VOLATILE (decl) = 1;
2149 }
d91a20bc 2150 if (type_quals & TYPE_QUAL_RESTRICT)
a5b1863e 2151 {
d91a20bc 2152 if (!TREE_TYPE (decl)
2153 || !POINTER_TYPE_P (TREE_TYPE (decl))
2154 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (TREE_TYPE (decl))))
2155 error ("invalid use of `restrict'");
2156 else if (flag_strict_aliasing)
ed83aafb 2157 /* Indicate we need to make a unique alias set for this pointer.
2158 We can't do it here because it might be pointing to an
2159 incomplete type. */
2160 DECL_POINTER_ALIAS_SET (decl) = -2;
a5b1863e 2161 }
2162}
2163
b5ba9f3a 2164
2165/* Return the typed-based alias set for T, which may be an expression
f7c44134 2166 or a type. Return -1 if we don't do anything special. */
b5ba9f3a 2167
f7c44134 2168HOST_WIDE_INT
2a631e19 2169c_common_get_alias_set (t)
b5ba9f3a 2170 tree t;
2171{
be4f2de7 2172 tree u;
4405d230 2173
2174 /* We know nothing about vector types */
2175 if (TREE_CODE (t) == VECTOR_TYPE)
2176 return 0;
2177
be4f2de7 2178 /* Permit type-punning when accessing a union, provided the access
2179 is directly through the union. For example, this code does not
2180 permit taking the address of a union member and then storing
2181 through it. Even the type-punning allowed here is a GCC
2182 extension, albeit a common and useful one; the C standard says
2183 that such accesses have implementation-defined behavior. */
2184 for (u = t;
2185 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
2186 u = TREE_OPERAND (u, 0))
2187 if (TREE_CODE (u) == COMPONENT_REF
2188 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
2189 return 0;
1e2513d9 2190
f7c44134 2191 /* If this is a char *, the ANSI C standard says it can alias
1607663f 2192 anything. Note that all references need do this. */
2193 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'r'
2194 && TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
2195 && TYPE_PRECISION (TREE_TYPE (t)) == TYPE_PRECISION (char_type_node))
f7c44134 2196 return 0;
a5b1863e 2197
f7c44134 2198 /* That's all the expressions we handle specially. */
2199 if (! TYPE_P (t))
2200 return -1;
b5ba9f3a 2201
1607663f 2202 /* The C standard specifically allows aliasing between signed and
2203 unsigned variants of the same type. We treat the signed
2204 variant as canonical. */
2205 if (TREE_CODE (t) == INTEGER_TYPE && TREE_UNSIGNED (t))
a8868e19 2206 {
2207 tree t1 = signed_type (t);
1607663f 2208
a8868e19 2209 /* t1 == t can happen for boolean nodes which are always unsigned. */
2210 if (t1 != t)
2211 return get_alias_set (t1);
2212 }
f7c44134 2213 else if (POINTER_TYPE_P (t))
87d2d17e 2214 {
f7c44134 2215 tree t1;
87d2d17e 2216
2217 /* Unfortunately, there is no canonical form of a pointer type.
2218 In particular, if we have `typedef int I', then `int *', and
2219 `I *' are different types. So, we have to pick a canonical
2220 representative. We do this below.
44e9fa65 2221
40bdc593 2222 Technically, this approach is actually more conservative that
2223 it needs to be. In particular, `const int *' and `int *'
734c98be 2224 should be in different alias sets, according to the C and C++
40bdc593 2225 standard, since their types are not the same, and so,
2226 technically, an `int **' and `const int **' cannot point at
2227 the same thing.
2228
2229 But, the standard is wrong. In particular, this code is
2230 legal C++:
2231
2232 int *ip;
2233 int **ipp = &ip;
8d564a28 2234 const int* const* cipp = &ipp;
40bdc593 2235
2236 And, it doesn't make sense for that to be legal unless you
2237 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
2238 the pointed-to types. This issue has been reported to the
2239 C++ committee. */
211f3116 2240 t1 = build_type_no_quals (t);
f7c44134 2241 if (t1 != t)
2242 return get_alias_set (t1);
87d2d17e 2243 }
1e2513d9 2244
f7c44134 2245 return -1;
b5ba9f3a 2246}
902b4e01 2247\f
2248/* Implement the __alignof keyword: Return the minimum required
2249 alignment of TYPE, measured in bytes. */
2250
2251tree
2252c_alignof (type)
2253 tree type;
2254{
2255 enum tree_code code = TREE_CODE (type);
2256 tree t;
2257
2258 /* In C++, sizeof applies to the referent. Handle alignof the same way. */
2259 if (code == REFERENCE_TYPE)
2260 {
2261 type = TREE_TYPE (type);
2262 code = TREE_CODE (type);
2263 }
2264
2265 if (code == FUNCTION_TYPE)
2266 t = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
2267 else if (code == VOID_TYPE || code == ERROR_MARK)
2268 t = size_one_node;
2269 else if (!COMPLETE_TYPE_P (type))
2270 {
2271 error ("__alignof__ applied to an incomplete type");
2272 t = size_zero_node;
2273 }
2274 else
2275 t = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
2276
2277 return fold (build1 (NOP_EXPR, c_size_type_node, t));
2278}
2279
2280/* Implement the __alignof keyword: Return the minimum required
2281 alignment of EXPR, measured in bytes. For VAR_DECL's and
2282 FIELD_DECL's return DECL_ALIGN (which can be set from an
2283 "aligned" __attribute__ specification). */
72040e7e 2284
902b4e01 2285tree
2286c_alignof_expr (expr)
2287 tree expr;
2288{
2289 tree t;
2290
2291 if (TREE_CODE (expr) == VAR_DECL)
2292 t = size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
2293
2294 else if (TREE_CODE (expr) == COMPONENT_REF
2295 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
2296 {
2297 error ("`__alignof' applied to a bit-field");
2298 t = size_one_node;
2299 }
2300 else if (TREE_CODE (expr) == COMPONENT_REF
7cc7e163 2301 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
902b4e01 2302 t = size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
2303
2304 else if (TREE_CODE (expr) == INDIRECT_REF)
2305 {
2306 tree t = TREE_OPERAND (expr, 0);
2307 tree best = t;
2308 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2309
2310 while (TREE_CODE (t) == NOP_EXPR
7cc7e163 2311 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
902b4e01 2312 {
2313 int thisalign;
2314
2315 t = TREE_OPERAND (t, 0);
2316 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2317 if (thisalign > bestalign)
2318 best = t, bestalign = thisalign;
2319 }
2320 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
2321 }
2322 else
2323 return c_alignof (TREE_TYPE (expr));
2324
2325 return fold (build1 (NOP_EXPR, c_size_type_node, t));
2326}
2327\f
7d3b509a 2328/* Give the specifications for the format attributes, used by C and all
2329 descendents. */
2330
2331static const struct attribute_spec c_format_attribute_table[] =
2332{
e9a0f285 2333 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
2334 { "format", 3, 3, false, true, true,
7d3b509a 2335 handle_format_attribute },
e9a0f285 2336 { "format_arg", 1, 1, false, true, true,
7d3b509a 2337 handle_format_arg_attribute },
2338 { NULL, 0, 0, false, false, false, NULL }
2339};
2340
72040e7e 2341/* Build tree nodes and builtin functions common to both C and C++ language
0270ae90 2342 frontends. */
f7c44134 2343
72040e7e 2344void
0270ae90 2345c_common_nodes_and_builtins ()
72040e7e 2346{
d2d4bdde 2347 enum builtin_type
2348 {
2349#define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
2350#define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
2351#define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
2352#define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
2353#define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
2354#define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
2355#define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
2356#define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
2357#define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
2358#define DEF_POINTER_TYPE(NAME, TYPE) NAME,
2359#include "builtin-types.def"
2360#undef DEF_PRIMITIVE_TYPE
2361#undef DEF_FUNCTION_TYPE_0
2362#undef DEF_FUNCTION_TYPE_1
2363#undef DEF_FUNCTION_TYPE_2
2364#undef DEF_FUNCTION_TYPE_3
2365#undef DEF_FUNCTION_TYPE_4
2366#undef DEF_FUNCTION_TYPE_VAR_0
2367#undef DEF_FUNCTION_TYPE_VAR_1
2368#undef DEF_FUNCTION_TYPE_VAR_2
2369#undef DEF_POINTER_TYPE
2370 BT_LAST
2371 };
2372
2373 typedef enum builtin_type builtin_type;
2374
7cc7e163 2375 tree builtin_types[(int) BT_LAST];
174fcc61 2376 int wchar_type_size;
2377 tree array_domain_type;
72040e7e 2378 /* Either char* or void*. */
2379 tree traditional_ptr_type_node;
071f1696 2380 /* Either const char* or const void*. */
2381 tree traditional_cptr_type_node;
2382 tree traditional_len_type_node;
2d47cc32 2383 tree va_list_ref_type_node;
8a15c04a 2384 tree va_list_arg_type_node;
a66c9326 2385
7d3b509a 2386 /* We must initialize this before any builtin functions (which might have
435fb09b 2387 attributes) are declared. (c_common_init is too late.) */
7d3b509a 2388 format_attribute_table = c_format_attribute_table;
2389
174fcc61 2390 /* Define `int' and `char' first so that dbx will output them first. */
d946ea19 2391 record_builtin_type (RID_INT, NULL, integer_type_node);
174fcc61 2392 record_builtin_type (RID_CHAR, "char", char_type_node);
2393
2394 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
2395 "unsigned long", "long long unsigned" and "unsigned short" were in C++
2396 but not C. Are the conditionals here needed? */
2397 if (c_language == clk_cplusplus)
d946ea19 2398 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
174fcc61 2399 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
2400 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
2401 record_builtin_type (RID_MAX, "long unsigned int",
2402 long_unsigned_type_node);
2403 if (c_language == clk_cplusplus)
2404 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
2405 record_builtin_type (RID_MAX, "long long int",
2406 long_long_integer_type_node);
2407 record_builtin_type (RID_MAX, "long long unsigned int",
2408 long_long_unsigned_type_node);
2409 if (c_language == clk_cplusplus)
2410 record_builtin_type (RID_MAX, "long long unsigned",
2411 long_long_unsigned_type_node);
2412 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
2413 record_builtin_type (RID_MAX, "short unsigned int",
2414 short_unsigned_type_node);
2415 if (c_language == clk_cplusplus)
2416 record_builtin_type (RID_MAX, "unsigned short",
2417 short_unsigned_type_node);
2418
2419 /* Define both `signed char' and `unsigned char'. */
2420 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
2421 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
2422
2423 /* These are types that type_for_size and type_for_mode use. */
2424 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2425 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2426 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2427 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2428#if HOST_BITS_PER_WIDE_INT >= 64
2429 pushdecl (build_decl (TYPE_DECL, get_identifier ("__int128_t"), intTI_type_node));
2430#endif
2431 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2432 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
2433 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
2434 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
2435#if HOST_BITS_PER_WIDE_INT >= 64
2436 pushdecl (build_decl (TYPE_DECL, get_identifier ("__uint128_t"), unsigned_intTI_type_node));
2437#endif
2438
2439 /* Create the widest literal types. */
2440 widest_integer_literal_type_node
2441 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
2442 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2443 widest_integer_literal_type_node));
2444
2445 widest_unsigned_literal_type_node
2446 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
2447 pushdecl (build_decl (TYPE_DECL, NULL_TREE,
2448 widest_unsigned_literal_type_node));
2449
2450 /* `unsigned long' is the standard type for sizeof.
2451 Note that stddef.h uses `unsigned long',
2452 and this must agree, even if long and int are the same size. */
2453 c_size_type_node =
2454 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
2455 signed_size_type_node = signed_type (c_size_type_node);
2456 if (flag_traditional)
2457 c_size_type_node = signed_size_type_node;
2458 set_sizetype (c_size_type_node);
2459
2460 build_common_tree_nodes_2 (flag_short_double);
2461
d946ea19 2462 record_builtin_type (RID_FLOAT, NULL, float_type_node);
2463 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
174fcc61 2464 record_builtin_type (RID_MAX, "long double", long_double_type_node);
2465
2466 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
2467 complex_integer_type_node));
2468 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
2469 complex_float_type_node));
2470 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
2471 complex_double_type_node));
2472 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2473 complex_long_double_type_node));
2474
d946ea19 2475 record_builtin_type (RID_VOID, NULL, void_type_node);
174fcc61 2476
d2d4bdde 2477 void_zero_node = build_int_2 (0, 0);
2478 TREE_TYPE (void_zero_node) = void_type_node;
2479
174fcc61 2480 void_list_node = build_void_list_node ();
2481
2482 /* Make a type to be the domain of a few array types
2483 whose domains don't really matter.
2484 200 is small enough that it always fits in size_t
2485 and large enough that it can hold most function names for the
2486 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
2487 array_domain_type = build_index_type (size_int (200));
2488
2489 /* Make a type for arrays of characters.
2490 With luck nothing will ever really depend on the length of this
2491 array type. */
2492 char_array_type_node
2493 = build_array_type (char_type_node, array_domain_type);
2494
2495 /* Likewise for arrays of ints. */
2496 int_array_type_node
2497 = build_array_type (integer_type_node, array_domain_type);
2498
d2d4bdde 2499 string_type_node = build_pointer_type (char_type_node);
2500 const_string_type_node
2501 = build_pointer_type (build_qualified_type
2502 (char_type_node, TYPE_QUAL_CONST));
2503
2504 traditional_ptr_type_node = ((flag_traditional &&
2505 c_language != clk_cplusplus)
2506 ? string_type_node : ptr_type_node);
2507 traditional_cptr_type_node = ((flag_traditional &&
2508 c_language != clk_cplusplus)
2509 ? const_string_type_node : const_ptr_type_node);
2510
fc2a2dcb 2511 (*targetm.init_builtins) ();
174fcc61 2512
2513 /* This is special for C++ so functions can be overloaded. */
2514 wchar_type_node = get_identifier (flag_short_wchar
2515 ? "short unsigned int"
2516 : WCHAR_TYPE);
2517 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
2518 wchar_type_size = TYPE_PRECISION (wchar_type_node);
2519 if (c_language == clk_cplusplus)
2520 {
2521 if (TREE_UNSIGNED (wchar_type_node))
2522 wchar_type_node = make_unsigned_type (wchar_type_size);
2523 else
2524 wchar_type_node = make_signed_type (wchar_type_size);
2525 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
2526 }
2527 else
2528 {
2529 signed_wchar_type_node = signed_type (wchar_type_node);
2530 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
2531 }
2532
2533 /* This is for wide string constants. */
2534 wchar_array_type_node
2535 = build_array_type (wchar_type_node, array_domain_type);
2536
6bf5ed8d 2537 wint_type_node =
2538 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
2539
2540 intmax_type_node =
2541 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
2542 uintmax_type_node =
2543 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
2544
2545 default_function_type = build_function_type (integer_type_node, NULL_TREE);
2546 ptrdiff_type_node
2547 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
2548 unsigned_ptrdiff_type_node = unsigned_type (ptrdiff_type_node);
2549
a66c9326 2550 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
2551 va_list_type_node));
8a15c04a 2552
ee702940 2553 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_ptrdiff_t"),
2554 ptrdiff_type_node));
2555
2556 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_size_t"),
2557 sizetype));
2558
8a15c04a 2559 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
2d47cc32 2560 {
2561 va_list_arg_type_node = va_list_ref_type_node =
2562 build_pointer_type (TREE_TYPE (va_list_type_node));
2563 }
8a15c04a 2564 else
2d47cc32 2565 {
2566 va_list_arg_type_node = va_list_type_node;
2567 va_list_ref_type_node = build_reference_type (va_list_type_node);
2568 }
2569
0270ae90 2570 traditional_len_type_node = ((flag_traditional &&
2571 c_language != clk_cplusplus)
071f1696 2572 ? integer_type_node : sizetype);
72040e7e 2573
d2d4bdde 2574#define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
2575 builtin_types[(int) ENUM] = VALUE;
2576#define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
2577 builtin_types[(int) ENUM] \
2578 = build_function_type (builtin_types[(int) RETURN], \
2579 void_list_node);
2580#define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
2581 builtin_types[(int) ENUM] \
2582 = build_function_type (builtin_types[(int) RETURN], \
2583 tree_cons (NULL_TREE, \
2584 builtin_types[(int) ARG1], \
2585 void_list_node));
2586#define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
2587 builtin_types[(int) ENUM] \
2588 = build_function_type \
2589 (builtin_types[(int) RETURN], \
2590 tree_cons (NULL_TREE, \
2591 builtin_types[(int) ARG1], \
2592 tree_cons (NULL_TREE, \
2593 builtin_types[(int) ARG2], \
2594 void_list_node)));
2595#define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
2596 builtin_types[(int) ENUM] \
2597 = build_function_type \
2598 (builtin_types[(int) RETURN], \
2599 tree_cons (NULL_TREE, \
2600 builtin_types[(int) ARG1], \
2601 tree_cons (NULL_TREE, \
2602 builtin_types[(int) ARG2], \
2603 tree_cons (NULL_TREE, \
2604 builtin_types[(int) ARG3], \
2605 void_list_node))));
2606#define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
2607 builtin_types[(int) ENUM] \
2608 = build_function_type \
2609 (builtin_types[(int) RETURN], \
2610 tree_cons (NULL_TREE, \
2611 builtin_types[(int) ARG1], \
2612 tree_cons (NULL_TREE, \
2613 builtin_types[(int) ARG2], \
2614 tree_cons \
2615 (NULL_TREE, \
2616 builtin_types[(int) ARG3], \
2617 tree_cons (NULL_TREE, \
2618 builtin_types[(int) ARG4], \
2619 void_list_node)))));
2620#define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
2621 builtin_types[(int) ENUM] \
2622 = build_function_type (builtin_types[(int) RETURN], NULL_TREE);
2623#define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
2624 builtin_types[(int) ENUM] \
2625 = build_function_type (builtin_types[(int) RETURN], \
2626 tree_cons (NULL_TREE, \
2627 builtin_types[(int) ARG1], \
3311f67b 2628 NULL_TREE));
2629
d2d4bdde 2630#define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
2631 builtin_types[(int) ENUM] \
2632 = build_function_type \
2633 (builtin_types[(int) RETURN], \
2634 tree_cons (NULL_TREE, \
2635 builtin_types[(int) ARG1], \
2636 tree_cons (NULL_TREE, \
2637 builtin_types[(int) ARG2], \
2638 NULL_TREE)));
2639#define DEF_POINTER_TYPE(ENUM, TYPE) \
2640 builtin_types[(int) ENUM] \
2641 = build_pointer_type (builtin_types[(int) TYPE]);
2642#include "builtin-types.def"
2643#undef DEF_PRIMITIVE_TYPE
2644#undef DEF_FUNCTION_TYPE_1
2645#undef DEF_FUNCTION_TYPE_2
2646#undef DEF_FUNCTION_TYPE_3
2647#undef DEF_FUNCTION_TYPE_4
2648#undef DEF_FUNCTION_TYPE_VAR_0
2649#undef DEF_FUNCTION_TYPE_VAR_1
2650#undef DEF_POINTER_TYPE
2651
2652#define DEF_BUILTIN(ENUM, NAME, CLASS, \
2653 TYPE, LIBTYPE, BOTH_P, FALLBACK_P, NONANSI_P) \
2654 if (NAME) \
2655 { \
2656 tree decl; \
2657 \
2658 if (strncmp (NAME, "__builtin_", strlen ("__builtin_")) != 0) \
2659 abort (); \
2660 \
2661 if (!BOTH_P) \
2662 decl = builtin_function (NAME, builtin_types[TYPE], ENUM, \
2663 CLASS, \
2664 (FALLBACK_P \
2665 ? (NAME + strlen ("__builtin_")) \
2666 : NULL)); \
2667 else \
2668 decl = builtin_function_2 (NAME, \
2669 NAME + strlen ("__builtin_"), \
2670 builtin_types[TYPE], \
2671 builtin_types[LIBTYPE], \
2672 ENUM, \
2673 CLASS, \
2674 FALLBACK_P, \
2675 NONANSI_P, \
2676 /*noreturn_p=*/0); \
2677 \
2678 built_in_decls[(int) ENUM] = decl; \
2679 }
2680#include "builtins.def"
2681#undef DEF_BUILTIN
df4b504c 2682
fafa62e3 2683 /* Declare _exit and _Exit just to mark them as non-returning. */
d2d4bdde 2684 builtin_function_2 (NULL, "_exit", NULL_TREE,
2685 builtin_types[BT_FN_VOID_INT],
0d4238dc 2686 0, NOT_BUILT_IN, 0, 1, 1);
d2d4bdde 2687 builtin_function_2 (NULL, "_Exit", NULL_TREE,
2688 builtin_types[BT_FN_VOID_INT],
fafa62e3 2689 0, NOT_BUILT_IN, 0, !flag_isoc99, 1);
0d4238dc 2690
0d4238dc 2691 /* Declare these functions non-returning
2692 to avoid spurious "control drops through" warnings. */
d946ea19 2693 builtin_function_2 (NULL, "abort",
0d4238dc 2694 NULL_TREE, ((c_language == clk_cplusplus)
d2d4bdde 2695 ? builtin_types[BT_FN_VOID]
2696 : builtin_types[BT_FN_VOID_VAR]),
0d4238dc 2697 0, NOT_BUILT_IN, 0, 0, 1);
2698
d946ea19 2699 builtin_function_2 (NULL, "exit",
0d4238dc 2700 NULL_TREE, ((c_language == clk_cplusplus)
d2d4bdde 2701 ? builtin_types[BT_FN_VOID_INT]
2702 : builtin_types[BT_FN_VOID_VAR]),
0d4238dc 2703 0, NOT_BUILT_IN, 0, 0, 1);
72040e7e 2704
5c62f199 2705 main_identifier_node = get_identifier ("main");
2706
e94026da 2707 /* ??? Perhaps there's a better place to do this. But it is related
2708 to __builtin_va_arg, so it isn't that off-the-wall. */
2709 lang_type_promotes_to = simple_type_promotes_to;
72040e7e 2710}
a66c9326 2711
2712tree
2713build_va_arg (expr, type)
2714 tree expr, type;
2715{
2716 return build1 (VA_ARG_EXPR, type, expr);
2717}
0d4238dc 2718
2719
dd878098 2720/* Linked list of disabled built-in functions. */
2721
2722typedef struct disabled_builtin
2723{
2724 const char *name;
2725 struct disabled_builtin *next;
2726} disabled_builtin;
2727static disabled_builtin *disabled_builtins = NULL;
2728
2729static bool builtin_function_disabled_p PARAMS ((const char *));
2730
2731/* Disable a built-in function specified by -fno-builtin-NAME. If NAME
2732 begins with "__builtin_", give an error. */
2733
2734void
2735disable_builtin_function (name)
2736 const char *name;
2737{
2738 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
2739 error ("cannot disable built-in function `%s'", name);
2740 else
2741 {
2742 disabled_builtin *new = xmalloc (sizeof (disabled_builtin));
2743 new->name = name;
2744 new->next = disabled_builtins;
2745 disabled_builtins = new;
2746 }
2747}
2748
2749
2750/* Return true if the built-in function NAME has been disabled, false
2751 otherwise. */
2752
2753static bool
2754builtin_function_disabled_p (name)
2755 const char *name;
2756{
2757 disabled_builtin *p;
2758 for (p = disabled_builtins; p != NULL; p = p->next)
2759 {
2760 if (strcmp (name, p->name) == 0)
2761 return true;
2762 }
2763 return false;
2764}
2765
2766
0d4238dc 2767/* Possibly define a builtin function with one or two names. BUILTIN_NAME
2768 is an __builtin_-prefixed name; NAME is the ordinary name; one or both
2769 of these may be NULL (though both being NULL is useless).
2770 BUILTIN_TYPE is the type of the __builtin_-prefixed function;
2771 TYPE is the type of the function with the ordinary name. These
2772 may differ if the ordinary name is declared with a looser type to avoid
2773 conflicts with headers. FUNCTION_CODE and CLASS are as for
2774 builtin_function. If LIBRARY_NAME_P is nonzero, NAME is passed as
2775 the LIBRARY_NAME parameter to builtin_function when declaring BUILTIN_NAME.
2776 If NONANSI_P is nonzero, the name NAME is treated as a non-ANSI name; if
2777 NORETURN_P is nonzero, the function is marked as non-returning.
2778 Returns the declaration of BUILTIN_NAME, if any, otherwise
2779 the declaration of NAME. Does not declare NAME if flag_no_builtin,
2780 or if NONANSI_P and flag_no_nonansi_builtin. */
2781
2782static tree
2783builtin_function_2 (builtin_name, name, builtin_type, type, function_code,
2784 class, library_name_p, nonansi_p, noreturn_p)
2785 const char *builtin_name;
2786 const char *name;
2787 tree builtin_type;
2788 tree type;
2789 int function_code;
2790 enum built_in_class class;
2791 int library_name_p;
2792 int nonansi_p;
2793 int noreturn_p;
2794{
2795 tree bdecl = NULL_TREE;
2796 tree decl = NULL_TREE;
2797 if (builtin_name != 0)
2798 {
2799 bdecl = builtin_function (builtin_name, builtin_type, function_code,
d946ea19 2800 class, library_name_p ? name : NULL);
0d4238dc 2801 if (noreturn_p)
2802 {
2803 TREE_THIS_VOLATILE (bdecl) = 1;
2804 TREE_SIDE_EFFECTS (bdecl) = 1;
2805 }
2806 }
dd878098 2807 if (name != 0 && !flag_no_builtin && !builtin_function_disabled_p (name)
2808 && !(nonansi_p && flag_no_nonansi_builtin))
0d4238dc 2809 {
d946ea19 2810 decl = builtin_function (name, type, function_code, class, NULL);
0d4238dc 2811 if (nonansi_p)
2812 DECL_BUILT_IN_NONANSI (decl) = 1;
2813 if (noreturn_p)
2814 {
2815 TREE_THIS_VOLATILE (decl) = 1;
2816 TREE_SIDE_EFFECTS (decl) = 1;
2817 }
2818 }
2819 return (bdecl != 0 ? bdecl : decl);
2820}
e94026da 2821\f
d7aeef06 2822/* Nonzero if the type T promotes to int. This is (nearly) the
2823 integral promotions defined in ISO C99 6.3.1.1/2. */
2824
2825bool
2826c_promoting_integer_type_p (t)
2827 tree t;
2828{
2829 switch (TREE_CODE (t))
2830 {
2831 case INTEGER_TYPE:
2832 return (TYPE_MAIN_VARIANT (t) == char_type_node
2833 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
2834 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
2835 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
7aa1e6eb 2836 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
2837 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
d7aeef06 2838
2839 case ENUMERAL_TYPE:
2840 /* ??? Technically all enumerations not larger than an int
2841 promote to an int. But this is used along code paths
2842 that only want to notice a size change. */
2843 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
2844
2845 case BOOLEAN_TYPE:
2846 return 1;
2847
2848 default:
2849 return 0;
2850 }
2851}
2852
e94026da 2853/* Given a type, apply default promotions wrt unnamed function arguments
2854 and return the new type. Return NULL_TREE if no change. */
44e9fa65 2855/* ??? There is a function of the same name in the C++ front end that
e94026da 2856 does something similar, but is more thorough and does not return NULL
44e9fa65 2857 if no change. We could perhaps share code, but it would make the
e94026da 2858 self_promoting_type property harder to identify. */
2859
2860tree
2861simple_type_promotes_to (type)
2862 tree type;
2863{
2864 if (TYPE_MAIN_VARIANT (type) == float_type_node)
2865 return double_type_node;
2866
d7aeef06 2867 if (c_promoting_integer_type_p (type))
e94026da 2868 {
2869 /* Traditionally, unsignedness is preserved in default promotions.
2870 Also preserve unsignedness if not really getting any wider. */
2871 if (TREE_UNSIGNED (type)
2872 && (flag_traditional
2873 || TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
2874 return unsigned_type_node;
2875 return integer_type_node;
2876 }
2877
2878 return NULL_TREE;
2879}
2880
2881/* Return 1 if PARMS specifies a fixed number of parameters
2882 and none of their types is affected by default promotions. */
2883
2884int
2885self_promoting_args_p (parms)
2886 tree parms;
2887{
19cb6b50 2888 tree t;
e94026da 2889 for (t = parms; t; t = TREE_CHAIN (t))
2890 {
19cb6b50 2891 tree type = TREE_VALUE (t);
43f74bc4 2892
e94026da 2893 if (TREE_CHAIN (t) == 0 && type != void_type_node)
2894 return 0;
2895
2896 if (type == 0)
2897 return 0;
2898
2899 if (TYPE_MAIN_VARIANT (type) == float_type_node)
2900 return 0;
2901
d7aeef06 2902 if (c_promoting_integer_type_p (type))
e94026da 2903 return 0;
2904 }
2905 return 1;
2906}
605fb01e 2907
c25509f2 2908/* Recursively examines the array elements of TYPE, until a non-array
2909 element type is found. */
2910
2911tree
2912strip_array_types (type)
2913 tree type;
2914{
2915 while (TREE_CODE (type) == ARRAY_TYPE)
2916 type = TREE_TYPE (type);
2917
2918 return type;
2919}
2920
605fb01e 2921/* Recognize certain built-in functions so we can make tree-codes
2922 other than CALL_EXPR. We do this when it enables fold-const.c
2923 to do something useful. */
2924/* ??? By rights this should go in builtins.c, but only C and C++
2925 implement build_{binary,unary}_op. Not exactly sure what bits
2926 of functionality are actually needed from those functions, or
2927 where the similar functionality exists in the other front ends. */
2928
2929tree
2930expand_tree_builtin (function, params, coerced_params)
2931 tree function, params, coerced_params;
2932{
2933 enum tree_code code;
2934
2935 if (DECL_BUILT_IN_CLASS (function) != BUILT_IN_NORMAL)
2936 return NULL_TREE;
2937
2938 switch (DECL_FUNCTION_CODE (function))
2939 {
2940 case BUILT_IN_ABS:
d2d4bdde 2941 case BUILT_IN_LABS:
2942 case BUILT_IN_LLABS:
2943 case BUILT_IN_IMAXABS:
605fb01e 2944 case BUILT_IN_FABS:
d2d4bdde 2945 case BUILT_IN_FABSL:
2946 case BUILT_IN_FABSF:
605fb01e 2947 if (coerced_params == 0)
2948 return integer_zero_node;
2949 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
2950
d30e4d04 2951 case BUILT_IN_CONJ:
d2d4bdde 2952 case BUILT_IN_CONJF:
2953 case BUILT_IN_CONJL:
d30e4d04 2954 if (coerced_params == 0)
2955 return integer_zero_node;
2956 return build_unary_op (CONJ_EXPR, TREE_VALUE (coerced_params), 0);
2957
2958 case BUILT_IN_CREAL:
d2d4bdde 2959 case BUILT_IN_CREALF:
2960 case BUILT_IN_CREALL:
d30e4d04 2961 if (coerced_params == 0)
2962 return integer_zero_node;
2963 return build_unary_op (REALPART_EXPR, TREE_VALUE (coerced_params), 0);
2964
2965 case BUILT_IN_CIMAG:
d2d4bdde 2966 case BUILT_IN_CIMAGF:
2967 case BUILT_IN_CIMAGL:
d30e4d04 2968 if (coerced_params == 0)
2969 return integer_zero_node;
2970 return build_unary_op (IMAGPART_EXPR, TREE_VALUE (coerced_params), 0);
2971
605fb01e 2972 case BUILT_IN_ISGREATER:
2973 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2974 code = UNLE_EXPR;
2975 else
2976 code = LE_EXPR;
2977 goto unordered_cmp;
2978
2979 case BUILT_IN_ISGREATEREQUAL:
2980 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2981 code = UNLT_EXPR;
2982 else
2983 code = LT_EXPR;
2984 goto unordered_cmp;
2985
2986 case BUILT_IN_ISLESS:
2987 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2988 code = UNGE_EXPR;
2989 else
2990 code = GE_EXPR;
2991 goto unordered_cmp;
2992
2993 case BUILT_IN_ISLESSEQUAL:
2994 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
2995 code = UNGT_EXPR;
2996 else
2997 code = GT_EXPR;
2998 goto unordered_cmp;
2999
3000 case BUILT_IN_ISLESSGREATER:
3001 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT)
3002 code = UNEQ_EXPR;
3003 else
3004 code = EQ_EXPR;
3005 goto unordered_cmp;
3006
3007 case BUILT_IN_ISUNORDERED:
3008 if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT)
3009 return integer_zero_node;
3010 code = UNORDERED_EXPR;
3011 goto unordered_cmp;
3012
3013 unordered_cmp:
3014 {
3015 tree arg0, arg1;
3016
3017 if (params == 0
3018 || TREE_CHAIN (params) == 0)
3019 {
3020 error ("too few arguments to function `%s'",
3021 IDENTIFIER_POINTER (DECL_NAME (function)));
3022 return error_mark_node;
3023 }
3024 else if (TREE_CHAIN (TREE_CHAIN (params)) != 0)
3025 {
3026 error ("too many arguments to function `%s'",
3027 IDENTIFIER_POINTER (DECL_NAME (function)));
3028 return error_mark_node;
3029 }
3030
3031 arg0 = TREE_VALUE (params);
3032 arg1 = TREE_VALUE (TREE_CHAIN (params));
3033 arg0 = build_binary_op (code, arg0, arg1, 0);
3034 if (code != UNORDERED_EXPR)
3035 arg0 = build_unary_op (TRUTH_NOT_EXPR, arg0, 0);
3036 return arg0;
3037 }
3038 break;
3039
3040 default:
3041 break;
3042 }
3043
3044 return NULL_TREE;
3045}
51444f0d 3046
a08e60ae 3047/* Returns non-zero if CODE is the code for a statement. */
3048
3049int
3050statement_code_p (code)
3051 enum tree_code code;
3052{
3053 switch (code)
3054 {
3055 case EXPR_STMT:
3056 case COMPOUND_STMT:
3057 case DECL_STMT:
3058 case IF_STMT:
3059 case FOR_STMT:
3060 case WHILE_STMT:
3061 case DO_STMT:
3062 case RETURN_STMT:
3063 case BREAK_STMT:
3064 case CONTINUE_STMT:
e41f0d80 3065 case SCOPE_STMT:
a08e60ae 3066 case SWITCH_STMT:
3067 case GOTO_STMT:
3068 case LABEL_STMT:
3069 case ASM_STMT:
3070 case CASE_LABEL:
3071 return 1;
3072
3073 default:
3074 if (lang_statement_code_p)
3075 return (*lang_statement_code_p) (code);
3076 return 0;
3077 }
3078}
3079
7b915c10 3080/* Walk the statement tree, rooted at *tp. Apply FUNC to all the
a08e60ae 3081 sub-trees of *TP in a pre-order traversal. FUNC is called with the
3082 DATA and the address of each sub-tree. If FUNC returns a non-NULL
3083 value, the traversal is aborted, and the value returned by FUNC is
3084 returned. If FUNC sets WALK_SUBTREES to zero, then the subtrees of
3085 the node being visited are not walked.
3086
3087 We don't need a without_duplicates variant of this one because the
3088 statement tree is a tree, not a graph. */
3089
3090tree
3091walk_stmt_tree (tp, func, data)
3092 tree *tp;
3093 walk_tree_fn func;
3094 void *data;
3095{
3096 enum tree_code code;
3097 int walk_subtrees;
3098 tree result;
3099 int i, len;
3100
3101#define WALK_SUBTREE(NODE) \
3102 do \
3103 { \
3104 result = walk_stmt_tree (&(NODE), func, data); \
3105 if (result) \
3106 return result; \
3107 } \
3108 while (0)
3109
3110 /* Skip empty subtrees. */
3111 if (!*tp)
3112 return NULL_TREE;
3113
3114 /* Skip subtrees below non-statement nodes. */
3115 if (!statement_code_p (TREE_CODE (*tp)))
3116 return NULL_TREE;
3117
3118 /* Call the function. */
3119 walk_subtrees = 1;
3120 result = (*func) (tp, &walk_subtrees, data);
3121
3122 /* If we found something, return it. */
3123 if (result)
3124 return result;
3125
a08e60ae 3126 /* FUNC may have modified the tree, recheck that we're looking at a
3127 statement node. */
3128 code = TREE_CODE (*tp);
3129 if (!statement_code_p (code))
3130 return NULL_TREE;
3131
f2b74df1 3132 /* Visit the subtrees unless FUNC decided that there was nothing
3133 interesting below this point in the tree. */
3134 if (walk_subtrees)
3135 {
3136 /* Walk over all the sub-trees of this operand. Statement nodes
3137 never contain RTL, and we needn't worry about TARGET_EXPRs. */
3138 len = TREE_CODE_LENGTH (code);
3139
3140 /* Go through the subtrees. We need to do this in forward order so
3141 that the scope of a FOR_EXPR is handled properly. */
3142 for (i = 0; i < len; ++i)
3143 WALK_SUBTREE (TREE_OPERAND (*tp, i));
3144 }
a08e60ae 3145
3146 /* Finally visit the chain. This can be tail-recursion optimized if
3147 we write it this way. */
3148 return walk_stmt_tree (&TREE_CHAIN (*tp), func, data);
3149
3150#undef WALK_SUBTREE
3151}
3152
e41f0d80 3153/* Used to compare case labels. K1 and K2 are actually tree nodes
3154 representing case labels, or NULL_TREE for a `default' label.
3155 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
3156 K2, and 0 if K1 and K2 are equal. */
3157
3158int
3159case_compare (k1, k2)
3160 splay_tree_key k1;
3161 splay_tree_key k2;
3162{
3163 /* Consider a NULL key (such as arises with a `default' label) to be
3164 smaller than anything else. */
3165 if (!k1)
3166 return k2 ? -1 : 0;
3167 else if (!k2)
3168 return k1 ? 1 : 0;
3169
3170 return tree_int_cst_compare ((tree) k1, (tree) k2);
3171}
3172
3173/* Process a case label for the range LOW_VALUE ... HIGH_VALUE. If
3174 LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
3175 actually a `default' label. If only HIGH_VALUE is NULL_TREE, then
3176 case label was declared using the usual C/C++ syntax, rather than
3177 the GNU case range extension. CASES is a tree containing all the
3178 case ranges processed so far; COND is the condition for the
3179 switch-statement itself. Returns the CASE_LABEL created, or
3180 ERROR_MARK_NODE if no CASE_LABEL is created. */
3181
3182tree
3183c_add_case_label (cases, cond, low_value, high_value)
3184 splay_tree cases;
3185 tree cond;
3186 tree low_value;
3187 tree high_value;
3188{
3189 tree type;
3190 tree label;
3191 tree case_label;
3192 splay_tree_node node;
3193
3194 /* Create the LABEL_DECL itself. */
3195 label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3196 DECL_CONTEXT (label) = current_function_decl;
3197
3198 /* If there was an error processing the switch condition, bail now
3199 before we get more confused. */
3200 if (!cond || cond == error_mark_node)
3201 {
3202 /* Add a label anyhow so that the back-end doesn't think that
3203 the beginning of the switch is unreachable. */
3204 if (!cases->root)
3205 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3206 return error_mark_node;
3207 }
3208
3209 if ((low_value && TREE_TYPE (low_value)
3210 && POINTER_TYPE_P (TREE_TYPE (low_value)))
3211 || (high_value && TREE_TYPE (high_value)
3212 && POINTER_TYPE_P (TREE_TYPE (high_value))))
3213 error ("pointers are not permitted as case values");
3214
3215 /* Case ranges are a GNU extension. */
3216 if (high_value && pedantic)
3217 {
3218 if (c_language == clk_cplusplus)
3219 pedwarn ("ISO C++ forbids range expressions in switch statements");
3220 else
3221 pedwarn ("ISO C forbids range expressions in switch statements");
3222 }
3223
3224 type = TREE_TYPE (cond);
3225 if (low_value)
3226 {
3227 low_value = check_case_value (low_value);
3228 low_value = convert_and_check (type, low_value);
3229 }
3230 if (high_value)
3231 {
3232 high_value = check_case_value (high_value);
3233 high_value = convert_and_check (type, high_value);
3234 }
3235
3236 /* If an error has occurred, bail out now. */
3237 if (low_value == error_mark_node || high_value == error_mark_node)
3238 {
3239 if (!cases->root)
3240 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3241 return error_mark_node;
3242 }
3243
3244 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
3245 really a case range, even though it was written that way. Remove
3246 the HIGH_VALUE to simplify later processing. */
3247 if (tree_int_cst_equal (low_value, high_value))
3248 high_value = NULL_TREE;
3249 if (low_value && high_value
3250 && !tree_int_cst_lt (low_value, high_value))
3251 warning ("empty range specified");
3252
3253 /* Look up the LOW_VALUE in the table of case labels we already
3254 have. */
3255 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
3256 /* If there was not an exact match, check for overlapping ranges.
3257 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
3258 that's a `default' label and the only overlap is an exact match. */
3259 if (!node && (low_value || high_value))
3260 {
3261 splay_tree_node low_bound;
3262 splay_tree_node high_bound;
3263
3264 /* Even though there wasn't an exact match, there might be an
3265 overlap between this case range and another case range.
3266 Since we've (inductively) not allowed any overlapping case
3267 ranges, we simply need to find the greatest low case label
3268 that is smaller that LOW_VALUE, and the smallest low case
3269 label that is greater than LOW_VALUE. If there is an overlap
3270 it will occur in one of these two ranges. */
3271 low_bound = splay_tree_predecessor (cases,
3272 (splay_tree_key) low_value);
3273 high_bound = splay_tree_successor (cases,
3274 (splay_tree_key) low_value);
3275
3276 /* Check to see if the LOW_BOUND overlaps. It is smaller than
3277 the LOW_VALUE, so there is no need to check unless the
3278 LOW_BOUND is in fact itself a case range. */
3279 if (low_bound
3280 && CASE_HIGH ((tree) low_bound->value)
3281 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
3282 low_value) >= 0)
3283 node = low_bound;
3284 /* Check to see if the HIGH_BOUND overlaps. The low end of that
3285 range is bigger than the low end of the current range, so we
3286 are only interested if the current range is a real range, and
3287 not an ordinary case label. */
3288 else if (high_bound
3289 && high_value
3290 && (tree_int_cst_compare ((tree) high_bound->key,
3291 high_value)
3292 <= 0))
3293 node = high_bound;
3294 }
3295 /* If there was an overlap, issue an error. */
3296 if (node)
3297 {
3298 tree duplicate = CASE_LABEL_DECL ((tree) node->value);
3299
3300 if (high_value)
3301 {
3302 error ("duplicate (or overlapping) case value");
3303 error_with_decl (duplicate,
3304 "this is the first entry overlapping that value");
3305 }
3306 else if (low_value)
3307 {
3308 error ("duplicate case value") ;
3309 error_with_decl (duplicate, "previously used here");
3310 }
3311 else
3312 {
3313 error ("multiple default labels in one switch");
3314 error_with_decl (duplicate, "this is the first default label");
3315 }
3316 if (!cases->root)
3317 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3318 }
3319
3320 /* Add a CASE_LABEL to the statement-tree. */
3321 case_label = add_stmt (build_case_label (low_value, high_value, label));
3322 /* Register this case label in the splay tree. */
3323 splay_tree_insert (cases,
3324 (splay_tree_key) low_value,
3325 (splay_tree_value) case_label);
3326
3327 return case_label;
3328}
3329
d0a47c8d 3330/* Finish an expression taking the address of LABEL. Returns an
3331 expression for the address. */
3332
3333tree
3334finish_label_address_expr (label)
3335 tree label;
3336{
3337 tree result;
3338
3339 if (pedantic)
3340 {
3341 if (c_language == clk_cplusplus)
3342 pedwarn ("ISO C++ forbids taking the address of a label");
3343 else
3344 pedwarn ("ISO C forbids taking the address of a label");
3345 }
3346
3347 label = lookup_label (label);
3348 if (label == NULL_TREE)
3349 result = null_pointer_node;
3350 else
3351 {
3352 TREE_USED (label) = 1;
3353 result = build1 (ADDR_EXPR, ptr_type_node, label);
3354 TREE_CONSTANT (result) = 1;
3355 /* The current function in not necessarily uninlinable.
3356 Computed gotos are incompatible with inlining, but the value
3357 here could be used only in a diagnostic, for example. */
3358 }
3359
3360 return result;
3361}
3362
e41f0d80 3363/* Mark P (a stmt_tree) for GC. The use of a `void *' for the
3364 parameter allows this function to be used as a GC-marking
3365 function. */
3366
3367void
3368mark_stmt_tree (p)
3369 void *p;
3370{
3371 stmt_tree st = (stmt_tree) p;
3372
3373 ggc_mark_tree (st->x_last_stmt);
3374 ggc_mark_tree (st->x_last_expr_type);
3375}
3376
3377/* Mark LD for GC. */
3378
3379void
3380c_mark_lang_decl (c)
e8602e56 3381 struct c_lang_decl *c ATTRIBUTE_UNUSED;
e41f0d80 3382{
e41f0d80 3383}
3384
3385/* Mark F for GC. */
3386
3387void
3388mark_c_language_function (f)
3389 struct language_function *f;
3390{
3391 if (!f)
3392 return;
3393
3394 mark_stmt_tree (&f->x_stmt_tree);
3395 ggc_mark_tree (f->x_scope_stmt_stack);
3396}
3397
3398/* Hook used by expand_expr to expand language-specific tree codes. */
3399
3400rtx
3401c_expand_expr (exp, target, tmode, modifier)
3402 tree exp;
3403 rtx target;
3404 enum machine_mode tmode;
3405 enum expand_modifier modifier;
3406{
3407 switch (TREE_CODE (exp))
3408 {
3409 case STMT_EXPR:
3410 {
3411 tree rtl_expr;
3412 rtx result;
3413
3414 /* Since expand_expr_stmt calls free_temp_slots after every
3415 expression statement, we must call push_temp_slots here.
3416 Otherwise, any temporaries in use now would be considered
3417 out-of-scope after the first EXPR_STMT from within the
3418 STMT_EXPR. */
3419 push_temp_slots ();
1084d1c7 3420 rtl_expr = expand_start_stmt_expr ();
d513ec2f 3421
3422 /* If we want the result of this expression, find the last
3423 EXPR_STMT in the COMPOUND_STMT and mark it as addressable. */
3424 if (target != const0_rtx
3425 && TREE_CODE (STMT_EXPR_STMT (exp)) == COMPOUND_STMT
3426 && TREE_CODE (COMPOUND_BODY (STMT_EXPR_STMT (exp))) == SCOPE_STMT)
3427 {
3428 tree expr = COMPOUND_BODY (STMT_EXPR_STMT (exp));
3429 tree last = TREE_CHAIN (expr);
3430
3431 while (TREE_CHAIN (last))
3432 {
3433 expr = last;
3434 last = TREE_CHAIN (last);
3435 }
3436
3437 if (TREE_CODE (last) == SCOPE_STMT
3438 && TREE_CODE (expr) == EXPR_STMT)
3439 TREE_ADDRESSABLE (expr) = 1;
3440 }
3441
e41f0d80 3442 expand_stmt (STMT_EXPR_STMT (exp));
3443 expand_end_stmt_expr (rtl_expr);
3444 result = expand_expr (rtl_expr, target, tmode, modifier);
3445 pop_temp_slots ();
3446 return result;
3447 }
3448 break;
3449
edbbe5ca 3450 case CALL_EXPR:
3451 {
3452 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
3453 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3454 == FUNCTION_DECL)
3455 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3456 && (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3457 == BUILT_IN_FRONTEND))
3458 return c_expand_builtin (exp, target, tmode, modifier);
3459 else
7cc7e163 3460 abort ();
edbbe5ca 3461 }
3462 break;
3463
ec11e38e 3464 case COMPOUND_LITERAL_EXPR:
3465 {
3466 /* Initialize the anonymous variable declared in the compound
3467 literal, then return the variable. */
3468 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
3469 emit_local_var (decl);
3470 return expand_expr (decl, target, tmode, modifier);
3471 }
3472
e41f0d80 3473 default:
3474 abort ();
3475 }
3476
3477 abort ();
3478 return NULL;
3479}
3480
3481/* Hook used by safe_from_p to handle language-specific tree codes. */
3482
3483int
3484c_safe_from_p (target, exp)
3485 rtx target;
3486 tree exp;
3487{
3488 /* We can see statements here when processing the body of a
3489 statement-expression. For a declaration statement declaring a
3490 variable, look at the variable's initializer. */
3491 if (TREE_CODE (exp) == DECL_STMT)
3492 {
3493 tree decl = DECL_STMT_DECL (exp);
3494
3495 if (TREE_CODE (decl) == VAR_DECL
3496 && DECL_INITIAL (decl)
3497 && !safe_from_p (target, DECL_INITIAL (decl), /*top_p=*/0))
3498 return 0;
3499 }
3500
3501 /* For any statement, we must follow the statement-chain. */
3502 if (statement_code_p (TREE_CODE (exp)) && TREE_CHAIN (exp))
3503 return safe_from_p (target, TREE_CHAIN (exp), /*top_p=*/0);
3504
3505 /* Assume everything else is safe. */
3506 return 1;
3507}
3508
c63e27d8 3509/* Hook used by unsafe_for_reeval to handle language-specific tree codes. */
3510
3511int
3512c_unsafe_for_reeval (exp)
3513 tree exp;
3514{
3515 /* Statement expressions may not be reevaluated. */
3516 if (TREE_CODE (exp) == STMT_EXPR)
3517 return 2;
3518
3519 /* Walk all other expressions. */
3520 return -1;
3521}
3522
ec11e38e 3523/* Hook used by staticp to handle language-specific tree codes. */
3524
3525int
3526c_staticp (exp)
3527 tree exp;
3528{
3529 if (TREE_CODE (exp) == COMPOUND_LITERAL_EXPR
3530 && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp)))
3531 return 1;
3532 return 0;
3533}
3534
2c0e001b 3535/* Tree code classes. */
51444f0d 3536
3537#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
3538
e99c3a1d 3539static const char c_tree_code_type[] = {
51444f0d 3540 'x',
3541#include "c-common.def"
3542};
3543#undef DEFTREECODE
3544
3545/* Table indexed by tree code giving number of expression
3546 operands beyond the fixed part of the node structure.
3547 Not used for types or decls. */
3548
3549#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
3550
e99c3a1d 3551static const int c_tree_code_length[] = {
51444f0d 3552 0,
3553#include "c-common.def"
3554};
3555#undef DEFTREECODE
3556
3557/* Names of tree components.
3558 Used for printing out the tree and error messages. */
3559#define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
3560
35823b64 3561static const char *const c_tree_code_name[] = {
51444f0d 3562 "@@dummy",
3563#include "c-common.def"
3564};
3565#undef DEFTREECODE
3566
3567/* Adds the tree codes specific to the C front end to the list of all
2c0e001b 3568 tree codes. */
51444f0d 3569
3570void
0d4607e8 3571add_c_tree_codes ()
51444f0d 3572{
3573 memcpy (tree_code_type + (int) LAST_AND_UNUSED_TREE_CODE,
3574 c_tree_code_type,
7cc7e163 3575 (int) LAST_C_TREE_CODE - (int) LAST_AND_UNUSED_TREE_CODE);
51444f0d 3576 memcpy (tree_code_length + (int) LAST_AND_UNUSED_TREE_CODE,
3577 c_tree_code_length,
7cc7e163 3578 (LAST_C_TREE_CODE - (int) LAST_AND_UNUSED_TREE_CODE) * sizeof (int));
51444f0d 3579 memcpy (tree_code_name + (int) LAST_AND_UNUSED_TREE_CODE,
3580 c_tree_code_name,
7cc7e163 3581 (LAST_C_TREE_CODE - (int) LAST_AND_UNUSED_TREE_CODE) * sizeof (char *));
c63e27d8 3582 lang_unsafe_for_reeval = c_unsafe_for_reeval;
51444f0d 3583}
edbbe5ca 3584
3585#define CALLED_AS_BUILT_IN(NODE) \
3586 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
3587
3588static rtx
3589c_expand_builtin (exp, target, tmode, modifier)
3590 tree exp;
3591 rtx target;
3592 enum machine_mode tmode;
3593 enum expand_modifier modifier;
3594{
3595 tree type = TREE_TYPE (exp);
3596 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
3597 tree arglist = TREE_OPERAND (exp, 1);
3598 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
3599 enum tree_code code = TREE_CODE (exp);
3600 const int ignore = (target == const0_rtx
3601 || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
3602 || code == CONVERT_EXPR || code == REFERENCE_EXPR
3603 || code == COND_EXPR)
3604 && TREE_CODE (type) == VOID_TYPE));
3605
3606 if (! optimize && ! CALLED_AS_BUILT_IN (fndecl))
3607 return expand_call (exp, target, ignore);
3608
3609 switch (fcode)
3610 {
3611 case BUILT_IN_PRINTF:
3612 target = c_expand_builtin_printf (arglist, target, tmode,
7cc7e163 3613 modifier, ignore, /*unlocked=*/ 0);
c013a46e 3614 if (target)
3615 return target;
3616 break;
3617
3618 case BUILT_IN_PRINTF_UNLOCKED:
3619 target = c_expand_builtin_printf (arglist, target, tmode,
7cc7e163 3620 modifier, ignore, /*unlocked=*/ 1);
edbbe5ca 3621 if (target)
3622 return target;
3623 break;
3624
96df8b77 3625 case BUILT_IN_FPRINTF:
3626 target = c_expand_builtin_fprintf (arglist, target, tmode,
7cc7e163 3627 modifier, ignore, /*unlocked=*/ 0);
c013a46e 3628 if (target)
3629 return target;
3630 break;
3631
3632 case BUILT_IN_FPRINTF_UNLOCKED:
3633 target = c_expand_builtin_fprintf (arglist, target, tmode,
7cc7e163 3634 modifier, ignore, /*unlocked=*/ 1);
96df8b77 3635 if (target)
3636 return target;
3637 break;
3638
edbbe5ca 3639 default: /* just do library call, if unknown builtin */
3640 error ("built-in function `%s' not currently supported",
3641 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
3642 }
3643
3644 /* The switch statement above can drop through to cause the function
3645 to be called normally. */
3646 return expand_call (exp, target, ignore);
3647}
3648
3649/* Check an arglist to *printf for problems. The arglist should start
3650 at the format specifier, with the remaining arguments immediately
2c0e001b 3651 following it. */
edbbe5ca 3652static int
3653is_valid_printf_arglist (arglist)
7cc7e163 3654 tree arglist;
edbbe5ca 3655{
2c0e001b 3656 /* Save this value so we can restore it later. */
edbbe5ca 3657 const int SAVE_pedantic = pedantic;
3658 int diagnostic_occurred = 0;
e9a0f285 3659 tree attrs;
edbbe5ca 3660
3661 /* Set this to a known value so the user setting won't affect code
3662 generation. */
3663 pedantic = 1;
2c0e001b 3664 /* Check to make sure there are no format specifier errors. */
e9a0f285 3665 attrs = tree_cons (get_identifier ("format"),
3666 tree_cons (NULL_TREE,
3667 get_identifier ("printf"),
3668 tree_cons (NULL_TREE,
3669 integer_one_node,
3670 tree_cons (NULL_TREE,
3671 build_int_2 (2, 0),
3672 NULL_TREE))),
3673 NULL_TREE);
3674 check_function_format (&diagnostic_occurred, attrs, arglist);
edbbe5ca 3675
2c0e001b 3676 /* Restore the value of `pedantic'. */
edbbe5ca 3677 pedantic = SAVE_pedantic;
3678
3679 /* If calling `check_function_format_ptr' produces a warning, we
2c0e001b 3680 return false, otherwise we return true. */
edbbe5ca 3681 return ! diagnostic_occurred;
3682}
3683
3684/* If the arguments passed to printf are suitable for optimizations,
2c0e001b 3685 we attempt to transform the call. */
edbbe5ca 3686static rtx
c013a46e 3687c_expand_builtin_printf (arglist, target, tmode, modifier, ignore, unlocked)
edbbe5ca 3688 tree arglist;
3689 rtx target;
3690 enum machine_mode tmode;
3691 enum expand_modifier modifier;
3692 int ignore;
c013a46e 3693 int unlocked;
edbbe5ca 3694{
c013a46e 3695 tree fn_putchar = unlocked ?
3696 built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED] : built_in_decls[BUILT_IN_PUTCHAR];
3697 tree fn_puts = unlocked ?
3698 built_in_decls[BUILT_IN_PUTS_UNLOCKED] : built_in_decls[BUILT_IN_PUTS];
edbbe5ca 3699 tree fn, format_arg, stripped_string;
3700
3701 /* If the return value is used, or the replacement _DECL isn't
2c0e001b 3702 initialized, don't do the transformation. */
edbbe5ca 3703 if (!ignore || !fn_putchar || !fn_puts)
3704 return 0;
3705
2c0e001b 3706 /* Verify the required arguments in the original call. */
edbbe5ca 3707 if (arglist == 0
3708 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE))
3709 return 0;
3710
2c0e001b 3711 /* Check the specifier vs. the parameters. */
edbbe5ca 3712 if (!is_valid_printf_arglist (arglist))
3713 return 0;
3714
3715 format_arg = TREE_VALUE (arglist);
3716 stripped_string = format_arg;
3717 STRIP_NOPS (stripped_string);
3718 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
3719 stripped_string = TREE_OPERAND (stripped_string, 0);
3720
3721 /* If the format specifier isn't a STRING_CST, punt. */
3722 if (TREE_CODE (stripped_string) != STRING_CST)
3723 return 0;
3724
3725 /* OK! We can attempt optimization. */
3726
2c0e001b 3727 /* If the format specifier was "%s\n", call __builtin_puts(arg2). */
edbbe5ca 3728 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s\n") == 0)
3729 {
3730 arglist = TREE_CHAIN (arglist);
3731 fn = fn_puts;
3732 }
2c0e001b 3733 /* If the format specifier was "%c", call __builtin_putchar (arg2). */
edbbe5ca 3734 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
3735 {
3736 arglist = TREE_CHAIN (arglist);
3737 fn = fn_putchar;
3738 }
3739 else
3740 {
7cc7e163 3741 /* We can't handle anything else with % args or %% ... yet. */
edbbe5ca 3742 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
3743 return 0;
3744
3745 /* If the resulting constant string has a length of 1, call
3746 putchar. Note, TREE_STRING_LENGTH includes the terminating
3747 NULL in its count. */
3748 if (TREE_STRING_LENGTH (stripped_string) == 2)
3749 {
3750 /* Given printf("c"), (where c is any one character,)
3751 convert "c"[0] to an int and pass that to the replacement
2c0e001b 3752 function. */
edbbe5ca 3753 arglist = build_int_2 (TREE_STRING_POINTER (stripped_string)[0], 0);
3754 arglist = build_tree_list (NULL_TREE, arglist);
3755
3756 fn = fn_putchar;
3757 }
3758 /* If the resulting constant was "string\n", call
3759 __builtin_puts("string"). Ensure "string" has at least one
3760 character besides the trailing \n. Note, TREE_STRING_LENGTH
3761 includes the terminating NULL in its count. */
3762 else if (TREE_STRING_LENGTH (stripped_string) > 2
3763 && TREE_STRING_POINTER (stripped_string)
3764 [TREE_STRING_LENGTH (stripped_string) - 2] == '\n')
3765 {
3766 /* Create a NULL-terminated string that's one char shorter
3767 than the original, stripping off the trailing '\n'. */
3768 const int newlen = TREE_STRING_LENGTH (stripped_string) - 1;
3769 char *newstr = (char *) alloca (newlen);
3770 memcpy (newstr, TREE_STRING_POINTER (stripped_string), newlen - 1);
3771 newstr[newlen - 1] = 0;
3772
d2e881a7 3773 arglist = combine_strings (build_string (newlen, newstr));
edbbe5ca 3774 arglist = build_tree_list (NULL_TREE, arglist);
3775 fn = fn_puts;
3776 }
3777 else
3778 /* We'd like to arrange to call fputs(string) here, but we
3779 need stdout and don't have a way to get it ... yet. */
3780 return 0;
3781 }
3782
3783 return expand_expr (build_function_call (fn, arglist),
3784 (ignore ? const0_rtx : target),
3785 tmode, modifier);
3786}
96df8b77 3787
3788/* If the arguments passed to fprintf are suitable for optimizations,
2c0e001b 3789 we attempt to transform the call. */
96df8b77 3790static rtx
c013a46e 3791c_expand_builtin_fprintf (arglist, target, tmode, modifier, ignore, unlocked)
96df8b77 3792 tree arglist;
3793 rtx target;
3794 enum machine_mode tmode;
3795 enum expand_modifier modifier;
3796 int ignore;
c013a46e 3797 int unlocked;
96df8b77 3798{
c013a46e 3799 tree fn_fputc = unlocked ?
3800 built_in_decls[BUILT_IN_FPUTC_UNLOCKED] : built_in_decls[BUILT_IN_FPUTC];
3801 tree fn_fputs = unlocked ?
3802 built_in_decls[BUILT_IN_FPUTS_UNLOCKED] : built_in_decls[BUILT_IN_FPUTS];
96df8b77 3803 tree fn, format_arg, stripped_string;
3804
3805 /* If the return value is used, or the replacement _DECL isn't
2c0e001b 3806 initialized, don't do the transformation. */
96df8b77 3807 if (!ignore || !fn_fputc || !fn_fputs)
3808 return 0;
3809
2c0e001b 3810 /* Verify the required arguments in the original call. */
96df8b77 3811 if (arglist == 0
3812 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE)
3813 || (TREE_CHAIN (arglist) == 0)
3814 || (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (arglist)))) !=
3815 POINTER_TYPE))
3816 return 0;
3817
2c0e001b 3818 /* Check the specifier vs. the parameters. */
96df8b77 3819 if (!is_valid_printf_arglist (TREE_CHAIN (arglist)))
3820 return 0;
3821
3822 format_arg = TREE_VALUE (TREE_CHAIN (arglist));
3823 stripped_string = format_arg;
3824 STRIP_NOPS (stripped_string);
3825 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
3826 stripped_string = TREE_OPERAND (stripped_string, 0);
3827
3828 /* If the format specifier isn't a STRING_CST, punt. */
3829 if (TREE_CODE (stripped_string) != STRING_CST)
3830 return 0;
3831
3832 /* OK! We can attempt optimization. */
3833
2c0e001b 3834 /* If the format specifier was "%s", call __builtin_fputs(arg3, arg1). */
96df8b77 3835 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s") == 0)
3836 {
3837 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
3838 arglist = tree_cons (NULL_TREE,
3839 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
3840 newarglist);
3841 fn = fn_fputs;
3842 }
2c0e001b 3843 /* If the format specifier was "%c", call __builtin_fputc (arg3, arg1). */
96df8b77 3844 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
3845 {
3846 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
3847 arglist = tree_cons (NULL_TREE,
3848 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
3849 newarglist);
3850 fn = fn_fputc;
3851 }
3852 else
3853 {
7cc7e163 3854 /* We can't handle anything else with % args or %% ... yet. */
96df8b77 3855 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
3856 return 0;
3857
3858 /* When "string" doesn't contain %, replace all cases of
3859 fprintf(stream,string) with fputs(string,stream). The fputs
3860 builtin will take take of special cases like length==1. */
3861 arglist = tree_cons (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)),
3862 build_tree_list (NULL_TREE, TREE_VALUE (arglist)));
3863 fn = fn_fputs;
3864 }
3865
3866 return expand_expr (build_function_call (fn, arglist),
3867 (ignore ? const0_rtx : target),
3868 tmode, modifier);
3869}
4f9a1c9b 3870\f
3871
3872/* Given a boolean expression ARG, return a tree representing an increment
3873 or decrement (as indicated by CODE) of ARG. The front end must check for
3874 invalid cases (e.g., decrement in C++). */
3875tree
3876boolean_increment (code, arg)
3877 enum tree_code code;
3878 tree arg;
3879{
3880 tree val;
3881 tree true_res = (c_language == clk_cplusplus
3882 ? boolean_true_node
3883 : c_bool_true_node);
3884 arg = stabilize_reference (arg);
3885 switch (code)
3886 {
3887 case PREINCREMENT_EXPR:
3888 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
3889 break;
3890 case POSTINCREMENT_EXPR:
3891 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
3892 arg = save_expr (arg);
3893 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
3894 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
3895 break;
3896 case PREDECREMENT_EXPR:
3897 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
3898 break;
3899 case POSTDECREMENT_EXPR:
3900 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
3901 arg = save_expr (arg);
3902 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
3903 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
3904 break;
3905 default:
3906 abort ();
3907 }
3908 TREE_SIDE_EFFECTS (val) = 1;
3909 return val;
3910}
76a6e674 3911\f
7d3b509a 3912/* Handle C and C++ default attributes. */
3913
3914enum built_in_attribute
3915{
3916#define DEF_ATTR_NULL_TREE(ENUM) ENUM,
3917#define DEF_ATTR_INT(ENUM, VALUE) ENUM,
3918#define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
3919#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
3920#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No entry needed in enum. */
3921#include "builtin-attrs.def"
3922#undef DEF_ATTR_NULL_TREE
3923#undef DEF_ATTR_INT
3924#undef DEF_ATTR_IDENT
3925#undef DEF_ATTR_TREE_LIST
3926#undef DEF_FN_ATTR
3927 ATTR_LAST
e3f6ce11 3928};
3929
7d3b509a 3930static tree built_in_attributes[(int) ATTR_LAST];
3931
3932static bool c_attrs_initialized = false;
3933
3934static void c_init_attributes PARAMS ((void));
3935
435fb09b 3936/* Common initialization before parsing options. */
3937void
3938c_common_init_options (lang)
3939 enum c_language_kind lang;
76a6e674 3940{
435fb09b 3941 c_language = lang;
3942 parse_in = cpp_create_reader (lang == clk_c ? CLK_GNUC89:
3943 lang == clk_cplusplus ? CLK_GNUCXX: CLK_OBJC);
9ceb1c29 3944
435fb09b 3945 /* Mark as "unspecified" (see c_common_post_options). */
3946 flag_bounds_check = -1;
3947}
3948
3949/* Post-switch processing. */
3950void
3951c_common_post_options ()
3952{
3953 cpp_post_options (parse_in);
3954
3955 /* Use tree inlining if possible. Function instrumentation is only
3956 done in the RTL level, so we disable tree inlining. */
3957 if (! flag_instrument_function_entry_exit)
3958 {
3959 if (!flag_no_inline)
3960 {
3961 flag_inline_trees = 1;
3962 flag_no_inline = 1;
3963 }
3964 if (flag_inline_functions)
3965 {
3966 flag_inline_trees = 2;
3967 flag_inline_functions = 0;
3968 }
3969 }
9ceb1c29 3970
76a6e674 3971 /* If still "unspecified", make it match -fbounded-pointers. */
435fb09b 3972 if (flag_bounds_check == -1)
76a6e674 3973 flag_bounds_check = flag_bounded_pointers;
3974
3975 /* Special format checking options don't work without -Wformat; warn if
3976 they are used. */
3977 if (warn_format_y2k && !warn_format)
3978 warning ("-Wformat-y2k ignored without -Wformat");
3979 if (warn_format_extra_args && !warn_format)
3980 warning ("-Wformat-extra-args ignored without -Wformat");
3981 if (warn_format_nonliteral && !warn_format)
3982 warning ("-Wformat-nonliteral ignored without -Wformat");
3983 if (warn_format_security && !warn_format)
3984 warning ("-Wformat-security ignored without -Wformat");
3985 if (warn_missing_format_attribute && !warn_format)
3986 warning ("-Wmissing-format-attribute ignored without -Wformat");
435fb09b 3987}
3988
3989/* Front end initialization common to C, ObjC and C++. */
3990const char *
3991c_common_init (filename)
3992 const char *filename;
3993{
3994 /* Do this before initializing pragmas, as then cpplib's hash table
3995 has been set up. */
3996 filename = init_c_lex (filename);
3997
3998 init_pragma ();
7d3b509a 3999
4000 if (!c_attrs_initialized)
4001 c_init_attributes ();
9ceb1c29 4002
4003 return filename;
7d3b509a 4004}
4005
cdc9fa3e 4006/* Common finish hook for the C, ObjC and C++ front ends. */
4007void
4008c_common_finish ()
4009{
4010 cpp_finish (parse_in);
4011
4012 /* For performance, avoid tearing down cpplib's internal structures.
4013 Call cpp_errors () instead of cpp_destroy (). */
4014 errorcount += cpp_errors (parse_in);
4015}
4016
7d3b509a 4017static void
4018c_init_attributes ()
4019{
4020 /* Fill in the built_in_attributes array. */
4021#define DEF_ATTR_NULL_TREE(ENUM) \
4022 built_in_attributes[(int) ENUM] = NULL_TREE;
4023#define DEF_ATTR_INT(ENUM, VALUE) \
4024 built_in_attributes[(int) ENUM] = build_int_2 (VALUE, VALUE < 0 ? -1 : 0);
4025#define DEF_ATTR_IDENT(ENUM, STRING) \
4026 built_in_attributes[(int) ENUM] = get_identifier (STRING);
4027#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
4028 built_in_attributes[(int) ENUM] \
4029 = tree_cons (built_in_attributes[(int) PURPOSE], \
4030 built_in_attributes[(int) VALUE], \
4031 built_in_attributes[(int) CHAIN]);
4032#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No initialization needed. */
4033#include "builtin-attrs.def"
4034#undef DEF_ATTR_NULL_TREE
4035#undef DEF_ATTR_INT
4036#undef DEF_ATTR_IDENT
4037#undef DEF_ATTR_TREE_LIST
4038#undef DEF_FN_ATTR
4039 ggc_add_tree_root (built_in_attributes, (int) ATTR_LAST);
4040 c_attrs_initialized = true;
4041}
4042
4043/* Depending on the name of DECL, apply default attributes to it. */
4044
4045void
4046c_common_insert_default_attributes (decl)
4047 tree decl;
4048{
4049 tree name = DECL_NAME (decl);
4050
4051 if (!c_attrs_initialized)
4052 c_init_attributes ();
4053
4054#define DEF_ATTR_NULL_TREE(ENUM) /* Nothing needed after initialization. */
4055#define DEF_ATTR_INT(ENUM, VALUE)
4056#define DEF_ATTR_IDENT(ENUM, STRING)
4057#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN)
4058#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) \
4059 if ((PREDICATE) && name == built_in_attributes[(int) NAME]) \
4060 decl_attributes (&decl, built_in_attributes[(int) ATTRS], \
4061 ATTR_FLAG_BUILT_IN);
4062#include "builtin-attrs.def"
4063#undef DEF_ATTR_NULL_TREE
4064#undef DEF_ATTR_INT
4065#undef DEF_ATTR_IDENT
4066#undef DEF_ATTR_TREE_LIST
4067#undef DEF_FN_ATTR
76a6e674 4068}
5f3cead1 4069
4070/* Output a -Wshadow warning MSGID about NAME, an IDENTIFIER_NODE, and
4071 additionally give the location of the previous declaration DECL. */
4072void
4073shadow_warning (msgid, name, decl)
4074 const char *msgid;
4075 tree name, decl;
4076{
4077 warning ("declaration of `%s' shadows %s", IDENTIFIER_POINTER (name), msgid);
4078 warning_with_file_and_line (DECL_SOURCE_FILE (decl),
4079 DECL_SOURCE_LINE (decl),
4080 "shadowed declaration is here");
4081}
4082