]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-common.c
ieeefp.h: Define __IEEE_BIG_ENDIAN for Darwin.
[thirdparty/gcc.git] / gcc / c-common.c
CommitLineData
b30f223b 1/* Subroutines shared by all languages that are variants of C.
09f89307 2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
06ceef4e 3 Free Software Foundation, Inc.
b30f223b 4
1322177d 5This file is part of GCC.
b30f223b 6
1322177d
LB
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.
b30f223b 11
1322177d
LB
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.
b30f223b
RS
16
17You should have received a copy of the GNU General Public License
1322177d
LB
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. */
b30f223b
RS
21
22#include "config.h"
670ee920 23#include "system.h"
b30f223b 24#include "tree.h"
b30f223b 25#include "flags.h"
5f6da302 26#include "toplev.h"
d6f4ec51 27#include "output.h"
e2af664c 28#include "c-pragma.h"
3932261a 29#include "rtl.h"
1526a060 30#include "ggc.h"
c6991660 31#include "expr.h"
8f17b5c5 32#include "c-common.h"
4d6baafa 33#include "tree-inline.h"
22703ccc 34#include "diagnostic.h"
7bdb32b9 35#include "tm_p.h"
235cfbc4 36#include "obstack.h"
f5e99456 37#include "c-lex.h"
c8724862 38#include "cpplib.h"
12a68f1f 39#include "target.h"
9ba2e1ef 40cpp_reader *parse_in; /* Declared in c-lex.h. */
c8724862 41
12a39b12
JM
42#undef WCHAR_TYPE_SIZE
43#define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node)
fef610be 44
eaa7c03f
JM
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
0884b60c
BS
59#ifndef PTRDIFF_TYPE
60#define PTRDIFF_TYPE "long int"
61#endif
62
5fd8e536
JM
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
4d6baafa
NB
83/* The variant of the C language being processed. */
84
85enum c_language_kind c_language;
86
7f4edbcb 87/* The following symbols are subsumed in the c_global_trees array, and
d125d268 88 listed here individually for documentation purposes.
7f4edbcb
BS
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
7f4edbcb
BS
163 A VOID_TYPE node, packaged in a TREE_LIST.
164
165 tree void_list_node;
166
684d9f3b 167 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
0ba8a114
NS
168 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
169 VAR_DECLS, but C++ does.)
63ad61ed 170
0ba8a114 171 tree function_name_decl_node;
684d9f3b 172 tree pretty_function_name_decl_node;
0ba8a114
NS
173 tree c99_function_name_decl_node;
174
175 Stack of nested function name VAR_DECLs.
176
177 tree saved_function_name_decls;
63ad61ed 178
7f4edbcb
BS
179*/
180
181tree c_global_trees[CTI_MAX];
0b73773c 182
6bcedb4e
MM
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
eaa7c03f
JM
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
2683ed8d
BS
200/* Nonzero means warn about possible violations of sequence point rules. */
201
202int warn_sequence_point;
203
6c36d76b
NB
204/* Nonzero means to warn about compile-time division by zero. */
205int warn_div_by_zero = 1;
206
f09f1de5
MM
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
0ba8a114 211tree (*make_fname_decl) PARAMS ((tree, int));
2ce07e2d 212
ae499cce
MM
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
8f17b5c5
MM
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
e78a3b42
RK
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
ec5c56db 225/* Information about how a function name is generated. */
0ba8a114
NS
226struct fname_var_t
227{
8b60264b
KG
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? */
0ba8a114
NS
231};
232
ec5c56db 233/* The three ways of getting then name of the current function. */
0ba8a114
NS
234
235const struct fname_var_t fname_vars[] =
236{
ec5c56db 237 /* C99 compliant __func__, must be first. */
0ba8a114 238 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
ec5c56db 239 /* GCC __FUNCTION__ compliant. */
0ba8a114 240 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
ec5c56db 241 /* GCC __PRETTY_FUNCTION__ compliant. */
0ba8a114
NS
242 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
243 {NULL, 0, 0},
244};
245
d02b54f6 246static int constant_fits_type_p PARAMS ((tree, tree));
4724b3de 247
0a7ed33c
BS
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;
dff01034 257 const char *file;
0a7ed33c 258 int needs_warning;
8f17b5c5 259 tree if_stmt;
0a7ed33c
BS
260} if_elt;
261
262static if_elt *if_stack;
6d819282
MK
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
8f17b5c5 270/* Record the start of an if-then, and record the start of it
0a7ed33c
BS
271 for ambiguous else detection. */
272
6d819282 273void
8f17b5c5 274c_expand_start_cond (cond, compstmt_count)
6d819282 275 tree cond;
6d819282
MK
276 int compstmt_count;
277{
8f17b5c5
MM
278 tree if_stmt;
279
6d819282
MK
280 /* Make sure there is enough space on the stack. */
281 if (if_stack_space == 0)
282 {
283 if_stack_space = 10;
0a7ed33c 284 if_stack = (if_elt *)xmalloc (10 * sizeof (if_elt));
6d819282
MK
285 }
286 else if (if_stack_space == if_stack_pointer)
287 {
288 if_stack_space += 10;
0a7ed33c 289 if_stack = (if_elt *)xrealloc (if_stack, if_stack_space * sizeof (if_elt));
6d819282 290 }
0a7ed33c 291
8f17b5c5
MM
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
6d819282 296 /* Record this if statement. */
0a7ed33c
BS
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;
8f17b5c5 301 if_stack[if_stack_pointer].if_stmt = if_stmt;
0a7ed33c 302 if_stack_pointer++;
8f17b5c5 303}
6d819282 304
8f17b5c5
MM
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));
6d819282
MK
312}
313
8f17b5c5 314/* Record the end of an if-then. Optionally warn if a nested
0a7ed33c
BS
315 if statement had an ambiguous else clause. */
316
6d819282
MK
317void
318c_expand_end_cond ()
319{
320 if_stack_pointer--;
0a7ed33c
BS
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'");
8f17b5c5 325 last_expr_type = NULL_TREE;
6d819282
MK
326}
327
8f17b5c5 328/* Called between the then-clause and the else-clause
0a7ed33c
BS
329 of an if-then-else. */
330
6d819282
MK
331void
332c_expand_start_else ()
333{
0a7ed33c
BS
334 /* An ambiguous else warning must be generated for the enclosing if
335 statement, unless we see an else branch for that one, too. */
6d819282
MK
336 if (warn_parentheses
337 && if_stack_pointer > 1
0a7ed33c
BS
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--;
8f17b5c5
MM
347}
348
349/* Called after the else-clause for an if-statement is processed. */
6d819282 350
8f17b5c5
MM
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));
6d819282
MK
356}
357
ec5c56db 358/* Push current bindings for the function name VAR_DECLS. */
7da551a2
RS
359
360void
0ba8a114 361start_fname_decls ()
7da551a2 362{
0ba8a114
NS
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;
7da551a2 369
0ba8a114
NS
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
ec5c56db 388 involved. Pop the previous bindings. */
0ba8a114
NS
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 {
ff7cc307 402 /* They were called into existence, so add to statement tree. */
0ba8a114
NS
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)
7da551a2 415 {
ec5c56db 416 /* We had saved values, restore them. */
0ba8a114
NS
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);
7da551a2 427 }
0ba8a114
NS
428 saved_function_name_decls = stack;
429}
430
431/* Return the text name of the current function, suitable prettified
ec5c56db 432 by PRETTY_P. */
0ba8a114
NS
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));
7da551a2 446 else
0ba8a114
NS
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
f63d1bf7 471 this language independent code. */
0ba8a114
NS
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)
7da551a2 487 {
0ba8a114
NS
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
ec5c56db 495 it after the function is complete. */
0ba8a114
NS
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;
7da551a2 504 }
0ba8a114
NS
505 if (!ix && !current_function_decl)
506 pedwarn_with_decl (decl, "`%s' is not defined outside of function scope");
2ce07e2d 507
0ba8a114 508 return decl;
7da551a2
RS
509}
510
b30f223b
RS
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{
b3694847
SS
519 tree value, t;
520 int length = 1;
b30f223b
RS
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;
1326a48b 525 const int nchars_max = flag_isoc99 ? 4095 : 509;
b30f223b
RS
526
527 if (TREE_CHAIN (strings))
528 {
529 /* More than one in the chain, so concatenate. */
b3694847 530 char *p, *q;
b30f223b
RS
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
9aa8a1df
NB
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 }
b30f223b
RS
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
520a57c8 555 p = alloca (length);
b30f223b
RS
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 {
7e2231e7 569 memcpy (q, TREE_STRING_POINTER (t), len);
b30f223b
RS
570 q += len;
571 }
572 else
573 {
b0089a92 574 int i, j;
b30f223b 575 for (i = 0; i < len; i++)
41bbd14e 576 {
b0089a92
DD
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 }
41bbd14e 583 else
b0089a92
DD
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 }
41bbd14e 589 }
b30f223b
RS
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
520a57c8 601 value = build_string (length, p);
b30f223b
RS
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
b57062ca 611 /* Compute the number of elements, for the array type. */
b30f223b
RS
612 nchars = wide_flag ? length / wchar_bytes : length;
613
690c96c8 614 if (pedantic && nchars - 1 > nchars_max && c_language == clk_c)
3220116f 615 pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
690c96c8 616 nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
1326a48b 617
b30f223b
RS
618 /* Create the array type for the string constant.
619 -Wwrite-strings says make the string constant an array of const char
d9cf7c82
JM
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
b30f223b
RS
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)));
d9cf7c82 636
ccd4c832
JM
637 TREE_CONSTANT (value) = 1;
638 TREE_READONLY (value) = ! flag_writable_strings;
b30f223b
RS
639 TREE_STATIC (value) = 1;
640 return value;
641}
642\f
c70eaeaf 643static int is_valid_printf_arglist PARAMS ((tree));
f58e0b0c 644static rtx c_expand_builtin PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier));
c70eaeaf 645static rtx c_expand_builtin_printf PARAMS ((tree, rtx, enum machine_mode,
b4c984fb 646 enum expand_modifier, int, int));
18f988a0 647static rtx c_expand_builtin_fprintf PARAMS ((tree, rtx, enum machine_mode,
b4c984fb 648 enum expand_modifier, int, int));
1ccf251f 649\f
d74154d5
RS
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. */
96571883
BK
655
656void
657constant_expression_warning (value)
658 tree value;
659{
c05f751c
RK
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");
d74154d5
RS
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{
c05f751c
RK
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))
d74154d5 681 {
7193bce2 682 TREE_OVERFLOW (value) = 0;
e78a3b42
RK
683 if (skip_evaluation == 0)
684 warning ("integer overflow in expression");
d74154d5 685 }
c05f751c
RK
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;
e78a3b42
RK
692 if (skip_evaluation == 0)
693 warning ("floating point overflow in expression");
c05f751c 694 }
d74154d5
RS
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))
e78a3b42 709 && skip_evaluation == 0
d74154d5
RS
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. */
90c939d4 714 warning ("large integer implicitly truncated to unsigned type");
d74154d5 715 else if (warn_conversion)
90c939d4 716 warning ("negative integer implicitly converted to unsigned type");
d74154d5
RS
717 }
718}
719
d02b54f6
JJ
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
d74154d5
RS
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 {
7193bce2 745 if (TREE_OVERFLOW (t))
d74154d5 746 {
7193bce2
PE
747 TREE_OVERFLOW (t) = 0;
748
868fc750
RK
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
7193bce2
PE
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))))
22ba338b
RS
757 /* If EXPR fits in the unsigned version of TYPE,
758 don't warn unless pedantic. */
e78a3b42
RK
759 if ((pedantic
760 || TREE_UNSIGNED (type)
d02b54f6 761 || ! constant_fits_type_p (expr, unsigned_type (type)))
e78a3b42 762 && skip_evaluation == 0)
bb72a084 763 warning ("overflow in implicit constant conversion");
d74154d5
RS
764 }
765 else
766 unsigned_conversion_warning (t, expr);
767 }
768 return t;
96571883
BK
769}
770\f
235cfbc4
BS
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;
2683ed8d
BS
788};
789
235cfbc4
BS
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));
2683ed8d
BS
809static void verify_sequence_points PARAMS ((tree));
810
235cfbc4
BS
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. */
2683ed8d
BS
852
853static void
235cfbc4
BS
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
684d9f3b 934/* Return nonzero if X is a tree that can be verified by the sequence point
235cfbc4
BS
935 warnings. */
936static int
937warning_candidate_p (x)
2683ed8d 938 tree x;
2683ed8d 939{
235cfbc4
BS
940 return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
941}
2683ed8d 942
235cfbc4
BS
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. */
2683ed8d 967
235cfbc4
BS
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;
2683ed8d 977
f9e1917e
JM
978 /* X may be NULL if it is the operand of an empty statement expression
979 ({ }). */
980 if (x == NULL)
981 return;
982
235cfbc4
BS
983 restart:
984 code = TREE_CODE (x);
985 class = TREE_CODE_CLASS (code);
2683ed8d 986
235cfbc4 987 if (warning_candidate_p (x))
2683ed8d 988 {
235cfbc4
BS
989 *pno_sp = new_tlist (*pno_sp, x, writer);
990 return;
991 }
992
993 switch (code)
994 {
52a84e42
BS
995 case CONSTRUCTOR:
996 return;
997
235cfbc4
BS
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
2683ed8d
BS
1032 case PREDECREMENT_EXPR:
1033 case PREINCREMENT_EXPR:
1034 case POSTDECREMENT_EXPR:
1035 case POSTINCREMENT_EXPR:
235cfbc4
BS
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;
2683ed8d
BS
1065
1066 case CALL_EXPR:
235cfbc4
BS
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;
2683ed8d
BS
1080
1081 case TREE_LIST:
1082 /* Scan all the list, e.g. indices of multi dimensional array. */
1083 while (x)
1084 {
235cfbc4
BS
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);
2683ed8d
BS
1089 x = TREE_CHAIN (x);
1090 }
235cfbc4 1091 return;
2683ed8d 1092
235cfbc4
BS
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;
2683ed8d 1099
235cfbc4 1100 if (! t)
2683ed8d 1101 {
235cfbc4
BS
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;
2683ed8d 1121 }
235cfbc4
BS
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:
2683ed8d
BS
1127 break;
1128 }
2683ed8d 1129
235cfbc4 1130 if (class == '1')
2683ed8d 1131 {
235cfbc4
BS
1132 if (first_rtl_op (code) == 0)
1133 return;
1134 x = TREE_OPERAND (x, 0);
1135 writer = 0;
1136 goto restart;
2683ed8d
BS
1137 }
1138
235cfbc4 1139 switch (class)
2683ed8d 1140 {
235cfbc4
BS
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 }
2683ed8d 1160 }
2683ed8d
BS
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{
235cfbc4 1170 struct tlist *before_sp = 0, *after_sp = 0;
2683ed8d 1171
235cfbc4
BS
1172 warned_ids = 0;
1173 save_expr_cache = 0;
1174 if (tlist_firstobj == 0)
2683ed8d 1175 {
235cfbc4
BS
1176 gcc_obstack_init (&tlist_obstack);
1177 tlist_firstobj = obstack_alloc (&tlist_obstack, 0);
2683ed8d
BS
1178 }
1179
235cfbc4
BS
1180 verify_tree (expr, &before_sp, &after_sp, 0);
1181 warn_for_collisions (after_sp);
1182 obstack_free (&tlist_obstack, tlist_firstobj);
2683ed8d
BS
1183}
1184
64094f6a 1185tree
b30f223b
RS
1186c_expand_expr_stmt (expr)
1187 tree expr;
1188{
1189 /* Do default conversion if safe and possibly important,
1190 in case within ({...}). */
207bf485
JM
1191 if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1192 && (flag_isoc99 || lvalue_p (expr)))
b30f223b
RS
1193 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
1194 expr = default_conversion (expr);
1195
2683ed8d
BS
1196 if (warn_sequence_point)
1197 verify_sequence_points (expr);
1198
b30f223b 1199 if (TREE_TYPE (expr) != error_mark_node
b8de2d02 1200 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
b30f223b
RS
1201 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
1202 error ("expression statement has incomplete type");
1203
8f17b5c5 1204 last_expr_type = TREE_TYPE (expr);
64094f6a 1205 return add_stmt (build_stmt (EXPR_STMT, expr));
b30f223b
RS
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. */
8493738b 1218 STRIP_TYPE_NOPS (value);
56cb9733
MM
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 }
b30f223b
RS
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
bc690db1
RS
1242 constant_expression_warning (value);
1243
b30f223b
RS
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{
a311b52c
JM
1255 if (bits == TYPE_PRECISION (integer_type_node))
1256 return unsignedp ? unsigned_type_node : integer_type_node;
1257
3fc7e390 1258 if (bits == TYPE_PRECISION (signed_char_type_node))
b30f223b
RS
1259 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1260
3fc7e390 1261 if (bits == TYPE_PRECISION (short_integer_type_node))
b30f223b
RS
1262 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1263
3fc7e390 1264 if (bits == TYPE_PRECISION (long_integer_type_node))
b30f223b
RS
1265 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1266
3fc7e390 1267 if (bits == TYPE_PRECISION (long_long_integer_type_node))
b30f223b
RS
1268 return (unsignedp ? long_long_unsigned_type_node
1269 : long_long_integer_type_node);
1270
835f9b4d
GRK
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
3fc7e390
RS
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
b30f223b
RS
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{
a311b52c
JM
1299 if (mode == TYPE_MODE (integer_type_node))
1300 return unsignedp ? unsigned_type_node : integer_type_node;
1301
b30f223b
RS
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
b30f223b
RS
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
835f9b4d 1314 if (mode == TYPE_MODE (widest_integer_literal_type_node))
d125d268 1315 return unsignedp ? widest_unsigned_literal_type_node
835f9b4d
GRK
1316 : widest_integer_literal_type_node;
1317
0afeef64 1318 if (mode == QImode)
3fc7e390
RS
1319 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1320
0afeef64 1321 if (mode == HImode)
3fc7e390
RS
1322 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1323
0afeef64 1324 if (mode == SImode)
3fc7e390
RS
1325 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1326
0afeef64 1327 if (mode == DImode)
3fc7e390
RS
1328 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1329
21a9616b 1330#if HOST_BITS_PER_WIDE_INT >= 64
a6d7e156
JL
1331 if (mode == TYPE_MODE (intTI_type_node))
1332 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
21a9616b 1333#endif
a6d7e156 1334
b30f223b
RS
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
4061f623 1350#ifdef VECTOR_MODE_SUPPORTED_P
0afeef64
AH
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 }
4061f623
BS
1375#endif
1376
b30f223b
RS
1377 return 0;
1378}
693a6128 1379
ec5c56db 1380/* Return an unsigned type the same as TYPE in other respects. */
693a6128
GRK
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;
d125d268 1463 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
693a6128 1464 return unsignedp ? unsigned_type_node : integer_type_node;
d125d268 1465 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
693a6128 1466 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
d125d268 1467 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
693a6128 1468 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
d125d268 1469 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
693a6128
GRK
1470 return (unsignedp ? long_long_unsigned_type_node
1471 : long_long_integer_type_node);
d125d268 1472 if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
693a6128
GRK
1473 return (unsignedp ? widest_unsigned_literal_type_node
1474 : widest_integer_literal_type_node);
4a063bec
RH
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
693a6128
GRK
1489 return type;
1490}
b30f223b 1491\f
6acfe908
JM
1492/* Return the minimum number of bits needed to represent VALUE in a
1493 signed or unsigned type, UNSIGNEDP says which. */
1494
05bccae2 1495unsigned int
6acfe908
JM
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;
6acfe908 1515 else
05bccae2 1516 log = tree_floor_log2 (value);
6acfe908
JM
1517
1518 return log + 1 + ! unsignedp;
1519}
1520\f
b30f223b
RS
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{
b3694847 1528 const char *opname;
89c78d7d 1529
b30f223b
RS
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:
047de90b 1563 case FLOOR_MOD_EXPR:
b30f223b
RS
1564 opname = "%"; break;
1565 case TRUNC_DIV_EXPR:
047de90b 1566 case FLOOR_DIV_EXPR:
b30f223b
RS
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;
047de90b
RS
1578 case LROTATE_EXPR:
1579 case RROTATE_EXPR:
1580 opname = "rotate"; break;
6d819282
MK
1581 default:
1582 opname = "unknown"; break;
b30f223b
RS
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.
94dccd9d
RS
1590 This function is also responsible for converting the two operands
1591 to the proper common type for comparison.
b30f223b
RS
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{
b3694847 1607 tree type;
b30f223b
RS
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
5af6001b
RK
1634 so value is preserved), for canonicalization. Don't do this if
1635 the second arg is 0. */
b30f223b 1636
5af6001b
RK
1637 if (TREE_CONSTANT (primop0)
1638 && ! integer_zerop (primop1) && ! real_zerop (primop1))
b30f223b 1639 {
b3694847
SS
1640 tree tem = primop0;
1641 int temi = unsignedp0;
b30f223b
RS
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;
6d819282
MK
1669 default:
1670 break;
b30f223b
RS
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));
8bbd5685
CW
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);
b30f223b
RS
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)
a360da3a 1744 val = boolean_true_node;
b30f223b
RS
1745 }
1746 else if (code == EQ_EXPR)
1747 {
1748 if (max_lt || min_gt)
a360da3a 1749 val = boolean_false_node;
b30f223b
RS
1750 }
1751 else if (code == LT_EXPR)
1752 {
1753 if (max_lt)
a360da3a 1754 val = boolean_true_node;
b30f223b 1755 if (!min_lt)
a360da3a 1756 val = boolean_false_node;
b30f223b
RS
1757 }
1758 else if (code == GT_EXPR)
1759 {
1760 if (min_gt)
a360da3a 1761 val = boolean_true_node;
b30f223b 1762 if (!max_gt)
a360da3a 1763 val = boolean_false_node;
b30f223b
RS
1764 }
1765 else if (code == LE_EXPR)
1766 {
1767 if (!max_gt)
a360da3a 1768 val = boolean_true_node;
b30f223b 1769 if (min_gt)
a360da3a 1770 val = boolean_false_node;
b30f223b
RS
1771 }
1772 else if (code == GE_EXPR)
1773 {
1774 if (!min_lt)
a360da3a 1775 val = boolean_true_node;
b30f223b 1776 if (max_lt)
a360da3a 1777 val = boolean_false_node;
b30f223b
RS
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;
6d819282
MK
1807
1808 default:
1809 break;
b30f223b
RS
1810 }
1811 type = unsigned_type (type);
1812 }
1813
b7c9c707 1814 if (!max_gt && !unsignedp0 && TREE_CODE (primop0) != INTEGER_CST)
b30f223b
RS
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. */
a360da3a 1818 if (val == boolean_false_node)
07be2a23 1819 warning ("comparison is always false due to limited range of data type");
a360da3a 1820 if (val == boolean_true_node)
07be2a23 1821 warning ("comparison is always true due to limited range of data type");
b30f223b
RS
1822 }
1823
b7c9c707 1824 if (!min_lt && unsignedp0 && TREE_CODE (primop0) != INTEGER_CST)
b30f223b 1825 {
1e276c4a 1826 /* This is the case of (unsigned char)x >?< -1 or < 0. */
a360da3a 1827 if (val == boolean_false_node)
07be2a23 1828 warning ("comparison is always false due to limited range of data type");
a360da3a 1829 if (val == boolean_true_node)
07be2a23 1830 warning ("comparison is always true due to limited range of data type");
b30f223b
RS
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
766f6c30
RS
1846 && (TYPE_PRECISION (TREE_TYPE (primop0))
1847 == TYPE_PRECISION (TREE_TYPE (primop1))))
b30f223b
RS
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)
597681f6 1882 && TREE_UNSIGNED (*restype_ptr))
b30f223b
RS
1883 {
1884 tree value = 0;
1885 switch (code)
1886 {
1887 case GE_EXPR:
5af6001b
RK
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. */
2c492eef 1892 if (extra_warnings && !in_system_header
5af6001b
RK
1893 && ! (TREE_CODE (primop0) == INTEGER_CST
1894 && ! TREE_OVERFLOW (convert (signed_type (type),
1895 primop0))))
07be2a23 1896 warning ("comparison of unsigned expression >= 0 is always true");
a360da3a 1897 value = boolean_true_node;
b30f223b
RS
1898 break;
1899
1900 case LT_EXPR:
2c492eef 1901 if (extra_warnings && !in_system_header
5af6001b
RK
1902 && ! (TREE_CODE (primop0) == INTEGER_CST
1903 && ! TREE_OVERFLOW (convert (signed_type (type),
1904 primop0))))
07be2a23 1905 warning ("comparison of unsigned expression < 0 is always false");
a360da3a 1906 value = boolean_false_node;
6d819282
MK
1907 break;
1908
1909 default:
1910 break;
b30f223b
RS
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
a360da3a 1927 *restype_ptr = boolean_type_node;
b30f223b
RS
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
a360da3a 1938 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
b30f223b
RS
1939 but we optimize comparisons, &&, ||, and !.
1940
a360da3a 1941 The resulting type should always be `boolean_type_node'. */
b30f223b
RS
1942
1943tree
1944truthvalue_conversion (expr)
1945 tree expr;
1946{
257e61ed
RS
1947 if (TREE_CODE (expr) == ERROR_MARK)
1948 return expr;
1949
d7c83727 1950#if 0 /* This appears to be wrong for C++. */
257e61ed
RS
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");
a360da3a 1957 return boolean_false_node;
257e61ed
RS
1958
1959 case UNION_TYPE:
1960 error ("union type value used where scalar is required");
a360da3a 1961 return boolean_false_node;
257e61ed
RS
1962
1963 case ARRAY_TYPE:
1964 error ("array type value used where scalar is required");
a360da3a 1965 return boolean_false_node;
257e61ed
RS
1966
1967 default:
1968 break;
1969 }
d7c83727 1970#endif /* 0 */
257e61ed 1971
b30f223b
RS
1972 switch (TREE_CODE (expr))
1973 {
b30f223b 1974 case EQ_EXPR:
b30f223b
RS
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:
9379fac9 1980 case TRUTH_XOR_EXPR:
1180eb10 1981 case TRUTH_NOT_EXPR:
a360da3a
JM
1982 TREE_TYPE (expr) = boolean_type_node;
1983 return expr;
18c0f675 1984
b30f223b
RS
1985 case ERROR_MARK:
1986 return expr;
1987
1988 case INTEGER_CST:
a360da3a 1989 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
b30f223b
RS
1990
1991 case REAL_CST:
a360da3a 1992 return real_zerop (expr) ? boolean_false_node : boolean_true_node;
b30f223b
RS
1993
1994 case ADDR_EXPR:
4fe9b91c 1995 /* If we are taking the address of an external decl, it might be zero
fc0c675f 1996 if it is weak, so we cannot optimize. */
2f939d94 1997 if (DECL_P (TREE_OPERAND (expr, 0))
fc0c675f
RK
1998 && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
1999 break;
2000
b30f223b 2001 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 0)))
a360da3a
JM
2002 return build (COMPOUND_EXPR, boolean_type_node,
2003 TREE_OPERAND (expr, 0), boolean_true_node);
b30f223b 2004 else
a360da3a 2005 return boolean_true_node;
b30f223b 2006
766f6c30 2007 case COMPLEX_EXPR:
f0b996c5 2008 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
b839fb3f 2009 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
f0b996c5
RS
2010 truthvalue_conversion (TREE_OPERAND (expr, 0)),
2011 truthvalue_conversion (TREE_OPERAND (expr, 1)),
766f6c30
RS
2012 0);
2013
b30f223b
RS
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)))
a360da3a 2026 return build (COMPOUND_EXPR, boolean_type_node, TREE_OPERAND (expr, 1),
b30f223b
RS
2027 truthvalue_conversion (TREE_OPERAND (expr, 0)));
2028 else
2029 return truthvalue_conversion (TREE_OPERAND (expr, 0));
b57062ca 2030
b30f223b
RS
2031 case COND_EXPR:
2032 /* Distribute the conversion into the arms of a COND_EXPR. */
a360da3a 2033 return fold (build (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
b30f223b
RS
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;
0f41302f 2043 /* fall through... */
b30f223b
RS
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
b30f223b 2051 case MINUS_EXPR:
f87550e0
JW
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;
0f41302f 2057 /* fall through... */
f87550e0 2058 case BIT_XOR_EXPR:
d7c83727 2059 /* This and MINUS_EXPR can be changed into a comparison of the
f87550e0 2060 two objects. */
b30f223b
RS
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);
e2aab13d 2069
fb48b1f0 2070 case BIT_AND_EXPR:
58cee643
RK
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;
fb48b1f0 2076
e2aab13d
RS
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;
b57062ca 2081
6d819282
MK
2082 default:
2083 break;
b30f223b
RS
2084 }
2085
f0b996c5 2086 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
f0b8d9aa
AS
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 }
f0b996c5 2096
b30f223b
RS
2097 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2098}
2099\f
fc2aaf30
JM
2100static tree builtin_function_2 PARAMS ((const char *, const char *, tree, tree,
2101 int, enum built_in_class, int, int,
2102 int));
2103
0b73773c
NH
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
3932261a 2108c_build_qualified_type (type, type_quals)
0b73773c 2109 tree type;
3932261a 2110 int type_quals;
0b73773c 2111{
3932261a
MM
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
0b73773c 2127 if (TREE_CODE (type) == ARRAY_TYPE)
3932261a
MM
2128 return build_array_type (c_build_qualified_type (TREE_TYPE (type),
2129 type_quals),
3ab1999b 2130 TYPE_DOMAIN (type));
3932261a
MM
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{
a6496605
MM
2141 if ((type_quals & TYPE_QUAL_CONST)
2142 || (TREE_TYPE (decl)
2143 && TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE))
3932261a
MM
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 }
6946bc60 2150 if (type_quals & TYPE_QUAL_RESTRICT)
3932261a 2151 {
6946bc60
MM
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)
3c5ad1ff
RK
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;
3932261a
MM
2161 }
2162}
2163
41472af8
MM
2164
2165/* Return the typed-based alias set for T, which may be an expression
3bdf5ad1 2166 or a type. Return -1 if we don't do anything special. */
41472af8 2167
3bdf5ad1 2168HOST_WIDE_INT
8ac61af7 2169c_common_get_alias_set (t)
41472af8
MM
2170 tree t;
2171{
08bc2431 2172 tree u;
604bb87d
DB
2173
2174 /* We know nothing about vector types */
2175 if (TREE_CODE (t) == VECTOR_TYPE)
2176 return 0;
2177
08bc2431
MM
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;
ece32014 2190
3bdf5ad1 2191 /* If this is a char *, the ANSI C standard says it can alias
f824e5c3
RK
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))
3bdf5ad1 2196 return 0;
3932261a 2197
3bdf5ad1
RK
2198 /* That's all the expressions we handle specially. */
2199 if (! TYPE_P (t))
2200 return -1;
41472af8 2201
f824e5c3
RK
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))
8f215dce
JJ
2206 {
2207 tree t1 = signed_type (t);
f824e5c3 2208
8f215dce
JJ
2209 /* t1 == t can happen for boolean nodes which are always unsigned. */
2210 if (t1 != t)
2211 return get_alias_set (t1);
2212 }
3bdf5ad1 2213 else if (POINTER_TYPE_P (t))
02af3af6 2214 {
3bdf5ad1 2215 tree t1;
02af3af6
MS
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.
d125d268 2221
b61148dd
MM
2222 Technically, this approach is actually more conservative that
2223 it needs to be. In particular, `const int *' and `int *'
684d9f3b 2224 should be in different alias sets, according to the C and C++
b61148dd
MM
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;
68981e3a 2234 const int* const* cipp = &ipp;
b61148dd
MM
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. */
12e1243e 2240 t1 = build_type_no_quals (t);
3bdf5ad1
RK
2241 if (t1 != t)
2242 return get_alias_set (t1);
02af3af6 2243 }
ece32014 2244
3bdf5ad1 2245 return -1;
41472af8 2246}
0213a355
JM
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). */
7f4edbcb 2284
0213a355
JM
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
2301 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
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
2311 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
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
6431177a
JM
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{
80a497e4
JM
2333 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
2334 { "format", 3, 3, false, true, true,
6431177a 2335 handle_format_attribute },
80a497e4 2336 { "format_arg", 1, 1, false, true, true,
6431177a
JM
2337 handle_format_arg_attribute },
2338 { NULL, 0, 0, false, false, false, NULL }
2339};
2340
7f4edbcb 2341/* Build tree nodes and builtin functions common to both C and C++ language
6bcedb4e 2342 frontends. */
3bdf5ad1 2343
7f4edbcb 2344void
6bcedb4e 2345c_common_nodes_and_builtins ()
7f4edbcb 2346{
10841285
MM
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
2375 tree builtin_types[(int)BT_LAST];
eaa7c03f
JM
2376 int wchar_type_size;
2377 tree array_domain_type;
7f4edbcb
BS
2378 /* Either char* or void*. */
2379 tree traditional_ptr_type_node;
4b2a62db
KG
2380 /* Either const char* or const void*. */
2381 tree traditional_cptr_type_node;
2382 tree traditional_len_type_node;
9f720c3e 2383 tree va_list_ref_type_node;
daf68dd7 2384 tree va_list_arg_type_node;
d3707adb 2385
6431177a 2386 /* We must initialize this before any builtin functions (which might have
4d6baafa 2387 attributes) are declared. (c_common_init is too late.) */
6431177a
JM
2388 format_attribute_table = c_format_attribute_table;
2389
eaa7c03f 2390 /* Define `int' and `char' first so that dbx will output them first. */
6496a589 2391 record_builtin_type (RID_INT, NULL, integer_type_node);
eaa7c03f
JM
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)
6496a589 2398 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
eaa7c03f
JM
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
6496a589
KG
2462 record_builtin_type (RID_FLOAT, NULL, float_type_node);
2463 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
eaa7c03f
JM
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
6496a589 2475 record_builtin_type (RID_VOID, NULL, void_type_node);
eaa7c03f 2476
10841285
MM
2477 void_zero_node = build_int_2 (0, 0);
2478 TREE_TYPE (void_zero_node) = void_type_node;
2479
eaa7c03f
JM
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
10841285
MM
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
f6155fda 2511 (*targetm.init_builtins) ();
eaa7c03f
JM
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
5fd8e536
JM
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
d3707adb
RH
2550 pushdecl (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
2551 va_list_type_node));
daf68dd7 2552
29ae8f10
GRK
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
daf68dd7 2559 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
9f720c3e
GK
2560 {
2561 va_list_arg_type_node = va_list_ref_type_node =
2562 build_pointer_type (TREE_TYPE (va_list_type_node));
2563 }
daf68dd7 2564 else
9f720c3e
GK
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
6bcedb4e
MM
2570 traditional_len_type_node = ((flag_traditional &&
2571 c_language != clk_cplusplus)
4b2a62db 2572 ? integer_type_node : sizetype);
7f4edbcb 2573
10841285
MM
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], \
ad3fd36f
KG
2628 NULL_TREE));
2629
10841285
MM
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
52a11cbf 2682
796cdb65 2683 /* Declare _exit and _Exit just to mark them as non-returning. */
10841285
MM
2684 builtin_function_2 (NULL, "_exit", NULL_TREE,
2685 builtin_types[BT_FN_VOID_INT],
fc2aaf30 2686 0, NOT_BUILT_IN, 0, 1, 1);
10841285
MM
2687 builtin_function_2 (NULL, "_Exit", NULL_TREE,
2688 builtin_types[BT_FN_VOID_INT],
796cdb65 2689 0, NOT_BUILT_IN, 0, !flag_isoc99, 1);
fc2aaf30 2690
fc2aaf30
JM
2691 /* Declare these functions non-returning
2692 to avoid spurious "control drops through" warnings. */
6496a589 2693 builtin_function_2 (NULL, "abort",
fc2aaf30 2694 NULL_TREE, ((c_language == clk_cplusplus)
10841285
MM
2695 ? builtin_types[BT_FN_VOID]
2696 : builtin_types[BT_FN_VOID_VAR]),
fc2aaf30
JM
2697 0, NOT_BUILT_IN, 0, 0, 1);
2698
6496a589 2699 builtin_function_2 (NULL, "exit",
fc2aaf30 2700 NULL_TREE, ((c_language == clk_cplusplus)
10841285
MM
2701 ? builtin_types[BT_FN_VOID_INT]
2702 : builtin_types[BT_FN_VOID_VAR]),
fc2aaf30 2703 0, NOT_BUILT_IN, 0, 0, 1);
7f4edbcb 2704
5b47282c
GM
2705 main_identifier_node = get_identifier ("main");
2706
c530479e
RH
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;
7f4edbcb 2710}
d3707adb
RH
2711
2712tree
2713build_va_arg (expr, type)
2714 tree expr, type;
2715{
2716 return build1 (VA_ARG_EXPR, type, expr);
2717}
fc2aaf30
JM
2718
2719
7d14c755
JM
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
fc2aaf30
JM
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,
6496a589 2800 class, library_name_p ? name : NULL);
fc2aaf30
JM
2801 if (noreturn_p)
2802 {
2803 TREE_THIS_VOLATILE (bdecl) = 1;
2804 TREE_SIDE_EFFECTS (bdecl) = 1;
2805 }
2806 }
7d14c755
JM
2807 if (name != 0 && !flag_no_builtin && !builtin_function_disabled_p (name)
2808 && !(nonansi_p && flag_no_nonansi_builtin))
fc2aaf30 2809 {
6496a589 2810 decl = builtin_function (name, type, function_code, class, NULL);
fc2aaf30
JM
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}
c530479e 2821\f
d72040f5
RH
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
c6c04fca
RL
2836 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
2837 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
d72040f5
RH
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
c530479e
RH
2853/* Given a type, apply default promotions wrt unnamed function arguments
2854 and return the new type. Return NULL_TREE if no change. */
d125d268 2855/* ??? There is a function of the same name in the C++ front end that
c530479e 2856 does something similar, but is more thorough and does not return NULL
d125d268 2857 if no change. We could perhaps share code, but it would make the
c530479e
RH
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
d72040f5 2867 if (c_promoting_integer_type_p (type))
c530479e
RH
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{
b3694847 2888 tree t;
c530479e
RH
2889 for (t = parms; t; t = TREE_CHAIN (t))
2890 {
b3694847 2891 tree type = TREE_VALUE (t);
7e8176d7 2892
c530479e
RH
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
d72040f5 2902 if (c_promoting_integer_type_p (type))
c530479e
RH
2903 return 0;
2904 }
2905 return 1;
2906}
5eda3d66 2907
0a7394bc
MM
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
5eda3d66
RH
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:
10841285
MM
2941 case BUILT_IN_LABS:
2942 case BUILT_IN_LLABS:
2943 case BUILT_IN_IMAXABS:
5eda3d66 2944 case BUILT_IN_FABS:
10841285
MM
2945 case BUILT_IN_FABSL:
2946 case BUILT_IN_FABSF:
5eda3d66
RH
2947 if (coerced_params == 0)
2948 return integer_zero_node;
2949 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
2950
341e3d11 2951 case BUILT_IN_CONJ:
10841285
MM
2952 case BUILT_IN_CONJF:
2953 case BUILT_IN_CONJL:
341e3d11
JM
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:
10841285
MM
2959 case BUILT_IN_CREALF:
2960 case BUILT_IN_CREALL:
341e3d11
JM
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:
10841285
MM
2966 case BUILT_IN_CIMAGF:
2967 case BUILT_IN_CIMAGL:
341e3d11
JM
2968 if (coerced_params == 0)
2969 return integer_zero_node;
2970 return build_unary_op (IMAGPART_EXPR, TREE_VALUE (coerced_params), 0);
2971
5eda3d66
RH
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}
c7d87c0a 3046
ae499cce
MM
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:
8f17b5c5 3065 case SCOPE_STMT:
ae499cce
MM
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
86306c8e 3080/* Walk the statement tree, rooted at *tp. Apply FUNC to all the
ae499cce
MM
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
ae499cce
MM
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
87aee676
DN
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 }
ae499cce
MM
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
8f17b5c5
MM
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
15b732b2
NB
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
8f17b5c5
MM
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)
69dcadff 3381 struct c_lang_decl *c ATTRIBUTE_UNUSED;
8f17b5c5 3382{
8f17b5c5
MM
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 ();
b0ca54af 3420 rtl_expr = expand_start_stmt_expr ();
8f17b5c5
MM
3421 expand_stmt (STMT_EXPR_STMT (exp));
3422 expand_end_stmt_expr (rtl_expr);
3423 result = expand_expr (rtl_expr, target, tmode, modifier);
3424 pop_temp_slots ();
3425 return result;
3426 }
3427 break;
3428
c70eaeaf
KG
3429 case CALL_EXPR:
3430 {
3431 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
3432 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3433 == FUNCTION_DECL)
3434 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3435 && (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3436 == BUILT_IN_FRONTEND))
3437 return c_expand_builtin (exp, target, tmode, modifier);
3438 else
3439 abort();
3440 }
3441 break;
3442
db3acfa5
JM
3443 case COMPOUND_LITERAL_EXPR:
3444 {
3445 /* Initialize the anonymous variable declared in the compound
3446 literal, then return the variable. */
3447 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
3448 emit_local_var (decl);
3449 return expand_expr (decl, target, tmode, modifier);
3450 }
3451
8f17b5c5
MM
3452 default:
3453 abort ();
3454 }
3455
3456 abort ();
3457 return NULL;
3458}
3459
3460/* Hook used by safe_from_p to handle language-specific tree codes. */
3461
3462int
3463c_safe_from_p (target, exp)
3464 rtx target;
3465 tree exp;
3466{
3467 /* We can see statements here when processing the body of a
3468 statement-expression. For a declaration statement declaring a
3469 variable, look at the variable's initializer. */
3470 if (TREE_CODE (exp) == DECL_STMT)
3471 {
3472 tree decl = DECL_STMT_DECL (exp);
3473
3474 if (TREE_CODE (decl) == VAR_DECL
3475 && DECL_INITIAL (decl)
3476 && !safe_from_p (target, DECL_INITIAL (decl), /*top_p=*/0))
3477 return 0;
3478 }
3479
3480 /* For any statement, we must follow the statement-chain. */
3481 if (statement_code_p (TREE_CODE (exp)) && TREE_CHAIN (exp))
3482 return safe_from_p (target, TREE_CHAIN (exp), /*top_p=*/0);
3483
3484 /* Assume everything else is safe. */
3485 return 1;
3486}
3487
3fe30ff6
RH
3488/* Hook used by unsafe_for_reeval to handle language-specific tree codes. */
3489
3490int
3491c_unsafe_for_reeval (exp)
3492 tree exp;
3493{
3494 /* Statement expressions may not be reevaluated. */
3495 if (TREE_CODE (exp) == STMT_EXPR)
3496 return 2;
3497
3498 /* Walk all other expressions. */
3499 return -1;
3500}
3501
db3acfa5
JM
3502/* Hook used by staticp to handle language-specific tree codes. */
3503
3504int
3505c_staticp (exp)
3506 tree exp;
3507{
3508 if (TREE_CODE (exp) == COMPOUND_LITERAL_EXPR
3509 && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp)))
3510 return 1;
3511 return 0;
3512}
3513
ec5c56db 3514/* Tree code classes. */
c7d87c0a
BC
3515
3516#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
3517
8b60264b 3518static const char c_tree_code_type[] = {
c7d87c0a
BC
3519 'x',
3520#include "c-common.def"
3521};
3522#undef DEFTREECODE
3523
3524/* Table indexed by tree code giving number of expression
3525 operands beyond the fixed part of the node structure.
3526 Not used for types or decls. */
3527
3528#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
3529
8b60264b 3530static const int c_tree_code_length[] = {
c7d87c0a
BC
3531 0,
3532#include "c-common.def"
3533};
3534#undef DEFTREECODE
3535
3536/* Names of tree components.
3537 Used for printing out the tree and error messages. */
3538#define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
3539
27c38fbe 3540static const char *const c_tree_code_name[] = {
c7d87c0a
BC
3541 "@@dummy",
3542#include "c-common.def"
3543};
3544#undef DEFTREECODE
3545
3546/* Adds the tree codes specific to the C front end to the list of all
ec5c56db 3547 tree codes. */
c7d87c0a
BC
3548
3549void
5538e30f 3550add_c_tree_codes ()
c7d87c0a
BC
3551{
3552 memcpy (tree_code_type + (int) LAST_AND_UNUSED_TREE_CODE,
3553 c_tree_code_type,
3554 (int)LAST_C_TREE_CODE - (int)LAST_AND_UNUSED_TREE_CODE);
3555 memcpy (tree_code_length + (int) LAST_AND_UNUSED_TREE_CODE,
3556 c_tree_code_length,
3557 (LAST_C_TREE_CODE - (int)LAST_AND_UNUSED_TREE_CODE) * sizeof (int));
3558 memcpy (tree_code_name + (int) LAST_AND_UNUSED_TREE_CODE,
3559 c_tree_code_name,
3560 (LAST_C_TREE_CODE - (int)LAST_AND_UNUSED_TREE_CODE) * sizeof (char *));
3fe30ff6 3561 lang_unsafe_for_reeval = c_unsafe_for_reeval;
c7d87c0a 3562}
c70eaeaf
KG
3563
3564#define CALLED_AS_BUILT_IN(NODE) \
3565 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
3566
3567static rtx
3568c_expand_builtin (exp, target, tmode, modifier)
3569 tree exp;
3570 rtx target;
3571 enum machine_mode tmode;
3572 enum expand_modifier modifier;
3573{
3574 tree type = TREE_TYPE (exp);
3575 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
3576 tree arglist = TREE_OPERAND (exp, 1);
3577 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
3578 enum tree_code code = TREE_CODE (exp);
3579 const int ignore = (target == const0_rtx
3580 || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
3581 || code == CONVERT_EXPR || code == REFERENCE_EXPR
3582 || code == COND_EXPR)
3583 && TREE_CODE (type) == VOID_TYPE));
3584
3585 if (! optimize && ! CALLED_AS_BUILT_IN (fndecl))
3586 return expand_call (exp, target, ignore);
3587
3588 switch (fcode)
3589 {
3590 case BUILT_IN_PRINTF:
3591 target = c_expand_builtin_printf (arglist, target, tmode,
b4c984fb
KG
3592 modifier, ignore,/*unlocked=*/ 0);
3593 if (target)
3594 return target;
3595 break;
3596
3597 case BUILT_IN_PRINTF_UNLOCKED:
3598 target = c_expand_builtin_printf (arglist, target, tmode,
3599 modifier, ignore,/*unlocked=*/ 1);
c70eaeaf
KG
3600 if (target)
3601 return target;
3602 break;
3603
18f988a0
KG
3604 case BUILT_IN_FPRINTF:
3605 target = c_expand_builtin_fprintf (arglist, target, tmode,
b4c984fb
KG
3606 modifier, ignore,/*unlocked=*/ 0);
3607 if (target)
3608 return target;
3609 break;
3610
3611 case BUILT_IN_FPRINTF_UNLOCKED:
3612 target = c_expand_builtin_fprintf (arglist, target, tmode,
3613 modifier, ignore,/*unlocked=*/ 1);
18f988a0
KG
3614 if (target)
3615 return target;
3616 break;
3617
c70eaeaf
KG
3618 default: /* just do library call, if unknown builtin */
3619 error ("built-in function `%s' not currently supported",
3620 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
3621 }
3622
3623 /* The switch statement above can drop through to cause the function
3624 to be called normally. */
3625 return expand_call (exp, target, ignore);
3626}
3627
3628/* Check an arglist to *printf for problems. The arglist should start
3629 at the format specifier, with the remaining arguments immediately
ec5c56db 3630 following it. */
c70eaeaf
KG
3631static int
3632is_valid_printf_arglist (arglist)
3633 tree arglist;
3634{
ec5c56db 3635 /* Save this value so we can restore it later. */
c70eaeaf
KG
3636 const int SAVE_pedantic = pedantic;
3637 int diagnostic_occurred = 0;
80a497e4 3638 tree attrs;
c70eaeaf
KG
3639
3640 /* Set this to a known value so the user setting won't affect code
3641 generation. */
3642 pedantic = 1;
ec5c56db 3643 /* Check to make sure there are no format specifier errors. */
80a497e4
JM
3644 attrs = tree_cons (get_identifier ("format"),
3645 tree_cons (NULL_TREE,
3646 get_identifier ("printf"),
3647 tree_cons (NULL_TREE,
3648 integer_one_node,
3649 tree_cons (NULL_TREE,
3650 build_int_2 (2, 0),
3651 NULL_TREE))),
3652 NULL_TREE);
3653 check_function_format (&diagnostic_occurred, attrs, arglist);
c70eaeaf 3654
ec5c56db 3655 /* Restore the value of `pedantic'. */
c70eaeaf
KG
3656 pedantic = SAVE_pedantic;
3657
3658 /* If calling `check_function_format_ptr' produces a warning, we
ec5c56db 3659 return false, otherwise we return true. */
c70eaeaf
KG
3660 return ! diagnostic_occurred;
3661}
3662
3663/* If the arguments passed to printf are suitable for optimizations,
ec5c56db 3664 we attempt to transform the call. */
c70eaeaf 3665static rtx
b4c984fb 3666c_expand_builtin_printf (arglist, target, tmode, modifier, ignore, unlocked)
c70eaeaf
KG
3667 tree arglist;
3668 rtx target;
3669 enum machine_mode tmode;
3670 enum expand_modifier modifier;
3671 int ignore;
b4c984fb 3672 int unlocked;
c70eaeaf 3673{
b4c984fb
KG
3674 tree fn_putchar = unlocked ?
3675 built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED] : built_in_decls[BUILT_IN_PUTCHAR];
3676 tree fn_puts = unlocked ?
3677 built_in_decls[BUILT_IN_PUTS_UNLOCKED] : built_in_decls[BUILT_IN_PUTS];
c70eaeaf
KG
3678 tree fn, format_arg, stripped_string;
3679
3680 /* If the return value is used, or the replacement _DECL isn't
ec5c56db 3681 initialized, don't do the transformation. */
c70eaeaf
KG
3682 if (!ignore || !fn_putchar || !fn_puts)
3683 return 0;
3684
ec5c56db 3685 /* Verify the required arguments in the original call. */
c70eaeaf
KG
3686 if (arglist == 0
3687 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE))
3688 return 0;
3689
ec5c56db 3690 /* Check the specifier vs. the parameters. */
c70eaeaf
KG
3691 if (!is_valid_printf_arglist (arglist))
3692 return 0;
3693
3694 format_arg = TREE_VALUE (arglist);
3695 stripped_string = format_arg;
3696 STRIP_NOPS (stripped_string);
3697 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
3698 stripped_string = TREE_OPERAND (stripped_string, 0);
3699
3700 /* If the format specifier isn't a STRING_CST, punt. */
3701 if (TREE_CODE (stripped_string) != STRING_CST)
3702 return 0;
3703
3704 /* OK! We can attempt optimization. */
3705
ec5c56db 3706 /* If the format specifier was "%s\n", call __builtin_puts(arg2). */
c70eaeaf
KG
3707 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s\n") == 0)
3708 {
3709 arglist = TREE_CHAIN (arglist);
3710 fn = fn_puts;
3711 }
ec5c56db 3712 /* If the format specifier was "%c", call __builtin_putchar (arg2). */
c70eaeaf
KG
3713 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
3714 {
3715 arglist = TREE_CHAIN (arglist);
3716 fn = fn_putchar;
3717 }
3718 else
3719 {
ec5c56db 3720 /* We can't handle anything else with % args or %% ... yet. */
c70eaeaf
KG
3721 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
3722 return 0;
3723
3724 /* If the resulting constant string has a length of 1, call
3725 putchar. Note, TREE_STRING_LENGTH includes the terminating
3726 NULL in its count. */
3727 if (TREE_STRING_LENGTH (stripped_string) == 2)
3728 {
3729 /* Given printf("c"), (where c is any one character,)
3730 convert "c"[0] to an int and pass that to the replacement
ec5c56db 3731 function. */
c70eaeaf
KG
3732 arglist = build_int_2 (TREE_STRING_POINTER (stripped_string)[0], 0);
3733 arglist = build_tree_list (NULL_TREE, arglist);
3734
3735 fn = fn_putchar;
3736 }
3737 /* If the resulting constant was "string\n", call
3738 __builtin_puts("string"). Ensure "string" has at least one
3739 character besides the trailing \n. Note, TREE_STRING_LENGTH
3740 includes the terminating NULL in its count. */
3741 else if (TREE_STRING_LENGTH (stripped_string) > 2
3742 && TREE_STRING_POINTER (stripped_string)
3743 [TREE_STRING_LENGTH (stripped_string) - 2] == '\n')
3744 {
3745 /* Create a NULL-terminated string that's one char shorter
3746 than the original, stripping off the trailing '\n'. */
3747 const int newlen = TREE_STRING_LENGTH (stripped_string) - 1;
3748 char *newstr = (char *) alloca (newlen);
3749 memcpy (newstr, TREE_STRING_POINTER (stripped_string), newlen - 1);
3750 newstr[newlen - 1] = 0;
3751
1092710d 3752 arglist = combine_strings (build_string (newlen, newstr));
c70eaeaf
KG
3753 arglist = build_tree_list (NULL_TREE, arglist);
3754 fn = fn_puts;
3755 }
3756 else
3757 /* We'd like to arrange to call fputs(string) here, but we
3758 need stdout and don't have a way to get it ... yet. */
3759 return 0;
3760 }
3761
3762 return expand_expr (build_function_call (fn, arglist),
3763 (ignore ? const0_rtx : target),
3764 tmode, modifier);
3765}
18f988a0
KG
3766
3767/* If the arguments passed to fprintf are suitable for optimizations,
ec5c56db 3768 we attempt to transform the call. */
18f988a0 3769static rtx
b4c984fb 3770c_expand_builtin_fprintf (arglist, target, tmode, modifier, ignore, unlocked)
18f988a0
KG
3771 tree arglist;
3772 rtx target;
3773 enum machine_mode tmode;
3774 enum expand_modifier modifier;
3775 int ignore;
b4c984fb 3776 int unlocked;
18f988a0 3777{
b4c984fb
KG
3778 tree fn_fputc = unlocked ?
3779 built_in_decls[BUILT_IN_FPUTC_UNLOCKED] : built_in_decls[BUILT_IN_FPUTC];
3780 tree fn_fputs = unlocked ?
3781 built_in_decls[BUILT_IN_FPUTS_UNLOCKED] : built_in_decls[BUILT_IN_FPUTS];
18f988a0
KG
3782 tree fn, format_arg, stripped_string;
3783
3784 /* If the return value is used, or the replacement _DECL isn't
ec5c56db 3785 initialized, don't do the transformation. */
18f988a0
KG
3786 if (!ignore || !fn_fputc || !fn_fputs)
3787 return 0;
3788
ec5c56db 3789 /* Verify the required arguments in the original call. */
18f988a0
KG
3790 if (arglist == 0
3791 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE)
3792 || (TREE_CHAIN (arglist) == 0)
3793 || (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (arglist)))) !=
3794 POINTER_TYPE))
3795 return 0;
3796
ec5c56db 3797 /* Check the specifier vs. the parameters. */
18f988a0
KG
3798 if (!is_valid_printf_arglist (TREE_CHAIN (arglist)))
3799 return 0;
3800
3801 format_arg = TREE_VALUE (TREE_CHAIN (arglist));
3802 stripped_string = format_arg;
3803 STRIP_NOPS (stripped_string);
3804 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
3805 stripped_string = TREE_OPERAND (stripped_string, 0);
3806
3807 /* If the format specifier isn't a STRING_CST, punt. */
3808 if (TREE_CODE (stripped_string) != STRING_CST)
3809 return 0;
3810
3811 /* OK! We can attempt optimization. */
3812
ec5c56db 3813 /* If the format specifier was "%s", call __builtin_fputs(arg3, arg1). */
18f988a0
KG
3814 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s") == 0)
3815 {
3816 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
3817 arglist = tree_cons (NULL_TREE,
3818 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
3819 newarglist);
3820 fn = fn_fputs;
3821 }
ec5c56db 3822 /* If the format specifier was "%c", call __builtin_fputc (arg3, arg1). */
18f988a0
KG
3823 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
3824 {
3825 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
3826 arglist = tree_cons (NULL_TREE,
3827 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
3828 newarglist);
3829 fn = fn_fputc;
3830 }
3831 else
3832 {
ec5c56db 3833 /* We can't handle anything else with % args or %% ... yet. */
18f988a0
KG
3834 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
3835 return 0;
3836
3837 /* When "string" doesn't contain %, replace all cases of
3838 fprintf(stream,string) with fputs(string,stream). The fputs
3839 builtin will take take of special cases like length==1. */
3840 arglist = tree_cons (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)),
3841 build_tree_list (NULL_TREE, TREE_VALUE (arglist)));
3842 fn = fn_fputs;
3843 }
3844
3845 return expand_expr (build_function_call (fn, arglist),
3846 (ignore ? const0_rtx : target),
3847 tmode, modifier);
3848}
19552aa5
JM
3849\f
3850
3851/* Given a boolean expression ARG, return a tree representing an increment
3852 or decrement (as indicated by CODE) of ARG. The front end must check for
3853 invalid cases (e.g., decrement in C++). */
3854tree
3855boolean_increment (code, arg)
3856 enum tree_code code;
3857 tree arg;
3858{
3859 tree val;
3860 tree true_res = (c_language == clk_cplusplus
3861 ? boolean_true_node
3862 : c_bool_true_node);
3863 arg = stabilize_reference (arg);
3864 switch (code)
3865 {
3866 case PREINCREMENT_EXPR:
3867 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
3868 break;
3869 case POSTINCREMENT_EXPR:
3870 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
3871 arg = save_expr (arg);
3872 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
3873 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
3874 break;
3875 case PREDECREMENT_EXPR:
3876 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
3877 break;
3878 case POSTDECREMENT_EXPR:
3879 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
3880 arg = save_expr (arg);
3881 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
3882 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
3883 break;
3884 default:
3885 abort ();
3886 }
3887 TREE_SIDE_EFFECTS (val) = 1;
3888 return val;
3889}
03dc0325 3890\f
6431177a
JM
3891/* Handle C and C++ default attributes. */
3892
3893enum built_in_attribute
3894{
3895#define DEF_ATTR_NULL_TREE(ENUM) ENUM,
3896#define DEF_ATTR_INT(ENUM, VALUE) ENUM,
3897#define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
3898#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
3899#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No entry needed in enum. */
3900#include "builtin-attrs.def"
3901#undef DEF_ATTR_NULL_TREE
3902#undef DEF_ATTR_INT
3903#undef DEF_ATTR_IDENT
3904#undef DEF_ATTR_TREE_LIST
3905#undef DEF_FN_ATTR
3906 ATTR_LAST
bb9f8221
RK
3907};
3908
6431177a
JM
3909static tree built_in_attributes[(int) ATTR_LAST];
3910
3911static bool c_attrs_initialized = false;
3912
3913static void c_init_attributes PARAMS ((void));
3914
4d6baafa
NB
3915/* Common initialization before parsing options. */
3916void
3917c_common_init_options (lang)
3918 enum c_language_kind lang;
03dc0325 3919{
4d6baafa
NB
3920 c_language = lang;
3921 parse_in = cpp_create_reader (lang == clk_c ? CLK_GNUC89:
3922 lang == clk_cplusplus ? CLK_GNUCXX: CLK_OBJC);
f5e99456 3923
4d6baafa
NB
3924 /* Mark as "unspecified" (see c_common_post_options). */
3925 flag_bounds_check = -1;
3926}
3927
3928/* Post-switch processing. */
3929void
3930c_common_post_options ()
3931{
3932 cpp_post_options (parse_in);
3933
3934 /* Use tree inlining if possible. Function instrumentation is only
3935 done in the RTL level, so we disable tree inlining. */
3936 if (! flag_instrument_function_entry_exit)
3937 {
3938 if (!flag_no_inline)
3939 {
3940 flag_inline_trees = 1;
3941 flag_no_inline = 1;
3942 }
3943 if (flag_inline_functions)
3944 {
3945 flag_inline_trees = 2;
3946 flag_inline_functions = 0;
3947 }
3948 }
f5e99456 3949
03dc0325 3950 /* If still "unspecified", make it match -fbounded-pointers. */
4d6baafa 3951 if (flag_bounds_check == -1)
03dc0325
JM
3952 flag_bounds_check = flag_bounded_pointers;
3953
3954 /* Special format checking options don't work without -Wformat; warn if
3955 they are used. */
3956 if (warn_format_y2k && !warn_format)
3957 warning ("-Wformat-y2k ignored without -Wformat");
3958 if (warn_format_extra_args && !warn_format)
3959 warning ("-Wformat-extra-args ignored without -Wformat");
3960 if (warn_format_nonliteral && !warn_format)
3961 warning ("-Wformat-nonliteral ignored without -Wformat");
3962 if (warn_format_security && !warn_format)
3963 warning ("-Wformat-security ignored without -Wformat");
3964 if (warn_missing_format_attribute && !warn_format)
3965 warning ("-Wmissing-format-attribute ignored without -Wformat");
4d6baafa
NB
3966}
3967
3968/* Front end initialization common to C, ObjC and C++. */
3969const char *
3970c_common_init (filename)
3971 const char *filename;
3972{
3973 /* Do this before initializing pragmas, as then cpplib's hash table
3974 has been set up. */
3975 filename = init_c_lex (filename);
3976
3977 init_pragma ();
6431177a
JM
3978
3979 if (!c_attrs_initialized)
3980 c_init_attributes ();
f5e99456
NB
3981
3982 return filename;
6431177a
JM
3983}
3984
22703ccc
NB
3985/* Common finish hook for the C, ObjC and C++ front ends. */
3986void
3987c_common_finish ()
3988{
3989 cpp_finish (parse_in);
3990
3991 /* For performance, avoid tearing down cpplib's internal structures.
3992 Call cpp_errors () instead of cpp_destroy (). */
3993 errorcount += cpp_errors (parse_in);
3994}
3995
6431177a
JM
3996static void
3997c_init_attributes ()
3998{
3999 /* Fill in the built_in_attributes array. */
4000#define DEF_ATTR_NULL_TREE(ENUM) \
4001 built_in_attributes[(int) ENUM] = NULL_TREE;
4002#define DEF_ATTR_INT(ENUM, VALUE) \
4003 built_in_attributes[(int) ENUM] = build_int_2 (VALUE, VALUE < 0 ? -1 : 0);
4004#define DEF_ATTR_IDENT(ENUM, STRING) \
4005 built_in_attributes[(int) ENUM] = get_identifier (STRING);
4006#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
4007 built_in_attributes[(int) ENUM] \
4008 = tree_cons (built_in_attributes[(int) PURPOSE], \
4009 built_in_attributes[(int) VALUE], \
4010 built_in_attributes[(int) CHAIN]);
4011#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No initialization needed. */
4012#include "builtin-attrs.def"
4013#undef DEF_ATTR_NULL_TREE
4014#undef DEF_ATTR_INT
4015#undef DEF_ATTR_IDENT
4016#undef DEF_ATTR_TREE_LIST
4017#undef DEF_FN_ATTR
4018 ggc_add_tree_root (built_in_attributes, (int) ATTR_LAST);
4019 c_attrs_initialized = true;
4020}
4021
4022/* Depending on the name of DECL, apply default attributes to it. */
4023
4024void
4025c_common_insert_default_attributes (decl)
4026 tree decl;
4027{
4028 tree name = DECL_NAME (decl);
4029
4030 if (!c_attrs_initialized)
4031 c_init_attributes ();
4032
4033#define DEF_ATTR_NULL_TREE(ENUM) /* Nothing needed after initialization. */
4034#define DEF_ATTR_INT(ENUM, VALUE)
4035#define DEF_ATTR_IDENT(ENUM, STRING)
4036#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN)
4037#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) \
4038 if ((PREDICATE) && name == built_in_attributes[(int) NAME]) \
4039 decl_attributes (&decl, built_in_attributes[(int) ATTRS], \
4040 ATTR_FLAG_BUILT_IN);
4041#include "builtin-attrs.def"
4042#undef DEF_ATTR_NULL_TREE
4043#undef DEF_ATTR_INT
4044#undef DEF_ATTR_IDENT
4045#undef DEF_ATTR_TREE_LIST
4046#undef DEF_FN_ATTR
03dc0325 4047}
26f943fd
NB
4048
4049/* Output a -Wshadow warning MSGID about NAME, an IDENTIFIER_NODE, and
4050 additionally give the location of the previous declaration DECL. */
4051void
4052shadow_warning (msgid, name, decl)
4053 const char *msgid;
4054 tree name, decl;
4055{
4056 warning ("declaration of `%s' shadows %s", IDENTIFIER_POINTER (name), msgid);
4057 warning_with_file_and_line (DECL_SOURCE_FILE (decl),
4058 DECL_SOURCE_LINE (decl),
4059 "shadowed declaration is here");
4060}
4061