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