]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/c-typeck.c
install.texi (ia64-*-linux): Document minimum libunwind version number.
[thirdparty/gcc.git] / gcc / c-typeck.c
CommitLineData
400fbf9f 1/* Build expressions with type checking for C compiler.
06ceef4e 2 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
339a28b9 3 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
400fbf9f 4
1322177d 5This file is part of GCC.
400fbf9f 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
400fbf9f 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
400fbf9f
JW
16
17You should have received a copy of the GNU General Public License
1322177d
LB
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
400fbf9f
JW
21
22
23/* This file is part of the C front end.
24 It contains routines to build C expressions given their operands,
25 including computing the types of the result, C-specific error checks,
26 and some optimization.
27
28 There are also routines to build RETURN_STMT nodes and CASE_STMT nodes,
29 and to process initializations in declarations (since they work
30 like a strange sort of assignment). */
31
32#include "config.h"
670ee920 33#include "system.h"
4977bab6
ZW
34#include "coretypes.h"
35#include "tm.h"
742b62e7 36#include "rtl.h"
400fbf9f
JW
37#include "tree.h"
38#include "c-tree.h"
6baf1cc8 39#include "tm_p.h"
400fbf9f 40#include "flags.h"
e14417fa 41#include "output.h"
234042f4 42#include "expr.h"
5f6da302 43#include "toplev.h"
ab87f8c8 44#include "intl.h"
4dd7201e 45#include "ggc.h"
672a6f42 46#include "target.h"
400fbf9f 47
b71c7f8a 48/* Nonzero if we've already printed a "missing braces around initializer"
103b7b17 49 message within this initializer. */
b71c7f8a 50static int missing_braces_mentioned;
103b7b17 51
f55ade6e 52static tree qualify_type (tree, tree);
766beae1 53static int same_translation_unit_p (tree, tree);
d1bd0ded 54static int tagged_types_tu_compatible_p (tree, tree, int);
f55ade6e 55static int comp_target_types (tree, tree, int);
d1bd0ded
GK
56static int function_types_compatible_p (tree, tree, int);
57static int type_lists_compatible_p (tree, tree, int);
f55ade6e
AJ
58static tree decl_constant_value_for_broken_optimization (tree);
59static tree default_function_array_conversion (tree);
60static tree lookup_field (tree, tree);
f55ade6e
AJ
61static tree convert_arguments (tree, tree, tree, tree);
62static tree pointer_diff (tree, tree);
63static tree unary_complex_lvalue (enum tree_code, tree, int);
64static void pedantic_lvalue_warning (enum tree_code);
65static tree internal_build_compound_expr (tree, int);
66static tree convert_for_assignment (tree, tree, const char *, tree, tree,
67 int);
68static void warn_for_assignment (const char *, const char *, tree, int);
69static tree valid_compound_expr_initializer (tree, tree);
70static void push_string (const char *);
71static void push_member_name (tree);
72static void push_array_bounds (int);
73static int spelling_length (void);
74static char *print_spelling (char *);
75static void warning_init (const char *);
76static tree digest_init (tree, tree, int);
77static void output_init_element (tree, tree, tree, int);
78static void output_pending_init_elements (int);
79static int set_designator (int);
80static void push_range_stack (tree);
81static void add_pending_init (tree, tree);
82static void set_nonincremental_init (void);
83static void set_nonincremental_init_from_string (tree);
84static tree find_init_member (tree);
400fbf9f
JW
85\f
86/* Do `exp = require_complete_type (exp);' to make sure exp
87 does not have an incomplete type. (That includes void types.) */
88
89tree
2f6e4e97 90require_complete_type (tree value)
400fbf9f
JW
91{
92 tree type = TREE_TYPE (value);
93
c3d5c3fa 94 if (value == error_mark_node || type == error_mark_node)
ea0f786b
CB
95 return error_mark_node;
96
400fbf9f 97 /* First, detect a valid value with a complete type. */
d0f062fb 98 if (COMPLETE_TYPE_P (type))
400fbf9f
JW
99 return value;
100
7a228918 101 c_incomplete_type_error (value, type);
400fbf9f
JW
102 return error_mark_node;
103}
104
105/* Print an error message for invalid use of an incomplete type.
106 VALUE is the expression that was used (or 0 if that isn't known)
107 and TYPE is the type that was invalid. */
108
109void
2f6e4e97 110c_incomplete_type_error (tree value, tree type)
400fbf9f 111{
5d5993dd 112 const char *type_code_string;
400fbf9f
JW
113
114 /* Avoid duplicate error message. */
115 if (TREE_CODE (type) == ERROR_MARK)
116 return;
117
118 if (value != 0 && (TREE_CODE (value) == VAR_DECL
119 || TREE_CODE (value) == PARM_DECL))
120 error ("`%s' has an incomplete type",
121 IDENTIFIER_POINTER (DECL_NAME (value)));
122 else
123 {
124 retry:
125 /* We must print an error message. Be clever about what it says. */
126
127 switch (TREE_CODE (type))
128 {
129 case RECORD_TYPE:
ab87f8c8 130 type_code_string = "struct";
400fbf9f
JW
131 break;
132
133 case UNION_TYPE:
ab87f8c8 134 type_code_string = "union";
400fbf9f
JW
135 break;
136
137 case ENUMERAL_TYPE:
ab87f8c8 138 type_code_string = "enum";
400fbf9f
JW
139 break;
140
141 case VOID_TYPE:
142 error ("invalid use of void expression");
143 return;
144
145 case ARRAY_TYPE:
146 if (TYPE_DOMAIN (type))
147 {
fba78abb
RH
148 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL)
149 {
150 error ("invalid use of flexible array member");
151 return;
152 }
400fbf9f
JW
153 type = TREE_TYPE (type);
154 goto retry;
155 }
156 error ("invalid use of array with unspecified bounds");
157 return;
158
159 default:
160 abort ();
161 }
162
163 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
ab87f8c8
JL
164 error ("invalid use of undefined type `%s %s'",
165 type_code_string, IDENTIFIER_POINTER (TYPE_NAME (type)));
400fbf9f
JW
166 else
167 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
168 error ("invalid use of incomplete typedef `%s'",
169 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
170 }
171}
172
ab393bf1
NB
173/* Given a type, apply default promotions wrt unnamed function
174 arguments and return the new type. */
175
176tree
2f6e4e97 177c_type_promotes_to (tree type)
ab393bf1
NB
178{
179 if (TYPE_MAIN_VARIANT (type) == float_type_node)
180 return double_type_node;
181
182 if (c_promoting_integer_type_p (type))
183 {
184 /* Preserve unsignedness if not really getting any wider. */
185 if (TREE_UNSIGNED (type)
186 && (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
187 return unsigned_type_node;
188 return integer_type_node;
189 }
190
191 return type;
192}
193
400fbf9f
JW
194/* Return a variant of TYPE which has all the type qualifiers of LIKE
195 as well as those of TYPE. */
196
197static tree
2f6e4e97 198qualify_type (tree type, tree like)
400fbf9f 199{
2f6e4e97 200 return c_build_qualified_type (type,
afbadaa7 201 TYPE_QUALS (type) | TYPE_QUALS (like));
400fbf9f
JW
202}
203\f
204/* Return the common type of two types.
205 We assume that comptypes has already been done and returned 1;
6cb72a7d
RS
206 if that isn't so, this may crash. In particular, we assume that qualifiers
207 match.
400fbf9f
JW
208
209 This is the type for the result of most arithmetic operations
6cb72a7d 210 if the operands have the given two types. */
400fbf9f
JW
211
212tree
2f6e4e97 213common_type (tree t1, tree t2)
400fbf9f 214{
b3694847
SS
215 enum tree_code code1;
216 enum tree_code code2;
4b027d16 217 tree attributes;
400fbf9f
JW
218
219 /* Save time if the two types are the same. */
220
221 if (t1 == t2) return t1;
222
223 /* If one type is nonsense, use the other. */
224 if (t1 == error_mark_node)
225 return t2;
226 if (t2 == error_mark_node)
227 return t1;
228
d9525bec 229 /* Merge the attributes. */
f6897b10 230 attributes = (*targetm.merge_type_attributes) (t1, t2);
4b027d16 231
400fbf9f
JW
232 /* Treat an enum type as the unsigned integer type of the same width. */
233
234 if (TREE_CODE (t1) == ENUMERAL_TYPE)
b0c48229 235 t1 = c_common_type_for_size (TYPE_PRECISION (t1), 1);
400fbf9f 236 if (TREE_CODE (t2) == ENUMERAL_TYPE)
b0c48229 237 t2 = c_common_type_for_size (TYPE_PRECISION (t2), 1);
400fbf9f
JW
238
239 code1 = TREE_CODE (t1);
240 code2 = TREE_CODE (t2);
241
75326e8c
RK
242 /* If one type is complex, form the common type of the non-complex
243 components, then make that complex. Use T1 or T2 if it is the
244 required type. */
b6a10c9f
RS
245 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
246 {
75326e8c
RK
247 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
248 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
249 tree subtype = common_type (subtype1, subtype2);
250
251 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
4b027d16 252 return build_type_attribute_variant (t1, attributes);
75326e8c 253 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
4b027d16 254 return build_type_attribute_variant (t2, attributes);
b6a10c9f 255 else
4b027d16
RK
256 return build_type_attribute_variant (build_complex_type (subtype),
257 attributes);
b6a10c9f
RS
258 }
259
400fbf9f
JW
260 switch (code1)
261 {
262 case INTEGER_TYPE:
263 case REAL_TYPE:
264 /* If only one is real, use it as the result. */
265
266 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
4b027d16 267 return build_type_attribute_variant (t1, attributes);
400fbf9f
JW
268
269 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
4b027d16 270 return build_type_attribute_variant (t2, attributes);
400fbf9f
JW
271
272 /* Both real or both integers; use the one with greater precision. */
273
274 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
4b027d16 275 return build_type_attribute_variant (t1, attributes);
400fbf9f 276 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
4b027d16 277 return build_type_attribute_variant (t2, attributes);
400fbf9f
JW
278
279 /* Same precision. Prefer longs to ints even when same size. */
280
36618528
RS
281 if (TYPE_MAIN_VARIANT (t1) == long_unsigned_type_node
282 || TYPE_MAIN_VARIANT (t2) == long_unsigned_type_node)
4b027d16
RK
283 return build_type_attribute_variant (long_unsigned_type_node,
284 attributes);
400fbf9f 285
36618528
RS
286 if (TYPE_MAIN_VARIANT (t1) == long_integer_type_node
287 || TYPE_MAIN_VARIANT (t2) == long_integer_type_node)
400fbf9f
JW
288 {
289 /* But preserve unsignedness from the other type,
290 since long cannot hold all the values of an unsigned int. */
291 if (TREE_UNSIGNED (t1) || TREE_UNSIGNED (t2))
4b027d16
RK
292 t1 = long_unsigned_type_node;
293 else
294 t1 = long_integer_type_node;
295 return build_type_attribute_variant (t1, attributes);
400fbf9f
JW
296 }
297
e9a25f70
JL
298 /* Likewise, prefer long double to double even if same size. */
299 if (TYPE_MAIN_VARIANT (t1) == long_double_type_node
300 || TYPE_MAIN_VARIANT (t2) == long_double_type_node)
301 return build_type_attribute_variant (long_double_type_node,
302 attributes);
303
400fbf9f
JW
304 /* Otherwise prefer the unsigned one. */
305
306 if (TREE_UNSIGNED (t1))
4b027d16
RK
307 return build_type_attribute_variant (t1, attributes);
308 else
309 return build_type_attribute_variant (t2, attributes);
400fbf9f
JW
310
311 case POINTER_TYPE:
400fbf9f
JW
312 /* For two pointers, do this recursively on the target type,
313 and combine the qualifiers of the two types' targets. */
8706edbc
RS
314 /* This code was turned off; I don't know why.
315 But ANSI C specifies doing this with the qualifiers.
316 So I turned it on again. */
400fbf9f 317 {
3932261a
MM
318 tree pointed_to_1 = TREE_TYPE (t1);
319 tree pointed_to_2 = TREE_TYPE (t2);
320 tree target = common_type (TYPE_MAIN_VARIANT (pointed_to_1),
321 TYPE_MAIN_VARIANT (pointed_to_2));
2f6e4e97
AJ
322 t1 = build_pointer_type (c_build_qualified_type
323 (target,
324 TYPE_QUALS (pointed_to_1) |
3932261a 325 TYPE_QUALS (pointed_to_2)));
4b027d16 326 return build_type_attribute_variant (t1, attributes);
400fbf9f 327 }
400fbf9f
JW
328
329 case ARRAY_TYPE:
330 {
331 tree elt = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
332 /* Save space: see if the result is identical to one of the args. */
333 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
4b027d16 334 return build_type_attribute_variant (t1, attributes);
400fbf9f 335 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
4b027d16 336 return build_type_attribute_variant (t2, attributes);
400fbf9f 337 /* Merge the element types, and have a size if either arg has one. */
4b027d16
RK
338 t1 = build_array_type (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
339 return build_type_attribute_variant (t1, attributes);
400fbf9f
JW
340 }
341
342 case FUNCTION_TYPE:
343 /* Function types: prefer the one that specified arg types.
344 If both do, merge the arg types. Also merge the return types. */
345 {
346 tree valtype = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
347 tree p1 = TYPE_ARG_TYPES (t1);
348 tree p2 = TYPE_ARG_TYPES (t2);
349 int len;
350 tree newargs, n;
351 int i;
352
353 /* Save space: see if the result is identical to one of the args. */
354 if (valtype == TREE_TYPE (t1) && ! TYPE_ARG_TYPES (t2))
4b027d16 355 return build_type_attribute_variant (t1, attributes);
400fbf9f 356 if (valtype == TREE_TYPE (t2) && ! TYPE_ARG_TYPES (t1))
4b027d16 357 return build_type_attribute_variant (t2, attributes);
400fbf9f
JW
358
359 /* Simple way if one arg fails to specify argument types. */
360 if (TYPE_ARG_TYPES (t1) == 0)
4b027d16
RK
361 {
362 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t2));
363 return build_type_attribute_variant (t1, attributes);
364 }
400fbf9f 365 if (TYPE_ARG_TYPES (t2) == 0)
4b027d16
RK
366 {
367 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t1));
368 return build_type_attribute_variant (t1, attributes);
369 }
400fbf9f
JW
370
371 /* If both args specify argument types, we must merge the two
372 lists, argument by argument. */
373
2f4e8f2b 374 pushlevel (0);
eb1dfbb2 375 declare_parm_level ();
2f4e8f2b 376
400fbf9f
JW
377 len = list_length (p1);
378 newargs = 0;
379
380 for (i = 0; i < len; i++)
8d9bfdc5 381 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
400fbf9f
JW
382
383 n = newargs;
384
385 for (; p1;
386 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n))
387 {
388 /* A null type means arg type is not specified.
389 Take whatever the other function type has. */
390 if (TREE_VALUE (p1) == 0)
391 {
392 TREE_VALUE (n) = TREE_VALUE (p2);
393 goto parm_done;
394 }
395 if (TREE_VALUE (p2) == 0)
396 {
397 TREE_VALUE (n) = TREE_VALUE (p1);
398 goto parm_done;
399 }
2f6e4e97 400
400fbf9f
JW
401 /* Given wait (union {union wait *u; int *i} *)
402 and wait (union wait *),
403 prefer union wait * as type of parm. */
404 if (TREE_CODE (TREE_VALUE (p1)) == UNION_TYPE
405 && TREE_VALUE (p1) != TREE_VALUE (p2))
406 {
407 tree memb;
408 for (memb = TYPE_FIELDS (TREE_VALUE (p1));
409 memb; memb = TREE_CHAIN (memb))
d1bd0ded
GK
410 if (comptypes (TREE_TYPE (memb), TREE_VALUE (p2),
411 COMPARE_STRICT))
400fbf9f
JW
412 {
413 TREE_VALUE (n) = TREE_VALUE (p2);
414 if (pedantic)
89abf8d1 415 pedwarn ("function types not truly compatible in ISO C");
400fbf9f
JW
416 goto parm_done;
417 }
418 }
419 if (TREE_CODE (TREE_VALUE (p2)) == UNION_TYPE
420 && TREE_VALUE (p2) != TREE_VALUE (p1))
421 {
422 tree memb;
423 for (memb = TYPE_FIELDS (TREE_VALUE (p2));
424 memb; memb = TREE_CHAIN (memb))
d1bd0ded
GK
425 if (comptypes (TREE_TYPE (memb), TREE_VALUE (p1),
426 COMPARE_STRICT))
400fbf9f
JW
427 {
428 TREE_VALUE (n) = TREE_VALUE (p1);
429 if (pedantic)
89abf8d1 430 pedwarn ("function types not truly compatible in ISO C");
400fbf9f
JW
431 goto parm_done;
432 }
433 }
434 TREE_VALUE (n) = common_type (TREE_VALUE (p1), TREE_VALUE (p2));
435 parm_done: ;
436 }
437
2f4e8f2b
JJ
438 poplevel (0, 0, 0);
439
4b027d16 440 t1 = build_function_type (valtype, newargs);
0f41302f 441 /* ... falls through ... */
400fbf9f
JW
442 }
443
444 default:
4b027d16 445 return build_type_attribute_variant (t1, attributes);
400fbf9f
JW
446 }
447
448}
449\f
450/* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
451 or various other operations. Return 2 if they are compatible
452 but a warning may be needed if you use them together. */
453
454int
d1bd0ded 455comptypes (tree type1, tree type2, int flags)
400fbf9f 456{
b3694847
SS
457 tree t1 = type1;
458 tree t2 = type2;
4b027d16 459 int attrval, val;
400fbf9f
JW
460
461 /* Suppress errors caused by previously reported errors. */
462
8d47dfc5
RH
463 if (t1 == t2 || !t1 || !t2
464 || TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
400fbf9f
JW
465 return 1;
466
21318741
RK
467 /* If either type is the internal version of sizetype, return the
468 language version. */
469 if (TREE_CODE (t1) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t1)
470 && TYPE_DOMAIN (t1) != 0)
471 t1 = TYPE_DOMAIN (t1);
472
473 if (TREE_CODE (t2) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t2)
474 && TYPE_DOMAIN (t2) != 0)
475 t2 = TYPE_DOMAIN (t2);
476
2f6e4e97 477 /* Treat an enum type as the integer type of the same width and
b8c21346 478 signedness. */
400fbf9f
JW
479
480 if (TREE_CODE (t1) == ENUMERAL_TYPE)
b0c48229 481 t1 = c_common_type_for_size (TYPE_PRECISION (t1), TREE_UNSIGNED (t1));
400fbf9f 482 if (TREE_CODE (t2) == ENUMERAL_TYPE)
b0c48229 483 t2 = c_common_type_for_size (TYPE_PRECISION (t2), TREE_UNSIGNED (t2));
400fbf9f
JW
484
485 if (t1 == t2)
486 return 1;
487
488 /* Different classes of types can't be compatible. */
489
490 if (TREE_CODE (t1) != TREE_CODE (t2)) return 0;
491
492 /* Qualifiers must match. */
493
3932261a 494 if (TYPE_QUALS (t1) != TYPE_QUALS (t2))
400fbf9f
JW
495 return 0;
496
08632da2
RS
497 /* Allow for two different type nodes which have essentially the same
498 definition. Note that we already checked for equality of the type
38e01259 499 qualifiers (just above). */
400fbf9f
JW
500
501 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
502 return 1;
503
4b027d16 504 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
f6897b10 505 if (! (attrval = (*targetm.comp_type_attributes) (t1, t2)))
4b027d16
RK
506 return 0;
507
508 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
509 val = 0;
510
400fbf9f
JW
511 switch (TREE_CODE (t1))
512 {
513 case POINTER_TYPE:
264fa2db
ZL
514 /* We must give ObjC the first crack at comparing pointers, since
515 protocol qualifiers may be involved. */
516 if (c_dialect_objc () && (val = objc_comptypes (t1, t2, 0)) >= 0)
517 break;
4b027d16 518 val = (TREE_TYPE (t1) == TREE_TYPE (t2)
264fa2db 519 ? 1 : comptypes (TREE_TYPE (t1), TREE_TYPE (t2), flags));
4b027d16 520 break;
400fbf9f
JW
521
522 case FUNCTION_TYPE:
d1bd0ded 523 val = function_types_compatible_p (t1, t2, flags);
4b027d16 524 break;
400fbf9f
JW
525
526 case ARRAY_TYPE:
527 {
400fbf9f
JW
528 tree d1 = TYPE_DOMAIN (t1);
529 tree d2 = TYPE_DOMAIN (t2);
3f85558f
RH
530 bool d1_variable, d2_variable;
531 bool d1_zero, d2_zero;
4b027d16 532 val = 1;
400fbf9f
JW
533
534 /* Target types must match incl. qualifiers. */
535 if (TREE_TYPE (t1) != TREE_TYPE (t2)
d1bd0ded
GK
536 && 0 == (val = comptypes (TREE_TYPE (t1), TREE_TYPE (t2),
537 flags)))
400fbf9f
JW
538 return 0;
539
540 /* Sizes must match unless one is missing or variable. */
3f85558f 541 if (d1 == 0 || d2 == 0 || d1 == d2)
4b027d16 542 break;
400fbf9f 543
3f85558f
RH
544 d1_zero = ! TYPE_MAX_VALUE (d1);
545 d2_zero = ! TYPE_MAX_VALUE (d2);
546
547 d1_variable = (! d1_zero
548 && (TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
549 || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST));
550 d2_variable = (! d2_zero
551 && (TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
552 || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST));
553
554 if (d1_variable || d2_variable)
555 break;
556 if (d1_zero && d2_zero)
557 break;
558 if (d1_zero || d2_zero
559 || ! tree_int_cst_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2))
05bccae2
RK
560 || ! tree_int_cst_equal (TYPE_MAX_VALUE (d1), TYPE_MAX_VALUE (d2)))
561 val = 0;
562
4b027d16 563 break;
400fbf9f
JW
564 }
565
566 case RECORD_TYPE:
264fa2db
ZL
567 /* We are dealing with two distinct structs. In assorted Objective-C
568 corner cases, however, these can still be deemed equivalent. */
37fa72e9 569 if (c_dialect_objc () && objc_comptypes (t1, t2, 0) == 1)
4b027d16 570 val = 1;
d1bd0ded
GK
571
572 case ENUMERAL_TYPE:
573 case UNION_TYPE:
766beae1 574 if (val != 1 && !same_translation_unit_p (t1, t2))
d1bd0ded 575 val = tagged_types_tu_compatible_p (t1, t2, flags);
4b027d16 576 break;
e9a25f70 577
62e1dfcf
NC
578 case VECTOR_TYPE:
579 /* The target might allow certain vector types to be compatible. */
c8e4f0e9
AH
580 val = (*targetm.vector_opaque_p) (t1)
581 || (*targetm.vector_opaque_p) (t2);
62e1dfcf
NC
582 break;
583
e9a25f70
JL
584 default:
585 break;
400fbf9f 586 }
4b027d16 587 return attrval == 2 && val == 1 ? 2 : val;
400fbf9f
JW
588}
589
590/* Return 1 if TTL and TTR are pointers to types that are equivalent,
1074d9d4
NP
591 ignoring their qualifiers. REFLEXIVE is only used by ObjC - set it
592 to 1 or 0 depending if the check of the pointer types is meant to
593 be reflexive or not (typically, assignments are not reflexive,
594 while comparisons are reflexive).
595*/
400fbf9f
JW
596
597static int
2f6e4e97 598comp_target_types (tree ttl, tree ttr, int reflexive)
400fbf9f 599{
392202b0 600 int val;
8b40563c 601
b50d021d 602 /* Give objc_comptypes a crack at letting these types through. */
1074d9d4 603 if ((val = objc_comptypes (ttl, ttr, reflexive)) >= 0)
392202b0 604 return val;
8b40563c 605
392202b0 606 val = comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (ttl)),
d1bd0ded 607 TYPE_MAIN_VARIANT (TREE_TYPE (ttr)), COMPARE_STRICT);
8b40563c 608
400fbf9f
JW
609 if (val == 2 && pedantic)
610 pedwarn ("types are not quite compatible");
611 return val;
612}
613\f
614/* Subroutines of `comptypes'. */
615
766beae1
ZW
616/* Determine whether two types derive from the same translation unit.
617 If the CONTEXT chain ends in a null, that type's context is still
618 being parsed, so if two types have context chains ending in null,
619 they're in the same translation unit. */
620static int
621same_translation_unit_p (tree t1, tree t2)
622{
623 while (t1 && TREE_CODE (t1) != TRANSLATION_UNIT_DECL)
624 switch (TREE_CODE_CLASS (TREE_CODE (t1)))
625 {
626 case 'd': t1 = DECL_CONTEXT (t1); break;
627 case 't': t1 = TYPE_CONTEXT (t1); break;
628 case 'b': t1 = BLOCK_SUPERCONTEXT (t1); break;
629 default: abort ();
630 }
631
632 while (t2 && TREE_CODE (t2) != TRANSLATION_UNIT_DECL)
633 switch (TREE_CODE_CLASS (TREE_CODE (t2)))
634 {
635 case 'd': t2 = DECL_CONTEXT (t1); break;
636 case 't': t2 = TYPE_CONTEXT (t2); break;
637 case 'b': t2 = BLOCK_SUPERCONTEXT (t2); break;
638 default: abort ();
639 }
640
641 return t1 == t2;
642}
643
d1bd0ded
GK
644/* The C standard says that two structures in different translation
645 units are compatible with each other only if the types of their
646 fields are compatible (among other things). So, consider two copies
647 of this structure: */
648
649struct tagged_tu_seen {
650 const struct tagged_tu_seen * next;
651 tree t1;
652 tree t2;
653};
654
655/* Can they be compatible with each other? We choose to break the
656 recursion by allowing those types to be compatible. */
657
658static const struct tagged_tu_seen * tagged_tu_seen_base;
659
660/* Return 1 if two 'struct', 'union', or 'enum' types T1 and T2 are
661 compatible. If the two types are not the same (which has been
662 checked earlier), this can only happen when multiple translation
663 units are being compiled. See C99 6.2.7 paragraph 1 for the exact
664 rules. */
665
666static int
667tagged_types_tu_compatible_p (tree t1, tree t2, int flags)
668{
669 tree s1, s2;
670 bool needs_warning = false;
671
672 /* We have to verify that the tags of the types are the same. This
673 is harder than it looks because this may be a typedef, so we have
674 to go look at the original type. It may even be a typedef of a
4ed43216 675 typedef... */
d1bd0ded
GK
676 while (TYPE_NAME (t1) && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL)
677 t1 = DECL_ORIGINAL_TYPE (TYPE_NAME (t1));
678
679 while (TYPE_NAME (t2) && TREE_CODE (TYPE_NAME (t2)) == TYPE_DECL)
680 t2 = DECL_ORIGINAL_TYPE (TYPE_NAME (t2));
681
682 /* C90 didn't have the requirement that the two tags be the same. */
683 if (flag_isoc99 && TYPE_NAME (t1) != TYPE_NAME (t2))
684 return 0;
685
686 /* C90 didn't say what happened if one or both of the types were
687 incomplete; we choose to follow C99 rules here, which is that they
688 are compatible. */
689 if (TYPE_SIZE (t1) == NULL
690 || TYPE_SIZE (t2) == NULL)
691 return 1;
692
693 {
694 const struct tagged_tu_seen * tts_i;
695 for (tts_i = tagged_tu_seen_base; tts_i != NULL; tts_i = tts_i->next)
696 if (tts_i->t1 == t1 && tts_i->t2 == t2)
697 return 1;
698 }
699
700 switch (TREE_CODE (t1))
701 {
702 case ENUMERAL_TYPE:
703 {
704 if (list_length (TYPE_VALUES (t1)) != list_length (TYPE_VALUES (t2)))
705 return 0;
706
707 for (s1 = TYPE_VALUES (t1); s1; s1 = TREE_CHAIN (s1))
708 {
709 s2 = purpose_member (TREE_PURPOSE (s1), TYPE_VALUES (t2));
710 if (s2 == NULL
711 || simple_cst_equal (TREE_VALUE (s1), TREE_VALUE (s2)) != 1)
712 return 0;
713 }
714 return 1;
715 }
716
717 case UNION_TYPE:
718 {
719 if (list_length (TYPE_FIELDS (t1)) != list_length (TYPE_FIELDS (t2)))
720 return 0;
721
722 for (s1 = TYPE_FIELDS (t1); s1; s1 = TREE_CHAIN (s1))
723 {
724 bool ok = false;
725 struct tagged_tu_seen tts;
726
727 tts.next = tagged_tu_seen_base;
728 tts.t1 = t1;
729 tts.t2 = t2;
730 tagged_tu_seen_base = &tts;
731
732 if (DECL_NAME (s1) != NULL)
733 for (s2 = TYPE_VALUES (t2); s2; s2 = TREE_CHAIN (s2))
734 if (DECL_NAME (s1) == DECL_NAME (s2))
735 {
736 int result;
737 result = comptypes (TREE_TYPE (s1), TREE_TYPE (s2), flags);
738 if (result == 0)
739 break;
740 if (result == 2)
741 needs_warning = true;
742
743 if (TREE_CODE (s1) == FIELD_DECL
744 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
745 DECL_FIELD_BIT_OFFSET (s2)) != 1)
746 break;
747
748 ok = true;
749 break;
750 }
751 tagged_tu_seen_base = tts.next;
752 if (! ok)
753 return 0;
754 }
755 return needs_warning ? 2 : 1;
756 }
757
758 case RECORD_TYPE:
759 {
760 struct tagged_tu_seen tts;
761
762 tts.next = tagged_tu_seen_base;
763 tts.t1 = t1;
764 tts.t2 = t2;
765 tagged_tu_seen_base = &tts;
766
767 for (s1 = TYPE_FIELDS (t1), s2 = TYPE_FIELDS (t2);
768 s1 && s2;
769 s1 = TREE_CHAIN (s1), s2 = TREE_CHAIN (s2))
770 {
771 int result;
772 if (TREE_CODE (s1) != TREE_CODE (s2)
773 || DECL_NAME (s1) != DECL_NAME (s2))
774 break;
775 result = comptypes (TREE_TYPE (s1), TREE_TYPE (s2), flags);
776 if (result == 0)
777 break;
778 if (result == 2)
779 needs_warning = true;
780
781 if (TREE_CODE (s1) == FIELD_DECL
782 && simple_cst_equal (DECL_FIELD_BIT_OFFSET (s1),
783 DECL_FIELD_BIT_OFFSET (s2)) != 1)
784 break;
785 }
786 tagged_tu_seen_base = tts.next;
787 if (s1 && s2)
788 return 0;
789 return needs_warning ? 2 : 1;
790 }
791
792 default:
793 abort ();
794 }
795}
796
400fbf9f
JW
797/* Return 1 if two function types F1 and F2 are compatible.
798 If either type specifies no argument types,
799 the other must specify a fixed number of self-promoting arg types.
2f6e4e97 800 Otherwise, if one type specifies only the number of arguments,
400fbf9f
JW
801 the other must specify that number of self-promoting arg types.
802 Otherwise, the argument types must match. */
803
804static int
d1bd0ded 805function_types_compatible_p (tree f1, tree f2, int flags)
400fbf9f
JW
806{
807 tree args1, args2;
808 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
809 int val = 1;
810 int val1;
a6fdc086
GK
811 tree ret1, ret2;
812
813 ret1 = TREE_TYPE (f1);
814 ret2 = TREE_TYPE (f2);
815
816 /* 'volatile' qualifiers on a function's return type mean the function
817 is noreturn. */
818 if (pedantic && TYPE_VOLATILE (ret1) != TYPE_VOLATILE (ret2))
819 pedwarn ("function return types not compatible due to `volatile'");
820 if (TYPE_VOLATILE (ret1))
821 ret1 = build_qualified_type (TYPE_MAIN_VARIANT (ret1),
822 TYPE_QUALS (ret1) & ~TYPE_QUAL_VOLATILE);
823 if (TYPE_VOLATILE (ret2))
824 ret2 = build_qualified_type (TYPE_MAIN_VARIANT (ret2),
825 TYPE_QUALS (ret2) & ~TYPE_QUAL_VOLATILE);
d1bd0ded 826 val = comptypes (ret1, ret2, flags);
a6fdc086 827 if (val == 0)
400fbf9f
JW
828 return 0;
829
830 args1 = TYPE_ARG_TYPES (f1);
831 args2 = TYPE_ARG_TYPES (f2);
832
833 /* An unspecified parmlist matches any specified parmlist
834 whose argument types don't need default promotions. */
835
836 if (args1 == 0)
837 {
838 if (!self_promoting_args_p (args2))
839 return 0;
840 /* If one of these types comes from a non-prototype fn definition,
841 compare that with the other type's arglist.
842 If they don't match, ask for a warning (but no error). */
843 if (TYPE_ACTUAL_ARG_TYPES (f1)
d1bd0ded
GK
844 && 1 != type_lists_compatible_p (args2, TYPE_ACTUAL_ARG_TYPES (f1),
845 flags))
400fbf9f
JW
846 val = 2;
847 return val;
848 }
849 if (args2 == 0)
850 {
851 if (!self_promoting_args_p (args1))
852 return 0;
853 if (TYPE_ACTUAL_ARG_TYPES (f2)
d1bd0ded
GK
854 && 1 != type_lists_compatible_p (args1, TYPE_ACTUAL_ARG_TYPES (f2),
855 flags))
400fbf9f
JW
856 val = 2;
857 return val;
858 }
859
860 /* Both types have argument lists: compare them and propagate results. */
d1bd0ded 861 val1 = type_lists_compatible_p (args1, args2, flags);
400fbf9f
JW
862 return val1 != 1 ? val1 : val;
863}
864
865/* Check two lists of types for compatibility,
866 returning 0 for incompatible, 1 for compatible,
867 or 2 for compatible with warning. */
868
869static int
d1bd0ded 870type_lists_compatible_p (tree args1, tree args2, int flags)
400fbf9f
JW
871{
872 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
873 int val = 1;
9d5f3e49 874 int newval = 0;
400fbf9f
JW
875
876 while (1)
877 {
878 if (args1 == 0 && args2 == 0)
879 return val;
880 /* If one list is shorter than the other,
881 they fail to match. */
882 if (args1 == 0 || args2 == 0)
883 return 0;
884 /* A null pointer instead of a type
885 means there is supposed to be an argument
886 but nothing is specified about what type it has.
887 So match anything that self-promotes. */
888 if (TREE_VALUE (args1) == 0)
889 {
ab393bf1 890 if (c_type_promotes_to (TREE_VALUE (args2)) != TREE_VALUE (args2))
400fbf9f
JW
891 return 0;
892 }
893 else if (TREE_VALUE (args2) == 0)
894 {
ab393bf1 895 if (c_type_promotes_to (TREE_VALUE (args1)) != TREE_VALUE (args1))
400fbf9f
JW
896 return 0;
897 }
8f5b6d29
SB
898 /* If one of the lists has an error marker, ignore this arg. */
899 else if (TREE_CODE (TREE_VALUE (args1)) == ERROR_MARK
900 || TREE_CODE (TREE_VALUE (args2)) == ERROR_MARK)
901 ;
2f6e4e97 902 else if (! (newval = comptypes (TYPE_MAIN_VARIANT (TREE_VALUE (args1)),
d1bd0ded
GK
903 TYPE_MAIN_VARIANT (TREE_VALUE (args2)),
904 flags)))
400fbf9f
JW
905 {
906 /* Allow wait (union {union wait *u; int *i} *)
907 and wait (union wait *) to be compatible. */
908 if (TREE_CODE (TREE_VALUE (args1)) == UNION_TYPE
ea3373cd
RK
909 && (TYPE_NAME (TREE_VALUE (args1)) == 0
910 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args1)))
400fbf9f
JW
911 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args1))) == INTEGER_CST
912 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args1)),
913 TYPE_SIZE (TREE_VALUE (args2))))
914 {
915 tree memb;
916 for (memb = TYPE_FIELDS (TREE_VALUE (args1));
917 memb; memb = TREE_CHAIN (memb))
d1bd0ded
GK
918 if (comptypes (TREE_TYPE (memb), TREE_VALUE (args2),
919 flags))
400fbf9f
JW
920 break;
921 if (memb == 0)
922 return 0;
923 }
924 else if (TREE_CODE (TREE_VALUE (args2)) == UNION_TYPE
ea3373cd
RK
925 && (TYPE_NAME (TREE_VALUE (args2)) == 0
926 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args2)))
400fbf9f
JW
927 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args2))) == INTEGER_CST
928 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args2)),
929 TYPE_SIZE (TREE_VALUE (args1))))
930 {
931 tree memb;
932 for (memb = TYPE_FIELDS (TREE_VALUE (args2));
933 memb; memb = TREE_CHAIN (memb))
d1bd0ded
GK
934 if (comptypes (TREE_TYPE (memb), TREE_VALUE (args1),
935 flags))
400fbf9f
JW
936 break;
937 if (memb == 0)
938 return 0;
939 }
940 else
941 return 0;
942 }
943
944 /* comptypes said ok, but record if it said to warn. */
945 if (newval > val)
946 val = newval;
947
948 args1 = TREE_CHAIN (args1);
949 args2 = TREE_CHAIN (args2);
950 }
951}
400fbf9f 952\f
400fbf9f
JW
953/* Compute the size to increment a pointer by. */
954
955tree
2f6e4e97 956c_size_in_bytes (tree type)
400fbf9f
JW
957{
958 enum tree_code code = TREE_CODE (type);
959
fed3cef0
RK
960 if (code == FUNCTION_TYPE || code == VOID_TYPE || code == ERROR_MARK)
961 return size_one_node;
962
d0f062fb 963 if (!COMPLETE_OR_VOID_TYPE_P (type))
400fbf9f
JW
964 {
965 error ("arithmetic on pointer to an incomplete type");
fed3cef0 966 return size_one_node;
400fbf9f
JW
967 }
968
969 /* Convert in case a char is more than one unit. */
fed3cef0
RK
970 return size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
971 size_int (TYPE_PRECISION (char_type_node)
972 / BITS_PER_UNIT));
400fbf9f 973}
400fbf9f 974\f
400fbf9f
JW
975/* Return either DECL or its known constant value (if it has one). */
976
56cb9733 977tree
2f6e4e97 978decl_constant_value (tree decl)
400fbf9f 979{
a7c1916a 980 if (/* Don't change a variable array bound or initial value to a constant
400fbf9f 981 in a place where a variable is invalid. */
a7c1916a 982 current_function_decl != 0
400fbf9f 983 && ! TREE_THIS_VOLATILE (decl)
83bab8db 984 && TREE_READONLY (decl)
400fbf9f
JW
985 && DECL_INITIAL (decl) != 0
986 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
987 /* This is invalid if initial value is not constant.
988 If it has either a function call, a memory reference,
989 or a variable, then re-evaluating it could give different results. */
990 && TREE_CONSTANT (DECL_INITIAL (decl))
991 /* Check for cases where this is sub-optimal, even though valid. */
2f74f7e9 992 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
400fbf9f
JW
993 return DECL_INITIAL (decl);
994 return decl;
995}
996
2f74f7e9
JM
997/* Return either DECL or its known constant value (if it has one), but
998 return DECL if pedantic or DECL has mode BLKmode. This is for
999 bug-compatibility with the old behavior of decl_constant_value
1000 (before GCC 3.0); every use of this function is a bug and it should
1001 be removed before GCC 3.1. It is not appropriate to use pedantic
1002 in a way that affects optimization, and BLKmode is probably not the
1003 right test for avoiding misoptimizations either. */
1004
1005static tree
2f6e4e97 1006decl_constant_value_for_broken_optimization (tree decl)
2f74f7e9
JM
1007{
1008 if (pedantic || DECL_MODE (decl) == BLKmode)
1009 return decl;
1010 else
1011 return decl_constant_value (decl);
1012}
1013
207bf485
JM
1014
1015/* Perform the default conversion of arrays and functions to pointers.
1016 Return the result of converting EXP. For any other expression, just
1017 return EXP. */
1018
1019static tree
2f6e4e97 1020default_function_array_conversion (tree exp)
207bf485
JM
1021{
1022 tree orig_exp;
1023 tree type = TREE_TYPE (exp);
1024 enum tree_code code = TREE_CODE (type);
1025 int not_lvalue = 0;
1026
1027 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
2f6e4e97 1028 an lvalue.
207bf485
JM
1029
1030 Do not use STRIP_NOPS here! It will remove conversions from pointer
1031 to integer and cause infinite recursion. */
1032 orig_exp = exp;
1033 while (TREE_CODE (exp) == NON_LVALUE_EXPR
1034 || (TREE_CODE (exp) == NOP_EXPR
1035 && TREE_TYPE (TREE_OPERAND (exp, 0)) == TREE_TYPE (exp)))
1036 {
1037 if (TREE_CODE (exp) == NON_LVALUE_EXPR)
1038 not_lvalue = 1;
1039 exp = TREE_OPERAND (exp, 0);
1040 }
1041
1042 /* Preserve the original expression code. */
1043 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (exp))))
1044 C_SET_EXP_ORIGINAL_CODE (exp, C_EXP_ORIGINAL_CODE (orig_exp));
1045
1046 if (code == FUNCTION_TYPE)
1047 {
1048 return build_unary_op (ADDR_EXPR, exp, 0);
1049 }
1050 if (code == ARRAY_TYPE)
1051 {
1052 tree adr;
1053 tree restype = TREE_TYPE (type);
1054 tree ptrtype;
1055 int constp = 0;
1056 int volatilep = 0;
1057 int lvalue_array_p;
1058
1059 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'r' || DECL_P (exp))
1060 {
1061 constp = TREE_READONLY (exp);
1062 volatilep = TREE_THIS_VOLATILE (exp);
1063 }
1064
1065 if (TYPE_QUALS (type) || constp || volatilep)
2f6e4e97 1066 restype
207bf485 1067 = c_build_qualified_type (restype,
2f6e4e97 1068 TYPE_QUALS (type)
207bf485
JM
1069 | (constp * TYPE_QUAL_CONST)
1070 | (volatilep * TYPE_QUAL_VOLATILE));
1071
1072 if (TREE_CODE (exp) == INDIRECT_REF)
1073 return convert (TYPE_POINTER_TO (restype),
1074 TREE_OPERAND (exp, 0));
1075
1076 if (TREE_CODE (exp) == COMPOUND_EXPR)
1077 {
1078 tree op1 = default_conversion (TREE_OPERAND (exp, 1));
1079 return build (COMPOUND_EXPR, TREE_TYPE (op1),
1080 TREE_OPERAND (exp, 0), op1);
1081 }
1082
1083 lvalue_array_p = !not_lvalue && lvalue_p (exp);
db3acfa5 1084 if (!flag_isoc99 && !lvalue_array_p)
207bf485
JM
1085 {
1086 /* Before C99, non-lvalue arrays do not decay to pointers.
1087 Normally, using such an array would be invalid; but it can
1088 be used correctly inside sizeof or as a statement expression.
1089 Thus, do not give an error here; an error will result later. */
1090 return exp;
1091 }
1092
1093 ptrtype = build_pointer_type (restype);
1094
1095 if (TREE_CODE (exp) == VAR_DECL)
1096 {
1097 /* ??? This is not really quite correct
1098 in that the type of the operand of ADDR_EXPR
1099 is not the target type of the type of the ADDR_EXPR itself.
1100 Question is, can this lossage be avoided? */
1101 adr = build1 (ADDR_EXPR, ptrtype, exp);
dffd7eb6 1102 if (!c_mark_addressable (exp))
207bf485
JM
1103 return error_mark_node;
1104 TREE_CONSTANT (adr) = staticp (exp);
1105 TREE_SIDE_EFFECTS (adr) = 0; /* Default would be, same as EXP. */
1106 return adr;
1107 }
1108 /* This way is better for a COMPONENT_REF since it can
1109 simplify the offset for a component. */
1110 adr = build_unary_op (ADDR_EXPR, exp, 1);
1111 return convert (ptrtype, adr);
1112 }
1113 return exp;
1114}
1115
400fbf9f
JW
1116/* Perform default promotions for C data used in expressions.
1117 Arrays and functions are converted to pointers;
1118 enumeral types or short or char, to int.
1119 In addition, manifest constants symbols are replaced by their values. */
1120
1121tree
2f6e4e97 1122default_conversion (tree exp)
400fbf9f 1123{
157689c6 1124 tree orig_exp;
b3694847
SS
1125 tree type = TREE_TYPE (exp);
1126 enum tree_code code = TREE_CODE (type);
400fbf9f 1127
207bf485
JM
1128 if (code == FUNCTION_TYPE || code == ARRAY_TYPE)
1129 return default_function_array_conversion (exp);
1130
400fbf9f
JW
1131 /* Constants can be used directly unless they're not loadable. */
1132 if (TREE_CODE (exp) == CONST_DECL)
1133 exp = DECL_INITIAL (exp);
d4424a75
RK
1134
1135 /* Replace a nonvolatile const static variable with its value unless
1136 it is an array, in which case we must be sure that taking the
1137 address of the array produces consistent results. */
1138 else if (optimize && TREE_CODE (exp) == VAR_DECL && code != ARRAY_TYPE)
400fbf9f 1139 {
2f74f7e9 1140 exp = decl_constant_value_for_broken_optimization (exp);
400fbf9f
JW
1141 type = TREE_TYPE (exp);
1142 }
1143
a7d53fce 1144 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
2f6e4e97 1145 an lvalue.
05bccae2
RK
1146
1147 Do not use STRIP_NOPS here! It will remove conversions from pointer
a7d53fce 1148 to integer and cause infinite recursion. */
157689c6 1149 orig_exp = exp;
a7d53fce
RS
1150 while (TREE_CODE (exp) == NON_LVALUE_EXPR
1151 || (TREE_CODE (exp) == NOP_EXPR
1152 && TREE_TYPE (TREE_OPERAND (exp, 0)) == TREE_TYPE (exp)))
1153 exp = TREE_OPERAND (exp, 0);
400fbf9f 1154
157689c6
NB
1155 /* Preserve the original expression code. */
1156 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (exp))))
1157 C_SET_EXP_ORIGINAL_CODE (exp, C_EXP_ORIGINAL_CODE (orig_exp));
1158
400fbf9f
JW
1159 /* Normally convert enums to int,
1160 but convert wide enums to something wider. */
1161 if (code == ENUMERAL_TYPE)
1162 {
b0c48229
NB
1163 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
1164 TYPE_PRECISION (integer_type_node)),
1165 ((TYPE_PRECISION (type)
1166 >= TYPE_PRECISION (integer_type_node))
1167 && TREE_UNSIGNED (type)));
05bccae2 1168
400fbf9f
JW
1169 return convert (type, exp);
1170 }
1171
9753f113 1172 if (TREE_CODE (exp) == COMPONENT_REF
05bccae2 1173 && DECL_C_BIT_FIELD (TREE_OPERAND (exp, 1))
cff9c407 1174 /* If it's thinner than an int, promote it like a
d72040f5 1175 c_promoting_integer_type_p, otherwise leave it alone. */
05bccae2
RK
1176 && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp, 1)),
1177 TYPE_PRECISION (integer_type_node)))
f458d1d5 1178 return convert (integer_type_node, exp);
9753f113 1179
d72040f5 1180 if (c_promoting_integer_type_p (type))
400fbf9f 1181 {
f458d1d5 1182 /* Preserve unsignedness if not really getting any wider. */
e83d45c4 1183 if (TREE_UNSIGNED (type)
f458d1d5 1184 && TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
400fbf9f 1185 return convert (unsigned_type_node, exp);
05bccae2 1186
400fbf9f
JW
1187 return convert (integer_type_node, exp);
1188 }
05bccae2 1189
400fbf9f
JW
1190 if (code == VOID_TYPE)
1191 {
1192 error ("void value not ignored as it ought to be");
1193 return error_mark_node;
1194 }
400fbf9f
JW
1195 return exp;
1196}
1197\f
e9b2c823
NB
1198/* Look up COMPONENT in a structure or union DECL.
1199
1200 If the component name is not found, returns NULL_TREE. Otherwise,
1201 the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
1202 stepping down the chain to the component, which is in the last
1203 TREE_VALUE of the list. Normally the list is of length one, but if
1204 the component is embedded within (nested) anonymous structures or
1205 unions, the list steps down the chain to the component. */
2f6e4e97 1206
2f2d13da 1207static tree
2f6e4e97 1208lookup_field (tree decl, tree component)
2f2d13da 1209{
e9b2c823 1210 tree type = TREE_TYPE (decl);
2f2d13da
DE
1211 tree field;
1212
1213 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1214 to the field elements. Use a binary search on this array to quickly
1215 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
1216 will always be set for structures which have many elements. */
1217
1218 if (TYPE_LANG_SPECIFIC (type))
1219 {
1220 int bot, top, half;
d07605f5 1221 tree *field_array = &TYPE_LANG_SPECIFIC (type)->s->elts[0];
2f2d13da
DE
1222
1223 field = TYPE_FIELDS (type);
1224 bot = 0;
d07605f5 1225 top = TYPE_LANG_SPECIFIC (type)->s->len;
2f2d13da
DE
1226 while (top - bot > 1)
1227 {
2f2d13da
DE
1228 half = (top - bot + 1) >> 1;
1229 field = field_array[bot+half];
1230
1231 if (DECL_NAME (field) == NULL_TREE)
1232 {
1233 /* Step through all anon unions in linear fashion. */
1234 while (DECL_NAME (field_array[bot]) == NULL_TREE)
1235 {
2f2d13da 1236 field = field_array[bot++];
a68b98cf
RK
1237 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1238 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
19d76e60 1239 {
e9b2c823
NB
1240 tree anon = lookup_field (field, component);
1241
1242 if (anon)
1243 return tree_cons (NULL_TREE, field, anon);
2f6e4e97 1244 }
2f2d13da
DE
1245 }
1246
1247 /* Entire record is only anon unions. */
1248 if (bot > top)
1249 return NULL_TREE;
1250
1251 /* Restart the binary search, with new lower bound. */
1252 continue;
1253 }
1254
e8b87aac 1255 if (DECL_NAME (field) == component)
2f2d13da 1256 break;
e8b87aac 1257 if (DECL_NAME (field) < component)
2f2d13da
DE
1258 bot += half;
1259 else
1260 top = bot + half;
1261 }
1262
1263 if (DECL_NAME (field_array[bot]) == component)
1264 field = field_array[bot];
1265 else if (DECL_NAME (field) != component)
e9b2c823 1266 return NULL_TREE;
2f2d13da
DE
1267 }
1268 else
1269 {
1270 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1271 {
e9b2c823
NB
1272 if (DECL_NAME (field) == NULL_TREE
1273 && (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1274 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE))
2f2d13da 1275 {
e9b2c823 1276 tree anon = lookup_field (field, component);
a68b98cf 1277
e9b2c823
NB
1278 if (anon)
1279 return tree_cons (NULL_TREE, field, anon);
2f2d13da
DE
1280 }
1281
1282 if (DECL_NAME (field) == component)
1283 break;
1284 }
e9b2c823
NB
1285
1286 if (field == NULL_TREE)
1287 return NULL_TREE;
2f2d13da
DE
1288 }
1289
e9b2c823 1290 return tree_cons (NULL_TREE, field, NULL_TREE);
2f2d13da
DE
1291}
1292
400fbf9f
JW
1293/* Make an expression to refer to the COMPONENT field of
1294 structure or union value DATUM. COMPONENT is an IDENTIFIER_NODE. */
1295
1296tree
2f6e4e97 1297build_component_ref (tree datum, tree component)
400fbf9f 1298{
b3694847
SS
1299 tree type = TREE_TYPE (datum);
1300 enum tree_code code = TREE_CODE (type);
1301 tree field = NULL;
1302 tree ref;
400fbf9f 1303
207bf485
JM
1304 /* If DATUM is a COMPOUND_EXPR, move our reference inside it.
1305 If pedantic ensure that the arguments are not lvalues; otherwise,
1306 if the component is an array, it would wrongly decay to a pointer in
1307 C89 mode.
1308 We cannot do this with a COND_EXPR, because in a conditional expression
1309 the default promotions are applied to both sides, and this would yield
1310 the wrong type of the result; for example, if the components have
1311 type "char". */
400fbf9f
JW
1312 switch (TREE_CODE (datum))
1313 {
1314 case COMPOUND_EXPR:
1315 {
1316 tree value = build_component_ref (TREE_OPERAND (datum, 1), component);
400fbf9f 1317 return build (COMPOUND_EXPR, TREE_TYPE (value),
207bf485 1318 TREE_OPERAND (datum, 0), pedantic_non_lvalue (value));
400fbf9f 1319 }
e9a25f70
JL
1320 default:
1321 break;
400fbf9f
JW
1322 }
1323
1324 /* See if there is a field or component with name COMPONENT. */
1325
1326 if (code == RECORD_TYPE || code == UNION_TYPE)
1327 {
d0f062fb 1328 if (!COMPLETE_TYPE_P (type))
400fbf9f 1329 {
7a228918 1330 c_incomplete_type_error (NULL_TREE, type);
400fbf9f
JW
1331 return error_mark_node;
1332 }
1333
e9b2c823 1334 field = lookup_field (datum, component);
400fbf9f
JW
1335
1336 if (!field)
1337 {
913d0833
KG
1338 error ("%s has no member named `%s'",
1339 code == RECORD_TYPE ? "structure" : "union",
400fbf9f
JW
1340 IDENTIFIER_POINTER (component));
1341 return error_mark_node;
1342 }
400fbf9f 1343
e9b2c823
NB
1344 /* Chain the COMPONENT_REFs if necessary down to the FIELD.
1345 This might be better solved in future the way the C++ front
1346 end does it - by giving the anonymous entities each a
1347 separate name and type, and then have build_component_ref
1348 recursively call itself. We can't do that here. */
46ea50cb 1349 do
19d76e60 1350 {
e9b2c823
NB
1351 tree subdatum = TREE_VALUE (field);
1352
1353 if (TREE_TYPE (subdatum) == error_mark_node)
1354 return error_mark_node;
1355
1356 ref = build (COMPONENT_REF, TREE_TYPE (subdatum), datum, subdatum);
1357 if (TREE_READONLY (datum) || TREE_READONLY (subdatum))
19d76e60 1358 TREE_READONLY (ref) = 1;
e9b2c823 1359 if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (subdatum))
19d76e60 1360 TREE_THIS_VOLATILE (ref) = 1;
e23bd218
IR
1361
1362 if (TREE_DEPRECATED (subdatum))
1363 warn_deprecated_use (subdatum);
1364
19d76e60 1365 datum = ref;
46ea50cb
RS
1366
1367 field = TREE_CHAIN (field);
19d76e60 1368 }
46ea50cb 1369 while (field);
19d76e60 1370
400fbf9f
JW
1371 return ref;
1372 }
1373 else if (code != ERROR_MARK)
1374 error ("request for member `%s' in something not a structure or union",
1375 IDENTIFIER_POINTER (component));
1376
1377 return error_mark_node;
1378}
1379\f
1380/* Given an expression PTR for a pointer, return an expression
1381 for the value pointed to.
1382 ERRORSTRING is the name of the operator to appear in error messages. */
1383
1384tree
2f6e4e97 1385build_indirect_ref (tree ptr, const char *errorstring)
400fbf9f 1386{
b3694847
SS
1387 tree pointer = default_conversion (ptr);
1388 tree type = TREE_TYPE (pointer);
400fbf9f
JW
1389
1390 if (TREE_CODE (type) == POINTER_TYPE)
870cc33b
RS
1391 {
1392 if (TREE_CODE (pointer) == ADDR_EXPR
870cc33b
RS
1393 && (TREE_TYPE (TREE_OPERAND (pointer, 0))
1394 == TREE_TYPE (type)))
1395 return TREE_OPERAND (pointer, 0);
1396 else
1397 {
1398 tree t = TREE_TYPE (type);
b3694847 1399 tree ref = build1 (INDIRECT_REF, TYPE_MAIN_VARIANT (t), pointer);
400fbf9f 1400
baae9b65 1401 if (!COMPLETE_OR_VOID_TYPE_P (t) && TREE_CODE (t) != ARRAY_TYPE)
870cc33b
RS
1402 {
1403 error ("dereferencing pointer to incomplete type");
1404 return error_mark_node;
1405 }
baae9b65 1406 if (VOID_TYPE_P (t) && skip_evaluation == 0)
870cc33b
RS
1407 warning ("dereferencing `void *' pointer");
1408
1409 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
1410 so that we get the proper error message if the result is used
1411 to assign to. Also, &* is supposed to be a no-op.
1412 And ANSI C seems to specify that the type of the result
1413 should be the const type. */
1414 /* A de-reference of a pointer to const is not a const. It is valid
1415 to change it via some other pointer. */
1416 TREE_READONLY (ref) = TYPE_READONLY (t);
1417 TREE_SIDE_EFFECTS (ref)
271bd540 1418 = TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer);
493692cd 1419 TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
870cc33b
RS
1420 return ref;
1421 }
1422 }
400fbf9f
JW
1423 else if (TREE_CODE (pointer) != ERROR_MARK)
1424 error ("invalid type argument of `%s'", errorstring);
1425 return error_mark_node;
1426}
1427
1428/* This handles expressions of the form "a[i]", which denotes
1429 an array reference.
1430
1431 This is logically equivalent in C to *(a+i), but we may do it differently.
1432 If A is a variable or a member, we generate a primitive ARRAY_REF.
1433 This avoids forcing the array out of registers, and can work on
1434 arrays that are not lvalues (for example, members of structures returned
1435 by functions). */
1436
1437tree
2f6e4e97 1438build_array_ref (tree array, tree index)
400fbf9f
JW
1439{
1440 if (index == 0)
1441 {
1442 error ("subscript missing in array reference");
1443 return error_mark_node;
1444 }
1445
1446 if (TREE_TYPE (array) == error_mark_node
1447 || TREE_TYPE (index) == error_mark_node)
1448 return error_mark_node;
1449
1450 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE
1451 && TREE_CODE (array) != INDIRECT_REF)
1452 {
1453 tree rval, type;
1454
400fbf9f
JW
1455 /* Subscripting with type char is likely to lose
1456 on a machine where chars are signed.
1457 So warn on any machine, but optionally.
1458 Don't warn for unsigned char since that type is safe.
1459 Don't warn for signed char because anyone who uses that
1460 must have done so deliberately. */
1461 if (warn_char_subscripts
1462 && TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node)
1463 warning ("array subscript has type `char'");
1464
0e51ef9b
RS
1465 /* Apply default promotions *after* noticing character types. */
1466 index = default_conversion (index);
1467
fdeefd49
RS
1468 /* Require integer *after* promotion, for sake of enums. */
1469 if (TREE_CODE (TREE_TYPE (index)) != INTEGER_TYPE)
1470 {
1471 error ("array subscript is not an integer");
1472 return error_mark_node;
1473 }
1474
400fbf9f
JW
1475 /* An array that is indexed by a non-constant
1476 cannot be stored in a register; we must be able to do
1477 address arithmetic on its address.
1478 Likewise an array of elements of variable size. */
1479 if (TREE_CODE (index) != INTEGER_CST
d0f062fb 1480 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
400fbf9f
JW
1481 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array)))) != INTEGER_CST))
1482 {
dffd7eb6 1483 if (!c_mark_addressable (array))
400fbf9f
JW
1484 return error_mark_node;
1485 }
e6d52559
JW
1486 /* An array that is indexed by a constant value which is not within
1487 the array bounds cannot be stored in a register either; because we
1488 would get a crash in store_bit_field/extract_bit_field when trying
1489 to access a non-existent part of the register. */
1490 if (TREE_CODE (index) == INTEGER_CST
1491 && TYPE_VALUES (TREE_TYPE (array))
1492 && ! int_fits_type_p (index, TYPE_VALUES (TREE_TYPE (array))))
1493 {
dffd7eb6 1494 if (!c_mark_addressable (array))
e6d52559
JW
1495 return error_mark_node;
1496 }
400fbf9f 1497
400fbf9f
JW
1498 if (pedantic)
1499 {
1500 tree foo = array;
1501 while (TREE_CODE (foo) == COMPONENT_REF)
1502 foo = TREE_OPERAND (foo, 0);
1394aabd 1503 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo))
05273f08
GK
1504 pedwarn ("ISO C forbids subscripting `register' array");
1505 else if (! flag_isoc99 && ! lvalue_p (foo))
56508306 1506 pedwarn ("ISO C90 forbids subscripting non-lvalue array");
400fbf9f
JW
1507 }
1508
1509 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (array)));
1510 rval = build (ARRAY_REF, type, array, index);
1511 /* Array ref is const/volatile if the array elements are
1512 or if the array is. */
1513 TREE_READONLY (rval)
1514 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array)))
1515 | TREE_READONLY (array));
1516 TREE_SIDE_EFFECTS (rval)
1517 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
1518 | TREE_SIDE_EFFECTS (array));
1519 TREE_THIS_VOLATILE (rval)
1520 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
1521 /* This was added by rms on 16 Nov 91.
2f6e4e97 1522 It fixes vol struct foo *a; a->elts[1]
400fbf9f
JW
1523 in an inline function.
1524 Hope it doesn't break something else. */
1525 | TREE_THIS_VOLATILE (array));
1526 return require_complete_type (fold (rval));
1527 }
1528
1529 {
1530 tree ar = default_conversion (array);
1531 tree ind = default_conversion (index);
1532
aed11452
RK
1533 /* Do the same warning check as above, but only on the part that's
1534 syntactically the index and only if it is also semantically
1535 the index. */
1536 if (warn_char_subscripts
1537 && TREE_CODE (TREE_TYPE (index)) == INTEGER_TYPE
1538 && TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node)
1539 warning ("subscript has type `char'");
1540
400fbf9f
JW
1541 /* Put the integer in IND to simplify error checking. */
1542 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
1543 {
1544 tree temp = ar;
1545 ar = ind;
1546 ind = temp;
1547 }
1548
1549 if (ar == error_mark_node)
1550 return ar;
1551
004252d7
RK
1552 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE
1553 || TREE_CODE (TREE_TYPE (TREE_TYPE (ar))) == FUNCTION_TYPE)
400fbf9f
JW
1554 {
1555 error ("subscripted value is neither array nor pointer");
1556 return error_mark_node;
1557 }
1558 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
1559 {
1560 error ("array subscript is not an integer");
1561 return error_mark_node;
1562 }
1563
1564 return build_indirect_ref (build_binary_op (PLUS_EXPR, ar, ind, 0),
1565 "array indexing");
1566 }
1567}
1568\f
7e585d16
ZW
1569/* Build an external reference to identifier ID. FUN indicates
1570 whether this will be used for a function call. */
1571tree
2f6e4e97 1572build_external_ref (tree id, int fun)
7e585d16
ZW
1573{
1574 tree ref;
1575 tree decl = lookup_name (id);
1576 tree objc_ivar = lookup_objc_ivar (id);
1577
339a28b9 1578 if (decl && decl != error_mark_node)
7e585d16
ZW
1579 {
1580 /* Properly declared variable or function reference. */
1581 if (!objc_ivar)
1582 ref = decl;
4b1e44be 1583 else if (decl != objc_ivar && !DECL_FILE_SCOPE_P (decl))
7e585d16
ZW
1584 {
1585 warning ("local declaration of `%s' hides instance variable",
1586 IDENTIFIER_POINTER (id));
1587 ref = decl;
1588 }
1589 else
1590 ref = objc_ivar;
1591 }
339a28b9
ZW
1592 else if (objc_ivar)
1593 ref = objc_ivar;
1594 else if (fun)
1595 /* Implicit function declaration. */
1596 ref = implicitly_declare (id);
1597 else if (decl == error_mark_node)
1598 /* Don't complain about something that's already been
1599 complained about. */
1600 return error_mark_node;
1601 else
1602 {
1603 undeclared_variable (id);
1604 return error_mark_node;
1605 }
7e585d16
ZW
1606
1607 if (TREE_TYPE (ref) == error_mark_node)
1608 return error_mark_node;
1609
339a28b9
ZW
1610 if (TREE_DEPRECATED (ref))
1611 warn_deprecated_use (ref);
1612
25587e40
AO
1613 if (!skip_evaluation)
1614 assemble_external (ref);
7e585d16
ZW
1615 TREE_USED (ref) = 1;
1616
1617 if (TREE_CODE (ref) == CONST_DECL)
1618 {
1619 ref = DECL_INITIAL (ref);
1620 TREE_CONSTANT (ref) = 1;
1621 }
6a29edea 1622 else if (current_function_decl != 0
4b1e44be 1623 && !DECL_FILE_SCOPE_P (current_function_decl)
6a29edea
EB
1624 && (TREE_CODE (ref) == VAR_DECL
1625 || TREE_CODE (ref) == PARM_DECL
1626 || TREE_CODE (ref) == FUNCTION_DECL))
1627 {
1628 tree context = decl_function_context (ref);
2f6e4e97 1629
6a29edea
EB
1630 if (context != 0 && context != current_function_decl)
1631 DECL_NONLOCAL (ref) = 1;
1632 }
7e585d16
ZW
1633
1634 return ref;
1635}
1636
400fbf9f
JW
1637/* Build a function call to function FUNCTION with parameters PARAMS.
1638 PARAMS is a list--a chain of TREE_LIST nodes--in which the
1639 TREE_VALUE of each node is a parameter-expression.
1640 FUNCTION's data type may be a function type or a pointer-to-function. */
1641
1642tree
2f6e4e97 1643build_function_call (tree function, tree params)
400fbf9f 1644{
b3694847
SS
1645 tree fntype, fundecl = 0;
1646 tree coerced_params;
4977bab6 1647 tree name = NULL_TREE, result;
400fbf9f 1648
fc76e425 1649 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
a7d53fce 1650 STRIP_TYPE_NOPS (function);
400fbf9f
JW
1651
1652 /* Convert anything with function type to a pointer-to-function. */
1653 if (TREE_CODE (function) == FUNCTION_DECL)
1654 {
1655 name = DECL_NAME (function);
19d76e60 1656
400fbf9f
JW
1657 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
1658 (because calling an inline function does not mean the function
1659 needs to be separately compiled). */
1660 fntype = build_type_variant (TREE_TYPE (function),
1661 TREE_READONLY (function),
1662 TREE_THIS_VOLATILE (function));
9b7267b8 1663 fundecl = function;
400fbf9f
JW
1664 function = build1 (ADDR_EXPR, build_pointer_type (fntype), function);
1665 }
1666 else
1667 function = default_conversion (function);
1668
1669 fntype = TREE_TYPE (function);
1670
1671 if (TREE_CODE (fntype) == ERROR_MARK)
1672 return error_mark_node;
1673
1674 if (!(TREE_CODE (fntype) == POINTER_TYPE
1675 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE))
1676 {
1677 error ("called object is not a function");
1678 return error_mark_node;
1679 }
1680
5ce89b2e
JM
1681 if (fundecl && TREE_THIS_VOLATILE (fundecl))
1682 current_function_returns_abnormally = 1;
1683
400fbf9f
JW
1684 /* fntype now gets the type of function pointed to. */
1685 fntype = TREE_TYPE (fntype);
1686
1687 /* Convert the parameters to the types declared in the
1688 function prototype, or apply default promotions. */
1689
1690 coerced_params
9b7267b8 1691 = convert_arguments (TYPE_ARG_TYPES (fntype), params, name, fundecl);
400fbf9f 1692
b34c7881 1693 /* Check that the arguments to the function are valid. */
400fbf9f 1694
b34c7881 1695 check_function_arguments (TYPE_ATTRIBUTES (fntype), coerced_params);
400fbf9f
JW
1696
1697 /* Recognize certain built-in functions so we can make tree-codes
1698 other than CALL_EXPR. We do this when it enables fold-const.c
1699 to do something useful. */
1700
1701 if (TREE_CODE (function) == ADDR_EXPR
1702 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL
1eb8759b
RH
1703 && DECL_BUILT_IN (TREE_OPERAND (function, 0)))
1704 {
1705 result = expand_tree_builtin (TREE_OPERAND (function, 0),
1706 params, coerced_params);
1707 if (result)
1708 return result;
1709 }
400fbf9f 1710
1eb8759b
RH
1711 result = build (CALL_EXPR, TREE_TYPE (fntype),
1712 function, coerced_params, NULL_TREE);
1eb8759b 1713 TREE_SIDE_EFFECTS (result) = 1;
b0b3afb2
BS
1714 result = fold (result);
1715
71653180 1716 if (VOID_TYPE_P (TREE_TYPE (result)))
1eb8759b
RH
1717 return result;
1718 return require_complete_type (result);
400fbf9f
JW
1719}
1720\f
1721/* Convert the argument expressions in the list VALUES
1722 to the types in the list TYPELIST. The result is a list of converted
1723 argument expressions.
1724
1725 If TYPELIST is exhausted, or when an element has NULL as its type,
1726 perform the default conversions.
1727
1728 PARMLIST is the chain of parm decls for the function being called.
1729 It may be 0, if that info is not available.
1730 It is used only for generating error messages.
1731
1732 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
1733
1734 This is also where warnings about wrong number of args are generated.
1735
1736 Both VALUES and the returned value are chains of TREE_LIST nodes
1737 with the elements of the list in the TREE_VALUE slots of those nodes. */
1738
1739static tree
2f6e4e97 1740convert_arguments (tree typelist, tree values, tree name, tree fundecl)
400fbf9f 1741{
b3694847
SS
1742 tree typetail, valtail;
1743 tree result = NULL;
400fbf9f
JW
1744 int parmnum;
1745
1746 /* Scan the given expressions and types, producing individual
1747 converted arguments and pushing them on RESULT in reverse order. */
1748
1749 for (valtail = values, typetail = typelist, parmnum = 0;
1750 valtail;
1751 valtail = TREE_CHAIN (valtail), parmnum++)
1752 {
b3694847
SS
1753 tree type = typetail ? TREE_VALUE (typetail) : 0;
1754 tree val = TREE_VALUE (valtail);
400fbf9f
JW
1755
1756 if (type == void_type_node)
1757 {
1758 if (name)
1759 error ("too many arguments to function `%s'",
1760 IDENTIFIER_POINTER (name));
1761 else
1762 error ("too many arguments to function");
1763 break;
1764 }
1765
1766 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
fc76e425
RS
1767 /* Do not use STRIP_NOPS here! We do not want an enumerator with value 0
1768 to convert automatically to a pointer. */
400fbf9f
JW
1769 if (TREE_CODE (val) == NON_LVALUE_EXPR)
1770 val = TREE_OPERAND (val, 0);
1771
207bf485 1772 val = default_function_array_conversion (val);
400fbf9f
JW
1773
1774 val = require_complete_type (val);
1775
1776 if (type != 0)
1777 {
1778 /* Formal parm type is specified by a function prototype. */
1779 tree parmval;
1780
d0f062fb 1781 if (!COMPLETE_TYPE_P (type))
400fbf9f
JW
1782 {
1783 error ("type of formal parameter %d is incomplete", parmnum + 1);
1784 parmval = val;
1785 }
1786 else
1787 {
d45cf215
RS
1788 /* Optionally warn about conversions that
1789 differ from the default conversions. */
03829ad2 1790 if (warn_conversion || warn_traditional)
400fbf9f
JW
1791 {
1792 int formal_prec = TYPE_PRECISION (type);
400fbf9f 1793
aae43c5f 1794 if (INTEGRAL_TYPE_P (type)
400fbf9f 1795 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
754a4d82 1796 warn_for_assignment ("%s as integer rather than floating due to prototype", (char *) 0, name, parmnum + 1);
03829ad2
KG
1797 if (INTEGRAL_TYPE_P (type)
1798 && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
1799 warn_for_assignment ("%s as integer rather than complex due to prototype", (char *) 0, name, parmnum + 1);
aae43c5f
RK
1800 else if (TREE_CODE (type) == COMPLEX_TYPE
1801 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1802 warn_for_assignment ("%s as complex rather than floating due to prototype", (char *) 0, name, parmnum + 1);
400fbf9f 1803 else if (TREE_CODE (type) == REAL_TYPE
aae43c5f 1804 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
754a4d82 1805 warn_for_assignment ("%s as floating rather than integer due to prototype", (char *) 0, name, parmnum + 1);
03829ad2
KG
1806 else if (TREE_CODE (type) == COMPLEX_TYPE
1807 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
1808 warn_for_assignment ("%s as complex rather than integer due to prototype", (char *) 0, name, parmnum + 1);
aae43c5f
RK
1809 else if (TREE_CODE (type) == REAL_TYPE
1810 && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
1811 warn_for_assignment ("%s as floating rather than complex due to prototype", (char *) 0, name, parmnum + 1);
1812 /* ??? At some point, messages should be written about
1813 conversions between complex types, but that's too messy
1814 to do now. */
d45cf215
RS
1815 else if (TREE_CODE (type) == REAL_TYPE
1816 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1817 {
1818 /* Warn if any argument is passed as `float',
047de90b 1819 since without a prototype it would be `double'. */
d45cf215 1820 if (formal_prec == TYPE_PRECISION (float_type_node))
754a4d82 1821 warn_for_assignment ("%s as `float' rather than `double' due to prototype", (char *) 0, name, parmnum + 1);
d45cf215 1822 }
3ed56f8a
KG
1823 /* Detect integer changing in width or signedness.
1824 These warnings are only activated with
1825 -Wconversion, not with -Wtraditional. */
1826 else if (warn_conversion && INTEGRAL_TYPE_P (type)
aae43c5f 1827 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
400fbf9f 1828 {
d45cf215
RS
1829 tree would_have_been = default_conversion (val);
1830 tree type1 = TREE_TYPE (would_have_been);
1831
754a4d82 1832 if (TREE_CODE (type) == ENUMERAL_TYPE
a38b987a
NB
1833 && (TYPE_MAIN_VARIANT (type)
1834 == TYPE_MAIN_VARIANT (TREE_TYPE (val))))
754a4d82
RS
1835 /* No warning if function asks for enum
1836 and the actual arg is that enum type. */
1837 ;
1838 else if (formal_prec != TYPE_PRECISION (type1))
1839 warn_for_assignment ("%s with different width due to prototype", (char *) 0, name, parmnum + 1);
d45cf215
RS
1840 else if (TREE_UNSIGNED (type) == TREE_UNSIGNED (type1))
1841 ;
800cd3b9
RS
1842 /* Don't complain if the formal parameter type
1843 is an enum, because we can't tell now whether
1844 the value was an enum--even the same enum. */
1845 else if (TREE_CODE (type) == ENUMERAL_TYPE)
1846 ;
400fbf9f
JW
1847 else if (TREE_CODE (val) == INTEGER_CST
1848 && int_fits_type_p (val, type))
1849 /* Change in signedness doesn't matter
1850 if a constant value is unaffected. */
1851 ;
4bbbc5d9
RS
1852 /* Likewise for a constant in a NOP_EXPR. */
1853 else if (TREE_CODE (val) == NOP_EXPR
1854 && TREE_CODE (TREE_OPERAND (val, 0)) == INTEGER_CST
1855 && int_fits_type_p (TREE_OPERAND (val, 0), type))
1856 ;
ce9895ae
RS
1857 /* If the value is extended from a narrower
1858 unsigned type, it doesn't matter whether we
1859 pass it as signed or unsigned; the value
1860 certainly is the same either way. */
1861 else if (TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type)
1862 && TREE_UNSIGNED (TREE_TYPE (val)))
1863 ;
3ed56f8a
KG
1864 else if (TREE_UNSIGNED (type))
1865 warn_for_assignment ("%s as unsigned due to prototype", (char *) 0, name, parmnum + 1);
1866 else
1867 warn_for_assignment ("%s as signed due to prototype", (char *) 0, name, parmnum + 1);
400fbf9f
JW
1868 }
1869 }
1870
2f6e4e97 1871 parmval = convert_for_assignment (type, val,
0f41302f 1872 (char *) 0, /* arg passing */
9b7267b8 1873 fundecl, name, parmnum + 1);
2f6e4e97 1874
61f71b34 1875 if (targetm.calls.promote_prototypes (fundecl ? TREE_TYPE (fundecl) : 0)
b6d6aa84 1876 && INTEGRAL_TYPE_P (type)
400fbf9f
JW
1877 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
1878 parmval = default_conversion (parmval);
400fbf9f 1879 }
8d9bfdc5 1880 result = tree_cons (NULL_TREE, parmval, result);
400fbf9f
JW
1881 }
1882 else if (TREE_CODE (TREE_TYPE (val)) == REAL_TYPE
1883 && (TYPE_PRECISION (TREE_TYPE (val))
1884 < TYPE_PRECISION (double_type_node)))
1885 /* Convert `float' to `double'. */
1886 result = tree_cons (NULL_TREE, convert (double_type_node, val), result);
1887 else
1888 /* Convert `short' and `char' to full-size `int'. */
1889 result = tree_cons (NULL_TREE, default_conversion (val), result);
1890
1891 if (typetail)
1892 typetail = TREE_CHAIN (typetail);
1893 }
1894
1895 if (typetail != 0 && TREE_VALUE (typetail) != void_type_node)
1896 {
1897 if (name)
1898 error ("too few arguments to function `%s'",
1899 IDENTIFIER_POINTER (name));
1900 else
1901 error ("too few arguments to function");
1902 }
1903
1904 return nreverse (result);
1905}
1906\f
1907/* This is the entry point used by the parser
1908 for binary operators in the input.
1909 In addition to constructing the expression,
1910 we check for operands that were written with other binary operators
1911 in a way that is likely to confuse the user. */
edc7c4ec 1912
400fbf9f 1913tree
2f6e4e97 1914parser_build_binary_op (enum tree_code code, tree arg1, tree arg2)
400fbf9f
JW
1915{
1916 tree result = build_binary_op (code, arg1, arg2, 1);
1917
1918 char class;
1919 char class1 = TREE_CODE_CLASS (TREE_CODE (arg1));
1920 char class2 = TREE_CODE_CLASS (TREE_CODE (arg2));
1921 enum tree_code code1 = ERROR_MARK;
1922 enum tree_code code2 = ERROR_MARK;
1923
58bf601b
HPN
1924 if (TREE_CODE (result) == ERROR_MARK)
1925 return error_mark_node;
1926
686deecb 1927 if (IS_EXPR_CODE_CLASS (class1))
400fbf9f 1928 code1 = C_EXP_ORIGINAL_CODE (arg1);
686deecb 1929 if (IS_EXPR_CODE_CLASS (class2))
400fbf9f
JW
1930 code2 = C_EXP_ORIGINAL_CODE (arg2);
1931
1932 /* Check for cases such as x+y<<z which users are likely
1933 to misinterpret. If parens are used, C_EXP_ORIGINAL_CODE
1934 is cleared to prevent these warnings. */
1935 if (warn_parentheses)
1936 {
1937 if (code == LSHIFT_EXPR || code == RSHIFT_EXPR)
1938 {
1939 if (code1 == PLUS_EXPR || code1 == MINUS_EXPR
1940 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1941 warning ("suggest parentheses around + or - inside shift");
1942 }
1943
1944 if (code == TRUTH_ORIF_EXPR)
1945 {
1946 if (code1 == TRUTH_ANDIF_EXPR
1947 || code2 == TRUTH_ANDIF_EXPR)
1948 warning ("suggest parentheses around && within ||");
1949 }
1950
1951 if (code == BIT_IOR_EXPR)
1952 {
1953 if (code1 == BIT_AND_EXPR || code1 == BIT_XOR_EXPR
1954 || code1 == PLUS_EXPR || code1 == MINUS_EXPR
1955 || code2 == BIT_AND_EXPR || code2 == BIT_XOR_EXPR
1956 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1957 warning ("suggest parentheses around arithmetic in operand of |");
7e9d002a
RK
1958 /* Check cases like x|y==z */
1959 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1960 warning ("suggest parentheses around comparison in operand of |");
400fbf9f
JW
1961 }
1962
1963 if (code == BIT_XOR_EXPR)
1964 {
1965 if (code1 == BIT_AND_EXPR
1966 || code1 == PLUS_EXPR || code1 == MINUS_EXPR
1967 || code2 == BIT_AND_EXPR
1968 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1969 warning ("suggest parentheses around arithmetic in operand of ^");
7e9d002a
RK
1970 /* Check cases like x^y==z */
1971 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1972 warning ("suggest parentheses around comparison in operand of ^");
400fbf9f
JW
1973 }
1974
1975 if (code == BIT_AND_EXPR)
1976 {
1977 if (code1 == PLUS_EXPR || code1 == MINUS_EXPR
1978 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1979 warning ("suggest parentheses around + or - in operand of &");
7e9d002a
RK
1980 /* Check cases like x&y==z */
1981 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1982 warning ("suggest parentheses around comparison in operand of &");
400fbf9f
JW
1983 }
1984 }
1985
001af587 1986 /* Similarly, check for cases like 1<=i<=10 that are probably errors. */
edc7c4ec 1987 if (TREE_CODE_CLASS (code) == '<' && extra_warnings
001af587
RS
1988 && (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<'))
1989 warning ("comparisons like X<=Y<=Z do not have their mathematical meaning");
1990
e58cd767
RS
1991 unsigned_conversion_warning (result, arg1);
1992 unsigned_conversion_warning (result, arg2);
1993 overflow_warning (result);
1994
edc7c4ec
RS
1995 class = TREE_CODE_CLASS (TREE_CODE (result));
1996
400fbf9f
JW
1997 /* Record the code that was specified in the source,
1998 for the sake of warnings about confusing nesting. */
686deecb 1999 if (IS_EXPR_CODE_CLASS (class))
400fbf9f
JW
2000 C_SET_EXP_ORIGINAL_CODE (result, code);
2001 else
2002 {
2003 int flag = TREE_CONSTANT (result);
d11fdb45
RS
2004 /* We used to use NOP_EXPR rather than NON_LVALUE_EXPR
2005 so that convert_for_assignment wouldn't strip it.
2006 That way, we got warnings for things like p = (1 - 1).
2007 But it turns out we should not get those warnings. */
2008 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (result), result);
400fbf9f
JW
2009 C_SET_EXP_ORIGINAL_CODE (result, code);
2010 TREE_CONSTANT (result) = flag;
2011 }
2012
2013 return result;
2014}
3e4093b6 2015\f
400fbf9f 2016
3e4093b6 2017/* Return true if `t' is known to be non-negative. */
400fbf9f 2018
3e4093b6
RS
2019int
2020c_tree_expr_nonnegative_p (tree t)
400fbf9f 2021{
3e4093b6
RS
2022 if (TREE_CODE (t) == STMT_EXPR)
2023 {
2024 t = COMPOUND_BODY (STMT_EXPR_STMT (t));
400fbf9f 2025
3e4093b6
RS
2026 /* Find the last statement in the chain, ignoring the final
2027 * scope statement */
2028 while (TREE_CHAIN (t) != NULL_TREE
2029 && TREE_CODE (TREE_CHAIN (t)) != SCOPE_STMT)
2030 t = TREE_CHAIN (t);
2031 return tree_expr_nonnegative_p (TREE_OPERAND (t, 0));
2032 }
2033 return tree_expr_nonnegative_p (t);
2034}
400fbf9f 2035
3e4093b6
RS
2036/* Return a tree for the difference of pointers OP0 and OP1.
2037 The resulting tree has type int. */
293c9fdd 2038
3e4093b6
RS
2039static tree
2040pointer_diff (tree op0, tree op1)
2041{
2042 tree result, folded;
2043 tree restype = ptrdiff_type_node;
400fbf9f 2044
3e4093b6
RS
2045 tree target_type = TREE_TYPE (TREE_TYPE (op0));
2046 tree con0, con1, lit0, lit1;
2047 tree orig_op1 = op1;
400fbf9f 2048
3e4093b6
RS
2049 if (pedantic || warn_pointer_arith)
2050 {
2051 if (TREE_CODE (target_type) == VOID_TYPE)
2052 pedwarn ("pointer of type `void *' used in subtraction");
2053 if (TREE_CODE (target_type) == FUNCTION_TYPE)
2054 pedwarn ("pointer to a function used in subtraction");
2055 }
400fbf9f 2056
3e4093b6
RS
2057 /* If the conversion to ptrdiff_type does anything like widening or
2058 converting a partial to an integral mode, we get a convert_expression
2059 that is in the way to do any simplifications.
2060 (fold-const.c doesn't know that the extra bits won't be needed.
2061 split_tree uses STRIP_SIGN_NOPS, which leaves conversions to a
2062 different mode in place.)
2063 So first try to find a common term here 'by hand'; we want to cover
2064 at least the cases that occur in legal static initializers. */
2065 con0 = TREE_CODE (op0) == NOP_EXPR ? TREE_OPERAND (op0, 0) : op0;
2066 con1 = TREE_CODE (op1) == NOP_EXPR ? TREE_OPERAND (op1, 0) : op1;
400fbf9f 2067
3e4093b6
RS
2068 if (TREE_CODE (con0) == PLUS_EXPR)
2069 {
2070 lit0 = TREE_OPERAND (con0, 1);
2071 con0 = TREE_OPERAND (con0, 0);
2072 }
2073 else
2074 lit0 = integer_zero_node;
400fbf9f 2075
3e4093b6 2076 if (TREE_CODE (con1) == PLUS_EXPR)
400fbf9f 2077 {
3e4093b6
RS
2078 lit1 = TREE_OPERAND (con1, 1);
2079 con1 = TREE_OPERAND (con1, 0);
400fbf9f
JW
2080 }
2081 else
3e4093b6
RS
2082 lit1 = integer_zero_node;
2083
2084 if (operand_equal_p (con0, con1, 0))
400fbf9f 2085 {
3e4093b6
RS
2086 op0 = lit0;
2087 op1 = lit1;
400fbf9f
JW
2088 }
2089
400fbf9f 2090
3e4093b6
RS
2091 /* First do the subtraction as integers;
2092 then drop through to build the divide operator.
2093 Do not do default conversions on the minus operator
2094 in case restype is a short type. */
400fbf9f 2095
3e4093b6
RS
2096 op0 = build_binary_op (MINUS_EXPR, convert (restype, op0),
2097 convert (restype, op1), 0);
2098 /* This generates an error if op1 is pointer to incomplete type. */
2099 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1))))
2100 error ("arithmetic on pointer to an incomplete type");
400fbf9f 2101
3e4093b6
RS
2102 /* This generates an error if op0 is pointer to incomplete type. */
2103 op1 = c_size_in_bytes (target_type);
400fbf9f 2104
3e4093b6 2105 /* Divide by the size, in easiest possible way. */
400fbf9f 2106
3e4093b6 2107 result = build (EXACT_DIV_EXPR, restype, op0, convert (restype, op1));
400fbf9f 2108
3e4093b6
RS
2109 folded = fold (result);
2110 if (folded == result)
2111 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
2112 return folded;
2113}
2114\f
2115/* Construct and perhaps optimize a tree representation
2116 for a unary operation. CODE, a tree_code, specifies the operation
2117 and XARG is the operand.
2118 For any CODE other than ADDR_EXPR, FLAG nonzero suppresses
2119 the default promotions (such as from short to int).
2120 For ADDR_EXPR, the default promotions are not applied; FLAG nonzero
2121 allows non-lvalues; this is only used to handle conversion of non-lvalue
2122 arrays to pointers in C99. */
400fbf9f 2123
3e4093b6
RS
2124tree
2125build_unary_op (enum tree_code code, tree xarg, int flag)
2126{
2127 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
2128 tree arg = xarg;
2129 tree argtype = 0;
2130 enum tree_code typecode = TREE_CODE (TREE_TYPE (arg));
2131 tree val;
2132 int noconvert = flag;
400fbf9f 2133
3e4093b6
RS
2134 if (typecode == ERROR_MARK)
2135 return error_mark_node;
2136 if (typecode == ENUMERAL_TYPE || typecode == BOOLEAN_TYPE)
2137 typecode = INTEGER_TYPE;
6c36d76b 2138
3e4093b6
RS
2139 switch (code)
2140 {
2141 case CONVERT_EXPR:
2142 /* This is used for unary plus, because a CONVERT_EXPR
2143 is enough to prevent anybody from looking inside for
2144 associativity, but won't generate any code. */
2145 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2146 || typecode == COMPLEX_TYPE))
400fbf9f 2147 {
3e4093b6
RS
2148 error ("wrong type argument to unary plus");
2149 return error_mark_node;
400fbf9f 2150 }
3e4093b6
RS
2151 else if (!noconvert)
2152 arg = default_conversion (arg);
2153 arg = non_lvalue (arg);
400fbf9f
JW
2154 break;
2155
3e4093b6
RS
2156 case NEGATE_EXPR:
2157 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2158 || typecode == COMPLEX_TYPE
2159 || typecode == VECTOR_TYPE))
2160 {
2161 error ("wrong type argument to unary minus");
2162 return error_mark_node;
2163 }
2164 else if (!noconvert)
2165 arg = default_conversion (arg);
400fbf9f
JW
2166 break;
2167
3e4093b6
RS
2168 case BIT_NOT_EXPR:
2169 if (typecode == INTEGER_TYPE || typecode == VECTOR_TYPE)
03d5b1f5 2170 {
3e4093b6
RS
2171 if (!noconvert)
2172 arg = default_conversion (arg);
03d5b1f5 2173 }
3e4093b6 2174 else if (typecode == COMPLEX_TYPE)
400fbf9f 2175 {
3e4093b6
RS
2176 code = CONJ_EXPR;
2177 if (pedantic)
2178 pedwarn ("ISO C does not support `~' for complex conjugation");
2179 if (!noconvert)
2180 arg = default_conversion (arg);
2181 }
2182 else
2183 {
2184 error ("wrong type argument to bit-complement");
2185 return error_mark_node;
400fbf9f
JW
2186 }
2187 break;
2188
3e4093b6 2189 case ABS_EXPR:
11017cc7 2190 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE))
400fbf9f 2191 {
3e4093b6
RS
2192 error ("wrong type argument to abs");
2193 return error_mark_node;
400fbf9f 2194 }
3e4093b6
RS
2195 else if (!noconvert)
2196 arg = default_conversion (arg);
400fbf9f
JW
2197 break;
2198
3e4093b6
RS
2199 case CONJ_EXPR:
2200 /* Conjugating a real value is a no-op, but allow it anyway. */
2201 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2202 || typecode == COMPLEX_TYPE))
400fbf9f 2203 {
3e4093b6
RS
2204 error ("wrong type argument to conjugation");
2205 return error_mark_node;
400fbf9f 2206 }
3e4093b6
RS
2207 else if (!noconvert)
2208 arg = default_conversion (arg);
400fbf9f
JW
2209 break;
2210
3e4093b6
RS
2211 case TRUTH_NOT_EXPR:
2212 if (typecode != INTEGER_TYPE
2213 && typecode != REAL_TYPE && typecode != POINTER_TYPE
2214 && typecode != COMPLEX_TYPE
2215 /* These will convert to a pointer. */
2216 && typecode != ARRAY_TYPE && typecode != FUNCTION_TYPE)
400fbf9f 2217 {
3e4093b6
RS
2218 error ("wrong type argument to unary exclamation mark");
2219 return error_mark_node;
400fbf9f 2220 }
3e4093b6
RS
2221 arg = c_common_truthvalue_conversion (arg);
2222 return invert_truthvalue (arg);
2223
2224 case NOP_EXPR:
400fbf9f
JW
2225 break;
2226
3e4093b6
RS
2227 case REALPART_EXPR:
2228 if (TREE_CODE (arg) == COMPLEX_CST)
2229 return TREE_REALPART (arg);
2230 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
2231 return fold (build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
2232 else
2233 return arg;
605a99f6 2234
3e4093b6
RS
2235 case IMAGPART_EXPR:
2236 if (TREE_CODE (arg) == COMPLEX_CST)
2237 return TREE_IMAGPART (arg);
2238 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
2239 return fold (build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
2240 else
2241 return convert (TREE_TYPE (arg), integer_zero_node);
2242
2243 case PREINCREMENT_EXPR:
2244 case POSTINCREMENT_EXPR:
2245 case PREDECREMENT_EXPR:
2246 case POSTDECREMENT_EXPR:
2247 /* Handle complex lvalues (when permitted)
2248 by reduction to simpler cases. */
2249
2250 val = unary_complex_lvalue (code, arg, 0);
2251 if (val != 0)
2252 return val;
2253
2254 /* Increment or decrement the real part of the value,
2255 and don't change the imaginary part. */
2256 if (typecode == COMPLEX_TYPE)
400fbf9f 2257 {
3e4093b6
RS
2258 tree real, imag;
2259
2260 if (pedantic)
2261 pedwarn ("ISO C does not support `++' and `--' on complex types");
2262
2263 arg = stabilize_reference (arg);
2264 real = build_unary_op (REALPART_EXPR, arg, 1);
2265 imag = build_unary_op (IMAGPART_EXPR, arg, 1);
2266 return build (COMPLEX_EXPR, TREE_TYPE (arg),
2267 build_unary_op (code, real, 1), imag);
400fbf9f 2268 }
3e4093b6
RS
2269
2270 /* Report invalid types. */
2271
2272 if (typecode != POINTER_TYPE
2273 && typecode != INTEGER_TYPE && typecode != REAL_TYPE)
400fbf9f 2274 {
3e4093b6
RS
2275 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2276 error ("wrong type argument to increment");
2277 else
2278 error ("wrong type argument to decrement");
2279
2280 return error_mark_node;
400fbf9f 2281 }
400fbf9f 2282
3e4093b6
RS
2283 {
2284 tree inc;
2285 tree result_type = TREE_TYPE (arg);
400fbf9f 2286
3e4093b6
RS
2287 arg = get_unwidened (arg, 0);
2288 argtype = TREE_TYPE (arg);
2289
2290 /* Compute the increment. */
2291
2292 if (typecode == POINTER_TYPE)
2293 {
2294 /* If pointer target is an undefined struct,
2295 we just cannot know how to do the arithmetic. */
2296 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (result_type)))
2297 {
2298 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2299 error ("increment of pointer to unknown structure");
2300 else
2301 error ("decrement of pointer to unknown structure");
2302 }
2303 else if ((pedantic || warn_pointer_arith)
2304 && (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE
2305 || TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE))
2306 {
2307 if (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR)
2308 pedwarn ("wrong type argument to increment");
2309 else
2310 pedwarn ("wrong type argument to decrement");
2311 }
2312
2313 inc = c_size_in_bytes (TREE_TYPE (result_type));
2314 }
2315 else
2316 inc = integer_one_node;
2317
2318 inc = convert (argtype, inc);
2319
2320 /* Handle incrementing a cast-expression. */
2321
2322 while (1)
2323 switch (TREE_CODE (arg))
605a99f6 2324 {
3e4093b6
RS
2325 case NOP_EXPR:
2326 case CONVERT_EXPR:
2327 case FLOAT_EXPR:
2328 case FIX_TRUNC_EXPR:
2329 case FIX_FLOOR_EXPR:
2330 case FIX_ROUND_EXPR:
2331 case FIX_CEIL_EXPR:
2332 pedantic_lvalue_warning (CONVERT_EXPR);
2333 /* If the real type has the same machine representation
2334 as the type it is cast to, we can make better output
2335 by adding directly to the inside of the cast. */
2336 if ((TREE_CODE (TREE_TYPE (arg))
2337 == TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))))
2338 && (TYPE_MODE (TREE_TYPE (arg))
2339 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (arg, 0)))))
2340 arg = TREE_OPERAND (arg, 0);
2341 else
2342 {
2343 tree incremented, modify, value;
2344 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
2345 value = boolean_increment (code, arg);
2346 else
2347 {
2348 arg = stabilize_reference (arg);
2349 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
2350 value = arg;
2351 else
2352 value = save_expr (arg);
2353 incremented = build (((code == PREINCREMENT_EXPR
2354 || code == POSTINCREMENT_EXPR)
2355 ? PLUS_EXPR : MINUS_EXPR),
2356 argtype, value, inc);
2357 TREE_SIDE_EFFECTS (incremented) = 1;
2358 modify = build_modify_expr (arg, NOP_EXPR, incremented);
2359 value = build (COMPOUND_EXPR, TREE_TYPE (arg), modify, value);
2360 }
2361 TREE_USED (value) = 1;
2362 return value;
2363 }
2364 break;
2365
2366 default:
2367 goto give_up;
605a99f6 2368 }
3e4093b6
RS
2369 give_up:
2370
2371 /* Complain about anything else that is not a true lvalue. */
2372 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
2373 || code == POSTINCREMENT_EXPR)
2374 ? "invalid lvalue in increment"
2375 : "invalid lvalue in decrement")))
2376 return error_mark_node;
2377
2378 /* Report a read-only lvalue. */
2379 if (TREE_READONLY (arg))
2380 readonly_warning (arg,
2381 ((code == PREINCREMENT_EXPR
2382 || code == POSTINCREMENT_EXPR)
2383 ? "increment" : "decrement"));
2384
2385 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
2386 val = boolean_increment (code, arg);
2387 else
2388 val = build (code, TREE_TYPE (arg), arg, inc);
2389 TREE_SIDE_EFFECTS (val) = 1;
2390 val = convert (result_type, val);
2391 if (TREE_CODE (val) != code)
2392 TREE_NO_UNUSED_WARNING (val) = 1;
2393 return val;
2394 }
2395
2396 case ADDR_EXPR:
2397 /* Note that this operation never does default_conversion. */
2398
2399 /* Let &* cancel out to simplify resulting code. */
2400 if (TREE_CODE (arg) == INDIRECT_REF)
400fbf9f 2401 {
3e4093b6
RS
2402 /* Don't let this be an lvalue. */
2403 if (lvalue_p (TREE_OPERAND (arg, 0)))
2404 return non_lvalue (TREE_OPERAND (arg, 0));
2405 return TREE_OPERAND (arg, 0);
400fbf9f 2406 }
1eb8759b 2407
3e4093b6
RS
2408 /* For &x[y], return x+y */
2409 if (TREE_CODE (arg) == ARRAY_REF)
1eb8759b 2410 {
3e4093b6
RS
2411 if (!c_mark_addressable (TREE_OPERAND (arg, 0)))
2412 return error_mark_node;
2413 return build_binary_op (PLUS_EXPR, TREE_OPERAND (arg, 0),
2414 TREE_OPERAND (arg, 1), 1);
1eb8759b 2415 }
1eb8759b 2416
3e4093b6
RS
2417 /* Handle complex lvalues (when permitted)
2418 by reduction to simpler cases. */
2419 val = unary_complex_lvalue (code, arg, flag);
2420 if (val != 0)
2421 return val;
400fbf9f 2422
3e4093b6
RS
2423 /* Anything not already handled and not a true memory reference
2424 or a non-lvalue array is an error. */
2425 else if (typecode != FUNCTION_TYPE && !flag
2426 && !lvalue_or_else (arg, "invalid lvalue in unary `&'"))
2427 return error_mark_node;
b6a10c9f 2428
3e4093b6
RS
2429 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
2430 argtype = TREE_TYPE (arg);
400fbf9f 2431
3e4093b6
RS
2432 /* If the lvalue is const or volatile, merge that into the type
2433 to which the address will point. Note that you can't get a
2434 restricted pointer by taking the address of something, so we
2435 only have to deal with `const' and `volatile' here. */
2436 if ((DECL_P (arg) || TREE_CODE_CLASS (TREE_CODE (arg)) == 'r')
2437 && (TREE_READONLY (arg) || TREE_THIS_VOLATILE (arg)))
2438 argtype = c_build_type_variant (argtype,
2439 TREE_READONLY (arg),
2440 TREE_THIS_VOLATILE (arg));
400fbf9f 2441
3e4093b6 2442 argtype = build_pointer_type (argtype);
400fbf9f 2443
3e4093b6
RS
2444 if (!c_mark_addressable (arg))
2445 return error_mark_node;
400fbf9f 2446
3e4093b6
RS
2447 {
2448 tree addr;
400fbf9f 2449
3e4093b6
RS
2450 if (TREE_CODE (arg) == COMPONENT_REF)
2451 {
2452 tree field = TREE_OPERAND (arg, 1);
400fbf9f 2453
3e4093b6 2454 addr = build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0), flag);
400fbf9f 2455
3e4093b6
RS
2456 if (DECL_C_BIT_FIELD (field))
2457 {
2458 error ("attempt to take address of bit-field structure member `%s'",
2459 IDENTIFIER_POINTER (DECL_NAME (field)));
2460 return error_mark_node;
2461 }
400fbf9f 2462
3e4093b6
RS
2463 addr = fold (build (PLUS_EXPR, argtype,
2464 convert (argtype, addr),
2465 convert (argtype, byte_position (field))));
2466 }
2467 else
2468 addr = build1 (code, argtype, arg);
400fbf9f 2469
3e4093b6
RS
2470 /* Address of a static or external variable or
2471 file-scope function counts as a constant. */
2472 if (staticp (arg)
2473 && ! (TREE_CODE (arg) == FUNCTION_DECL
4b1e44be 2474 && !DECL_FILE_SCOPE_P (arg)))
3e4093b6
RS
2475 TREE_CONSTANT (addr) = 1;
2476 return addr;
2477 }
400fbf9f 2478
3e4093b6
RS
2479 default:
2480 break;
2481 }
400fbf9f 2482
3e4093b6
RS
2483 if (argtype == 0)
2484 argtype = TREE_TYPE (arg);
2485 return fold (build1 (code, argtype, arg));
2486}
400fbf9f 2487
3e4093b6
RS
2488/* Return nonzero if REF is an lvalue valid for this language.
2489 Lvalues can be assigned, unless their type has TYPE_READONLY.
2490 Lvalues can have their address taken, unless they have DECL_REGISTER. */
400fbf9f 2491
3e4093b6
RS
2492int
2493lvalue_p (tree ref)
2494{
2495 enum tree_code code = TREE_CODE (ref);
400fbf9f 2496
3e4093b6
RS
2497 switch (code)
2498 {
2499 case REALPART_EXPR:
2500 case IMAGPART_EXPR:
2501 case COMPONENT_REF:
2502 return lvalue_p (TREE_OPERAND (ref, 0));
400fbf9f 2503
3e4093b6
RS
2504 case COMPOUND_LITERAL_EXPR:
2505 case STRING_CST:
2506 return 1;
400fbf9f 2507
3e4093b6
RS
2508 case INDIRECT_REF:
2509 case ARRAY_REF:
2510 case VAR_DECL:
2511 case PARM_DECL:
2512 case RESULT_DECL:
2513 case ERROR_MARK:
2514 return (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
2515 && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE);
665f2503 2516
3e4093b6
RS
2517 case BIND_EXPR:
2518 case RTL_EXPR:
2519 return TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE;
665f2503 2520
3e4093b6
RS
2521 default:
2522 return 0;
2523 }
2524}
400fbf9f 2525
3e4093b6
RS
2526/* Return nonzero if REF is an lvalue valid for this language;
2527 otherwise, print an error message and return zero. */
64c01f80 2528
3e4093b6
RS
2529int
2530lvalue_or_else (tree ref, const char *msgid)
2531{
2532 int win = lvalue_p (ref);
912b4fc3 2533
3e4093b6
RS
2534 if (! win)
2535 error ("%s", msgid);
293c9fdd 2536
3e4093b6
RS
2537 return win;
2538}
665f2503 2539
3e4093b6
RS
2540/* Apply unary lvalue-demanding operator CODE to the expression ARG
2541 for certain kinds of expressions which are not really lvalues
2542 but which we can accept as lvalues. If FLAG is nonzero, then
2543 non-lvalues are OK since we may be converting a non-lvalue array to
2544 a pointer in C99.
665f2503 2545
3e4093b6 2546 If ARG is not a kind of expression we can handle, return zero. */
cb3ca04e 2547
3e4093b6
RS
2548static tree
2549unary_complex_lvalue (enum tree_code code, tree arg, int flag)
2550{
2551 /* Handle (a, b) used as an "lvalue". */
2552 if (TREE_CODE (arg) == COMPOUND_EXPR)
2553 {
2554 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 1), 0);
64c01f80 2555
3e4093b6
RS
2556 /* If this returns a function type, it isn't really being used as
2557 an lvalue, so don't issue a warning about it. */
2558 if (TREE_CODE (TREE_TYPE (arg)) != FUNCTION_TYPE && !flag)
2559 pedantic_lvalue_warning (COMPOUND_EXPR);
64c01f80 2560
3e4093b6
RS
2561 return build (COMPOUND_EXPR, TREE_TYPE (real_result),
2562 TREE_OPERAND (arg, 0), real_result);
2563 }
64c01f80 2564
3e4093b6
RS
2565 /* Handle (a ? b : c) used as an "lvalue". */
2566 if (TREE_CODE (arg) == COND_EXPR)
2567 {
2568 if (!flag)
2569 pedantic_lvalue_warning (COND_EXPR);
2570 if (TREE_CODE (TREE_TYPE (arg)) != FUNCTION_TYPE && !flag)
2571 pedantic_lvalue_warning (COMPOUND_EXPR);
2f6e4e97 2572
3e4093b6
RS
2573 return (build_conditional_expr
2574 (TREE_OPERAND (arg, 0),
2575 build_unary_op (code, TREE_OPERAND (arg, 1), flag),
2576 build_unary_op (code, TREE_OPERAND (arg, 2), flag)));
400fbf9f
JW
2577 }
2578
3e4093b6
RS
2579 return 0;
2580}
293c9fdd 2581
3e4093b6
RS
2582/* If pedantic, warn about improper lvalue. CODE is either COND_EXPR
2583 COMPOUND_EXPR, or CONVERT_EXPR (for casts). */
400fbf9f 2584
3e4093b6
RS
2585static void
2586pedantic_lvalue_warning (enum tree_code code)
2587{
dc70e81d
JM
2588 switch (code)
2589 {
2590 case COND_EXPR:
0a49d02c 2591 pedwarn ("use of conditional expressions as lvalues is deprecated");
dc70e81d
JM
2592 break;
2593 case COMPOUND_EXPR:
30321c39 2594 pedwarn ("use of compound expressions as lvalues is deprecated");
dc70e81d
JM
2595 break;
2596 default:
2597 pedwarn ("use of cast expressions as lvalues is deprecated");
2598 break;
2599 }
400fbf9f
JW
2600}
2601\f
3e4093b6 2602/* Warn about storing in something that is `const'. */
54c93c30 2603
3e4093b6
RS
2604void
2605readonly_warning (tree arg, const char *msgid)
54c93c30 2606{
3e4093b6 2607 if (TREE_CODE (arg) == COMPONENT_REF)
54c93c30 2608 {
3e4093b6
RS
2609 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
2610 readonly_warning (TREE_OPERAND (arg, 0), msgid);
2611 else
2612 pedwarn ("%s of read-only member `%s'", _(msgid),
2613 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (arg, 1))));
54c93c30 2614 }
3e4093b6
RS
2615 else if (TREE_CODE (arg) == VAR_DECL)
2616 pedwarn ("%s of read-only variable `%s'", _(msgid),
2617 IDENTIFIER_POINTER (DECL_NAME (arg)));
2618 else
2619 pedwarn ("%s of read-only location", _(msgid));
54c93c30 2620}
3e4093b6
RS
2621\f
2622/* Mark EXP saying that we need to be able to take the
2623 address of it; it should not be allocated in a register.
2624 Returns true if successful. */
54c93c30 2625
3e4093b6
RS
2626bool
2627c_mark_addressable (tree exp)
400fbf9f 2628{
3e4093b6 2629 tree x = exp;
95602da1 2630
3e4093b6
RS
2631 while (1)
2632 switch (TREE_CODE (x))
2633 {
2634 case COMPONENT_REF:
2635 if (DECL_C_BIT_FIELD (TREE_OPERAND (x, 1)))
2636 {
2637 error ("cannot take address of bit-field `%s'",
2638 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x, 1))));
2639 return false;
2640 }
95602da1 2641
3e4093b6 2642 /* ... fall through ... */
95602da1 2643
3e4093b6
RS
2644 case ADDR_EXPR:
2645 case ARRAY_REF:
2646 case REALPART_EXPR:
2647 case IMAGPART_EXPR:
2648 x = TREE_OPERAND (x, 0);
2649 break;
95602da1 2650
3e4093b6
RS
2651 case COMPOUND_LITERAL_EXPR:
2652 case CONSTRUCTOR:
2653 TREE_ADDRESSABLE (x) = 1;
2654 return true;
95602da1 2655
3e4093b6
RS
2656 case VAR_DECL:
2657 case CONST_DECL:
2658 case PARM_DECL:
2659 case RESULT_DECL:
2660 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
2661 && DECL_NONLOCAL (x))
2662 {
2663 if (TREE_PUBLIC (x))
2664 {
2665 error ("global register variable `%s' used in nested function",
2666 IDENTIFIER_POINTER (DECL_NAME (x)));
2667 return false;
2668 }
2669 pedwarn ("register variable `%s' used in nested function",
2670 IDENTIFIER_POINTER (DECL_NAME (x)));
2671 }
2672 else if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x))
2673 {
2674 if (TREE_PUBLIC (x))
2675 {
2676 error ("address of global register variable `%s' requested",
2677 IDENTIFIER_POINTER (DECL_NAME (x)));
2678 return false;
2679 }
400fbf9f 2680
3e4093b6
RS
2681 /* If we are making this addressable due to its having
2682 volatile components, give a different error message. Also
2683 handle the case of an unnamed parameter by not trying
2684 to give the name. */
6946afd3 2685
3e4093b6
RS
2686 else if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (x)))
2687 {
2688 error ("cannot put object with volatile field into register");
2689 return false;
2690 }
400fbf9f 2691
3e4093b6
RS
2692 pedwarn ("address of register variable `%s' requested",
2693 IDENTIFIER_POINTER (DECL_NAME (x)));
2694 }
2695 put_var_into_stack (x, /*rescan=*/true);
400fbf9f 2696
3e4093b6
RS
2697 /* drops in */
2698 case FUNCTION_DECL:
2699 TREE_ADDRESSABLE (x) = 1;
2700 /* drops out */
2701 default:
2702 return true;
2703 }
2704}
2705\f
2706/* Build and return a conditional expression IFEXP ? OP1 : OP2. */
400fbf9f
JW
2707
2708tree
3e4093b6 2709build_conditional_expr (tree ifexp, tree op1, tree op2)
400fbf9f 2710{
3e4093b6
RS
2711 tree type1;
2712 tree type2;
2713 enum tree_code code1;
2714 enum tree_code code2;
2715 tree result_type = NULL;
2716 tree orig_op1 = op1, orig_op2 = op2;
400fbf9f 2717
3e4093b6
RS
2718 ifexp = c_common_truthvalue_conversion (default_conversion (ifexp));
2719
2720 /* Promote both alternatives. */
2721
2722 if (TREE_CODE (TREE_TYPE (op1)) != VOID_TYPE)
2723 op1 = default_conversion (op1);
2724 if (TREE_CODE (TREE_TYPE (op2)) != VOID_TYPE)
2725 op2 = default_conversion (op2);
2726
2727 if (TREE_CODE (ifexp) == ERROR_MARK
2728 || TREE_CODE (TREE_TYPE (op1)) == ERROR_MARK
2729 || TREE_CODE (TREE_TYPE (op2)) == ERROR_MARK)
400fbf9f 2730 return error_mark_node;
400fbf9f 2731
3e4093b6
RS
2732 type1 = TREE_TYPE (op1);
2733 code1 = TREE_CODE (type1);
2734 type2 = TREE_TYPE (op2);
2735 code2 = TREE_CODE (type2);
2736
2737 /* Quickly detect the usual case where op1 and op2 have the same type
2738 after promotion. */
2739 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
400fbf9f 2740 {
3e4093b6
RS
2741 if (type1 == type2)
2742 result_type = type1;
2743 else
2744 result_type = TYPE_MAIN_VARIANT (type1);
2745 }
2746 else if ((code1 == INTEGER_TYPE || code1 == REAL_TYPE
2747 || code1 == COMPLEX_TYPE)
2748 && (code2 == INTEGER_TYPE || code2 == REAL_TYPE
2749 || code2 == COMPLEX_TYPE))
2750 {
2751 result_type = common_type (type1, type2);
400fbf9f 2752
3e4093b6
RS
2753 /* If -Wsign-compare, warn here if type1 and type2 have
2754 different signedness. We'll promote the signed to unsigned
2755 and later code won't know it used to be different.
2756 Do this check on the original types, so that explicit casts
2757 will be considered, but default promotions won't. */
2758 if (warn_sign_compare && !skip_evaluation)
ab87f8c8 2759 {
3e4093b6
RS
2760 int unsigned_op1 = TREE_UNSIGNED (TREE_TYPE (orig_op1));
2761 int unsigned_op2 = TREE_UNSIGNED (TREE_TYPE (orig_op2));
400fbf9f 2762
3e4093b6
RS
2763 if (unsigned_op1 ^ unsigned_op2)
2764 {
2765 /* Do not warn if the result type is signed, since the
2766 signed type will only be chosen if it can represent
2767 all the values of the unsigned type. */
2768 if (! TREE_UNSIGNED (result_type))
2769 /* OK */;
2770 /* Do not warn if the signed quantity is an unsuffixed
2771 integer literal (or some static constant expression
2772 involving such literals) and it is non-negative. */
2773 else if ((unsigned_op2 && c_tree_expr_nonnegative_p (op1))
2774 || (unsigned_op1 && c_tree_expr_nonnegative_p (op2)))
2775 /* OK */;
2776 else
2777 warning ("signed and unsigned type in conditional expression");
2778 }
2779 }
2780 }
2781 else if (code1 == VOID_TYPE || code2 == VOID_TYPE)
2782 {
2783 if (pedantic && (code1 != VOID_TYPE || code2 != VOID_TYPE))
2784 pedwarn ("ISO C forbids conditional expr with only one void side");
2785 result_type = void_type_node;
2786 }
2787 else if (code1 == POINTER_TYPE && code2 == POINTER_TYPE)
2788 {
2789 if (comp_target_types (type1, type2, 1))
2790 result_type = common_type (type1, type2);
2791 else if (integer_zerop (op1) && TREE_TYPE (type1) == void_type_node
2792 && TREE_CODE (orig_op1) != NOP_EXPR)
2793 result_type = qualify_type (type2, type1);
2794 else if (integer_zerop (op2) && TREE_TYPE (type2) == void_type_node
2795 && TREE_CODE (orig_op2) != NOP_EXPR)
2796 result_type = qualify_type (type1, type2);
2797 else if (VOID_TYPE_P (TREE_TYPE (type1)))
34a80643 2798 {
3e4093b6
RS
2799 if (pedantic && TREE_CODE (TREE_TYPE (type2)) == FUNCTION_TYPE)
2800 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
2801 result_type = build_pointer_type (qualify_type (TREE_TYPE (type1),
2802 TREE_TYPE (type2)));
34a80643 2803 }
3e4093b6 2804 else if (VOID_TYPE_P (TREE_TYPE (type2)))
1c2a9b35 2805 {
3e4093b6
RS
2806 if (pedantic && TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE)
2807 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
2808 result_type = build_pointer_type (qualify_type (TREE_TYPE (type2),
2809 TREE_TYPE (type1)));
1c2a9b35 2810 }
34a80643 2811 else
ab87f8c8 2812 {
3e4093b6
RS
2813 pedwarn ("pointer type mismatch in conditional expression");
2814 result_type = build_pointer_type (void_type_node);
ab87f8c8 2815 }
3e4093b6
RS
2816 }
2817 else if (code1 == POINTER_TYPE && code2 == INTEGER_TYPE)
2818 {
2819 if (! integer_zerop (op2))
2820 pedwarn ("pointer/integer type mismatch in conditional expression");
2821 else
ab87f8c8 2822 {
3e4093b6 2823 op2 = null_pointer_node;
ab87f8c8 2824 }
3e4093b6
RS
2825 result_type = type1;
2826 }
2827 else if (code2 == POINTER_TYPE && code1 == INTEGER_TYPE)
2828 {
2829 if (!integer_zerop (op1))
2830 pedwarn ("pointer/integer type mismatch in conditional expression");
2831 else
ab87f8c8 2832 {
3e4093b6 2833 op1 = null_pointer_node;
ab87f8c8 2834 }
3e4093b6
RS
2835 result_type = type2;
2836 }
1c2a9b35 2837
3e4093b6
RS
2838 if (!result_type)
2839 {
2840 if (flag_cond_mismatch)
2841 result_type = void_type_node;
2842 else
400fbf9f 2843 {
3e4093b6 2844 error ("type mismatch in conditional expression");
ab87f8c8 2845 return error_mark_node;
400fbf9f 2846 }
3e4093b6 2847 }
400fbf9f 2848
3e4093b6
RS
2849 /* Merge const and volatile flags of the incoming types. */
2850 result_type
2851 = build_type_variant (result_type,
2852 TREE_READONLY (op1) || TREE_READONLY (op2),
2853 TREE_THIS_VOLATILE (op1) || TREE_THIS_VOLATILE (op2));
b6a10c9f 2854
3e4093b6
RS
2855 if (result_type != TREE_TYPE (op1))
2856 op1 = convert_and_check (result_type, op1);
2857 if (result_type != TREE_TYPE (op2))
2858 op2 = convert_and_check (result_type, op2);
b6a10c9f 2859
3e4093b6
RS
2860 if (TREE_CODE (ifexp) == INTEGER_CST)
2861 return pedantic_non_lvalue (integer_zerop (ifexp) ? op2 : op1);
2f6e4e97 2862
3e4093b6
RS
2863 return fold (build (COND_EXPR, result_type, ifexp, op1, op2));
2864}
2865\f
2866/* Given a list of expressions, return a compound expression
2867 that performs them all and returns the value of the last of them. */
400fbf9f 2868
3e4093b6
RS
2869tree
2870build_compound_expr (tree list)
2871{
2872 return internal_build_compound_expr (list, TRUE);
2873}
400fbf9f 2874
3e4093b6
RS
2875static tree
2876internal_build_compound_expr (tree list, int first_p)
2877{
2878 tree rest;
400fbf9f 2879
3e4093b6
RS
2880 if (TREE_CHAIN (list) == 0)
2881 {
2882 /* Convert arrays and functions to pointers when there
2883 really is a comma operator. */
2884 if (!first_p)
2885 TREE_VALUE (list)
2886 = default_function_array_conversion (TREE_VALUE (list));
400fbf9f 2887
3e4093b6
RS
2888 /* Don't let (0, 0) be null pointer constant. */
2889 if (!first_p && integer_zerop (TREE_VALUE (list)))
2890 return non_lvalue (TREE_VALUE (list));
2891 return TREE_VALUE (list);
2892 }
400fbf9f 2893
3e4093b6 2894 rest = internal_build_compound_expr (TREE_CHAIN (list), FALSE);
400fbf9f 2895
3e4093b6
RS
2896 if (! TREE_SIDE_EFFECTS (TREE_VALUE (list)))
2897 {
2898 /* The left-hand operand of a comma expression is like an expression
2899 statement: with -Wextra or -Wunused, we should warn if it doesn't have
2900 any side-effects, unless it was explicitly cast to (void). */
2901 if (warn_unused_value
2902 && ! (TREE_CODE (TREE_VALUE (list)) == CONVERT_EXPR
2903 && VOID_TYPE_P (TREE_TYPE (TREE_VALUE (list)))))
2904 warning ("left-hand operand of comma expression has no effect");
3e4093b6 2905 }
400fbf9f 2906
3e4093b6
RS
2907 /* With -Wunused, we should also warn if the left-hand operand does have
2908 side-effects, but computes a value which is not used. For example, in
2909 `foo() + bar(), baz()' the result of the `+' operator is not used,
2910 so we should issue a warning. */
2911 else if (warn_unused_value)
2912 warn_if_unused_value (TREE_VALUE (list));
400fbf9f 2913
3e4093b6
RS
2914 return build (COMPOUND_EXPR, TREE_TYPE (rest), TREE_VALUE (list), rest);
2915}
400fbf9f 2916
3e4093b6 2917/* Build an expression representing a cast to type TYPE of expression EXPR. */
400fbf9f 2918
3e4093b6
RS
2919tree
2920build_c_cast (tree type, tree expr)
2921{
2922 tree value = expr;
400fbf9f 2923
3e4093b6
RS
2924 if (type == error_mark_node || expr == error_mark_node)
2925 return error_mark_node;
400fbf9f 2926
3e4093b6
RS
2927 /* The ObjC front-end uses TYPE_MAIN_VARIANT to tie together types differing
2928 only in <protocol> qualifications. But when constructing cast expressions,
2929 the protocols do matter and must be kept around. */
264fa2db 2930 if (!c_dialect_objc () || !objc_is_object_ptr (type))
3e4093b6 2931 type = TYPE_MAIN_VARIANT (type);
400fbf9f 2932
3e4093b6
RS
2933 if (TREE_CODE (type) == ARRAY_TYPE)
2934 {
2935 error ("cast specifies array type");
2936 return error_mark_node;
2937 }
400fbf9f 2938
3e4093b6
RS
2939 if (TREE_CODE (type) == FUNCTION_TYPE)
2940 {
2941 error ("cast specifies function type");
2942 return error_mark_node;
2943 }
400fbf9f 2944
3e4093b6
RS
2945 if (type == TYPE_MAIN_VARIANT (TREE_TYPE (value)))
2946 {
2947 if (pedantic)
400fbf9f 2948 {
3e4093b6
RS
2949 if (TREE_CODE (type) == RECORD_TYPE
2950 || TREE_CODE (type) == UNION_TYPE)
2951 pedwarn ("ISO C forbids casting nonscalar to the same type");
400fbf9f 2952 }
3e4093b6
RS
2953 }
2954 else if (TREE_CODE (type) == UNION_TYPE)
2955 {
2956 tree field;
2957 value = default_function_array_conversion (value);
400fbf9f 2958
3e4093b6
RS
2959 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
2960 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field)),
2961 TYPE_MAIN_VARIANT (TREE_TYPE (value)), COMPARE_STRICT))
2962 break;
2963
2964 if (field)
400fbf9f 2965 {
3e4093b6
RS
2966 tree t;
2967
2968 if (pedantic)
2969 pedwarn ("ISO C forbids casts to union type");
2970 t = digest_init (type,
2971 build_constructor (type,
2972 build_tree_list (field, value)),
2973 0);
2974 TREE_CONSTANT (t) = TREE_CONSTANT (value);
2975 return t;
400fbf9f 2976 }
3e4093b6
RS
2977 error ("cast to union type from type not present in union");
2978 return error_mark_node;
2979 }
2980 else
2981 {
2982 tree otype, ovalue;
400fbf9f 2983
3e4093b6
RS
2984 /* If casting to void, avoid the error that would come
2985 from default_conversion in the case of a non-lvalue array. */
2986 if (type == void_type_node)
2987 return build1 (CONVERT_EXPR, type, value);
400fbf9f 2988
3e4093b6
RS
2989 /* Convert functions and arrays to pointers,
2990 but don't convert any other types. */
2991 value = default_function_array_conversion (value);
2992 otype = TREE_TYPE (value);
400fbf9f 2993
3e4093b6 2994 /* Optionally warn about potentially worrisome casts. */
770ae6cc 2995
3e4093b6
RS
2996 if (warn_cast_qual
2997 && TREE_CODE (type) == POINTER_TYPE
2998 && TREE_CODE (otype) == POINTER_TYPE)
2999 {
3000 tree in_type = type;
3001 tree in_otype = otype;
3002 int added = 0;
3003 int discarded = 0;
400fbf9f 3004
3e4093b6
RS
3005 /* Check that the qualifiers on IN_TYPE are a superset of
3006 the qualifiers of IN_OTYPE. The outermost level of
3007 POINTER_TYPE nodes is uninteresting and we stop as soon
3008 as we hit a non-POINTER_TYPE node on either type. */
3009 do
3010 {
3011 in_otype = TREE_TYPE (in_otype);
3012 in_type = TREE_TYPE (in_type);
400fbf9f 3013
3e4093b6
RS
3014 /* GNU C allows cv-qualified function types. 'const'
3015 means the function is very pure, 'volatile' means it
3016 can't return. We need to warn when such qualifiers
3017 are added, not when they're taken away. */
3018 if (TREE_CODE (in_otype) == FUNCTION_TYPE
3019 && TREE_CODE (in_type) == FUNCTION_TYPE)
3020 added |= (TYPE_QUALS (in_type) & ~TYPE_QUALS (in_otype));
3021 else
3022 discarded |= (TYPE_QUALS (in_otype) & ~TYPE_QUALS (in_type));
3023 }
3024 while (TREE_CODE (in_type) == POINTER_TYPE
3025 && TREE_CODE (in_otype) == POINTER_TYPE);
400fbf9f 3026
3e4093b6
RS
3027 if (added)
3028 warning ("cast adds new qualifiers to function type");
400fbf9f 3029
3e4093b6
RS
3030 if (discarded)
3031 /* There are qualifiers present in IN_OTYPE that are not
3032 present in IN_TYPE. */
3033 warning ("cast discards qualifiers from pointer target type");
3034 }
400fbf9f 3035
3e4093b6
RS
3036 /* Warn about possible alignment problems. */
3037 if (STRICT_ALIGNMENT && warn_cast_align
3038 && TREE_CODE (type) == POINTER_TYPE
3039 && TREE_CODE (otype) == POINTER_TYPE
3040 && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
3041 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
3042 /* Don't warn about opaque types, where the actual alignment
3043 restriction is unknown. */
3044 && !((TREE_CODE (TREE_TYPE (otype)) == UNION_TYPE
3045 || TREE_CODE (TREE_TYPE (otype)) == RECORD_TYPE)
3046 && TYPE_MODE (TREE_TYPE (otype)) == VOIDmode)
3047 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
3048 warning ("cast increases required alignment of target type");
e9a25f70 3049
3e4093b6
RS
3050 if (TREE_CODE (type) == INTEGER_TYPE
3051 && TREE_CODE (otype) == POINTER_TYPE
3052 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3053 && !TREE_CONSTANT (value))
3054 warning ("cast from pointer to integer of different size");
400fbf9f 3055
3e4093b6
RS
3056 if (warn_bad_function_cast
3057 && TREE_CODE (value) == CALL_EXPR
3058 && TREE_CODE (type) != TREE_CODE (otype))
3059 warning ("cast does not match function type");
400fbf9f 3060
3e4093b6
RS
3061 if (TREE_CODE (type) == POINTER_TYPE
3062 && TREE_CODE (otype) == INTEGER_TYPE
3063 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3064 /* Don't warn about converting any constant. */
3065 && !TREE_CONSTANT (value))
3066 warning ("cast to pointer from integer of different size");
400fbf9f 3067
3e4093b6
RS
3068 if (TREE_CODE (type) == POINTER_TYPE
3069 && TREE_CODE (otype) == POINTER_TYPE
3070 && TREE_CODE (expr) == ADDR_EXPR
3071 && DECL_P (TREE_OPERAND (expr, 0))
3072 && flag_strict_aliasing && warn_strict_aliasing
3073 && !VOID_TYPE_P (TREE_TYPE (type)))
3074 {
3075 /* Casting the address of a decl to non void pointer. Warn
3076 if the cast breaks type based aliasing. */
3077 if (!COMPLETE_TYPE_P (TREE_TYPE (type)))
3078 warning ("type-punning to incomplete type might break strict-aliasing rules");
3079 else if (!alias_sets_conflict_p
3080 (get_alias_set (TREE_TYPE (TREE_OPERAND (expr, 0))),
3081 get_alias_set (TREE_TYPE (type))))
3082 warning ("dereferencing type-punned pointer will break strict-aliasing rules");
3083 }
400fbf9f 3084
3e4093b6
RS
3085 ovalue = value;
3086 /* Replace a nonvolatile const static variable with its value. */
3087 if (optimize && TREE_CODE (value) == VAR_DECL)
3088 value = decl_constant_value (value);
3089 value = convert (type, value);
400fbf9f 3090
3e4093b6
RS
3091 /* Ignore any integer overflow caused by the cast. */
3092 if (TREE_CODE (value) == INTEGER_CST)
3093 {
3094 TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
3095 TREE_CONSTANT_OVERFLOW (value) = TREE_CONSTANT_OVERFLOW (ovalue);
3096 }
3097 }
400fbf9f 3098
3e4093b6
RS
3099 /* Pedantically, don't let (void *) (FOO *) 0 be a null pointer constant. */
3100 if (pedantic && TREE_CODE (value) == INTEGER_CST
3101 && TREE_CODE (expr) == INTEGER_CST
3102 && TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE)
3103 value = non_lvalue (value);
cff9c407 3104
3e4093b6
RS
3105 /* If pedantic, don't let a cast be an lvalue. */
3106 if (value == expr && pedantic)
3107 value = non_lvalue (value);
e9a25f70 3108
3e4093b6 3109 return value;
400fbf9f
JW
3110}
3111
3e4093b6
RS
3112/* Interpret a cast of expression EXPR to type TYPE. */
3113tree
3114c_cast_expr (tree type, tree expr)
400fbf9f 3115{
3e4093b6 3116 int saved_wsp = warn_strict_prototypes;
c5c76735 3117
3e4093b6
RS
3118 /* This avoids warnings about unprototyped casts on
3119 integers. E.g. "#define SIG_DFL (void(*)())0". */
3120 if (TREE_CODE (expr) == INTEGER_CST)
3121 warn_strict_prototypes = 0;
3122 type = groktypename (type);
3123 warn_strict_prototypes = saved_wsp;
c5c76735 3124
3e4093b6 3125 return build_c_cast (type, expr);
400fbf9f
JW
3126}
3127
3e4093b6
RS
3128\f
3129/* Build an assignment expression of lvalue LHS from value RHS.
3130 MODIFYCODE is the code for a binary operator that we use
3131 to combine the old value of LHS with RHS to get the new value.
3132 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment. */
2f6e4e97 3133
3e4093b6
RS
3134tree
3135build_modify_expr (tree lhs, enum tree_code modifycode, tree rhs)
400fbf9f 3136{
3e4093b6
RS
3137 tree result;
3138 tree newrhs;
3139 tree lhstype = TREE_TYPE (lhs);
3140 tree olhstype = lhstype;
e9a25f70 3141
3e4093b6
RS
3142 /* Types that aren't fully specified cannot be used in assignments. */
3143 lhs = require_complete_type (lhs);
e9a25f70 3144
3e4093b6
RS
3145 /* Avoid duplicate error messages from operands that had errors. */
3146 if (TREE_CODE (lhs) == ERROR_MARK || TREE_CODE (rhs) == ERROR_MARK)
3147 return error_mark_node;
400fbf9f 3148
3e4093b6
RS
3149 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3150 /* Do not use STRIP_NOPS here. We do not want an enumerator
3151 whose value is 0 to count as a null pointer constant. */
3152 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
3153 rhs = TREE_OPERAND (rhs, 0);
e9a25f70 3154
3e4093b6 3155 newrhs = rhs;
400fbf9f 3156
3e4093b6 3157 /* Handle control structure constructs used as "lvalues". */
400fbf9f 3158
3e4093b6
RS
3159 switch (TREE_CODE (lhs))
3160 {
3161 /* Handle (a, b) used as an "lvalue". */
3162 case COMPOUND_EXPR:
3163 pedantic_lvalue_warning (COMPOUND_EXPR);
3164 newrhs = build_modify_expr (TREE_OPERAND (lhs, 1), modifycode, rhs);
3165 if (TREE_CODE (newrhs) == ERROR_MARK)
3166 return error_mark_node;
3167 return build (COMPOUND_EXPR, lhstype,
3168 TREE_OPERAND (lhs, 0), newrhs);
400fbf9f 3169
3e4093b6
RS
3170 /* Handle (a ? b : c) used as an "lvalue". */
3171 case COND_EXPR:
3172 pedantic_lvalue_warning (COND_EXPR);
3173 rhs = save_expr (rhs);
913d0833 3174 {
3e4093b6
RS
3175 /* Produce (a ? (b = rhs) : (c = rhs))
3176 except that the RHS goes through a save-expr
3177 so the code to compute it is only emitted once. */
3178 tree cond
3179 = build_conditional_expr (TREE_OPERAND (lhs, 0),
3180 build_modify_expr (TREE_OPERAND (lhs, 1),
3181 modifycode, rhs),
3182 build_modify_expr (TREE_OPERAND (lhs, 2),
3183 modifycode, rhs));
3184 if (TREE_CODE (cond) == ERROR_MARK)
3185 return cond;
3186 /* Make sure the code to compute the rhs comes out
3187 before the split. */
3188 return build (COMPOUND_EXPR, TREE_TYPE (lhs),
3189 /* But cast it to void to avoid an "unused" error. */
3190 convert (void_type_node, rhs), cond);
913d0833 3191 }
3e4093b6
RS
3192 default:
3193 break;
3194 }
400fbf9f 3195
3e4093b6
RS
3196 /* If a binary op has been requested, combine the old LHS value with the RHS
3197 producing the value we should actually store into the LHS. */
3198
3199 if (modifycode != NOP_EXPR)
400fbf9f 3200 {
3e4093b6
RS
3201 lhs = stabilize_reference (lhs);
3202 newrhs = build_binary_op (modifycode, lhs, rhs, 1);
400fbf9f 3203 }
400fbf9f 3204
3e4093b6
RS
3205 /* Handle a cast used as an "lvalue".
3206 We have already performed any binary operator using the value as cast.
3207 Now convert the result to the cast type of the lhs,
3208 and then true type of the lhs and store it there;
3209 then convert result back to the cast type to be the value
3210 of the assignment. */
dffd7eb6 3211
3e4093b6
RS
3212 switch (TREE_CODE (lhs))
3213 {
3214 case NOP_EXPR:
3215 case CONVERT_EXPR:
3216 case FLOAT_EXPR:
3217 case FIX_TRUNC_EXPR:
3218 case FIX_FLOOR_EXPR:
3219 case FIX_ROUND_EXPR:
3220 case FIX_CEIL_EXPR:
3221 newrhs = default_function_array_conversion (newrhs);
400fbf9f 3222 {
3e4093b6
RS
3223 tree inner_lhs = TREE_OPERAND (lhs, 0);
3224 tree result;
3225 result = build_modify_expr (inner_lhs, NOP_EXPR,
3226 convert (TREE_TYPE (inner_lhs),
3227 convert (lhstype, newrhs)));
3228 if (TREE_CODE (result) == ERROR_MARK)
3229 return result;
3230 pedantic_lvalue_warning (CONVERT_EXPR);
3231 return convert (TREE_TYPE (lhs), result);
3232 }
1598f4da 3233
3e4093b6
RS
3234 default:
3235 break;
3236 }
1598f4da 3237
3e4093b6
RS
3238 /* Now we have handled acceptable kinds of LHS that are not truly lvalues.
3239 Reject anything strange now. */
400fbf9f 3240
3e4093b6
RS
3241 if (!lvalue_or_else (lhs, "invalid lvalue in assignment"))
3242 return error_mark_node;
400fbf9f 3243
3e4093b6 3244 /* Warn about storing in something that is `const'. */
bbbd6700 3245
3e4093b6
RS
3246 if (TREE_READONLY (lhs) || TYPE_READONLY (lhstype)
3247 || ((TREE_CODE (lhstype) == RECORD_TYPE
3248 || TREE_CODE (lhstype) == UNION_TYPE)
3249 && C_TYPE_FIELDS_READONLY (lhstype)))
3250 readonly_warning (lhs, "assignment");
bbbd6700 3251
3e4093b6
RS
3252 /* If storing into a structure or union member,
3253 it has probably been given type `int'.
3254 Compute the type that would go with
3255 the actual amount of storage the member occupies. */
bbbd6700 3256
3e4093b6
RS
3257 if (TREE_CODE (lhs) == COMPONENT_REF
3258 && (TREE_CODE (lhstype) == INTEGER_TYPE
3259 || TREE_CODE (lhstype) == BOOLEAN_TYPE
3260 || TREE_CODE (lhstype) == REAL_TYPE
3261 || TREE_CODE (lhstype) == ENUMERAL_TYPE))
3262 lhstype = TREE_TYPE (get_unwidened (lhs, 0));
400fbf9f 3263
3e4093b6
RS
3264 /* If storing in a field that is in actuality a short or narrower than one,
3265 we must store in the field in its actual type. */
3266
3267 if (lhstype != TREE_TYPE (lhs))
3268 {
3269 lhs = copy_node (lhs);
3270 TREE_TYPE (lhs) = lhstype;
400fbf9f 3271 }
400fbf9f 3272
3e4093b6 3273 /* Convert new value to destination type. */
400fbf9f 3274
3e4093b6
RS
3275 newrhs = convert_for_assignment (lhstype, newrhs, _("assignment"),
3276 NULL_TREE, NULL_TREE, 0);
3277 if (TREE_CODE (newrhs) == ERROR_MARK)
3278 return error_mark_node;
400fbf9f 3279
3e4093b6 3280 /* Scan operands */
400fbf9f 3281
3e4093b6
RS
3282 result = build (MODIFY_EXPR, lhstype, lhs, newrhs);
3283 TREE_SIDE_EFFECTS (result) = 1;
400fbf9f 3284
3e4093b6
RS
3285 /* If we got the LHS in a different type for storing in,
3286 convert the result back to the nominal type of LHS
3287 so that the value we return always has the same type
3288 as the LHS argument. */
e855c5ce 3289
3e4093b6
RS
3290 if (olhstype == TREE_TYPE (result))
3291 return result;
3292 return convert_for_assignment (olhstype, result, _("assignment"),
3293 NULL_TREE, NULL_TREE, 0);
3294}
3295\f
3296/* Convert value RHS to type TYPE as preparation for an assignment
3297 to an lvalue of type TYPE.
3298 The real work of conversion is done by `convert'.
3299 The purpose of this function is to generate error messages
3300 for assignments that are not allowed in C.
3301 ERRTYPE is a string to use in error messages:
3302 "assignment", "return", etc. If it is null, this is parameter passing
3303 for a function call (and different error messages are output).
2f6e4e97 3304
3e4093b6
RS
3305 FUNNAME is the name of the function being called,
3306 as an IDENTIFIER_NODE, or null.
3307 PARMNUM is the number of the argument, for printing in error messages. */
cb3ca04e 3308
3e4093b6
RS
3309static tree
3310convert_for_assignment (tree type, tree rhs, const char *errtype,
3311 tree fundecl, tree funname, int parmnum)
3312{
3313 enum tree_code codel = TREE_CODE (type);
3314 tree rhstype;
3315 enum tree_code coder;
cb3ca04e 3316
3e4093b6
RS
3317 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3318 /* Do not use STRIP_NOPS here. We do not want an enumerator
3319 whose value is 0 to count as a null pointer constant. */
3320 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
3321 rhs = TREE_OPERAND (rhs, 0);
3322
3323 if (TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
3324 || TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE)
3325 rhs = default_conversion (rhs);
3326 else if (optimize && TREE_CODE (rhs) == VAR_DECL)
3327 rhs = decl_constant_value_for_broken_optimization (rhs);
3328
3329 rhstype = TREE_TYPE (rhs);
3330 coder = TREE_CODE (rhstype);
3331
3332 if (coder == ERROR_MARK)
3333 return error_mark_node;
3334
3335 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype))
400fbf9f 3336 {
3e4093b6
RS
3337 overflow_warning (rhs);
3338 /* Check for Objective-C protocols. This will automatically
3339 issue a warning if there are protocol violations. No need to
3340 use the return value. */
3341 if (c_dialect_objc ())
3342 objc_comptypes (type, rhstype, 0);
3343 return rhs;
400fbf9f 3344 }
3e4093b6
RS
3345
3346 if (coder == VOID_TYPE)
400fbf9f 3347 {
3e4093b6
RS
3348 error ("void value not ignored as it ought to be");
3349 return error_mark_node;
400fbf9f 3350 }
3e4093b6
RS
3351 /* A type converts to a reference to it.
3352 This code doesn't fully support references, it's just for the
3353 special case of va_start and va_copy. */
3354 if (codel == REFERENCE_TYPE
3355 && comptypes (TREE_TYPE (type), TREE_TYPE (rhs), COMPARE_STRICT) == 1)
400fbf9f 3356 {
3e4093b6 3357 if (!lvalue_p (rhs))
400fbf9f 3358 {
3e4093b6
RS
3359 error ("cannot pass rvalue to reference parameter");
3360 return error_mark_node;
400fbf9f 3361 }
3e4093b6
RS
3362 if (!c_mark_addressable (rhs))
3363 return error_mark_node;
3364 rhs = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (rhs)), rhs);
3365
3366 /* We already know that these two types are compatible, but they
3367 may not be exactly identical. In fact, `TREE_TYPE (type)' is
3368 likely to be __builtin_va_list and `TREE_TYPE (rhs)' is
3369 likely to be va_list, a typedef to __builtin_va_list, which
3370 is different enough that it will cause problems later. */
3371 if (TREE_TYPE (TREE_TYPE (rhs)) != TREE_TYPE (type))
3372 rhs = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (type)), rhs);
3373
3374 rhs = build1 (NOP_EXPR, type, rhs);
3375 return rhs;
400fbf9f 3376 }
3e4093b6
RS
3377 /* Some types can interconvert without explicit casts. */
3378 else if (codel == VECTOR_TYPE && coder == VECTOR_TYPE
3379 && ((*targetm.vector_opaque_p) (type)
3380 || (*targetm.vector_opaque_p) (rhstype)))
3381 return convert (type, rhs);
3382 /* Arithmetic types all interconvert, and enum is treated like int. */
3383 else if ((codel == INTEGER_TYPE || codel == REAL_TYPE
3384 || codel == ENUMERAL_TYPE || codel == COMPLEX_TYPE
3385 || codel == BOOLEAN_TYPE)
3386 && (coder == INTEGER_TYPE || coder == REAL_TYPE
3387 || coder == ENUMERAL_TYPE || coder == COMPLEX_TYPE
3388 || coder == BOOLEAN_TYPE))
3389 return convert_and_check (type, rhs);
400fbf9f 3390
3e4093b6
RS
3391 /* Conversion to a transparent union from its member types.
3392 This applies only to function arguments. */
3393 else if (codel == UNION_TYPE && TYPE_TRANSPARENT_UNION (type) && ! errtype)
400fbf9f 3394 {
3e4093b6
RS
3395 tree memb_types;
3396 tree marginal_memb_type = 0;
3397
3398 for (memb_types = TYPE_FIELDS (type); memb_types;
3399 memb_types = TREE_CHAIN (memb_types))
400fbf9f 3400 {
3e4093b6 3401 tree memb_type = TREE_TYPE (memb_types);
400fbf9f 3402
3e4093b6
RS
3403 if (comptypes (TYPE_MAIN_VARIANT (memb_type),
3404 TYPE_MAIN_VARIANT (rhstype), COMPARE_STRICT))
3405 break;
e58cd767 3406
3e4093b6
RS
3407 if (TREE_CODE (memb_type) != POINTER_TYPE)
3408 continue;
2f6e4e97 3409
3e4093b6
RS
3410 if (coder == POINTER_TYPE)
3411 {
3412 tree ttl = TREE_TYPE (memb_type);
3413 tree ttr = TREE_TYPE (rhstype);
400fbf9f 3414
3e4093b6
RS
3415 /* Any non-function converts to a [const][volatile] void *
3416 and vice versa; otherwise, targets must be the same.
3417 Meanwhile, the lhs target must have all the qualifiers of
3418 the rhs. */
3419 if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
3420 || comp_target_types (memb_type, rhstype, 0))
3421 {
3422 /* If this type won't generate any warnings, use it. */
3423 if (TYPE_QUALS (ttl) == TYPE_QUALS (ttr)
3424 || ((TREE_CODE (ttr) == FUNCTION_TYPE
3425 && TREE_CODE (ttl) == FUNCTION_TYPE)
3426 ? ((TYPE_QUALS (ttl) | TYPE_QUALS (ttr))
3427 == TYPE_QUALS (ttr))
3428 : ((TYPE_QUALS (ttl) | TYPE_QUALS (ttr))
3429 == TYPE_QUALS (ttl))))
3430 break;
400fbf9f 3431
3e4093b6
RS
3432 /* Keep looking for a better type, but remember this one. */
3433 if (! marginal_memb_type)
3434 marginal_memb_type = memb_type;
3435 }
3436 }
82bde854 3437
3e4093b6
RS
3438 /* Can convert integer zero to any pointer type. */
3439 if (integer_zerop (rhs)
3440 || (TREE_CODE (rhs) == NOP_EXPR
3441 && integer_zerop (TREE_OPERAND (rhs, 0))))
3442 {
3443 rhs = null_pointer_node;
3444 break;
3445 }
3446 }
400fbf9f 3447
3e4093b6
RS
3448 if (memb_types || marginal_memb_type)
3449 {
3450 if (! memb_types)
3451 {
3452 /* We have only a marginally acceptable member type;
3453 it needs a warning. */
3454 tree ttl = TREE_TYPE (marginal_memb_type);
3455 tree ttr = TREE_TYPE (rhstype);
714a0864 3456
3e4093b6
RS
3457 /* Const and volatile mean something different for function
3458 types, so the usual warnings are not appropriate. */
3459 if (TREE_CODE (ttr) == FUNCTION_TYPE
3460 && TREE_CODE (ttl) == FUNCTION_TYPE)
3461 {
3462 /* Because const and volatile on functions are
3463 restrictions that say the function will not do
3464 certain things, it is okay to use a const or volatile
3465 function where an ordinary one is wanted, but not
3466 vice-versa. */
3467 if (TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr))
3468 warn_for_assignment ("%s makes qualified function pointer from unqualified",
3469 errtype, funname, parmnum);
3470 }
3471 else if (TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl))
3472 warn_for_assignment ("%s discards qualifiers from pointer target type",
3473 errtype, funname,
3474 parmnum);
3475 }
400fbf9f 3476
3e4093b6
RS
3477 if (pedantic && ! DECL_IN_SYSTEM_HEADER (fundecl))
3478 pedwarn ("ISO C prohibits argument conversion to union type");
0e7c47fa 3479
3e4093b6
RS
3480 return build1 (NOP_EXPR, type, rhs);
3481 }
0e7c47fa
RK
3482 }
3483
3e4093b6
RS
3484 /* Conversions among pointers */
3485 else if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
3486 && (coder == codel))
400fbf9f 3487 {
3e4093b6
RS
3488 tree ttl = TREE_TYPE (type);
3489 tree ttr = TREE_TYPE (rhstype);
3490 bool is_opaque_pointer;
264fa2db 3491 int target_cmp = 0; /* Cache comp_target_types () result. */
400fbf9f 3492
3e4093b6
RS
3493 /* Opaque pointers are treated like void pointers. */
3494 is_opaque_pointer = ((*targetm.vector_opaque_p) (type)
3495 || (*targetm.vector_opaque_p) (rhstype))
3496 && TREE_CODE (ttl) == VECTOR_TYPE
3497 && TREE_CODE (ttr) == VECTOR_TYPE;
400fbf9f 3498
3e4093b6
RS
3499 /* Any non-function converts to a [const][volatile] void *
3500 and vice versa; otherwise, targets must be the same.
3501 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
3502 if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
264fa2db 3503 || (target_cmp = comp_target_types (type, rhstype, 0))
3e4093b6
RS
3504 || is_opaque_pointer
3505 || (c_common_unsigned_type (TYPE_MAIN_VARIANT (ttl))
3506 == c_common_unsigned_type (TYPE_MAIN_VARIANT (ttr))))
3507 {
3508 if (pedantic
3509 && ((VOID_TYPE_P (ttl) && TREE_CODE (ttr) == FUNCTION_TYPE)
3510 ||
3511 (VOID_TYPE_P (ttr)
3512 /* Check TREE_CODE to catch cases like (void *) (char *) 0
3513 which are not ANSI null ptr constants. */
3514 && (!integer_zerop (rhs) || TREE_CODE (rhs) == NOP_EXPR)
3515 && TREE_CODE (ttl) == FUNCTION_TYPE)))
3516 warn_for_assignment ("ISO C forbids %s between function pointer and `void *'",
3517 errtype, funname, parmnum);
3518 /* Const and volatile mean something different for function types,
3519 so the usual warnings are not appropriate. */
3520 else if (TREE_CODE (ttr) != FUNCTION_TYPE
3521 && TREE_CODE (ttl) != FUNCTION_TYPE)
3522 {
3523 if (TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl))
3524 warn_for_assignment ("%s discards qualifiers from pointer target type",
3525 errtype, funname, parmnum);
3526 /* If this is not a case of ignoring a mismatch in signedness,
3527 no warning. */
3528 else if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
264fa2db 3529 || target_cmp)
3e4093b6
RS
3530 ;
3531 /* If there is a mismatch, do warn. */
3532 else if (pedantic)
3533 warn_for_assignment ("pointer targets in %s differ in signedness",
3534 errtype, funname, parmnum);
3535 }
3536 else if (TREE_CODE (ttl) == FUNCTION_TYPE
3537 && TREE_CODE (ttr) == FUNCTION_TYPE)
3538 {
3539 /* Because const and volatile on functions are restrictions
3540 that say the function will not do certain things,
3541 it is okay to use a const or volatile function
3542 where an ordinary one is wanted, but not vice-versa. */
3543 if (TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr))
3544 warn_for_assignment ("%s makes qualified function pointer from unqualified",
3545 errtype, funname, parmnum);
3546 }
3547 }
3548 else
3549 warn_for_assignment ("%s from incompatible pointer type",
3550 errtype, funname, parmnum);
3551 return convert (type, rhs);
3552 }
b494fd98
EB
3553 else if (codel == POINTER_TYPE && coder == ARRAY_TYPE)
3554 {
3555 error ("invalid use of non-lvalue array");
3556 return error_mark_node;
3557 }
3e4093b6 3558 else if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
400fbf9f 3559 {
3e4093b6
RS
3560 /* An explicit constant 0 can convert to a pointer,
3561 or one that results from arithmetic, even including
3562 a cast to integer type. */
3563 if (! (TREE_CODE (rhs) == INTEGER_CST && integer_zerop (rhs))
3564 &&
3565 ! (TREE_CODE (rhs) == NOP_EXPR
3566 && TREE_CODE (TREE_TYPE (rhs)) == INTEGER_TYPE
3567 && TREE_CODE (TREE_OPERAND (rhs, 0)) == INTEGER_CST
3568 && integer_zerop (TREE_OPERAND (rhs, 0))))
400fbf9f 3569 {
3e4093b6
RS
3570 warn_for_assignment ("%s makes pointer from integer without a cast",
3571 errtype, funname, parmnum);
3572 return convert (type, rhs);
400fbf9f 3573 }
3e4093b6 3574 return null_pointer_node;
400fbf9f 3575 }
3e4093b6 3576 else if (codel == INTEGER_TYPE && coder == POINTER_TYPE)
400fbf9f 3577 {
3e4093b6
RS
3578 warn_for_assignment ("%s makes integer from pointer without a cast",
3579 errtype, funname, parmnum);
3580 return convert (type, rhs);
3581 }
3582 else if (codel == BOOLEAN_TYPE && coder == POINTER_TYPE)
3583 return convert (type, rhs);
400fbf9f 3584
3e4093b6
RS
3585 if (!errtype)
3586 {
3587 if (funname)
400fbf9f 3588 {
3e4093b6 3589 tree selector = objc_message_selector ();
805f961c 3590
3e4093b6
RS
3591 if (selector && parmnum > 2)
3592 error ("incompatible type for argument %d of `%s'",
3593 parmnum - 2, IDENTIFIER_POINTER (selector));
3594 else
3595 error ("incompatible type for argument %d of `%s'",
3596 parmnum, IDENTIFIER_POINTER (funname));
400fbf9f 3597 }
3e4093b6
RS
3598 else
3599 error ("incompatible type for argument %d of indirect function call",
3600 parmnum);
400fbf9f
JW
3601 }
3602 else
3e4093b6 3603 error ("incompatible types in %s", errtype);
53b01f59 3604
3e4093b6
RS
3605 return error_mark_node;
3606}
53b01f59 3607
d5123bae
MS
3608/* Convert VALUE for assignment into inlined parameter PARM. ARGNUM
3609 is used for error and waring reporting and indicates which argument
3610 is being processed. */
400fbf9f 3611
3e4093b6 3612tree
d5123bae 3613c_convert_parm_for_inlining (tree parm, tree value, tree fn, int argnum)
3e4093b6
RS
3614{
3615 tree ret, type;
400fbf9f 3616
3e4093b6
RS
3617 /* If FN was prototyped, the value has been converted already
3618 in convert_arguments. */
3619 if (! value || TYPE_ARG_TYPES (TREE_TYPE (fn)))
3620 return value;
f5963e61 3621
3e4093b6
RS
3622 type = TREE_TYPE (parm);
3623 ret = convert_for_assignment (type, value,
3624 (char *) 0 /* arg passing */, fn,
d5123bae 3625 DECL_NAME (fn), argnum);
61f71b34 3626 if (targetm.calls.promote_prototypes (TREE_TYPE (fn))
3e4093b6
RS
3627 && INTEGRAL_TYPE_P (type)
3628 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
3629 ret = default_conversion (ret);
3630 return ret;
3631}
af702de8 3632
3e4093b6
RS
3633/* Print a warning using MSGID.
3634 It gets OPNAME as its one parameter.
3635 if OPNAME is null and ARGNUM is 0, it is replaced by "passing arg of `FUNCTION'".
3636 Otherwise if OPNAME is null, it is replaced by "passing arg ARGNUM of `FUNCTION'".
3637 FUNCTION and ARGNUM are handled specially if we are building an
3638 Objective-C selector. */
cd6311ef 3639
3e4093b6
RS
3640static void
3641warn_for_assignment (const char *msgid, const char *opname, tree function,
3642 int argnum)
3643{
3644 if (opname == 0)
3645 {
3646 tree selector = objc_message_selector ();
3647 char * new_opname;
af702de8 3648
3e4093b6
RS
3649 if (selector && argnum > 2)
3650 {
3651 function = selector;
3652 argnum -= 2;
400fbf9f 3653 }
3e4093b6 3654 if (argnum == 0)
73a73768 3655 {
3e4093b6
RS
3656 if (function)
3657 {
3658 /* Function name is known; supply it. */
3659 const char *const argstring = _("passing arg of `%s'");
703ad42b
KG
3660 new_opname = alloca (IDENTIFIER_LENGTH (function)
3661 + strlen (argstring) + 1 + 1);
3e4093b6
RS
3662 sprintf (new_opname, argstring,
3663 IDENTIFIER_POINTER (function));
3664 }
3665 else
3666 {
3667 /* Function name unknown (call through ptr). */
3668 const char *const argnofun = _("passing arg of pointer to function");
703ad42b 3669 new_opname = alloca (strlen (argnofun) + 1 + 1);
3e4093b6
RS
3670 sprintf (new_opname, argnofun);
3671 }
73a73768 3672 }
3e4093b6 3673 else if (function)
10d5caec 3674 {
3e4093b6
RS
3675 /* Function name is known; supply it. */
3676 const char *const argstring = _("passing arg %d of `%s'");
703ad42b
KG
3677 new_opname = alloca (IDENTIFIER_LENGTH (function)
3678 + strlen (argstring) + 1 + 25 /*%d*/ + 1);
3e4093b6
RS
3679 sprintf (new_opname, argstring, argnum,
3680 IDENTIFIER_POINTER (function));
3681 }
3682 else
3683 {
3684 /* Function name unknown (call through ptr); just give arg number. */
3685 const char *const argnofun = _("passing arg %d of pointer to function");
703ad42b 3686 new_opname = alloca (strlen (argnofun) + 1 + 25 /*%d*/ + 1);
3e4093b6 3687 sprintf (new_opname, argnofun, argnum);
10d5caec 3688 }
3e4093b6 3689 opname = new_opname;
400fbf9f 3690 }
3e4093b6 3691 pedwarn (msgid, opname);
400fbf9f 3692}
3e4093b6
RS
3693\f
3694/* If VALUE is a compound expr all of whose expressions are constant, then
3695 return its value. Otherwise, return error_mark_node.
15b732b2 3696
3e4093b6
RS
3697 This is for handling COMPOUND_EXPRs as initializer elements
3698 which is allowed with a warning when -pedantic is specified. */
15b732b2 3699
3e4093b6
RS
3700static tree
3701valid_compound_expr_initializer (tree value, tree endtype)
3702{
3703 if (TREE_CODE (value) == COMPOUND_EXPR)
3704 {
3705 if (valid_compound_expr_initializer (TREE_OPERAND (value, 0), endtype)
3706 == error_mark_node)
3707 return error_mark_node;
3708 return valid_compound_expr_initializer (TREE_OPERAND (value, 1),
3709 endtype);
3710 }
3711 else if (! TREE_CONSTANT (value)
3712 && ! initializer_constant_valid_p (value, endtype))
3713 return error_mark_node;
3714 else
3715 return value;
15b732b2 3716}
400fbf9f 3717\f
3e4093b6
RS
3718/* Perform appropriate conversions on the initial value of a variable,
3719 store it in the declaration DECL,
3720 and print any error messages that are appropriate.
3721 If the init is invalid, store an ERROR_MARK. */
400fbf9f 3722
3e4093b6
RS
3723void
3724store_init_value (tree decl, tree init)
400fbf9f 3725{
3e4093b6 3726 tree value, type;
400fbf9f 3727
3e4093b6 3728 /* If variable's type was invalidly declared, just ignore it. */
400fbf9f 3729
3e4093b6
RS
3730 type = TREE_TYPE (decl);
3731 if (TREE_CODE (type) == ERROR_MARK)
3732 return;
400fbf9f 3733
3e4093b6 3734 /* Digest the specified initializer into an expression. */
400fbf9f 3735
3e4093b6 3736 value = digest_init (type, init, TREE_STATIC (decl));
400fbf9f 3737
3e4093b6 3738 /* Store the expression if valid; else report error. */
400fbf9f 3739
3e4093b6
RS
3740 if (warn_traditional && !in_system_header
3741 && AGGREGATE_TYPE_P (TREE_TYPE (decl)) && ! TREE_STATIC (decl))
3742 warning ("traditional C rejects automatic aggregate initialization");
2f6e4e97 3743
3e4093b6 3744 DECL_INITIAL (decl) = value;
400fbf9f 3745
3e4093b6
RS
3746 /* ANSI wants warnings about out-of-range constant initializers. */
3747 STRIP_TYPE_NOPS (value);
3748 constant_expression_warning (value);
400fbf9f 3749
3e4093b6
RS
3750 /* Check if we need to set array size from compound literal size. */
3751 if (TREE_CODE (type) == ARRAY_TYPE
3752 && TYPE_DOMAIN (type) == 0
3753 && value != error_mark_node)
400fbf9f 3754 {
3e4093b6
RS
3755 tree inside_init = init;
3756
3757 if (TREE_CODE (init) == NON_LVALUE_EXPR)
3758 inside_init = TREE_OPERAND (init, 0);
3759 inside_init = fold (inside_init);
3760
3761 if (TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
3762 {
3763 tree decl = COMPOUND_LITERAL_EXPR_DECL (inside_init);
3764
3765 if (TYPE_DOMAIN (TREE_TYPE (decl)))
3766 {
3767 /* For int foo[] = (int [3]){1}; we need to set array size
3768 now since later on array initializer will be just the
3769 brace enclosed list of the compound literal. */
3770 TYPE_DOMAIN (type) = TYPE_DOMAIN (TREE_TYPE (decl));
3771 layout_type (type);
3772 layout_decl (decl, 0);
3773 }
3774 }
400fbf9f 3775 }
3e4093b6
RS
3776}
3777\f
3778/* Methods for storing and printing names for error messages. */
400fbf9f 3779
3e4093b6
RS
3780/* Implement a spelling stack that allows components of a name to be pushed
3781 and popped. Each element on the stack is this structure. */
400fbf9f 3782
3e4093b6
RS
3783struct spelling
3784{
3785 int kind;
3786 union
400fbf9f 3787 {
3e4093b6
RS
3788 int i;
3789 const char *s;
3790 } u;
3791};
2f6e4e97 3792
3e4093b6
RS
3793#define SPELLING_STRING 1
3794#define SPELLING_MEMBER 2
3795#define SPELLING_BOUNDS 3
400fbf9f 3796
3e4093b6
RS
3797static struct spelling *spelling; /* Next stack element (unused). */
3798static struct spelling *spelling_base; /* Spelling stack base. */
3799static int spelling_size; /* Size of the spelling stack. */
400fbf9f 3800
3e4093b6
RS
3801/* Macros to save and restore the spelling stack around push_... functions.
3802 Alternative to SAVE_SPELLING_STACK. */
400fbf9f 3803
3e4093b6
RS
3804#define SPELLING_DEPTH() (spelling - spelling_base)
3805#define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
400fbf9f 3806
3e4093b6
RS
3807/* Push an element on the spelling stack with type KIND and assign VALUE
3808 to MEMBER. */
400fbf9f 3809
3e4093b6
RS
3810#define PUSH_SPELLING(KIND, VALUE, MEMBER) \
3811{ \
3812 int depth = SPELLING_DEPTH (); \
3813 \
3814 if (depth >= spelling_size) \
3815 { \
3816 spelling_size += 10; \
3817 if (spelling_base == 0) \
703ad42b 3818 spelling_base = xmalloc (spelling_size * sizeof (struct spelling)); \
3e4093b6 3819 else \
703ad42b
KG
3820 spelling_base = xrealloc (spelling_base, \
3821 spelling_size * sizeof (struct spelling)); \
3e4093b6
RS
3822 RESTORE_SPELLING_DEPTH (depth); \
3823 } \
3824 \
3825 spelling->kind = (KIND); \
3826 spelling->MEMBER = (VALUE); \
3827 spelling++; \
3828}
400fbf9f 3829
3e4093b6 3830/* Push STRING on the stack. Printed literally. */
400fbf9f 3831
3e4093b6
RS
3832static void
3833push_string (const char *string)
3834{
3835 PUSH_SPELLING (SPELLING_STRING, string, u.s);
3836}
400fbf9f 3837
3e4093b6 3838/* Push a member name on the stack. Printed as '.' STRING. */
400fbf9f 3839
3e4093b6
RS
3840static void
3841push_member_name (tree decl)
3842{
3843 const char *const string
3844 = DECL_NAME (decl) ? IDENTIFIER_POINTER (DECL_NAME (decl)) : "<anonymous>";
3845 PUSH_SPELLING (SPELLING_MEMBER, string, u.s);
3846}
400fbf9f 3847
3e4093b6 3848/* Push an array bounds on the stack. Printed as [BOUNDS]. */
400fbf9f 3849
3e4093b6
RS
3850static void
3851push_array_bounds (int bounds)
3852{
3853 PUSH_SPELLING (SPELLING_BOUNDS, bounds, u.i);
3854}
bb58bec5 3855
3e4093b6 3856/* Compute the maximum size in bytes of the printed spelling. */
400fbf9f 3857
3e4093b6
RS
3858static int
3859spelling_length (void)
3860{
3861 int size = 0;
3862 struct spelling *p;
400fbf9f 3863
3e4093b6
RS
3864 for (p = spelling_base; p < spelling; p++)
3865 {
3866 if (p->kind == SPELLING_BOUNDS)
3867 size += 25;
3868 else
3869 size += strlen (p->u.s) + 1;
3870 }
3871
3872 return size;
400fbf9f 3873}
400fbf9f 3874
3e4093b6 3875/* Print the spelling to BUFFER and return it. */
400fbf9f 3876
3e4093b6
RS
3877static char *
3878print_spelling (char *buffer)
400fbf9f 3879{
3e4093b6
RS
3880 char *d = buffer;
3881 struct spelling *p;
400fbf9f 3882
3e4093b6
RS
3883 for (p = spelling_base; p < spelling; p++)
3884 if (p->kind == SPELLING_BOUNDS)
3885 {
3886 sprintf (d, "[%d]", p->u.i);
3887 d += strlen (d);
3888 }
3889 else
3890 {
3891 const char *s;
3892 if (p->kind == SPELLING_MEMBER)
3893 *d++ = '.';
3894 for (s = p->u.s; (*d = *s++); d++)
3895 ;
3896 }
3897 *d++ = '\0';
3898 return buffer;
3899}
400fbf9f 3900
3e4093b6
RS
3901/* Issue an error message for a bad initializer component.
3902 MSGID identifies the message.
3903 The component name is taken from the spelling stack. */
400fbf9f 3904
3e4093b6
RS
3905void
3906error_init (const char *msgid)
3907{
3908 char *ofwhat;
400fbf9f 3909
3e4093b6 3910 error ("%s", _(msgid));
703ad42b 3911 ofwhat = print_spelling (alloca (spelling_length () + 1));
3e4093b6
RS
3912 if (*ofwhat)
3913 error ("(near initialization for `%s')", ofwhat);
3914}
400fbf9f 3915
3e4093b6
RS
3916/* Issue a pedantic warning for a bad initializer component.
3917 MSGID identifies the message.
3918 The component name is taken from the spelling stack. */
400fbf9f 3919
3e4093b6
RS
3920void
3921pedwarn_init (const char *msgid)
3922{
3923 char *ofwhat;
9f720c3e 3924
3e4093b6 3925 pedwarn ("%s", _(msgid));
703ad42b 3926 ofwhat = print_spelling (alloca (spelling_length () + 1));
3e4093b6
RS
3927 if (*ofwhat)
3928 pedwarn ("(near initialization for `%s')", ofwhat);
3929}
9f720c3e 3930
3e4093b6
RS
3931/* Issue a warning for a bad initializer component.
3932 MSGID identifies the message.
3933 The component name is taken from the spelling stack. */
61179109 3934
3e4093b6
RS
3935static void
3936warning_init (const char *msgid)
3937{
3938 char *ofwhat;
7e842ef8 3939
3e4093b6 3940 warning ("%s", _(msgid));
703ad42b 3941 ofwhat = print_spelling (alloca (spelling_length () + 1));
3e4093b6
RS
3942 if (*ofwhat)
3943 warning ("(near initialization for `%s')", ofwhat);
3944}
3945\f
3946/* Digest the parser output INIT as an initializer for type TYPE.
3947 Return a C expression of type TYPE to represent the initial value.
7e842ef8 3948
3e4093b6
RS
3949 REQUIRE_CONSTANT requests an error if non-constant initializers or
3950 elements are seen. */
7e842ef8 3951
3e4093b6
RS
3952static tree
3953digest_init (tree type, tree init, int require_constant)
3954{
3955 enum tree_code code = TREE_CODE (type);
3956 tree inside_init = init;
7e842ef8 3957
3e4093b6
RS
3958 if (type == error_mark_node
3959 || init == error_mark_node
3960 || TREE_TYPE (init) == error_mark_node)
3961 return error_mark_node;
7e842ef8 3962
3e4093b6
RS
3963 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3964 /* Do not use STRIP_NOPS here. We do not want an enumerator
3965 whose value is 0 to count as a null pointer constant. */
3966 if (TREE_CODE (init) == NON_LVALUE_EXPR)
3967 inside_init = TREE_OPERAND (init, 0);
7e842ef8 3968
3e4093b6 3969 inside_init = fold (inside_init);
7e842ef8 3970
3e4093b6
RS
3971 /* Initialization of an array of chars from a string constant
3972 optionally enclosed in braces. */
7e842ef8 3973
3e4093b6
RS
3974 if (code == ARRAY_TYPE)
3975 {
3976 tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
3977 if ((typ1 == char_type_node
3978 || typ1 == signed_char_type_node
3979 || typ1 == unsigned_char_type_node
3980 || typ1 == unsigned_wchar_type_node
3981 || typ1 == signed_wchar_type_node)
3982 && ((inside_init && TREE_CODE (inside_init) == STRING_CST)))
7e842ef8 3983 {
3e4093b6
RS
3984 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
3985 TYPE_MAIN_VARIANT (type), COMPARE_STRICT))
3986 return inside_init;
7e842ef8 3987
3e4093b6
RS
3988 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)))
3989 != char_type_node)
3990 && TYPE_PRECISION (typ1) == TYPE_PRECISION (char_type_node))
3991 {
3992 error_init ("char-array initialized from wide string");
3993 return error_mark_node;
3994 }
3995 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)))
3996 == char_type_node)
3997 && TYPE_PRECISION (typ1) != TYPE_PRECISION (char_type_node))
3998 {
3999 error_init ("int-array initialized from non-wide string");
4000 return error_mark_node;
7e842ef8 4001 }
2f6e4e97 4002
3e4093b6
RS
4003 TREE_TYPE (inside_init) = type;
4004 if (TYPE_DOMAIN (type) != 0
4005 && TYPE_SIZE (type) != 0
4006 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
4007 /* Subtract 1 (or sizeof (wchar_t))
4008 because it's ok to ignore the terminating null char
4009 that is counted in the length of the constant. */
4010 && 0 > compare_tree_int (TYPE_SIZE_UNIT (type),
4011 TREE_STRING_LENGTH (inside_init)
4012 - ((TYPE_PRECISION (typ1)
4013 != TYPE_PRECISION (char_type_node))
4014 ? (TYPE_PRECISION (wchar_type_node)
4015 / BITS_PER_UNIT)
4016 : 1)))
4017 pedwarn_init ("initializer-string for array of chars is too long");
7e842ef8 4018
3e4093b6 4019 return inside_init;
7e842ef8
PE
4020 }
4021 }
4022
3e4093b6
RS
4023 /* Build a VECTOR_CST from a *constant* vector constructor. If the
4024 vector constructor is not constant (e.g. {1,2,3,foo()}) then punt
4025 below and handle as a constructor. */
4026 if (code == VECTOR_TYPE
4027 && comptypes (TREE_TYPE (inside_init), type, COMPARE_STRICT)
4028 && TREE_CONSTANT (inside_init))
4029 {
4030 if (TREE_CODE (inside_init) == VECTOR_CST
4031 && comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
4032 TYPE_MAIN_VARIANT (type),
4033 COMPARE_STRICT))
4034 return inside_init;
4035 else
4036 return build_vector (type, CONSTRUCTOR_ELTS (inside_init));
4037 }
6035d635 4038
3e4093b6
RS
4039 /* Any type can be initialized
4040 from an expression of the same type, optionally with braces. */
400fbf9f 4041
3e4093b6
RS
4042 if (inside_init && TREE_TYPE (inside_init) != 0
4043 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
4044 TYPE_MAIN_VARIANT (type), COMPARE_STRICT)
4045 || (code == ARRAY_TYPE
4046 && comptypes (TREE_TYPE (inside_init), type, COMPARE_STRICT))
4047 || (code == VECTOR_TYPE
4048 && comptypes (TREE_TYPE (inside_init), type, COMPARE_STRICT))
4049 || (code == POINTER_TYPE
4050 && (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
4051 || TREE_CODE (TREE_TYPE (inside_init)) == FUNCTION_TYPE)
4052 && comptypes (TREE_TYPE (TREE_TYPE (inside_init)),
4053 TREE_TYPE (type), COMPARE_STRICT))))
4054 {
4055 if (code == POINTER_TYPE)
b494fd98
EB
4056 {
4057 inside_init = default_function_array_conversion (inside_init);
4058
4059 if (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE)
4060 {
4061 error_init ("invalid use of non-lvalue array");
4062 return error_mark_node;
4063 }
4064 }
4065
bae39a73
NS
4066 if (code == VECTOR_TYPE)
4067 /* Although the types are compatible, we may require a
4068 conversion. */
4069 inside_init = convert (type, inside_init);
3e4093b6
RS
4070
4071 if (require_constant && !flag_isoc99
4072 && TREE_CODE (inside_init) == COMPOUND_LITERAL_EXPR)
400fbf9f 4073 {
3e4093b6
RS
4074 /* As an extension, allow initializing objects with static storage
4075 duration with compound literals (which are then treated just as
4076 the brace enclosed list they contain). */
4077 tree decl = COMPOUND_LITERAL_EXPR_DECL (inside_init);
4078 inside_init = DECL_INITIAL (decl);
400fbf9f 4079 }
3e4093b6
RS
4080
4081 if (code == ARRAY_TYPE && TREE_CODE (inside_init) != STRING_CST
4082 && TREE_CODE (inside_init) != CONSTRUCTOR)
400fbf9f 4083 {
3e4093b6
RS
4084 error_init ("array initialized from non-constant array expression");
4085 return error_mark_node;
400fbf9f 4086 }
400fbf9f 4087
3e4093b6
RS
4088 if (optimize && TREE_CODE (inside_init) == VAR_DECL)
4089 inside_init = decl_constant_value_for_broken_optimization (inside_init);
2f6e4e97 4090
3e4093b6
RS
4091 /* Compound expressions can only occur here if -pedantic or
4092 -pedantic-errors is specified. In the later case, we always want
4093 an error. In the former case, we simply want a warning. */
4094 if (require_constant && pedantic
4095 && TREE_CODE (inside_init) == COMPOUND_EXPR)
4096 {
4097 inside_init
4098 = valid_compound_expr_initializer (inside_init,
4099 TREE_TYPE (inside_init));
4100 if (inside_init == error_mark_node)
4101 error_init ("initializer element is not constant");
2f6e4e97 4102 else
3e4093b6
RS
4103 pedwarn_init ("initializer element is not constant");
4104 if (flag_pedantic_errors)
4105 inside_init = error_mark_node;
4106 }
4107 else if (require_constant
4108 && (!TREE_CONSTANT (inside_init)
4109 /* This test catches things like `7 / 0' which
4110 result in an expression for which TREE_CONSTANT
4111 is true, but which is not actually something
4112 that is a legal constant. We really should not
4113 be using this function, because it is a part of
4114 the back-end. Instead, the expression should
4115 already have been turned into ERROR_MARK_NODE. */
4116 || !initializer_constant_valid_p (inside_init,
4117 TREE_TYPE (inside_init))))
4118 {
4119 error_init ("initializer element is not constant");
4120 inside_init = error_mark_node;
8b40563c 4121 }
f735a153 4122
3e4093b6
RS
4123 return inside_init;
4124 }
f735a153 4125
3e4093b6 4126 /* Handle scalar types, including conversions. */
400fbf9f 4127
3e4093b6
RS
4128 if (code == INTEGER_TYPE || code == REAL_TYPE || code == POINTER_TYPE
4129 || code == ENUMERAL_TYPE || code == BOOLEAN_TYPE || code == COMPLEX_TYPE)
400fbf9f 4130 {
3e4093b6
RS
4131 /* Note that convert_for_assignment calls default_conversion
4132 for arrays and functions. We must not call it in the
4133 case where inside_init is a null pointer constant. */
4134 inside_init
4135 = convert_for_assignment (type, init, _("initialization"),
4136 NULL_TREE, NULL_TREE, 0);
2f6e4e97 4137
3e4093b6 4138 if (require_constant && ! TREE_CONSTANT (inside_init))
400fbf9f 4139 {
3e4093b6
RS
4140 error_init ("initializer element is not constant");
4141 inside_init = error_mark_node;
400fbf9f 4142 }
3e4093b6
RS
4143 else if (require_constant
4144 && initializer_constant_valid_p (inside_init, TREE_TYPE (inside_init)) == 0)
400fbf9f 4145 {
3e4093b6
RS
4146 error_init ("initializer element is not computable at load time");
4147 inside_init = error_mark_node;
400fbf9f 4148 }
3e4093b6
RS
4149
4150 return inside_init;
400fbf9f 4151 }
d9fc6069 4152
3e4093b6 4153 /* Come here only for records and arrays. */
d9fc6069 4154
3e4093b6 4155 if (COMPLETE_TYPE_P (type) && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
d9fc6069 4156 {
3e4093b6
RS
4157 error_init ("variable-sized object may not be initialized");
4158 return error_mark_node;
d9fc6069 4159 }
3e4093b6
RS
4160
4161 error_init ("invalid initializer");
4162 return error_mark_node;
d9fc6069 4163}
400fbf9f 4164\f
3e4093b6 4165/* Handle initializers that use braces. */
400fbf9f 4166
3e4093b6
RS
4167/* Type of object we are accumulating a constructor for.
4168 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
4169static tree constructor_type;
400fbf9f 4170
3e4093b6
RS
4171/* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
4172 left to fill. */
4173static tree constructor_fields;
400fbf9f 4174
3e4093b6
RS
4175/* For an ARRAY_TYPE, this is the specified index
4176 at which to store the next element we get. */
4177static tree constructor_index;
400fbf9f 4178
3e4093b6
RS
4179/* For an ARRAY_TYPE, this is the maximum index. */
4180static tree constructor_max_index;
400fbf9f 4181
3e4093b6
RS
4182/* For a RECORD_TYPE, this is the first field not yet written out. */
4183static tree constructor_unfilled_fields;
400fbf9f 4184
3e4093b6
RS
4185/* For an ARRAY_TYPE, this is the index of the first element
4186 not yet written out. */
4187static tree constructor_unfilled_index;
895ea614 4188
3e4093b6
RS
4189/* In a RECORD_TYPE, the byte index of the next consecutive field.
4190 This is so we can generate gaps between fields, when appropriate. */
4191static tree constructor_bit_index;
10d5caec 4192
3e4093b6
RS
4193/* If we are saving up the elements rather than allocating them,
4194 this is the list of elements so far (in reverse order,
4195 most recent first). */
4196static tree constructor_elements;
ad47f1e5 4197
3e4093b6
RS
4198/* 1 if constructor should be incrementally stored into a constructor chain,
4199 0 if all the elements should be kept in AVL tree. */
4200static int constructor_incremental;
ad47f1e5 4201
3e4093b6
RS
4202/* 1 if so far this constructor's elements are all compile-time constants. */
4203static int constructor_constant;
ad47f1e5 4204
3e4093b6
RS
4205/* 1 if so far this constructor's elements are all valid address constants. */
4206static int constructor_simple;
ad47f1e5 4207
3e4093b6
RS
4208/* 1 if this constructor is erroneous so far. */
4209static int constructor_erroneous;
d45cf215 4210
3e4093b6
RS
4211/* Structure for managing pending initializer elements, organized as an
4212 AVL tree. */
d45cf215 4213
3e4093b6 4214struct init_node
d45cf215 4215{
3e4093b6
RS
4216 struct init_node *left, *right;
4217 struct init_node *parent;
4218 int balance;
4219 tree purpose;
4220 tree value;
d45cf215
RS
4221};
4222
3e4093b6
RS
4223/* Tree of pending elements at this constructor level.
4224 These are elements encountered out of order
4225 which belong at places we haven't reached yet in actually
4226 writing the output.
4227 Will never hold tree nodes across GC runs. */
4228static struct init_node *constructor_pending_elts;
d45cf215 4229
3e4093b6
RS
4230/* The SPELLING_DEPTH of this constructor. */
4231static int constructor_depth;
d45cf215 4232
3e4093b6
RS
4233/* 0 if implicitly pushing constructor levels is allowed. */
4234int constructor_no_implicit = 0; /* 0 for C; 1 for some other languages. */
d45cf215 4235
3e4093b6
RS
4236static int require_constant_value;
4237static int require_constant_elements;
d45cf215 4238
3e4093b6
RS
4239/* DECL node for which an initializer is being read.
4240 0 means we are reading a constructor expression
4241 such as (struct foo) {...}. */
4242static tree constructor_decl;
d45cf215 4243
3e4093b6
RS
4244/* start_init saves the ASMSPEC arg here for really_start_incremental_init. */
4245static const char *constructor_asmspec;
d45cf215 4246
3e4093b6
RS
4247/* Nonzero if this is an initializer for a top-level decl. */
4248static int constructor_top_level;
d45cf215 4249
3e4093b6
RS
4250/* Nonzero if there were any member designators in this initializer. */
4251static int constructor_designated;
d45cf215 4252
3e4093b6
RS
4253/* Nesting depth of designator list. */
4254static int designator_depth;
d45cf215 4255
3e4093b6
RS
4256/* Nonzero if there were diagnosed errors in this designator list. */
4257static int designator_errorneous;
d45cf215 4258
3e4093b6
RS
4259\f
4260/* This stack has a level for each implicit or explicit level of
4261 structuring in the initializer, including the outermost one. It
4262 saves the values of most of the variables above. */
d45cf215 4263
3e4093b6
RS
4264struct constructor_range_stack;
4265
4266struct constructor_stack
d45cf215 4267{
3e4093b6
RS
4268 struct constructor_stack *next;
4269 tree type;
4270 tree fields;
4271 tree index;
4272 tree max_index;
4273 tree unfilled_index;
4274 tree unfilled_fields;
4275 tree bit_index;
4276 tree elements;
4277 struct init_node *pending_elts;
4278 int offset;
4279 int depth;
4280 /* If nonzero, this value should replace the entire
4281 constructor at this level. */
4282 tree replacement_value;
4283 struct constructor_range_stack *range_stack;
4284 char constant;
4285 char simple;
4286 char implicit;
4287 char erroneous;
4288 char outer;
4289 char incremental;
4290 char designated;
4291};
d45cf215 4292
3e4093b6 4293struct constructor_stack *constructor_stack;
d45cf215 4294
3e4093b6
RS
4295/* This stack represents designators from some range designator up to
4296 the last designator in the list. */
d45cf215 4297
3e4093b6
RS
4298struct constructor_range_stack
4299{
4300 struct constructor_range_stack *next, *prev;
4301 struct constructor_stack *stack;
4302 tree range_start;
4303 tree index;
4304 tree range_end;
4305 tree fields;
4306};
d45cf215 4307
3e4093b6 4308struct constructor_range_stack *constructor_range_stack;
d45cf215 4309
3e4093b6
RS
4310/* This stack records separate initializers that are nested.
4311 Nested initializers can't happen in ANSI C, but GNU C allows them
4312 in cases like { ... (struct foo) { ... } ... }. */
d45cf215 4313
3e4093b6 4314struct initializer_stack
d45cf215 4315{
3e4093b6
RS
4316 struct initializer_stack *next;
4317 tree decl;
4318 const char *asmspec;
4319 struct constructor_stack *constructor_stack;
4320 struct constructor_range_stack *constructor_range_stack;
4321 tree elements;
4322 struct spelling *spelling;
4323 struct spelling *spelling_base;
4324 int spelling_size;
4325 char top_level;
4326 char require_constant_value;
4327 char require_constant_elements;
4328};
d45cf215 4329
3e4093b6
RS
4330struct initializer_stack *initializer_stack;
4331\f
4332/* Prepare to parse and output the initializer for variable DECL. */
400fbf9f
JW
4333
4334void
3e4093b6 4335start_init (tree decl, tree asmspec_tree, int top_level)
400fbf9f 4336{
3e4093b6 4337 const char *locus;
703ad42b 4338 struct initializer_stack *p = xmalloc (sizeof (struct initializer_stack));
3e4093b6 4339 const char *asmspec = 0;
400fbf9f 4340
3e4093b6
RS
4341 if (asmspec_tree)
4342 asmspec = TREE_STRING_POINTER (asmspec_tree);
400fbf9f 4343
3e4093b6
RS
4344 p->decl = constructor_decl;
4345 p->asmspec = constructor_asmspec;
4346 p->require_constant_value = require_constant_value;
4347 p->require_constant_elements = require_constant_elements;
4348 p->constructor_stack = constructor_stack;
4349 p->constructor_range_stack = constructor_range_stack;
4350 p->elements = constructor_elements;
4351 p->spelling = spelling;
4352 p->spelling_base = spelling_base;
4353 p->spelling_size = spelling_size;
4354 p->top_level = constructor_top_level;
4355 p->next = initializer_stack;
4356 initializer_stack = p;
400fbf9f 4357
3e4093b6
RS
4358 constructor_decl = decl;
4359 constructor_asmspec = asmspec;
4360 constructor_designated = 0;
4361 constructor_top_level = top_level;
400fbf9f 4362
3e4093b6
RS
4363 if (decl != 0)
4364 {
4365 require_constant_value = TREE_STATIC (decl);
4366 require_constant_elements
4367 = ((TREE_STATIC (decl) || (pedantic && !flag_isoc99))
4368 /* For a scalar, you can always use any value to initialize,
4369 even within braces. */
4370 && (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
4371 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
4372 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
4373 || TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE));
4374 locus = IDENTIFIER_POINTER (DECL_NAME (decl));
4375 }
4376 else
4377 {
4378 require_constant_value = 0;
4379 require_constant_elements = 0;
4380 locus = "(anonymous)";
4381 }
b71c7f8a 4382
3e4093b6
RS
4383 constructor_stack = 0;
4384 constructor_range_stack = 0;
b71c7f8a 4385
3e4093b6
RS
4386 missing_braces_mentioned = 0;
4387
4388 spelling_base = 0;
4389 spelling_size = 0;
4390 RESTORE_SPELLING_DEPTH (0);
4391
4392 if (locus)
4393 push_string (locus);
4394}
4395
4396void
4397finish_init (void)
b71c7f8a 4398{
3e4093b6 4399 struct initializer_stack *p = initializer_stack;
b71c7f8a 4400
3e4093b6
RS
4401 /* Free the whole constructor stack of this initializer. */
4402 while (constructor_stack)
4403 {
4404 struct constructor_stack *q = constructor_stack;
4405 constructor_stack = q->next;
4406 free (q);
4407 }
4408
4409 if (constructor_range_stack)
4410 abort ();
4411
4412 /* Pop back to the data of the outer initializer (if any). */
4413 constructor_decl = p->decl;
4414 constructor_asmspec = p->asmspec;
4415 require_constant_value = p->require_constant_value;
4416 require_constant_elements = p->require_constant_elements;
4417 constructor_stack = p->constructor_stack;
4418 constructor_range_stack = p->constructor_range_stack;
4419 constructor_elements = p->elements;
4420 spelling = p->spelling;
4421 spelling_base = p->spelling_base;
4422 spelling_size = p->spelling_size;
4423 constructor_top_level = p->top_level;
4424 initializer_stack = p->next;
4425 free (p);
b71c7f8a 4426}
400fbf9f 4427\f
3e4093b6
RS
4428/* Call here when we see the initializer is surrounded by braces.
4429 This is instead of a call to push_init_level;
4430 it is matched by a call to pop_init_level.
400fbf9f 4431
3e4093b6
RS
4432 TYPE is the type to initialize, for a constructor expression.
4433 For an initializer for a decl, TYPE is zero. */
400fbf9f 4434
3e4093b6
RS
4435void
4436really_start_incremental_init (tree type)
400fbf9f 4437{
703ad42b 4438 struct constructor_stack *p = xmalloc (sizeof (struct constructor_stack));
400fbf9f 4439
3e4093b6
RS
4440 if (type == 0)
4441 type = TREE_TYPE (constructor_decl);
400fbf9f 4442
3e4093b6
RS
4443 if ((*targetm.vector_opaque_p) (type))
4444 error ("opaque vector types cannot be initialized");
400fbf9f 4445
3e4093b6
RS
4446 p->type = constructor_type;
4447 p->fields = constructor_fields;
4448 p->index = constructor_index;
4449 p->max_index = constructor_max_index;
4450 p->unfilled_index = constructor_unfilled_index;
4451 p->unfilled_fields = constructor_unfilled_fields;
4452 p->bit_index = constructor_bit_index;
4453 p->elements = constructor_elements;
4454 p->constant = constructor_constant;
4455 p->simple = constructor_simple;
4456 p->erroneous = constructor_erroneous;
4457 p->pending_elts = constructor_pending_elts;
4458 p->depth = constructor_depth;
4459 p->replacement_value = 0;
4460 p->implicit = 0;
4461 p->range_stack = 0;
4462 p->outer = 0;
4463 p->incremental = constructor_incremental;
4464 p->designated = constructor_designated;
4465 p->next = 0;
4466 constructor_stack = p;
b13aca19 4467
3e4093b6
RS
4468 constructor_constant = 1;
4469 constructor_simple = 1;
4470 constructor_depth = SPELLING_DEPTH ();
4471 constructor_elements = 0;
4472 constructor_pending_elts = 0;
4473 constructor_type = type;
4474 constructor_incremental = 1;
4475 constructor_designated = 0;
4476 designator_depth = 0;
4477 designator_errorneous = 0;
400fbf9f 4478
3e4093b6
RS
4479 if (TREE_CODE (constructor_type) == RECORD_TYPE
4480 || TREE_CODE (constructor_type) == UNION_TYPE)
400fbf9f 4481 {
3e4093b6
RS
4482 constructor_fields = TYPE_FIELDS (constructor_type);
4483 /* Skip any nameless bit fields at the beginning. */
4484 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
4485 && DECL_NAME (constructor_fields) == 0)
4486 constructor_fields = TREE_CHAIN (constructor_fields);
05bccae2 4487
3e4093b6
RS
4488 constructor_unfilled_fields = constructor_fields;
4489 constructor_bit_index = bitsize_zero_node;
400fbf9f 4490 }
3e4093b6
RS
4491 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
4492 {
4493 if (TYPE_DOMAIN (constructor_type))
4494 {
4495 constructor_max_index
4496 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
400fbf9f 4497
3e4093b6
RS
4498 /* Detect non-empty initializations of zero-length arrays. */
4499 if (constructor_max_index == NULL_TREE
4500 && TYPE_SIZE (constructor_type))
4501 constructor_max_index = build_int_2 (-1, -1);
400fbf9f 4502
3e4093b6
RS
4503 /* constructor_max_index needs to be an INTEGER_CST. Attempts
4504 to initialize VLAs will cause a proper error; avoid tree
4505 checking errors as well by setting a safe value. */
4506 if (constructor_max_index
4507 && TREE_CODE (constructor_max_index) != INTEGER_CST)
4508 constructor_max_index = build_int_2 (-1, -1);
59c83dbf 4509
3e4093b6
RS
4510 constructor_index
4511 = convert (bitsizetype,
4512 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
59c83dbf 4513 }
3e4093b6
RS
4514 else
4515 constructor_index = bitsize_zero_node;
59c83dbf 4516
3e4093b6
RS
4517 constructor_unfilled_index = constructor_index;
4518 }
4519 else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
4520 {
4521 /* Vectors are like simple fixed-size arrays. */
4522 constructor_max_index =
4523 build_int_2 (TYPE_VECTOR_SUBPARTS (constructor_type) - 1, 0);
4524 constructor_index = convert (bitsizetype, bitsize_zero_node);
4525 constructor_unfilled_index = constructor_index;
4526 }
4527 else
4528 {
4529 /* Handle the case of int x = {5}; */
4530 constructor_fields = constructor_type;
4531 constructor_unfilled_fields = constructor_type;
4532 }
4533}
4534\f
4535/* Push down into a subobject, for initialization.
4536 If this is for an explicit set of braces, IMPLICIT is 0.
4537 If it is because the next element belongs at a lower level,
4538 IMPLICIT is 1 (or 2 if the push is because of designator list). */
400fbf9f 4539
3e4093b6
RS
4540void
4541push_init_level (int implicit)
4542{
4543 struct constructor_stack *p;
4544 tree value = NULL_TREE;
400fbf9f 4545
3e4093b6
RS
4546 /* If we've exhausted any levels that didn't have braces,
4547 pop them now. */
4548 while (constructor_stack->implicit)
4549 {
4550 if ((TREE_CODE (constructor_type) == RECORD_TYPE
4551 || TREE_CODE (constructor_type) == UNION_TYPE)
4552 && constructor_fields == 0)
4553 process_init_element (pop_init_level (1));
4554 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
4555 && constructor_max_index
4556 && tree_int_cst_lt (constructor_max_index, constructor_index))
4557 process_init_element (pop_init_level (1));
4558 else
4559 break;
4560 }
400fbf9f 4561
3e4093b6
RS
4562 /* Unless this is an explicit brace, we need to preserve previous
4563 content if any. */
4564 if (implicit)
4565 {
4566 if ((TREE_CODE (constructor_type) == RECORD_TYPE
4567 || TREE_CODE (constructor_type) == UNION_TYPE)
4568 && constructor_fields)
4569 value = find_init_member (constructor_fields);
4570 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
4571 value = find_init_member (constructor_index);
400fbf9f
JW
4572 }
4573
703ad42b 4574 p = xmalloc (sizeof (struct constructor_stack));
3e4093b6
RS
4575 p->type = constructor_type;
4576 p->fields = constructor_fields;
4577 p->index = constructor_index;
4578 p->max_index = constructor_max_index;
4579 p->unfilled_index = constructor_unfilled_index;
4580 p->unfilled_fields = constructor_unfilled_fields;
4581 p->bit_index = constructor_bit_index;
4582 p->elements = constructor_elements;
4583 p->constant = constructor_constant;
4584 p->simple = constructor_simple;
4585 p->erroneous = constructor_erroneous;
4586 p->pending_elts = constructor_pending_elts;
4587 p->depth = constructor_depth;
4588 p->replacement_value = 0;
4589 p->implicit = implicit;
4590 p->outer = 0;
4591 p->incremental = constructor_incremental;
4592 p->designated = constructor_designated;
4593 p->next = constructor_stack;
4594 p->range_stack = 0;
4595 constructor_stack = p;
400fbf9f 4596
3e4093b6
RS
4597 constructor_constant = 1;
4598 constructor_simple = 1;
4599 constructor_depth = SPELLING_DEPTH ();
4600 constructor_elements = 0;
4601 constructor_incremental = 1;
4602 constructor_designated = 0;
4603 constructor_pending_elts = 0;
4604 if (!implicit)
400fbf9f 4605 {
3e4093b6
RS
4606 p->range_stack = constructor_range_stack;
4607 constructor_range_stack = 0;
4608 designator_depth = 0;
4609 designator_errorneous = 0;
4610 }
400fbf9f 4611
3e4093b6
RS
4612 /* Don't die if an entire brace-pair level is superfluous
4613 in the containing level. */
4614 if (constructor_type == 0)
4615 ;
4616 else if (TREE_CODE (constructor_type) == RECORD_TYPE
4617 || TREE_CODE (constructor_type) == UNION_TYPE)
4618 {
4619 /* Don't die if there are extra init elts at the end. */
4620 if (constructor_fields == 0)
4621 constructor_type = 0;
4622 else
400fbf9f 4623 {
3e4093b6
RS
4624 constructor_type = TREE_TYPE (constructor_fields);
4625 push_member_name (constructor_fields);
4626 constructor_depth++;
400fbf9f 4627 }
3e4093b6
RS
4628 }
4629 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
4630 {
4631 constructor_type = TREE_TYPE (constructor_type);
4632 push_array_bounds (tree_low_cst (constructor_index, 0));
4633 constructor_depth++;
400fbf9f
JW
4634 }
4635
3e4093b6 4636 if (constructor_type == 0)
400fbf9f 4637 {
3e4093b6
RS
4638 error_init ("extra brace group at end of initializer");
4639 constructor_fields = 0;
4640 constructor_unfilled_fields = 0;
4641 return;
400fbf9f
JW
4642 }
4643
3e4093b6
RS
4644 if (value && TREE_CODE (value) == CONSTRUCTOR)
4645 {
4646 constructor_constant = TREE_CONSTANT (value);
4647 constructor_simple = TREE_STATIC (value);
4648 constructor_elements = CONSTRUCTOR_ELTS (value);
4649 if (constructor_elements
4650 && (TREE_CODE (constructor_type) == RECORD_TYPE
4651 || TREE_CODE (constructor_type) == ARRAY_TYPE))
4652 set_nonincremental_init ();
4653 }
400fbf9f 4654
3e4093b6
RS
4655 if (implicit == 1 && warn_missing_braces && !missing_braces_mentioned)
4656 {
4657 missing_braces_mentioned = 1;
4658 warning_init ("missing braces around initializer");
4659 }
400fbf9f 4660
3e4093b6
RS
4661 if (TREE_CODE (constructor_type) == RECORD_TYPE
4662 || TREE_CODE (constructor_type) == UNION_TYPE)
4663 {
4664 constructor_fields = TYPE_FIELDS (constructor_type);
4665 /* Skip any nameless bit fields at the beginning. */
4666 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
4667 && DECL_NAME (constructor_fields) == 0)
4668 constructor_fields = TREE_CHAIN (constructor_fields);
103b7b17 4669
3e4093b6
RS
4670 constructor_unfilled_fields = constructor_fields;
4671 constructor_bit_index = bitsize_zero_node;
4672 }
4673 else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
4674 {
4675 /* Vectors are like simple fixed-size arrays. */
4676 constructor_max_index =
4677 build_int_2 (TYPE_VECTOR_SUBPARTS (constructor_type) - 1, 0);
4678 constructor_index = convert (bitsizetype, integer_zero_node);
4679 constructor_unfilled_index = constructor_index;
4680 }
4681 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
4682 {
4683 if (TYPE_DOMAIN (constructor_type))
4684 {
4685 constructor_max_index
4686 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
400fbf9f 4687
3e4093b6
RS
4688 /* Detect non-empty initializations of zero-length arrays. */
4689 if (constructor_max_index == NULL_TREE
4690 && TYPE_SIZE (constructor_type))
4691 constructor_max_index = build_int_2 (-1, -1);
de520661 4692
3e4093b6
RS
4693 /* constructor_max_index needs to be an INTEGER_CST. Attempts
4694 to initialize VLAs will cause a proper error; avoid tree
4695 checking errors as well by setting a safe value. */
4696 if (constructor_max_index
4697 && TREE_CODE (constructor_max_index) != INTEGER_CST)
4698 constructor_max_index = build_int_2 (-1, -1);
b62acd60 4699
3e4093b6
RS
4700 constructor_index
4701 = convert (bitsizetype,
4702 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
4703 }
4704 else
4705 constructor_index = bitsize_zero_node;
de520661 4706
3e4093b6
RS
4707 constructor_unfilled_index = constructor_index;
4708 if (value && TREE_CODE (value) == STRING_CST)
4709 {
4710 /* We need to split the char/wchar array into individual
4711 characters, so that we don't have to special case it
4712 everywhere. */
4713 set_nonincremental_init_from_string (value);
4714 }
4715 }
4716 else
4717 {
4718 warning_init ("braces around scalar initializer");
4719 constructor_fields = constructor_type;
4720 constructor_unfilled_fields = constructor_type;
4721 }
4722}
8b6a5902 4723
3e4093b6
RS
4724/* At the end of an implicit or explicit brace level,
4725 finish up that level of constructor.
4726 If we were outputting the elements as they are read, return 0
4727 from inner levels (process_init_element ignores that),
4728 but return error_mark_node from the outermost level
4729 (that's what we want to put in DECL_INITIAL).
4730 Otherwise, return a CONSTRUCTOR expression. */
de520661 4731
3e4093b6
RS
4732tree
4733pop_init_level (int implicit)
4734{
4735 struct constructor_stack *p;
4736 tree constructor = 0;
de520661 4737
3e4093b6
RS
4738 if (implicit == 0)
4739 {
4740 /* When we come to an explicit close brace,
4741 pop any inner levels that didn't have explicit braces. */
4742 while (constructor_stack->implicit)
4743 process_init_element (pop_init_level (1));
de520661 4744
3e4093b6
RS
4745 if (constructor_range_stack)
4746 abort ();
4747 }
e5e809f4 4748
3e4093b6 4749 p = constructor_stack;
e5e809f4 4750
3e4093b6
RS
4751 /* Error for initializing a flexible array member, or a zero-length
4752 array member in an inappropriate context. */
4753 if (constructor_type && constructor_fields
4754 && TREE_CODE (constructor_type) == ARRAY_TYPE
4755 && TYPE_DOMAIN (constructor_type)
4756 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type)))
4757 {
4758 /* Silently discard empty initializations. The parser will
4759 already have pedwarned for empty brackets. */
4760 if (integer_zerop (constructor_unfilled_index))
4761 constructor_type = NULL_TREE;
4762 else if (! TYPE_SIZE (constructor_type))
4763 {
4764 if (constructor_depth > 2)
4765 error_init ("initialization of flexible array member in a nested context");
4766 else if (pedantic)
4767 pedwarn_init ("initialization of a flexible array member");
de520661 4768
3e4093b6
RS
4769 /* We have already issued an error message for the existence
4770 of a flexible array member not at the end of the structure.
4771 Discard the initializer so that we do not abort later. */
4772 if (TREE_CHAIN (constructor_fields) != NULL_TREE)
4773 constructor_type = NULL_TREE;
4774 }
4775 else
4776 /* Zero-length arrays are no longer special, so we should no longer
4777 get here. */
4778 abort ();
4779 }
de520661 4780
3e4093b6
RS
4781 /* Warn when some struct elements are implicitly initialized to zero. */
4782 if (extra_warnings
4783 && constructor_type
4784 && TREE_CODE (constructor_type) == RECORD_TYPE
4785 && constructor_unfilled_fields)
4786 {
4787 /* Do not warn for flexible array members or zero-length arrays. */
4788 while (constructor_unfilled_fields
4789 && (! DECL_SIZE (constructor_unfilled_fields)
4790 || integer_zerop (DECL_SIZE (constructor_unfilled_fields))))
4791 constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
cc77d4d5 4792
3e4093b6
RS
4793 /* Do not warn if this level of the initializer uses member
4794 designators; it is likely to be deliberate. */
4795 if (constructor_unfilled_fields && !constructor_designated)
4796 {
4797 push_member_name (constructor_unfilled_fields);
4798 warning_init ("missing initializer");
4799 RESTORE_SPELLING_DEPTH (constructor_depth);
4800 }
4801 }
de520661 4802
3e4093b6
RS
4803 /* Now output all pending elements. */
4804 constructor_incremental = 1;
4805 output_pending_init_elements (1);
de520661 4806
3e4093b6
RS
4807 /* Pad out the end of the structure. */
4808 if (p->replacement_value)
4809 /* If this closes a superfluous brace pair,
4810 just pass out the element between them. */
4811 constructor = p->replacement_value;
4812 else if (constructor_type == 0)
4813 ;
4814 else if (TREE_CODE (constructor_type) != RECORD_TYPE
4815 && TREE_CODE (constructor_type) != UNION_TYPE
4816 && TREE_CODE (constructor_type) != ARRAY_TYPE
4817 && TREE_CODE (constructor_type) != VECTOR_TYPE)
4818 {
4819 /* A nonincremental scalar initializer--just return
4820 the element, after verifying there is just one. */
4821 if (constructor_elements == 0)
4822 {
4823 if (!constructor_erroneous)
4824 error_init ("empty scalar initializer");
4825 constructor = error_mark_node;
4826 }
4827 else if (TREE_CHAIN (constructor_elements) != 0)
4828 {
4829 error_init ("extra elements in scalar initializer");
4830 constructor = TREE_VALUE (constructor_elements);
4831 }
4832 else
4833 constructor = TREE_VALUE (constructor_elements);
4834 }
4835 else
4836 {
4837 if (constructor_erroneous)
4838 constructor = error_mark_node;
4839 else
4840 {
4841 constructor = build_constructor (constructor_type,
4842 nreverse (constructor_elements));
4843 if (constructor_constant)
4844 TREE_CONSTANT (constructor) = 1;
4845 if (constructor_constant && constructor_simple)
4846 TREE_STATIC (constructor) = 1;
4847 }
4848 }
de520661 4849
3e4093b6
RS
4850 constructor_type = p->type;
4851 constructor_fields = p->fields;
4852 constructor_index = p->index;
4853 constructor_max_index = p->max_index;
4854 constructor_unfilled_index = p->unfilled_index;
4855 constructor_unfilled_fields = p->unfilled_fields;
4856 constructor_bit_index = p->bit_index;
4857 constructor_elements = p->elements;
4858 constructor_constant = p->constant;
4859 constructor_simple = p->simple;
4860 constructor_erroneous = p->erroneous;
4861 constructor_incremental = p->incremental;
4862 constructor_designated = p->designated;
4863 constructor_pending_elts = p->pending_elts;
4864 constructor_depth = p->depth;
4865 if (!p->implicit)
4866 constructor_range_stack = p->range_stack;
4867 RESTORE_SPELLING_DEPTH (constructor_depth);
de520661 4868
3e4093b6
RS
4869 constructor_stack = p->next;
4870 free (p);
b621a4dd 4871
3e4093b6
RS
4872 if (constructor == 0)
4873 {
4874 if (constructor_stack == 0)
4875 return error_mark_node;
4876 return NULL_TREE;
4877 }
4878 return constructor;
4879}
8b6a5902 4880
3e4093b6
RS
4881/* Common handling for both array range and field name designators.
4882 ARRAY argument is nonzero for array ranges. Returns zero for success. */
400fbf9f 4883
3e4093b6
RS
4884static int
4885set_designator (int array)
de520661 4886{
3e4093b6
RS
4887 tree subtype;
4888 enum tree_code subcode;
de520661 4889
3e4093b6
RS
4890 /* Don't die if an entire brace-pair level is superfluous
4891 in the containing level. */
4892 if (constructor_type == 0)
4893 return 1;
de520661 4894
3e4093b6
RS
4895 /* If there were errors in this designator list already, bail out silently. */
4896 if (designator_errorneous)
4897 return 1;
e28cae4f 4898
3e4093b6
RS
4899 if (!designator_depth)
4900 {
4901 if (constructor_range_stack)
4902 abort ();
de520661 4903
3e4093b6
RS
4904 /* Designator list starts at the level of closest explicit
4905 braces. */
4906 while (constructor_stack->implicit)
4907 process_init_element (pop_init_level (1));
4908 constructor_designated = 1;
4909 return 0;
4910 }
de520661 4911
3e4093b6
RS
4912 if (constructor_no_implicit)
4913 {
4914 error_init ("initialization designators may not nest");
4915 return 1;
4916 }
de520661 4917
3e4093b6
RS
4918 if (TREE_CODE (constructor_type) == RECORD_TYPE
4919 || TREE_CODE (constructor_type) == UNION_TYPE)
3c3fa147 4920 {
3e4093b6
RS
4921 subtype = TREE_TYPE (constructor_fields);
4922 if (subtype != error_mark_node)
4923 subtype = TYPE_MAIN_VARIANT (subtype);
3c3fa147 4924 }
3e4093b6 4925 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
de520661 4926 {
3e4093b6 4927 subtype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
de520661 4928 }
3e4093b6
RS
4929 else
4930 abort ();
400fbf9f 4931
3e4093b6
RS
4932 subcode = TREE_CODE (subtype);
4933 if (array && subcode != ARRAY_TYPE)
4934 {
4935 error_init ("array index in non-array initializer");
4936 return 1;
4937 }
4938 else if (!array && subcode != RECORD_TYPE && subcode != UNION_TYPE)
4939 {
4940 error_init ("field name not in record or union initializer");
4941 return 1;
4942 }
d45cf215 4943
3e4093b6
RS
4944 constructor_designated = 1;
4945 push_init_level (2);
4946 return 0;
de520661 4947}
400fbf9f 4948
3e4093b6
RS
4949/* If there are range designators in designator list, push a new designator
4950 to constructor_range_stack. RANGE_END is end of such stack range or
4951 NULL_TREE if there is no range designator at this level. */
400fbf9f 4952
3e4093b6
RS
4953static void
4954push_range_stack (tree range_end)
4955{
4956 struct constructor_range_stack *p;
400fbf9f 4957
703ad42b 4958 p = ggc_alloc (sizeof (struct constructor_range_stack));
3e4093b6
RS
4959 p->prev = constructor_range_stack;
4960 p->next = 0;
4961 p->fields = constructor_fields;
4962 p->range_start = constructor_index;
4963 p->index = constructor_index;
4964 p->stack = constructor_stack;
4965 p->range_end = range_end;
8b6a5902 4966 if (constructor_range_stack)
3e4093b6
RS
4967 constructor_range_stack->next = p;
4968 constructor_range_stack = p;
de520661 4969}
400fbf9f 4970
3e4093b6
RS
4971/* Within an array initializer, specify the next index to be initialized.
4972 FIRST is that index. If LAST is nonzero, then initialize a range
4973 of indices, running from FIRST through LAST. */
5a7ec9d9 4974
de520661 4975void
3e4093b6 4976set_init_index (tree first, tree last)
de520661 4977{
3e4093b6
RS
4978 if (set_designator (1))
4979 return;
de520661 4980
3e4093b6 4981 designator_errorneous = 1;
de520661 4982
3e4093b6
RS
4983 while ((TREE_CODE (first) == NOP_EXPR
4984 || TREE_CODE (first) == CONVERT_EXPR
4985 || TREE_CODE (first) == NON_LVALUE_EXPR)
4986 && (TYPE_MODE (TREE_TYPE (first))
4987 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (first, 0)))))
4988 first = TREE_OPERAND (first, 0);
c8e4f0e9 4989
3e4093b6
RS
4990 if (last)
4991 while ((TREE_CODE (last) == NOP_EXPR
4992 || TREE_CODE (last) == CONVERT_EXPR
4993 || TREE_CODE (last) == NON_LVALUE_EXPR)
4994 && (TYPE_MODE (TREE_TYPE (last))
4995 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (last, 0)))))
4996 last = TREE_OPERAND (last, 0);
de520661 4997
3e4093b6
RS
4998 if (TREE_CODE (first) != INTEGER_CST)
4999 error_init ("nonconstant array index in initializer");
5000 else if (last != 0 && TREE_CODE (last) != INTEGER_CST)
5001 error_init ("nonconstant array index in initializer");
5002 else if (TREE_CODE (constructor_type) != ARRAY_TYPE)
5003 error_init ("array index in non-array initializer");
622adc7e
MK
5004 else if (tree_int_cst_sgn (first) == -1)
5005 error_init ("array index in initializer exceeds array bounds");
3e4093b6
RS
5006 else if (constructor_max_index
5007 && tree_int_cst_lt (constructor_max_index, first))
5008 error_init ("array index in initializer exceeds array bounds");
5009 else
de520661 5010 {
3e4093b6 5011 constructor_index = convert (bitsizetype, first);
665f2503 5012
3e4093b6 5013 if (last)
2bede729 5014 {
3e4093b6
RS
5015 if (tree_int_cst_equal (first, last))
5016 last = 0;
5017 else if (tree_int_cst_lt (last, first))
5018 {
5019 error_init ("empty index range in initializer");
5020 last = 0;
5021 }
5022 else
5023 {
5024 last = convert (bitsizetype, last);
5025 if (constructor_max_index != 0
5026 && tree_int_cst_lt (constructor_max_index, last))
5027 {
5028 error_init ("array index range in initializer exceeds array bounds");
5029 last = 0;
5030 }
5031 }
2bede729 5032 }
fed3cef0 5033
3e4093b6
RS
5034 designator_depth++;
5035 designator_errorneous = 0;
5036 if (constructor_range_stack || last)
5037 push_range_stack (last);
de520661 5038 }
de520661 5039}
3e4093b6
RS
5040
5041/* Within a struct initializer, specify the next field to be initialized. */
400fbf9f 5042
de520661 5043void
3e4093b6 5044set_init_label (tree fieldname)
de520661 5045{
3e4093b6 5046 tree tail;
94ba5069 5047
3e4093b6
RS
5048 if (set_designator (0))
5049 return;
5050
5051 designator_errorneous = 1;
5052
5053 if (TREE_CODE (constructor_type) != RECORD_TYPE
5054 && TREE_CODE (constructor_type) != UNION_TYPE)
94ba5069 5055 {
3e4093b6
RS
5056 error_init ("field name not in record or union initializer");
5057 return;
94ba5069
RS
5058 }
5059
3e4093b6
RS
5060 for (tail = TYPE_FIELDS (constructor_type); tail;
5061 tail = TREE_CHAIN (tail))
8b6a5902 5062 {
3e4093b6
RS
5063 if (DECL_NAME (tail) == fieldname)
5064 break;
8b6a5902
JJ
5065 }
5066
3e4093b6
RS
5067 if (tail == 0)
5068 error ("unknown field `%s' specified in initializer",
5069 IDENTIFIER_POINTER (fieldname));
5070 else
8b6a5902 5071 {
3e4093b6
RS
5072 constructor_fields = tail;
5073 designator_depth++;
8b6a5902 5074 designator_errorneous = 0;
3e4093b6
RS
5075 if (constructor_range_stack)
5076 push_range_stack (NULL_TREE);
8b6a5902 5077 }
3e4093b6
RS
5078}
5079\f
5080/* Add a new initializer to the tree of pending initializers. PURPOSE
5081 identifies the initializer, either array index or field in a structure.
5082 VALUE is the value of that index or field. */
de520661 5083
3e4093b6
RS
5084static void
5085add_pending_init (tree purpose, tree value)
5086{
5087 struct init_node *p, **q, *r;
5088
5089 q = &constructor_pending_elts;
5090 p = 0;
5091
5092 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
de520661 5093 {
3e4093b6 5094 while (*q != 0)
91fa3c30 5095 {
3e4093b6
RS
5096 p = *q;
5097 if (tree_int_cst_lt (purpose, p->purpose))
5098 q = &p->left;
5099 else if (tree_int_cst_lt (p->purpose, purpose))
5100 q = &p->right;
5101 else
5102 {
5103 if (TREE_SIDE_EFFECTS (p->value))
5104 warning_init ("initialized field with side-effects overwritten");
5105 p->value = value;
5106 return;
5107 }
91fa3c30 5108 }
de520661 5109 }
3e4093b6 5110 else
de520661 5111 {
3e4093b6 5112 tree bitpos;
400fbf9f 5113
3e4093b6
RS
5114 bitpos = bit_position (purpose);
5115 while (*q != NULL)
5116 {
5117 p = *q;
5118 if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
5119 q = &p->left;
5120 else if (p->purpose != purpose)
5121 q = &p->right;
5122 else
5123 {
5124 if (TREE_SIDE_EFFECTS (p->value))
5125 warning_init ("initialized field with side-effects overwritten");
5126 p->value = value;
5127 return;
5128 }
5129 }
91fa3c30 5130 }
b71c7f8a 5131
703ad42b 5132 r = ggc_alloc (sizeof (struct init_node));
3e4093b6
RS
5133 r->purpose = purpose;
5134 r->value = value;
8b6a5902 5135
3e4093b6
RS
5136 *q = r;
5137 r->parent = p;
5138 r->left = 0;
5139 r->right = 0;
5140 r->balance = 0;
b71c7f8a 5141
3e4093b6 5142 while (p)
de520661 5143 {
3e4093b6 5144 struct init_node *s;
665f2503 5145
3e4093b6 5146 if (r == p->left)
2bede729 5147 {
3e4093b6
RS
5148 if (p->balance == 0)
5149 p->balance = -1;
5150 else if (p->balance < 0)
5151 {
5152 if (r->balance < 0)
5153 {
5154 /* L rotation. */
5155 p->left = r->right;
5156 if (p->left)
5157 p->left->parent = p;
5158 r->right = p;
e7b6a0ee 5159
3e4093b6
RS
5160 p->balance = 0;
5161 r->balance = 0;
39bc99c2 5162
3e4093b6
RS
5163 s = p->parent;
5164 p->parent = r;
5165 r->parent = s;
5166 if (s)
5167 {
5168 if (s->left == p)
5169 s->left = r;
5170 else
5171 s->right = r;
5172 }
5173 else
5174 constructor_pending_elts = r;
5175 }
5176 else
5177 {
5178 /* LR rotation. */
5179 struct init_node *t = r->right;
e7b6a0ee 5180
3e4093b6
RS
5181 r->right = t->left;
5182 if (r->right)
5183 r->right->parent = r;
5184 t->left = r;
5185
5186 p->left = t->right;
5187 if (p->left)
5188 p->left->parent = p;
5189 t->right = p;
5190
5191 p->balance = t->balance < 0;
5192 r->balance = -(t->balance > 0);
5193 t->balance = 0;
5194
5195 s = p->parent;
5196 p->parent = t;
5197 r->parent = t;
5198 t->parent = s;
5199 if (s)
5200 {
5201 if (s->left == p)
5202 s->left = t;
5203 else
5204 s->right = t;
5205 }
5206 else
5207 constructor_pending_elts = t;
5208 }
5209 break;
5210 }
5211 else
5212 {
5213 /* p->balance == +1; growth of left side balances the node. */
5214 p->balance = 0;
5215 break;
5216 }
2bede729 5217 }
3e4093b6
RS
5218 else /* r == p->right */
5219 {
5220 if (p->balance == 0)
5221 /* Growth propagation from right side. */
5222 p->balance++;
5223 else if (p->balance > 0)
5224 {
5225 if (r->balance > 0)
5226 {
5227 /* R rotation. */
5228 p->right = r->left;
5229 if (p->right)
5230 p->right->parent = p;
5231 r->left = p;
5232
5233 p->balance = 0;
5234 r->balance = 0;
5235
5236 s = p->parent;
5237 p->parent = r;
5238 r->parent = s;
5239 if (s)
5240 {
5241 if (s->left == p)
5242 s->left = r;
5243 else
5244 s->right = r;
5245 }
5246 else
5247 constructor_pending_elts = r;
5248 }
5249 else /* r->balance == -1 */
5250 {
5251 /* RL rotation */
5252 struct init_node *t = r->left;
5253
5254 r->left = t->right;
5255 if (r->left)
5256 r->left->parent = r;
5257 t->right = r;
5258
5259 p->right = t->left;
5260 if (p->right)
5261 p->right->parent = p;
5262 t->left = p;
5263
5264 r->balance = (t->balance < 0);
5265 p->balance = -(t->balance > 0);
5266 t->balance = 0;
5267
5268 s = p->parent;
5269 p->parent = t;
5270 r->parent = t;
5271 t->parent = s;
5272 if (s)
5273 {
5274 if (s->left == p)
5275 s->left = t;
5276 else
5277 s->right = t;
5278 }
5279 else
5280 constructor_pending_elts = t;
5281 }
5282 break;
5283 }
5284 else
5285 {
5286 /* p->balance == -1; growth of right side balances the node. */
5287 p->balance = 0;
5288 break;
5289 }
5290 }
5291
5292 r = p;
5293 p = p->parent;
5294 }
5295}
5296
5297/* Build AVL tree from a sorted chain. */
5298
5299static void
5300set_nonincremental_init (void)
5301{
5302 tree chain;
5303
5304 if (TREE_CODE (constructor_type) != RECORD_TYPE
5305 && TREE_CODE (constructor_type) != ARRAY_TYPE)
5306 return;
5307
5308 for (chain = constructor_elements; chain; chain = TREE_CHAIN (chain))
5309 add_pending_init (TREE_PURPOSE (chain), TREE_VALUE (chain));
5310 constructor_elements = 0;
5311 if (TREE_CODE (constructor_type) == RECORD_TYPE)
5312 {
5313 constructor_unfilled_fields = TYPE_FIELDS (constructor_type);
5314 /* Skip any nameless bit fields at the beginning. */
5315 while (constructor_unfilled_fields != 0
5316 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
5317 && DECL_NAME (constructor_unfilled_fields) == 0)
5318 constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
fed3cef0 5319
de520661 5320 }
3e4093b6 5321 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
de520661 5322 {
3e4093b6
RS
5323 if (TYPE_DOMAIN (constructor_type))
5324 constructor_unfilled_index
5325 = convert (bitsizetype,
5326 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5327 else
5328 constructor_unfilled_index = bitsize_zero_node;
de520661 5329 }
3e4093b6 5330 constructor_incremental = 0;
de520661 5331}
400fbf9f 5332
3e4093b6 5333/* Build AVL tree from a string constant. */
de520661 5334
3e4093b6
RS
5335static void
5336set_nonincremental_init_from_string (tree str)
de520661 5337{
3e4093b6
RS
5338 tree value, purpose, type;
5339 HOST_WIDE_INT val[2];
5340 const char *p, *end;
5341 int byte, wchar_bytes, charwidth, bitpos;
de520661 5342
3e4093b6
RS
5343 if (TREE_CODE (constructor_type) != ARRAY_TYPE)
5344 abort ();
940ff66d 5345
3e4093b6
RS
5346 if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str)))
5347 == TYPE_PRECISION (char_type_node))
5348 wchar_bytes = 1;
5349 else if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str)))
5350 == TYPE_PRECISION (wchar_type_node))
5351 wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
5352 else
5353 abort ();
400fbf9f 5354
3e4093b6
RS
5355 charwidth = TYPE_PRECISION (char_type_node);
5356 type = TREE_TYPE (constructor_type);
5357 p = TREE_STRING_POINTER (str);
5358 end = p + TREE_STRING_LENGTH (str);
91fa3c30 5359
3e4093b6
RS
5360 for (purpose = bitsize_zero_node;
5361 p < end && !tree_int_cst_lt (constructor_max_index, purpose);
5362 purpose = size_binop (PLUS_EXPR, purpose, bitsize_one_node))
584ef5fe 5363 {
3e4093b6 5364 if (wchar_bytes == 1)
ffc5c6a9 5365 {
3e4093b6
RS
5366 val[1] = (unsigned char) *p++;
5367 val[0] = 0;
ffc5c6a9
RH
5368 }
5369 else
3e4093b6
RS
5370 {
5371 val[0] = 0;
5372 val[1] = 0;
5373 for (byte = 0; byte < wchar_bytes; byte++)
5374 {
5375 if (BYTES_BIG_ENDIAN)
5376 bitpos = (wchar_bytes - byte - 1) * charwidth;
5377 else
5378 bitpos = byte * charwidth;
5379 val[bitpos < HOST_BITS_PER_WIDE_INT]
5380 |= ((unsigned HOST_WIDE_INT) ((unsigned char) *p++))
5381 << (bitpos % HOST_BITS_PER_WIDE_INT);
5382 }
5383 }
584ef5fe 5384
3e4093b6
RS
5385 if (!TREE_UNSIGNED (type))
5386 {
5387 bitpos = ((wchar_bytes - 1) * charwidth) + HOST_BITS_PER_CHAR;
5388 if (bitpos < HOST_BITS_PER_WIDE_INT)
5389 {
5390 if (val[1] & (((HOST_WIDE_INT) 1) << (bitpos - 1)))
5391 {
5392 val[1] |= ((HOST_WIDE_INT) -1) << bitpos;
5393 val[0] = -1;
5394 }
5395 }
5396 else if (bitpos == HOST_BITS_PER_WIDE_INT)
5397 {
5398 if (val[1] < 0)
5399 val[0] = -1;
5400 }
5401 else if (val[0] & (((HOST_WIDE_INT) 1)
5402 << (bitpos - 1 - HOST_BITS_PER_WIDE_INT)))
5403 val[0] |= ((HOST_WIDE_INT) -1)
5404 << (bitpos - HOST_BITS_PER_WIDE_INT);
5405 }
ffc5c6a9 5406
3e4093b6
RS
5407 value = build_int_2 (val[1], val[0]);
5408 TREE_TYPE (value) = type;
5409 add_pending_init (purpose, value);
9dfcc8db
BH
5410 }
5411
3e4093b6
RS
5412 constructor_incremental = 0;
5413}
de520661 5414
3e4093b6
RS
5415/* Return value of FIELD in pending initializer or zero if the field was
5416 not initialized yet. */
5417
5418static tree
5419find_init_member (tree field)
5420{
5421 struct init_node *p;
5422
5423 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
19d76e60 5424 {
3e4093b6
RS
5425 if (constructor_incremental
5426 && tree_int_cst_lt (field, constructor_unfilled_index))
5427 set_nonincremental_init ();
5428
5429 p = constructor_pending_elts;
5430 while (p)
19d76e60 5431 {
3e4093b6
RS
5432 if (tree_int_cst_lt (field, p->purpose))
5433 p = p->left;
5434 else if (tree_int_cst_lt (p->purpose, field))
5435 p = p->right;
5436 else
5437 return p->value;
19d76e60 5438 }
19d76e60 5439 }
3e4093b6 5440 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
de520661 5441 {
3e4093b6 5442 tree bitpos = bit_position (field);
de520661 5443
3e4093b6
RS
5444 if (constructor_incremental
5445 && (!constructor_unfilled_fields
5446 || tree_int_cst_lt (bitpos,
5447 bit_position (constructor_unfilled_fields))))
5448 set_nonincremental_init ();
de520661 5449
3e4093b6
RS
5450 p = constructor_pending_elts;
5451 while (p)
5452 {
5453 if (field == p->purpose)
5454 return p->value;
5455 else if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
5456 p = p->left;
5457 else
5458 p = p->right;
5459 }
5460 }
5461 else if (TREE_CODE (constructor_type) == UNION_TYPE)
de520661 5462 {
3e4093b6
RS
5463 if (constructor_elements
5464 && TREE_PURPOSE (constructor_elements) == field)
5465 return TREE_VALUE (constructor_elements);
de520661 5466 }
3e4093b6 5467 return 0;
de520661
RS
5468}
5469
3e4093b6
RS
5470/* "Output" the next constructor element.
5471 At top level, really output it to assembler code now.
5472 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
5473 TYPE is the data type that the containing data type wants here.
5474 FIELD is the field (a FIELD_DECL) or the index that this element fills.
8b6a5902 5475
3e4093b6
RS
5476 PENDING if non-nil means output pending elements that belong
5477 right after this element. (PENDING is normally 1;
5478 it is 0 while outputting pending elements, to avoid recursion.) */
8b6a5902 5479
3e4093b6
RS
5480static void
5481output_init_element (tree value, tree type, tree field, int pending)
5482{
5483 if (type == error_mark_node)
8b6a5902 5484 {
3e4093b6
RS
5485 constructor_erroneous = 1;
5486 return;
8b6a5902 5487 }
3e4093b6
RS
5488 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
5489 || (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
5490 && !(TREE_CODE (value) == STRING_CST
5491 && TREE_CODE (type) == ARRAY_TYPE
5492 && TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE)
5493 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value)),
5494 TYPE_MAIN_VARIANT (type), COMPARE_STRICT)))
5495 value = default_conversion (value);
8b6a5902 5496
3e4093b6
RS
5497 if (TREE_CODE (value) == COMPOUND_LITERAL_EXPR
5498 && require_constant_value && !flag_isoc99 && pending)
8b6a5902 5499 {
3e4093b6
RS
5500 /* As an extension, allow initializing objects with static storage
5501 duration with compound literals (which are then treated just as
5502 the brace enclosed list they contain). */
5503 tree decl = COMPOUND_LITERAL_EXPR_DECL (value);
5504 value = DECL_INITIAL (decl);
8b6a5902
JJ
5505 }
5506
3e4093b6
RS
5507 if (value == error_mark_node)
5508 constructor_erroneous = 1;
5509 else if (!TREE_CONSTANT (value))
5510 constructor_constant = 0;
5511 else if (initializer_constant_valid_p (value, TREE_TYPE (value)) == 0
5512 || ((TREE_CODE (constructor_type) == RECORD_TYPE
5513 || TREE_CODE (constructor_type) == UNION_TYPE)
5514 && DECL_C_BIT_FIELD (field)
5515 && TREE_CODE (value) != INTEGER_CST))
5516 constructor_simple = 0;
5517
5518 if (require_constant_value && ! TREE_CONSTANT (value))
8b6a5902 5519 {
3e4093b6
RS
5520 error_init ("initializer element is not constant");
5521 value = error_mark_node;
8b6a5902 5522 }
3e4093b6
RS
5523 else if (require_constant_elements
5524 && initializer_constant_valid_p (value, TREE_TYPE (value)) == 0)
5525 pedwarn ("initializer element is not computable at load time");
5526
5527 /* If this field is empty (and not at the end of structure),
5528 don't do anything other than checking the initializer. */
5529 if (field
5530 && (TREE_TYPE (field) == error_mark_node
5531 || (COMPLETE_TYPE_P (TREE_TYPE (field))
5532 && integer_zerop (TYPE_SIZE (TREE_TYPE (field)))
5533 && (TREE_CODE (constructor_type) == ARRAY_TYPE
5534 || TREE_CHAIN (field)))))
5535 return;
5536
5537 value = digest_init (type, value, require_constant_value);
5538 if (value == error_mark_node)
8b6a5902 5539 {
3e4093b6
RS
5540 constructor_erroneous = 1;
5541 return;
8b6a5902 5542 }
8b6a5902 5543
3e4093b6
RS
5544 /* If this element doesn't come next in sequence,
5545 put it on constructor_pending_elts. */
5546 if (TREE_CODE (constructor_type) == ARRAY_TYPE
5547 && (!constructor_incremental
5548 || !tree_int_cst_equal (field, constructor_unfilled_index)))
8b6a5902 5549 {
3e4093b6
RS
5550 if (constructor_incremental
5551 && tree_int_cst_lt (field, constructor_unfilled_index))
5552 set_nonincremental_init ();
5553
5554 add_pending_init (field, value);
5555 return;
8b6a5902 5556 }
3e4093b6
RS
5557 else if (TREE_CODE (constructor_type) == RECORD_TYPE
5558 && (!constructor_incremental
5559 || field != constructor_unfilled_fields))
8b6a5902 5560 {
3e4093b6
RS
5561 /* We do this for records but not for unions. In a union,
5562 no matter which field is specified, it can be initialized
5563 right away since it starts at the beginning of the union. */
5564 if (constructor_incremental)
5565 {
5566 if (!constructor_unfilled_fields)
5567 set_nonincremental_init ();
5568 else
5569 {
5570 tree bitpos, unfillpos;
5571
5572 bitpos = bit_position (field);
5573 unfillpos = bit_position (constructor_unfilled_fields);
5574
5575 if (tree_int_cst_lt (bitpos, unfillpos))
5576 set_nonincremental_init ();
5577 }
5578 }
5579
5580 add_pending_init (field, value);
5581 return;
8b6a5902 5582 }
3e4093b6
RS
5583 else if (TREE_CODE (constructor_type) == UNION_TYPE
5584 && constructor_elements)
5585 {
5586 if (TREE_SIDE_EFFECTS (TREE_VALUE (constructor_elements)))
5587 warning_init ("initialized field with side-effects overwritten");
8b6a5902 5588
3e4093b6
RS
5589 /* We can have just one union field set. */
5590 constructor_elements = 0;
5591 }
8b6a5902 5592
3e4093b6
RS
5593 /* Otherwise, output this element either to
5594 constructor_elements or to the assembler file. */
8b6a5902 5595
3e4093b6
RS
5596 if (field && TREE_CODE (field) == INTEGER_CST)
5597 field = copy_node (field);
5598 constructor_elements
5599 = tree_cons (field, value, constructor_elements);
8b6a5902 5600
3e4093b6
RS
5601 /* Advance the variable that indicates sequential elements output. */
5602 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5603 constructor_unfilled_index
5604 = size_binop (PLUS_EXPR, constructor_unfilled_index,
5605 bitsize_one_node);
5606 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
5607 {
5608 constructor_unfilled_fields
5609 = TREE_CHAIN (constructor_unfilled_fields);
8b6a5902 5610
3e4093b6
RS
5611 /* Skip any nameless bit fields. */
5612 while (constructor_unfilled_fields != 0
5613 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
5614 && DECL_NAME (constructor_unfilled_fields) == 0)
5615 constructor_unfilled_fields =
5616 TREE_CHAIN (constructor_unfilled_fields);
5617 }
5618 else if (TREE_CODE (constructor_type) == UNION_TYPE)
5619 constructor_unfilled_fields = 0;
de520661 5620
3e4093b6
RS
5621 /* Now output any pending elements which have become next. */
5622 if (pending)
5623 output_pending_init_elements (0);
5624}
8b6a5902 5625
3e4093b6
RS
5626/* Output any pending elements which have become next.
5627 As we output elements, constructor_unfilled_{fields,index}
5628 advances, which may cause other elements to become next;
5629 if so, they too are output.
8b6a5902 5630
3e4093b6
RS
5631 If ALL is 0, we return when there are
5632 no more pending elements to output now.
665f2503 5633
3e4093b6
RS
5634 If ALL is 1, we output space as necessary so that
5635 we can output all the pending elements. */
19d76e60 5636
3e4093b6
RS
5637static void
5638output_pending_init_elements (int all)
5639{
5640 struct init_node *elt = constructor_pending_elts;
5641 tree next;
de520661 5642
3e4093b6
RS
5643 retry:
5644
ba228239 5645 /* Look through the whole pending tree.
3e4093b6
RS
5646 If we find an element that should be output now,
5647 output it. Otherwise, set NEXT to the element
5648 that comes first among those still pending. */
5649
5650 next = 0;
5651 while (elt)
5652 {
5653 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
8b6a5902 5654 {
3e4093b6
RS
5655 if (tree_int_cst_equal (elt->purpose,
5656 constructor_unfilled_index))
5657 output_init_element (elt->value,
5658 TREE_TYPE (constructor_type),
5659 constructor_unfilled_index, 0);
5660 else if (tree_int_cst_lt (constructor_unfilled_index,
5661 elt->purpose))
8b6a5902 5662 {
3e4093b6
RS
5663 /* Advance to the next smaller node. */
5664 if (elt->left)
5665 elt = elt->left;
5666 else
5667 {
5668 /* We have reached the smallest node bigger than the
5669 current unfilled index. Fill the space first. */
5670 next = elt->purpose;
5671 break;
5672 }
8b6a5902 5673 }
ce662d4c
JJ
5674 else
5675 {
3e4093b6
RS
5676 /* Advance to the next bigger node. */
5677 if (elt->right)
5678 elt = elt->right;
5679 else
ce662d4c 5680 {
3e4093b6
RS
5681 /* We have reached the biggest node in a subtree. Find
5682 the parent of it, which is the next bigger node. */
5683 while (elt->parent && elt->parent->right == elt)
5684 elt = elt->parent;
5685 elt = elt->parent;
5686 if (elt && tree_int_cst_lt (constructor_unfilled_index,
5687 elt->purpose))
5688 {
5689 next = elt->purpose;
5690 break;
5691 }
ce662d4c
JJ
5692 }
5693 }
8b6a5902 5694 }
3e4093b6
RS
5695 else if (TREE_CODE (constructor_type) == RECORD_TYPE
5696 || TREE_CODE (constructor_type) == UNION_TYPE)
5697 {
5698 tree ctor_unfilled_bitpos, elt_bitpos;
ce662d4c 5699
3e4093b6
RS
5700 /* If the current record is complete we are done. */
5701 if (constructor_unfilled_fields == 0)
5702 break;
de520661 5703
3e4093b6
RS
5704 ctor_unfilled_bitpos = bit_position (constructor_unfilled_fields);
5705 elt_bitpos = bit_position (elt->purpose);
5706 /* We can't compare fields here because there might be empty
5707 fields in between. */
5708 if (tree_int_cst_equal (elt_bitpos, ctor_unfilled_bitpos))
5709 {
5710 constructor_unfilled_fields = elt->purpose;
5711 output_init_element (elt->value, TREE_TYPE (elt->purpose),
5712 elt->purpose, 0);
5713 }
5714 else if (tree_int_cst_lt (ctor_unfilled_bitpos, elt_bitpos))
5715 {
5716 /* Advance to the next smaller node. */
5717 if (elt->left)
5718 elt = elt->left;
5719 else
5720 {
5721 /* We have reached the smallest node bigger than the
5722 current unfilled field. Fill the space first. */
5723 next = elt->purpose;
5724 break;
5725 }
5726 }
5727 else
5728 {
5729 /* Advance to the next bigger node. */
5730 if (elt->right)
5731 elt = elt->right;
5732 else
5733 {
5734 /* We have reached the biggest node in a subtree. Find
5735 the parent of it, which is the next bigger node. */
5736 while (elt->parent && elt->parent->right == elt)
5737 elt = elt->parent;
5738 elt = elt->parent;
5739 if (elt
5740 && (tree_int_cst_lt (ctor_unfilled_bitpos,
5741 bit_position (elt->purpose))))
5742 {
5743 next = elt->purpose;
5744 break;
5745 }
5746 }
5747 }
5748 }
5749 }
de520661 5750
3e4093b6
RS
5751 /* Ordinarily return, but not if we want to output all
5752 and there are elements left. */
5753 if (! (all && next != 0))
e5cfb88f
RK
5754 return;
5755
3e4093b6
RS
5756 /* If it's not incremental, just skip over the gap, so that after
5757 jumping to retry we will output the next successive element. */
5758 if (TREE_CODE (constructor_type) == RECORD_TYPE
5759 || TREE_CODE (constructor_type) == UNION_TYPE)
5760 constructor_unfilled_fields = next;
5761 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5762 constructor_unfilled_index = next;
de520661 5763
3e4093b6
RS
5764 /* ELT now points to the node in the pending tree with the next
5765 initializer to output. */
5766 goto retry;
de520661
RS
5767}
5768\f
3e4093b6
RS
5769/* Add one non-braced element to the current constructor level.
5770 This adjusts the current position within the constructor's type.
5771 This may also start or terminate implicit levels
5772 to handle a partly-braced initializer.
e5e809f4 5773
3e4093b6
RS
5774 Once this has found the correct level for the new element,
5775 it calls output_init_element. */
5776
5777void
5778process_init_element (tree value)
e5e809f4 5779{
3e4093b6
RS
5780 tree orig_value = value;
5781 int string_flag = value != 0 && TREE_CODE (value) == STRING_CST;
e5e809f4 5782
3e4093b6
RS
5783 designator_depth = 0;
5784 designator_errorneous = 0;
e5e809f4 5785
3e4093b6
RS
5786 /* Handle superfluous braces around string cst as in
5787 char x[] = {"foo"}; */
5788 if (string_flag
5789 && constructor_type
5790 && TREE_CODE (constructor_type) == ARRAY_TYPE
5791 && TREE_CODE (TREE_TYPE (constructor_type)) == INTEGER_TYPE
5792 && integer_zerop (constructor_unfilled_index))
e5e809f4 5793 {
3e4093b6
RS
5794 if (constructor_stack->replacement_value)
5795 error_init ("excess elements in char array initializer");
5796 constructor_stack->replacement_value = value;
5797 return;
e5e809f4 5798 }
8b6a5902 5799
3e4093b6
RS
5800 if (constructor_stack->replacement_value != 0)
5801 {
5802 error_init ("excess elements in struct initializer");
5803 return;
e5e809f4
JL
5804 }
5805
3e4093b6
RS
5806 /* Ignore elements of a brace group if it is entirely superfluous
5807 and has already been diagnosed. */
5808 if (constructor_type == 0)
5809 return;
e5e809f4 5810
3e4093b6
RS
5811 /* If we've exhausted any levels that didn't have braces,
5812 pop them now. */
5813 while (constructor_stack->implicit)
5814 {
5815 if ((TREE_CODE (constructor_type) == RECORD_TYPE
5816 || TREE_CODE (constructor_type) == UNION_TYPE)
5817 && constructor_fields == 0)
5818 process_init_element (pop_init_level (1));
5819 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
5820 && (constructor_max_index == 0
5821 || tree_int_cst_lt (constructor_max_index,
5822 constructor_index)))
5823 process_init_element (pop_init_level (1));
5824 else
5825 break;
5826 }
e5e809f4 5827
3e4093b6
RS
5828 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
5829 if (constructor_range_stack)
e5e809f4 5830 {
3e4093b6
RS
5831 /* If value is a compound literal and we'll be just using its
5832 content, don't put it into a SAVE_EXPR. */
5833 if (TREE_CODE (value) != COMPOUND_LITERAL_EXPR
5834 || !require_constant_value
5835 || flag_isoc99)
5836 value = save_expr (value);
5837 }
e5e809f4 5838
3e4093b6
RS
5839 while (1)
5840 {
5841 if (TREE_CODE (constructor_type) == RECORD_TYPE)
e5e809f4 5842 {
3e4093b6
RS
5843 tree fieldtype;
5844 enum tree_code fieldcode;
e5e809f4 5845
3e4093b6
RS
5846 if (constructor_fields == 0)
5847 {
5848 pedwarn_init ("excess elements in struct initializer");
5849 break;
5850 }
e5e809f4 5851
3e4093b6
RS
5852 fieldtype = TREE_TYPE (constructor_fields);
5853 if (fieldtype != error_mark_node)
5854 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
5855 fieldcode = TREE_CODE (fieldtype);
e5e809f4 5856
3e4093b6
RS
5857 /* Error for non-static initialization of a flexible array member. */
5858 if (fieldcode == ARRAY_TYPE
5859 && !require_constant_value
5860 && TYPE_SIZE (fieldtype) == NULL_TREE
5861 && TREE_CHAIN (constructor_fields) == NULL_TREE)
5862 {
5863 error_init ("non-static initialization of a flexible array member");
5864 break;
5865 }
e5e809f4 5866
3e4093b6
RS
5867 /* Accept a string constant to initialize a subarray. */
5868 if (value != 0
5869 && fieldcode == ARRAY_TYPE
5870 && TREE_CODE (TREE_TYPE (fieldtype)) == INTEGER_TYPE
5871 && string_flag)
5872 value = orig_value;
5873 /* Otherwise, if we have come to a subaggregate,
5874 and we don't have an element of its type, push into it. */
5875 else if (value != 0 && !constructor_no_implicit
5876 && value != error_mark_node
5877 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != fieldtype
5878 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
5879 || fieldcode == UNION_TYPE))
5880 {
5881 push_init_level (1);
5882 continue;
5883 }
e5e809f4 5884
3e4093b6
RS
5885 if (value)
5886 {
5887 push_member_name (constructor_fields);
5888 output_init_element (value, fieldtype, constructor_fields, 1);
5889 RESTORE_SPELLING_DEPTH (constructor_depth);
e5e809f4
JL
5890 }
5891 else
3e4093b6
RS
5892 /* Do the bookkeeping for an element that was
5893 directly output as a constructor. */
e5e809f4 5894 {
3e4093b6
RS
5895 /* For a record, keep track of end position of last field. */
5896 if (DECL_SIZE (constructor_fields))
5897 constructor_bit_index
5898 = size_binop (PLUS_EXPR,
5899 bit_position (constructor_fields),
5900 DECL_SIZE (constructor_fields));
5901
5902 /* If the current field was the first one not yet written out,
5903 it isn't now, so update. */
5904 if (constructor_unfilled_fields == constructor_fields)
5905 {
5906 constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
5907 /* Skip any nameless bit fields. */
5908 while (constructor_unfilled_fields != 0
5909 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
5910 && DECL_NAME (constructor_unfilled_fields) == 0)
5911 constructor_unfilled_fields =
5912 TREE_CHAIN (constructor_unfilled_fields);
5913 }
e5e809f4 5914 }
3e4093b6
RS
5915
5916 constructor_fields = TREE_CHAIN (constructor_fields);
5917 /* Skip any nameless bit fields at the beginning. */
5918 while (constructor_fields != 0
5919 && DECL_C_BIT_FIELD (constructor_fields)
5920 && DECL_NAME (constructor_fields) == 0)
5921 constructor_fields = TREE_CHAIN (constructor_fields);
e5e809f4 5922 }
3e4093b6 5923 else if (TREE_CODE (constructor_type) == UNION_TYPE)
e5e809f4 5924 {
3e4093b6
RS
5925 tree fieldtype;
5926 enum tree_code fieldcode;
e5e809f4 5927
3e4093b6
RS
5928 if (constructor_fields == 0)
5929 {
5930 pedwarn_init ("excess elements in union initializer");
5931 break;
5932 }
e5e809f4 5933
3e4093b6
RS
5934 fieldtype = TREE_TYPE (constructor_fields);
5935 if (fieldtype != error_mark_node)
5936 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
5937 fieldcode = TREE_CODE (fieldtype);
e5e809f4 5938
3e4093b6
RS
5939 /* Warn that traditional C rejects initialization of unions.
5940 We skip the warning if the value is zero. This is done
5941 under the assumption that the zero initializer in user
5942 code appears conditioned on e.g. __STDC__ to avoid
5943 "missing initializer" warnings and relies on default
5944 initialization to zero in the traditional C case.
5945 We also skip the warning if the initializer is designated,
5946 again on the assumption that this must be conditional on
5947 __STDC__ anyway (and we've already complained about the
5948 member-designator already). */
5949 if (warn_traditional && !in_system_header && !constructor_designated
5950 && !(value && (integer_zerop (value) || real_zerop (value))))
5951 warning ("traditional C rejects initialization of unions");
e5e809f4 5952
3e4093b6
RS
5953 /* Accept a string constant to initialize a subarray. */
5954 if (value != 0
5955 && fieldcode == ARRAY_TYPE
5956 && TREE_CODE (TREE_TYPE (fieldtype)) == INTEGER_TYPE
5957 && string_flag)
5958 value = orig_value;
5959 /* Otherwise, if we have come to a subaggregate,
5960 and we don't have an element of its type, push into it. */
5961 else if (value != 0 && !constructor_no_implicit
5962 && value != error_mark_node
5963 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != fieldtype
5964 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
5965 || fieldcode == UNION_TYPE))
5966 {
5967 push_init_level (1);
5968 continue;
5969 }
e5e809f4 5970
3e4093b6
RS
5971 if (value)
5972 {
5973 push_member_name (constructor_fields);
5974 output_init_element (value, fieldtype, constructor_fields, 1);
5975 RESTORE_SPELLING_DEPTH (constructor_depth);
e5e809f4
JL
5976 }
5977 else
3e4093b6
RS
5978 /* Do the bookkeeping for an element that was
5979 directly output as a constructor. */
e5e809f4 5980 {
3e4093b6
RS
5981 constructor_bit_index = DECL_SIZE (constructor_fields);
5982 constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
e5e809f4 5983 }
e5e809f4 5984
3e4093b6
RS
5985 constructor_fields = 0;
5986 }
5987 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5988 {
5989 tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
5990 enum tree_code eltcode = TREE_CODE (elttype);
e5e809f4 5991
3e4093b6
RS
5992 /* Accept a string constant to initialize a subarray. */
5993 if (value != 0
5994 && eltcode == ARRAY_TYPE
5995 && TREE_CODE (TREE_TYPE (elttype)) == INTEGER_TYPE
5996 && string_flag)
5997 value = orig_value;
5998 /* Otherwise, if we have come to a subaggregate,
5999 and we don't have an element of its type, push into it. */
6000 else if (value != 0 && !constructor_no_implicit
6001 && value != error_mark_node
6002 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != elttype
6003 && (eltcode == RECORD_TYPE || eltcode == ARRAY_TYPE
6004 || eltcode == UNION_TYPE))
6005 {
6006 push_init_level (1);
6007 continue;
6008 }
8b6a5902 6009
3e4093b6
RS
6010 if (constructor_max_index != 0
6011 && (tree_int_cst_lt (constructor_max_index, constructor_index)
6012 || integer_all_onesp (constructor_max_index)))
6013 {
6014 pedwarn_init ("excess elements in array initializer");
6015 break;
6016 }
8b6a5902 6017
3e4093b6
RS
6018 /* Now output the actual element. */
6019 if (value)
6020 {
6021 push_array_bounds (tree_low_cst (constructor_index, 0));
6022 output_init_element (value, elttype, constructor_index, 1);
6023 RESTORE_SPELLING_DEPTH (constructor_depth);
6024 }
2f6e4e97 6025
3e4093b6
RS
6026 constructor_index
6027 = size_binop (PLUS_EXPR, constructor_index, bitsize_one_node);
8b6a5902 6028
3e4093b6
RS
6029 if (! value)
6030 /* If we are doing the bookkeeping for an element that was
6031 directly output as a constructor, we must update
6032 constructor_unfilled_index. */
6033 constructor_unfilled_index = constructor_index;
6034 }
6035 else if (TREE_CODE (constructor_type) == VECTOR_TYPE)
6036 {
6037 tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
8b6a5902 6038
3e4093b6
RS
6039 /* Do a basic check of initializer size. Note that vectors
6040 always have a fixed size derived from their type. */
6041 if (tree_int_cst_lt (constructor_max_index, constructor_index))
6042 {
6043 pedwarn_init ("excess elements in vector initializer");
6044 break;
6045 }
8b6a5902 6046
3e4093b6
RS
6047 /* Now output the actual element. */
6048 if (value)
6049 output_init_element (value, elttype, constructor_index, 1);
8b6a5902 6050
3e4093b6
RS
6051 constructor_index
6052 = size_binop (PLUS_EXPR, constructor_index, bitsize_one_node);
8b6a5902 6053
3e4093b6
RS
6054 if (! value)
6055 /* If we are doing the bookkeeping for an element that was
6056 directly output as a constructor, we must update
6057 constructor_unfilled_index. */
6058 constructor_unfilled_index = constructor_index;
6059 }
8b6a5902 6060
3e4093b6
RS
6061 /* Handle the sole element allowed in a braced initializer
6062 for a scalar variable. */
6063 else if (constructor_fields == 0)
8b6a5902 6064 {
3e4093b6
RS
6065 pedwarn_init ("excess elements in scalar initializer");
6066 break;
8b6a5902
JJ
6067 }
6068 else
6069 {
3e4093b6
RS
6070 if (value)
6071 output_init_element (value, constructor_type, NULL_TREE, 1);
6072 constructor_fields = 0;
8b6a5902
JJ
6073 }
6074
3e4093b6
RS
6075 /* Handle range initializers either at this level or anywhere higher
6076 in the designator stack. */
6077 if (constructor_range_stack)
8b6a5902 6078 {
3e4093b6
RS
6079 struct constructor_range_stack *p, *range_stack;
6080 int finish = 0;
6081
6082 range_stack = constructor_range_stack;
6083 constructor_range_stack = 0;
6084 while (constructor_stack != range_stack->stack)
8b6a5902 6085 {
3e4093b6
RS
6086 if (!constructor_stack->implicit)
6087 abort ();
6088 process_init_element (pop_init_level (1));
8b6a5902 6089 }
3e4093b6
RS
6090 for (p = range_stack;
6091 !p->range_end || tree_int_cst_equal (p->index, p->range_end);
6092 p = p->prev)
8b6a5902 6093 {
3e4093b6
RS
6094 if (!constructor_stack->implicit)
6095 abort ();
6096 process_init_element (pop_init_level (1));
8b6a5902 6097 }
3e4093b6
RS
6098
6099 p->index = size_binop (PLUS_EXPR, p->index, bitsize_one_node);
6100 if (tree_int_cst_equal (p->index, p->range_end) && !p->prev)
6101 finish = 1;
6102
6103 while (1)
6104 {
6105 constructor_index = p->index;
6106 constructor_fields = p->fields;
6107 if (finish && p->range_end && p->index == p->range_start)
6108 {
6109 finish = 0;
6110 p->prev = 0;
6111 }
6112 p = p->next;
6113 if (!p)
6114 break;
6115 push_init_level (2);
6116 p->stack = constructor_stack;
6117 if (p->range_end && tree_int_cst_equal (p->index, p->range_end))
6118 p->index = p->range_start;
6119 }
6120
6121 if (!finish)
6122 constructor_range_stack = range_stack;
6123 continue;
8b6a5902
JJ
6124 }
6125
3e4093b6 6126 break;
8b6a5902
JJ
6127 }
6128
3e4093b6
RS
6129 constructor_range_stack = 0;
6130}
6131\f
6132/* Build a simple asm-statement, from one string literal. */
6133tree
6134simple_asm_stmt (tree expr)
6135{
6136 STRIP_NOPS (expr);
6137
6138 if (TREE_CODE (expr) == ADDR_EXPR)
6139 expr = TREE_OPERAND (expr, 0);
6140
6141 if (TREE_CODE (expr) == STRING_CST)
6142 {
6143 tree stmt;
6144
6145 /* Simple asm statements are treated as volatile. */
6146 stmt = add_stmt (build_stmt (ASM_STMT, ridpointers[(int) RID_VOLATILE],
6147 expr, NULL_TREE, NULL_TREE, NULL_TREE));
6148 ASM_INPUT_P (stmt) = 1;
6149 return stmt;
6150 }
6151
6152 error ("argument of `asm' is not a constant string");
6153 return NULL_TREE;
8b6a5902
JJ
6154}
6155
3e4093b6
RS
6156/* Build an asm-statement, whose components are a CV_QUALIFIER, a
6157 STRING, some OUTPUTS, some INPUTS, and some CLOBBERS. */
8b6a5902 6158
3e4093b6
RS
6159tree
6160build_asm_stmt (tree cv_qualifier, tree string, tree outputs, tree inputs,
6161 tree clobbers)
e5e809f4 6162{
3e4093b6 6163 tree tail;
e5e809f4 6164
3e4093b6 6165 if (TREE_CODE (string) != STRING_CST)
e5e809f4 6166 {
3e4093b6
RS
6167 error ("asm template is not a string constant");
6168 return NULL_TREE;
6169 }
8b6a5902 6170
3e4093b6
RS
6171 if (cv_qualifier != NULL_TREE
6172 && cv_qualifier != ridpointers[(int) RID_VOLATILE])
6173 {
6174 warning ("%s qualifier ignored on asm",
6175 IDENTIFIER_POINTER (cv_qualifier));
6176 cv_qualifier = NULL_TREE;
e5e809f4 6177 }
3e4093b6
RS
6178
6179 /* We can remove output conversions that change the type,
6180 but not the mode. */
6181 for (tail = outputs; tail; tail = TREE_CHAIN (tail))
e5e809f4 6182 {
3e4093b6 6183 tree output = TREE_VALUE (tail);
8b6a5902 6184
3e4093b6
RS
6185 STRIP_NOPS (output);
6186 TREE_VALUE (tail) = output;
8b6a5902 6187
3e4093b6
RS
6188 /* Allow conversions as LHS here. build_modify_expr as called below
6189 will do the right thing with them. */
6190 while (TREE_CODE (output) == NOP_EXPR
6191 || TREE_CODE (output) == CONVERT_EXPR
6192 || TREE_CODE (output) == FLOAT_EXPR
6193 || TREE_CODE (output) == FIX_TRUNC_EXPR
6194 || TREE_CODE (output) == FIX_FLOOR_EXPR
6195 || TREE_CODE (output) == FIX_ROUND_EXPR
6196 || TREE_CODE (output) == FIX_CEIL_EXPR)
6197 output = TREE_OPERAND (output, 0);
6198
6199 lvalue_or_else (TREE_VALUE (tail), "invalid lvalue in asm statement");
e5e809f4 6200 }
3e4093b6
RS
6201
6202 /* Remove output conversions that change the type but not the mode. */
6203 for (tail = outputs; tail; tail = TREE_CHAIN (tail))
8b6a5902 6204 {
3e4093b6
RS
6205 tree output = TREE_VALUE (tail);
6206 STRIP_NOPS (output);
6207 TREE_VALUE (tail) = output;
8b6a5902 6208 }
3e4093b6
RS
6209
6210 /* Perform default conversions on array and function inputs.
6211 Don't do this for other types as it would screw up operands
6212 expected to be in memory. */
6213 for (tail = inputs; tail; tail = TREE_CHAIN (tail))
6214 TREE_VALUE (tail) = default_function_array_conversion (TREE_VALUE (tail));
6215
6216 return add_stmt (build_stmt (ASM_STMT, cv_qualifier, string,
6217 outputs, inputs, clobbers));
e5e809f4
JL
6218}
6219
3e4093b6
RS
6220/* Expand an ASM statement with operands, handling output operands
6221 that are not variables or INDIRECT_REFS by transforming such
6222 cases into cases that expand_asm_operands can handle.
de520661 6223
3e4093b6 6224 Arguments are same as for expand_asm_operands. */
de520661 6225
3e4093b6
RS
6226void
6227c_expand_asm_operands (tree string, tree outputs, tree inputs,
177560b2 6228 tree clobbers, int vol, location_t locus)
de520661 6229{
3e4093b6
RS
6230 int noutputs = list_length (outputs);
6231 int i;
6232 /* o[I] is the place that output number I should be written. */
703ad42b 6233 tree *o = alloca (noutputs * sizeof (tree));
3e4093b6 6234 tree tail;
d3ab9753 6235
3e4093b6
RS
6236 /* Record the contents of OUTPUTS before it is modified. */
6237 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
e6ecc89b 6238 {
3e4093b6
RS
6239 o[i] = TREE_VALUE (tail);
6240 if (o[i] == error_mark_node)
6241 return;
e6ecc89b
JJ
6242 }
6243
3e4093b6
RS
6244 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
6245 OUTPUTS some trees for where the values were actually stored. */
177560b2 6246 expand_asm_operands (string, outputs, inputs, clobbers, vol, locus);
d3ab9753 6247
3e4093b6
RS
6248 /* Copy all the intermediate outputs into the specified outputs. */
6249 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
de520661 6250 {
3e4093b6
RS
6251 if (o[i] != TREE_VALUE (tail))
6252 {
6253 expand_expr (build_modify_expr (o[i], NOP_EXPR, TREE_VALUE (tail)),
6254 NULL_RTX, VOIDmode, EXPAND_NORMAL);
6255 free_temp_slots ();
6256
6257 /* Restore the original value so that it's correct the next
6258 time we expand this function. */
6259 TREE_VALUE (tail) = o[i];
6260 }
6261 /* Detect modification of read-only values.
6262 (Otherwise done by build_modify_expr.) */
6263 else
6264 {
6265 tree type = TREE_TYPE (o[i]);
6266 if (TREE_READONLY (o[i])
6267 || TYPE_READONLY (type)
6268 || ((TREE_CODE (type) == RECORD_TYPE
6269 || TREE_CODE (type) == UNION_TYPE)
6270 && C_TYPE_FIELDS_READONLY (type)))
6271 readonly_warning (o[i], "modification by `asm'");
6272 }
de520661 6273 }
8b6a5902 6274
3e4093b6
RS
6275 /* Those MODIFY_EXPRs could do autoincrements. */
6276 emit_queue ();
6277}
6278\f
6279/* Expand a C `return' statement.
6280 RETVAL is the expression for what to return,
6281 or a null pointer for `return;' with no value. */
de520661 6282
3e4093b6
RS
6283tree
6284c_expand_return (tree retval)
6285{
6286 tree valtype = TREE_TYPE (TREE_TYPE (current_function_decl));
6287
6288 if (TREE_THIS_VOLATILE (current_function_decl))
6289 warning ("function declared `noreturn' has a `return' statement");
6290
6291 if (!retval)
de520661 6292 {
3e4093b6
RS
6293 current_function_returns_null = 1;
6294 if ((warn_return_type || flag_isoc99)
6295 && valtype != 0 && TREE_CODE (valtype) != VOID_TYPE)
6296 pedwarn_c99 ("`return' with no value, in function returning non-void");
400fbf9f 6297 }
3e4093b6 6298 else if (valtype == 0 || TREE_CODE (valtype) == VOID_TYPE)
de520661 6299 {
3e4093b6
RS
6300 current_function_returns_null = 1;
6301 if (pedantic || TREE_CODE (TREE_TYPE (retval)) != VOID_TYPE)
6302 pedwarn ("`return' with a value, in function returning void");
de520661 6303 }
3e4093b6 6304 else
de520661 6305 {
3e4093b6
RS
6306 tree t = convert_for_assignment (valtype, retval, _("return"),
6307 NULL_TREE, NULL_TREE, 0);
6308 tree res = DECL_RESULT (current_function_decl);
6309 tree inner;
6310
6311 current_function_returns_value = 1;
6312 if (t == error_mark_node)
6313 return NULL_TREE;
6314
6315 inner = t = convert (TREE_TYPE (res), t);
6316
6317 /* Strip any conversions, additions, and subtractions, and see if
6318 we are returning the address of a local variable. Warn if so. */
6319 while (1)
8b6a5902 6320 {
3e4093b6 6321 switch (TREE_CODE (inner))
8b6a5902 6322 {
3e4093b6
RS
6323 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
6324 case PLUS_EXPR:
6325 inner = TREE_OPERAND (inner, 0);
6326 continue;
6327
6328 case MINUS_EXPR:
6329 /* If the second operand of the MINUS_EXPR has a pointer
6330 type (or is converted from it), this may be valid, so
6331 don't give a warning. */
6332 {
6333 tree op1 = TREE_OPERAND (inner, 1);
8b6a5902 6334
3e4093b6
RS
6335 while (! POINTER_TYPE_P (TREE_TYPE (op1))
6336 && (TREE_CODE (op1) == NOP_EXPR
6337 || TREE_CODE (op1) == NON_LVALUE_EXPR
6338 || TREE_CODE (op1) == CONVERT_EXPR))
6339 op1 = TREE_OPERAND (op1, 0);
8b6a5902 6340
3e4093b6
RS
6341 if (POINTER_TYPE_P (TREE_TYPE (op1)))
6342 break;
8b6a5902 6343
3e4093b6
RS
6344 inner = TREE_OPERAND (inner, 0);
6345 continue;
6346 }
400fbf9f 6347
3e4093b6
RS
6348 case ADDR_EXPR:
6349 inner = TREE_OPERAND (inner, 0);
c2f4acb7 6350
3e4093b6
RS
6351 while (TREE_CODE_CLASS (TREE_CODE (inner)) == 'r')
6352 inner = TREE_OPERAND (inner, 0);
8b6a5902 6353
3e4093b6
RS
6354 if (TREE_CODE (inner) == VAR_DECL
6355 && ! DECL_EXTERNAL (inner)
6356 && ! TREE_STATIC (inner)
6357 && DECL_CONTEXT (inner) == current_function_decl)
6358 warning ("function returns address of local variable");
6359 break;
8b6a5902 6360
3e4093b6
RS
6361 default:
6362 break;
6363 }
de520661 6364
3e4093b6
RS
6365 break;
6366 }
6367
6368 retval = build (MODIFY_EXPR, TREE_TYPE (res), res, t);
de520661 6369 }
8b6a5902 6370
3e4093b6 6371 return add_stmt (build_return_stmt (retval));
de520661 6372}
3e4093b6
RS
6373\f
6374struct c_switch {
6375 /* The SWITCH_STMT being built. */
6376 tree switch_stmt;
6377 /* A splay-tree mapping the low element of a case range to the high
6378 element, or NULL_TREE if there is no high element. Used to
6379 determine whether or not a new case label duplicates an old case
6380 label. We need a tree, rather than simply a hash table, because
6381 of the GNU case range extension. */
6382 splay_tree cases;
6383 /* The next node on the stack. */
6384 struct c_switch *next;
6385};
400fbf9f 6386
3e4093b6
RS
6387/* A stack of the currently active switch statements. The innermost
6388 switch statement is on the top of the stack. There is no need to
6389 mark the stack for garbage collection because it is only active
6390 during the processing of the body of a function, and we never
6391 collect at that point. */
de520661 6392
3e4093b6 6393static struct c_switch *switch_stack;
de520661 6394
3e4093b6
RS
6395/* Start a C switch statement, testing expression EXP. Return the new
6396 SWITCH_STMT. */
de520661 6397
3e4093b6
RS
6398tree
6399c_start_case (tree exp)
de520661 6400{
3e4093b6
RS
6401 enum tree_code code;
6402 tree type, orig_type = error_mark_node;
6403 struct c_switch *cs;
2f6e4e97 6404
3e4093b6 6405 if (exp != error_mark_node)
de520661 6406 {
3e4093b6
RS
6407 code = TREE_CODE (TREE_TYPE (exp));
6408 orig_type = TREE_TYPE (exp);
6409
6410 if (! INTEGRAL_TYPE_P (orig_type)
6411 && code != ERROR_MARK)
de520661 6412 {
3e4093b6
RS
6413 error ("switch quantity not an integer");
6414 exp = integer_zero_node;
de520661 6415 }
3e4093b6 6416 else
de520661 6417 {
3e4093b6 6418 type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
8b6a5902 6419
3e4093b6
RS
6420 if (warn_traditional && !in_system_header
6421 && (type == long_integer_type_node
6422 || type == long_unsigned_type_node))
6423 warning ("`long' switch expression not converted to `int' in ISO C");
8b6a5902 6424
3e4093b6
RS
6425 exp = default_conversion (exp);
6426 type = TREE_TYPE (exp);
6427 }
6428 }
6429
6430 /* Add this new SWITCH_STMT to the stack. */
703ad42b 6431 cs = xmalloc (sizeof (*cs));
3e4093b6
RS
6432 cs->switch_stmt = build_stmt (SWITCH_STMT, exp, NULL_TREE, orig_type);
6433 cs->cases = splay_tree_new (case_compare, NULL, NULL);
6434 cs->next = switch_stack;
6435 switch_stack = cs;
6436
6437 return add_stmt (switch_stack->switch_stmt);
6438}
6439
6440/* Process a case label. */
6441
6442tree
6443do_case (tree low_value, tree high_value)
6444{
6445 tree label = NULL_TREE;
6446
6447 if (switch_stack)
6448 {
6449 bool switch_was_empty_p = (SWITCH_BODY (switch_stack->switch_stmt) == NULL_TREE);
6450
6451 label = c_add_case_label (switch_stack->cases,
6452 SWITCH_COND (switch_stack->switch_stmt),
6453 low_value, high_value);
6454 if (label == error_mark_node)
6455 label = NULL_TREE;
6456 else if (switch_was_empty_p)
6457 {
6458 /* Attach the first case label to the SWITCH_BODY. */
6459 SWITCH_BODY (switch_stack->switch_stmt) = TREE_CHAIN (switch_stack->switch_stmt);
6460 TREE_CHAIN (switch_stack->switch_stmt) = NULL_TREE;
400fbf9f 6461 }
de520661 6462 }
3e4093b6
RS
6463 else if (low_value)
6464 error ("case label not within a switch statement");
6465 else
6466 error ("`default' label not within a switch statement");
de520661 6467
3e4093b6
RS
6468 return label;
6469}
de520661 6470
3e4093b6 6471/* Finish the switch statement. */
de520661 6472
3e4093b6
RS
6473void
6474c_finish_case (void)
6475{
6476 struct c_switch *cs = switch_stack;
6477
6478 /* Rechain the next statements to the SWITCH_STMT. */
6479 last_tree = cs->switch_stmt;
6480
6481 /* Pop the stack. */
6482 switch_stack = switch_stack->next;
6483 splay_tree_delete (cs->cases);
6484 free (cs);
de520661 6485}
de520661 6486
3e4093b6
RS
6487/* Build a binary-operation expression without default conversions.
6488 CODE is the kind of expression to build.
6489 This function differs from `build' in several ways:
6490 the data type of the result is computed and recorded in it,
6491 warnings are generated if arg data types are invalid,
6492 special handling for addition and subtraction of pointers is known,
6493 and some optimization is done (operations on narrow ints
6494 are done in the narrower type when that gives the same result).
6495 Constant folding is also done before the result is returned.
de520661 6496
3e4093b6
RS
6497 Note that the operands will never have enumeral types, or function
6498 or array types, because either they will have the default conversions
6499 performed or they have both just been converted to some other type in which
6500 the arithmetic is to be done. */
6501
6502tree
6503build_binary_op (enum tree_code code, tree orig_op0, tree orig_op1,
6504 int convert_p)
de520661 6505{
3e4093b6
RS
6506 tree type0, type1;
6507 enum tree_code code0, code1;
6508 tree op0, op1;
b62acd60 6509
3e4093b6
RS
6510 /* Expression code to give to the expression when it is built.
6511 Normally this is CODE, which is what the caller asked for,
6512 but in some special cases we change it. */
6513 enum tree_code resultcode = code;
8b6a5902 6514
3e4093b6
RS
6515 /* Data type in which the computation is to be performed.
6516 In the simplest cases this is the common type of the arguments. */
6517 tree result_type = NULL;
6518
6519 /* Nonzero means operands have already been type-converted
6520 in whatever way is necessary.
6521 Zero means they need to be converted to RESULT_TYPE. */
6522 int converted = 0;
6523
6524 /* Nonzero means create the expression with this type, rather than
6525 RESULT_TYPE. */
6526 tree build_type = 0;
6527
6528 /* Nonzero means after finally constructing the expression
6529 convert it to this type. */
6530 tree final_type = 0;
6531
6532 /* Nonzero if this is an operation like MIN or MAX which can
6533 safely be computed in short if both args are promoted shorts.
6534 Also implies COMMON.
6535 -1 indicates a bitwise operation; this makes a difference
6536 in the exact conditions for when it is safe to do the operation
6537 in a narrower mode. */
6538 int shorten = 0;
6539
6540 /* Nonzero if this is a comparison operation;
6541 if both args are promoted shorts, compare the original shorts.
6542 Also implies COMMON. */
6543 int short_compare = 0;
6544
6545 /* Nonzero if this is a right-shift operation, which can be computed on the
6546 original short and then promoted if the operand is a promoted short. */
6547 int short_shift = 0;
6548
6549 /* Nonzero means set RESULT_TYPE to the common type of the args. */
6550 int common = 0;
6551
6552 if (convert_p)
790e9490 6553 {
3e4093b6
RS
6554 op0 = default_conversion (orig_op0);
6555 op1 = default_conversion (orig_op1);
790e9490 6556 }
3e4093b6 6557 else
790e9490 6558 {
3e4093b6
RS
6559 op0 = orig_op0;
6560 op1 = orig_op1;
790e9490
RS
6561 }
6562
3e4093b6
RS
6563 type0 = TREE_TYPE (op0);
6564 type1 = TREE_TYPE (op1);
91fa3c30 6565
3e4093b6
RS
6566 /* The expression codes of the data types of the arguments tell us
6567 whether the arguments are integers, floating, pointers, etc. */
6568 code0 = TREE_CODE (type0);
6569 code1 = TREE_CODE (type1);
6570
6571 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
6572 STRIP_TYPE_NOPS (op0);
6573 STRIP_TYPE_NOPS (op1);
6574
6575 /* If an error was already reported for one of the arguments,
6576 avoid reporting another error. */
6577
6578 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
6579 return error_mark_node;
6580
6581 switch (code)
de520661 6582 {
3e4093b6
RS
6583 case PLUS_EXPR:
6584 /* Handle the pointer + int case. */
6585 if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
6586 return pointer_int_sum (PLUS_EXPR, op0, op1);
6587 else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
6588 return pointer_int_sum (PLUS_EXPR, op1, op0);
fe67cf58 6589 else
3e4093b6
RS
6590 common = 1;
6591 break;
400fbf9f 6592
3e4093b6
RS
6593 case MINUS_EXPR:
6594 /* Subtraction of two similar pointers.
6595 We must subtract them as integers, then divide by object size. */
6596 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
6597 && comp_target_types (type0, type1, 1))
6598 return pointer_diff (op0, op1);
6599 /* Handle pointer minus int. Just like pointer plus int. */
6600 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
6601 return pointer_int_sum (MINUS_EXPR, op0, op1);
6602 else
6603 common = 1;
6604 break;
8b6a5902 6605
3e4093b6
RS
6606 case MULT_EXPR:
6607 common = 1;
6608 break;
6609
6610 case TRUNC_DIV_EXPR:
6611 case CEIL_DIV_EXPR:
6612 case FLOOR_DIV_EXPR:
6613 case ROUND_DIV_EXPR:
6614 case EXACT_DIV_EXPR:
6615 /* Floating point division by zero is a legitimate way to obtain
6616 infinities and NaNs. */
6617 if (warn_div_by_zero && skip_evaluation == 0 && integer_zerop (op1))
6618 warning ("division by zero");
6619
6620 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
6621 || code0 == COMPLEX_TYPE || code0 == VECTOR_TYPE)
6622 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
6623 || code1 == COMPLEX_TYPE || code1 == VECTOR_TYPE))
400fbf9f 6624 {
3e4093b6
RS
6625 if (!(code0 == INTEGER_TYPE && code1 == INTEGER_TYPE))
6626 resultcode = RDIV_EXPR;
6627 else
6628 /* Although it would be tempting to shorten always here, that
6629 loses on some targets, since the modulo instruction is
6630 undefined if the quotient can't be represented in the
6631 computation mode. We shorten only if unsigned or if
6632 dividing by something we know != -1. */
6633 shorten = (TREE_UNSIGNED (TREE_TYPE (orig_op0))
6634 || (TREE_CODE (op1) == INTEGER_CST
6635 && ! integer_all_onesp (op1)));
6636 common = 1;
6637 }
6638 break;
de520661 6639
3e4093b6 6640 case BIT_AND_EXPR:
3e4093b6
RS
6641 case BIT_IOR_EXPR:
6642 case BIT_XOR_EXPR:
6643 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
6644 shorten = -1;
6645 else if (code0 == VECTOR_TYPE && code1 == VECTOR_TYPE)
6646 common = 1;
6647 break;
6648
6649 case TRUNC_MOD_EXPR:
6650 case FLOOR_MOD_EXPR:
6651 if (warn_div_by_zero && skip_evaluation == 0 && integer_zerop (op1))
6652 warning ("division by zero");
de520661 6653
3e4093b6
RS
6654 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
6655 {
6656 /* Although it would be tempting to shorten always here, that loses
6657 on some targets, since the modulo instruction is undefined if the
6658 quotient can't be represented in the computation mode. We shorten
6659 only if unsigned or if dividing by something we know != -1. */
6660 shorten = (TREE_UNSIGNED (TREE_TYPE (orig_op0))
6661 || (TREE_CODE (op1) == INTEGER_CST
6662 && ! integer_all_onesp (op1)));
6663 common = 1;
6664 }
6665 break;
de520661 6666
3e4093b6
RS
6667 case TRUTH_ANDIF_EXPR:
6668 case TRUTH_ORIF_EXPR:
6669 case TRUTH_AND_EXPR:
6670 case TRUTH_OR_EXPR:
6671 case TRUTH_XOR_EXPR:
6672 if ((code0 == INTEGER_TYPE || code0 == POINTER_TYPE
6673 || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
6674 && (code1 == INTEGER_TYPE || code1 == POINTER_TYPE
6675 || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
6676 {
6677 /* Result of these operations is always an int,
6678 but that does not mean the operands should be
6679 converted to ints! */
6680 result_type = integer_type_node;
6681 op0 = c_common_truthvalue_conversion (op0);
6682 op1 = c_common_truthvalue_conversion (op1);
6683 converted = 1;
6684 }
6685 break;
eba80994 6686
3e4093b6
RS
6687 /* Shift operations: result has same type as first operand;
6688 always convert second operand to int.
6689 Also set SHORT_SHIFT if shifting rightward. */
de520661 6690
3e4093b6
RS
6691 case RSHIFT_EXPR:
6692 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
6693 {
6694 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
b62acd60 6695 {
3e4093b6
RS
6696 if (tree_int_cst_sgn (op1) < 0)
6697 warning ("right shift count is negative");
6698 else
bbb818c6 6699 {
3e4093b6
RS
6700 if (! integer_zerop (op1))
6701 short_shift = 1;
6702
6703 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
6704 warning ("right shift count >= width of type");
bbb818c6 6705 }
b62acd60 6706 }
de520661 6707
3e4093b6
RS
6708 /* Use the type of the value to be shifted. */
6709 result_type = type0;
6710 /* Convert the shift-count to an integer, regardless of size
6711 of value being shifted. */
6712 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
6713 op1 = convert (integer_type_node, op1);
6714 /* Avoid converting op1 to result_type later. */
6715 converted = 1;
400fbf9f 6716 }
3e4093b6 6717 break;
253b6b82 6718
3e4093b6
RS
6719 case LSHIFT_EXPR:
6720 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
6721 {
6722 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
de520661 6723 {
3e4093b6
RS
6724 if (tree_int_cst_sgn (op1) < 0)
6725 warning ("left shift count is negative");
de520661 6726
3e4093b6
RS
6727 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
6728 warning ("left shift count >= width of type");
94ba5069 6729 }
de520661 6730
3e4093b6
RS
6731 /* Use the type of the value to be shifted. */
6732 result_type = type0;
6733 /* Convert the shift-count to an integer, regardless of size
6734 of value being shifted. */
6735 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
6736 op1 = convert (integer_type_node, op1);
6737 /* Avoid converting op1 to result_type later. */
6738 converted = 1;
400fbf9f 6739 }
3e4093b6 6740 break;
de520661 6741
3e4093b6
RS
6742 case RROTATE_EXPR:
6743 case LROTATE_EXPR:
6744 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
6745 {
6746 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
de520661 6747 {
3e4093b6
RS
6748 if (tree_int_cst_sgn (op1) < 0)
6749 warning ("shift count is negative");
6750 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
6751 warning ("shift count >= width of type");
de520661
RS
6752 }
6753
3e4093b6
RS
6754 /* Use the type of the value to be shifted. */
6755 result_type = type0;
6756 /* Convert the shift-count to an integer, regardless of size
6757 of value being shifted. */
6758 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
6759 op1 = convert (integer_type_node, op1);
6760 /* Avoid converting op1 to result_type later. */
6761 converted = 1;
6762 }
6763 break;
400fbf9f 6764
3e4093b6
RS
6765 case EQ_EXPR:
6766 case NE_EXPR:
6767 if (warn_float_equal && (code0 == REAL_TYPE || code1 == REAL_TYPE))
6768 warning ("comparing floating point with == or != is unsafe");
6769 /* Result of comparison is always int,
6770 but don't convert the args to int! */
6771 build_type = integer_type_node;
6772 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
6773 || code0 == COMPLEX_TYPE
6774 || code0 == VECTOR_TYPE)
6775 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
6776 || code1 == COMPLEX_TYPE
6777 || code1 == VECTOR_TYPE))
6778 short_compare = 1;
6779 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
6780 {
6781 tree tt0 = TREE_TYPE (type0);
6782 tree tt1 = TREE_TYPE (type1);
6783 /* Anything compares with void *. void * compares with anything.
6784 Otherwise, the targets must be compatible
6785 and both must be object or both incomplete. */
6786 if (comp_target_types (type0, type1, 1))
6787 result_type = common_type (type0, type1);
6788 else if (VOID_TYPE_P (tt0))
ee2990e7 6789 {
3e4093b6
RS
6790 /* op0 != orig_op0 detects the case of something
6791 whose value is 0 but which isn't a valid null ptr const. */
6792 if (pedantic && (!integer_zerop (op0) || op0 != orig_op0)
6793 && TREE_CODE (tt1) == FUNCTION_TYPE)
6794 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
ee2990e7 6795 }
3e4093b6 6796 else if (VOID_TYPE_P (tt1))
e6834654 6797 {
3e4093b6
RS
6798 if (pedantic && (!integer_zerop (op1) || op1 != orig_op1)
6799 && TREE_CODE (tt0) == FUNCTION_TYPE)
6800 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
e6834654 6801 }
3e4093b6
RS
6802 else
6803 pedwarn ("comparison of distinct pointer types lacks a cast");
e6834654 6804
3e4093b6
RS
6805 if (result_type == NULL_TREE)
6806 result_type = ptr_type_node;
e6834654 6807 }
3e4093b6
RS
6808 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
6809 && integer_zerop (op1))
6810 result_type = type0;
6811 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
6812 && integer_zerop (op0))
6813 result_type = type1;
6814 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
de520661 6815 {
3e4093b6
RS
6816 result_type = type0;
6817 pedwarn ("comparison between pointer and integer");
de520661 6818 }
3e4093b6 6819 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
8b6a5902 6820 {
3e4093b6
RS
6821 result_type = type1;
6822 pedwarn ("comparison between pointer and integer");
8b6a5902 6823 }
3e4093b6 6824 break;
8b6a5902 6825
3e4093b6
RS
6826 case MAX_EXPR:
6827 case MIN_EXPR:
6828 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
6829 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
6830 shorten = 1;
6831 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
8b6a5902 6832 {
3e4093b6 6833 if (comp_target_types (type0, type1, 1))
8b6a5902 6834 {
3e4093b6
RS
6835 result_type = common_type (type0, type1);
6836 if (pedantic
6837 && TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
6838 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
8b6a5902 6839 }
3e4093b6 6840 else
8b6a5902 6841 {
3e4093b6
RS
6842 result_type = ptr_type_node;
6843 pedwarn ("comparison of distinct pointer types lacks a cast");
8b6a5902 6844 }
8b6a5902 6845 }
de520661 6846 break;
400fbf9f 6847
3e4093b6
RS
6848 case LE_EXPR:
6849 case GE_EXPR:
6850 case LT_EXPR:
6851 case GT_EXPR:
6852 build_type = integer_type_node;
6853 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
6854 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
6855 short_compare = 1;
6856 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
6857 {
6858 if (comp_target_types (type0, type1, 1))
6859 {
6860 result_type = common_type (type0, type1);
6861 if (!COMPLETE_TYPE_P (TREE_TYPE (type0))
6862 != !COMPLETE_TYPE_P (TREE_TYPE (type1)))
6863 pedwarn ("comparison of complete and incomplete pointers");
6864 else if (pedantic
6865 && TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
6866 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
6867 }
6868 else
6869 {
6870 result_type = ptr_type_node;
6871 pedwarn ("comparison of distinct pointer types lacks a cast");
6872 }
6873 }
6874 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
6875 && integer_zerop (op1))
6876 {
6877 result_type = type0;
6878 if (pedantic || extra_warnings)
6879 pedwarn ("ordered comparison of pointer with integer zero");
6880 }
6881 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
6882 && integer_zerop (op0))
6883 {
6884 result_type = type1;
6885 if (pedantic)
6886 pedwarn ("ordered comparison of pointer with integer zero");
6887 }
6888 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
6889 {
6890 result_type = type0;
6891 pedwarn ("comparison between pointer and integer");
6892 }
6893 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
6894 {
6895 result_type = type1;
6896 pedwarn ("comparison between pointer and integer");
6897 }
6898 break;
64094f6a 6899
3e4093b6
RS
6900 case UNORDERED_EXPR:
6901 case ORDERED_EXPR:
6902 case UNLT_EXPR:
6903 case UNLE_EXPR:
6904 case UNGT_EXPR:
6905 case UNGE_EXPR:
6906 case UNEQ_EXPR:
6907 build_type = integer_type_node;
6908 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
6909 {
6910 error ("unordered comparison on non-floating point argument");
6911 return error_mark_node;
6912 }
6913 common = 1;
6914 break;
64094f6a 6915
3e4093b6
RS
6916 default:
6917 break;
c9fe6f9f 6918 }
8f17b5c5 6919
3e4093b6
RS
6920 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE
6921 || code0 == VECTOR_TYPE)
6922 &&
6923 (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE
6924 || code1 == VECTOR_TYPE))
400fbf9f 6925 {
3e4093b6 6926 int none_complex = (code0 != COMPLEX_TYPE && code1 != COMPLEX_TYPE);
39b726dd 6927
3e4093b6
RS
6928 if (shorten || common || short_compare)
6929 result_type = common_type (type0, type1);
400fbf9f 6930
3e4093b6
RS
6931 /* For certain operations (which identify themselves by shorten != 0)
6932 if both args were extended from the same smaller type,
6933 do the arithmetic in that type and then extend.
400fbf9f 6934
3e4093b6
RS
6935 shorten !=0 and !=1 indicates a bitwise operation.
6936 For them, this optimization is safe only if
6937 both args are zero-extended or both are sign-extended.
6938 Otherwise, we might change the result.
6939 Eg, (short)-1 | (unsigned short)-1 is (int)-1
6940 but calculated in (unsigned short) it would be (unsigned short)-1. */
400fbf9f 6941
3e4093b6
RS
6942 if (shorten && none_complex)
6943 {
6944 int unsigned0, unsigned1;
6945 tree arg0 = get_narrower (op0, &unsigned0);
6946 tree arg1 = get_narrower (op1, &unsigned1);
6947 /* UNS is 1 if the operation to be done is an unsigned one. */
6948 int uns = TREE_UNSIGNED (result_type);
6949 tree type;
400fbf9f 6950
3e4093b6 6951 final_type = result_type;
70768eda 6952
3e4093b6
RS
6953 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
6954 but it *requires* conversion to FINAL_TYPE. */
70768eda 6955
3e4093b6
RS
6956 if ((TYPE_PRECISION (TREE_TYPE (op0))
6957 == TYPE_PRECISION (TREE_TYPE (arg0)))
6958 && TREE_TYPE (op0) != final_type)
6959 unsigned0 = TREE_UNSIGNED (TREE_TYPE (op0));
6960 if ((TYPE_PRECISION (TREE_TYPE (op1))
6961 == TYPE_PRECISION (TREE_TYPE (arg1)))
6962 && TREE_TYPE (op1) != final_type)
6963 unsigned1 = TREE_UNSIGNED (TREE_TYPE (op1));
88a3dbc1 6964
3e4093b6 6965 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
abe80e6d 6966
3e4093b6
RS
6967 /* For bitwise operations, signedness of nominal type
6968 does not matter. Consider only how operands were extended. */
6969 if (shorten == -1)
6970 uns = unsigned0;
abe80e6d 6971
3e4093b6
RS
6972 /* Note that in all three cases below we refrain from optimizing
6973 an unsigned operation on sign-extended args.
6974 That would not be valid. */
abe80e6d 6975
3e4093b6
RS
6976 /* Both args variable: if both extended in same way
6977 from same width, do it in that width.
6978 Do it unsigned if args were zero-extended. */
6979 if ((TYPE_PRECISION (TREE_TYPE (arg0))
6980 < TYPE_PRECISION (result_type))
6981 && (TYPE_PRECISION (TREE_TYPE (arg1))
6982 == TYPE_PRECISION (TREE_TYPE (arg0)))
6983 && unsigned0 == unsigned1
6984 && (unsigned0 || !uns))
6985 result_type
6986 = c_common_signed_or_unsigned_type
6987 (unsigned0, common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
6988 else if (TREE_CODE (arg0) == INTEGER_CST
6989 && (unsigned1 || !uns)
6990 && (TYPE_PRECISION (TREE_TYPE (arg1))
6991 < TYPE_PRECISION (result_type))
6992 && (type
6993 = c_common_signed_or_unsigned_type (unsigned1,
6994 TREE_TYPE (arg1)),
6995 int_fits_type_p (arg0, type)))
6996 result_type = type;
6997 else if (TREE_CODE (arg1) == INTEGER_CST
6998 && (unsigned0 || !uns)
6999 && (TYPE_PRECISION (TREE_TYPE (arg0))
7000 < TYPE_PRECISION (result_type))
7001 && (type
7002 = c_common_signed_or_unsigned_type (unsigned0,
7003 TREE_TYPE (arg0)),
7004 int_fits_type_p (arg1, type)))
7005 result_type = type;
7006 }
88a3dbc1 7007
3e4093b6 7008 /* Shifts can be shortened if shifting right. */
2f6e4e97 7009
3e4093b6
RS
7010 if (short_shift)
7011 {
7012 int unsigned_arg;
7013 tree arg0 = get_narrower (op0, &unsigned_arg);
88a3dbc1 7014
3e4093b6 7015 final_type = result_type;
abe80e6d 7016
3e4093b6
RS
7017 if (arg0 == op0 && final_type == TREE_TYPE (op0))
7018 unsigned_arg = TREE_UNSIGNED (TREE_TYPE (op0));
e9a25f70 7019
3e4093b6
RS
7020 if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
7021 /* We can shorten only if the shift count is less than the
7022 number of bits in the smaller type size. */
7023 && compare_tree_int (op1, TYPE_PRECISION (TREE_TYPE (arg0))) < 0
7024 /* We cannot drop an unsigned shift after sign-extension. */
7025 && (!TREE_UNSIGNED (final_type) || unsigned_arg))
7026 {
7027 /* Do an unsigned shift if the operand was zero-extended. */
7028 result_type
7029 = c_common_signed_or_unsigned_type (unsigned_arg,
7030 TREE_TYPE (arg0));
7031 /* Convert value-to-be-shifted to that type. */
7032 if (TREE_TYPE (op0) != result_type)
7033 op0 = convert (result_type, op0);
7034 converted = 1;
abe80e6d 7035 }
88a3dbc1
RK
7036 }
7037
3e4093b6
RS
7038 /* Comparison operations are shortened too but differently.
7039 They identify themselves by setting short_compare = 1. */
56cb9733 7040
3e4093b6
RS
7041 if (short_compare)
7042 {
7043 /* Don't write &op0, etc., because that would prevent op0
7044 from being kept in a register.
7045 Instead, make copies of the our local variables and
7046 pass the copies by reference, then copy them back afterward. */
7047 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
7048 enum tree_code xresultcode = resultcode;
7049 tree val
7050 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
8f17b5c5 7051
3e4093b6
RS
7052 if (val != 0)
7053 return val;
8f17b5c5 7054
3e4093b6
RS
7055 op0 = xop0, op1 = xop1;
7056 converted = 1;
7057 resultcode = xresultcode;
8f17b5c5 7058
3e4093b6
RS
7059 if (warn_sign_compare && skip_evaluation == 0)
7060 {
7061 int op0_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op0));
7062 int op1_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op1));
7063 int unsignedp0, unsignedp1;
7064 tree primop0 = get_narrower (op0, &unsignedp0);
7065 tree primop1 = get_narrower (op1, &unsignedp1);
400fbf9f 7066
3e4093b6
RS
7067 xop0 = orig_op0;
7068 xop1 = orig_op1;
7069 STRIP_TYPE_NOPS (xop0);
7070 STRIP_TYPE_NOPS (xop1);
e89a9554 7071
3e4093b6
RS
7072 /* Give warnings for comparisons between signed and unsigned
7073 quantities that may fail.
e89a9554 7074
3e4093b6
RS
7075 Do the checking based on the original operand trees, so that
7076 casts will be considered, but default promotions won't be.
400fbf9f 7077
3e4093b6
RS
7078 Do not warn if the comparison is being done in a signed type,
7079 since the signed type will only be chosen if it can represent
7080 all the values of the unsigned type. */
7081 if (! TREE_UNSIGNED (result_type))
7082 /* OK */;
7083 /* Do not warn if both operands are the same signedness. */
7084 else if (op0_signed == op1_signed)
7085 /* OK */;
7086 else
7087 {
7088 tree sop, uop;
8f17b5c5 7089
3e4093b6
RS
7090 if (op0_signed)
7091 sop = xop0, uop = xop1;
7092 else
7093 sop = xop1, uop = xop0;
8f17b5c5 7094
3e4093b6
RS
7095 /* Do not warn if the signed quantity is an
7096 unsuffixed integer literal (or some static
7097 constant expression involving such literals or a
7098 conditional expression involving such literals)
7099 and it is non-negative. */
7100 if (c_tree_expr_nonnegative_p (sop))
7101 /* OK */;
7102 /* Do not warn if the comparison is an equality operation,
7103 the unsigned quantity is an integral constant, and it
7104 would fit in the result if the result were signed. */
7105 else if (TREE_CODE (uop) == INTEGER_CST
7106 && (resultcode == EQ_EXPR || resultcode == NE_EXPR)
7107 && int_fits_type_p
7108 (uop, c_common_signed_type (result_type)))
7109 /* OK */;
7110 /* Do not warn if the unsigned quantity is an enumeration
7111 constant and its maximum value would fit in the result
7112 if the result were signed. */
7113 else if (TREE_CODE (uop) == INTEGER_CST
7114 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYPE
7115 && int_fits_type_p
7116 (TYPE_MAX_VALUE (TREE_TYPE(uop)),
7117 c_common_signed_type (result_type)))
7118 /* OK */;
7119 else
7120 warning ("comparison between signed and unsigned");
7121 }
8f17b5c5 7122
3e4093b6
RS
7123 /* Warn if two unsigned values are being compared in a size
7124 larger than their original size, and one (and only one) is the
7125 result of a `~' operator. This comparison will always fail.
8f17b5c5 7126
3e4093b6
RS
7127 Also warn if one operand is a constant, and the constant
7128 does not have all bits set that are set in the ~ operand
7129 when it is extended. */
8f17b5c5 7130
3e4093b6
RS
7131 if ((TREE_CODE (primop0) == BIT_NOT_EXPR)
7132 != (TREE_CODE (primop1) == BIT_NOT_EXPR))
7133 {
7134 if (TREE_CODE (primop0) == BIT_NOT_EXPR)
7135 primop0 = get_narrower (TREE_OPERAND (primop0, 0),
7136 &unsignedp0);
7137 else
7138 primop1 = get_narrower (TREE_OPERAND (primop1, 0),
7139 &unsignedp1);
64094f6a 7140
3e4093b6
RS
7141 if (host_integerp (primop0, 0) || host_integerp (primop1, 0))
7142 {
7143 tree primop;
7144 HOST_WIDE_INT constant, mask;
7145 int unsignedp, bits;
2ad1815d 7146
3e4093b6
RS
7147 if (host_integerp (primop0, 0))
7148 {
7149 primop = primop1;
7150 unsignedp = unsignedp1;
7151 constant = tree_low_cst (primop0, 0);
7152 }
7153 else
7154 {
7155 primop = primop0;
7156 unsignedp = unsignedp0;
7157 constant = tree_low_cst (primop1, 0);
7158 }
7159
7160 bits = TYPE_PRECISION (TREE_TYPE (primop));
7161 if (bits < TYPE_PRECISION (result_type)
7162 && bits < HOST_BITS_PER_WIDE_INT && unsignedp)
7163 {
7164 mask = (~ (HOST_WIDE_INT) 0) << bits;
7165 if ((mask & constant) != mask)
7166 warning ("comparison of promoted ~unsigned with constant");
7167 }
7168 }
7169 else if (unsignedp0 && unsignedp1
7170 && (TYPE_PRECISION (TREE_TYPE (primop0))
7171 < TYPE_PRECISION (result_type))
7172 && (TYPE_PRECISION (TREE_TYPE (primop1))
7173 < TYPE_PRECISION (result_type)))
7174 warning ("comparison of promoted ~unsigned with unsigned");
7175 }
7176 }
2ad1815d 7177 }
64094f6a 7178 }
64094f6a 7179
3e4093b6
RS
7180 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
7181 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
7182 Then the expression will be built.
7183 It will be given type FINAL_TYPE if that is nonzero;
7184 otherwise, it will be given type RESULT_TYPE. */
400fbf9f 7185
3e4093b6
RS
7186 if (!result_type)
7187 {
7188 binary_op_error (code);
7189 return error_mark_node;
7190 }
400fbf9f 7191
3e4093b6
RS
7192 if (! converted)
7193 {
7194 if (TREE_TYPE (op0) != result_type)
7195 op0 = convert (result_type, op0);
7196 if (TREE_TYPE (op1) != result_type)
7197 op1 = convert (result_type, op1);
7198 }
400fbf9f 7199
3e4093b6
RS
7200 if (build_type == NULL_TREE)
7201 build_type = result_type;
400fbf9f 7202
3e4093b6
RS
7203 {
7204 tree result = build (resultcode, build_type, op0, op1);
7205 tree folded;
7206
7207 /* Treat expressions in initializers specially as they can't trap. */
7208 folded = initializer_stack ? fold_initializer (result)
7209 : fold (result);
7210 if (folded == result)
7211 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
7212 if (final_type != 0)
7213 return convert (final_type, folded);
7214 return folded;
7215 }
400fbf9f 7216}
3e4093b6 7217