]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-common.c
* config/ia64/ia64.md (doloop_end_internal): Correct rtl.
[thirdparty/gcc.git] / gcc / c-common.c
CommitLineData
b0fc3e72 1/* Subroutines shared by all languages that are variants of C.
d513ec2f 2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
b0fc3e72 4
f12b58b3 5This file is part of GCC.
b0fc3e72 6
f12b58b3 7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
b0fc3e72 11
f12b58b3 12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
b0fc3e72 16
17You should have received a copy of the GNU General Public License
f12b58b3 18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
b0fc3e72 21
22#include "config.h"
405711de 23#include "system.h"
b0fc3e72 24#include "tree.h"
ef258422 25#include "real.h"
b0fc3e72 26#include "flags.h"
9cdfa0b0 27#include "toplev.h"
cd03a192 28#include "output.h"
a3fa7feb 29#include "c-pragma.h"
a5b1863e 30#include "rtl.h"
dc12af01 31#include "ggc.h"
74647769 32#include "expr.h"
e41f0d80 33#include "c-common.h"
435fb09b 34#include "tree-inline.h"
cdc9fa3e 35#include "diagnostic.h"
d8c9779c 36#include "tm_p.h"
4e91a871 37#include "obstack.h"
a654e028 38#include "cpplib.h"
8ee295a7 39#include "target.h"
96554925 40#include "langhooks.h"
36a259fd 41#include "except.h" /* For USING_SJLJ_EXCEPTIONS. */
90cc7820 42
43cpp_reader *parse_in; /* Declared in c-pragma.h. */
a654e028 44
174fcc61 45/* We let tm.h override the types used here, to handle trivial differences
46 such as the choice of unsigned int or long unsigned int for size_t.
47 When machines start needing nontrivial differences in the size type,
48 it would be best to do something here to figure out automatically
49 from other information what type to use. */
50
51#ifndef SIZE_TYPE
52#define SIZE_TYPE "long unsigned int"
53#endif
54
55#ifndef WCHAR_TYPE
56#define WCHAR_TYPE "int"
57#endif
58
18ef7ac2 59/* WCHAR_TYPE gets overridden by -fshort-wchar. */
60#define MODIFIED_WCHAR_TYPE \
61 (flag_short_wchar ? "short unsigned int" : WCHAR_TYPE)
62
194c4d9f 63#ifndef PTRDIFF_TYPE
64#define PTRDIFF_TYPE "long int"
65#endif
66
6bf5ed8d 67#ifndef WINT_TYPE
68#define WINT_TYPE "unsigned int"
69#endif
70
71#ifndef INTMAX_TYPE
72#define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
73 ? "int" \
74 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
75 ? "long int" \
76 : "long long int"))
77#endif
78
79#ifndef UINTMAX_TYPE
80#define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
81 ? "unsigned int" \
82 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
83 ? "long unsigned int" \
84 : "long long unsigned int"))
85#endif
86
63994318 87#ifndef STDC_0_IN_SYSTEM_HEADERS
88#define STDC_0_IN_SYSTEM_HEADERS 0
89#endif
90
91#ifndef REGISTER_PREFIX
92#define REGISTER_PREFIX ""
93#endif
94
435fb09b 95/* The variant of the C language being processed. */
96
97enum c_language_kind c_language;
98
72040e7e 99/* The following symbols are subsumed in the c_global_trees array, and
44e9fa65 100 listed here individually for documentation purposes.
72040e7e 101
102 INTEGER_TYPE and REAL_TYPE nodes for the standard data types.
103
104 tree short_integer_type_node;
105 tree long_integer_type_node;
106 tree long_long_integer_type_node;
107
108 tree short_unsigned_type_node;
109 tree long_unsigned_type_node;
110 tree long_long_unsigned_type_node;
111
112 tree boolean_type_node;
113 tree boolean_false_node;
114 tree boolean_true_node;
115
116 tree ptrdiff_type_node;
117
118 tree unsigned_char_type_node;
119 tree signed_char_type_node;
120 tree wchar_type_node;
121 tree signed_wchar_type_node;
122 tree unsigned_wchar_type_node;
123
124 tree float_type_node;
125 tree double_type_node;
126 tree long_double_type_node;
127
128 tree complex_integer_type_node;
129 tree complex_float_type_node;
130 tree complex_double_type_node;
131 tree complex_long_double_type_node;
132
133 tree intQI_type_node;
134 tree intHI_type_node;
135 tree intSI_type_node;
136 tree intDI_type_node;
137 tree intTI_type_node;
138
139 tree unsigned_intQI_type_node;
140 tree unsigned_intHI_type_node;
141 tree unsigned_intSI_type_node;
142 tree unsigned_intDI_type_node;
143 tree unsigned_intTI_type_node;
144
145 tree widest_integer_literal_type_node;
146 tree widest_unsigned_literal_type_node;
147
148 Nodes for types `void *' and `const void *'.
149
150 tree ptr_type_node, const_ptr_type_node;
151
152 Nodes for types `char *' and `const char *'.
153
154 tree string_type_node, const_string_type_node;
155
156 Type `char[SOMENUMBER]'.
157 Used when an array of char is needed and the size is irrelevant.
158
159 tree char_array_type_node;
160
161 Type `int[SOMENUMBER]' or something like it.
162 Used when an array of int needed and the size is irrelevant.
163
164 tree int_array_type_node;
165
166 Type `wchar_t[SOMENUMBER]' or something like it.
167 Used when a wide string literal is created.
168
169 tree wchar_array_type_node;
170
171 Type `int ()' -- used for implicit declaration of functions.
172
173 tree default_function_type;
174
72040e7e 175 A VOID_TYPE node, packaged in a TREE_LIST.
176
177 tree void_list_node;
178
734c98be 179 The lazily created VAR_DECLs for __FUNCTION__, __PRETTY_FUNCTION__,
65b7f83f 180 and __func__. (C doesn't generate __FUNCTION__ and__PRETTY_FUNCTION__
181 VAR_DECLS, but C++ does.)
71d9fc9b 182
65b7f83f 183 tree function_name_decl_node;
734c98be 184 tree pretty_function_name_decl_node;
65b7f83f 185 tree c99_function_name_decl_node;
186
187 Stack of nested function name VAR_DECLs.
188
189 tree saved_function_name_decls;
71d9fc9b 190
72040e7e 191*/
192
193tree c_global_trees[CTI_MAX];
ceee5ef4 194
ffd56b21 195/* Nonzero if prepreprocessing only. */
196int flag_preprocess_only;
197
1ed9d5f5 198/* Nonzero if an ISO standard was selected. It rejects macros in the
199 user's namespace. */
200int flag_iso;
201
202/* Nonzero if -undef was given. It suppresses target built-in macros
203 and assertions. */
204int flag_undef;
205
0270ae90 206/* Nonzero means don't recognize the non-ANSI builtin functions. */
207
208int flag_no_builtin;
209
210/* Nonzero means don't recognize the non-ANSI builtin functions.
211 -ansi sets this. */
212
213int flag_no_nonansi_builtin;
214
174fcc61 215/* Nonzero means give `double' the same size as `float'. */
216
217int flag_short_double;
218
219/* Nonzero means give `wchar_t' the same size as `short'. */
220
221int flag_short_wchar;
222
07ebd091 223/* Nonzero means allow Microsoft extensions without warnings or errors. */
224int flag_ms_extensions;
225
318fdd81 226/* Nonzero means warn about use of multicharacter literals. */
227
228int warn_multichar = 1;
229
481c6ce6 230/* Nonzero means warn about possible violations of sequence point rules. */
231
232int warn_sequence_point;
233
bd08a4e6 234/* Nonzero means to warn about compile-time division by zero. */
235int warn_div_by_zero = 1;
236
dbf6c367 237/* Warn about NULL being passed to argument slots marked as requiring
238 non-NULL. */
239
240int warn_nonnull;
241
988fc1d1 242/* The elements of `ridpointers' are identifier nodes for the reserved
243 type names and storage classes. It is indexed by a RID_... value. */
244tree *ridpointers;
245
65b7f83f 246tree (*make_fname_decl) PARAMS ((tree, int));
9e5a737d 247
a08e60ae 248/* If non-NULL, the address of a language-specific function that
249 returns 1 for language-specific statement codes. */
250int (*lang_statement_code_p) PARAMS ((enum tree_code));
251
e41f0d80 252/* If non-NULL, the address of a language-specific function that takes
253 any action required right before expand_function_end is called. */
254void (*lang_expand_function_end) PARAMS ((void));
255
e78703c1 256/* Nonzero means the expression being parsed will never be evaluated.
257 This is a count, since unevaluated expressions can nest. */
258int skip_evaluation;
259
2c0e001b 260/* Information about how a function name is generated. */
65b7f83f 261struct fname_var_t
262{
e99c3a1d 263 tree *const decl; /* pointer to the VAR_DECL. */
264 const unsigned rid; /* RID number for the identifier. */
265 const int pretty; /* How pretty is it? */
65b7f83f 266};
267
2c0e001b 268/* The three ways of getting then name of the current function. */
65b7f83f 269
270const struct fname_var_t fname_vars[] =
271{
2c0e001b 272 /* C99 compliant __func__, must be first. */
65b7f83f 273 {&c99_function_name_decl_node, RID_C99_FUNCTION_NAME, 0},
2c0e001b 274 /* GCC __FUNCTION__ compliant. */
65b7f83f 275 {&function_name_decl_node, RID_FUNCTION_NAME, 0},
2c0e001b 276 /* GCC __PRETTY_FUNCTION__ compliant. */
65b7f83f 277 {&pretty_function_name_decl_node, RID_PRETTY_FUNCTION_NAME, 1},
278 {NULL, 0, 0},
279};
280
7f728835 281static int constant_fits_type_p PARAMS ((tree, tree));
be43ff5a 282
9fc84d48 283/* Keep a stack of if statements. We record the number of compound
284 statements seen up to the if keyword, as well as the line number
285 and file of the if. If a potentially ambiguous else is seen, that
286 fact is recorded; the warning is issued when we can be sure that
287 the enclosing if statement does not have an else branch. */
288typedef struct
289{
290 int compstmt_count;
291 int line;
3eee82c5 292 const char *file;
9fc84d48 293 int needs_warning;
e41f0d80 294 tree if_stmt;
9fc84d48 295} if_elt;
296
297static if_elt *if_stack;
31f820d2 298
299/* Amount of space in the if statement stack. */
300static int if_stack_space = 0;
301
302/* Stack pointer. */
303static int if_stack_pointer = 0;
304
1ed9d5f5 305static void cb_register_builtins PARAMS ((cpp_reader *));
306
f8e93a2e 307static tree handle_packed_attribute PARAMS ((tree *, tree, tree, int,
308 bool *));
309static tree handle_nocommon_attribute PARAMS ((tree *, tree, tree, int,
310 bool *));
311static tree handle_common_attribute PARAMS ((tree *, tree, tree, int,
312 bool *));
313static tree handle_noreturn_attribute PARAMS ((tree *, tree, tree, int,
314 bool *));
315static tree handle_noinline_attribute PARAMS ((tree *, tree, tree, int,
316 bool *));
317static tree handle_always_inline_attribute PARAMS ((tree *, tree, tree, int,
318 bool *));
319static tree handle_used_attribute PARAMS ((tree *, tree, tree, int,
320 bool *));
321static tree handle_unused_attribute PARAMS ((tree *, tree, tree, int,
322 bool *));
323static tree handle_const_attribute PARAMS ((tree *, tree, tree, int,
324 bool *));
325static tree handle_transparent_union_attribute PARAMS ((tree *, tree, tree,
326 int, bool *));
327static tree handle_constructor_attribute PARAMS ((tree *, tree, tree, int,
328 bool *));
329static tree handle_destructor_attribute PARAMS ((tree *, tree, tree, int,
330 bool *));
331static tree handle_mode_attribute PARAMS ((tree *, tree, tree, int,
332 bool *));
333static tree handle_section_attribute PARAMS ((tree *, tree, tree, int,
334 bool *));
335static tree handle_aligned_attribute PARAMS ((tree *, tree, tree, int,
336 bool *));
337static tree handle_weak_attribute PARAMS ((tree *, tree, tree, int,
338 bool *));
339static tree handle_alias_attribute PARAMS ((tree *, tree, tree, int,
340 bool *));
341static tree handle_visibility_attribute PARAMS ((tree *, tree, tree, int,
342 bool *));
343static tree handle_no_instrument_function_attribute PARAMS ((tree *, tree,
344 tree, int,
345 bool *));
346static tree handle_malloc_attribute PARAMS ((tree *, tree, tree, int,
347 bool *));
348static tree handle_no_limit_stack_attribute PARAMS ((tree *, tree, tree, int,
349 bool *));
350static tree handle_pure_attribute PARAMS ((tree *, tree, tree, int,
351 bool *));
352static tree handle_deprecated_attribute PARAMS ((tree *, tree, tree, int,
353 bool *));
354static tree handle_vector_size_attribute PARAMS ((tree *, tree, tree, int,
355 bool *));
dbf6c367 356static tree handle_nonnull_attribute PARAMS ((tree *, tree, tree, int,
357 bool *));
fa987697 358static tree handle_nothrow_attribute PARAMS ((tree *, tree, tree, int,
359 bool *));
f8e93a2e 360static tree vector_size_helper PARAMS ((tree, tree));
361
dbf6c367 362static void check_function_nonnull PARAMS ((tree, tree));
363static void check_nonnull_arg PARAMS ((void *, tree,
364 unsigned HOST_WIDE_INT));
365static bool nonnull_check_p PARAMS ((tree, unsigned HOST_WIDE_INT));
366static bool get_nonnull_operand PARAMS ((tree,
367 unsigned HOST_WIDE_INT *));
90cc7820 368void builtin_define_std PARAMS ((const char *));
369static void builtin_define_with_value PARAMS ((const char *, const char *,
370 int));
574006c3 371static void builtin_define_type_max PARAMS ((const char *, tree, int));
dbf6c367 372
f8e93a2e 373/* Table of machine-independent attributes common to all C-like languages. */
374const struct attribute_spec c_common_attribute_table[] =
375{
376 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
377 { "packed", 0, 0, false, false, false,
378 handle_packed_attribute },
379 { "nocommon", 0, 0, true, false, false,
380 handle_nocommon_attribute },
381 { "common", 0, 0, true, false, false,
382 handle_common_attribute },
383 /* FIXME: logically, noreturn attributes should be listed as
384 "false, true, true" and apply to function types. But implementing this
385 would require all the places in the compiler that use TREE_THIS_VOLATILE
386 on a decl to identify non-returning functions to be located and fixed
387 to check the function type instead. */
388 { "noreturn", 0, 0, true, false, false,
389 handle_noreturn_attribute },
390 { "volatile", 0, 0, true, false, false,
391 handle_noreturn_attribute },
392 { "noinline", 0, 0, true, false, false,
393 handle_noinline_attribute },
394 { "always_inline", 0, 0, true, false, false,
395 handle_always_inline_attribute },
396 { "used", 0, 0, true, false, false,
397 handle_used_attribute },
398 { "unused", 0, 0, false, false, false,
399 handle_unused_attribute },
400 /* The same comments as for noreturn attributes apply to const ones. */
401 { "const", 0, 0, true, false, false,
402 handle_const_attribute },
403 { "transparent_union", 0, 0, false, false, false,
404 handle_transparent_union_attribute },
405 { "constructor", 0, 0, true, false, false,
406 handle_constructor_attribute },
407 { "destructor", 0, 0, true, false, false,
408 handle_destructor_attribute },
409 { "mode", 1, 1, false, true, false,
410 handle_mode_attribute },
411 { "section", 1, 1, true, false, false,
412 handle_section_attribute },
413 { "aligned", 0, 1, false, false, false,
414 handle_aligned_attribute },
415 { "weak", 0, 0, true, false, false,
416 handle_weak_attribute },
417 { "alias", 1, 1, true, false, false,
418 handle_alias_attribute },
419 { "no_instrument_function", 0, 0, true, false, false,
420 handle_no_instrument_function_attribute },
421 { "malloc", 0, 0, true, false, false,
422 handle_malloc_attribute },
423 { "no_stack_limit", 0, 0, true, false, false,
424 handle_no_limit_stack_attribute },
425 { "pure", 0, 0, true, false, false,
426 handle_pure_attribute },
427 { "deprecated", 0, 0, false, false, false,
428 handle_deprecated_attribute },
429 { "vector_size", 1, 1, false, true, false,
430 handle_vector_size_attribute },
431 { "visibility", 1, 1, true, false, false,
432 handle_visibility_attribute },
dbf6c367 433 { "nonnull", 0, -1, false, true, true,
434 handle_nonnull_attribute },
fa987697 435 { "nothrow", 0, 0, true, false, false,
436 handle_nothrow_attribute },
cb59f969 437 { "may_alias", 0, 0, false, true, false, NULL },
f8e93a2e 438 { NULL, 0, 0, false, false, false, NULL }
439};
440
441/* Give the specifications for the format attributes, used by C and all
442 descendents. */
443
444const struct attribute_spec c_common_format_attribute_table[] =
445{
446 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
447 { "format", 3, 3, false, true, true,
448 handle_format_attribute },
449 { "format_arg", 1, 1, false, true, true,
450 handle_format_arg_attribute },
451 { NULL, 0, 0, false, false, false, NULL }
452};
453
e41f0d80 454/* Record the start of an if-then, and record the start of it
e87da6ae 455 for ambiguous else detection.
456
457 COND is the condition for the if-then statement.
458
459 IF_STMT is the statement node that has already been created for
460 this if-then statement. It is created before parsing the
461 condition to keep line number information accurate. */
9fc84d48 462
31f820d2 463void
e87da6ae 464c_expand_start_cond (cond, compstmt_count, if_stmt)
31f820d2 465 tree cond;
31f820d2 466 int compstmt_count;
e87da6ae 467 tree if_stmt;
31f820d2 468{
469 /* Make sure there is enough space on the stack. */
470 if (if_stack_space == 0)
471 {
472 if_stack_space = 10;
7cc7e163 473 if_stack = (if_elt *) xmalloc (10 * sizeof (if_elt));
31f820d2 474 }
475 else if (if_stack_space == if_stack_pointer)
476 {
477 if_stack_space += 10;
7cc7e163 478 if_stack = (if_elt *) xrealloc (if_stack, if_stack_space * sizeof (if_elt));
31f820d2 479 }
9fc84d48 480
e41f0d80 481 IF_COND (if_stmt) = cond;
482 add_stmt (if_stmt);
483
31f820d2 484 /* Record this if statement. */
9fc84d48 485 if_stack[if_stack_pointer].compstmt_count = compstmt_count;
486 if_stack[if_stack_pointer].file = input_filename;
487 if_stack[if_stack_pointer].line = lineno;
488 if_stack[if_stack_pointer].needs_warning = 0;
e41f0d80 489 if_stack[if_stack_pointer].if_stmt = if_stmt;
9fc84d48 490 if_stack_pointer++;
e41f0d80 491}
31f820d2 492
e41f0d80 493/* Called after the then-clause for an if-statement is processed. */
494
495void
496c_finish_then ()
497{
498 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
499 RECHAIN_STMTS (if_stmt, THEN_CLAUSE (if_stmt));
31f820d2 500}
501
e41f0d80 502/* Record the end of an if-then. Optionally warn if a nested
9fc84d48 503 if statement had an ambiguous else clause. */
504
31f820d2 505void
506c_expand_end_cond ()
507{
508 if_stack_pointer--;
9fc84d48 509 if (if_stack[if_stack_pointer].needs_warning)
510 warning_with_file_and_line (if_stack[if_stack_pointer].file,
511 if_stack[if_stack_pointer].line,
512 "suggest explicit braces to avoid ambiguous `else'");
e41f0d80 513 last_expr_type = NULL_TREE;
31f820d2 514}
515
e41f0d80 516/* Called between the then-clause and the else-clause
9fc84d48 517 of an if-then-else. */
518
31f820d2 519void
520c_expand_start_else ()
521{
9fc84d48 522 /* An ambiguous else warning must be generated for the enclosing if
523 statement, unless we see an else branch for that one, too. */
31f820d2 524 if (warn_parentheses
525 && if_stack_pointer > 1
9fc84d48 526 && (if_stack[if_stack_pointer - 1].compstmt_count
527 == if_stack[if_stack_pointer - 2].compstmt_count))
528 if_stack[if_stack_pointer - 2].needs_warning = 1;
529
530 /* Even if a nested if statement had an else branch, it can't be
531 ambiguous if this one also has an else. So don't warn in that
532 case. Also don't warn for any if statements nested in this else. */
533 if_stack[if_stack_pointer - 1].needs_warning = 0;
534 if_stack[if_stack_pointer - 1].compstmt_count--;
e41f0d80 535}
536
537/* Called after the else-clause for an if-statement is processed. */
31f820d2 538
e41f0d80 539void
540c_finish_else ()
541{
542 tree if_stmt = if_stack[if_stack_pointer - 1].if_stmt;
543 RECHAIN_STMTS (if_stmt, ELSE_CLAUSE (if_stmt));
31f820d2 544}
545
e87da6ae 546/* Begin an if-statement. Returns a newly created IF_STMT if
547 appropriate.
548
549 Unlike the C++ front-end, we do not call add_stmt here; it is
550 probably safe to do so, but I am not very familiar with this
551 code so I am being extra careful not to change its behavior
552 beyond what is strictly necessary for correctness. */
553
554tree
555c_begin_if_stmt ()
556{
557 tree r;
558 r = build_stmt (IF_STMT, NULL_TREE, NULL_TREE, NULL_TREE);
559 return r;
560}
561
562/* Begin a while statement. Returns a newly created WHILE_STMT if
563 appropriate.
564
565 Unlike the C++ front-end, we do not call add_stmt here; it is
566 probably safe to do so, but I am not very familiar with this
567 code so I am being extra careful not to change its behavior
568 beyond what is strictly necessary for correctness. */
569
570tree
571c_begin_while_stmt ()
572{
573 tree r;
574 r = build_stmt (WHILE_STMT, NULL_TREE, NULL_TREE);
575 return r;
576}
577
578void
579c_finish_while_stmt_cond (cond, while_stmt)
580 tree while_stmt;
581 tree cond;
582{
583 WHILE_COND (while_stmt) = cond;
584}
585
2c0e001b 586/* Push current bindings for the function name VAR_DECLS. */
f4e3c278 587
588void
65b7f83f 589start_fname_decls ()
f4e3c278 590{
65b7f83f 591 unsigned ix;
592 tree saved = NULL_TREE;
593
594 for (ix = 0; fname_vars[ix].decl; ix++)
595 {
596 tree decl = *fname_vars[ix].decl;
f4e3c278 597
65b7f83f 598 if (decl)
599 {
600 saved = tree_cons (decl, build_int_2 (ix, 0), saved);
601 *fname_vars[ix].decl = NULL_TREE;
602 }
603 }
604 if (saved || saved_function_name_decls)
605 /* Normally they'll have been NULL, so only push if we've got a
606 stack, or they are non-NULL. */
607 saved_function_name_decls = tree_cons (saved, NULL_TREE,
608 saved_function_name_decls);
609}
610
611/* Finish up the current bindings, adding them into the
612 current function's statement tree. This is done by wrapping the
613 function's body in a COMPOUND_STMT containing these decls too. This
614 must be done _before_ finish_stmt_tree is called. If there is no
615 current function, we must be at file scope and no statements are
2c0e001b 616 involved. Pop the previous bindings. */
65b7f83f 617
618void
619finish_fname_decls ()
620{
621 unsigned ix;
622 tree body = NULL_TREE;
623 tree stack = saved_function_name_decls;
624
625 for (; stack && TREE_VALUE (stack); stack = TREE_CHAIN (stack))
626 body = chainon (TREE_VALUE (stack), body);
627
628 if (body)
629 {
424da949 630 /* They were called into existence, so add to statement tree. */
65b7f83f 631 body = chainon (body,
632 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)));
633 body = build_stmt (COMPOUND_STMT, body);
634
635 COMPOUND_STMT_NO_SCOPE (body) = 1;
636 TREE_CHAIN (DECL_SAVED_TREE (current_function_decl)) = body;
637 }
638
639 for (ix = 0; fname_vars[ix].decl; ix++)
640 *fname_vars[ix].decl = NULL_TREE;
641
642 if (stack)
f4e3c278 643 {
2c0e001b 644 /* We had saved values, restore them. */
65b7f83f 645 tree saved;
646
647 for (saved = TREE_PURPOSE (stack); saved; saved = TREE_CHAIN (saved))
648 {
649 tree decl = TREE_PURPOSE (saved);
650 unsigned ix = TREE_INT_CST_LOW (TREE_VALUE (saved));
651
652 *fname_vars[ix].decl = decl;
653 }
654 stack = TREE_CHAIN (stack);
f4e3c278 655 }
65b7f83f 656 saved_function_name_decls = stack;
657}
658
659/* Return the text name of the current function, suitable prettified
2c0e001b 660 by PRETTY_P. */
65b7f83f 661
662const char *
663fname_as_string (pretty_p)
664 int pretty_p;
665{
666 const char *name = NULL;
667
668 if (pretty_p)
669 name = (current_function_decl
96554925 670 ? (*lang_hooks.decl_printable_name) (current_function_decl, 2)
65b7f83f 671 : "top level");
672 else if (current_function_decl && DECL_NAME (current_function_decl))
673 name = IDENTIFIER_POINTER (DECL_NAME (current_function_decl));
f4e3c278 674 else
65b7f83f 675 name = "";
676 return name;
677}
678
679/* Return the text name of the current function, formatted as
680 required by the supplied RID value. */
681
682const char *
683fname_string (rid)
684 unsigned rid;
685{
686 unsigned ix;
687
688 for (ix = 0; fname_vars[ix].decl; ix++)
689 if (fname_vars[ix].rid == rid)
690 break;
691 return fname_as_string (fname_vars[ix].pretty);
692}
693
694/* Return the VAR_DECL for a const char array naming the current
695 function. If the VAR_DECL has not yet been created, create it
696 now. RID indicates how it should be formatted and IDENTIFIER_NODE
697 ID is its name (unfortunately C and C++ hold the RID values of
698 keywords in different places, so we can't derive RID from ID in
dd5b4b36 699 this language independent code. */
65b7f83f 700
701tree
702fname_decl (rid, id)
703 unsigned rid;
704 tree id;
705{
706 unsigned ix;
707 tree decl = NULL_TREE;
708
709 for (ix = 0; fname_vars[ix].decl; ix++)
710 if (fname_vars[ix].rid == rid)
711 break;
712
713 decl = *fname_vars[ix].decl;
714 if (!decl)
f4e3c278 715 {
65b7f83f 716 tree saved_last_tree = last_tree;
717
718 decl = (*make_fname_decl) (id, fname_vars[ix].pretty);
719 if (last_tree != saved_last_tree)
720 {
721 /* We created some statement tree for the decl. This belongs
722 at the start of the function, so remove it now and reinsert
2c0e001b 723 it after the function is complete. */
65b7f83f 724 tree stmts = TREE_CHAIN (saved_last_tree);
725
726 TREE_CHAIN (saved_last_tree) = NULL_TREE;
727 last_tree = saved_last_tree;
728 saved_function_name_decls = tree_cons (decl, stmts,
729 saved_function_name_decls);
730 }
731 *fname_vars[ix].decl = decl;
f4e3c278 732 }
65b7f83f 733 if (!ix && !current_function_decl)
734 pedwarn_with_decl (decl, "`%s' is not defined outside of function scope");
9e5a737d 735
65b7f83f 736 return decl;
f4e3c278 737}
738
070236f0 739/* Given a STRING_CST, give it a suitable array-of-chars data type. */
b0fc3e72 740
741tree
070236f0 742fix_string_type (value)
743 tree value;
b0fc3e72 744{
070236f0 745 const int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
746 const int wide_flag = TREE_TYPE (value) == wchar_array_type_node;
82cfc7f7 747 const int nchars_max = flag_isoc99 ? 4095 : 509;
070236f0 748 int length = TREE_STRING_LENGTH (value);
749 int nchars;
b0fc3e72 750
73be5127 751 /* Compute the number of elements, for the array type. */
b0fc3e72 752 nchars = wide_flag ? length / wchar_bytes : length;
753
89e32525 754 if (pedantic && nchars - 1 > nchars_max && c_language == clk_c)
960bf856 755 pedwarn ("string length `%d' is greater than the length `%d' ISO C%d compilers are required to support",
89e32525 756 nchars - 1, nchars_max, flag_isoc99 ? 99 : 89);
82cfc7f7 757
b0fc3e72 758 /* Create the array type for the string constant.
759 -Wwrite-strings says make the string constant an array of const char
3a10ba35 760 so that copying it to a non-const pointer will get a warning.
761 For C++, this is the standard behavior. */
455730ef 762 if (flag_const_strings && ! flag_writable_strings)
b0fc3e72 763 {
764 tree elements
765 = build_type_variant (wide_flag ? wchar_type_node : char_type_node,
766 1, 0);
767 TREE_TYPE (value)
768 = build_array_type (elements,
769 build_index_type (build_int_2 (nchars - 1, 0)));
770 }
771 else
772 TREE_TYPE (value)
773 = build_array_type (wide_flag ? wchar_type_node : char_type_node,
774 build_index_type (build_int_2 (nchars - 1, 0)));
3a10ba35 775
b8e3b7ad 776 TREE_CONSTANT (value) = 1;
777 TREE_READONLY (value) = ! flag_writable_strings;
b0fc3e72 778 TREE_STATIC (value) = 1;
779 return value;
780}
070236f0 781
782/* Given a VARRAY of STRING_CST nodes, concatenate them into one
783 STRING_CST. */
784
785tree
786combine_strings (strings)
787 varray_type strings;
788{
789 const int wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
790 const int nstrings = VARRAY_ACTIVE_SIZE (strings);
791 tree value, t;
792 int length = 1;
793 int wide_length = 0;
794 int wide_flag = 0;
795 int i;
796 char *p, *q;
797
798 /* Don't include the \0 at the end of each substring. Count wide
799 strings and ordinary strings separately. */
800 for (i = 0; i < nstrings; ++i)
801 {
802 t = VARRAY_TREE (strings, i);
803
804 if (TREE_TYPE (t) == wchar_array_type_node)
805 {
806 wide_length += TREE_STRING_LENGTH (t) - wchar_bytes;
807 wide_flag = 1;
808 }
809 else
810 {
811 length += (TREE_STRING_LENGTH (t) - 1);
812 if (C_ARTIFICIAL_STRING_P (t) && !in_system_header)
813 warning ("concatenation of string literals with __FUNCTION__ is deprecated");
814 }
815 }
816
817 /* If anything is wide, the non-wides will be converted,
818 which makes them take more space. */
819 if (wide_flag)
820 length = length * wchar_bytes + wide_length;
821
822 p = xmalloc (length);
823
824 /* Copy the individual strings into the new combined string.
825 If the combined string is wide, convert the chars to ints
826 for any individual strings that are not wide. */
827
828 q = p;
829 for (i = 0; i < nstrings; ++i)
830 {
831 int len, this_wide;
832
833 t = VARRAY_TREE (strings, i);
834 this_wide = TREE_TYPE (t) == wchar_array_type_node;
835 len = TREE_STRING_LENGTH (t) - (this_wide ? wchar_bytes : 1);
836 if (this_wide == wide_flag)
837 {
838 memcpy (q, TREE_STRING_POINTER (t), len);
839 q += len;
840 }
841 else
842 {
18ef7ac2 843 const int nzeros = (TYPE_PRECISION (wchar_type_node)
844 / BITS_PER_UNIT) - 1;
070236f0 845 int j, k;
846
847 if (BYTES_BIG_ENDIAN)
848 {
849 for (k = 0; k < len; k++)
850 {
851 for (j = 0; j < nzeros; j++)
852 *q++ = 0;
853 *q++ = TREE_STRING_POINTER (t)[k];
854 }
855 }
856 else
857 {
858 for (k = 0; k < len; k++)
859 {
860 *q++ = TREE_STRING_POINTER (t)[k];
861 for (j = 0; j < nzeros; j++)
862 *q++ = 0;
863 }
864 }
865 }
866 }
867
868 /* Nul terminate the string. */
869 if (wide_flag)
870 {
871 for (i = 0; i < wchar_bytes; i++)
872 *q++ = 0;
873 }
874 else
875 *q = 0;
876
877 value = build_string (length, p);
878 free (p);
879
880 if (wide_flag)
881 TREE_TYPE (value) = wchar_array_type_node;
882 else
883 TREE_TYPE (value) = char_array_type_node;
884
885 return value;
886}
b0fc3e72 887\f
edbbe5ca 888static int is_valid_printf_arglist PARAMS ((tree));
f4e55e4d 889static rtx c_expand_builtin PARAMS ((tree, rtx, enum machine_mode, enum expand_modifier));
edbbe5ca 890static rtx c_expand_builtin_printf PARAMS ((tree, rtx, enum machine_mode,
c013a46e 891 enum expand_modifier, int, int));
96df8b77 892static rtx c_expand_builtin_fprintf PARAMS ((tree, rtx, enum machine_mode,
c013a46e 893 enum expand_modifier, int, int));
fce9faf9 894\f
2a1736ed 895/* Print a warning if a constant expression had overflow in folding.
896 Invoke this function on every expression that the language
897 requires to be a constant expression.
898 Note the ANSI C standard says it is erroneous for a
899 constant expression to overflow. */
b2806639 900
901void
902constant_expression_warning (value)
903 tree value;
904{
837e1122 905 if ((TREE_CODE (value) == INTEGER_CST || TREE_CODE (value) == REAL_CST
886cfd4f 906 || TREE_CODE (value) == VECTOR_CST
837e1122 907 || TREE_CODE (value) == COMPLEX_CST)
908 && TREE_CONSTANT_OVERFLOW (value) && pedantic)
909 pedwarn ("overflow in constant expression");
2a1736ed 910}
911
912/* Print a warning if an expression had overflow in folding.
913 Invoke this function on every expression that
914 (1) appears in the source code, and
915 (2) might be a constant expression that overflowed, and
916 (3) is not already checked by convert_and_check;
917 however, do not invoke this function on operands of explicit casts. */
918
919void
920overflow_warning (value)
921 tree value;
922{
837e1122 923 if ((TREE_CODE (value) == INTEGER_CST
924 || (TREE_CODE (value) == COMPLEX_CST
925 && TREE_CODE (TREE_REALPART (value)) == INTEGER_CST))
926 && TREE_OVERFLOW (value))
2a1736ed 927 {
b04da9b5 928 TREE_OVERFLOW (value) = 0;
e78703c1 929 if (skip_evaluation == 0)
930 warning ("integer overflow in expression");
2a1736ed 931 }
837e1122 932 else if ((TREE_CODE (value) == REAL_CST
933 || (TREE_CODE (value) == COMPLEX_CST
934 && TREE_CODE (TREE_REALPART (value)) == REAL_CST))
935 && TREE_OVERFLOW (value))
936 {
937 TREE_OVERFLOW (value) = 0;
e78703c1 938 if (skip_evaluation == 0)
939 warning ("floating point overflow in expression");
837e1122 940 }
886cfd4f 941 else if (TREE_CODE (value) == VECTOR_CST && TREE_OVERFLOW (value))
942 {
943 TREE_OVERFLOW (value) = 0;
944 if (skip_evaluation == 0)
945 warning ("vector overflow in expression");
946 }
2a1736ed 947}
948
949/* Print a warning if a large constant is truncated to unsigned,
950 or if -Wconversion is used and a constant < 0 is converted to unsigned.
951 Invoke this function on every expression that might be implicitly
952 converted to an unsigned type. */
953
954void
955unsigned_conversion_warning (result, operand)
956 tree result, operand;
957{
4070745f 958 tree type = TREE_TYPE (result);
959
2a1736ed 960 if (TREE_CODE (operand) == INTEGER_CST
4070745f 961 && TREE_CODE (type) == INTEGER_TYPE
962 && TREE_UNSIGNED (type)
e78703c1 963 && skip_evaluation == 0
4070745f 964 && !int_fits_type_p (operand, type))
2a1736ed 965 {
4070745f 966 if (!int_fits_type_p (operand, c_common_signed_type (type)))
2a1736ed 967 /* This detects cases like converting -129 or 256 to unsigned char. */
454b5afb 968 warning ("large integer implicitly truncated to unsigned type");
2a1736ed 969 else if (warn_conversion)
454b5afb 970 warning ("negative integer implicitly converted to unsigned type");
2a1736ed 971 }
972}
973
7f728835 974/* Nonzero if constant C has a value that is permissible
975 for type TYPE (an INTEGER_TYPE). */
976
977static int
978constant_fits_type_p (c, type)
979 tree c, type;
980{
981 if (TREE_CODE (c) == INTEGER_CST)
982 return int_fits_type_p (c, type);
983
984 c = convert (type, c);
985 return !TREE_OVERFLOW (c);
986}
987
2a1736ed 988/* Convert EXPR to TYPE, warning about conversion problems with constants.
989 Invoke this function on every expression that is converted implicitly,
990 i.e. because of language rules and not because of an explicit cast. */
991
992tree
993convert_and_check (type, expr)
994 tree type, expr;
995{
996 tree t = convert (type, expr);
997 if (TREE_CODE (t) == INTEGER_CST)
998 {
b04da9b5 999 if (TREE_OVERFLOW (t))
2a1736ed 1000 {
b04da9b5 1001 TREE_OVERFLOW (t) = 0;
1002
2c4232f8 1003 /* Do not diagnose overflow in a constant expression merely
1004 because a conversion overflowed. */
1005 TREE_CONSTANT_OVERFLOW (t) = TREE_CONSTANT_OVERFLOW (expr);
1006
b04da9b5 1007 /* No warning for converting 0x80000000 to int. */
1008 if (!(TREE_UNSIGNED (type) < TREE_UNSIGNED (TREE_TYPE (expr))
1009 && TREE_CODE (TREE_TYPE (expr)) == INTEGER_TYPE
1010 && TYPE_PRECISION (type) == TYPE_PRECISION (TREE_TYPE (expr))))
96730c20 1011 /* If EXPR fits in the unsigned version of TYPE,
1012 don't warn unless pedantic. */
e78703c1 1013 if ((pedantic
1014 || TREE_UNSIGNED (type)
4070745f 1015 || ! constant_fits_type_p (expr,
1016 c_common_unsigned_type (type)))
e78703c1 1017 && skip_evaluation == 0)
d1f11193 1018 warning ("overflow in implicit constant conversion");
2a1736ed 1019 }
1020 else
1021 unsigned_conversion_warning (t, expr);
1022 }
1023 return t;
b2806639 1024}
1025\f
4e91a871 1026/* A node in a list that describes references to variables (EXPR), which are
1027 either read accesses if WRITER is zero, or write accesses, in which case
1028 WRITER is the parent of EXPR. */
1029struct tlist
1030{
1031 struct tlist *next;
1032 tree expr, writer;
1033};
1034
1035/* Used to implement a cache the results of a call to verify_tree. We only
1036 use this for SAVE_EXPRs. */
1037struct tlist_cache
1038{
1039 struct tlist_cache *next;
1040 struct tlist *cache_before_sp;
1041 struct tlist *cache_after_sp;
1042 tree expr;
481c6ce6 1043};
1044
4e91a871 1045/* Obstack to use when allocating tlist structures, and corresponding
1046 firstobj. */
1047static struct obstack tlist_obstack;
1048static char *tlist_firstobj = 0;
1049
1050/* Keep track of the identifiers we've warned about, so we can avoid duplicate
1051 warnings. */
1052static struct tlist *warned_ids;
1053/* SAVE_EXPRs need special treatment. We process them only once and then
1054 cache the results. */
1055static struct tlist_cache *save_expr_cache;
1056
1057static void add_tlist PARAMS ((struct tlist **, struct tlist *, tree, int));
1058static void merge_tlist PARAMS ((struct tlist **, struct tlist *, int));
1059static void verify_tree PARAMS ((tree, struct tlist **, struct tlist **, tree));
1060static int warning_candidate_p PARAMS ((tree));
1061static void warn_for_collisions PARAMS ((struct tlist *));
1062static void warn_for_collisions_1 PARAMS ((tree, tree, struct tlist *, int));
1063static struct tlist *new_tlist PARAMS ((struct tlist *, tree, tree));
481c6ce6 1064static void verify_sequence_points PARAMS ((tree));
1065
4e91a871 1066/* Create a new struct tlist and fill in its fields. */
1067static struct tlist *
1068new_tlist (next, t, writer)
1069 struct tlist *next;
1070 tree t;
1071 tree writer;
1072{
1073 struct tlist *l;
1074 l = (struct tlist *) obstack_alloc (&tlist_obstack, sizeof *l);
1075 l->next = next;
1076 l->expr = t;
1077 l->writer = writer;
1078 return l;
1079}
1080
1081/* Add duplicates of the nodes found in ADD to the list *TO. If EXCLUDE_WRITER
1082 is nonnull, we ignore any node we find which has a writer equal to it. */
1083
1084static void
1085add_tlist (to, add, exclude_writer, copy)
1086 struct tlist **to;
1087 struct tlist *add;
1088 tree exclude_writer;
1089 int copy;
1090{
1091 while (add)
1092 {
1093 struct tlist *next = add->next;
1094 if (! copy)
1095 add->next = *to;
1096 if (! exclude_writer || add->writer != exclude_writer)
1097 *to = copy ? new_tlist (*to, add->expr, add->writer) : add;
1098 add = next;
1099 }
1100}
1101
1102/* Merge the nodes of ADD into TO. This merging process is done so that for
1103 each variable that already exists in TO, no new node is added; however if
1104 there is a write access recorded in ADD, and an occurrence on TO is only
1105 a read access, then the occurrence in TO will be modified to record the
1106 write. */
481c6ce6 1107
1108static void
4e91a871 1109merge_tlist (to, add, copy)
1110 struct tlist **to;
1111 struct tlist *add;
1112 int copy;
1113{
1114 struct tlist **end = to;
1115
1116 while (*end)
1117 end = &(*end)->next;
1118
1119 while (add)
1120 {
1121 int found = 0;
1122 struct tlist *tmp2;
1123 struct tlist *next = add->next;
1124
1125 for (tmp2 = *to; tmp2; tmp2 = tmp2->next)
1126 if (tmp2->expr == add->expr)
1127 {
1128 found = 1;
1129 if (! tmp2->writer)
1130 tmp2->writer = add->writer;
1131 }
1132 if (! found)
1133 {
1134 *end = copy ? add : new_tlist (NULL, add->expr, add->writer);
1135 end = &(*end)->next;
1136 *end = 0;
1137 }
1138 add = next;
1139 }
1140}
1141
1142/* WRITTEN is a variable, WRITER is its parent. Warn if any of the variable
1143 references in list LIST conflict with it, excluding reads if ONLY writers
1144 is nonzero. */
1145
1146static void
1147warn_for_collisions_1 (written, writer, list, only_writes)
1148 tree written, writer;
1149 struct tlist *list;
1150 int only_writes;
1151{
1152 struct tlist *tmp;
1153
1154 /* Avoid duplicate warnings. */
1155 for (tmp = warned_ids; tmp; tmp = tmp->next)
1156 if (tmp->expr == written)
1157 return;
1158
1159 while (list)
1160 {
1161 if (list->expr == written
1162 && list->writer != writer
1163 && (! only_writes || list->writer))
1164 {
1165 warned_ids = new_tlist (warned_ids, written, NULL_TREE);
1166 warning ("operation on `%s' may be undefined",
1167 IDENTIFIER_POINTER (DECL_NAME (list->expr)));
1168 }
1169 list = list->next;
1170 }
1171}
1172
1173/* Given a list LIST of references to variables, find whether any of these
1174 can cause conflicts due to missing sequence points. */
1175
1176static void
1177warn_for_collisions (list)
1178 struct tlist *list;
1179{
1180 struct tlist *tmp;
1181
1182 for (tmp = list; tmp; tmp = tmp->next)
1183 {
1184 if (tmp->writer)
1185 warn_for_collisions_1 (tmp->expr, tmp->writer, list, 0);
1186 }
1187}
1188
734c98be 1189/* Return nonzero if X is a tree that can be verified by the sequence point
4e91a871 1190 warnings. */
1191static int
1192warning_candidate_p (x)
481c6ce6 1193 tree x;
481c6ce6 1194{
4e91a871 1195 return TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == PARM_DECL;
1196}
481c6ce6 1197
4e91a871 1198/* Walk the tree X, and record accesses to variables. If X is written by the
1199 parent tree, WRITER is the parent.
1200 We store accesses in one of the two lists: PBEFORE_SP, and PNO_SP. If this
1201 expression or its only operand forces a sequence point, then everything up
1202 to the sequence point is stored in PBEFORE_SP. Everything else gets stored
1203 in PNO_SP.
1204 Once we return, we will have emitted warnings if any subexpression before
1205 such a sequence point could be undefined. On a higher level, however, the
1206 sequence point may not be relevant, and we'll merge the two lists.
1207
1208 Example: (b++, a) + b;
1209 The call that processes the COMPOUND_EXPR will store the increment of B
1210 in PBEFORE_SP, and the use of A in PNO_SP. The higher-level call that
1211 processes the PLUS_EXPR will need to merge the two lists so that
1212 eventually, all accesses end up on the same list (and we'll warn about the
1213 unordered subexpressions b++ and b.
1214
1215 A note on merging. If we modify the former example so that our expression
1216 becomes
1217 (b++, b) + a
1218 care must be taken not simply to add all three expressions into the final
1219 PNO_SP list. The function merge_tlist takes care of that by merging the
1220 before-SP list of the COMPOUND_EXPR into its after-SP list in a special
1221 way, so that no more than one access to B is recorded. */
481c6ce6 1222
4e91a871 1223static void
1224verify_tree (x, pbefore_sp, pno_sp, writer)
1225 tree x;
1226 struct tlist **pbefore_sp, **pno_sp;
1227 tree writer;
1228{
1229 struct tlist *tmp_before, *tmp_nosp, *tmp_list2, *tmp_list3;
1230 enum tree_code code;
1231 char class;
481c6ce6 1232
e5b75768 1233 /* X may be NULL if it is the operand of an empty statement expression
1234 ({ }). */
1235 if (x == NULL)
1236 return;
1237
4e91a871 1238 restart:
1239 code = TREE_CODE (x);
1240 class = TREE_CODE_CLASS (code);
481c6ce6 1241
4e91a871 1242 if (warning_candidate_p (x))
481c6ce6 1243 {
4e91a871 1244 *pno_sp = new_tlist (*pno_sp, x, writer);
1245 return;
1246 }
1247
1248 switch (code)
1249 {
67b28e3e 1250 case CONSTRUCTOR:
1251 return;
1252
4e91a871 1253 case COMPOUND_EXPR:
1254 case TRUTH_ANDIF_EXPR:
1255 case TRUTH_ORIF_EXPR:
1256 tmp_before = tmp_nosp = tmp_list3 = 0;
1257 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1258 warn_for_collisions (tmp_nosp);
1259 merge_tlist (pbefore_sp, tmp_before, 0);
1260 merge_tlist (pbefore_sp, tmp_nosp, 0);
1261 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, pno_sp, NULL_TREE);
1262 merge_tlist (pbefore_sp, tmp_list3, 0);
1263 return;
1264
1265 case COND_EXPR:
1266 tmp_before = tmp_list2 = 0;
1267 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_list2, NULL_TREE);
1268 warn_for_collisions (tmp_list2);
1269 merge_tlist (pbefore_sp, tmp_before, 0);
1270 merge_tlist (pbefore_sp, tmp_list2, 1);
1271
1272 tmp_list3 = tmp_nosp = 0;
1273 verify_tree (TREE_OPERAND (x, 1), &tmp_list3, &tmp_nosp, NULL_TREE);
1274 warn_for_collisions (tmp_nosp);
1275 merge_tlist (pbefore_sp, tmp_list3, 0);
1276
1277 tmp_list3 = tmp_list2 = 0;
1278 verify_tree (TREE_OPERAND (x, 2), &tmp_list3, &tmp_list2, NULL_TREE);
1279 warn_for_collisions (tmp_list2);
1280 merge_tlist (pbefore_sp, tmp_list3, 0);
1281 /* Rather than add both tmp_nosp and tmp_list2, we have to merge the
1282 two first, to avoid warning for (a ? b++ : b++). */
1283 merge_tlist (&tmp_nosp, tmp_list2, 0);
1284 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1285 return;
1286
481c6ce6 1287 case PREDECREMENT_EXPR:
1288 case PREINCREMENT_EXPR:
1289 case POSTDECREMENT_EXPR:
1290 case POSTINCREMENT_EXPR:
4e91a871 1291 verify_tree (TREE_OPERAND (x, 0), pno_sp, pno_sp, x);
1292 return;
1293
1294 case MODIFY_EXPR:
1295 tmp_before = tmp_nosp = tmp_list3 = 0;
1296 verify_tree (TREE_OPERAND (x, 1), &tmp_before, &tmp_nosp, NULL_TREE);
1297 verify_tree (TREE_OPERAND (x, 0), &tmp_list3, &tmp_list3, x);
1298 /* Expressions inside the LHS are not ordered wrt. the sequence points
1299 in the RHS. Example:
1300 *a = (a++, 2)
1301 Despite the fact that the modification of "a" is in the before_sp
1302 list (tmp_before), it conflicts with the use of "a" in the LHS.
1303 We can handle this by adding the contents of tmp_list3
1304 to those of tmp_before, and redoing the collision warnings for that
1305 list. */
1306 add_tlist (&tmp_before, tmp_list3, x, 1);
1307 warn_for_collisions (tmp_before);
1308 /* Exclude the LHS itself here; we first have to merge it into the
1309 tmp_nosp list. This is done to avoid warning for "a = a"; if we
1310 didn't exclude the LHS, we'd get it twice, once as a read and once
1311 as a write. */
1312 add_tlist (pno_sp, tmp_list3, x, 0);
1313 warn_for_collisions_1 (TREE_OPERAND (x, 0), x, tmp_nosp, 1);
1314
1315 merge_tlist (pbefore_sp, tmp_before, 0);
1316 if (warning_candidate_p (TREE_OPERAND (x, 0)))
1317 merge_tlist (&tmp_nosp, new_tlist (NULL, TREE_OPERAND (x, 0), x), 0);
1318 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 1);
1319 return;
481c6ce6 1320
1321 case CALL_EXPR:
4e91a871 1322 /* We need to warn about conflicts among arguments and conflicts between
1323 args and the function address. Side effects of the function address,
1324 however, are not ordered by the sequence point of the call. */
1325 tmp_before = tmp_nosp = tmp_list2 = tmp_list3 = 0;
1326 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1327 if (TREE_OPERAND (x, 1))
1328 verify_tree (TREE_OPERAND (x, 1), &tmp_list2, &tmp_list3, NULL_TREE);
1329 merge_tlist (&tmp_list3, tmp_list2, 0);
1330 add_tlist (&tmp_before, tmp_list3, NULL_TREE, 0);
1331 add_tlist (&tmp_before, tmp_nosp, NULL_TREE, 0);
1332 warn_for_collisions (tmp_before);
1333 add_tlist (pbefore_sp, tmp_before, NULL_TREE, 0);
1334 return;
481c6ce6 1335
1336 case TREE_LIST:
1337 /* Scan all the list, e.g. indices of multi dimensional array. */
1338 while (x)
1339 {
4e91a871 1340 tmp_before = tmp_nosp = 0;
1341 verify_tree (TREE_VALUE (x), &tmp_before, &tmp_nosp, NULL_TREE);
1342 merge_tlist (&tmp_nosp, tmp_before, 0);
1343 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
481c6ce6 1344 x = TREE_CHAIN (x);
1345 }
4e91a871 1346 return;
481c6ce6 1347
4e91a871 1348 case SAVE_EXPR:
1349 {
1350 struct tlist_cache *t;
1351 for (t = save_expr_cache; t; t = t->next)
1352 if (t->expr == x)
1353 break;
481c6ce6 1354
4e91a871 1355 if (! t)
481c6ce6 1356 {
4e91a871 1357 t = (struct tlist_cache *) obstack_alloc (&tlist_obstack,
1358 sizeof *t);
1359 t->next = save_expr_cache;
1360 t->expr = x;
1361 save_expr_cache = t;
1362
1363 tmp_before = tmp_nosp = 0;
1364 verify_tree (TREE_OPERAND (x, 0), &tmp_before, &tmp_nosp, NULL_TREE);
1365 warn_for_collisions (tmp_nosp);
1366
1367 tmp_list3 = 0;
1368 while (tmp_nosp)
1369 {
1370 struct tlist *t = tmp_nosp;
1371 tmp_nosp = t->next;
1372 merge_tlist (&tmp_list3, t, 0);
1373 }
1374 t->cache_before_sp = tmp_before;
1375 t->cache_after_sp = tmp_list3;
481c6ce6 1376 }
4e91a871 1377 merge_tlist (pbefore_sp, t->cache_before_sp, 1);
1378 add_tlist (pno_sp, t->cache_after_sp, NULL_TREE, 1);
1379 return;
1380 }
1381 default:
481c6ce6 1382 break;
1383 }
481c6ce6 1384
4e91a871 1385 if (class == '1')
481c6ce6 1386 {
4e91a871 1387 if (first_rtl_op (code) == 0)
1388 return;
1389 x = TREE_OPERAND (x, 0);
1390 writer = 0;
1391 goto restart;
481c6ce6 1392 }
1393
4e91a871 1394 switch (class)
481c6ce6 1395 {
4e91a871 1396 case 'r':
1397 case '<':
1398 case '2':
1399 case 'b':
1400 case 'e':
1401 case 's':
1402 case 'x':
1403 {
1404 int lp;
1405 int max = first_rtl_op (TREE_CODE (x));
1406 for (lp = 0; lp < max; lp++)
1407 {
1408 tmp_before = tmp_nosp = 0;
1409 verify_tree (TREE_OPERAND (x, lp), &tmp_before, &tmp_nosp, NULL_TREE);
1410 merge_tlist (&tmp_nosp, tmp_before, 0);
1411 add_tlist (pno_sp, tmp_nosp, NULL_TREE, 0);
1412 }
1413 break;
1414 }
481c6ce6 1415 }
481c6ce6 1416}
1417
1418/* Try to warn for undefined behaviour in EXPR due to missing sequence
1419 points. */
1420
1421static void
1422verify_sequence_points (expr)
1423 tree expr;
1424{
4e91a871 1425 struct tlist *before_sp = 0, *after_sp = 0;
481c6ce6 1426
4e91a871 1427 warned_ids = 0;
1428 save_expr_cache = 0;
1429 if (tlist_firstobj == 0)
481c6ce6 1430 {
4e91a871 1431 gcc_obstack_init (&tlist_obstack);
1432 tlist_firstobj = obstack_alloc (&tlist_obstack, 0);
481c6ce6 1433 }
1434
4e91a871 1435 verify_tree (expr, &before_sp, &after_sp, 0);
1436 warn_for_collisions (after_sp);
1437 obstack_free (&tlist_obstack, tlist_firstobj);
481c6ce6 1438}
1439
7cad36f4 1440tree
b0fc3e72 1441c_expand_expr_stmt (expr)
1442 tree expr;
1443{
1444 /* Do default conversion if safe and possibly important,
1445 in case within ({...}). */
62827f44 1446 if ((TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
1447 && (flag_isoc99 || lvalue_p (expr)))
b0fc3e72 1448 || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE)
1449 expr = default_conversion (expr);
1450
481c6ce6 1451 if (warn_sequence_point)
1452 verify_sequence_points (expr);
1453
b0fc3e72 1454 if (TREE_TYPE (expr) != error_mark_node
5fd5d738 1455 && !COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (expr))
b0fc3e72 1456 && TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
1457 error ("expression statement has incomplete type");
1458
e41f0d80 1459 last_expr_type = TREE_TYPE (expr);
7cad36f4 1460 return add_stmt (build_stmt (EXPR_STMT, expr));
b0fc3e72 1461}
1462\f
1463/* Validate the expression after `case' and apply default promotions. */
1464
1465tree
1466check_case_value (value)
1467 tree value;
1468{
1469 if (value == NULL_TREE)
1470 return value;
1471
1472 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
fce1d6af 1473 STRIP_TYPE_NOPS (value);
225ec6aa 1474 /* In C++, the following is allowed:
1475
1476 const int i = 3;
1477 switch (...) { case i: ... }
1478
1479 So, we try to reduce the VALUE to a constant that way. */
1480 if (c_language == clk_cplusplus)
1481 {
1482 value = decl_constant_value (value);
1483 STRIP_TYPE_NOPS (value);
1484 value = fold (value);
1485 }
b0fc3e72 1486
1487 if (TREE_CODE (value) != INTEGER_CST
1488 && value != error_mark_node)
1489 {
1490 error ("case label does not reduce to an integer constant");
1491 value = error_mark_node;
1492 }
1493 else
1494 /* Promote char or short to int. */
1495 value = default_conversion (value);
1496
6433f1c2 1497 constant_expression_warning (value);
1498
b0fc3e72 1499 return value;
1500}
1501\f
1502/* Return an integer type with BITS bits of precision,
1503 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
1504
1505tree
771d21fa 1506c_common_type_for_size (bits, unsignedp)
b0fc3e72 1507 unsigned bits;
1508 int unsignedp;
1509{
46375237 1510 if (bits == TYPE_PRECISION (integer_type_node))
1511 return unsignedp ? unsigned_type_node : integer_type_node;
1512
bacde65a 1513 if (bits == TYPE_PRECISION (signed_char_type_node))
b0fc3e72 1514 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1515
bacde65a 1516 if (bits == TYPE_PRECISION (short_integer_type_node))
b0fc3e72 1517 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1518
bacde65a 1519 if (bits == TYPE_PRECISION (long_integer_type_node))
b0fc3e72 1520 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1521
bacde65a 1522 if (bits == TYPE_PRECISION (long_long_integer_type_node))
b0fc3e72 1523 return (unsignedp ? long_long_unsigned_type_node
1524 : long_long_integer_type_node);
1525
f57fa2ea 1526 if (bits == TYPE_PRECISION (widest_integer_literal_type_node))
1527 return (unsignedp ? widest_unsigned_literal_type_node
1528 : widest_integer_literal_type_node);
1529
bacde65a 1530 if (bits <= TYPE_PRECISION (intQI_type_node))
1531 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1532
1533 if (bits <= TYPE_PRECISION (intHI_type_node))
1534 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1535
1536 if (bits <= TYPE_PRECISION (intSI_type_node))
1537 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1538
1539 if (bits <= TYPE_PRECISION (intDI_type_node))
1540 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1541
b0fc3e72 1542 return 0;
1543}
1544
1545/* Return a data type that has machine mode MODE.
1546 If the mode is an integer,
1547 then UNSIGNEDP selects between signed and unsigned types. */
1548
1549tree
771d21fa 1550c_common_type_for_mode (mode, unsignedp)
b0fc3e72 1551 enum machine_mode mode;
1552 int unsignedp;
1553{
46375237 1554 if (mode == TYPE_MODE (integer_type_node))
1555 return unsignedp ? unsigned_type_node : integer_type_node;
1556
b0fc3e72 1557 if (mode == TYPE_MODE (signed_char_type_node))
1558 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
1559
1560 if (mode == TYPE_MODE (short_integer_type_node))
1561 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
1562
b0fc3e72 1563 if (mode == TYPE_MODE (long_integer_type_node))
1564 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
1565
1566 if (mode == TYPE_MODE (long_long_integer_type_node))
1567 return unsignedp ? long_long_unsigned_type_node : long_long_integer_type_node;
1568
f57fa2ea 1569 if (mode == TYPE_MODE (widest_integer_literal_type_node))
44e9fa65 1570 return unsignedp ? widest_unsigned_literal_type_node
f57fa2ea 1571 : widest_integer_literal_type_node;
1572
88ae7f04 1573 if (mode == QImode)
bacde65a 1574 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1575
88ae7f04 1576 if (mode == HImode)
bacde65a 1577 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1578
88ae7f04 1579 if (mode == SImode)
bacde65a 1580 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1581
88ae7f04 1582 if (mode == DImode)
bacde65a 1583 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1584
cc1cc1c7 1585#if HOST_BITS_PER_WIDE_INT >= 64
6274009c 1586 if (mode == TYPE_MODE (intTI_type_node))
1587 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
cc1cc1c7 1588#endif
6274009c 1589
b0fc3e72 1590 if (mode == TYPE_MODE (float_type_node))
1591 return float_type_node;
1592
1593 if (mode == TYPE_MODE (double_type_node))
1594 return double_type_node;
1595
1596 if (mode == TYPE_MODE (long_double_type_node))
1597 return long_double_type_node;
1598
1599 if (mode == TYPE_MODE (build_pointer_type (char_type_node)))
1600 return build_pointer_type (char_type_node);
1601
1602 if (mode == TYPE_MODE (build_pointer_type (integer_type_node)))
1603 return build_pointer_type (integer_type_node);
1604
e2ea7e3a 1605#ifdef VECTOR_MODE_SUPPORTED_P
88ae7f04 1606 if (VECTOR_MODE_SUPPORTED_P (mode))
1607 {
1608 switch (mode)
1609 {
1610 case V16QImode:
1611 return unsignedp ? unsigned_V16QI_type_node : V16QI_type_node;
1612 case V8HImode:
1613 return unsignedp ? unsigned_V8HI_type_node : V8HI_type_node;
1614 case V4SImode:
1615 return unsignedp ? unsigned_V4SI_type_node : V4SI_type_node;
b0556a84 1616 case V2DImode:
1617 return unsignedp ? unsigned_V2DI_type_node : V2DI_type_node;
88ae7f04 1618 case V2SImode:
1619 return unsignedp ? unsigned_V2SI_type_node : V2SI_type_node;
1620 case V4HImode:
1621 return unsignedp ? unsigned_V4HI_type_node : V4HI_type_node;
1622 case V8QImode:
1623 return unsignedp ? unsigned_V8QI_type_node : V8QI_type_node;
87e19636 1624 case V16SFmode:
1625 return V16SF_type_node;
88ae7f04 1626 case V4SFmode:
1627 return V4SF_type_node;
1628 case V2SFmode:
1629 return V2SF_type_node;
b0556a84 1630 case V2DFmode:
1631 return V2DF_type_node;
88ae7f04 1632 default:
1633 break;
1634 }
1635 }
e2ea7e3a 1636#endif
1637
b0fc3e72 1638 return 0;
1639}
20d39783 1640
2c0e001b 1641/* Return an unsigned type the same as TYPE in other respects. */
20d39783 1642tree
4070745f 1643c_common_unsigned_type (type)
20d39783 1644 tree type;
1645{
1646 tree type1 = TYPE_MAIN_VARIANT (type);
1647 if (type1 == signed_char_type_node || type1 == char_type_node)
1648 return unsigned_char_type_node;
1649 if (type1 == integer_type_node)
1650 return unsigned_type_node;
1651 if (type1 == short_integer_type_node)
1652 return short_unsigned_type_node;
1653 if (type1 == long_integer_type_node)
1654 return long_unsigned_type_node;
1655 if (type1 == long_long_integer_type_node)
1656 return long_long_unsigned_type_node;
1657 if (type1 == widest_integer_literal_type_node)
1658 return widest_unsigned_literal_type_node;
1659#if HOST_BITS_PER_WIDE_INT >= 64
1660 if (type1 == intTI_type_node)
1661 return unsigned_intTI_type_node;
1662#endif
1663 if (type1 == intDI_type_node)
1664 return unsigned_intDI_type_node;
1665 if (type1 == intSI_type_node)
1666 return unsigned_intSI_type_node;
1667 if (type1 == intHI_type_node)
1668 return unsigned_intHI_type_node;
1669 if (type1 == intQI_type_node)
1670 return unsigned_intQI_type_node;
1671
4070745f 1672 return c_common_signed_or_unsigned_type (1, type);
20d39783 1673}
1674
1675/* Return a signed type the same as TYPE in other respects. */
1676
1677tree
4070745f 1678c_common_signed_type (type)
20d39783 1679 tree type;
1680{
1681 tree type1 = TYPE_MAIN_VARIANT (type);
1682 if (type1 == unsigned_char_type_node || type1 == char_type_node)
1683 return signed_char_type_node;
1684 if (type1 == unsigned_type_node)
1685 return integer_type_node;
1686 if (type1 == short_unsigned_type_node)
1687 return short_integer_type_node;
1688 if (type1 == long_unsigned_type_node)
1689 return long_integer_type_node;
1690 if (type1 == long_long_unsigned_type_node)
1691 return long_long_integer_type_node;
1692 if (type1 == widest_unsigned_literal_type_node)
1693 return widest_integer_literal_type_node;
1694#if HOST_BITS_PER_WIDE_INT >= 64
1695 if (type1 == unsigned_intTI_type_node)
1696 return intTI_type_node;
1697#endif
1698 if (type1 == unsigned_intDI_type_node)
1699 return intDI_type_node;
1700 if (type1 == unsigned_intSI_type_node)
1701 return intSI_type_node;
1702 if (type1 == unsigned_intHI_type_node)
1703 return intHI_type_node;
1704 if (type1 == unsigned_intQI_type_node)
1705 return intQI_type_node;
1706
4070745f 1707 return c_common_signed_or_unsigned_type (0, type);
20d39783 1708}
1709
1710/* Return a type the same as TYPE except unsigned or
1711 signed according to UNSIGNEDP. */
1712
1713tree
4070745f 1714c_common_signed_or_unsigned_type (unsignedp, type)
20d39783 1715 int unsignedp;
1716 tree type;
1717{
1718 if (! INTEGRAL_TYPE_P (type)
1719 || TREE_UNSIGNED (type) == unsignedp)
1720 return type;
1721
1722 if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
1723 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
44e9fa65 1724 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
20d39783 1725 return unsignedp ? unsigned_type_node : integer_type_node;
44e9fa65 1726 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
20d39783 1727 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
44e9fa65 1728 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
20d39783 1729 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
44e9fa65 1730 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
20d39783 1731 return (unsignedp ? long_long_unsigned_type_node
1732 : long_long_integer_type_node);
44e9fa65 1733 if (TYPE_PRECISION (type) == TYPE_PRECISION (widest_integer_literal_type_node))
20d39783 1734 return (unsignedp ? widest_unsigned_literal_type_node
1735 : widest_integer_literal_type_node);
ef11801e 1736
1737#if HOST_BITS_PER_WIDE_INT >= 64
1738 if (TYPE_PRECISION (type) == TYPE_PRECISION (intTI_type_node))
1739 return unsignedp ? unsigned_intTI_type_node : intTI_type_node;
1740#endif
1741 if (TYPE_PRECISION (type) == TYPE_PRECISION (intDI_type_node))
1742 return unsignedp ? unsigned_intDI_type_node : intDI_type_node;
1743 if (TYPE_PRECISION (type) == TYPE_PRECISION (intSI_type_node))
1744 return unsignedp ? unsigned_intSI_type_node : intSI_type_node;
1745 if (TYPE_PRECISION (type) == TYPE_PRECISION (intHI_type_node))
1746 return unsignedp ? unsigned_intHI_type_node : intHI_type_node;
1747 if (TYPE_PRECISION (type) == TYPE_PRECISION (intQI_type_node))
1748 return unsignedp ? unsigned_intQI_type_node : intQI_type_node;
1749
20d39783 1750 return type;
1751}
b0fc3e72 1752\f
a9b9d10c 1753/* Return the minimum number of bits needed to represent VALUE in a
1754 signed or unsigned type, UNSIGNEDP says which. */
1755
a0c2c45b 1756unsigned int
a9b9d10c 1757min_precision (value, unsignedp)
1758 tree value;
1759 int unsignedp;
1760{
1761 int log;
1762
1763 /* If the value is negative, compute its negative minus 1. The latter
1764 adjustment is because the absolute value of the largest negative value
1765 is one larger than the largest positive value. This is equivalent to
1766 a bit-wise negation, so use that operation instead. */
1767
1768 if (tree_int_cst_sgn (value) < 0)
1769 value = fold (build1 (BIT_NOT_EXPR, TREE_TYPE (value), value));
1770
1771 /* Return the number of bits needed, taking into account the fact
1772 that we need one more bit for a signed than unsigned type. */
1773
1774 if (integer_zerop (value))
1775 log = 0;
a9b9d10c 1776 else
a0c2c45b 1777 log = tree_floor_log2 (value);
a9b9d10c 1778
1779 return log + 1 + ! unsignedp;
1780}
1781\f
aff9e656 1782/* Print an error message for invalid operands to arith operation
1783 CODE. NOP_EXPR is used as a special case (see
1784 c_common_truthvalue_conversion). */
b0fc3e72 1785
1786void
1787binary_op_error (code)
1788 enum tree_code code;
1789{
19cb6b50 1790 const char *opname;
f03946e4 1791
b0fc3e72 1792 switch (code)
1793 {
1794 case NOP_EXPR:
1795 error ("invalid truth-value expression");
1796 return;
1797
1798 case PLUS_EXPR:
1799 opname = "+"; break;
1800 case MINUS_EXPR:
1801 opname = "-"; break;
1802 case MULT_EXPR:
1803 opname = "*"; break;
1804 case MAX_EXPR:
1805 opname = "max"; break;
1806 case MIN_EXPR:
1807 opname = "min"; break;
1808 case EQ_EXPR:
1809 opname = "=="; break;
1810 case NE_EXPR:
1811 opname = "!="; break;
1812 case LE_EXPR:
1813 opname = "<="; break;
1814 case GE_EXPR:
1815 opname = ">="; break;
1816 case LT_EXPR:
1817 opname = "<"; break;
1818 case GT_EXPR:
1819 opname = ">"; break;
1820 case LSHIFT_EXPR:
1821 opname = "<<"; break;
1822 case RSHIFT_EXPR:
1823 opname = ">>"; break;
1824 case TRUNC_MOD_EXPR:
66618a1e 1825 case FLOOR_MOD_EXPR:
b0fc3e72 1826 opname = "%"; break;
1827 case TRUNC_DIV_EXPR:
66618a1e 1828 case FLOOR_DIV_EXPR:
b0fc3e72 1829 opname = "/"; break;
1830 case BIT_AND_EXPR:
1831 opname = "&"; break;
1832 case BIT_IOR_EXPR:
1833 opname = "|"; break;
1834 case TRUTH_ANDIF_EXPR:
1835 opname = "&&"; break;
1836 case TRUTH_ORIF_EXPR:
1837 opname = "||"; break;
1838 case BIT_XOR_EXPR:
1839 opname = "^"; break;
66618a1e 1840 case LROTATE_EXPR:
1841 case RROTATE_EXPR:
1842 opname = "rotate"; break;
31f820d2 1843 default:
1844 opname = "unknown"; break;
b0fc3e72 1845 }
1846 error ("invalid operands to binary %s", opname);
1847}
1848\f
1849/* Subroutine of build_binary_op, used for comparison operations.
1850 See if the operands have both been converted from subword integer types
1851 and, if so, perhaps change them both back to their original type.
5b511807 1852 This function is also responsible for converting the two operands
1853 to the proper common type for comparison.
b0fc3e72 1854
1855 The arguments of this function are all pointers to local variables
1856 of build_binary_op: OP0_PTR is &OP0, OP1_PTR is &OP1,
1857 RESTYPE_PTR is &RESULT_TYPE and RESCODE_PTR is &RESULTCODE.
1858
1859 If this function returns nonzero, it means that the comparison has
1860 a constant value. What this function returns is an expression for
1861 that value. */
1862
1863tree
1864shorten_compare (op0_ptr, op1_ptr, restype_ptr, rescode_ptr)
1865 tree *op0_ptr, *op1_ptr;
1866 tree *restype_ptr;
1867 enum tree_code *rescode_ptr;
1868{
19cb6b50 1869 tree type;
b0fc3e72 1870 tree op0 = *op0_ptr;
1871 tree op1 = *op1_ptr;
1872 int unsignedp0, unsignedp1;
1873 int real1, real2;
1874 tree primop0, primop1;
1875 enum tree_code code = *rescode_ptr;
1876
1877 /* Throw away any conversions to wider types
1878 already present in the operands. */
1879
1880 primop0 = get_narrower (op0, &unsignedp0);
1881 primop1 = get_narrower (op1, &unsignedp1);
1882
1883 /* Handle the case that OP0 does not *contain* a conversion
1884 but it *requires* conversion to FINAL_TYPE. */
1885
1886 if (op0 == primop0 && TREE_TYPE (op0) != *restype_ptr)
1887 unsignedp0 = TREE_UNSIGNED (TREE_TYPE (op0));
1888 if (op1 == primop1 && TREE_TYPE (op1) != *restype_ptr)
1889 unsignedp1 = TREE_UNSIGNED (TREE_TYPE (op1));
1890
1891 /* If one of the operands must be floated, we cannot optimize. */
1892 real1 = TREE_CODE (TREE_TYPE (primop0)) == REAL_TYPE;
1893 real2 = TREE_CODE (TREE_TYPE (primop1)) == REAL_TYPE;
1894
1895 /* If first arg is constant, swap the args (changing operation
2bd278cc 1896 so value is preserved), for canonicalization. Don't do this if
1897 the second arg is 0. */
b0fc3e72 1898
2bd278cc 1899 if (TREE_CONSTANT (primop0)
1900 && ! integer_zerop (primop1) && ! real_zerop (primop1))
b0fc3e72 1901 {
19cb6b50 1902 tree tem = primop0;
1903 int temi = unsignedp0;
b0fc3e72 1904 primop0 = primop1;
1905 primop1 = tem;
1906 tem = op0;
1907 op0 = op1;
1908 op1 = tem;
1909 *op0_ptr = op0;
1910 *op1_ptr = op1;
1911 unsignedp0 = unsignedp1;
1912 unsignedp1 = temi;
1913 temi = real1;
1914 real1 = real2;
1915 real2 = temi;
1916
1917 switch (code)
1918 {
1919 case LT_EXPR:
1920 code = GT_EXPR;
1921 break;
1922 case GT_EXPR:
1923 code = LT_EXPR;
1924 break;
1925 case LE_EXPR:
1926 code = GE_EXPR;
1927 break;
1928 case GE_EXPR:
1929 code = LE_EXPR;
1930 break;
31f820d2 1931 default:
1932 break;
b0fc3e72 1933 }
1934 *rescode_ptr = code;
1935 }
1936
1937 /* If comparing an integer against a constant more bits wide,
1938 maybe we can deduce a value of 1 or 0 independent of the data.
1939 Or else truncate the constant now
1940 rather than extend the variable at run time.
1941
1942 This is only interesting if the constant is the wider arg.
1943 Also, it is not safe if the constant is unsigned and the
1944 variable arg is signed, since in this case the variable
1945 would be sign-extended and then regarded as unsigned.
1946 Our technique fails in this case because the lowest/highest
1947 possible unsigned results don't follow naturally from the
1948 lowest/highest possible values of the variable operand.
1949 For just EQ_EXPR and NE_EXPR there is another technique that
1950 could be used: see if the constant can be faithfully represented
1951 in the other operand's type, by truncating it and reextending it
1952 and see if that preserves the constant's value. */
1953
1954 if (!real1 && !real2
1955 && TREE_CODE (primop1) == INTEGER_CST
1956 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr))
1957 {
1958 int min_gt, max_gt, min_lt, max_lt;
1959 tree maxval, minval;
1960 /* 1 if comparison is nominally unsigned. */
1961 int unsignedp = TREE_UNSIGNED (*restype_ptr);
1962 tree val;
1963
4070745f 1964 type = c_common_signed_or_unsigned_type (unsignedp0,
1965 TREE_TYPE (primop0));
cda09c61 1966
1967 /* If TYPE is an enumeration, then we need to get its min/max
1968 values from it's underlying integral type, not the enumerated
1969 type itself. */
1970 if (TREE_CODE (type) == ENUMERAL_TYPE)
771d21fa 1971 type = c_common_type_for_size (TYPE_PRECISION (type), unsignedp0);
b0fc3e72 1972
1973 maxval = TYPE_MAX_VALUE (type);
1974 minval = TYPE_MIN_VALUE (type);
1975
1976 if (unsignedp && !unsignedp0)
4070745f 1977 *restype_ptr = c_common_signed_type (*restype_ptr);
b0fc3e72 1978
1979 if (TREE_TYPE (primop1) != *restype_ptr)
1980 primop1 = convert (*restype_ptr, primop1);
1981 if (type != *restype_ptr)
1982 {
1983 minval = convert (*restype_ptr, minval);
1984 maxval = convert (*restype_ptr, maxval);
1985 }
1986
1987 if (unsignedp && unsignedp0)
1988 {
1989 min_gt = INT_CST_LT_UNSIGNED (primop1, minval);
1990 max_gt = INT_CST_LT_UNSIGNED (primop1, maxval);
1991 min_lt = INT_CST_LT_UNSIGNED (minval, primop1);
1992 max_lt = INT_CST_LT_UNSIGNED (maxval, primop1);
1993 }
1994 else
1995 {
1996 min_gt = INT_CST_LT (primop1, minval);
1997 max_gt = INT_CST_LT (primop1, maxval);
1998 min_lt = INT_CST_LT (minval, primop1);
1999 max_lt = INT_CST_LT (maxval, primop1);
2000 }
2001
2002 val = 0;
2003 /* This used to be a switch, but Genix compiler can't handle that. */
2004 if (code == NE_EXPR)
2005 {
2006 if (max_lt || min_gt)
8a7e5d0d 2007 val = boolean_true_node;
b0fc3e72 2008 }
2009 else if (code == EQ_EXPR)
2010 {
2011 if (max_lt || min_gt)
8a7e5d0d 2012 val = boolean_false_node;
b0fc3e72 2013 }
2014 else if (code == LT_EXPR)
2015 {
2016 if (max_lt)
8a7e5d0d 2017 val = boolean_true_node;
b0fc3e72 2018 if (!min_lt)
8a7e5d0d 2019 val = boolean_false_node;
b0fc3e72 2020 }
2021 else if (code == GT_EXPR)
2022 {
2023 if (min_gt)
8a7e5d0d 2024 val = boolean_true_node;
b0fc3e72 2025 if (!max_gt)
8a7e5d0d 2026 val = boolean_false_node;
b0fc3e72 2027 }
2028 else if (code == LE_EXPR)
2029 {
2030 if (!max_gt)
8a7e5d0d 2031 val = boolean_true_node;
b0fc3e72 2032 if (min_gt)
8a7e5d0d 2033 val = boolean_false_node;
b0fc3e72 2034 }
2035 else if (code == GE_EXPR)
2036 {
2037 if (!min_lt)
8a7e5d0d 2038 val = boolean_true_node;
b0fc3e72 2039 if (max_lt)
8a7e5d0d 2040 val = boolean_false_node;
b0fc3e72 2041 }
2042
2043 /* If primop0 was sign-extended and unsigned comparison specd,
2044 we did a signed comparison above using the signed type bounds.
2045 But the comparison we output must be unsigned.
2046
2047 Also, for inequalities, VAL is no good; but if the signed
2048 comparison had *any* fixed result, it follows that the
2049 unsigned comparison just tests the sign in reverse
2050 (positive values are LE, negative ones GE).
2051 So we can generate an unsigned comparison
2052 against an extreme value of the signed type. */
2053
2054 if (unsignedp && !unsignedp0)
2055 {
2056 if (val != 0)
2057 switch (code)
2058 {
2059 case LT_EXPR:
2060 case GE_EXPR:
2061 primop1 = TYPE_MIN_VALUE (type);
2062 val = 0;
2063 break;
2064
2065 case LE_EXPR:
2066 case GT_EXPR:
2067 primop1 = TYPE_MAX_VALUE (type);
2068 val = 0;
2069 break;
31f820d2 2070
2071 default:
2072 break;
b0fc3e72 2073 }
4070745f 2074 type = c_common_unsigned_type (type);
b0fc3e72 2075 }
2076
fe5f2366 2077 if (TREE_CODE (primop0) != INTEGER_CST)
b0fc3e72 2078 {
8a7e5d0d 2079 if (val == boolean_false_node)
9a64a879 2080 warning ("comparison is always false due to limited range of data type");
8a7e5d0d 2081 if (val == boolean_true_node)
9a64a879 2082 warning ("comparison is always true due to limited range of data type");
b0fc3e72 2083 }
2084
2085 if (val != 0)
2086 {
2087 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2088 if (TREE_SIDE_EFFECTS (primop0))
2089 return build (COMPOUND_EXPR, TREE_TYPE (val), primop0, val);
2090 return val;
2091 }
2092
2093 /* Value is not predetermined, but do the comparison
2094 in the type of the operand that is not constant.
2095 TYPE is already properly set. */
2096 }
2097 else if (real1 && real2
2203bd5c 2098 && (TYPE_PRECISION (TREE_TYPE (primop0))
2099 == TYPE_PRECISION (TREE_TYPE (primop1))))
b0fc3e72 2100 type = TREE_TYPE (primop0);
2101
2102 /* If args' natural types are both narrower than nominal type
2103 and both extend in the same manner, compare them
2104 in the type of the wider arg.
2105 Otherwise must actually extend both to the nominal
2106 common type lest different ways of extending
2107 alter the result.
2108 (eg, (short)-1 == (unsigned short)-1 should be 0.) */
2109
2110 else if (unsignedp0 == unsignedp1 && real1 == real2
2111 && TYPE_PRECISION (TREE_TYPE (primop0)) < TYPE_PRECISION (*restype_ptr)
2112 && TYPE_PRECISION (TREE_TYPE (primop1)) < TYPE_PRECISION (*restype_ptr))
2113 {
2114 type = common_type (TREE_TYPE (primop0), TREE_TYPE (primop1));
4070745f 2115 type = c_common_signed_or_unsigned_type (unsignedp0
2116 || TREE_UNSIGNED (*restype_ptr),
2117 type);
b0fc3e72 2118 /* Make sure shorter operand is extended the right way
2119 to match the longer operand. */
4070745f 2120 primop0
2121 = convert (c_common_signed_or_unsigned_type (unsignedp0,
2122 TREE_TYPE (primop0)),
2123 primop0);
2124 primop1
2125 = convert (c_common_signed_or_unsigned_type (unsignedp1,
2126 TREE_TYPE (primop1)),
2127 primop1);
b0fc3e72 2128 }
2129 else
2130 {
2131 /* Here we must do the comparison on the nominal type
2132 using the args exactly as we received them. */
2133 type = *restype_ptr;
2134 primop0 = op0;
2135 primop1 = op1;
2136
2137 if (!real1 && !real2 && integer_zerop (primop1)
32ab5039 2138 && TREE_UNSIGNED (*restype_ptr))
b0fc3e72 2139 {
2140 tree value = 0;
2141 switch (code)
2142 {
2143 case GE_EXPR:
2bd278cc 2144 /* All unsigned values are >= 0, so we warn if extra warnings
2145 are requested. However, if OP0 is a constant that is
2146 >= 0, the signedness of the comparison isn't an issue,
2147 so suppress the warning. */
da99cd78 2148 if (extra_warnings && !in_system_header
2bd278cc 2149 && ! (TREE_CODE (primop0) == INTEGER_CST
4070745f 2150 && ! TREE_OVERFLOW (convert (c_common_signed_type (type),
2bd278cc 2151 primop0))))
9a64a879 2152 warning ("comparison of unsigned expression >= 0 is always true");
8a7e5d0d 2153 value = boolean_true_node;
b0fc3e72 2154 break;
2155
2156 case LT_EXPR:
da99cd78 2157 if (extra_warnings && !in_system_header
2bd278cc 2158 && ! (TREE_CODE (primop0) == INTEGER_CST
4070745f 2159 && ! TREE_OVERFLOW (convert (c_common_signed_type (type),
2bd278cc 2160 primop0))))
9a64a879 2161 warning ("comparison of unsigned expression < 0 is always false");
8a7e5d0d 2162 value = boolean_false_node;
31f820d2 2163 break;
2164
2165 default:
2166 break;
b0fc3e72 2167 }
2168
2169 if (value != 0)
2170 {
2171 /* Don't forget to evaluate PRIMOP0 if it has side effects. */
2172 if (TREE_SIDE_EFFECTS (primop0))
2173 return build (COMPOUND_EXPR, TREE_TYPE (value),
2174 primop0, value);
2175 return value;
2176 }
2177 }
2178 }
2179
2180 *op0_ptr = convert (type, primop0);
2181 *op1_ptr = convert (type, primop1);
2182
8a7e5d0d 2183 *restype_ptr = boolean_type_node;
b0fc3e72 2184
2185 return 0;
2186}
2187\f
1c26100f 2188/* Return a tree for the sum or difference (RESULTCODE says which)
2189 of pointer PTROP and integer INTOP. */
2190
2191tree
2192pointer_int_sum (resultcode, ptrop, intop)
2193 enum tree_code resultcode;
2194 tree ptrop, intop;
2195{
2196 tree size_exp;
2197
2198 tree result;
2199 tree folded;
2200
2201 /* The result is a pointer of the same type that is being added. */
2202
2203 tree result_type = TREE_TYPE (ptrop);
2204
2205 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
2206 {
2207 if (pedantic || warn_pointer_arith)
2208 pedwarn ("pointer of type `void *' used in arithmetic");
2209 size_exp = integer_one_node;
2210 }
2211 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
2212 {
2213 if (pedantic || warn_pointer_arith)
2214 pedwarn ("pointer to a function used in arithmetic");
2215 size_exp = integer_one_node;
2216 }
2217 else if (TREE_CODE (TREE_TYPE (result_type)) == METHOD_TYPE)
2218 {
2219 if (pedantic || warn_pointer_arith)
2220 pedwarn ("pointer to member function used in arithmetic");
2221 size_exp = integer_one_node;
2222 }
2223 else if (TREE_CODE (TREE_TYPE (result_type)) == OFFSET_TYPE)
2224 {
2225 if (pedantic || warn_pointer_arith)
2226 pedwarn ("pointer to a member used in arithmetic");
2227 size_exp = integer_one_node;
2228 }
2229 else
2230 size_exp = size_in_bytes (TREE_TYPE (result_type));
2231
2232 /* If what we are about to multiply by the size of the elements
2233 contains a constant term, apply distributive law
2234 and multiply that constant term separately.
2235 This helps produce common subexpressions. */
2236
2237 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
2238 && ! TREE_CONSTANT (intop)
2239 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
2240 && TREE_CONSTANT (size_exp)
2241 /* If the constant comes from pointer subtraction,
2242 skip this optimization--it would cause an error. */
2243 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
2244 /* If the constant is unsigned, and smaller than the pointer size,
2245 then we must skip this optimization. This is because it could cause
2246 an overflow error if the constant is negative but INTOP is not. */
2247 && (! TREE_UNSIGNED (TREE_TYPE (intop))
2248 || (TYPE_PRECISION (TREE_TYPE (intop))
2249 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
2250 {
2251 enum tree_code subcode = resultcode;
2252 tree int_type = TREE_TYPE (intop);
2253 if (TREE_CODE (intop) == MINUS_EXPR)
2254 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2255 /* Convert both subexpression types to the type of intop,
2256 because weird cases involving pointer arithmetic
2257 can result in a sum or difference with different type args. */
2258 ptrop = build_binary_op (subcode, ptrop,
2259 convert (int_type, TREE_OPERAND (intop, 1)), 1);
2260 intop = convert (int_type, TREE_OPERAND (intop, 0));
2261 }
2262
2263 /* Convert the integer argument to a type the same size as sizetype
2264 so the multiply won't overflow spuriously. */
2265
2266 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
2267 || TREE_UNSIGNED (TREE_TYPE (intop)) != TREE_UNSIGNED (sizetype))
771d21fa 2268 intop = convert (c_common_type_for_size (TYPE_PRECISION (sizetype),
2269 TREE_UNSIGNED (sizetype)), intop);
1c26100f 2270
2271 /* Replace the integer argument with a suitable product by the object size.
2272 Do this multiplication as signed, then convert to the appropriate
2273 pointer type (actually unsigned integral). */
2274
2275 intop = convert (result_type,
2276 build_binary_op (MULT_EXPR, intop,
2277 convert (TREE_TYPE (intop), size_exp), 1));
2278
2279 /* Create the sum or difference. */
2280
2281 result = build (resultcode, result_type, ptrop, intop);
2282
2283 folded = fold (result);
2284 if (folded == result)
2285 TREE_CONSTANT (folded) = TREE_CONSTANT (ptrop) & TREE_CONSTANT (intop);
2286 return folded;
2287}
2288\f
b0fc3e72 2289/* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
2290 or validate its data type for an `if' or `while' statement or ?..: exp.
2291
2292 This preparation consists of taking the ordinary
2293 representation of an expression expr and producing a valid tree
2294 boolean expression describing whether expr is nonzero. We could
8a7e5d0d 2295 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
b0fc3e72 2296 but we optimize comparisons, &&, ||, and !.
2297
8a7e5d0d 2298 The resulting type should always be `boolean_type_node'. */
b0fc3e72 2299
2300tree
aff9e656 2301c_common_truthvalue_conversion (expr)
b0fc3e72 2302 tree expr;
2303{
baa1f4f5 2304 if (TREE_CODE (expr) == ERROR_MARK)
2305 return expr;
2306
a70adbe5 2307#if 0 /* This appears to be wrong for C++. */
baa1f4f5 2308 /* These really should return error_mark_node after 2.4 is stable.
2309 But not all callers handle ERROR_MARK properly. */
2310 switch (TREE_CODE (TREE_TYPE (expr)))
2311 {
2312 case RECORD_TYPE:
2313 error ("struct type value used where scalar is required");
8a7e5d0d 2314 return boolean_false_node;
baa1f4f5 2315
2316 case UNION_TYPE:
2317 error ("union type value used where scalar is required");
8a7e5d0d 2318 return boolean_false_node;
baa1f4f5 2319
2320 case ARRAY_TYPE:
2321 error ("array type value used where scalar is required");
8a7e5d0d 2322 return boolean_false_node;
baa1f4f5 2323
2324 default:
2325 break;
2326 }
a70adbe5 2327#endif /* 0 */
baa1f4f5 2328
b0fc3e72 2329 switch (TREE_CODE (expr))
2330 {
b0fc3e72 2331 case EQ_EXPR:
b0fc3e72 2332 case NE_EXPR: case LE_EXPR: case GE_EXPR: case LT_EXPR: case GT_EXPR:
2333 case TRUTH_ANDIF_EXPR:
2334 case TRUTH_ORIF_EXPR:
2335 case TRUTH_AND_EXPR:
2336 case TRUTH_OR_EXPR:
31f6e93c 2337 case TRUTH_XOR_EXPR:
7bbc42b5 2338 case TRUTH_NOT_EXPR:
8a7e5d0d 2339 TREE_TYPE (expr) = boolean_type_node;
2340 return expr;
3e851b85 2341
b0fc3e72 2342 case ERROR_MARK:
2343 return expr;
2344
2345 case INTEGER_CST:
8a7e5d0d 2346 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
b0fc3e72 2347
2348 case REAL_CST:
8a7e5d0d 2349 return real_zerop (expr) ? boolean_false_node : boolean_true_node;
b0fc3e72 2350
2351 case ADDR_EXPR:
20dd417a 2352 /* If we are taking the address of an external decl, it might be zero
65b5e6a6 2353 if it is weak, so we cannot optimize. */
9308e976 2354 if (DECL_P (TREE_OPERAND (expr, 0))
65b5e6a6 2355 && DECL_EXTERNAL (TREE_OPERAND (expr, 0)))
2356 break;
2357
b0fc3e72 2358 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 0)))
8a7e5d0d 2359 return build (COMPOUND_EXPR, boolean_type_node,
2360 TREE_OPERAND (expr, 0), boolean_true_node);
b0fc3e72 2361 else
8a7e5d0d 2362 return boolean_true_node;
b0fc3e72 2363
2203bd5c 2364 case COMPLEX_EXPR:
2ba726d2 2365 return build_binary_op ((TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1))
95809de4 2366 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
aff9e656 2367 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)),
2368 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2203bd5c 2369 0);
2370
b0fc3e72 2371 case NEGATE_EXPR:
2372 case ABS_EXPR:
2373 case FLOAT_EXPR:
2374 case FFS_EXPR:
2375 /* These don't change whether an object is non-zero or zero. */
aff9e656 2376 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
b0fc3e72 2377
2378 case LROTATE_EXPR:
2379 case RROTATE_EXPR:
2380 /* These don't change whether an object is zero or non-zero, but
2381 we can't ignore them if their second arg has side-effects. */
2382 if (TREE_SIDE_EFFECTS (TREE_OPERAND (expr, 1)))
8a7e5d0d 2383 return build (COMPOUND_EXPR, boolean_type_node, TREE_OPERAND (expr, 1),
aff9e656 2384 c_common_truthvalue_conversion (TREE_OPERAND (expr, 0)));
b0fc3e72 2385 else
aff9e656 2386 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
73be5127 2387
b0fc3e72 2388 case COND_EXPR:
2389 /* Distribute the conversion into the arms of a COND_EXPR. */
8a7e5d0d 2390 return fold (build (COND_EXPR, boolean_type_node, TREE_OPERAND (expr, 0),
aff9e656 2391 c_common_truthvalue_conversion (TREE_OPERAND (expr, 1)),
2392 c_common_truthvalue_conversion (TREE_OPERAND (expr, 2))));
b0fc3e72 2393
2394 case CONVERT_EXPR:
2395 /* Don't cancel the effect of a CONVERT_EXPR from a REFERENCE_TYPE,
2396 since that affects how `default_conversion' will behave. */
2397 if (TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE
2398 || TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2399 break;
a92771b8 2400 /* fall through... */
b0fc3e72 2401 case NOP_EXPR:
2402 /* If this is widening the argument, we can ignore it. */
2403 if (TYPE_PRECISION (TREE_TYPE (expr))
2404 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (expr, 0))))
aff9e656 2405 return c_common_truthvalue_conversion (TREE_OPERAND (expr, 0));
b0fc3e72 2406 break;
2407
b0fc3e72 2408 case MINUS_EXPR:
920d0fb5 2409 /* Perhaps reduce (x - y) != 0 to (x != y). The expressions
2410 aren't guaranteed to the be same for modes that can represent
2411 infinity, since if x and y are both +infinity, or both
2412 -infinity, then x - y is not a number.
2413
2414 Note that this transformation is safe when x or y is NaN.
2415 (x - y) is then NaN, and both (x - y) != 0 and x != y will
2416 be false. */
2417 if (HONOR_INFINITIES (TYPE_MODE (TREE_TYPE (TREE_OPERAND (expr, 0)))))
fe0a0255 2418 break;
a92771b8 2419 /* fall through... */
fe0a0255 2420 case BIT_XOR_EXPR:
a70adbe5 2421 /* This and MINUS_EXPR can be changed into a comparison of the
fe0a0255 2422 two objects. */
b0fc3e72 2423 if (TREE_TYPE (TREE_OPERAND (expr, 0))
2424 == TREE_TYPE (TREE_OPERAND (expr, 1)))
2425 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2426 TREE_OPERAND (expr, 1), 1);
2427 return build_binary_op (NE_EXPR, TREE_OPERAND (expr, 0),
2428 fold (build1 (NOP_EXPR,
2429 TREE_TYPE (TREE_OPERAND (expr, 0)),
2430 TREE_OPERAND (expr, 1))), 1);
16837b18 2431
c2edbca4 2432 case BIT_AND_EXPR:
cc4c7eaf 2433 if (integer_onep (TREE_OPERAND (expr, 1))
2434 && TREE_TYPE (expr) != boolean_type_node)
2435 /* Using convert here would cause infinite recursion. */
2436 return build1 (NOP_EXPR, boolean_type_node, expr);
2437 break;
c2edbca4 2438
16837b18 2439 case MODIFY_EXPR:
2440 if (warn_parentheses && C_EXP_ORIGINAL_CODE (expr) == MODIFY_EXPR)
2441 warning ("suggest parentheses around assignment used as truth value");
2442 break;
73be5127 2443
31f820d2 2444 default:
2445 break;
b0fc3e72 2446 }
2447
2ba726d2 2448 if (TREE_CODE (TREE_TYPE (expr)) == COMPLEX_TYPE)
a0748b7d 2449 {
aff9e656 2450 tree t = save_expr (expr);
a0748b7d 2451 return (build_binary_op
2452 ((TREE_SIDE_EFFECTS (expr)
2453 ? TRUTH_OR_EXPR : TRUTH_ORIF_EXPR),
aff9e656 2454 c_common_truthvalue_conversion (build_unary_op (REALPART_EXPR, t, 0)),
2455 c_common_truthvalue_conversion (build_unary_op (IMAGPART_EXPR, t, 0)),
a0748b7d 2456 0));
2457 }
2ba726d2 2458
b0fc3e72 2459 return build_binary_op (NE_EXPR, expr, integer_zero_node, 1);
2460}
2461\f
0d4238dc 2462static tree builtin_function_2 PARAMS ((const char *, const char *, tree, tree,
2463 int, enum built_in_class, int, int,
2464 int));
2465
ceee5ef4 2466/* Make a variant type in the proper way for C/C++, propagating qualifiers
2467 down to the element type of an array. */
2468
2469tree
a5b1863e 2470c_build_qualified_type (type, type_quals)
ceee5ef4 2471 tree type;
a5b1863e 2472 int type_quals;
ceee5ef4 2473{
a5b1863e 2474 /* A restrict-qualified pointer type must be a pointer to object or
2475 incomplete type. Note that the use of POINTER_TYPE_P also allows
2476 REFERENCE_TYPEs, which is appropriate for C++. Unfortunately,
2477 the C++ front-end also use POINTER_TYPE for pointer-to-member
2478 values, so even though it should be illegal to use `restrict'
2479 with such an entity we don't flag that here. Thus, special case
2480 code for that case is required in the C++ front-end. */
2481 if ((type_quals & TYPE_QUAL_RESTRICT)
2482 && (!POINTER_TYPE_P (type)
2483 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (type))))
2484 {
2485 error ("invalid use of `restrict'");
2486 type_quals &= ~TYPE_QUAL_RESTRICT;
2487 }
2488
ceee5ef4 2489 if (TREE_CODE (type) == ARRAY_TYPE)
a5b1863e 2490 return build_array_type (c_build_qualified_type (TREE_TYPE (type),
2491 type_quals),
754d8048 2492 TYPE_DOMAIN (type));
a5b1863e 2493 return build_qualified_type (type, type_quals);
2494}
2495
2496/* Apply the TYPE_QUALS to the new DECL. */
2497
2498void
2499c_apply_type_quals_to_decl (type_quals, decl)
2500 int type_quals;
2501 tree decl;
2502{
73bfa249 2503 if ((type_quals & TYPE_QUAL_CONST)
2504 || (TREE_TYPE (decl)
2505 && TREE_CODE (TREE_TYPE (decl)) == REFERENCE_TYPE))
a5b1863e 2506 TREE_READONLY (decl) = 1;
2507 if (type_quals & TYPE_QUAL_VOLATILE)
2508 {
2509 TREE_SIDE_EFFECTS (decl) = 1;
2510 TREE_THIS_VOLATILE (decl) = 1;
2511 }
d91a20bc 2512 if (type_quals & TYPE_QUAL_RESTRICT)
a5b1863e 2513 {
d91a20bc 2514 if (!TREE_TYPE (decl)
2515 || !POINTER_TYPE_P (TREE_TYPE (decl))
2516 || !C_TYPE_OBJECT_OR_INCOMPLETE_P (TREE_TYPE (TREE_TYPE (decl))))
2517 error ("invalid use of `restrict'");
2518 else if (flag_strict_aliasing)
ed83aafb 2519 /* Indicate we need to make a unique alias set for this pointer.
2520 We can't do it here because it might be pointing to an
2521 incomplete type. */
2522 DECL_POINTER_ALIAS_SET (decl) = -2;
a5b1863e 2523 }
2524}
2525
b5ba9f3a 2526/* Return the typed-based alias set for T, which may be an expression
f7c44134 2527 or a type. Return -1 if we don't do anything special. */
b5ba9f3a 2528
f7c44134 2529HOST_WIDE_INT
2a631e19 2530c_common_get_alias_set (t)
b5ba9f3a 2531 tree t;
2532{
be4f2de7 2533 tree u;
4405d230 2534
2535 /* We know nothing about vector types */
2536 if (TREE_CODE (t) == VECTOR_TYPE)
2537 return 0;
2538
be4f2de7 2539 /* Permit type-punning when accessing a union, provided the access
2540 is directly through the union. For example, this code does not
2541 permit taking the address of a union member and then storing
2542 through it. Even the type-punning allowed here is a GCC
2543 extension, albeit a common and useful one; the C standard says
2544 that such accesses have implementation-defined behavior. */
2545 for (u = t;
2546 TREE_CODE (u) == COMPONENT_REF || TREE_CODE (u) == ARRAY_REF;
2547 u = TREE_OPERAND (u, 0))
2548 if (TREE_CODE (u) == COMPONENT_REF
2549 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
2550 return 0;
1e2513d9 2551
f7c44134 2552 /* If this is a char *, the ANSI C standard says it can alias
1607663f 2553 anything. Note that all references need do this. */
2554 if (TREE_CODE_CLASS (TREE_CODE (t)) == 'r'
2555 && TREE_CODE (TREE_TYPE (t)) == INTEGER_TYPE
2556 && TYPE_PRECISION (TREE_TYPE (t)) == TYPE_PRECISION (char_type_node))
f7c44134 2557 return 0;
a5b1863e 2558
cb59f969 2559 /* If it has the may_alias attribute, it can alias anything. */
2560 if (TYPE_P (t) && lookup_attribute ("may_alias", TYPE_ATTRIBUTES (t)))
2561 return 0;
2562
f7c44134 2563 /* That's all the expressions we handle specially. */
2564 if (! TYPE_P (t))
2565 return -1;
b5ba9f3a 2566
1607663f 2567 /* The C standard specifically allows aliasing between signed and
2568 unsigned variants of the same type. We treat the signed
2569 variant as canonical. */
2570 if (TREE_CODE (t) == INTEGER_TYPE && TREE_UNSIGNED (t))
a8868e19 2571 {
4070745f 2572 tree t1 = c_common_signed_type (t);
1607663f 2573
a8868e19 2574 /* t1 == t can happen for boolean nodes which are always unsigned. */
2575 if (t1 != t)
2576 return get_alias_set (t1);
2577 }
f7c44134 2578 else if (POINTER_TYPE_P (t))
87d2d17e 2579 {
f7c44134 2580 tree t1;
87d2d17e 2581
2582 /* Unfortunately, there is no canonical form of a pointer type.
2583 In particular, if we have `typedef int I', then `int *', and
2584 `I *' are different types. So, we have to pick a canonical
2585 representative. We do this below.
44e9fa65 2586
40bdc593 2587 Technically, this approach is actually more conservative that
2588 it needs to be. In particular, `const int *' and `int *'
734c98be 2589 should be in different alias sets, according to the C and C++
40bdc593 2590 standard, since their types are not the same, and so,
2591 technically, an `int **' and `const int **' cannot point at
2592 the same thing.
2593
2594 But, the standard is wrong. In particular, this code is
2595 legal C++:
2596
2597 int *ip;
2598 int **ipp = &ip;
8d564a28 2599 const int* const* cipp = &ipp;
40bdc593 2600
2601 And, it doesn't make sense for that to be legal unless you
2602 can dereference IPP and CIPP. So, we ignore cv-qualifiers on
2603 the pointed-to types. This issue has been reported to the
2604 C++ committee. */
211f3116 2605 t1 = build_type_no_quals (t);
f7c44134 2606 if (t1 != t)
2607 return get_alias_set (t1);
87d2d17e 2608 }
1e2513d9 2609
f7c44134 2610 return -1;
b5ba9f3a 2611}
902b4e01 2612\f
2613/* Implement the __alignof keyword: Return the minimum required
2614 alignment of TYPE, measured in bytes. */
2615
2616tree
2617c_alignof (type)
2618 tree type;
2619{
2620 enum tree_code code = TREE_CODE (type);
2621 tree t;
2622
2623 /* In C++, sizeof applies to the referent. Handle alignof the same way. */
2624 if (code == REFERENCE_TYPE)
2625 {
2626 type = TREE_TYPE (type);
2627 code = TREE_CODE (type);
2628 }
2629
2630 if (code == FUNCTION_TYPE)
2631 t = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
2632 else if (code == VOID_TYPE || code == ERROR_MARK)
2633 t = size_one_node;
2634 else if (!COMPLETE_TYPE_P (type))
2635 {
2636 error ("__alignof__ applied to an incomplete type");
2637 t = size_zero_node;
2638 }
2639 else
2640 t = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
2641
2642 return fold (build1 (NOP_EXPR, c_size_type_node, t));
2643}
2644
2645/* Implement the __alignof keyword: Return the minimum required
2646 alignment of EXPR, measured in bytes. For VAR_DECL's and
2647 FIELD_DECL's return DECL_ALIGN (which can be set from an
2648 "aligned" __attribute__ specification). */
72040e7e 2649
902b4e01 2650tree
2651c_alignof_expr (expr)
2652 tree expr;
2653{
2654 tree t;
2655
2656 if (TREE_CODE (expr) == VAR_DECL)
2657 t = size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
2658
2659 else if (TREE_CODE (expr) == COMPONENT_REF
2660 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
2661 {
2662 error ("`__alignof' applied to a bit-field");
2663 t = size_one_node;
2664 }
2665 else if (TREE_CODE (expr) == COMPONENT_REF
7cc7e163 2666 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
902b4e01 2667 t = size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
2668
2669 else if (TREE_CODE (expr) == INDIRECT_REF)
2670 {
2671 tree t = TREE_OPERAND (expr, 0);
2672 tree best = t;
2673 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2674
2675 while (TREE_CODE (t) == NOP_EXPR
7cc7e163 2676 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
902b4e01 2677 {
2678 int thisalign;
2679
2680 t = TREE_OPERAND (t, 0);
2681 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
2682 if (thisalign > bestalign)
2683 best = t, bestalign = thisalign;
2684 }
2685 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
2686 }
2687 else
2688 return c_alignof (TREE_TYPE (expr));
2689
2690 return fold (build1 (NOP_EXPR, c_size_type_node, t));
2691}
2692\f
72040e7e 2693/* Build tree nodes and builtin functions common to both C and C++ language
0270ae90 2694 frontends. */
f7c44134 2695
72040e7e 2696void
0270ae90 2697c_common_nodes_and_builtins ()
72040e7e 2698{
d2d4bdde 2699 enum builtin_type
2700 {
2701#define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
2702#define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
2703#define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
2704#define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
2705#define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
2706#define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
2707#define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
2708#define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
2709#define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
2710#define DEF_POINTER_TYPE(NAME, TYPE) NAME,
2711#include "builtin-types.def"
2712#undef DEF_PRIMITIVE_TYPE
2713#undef DEF_FUNCTION_TYPE_0
2714#undef DEF_FUNCTION_TYPE_1
2715#undef DEF_FUNCTION_TYPE_2
2716#undef DEF_FUNCTION_TYPE_3
2717#undef DEF_FUNCTION_TYPE_4
2718#undef DEF_FUNCTION_TYPE_VAR_0
2719#undef DEF_FUNCTION_TYPE_VAR_1
2720#undef DEF_FUNCTION_TYPE_VAR_2
2721#undef DEF_POINTER_TYPE
2722 BT_LAST
2723 };
2724
2725 typedef enum builtin_type builtin_type;
2726
7cc7e163 2727 tree builtin_types[(int) BT_LAST];
174fcc61 2728 int wchar_type_size;
2729 tree array_domain_type;
2d47cc32 2730 tree va_list_ref_type_node;
8a15c04a 2731 tree va_list_arg_type_node;
a66c9326 2732
174fcc61 2733 /* Define `int' and `char' first so that dbx will output them first. */
d946ea19 2734 record_builtin_type (RID_INT, NULL, integer_type_node);
174fcc61 2735 record_builtin_type (RID_CHAR, "char", char_type_node);
2736
2737 /* `signed' is the same as `int'. FIXME: the declarations of "signed",
2738 "unsigned long", "long long unsigned" and "unsigned short" were in C++
2739 but not C. Are the conditionals here needed? */
2740 if (c_language == clk_cplusplus)
d946ea19 2741 record_builtin_type (RID_SIGNED, NULL, integer_type_node);
174fcc61 2742 record_builtin_type (RID_LONG, "long int", long_integer_type_node);
2743 record_builtin_type (RID_UNSIGNED, "unsigned int", unsigned_type_node);
2744 record_builtin_type (RID_MAX, "long unsigned int",
2745 long_unsigned_type_node);
2746 if (c_language == clk_cplusplus)
2747 record_builtin_type (RID_MAX, "unsigned long", long_unsigned_type_node);
2748 record_builtin_type (RID_MAX, "long long int",
2749 long_long_integer_type_node);
2750 record_builtin_type (RID_MAX, "long long unsigned int",
2751 long_long_unsigned_type_node);
2752 if (c_language == clk_cplusplus)
2753 record_builtin_type (RID_MAX, "long long unsigned",
2754 long_long_unsigned_type_node);
2755 record_builtin_type (RID_SHORT, "short int", short_integer_type_node);
2756 record_builtin_type (RID_MAX, "short unsigned int",
2757 short_unsigned_type_node);
2758 if (c_language == clk_cplusplus)
2759 record_builtin_type (RID_MAX, "unsigned short",
2760 short_unsigned_type_node);
2761
2762 /* Define both `signed char' and `unsigned char'. */
2763 record_builtin_type (RID_MAX, "signed char", signed_char_type_node);
2764 record_builtin_type (RID_MAX, "unsigned char", unsigned_char_type_node);
2765
771d21fa 2766 /* These are types that c_common_type_for_size and
2767 c_common_type_for_mode use. */
20325f61 2768 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2769 intQI_type_node));
2770 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2771 intHI_type_node));
2772 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2773 intSI_type_node));
2774 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2775 intDI_type_node));
174fcc61 2776#if HOST_BITS_PER_WIDE_INT >= 64
20325f61 2777 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2778 get_identifier ("__int128_t"),
2779 intTI_type_node));
174fcc61 2780#endif
20325f61 2781 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2782 unsigned_intQI_type_node));
2783 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2784 unsigned_intHI_type_node));
2785 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2786 unsigned_intSI_type_node));
2787 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2788 unsigned_intDI_type_node));
174fcc61 2789#if HOST_BITS_PER_WIDE_INT >= 64
20325f61 2790 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2791 get_identifier ("__uint128_t"),
2792 unsigned_intTI_type_node));
174fcc61 2793#endif
2794
2795 /* Create the widest literal types. */
2796 widest_integer_literal_type_node
2797 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
20325f61 2798 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2799 widest_integer_literal_type_node));
174fcc61 2800
2801 widest_unsigned_literal_type_node
2802 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
20325f61 2803 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL, NULL_TREE,
2804 widest_unsigned_literal_type_node));
174fcc61 2805
2806 /* `unsigned long' is the standard type for sizeof.
2807 Note that stddef.h uses `unsigned long',
2808 and this must agree, even if long and int are the same size. */
2809 c_size_type_node =
2810 TREE_TYPE (identifier_global_value (get_identifier (SIZE_TYPE)));
4070745f 2811 signed_size_type_node = c_common_signed_type (c_size_type_node);
174fcc61 2812 set_sizetype (c_size_type_node);
2813
2814 build_common_tree_nodes_2 (flag_short_double);
2815
d946ea19 2816 record_builtin_type (RID_FLOAT, NULL, float_type_node);
2817 record_builtin_type (RID_DOUBLE, NULL, double_type_node);
174fcc61 2818 record_builtin_type (RID_MAX, "long double", long_double_type_node);
2819
20325f61 2820 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2821 get_identifier ("complex int"),
2822 complex_integer_type_node));
2823 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2824 get_identifier ("complex float"),
2825 complex_float_type_node));
2826 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2827 get_identifier ("complex double"),
2828 complex_double_type_node));
2829 (*lang_hooks.decls.pushdecl)
2830 (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2831 complex_long_double_type_node));
174fcc61 2832
175f3f99 2833 /* Types which are common to the fortran compiler and libf2c. When
2834 changing these, you also need to be concerned with f/com.h. */
2835
2836 if (TYPE_PRECISION (float_type_node)
2837 == TYPE_PRECISION (long_integer_type_node))
2838 {
2839 g77_integer_type_node = long_integer_type_node;
2840 g77_uinteger_type_node = long_unsigned_type_node;
2841 }
2842 else if (TYPE_PRECISION (float_type_node)
2843 == TYPE_PRECISION (integer_type_node))
2844 {
2845 g77_integer_type_node = integer_type_node;
2846 g77_uinteger_type_node = unsigned_type_node;
2847 }
2848 else
2849 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
2850
2851 if (g77_integer_type_node != NULL_TREE)
2852 {
2853 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2854 get_identifier ("__g77_integer"),
2855 g77_integer_type_node));
2856 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2857 get_identifier ("__g77_uinteger"),
2858 g77_uinteger_type_node));
2859 }
2860
2861 if (TYPE_PRECISION (float_type_node) * 2
2862 == TYPE_PRECISION (long_integer_type_node))
2863 {
2864 g77_longint_type_node = long_integer_type_node;
2865 g77_ulongint_type_node = long_unsigned_type_node;
2866 }
2867 else if (TYPE_PRECISION (float_type_node) * 2
2868 == TYPE_PRECISION (long_long_integer_type_node))
2869 {
2870 g77_longint_type_node = long_long_integer_type_node;
2871 g77_ulongint_type_node = long_long_unsigned_type_node;
2872 }
2873 else
2874 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
2875
2876 if (g77_longint_type_node != NULL_TREE)
2877 {
2878 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2879 get_identifier ("__g77_longint"),
2880 g77_longint_type_node));
2881 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
2882 get_identifier ("__g77_ulongint"),
2883 g77_ulongint_type_node));
2884 }
2885
d946ea19 2886 record_builtin_type (RID_VOID, NULL, void_type_node);
174fcc61 2887
d2d4bdde 2888 void_zero_node = build_int_2 (0, 0);
2889 TREE_TYPE (void_zero_node) = void_type_node;
2890
174fcc61 2891 void_list_node = build_void_list_node ();
2892
2893 /* Make a type to be the domain of a few array types
2894 whose domains don't really matter.
2895 200 is small enough that it always fits in size_t
2896 and large enough that it can hold most function names for the
2897 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
2898 array_domain_type = build_index_type (size_int (200));
2899
2900 /* Make a type for arrays of characters.
2901 With luck nothing will ever really depend on the length of this
2902 array type. */
2903 char_array_type_node
2904 = build_array_type (char_type_node, array_domain_type);
2905
2906 /* Likewise for arrays of ints. */
2907 int_array_type_node
2908 = build_array_type (integer_type_node, array_domain_type);
2909
d2d4bdde 2910 string_type_node = build_pointer_type (char_type_node);
2911 const_string_type_node
2912 = build_pointer_type (build_qualified_type
2913 (char_type_node, TYPE_QUAL_CONST));
2914
fc2a2dcb 2915 (*targetm.init_builtins) ();
174fcc61 2916
2917 /* This is special for C++ so functions can be overloaded. */
18ef7ac2 2918 wchar_type_node = get_identifier (MODIFIED_WCHAR_TYPE);
174fcc61 2919 wchar_type_node = TREE_TYPE (identifier_global_value (wchar_type_node));
2920 wchar_type_size = TYPE_PRECISION (wchar_type_node);
2921 if (c_language == clk_cplusplus)
2922 {
2923 if (TREE_UNSIGNED (wchar_type_node))
2924 wchar_type_node = make_unsigned_type (wchar_type_size);
2925 else
2926 wchar_type_node = make_signed_type (wchar_type_size);
2927 record_builtin_type (RID_WCHAR, "wchar_t", wchar_type_node);
2928 }
2929 else
2930 {
4070745f 2931 signed_wchar_type_node = c_common_signed_type (wchar_type_node);
2932 unsigned_wchar_type_node = c_common_unsigned_type (wchar_type_node);
174fcc61 2933 }
2934
2935 /* This is for wide string constants. */
2936 wchar_array_type_node
2937 = build_array_type (wchar_type_node, array_domain_type);
2938
6bf5ed8d 2939 wint_type_node =
2940 TREE_TYPE (identifier_global_value (get_identifier (WINT_TYPE)));
2941
2942 intmax_type_node =
2943 TREE_TYPE (identifier_global_value (get_identifier (INTMAX_TYPE)));
2944 uintmax_type_node =
2945 TREE_TYPE (identifier_global_value (get_identifier (UINTMAX_TYPE)));
2946
2947 default_function_type = build_function_type (integer_type_node, NULL_TREE);
2948 ptrdiff_type_node
2949 = TREE_TYPE (identifier_global_value (get_identifier (PTRDIFF_TYPE)));
4070745f 2950 unsigned_ptrdiff_type_node = c_common_unsigned_type (ptrdiff_type_node);
6bf5ed8d 2951
20325f61 2952 (*lang_hooks.decls.pushdecl)
2953 (build_decl (TYPE_DECL, get_identifier ("__builtin_va_list"),
2954 va_list_type_node));
8a15c04a 2955
20325f61 2956 (*lang_hooks.decls.pushdecl)
2957 (build_decl (TYPE_DECL, get_identifier ("__builtin_ptrdiff_t"),
2958 ptrdiff_type_node));
ee702940 2959
20325f61 2960 (*lang_hooks.decls.pushdecl)
2961 (build_decl (TYPE_DECL, get_identifier ("__builtin_size_t"),
2962 sizetype));
ee702940 2963
8a15c04a 2964 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
2d47cc32 2965 {
2966 va_list_arg_type_node = va_list_ref_type_node =
2967 build_pointer_type (TREE_TYPE (va_list_type_node));
2968 }
8a15c04a 2969 else
2d47cc32 2970 {
2971 va_list_arg_type_node = va_list_type_node;
2972 va_list_ref_type_node = build_reference_type (va_list_type_node);
2973 }
2974
d2d4bdde 2975#define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
2976 builtin_types[(int) ENUM] = VALUE;
2977#define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
2978 builtin_types[(int) ENUM] \
2979 = build_function_type (builtin_types[(int) RETURN], \
2980 void_list_node);
2981#define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
2982 builtin_types[(int) ENUM] \
2983 = build_function_type (builtin_types[(int) RETURN], \
2984 tree_cons (NULL_TREE, \
2985 builtin_types[(int) ARG1], \
2986 void_list_node));
2987#define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
2988 builtin_types[(int) ENUM] \
2989 = build_function_type \
2990 (builtin_types[(int) RETURN], \
2991 tree_cons (NULL_TREE, \
2992 builtin_types[(int) ARG1], \
2993 tree_cons (NULL_TREE, \
2994 builtin_types[(int) ARG2], \
2995 void_list_node)));
2996#define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
2997 builtin_types[(int) ENUM] \
2998 = build_function_type \
2999 (builtin_types[(int) RETURN], \
3000 tree_cons (NULL_TREE, \
3001 builtin_types[(int) ARG1], \
3002 tree_cons (NULL_TREE, \
3003 builtin_types[(int) ARG2], \
3004 tree_cons (NULL_TREE, \
3005 builtin_types[(int) ARG3], \
3006 void_list_node))));
3007#define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
3008 builtin_types[(int) ENUM] \
3009 = build_function_type \
3010 (builtin_types[(int) RETURN], \
3011 tree_cons (NULL_TREE, \
3012 builtin_types[(int) ARG1], \
3013 tree_cons (NULL_TREE, \
3014 builtin_types[(int) ARG2], \
3015 tree_cons \
3016 (NULL_TREE, \
3017 builtin_types[(int) ARG3], \
3018 tree_cons (NULL_TREE, \
3019 builtin_types[(int) ARG4], \
3020 void_list_node)))));
3021#define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
3022 builtin_types[(int) ENUM] \
3023 = build_function_type (builtin_types[(int) RETURN], NULL_TREE);
3024#define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
3025 builtin_types[(int) ENUM] \
3026 = build_function_type (builtin_types[(int) RETURN], \
3027 tree_cons (NULL_TREE, \
3028 builtin_types[(int) ARG1], \
3311f67b 3029 NULL_TREE));
3030
d2d4bdde 3031#define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
3032 builtin_types[(int) ENUM] \
3033 = build_function_type \
3034 (builtin_types[(int) RETURN], \
3035 tree_cons (NULL_TREE, \
3036 builtin_types[(int) ARG1], \
3037 tree_cons (NULL_TREE, \
3038 builtin_types[(int) ARG2], \
3039 NULL_TREE)));
3040#define DEF_POINTER_TYPE(ENUM, TYPE) \
3041 builtin_types[(int) ENUM] \
3042 = build_pointer_type (builtin_types[(int) TYPE]);
3043#include "builtin-types.def"
3044#undef DEF_PRIMITIVE_TYPE
3045#undef DEF_FUNCTION_TYPE_1
3046#undef DEF_FUNCTION_TYPE_2
3047#undef DEF_FUNCTION_TYPE_3
3048#undef DEF_FUNCTION_TYPE_4
3049#undef DEF_FUNCTION_TYPE_VAR_0
3050#undef DEF_FUNCTION_TYPE_VAR_1
3051#undef DEF_POINTER_TYPE
3052
3053#define DEF_BUILTIN(ENUM, NAME, CLASS, \
3054 TYPE, LIBTYPE, BOTH_P, FALLBACK_P, NONANSI_P) \
3055 if (NAME) \
3056 { \
3057 tree decl; \
3058 \
3059 if (strncmp (NAME, "__builtin_", strlen ("__builtin_")) != 0) \
3060 abort (); \
3061 \
3062 if (!BOTH_P) \
3063 decl = builtin_function (NAME, builtin_types[TYPE], ENUM, \
3064 CLASS, \
3065 (FALLBACK_P \
3066 ? (NAME + strlen ("__builtin_")) \
3067 : NULL)); \
3068 else \
3069 decl = builtin_function_2 (NAME, \
3070 NAME + strlen ("__builtin_"), \
3071 builtin_types[TYPE], \
3072 builtin_types[LIBTYPE], \
3073 ENUM, \
3074 CLASS, \
3075 FALLBACK_P, \
3076 NONANSI_P, \
3077 /*noreturn_p=*/0); \
3078 \
3079 built_in_decls[(int) ENUM] = decl; \
3080 }
3081#include "builtins.def"
3082#undef DEF_BUILTIN
df4b504c 3083
fafa62e3 3084 /* Declare _exit and _Exit just to mark them as non-returning. */
d2d4bdde 3085 builtin_function_2 (NULL, "_exit", NULL_TREE,
3086 builtin_types[BT_FN_VOID_INT],
0d4238dc 3087 0, NOT_BUILT_IN, 0, 1, 1);
d2d4bdde 3088 builtin_function_2 (NULL, "_Exit", NULL_TREE,
3089 builtin_types[BT_FN_VOID_INT],
fafa62e3 3090 0, NOT_BUILT_IN, 0, !flag_isoc99, 1);
0d4238dc 3091
0d4238dc 3092 /* Declare these functions non-returning
3093 to avoid spurious "control drops through" warnings. */
d946ea19 3094 builtin_function_2 (NULL, "abort",
0d4238dc 3095 NULL_TREE, ((c_language == clk_cplusplus)
d2d4bdde 3096 ? builtin_types[BT_FN_VOID]
3097 : builtin_types[BT_FN_VOID_VAR]),
0d4238dc 3098 0, NOT_BUILT_IN, 0, 0, 1);
3099
d946ea19 3100 builtin_function_2 (NULL, "exit",
0d4238dc 3101 NULL_TREE, ((c_language == clk_cplusplus)
d2d4bdde 3102 ? builtin_types[BT_FN_VOID_INT]
3103 : builtin_types[BT_FN_VOID_VAR]),
0d4238dc 3104 0, NOT_BUILT_IN, 0, 0, 1);
72040e7e 3105
5c62f199 3106 main_identifier_node = get_identifier ("main");
72040e7e 3107}
a66c9326 3108
3109tree
3110build_va_arg (expr, type)
3111 tree expr, type;
3112{
3113 return build1 (VA_ARG_EXPR, type, expr);
3114}
0d4238dc 3115
3116
dd878098 3117/* Linked list of disabled built-in functions. */
3118
3119typedef struct disabled_builtin
3120{
3121 const char *name;
3122 struct disabled_builtin *next;
3123} disabled_builtin;
3124static disabled_builtin *disabled_builtins = NULL;
3125
3126static bool builtin_function_disabled_p PARAMS ((const char *));
3127
3128/* Disable a built-in function specified by -fno-builtin-NAME. If NAME
3129 begins with "__builtin_", give an error. */
3130
3131void
3132disable_builtin_function (name)
3133 const char *name;
3134{
3135 if (strncmp (name, "__builtin_", strlen ("__builtin_")) == 0)
3136 error ("cannot disable built-in function `%s'", name);
3137 else
3138 {
3139 disabled_builtin *new = xmalloc (sizeof (disabled_builtin));
3140 new->name = name;
3141 new->next = disabled_builtins;
3142 disabled_builtins = new;
3143 }
3144}
3145
3146
3147/* Return true if the built-in function NAME has been disabled, false
3148 otherwise. */
3149
3150static bool
3151builtin_function_disabled_p (name)
3152 const char *name;
3153{
3154 disabled_builtin *p;
3155 for (p = disabled_builtins; p != NULL; p = p->next)
3156 {
3157 if (strcmp (name, p->name) == 0)
3158 return true;
3159 }
3160 return false;
3161}
3162
3163
0d4238dc 3164/* Possibly define a builtin function with one or two names. BUILTIN_NAME
3165 is an __builtin_-prefixed name; NAME is the ordinary name; one or both
3166 of these may be NULL (though both being NULL is useless).
3167 BUILTIN_TYPE is the type of the __builtin_-prefixed function;
3168 TYPE is the type of the function with the ordinary name. These
3169 may differ if the ordinary name is declared with a looser type to avoid
3170 conflicts with headers. FUNCTION_CODE and CLASS are as for
3171 builtin_function. If LIBRARY_NAME_P is nonzero, NAME is passed as
3172 the LIBRARY_NAME parameter to builtin_function when declaring BUILTIN_NAME.
3173 If NONANSI_P is nonzero, the name NAME is treated as a non-ANSI name; if
3174 NORETURN_P is nonzero, the function is marked as non-returning.
3175 Returns the declaration of BUILTIN_NAME, if any, otherwise
3176 the declaration of NAME. Does not declare NAME if flag_no_builtin,
3177 or if NONANSI_P and flag_no_nonansi_builtin. */
3178
3179static tree
3180builtin_function_2 (builtin_name, name, builtin_type, type, function_code,
3181 class, library_name_p, nonansi_p, noreturn_p)
3182 const char *builtin_name;
3183 const char *name;
3184 tree builtin_type;
3185 tree type;
3186 int function_code;
3187 enum built_in_class class;
3188 int library_name_p;
3189 int nonansi_p;
3190 int noreturn_p;
3191{
3192 tree bdecl = NULL_TREE;
3193 tree decl = NULL_TREE;
3194 if (builtin_name != 0)
3195 {
3196 bdecl = builtin_function (builtin_name, builtin_type, function_code,
d946ea19 3197 class, library_name_p ? name : NULL);
0d4238dc 3198 if (noreturn_p)
3199 {
3200 TREE_THIS_VOLATILE (bdecl) = 1;
3201 TREE_SIDE_EFFECTS (bdecl) = 1;
3202 }
3203 }
dd878098 3204 if (name != 0 && !flag_no_builtin && !builtin_function_disabled_p (name)
3205 && !(nonansi_p && flag_no_nonansi_builtin))
0d4238dc 3206 {
d946ea19 3207 decl = builtin_function (name, type, function_code, class, NULL);
0d4238dc 3208 if (nonansi_p)
3209 DECL_BUILT_IN_NONANSI (decl) = 1;
3210 if (noreturn_p)
3211 {
3212 TREE_THIS_VOLATILE (decl) = 1;
3213 TREE_SIDE_EFFECTS (decl) = 1;
3214 }
3215 }
3216 return (bdecl != 0 ? bdecl : decl);
3217}
e94026da 3218\f
d7aeef06 3219/* Nonzero if the type T promotes to int. This is (nearly) the
3220 integral promotions defined in ISO C99 6.3.1.1/2. */
3221
3222bool
3223c_promoting_integer_type_p (t)
3224 tree t;
3225{
3226 switch (TREE_CODE (t))
3227 {
3228 case INTEGER_TYPE:
3229 return (TYPE_MAIN_VARIANT (t) == char_type_node
3230 || TYPE_MAIN_VARIANT (t) == signed_char_type_node
3231 || TYPE_MAIN_VARIANT (t) == unsigned_char_type_node
3232 || TYPE_MAIN_VARIANT (t) == short_integer_type_node
7aa1e6eb 3233 || TYPE_MAIN_VARIANT (t) == short_unsigned_type_node
3234 || TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node));
d7aeef06 3235
3236 case ENUMERAL_TYPE:
3237 /* ??? Technically all enumerations not larger than an int
3238 promote to an int. But this is used along code paths
3239 that only want to notice a size change. */
3240 return TYPE_PRECISION (t) < TYPE_PRECISION (integer_type_node);
3241
3242 case BOOLEAN_TYPE:
3243 return 1;
3244
3245 default:
3246 return 0;
3247 }
3248}
3249
e94026da 3250/* Return 1 if PARMS specifies a fixed number of parameters
3251 and none of their types is affected by default promotions. */
3252
3253int
3254self_promoting_args_p (parms)
3255 tree parms;
3256{
19cb6b50 3257 tree t;
e94026da 3258 for (t = parms; t; t = TREE_CHAIN (t))
3259 {
19cb6b50 3260 tree type = TREE_VALUE (t);
43f74bc4 3261
e94026da 3262 if (TREE_CHAIN (t) == 0 && type != void_type_node)
3263 return 0;
3264
3265 if (type == 0)
3266 return 0;
3267
3268 if (TYPE_MAIN_VARIANT (type) == float_type_node)
3269 return 0;
3270
d7aeef06 3271 if (c_promoting_integer_type_p (type))
e94026da 3272 return 0;
3273 }
3274 return 1;
3275}
605fb01e 3276
c25509f2 3277/* Recursively examines the array elements of TYPE, until a non-array
3278 element type is found. */
3279
3280tree
3281strip_array_types (type)
3282 tree type;
3283{
3284 while (TREE_CODE (type) == ARRAY_TYPE)
3285 type = TREE_TYPE (type);
3286
3287 return type;
3288}
3289
920d0fb5 3290static tree expand_unordered_cmp PARAMS ((tree, tree, enum tree_code,
3291 enum tree_code));
3292
3293/* Expand a call to an unordered comparison function such as
3294 __builtin_isgreater(). FUNCTION is the function's declaration and
3295 PARAMS a list of the values passed. For __builtin_isunordered(),
3296 UNORDERED_CODE is UNORDERED_EXPR and ORDERED_CODE is NOP_EXPR. In
3297 other cases, UNORDERED_CODE and ORDERED_CODE are comparison codes
3298 that give the opposite of the desired result. UNORDERED_CODE is
3299 used for modes that can hold NaNs and ORDERED_CODE is used for the
3300 rest. */
3301
3302static tree
3303expand_unordered_cmp (function, params, unordered_code, ordered_code)
3304 tree function, params;
3305 enum tree_code unordered_code, ordered_code;
3306{
3307 tree arg0, arg1, type;
3308 enum tree_code code0, code1;
3309
3310 /* Check that we have exactly two arguments. */
3311 if (params == 0 || TREE_CHAIN (params) == 0)
3312 {
3313 error ("too few arguments to function `%s'",
3314 IDENTIFIER_POINTER (DECL_NAME (function)));
3315 return error_mark_node;
3316 }
3317 else if (TREE_CHAIN (TREE_CHAIN (params)) != 0)
3318 {
3319 error ("too many arguments to function `%s'",
3320 IDENTIFIER_POINTER (DECL_NAME (function)));
3321 return error_mark_node;
3322 }
3323
3324 arg0 = TREE_VALUE (params);
3325 arg1 = TREE_VALUE (TREE_CHAIN (params));
3326
3327 code0 = TREE_CODE (TREE_TYPE (arg0));
3328 code1 = TREE_CODE (TREE_TYPE (arg1));
3329
3330 /* Make sure that the arguments have a common type of REAL. */
3331 type = 0;
3332 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
3333 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
3334 type = common_type (TREE_TYPE (arg0), TREE_TYPE (arg1));
3335
3336 if (type == 0 || TREE_CODE (type) != REAL_TYPE)
3337 {
3338 error ("non-floating-point argument to function `%s'",
3339 IDENTIFIER_POINTER (DECL_NAME (function)));
3340 return error_mark_node;
3341 }
3342
3343 if (unordered_code == UNORDERED_EXPR)
3344 {
3345 if (MODE_HAS_NANS (TYPE_MODE (type)))
3346 return build_binary_op (unordered_code,
3347 convert (type, arg0),
3348 convert (type, arg1),
3349 0);
3350 else
3351 return integer_zero_node;
3352 }
3353
3354 return build_unary_op (TRUTH_NOT_EXPR,
3355 build_binary_op (MODE_HAS_NANS (TYPE_MODE (type))
3356 ? unordered_code
3357 : ordered_code,
3358 convert (type, arg0),
3359 convert (type, arg1),
3360 0),
3361 0);
3362}
3363
3364
605fb01e 3365/* Recognize certain built-in functions so we can make tree-codes
3366 other than CALL_EXPR. We do this when it enables fold-const.c
3367 to do something useful. */
3368/* ??? By rights this should go in builtins.c, but only C and C++
3369 implement build_{binary,unary}_op. Not exactly sure what bits
3370 of functionality are actually needed from those functions, or
3371 where the similar functionality exists in the other front ends. */
3372
3373tree
3374expand_tree_builtin (function, params, coerced_params)
3375 tree function, params, coerced_params;
3376{
605fb01e 3377 if (DECL_BUILT_IN_CLASS (function) != BUILT_IN_NORMAL)
3378 return NULL_TREE;
3379
3380 switch (DECL_FUNCTION_CODE (function))
3381 {
3382 case BUILT_IN_ABS:
d2d4bdde 3383 case BUILT_IN_LABS:
3384 case BUILT_IN_LLABS:
3385 case BUILT_IN_IMAXABS:
605fb01e 3386 case BUILT_IN_FABS:
d2d4bdde 3387 case BUILT_IN_FABSL:
3388 case BUILT_IN_FABSF:
605fb01e 3389 if (coerced_params == 0)
3390 return integer_zero_node;
3391 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
3392
d30e4d04 3393 case BUILT_IN_CONJ:
d2d4bdde 3394 case BUILT_IN_CONJF:
3395 case BUILT_IN_CONJL:
d30e4d04 3396 if (coerced_params == 0)
3397 return integer_zero_node;
3398 return build_unary_op (CONJ_EXPR, TREE_VALUE (coerced_params), 0);
3399
3400 case BUILT_IN_CREAL:
d2d4bdde 3401 case BUILT_IN_CREALF:
3402 case BUILT_IN_CREALL:
d30e4d04 3403 if (coerced_params == 0)
3404 return integer_zero_node;
3405 return build_unary_op (REALPART_EXPR, TREE_VALUE (coerced_params), 0);
3406
3407 case BUILT_IN_CIMAG:
d2d4bdde 3408 case BUILT_IN_CIMAGF:
3409 case BUILT_IN_CIMAGL:
d30e4d04 3410 if (coerced_params == 0)
3411 return integer_zero_node;
3412 return build_unary_op (IMAGPART_EXPR, TREE_VALUE (coerced_params), 0);
3413
605fb01e 3414 case BUILT_IN_ISGREATER:
920d0fb5 3415 return expand_unordered_cmp (function, params, UNLE_EXPR, LE_EXPR);
605fb01e 3416
3417 case BUILT_IN_ISGREATEREQUAL:
920d0fb5 3418 return expand_unordered_cmp (function, params, UNLT_EXPR, LT_EXPR);
605fb01e 3419
3420 case BUILT_IN_ISLESS:
920d0fb5 3421 return expand_unordered_cmp (function, params, UNGE_EXPR, GE_EXPR);
605fb01e 3422
3423 case BUILT_IN_ISLESSEQUAL:
920d0fb5 3424 return expand_unordered_cmp (function, params, UNGT_EXPR, GT_EXPR);
605fb01e 3425
3426 case BUILT_IN_ISLESSGREATER:
920d0fb5 3427 return expand_unordered_cmp (function, params, UNEQ_EXPR, EQ_EXPR);
605fb01e 3428
3429 case BUILT_IN_ISUNORDERED:
920d0fb5 3430 return expand_unordered_cmp (function, params, UNORDERED_EXPR, NOP_EXPR);
605fb01e 3431
3432 default:
3433 break;
3434 }
3435
3436 return NULL_TREE;
3437}
51444f0d 3438
a08e60ae 3439/* Returns non-zero if CODE is the code for a statement. */
3440
3441int
3442statement_code_p (code)
3443 enum tree_code code;
3444{
3445 switch (code)
3446 {
7b6facbf 3447 case CLEANUP_STMT:
a08e60ae 3448 case EXPR_STMT:
3449 case COMPOUND_STMT:
3450 case DECL_STMT:
3451 case IF_STMT:
3452 case FOR_STMT:
3453 case WHILE_STMT:
3454 case DO_STMT:
3455 case RETURN_STMT:
3456 case BREAK_STMT:
3457 case CONTINUE_STMT:
e41f0d80 3458 case SCOPE_STMT:
a08e60ae 3459 case SWITCH_STMT:
3460 case GOTO_STMT:
3461 case LABEL_STMT:
3462 case ASM_STMT:
204ca66e 3463 case FILE_STMT:
a08e60ae 3464 case CASE_LABEL:
3465 return 1;
3466
3467 default:
3468 if (lang_statement_code_p)
3469 return (*lang_statement_code_p) (code);
3470 return 0;
3471 }
3472}
3473
7b915c10 3474/* Walk the statement tree, rooted at *tp. Apply FUNC to all the
a08e60ae 3475 sub-trees of *TP in a pre-order traversal. FUNC is called with the
3476 DATA and the address of each sub-tree. If FUNC returns a non-NULL
3477 value, the traversal is aborted, and the value returned by FUNC is
3478 returned. If FUNC sets WALK_SUBTREES to zero, then the subtrees of
3479 the node being visited are not walked.
3480
3481 We don't need a without_duplicates variant of this one because the
3482 statement tree is a tree, not a graph. */
3483
3484tree
3485walk_stmt_tree (tp, func, data)
3486 tree *tp;
3487 walk_tree_fn func;
3488 void *data;
3489{
3490 enum tree_code code;
3491 int walk_subtrees;
3492 tree result;
3493 int i, len;
3494
3495#define WALK_SUBTREE(NODE) \
3496 do \
3497 { \
3498 result = walk_stmt_tree (&(NODE), func, data); \
3499 if (result) \
3500 return result; \
3501 } \
3502 while (0)
3503
3504 /* Skip empty subtrees. */
3505 if (!*tp)
3506 return NULL_TREE;
3507
3508 /* Skip subtrees below non-statement nodes. */
3509 if (!statement_code_p (TREE_CODE (*tp)))
3510 return NULL_TREE;
3511
3512 /* Call the function. */
3513 walk_subtrees = 1;
3514 result = (*func) (tp, &walk_subtrees, data);
3515
3516 /* If we found something, return it. */
3517 if (result)
3518 return result;
3519
a08e60ae 3520 /* FUNC may have modified the tree, recheck that we're looking at a
3521 statement node. */
3522 code = TREE_CODE (*tp);
3523 if (!statement_code_p (code))
3524 return NULL_TREE;
3525
f2b74df1 3526 /* Visit the subtrees unless FUNC decided that there was nothing
3527 interesting below this point in the tree. */
3528 if (walk_subtrees)
3529 {
3530 /* Walk over all the sub-trees of this operand. Statement nodes
3531 never contain RTL, and we needn't worry about TARGET_EXPRs. */
3532 len = TREE_CODE_LENGTH (code);
3533
3534 /* Go through the subtrees. We need to do this in forward order so
3535 that the scope of a FOR_EXPR is handled properly. */
3536 for (i = 0; i < len; ++i)
3537 WALK_SUBTREE (TREE_OPERAND (*tp, i));
3538 }
a08e60ae 3539
3540 /* Finally visit the chain. This can be tail-recursion optimized if
3541 we write it this way. */
3542 return walk_stmt_tree (&TREE_CHAIN (*tp), func, data);
3543
3544#undef WALK_SUBTREE
3545}
3546
e41f0d80 3547/* Used to compare case labels. K1 and K2 are actually tree nodes
3548 representing case labels, or NULL_TREE for a `default' label.
3549 Returns -1 if K1 is ordered before K2, -1 if K1 is ordered after
3550 K2, and 0 if K1 and K2 are equal. */
3551
3552int
3553case_compare (k1, k2)
3554 splay_tree_key k1;
3555 splay_tree_key k2;
3556{
3557 /* Consider a NULL key (such as arises with a `default' label) to be
3558 smaller than anything else. */
3559 if (!k1)
3560 return k2 ? -1 : 0;
3561 else if (!k2)
3562 return k1 ? 1 : 0;
3563
3564 return tree_int_cst_compare ((tree) k1, (tree) k2);
3565}
3566
3567/* Process a case label for the range LOW_VALUE ... HIGH_VALUE. If
3568 LOW_VALUE and HIGH_VALUE are both NULL_TREE then this case label is
3569 actually a `default' label. If only HIGH_VALUE is NULL_TREE, then
3570 case label was declared using the usual C/C++ syntax, rather than
3571 the GNU case range extension. CASES is a tree containing all the
3572 case ranges processed so far; COND is the condition for the
3573 switch-statement itself. Returns the CASE_LABEL created, or
3574 ERROR_MARK_NODE if no CASE_LABEL is created. */
3575
3576tree
3577c_add_case_label (cases, cond, low_value, high_value)
3578 splay_tree cases;
3579 tree cond;
3580 tree low_value;
3581 tree high_value;
3582{
3583 tree type;
3584 tree label;
3585 tree case_label;
3586 splay_tree_node node;
3587
3588 /* Create the LABEL_DECL itself. */
3589 label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
3590 DECL_CONTEXT (label) = current_function_decl;
3591
3592 /* If there was an error processing the switch condition, bail now
3593 before we get more confused. */
3594 if (!cond || cond == error_mark_node)
3595 {
3596 /* Add a label anyhow so that the back-end doesn't think that
3597 the beginning of the switch is unreachable. */
3598 if (!cases->root)
3599 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3600 return error_mark_node;
3601 }
3602
3603 if ((low_value && TREE_TYPE (low_value)
3604 && POINTER_TYPE_P (TREE_TYPE (low_value)))
3605 || (high_value && TREE_TYPE (high_value)
3606 && POINTER_TYPE_P (TREE_TYPE (high_value))))
3607 error ("pointers are not permitted as case values");
3608
3609 /* Case ranges are a GNU extension. */
3610 if (high_value && pedantic)
3611 {
3612 if (c_language == clk_cplusplus)
3613 pedwarn ("ISO C++ forbids range expressions in switch statements");
3614 else
3615 pedwarn ("ISO C forbids range expressions in switch statements");
3616 }
3617
3618 type = TREE_TYPE (cond);
3619 if (low_value)
3620 {
3621 low_value = check_case_value (low_value);
3622 low_value = convert_and_check (type, low_value);
3623 }
3624 if (high_value)
3625 {
3626 high_value = check_case_value (high_value);
3627 high_value = convert_and_check (type, high_value);
3628 }
3629
3630 /* If an error has occurred, bail out now. */
3631 if (low_value == error_mark_node || high_value == error_mark_node)
3632 {
3633 if (!cases->root)
3634 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3635 return error_mark_node;
3636 }
3637
3638 /* If the LOW_VALUE and HIGH_VALUE are the same, then this isn't
3639 really a case range, even though it was written that way. Remove
3640 the HIGH_VALUE to simplify later processing. */
3641 if (tree_int_cst_equal (low_value, high_value))
3642 high_value = NULL_TREE;
3643 if (low_value && high_value
3644 && !tree_int_cst_lt (low_value, high_value))
3645 warning ("empty range specified");
3646
3647 /* Look up the LOW_VALUE in the table of case labels we already
3648 have. */
3649 node = splay_tree_lookup (cases, (splay_tree_key) low_value);
3650 /* If there was not an exact match, check for overlapping ranges.
3651 There's no need to do this if there's no LOW_VALUE or HIGH_VALUE;
3652 that's a `default' label and the only overlap is an exact match. */
3653 if (!node && (low_value || high_value))
3654 {
3655 splay_tree_node low_bound;
3656 splay_tree_node high_bound;
3657
3658 /* Even though there wasn't an exact match, there might be an
3659 overlap between this case range and another case range.
3660 Since we've (inductively) not allowed any overlapping case
3661 ranges, we simply need to find the greatest low case label
3662 that is smaller that LOW_VALUE, and the smallest low case
3663 label that is greater than LOW_VALUE. If there is an overlap
3664 it will occur in one of these two ranges. */
3665 low_bound = splay_tree_predecessor (cases,
3666 (splay_tree_key) low_value);
3667 high_bound = splay_tree_successor (cases,
3668 (splay_tree_key) low_value);
3669
3670 /* Check to see if the LOW_BOUND overlaps. It is smaller than
3671 the LOW_VALUE, so there is no need to check unless the
3672 LOW_BOUND is in fact itself a case range. */
3673 if (low_bound
3674 && CASE_HIGH ((tree) low_bound->value)
3675 && tree_int_cst_compare (CASE_HIGH ((tree) low_bound->value),
3676 low_value) >= 0)
3677 node = low_bound;
3678 /* Check to see if the HIGH_BOUND overlaps. The low end of that
3679 range is bigger than the low end of the current range, so we
3680 are only interested if the current range is a real range, and
3681 not an ordinary case label. */
3682 else if (high_bound
3683 && high_value
3684 && (tree_int_cst_compare ((tree) high_bound->key,
3685 high_value)
3686 <= 0))
3687 node = high_bound;
3688 }
3689 /* If there was an overlap, issue an error. */
3690 if (node)
3691 {
3692 tree duplicate = CASE_LABEL_DECL ((tree) node->value);
3693
3694 if (high_value)
3695 {
3696 error ("duplicate (or overlapping) case value");
3697 error_with_decl (duplicate,
3698 "this is the first entry overlapping that value");
3699 }
3700 else if (low_value)
3701 {
3702 error ("duplicate case value") ;
3703 error_with_decl (duplicate, "previously used here");
3704 }
3705 else
3706 {
3707 error ("multiple default labels in one switch");
3708 error_with_decl (duplicate, "this is the first default label");
3709 }
3710 if (!cases->root)
3711 add_stmt (build_case_label (NULL_TREE, NULL_TREE, label));
3712 }
3713
3714 /* Add a CASE_LABEL to the statement-tree. */
3715 case_label = add_stmt (build_case_label (low_value, high_value, label));
3716 /* Register this case label in the splay tree. */
3717 splay_tree_insert (cases,
3718 (splay_tree_key) low_value,
3719 (splay_tree_value) case_label);
3720
3721 return case_label;
3722}
3723
d0a47c8d 3724/* Finish an expression taking the address of LABEL. Returns an
3725 expression for the address. */
3726
3727tree
3728finish_label_address_expr (label)
3729 tree label;
3730{
3731 tree result;
3732
3733 if (pedantic)
3734 {
3735 if (c_language == clk_cplusplus)
3736 pedwarn ("ISO C++ forbids taking the address of a label");
3737 else
3738 pedwarn ("ISO C forbids taking the address of a label");
3739 }
3740
3741 label = lookup_label (label);
3742 if (label == NULL_TREE)
3743 result = null_pointer_node;
3744 else
3745 {
3746 TREE_USED (label) = 1;
3747 result = build1 (ADDR_EXPR, ptr_type_node, label);
3748 TREE_CONSTANT (result) = 1;
3749 /* The current function in not necessarily uninlinable.
3750 Computed gotos are incompatible with inlining, but the value
3751 here could be used only in a diagnostic, for example. */
3752 }
3753
3754 return result;
3755}
3756
e41f0d80 3757/* Hook used by expand_expr to expand language-specific tree codes. */
3758
3759rtx
3760c_expand_expr (exp, target, tmode, modifier)
3761 tree exp;
3762 rtx target;
3763 enum machine_mode tmode;
b467ecc1 3764 int modifier; /* Actually enum_modifier. */
e41f0d80 3765{
3766 switch (TREE_CODE (exp))
3767 {
3768 case STMT_EXPR:
3769 {
3770 tree rtl_expr;
3771 rtx result;
da3ac634 3772 bool preserve_result = false;
e41f0d80 3773
3774 /* Since expand_expr_stmt calls free_temp_slots after every
3775 expression statement, we must call push_temp_slots here.
3776 Otherwise, any temporaries in use now would be considered
3777 out-of-scope after the first EXPR_STMT from within the
3778 STMT_EXPR. */
3779 push_temp_slots ();
7e83d989 3780 rtl_expr = expand_start_stmt_expr (!STMT_EXPR_NO_SCOPE (exp));
d513ec2f 3781
3782 /* If we want the result of this expression, find the last
3783 EXPR_STMT in the COMPOUND_STMT and mark it as addressable. */
64fbdcbf 3784 if (target != const0_rtx
3785 && TREE_CODE (STMT_EXPR_STMT (exp)) == COMPOUND_STMT
3786 && TREE_CODE (COMPOUND_BODY (STMT_EXPR_STMT (exp))) == SCOPE_STMT)
d513ec2f 3787 {
64fbdcbf 3788 tree expr = COMPOUND_BODY (STMT_EXPR_STMT (exp));
3789 tree last = TREE_CHAIN (expr);
d513ec2f 3790
64fbdcbf 3791 while (TREE_CHAIN (last))
d513ec2f 3792 {
64fbdcbf 3793 expr = last;
3794 last = TREE_CHAIN (last);
d513ec2f 3795 }
64fbdcbf 3796
3797 if (TREE_CODE (last) == SCOPE_STMT
3798 && TREE_CODE (expr) == EXPR_STMT)
da3ac634 3799 {
3800 TREE_ADDRESSABLE (expr) = 1;
3801 preserve_result = true;
3802 }
d513ec2f 3803 }
3804
e41f0d80 3805 expand_stmt (STMT_EXPR_STMT (exp));
3806 expand_end_stmt_expr (rtl_expr);
da3ac634 3807
e41f0d80 3808 result = expand_expr (rtl_expr, target, tmode, modifier);
da3ac634 3809 if (preserve_result && GET_CODE (result) == MEM)
3810 {
3811 if (GET_MODE (result) != BLKmode)
3812 result = copy_to_reg (result);
3813 else
3814 preserve_temp_slots (result);
3815 }
3816
7e83d989 3817 /* If the statment-expression does not have a scope, then the
3818 new temporaries we created within it must live beyond the
3819 statement-expression. */
3820 if (STMT_EXPR_NO_SCOPE (exp))
3821 preserve_temp_slots (NULL_RTX);
3822
e41f0d80 3823 pop_temp_slots ();
3824 return result;
3825 }
3826 break;
3827
edbbe5ca 3828 case CALL_EXPR:
3829 {
3830 if (TREE_CODE (TREE_OPERAND (exp, 0)) == ADDR_EXPR
3831 && (TREE_CODE (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3832 == FUNCTION_DECL)
3833 && DECL_BUILT_IN (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3834 && (DECL_BUILT_IN_CLASS (TREE_OPERAND (TREE_OPERAND (exp, 0), 0))
3835 == BUILT_IN_FRONTEND))
3836 return c_expand_builtin (exp, target, tmode, modifier);
3837 else
7cc7e163 3838 abort ();
edbbe5ca 3839 }
3840 break;
3841
ec11e38e 3842 case COMPOUND_LITERAL_EXPR:
3843 {
3844 /* Initialize the anonymous variable declared in the compound
3845 literal, then return the variable. */
3846 tree decl = COMPOUND_LITERAL_EXPR_DECL (exp);
3847 emit_local_var (decl);
3848 return expand_expr (decl, target, tmode, modifier);
3849 }
3850
e41f0d80 3851 default:
3852 abort ();
3853 }
3854
3855 abort ();
3856 return NULL;
3857}
3858
3859/* Hook used by safe_from_p to handle language-specific tree codes. */
3860
3861int
3862c_safe_from_p (target, exp)
3863 rtx target;
3864 tree exp;
3865{
3866 /* We can see statements here when processing the body of a
3867 statement-expression. For a declaration statement declaring a
3868 variable, look at the variable's initializer. */
3869 if (TREE_CODE (exp) == DECL_STMT)
3870 {
3871 tree decl = DECL_STMT_DECL (exp);
3872
3873 if (TREE_CODE (decl) == VAR_DECL
3874 && DECL_INITIAL (decl)
3875 && !safe_from_p (target, DECL_INITIAL (decl), /*top_p=*/0))
3876 return 0;
3877 }
3878
3879 /* For any statement, we must follow the statement-chain. */
3880 if (statement_code_p (TREE_CODE (exp)) && TREE_CHAIN (exp))
3881 return safe_from_p (target, TREE_CHAIN (exp), /*top_p=*/0);
3882
3883 /* Assume everything else is safe. */
3884 return 1;
3885}
3886
c63e27d8 3887/* Hook used by unsafe_for_reeval to handle language-specific tree codes. */
3888
3889int
ee23fd7b 3890c_common_unsafe_for_reeval (exp)
c63e27d8 3891 tree exp;
3892{
0e62d8da 3893 /* Statement expressions may not be reevaluated, likewise compound
3894 literals. */
3895 if (TREE_CODE (exp) == STMT_EXPR
3896 || TREE_CODE (exp) == COMPOUND_LITERAL_EXPR)
c63e27d8 3897 return 2;
3898
3899 /* Walk all other expressions. */
3900 return -1;
3901}
3902
ec11e38e 3903/* Hook used by staticp to handle language-specific tree codes. */
3904
3905int
3906c_staticp (exp)
3907 tree exp;
3908{
3909 if (TREE_CODE (exp) == COMPOUND_LITERAL_EXPR
3910 && TREE_STATIC (COMPOUND_LITERAL_EXPR_DECL (exp)))
3911 return 1;
3912 return 0;
3913}
3914
edbbe5ca 3915#define CALLED_AS_BUILT_IN(NODE) \
3916 (!strncmp (IDENTIFIER_POINTER (DECL_NAME (NODE)), "__builtin_", 10))
3917
3918static rtx
3919c_expand_builtin (exp, target, tmode, modifier)
3920 tree exp;
3921 rtx target;
3922 enum machine_mode tmode;
3923 enum expand_modifier modifier;
3924{
3925 tree type = TREE_TYPE (exp);
3926 tree fndecl = TREE_OPERAND (TREE_OPERAND (exp, 0), 0);
3927 tree arglist = TREE_OPERAND (exp, 1);
3928 enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
3929 enum tree_code code = TREE_CODE (exp);
3930 const int ignore = (target == const0_rtx
3931 || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
3932 || code == CONVERT_EXPR || code == REFERENCE_EXPR
3933 || code == COND_EXPR)
3934 && TREE_CODE (type) == VOID_TYPE));
3935
3936 if (! optimize && ! CALLED_AS_BUILT_IN (fndecl))
3937 return expand_call (exp, target, ignore);
3938
3939 switch (fcode)
3940 {
3941 case BUILT_IN_PRINTF:
3942 target = c_expand_builtin_printf (arglist, target, tmode,
7cc7e163 3943 modifier, ignore, /*unlocked=*/ 0);
c013a46e 3944 if (target)
3945 return target;
3946 break;
3947
3948 case BUILT_IN_PRINTF_UNLOCKED:
3949 target = c_expand_builtin_printf (arglist, target, tmode,
7cc7e163 3950 modifier, ignore, /*unlocked=*/ 1);
edbbe5ca 3951 if (target)
3952 return target;
3953 break;
3954
96df8b77 3955 case BUILT_IN_FPRINTF:
3956 target = c_expand_builtin_fprintf (arglist, target, tmode,
7cc7e163 3957 modifier, ignore, /*unlocked=*/ 0);
c013a46e 3958 if (target)
3959 return target;
3960 break;
3961
3962 case BUILT_IN_FPRINTF_UNLOCKED:
3963 target = c_expand_builtin_fprintf (arglist, target, tmode,
7cc7e163 3964 modifier, ignore, /*unlocked=*/ 1);
96df8b77 3965 if (target)
3966 return target;
3967 break;
3968
edbbe5ca 3969 default: /* just do library call, if unknown builtin */
3970 error ("built-in function `%s' not currently supported",
3971 IDENTIFIER_POINTER (DECL_NAME (fndecl)));
3972 }
3973
3974 /* The switch statement above can drop through to cause the function
3975 to be called normally. */
3976 return expand_call (exp, target, ignore);
3977}
3978
3979/* Check an arglist to *printf for problems. The arglist should start
3980 at the format specifier, with the remaining arguments immediately
2c0e001b 3981 following it. */
edbbe5ca 3982static int
3983is_valid_printf_arglist (arglist)
7cc7e163 3984 tree arglist;
edbbe5ca 3985{
2c0e001b 3986 /* Save this value so we can restore it later. */
edbbe5ca 3987 const int SAVE_pedantic = pedantic;
3988 int diagnostic_occurred = 0;
e9a0f285 3989 tree attrs;
edbbe5ca 3990
3991 /* Set this to a known value so the user setting won't affect code
3992 generation. */
3993 pedantic = 1;
2c0e001b 3994 /* Check to make sure there are no format specifier errors. */
e9a0f285 3995 attrs = tree_cons (get_identifier ("format"),
3996 tree_cons (NULL_TREE,
3997 get_identifier ("printf"),
3998 tree_cons (NULL_TREE,
3999 integer_one_node,
4000 tree_cons (NULL_TREE,
4001 build_int_2 (2, 0),
4002 NULL_TREE))),
4003 NULL_TREE);
4004 check_function_format (&diagnostic_occurred, attrs, arglist);
edbbe5ca 4005
2c0e001b 4006 /* Restore the value of `pedantic'. */
edbbe5ca 4007 pedantic = SAVE_pedantic;
4008
4009 /* If calling `check_function_format_ptr' produces a warning, we
2c0e001b 4010 return false, otherwise we return true. */
edbbe5ca 4011 return ! diagnostic_occurred;
4012}
4013
4014/* If the arguments passed to printf are suitable for optimizations,
2c0e001b 4015 we attempt to transform the call. */
edbbe5ca 4016static rtx
c013a46e 4017c_expand_builtin_printf (arglist, target, tmode, modifier, ignore, unlocked)
edbbe5ca 4018 tree arglist;
4019 rtx target;
4020 enum machine_mode tmode;
4021 enum expand_modifier modifier;
4022 int ignore;
c013a46e 4023 int unlocked;
edbbe5ca 4024{
c013a46e 4025 tree fn_putchar = unlocked ?
4026 built_in_decls[BUILT_IN_PUTCHAR_UNLOCKED] : built_in_decls[BUILT_IN_PUTCHAR];
4027 tree fn_puts = unlocked ?
4028 built_in_decls[BUILT_IN_PUTS_UNLOCKED] : built_in_decls[BUILT_IN_PUTS];
edbbe5ca 4029 tree fn, format_arg, stripped_string;
4030
4031 /* If the return value is used, or the replacement _DECL isn't
2c0e001b 4032 initialized, don't do the transformation. */
edbbe5ca 4033 if (!ignore || !fn_putchar || !fn_puts)
4034 return 0;
4035
2c0e001b 4036 /* Verify the required arguments in the original call. */
edbbe5ca 4037 if (arglist == 0
4038 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE))
4039 return 0;
4040
2c0e001b 4041 /* Check the specifier vs. the parameters. */
edbbe5ca 4042 if (!is_valid_printf_arglist (arglist))
4043 return 0;
4044
4045 format_arg = TREE_VALUE (arglist);
4046 stripped_string = format_arg;
4047 STRIP_NOPS (stripped_string);
4048 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
4049 stripped_string = TREE_OPERAND (stripped_string, 0);
4050
4051 /* If the format specifier isn't a STRING_CST, punt. */
4052 if (TREE_CODE (stripped_string) != STRING_CST)
4053 return 0;
4054
4055 /* OK! We can attempt optimization. */
4056
2c0e001b 4057 /* If the format specifier was "%s\n", call __builtin_puts(arg2). */
edbbe5ca 4058 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s\n") == 0)
4059 {
4060 arglist = TREE_CHAIN (arglist);
4061 fn = fn_puts;
4062 }
2c0e001b 4063 /* If the format specifier was "%c", call __builtin_putchar (arg2). */
edbbe5ca 4064 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
4065 {
4066 arglist = TREE_CHAIN (arglist);
4067 fn = fn_putchar;
4068 }
4069 else
4070 {
7cc7e163 4071 /* We can't handle anything else with % args or %% ... yet. */
edbbe5ca 4072 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
4073 return 0;
4074
4075 /* If the resulting constant string has a length of 1, call
4076 putchar. Note, TREE_STRING_LENGTH includes the terminating
4077 NULL in its count. */
4078 if (TREE_STRING_LENGTH (stripped_string) == 2)
4079 {
4080 /* Given printf("c"), (where c is any one character,)
4081 convert "c"[0] to an int and pass that to the replacement
2c0e001b 4082 function. */
edbbe5ca 4083 arglist = build_int_2 (TREE_STRING_POINTER (stripped_string)[0], 0);
4084 arglist = build_tree_list (NULL_TREE, arglist);
4085
4086 fn = fn_putchar;
4087 }
4088 /* If the resulting constant was "string\n", call
4089 __builtin_puts("string"). Ensure "string" has at least one
4090 character besides the trailing \n. Note, TREE_STRING_LENGTH
4091 includes the terminating NULL in its count. */
4092 else if (TREE_STRING_LENGTH (stripped_string) > 2
4093 && TREE_STRING_POINTER (stripped_string)
4094 [TREE_STRING_LENGTH (stripped_string) - 2] == '\n')
4095 {
4096 /* Create a NULL-terminated string that's one char shorter
4097 than the original, stripping off the trailing '\n'. */
4098 const int newlen = TREE_STRING_LENGTH (stripped_string) - 1;
4099 char *newstr = (char *) alloca (newlen);
4100 memcpy (newstr, TREE_STRING_POINTER (stripped_string), newlen - 1);
4101 newstr[newlen - 1] = 0;
4102
070236f0 4103 arglist = fix_string_type (build_string (newlen, newstr));
edbbe5ca 4104 arglist = build_tree_list (NULL_TREE, arglist);
4105 fn = fn_puts;
4106 }
4107 else
4108 /* We'd like to arrange to call fputs(string) here, but we
4109 need stdout and don't have a way to get it ... yet. */
4110 return 0;
4111 }
4112
4113 return expand_expr (build_function_call (fn, arglist),
4114 (ignore ? const0_rtx : target),
4115 tmode, modifier);
4116}
96df8b77 4117
4118/* If the arguments passed to fprintf are suitable for optimizations,
2c0e001b 4119 we attempt to transform the call. */
96df8b77 4120static rtx
c013a46e 4121c_expand_builtin_fprintf (arglist, target, tmode, modifier, ignore, unlocked)
96df8b77 4122 tree arglist;
4123 rtx target;
4124 enum machine_mode tmode;
4125 enum expand_modifier modifier;
4126 int ignore;
c013a46e 4127 int unlocked;
96df8b77 4128{
c013a46e 4129 tree fn_fputc = unlocked ?
4130 built_in_decls[BUILT_IN_FPUTC_UNLOCKED] : built_in_decls[BUILT_IN_FPUTC];
4131 tree fn_fputs = unlocked ?
4132 built_in_decls[BUILT_IN_FPUTS_UNLOCKED] : built_in_decls[BUILT_IN_FPUTS];
96df8b77 4133 tree fn, format_arg, stripped_string;
4134
4135 /* If the return value is used, or the replacement _DECL isn't
2c0e001b 4136 initialized, don't do the transformation. */
96df8b77 4137 if (!ignore || !fn_fputc || !fn_fputs)
4138 return 0;
4139
2c0e001b 4140 /* Verify the required arguments in the original call. */
96df8b77 4141 if (arglist == 0
4142 || (TREE_CODE (TREE_TYPE (TREE_VALUE (arglist))) != POINTER_TYPE)
4143 || (TREE_CHAIN (arglist) == 0)
4144 || (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (arglist)))) !=
4145 POINTER_TYPE))
4146 return 0;
4147
2c0e001b 4148 /* Check the specifier vs. the parameters. */
96df8b77 4149 if (!is_valid_printf_arglist (TREE_CHAIN (arglist)))
4150 return 0;
4151
4152 format_arg = TREE_VALUE (TREE_CHAIN (arglist));
4153 stripped_string = format_arg;
4154 STRIP_NOPS (stripped_string);
4155 if (stripped_string && TREE_CODE (stripped_string) == ADDR_EXPR)
4156 stripped_string = TREE_OPERAND (stripped_string, 0);
4157
4158 /* If the format specifier isn't a STRING_CST, punt. */
4159 if (TREE_CODE (stripped_string) != STRING_CST)
4160 return 0;
4161
4162 /* OK! We can attempt optimization. */
4163
2c0e001b 4164 /* If the format specifier was "%s", call __builtin_fputs(arg3, arg1). */
96df8b77 4165 if (strcmp (TREE_STRING_POINTER (stripped_string), "%s") == 0)
4166 {
4167 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
4168 arglist = tree_cons (NULL_TREE,
4169 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
4170 newarglist);
4171 fn = fn_fputs;
4172 }
2c0e001b 4173 /* If the format specifier was "%c", call __builtin_fputc (arg3, arg1). */
96df8b77 4174 else if (strcmp (TREE_STRING_POINTER (stripped_string), "%c") == 0)
4175 {
4176 tree newarglist = build_tree_list (NULL_TREE, TREE_VALUE (arglist));
4177 arglist = tree_cons (NULL_TREE,
4178 TREE_VALUE (TREE_CHAIN (TREE_CHAIN (arglist))),
4179 newarglist);
4180 fn = fn_fputc;
4181 }
4182 else
4183 {
7cc7e163 4184 /* We can't handle anything else with % args or %% ... yet. */
96df8b77 4185 if (strchr (TREE_STRING_POINTER (stripped_string), '%'))
4186 return 0;
4187
4188 /* When "string" doesn't contain %, replace all cases of
4189 fprintf(stream,string) with fputs(string,stream). The fputs
4190 builtin will take take of special cases like length==1. */
4191 arglist = tree_cons (NULL_TREE, TREE_VALUE (TREE_CHAIN (arglist)),
4192 build_tree_list (NULL_TREE, TREE_VALUE (arglist)));
4193 fn = fn_fputs;
4194 }
4195
4196 return expand_expr (build_function_call (fn, arglist),
4197 (ignore ? const0_rtx : target),
4198 tmode, modifier);
4199}
4f9a1c9b 4200\f
4201
4202/* Given a boolean expression ARG, return a tree representing an increment
4203 or decrement (as indicated by CODE) of ARG. The front end must check for
4204 invalid cases (e.g., decrement in C++). */
4205tree
4206boolean_increment (code, arg)
4207 enum tree_code code;
4208 tree arg;
4209{
4210 tree val;
4211 tree true_res = (c_language == clk_cplusplus
4212 ? boolean_true_node
4213 : c_bool_true_node);
4214 arg = stabilize_reference (arg);
4215 switch (code)
4216 {
4217 case PREINCREMENT_EXPR:
4218 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4219 break;
4220 case POSTINCREMENT_EXPR:
4221 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, true_res);
4222 arg = save_expr (arg);
4223 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4224 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4225 break;
4226 case PREDECREMENT_EXPR:
4227 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
4228 break;
4229 case POSTDECREMENT_EXPR:
4230 val = build (MODIFY_EXPR, TREE_TYPE (arg), arg, invert_truthvalue (arg));
4231 arg = save_expr (arg);
4232 val = build (COMPOUND_EXPR, TREE_TYPE (arg), val, arg);
4233 val = build (COMPOUND_EXPR, TREE_TYPE (arg), arg, val);
4234 break;
4235 default:
4236 abort ();
4237 }
4238 TREE_SIDE_EFFECTS (val) = 1;
4239 return val;
4240}
76a6e674 4241\f
7d3b509a 4242/* Handle C and C++ default attributes. */
4243
4244enum built_in_attribute
4245{
4246#define DEF_ATTR_NULL_TREE(ENUM) ENUM,
4247#define DEF_ATTR_INT(ENUM, VALUE) ENUM,
4248#define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
4249#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
4250#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No entry needed in enum. */
4251#include "builtin-attrs.def"
4252#undef DEF_ATTR_NULL_TREE
4253#undef DEF_ATTR_INT
4254#undef DEF_ATTR_IDENT
4255#undef DEF_ATTR_TREE_LIST
4256#undef DEF_FN_ATTR
4257 ATTR_LAST
e3f6ce11 4258};
4259
1f3233d1 4260static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
7d3b509a 4261
4262static bool c_attrs_initialized = false;
4263
4264static void c_init_attributes PARAMS ((void));
4265
435fb09b 4266/* Common initialization before parsing options. */
4267void
4268c_common_init_options (lang)
4269 enum c_language_kind lang;
76a6e674 4270{
435fb09b 4271 c_language = lang;
9f3643d1 4272 parse_in = cpp_create_reader (lang == clk_c || lang == clk_objective_c
4273 ? CLK_GNUC89 : CLK_GNUCXX);
4274 if (lang == clk_objective_c)
4275 cpp_get_options (parse_in)->objc = 1;
9ceb1c29 4276
435fb09b 4277 /* Mark as "unspecified" (see c_common_post_options). */
4278 flag_bounds_check = -1;
4279}
4280
4281/* Post-switch processing. */
4282void
4283c_common_post_options ()
4284{
4285 cpp_post_options (parse_in);
4286
af87ad83 4287 flag_inline_trees = 1;
4288
435fb09b 4289 /* Use tree inlining if possible. Function instrumentation is only
4290 done in the RTL level, so we disable tree inlining. */
4291 if (! flag_instrument_function_entry_exit)
4292 {
4293 if (!flag_no_inline)
af87ad83 4294 flag_no_inline = 1;
435fb09b 4295 if (flag_inline_functions)
4296 {
4297 flag_inline_trees = 2;
4298 flag_inline_functions = 0;
4299 }
4300 }
9ceb1c29 4301
76a6e674 4302 /* If still "unspecified", make it match -fbounded-pointers. */
435fb09b 4303 if (flag_bounds_check == -1)
76a6e674 4304 flag_bounds_check = flag_bounded_pointers;
4305
4306 /* Special format checking options don't work without -Wformat; warn if
4307 they are used. */
4308 if (warn_format_y2k && !warn_format)
4309 warning ("-Wformat-y2k ignored without -Wformat");
4310 if (warn_format_extra_args && !warn_format)
4311 warning ("-Wformat-extra-args ignored without -Wformat");
959f435b 4312 if (warn_format_zero_length && !warn_format)
4313 warning ("-Wformat-zero-length ignored without -Wformat");
76a6e674 4314 if (warn_format_nonliteral && !warn_format)
4315 warning ("-Wformat-nonliteral ignored without -Wformat");
4316 if (warn_format_security && !warn_format)
4317 warning ("-Wformat-security ignored without -Wformat");
4318 if (warn_missing_format_attribute && !warn_format)
4319 warning ("-Wmissing-format-attribute ignored without -Wformat");
dd436eaf 4320
4321 /* If an error has occurred in cpplib, note it so we fail
4322 immediately. */
4323 errorcount += cpp_errors (parse_in);
435fb09b 4324}
4325
1ed9d5f5 4326/* Hook that registers front end and target-specific built-ins. */
4327static void
4328cb_register_builtins (pfile)
4329 cpp_reader *pfile;
4330{
4331 /* -undef turns off target-specific built-ins. */
4332 if (flag_undef)
4333 return;
4334
4335 if (c_language == clk_cplusplus)
4336 {
4337 if (SUPPORTS_ONE_ONLY)
18ef7ac2 4338 cpp_define (pfile, "__GXX_WEAK__=1");
1ed9d5f5 4339 else
4340 cpp_define (pfile, "__GXX_WEAK__=0");
4341 }
4342
36a259fd 4343 /* libgcc needs to know this. */
4344 if (USING_SJLJ_EXCEPTIONS)
4345 cpp_define (pfile, "__USING_SJLJ_EXCEPTIONS__");
4346
18ef7ac2 4347 /* stddef.h needs to know these. */
63994318 4348 builtin_define_with_value ("__SIZE_TYPE__", SIZE_TYPE, 0);
4349 builtin_define_with_value ("__PTRDIFF_TYPE__", PTRDIFF_TYPE, 0);
4350 builtin_define_with_value ("__WCHAR_TYPE__", MODIFIED_WCHAR_TYPE, 0);
4351 builtin_define_with_value ("__WINT_TYPE__", WINT_TYPE, 0);
4352
574006c3 4353 /* limits.h needs to know these. */
4354 builtin_define_type_max ("__SCHAR_MAX__", signed_char_type_node, 0);
4355 builtin_define_type_max ("__SHRT_MAX__", short_integer_type_node, 0);
4356 builtin_define_type_max ("__INT_MAX__", integer_type_node, 0);
4357 builtin_define_type_max ("__LONG_MAX__", long_integer_type_node, 1);
4358 builtin_define_type_max ("__LONG_LONG_MAX__", long_long_integer_type_node, 2);
4359
4360 {
4361 char buf[8];
4362 sprintf (buf, "%d", (int) TYPE_PRECISION (signed_char_type_node));
4363 builtin_define_with_value ("__CHAR_BIT__", buf, 0);
4364 }
4365
63994318 4366 /* For use in assembly language. */
4367 builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
4368 builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
4369
4370 /* Misc. */
4371 builtin_define_with_value ("__VERSION__", version_string, 1);
18ef7ac2 4372
18aa8a54 4373 /* Other target-independent built-ins determined by command-line
4374 options. */
4375 if (optimize_size)
4376 cpp_define (pfile, "__OPTIMIZE_SIZE__");
4377 if (optimize)
4378 cpp_define (pfile, "__OPTIMIZE__");
4379
4380 if (flag_hosted)
4381 cpp_define (pfile, "__STDC_HOSTED__=1");
4382 else
4383 cpp_define (pfile, "__STDC_HOSTED__=0");
4384
4385 if (fast_math_flags_set_p ())
4386 cpp_define (pfile, "__FAST_MATH__");
4387 if (flag_no_inline)
4388 cpp_define (pfile, "__NO_INLINE__");
4389
965e9876 4390 if (flag_iso)
4391 cpp_define (pfile, "__STRICT_ANSI__");
4392
4393 if (!flag_signed_char)
4394 cpp_define (pfile, "__CHAR_UNSIGNED__");
4395
1ed9d5f5 4396 /* A straightforward target hook doesn't work, because of problems
4397 linking that hook's body when part of non-C front ends. */
365a9d3f 4398# define preprocessing_asm_p() (cpp_get_options (pfile)->lang == CLK_ASM)
90cc7820 4399# define builtin_define(TXT) cpp_define (pfile, TXT)
4400# define builtin_assert(TXT) cpp_assert (pfile, TXT)
36a259fd 4401 TARGET_CPU_CPP_BUILTINS ();
4402 TARGET_OS_CPP_BUILTINS ();
1ed9d5f5 4403}
4404
4405/* Pass an object-like macro. If it doesn't lie in the user's
4406 namespace, defines it unconditionally. Otherwise define a version
4407 with two leading underscores, and another version with two leading
4408 and trailing underscores, and define the original only if an ISO
4409 standard was not nominated.
4410
4411 e.g. passing "unix" defines "__unix", "__unix__" and possibly
4412 "unix". Passing "_mips" defines "__mips", "__mips__" and possibly
4413 "_mips". */
4414void
4415builtin_define_std (macro)
4416 const char *macro;
4417{
4418 size_t len = strlen (macro);
4419 char *buff = alloca (len + 5);
4420 char *p = buff + 2;
4421 char *q = p + len;
4422
4423 /* prepend __ (or maybe just _) if in user's namespace. */
4424 memcpy (p, macro, len + 1);
8ca22b26 4425 if (!( *p == '_' && (p[1] == '_' || ISUPPER (p[1]))))
4426 {
4427 if (*p != '_')
4428 *--p = '_';
4429 if (p[1] != '_')
4430 *--p = '_';
4431 }
1ed9d5f5 4432 cpp_define (parse_in, p);
4433
4434 /* If it was in user's namespace... */
4435 if (p != buff + 2)
4436 {
1ed9d5f5 4437 /* Define the macro with leading and following __. */
4438 if (q[-1] != '_')
4439 *q++ = '_';
4440 if (q[-2] != '_')
4441 *q++ = '_';
4442 *q = '\0';
4443 cpp_define (parse_in, p);
08eedad6 4444
4445 /* Finally, define the original macro if permitted. */
4446 if (!flag_iso)
4447 cpp_define (parse_in, macro);
1ed9d5f5 4448 }
4449}
4450
63994318 4451/* Pass an object-like macro and a value to define it to. The third
4452 parameter says whether or not to turn the value into a string
4453 constant. */
90cc7820 4454static void
63994318 4455builtin_define_with_value (macro, expansion, is_str)
18ef7ac2 4456 const char *macro;
4457 const char *expansion;
63994318 4458 int is_str;
18ef7ac2 4459{
63994318 4460 char *buf;
18ef7ac2 4461 size_t mlen = strlen (macro);
4462 size_t elen = strlen (expansion);
63994318 4463 size_t extra = 2; /* space for an = and a NUL */
18ef7ac2 4464
63994318 4465 if (is_str)
4466 extra += 2; /* space for two quote marks */
4467
4468 buf = alloca (mlen + elen + extra);
4469 if (is_str)
4470 sprintf (buf, "%s=\"%s\"", macro, expansion);
4471 else
4472 sprintf (buf, "%s=%s", macro, expansion);
18ef7ac2 4473
4474 cpp_define (parse_in, buf);
4475}
4476
574006c3 4477/* Define MAX for TYPE based on the precision of the type, which is assumed
4478 to be signed. IS_LONG is 1 for type "long" and 2 for "long long". */
4479
4480static void
4481builtin_define_type_max (macro, type, is_long)
4482 const char *macro;
4483 tree type;
4484 int is_long;
4485{
4486 const char *value;
4487 char *buf;
4488 size_t mlen, vlen, extra;
4489
4490 /* Pre-rendering the values mean we don't have to futz with printing a
4491 multi-word decimal value. There are also a very limited number of
4492 precisions that we support, so it's really a waste of time. */
4493 switch (TYPE_PRECISION (type))
4494 {
4495 case 8:
4496 value = "127";
4497 break;
4498 case 16:
4499 value = "32767";
4500 break;
4501 case 32:
4502 value = "2147483647";
4503 break;
4504 case 64:
4505 value = "9223372036854775807";
4506 break;
4507 case 128:
4508 value = "170141183460469231731687303715884105727";
4509 break;
4510 default:
4511 abort ();
4512 }
4513
4514 mlen = strlen (macro);
4515 vlen = strlen (value);
4516 extra = 2 + is_long;
4517 buf = alloca (mlen + vlen + extra);
4518
4519 sprintf (buf, "%s=%s%s", macro, value,
4520 (is_long == 1 ? "L" : is_long == 2 ? "LL" : ""));
4521
4522 cpp_define (parse_in, buf);
4523}
4524
435fb09b 4525/* Front end initialization common to C, ObjC and C++. */
4526const char *
4527c_common_init (filename)
4528 const char *filename;
4529{
1893c11a 4530 cpp_options *options = cpp_get_options (parse_in);
4531
4532 /* Set up preprocessor arithmetic. Must be done after call to
4533 c_common_nodes_and_builtins for wchar_type_node to be good. */
e7e697e4 4534 options->precision = TYPE_PRECISION (intmax_type_node);
1893c11a 4535 options->char_precision = TYPE_PRECISION (char_type_node);
4536 options->int_precision = TYPE_PRECISION (integer_type_node);
4537 options->wchar_precision = TYPE_PRECISION (wchar_type_node);
d932f956 4538 options->unsigned_wchar = TREE_UNSIGNED (wchar_type_node);
965e9876 4539 options->unsigned_char = !flag_signed_char;
318fdd81 4540 options->warn_multichar = warn_multichar;
63994318 4541 options->stdc_0_in_system_headers = STDC_0_IN_SYSTEM_HEADERS;
318fdd81 4542
f5ec8cb5 4543 /* We want -Wno-long-long to override -pedantic -std=non-c99
4544 whatever the ordering. */
4545 options->warn_long_long = warn_long_long && !flag_isoc99 && pedantic;
4546
1ed9d5f5 4547 /* Register preprocessor built-ins before calls to
4548 cpp_main_file. */
4549 cpp_get_callbacks (parse_in)->register_builtins = cb_register_builtins;
4550
ffd56b21 4551 /* NULL is passed up to toplev.c and we exit quickly. */
4552 if (flag_preprocess_only)
4553 {
4554 cpp_preprocess_file (parse_in);
4555 return NULL;
4556 }
4557
435fb09b 4558 /* Do this before initializing pragmas, as then cpplib's hash table
4559 has been set up. */
4560 filename = init_c_lex (filename);
4561
4562 init_pragma ();
7d3b509a 4563
4564 if (!c_attrs_initialized)
4565 c_init_attributes ();
9ceb1c29 4566
4567 return filename;
7d3b509a 4568}
4569
cdc9fa3e 4570/* Common finish hook for the C, ObjC and C++ front ends. */
4571void
4572c_common_finish ()
4573{
4574 cpp_finish (parse_in);
4575
4576 /* For performance, avoid tearing down cpplib's internal structures.
4577 Call cpp_errors () instead of cpp_destroy (). */
4578 errorcount += cpp_errors (parse_in);
4579}
4580
7d3b509a 4581static void
4582c_init_attributes ()
4583{
4584 /* Fill in the built_in_attributes array. */
4585#define DEF_ATTR_NULL_TREE(ENUM) \
4586 built_in_attributes[(int) ENUM] = NULL_TREE;
4587#define DEF_ATTR_INT(ENUM, VALUE) \
4588 built_in_attributes[(int) ENUM] = build_int_2 (VALUE, VALUE < 0 ? -1 : 0);
4589#define DEF_ATTR_IDENT(ENUM, STRING) \
4590 built_in_attributes[(int) ENUM] = get_identifier (STRING);
4591#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
4592 built_in_attributes[(int) ENUM] \
4593 = tree_cons (built_in_attributes[(int) PURPOSE], \
4594 built_in_attributes[(int) VALUE], \
4595 built_in_attributes[(int) CHAIN]);
4596#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) /* No initialization needed. */
4597#include "builtin-attrs.def"
4598#undef DEF_ATTR_NULL_TREE
4599#undef DEF_ATTR_INT
4600#undef DEF_ATTR_IDENT
4601#undef DEF_ATTR_TREE_LIST
4602#undef DEF_FN_ATTR
7d3b509a 4603 c_attrs_initialized = true;
4604}
4605
4606/* Depending on the name of DECL, apply default attributes to it. */
4607
4608void
4609c_common_insert_default_attributes (decl)
4610 tree decl;
4611{
4612 tree name = DECL_NAME (decl);
4613
4614 if (!c_attrs_initialized)
4615 c_init_attributes ();
4616
4617#define DEF_ATTR_NULL_TREE(ENUM) /* Nothing needed after initialization. */
4618#define DEF_ATTR_INT(ENUM, VALUE)
4619#define DEF_ATTR_IDENT(ENUM, STRING)
4620#define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN)
4621#define DEF_FN_ATTR(NAME, ATTRS, PREDICATE) \
4622 if ((PREDICATE) && name == built_in_attributes[(int) NAME]) \
4623 decl_attributes (&decl, built_in_attributes[(int) ATTRS], \
4624 ATTR_FLAG_BUILT_IN);
4625#include "builtin-attrs.def"
4626#undef DEF_ATTR_NULL_TREE
4627#undef DEF_ATTR_INT
4628#undef DEF_ATTR_IDENT
4629#undef DEF_ATTR_TREE_LIST
4630#undef DEF_FN_ATTR
76a6e674 4631}
5f3cead1 4632
4633/* Output a -Wshadow warning MSGID about NAME, an IDENTIFIER_NODE, and
4634 additionally give the location of the previous declaration DECL. */
4635void
4636shadow_warning (msgid, name, decl)
4637 const char *msgid;
4638 tree name, decl;
4639{
4640 warning ("declaration of `%s' shadows %s", IDENTIFIER_POINTER (name), msgid);
4641 warning_with_file_and_line (DECL_SOURCE_FILE (decl),
4642 DECL_SOURCE_LINE (decl),
4643 "shadowed declaration is here");
4644}
4645
f8e93a2e 4646/* Attribute handlers common to C front ends. */
4647
4648/* Handle a "packed" attribute; arguments as in
4649 struct attribute_spec.handler. */
4650
4651static tree
4652handle_packed_attribute (node, name, args, flags, no_add_attrs)
4653 tree *node;
4654 tree name;
4655 tree args ATTRIBUTE_UNUSED;
4656 int flags;
4657 bool *no_add_attrs;
4658{
4659 tree *type = NULL;
4660 if (DECL_P (*node))
4661 {
4662 if (TREE_CODE (*node) == TYPE_DECL)
4663 type = &TREE_TYPE (*node);
4664 }
4665 else
4666 type = node;
4667
4668 if (type)
4669 {
4670 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4671 *type = build_type_copy (*type);
4672 TYPE_PACKED (*type) = 1;
4673 }
4674 else if (TREE_CODE (*node) == FIELD_DECL)
4675 DECL_PACKED (*node) = 1;
4676 /* We can't set DECL_PACKED for a VAR_DECL, because the bit is
4677 used for DECL_REGISTER. It wouldn't mean anything anyway. */
4678 else
4679 {
4680 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4681 *no_add_attrs = true;
4682 }
4683
4684 return NULL_TREE;
4685}
4686
4687/* Handle a "nocommon" attribute; arguments as in
4688 struct attribute_spec.handler. */
4689
4690static tree
4691handle_nocommon_attribute (node, name, args, flags, no_add_attrs)
4692 tree *node;
4693 tree name;
4694 tree args ATTRIBUTE_UNUSED;
4695 int flags ATTRIBUTE_UNUSED;
4696 bool *no_add_attrs;
4697{
4698 if (TREE_CODE (*node) == VAR_DECL)
4699 DECL_COMMON (*node) = 0;
4700 else
4701 {
4702 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4703 *no_add_attrs = true;
4704 }
4705
4706 return NULL_TREE;
4707}
4708
4709/* Handle a "common" attribute; arguments as in
4710 struct attribute_spec.handler. */
4711
4712static tree
4713handle_common_attribute (node, name, args, flags, no_add_attrs)
4714 tree *node;
4715 tree name;
4716 tree args ATTRIBUTE_UNUSED;
4717 int flags ATTRIBUTE_UNUSED;
4718 bool *no_add_attrs;
4719{
4720 if (TREE_CODE (*node) == VAR_DECL)
4721 DECL_COMMON (*node) = 1;
4722 else
4723 {
4724 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4725 *no_add_attrs = true;
4726 }
4727
4728 return NULL_TREE;
4729}
4730
4731/* Handle a "noreturn" attribute; arguments as in
4732 struct attribute_spec.handler. */
4733
4734static tree
4735handle_noreturn_attribute (node, name, args, flags, no_add_attrs)
4736 tree *node;
4737 tree name;
4738 tree args ATTRIBUTE_UNUSED;
4739 int flags ATTRIBUTE_UNUSED;
4740 bool *no_add_attrs;
4741{
4742 tree type = TREE_TYPE (*node);
4743
4744 /* See FIXME comment in c_common_attribute_table. */
4745 if (TREE_CODE (*node) == FUNCTION_DECL)
4746 TREE_THIS_VOLATILE (*node) = 1;
4747 else if (TREE_CODE (type) == POINTER_TYPE
4748 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4749 TREE_TYPE (*node)
4750 = build_pointer_type
4751 (build_type_variant (TREE_TYPE (type),
4752 TREE_READONLY (TREE_TYPE (type)), 1));
4753 else
4754 {
4755 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4756 *no_add_attrs = true;
4757 }
4758
4759 return NULL_TREE;
4760}
4761
4762/* Handle a "noinline" attribute; arguments as in
4763 struct attribute_spec.handler. */
4764
4765static tree
4766handle_noinline_attribute (node, name, args, flags, no_add_attrs)
4767 tree *node;
4768 tree name;
4769 tree args ATTRIBUTE_UNUSED;
4770 int flags ATTRIBUTE_UNUSED;
4771 bool *no_add_attrs;
4772{
4773 if (TREE_CODE (*node) == FUNCTION_DECL)
4774 DECL_UNINLINABLE (*node) = 1;
4775 else
4776 {
4777 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4778 *no_add_attrs = true;
4779 }
4780
4781 return NULL_TREE;
4782}
4783
4784/* Handle a "always_inline" attribute; arguments as in
4785 struct attribute_spec.handler. */
4786
4787static tree
4788handle_always_inline_attribute (node, name, args, flags, no_add_attrs)
4789 tree *node;
4790 tree name;
4791 tree args ATTRIBUTE_UNUSED;
4792 int flags ATTRIBUTE_UNUSED;
4793 bool *no_add_attrs;
4794{
4795 if (TREE_CODE (*node) == FUNCTION_DECL)
4796 {
4797 /* Do nothing else, just set the attribute. We'll get at
4798 it later with lookup_attribute. */
4799 }
4800 else
4801 {
4802 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4803 *no_add_attrs = true;
4804 }
4805
4806 return NULL_TREE;
4807}
4808
4809/* Handle a "used" attribute; arguments as in
4810 struct attribute_spec.handler. */
4811
4812static tree
4813handle_used_attribute (node, name, args, flags, no_add_attrs)
4814 tree *node;
4815 tree name;
4816 tree args ATTRIBUTE_UNUSED;
4817 int flags ATTRIBUTE_UNUSED;
4818 bool *no_add_attrs;
4819{
4820 if (TREE_CODE (*node) == FUNCTION_DECL)
4821 TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (*node))
4822 = TREE_USED (*node) = 1;
4823 else
4824 {
4825 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4826 *no_add_attrs = true;
4827 }
4828
4829 return NULL_TREE;
4830}
4831
4832/* Handle a "unused" attribute; arguments as in
4833 struct attribute_spec.handler. */
4834
4835static tree
4836handle_unused_attribute (node, name, args, flags, no_add_attrs)
4837 tree *node;
4838 tree name;
4839 tree args ATTRIBUTE_UNUSED;
4840 int flags;
4841 bool *no_add_attrs;
4842{
4843 if (DECL_P (*node))
4844 {
4845 tree decl = *node;
4846
4847 if (TREE_CODE (decl) == PARM_DECL
4848 || TREE_CODE (decl) == VAR_DECL
4849 || TREE_CODE (decl) == FUNCTION_DECL
4850 || TREE_CODE (decl) == LABEL_DECL
4851 || TREE_CODE (decl) == TYPE_DECL)
4852 TREE_USED (decl) = 1;
4853 else
4854 {
4855 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4856 *no_add_attrs = true;
4857 }
4858 }
4859 else
4860 {
4861 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4862 *node = build_type_copy (*node);
4863 TREE_USED (*node) = 1;
4864 }
4865
4866 return NULL_TREE;
4867}
4868
4869/* Handle a "const" attribute; arguments as in
4870 struct attribute_spec.handler. */
4871
4872static tree
4873handle_const_attribute (node, name, args, flags, no_add_attrs)
4874 tree *node;
4875 tree name;
4876 tree args ATTRIBUTE_UNUSED;
4877 int flags ATTRIBUTE_UNUSED;
4878 bool *no_add_attrs;
4879{
4880 tree type = TREE_TYPE (*node);
4881
4882 /* See FIXME comment on noreturn in c_common_attribute_table. */
4883 if (TREE_CODE (*node) == FUNCTION_DECL)
4884 TREE_READONLY (*node) = 1;
4885 else if (TREE_CODE (type) == POINTER_TYPE
4886 && TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
4887 TREE_TYPE (*node)
4888 = build_pointer_type
4889 (build_type_variant (TREE_TYPE (type), 1,
4890 TREE_THIS_VOLATILE (TREE_TYPE (type))));
4891 else
4892 {
4893 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4894 *no_add_attrs = true;
4895 }
4896
4897 return NULL_TREE;
4898}
4899
4900/* Handle a "transparent_union" attribute; arguments as in
4901 struct attribute_spec.handler. */
4902
4903static tree
4904handle_transparent_union_attribute (node, name, args, flags, no_add_attrs)
4905 tree *node;
4906 tree name;
4907 tree args ATTRIBUTE_UNUSED;
4908 int flags;
4909 bool *no_add_attrs;
4910{
4911 tree decl = NULL_TREE;
4912 tree *type = NULL;
4913 int is_type = 0;
4914
4915 if (DECL_P (*node))
4916 {
4917 decl = *node;
4918 type = &TREE_TYPE (decl);
4919 is_type = TREE_CODE (*node) == TYPE_DECL;
4920 }
4921 else if (TYPE_P (*node))
4922 type = node, is_type = 1;
4923
4924 if (is_type
4925 && TREE_CODE (*type) == UNION_TYPE
4926 && (decl == 0
4927 || (TYPE_FIELDS (*type) != 0
4928 && TYPE_MODE (*type) == DECL_MODE (TYPE_FIELDS (*type)))))
4929 {
4930 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
4931 *type = build_type_copy (*type);
4932 TYPE_TRANSPARENT_UNION (*type) = 1;
4933 }
4934 else if (decl != 0 && TREE_CODE (decl) == PARM_DECL
4935 && TREE_CODE (*type) == UNION_TYPE
4936 && TYPE_MODE (*type) == DECL_MODE (TYPE_FIELDS (*type)))
4937 DECL_TRANSPARENT_UNION (decl) = 1;
4938 else
4939 {
4940 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4941 *no_add_attrs = true;
4942 }
4943
4944 return NULL_TREE;
4945}
4946
4947/* Handle a "constructor" attribute; arguments as in
4948 struct attribute_spec.handler. */
4949
4950static tree
4951handle_constructor_attribute (node, name, args, flags, no_add_attrs)
4952 tree *node;
4953 tree name;
4954 tree args ATTRIBUTE_UNUSED;
4955 int flags ATTRIBUTE_UNUSED;
4956 bool *no_add_attrs;
4957{
4958 tree decl = *node;
4959 tree type = TREE_TYPE (decl);
4960
4961 if (TREE_CODE (decl) == FUNCTION_DECL
4962 && TREE_CODE (type) == FUNCTION_TYPE
4963 && decl_function_context (decl) == 0)
4964 {
4965 DECL_STATIC_CONSTRUCTOR (decl) = 1;
4966 TREE_USED (decl) = 1;
4967 }
4968 else
4969 {
4970 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
4971 *no_add_attrs = true;
4972 }
4973
4974 return NULL_TREE;
4975}
4976
4977/* Handle a "destructor" attribute; arguments as in
4978 struct attribute_spec.handler. */
4979
4980static tree
4981handle_destructor_attribute (node, name, args, flags, no_add_attrs)
4982 tree *node;
4983 tree name;
4984 tree args ATTRIBUTE_UNUSED;
4985 int flags ATTRIBUTE_UNUSED;
4986 bool *no_add_attrs;
4987{
4988 tree decl = *node;
4989 tree type = TREE_TYPE (decl);
4990
4991 if (TREE_CODE (decl) == FUNCTION_DECL
4992 && TREE_CODE (type) == FUNCTION_TYPE
4993 && decl_function_context (decl) == 0)
4994 {
4995 DECL_STATIC_DESTRUCTOR (decl) = 1;
4996 TREE_USED (decl) = 1;
4997 }
4998 else
4999 {
5000 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5001 *no_add_attrs = true;
5002 }
5003
5004 return NULL_TREE;
5005}
5006
5007/* Handle a "mode" attribute; arguments as in
5008 struct attribute_spec.handler. */
5009
5010static tree
5011handle_mode_attribute (node, name, args, flags, no_add_attrs)
5012 tree *node;
5013 tree name;
5014 tree args;
5015 int flags ATTRIBUTE_UNUSED;
5016 bool *no_add_attrs;
5017{
5018 tree type = *node;
5019
5020 *no_add_attrs = true;
5021
5022 if (TREE_CODE (TREE_VALUE (args)) != IDENTIFIER_NODE)
5023 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5024 else
5025 {
5026 int j;
5027 const char *p = IDENTIFIER_POINTER (TREE_VALUE (args));
5028 int len = strlen (p);
5029 enum machine_mode mode = VOIDmode;
5030 tree typefm;
5031
5032 if (len > 4 && p[0] == '_' && p[1] == '_'
5033 && p[len - 1] == '_' && p[len - 2] == '_')
5034 {
5035 char *newp = (char *) alloca (len - 1);
5036
5037 strcpy (newp, &p[2]);
5038 newp[len - 4] = '\0';
5039 p = newp;
5040 }
5041
5042 /* Change this type to have a type with the specified mode.
5043 First check for the special modes. */
5044 if (! strcmp (p, "byte"))
5045 mode = byte_mode;
5046 else if (!strcmp (p, "word"))
5047 mode = word_mode;
5048 else if (! strcmp (p, "pointer"))
5049 mode = ptr_mode;
5050 else
5051 for (j = 0; j < NUM_MACHINE_MODES; j++)
5052 if (!strcmp (p, GET_MODE_NAME (j)))
5053 mode = (enum machine_mode) j;
5054
5055 if (mode == VOIDmode)
5056 error ("unknown machine mode `%s'", p);
5057 else if (0 == (typefm = (*lang_hooks.types.type_for_mode)
5058 (mode, TREE_UNSIGNED (type))))
5059 error ("no data type for mode `%s'", p);
5060 else
5061 *node = typefm;
5062 /* No need to layout the type here. The caller should do this. */
5063 }
5064
5065 return NULL_TREE;
5066}
5067
5068/* Handle a "section" attribute; arguments as in
5069 struct attribute_spec.handler. */
5070
5071static tree
5072handle_section_attribute (node, name, args, flags, no_add_attrs)
5073 tree *node;
5074 tree name ATTRIBUTE_UNUSED;
5075 tree args;
5076 int flags ATTRIBUTE_UNUSED;
5077 bool *no_add_attrs;
5078{
5079 tree decl = *node;
5080
5081 if (targetm.have_named_sections)
5082 {
5083 if ((TREE_CODE (decl) == FUNCTION_DECL
5084 || TREE_CODE (decl) == VAR_DECL)
5085 && TREE_CODE (TREE_VALUE (args)) == STRING_CST)
5086 {
5087 if (TREE_CODE (decl) == VAR_DECL
5088 && current_function_decl != NULL_TREE
5089 && ! TREE_STATIC (decl))
5090 {
5091 error_with_decl (decl,
5092 "section attribute cannot be specified for local variables");
5093 *no_add_attrs = true;
5094 }
5095
5096 /* The decl may have already been given a section attribute
5097 from a previous declaration. Ensure they match. */
5098 else if (DECL_SECTION_NAME (decl) != NULL_TREE
5099 && strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME (decl)),
5100 TREE_STRING_POINTER (TREE_VALUE (args))) != 0)
5101 {
5102 error_with_decl (*node,
5103 "section of `%s' conflicts with previous declaration");
5104 *no_add_attrs = true;
5105 }
5106 else
5107 DECL_SECTION_NAME (decl) = TREE_VALUE (args);
5108 }
5109 else
5110 {
5111 error_with_decl (*node,
5112 "section attribute not allowed for `%s'");
5113 *no_add_attrs = true;
5114 }
5115 }
5116 else
5117 {
5118 error_with_decl (*node,
5119 "section attributes are not supported for this target");
5120 *no_add_attrs = true;
5121 }
5122
5123 return NULL_TREE;
5124}
5125
5126/* Handle a "aligned" attribute; arguments as in
5127 struct attribute_spec.handler. */
5128
5129static tree
5130handle_aligned_attribute (node, name, args, flags, no_add_attrs)
5131 tree *node;
5132 tree name ATTRIBUTE_UNUSED;
5133 tree args;
5134 int flags;
5135 bool *no_add_attrs;
5136{
5137 tree decl = NULL_TREE;
5138 tree *type = NULL;
5139 int is_type = 0;
5140 tree align_expr = (args ? TREE_VALUE (args)
5141 : size_int (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
5142 int i;
5143
5144 if (DECL_P (*node))
5145 {
5146 decl = *node;
5147 type = &TREE_TYPE (decl);
5148 is_type = TREE_CODE (*node) == TYPE_DECL;
5149 }
5150 else if (TYPE_P (*node))
5151 type = node, is_type = 1;
5152
5153 /* Strip any NOPs of any kind. */
5154 while (TREE_CODE (align_expr) == NOP_EXPR
5155 || TREE_CODE (align_expr) == CONVERT_EXPR
5156 || TREE_CODE (align_expr) == NON_LVALUE_EXPR)
5157 align_expr = TREE_OPERAND (align_expr, 0);
5158
5159 if (TREE_CODE (align_expr) != INTEGER_CST)
5160 {
5161 error ("requested alignment is not a constant");
5162 *no_add_attrs = true;
5163 }
5164 else if ((i = tree_log2 (align_expr)) == -1)
5165 {
5166 error ("requested alignment is not a power of 2");
5167 *no_add_attrs = true;
5168 }
5169 else if (i > HOST_BITS_PER_INT - 2)
5170 {
5171 error ("requested alignment is too large");
5172 *no_add_attrs = true;
5173 }
5174 else if (is_type)
5175 {
5176 /* If we have a TYPE_DECL, then copy the type, so that we
5177 don't accidentally modify a builtin type. See pushdecl. */
5178 if (decl && TREE_TYPE (decl) != error_mark_node
5179 && DECL_ORIGINAL_TYPE (decl) == NULL_TREE)
5180 {
5181 tree tt = TREE_TYPE (decl);
5182 *type = build_type_copy (*type);
5183 DECL_ORIGINAL_TYPE (decl) = tt;
5184 TYPE_NAME (*type) = decl;
5185 TREE_USED (*type) = TREE_USED (decl);
5186 TREE_TYPE (decl) = *type;
5187 }
5188 else if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5189 *type = build_type_copy (*type);
5190
5191 TYPE_ALIGN (*type) = (1 << i) * BITS_PER_UNIT;
5192 TYPE_USER_ALIGN (*type) = 1;
5193 }
5194 else if (TREE_CODE (decl) != VAR_DECL
5195 && TREE_CODE (decl) != FIELD_DECL)
5196 {
5197 error_with_decl (decl,
5198 "alignment may not be specified for `%s'");
5199 *no_add_attrs = true;
5200 }
5201 else
5202 {
5203 DECL_ALIGN (decl) = (1 << i) * BITS_PER_UNIT;
5204 DECL_USER_ALIGN (decl) = 1;
5205 }
5206
5207 return NULL_TREE;
5208}
5209
5210/* Handle a "weak" attribute; arguments as in
5211 struct attribute_spec.handler. */
5212
5213static tree
5214handle_weak_attribute (node, name, args, flags, no_add_attrs)
5215 tree *node;
5216 tree name ATTRIBUTE_UNUSED;
5217 tree args ATTRIBUTE_UNUSED;
5218 int flags ATTRIBUTE_UNUSED;
5219 bool *no_add_attrs ATTRIBUTE_UNUSED;
5220{
5221 declare_weak (*node);
5222
5223 return NULL_TREE;
5224}
5225
5226/* Handle an "alias" attribute; arguments as in
5227 struct attribute_spec.handler. */
5228
5229static tree
5230handle_alias_attribute (node, name, args, flags, no_add_attrs)
5231 tree *node;
5232 tree name;
5233 tree args;
5234 int flags ATTRIBUTE_UNUSED;
5235 bool *no_add_attrs;
5236{
5237 tree decl = *node;
5238
5239 if ((TREE_CODE (decl) == FUNCTION_DECL && DECL_INITIAL (decl))
5240 || (TREE_CODE (decl) != FUNCTION_DECL && ! DECL_EXTERNAL (decl)))
5241 {
5242 error_with_decl (decl,
5243 "`%s' defined both normally and as an alias");
5244 *no_add_attrs = true;
5245 }
5246 else if (decl_function_context (decl) == 0)
5247 {
5248 tree id;
5249
5250 id = TREE_VALUE (args);
5251 if (TREE_CODE (id) != STRING_CST)
5252 {
5253 error ("alias arg not a string");
5254 *no_add_attrs = true;
5255 return NULL_TREE;
5256 }
5257 id = get_identifier (TREE_STRING_POINTER (id));
5258 /* This counts as a use of the object pointed to. */
5259 TREE_USED (id) = 1;
5260
5261 if (TREE_CODE (decl) == FUNCTION_DECL)
5262 DECL_INITIAL (decl) = error_mark_node;
5263 else
5264 DECL_EXTERNAL (decl) = 0;
5265 }
5266 else
5267 {
5268 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5269 *no_add_attrs = true;
5270 }
5271
5272 return NULL_TREE;
5273}
5274
5275/* Handle an "visibility" attribute; arguments as in
5276 struct attribute_spec.handler. */
5277
5278static tree
5279handle_visibility_attribute (node, name, args, flags, no_add_attrs)
5280 tree *node;
5281 tree name;
5282 tree args;
5283 int flags ATTRIBUTE_UNUSED;
5284 bool *no_add_attrs;
5285{
5286 tree decl = *node;
5287
5288 if (decl_function_context (decl) != 0 || ! TREE_PUBLIC (decl))
5289 {
5290 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5291 *no_add_attrs = true;
5292 }
5293 else
5294 {
5295 tree id;
5296
5297 id = TREE_VALUE (args);
5298 if (TREE_CODE (id) != STRING_CST)
5299 {
5300 error ("visibility arg not a string");
5301 *no_add_attrs = true;
5302 return NULL_TREE;
5303 }
5304 if (strcmp (TREE_STRING_POINTER (id), "hidden")
5305 && strcmp (TREE_STRING_POINTER (id), "protected")
5306 && strcmp (TREE_STRING_POINTER (id), "internal"))
5307 {
5308 error ("visibility arg must be one of \"hidden\", \"protected\" or \"internal\"");
5309 *no_add_attrs = true;
5310 return NULL_TREE;
5311 }
5312 }
5313
5314 return NULL_TREE;
5315}
5316
5317/* Handle a "no_instrument_function" attribute; arguments as in
5318 struct attribute_spec.handler. */
5319
5320static tree
5321handle_no_instrument_function_attribute (node, name, args, flags, no_add_attrs)
5322 tree *node;
5323 tree name;
5324 tree args ATTRIBUTE_UNUSED;
5325 int flags ATTRIBUTE_UNUSED;
5326 bool *no_add_attrs;
5327{
5328 tree decl = *node;
5329
5330 if (TREE_CODE (decl) != FUNCTION_DECL)
5331 {
5332 error_with_decl (decl,
5333 "`%s' attribute applies only to functions",
5334 IDENTIFIER_POINTER (name));
5335 *no_add_attrs = true;
5336 }
5337 else if (DECL_INITIAL (decl))
5338 {
5339 error_with_decl (decl,
5340 "can't set `%s' attribute after definition",
5341 IDENTIFIER_POINTER (name));
5342 *no_add_attrs = true;
5343 }
5344 else
5345 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
5346
5347 return NULL_TREE;
5348}
5349
5350/* Handle a "malloc" attribute; arguments as in
5351 struct attribute_spec.handler. */
5352
5353static tree
5354handle_malloc_attribute (node, name, args, flags, no_add_attrs)
5355 tree *node;
5356 tree name;
5357 tree args ATTRIBUTE_UNUSED;
5358 int flags ATTRIBUTE_UNUSED;
5359 bool *no_add_attrs;
5360{
5361 if (TREE_CODE (*node) == FUNCTION_DECL)
5362 DECL_IS_MALLOC (*node) = 1;
5363 /* ??? TODO: Support types. */
5364 else
5365 {
5366 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5367 *no_add_attrs = true;
5368 }
5369
5370 return NULL_TREE;
5371}
5372
5373/* Handle a "no_limit_stack" attribute; arguments as in
5374 struct attribute_spec.handler. */
5375
5376static tree
5377handle_no_limit_stack_attribute (node, name, args, flags, no_add_attrs)
5378 tree *node;
5379 tree name;
5380 tree args ATTRIBUTE_UNUSED;
5381 int flags ATTRIBUTE_UNUSED;
5382 bool *no_add_attrs;
5383{
5384 tree decl = *node;
5385
5386 if (TREE_CODE (decl) != FUNCTION_DECL)
5387 {
5388 error_with_decl (decl,
5389 "`%s' attribute applies only to functions",
5390 IDENTIFIER_POINTER (name));
5391 *no_add_attrs = true;
5392 }
5393 else if (DECL_INITIAL (decl))
5394 {
5395 error_with_decl (decl,
5396 "can't set `%s' attribute after definition",
5397 IDENTIFIER_POINTER (name));
5398 *no_add_attrs = true;
5399 }
5400 else
5401 DECL_NO_LIMIT_STACK (decl) = 1;
5402
5403 return NULL_TREE;
5404}
5405
5406/* Handle a "pure" attribute; arguments as in
5407 struct attribute_spec.handler. */
5408
5409static tree
5410handle_pure_attribute (node, name, args, flags, no_add_attrs)
5411 tree *node;
5412 tree name;
5413 tree args ATTRIBUTE_UNUSED;
5414 int flags ATTRIBUTE_UNUSED;
5415 bool *no_add_attrs;
5416{
5417 if (TREE_CODE (*node) == FUNCTION_DECL)
5418 DECL_IS_PURE (*node) = 1;
5419 /* ??? TODO: Support types. */
5420 else
5421 {
5422 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5423 *no_add_attrs = true;
5424 }
5425
5426 return NULL_TREE;
5427}
5428
5429/* Handle a "deprecated" attribute; arguments as in
5430 struct attribute_spec.handler. */
5431
5432static tree
5433handle_deprecated_attribute (node, name, args, flags, no_add_attrs)
5434 tree *node;
5435 tree name;
5436 tree args ATTRIBUTE_UNUSED;
5437 int flags;
5438 bool *no_add_attrs;
5439{
5440 tree type = NULL_TREE;
5441 int warn = 0;
5442 const char *what = NULL;
5443
5444 if (DECL_P (*node))
5445 {
5446 tree decl = *node;
5447 type = TREE_TYPE (decl);
5448
5449 if (TREE_CODE (decl) == TYPE_DECL
5450 || TREE_CODE (decl) == PARM_DECL
5451 || TREE_CODE (decl) == VAR_DECL
5452 || TREE_CODE (decl) == FUNCTION_DECL
5453 || TREE_CODE (decl) == FIELD_DECL)
5454 TREE_DEPRECATED (decl) = 1;
5455 else
5456 warn = 1;
5457 }
5458 else if (TYPE_P (*node))
5459 {
5460 if (!(flags & (int) ATTR_FLAG_TYPE_IN_PLACE))
5461 *node = build_type_copy (*node);
5462 TREE_DEPRECATED (*node) = 1;
5463 type = *node;
5464 }
5465 else
5466 warn = 1;
5467
5468 if (warn)
5469 {
5470 *no_add_attrs = true;
5471 if (type && TYPE_NAME (type))
5472 {
5473 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
5474 what = IDENTIFIER_POINTER (TYPE_NAME (*node));
5475 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
5476 && DECL_NAME (TYPE_NAME (type)))
5477 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
5478 }
5479 if (what)
5480 warning ("`%s' attribute ignored for `%s'",
5481 IDENTIFIER_POINTER (name), what);
5482 else
5483 warning ("`%s' attribute ignored",
5484 IDENTIFIER_POINTER (name));
5485 }
5486
5487 return NULL_TREE;
5488}
5489
5490/* Keep a list of vector type nodes we created in handle_vector_size_attribute,
5491 to prevent us from duplicating type nodes unnecessarily.
5492 The normal mechanism to prevent duplicates is to use type_hash_canon, but
5493 since we want to distinguish types that are essentially identical (except
5494 for their debug representation), we use a local list here. */
5495static tree vector_type_node_list = 0;
5496
5497/* Handle a "vector_size" attribute; arguments as in
5498 struct attribute_spec.handler. */
5499
5500static tree
5501handle_vector_size_attribute (node, name, args, flags, no_add_attrs)
5502 tree *node;
5503 tree name;
5504 tree args;
5505 int flags ATTRIBUTE_UNUSED;
5506 bool *no_add_attrs;
5507{
5508 unsigned HOST_WIDE_INT vecsize, nunits;
5509 enum machine_mode mode, orig_mode, new_mode;
5510 tree type = *node, new_type = NULL_TREE;
5511 tree type_list_node;
5512
5513 *no_add_attrs = true;
5514
5515 if (! host_integerp (TREE_VALUE (args), 1))
5516 {
5517 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5518 return NULL_TREE;
5519 }
5520
5521 /* Get the vector size (in bytes). */
5522 vecsize = tree_low_cst (TREE_VALUE (args), 1);
5523
5524 /* We need to provide for vector pointers, vector arrays, and
5525 functions returning vectors. For example:
5526
5527 __attribute__((vector_size(16))) short *foo;
5528
5529 In this case, the mode is SI, but the type being modified is
5530 HI, so we need to look further. */
5531
5532 while (POINTER_TYPE_P (type)
5533 || TREE_CODE (type) == FUNCTION_TYPE
5534 || TREE_CODE (type) == ARRAY_TYPE)
5535 type = TREE_TYPE (type);
5536
5537 /* Get the mode of the type being modified. */
5538 orig_mode = TYPE_MODE (type);
5539
5540 if (TREE_CODE (type) == RECORD_TYPE
5541 || (GET_MODE_CLASS (orig_mode) != MODE_FLOAT
5542 && GET_MODE_CLASS (orig_mode) != MODE_INT)
5543 || ! host_integerp (TYPE_SIZE_UNIT (type), 1))
5544 {
5545 error ("invalid vector type for attribute `%s'",
5546 IDENTIFIER_POINTER (name));
5547 return NULL_TREE;
5548 }
5549
5550 /* Calculate how many units fit in the vector. */
5551 nunits = vecsize / tree_low_cst (TYPE_SIZE_UNIT (type), 1);
5552
5553 /* Find a suitably sized vector. */
5554 new_mode = VOIDmode;
5555 for (mode = GET_CLASS_NARROWEST_MODE (GET_MODE_CLASS (orig_mode) == MODE_INT
5556 ? MODE_VECTOR_INT
5557 : MODE_VECTOR_FLOAT);
5558 mode != VOIDmode;
5559 mode = GET_MODE_WIDER_MODE (mode))
5560 if (vecsize == GET_MODE_SIZE (mode)
5561 && nunits == (unsigned HOST_WIDE_INT) GET_MODE_NUNITS (mode))
5562 {
5563 new_mode = mode;
5564 break;
5565 }
5566
5567 if (new_mode == VOIDmode)
5568 {
5569 error ("no vector mode with the size and type specified could be found");
5570 return NULL_TREE;
5571 }
5572
5573 for (type_list_node = vector_type_node_list; type_list_node;
5574 type_list_node = TREE_CHAIN (type_list_node))
5575 {
5576 tree other_type = TREE_VALUE (type_list_node);
5577 tree record = TYPE_DEBUG_REPRESENTATION_TYPE (other_type);
5578 tree fields = TYPE_FIELDS (record);
5579 tree field_type = TREE_TYPE (fields);
5580 tree array_type = TREE_TYPE (field_type);
5581 if (TREE_CODE (fields) != FIELD_DECL
5582 || TREE_CODE (field_type) != ARRAY_TYPE)
5583 abort ();
5584
5585 if (TYPE_MODE (other_type) == mode && type == array_type)
5586 {
5587 new_type = other_type;
5588 break;
5589 }
5590 }
5591
5592 if (new_type == NULL_TREE)
5593 {
5594 tree index, array, rt, list_node;
5595
5596 new_type = (*lang_hooks.types.type_for_mode) (new_mode,
5597 TREE_UNSIGNED (type));
5598
5599 if (!new_type)
5600 {
5601 error ("no vector mode with the size and type specified could be found");
5602 return NULL_TREE;
5603 }
5604
5605 new_type = build_type_copy (new_type);
5606
5607 /* Set the debug information here, because this is the only
5608 place where we know the underlying type for a vector made
5609 with vector_size. For debugging purposes we pretend a vector
5610 is an array within a structure. */
5611 index = build_int_2 (TYPE_VECTOR_SUBPARTS (new_type) - 1, 0);
5612 array = build_array_type (type, build_index_type (index));
5613 rt = make_node (RECORD_TYPE);
5614
5615 TYPE_FIELDS (rt) = build_decl (FIELD_DECL, get_identifier ("f"), array);
5616 DECL_CONTEXT (TYPE_FIELDS (rt)) = rt;
5617 layout_type (rt);
5618 TYPE_DEBUG_REPRESENTATION_TYPE (new_type) = rt;
5619
5620 list_node = build_tree_list (NULL, new_type);
5621 TREE_CHAIN (list_node) = vector_type_node_list;
5622 vector_type_node_list = list_node;
5623 }
5624
5625 /* Build back pointers if needed. */
5626 *node = vector_size_helper (*node, new_type);
5627
5628 return NULL_TREE;
5629}
5630
5631/* HACK. GROSS. This is absolutely disgusting. I wish there was a
5632 better way.
5633
5634 If we requested a pointer to a vector, build up the pointers that
5635 we stripped off while looking for the inner type. Similarly for
5636 return values from functions.
5637
5638 The argument "type" is the top of the chain, and "bottom" is the
5639 new type which we will point to. */
5640
5641static tree
5642vector_size_helper (type, bottom)
5643 tree type, bottom;
5644{
5645 tree inner, outer;
5646
5647 if (POINTER_TYPE_P (type))
5648 {
5649 inner = vector_size_helper (TREE_TYPE (type), bottom);
5650 outer = build_pointer_type (inner);
5651 }
5652 else if (TREE_CODE (type) == ARRAY_TYPE)
5653 {
5654 inner = vector_size_helper (TREE_TYPE (type), bottom);
5655 outer = build_array_type (inner, TYPE_VALUES (type));
5656 }
5657 else if (TREE_CODE (type) == FUNCTION_TYPE)
5658 {
5659 inner = vector_size_helper (TREE_TYPE (type), bottom);
5660 outer = build_function_type (inner, TYPE_VALUES (type));
5661 }
5662 else
5663 return bottom;
5664
5665 TREE_READONLY (outer) = TREE_READONLY (type);
5666 TREE_THIS_VOLATILE (outer) = TREE_THIS_VOLATILE (type);
5667
5668 return outer;
5669}
dbf6c367 5670
5671/* Handle the "nonnull" attribute. */
5672static tree
5673handle_nonnull_attribute (node, name, args, flags, no_add_attrs)
5674 tree *node;
5675 tree name ATTRIBUTE_UNUSED;
5676 tree args;
5677 int flags ATTRIBUTE_UNUSED;
5678 bool *no_add_attrs;
5679{
5680 tree type = *node;
5681 unsigned HOST_WIDE_INT attr_arg_num;
5682
5683 /* If no arguments are specified, all pointer arguments should be
5684 non-null. Veryify a full prototype is given so that the arguments
5685 will have the correct types when we actually check them later. */
5686 if (! args)
5687 {
5688 if (! TYPE_ARG_TYPES (type))
5689 {
5690 error ("nonnull attribute without arguments on a non-prototype");
5691 *no_add_attrs = true;
5692 }
5693 return NULL_TREE;
5694 }
5695
5696 /* Argument list specified. Verify that each argument number references
5697 a pointer argument. */
5698 for (attr_arg_num = 1; args; args = TREE_CHAIN (args))
5699 {
5700 tree argument;
5701 unsigned HOST_WIDE_INT arg_num, ck_num;
5702
5703 if (! get_nonnull_operand (TREE_VALUE (args), &arg_num))
5704 {
5705 error ("nonnull argument has invalid operand number (arg %lu)",
5706 (unsigned long) attr_arg_num);
5707 *no_add_attrs = true;
5708 return NULL_TREE;
5709 }
5710
5711 argument = TYPE_ARG_TYPES (type);
5712 if (argument)
5713 {
5714 for (ck_num = 1; ; ck_num++)
5715 {
5716 if (! argument || ck_num == arg_num)
5717 break;
5718 argument = TREE_CHAIN (argument);
5719 }
5720
5721 if (! argument
5722 || TREE_CODE (TREE_VALUE (argument)) == VOID_TYPE)
5723 {
5724 error ("nonnull argument with out-of-range operand number (arg %lu, operand %lu)",
5725 (unsigned long) attr_arg_num, (unsigned long) arg_num);
5726 *no_add_attrs = true;
5727 return NULL_TREE;
5728 }
5729
5730 if (TREE_CODE (TREE_VALUE (argument)) != POINTER_TYPE)
5731 {
5732 error ("nonnull argument references non-pointer operand (arg %lu, operand %lu)",
5733 (unsigned long) attr_arg_num, (unsigned long) arg_num);
5734 *no_add_attrs = true;
5735 return NULL_TREE;
5736 }
5737 }
5738 }
5739
5740 return NULL_TREE;
5741}
5742
5743/* Check the argument list of a function call for null in argument slots
5744 that are marked as requiring a non-null pointer argument. */
5745
5746static void
5747check_function_nonnull (attrs, params)
5748 tree attrs;
5749 tree params;
5750{
5751 tree a, args, param;
5752 int param_num;
5753
5754 for (a = attrs; a; a = TREE_CHAIN (a))
5755 {
5756 if (is_attribute_p ("nonnull", TREE_PURPOSE (a)))
5757 {
5758 args = TREE_VALUE (a);
5759
5760 /* Walk the argument list. If we encounter an argument number we
5761 should check for non-null, do it. If the attribute has no args,
5762 then every pointer argument is checked (in which case the check
5763 for pointer type is done in check_nonnull_arg). */
5764 for (param = params, param_num = 1; ;
5765 param_num++, param = TREE_CHAIN (param))
5766 {
5767 if (! param)
5768 break;
5769 if (! args || nonnull_check_p (args, param_num))
5770 check_function_arguments_recurse (check_nonnull_arg, NULL,
5771 TREE_VALUE (param),
5772 param_num);
5773 }
5774 }
5775 }
5776}
5777
5778/* Helper for check_function_nonnull; given a list of operands which
5779 must be non-null in ARGS, determine if operand PARAM_NUM should be
5780 checked. */
5781
5782static bool
5783nonnull_check_p (args, param_num)
5784 tree args;
5785 unsigned HOST_WIDE_INT param_num;
5786{
5787 unsigned HOST_WIDE_INT arg_num;
5788
5789 for (; args; args = TREE_CHAIN (args))
5790 {
5791 if (! get_nonnull_operand (TREE_VALUE (args), &arg_num))
5792 abort ();
5793
5794 if (arg_num == param_num)
5795 return true;
5796 }
5797 return false;
5798}
5799
5800/* Check that the function argument PARAM (which is operand number
5801 PARAM_NUM) is non-null. This is called by check_function_nonnull
5802 via check_function_arguments_recurse. */
5803
5804static void
5805check_nonnull_arg (ctx, param, param_num)
5806 void *ctx ATTRIBUTE_UNUSED;
5807 tree param;
5808 unsigned HOST_WIDE_INT param_num;
5809{
5810 /* Just skip checking the argument if it's not a pointer. This can
5811 happen if the "nonnull" attribute was given without an operand
5812 list (which means to check every pointer argument). */
5813
5814 if (TREE_CODE (TREE_TYPE (param)) != POINTER_TYPE)
5815 return;
5816
5817 if (integer_zerop (param))
5818 warning ("null argument where non-null required (arg %lu)",
5819 (unsigned long) param_num);
5820}
5821
5822/* Helper for nonnull attribute handling; fetch the operand number
5823 from the attribute argument list. */
5824
5825static bool
5826get_nonnull_operand (arg_num_expr, valp)
5827 tree arg_num_expr;
5828 unsigned HOST_WIDE_INT *valp;
5829{
5830 /* Strip any conversions from the arg number and verify they
5831 are constants. */
5832 while (TREE_CODE (arg_num_expr) == NOP_EXPR
5833 || TREE_CODE (arg_num_expr) == CONVERT_EXPR
5834 || TREE_CODE (arg_num_expr) == NON_LVALUE_EXPR)
5835 arg_num_expr = TREE_OPERAND (arg_num_expr, 0);
5836
5837 if (TREE_CODE (arg_num_expr) != INTEGER_CST
5838 || TREE_INT_CST_HIGH (arg_num_expr) != 0)
5839 return false;
5840
5841 *valp = TREE_INT_CST_LOW (arg_num_expr);
5842 return true;
5843}
fa987697 5844
5845/* Handle a "nothrow" attribute; arguments as in
5846 struct attribute_spec.handler. */
5847
5848static tree
5849handle_nothrow_attribute (node, name, args, flags, no_add_attrs)
5850 tree *node;
5851 tree name;
5852 tree args ATTRIBUTE_UNUSED;
5853 int flags ATTRIBUTE_UNUSED;
5854 bool *no_add_attrs;
5855{
5856 if (TREE_CODE (*node) == FUNCTION_DECL)
5857 TREE_NOTHROW (*node) = 1;
5858 /* ??? TODO: Support types. */
5859 else
5860 {
5861 warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name));
5862 *no_add_attrs = true;
5863 }
5864
5865 return NULL_TREE;
5866}
dbf6c367 5867\f
5868/* Check for valid arguments being passed to a function. */
5869void
5870check_function_arguments (attrs, params)
5871 tree attrs;
5872 tree params;
5873{
5874 /* Check for null being passed in a pointer argument that must be
5875 non-null. We also need to do this if format checking is enabled. */
5876
5877 if (warn_nonnull)
5878 check_function_nonnull (attrs, params);
5879
5880 /* Check for errors in format strings. */
5881
5882 if (warn_format)
5883 check_function_format (NULL, attrs, params);
5884}
5885
5886/* Generic argument checking recursion routine. PARAM is the argument to
5887 be checked. PARAM_NUM is the number of the argument. CALLBACK is invoked
5888 once the argument is resolved. CTX is context for the callback. */
5889void
5890check_function_arguments_recurse (callback, ctx, param, param_num)
5891 void (*callback) PARAMS ((void *, tree, unsigned HOST_WIDE_INT));
5892 void *ctx;
5893 tree param;
5894 unsigned HOST_WIDE_INT param_num;
5895{
5896 if (TREE_CODE (param) == NOP_EXPR)
5897 {
5898 /* Strip coercion. */
5899 check_function_arguments_recurse (callback, ctx,
5900 TREE_OPERAND (param, 0), param_num);
5901 return;
5902 }
5903
5904 if (TREE_CODE (param) == CALL_EXPR)
5905 {
5906 tree type = TREE_TYPE (TREE_TYPE (TREE_OPERAND (param, 0)));
5907 tree attrs;
5908 bool found_format_arg = false;
5909
5910 /* See if this is a call to a known internationalization function
5911 that modifies a format arg. Such a function may have multiple
5912 format_arg attributes (for example, ngettext). */
5913
5914 for (attrs = TYPE_ATTRIBUTES (type);
5915 attrs;
5916 attrs = TREE_CHAIN (attrs))
5917 if (is_attribute_p ("format_arg", TREE_PURPOSE (attrs)))
5918 {
5919 tree inner_args;
5920 tree format_num_expr;
5921 int format_num;
5922 int i;
5923
5924 /* Extract the argument number, which was previously checked
5925 to be valid. */
5926 format_num_expr = TREE_VALUE (TREE_VALUE (attrs));
5927 while (TREE_CODE (format_num_expr) == NOP_EXPR
5928 || TREE_CODE (format_num_expr) == CONVERT_EXPR
5929 || TREE_CODE (format_num_expr) == NON_LVALUE_EXPR)
5930 format_num_expr = TREE_OPERAND (format_num_expr, 0);
5931
5932 if (TREE_CODE (format_num_expr) != INTEGER_CST
5933 || TREE_INT_CST_HIGH (format_num_expr) != 0)
5934 abort ();
5935
5936 format_num = TREE_INT_CST_LOW (format_num_expr);
5937
5938 for (inner_args = TREE_OPERAND (param, 1), i = 1;
5939 inner_args != 0;
5940 inner_args = TREE_CHAIN (inner_args), i++)
5941 if (i == format_num)
5942 {
5943 check_function_arguments_recurse (callback, ctx,
5944 TREE_VALUE (inner_args),
5945 param_num);
5946 found_format_arg = true;
5947 break;
5948 }
5949 }
5950
5951 /* If we found a format_arg attribute and did a recursive check,
5952 we are done with checking this argument. Otherwise, we continue
5953 and this will be considered a non-literal. */
5954 if (found_format_arg)
5955 return;
5956 }
5957
5958 if (TREE_CODE (param) == COND_EXPR)
5959 {
5960 /* Check both halves of the conditional expression. */
5961 check_function_arguments_recurse (callback, ctx,
5962 TREE_OPERAND (param, 1), param_num);
5963 check_function_arguments_recurse (callback, ctx,
5964 TREE_OPERAND (param, 2), param_num);
5965 return;
5966 }
5967
5968 (*callback) (ctx, param, param_num);
5969}
1f3233d1 5970
5971#include "gt-c-common.h"