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