Import final gcc2 snapshot (990109)
[official-gcc.git] / gcc / c-typeck.c
blobab21f486466b8339b713a4aefc111adb9bf257bc
1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 88, 91-97, 1998 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* This file is part of the C front end.
23 It contains routines to build C expressions given their operands,
24 including computing the types of the result, C-specific error checks,
25 and some optimization.
27 There are also routines to build RETURN_STMT nodes and CASE_STMT nodes,
28 and to process initializations in declarations (since they work
29 like a strange sort of assignment). */
31 #include "config.h"
32 #include "system.h"
33 #include "tree.h"
34 #include "c-tree.h"
35 #include "flags.h"
36 #include "output.h"
37 #include "intl.h"
39 /* Nonzero if we've already printed a "missing braces around initializer"
40 message within this initializer. */
41 static int missing_braces_mentioned;
43 static tree qualify_type PROTO((tree, tree));
44 static int comp_target_types PROTO((tree, tree));
45 static int function_types_compatible_p PROTO((tree, tree));
46 static int type_lists_compatible_p PROTO((tree, tree));
47 static int self_promoting_type_p PROTO((tree));
48 static tree decl_constant_value PROTO((tree));
49 static tree lookup_field PROTO((tree, tree, tree *));
50 static tree convert_arguments PROTO((tree, tree, tree, tree));
51 static tree pointer_int_sum PROTO((enum tree_code, tree, tree));
52 static tree pointer_diff PROTO((tree, tree));
53 static tree unary_complex_lvalue PROTO((enum tree_code, tree));
54 static void pedantic_lvalue_warning PROTO((enum tree_code));
55 static tree internal_build_compound_expr PROTO((tree, int));
56 static tree convert_for_assignment PROTO((tree, tree, char *, tree,
57 tree, int));
58 static void warn_for_assignment PROTO((char *, char *, tree, int));
59 static tree valid_compound_expr_initializer PROTO((tree, tree));
60 static void push_string PROTO((char *));
61 static void push_member_name PROTO((tree));
62 static void push_array_bounds PROTO((int));
63 static int spelling_length PROTO((void));
64 static char *print_spelling PROTO((char *));
65 static char *get_spelling PROTO((char *));
66 static void warning_init PROTO((char *));
67 static tree digest_init PROTO((tree, tree, int, int));
68 static void check_init_type_bitfields PROTO((tree));
69 static void output_init_element PROTO((tree, tree, tree, int));
70 static void output_pending_init_elements PROTO((int));
71 static void add_pending_init PROTO((tree, tree));
72 static int pending_init_member PROTO((tree));
74 /* Do `exp = require_complete_type (exp);' to make sure exp
75 does not have an incomplete type. (That includes void types.) */
77 tree
78 require_complete_type (value)
79 tree value;
81 tree type = TREE_TYPE (value);
83 /* First, detect a valid value with a complete type. */
84 if (TYPE_SIZE (type) != 0
85 && type != void_type_node)
86 return value;
88 incomplete_type_error (value, type);
89 return error_mark_node;
92 /* Print an error message for invalid use of an incomplete type.
93 VALUE is the expression that was used (or 0 if that isn't known)
94 and TYPE is the type that was invalid. */
96 void
97 incomplete_type_error (value, type)
98 tree value;
99 tree type;
101 char *type_code_string;
103 /* Avoid duplicate error message. */
104 if (TREE_CODE (type) == ERROR_MARK)
105 return;
107 if (value != 0 && (TREE_CODE (value) == VAR_DECL
108 || TREE_CODE (value) == PARM_DECL))
109 error ("`%s' has an incomplete type",
110 IDENTIFIER_POINTER (DECL_NAME (value)));
111 else
113 retry:
114 /* We must print an error message. Be clever about what it says. */
116 switch (TREE_CODE (type))
118 case RECORD_TYPE:
119 type_code_string = "struct";
120 break;
122 case UNION_TYPE:
123 type_code_string = "union";
124 break;
126 case ENUMERAL_TYPE:
127 type_code_string = "enum";
128 break;
130 case VOID_TYPE:
131 error ("invalid use of void expression");
132 return;
134 case ARRAY_TYPE:
135 if (TYPE_DOMAIN (type))
137 type = TREE_TYPE (type);
138 goto retry;
140 error ("invalid use of array with unspecified bounds");
141 return;
143 default:
144 abort ();
147 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
148 error ("invalid use of undefined type `%s %s'",
149 type_code_string, IDENTIFIER_POINTER (TYPE_NAME (type)));
150 else
151 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
152 error ("invalid use of incomplete typedef `%s'",
153 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
157 /* Return a variant of TYPE which has all the type qualifiers of LIKE
158 as well as those of TYPE. */
160 static tree
161 qualify_type (type, like)
162 tree type, like;
164 int constflag = TYPE_READONLY (type) || TYPE_READONLY (like);
165 int volflag = TYPE_VOLATILE (type) || TYPE_VOLATILE (like);
166 return c_build_type_variant (type, constflag, volflag);
169 /* Return the common type of two types.
170 We assume that comptypes has already been done and returned 1;
171 if that isn't so, this may crash. In particular, we assume that qualifiers
172 match.
174 This is the type for the result of most arithmetic operations
175 if the operands have the given two types. */
177 tree
178 common_type (t1, t2)
179 tree t1, t2;
181 register enum tree_code code1;
182 register enum tree_code code2;
183 tree attributes;
185 /* Save time if the two types are the same. */
187 if (t1 == t2) return t1;
189 /* If one type is nonsense, use the other. */
190 if (t1 == error_mark_node)
191 return t2;
192 if (t2 == error_mark_node)
193 return t1;
195 /* Merge the attributes */
196 attributes = merge_attributes (TYPE_ATTRIBUTES (t1), TYPE_ATTRIBUTES (t2));
198 /* Treat an enum type as the unsigned integer type of the same width. */
200 if (TREE_CODE (t1) == ENUMERAL_TYPE)
201 t1 = type_for_size (TYPE_PRECISION (t1), 1);
202 if (TREE_CODE (t2) == ENUMERAL_TYPE)
203 t2 = type_for_size (TYPE_PRECISION (t2), 1);
205 code1 = TREE_CODE (t1);
206 code2 = TREE_CODE (t2);
208 /* If one type is complex, form the common type of the non-complex
209 components, then make that complex. Use T1 or T2 if it is the
210 required type. */
211 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
213 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
214 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
215 tree subtype = common_type (subtype1, subtype2);
217 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
218 return build_type_attribute_variant (t1, attributes);
219 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
220 return build_type_attribute_variant (t2, attributes);
221 else
222 return build_type_attribute_variant (build_complex_type (subtype),
223 attributes);
226 switch (code1)
228 case INTEGER_TYPE:
229 case REAL_TYPE:
230 /* If only one is real, use it as the result. */
232 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
233 return build_type_attribute_variant (t1, attributes);
235 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
236 return build_type_attribute_variant (t2, attributes);
238 /* Both real or both integers; use the one with greater precision. */
240 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
241 return build_type_attribute_variant (t1, attributes);
242 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
243 return build_type_attribute_variant (t2, attributes);
245 /* Same precision. Prefer longs to ints even when same size. */
247 if (TYPE_MAIN_VARIANT (t1) == long_unsigned_type_node
248 || TYPE_MAIN_VARIANT (t2) == long_unsigned_type_node)
249 return build_type_attribute_variant (long_unsigned_type_node,
250 attributes);
252 if (TYPE_MAIN_VARIANT (t1) == long_integer_type_node
253 || TYPE_MAIN_VARIANT (t2) == long_integer_type_node)
255 /* But preserve unsignedness from the other type,
256 since long cannot hold all the values of an unsigned int. */
257 if (TREE_UNSIGNED (t1) || TREE_UNSIGNED (t2))
258 t1 = long_unsigned_type_node;
259 else
260 t1 = long_integer_type_node;
261 return build_type_attribute_variant (t1, attributes);
264 /* Likewise, prefer long double to double even if same size. */
265 if (TYPE_MAIN_VARIANT (t1) == long_double_type_node
266 || TYPE_MAIN_VARIANT (t2) == long_double_type_node)
267 return build_type_attribute_variant (long_double_type_node,
268 attributes);
270 /* Otherwise prefer the unsigned one. */
272 if (TREE_UNSIGNED (t1))
273 return build_type_attribute_variant (t1, attributes);
274 else
275 return build_type_attribute_variant (t2, attributes);
277 case POINTER_TYPE:
278 /* For two pointers, do this recursively on the target type,
279 and combine the qualifiers of the two types' targets. */
280 /* This code was turned off; I don't know why.
281 But ANSI C specifies doing this with the qualifiers.
282 So I turned it on again. */
284 tree target = common_type (TYPE_MAIN_VARIANT (TREE_TYPE (t1)),
285 TYPE_MAIN_VARIANT (TREE_TYPE (t2)));
286 int constp
287 = TYPE_READONLY (TREE_TYPE (t1)) || TYPE_READONLY (TREE_TYPE (t2));
288 int volatilep
289 = TYPE_VOLATILE (TREE_TYPE (t1)) || TYPE_VOLATILE (TREE_TYPE (t2));
290 t1 = build_pointer_type (c_build_type_variant (target, constp,
291 volatilep));
292 return build_type_attribute_variant (t1, attributes);
294 #if 0
295 t1 = build_pointer_type (common_type (TREE_TYPE (t1), TREE_TYPE (t2)));
296 return build_type_attribute_variant (t1, attributes);
297 #endif
299 case ARRAY_TYPE:
301 tree elt = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
302 /* Save space: see if the result is identical to one of the args. */
303 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
304 return build_type_attribute_variant (t1, attributes);
305 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
306 return build_type_attribute_variant (t2, attributes);
307 /* Merge the element types, and have a size if either arg has one. */
308 t1 = build_array_type (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
309 return build_type_attribute_variant (t1, attributes);
312 case FUNCTION_TYPE:
313 /* Function types: prefer the one that specified arg types.
314 If both do, merge the arg types. Also merge the return types. */
316 tree valtype = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
317 tree p1 = TYPE_ARG_TYPES (t1);
318 tree p2 = TYPE_ARG_TYPES (t2);
319 int len;
320 tree newargs, n;
321 int i;
323 /* Save space: see if the result is identical to one of the args. */
324 if (valtype == TREE_TYPE (t1) && ! TYPE_ARG_TYPES (t2))
325 return build_type_attribute_variant (t1, attributes);
326 if (valtype == TREE_TYPE (t2) && ! TYPE_ARG_TYPES (t1))
327 return build_type_attribute_variant (t2, attributes);
329 /* Simple way if one arg fails to specify argument types. */
330 if (TYPE_ARG_TYPES (t1) == 0)
332 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t2));
333 return build_type_attribute_variant (t1, attributes);
335 if (TYPE_ARG_TYPES (t2) == 0)
337 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t1));
338 return build_type_attribute_variant (t1, attributes);
341 /* If both args specify argument types, we must merge the two
342 lists, argument by argument. */
344 len = list_length (p1);
345 newargs = 0;
347 for (i = 0; i < len; i++)
348 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
350 n = newargs;
352 for (; p1;
353 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n))
355 /* A null type means arg type is not specified.
356 Take whatever the other function type has. */
357 if (TREE_VALUE (p1) == 0)
359 TREE_VALUE (n) = TREE_VALUE (p2);
360 goto parm_done;
362 if (TREE_VALUE (p2) == 0)
364 TREE_VALUE (n) = TREE_VALUE (p1);
365 goto parm_done;
368 /* Given wait (union {union wait *u; int *i} *)
369 and wait (union wait *),
370 prefer union wait * as type of parm. */
371 if (TREE_CODE (TREE_VALUE (p1)) == UNION_TYPE
372 && TREE_VALUE (p1) != TREE_VALUE (p2))
374 tree memb;
375 for (memb = TYPE_FIELDS (TREE_VALUE (p1));
376 memb; memb = TREE_CHAIN (memb))
377 if (comptypes (TREE_TYPE (memb), TREE_VALUE (p2)))
379 TREE_VALUE (n) = TREE_VALUE (p2);
380 if (pedantic)
381 pedwarn ("function types not truly compatible in ANSI C");
382 goto parm_done;
385 if (TREE_CODE (TREE_VALUE (p2)) == UNION_TYPE
386 && TREE_VALUE (p2) != TREE_VALUE (p1))
388 tree memb;
389 for (memb = TYPE_FIELDS (TREE_VALUE (p2));
390 memb; memb = TREE_CHAIN (memb))
391 if (comptypes (TREE_TYPE (memb), TREE_VALUE (p1)))
393 TREE_VALUE (n) = TREE_VALUE (p1);
394 if (pedantic)
395 pedwarn ("function types not truly compatible in ANSI C");
396 goto parm_done;
399 TREE_VALUE (n) = common_type (TREE_VALUE (p1), TREE_VALUE (p2));
400 parm_done: ;
403 t1 = build_function_type (valtype, newargs);
404 /* ... falls through ... */
407 default:
408 return build_type_attribute_variant (t1, attributes);
413 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
414 or various other operations. Return 2 if they are compatible
415 but a warning may be needed if you use them together. */
418 comptypes (type1, type2)
419 tree type1, type2;
421 register tree t1 = type1;
422 register tree t2 = type2;
423 int attrval, val;
425 /* Suppress errors caused by previously reported errors. */
427 if (t1 == t2 || TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
428 return 1;
430 /* Treat an enum type as the integer type of the same width and
431 signedness. */
433 if (TREE_CODE (t1) == ENUMERAL_TYPE)
434 t1 = type_for_size (TYPE_PRECISION (t1), TREE_UNSIGNED (t1));
435 if (TREE_CODE (t2) == ENUMERAL_TYPE)
436 t2 = type_for_size (TYPE_PRECISION (t2), TREE_UNSIGNED (t2));
438 if (t1 == t2)
439 return 1;
441 /* Different classes of types can't be compatible. */
443 if (TREE_CODE (t1) != TREE_CODE (t2)) return 0;
445 /* Qualifiers must match. */
447 if (TYPE_READONLY (t1) != TYPE_READONLY (t2))
448 return 0;
449 if (TYPE_VOLATILE (t1) != TYPE_VOLATILE (t2))
450 return 0;
452 /* Allow for two different type nodes which have essentially the same
453 definition. Note that we already checked for equality of the type
454 type qualifiers (just above). */
456 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
457 return 1;
459 #ifndef COMP_TYPE_ATTRIBUTES
460 #define COMP_TYPE_ATTRIBUTES(t1,t2) 1
461 #endif
463 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
464 if (! (attrval = COMP_TYPE_ATTRIBUTES (t1, t2)))
465 return 0;
467 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
468 val = 0;
470 switch (TREE_CODE (t1))
472 case POINTER_TYPE:
473 val = (TREE_TYPE (t1) == TREE_TYPE (t2)
474 ? 1 : comptypes (TREE_TYPE (t1), TREE_TYPE (t2)));
475 break;
477 case FUNCTION_TYPE:
478 val = function_types_compatible_p (t1, t2);
479 break;
481 case ARRAY_TYPE:
483 tree d1 = TYPE_DOMAIN (t1);
484 tree d2 = TYPE_DOMAIN (t2);
485 val = 1;
487 /* Target types must match incl. qualifiers. */
488 if (TREE_TYPE (t1) != TREE_TYPE (t2)
489 && 0 == (val = comptypes (TREE_TYPE (t1), TREE_TYPE (t2))))
490 return 0;
492 /* Sizes must match unless one is missing or variable. */
493 if (d1 == 0 || d2 == 0 || d1 == d2
494 || TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
495 || TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
496 || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST
497 || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST)
498 break;
500 if (! ((TREE_INT_CST_LOW (TYPE_MIN_VALUE (d1))
501 == TREE_INT_CST_LOW (TYPE_MIN_VALUE (d2)))
502 && (TREE_INT_CST_HIGH (TYPE_MIN_VALUE (d1))
503 == TREE_INT_CST_HIGH (TYPE_MIN_VALUE (d2)))
504 && (TREE_INT_CST_LOW (TYPE_MAX_VALUE (d1))
505 == TREE_INT_CST_LOW (TYPE_MAX_VALUE (d2)))
506 && (TREE_INT_CST_HIGH (TYPE_MAX_VALUE (d1))
507 == TREE_INT_CST_HIGH (TYPE_MAX_VALUE (d2)))))
508 val = 0;
509 break;
512 case RECORD_TYPE:
513 if (maybe_objc_comptypes (t1, t2, 0) == 1)
514 val = 1;
515 break;
517 default:
518 break;
520 return attrval == 2 && val == 1 ? 2 : val;
523 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
524 ignoring their qualifiers. */
526 static int
527 comp_target_types (ttl, ttr)
528 tree ttl, ttr;
530 int val;
532 /* Give maybe_objc_comptypes a crack at letting these types through. */
533 if (val = maybe_objc_comptypes (ttl, ttr, 1) >= 0)
534 return val;
536 val = comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (ttl)),
537 TYPE_MAIN_VARIANT (TREE_TYPE (ttr)));
539 if (val == 2 && pedantic)
540 pedwarn ("types are not quite compatible");
541 return val;
544 /* Subroutines of `comptypes'. */
546 /* Return 1 if two function types F1 and F2 are compatible.
547 If either type specifies no argument types,
548 the other must specify a fixed number of self-promoting arg types.
549 Otherwise, if one type specifies only the number of arguments,
550 the other must specify that number of self-promoting arg types.
551 Otherwise, the argument types must match. */
553 static int
554 function_types_compatible_p (f1, f2)
555 tree f1, f2;
557 tree args1, args2;
558 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
559 int val = 1;
560 int val1;
562 if (!(TREE_TYPE (f1) == TREE_TYPE (f2)
563 || (val = comptypes (TREE_TYPE (f1), TREE_TYPE (f2)))))
564 return 0;
566 args1 = TYPE_ARG_TYPES (f1);
567 args2 = TYPE_ARG_TYPES (f2);
569 /* An unspecified parmlist matches any specified parmlist
570 whose argument types don't need default promotions. */
572 if (args1 == 0)
574 if (!self_promoting_args_p (args2))
575 return 0;
576 /* If one of these types comes from a non-prototype fn definition,
577 compare that with the other type's arglist.
578 If they don't match, ask for a warning (but no error). */
579 if (TYPE_ACTUAL_ARG_TYPES (f1)
580 && 1 != type_lists_compatible_p (args2, TYPE_ACTUAL_ARG_TYPES (f1)))
581 val = 2;
582 return val;
584 if (args2 == 0)
586 if (!self_promoting_args_p (args1))
587 return 0;
588 if (TYPE_ACTUAL_ARG_TYPES (f2)
589 && 1 != type_lists_compatible_p (args1, TYPE_ACTUAL_ARG_TYPES (f2)))
590 val = 2;
591 return val;
594 /* Both types have argument lists: compare them and propagate results. */
595 val1 = type_lists_compatible_p (args1, args2);
596 return val1 != 1 ? val1 : val;
599 /* Check two lists of types for compatibility,
600 returning 0 for incompatible, 1 for compatible,
601 or 2 for compatible with warning. */
603 static int
604 type_lists_compatible_p (args1, args2)
605 tree args1, args2;
607 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
608 int val = 1;
609 int newval = 0;
611 while (1)
613 if (args1 == 0 && args2 == 0)
614 return val;
615 /* If one list is shorter than the other,
616 they fail to match. */
617 if (args1 == 0 || args2 == 0)
618 return 0;
619 /* A null pointer instead of a type
620 means there is supposed to be an argument
621 but nothing is specified about what type it has.
622 So match anything that self-promotes. */
623 if (TREE_VALUE (args1) == 0)
625 if (! self_promoting_type_p (TREE_VALUE (args2)))
626 return 0;
628 else if (TREE_VALUE (args2) == 0)
630 if (! self_promoting_type_p (TREE_VALUE (args1)))
631 return 0;
633 else if (! (newval = comptypes (TREE_VALUE (args1), TREE_VALUE (args2))))
635 /* Allow wait (union {union wait *u; int *i} *)
636 and wait (union wait *) to be compatible. */
637 if (TREE_CODE (TREE_VALUE (args1)) == UNION_TYPE
638 && (TYPE_NAME (TREE_VALUE (args1)) == 0
639 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args1)))
640 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args1))) == INTEGER_CST
641 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args1)),
642 TYPE_SIZE (TREE_VALUE (args2))))
644 tree memb;
645 for (memb = TYPE_FIELDS (TREE_VALUE (args1));
646 memb; memb = TREE_CHAIN (memb))
647 if (comptypes (TREE_TYPE (memb), TREE_VALUE (args2)))
648 break;
649 if (memb == 0)
650 return 0;
652 else if (TREE_CODE (TREE_VALUE (args2)) == UNION_TYPE
653 && (TYPE_NAME (TREE_VALUE (args2)) == 0
654 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args2)))
655 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args2))) == INTEGER_CST
656 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args2)),
657 TYPE_SIZE (TREE_VALUE (args1))))
659 tree memb;
660 for (memb = TYPE_FIELDS (TREE_VALUE (args2));
661 memb; memb = TREE_CHAIN (memb))
662 if (comptypes (TREE_TYPE (memb), TREE_VALUE (args1)))
663 break;
664 if (memb == 0)
665 return 0;
667 else
668 return 0;
671 /* comptypes said ok, but record if it said to warn. */
672 if (newval > val)
673 val = newval;
675 args1 = TREE_CHAIN (args1);
676 args2 = TREE_CHAIN (args2);
680 /* Return 1 if PARMS specifies a fixed number of parameters
681 and none of their types is affected by default promotions. */
684 self_promoting_args_p (parms)
685 tree parms;
687 register tree t;
688 for (t = parms; t; t = TREE_CHAIN (t))
690 register tree type = TREE_VALUE (t);
692 if (TREE_CHAIN (t) == 0 && type != void_type_node)
693 return 0;
695 if (type == 0)
696 return 0;
698 if (TYPE_MAIN_VARIANT (type) == float_type_node)
699 return 0;
701 if (C_PROMOTING_INTEGER_TYPE_P (type))
702 return 0;
704 return 1;
707 /* Return 1 if TYPE is not affected by default promotions. */
709 static int
710 self_promoting_type_p (type)
711 tree type;
713 if (TYPE_MAIN_VARIANT (type) == float_type_node)
714 return 0;
716 if (C_PROMOTING_INTEGER_TYPE_P (type))
717 return 0;
719 return 1;
722 /* Return an unsigned type the same as TYPE in other respects. */
724 tree
725 unsigned_type (type)
726 tree type;
728 tree type1 = TYPE_MAIN_VARIANT (type);
729 if (type1 == signed_char_type_node || type1 == char_type_node)
730 return unsigned_char_type_node;
731 if (type1 == integer_type_node)
732 return unsigned_type_node;
733 if (type1 == short_integer_type_node)
734 return short_unsigned_type_node;
735 if (type1 == long_integer_type_node)
736 return long_unsigned_type_node;
737 if (type1 == long_long_integer_type_node)
738 return long_long_unsigned_type_node;
739 if (type1 == intDI_type_node)
740 return unsigned_intDI_type_node;
741 if (type1 == intSI_type_node)
742 return unsigned_intSI_type_node;
743 if (type1 == intHI_type_node)
744 return unsigned_intHI_type_node;
745 if (type1 == intQI_type_node)
746 return unsigned_intQI_type_node;
748 return signed_or_unsigned_type (1, type);
751 /* Return a signed type the same as TYPE in other respects. */
753 tree
754 signed_type (type)
755 tree type;
757 tree type1 = TYPE_MAIN_VARIANT (type);
758 if (type1 == unsigned_char_type_node || type1 == char_type_node)
759 return signed_char_type_node;
760 if (type1 == unsigned_type_node)
761 return integer_type_node;
762 if (type1 == short_unsigned_type_node)
763 return short_integer_type_node;
764 if (type1 == long_unsigned_type_node)
765 return long_integer_type_node;
766 if (type1 == long_long_unsigned_type_node)
767 return long_long_integer_type_node;
768 if (type1 == unsigned_intDI_type_node)
769 return intDI_type_node;
770 if (type1 == unsigned_intSI_type_node)
771 return intSI_type_node;
772 if (type1 == unsigned_intHI_type_node)
773 return intHI_type_node;
774 if (type1 == unsigned_intQI_type_node)
775 return intQI_type_node;
777 return signed_or_unsigned_type (0, type);
780 /* Return a type the same as TYPE except unsigned or
781 signed according to UNSIGNEDP. */
783 tree
784 signed_or_unsigned_type (unsignedp, type)
785 int unsignedp;
786 tree type;
788 if ((! INTEGRAL_TYPE_P (type) && ! POINTER_TYPE_P (type))
789 || TREE_UNSIGNED (type) == unsignedp)
790 return type;
791 if (TYPE_PRECISION (type) == TYPE_PRECISION (signed_char_type_node))
792 return unsignedp ? unsigned_char_type_node : signed_char_type_node;
793 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
794 return unsignedp ? unsigned_type_node : integer_type_node;
795 if (TYPE_PRECISION (type) == TYPE_PRECISION (short_integer_type_node))
796 return unsignedp ? short_unsigned_type_node : short_integer_type_node;
797 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_integer_type_node))
798 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
799 if (TYPE_PRECISION (type) == TYPE_PRECISION (long_long_integer_type_node))
800 return (unsignedp ? long_long_unsigned_type_node
801 : long_long_integer_type_node);
802 return type;
805 /* Compute the value of the `sizeof' operator. */
807 tree
808 c_sizeof (type)
809 tree type;
811 enum tree_code code = TREE_CODE (type);
812 tree t;
814 if (code == FUNCTION_TYPE)
816 if (pedantic || warn_pointer_arith)
817 pedwarn ("sizeof applied to a function type");
818 return size_int (1);
820 if (code == VOID_TYPE)
822 if (pedantic || warn_pointer_arith)
823 pedwarn ("sizeof applied to a void type");
824 return size_int (1);
826 if (code == ERROR_MARK)
827 return size_int (1);
828 if (TYPE_SIZE (type) == 0)
830 error ("sizeof applied to an incomplete type");
831 return size_int (0);
834 /* Convert in case a char is more than one unit. */
835 t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
836 size_int (TYPE_PRECISION (char_type_node)));
837 /* size_binop does not put the constant in range, so do it now. */
838 if (TREE_CODE (t) == INTEGER_CST && force_fit_type (t, 0))
839 TREE_CONSTANT_OVERFLOW (t) = TREE_OVERFLOW (t) = 1;
840 return t;
843 tree
844 c_sizeof_nowarn (type)
845 tree type;
847 enum tree_code code = TREE_CODE (type);
848 tree t;
850 if (code == FUNCTION_TYPE
851 || code == VOID_TYPE
852 || code == ERROR_MARK)
853 return size_int (1);
854 if (TYPE_SIZE (type) == 0)
855 return size_int (0);
857 /* Convert in case a char is more than one unit. */
858 t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
859 size_int (TYPE_PRECISION (char_type_node)));
860 force_fit_type (t, 0);
861 return t;
864 /* Compute the size to increment a pointer by. */
866 tree
867 c_size_in_bytes (type)
868 tree type;
870 enum tree_code code = TREE_CODE (type);
871 tree t;
873 if (code == FUNCTION_TYPE)
874 return size_int (1);
875 if (code == VOID_TYPE)
876 return size_int (1);
877 if (code == ERROR_MARK)
878 return size_int (1);
879 if (TYPE_SIZE (type) == 0)
881 error ("arithmetic on pointer to an incomplete type");
882 return size_int (1);
885 /* Convert in case a char is more than one unit. */
886 t = size_binop (CEIL_DIV_EXPR, TYPE_SIZE (type),
887 size_int (BITS_PER_UNIT));
888 force_fit_type (t, 0);
889 return t;
892 /* Implement the __alignof keyword: Return the minimum required
893 alignment of TYPE, measured in bytes. */
895 tree
896 c_alignof (type)
897 tree type;
899 enum tree_code code = TREE_CODE (type);
901 if (code == FUNCTION_TYPE)
902 return size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
904 if (code == VOID_TYPE || code == ERROR_MARK)
905 return size_int (1);
907 return size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
910 /* Implement the __alignof keyword: Return the minimum required
911 alignment of EXPR, measured in bytes. For VAR_DECL's and
912 FIELD_DECL's return DECL_ALIGN (which can be set from an
913 "aligned" __attribute__ specification). */
915 tree
916 c_alignof_expr (expr)
917 tree expr;
919 if (TREE_CODE (expr) == VAR_DECL)
920 return size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
922 if (TREE_CODE (expr) == COMPONENT_REF
923 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
925 error ("`__alignof' applied to a bit-field");
926 return size_int (1);
928 else if (TREE_CODE (expr) == COMPONENT_REF
929 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
930 return size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
932 if (TREE_CODE (expr) == INDIRECT_REF)
934 tree t = TREE_OPERAND (expr, 0);
935 tree best = t;
936 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
938 while (TREE_CODE (t) == NOP_EXPR
939 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
941 int thisalign;
943 t = TREE_OPERAND (t, 0);
944 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
945 if (thisalign > bestalign)
946 best = t, bestalign = thisalign;
948 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
950 else
951 return c_alignof (TREE_TYPE (expr));
954 /* Return either DECL or its known constant value (if it has one). */
956 static tree
957 decl_constant_value (decl)
958 tree decl;
960 if (/* Don't change a variable array bound or initial value to a constant
961 in a place where a variable is invalid. */
962 current_function_decl != 0
963 && ! pedantic
964 && ! TREE_THIS_VOLATILE (decl)
965 && TREE_READONLY (decl) && ! ITERATOR_P (decl)
966 && DECL_INITIAL (decl) != 0
967 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
968 /* This is invalid if initial value is not constant.
969 If it has either a function call, a memory reference,
970 or a variable, then re-evaluating it could give different results. */
971 && TREE_CONSTANT (DECL_INITIAL (decl))
972 /* Check for cases where this is sub-optimal, even though valid. */
973 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR
974 && DECL_MODE (decl) != BLKmode)
975 return DECL_INITIAL (decl);
976 return decl;
979 /* Perform default promotions for C data used in expressions.
980 Arrays and functions are converted to pointers;
981 enumeral types or short or char, to int.
982 In addition, manifest constants symbols are replaced by their values. */
984 tree
985 default_conversion (exp)
986 tree exp;
988 register tree type = TREE_TYPE (exp);
989 register enum tree_code code = TREE_CODE (type);
991 /* Constants can be used directly unless they're not loadable. */
992 if (TREE_CODE (exp) == CONST_DECL)
993 exp = DECL_INITIAL (exp);
995 /* Replace a nonvolatile const static variable with its value unless
996 it is an array, in which case we must be sure that taking the
997 address of the array produces consistent results. */
998 else if (optimize && TREE_CODE (exp) == VAR_DECL && code != ARRAY_TYPE)
1000 exp = decl_constant_value (exp);
1001 type = TREE_TYPE (exp);
1004 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
1005 an lvalue. */
1006 /* Do not use STRIP_NOPS here! It will remove conversions from pointer
1007 to integer and cause infinite recursion. */
1008 while (TREE_CODE (exp) == NON_LVALUE_EXPR
1009 || (TREE_CODE (exp) == NOP_EXPR
1010 && TREE_TYPE (TREE_OPERAND (exp, 0)) == TREE_TYPE (exp)))
1011 exp = TREE_OPERAND (exp, 0);
1013 /* Normally convert enums to int,
1014 but convert wide enums to something wider. */
1015 if (code == ENUMERAL_TYPE)
1017 type = type_for_size (MAX (TYPE_PRECISION (type),
1018 TYPE_PRECISION (integer_type_node)),
1019 ((flag_traditional
1020 || (TYPE_PRECISION (type)
1021 >= TYPE_PRECISION (integer_type_node)))
1022 && TREE_UNSIGNED (type)));
1023 return convert (type, exp);
1026 if (TREE_CODE (exp) == COMPONENT_REF
1027 && DECL_C_BIT_FIELD (TREE_OPERAND (exp, 1)))
1029 tree width = DECL_SIZE (TREE_OPERAND (exp, 1));
1030 HOST_WIDE_INT low = TREE_INT_CST_LOW (width);
1032 /* If it's thinner than an int, promote it like a
1033 C_PROMOTING_INTEGER_TYPE_P, otherwise leave it alone. */
1035 if (low < TYPE_PRECISION (integer_type_node))
1037 if (flag_traditional && TREE_UNSIGNED (type))
1038 return convert (unsigned_type_node, exp);
1039 else
1040 return convert (integer_type_node, exp);
1044 if (C_PROMOTING_INTEGER_TYPE_P (type))
1046 /* Traditionally, unsignedness is preserved in default promotions.
1047 Also preserve unsignedness if not really getting any wider. */
1048 if (TREE_UNSIGNED (type)
1049 && (flag_traditional
1050 || TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
1051 return convert (unsigned_type_node, exp);
1052 return convert (integer_type_node, exp);
1054 if (flag_traditional && !flag_allow_single_precision
1055 && TYPE_MAIN_VARIANT (type) == float_type_node)
1056 return convert (double_type_node, exp);
1057 if (code == VOID_TYPE)
1059 error ("void value not ignored as it ought to be");
1060 return error_mark_node;
1062 if (code == FUNCTION_TYPE)
1064 return build_unary_op (ADDR_EXPR, exp, 0);
1066 if (code == ARRAY_TYPE)
1068 register tree adr;
1069 tree restype = TREE_TYPE (type);
1070 tree ptrtype;
1071 int constp = 0;
1072 int volatilep = 0;
1074 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'r'
1075 || TREE_CODE_CLASS (TREE_CODE (exp)) == 'd')
1077 constp = TREE_READONLY (exp);
1078 volatilep = TREE_THIS_VOLATILE (exp);
1081 if (TYPE_READONLY (type) || TYPE_VOLATILE (type)
1082 || constp || volatilep)
1083 restype = c_build_type_variant (restype,
1084 TYPE_READONLY (type) || constp,
1085 TYPE_VOLATILE (type) || volatilep);
1087 if (TREE_CODE (exp) == INDIRECT_REF)
1088 return convert (TYPE_POINTER_TO (restype),
1089 TREE_OPERAND (exp, 0));
1091 if (TREE_CODE (exp) == COMPOUND_EXPR)
1093 tree op1 = default_conversion (TREE_OPERAND (exp, 1));
1094 return build (COMPOUND_EXPR, TREE_TYPE (op1),
1095 TREE_OPERAND (exp, 0), op1);
1098 if (! lvalue_p (exp)
1099 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1101 error ("invalid use of non-lvalue array");
1102 return error_mark_node;
1105 ptrtype = build_pointer_type (restype);
1107 if (TREE_CODE (exp) == VAR_DECL)
1109 /* ??? This is not really quite correct
1110 in that the type of the operand of ADDR_EXPR
1111 is not the target type of the type of the ADDR_EXPR itself.
1112 Question is, can this lossage be avoided? */
1113 adr = build1 (ADDR_EXPR, ptrtype, exp);
1114 if (mark_addressable (exp) == 0)
1115 return error_mark_node;
1116 TREE_CONSTANT (adr) = staticp (exp);
1117 TREE_SIDE_EFFECTS (adr) = 0; /* Default would be, same as EXP. */
1118 return adr;
1120 /* This way is better for a COMPONENT_REF since it can
1121 simplify the offset for a component. */
1122 adr = build_unary_op (ADDR_EXPR, exp, 1);
1123 return convert (ptrtype, adr);
1125 return exp;
1128 /* Look up component name in the structure type definition.
1130 If this component name is found indirectly within an anonymous union,
1131 store in *INDIRECT the component which directly contains
1132 that anonymous union. Otherwise, set *INDIRECT to 0. */
1134 static tree
1135 lookup_field (type, component, indirect)
1136 tree type, component;
1137 tree *indirect;
1139 tree field;
1141 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1142 to the field elements. Use a binary search on this array to quickly
1143 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
1144 will always be set for structures which have many elements. */
1146 if (TYPE_LANG_SPECIFIC (type))
1148 int bot, top, half;
1149 tree *field_array = &TYPE_LANG_SPECIFIC (type)->elts[0];
1151 field = TYPE_FIELDS (type);
1152 bot = 0;
1153 top = TYPE_LANG_SPECIFIC (type)->len;
1154 while (top - bot > 1)
1156 half = (top - bot + 1) >> 1;
1157 field = field_array[bot+half];
1159 if (DECL_NAME (field) == NULL_TREE)
1161 /* Step through all anon unions in linear fashion. */
1162 while (DECL_NAME (field_array[bot]) == NULL_TREE)
1164 tree anon = 0, junk;
1166 field = field_array[bot++];
1167 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1168 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1169 anon = lookup_field (TREE_TYPE (field), component, &junk);
1171 if (anon != NULL_TREE)
1173 *indirect = field;
1174 return anon;
1178 /* Entire record is only anon unions. */
1179 if (bot > top)
1180 return NULL_TREE;
1182 /* Restart the binary search, with new lower bound. */
1183 continue;
1186 if (DECL_NAME (field) == component)
1187 break;
1188 if (DECL_NAME (field) < component)
1189 bot += half;
1190 else
1191 top = bot + half;
1194 if (DECL_NAME (field_array[bot]) == component)
1195 field = field_array[bot];
1196 else if (DECL_NAME (field) != component)
1197 field = 0;
1199 else
1201 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1203 if (DECL_NAME (field) == NULL_TREE)
1205 tree junk;
1206 tree anon = 0;
1208 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1209 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1210 anon = lookup_field (TREE_TYPE (field), component, &junk);
1212 if (anon != NULL_TREE)
1214 *indirect = field;
1215 return anon;
1219 if (DECL_NAME (field) == component)
1220 break;
1224 *indirect = NULL_TREE;
1225 return field;
1228 /* Make an expression to refer to the COMPONENT field of
1229 structure or union value DATUM. COMPONENT is an IDENTIFIER_NODE. */
1231 tree
1232 build_component_ref (datum, component)
1233 tree datum, component;
1235 register tree type = TREE_TYPE (datum);
1236 register enum tree_code code = TREE_CODE (type);
1237 register tree field = NULL;
1238 register tree ref;
1240 /* If DATUM is a COMPOUND_EXPR or COND_EXPR, move our reference inside it
1241 unless we are not to support things not strictly ANSI. */
1242 switch (TREE_CODE (datum))
1244 case COMPOUND_EXPR:
1246 tree value = build_component_ref (TREE_OPERAND (datum, 1), component);
1247 return build (COMPOUND_EXPR, TREE_TYPE (value),
1248 TREE_OPERAND (datum, 0), value);
1250 case COND_EXPR:
1251 return build_conditional_expr
1252 (TREE_OPERAND (datum, 0),
1253 build_component_ref (TREE_OPERAND (datum, 1), component),
1254 build_component_ref (TREE_OPERAND (datum, 2), component));
1256 default:
1257 break;
1260 /* See if there is a field or component with name COMPONENT. */
1262 if (code == RECORD_TYPE || code == UNION_TYPE)
1264 tree indirect = 0;
1266 if (TYPE_SIZE (type) == 0)
1268 incomplete_type_error (NULL_TREE, type);
1269 return error_mark_node;
1272 field = lookup_field (type, component, &indirect);
1274 if (!field)
1276 error (code == RECORD_TYPE
1277 ? "structure has no member named `%s'"
1278 : "union has no member named `%s'",
1279 IDENTIFIER_POINTER (component));
1280 return error_mark_node;
1282 if (TREE_TYPE (field) == error_mark_node)
1283 return error_mark_node;
1285 /* If FIELD was found buried within an anonymous union,
1286 make one COMPONENT_REF to get that anonymous union,
1287 then fall thru to make a second COMPONENT_REF to get FIELD. */
1288 if (indirect != 0)
1290 ref = build (COMPONENT_REF, TREE_TYPE (indirect), datum, indirect);
1291 if (TREE_READONLY (datum) || TREE_READONLY (indirect))
1292 TREE_READONLY (ref) = 1;
1293 if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (indirect))
1294 TREE_THIS_VOLATILE (ref) = 1;
1295 datum = ref;
1298 ref = build (COMPONENT_REF, TREE_TYPE (field), datum, field);
1300 if (TREE_READONLY (datum) || TREE_READONLY (field))
1301 TREE_READONLY (ref) = 1;
1302 if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (field))
1303 TREE_THIS_VOLATILE (ref) = 1;
1305 return ref;
1307 else if (code != ERROR_MARK)
1308 error ("request for member `%s' in something not a structure or union",
1309 IDENTIFIER_POINTER (component));
1311 return error_mark_node;
1314 /* Given an expression PTR for a pointer, return an expression
1315 for the value pointed to.
1316 ERRORSTRING is the name of the operator to appear in error messages. */
1318 tree
1319 build_indirect_ref (ptr, errorstring)
1320 tree ptr;
1321 char *errorstring;
1323 register tree pointer = default_conversion (ptr);
1324 register tree type = TREE_TYPE (pointer);
1326 if (TREE_CODE (type) == POINTER_TYPE)
1328 if (TREE_CODE (pointer) == ADDR_EXPR
1329 && !flag_volatile
1330 && (TREE_TYPE (TREE_OPERAND (pointer, 0))
1331 == TREE_TYPE (type)))
1332 return TREE_OPERAND (pointer, 0);
1333 else
1335 tree t = TREE_TYPE (type);
1336 register tree ref = build1 (INDIRECT_REF,
1337 TYPE_MAIN_VARIANT (t), pointer);
1339 if (TYPE_SIZE (t) == 0 && TREE_CODE (t) != ARRAY_TYPE)
1341 error ("dereferencing pointer to incomplete type");
1342 return error_mark_node;
1344 if (TREE_CODE (t) == VOID_TYPE && skip_evaluation == 0)
1345 warning ("dereferencing `void *' pointer");
1347 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
1348 so that we get the proper error message if the result is used
1349 to assign to. Also, &* is supposed to be a no-op.
1350 And ANSI C seems to specify that the type of the result
1351 should be the const type. */
1352 /* A de-reference of a pointer to const is not a const. It is valid
1353 to change it via some other pointer. */
1354 TREE_READONLY (ref) = TYPE_READONLY (t);
1355 TREE_SIDE_EFFECTS (ref)
1356 = TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer) || flag_volatile;
1357 TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
1358 return ref;
1361 else if (TREE_CODE (pointer) != ERROR_MARK)
1362 error ("invalid type argument of `%s'", errorstring);
1363 return error_mark_node;
1366 /* This handles expressions of the form "a[i]", which denotes
1367 an array reference.
1369 This is logically equivalent in C to *(a+i), but we may do it differently.
1370 If A is a variable or a member, we generate a primitive ARRAY_REF.
1371 This avoids forcing the array out of registers, and can work on
1372 arrays that are not lvalues (for example, members of structures returned
1373 by functions). */
1375 tree
1376 build_array_ref (array, index)
1377 tree array, index;
1379 if (index == 0)
1381 error ("subscript missing in array reference");
1382 return error_mark_node;
1385 if (TREE_TYPE (array) == error_mark_node
1386 || TREE_TYPE (index) == error_mark_node)
1387 return error_mark_node;
1389 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE
1390 && TREE_CODE (array) != INDIRECT_REF)
1392 tree rval, type;
1394 /* Subscripting with type char is likely to lose
1395 on a machine where chars are signed.
1396 So warn on any machine, but optionally.
1397 Don't warn for unsigned char since that type is safe.
1398 Don't warn for signed char because anyone who uses that
1399 must have done so deliberately. */
1400 if (warn_char_subscripts
1401 && TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node)
1402 warning ("array subscript has type `char'");
1404 /* Apply default promotions *after* noticing character types. */
1405 index = default_conversion (index);
1407 /* Require integer *after* promotion, for sake of enums. */
1408 if (TREE_CODE (TREE_TYPE (index)) != INTEGER_TYPE)
1410 error ("array subscript is not an integer");
1411 return error_mark_node;
1414 /* An array that is indexed by a non-constant
1415 cannot be stored in a register; we must be able to do
1416 address arithmetic on its address.
1417 Likewise an array of elements of variable size. */
1418 if (TREE_CODE (index) != INTEGER_CST
1419 || (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array))) != 0
1420 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array)))) != INTEGER_CST))
1422 if (mark_addressable (array) == 0)
1423 return error_mark_node;
1425 /* An array that is indexed by a constant value which is not within
1426 the array bounds cannot be stored in a register either; because we
1427 would get a crash in store_bit_field/extract_bit_field when trying
1428 to access a non-existent part of the register. */
1429 if (TREE_CODE (index) == INTEGER_CST
1430 && TYPE_VALUES (TREE_TYPE (array))
1431 && ! int_fits_type_p (index, TYPE_VALUES (TREE_TYPE (array))))
1433 if (mark_addressable (array) == 0)
1434 return error_mark_node;
1437 if (pedantic && !lvalue_p (array))
1439 if (DECL_REGISTER (array))
1440 pedwarn ("ANSI C forbids subscripting `register' array");
1441 else
1442 pedwarn ("ANSI C forbids subscripting non-lvalue array");
1445 if (pedantic)
1447 tree foo = array;
1448 while (TREE_CODE (foo) == COMPONENT_REF)
1449 foo = TREE_OPERAND (foo, 0);
1450 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo))
1451 pedwarn ("ANSI C forbids subscripting non-lvalue array");
1454 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (array)));
1455 rval = build (ARRAY_REF, type, array, index);
1456 /* Array ref is const/volatile if the array elements are
1457 or if the array is. */
1458 TREE_READONLY (rval)
1459 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array)))
1460 | TREE_READONLY (array));
1461 TREE_SIDE_EFFECTS (rval)
1462 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
1463 | TREE_SIDE_EFFECTS (array));
1464 TREE_THIS_VOLATILE (rval)
1465 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
1466 /* This was added by rms on 16 Nov 91.
1467 It fixes vol struct foo *a; a->elts[1]
1468 in an inline function.
1469 Hope it doesn't break something else. */
1470 | TREE_THIS_VOLATILE (array));
1471 return require_complete_type (fold (rval));
1475 tree ar = default_conversion (array);
1476 tree ind = default_conversion (index);
1478 /* Do the same warning check as above, but only on the part that's
1479 syntactically the index and only if it is also semantically
1480 the index. */
1481 if (warn_char_subscripts
1482 && TREE_CODE (TREE_TYPE (index)) == INTEGER_TYPE
1483 && TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node)
1484 warning ("subscript has type `char'");
1486 /* Put the integer in IND to simplify error checking. */
1487 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
1489 tree temp = ar;
1490 ar = ind;
1491 ind = temp;
1494 if (ar == error_mark_node)
1495 return ar;
1497 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE
1498 || TREE_CODE (TREE_TYPE (TREE_TYPE (ar))) == FUNCTION_TYPE)
1500 error ("subscripted value is neither array nor pointer");
1501 return error_mark_node;
1503 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
1505 error ("array subscript is not an integer");
1506 return error_mark_node;
1509 return build_indirect_ref (build_binary_op (PLUS_EXPR, ar, ind, 0),
1510 "array indexing");
1514 /* Build a function call to function FUNCTION with parameters PARAMS.
1515 PARAMS is a list--a chain of TREE_LIST nodes--in which the
1516 TREE_VALUE of each node is a parameter-expression.
1517 FUNCTION's data type may be a function type or a pointer-to-function. */
1519 tree
1520 build_function_call (function, params)
1521 tree function, params;
1523 register tree fntype, fundecl = 0;
1524 register tree coerced_params;
1525 tree name = NULL_TREE, assembler_name = NULL_TREE;
1527 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
1528 STRIP_TYPE_NOPS (function);
1530 /* Convert anything with function type to a pointer-to-function. */
1531 if (TREE_CODE (function) == FUNCTION_DECL)
1533 name = DECL_NAME (function);
1534 assembler_name = DECL_ASSEMBLER_NAME (function);
1536 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
1537 (because calling an inline function does not mean the function
1538 needs to be separately compiled). */
1539 fntype = build_type_variant (TREE_TYPE (function),
1540 TREE_READONLY (function),
1541 TREE_THIS_VOLATILE (function));
1542 fundecl = function;
1543 function = build1 (ADDR_EXPR, build_pointer_type (fntype), function);
1545 else
1546 function = default_conversion (function);
1548 fntype = TREE_TYPE (function);
1550 if (TREE_CODE (fntype) == ERROR_MARK)
1551 return error_mark_node;
1553 if (!(TREE_CODE (fntype) == POINTER_TYPE
1554 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE))
1556 error ("called object is not a function");
1557 return error_mark_node;
1560 /* fntype now gets the type of function pointed to. */
1561 fntype = TREE_TYPE (fntype);
1563 /* Convert the parameters to the types declared in the
1564 function prototype, or apply default promotions. */
1566 coerced_params
1567 = convert_arguments (TYPE_ARG_TYPES (fntype), params, name, fundecl);
1569 /* Check for errors in format strings. */
1571 if (warn_format && (name || assembler_name))
1572 check_function_format (name, assembler_name, coerced_params);
1574 /* Recognize certain built-in functions so we can make tree-codes
1575 other than CALL_EXPR. We do this when it enables fold-const.c
1576 to do something useful. */
1578 if (TREE_CODE (function) == ADDR_EXPR
1579 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL
1580 && DECL_BUILT_IN (TREE_OPERAND (function, 0)))
1581 switch (DECL_FUNCTION_CODE (TREE_OPERAND (function, 0)))
1583 case BUILT_IN_ABS:
1584 case BUILT_IN_LABS:
1585 case BUILT_IN_FABS:
1586 if (coerced_params == 0)
1587 return integer_zero_node;
1588 return build_unary_op (ABS_EXPR, TREE_VALUE (coerced_params), 0);
1589 default:
1590 break;
1594 register tree result
1595 = build (CALL_EXPR, TREE_TYPE (fntype),
1596 function, coerced_params, NULL_TREE);
1598 TREE_SIDE_EFFECTS (result) = 1;
1599 if (TREE_TYPE (result) == void_type_node)
1600 return result;
1601 return require_complete_type (result);
1605 /* Convert the argument expressions in the list VALUES
1606 to the types in the list TYPELIST. The result is a list of converted
1607 argument expressions.
1609 If TYPELIST is exhausted, or when an element has NULL as its type,
1610 perform the default conversions.
1612 PARMLIST is the chain of parm decls for the function being called.
1613 It may be 0, if that info is not available.
1614 It is used only for generating error messages.
1616 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
1618 This is also where warnings about wrong number of args are generated.
1620 Both VALUES and the returned value are chains of TREE_LIST nodes
1621 with the elements of the list in the TREE_VALUE slots of those nodes. */
1623 static tree
1624 convert_arguments (typelist, values, name, fundecl)
1625 tree typelist, values, name, fundecl;
1627 register tree typetail, valtail;
1628 register tree result = NULL;
1629 int parmnum;
1631 /* Scan the given expressions and types, producing individual
1632 converted arguments and pushing them on RESULT in reverse order. */
1634 for (valtail = values, typetail = typelist, parmnum = 0;
1635 valtail;
1636 valtail = TREE_CHAIN (valtail), parmnum++)
1638 register tree type = typetail ? TREE_VALUE (typetail) : 0;
1639 register tree val = TREE_VALUE (valtail);
1641 if (type == void_type_node)
1643 if (name)
1644 error ("too many arguments to function `%s'",
1645 IDENTIFIER_POINTER (name));
1646 else
1647 error ("too many arguments to function");
1648 break;
1651 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
1652 /* Do not use STRIP_NOPS here! We do not want an enumerator with value 0
1653 to convert automatically to a pointer. */
1654 if (TREE_CODE (val) == NON_LVALUE_EXPR)
1655 val = TREE_OPERAND (val, 0);
1657 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
1658 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE)
1659 val = default_conversion (val);
1661 val = require_complete_type (val);
1663 if (type != 0)
1665 /* Formal parm type is specified by a function prototype. */
1666 tree parmval;
1668 if (TYPE_SIZE (type) == 0)
1670 error ("type of formal parameter %d is incomplete", parmnum + 1);
1671 parmval = val;
1673 else
1675 /* Optionally warn about conversions that
1676 differ from the default conversions. */
1677 if (warn_conversion)
1679 int formal_prec = TYPE_PRECISION (type);
1681 if (INTEGRAL_TYPE_P (type)
1682 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1683 warn_for_assignment ("%s as integer rather than floating due to prototype", (char *) 0, name, parmnum + 1);
1684 else if (TREE_CODE (type) == COMPLEX_TYPE
1685 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1686 warn_for_assignment ("%s as complex rather than floating due to prototype", (char *) 0, name, parmnum + 1);
1687 else if (TREE_CODE (type) == REAL_TYPE
1688 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
1689 warn_for_assignment ("%s as floating rather than integer due to prototype", (char *) 0, name, parmnum + 1);
1690 else if (TREE_CODE (type) == REAL_TYPE
1691 && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
1692 warn_for_assignment ("%s as floating rather than complex due to prototype", (char *) 0, name, parmnum + 1);
1693 /* ??? At some point, messages should be written about
1694 conversions between complex types, but that's too messy
1695 to do now. */
1696 else if (TREE_CODE (type) == REAL_TYPE
1697 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1699 /* Warn if any argument is passed as `float',
1700 since without a prototype it would be `double'. */
1701 if (formal_prec == TYPE_PRECISION (float_type_node))
1702 warn_for_assignment ("%s as `float' rather than `double' due to prototype", (char *) 0, name, parmnum + 1);
1704 /* Detect integer changing in width or signedness. */
1705 else if (INTEGRAL_TYPE_P (type)
1706 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
1708 tree would_have_been = default_conversion (val);
1709 tree type1 = TREE_TYPE (would_have_been);
1711 if (TREE_CODE (type) == ENUMERAL_TYPE
1712 && type == TREE_TYPE (val))
1713 /* No warning if function asks for enum
1714 and the actual arg is that enum type. */
1716 else if (formal_prec != TYPE_PRECISION (type1))
1717 warn_for_assignment ("%s with different width due to prototype", (char *) 0, name, parmnum + 1);
1718 else if (TREE_UNSIGNED (type) == TREE_UNSIGNED (type1))
1720 /* Don't complain if the formal parameter type
1721 is an enum, because we can't tell now whether
1722 the value was an enum--even the same enum. */
1723 else if (TREE_CODE (type) == ENUMERAL_TYPE)
1725 else if (TREE_CODE (val) == INTEGER_CST
1726 && int_fits_type_p (val, type))
1727 /* Change in signedness doesn't matter
1728 if a constant value is unaffected. */
1730 /* Likewise for a constant in a NOP_EXPR. */
1731 else if (TREE_CODE (val) == NOP_EXPR
1732 && TREE_CODE (TREE_OPERAND (val, 0)) == INTEGER_CST
1733 && int_fits_type_p (TREE_OPERAND (val, 0), type))
1735 #if 0 /* We never get such tree structure here. */
1736 else if (TREE_CODE (TREE_TYPE (val)) == ENUMERAL_TYPE
1737 && int_fits_type_p (TYPE_MIN_VALUE (TREE_TYPE (val)), type)
1738 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (val)), type))
1739 /* Change in signedness doesn't matter
1740 if an enum value is unaffected. */
1742 #endif
1743 /* If the value is extended from a narrower
1744 unsigned type, it doesn't matter whether we
1745 pass it as signed or unsigned; the value
1746 certainly is the same either way. */
1747 else if (TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type)
1748 && TREE_UNSIGNED (TREE_TYPE (val)))
1750 else if (TREE_UNSIGNED (type))
1751 warn_for_assignment ("%s as unsigned due to prototype", (char *) 0, name, parmnum + 1);
1752 else
1753 warn_for_assignment ("%s as signed due to prototype", (char *) 0, name, parmnum + 1);
1757 parmval = convert_for_assignment (type, val,
1758 (char *) 0, /* arg passing */
1759 fundecl, name, parmnum + 1);
1761 #ifdef PROMOTE_PROTOTYPES
1762 if ((TREE_CODE (type) == INTEGER_TYPE
1763 || TREE_CODE (type) == ENUMERAL_TYPE)
1764 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
1765 parmval = default_conversion (parmval);
1766 #endif
1768 result = tree_cons (NULL_TREE, parmval, result);
1770 else if (TREE_CODE (TREE_TYPE (val)) == REAL_TYPE
1771 && (TYPE_PRECISION (TREE_TYPE (val))
1772 < TYPE_PRECISION (double_type_node)))
1773 /* Convert `float' to `double'. */
1774 result = tree_cons (NULL_TREE, convert (double_type_node, val), result);
1775 else
1776 /* Convert `short' and `char' to full-size `int'. */
1777 result = tree_cons (NULL_TREE, default_conversion (val), result);
1779 if (typetail)
1780 typetail = TREE_CHAIN (typetail);
1783 if (typetail != 0 && TREE_VALUE (typetail) != void_type_node)
1785 if (name)
1786 error ("too few arguments to function `%s'",
1787 IDENTIFIER_POINTER (name));
1788 else
1789 error ("too few arguments to function");
1792 return nreverse (result);
1795 /* This is the entry point used by the parser
1796 for binary operators in the input.
1797 In addition to constructing the expression,
1798 we check for operands that were written with other binary operators
1799 in a way that is likely to confuse the user. */
1801 tree
1802 parser_build_binary_op (code, arg1, arg2)
1803 enum tree_code code;
1804 tree arg1, arg2;
1806 tree result = build_binary_op (code, arg1, arg2, 1);
1808 char class;
1809 char class1 = TREE_CODE_CLASS (TREE_CODE (arg1));
1810 char class2 = TREE_CODE_CLASS (TREE_CODE (arg2));
1811 enum tree_code code1 = ERROR_MARK;
1812 enum tree_code code2 = ERROR_MARK;
1814 if (class1 == 'e' || class1 == '1'
1815 || class1 == '2' || class1 == '<')
1816 code1 = C_EXP_ORIGINAL_CODE (arg1);
1817 if (class2 == 'e' || class2 == '1'
1818 || class2 == '2' || class2 == '<')
1819 code2 = C_EXP_ORIGINAL_CODE (arg2);
1821 /* Check for cases such as x+y<<z which users are likely
1822 to misinterpret. If parens are used, C_EXP_ORIGINAL_CODE
1823 is cleared to prevent these warnings. */
1824 if (warn_parentheses)
1826 if (code == LSHIFT_EXPR || code == RSHIFT_EXPR)
1828 if (code1 == PLUS_EXPR || code1 == MINUS_EXPR
1829 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1830 warning ("suggest parentheses around + or - inside shift");
1833 if (code == TRUTH_ORIF_EXPR)
1835 if (code1 == TRUTH_ANDIF_EXPR
1836 || code2 == TRUTH_ANDIF_EXPR)
1837 warning ("suggest parentheses around && within ||");
1840 if (code == BIT_IOR_EXPR)
1842 if (code1 == BIT_AND_EXPR || code1 == BIT_XOR_EXPR
1843 || code1 == PLUS_EXPR || code1 == MINUS_EXPR
1844 || code2 == BIT_AND_EXPR || code2 == BIT_XOR_EXPR
1845 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1846 warning ("suggest parentheses around arithmetic in operand of |");
1847 /* Check cases like x|y==z */
1848 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1849 warning ("suggest parentheses around comparison in operand of |");
1852 if (code == BIT_XOR_EXPR)
1854 if (code1 == BIT_AND_EXPR
1855 || code1 == PLUS_EXPR || code1 == MINUS_EXPR
1856 || code2 == BIT_AND_EXPR
1857 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1858 warning ("suggest parentheses around arithmetic in operand of ^");
1859 /* Check cases like x^y==z */
1860 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1861 warning ("suggest parentheses around comparison in operand of ^");
1864 if (code == BIT_AND_EXPR)
1866 if (code1 == PLUS_EXPR || code1 == MINUS_EXPR
1867 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1868 warning ("suggest parentheses around + or - in operand of &");
1869 /* Check cases like x&y==z */
1870 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1871 warning ("suggest parentheses around comparison in operand of &");
1875 /* Similarly, check for cases like 1<=i<=10 that are probably errors. */
1876 if (TREE_CODE_CLASS (code) == '<' && extra_warnings
1877 && (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<'))
1878 warning ("comparisons like X<=Y<=Z do not have their mathematical meaning");
1880 unsigned_conversion_warning (result, arg1);
1881 unsigned_conversion_warning (result, arg2);
1882 overflow_warning (result);
1884 class = TREE_CODE_CLASS (TREE_CODE (result));
1886 /* Record the code that was specified in the source,
1887 for the sake of warnings about confusing nesting. */
1888 if (class == 'e' || class == '1'
1889 || class == '2' || class == '<')
1890 C_SET_EXP_ORIGINAL_CODE (result, code);
1891 else
1893 int flag = TREE_CONSTANT (result);
1894 /* We used to use NOP_EXPR rather than NON_LVALUE_EXPR
1895 so that convert_for_assignment wouldn't strip it.
1896 That way, we got warnings for things like p = (1 - 1).
1897 But it turns out we should not get those warnings. */
1898 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (result), result);
1899 C_SET_EXP_ORIGINAL_CODE (result, code);
1900 TREE_CONSTANT (result) = flag;
1903 return result;
1906 /* Build a binary-operation expression without default conversions.
1907 CODE is the kind of expression to build.
1908 This function differs from `build' in several ways:
1909 the data type of the result is computed and recorded in it,
1910 warnings are generated if arg data types are invalid,
1911 special handling for addition and subtraction of pointers is known,
1912 and some optimization is done (operations on narrow ints
1913 are done in the narrower type when that gives the same result).
1914 Constant folding is also done before the result is returned.
1916 Note that the operands will never have enumeral types, or function
1917 or array types, because either they will have the default conversions
1918 performed or they have both just been converted to some other type in which
1919 the arithmetic is to be done. */
1921 tree
1922 build_binary_op (code, orig_op0, orig_op1, convert_p)
1923 enum tree_code code;
1924 tree orig_op0, orig_op1;
1925 int convert_p;
1927 tree type0, type1;
1928 register enum tree_code code0, code1;
1929 tree op0, op1;
1931 /* Expression code to give to the expression when it is built.
1932 Normally this is CODE, which is what the caller asked for,
1933 but in some special cases we change it. */
1934 register enum tree_code resultcode = code;
1936 /* Data type in which the computation is to be performed.
1937 In the simplest cases this is the common type of the arguments. */
1938 register tree result_type = NULL;
1940 /* Nonzero means operands have already been type-converted
1941 in whatever way is necessary.
1942 Zero means they need to be converted to RESULT_TYPE. */
1943 int converted = 0;
1945 /* Nonzero means create the expression with this type, rather than
1946 RESULT_TYPE. */
1947 tree build_type = 0;
1949 /* Nonzero means after finally constructing the expression
1950 convert it to this type. */
1951 tree final_type = 0;
1953 /* Nonzero if this is an operation like MIN or MAX which can
1954 safely be computed in short if both args are promoted shorts.
1955 Also implies COMMON.
1956 -1 indicates a bitwise operation; this makes a difference
1957 in the exact conditions for when it is safe to do the operation
1958 in a narrower mode. */
1959 int shorten = 0;
1961 /* Nonzero if this is a comparison operation;
1962 if both args are promoted shorts, compare the original shorts.
1963 Also implies COMMON. */
1964 int short_compare = 0;
1966 /* Nonzero if this is a right-shift operation, which can be computed on the
1967 original short and then promoted if the operand is a promoted short. */
1968 int short_shift = 0;
1970 /* Nonzero means set RESULT_TYPE to the common type of the args. */
1971 int common = 0;
1973 if (convert_p)
1975 op0 = default_conversion (orig_op0);
1976 op1 = default_conversion (orig_op1);
1978 else
1980 op0 = orig_op0;
1981 op1 = orig_op1;
1984 type0 = TREE_TYPE (op0);
1985 type1 = TREE_TYPE (op1);
1987 /* The expression codes of the data types of the arguments tell us
1988 whether the arguments are integers, floating, pointers, etc. */
1989 code0 = TREE_CODE (type0);
1990 code1 = TREE_CODE (type1);
1992 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
1993 STRIP_TYPE_NOPS (op0);
1994 STRIP_TYPE_NOPS (op1);
1996 /* If an error was already reported for one of the arguments,
1997 avoid reporting another error. */
1999 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
2000 return error_mark_node;
2002 switch (code)
2004 case PLUS_EXPR:
2005 /* Handle the pointer + int case. */
2006 if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2007 return pointer_int_sum (PLUS_EXPR, op0, op1);
2008 else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
2009 return pointer_int_sum (PLUS_EXPR, op1, op0);
2010 else
2011 common = 1;
2012 break;
2014 case MINUS_EXPR:
2015 /* Subtraction of two similar pointers.
2016 We must subtract them as integers, then divide by object size. */
2017 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
2018 && comp_target_types (type0, type1))
2019 return pointer_diff (op0, op1);
2020 /* Handle pointer minus int. Just like pointer plus int. */
2021 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2022 return pointer_int_sum (MINUS_EXPR, op0, op1);
2023 else
2024 common = 1;
2025 break;
2027 case MULT_EXPR:
2028 common = 1;
2029 break;
2031 case TRUNC_DIV_EXPR:
2032 case CEIL_DIV_EXPR:
2033 case FLOOR_DIV_EXPR:
2034 case ROUND_DIV_EXPR:
2035 case EXACT_DIV_EXPR:
2036 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
2037 || code0 == COMPLEX_TYPE)
2038 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
2039 || code1 == COMPLEX_TYPE))
2041 if (!(code0 == INTEGER_TYPE && code1 == INTEGER_TYPE))
2042 resultcode = RDIV_EXPR;
2043 else
2045 /* Although it would be tempting to shorten always here, that
2046 loses on some targets, since the modulo instruction is
2047 undefined if the quotient can't be represented in the
2048 computation mode. We shorten only if unsigned or if
2049 dividing by something we know != -1. */
2050 shorten = (TREE_UNSIGNED (TREE_TYPE (orig_op0))
2051 || (TREE_CODE (op1) == INTEGER_CST
2052 && (TREE_INT_CST_LOW (op1) != -1
2053 || TREE_INT_CST_HIGH (op1) != -1)));
2055 common = 1;
2057 break;
2059 case BIT_AND_EXPR:
2060 case BIT_ANDTC_EXPR:
2061 case BIT_IOR_EXPR:
2062 case BIT_XOR_EXPR:
2063 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2064 shorten = -1;
2065 /* If one operand is a constant, and the other is a short type
2066 that has been converted to an int,
2067 really do the work in the short type and then convert the
2068 result to int. If we are lucky, the constant will be 0 or 1
2069 in the short type, making the entire operation go away. */
2070 if (TREE_CODE (op0) == INTEGER_CST
2071 && TREE_CODE (op1) == NOP_EXPR
2072 && TYPE_PRECISION (type1) > TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op1, 0)))
2073 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op1, 0))))
2075 final_type = result_type;
2076 op1 = TREE_OPERAND (op1, 0);
2077 result_type = TREE_TYPE (op1);
2079 if (TREE_CODE (op1) == INTEGER_CST
2080 && TREE_CODE (op0) == NOP_EXPR
2081 && TYPE_PRECISION (type0) > TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))
2082 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
2084 final_type = result_type;
2085 op0 = TREE_OPERAND (op0, 0);
2086 result_type = TREE_TYPE (op0);
2088 break;
2090 case TRUNC_MOD_EXPR:
2091 case FLOOR_MOD_EXPR:
2092 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2094 /* Although it would be tempting to shorten always here, that loses
2095 on some targets, since the modulo instruction is undefined if the
2096 quotient can't be represented in the computation mode. We shorten
2097 only if unsigned or if dividing by something we know != -1. */
2098 shorten = (TREE_UNSIGNED (TREE_TYPE (orig_op0))
2099 || (TREE_CODE (op1) == INTEGER_CST
2100 && (TREE_INT_CST_LOW (op1) != -1
2101 || TREE_INT_CST_HIGH (op1) != -1)));
2102 common = 1;
2104 break;
2106 case TRUTH_ANDIF_EXPR:
2107 case TRUTH_ORIF_EXPR:
2108 case TRUTH_AND_EXPR:
2109 case TRUTH_OR_EXPR:
2110 case TRUTH_XOR_EXPR:
2111 if ((code0 == INTEGER_TYPE || code0 == POINTER_TYPE
2112 || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
2113 && (code1 == INTEGER_TYPE || code1 == POINTER_TYPE
2114 || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
2116 /* Result of these operations is always an int,
2117 but that does not mean the operands should be
2118 converted to ints! */
2119 result_type = integer_type_node;
2120 op0 = truthvalue_conversion (op0);
2121 op1 = truthvalue_conversion (op1);
2122 converted = 1;
2124 break;
2126 /* Shift operations: result has same type as first operand;
2127 always convert second operand to int.
2128 Also set SHORT_SHIFT if shifting rightward. */
2130 case RSHIFT_EXPR:
2131 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2133 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
2135 if (tree_int_cst_sgn (op1) < 0)
2136 warning ("right shift count is negative");
2137 else
2139 if (TREE_INT_CST_LOW (op1) | TREE_INT_CST_HIGH (op1))
2140 short_shift = 1;
2141 if (TREE_INT_CST_HIGH (op1) != 0
2142 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (op1)
2143 >= TYPE_PRECISION (type0)))
2144 warning ("right shift count >= width of type");
2147 /* Use the type of the value to be shifted.
2148 This is what most traditional C compilers do. */
2149 result_type = type0;
2150 /* Unless traditional, convert the shift-count to an integer,
2151 regardless of size of value being shifted. */
2152 if (! flag_traditional)
2154 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
2155 op1 = convert (integer_type_node, op1);
2156 /* Avoid converting op1 to result_type later. */
2157 converted = 1;
2160 break;
2162 case LSHIFT_EXPR:
2163 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2165 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
2167 if (tree_int_cst_sgn (op1) < 0)
2168 warning ("left shift count is negative");
2169 else if (TREE_INT_CST_HIGH (op1) != 0
2170 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (op1)
2171 >= TYPE_PRECISION (type0)))
2172 warning ("left shift count >= width of type");
2174 /* Use the type of the value to be shifted.
2175 This is what most traditional C compilers do. */
2176 result_type = type0;
2177 /* Unless traditional, convert the shift-count to an integer,
2178 regardless of size of value being shifted. */
2179 if (! flag_traditional)
2181 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
2182 op1 = convert (integer_type_node, op1);
2183 /* Avoid converting op1 to result_type later. */
2184 converted = 1;
2187 break;
2189 case RROTATE_EXPR:
2190 case LROTATE_EXPR:
2191 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2193 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
2195 if (tree_int_cst_sgn (op1) < 0)
2196 warning ("shift count is negative");
2197 else if (TREE_INT_CST_HIGH (op1) != 0
2198 || ((unsigned HOST_WIDE_INT) TREE_INT_CST_LOW (op1)
2199 >= TYPE_PRECISION (type0)))
2200 warning ("shift count >= width of type");
2202 /* Use the type of the value to be shifted.
2203 This is what most traditional C compilers do. */
2204 result_type = type0;
2205 /* Unless traditional, convert the shift-count to an integer,
2206 regardless of size of value being shifted. */
2207 if (! flag_traditional)
2209 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
2210 op1 = convert (integer_type_node, op1);
2211 /* Avoid converting op1 to result_type later. */
2212 converted = 1;
2215 break;
2217 case EQ_EXPR:
2218 case NE_EXPR:
2219 /* Result of comparison is always int,
2220 but don't convert the args to int! */
2221 build_type = integer_type_node;
2222 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
2223 || code0 == COMPLEX_TYPE)
2224 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
2225 || code1 == COMPLEX_TYPE))
2226 short_compare = 1;
2227 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2229 register tree tt0 = TREE_TYPE (type0);
2230 register tree tt1 = TREE_TYPE (type1);
2231 /* Anything compares with void *. void * compares with anything.
2232 Otherwise, the targets must be compatible
2233 and both must be object or both incomplete. */
2234 if (comp_target_types (type0, type1))
2235 result_type = common_type (type0, type1);
2236 else if (TYPE_MAIN_VARIANT (tt0) == void_type_node)
2238 /* op0 != orig_op0 detects the case of something
2239 whose value is 0 but which isn't a valid null ptr const. */
2240 if (pedantic && (!integer_zerop (op0) || op0 != orig_op0)
2241 && TREE_CODE (tt1) == FUNCTION_TYPE)
2242 pedwarn ("ANSI C forbids comparison of `void *' with function pointer");
2244 else if (TYPE_MAIN_VARIANT (tt1) == void_type_node)
2246 if (pedantic && (!integer_zerop (op1) || op1 != orig_op1)
2247 && TREE_CODE (tt0) == FUNCTION_TYPE)
2248 pedwarn ("ANSI C forbids comparison of `void *' with function pointer");
2250 else
2251 pedwarn ("comparison of distinct pointer types lacks a cast");
2253 if (result_type == NULL_TREE)
2254 result_type = ptr_type_node;
2256 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
2257 && integer_zerop (op1))
2258 result_type = type0;
2259 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
2260 && integer_zerop (op0))
2261 result_type = type1;
2262 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2264 result_type = type0;
2265 if (! flag_traditional)
2266 pedwarn ("comparison between pointer and integer");
2268 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
2270 result_type = type1;
2271 if (! flag_traditional)
2272 pedwarn ("comparison between pointer and integer");
2274 break;
2276 case MAX_EXPR:
2277 case MIN_EXPR:
2278 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
2279 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
2280 shorten = 1;
2281 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2283 if (comp_target_types (type0, type1))
2285 result_type = common_type (type0, type1);
2286 if (pedantic
2287 && TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
2288 pedwarn ("ANSI C forbids ordered comparisons of pointers to functions");
2290 else
2292 result_type = ptr_type_node;
2293 pedwarn ("comparison of distinct pointer types lacks a cast");
2296 break;
2298 case LE_EXPR:
2299 case GE_EXPR:
2300 case LT_EXPR:
2301 case GT_EXPR:
2302 build_type = integer_type_node;
2303 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
2304 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
2305 short_compare = 1;
2306 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2308 if (comp_target_types (type0, type1))
2310 result_type = common_type (type0, type1);
2311 if ((TYPE_SIZE (TREE_TYPE (type0)) != 0)
2312 != (TYPE_SIZE (TREE_TYPE (type1)) != 0))
2313 pedwarn ("comparison of complete and incomplete pointers");
2314 else if (pedantic
2315 && TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
2316 pedwarn ("ANSI C forbids ordered comparisons of pointers to functions");
2318 else
2320 result_type = ptr_type_node;
2321 pedwarn ("comparison of distinct pointer types lacks a cast");
2324 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
2325 && integer_zerop (op1))
2327 result_type = type0;
2328 if (pedantic || extra_warnings)
2329 pedwarn ("ordered comparison of pointer with integer zero");
2331 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
2332 && integer_zerop (op0))
2334 result_type = type1;
2335 if (pedantic)
2336 pedwarn ("ordered comparison of pointer with integer zero");
2338 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2340 result_type = type0;
2341 if (! flag_traditional)
2342 pedwarn ("comparison between pointer and integer");
2344 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
2346 result_type = type1;
2347 if (! flag_traditional)
2348 pedwarn ("comparison between pointer and integer");
2350 break;
2352 default:
2353 break;
2356 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
2358 (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
2360 int none_complex = (code0 != COMPLEX_TYPE && code1 != COMPLEX_TYPE);
2362 if (shorten || common || short_compare)
2363 result_type = common_type (type0, type1);
2365 /* For certain operations (which identify themselves by shorten != 0)
2366 if both args were extended from the same smaller type,
2367 do the arithmetic in that type and then extend.
2369 shorten !=0 and !=1 indicates a bitwise operation.
2370 For them, this optimization is safe only if
2371 both args are zero-extended or both are sign-extended.
2372 Otherwise, we might change the result.
2373 Eg, (short)-1 | (unsigned short)-1 is (int)-1
2374 but calculated in (unsigned short) it would be (unsigned short)-1. */
2376 if (shorten && none_complex)
2378 int unsigned0, unsigned1;
2379 tree arg0 = get_narrower (op0, &unsigned0);
2380 tree arg1 = get_narrower (op1, &unsigned1);
2381 /* UNS is 1 if the operation to be done is an unsigned one. */
2382 int uns = TREE_UNSIGNED (result_type);
2383 tree type;
2385 final_type = result_type;
2387 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
2388 but it *requires* conversion to FINAL_TYPE. */
2390 if ((TYPE_PRECISION (TREE_TYPE (op0))
2391 == TYPE_PRECISION (TREE_TYPE (arg0)))
2392 && TREE_TYPE (op0) != final_type)
2393 unsigned0 = TREE_UNSIGNED (TREE_TYPE (op0));
2394 if ((TYPE_PRECISION (TREE_TYPE (op1))
2395 == TYPE_PRECISION (TREE_TYPE (arg1)))
2396 && TREE_TYPE (op1) != final_type)
2397 unsigned1 = TREE_UNSIGNED (TREE_TYPE (op1));
2399 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
2401 /* For bitwise operations, signedness of nominal type
2402 does not matter. Consider only how operands were extended. */
2403 if (shorten == -1)
2404 uns = unsigned0;
2406 /* Note that in all three cases below we refrain from optimizing
2407 an unsigned operation on sign-extended args.
2408 That would not be valid. */
2410 /* Both args variable: if both extended in same way
2411 from same width, do it in that width.
2412 Do it unsigned if args were zero-extended. */
2413 if ((TYPE_PRECISION (TREE_TYPE (arg0))
2414 < TYPE_PRECISION (result_type))
2415 && (TYPE_PRECISION (TREE_TYPE (arg1))
2416 == TYPE_PRECISION (TREE_TYPE (arg0)))
2417 && unsigned0 == unsigned1
2418 && (unsigned0 || !uns))
2419 result_type
2420 = signed_or_unsigned_type (unsigned0,
2421 common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
2422 else if (TREE_CODE (arg0) == INTEGER_CST
2423 && (unsigned1 || !uns)
2424 && (TYPE_PRECISION (TREE_TYPE (arg1))
2425 < TYPE_PRECISION (result_type))
2426 && (type = signed_or_unsigned_type (unsigned1,
2427 TREE_TYPE (arg1)),
2428 int_fits_type_p (arg0, type)))
2429 result_type = type;
2430 else if (TREE_CODE (arg1) == INTEGER_CST
2431 && (unsigned0 || !uns)
2432 && (TYPE_PRECISION (TREE_TYPE (arg0))
2433 < TYPE_PRECISION (result_type))
2434 && (type = signed_or_unsigned_type (unsigned0,
2435 TREE_TYPE (arg0)),
2436 int_fits_type_p (arg1, type)))
2437 result_type = type;
2440 /* Shifts can be shortened if shifting right. */
2442 if (short_shift)
2444 int unsigned_arg;
2445 tree arg0 = get_narrower (op0, &unsigned_arg);
2447 final_type = result_type;
2449 if (arg0 == op0 && final_type == TREE_TYPE (op0))
2450 unsigned_arg = TREE_UNSIGNED (TREE_TYPE (op0));
2452 if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
2453 /* We can shorten only if the shift count is less than the
2454 number of bits in the smaller type size. */
2455 && TREE_INT_CST_HIGH (op1) == 0
2456 && TYPE_PRECISION (TREE_TYPE (arg0)) > TREE_INT_CST_LOW (op1)
2457 /* If arg is sign-extended and then unsigned-shifted,
2458 we can simulate this with a signed shift in arg's type
2459 only if the extended result is at least twice as wide
2460 as the arg. Otherwise, the shift could use up all the
2461 ones made by sign-extension and bring in zeros.
2462 We can't optimize that case at all, but in most machines
2463 it never happens because available widths are 2**N. */
2464 && (!TREE_UNSIGNED (final_type)
2465 || unsigned_arg
2466 || 2 * TYPE_PRECISION (TREE_TYPE (arg0)) <= TYPE_PRECISION (result_type)))
2468 /* Do an unsigned shift if the operand was zero-extended. */
2469 result_type
2470 = signed_or_unsigned_type (unsigned_arg,
2471 TREE_TYPE (arg0));
2472 /* Convert value-to-be-shifted to that type. */
2473 if (TREE_TYPE (op0) != result_type)
2474 op0 = convert (result_type, op0);
2475 converted = 1;
2479 /* Comparison operations are shortened too but differently.
2480 They identify themselves by setting short_compare = 1. */
2482 if (short_compare)
2484 /* Don't write &op0, etc., because that would prevent op0
2485 from being kept in a register.
2486 Instead, make copies of the our local variables and
2487 pass the copies by reference, then copy them back afterward. */
2488 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
2489 enum tree_code xresultcode = resultcode;
2490 tree val
2491 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
2492 if (val != 0)
2493 return val;
2494 op0 = xop0, op1 = xop1;
2495 converted = 1;
2496 resultcode = xresultcode;
2498 if ((warn_sign_compare < 0 ? extra_warnings : warn_sign_compare != 0)
2499 && skip_evaluation == 0)
2501 int op0_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op0));
2502 int op1_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op1));
2504 int unsignedp0, unsignedp1;
2505 tree primop0 = get_narrower (op0, &unsignedp0);
2506 tree primop1 = get_narrower (op1, &unsignedp1);
2508 /* Avoid spurious warnings for comparison with enumerators. */
2510 xop0 = orig_op0;
2511 xop1 = orig_op1;
2512 STRIP_TYPE_NOPS (xop0);
2513 STRIP_TYPE_NOPS (xop1);
2515 /* Give warnings for comparisons between signed and unsigned
2516 quantities that may fail. */
2517 /* Do the checking based on the original operand trees, so that
2518 casts will be considered, but default promotions won't be. */
2520 /* Do not warn if the comparison is being done in a signed type,
2521 since the signed type will only be chosen if it can represent
2522 all the values of the unsigned type. */
2523 if (! TREE_UNSIGNED (result_type))
2524 /* OK */;
2525 /* Do not warn if both operands are unsigned. */
2526 else if (op0_signed == op1_signed)
2527 /* OK */;
2528 /* Do not warn if the signed quantity is an unsuffixed
2529 integer literal (or some static constant expression
2530 involving such literals) and it is non-negative. */
2531 else if ((op0_signed && TREE_CODE (xop0) == INTEGER_CST
2532 && tree_int_cst_sgn (xop0) >= 0)
2533 || (op1_signed && TREE_CODE (xop1) == INTEGER_CST
2534 && tree_int_cst_sgn (xop1) >= 0))
2535 /* OK */;
2536 /* Do not warn if the comparison is an equality operation,
2537 the unsigned quantity is an integral constant and it does
2538 not use the most significant bit of result_type. */
2539 else if ((resultcode == EQ_EXPR || resultcode == NE_EXPR)
2540 && ((op0_signed && TREE_CODE (xop1) == INTEGER_CST
2541 && int_fits_type_p (xop1, signed_type (result_type)))
2542 || (op1_signed && TREE_CODE (xop0) == INTEGER_CST
2543 && int_fits_type_p (xop0, signed_type (result_type)))))
2544 /* OK */;
2545 else
2546 warning ("comparison between signed and unsigned");
2548 /* Warn if two unsigned values are being compared in a size
2549 larger than their original size, and one (and only one) is the
2550 result of a `~' operator. This comparison will always fail.
2552 Also warn if one operand is a constant, and the constant
2553 does not have all bits set that are set in the ~ operand
2554 when it is extended. */
2556 if ((TREE_CODE (primop0) == BIT_NOT_EXPR)
2557 != (TREE_CODE (primop1) == BIT_NOT_EXPR))
2559 if (TREE_CODE (primop0) == BIT_NOT_EXPR)
2560 primop0 = get_narrower (TREE_OPERAND (primop0, 0),
2561 &unsignedp0);
2562 else
2563 primop1 = get_narrower (TREE_OPERAND (primop1, 0),
2564 &unsignedp1);
2566 if (TREE_CODE (primop0) == INTEGER_CST
2567 || TREE_CODE (primop1) == INTEGER_CST)
2569 tree primop;
2570 long constant, mask;
2571 int unsignedp, bits;
2573 if (TREE_CODE (primop0) == INTEGER_CST)
2575 primop = primop1;
2576 unsignedp = unsignedp1;
2577 constant = TREE_INT_CST_LOW (primop0);
2579 else
2581 primop = primop0;
2582 unsignedp = unsignedp0;
2583 constant = TREE_INT_CST_LOW (primop1);
2586 bits = TYPE_PRECISION (TREE_TYPE (primop));
2587 if (bits < TYPE_PRECISION (result_type)
2588 && bits < HOST_BITS_PER_LONG && unsignedp)
2590 mask = (~0L) << bits;
2591 if ((mask & constant) != mask)
2592 warning ("comparison of promoted ~unsigned with constant");
2595 else if (unsignedp0 && unsignedp1
2596 && (TYPE_PRECISION (TREE_TYPE (primop0))
2597 < TYPE_PRECISION (result_type))
2598 && (TYPE_PRECISION (TREE_TYPE (primop1))
2599 < TYPE_PRECISION (result_type)))
2600 warning ("comparison of promoted ~unsigned with unsigned");
2606 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
2607 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
2608 Then the expression will be built.
2609 It will be given type FINAL_TYPE if that is nonzero;
2610 otherwise, it will be given type RESULT_TYPE. */
2612 if (!result_type)
2614 binary_op_error (code);
2615 return error_mark_node;
2618 if (! converted)
2620 if (TREE_TYPE (op0) != result_type)
2621 op0 = convert (result_type, op0);
2622 if (TREE_TYPE (op1) != result_type)
2623 op1 = convert (result_type, op1);
2626 if (build_type == NULL_TREE)
2627 build_type = result_type;
2630 register tree result = build (resultcode, build_type, op0, op1);
2631 register tree folded;
2633 folded = fold (result);
2634 if (folded == result)
2635 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
2636 if (final_type != 0)
2637 return convert (final_type, folded);
2638 return folded;
2642 /* Return a tree for the sum or difference (RESULTCODE says which)
2643 of pointer PTROP and integer INTOP. */
2645 static tree
2646 pointer_int_sum (resultcode, ptrop, intop)
2647 enum tree_code resultcode;
2648 register tree ptrop, intop;
2650 tree size_exp;
2652 register tree result;
2653 register tree folded;
2655 /* The result is a pointer of the same type that is being added. */
2657 register tree result_type = TREE_TYPE (ptrop);
2659 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
2661 if (pedantic || warn_pointer_arith)
2662 pedwarn ("pointer of type `void *' used in arithmetic");
2663 size_exp = integer_one_node;
2665 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
2667 if (pedantic || warn_pointer_arith)
2668 pedwarn ("pointer to a function used in arithmetic");
2669 size_exp = integer_one_node;
2671 else
2672 size_exp = c_size_in_bytes (TREE_TYPE (result_type));
2674 /* If what we are about to multiply by the size of the elements
2675 contains a constant term, apply distributive law
2676 and multiply that constant term separately.
2677 This helps produce common subexpressions. */
2679 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
2680 && ! TREE_CONSTANT (intop)
2681 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
2682 && TREE_CONSTANT (size_exp)
2683 /* If the constant comes from pointer subtraction,
2684 skip this optimization--it would cause an error. */
2685 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
2686 /* If the constant is unsigned, and smaller than the pointer size,
2687 then we must skip this optimization. This is because it could cause
2688 an overflow error if the constant is negative but INTOP is not. */
2689 && (! TREE_UNSIGNED (TREE_TYPE (intop))
2690 || (TYPE_PRECISION (TREE_TYPE (intop))
2691 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
2693 enum tree_code subcode = resultcode;
2694 tree int_type = TREE_TYPE (intop);
2695 if (TREE_CODE (intop) == MINUS_EXPR)
2696 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2697 /* Convert both subexpression types to the type of intop,
2698 because weird cases involving pointer arithmetic
2699 can result in a sum or difference with different type args. */
2700 ptrop = build_binary_op (subcode, ptrop,
2701 convert (int_type, TREE_OPERAND (intop, 1)), 1);
2702 intop = convert (int_type, TREE_OPERAND (intop, 0));
2705 /* Convert the integer argument to a type the same size as sizetype
2706 so the multiply won't overflow spuriously. */
2708 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
2709 || TREE_UNSIGNED (TREE_TYPE (intop)) != TREE_UNSIGNED (sizetype))
2710 intop = convert (type_for_size (TYPE_PRECISION (sizetype),
2711 TREE_UNSIGNED (sizetype)), intop);
2713 /* Replace the integer argument with a suitable product by the object size.
2714 Do this multiplication as signed, then convert to the appropriate
2715 pointer type (actually unsigned integral). */
2717 intop = convert (result_type,
2718 build_binary_op (MULT_EXPR, intop,
2719 convert (TREE_TYPE (intop), size_exp), 1));
2721 /* Create the sum or difference. */
2723 result = build (resultcode, result_type, ptrop, intop);
2725 folded = fold (result);
2726 if (folded == result)
2727 TREE_CONSTANT (folded) = TREE_CONSTANT (ptrop) & TREE_CONSTANT (intop);
2728 return folded;
2731 /* Return a tree for the difference of pointers OP0 and OP1.
2732 The resulting tree has type int. */
2734 static tree
2735 pointer_diff (op0, op1)
2736 register tree op0, op1;
2738 register tree result, folded;
2739 tree restype = ptrdiff_type_node;
2741 tree target_type = TREE_TYPE (TREE_TYPE (op0));
2743 if (pedantic || warn_pointer_arith)
2745 if (TREE_CODE (target_type) == VOID_TYPE)
2746 pedwarn ("pointer of type `void *' used in subtraction");
2747 if (TREE_CODE (target_type) == FUNCTION_TYPE)
2748 pedwarn ("pointer to a function used in subtraction");
2751 /* First do the subtraction as integers;
2752 then drop through to build the divide operator.
2753 Do not do default conversions on the minus operator
2754 in case restype is a short type. */
2756 op0 = build_binary_op (MINUS_EXPR, convert (restype, op0),
2757 convert (restype, op1), 0);
2758 /* This generates an error if op1 is pointer to incomplete type. */
2759 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (op1))) == 0)
2760 error ("arithmetic on pointer to an incomplete type");
2762 /* This generates an error if op0 is pointer to incomplete type. */
2763 op1 = c_size_in_bytes (target_type);
2765 /* Divide by the size, in easiest possible way. */
2767 result = build (EXACT_DIV_EXPR, restype, op0, convert (restype, op1));
2769 folded = fold (result);
2770 if (folded == result)
2771 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
2772 return folded;
2775 /* Construct and perhaps optimize a tree representation
2776 for a unary operation. CODE, a tree_code, specifies the operation
2777 and XARG is the operand. NOCONVERT nonzero suppresses
2778 the default promotions (such as from short to int). */
2780 tree
2781 build_unary_op (code, xarg, noconvert)
2782 enum tree_code code;
2783 tree xarg;
2784 int noconvert;
2786 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
2787 register tree arg = xarg;
2788 register tree argtype = 0;
2789 register enum tree_code typecode = TREE_CODE (TREE_TYPE (arg));
2790 tree val;
2792 if (typecode == ERROR_MARK)
2793 return error_mark_node;
2794 if (typecode == ENUMERAL_TYPE)
2795 typecode = INTEGER_TYPE;
2797 switch (code)
2799 case CONVERT_EXPR:
2800 /* This is used for unary plus, because a CONVERT_EXPR
2801 is enough to prevent anybody from looking inside for
2802 associativity, but won't generate any code. */
2803 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2804 || typecode == COMPLEX_TYPE))
2806 error ("wrong type argument to unary plus");
2807 return error_mark_node;
2809 else if (!noconvert)
2810 arg = default_conversion (arg);
2811 break;
2813 case NEGATE_EXPR:
2814 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2815 || typecode == COMPLEX_TYPE))
2817 error ("wrong type argument to unary minus");
2818 return error_mark_node;
2820 else if (!noconvert)
2821 arg = default_conversion (arg);
2822 break;
2824 case BIT_NOT_EXPR:
2825 if (typecode == COMPLEX_TYPE)
2827 code = CONJ_EXPR;
2828 if (!noconvert)
2829 arg = default_conversion (arg);
2831 else if (typecode != INTEGER_TYPE)
2833 error ("wrong type argument to bit-complement");
2834 return error_mark_node;
2836 else if (!noconvert)
2837 arg = default_conversion (arg);
2838 break;
2840 case ABS_EXPR:
2841 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2842 || typecode == COMPLEX_TYPE))
2844 error ("wrong type argument to abs");
2845 return error_mark_node;
2847 else if (!noconvert)
2848 arg = default_conversion (arg);
2849 break;
2851 case CONJ_EXPR:
2852 /* Conjugating a real value is a no-op, but allow it anyway. */
2853 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2854 || typecode == COMPLEX_TYPE))
2856 error ("wrong type argument to conjugation");
2857 return error_mark_node;
2859 else if (!noconvert)
2860 arg = default_conversion (arg);
2861 break;
2863 case TRUTH_NOT_EXPR:
2864 if (typecode != INTEGER_TYPE
2865 && typecode != REAL_TYPE && typecode != POINTER_TYPE
2866 && typecode != COMPLEX_TYPE
2867 /* These will convert to a pointer. */
2868 && typecode != ARRAY_TYPE && typecode != FUNCTION_TYPE)
2870 error ("wrong type argument to unary exclamation mark");
2871 return error_mark_node;
2873 arg = truthvalue_conversion (arg);
2874 return invert_truthvalue (arg);
2876 case NOP_EXPR:
2877 break;
2879 case REALPART_EXPR:
2880 if (TREE_CODE (arg) == COMPLEX_CST)
2881 return TREE_REALPART (arg);
2882 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
2883 return fold (build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
2884 else
2885 return arg;
2887 case IMAGPART_EXPR:
2888 if (TREE_CODE (arg) == COMPLEX_CST)
2889 return TREE_IMAGPART (arg);
2890 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
2891 return fold (build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
2892 else
2893 return convert (TREE_TYPE (arg), integer_zero_node);
2895 case PREINCREMENT_EXPR:
2896 case POSTINCREMENT_EXPR:
2897 case PREDECREMENT_EXPR:
2898 case POSTDECREMENT_EXPR:
2899 /* Handle complex lvalues (when permitted)
2900 by reduction to simpler cases. */
2902 val = unary_complex_lvalue (code, arg);
2903 if (val != 0)
2904 return val;
2906 /* Increment or decrement the real part of the value,
2907 and don't change the imaginary part. */
2908 if (typecode == COMPLEX_TYPE)
2910 tree real, imag;
2912 arg = stabilize_reference (arg);
2913 real = build_unary_op (REALPART_EXPR, arg, 1);
2914 imag = build_unary_op (IMAGPART_EXPR, arg, 1);
2915 return build (COMPLEX_EXPR, TREE_TYPE (arg),
2916 build_unary_op (code, real, 1), imag);
2919 /* Report invalid types. */
2921 if (typecode != POINTER_TYPE
2922 && typecode != INTEGER_TYPE && typecode != REAL_TYPE)
2924 error (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR
2925 ? "wrong type argument to increment"
2926 : "wrong type argument to decrement");
2927 return error_mark_node;
2931 register tree inc;
2932 tree result_type = TREE_TYPE (arg);
2934 arg = get_unwidened (arg, 0);
2935 argtype = TREE_TYPE (arg);
2937 /* Compute the increment. */
2939 if (typecode == POINTER_TYPE)
2941 /* If pointer target is an undefined struct,
2942 we just cannot know how to do the arithmetic. */
2943 if (TYPE_SIZE (TREE_TYPE (result_type)) == 0)
2944 error (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR
2945 ? "increment of pointer to unknown structure"
2946 : "decrement of pointer to unknown structure");
2947 else if ((pedantic || warn_pointer_arith)
2948 && (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE
2949 || TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE))
2950 pedwarn (code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR
2951 ? "wrong type argument to increment"
2952 : "wrong type argument to decrement");
2953 inc = c_size_in_bytes (TREE_TYPE (result_type));
2955 else
2956 inc = integer_one_node;
2958 inc = convert (argtype, inc);
2960 /* Handle incrementing a cast-expression. */
2962 while (1)
2963 switch (TREE_CODE (arg))
2965 case NOP_EXPR:
2966 case CONVERT_EXPR:
2967 case FLOAT_EXPR:
2968 case FIX_TRUNC_EXPR:
2969 case FIX_FLOOR_EXPR:
2970 case FIX_ROUND_EXPR:
2971 case FIX_CEIL_EXPR:
2972 pedantic_lvalue_warning (CONVERT_EXPR);
2973 /* If the real type has the same machine representation
2974 as the type it is cast to, we can make better output
2975 by adding directly to the inside of the cast. */
2976 if ((TREE_CODE (TREE_TYPE (arg))
2977 == TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))))
2978 && (TYPE_MODE (TREE_TYPE (arg))
2979 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (arg, 0)))))
2980 arg = TREE_OPERAND (arg, 0);
2981 else
2983 tree incremented, modify, value;
2984 arg = stabilize_reference (arg);
2985 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
2986 value = arg;
2987 else
2988 value = save_expr (arg);
2989 incremented = build (((code == PREINCREMENT_EXPR
2990 || code == POSTINCREMENT_EXPR)
2991 ? PLUS_EXPR : MINUS_EXPR),
2992 argtype, value, inc);
2993 TREE_SIDE_EFFECTS (incremented) = 1;
2994 modify = build_modify_expr (arg, NOP_EXPR, incremented);
2995 value = build (COMPOUND_EXPR, TREE_TYPE (arg), modify, value);
2996 TREE_USED (value) = 1;
2997 return value;
2999 break;
3001 default:
3002 goto give_up;
3004 give_up:
3006 /* Complain about anything else that is not a true lvalue. */
3007 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
3008 || code == POSTINCREMENT_EXPR)
3009 ? "invalid lvalue in increment"
3010 : "invalid lvalue in decrement")))
3011 return error_mark_node;
3013 /* Report a read-only lvalue. */
3014 if (TREE_READONLY (arg))
3015 readonly_warning (arg,
3016 ((code == PREINCREMENT_EXPR
3017 || code == POSTINCREMENT_EXPR)
3018 ? "increment" : "decrement"));
3020 val = build (code, TREE_TYPE (arg), arg, inc);
3021 TREE_SIDE_EFFECTS (val) = 1;
3022 val = convert (result_type, val);
3023 if (TREE_CODE (val) != code)
3024 TREE_NO_UNUSED_WARNING (val) = 1;
3025 return val;
3028 case ADDR_EXPR:
3029 /* Note that this operation never does default_conversion
3030 regardless of NOCONVERT. */
3032 /* Let &* cancel out to simplify resulting code. */
3033 if (TREE_CODE (arg) == INDIRECT_REF)
3035 /* Don't let this be an lvalue. */
3036 if (lvalue_p (TREE_OPERAND (arg, 0)))
3037 return non_lvalue (TREE_OPERAND (arg, 0));
3038 return TREE_OPERAND (arg, 0);
3041 /* For &x[y], return x+y */
3042 if (TREE_CODE (arg) == ARRAY_REF)
3044 if (mark_addressable (TREE_OPERAND (arg, 0)) == 0)
3045 return error_mark_node;
3046 return build_binary_op (PLUS_EXPR, TREE_OPERAND (arg, 0),
3047 TREE_OPERAND (arg, 1), 1);
3050 /* Handle complex lvalues (when permitted)
3051 by reduction to simpler cases. */
3052 val = unary_complex_lvalue (code, arg);
3053 if (val != 0)
3054 return val;
3056 #if 0 /* Turned off because inconsistent;
3057 float f; *&(int)f = 3.4 stores in int format
3058 whereas (int)f = 3.4 stores in float format. */
3059 /* Address of a cast is just a cast of the address
3060 of the operand of the cast. */
3061 switch (TREE_CODE (arg))
3063 case NOP_EXPR:
3064 case CONVERT_EXPR:
3065 case FLOAT_EXPR:
3066 case FIX_TRUNC_EXPR:
3067 case FIX_FLOOR_EXPR:
3068 case FIX_ROUND_EXPR:
3069 case FIX_CEIL_EXPR:
3070 if (pedantic)
3071 pedwarn ("ANSI C forbids the address of a cast expression");
3072 return convert (build_pointer_type (TREE_TYPE (arg)),
3073 build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0),
3074 0));
3076 #endif
3078 /* Allow the address of a constructor if all the elements
3079 are constant. */
3080 if (TREE_CODE (arg) == CONSTRUCTOR && TREE_CONSTANT (arg))
3082 /* Anything not already handled and not a true memory reference
3083 is an error. */
3084 else if (typecode != FUNCTION_TYPE
3085 && !lvalue_or_else (arg, "invalid lvalue in unary `&'"))
3086 return error_mark_node;
3088 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
3089 argtype = TREE_TYPE (arg);
3090 /* If the lvalue is const or volatile,
3091 merge that into the type that the address will point to. */
3092 if (TREE_CODE_CLASS (TREE_CODE (arg)) == 'd'
3093 || TREE_CODE_CLASS (TREE_CODE (arg)) == 'r')
3095 if (TREE_READONLY (arg) || TREE_THIS_VOLATILE (arg))
3096 argtype = c_build_type_variant (argtype,
3097 TREE_READONLY (arg),
3098 TREE_THIS_VOLATILE (arg));
3101 argtype = build_pointer_type (argtype);
3103 if (mark_addressable (arg) == 0)
3104 return error_mark_node;
3107 tree addr;
3109 if (TREE_CODE (arg) == COMPONENT_REF)
3111 tree field = TREE_OPERAND (arg, 1);
3113 addr = build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0), 0);
3115 if (DECL_C_BIT_FIELD (field))
3117 error ("attempt to take address of bit-field structure member `%s'",
3118 IDENTIFIER_POINTER (DECL_NAME (field)));
3119 return error_mark_node;
3122 addr = convert (argtype, addr);
3124 if (! integer_zerop (DECL_FIELD_BITPOS (field)))
3126 tree offset
3127 = size_binop (EASY_DIV_EXPR, DECL_FIELD_BITPOS (field),
3128 size_int (BITS_PER_UNIT));
3129 int flag = TREE_CONSTANT (addr);
3130 addr = fold (build (PLUS_EXPR, argtype,
3131 addr, convert (argtype, offset)));
3132 TREE_CONSTANT (addr) = flag;
3135 else
3136 addr = build1 (code, argtype, arg);
3138 /* Address of a static or external variable or
3139 file-scope function counts as a constant. */
3140 if (staticp (arg)
3141 && ! (TREE_CODE (arg) == FUNCTION_DECL
3142 && DECL_CONTEXT (arg) != 0))
3143 TREE_CONSTANT (addr) = 1;
3144 return addr;
3147 default:
3148 break;
3151 if (argtype == 0)
3152 argtype = TREE_TYPE (arg);
3153 return fold (build1 (code, argtype, arg));
3156 #if 0
3157 /* If CONVERSIONS is a conversion expression or a nested sequence of such,
3158 convert ARG with the same conversions in the same order
3159 and return the result. */
3161 static tree
3162 convert_sequence (conversions, arg)
3163 tree conversions;
3164 tree arg;
3166 switch (TREE_CODE (conversions))
3168 case NOP_EXPR:
3169 case CONVERT_EXPR:
3170 case FLOAT_EXPR:
3171 case FIX_TRUNC_EXPR:
3172 case FIX_FLOOR_EXPR:
3173 case FIX_ROUND_EXPR:
3174 case FIX_CEIL_EXPR:
3175 return convert (TREE_TYPE (conversions),
3176 convert_sequence (TREE_OPERAND (conversions, 0),
3177 arg));
3179 default:
3180 return arg;
3183 #endif /* 0 */
3185 /* Return nonzero if REF is an lvalue valid for this language.
3186 Lvalues can be assigned, unless their type has TYPE_READONLY.
3187 Lvalues can have their address taken, unless they have DECL_REGISTER. */
3190 lvalue_p (ref)
3191 tree ref;
3193 register enum tree_code code = TREE_CODE (ref);
3195 switch (code)
3197 case REALPART_EXPR:
3198 case IMAGPART_EXPR:
3199 case COMPONENT_REF:
3200 return lvalue_p (TREE_OPERAND (ref, 0));
3202 case STRING_CST:
3203 return 1;
3205 case INDIRECT_REF:
3206 case ARRAY_REF:
3207 case VAR_DECL:
3208 case PARM_DECL:
3209 case RESULT_DECL:
3210 case ERROR_MARK:
3211 return (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
3212 && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE);
3214 case BIND_EXPR:
3215 case RTL_EXPR:
3216 return TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE;
3218 default:
3219 return 0;
3223 /* Return nonzero if REF is an lvalue valid for this language;
3224 otherwise, print an error message and return zero. */
3227 lvalue_or_else (ref, msgid)
3228 tree ref;
3229 char *msgid;
3231 int win = lvalue_p (ref);
3233 if (! win)
3234 error (msgid);
3236 return win;
3239 /* Apply unary lvalue-demanding operator CODE to the expression ARG
3240 for certain kinds of expressions which are not really lvalues
3241 but which we can accept as lvalues.
3243 If ARG is not a kind of expression we can handle, return zero. */
3245 static tree
3246 unary_complex_lvalue (code, arg)
3247 enum tree_code code;
3248 tree arg;
3250 /* Handle (a, b) used as an "lvalue". */
3251 if (TREE_CODE (arg) == COMPOUND_EXPR)
3253 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 1), 0);
3255 /* If this returns a function type, it isn't really being used as
3256 an lvalue, so don't issue a warning about it. */
3257 if (TREE_CODE (TREE_TYPE (arg)) != FUNCTION_TYPE)
3258 pedantic_lvalue_warning (COMPOUND_EXPR);
3260 return build (COMPOUND_EXPR, TREE_TYPE (real_result),
3261 TREE_OPERAND (arg, 0), real_result);
3264 /* Handle (a ? b : c) used as an "lvalue". */
3265 if (TREE_CODE (arg) == COND_EXPR)
3267 pedantic_lvalue_warning (COND_EXPR);
3268 if (TREE_CODE (TREE_TYPE (arg)) != FUNCTION_TYPE)
3269 pedantic_lvalue_warning (COMPOUND_EXPR);
3271 return (build_conditional_expr
3272 (TREE_OPERAND (arg, 0),
3273 build_unary_op (code, TREE_OPERAND (arg, 1), 0),
3274 build_unary_op (code, TREE_OPERAND (arg, 2), 0)));
3277 return 0;
3280 /* If pedantic, warn about improper lvalue. CODE is either COND_EXPR
3281 COMPOUND_EXPR, or CONVERT_EXPR (for casts). */
3283 static void
3284 pedantic_lvalue_warning (code)
3285 enum tree_code code;
3287 if (pedantic)
3288 pedwarn (code == COND_EXPR
3289 ? "ANSI C forbids use of conditional expressions as lvalues"
3290 : code == COMPOUND_EXPR
3291 ? "ANSI C forbids use of compound expressions as lvalues"
3292 : "ANSI C forbids use of cast expressions as lvalues");
3295 /* Warn about storing in something that is `const'. */
3297 void
3298 readonly_warning (arg, msgid)
3299 tree arg;
3300 char *msgid;
3302 /* Forbid assignments to iterators. */
3303 if (TREE_CODE (arg) == VAR_DECL && ITERATOR_P (arg))
3304 pedwarn ("%s of iterator `%s'", _(msgid),
3305 IDENTIFIER_POINTER (DECL_NAME (arg)));
3307 if (TREE_CODE (arg) == COMPONENT_REF)
3309 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
3310 readonly_warning (TREE_OPERAND (arg, 0), msgid);
3311 else
3312 pedwarn ("%s of read-only member `%s'", _(msgid),
3313 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (arg, 1))));
3315 else if (TREE_CODE (arg) == VAR_DECL)
3316 pedwarn ("%s of read-only variable `%s'", _(msgid),
3317 IDENTIFIER_POINTER (DECL_NAME (arg)));
3318 else
3319 pedwarn ("%s of read-only location", _(msgid));
3322 /* Mark EXP saying that we need to be able to take the
3323 address of it; it should not be allocated in a register.
3324 Value is 1 if successful. */
3327 mark_addressable (exp)
3328 tree exp;
3330 register tree x = exp;
3331 while (1)
3332 switch (TREE_CODE (x))
3334 case COMPONENT_REF:
3335 if (DECL_C_BIT_FIELD (TREE_OPERAND (x, 1)))
3337 error ("cannot take address of bitfield `%s'",
3338 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x, 1))));
3339 return 0;
3342 /* ... fall through ... */
3344 case ADDR_EXPR:
3345 case ARRAY_REF:
3346 case REALPART_EXPR:
3347 case IMAGPART_EXPR:
3348 x = TREE_OPERAND (x, 0);
3349 break;
3351 case CONSTRUCTOR:
3352 TREE_ADDRESSABLE (x) = 1;
3353 return 1;
3355 case VAR_DECL:
3356 case CONST_DECL:
3357 case PARM_DECL:
3358 case RESULT_DECL:
3359 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
3360 && DECL_NONLOCAL (x))
3362 if (TREE_PUBLIC (x))
3364 error ("global register variable `%s' used in nested function",
3365 IDENTIFIER_POINTER (DECL_NAME (x)));
3366 return 0;
3368 pedwarn ("register variable `%s' used in nested function",
3369 IDENTIFIER_POINTER (DECL_NAME (x)));
3371 else if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x))
3373 if (TREE_PUBLIC (x))
3375 error ("address of global register variable `%s' requested",
3376 IDENTIFIER_POINTER (DECL_NAME (x)));
3377 return 0;
3380 /* If we are making this addressable due to its having
3381 volatile components, give a different error message. Also
3382 handle the case of an unnamed parameter by not trying
3383 to give the name. */
3385 else if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (x)))
3387 error ("cannot put object with volatile field into register");
3388 return 0;
3391 pedwarn ("address of register variable `%s' requested",
3392 IDENTIFIER_POINTER (DECL_NAME (x)));
3394 put_var_into_stack (x);
3396 /* drops in */
3397 case FUNCTION_DECL:
3398 TREE_ADDRESSABLE (x) = 1;
3399 #if 0 /* poplevel deals with this now. */
3400 if (DECL_CONTEXT (x) == 0)
3401 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (x)) = 1;
3402 #endif
3404 default:
3405 return 1;
3409 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
3411 tree
3412 build_conditional_expr (ifexp, op1, op2)
3413 tree ifexp, op1, op2;
3415 register tree type1;
3416 register tree type2;
3417 register enum tree_code code1;
3418 register enum tree_code code2;
3419 register tree result_type = NULL;
3420 tree orig_op1 = op1, orig_op2 = op2;
3422 ifexp = truthvalue_conversion (default_conversion (ifexp));
3424 #if 0 /* Produces wrong result if within sizeof. */
3425 /* Don't promote the operands separately if they promote
3426 the same way. Return the unpromoted type and let the combined
3427 value get promoted if necessary. */
3429 if (TREE_TYPE (op1) == TREE_TYPE (op2)
3430 && TREE_CODE (TREE_TYPE (op1)) != ARRAY_TYPE
3431 && TREE_CODE (TREE_TYPE (op1)) != ENUMERAL_TYPE
3432 && TREE_CODE (TREE_TYPE (op1)) != FUNCTION_TYPE)
3434 if (TREE_CODE (ifexp) == INTEGER_CST)
3435 return pedantic_non_lvalue (integer_zerop (ifexp) ? op2 : op1);
3437 return fold (build (COND_EXPR, TREE_TYPE (op1), ifexp, op1, op2));
3439 #endif
3441 /* Promote both alternatives. */
3443 if (TREE_CODE (TREE_TYPE (op1)) != VOID_TYPE)
3444 op1 = default_conversion (op1);
3445 if (TREE_CODE (TREE_TYPE (op2)) != VOID_TYPE)
3446 op2 = default_conversion (op2);
3448 if (TREE_CODE (ifexp) == ERROR_MARK
3449 || TREE_CODE (TREE_TYPE (op1)) == ERROR_MARK
3450 || TREE_CODE (TREE_TYPE (op2)) == ERROR_MARK)
3451 return error_mark_node;
3453 type1 = TREE_TYPE (op1);
3454 code1 = TREE_CODE (type1);
3455 type2 = TREE_TYPE (op2);
3456 code2 = TREE_CODE (type2);
3458 /* Quickly detect the usual case where op1 and op2 have the same type
3459 after promotion. */
3460 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
3462 if (type1 == type2)
3463 result_type = type1;
3464 else
3465 result_type = TYPE_MAIN_VARIANT (type1);
3467 else if ((code1 == INTEGER_TYPE || code1 == REAL_TYPE)
3468 && (code2 == INTEGER_TYPE || code2 == REAL_TYPE))
3470 result_type = common_type (type1, type2);
3472 else if (code1 == VOID_TYPE || code2 == VOID_TYPE)
3474 if (pedantic && (code1 != VOID_TYPE || code2 != VOID_TYPE))
3475 pedwarn ("ANSI C forbids conditional expr with only one void side");
3476 result_type = void_type_node;
3478 else if (code1 == POINTER_TYPE && code2 == POINTER_TYPE)
3480 if (comp_target_types (type1, type2))
3481 result_type = common_type (type1, type2);
3482 else if (integer_zerop (op1) && TREE_TYPE (type1) == void_type_node
3483 && TREE_CODE (orig_op1) != NOP_EXPR)
3484 result_type = qualify_type (type2, type1);
3485 else if (integer_zerop (op2) && TREE_TYPE (type2) == void_type_node
3486 && TREE_CODE (orig_op2) != NOP_EXPR)
3487 result_type = qualify_type (type1, type2);
3488 else if (TYPE_MAIN_VARIANT (TREE_TYPE (type1)) == void_type_node)
3490 if (pedantic && TREE_CODE (TREE_TYPE (type2)) == FUNCTION_TYPE)
3491 pedwarn ("ANSI C forbids conditional expr between `void *' and function pointer");
3492 result_type = qualify_type (type1, type2);
3494 else if (TYPE_MAIN_VARIANT (TREE_TYPE (type2)) == void_type_node)
3496 if (pedantic && TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE)
3497 pedwarn ("ANSI C forbids conditional expr between `void *' and function pointer");
3498 result_type = qualify_type (type2, type1);
3500 else
3502 pedwarn ("pointer type mismatch in conditional expression");
3503 result_type = build_pointer_type (void_type_node);
3506 else if (code1 == POINTER_TYPE && code2 == INTEGER_TYPE)
3508 if (! integer_zerop (op2))
3509 pedwarn ("pointer/integer type mismatch in conditional expression");
3510 else
3512 op2 = null_pointer_node;
3513 #if 0 /* The spec seems to say this is permitted. */
3514 if (pedantic && TREE_CODE (type1) == FUNCTION_TYPE)
3515 pedwarn ("ANSI C forbids conditional expr between 0 and function pointer");
3516 #endif
3518 result_type = type1;
3520 else if (code2 == POINTER_TYPE && code1 == INTEGER_TYPE)
3522 if (!integer_zerop (op1))
3523 pedwarn ("pointer/integer type mismatch in conditional expression");
3524 else
3526 op1 = null_pointer_node;
3527 #if 0 /* The spec seems to say this is permitted. */
3528 if (pedantic && TREE_CODE (type2) == FUNCTION_TYPE)
3529 pedwarn ("ANSI C forbids conditional expr between 0 and function pointer");
3530 #endif
3532 result_type = type2;
3535 if (!result_type)
3537 if (flag_cond_mismatch)
3538 result_type = void_type_node;
3539 else
3541 error ("type mismatch in conditional expression");
3542 return error_mark_node;
3546 /* Merge const and volatile flags of the incoming types. */
3547 result_type
3548 = build_type_variant (result_type,
3549 TREE_READONLY (op1) || TREE_READONLY (op2),
3550 TREE_THIS_VOLATILE (op1) || TREE_THIS_VOLATILE (op2));
3552 if (result_type != TREE_TYPE (op1))
3553 op1 = convert_and_check (result_type, op1);
3554 if (result_type != TREE_TYPE (op2))
3555 op2 = convert_and_check (result_type, op2);
3557 #if 0
3558 if (code1 == RECORD_TYPE || code1 == UNION_TYPE)
3560 result_type = TREE_TYPE (op1);
3561 if (TREE_CONSTANT (ifexp))
3562 return pedantic_non_lvalue (integer_zerop (ifexp) ? op2 : op1);
3564 if (TYPE_MODE (result_type) == BLKmode)
3566 register tree tempvar
3567 = build_decl (VAR_DECL, NULL_TREE, result_type);
3568 register tree xop1 = build_modify_expr (tempvar, op1);
3569 register tree xop2 = build_modify_expr (tempvar, op2);
3570 register tree result = fold (build (COND_EXPR, result_type,
3571 ifexp, xop1, xop2));
3573 layout_decl (tempvar, TYPE_ALIGN (result_type));
3574 /* No way to handle variable-sized objects here.
3575 I fear that the entire handling of BLKmode conditional exprs
3576 needs to be redone. */
3577 if (TREE_CODE (DECL_SIZE (tempvar)) != INTEGER_CST)
3578 abort ();
3579 DECL_RTL (tempvar)
3580 = assign_stack_local (DECL_MODE (tempvar),
3581 (TREE_INT_CST_LOW (DECL_SIZE (tempvar))
3582 + BITS_PER_UNIT - 1)
3583 / BITS_PER_UNIT,
3586 TREE_SIDE_EFFECTS (result)
3587 = TREE_SIDE_EFFECTS (ifexp) | TREE_SIDE_EFFECTS (op1)
3588 | TREE_SIDE_EFFECTS (op2);
3589 return build (COMPOUND_EXPR, result_type, result, tempvar);
3592 #endif /* 0 */
3594 if (TREE_CODE (ifexp) == INTEGER_CST)
3595 return pedantic_non_lvalue (integer_zerop (ifexp) ? op2 : op1);
3597 return fold (build (COND_EXPR, result_type, ifexp, op1, op2));
3600 /* Given a list of expressions, return a compound expression
3601 that performs them all and returns the value of the last of them. */
3603 tree
3604 build_compound_expr (list)
3605 tree list;
3607 return internal_build_compound_expr (list, TRUE);
3610 static tree
3611 internal_build_compound_expr (list, first_p)
3612 tree list;
3613 int first_p;
3615 register tree rest;
3617 if (TREE_CHAIN (list) == 0)
3619 #if 0 /* If something inside inhibited lvalueness, we should not override. */
3620 /* Consider (x, y+0), which is not an lvalue since y+0 is not. */
3622 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3623 if (TREE_CODE (list) == NON_LVALUE_EXPR)
3624 list = TREE_OPERAND (list, 0);
3625 #endif
3627 /* Don't let (0, 0) be null pointer constant. */
3628 if (!first_p && integer_zerop (TREE_VALUE (list)))
3629 return non_lvalue (TREE_VALUE (list));
3630 return TREE_VALUE (list);
3633 if (TREE_CHAIN (list) != 0 && TREE_CHAIN (TREE_CHAIN (list)) == 0)
3635 /* Convert arrays to pointers when there really is a comma operator. */
3636 if (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (list)))) == ARRAY_TYPE)
3637 TREE_VALUE (TREE_CHAIN (list))
3638 = default_conversion (TREE_VALUE (TREE_CHAIN (list)));
3641 rest = internal_build_compound_expr (TREE_CHAIN (list), FALSE);
3643 if (! TREE_SIDE_EFFECTS (TREE_VALUE (list)))
3645 /* The left-hand operand of a comma expression is like an expression
3646 statement: with -W or -Wunused, we should warn if it doesn't have
3647 any side-effects, unless it was explicitly cast to (void). */
3648 if ((extra_warnings || warn_unused)
3649 && ! (TREE_CODE (TREE_VALUE (list)) == CONVERT_EXPR
3650 && TREE_TYPE (TREE_VALUE (list)) == void_type_node))
3651 warning ("left-hand operand of comma expression has no effect");
3653 /* When pedantic, a compound expression can be neither an lvalue
3654 nor an integer constant expression. */
3655 if (! pedantic)
3656 return rest;
3659 /* With -Wunused, we should also warn if the left-hand operand does have
3660 side-effects, but computes a value which is not used. For example, in
3661 `foo() + bar(), baz()' the result of the `+' operator is not used,
3662 so we should issue a warning. */
3663 else if (warn_unused)
3664 warn_if_unused_value (TREE_VALUE (list));
3666 return build (COMPOUND_EXPR, TREE_TYPE (rest), TREE_VALUE (list), rest);
3669 /* Build an expression representing a cast to type TYPE of expression EXPR. */
3671 tree
3672 build_c_cast (type, expr)
3673 register tree type;
3674 tree expr;
3676 register tree value = expr;
3678 if (type == error_mark_node || expr == error_mark_node)
3679 return error_mark_node;
3680 type = TYPE_MAIN_VARIANT (type);
3682 #if 0
3683 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3684 if (TREE_CODE (value) == NON_LVALUE_EXPR)
3685 value = TREE_OPERAND (value, 0);
3686 #endif
3688 if (TREE_CODE (type) == ARRAY_TYPE)
3690 error ("cast specifies array type");
3691 return error_mark_node;
3694 if (TREE_CODE (type) == FUNCTION_TYPE)
3696 error ("cast specifies function type");
3697 return error_mark_node;
3700 if (type == TREE_TYPE (value))
3702 if (pedantic)
3704 if (TREE_CODE (type) == RECORD_TYPE
3705 || TREE_CODE (type) == UNION_TYPE)
3706 pedwarn ("ANSI C forbids casting nonscalar to the same type");
3709 else if (TREE_CODE (type) == UNION_TYPE)
3711 tree field;
3712 if (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
3713 || TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE)
3714 value = default_conversion (value);
3716 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
3717 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field)),
3718 TYPE_MAIN_VARIANT (TREE_TYPE (value))))
3719 break;
3721 if (field)
3723 char *name;
3724 tree t;
3726 if (pedantic)
3727 pedwarn ("ANSI C forbids casts to union type");
3728 if (TYPE_NAME (type) != 0)
3730 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
3731 name = IDENTIFIER_POINTER (TYPE_NAME (type));
3732 else
3733 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
3735 else
3736 name = "";
3737 t = digest_init (type, build (CONSTRUCTOR, type, NULL_TREE,
3738 build_tree_list (field, value)),
3739 0, 0);
3740 TREE_CONSTANT (t) = TREE_CONSTANT (value);
3741 return t;
3743 error ("cast to union type from type not present in union");
3744 return error_mark_node;
3746 else
3748 tree otype, ovalue;
3750 /* If casting to void, avoid the error that would come
3751 from default_conversion in the case of a non-lvalue array. */
3752 if (type == void_type_node)
3753 return build1 (CONVERT_EXPR, type, value);
3755 /* Convert functions and arrays to pointers,
3756 but don't convert any other types. */
3757 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
3758 || TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE)
3759 value = default_conversion (value);
3760 otype = TREE_TYPE (value);
3762 /* Optionally warn about potentially worrisome casts. */
3764 if (warn_cast_qual
3765 && TREE_CODE (type) == POINTER_TYPE
3766 && TREE_CODE (otype) == POINTER_TYPE)
3768 /* Go to the innermost object being pointed to. */
3769 tree in_type = type;
3770 tree in_otype = otype;
3772 while (TREE_CODE (in_type) == POINTER_TYPE)
3773 in_type = TREE_TYPE (in_type);
3774 while (TREE_CODE (in_otype) == POINTER_TYPE)
3775 in_otype = TREE_TYPE (in_otype);
3777 if (TYPE_VOLATILE (in_otype) && ! TYPE_VOLATILE (in_type))
3778 pedwarn ("cast discards `volatile' from pointer target type");
3779 if (TYPE_READONLY (in_otype) && ! TYPE_READONLY (in_type))
3780 pedwarn ("cast discards `const' from pointer target type");
3783 /* Warn about possible alignment problems. */
3784 if (STRICT_ALIGNMENT && warn_cast_align
3785 && TREE_CODE (type) == POINTER_TYPE
3786 && TREE_CODE (otype) == POINTER_TYPE
3787 && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
3788 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
3789 /* Don't warn about opaque types, where the actual alignment
3790 restriction is unknown. */
3791 && !((TREE_CODE (TREE_TYPE (otype)) == UNION_TYPE
3792 || TREE_CODE (TREE_TYPE (otype)) == RECORD_TYPE)
3793 && TYPE_MODE (TREE_TYPE (otype)) == VOIDmode)
3794 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
3795 warning ("cast increases required alignment of target type");
3797 if (TREE_CODE (type) == INTEGER_TYPE
3798 && TREE_CODE (otype) == POINTER_TYPE
3799 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3800 && !TREE_CONSTANT (value))
3801 warning ("cast from pointer to integer of different size");
3803 if (warn_bad_function_cast
3804 && TREE_CODE (value) == CALL_EXPR
3805 && TREE_CODE (type) != TREE_CODE (otype))
3806 warning ("cast does not match function type");
3808 if (TREE_CODE (type) == POINTER_TYPE
3809 && TREE_CODE (otype) == INTEGER_TYPE
3810 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3811 #if 0
3812 /* Don't warn about converting 0 to pointer,
3813 provided the 0 was explicit--not cast or made by folding. */
3814 && !(TREE_CODE (value) == INTEGER_CST && integer_zerop (value))
3815 #endif
3816 /* Don't warn about converting any constant. */
3817 && !TREE_CONSTANT (value))
3818 warning ("cast to pointer from integer of different size");
3820 ovalue = value;
3821 value = convert (type, value);
3823 /* Ignore any integer overflow caused by the cast. */
3824 if (TREE_CODE (value) == INTEGER_CST)
3826 TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
3827 TREE_CONSTANT_OVERFLOW (value) = TREE_CONSTANT_OVERFLOW (ovalue);
3831 /* Pedantically, don't ley (void *) (FOO *) 0 be a null pointer constant. */
3832 if (pedantic && TREE_CODE (value) == INTEGER_CST
3833 && TREE_CODE (expr) == INTEGER_CST
3834 && TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE)
3835 value = non_lvalue (value);
3837 /* If pedantic, don't let a cast be an lvalue. */
3838 if (value == expr && pedantic)
3839 value = non_lvalue (value);
3841 return value;
3844 /* Build an assignment expression of lvalue LHS from value RHS.
3845 MODIFYCODE is the code for a binary operator that we use
3846 to combine the old value of LHS with RHS to get the new value.
3847 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment. */
3849 tree
3850 build_modify_expr (lhs, modifycode, rhs)
3851 tree lhs, rhs;
3852 enum tree_code modifycode;
3854 register tree result;
3855 tree newrhs;
3856 tree lhstype = TREE_TYPE (lhs);
3857 tree olhstype = lhstype;
3859 /* Types that aren't fully specified cannot be used in assignments. */
3860 lhs = require_complete_type (lhs);
3862 /* Avoid duplicate error messages from operands that had errors. */
3863 if (TREE_CODE (lhs) == ERROR_MARK || TREE_CODE (rhs) == ERROR_MARK)
3864 return error_mark_node;
3866 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3867 /* Do not use STRIP_NOPS here. We do not want an enumerator
3868 whose value is 0 to count as a null pointer constant. */
3869 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
3870 rhs = TREE_OPERAND (rhs, 0);
3872 newrhs = rhs;
3874 /* Handle control structure constructs used as "lvalues". */
3876 switch (TREE_CODE (lhs))
3878 /* Handle (a, b) used as an "lvalue". */
3879 case COMPOUND_EXPR:
3880 pedantic_lvalue_warning (COMPOUND_EXPR);
3881 newrhs = build_modify_expr (TREE_OPERAND (lhs, 1), modifycode, rhs);
3882 if (TREE_CODE (newrhs) == ERROR_MARK)
3883 return error_mark_node;
3884 return build (COMPOUND_EXPR, lhstype,
3885 TREE_OPERAND (lhs, 0), newrhs);
3887 /* Handle (a ? b : c) used as an "lvalue". */
3888 case COND_EXPR:
3889 pedantic_lvalue_warning (COND_EXPR);
3890 rhs = save_expr (rhs);
3892 /* Produce (a ? (b = rhs) : (c = rhs))
3893 except that the RHS goes through a save-expr
3894 so the code to compute it is only emitted once. */
3895 tree cond
3896 = build_conditional_expr (TREE_OPERAND (lhs, 0),
3897 build_modify_expr (TREE_OPERAND (lhs, 1),
3898 modifycode, rhs),
3899 build_modify_expr (TREE_OPERAND (lhs, 2),
3900 modifycode, rhs));
3901 if (TREE_CODE (cond) == ERROR_MARK)
3902 return cond;
3903 /* Make sure the code to compute the rhs comes out
3904 before the split. */
3905 return build (COMPOUND_EXPR, TREE_TYPE (lhs),
3906 /* But cast it to void to avoid an "unused" error. */
3907 convert (void_type_node, rhs), cond);
3909 default:
3910 break;
3913 /* If a binary op has been requested, combine the old LHS value with the RHS
3914 producing the value we should actually store into the LHS. */
3916 if (modifycode != NOP_EXPR)
3918 lhs = stabilize_reference (lhs);
3919 newrhs = build_binary_op (modifycode, lhs, rhs, 1);
3922 /* Handle a cast used as an "lvalue".
3923 We have already performed any binary operator using the value as cast.
3924 Now convert the result to the cast type of the lhs,
3925 and then true type of the lhs and store it there;
3926 then convert result back to the cast type to be the value
3927 of the assignment. */
3929 switch (TREE_CODE (lhs))
3931 case NOP_EXPR:
3932 case CONVERT_EXPR:
3933 case FLOAT_EXPR:
3934 case FIX_TRUNC_EXPR:
3935 case FIX_FLOOR_EXPR:
3936 case FIX_ROUND_EXPR:
3937 case FIX_CEIL_EXPR:
3938 if (TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
3939 || TREE_CODE (TREE_TYPE (newrhs)) == FUNCTION_TYPE)
3940 newrhs = default_conversion (newrhs);
3942 tree inner_lhs = TREE_OPERAND (lhs, 0);
3943 tree result;
3944 result = build_modify_expr (inner_lhs, NOP_EXPR,
3945 convert (TREE_TYPE (inner_lhs),
3946 convert (lhstype, newrhs)));
3947 if (TREE_CODE (result) == ERROR_MARK)
3948 return result;
3949 pedantic_lvalue_warning (CONVERT_EXPR);
3950 return convert (TREE_TYPE (lhs), result);
3953 default:
3954 break;
3957 /* Now we have handled acceptable kinds of LHS that are not truly lvalues.
3958 Reject anything strange now. */
3960 if (!lvalue_or_else (lhs, "invalid lvalue in assignment"))
3961 return error_mark_node;
3963 /* Warn about storing in something that is `const'. */
3965 if (TREE_READONLY (lhs) || TYPE_READONLY (lhstype)
3966 || ((TREE_CODE (lhstype) == RECORD_TYPE
3967 || TREE_CODE (lhstype) == UNION_TYPE)
3968 && C_TYPE_FIELDS_READONLY (lhstype)))
3969 readonly_warning (lhs, "assignment");
3971 /* If storing into a structure or union member,
3972 it has probably been given type `int'.
3973 Compute the type that would go with
3974 the actual amount of storage the member occupies. */
3976 if (TREE_CODE (lhs) == COMPONENT_REF
3977 && (TREE_CODE (lhstype) == INTEGER_TYPE
3978 || TREE_CODE (lhstype) == REAL_TYPE
3979 || TREE_CODE (lhstype) == ENUMERAL_TYPE))
3980 lhstype = TREE_TYPE (get_unwidened (lhs, 0));
3982 /* If storing in a field that is in actuality a short or narrower than one,
3983 we must store in the field in its actual type. */
3985 if (lhstype != TREE_TYPE (lhs))
3987 lhs = copy_node (lhs);
3988 TREE_TYPE (lhs) = lhstype;
3991 /* Convert new value to destination type. */
3993 newrhs = convert_for_assignment (lhstype, newrhs, _("assignment"),
3994 NULL_TREE, NULL_TREE, 0);
3995 if (TREE_CODE (newrhs) == ERROR_MARK)
3996 return error_mark_node;
3998 result = build (MODIFY_EXPR, lhstype, lhs, newrhs);
3999 TREE_SIDE_EFFECTS (result) = 1;
4001 /* If we got the LHS in a different type for storing in,
4002 convert the result back to the nominal type of LHS
4003 so that the value we return always has the same type
4004 as the LHS argument. */
4006 if (olhstype == TREE_TYPE (result))
4007 return result;
4008 return convert_for_assignment (olhstype, result, _("assignment"),
4009 NULL_TREE, NULL_TREE, 0);
4012 /* Convert value RHS to type TYPE as preparation for an assignment
4013 to an lvalue of type TYPE.
4014 The real work of conversion is done by `convert'.
4015 The purpose of this function is to generate error messages
4016 for assignments that are not allowed in C.
4017 ERRTYPE is a string to use in error messages:
4018 "assignment", "return", etc. If it is null, this is parameter passing
4019 for a function call (and different error messages are output).
4021 FUNNAME is the name of the function being called,
4022 as an IDENTIFIER_NODE, or null.
4023 PARMNUM is the number of the argument, for printing in error messages. */
4025 static tree
4026 convert_for_assignment (type, rhs, errtype, fundecl, funname, parmnum)
4027 tree type, rhs;
4028 char *errtype;
4029 tree fundecl, funname;
4030 int parmnum;
4032 register enum tree_code codel = TREE_CODE (type);
4033 register tree rhstype;
4034 register enum tree_code coder;
4036 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4037 /* Do not use STRIP_NOPS here. We do not want an enumerator
4038 whose value is 0 to count as a null pointer constant. */
4039 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
4040 rhs = TREE_OPERAND (rhs, 0);
4042 if (TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
4043 || TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE)
4044 rhs = default_conversion (rhs);
4045 else if (optimize && TREE_CODE (rhs) == VAR_DECL)
4046 rhs = decl_constant_value (rhs);
4048 rhstype = TREE_TYPE (rhs);
4049 coder = TREE_CODE (rhstype);
4051 if (coder == ERROR_MARK)
4052 return error_mark_node;
4054 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype))
4056 overflow_warning (rhs);
4057 /* Check for Objective-C protocols. This will issue a warning if
4058 there are protocol violations. No need to use the return value. */
4059 maybe_objc_comptypes (type, rhstype, 0);
4060 return rhs;
4063 if (coder == VOID_TYPE)
4065 error ("void value not ignored as it ought to be");
4066 return error_mark_node;
4068 /* Arithmetic types all interconvert, and enum is treated like int. */
4069 if ((codel == INTEGER_TYPE || codel == REAL_TYPE || codel == ENUMERAL_TYPE
4070 || codel == COMPLEX_TYPE)
4071 && (coder == INTEGER_TYPE || coder == REAL_TYPE || coder == ENUMERAL_TYPE
4072 || coder == COMPLEX_TYPE))
4073 return convert_and_check (type, rhs);
4075 /* Conversion to a transparent union from its member types.
4076 This applies only to function arguments. */
4077 else if (codel == UNION_TYPE && TYPE_TRANSPARENT_UNION (type) && ! errtype)
4079 tree memb_types;
4080 tree marginal_memb_type = 0;
4082 for (memb_types = TYPE_FIELDS (type); memb_types;
4083 memb_types = TREE_CHAIN (memb_types))
4085 tree memb_type = TREE_TYPE (memb_types);
4087 if (comptypes (TYPE_MAIN_VARIANT (memb_type),
4088 TYPE_MAIN_VARIANT (rhstype)))
4089 break;
4091 if (TREE_CODE (memb_type) != POINTER_TYPE)
4092 continue;
4094 if (coder == POINTER_TYPE)
4096 register tree ttl = TREE_TYPE (memb_type);
4097 register tree ttr = TREE_TYPE (rhstype);
4099 /* Any non-function converts to a [const][volatile] void *
4100 and vice versa; otherwise, targets must be the same.
4101 Meanwhile, the lhs target must have all the qualifiers of
4102 the rhs. */
4103 if (TYPE_MAIN_VARIANT (ttl) == void_type_node
4104 || TYPE_MAIN_VARIANT (ttr) == void_type_node
4105 || comp_target_types (memb_type, rhstype))
4107 /* If this type won't generate any warnings, use it. */
4108 if ((TREE_CODE (ttr) == FUNCTION_TYPE
4109 && TREE_CODE (ttl) == FUNCTION_TYPE)
4110 ? ((! TYPE_READONLY (ttl) | TYPE_READONLY (ttr))
4111 & (! TYPE_VOLATILE (ttl) | TYPE_VOLATILE (ttr)))
4112 : ((TYPE_READONLY (ttl) | ! TYPE_READONLY (ttr))
4113 & (TYPE_VOLATILE (ttl) | ! TYPE_VOLATILE (ttr))))
4114 break;
4116 /* Keep looking for a better type, but remember this one. */
4117 if (! marginal_memb_type)
4118 marginal_memb_type = memb_type;
4122 /* Can convert integer zero to any pointer type. */
4123 if (integer_zerop (rhs)
4124 || (TREE_CODE (rhs) == NOP_EXPR
4125 && integer_zerop (TREE_OPERAND (rhs, 0))))
4127 rhs = null_pointer_node;
4128 break;
4132 if (memb_types || marginal_memb_type)
4134 if (! memb_types)
4136 /* We have only a marginally acceptable member type;
4137 it needs a warning. */
4138 register tree ttl = TREE_TYPE (marginal_memb_type);
4139 register tree ttr = TREE_TYPE (rhstype);
4141 /* Const and volatile mean something different for function
4142 types, so the usual warnings are not appropriate. */
4143 if (TREE_CODE (ttr) == FUNCTION_TYPE
4144 && TREE_CODE (ttl) == FUNCTION_TYPE)
4146 /* Because const and volatile on functions are
4147 restrictions that say the function will not do
4148 certain things, it is okay to use a const or volatile
4149 function where an ordinary one is wanted, but not
4150 vice-versa. */
4151 if (TYPE_READONLY (ttl) && ! TYPE_READONLY (ttr))
4152 warn_for_assignment ("%s makes `const *' function pointer from non-const",
4153 errtype, funname, parmnum);
4154 if (TYPE_VOLATILE (ttl) && ! TYPE_VOLATILE (ttr))
4155 warn_for_assignment ("%s makes `volatile *' function pointer from non-volatile",
4156 errtype, funname, parmnum);
4158 else
4160 if (! TYPE_READONLY (ttl) && TYPE_READONLY (ttr))
4161 warn_for_assignment ("%s discards `const' from pointer target type",
4162 errtype, funname, parmnum);
4163 if (! TYPE_VOLATILE (ttl) && TYPE_VOLATILE (ttr))
4164 warn_for_assignment ("%s discards `volatile' from pointer target type",
4165 errtype, funname, parmnum);
4169 if (pedantic && ! DECL_IN_SYSTEM_HEADER (fundecl))
4170 pedwarn ("ANSI C prohibits argument conversion to union type");
4172 return build1 (NOP_EXPR, type, rhs);
4176 /* Conversions among pointers */
4177 else if (codel == POINTER_TYPE && coder == POINTER_TYPE)
4179 register tree ttl = TREE_TYPE (type);
4180 register tree ttr = TREE_TYPE (rhstype);
4182 /* Any non-function converts to a [const][volatile] void *
4183 and vice versa; otherwise, targets must be the same.
4184 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
4185 if (TYPE_MAIN_VARIANT (ttl) == void_type_node
4186 || TYPE_MAIN_VARIANT (ttr) == void_type_node
4187 || comp_target_types (type, rhstype)
4188 || (unsigned_type (TYPE_MAIN_VARIANT (ttl))
4189 == unsigned_type (TYPE_MAIN_VARIANT (ttr))))
4191 if (pedantic
4192 && ((TYPE_MAIN_VARIANT (ttl) == void_type_node
4193 && TREE_CODE (ttr) == FUNCTION_TYPE)
4195 (TYPE_MAIN_VARIANT (ttr) == void_type_node
4196 /* Check TREE_CODE to catch cases like (void *) (char *) 0
4197 which are not ANSI null ptr constants. */
4198 && (!integer_zerop (rhs) || TREE_CODE (rhs) == NOP_EXPR)
4199 && TREE_CODE (ttl) == FUNCTION_TYPE)))
4200 warn_for_assignment ("ANSI forbids %s between function pointer and `void *'",
4201 errtype, funname, parmnum);
4202 /* Const and volatile mean something different for function types,
4203 so the usual warnings are not appropriate. */
4204 else if (TREE_CODE (ttr) != FUNCTION_TYPE
4205 && TREE_CODE (ttl) != FUNCTION_TYPE)
4207 if (! TYPE_READONLY (ttl) && TYPE_READONLY (ttr))
4208 warn_for_assignment ("%s discards `const' from pointer target type",
4209 errtype, funname, parmnum);
4210 else if (! TYPE_VOLATILE (ttl) && TYPE_VOLATILE (ttr))
4211 warn_for_assignment ("%s discards `volatile' from pointer target type",
4212 errtype, funname, parmnum);
4213 /* If this is not a case of ignoring a mismatch in signedness,
4214 no warning. */
4215 else if (TYPE_MAIN_VARIANT (ttl) == void_type_node
4216 || TYPE_MAIN_VARIANT (ttr) == void_type_node
4217 || comp_target_types (type, rhstype))
4219 /* If there is a mismatch, do warn. */
4220 else if (pedantic)
4221 warn_for_assignment ("pointer targets in %s differ in signedness",
4222 errtype, funname, parmnum);
4224 else if (TREE_CODE (ttl) == FUNCTION_TYPE
4225 && TREE_CODE (ttr) == FUNCTION_TYPE)
4227 /* Because const and volatile on functions are restrictions
4228 that say the function will not do certain things,
4229 it is okay to use a const or volatile function
4230 where an ordinary one is wanted, but not vice-versa. */
4231 if (TYPE_READONLY (ttl) && ! TYPE_READONLY (ttr))
4232 warn_for_assignment ("%s makes `const *' function pointer from non-const",
4233 errtype, funname, parmnum);
4234 if (TYPE_VOLATILE (ttl) && ! TYPE_VOLATILE (ttr))
4235 warn_for_assignment ("%s makes `volatile *' function pointer from non-volatile",
4236 errtype, funname, parmnum);
4239 else
4240 warn_for_assignment ("%s from incompatible pointer type",
4241 errtype, funname, parmnum);
4242 return convert (type, rhs);
4244 else if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
4246 /* An explicit constant 0 can convert to a pointer,
4247 or one that results from arithmetic, even including
4248 a cast to integer type. */
4249 if (! (TREE_CODE (rhs) == INTEGER_CST && integer_zerop (rhs))
4251 ! (TREE_CODE (rhs) == NOP_EXPR
4252 && TREE_CODE (TREE_TYPE (rhs)) == INTEGER_TYPE
4253 && TREE_CODE (TREE_OPERAND (rhs, 0)) == INTEGER_CST
4254 && integer_zerop (TREE_OPERAND (rhs, 0))))
4256 warn_for_assignment ("%s makes pointer from integer without a cast",
4257 errtype, funname, parmnum);
4258 return convert (type, rhs);
4260 return null_pointer_node;
4262 else if (codel == INTEGER_TYPE && coder == POINTER_TYPE)
4264 warn_for_assignment ("%s makes integer from pointer without a cast",
4265 errtype, funname, parmnum);
4266 return convert (type, rhs);
4269 if (!errtype)
4271 if (funname)
4273 tree selector = maybe_building_objc_message_expr ();
4275 if (selector && parmnum > 2)
4276 error ("incompatible type for argument %d of `%s'",
4277 parmnum - 2, IDENTIFIER_POINTER (selector));
4278 else
4279 error ("incompatible type for argument %d of `%s'",
4280 parmnum, IDENTIFIER_POINTER (funname));
4282 else
4283 error ("incompatible type for argument %d of indirect function call",
4284 parmnum);
4286 else
4287 error ("incompatible types in %s", errtype);
4289 return error_mark_node;
4292 /* Print a warning using MSGID.
4293 It gets OPNAME as its one parameter.
4294 If OPNAME is null, it is replaced by "passing arg ARGNUM of `FUNCTION'".
4295 FUNCTION and ARGNUM are handled specially if we are building an
4296 Objective-C selector. */
4298 static void
4299 warn_for_assignment (msgid, opname, function, argnum)
4300 char *msgid;
4301 char *opname;
4302 tree function;
4303 int argnum;
4305 if (opname == 0)
4307 tree selector = maybe_building_objc_message_expr ();
4309 if (selector && argnum > 2)
4311 function = selector;
4312 argnum -= 2;
4314 if (function)
4316 /* Function name is known; supply it. */
4317 char *argstring = _("passing arg %d of `%s'");
4318 opname = (char *) alloca (IDENTIFIER_LENGTH (function)
4319 + strlen (argstring) + 1 + 25 /*%d*/ + 1);
4320 sprintf (opname, argstring, argnum, IDENTIFIER_POINTER (function));
4322 else
4324 /* Function name unknown (call through ptr); just give arg number. */
4325 char *argnofun = _("passing arg %d of pointer to function");
4326 opname = (char *) alloca (strlen (argnofun) + 1 + 25 /*%d*/ + 1);
4327 sprintf (opname, argnofun, argnum);
4330 pedwarn (msgid, opname);
4333 /* Return nonzero if VALUE is a valid constant-valued expression
4334 for use in initializing a static variable; one that can be an
4335 element of a "constant" initializer.
4337 Return null_pointer_node if the value is absolute;
4338 if it is relocatable, return the variable that determines the relocation.
4339 We assume that VALUE has been folded as much as possible;
4340 therefore, we do not need to check for such things as
4341 arithmetic-combinations of integers. */
4343 tree
4344 initializer_constant_valid_p (value, endtype)
4345 tree value;
4346 tree endtype;
4348 switch (TREE_CODE (value))
4350 case CONSTRUCTOR:
4351 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
4352 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
4353 && TREE_CONSTANT (value)
4354 && CONSTRUCTOR_ELTS (value))
4355 return
4356 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
4357 endtype);
4359 return TREE_STATIC (value) ? null_pointer_node : 0;
4361 case INTEGER_CST:
4362 case REAL_CST:
4363 case STRING_CST:
4364 case COMPLEX_CST:
4365 return null_pointer_node;
4367 case ADDR_EXPR:
4368 return TREE_OPERAND (value, 0);
4370 case NON_LVALUE_EXPR:
4371 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4373 case CONVERT_EXPR:
4374 case NOP_EXPR:
4375 /* Allow conversions between pointer types. */
4376 if (TREE_CODE (TREE_TYPE (value)) == POINTER_TYPE
4377 && TREE_CODE (TREE_TYPE (TREE_OPERAND (value, 0))) == POINTER_TYPE)
4378 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4380 /* Allow conversions between real types. */
4381 if (TREE_CODE (TREE_TYPE (value)) == REAL_TYPE
4382 && TREE_CODE (TREE_TYPE (TREE_OPERAND (value, 0))) == REAL_TYPE)
4383 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4385 /* Allow length-preserving conversions between integer types. */
4386 if (TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
4387 && TREE_CODE (TREE_TYPE (TREE_OPERAND (value, 0))) == INTEGER_TYPE
4388 && (TYPE_PRECISION (TREE_TYPE (value))
4389 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4390 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4392 /* Allow conversions between other integer types only if
4393 explicit value. */
4394 if (TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
4395 && TREE_CODE (TREE_TYPE (TREE_OPERAND (value, 0))) == INTEGER_TYPE)
4397 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4398 endtype);
4399 if (inner == null_pointer_node)
4400 return null_pointer_node;
4401 return 0;
4404 /* Allow (int) &foo provided int is as wide as a pointer. */
4405 if (TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
4406 && TREE_CODE (TREE_TYPE (TREE_OPERAND (value, 0))) == POINTER_TYPE
4407 && (TYPE_PRECISION (TREE_TYPE (value))
4408 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4409 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4410 endtype);
4412 /* Likewise conversions from int to pointers. */
4413 if (TREE_CODE (TREE_TYPE (value)) == POINTER_TYPE
4414 && TREE_CODE (TREE_TYPE (TREE_OPERAND (value, 0))) == INTEGER_TYPE
4415 && (TYPE_PRECISION (TREE_TYPE (value))
4416 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4417 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4418 endtype);
4420 /* Allow conversions to union types if the value inside is okay. */
4421 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
4422 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4423 endtype);
4424 return 0;
4426 case PLUS_EXPR:
4427 if (TREE_CODE (endtype) == INTEGER_TYPE
4428 && TYPE_PRECISION (endtype) < POINTER_SIZE)
4429 return 0;
4431 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4432 endtype);
4433 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4434 endtype);
4435 /* If either term is absolute, use the other terms relocation. */
4436 if (valid0 == null_pointer_node)
4437 return valid1;
4438 if (valid1 == null_pointer_node)
4439 return valid0;
4440 return 0;
4443 case MINUS_EXPR:
4444 if (TREE_CODE (endtype) == INTEGER_TYPE
4445 && TYPE_PRECISION (endtype) < POINTER_SIZE)
4446 return 0;
4448 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4449 endtype);
4450 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4451 endtype);
4452 /* Win if second argument is absolute. */
4453 if (valid1 == null_pointer_node)
4454 return valid0;
4455 /* Win if both arguments have the same relocation.
4456 Then the value is absolute. */
4457 if (valid0 == valid1)
4458 return null_pointer_node;
4459 return 0;
4462 default:
4463 return 0;
4467 /* If VALUE is a compound expr all of whose expressions are constant, then
4468 return its value. Otherwise, return error_mark_node.
4470 This is for handling COMPOUND_EXPRs as initializer elements
4471 which is allowed with a warning when -pedantic is specified. */
4473 static tree
4474 valid_compound_expr_initializer (value, endtype)
4475 tree value;
4476 tree endtype;
4478 if (TREE_CODE (value) == COMPOUND_EXPR)
4480 if (valid_compound_expr_initializer (TREE_OPERAND (value, 0), endtype)
4481 == error_mark_node)
4482 return error_mark_node;
4483 return valid_compound_expr_initializer (TREE_OPERAND (value, 1),
4484 endtype);
4486 else if (! TREE_CONSTANT (value)
4487 && ! initializer_constant_valid_p (value, endtype))
4488 return error_mark_node;
4489 else
4490 return value;
4493 /* Perform appropriate conversions on the initial value of a variable,
4494 store it in the declaration DECL,
4495 and print any error messages that are appropriate.
4496 If the init is invalid, store an ERROR_MARK. */
4498 void
4499 store_init_value (decl, init)
4500 tree decl, init;
4502 register tree value, type;
4504 /* If variable's type was invalidly declared, just ignore it. */
4506 type = TREE_TYPE (decl);
4507 if (TREE_CODE (type) == ERROR_MARK)
4508 return;
4510 /* Digest the specified initializer into an expression. */
4512 value = digest_init (type, init, TREE_STATIC (decl),
4513 TREE_STATIC (decl) || pedantic);
4515 /* Store the expression if valid; else report error. */
4517 #if 0
4518 /* Note that this is the only place we can detect the error
4519 in a case such as struct foo bar = (struct foo) { x, y };
4520 where there is one initial value which is a constructor expression. */
4521 if (value == error_mark_node)
4523 else if (TREE_STATIC (decl) && ! TREE_CONSTANT (value))
4525 error ("initializer for static variable is not constant");
4526 value = error_mark_node;
4528 else if (TREE_STATIC (decl)
4529 && initializer_constant_valid_p (value, TREE_TYPE (value)) == 0)
4531 error ("initializer for static variable uses complicated arithmetic");
4532 value = error_mark_node;
4534 else
4536 if (pedantic && TREE_CODE (value) == CONSTRUCTOR)
4538 if (! TREE_CONSTANT (value))
4539 pedwarn ("aggregate initializer is not constant");
4540 else if (! TREE_STATIC (value))
4541 pedwarn ("aggregate initializer uses complicated arithmetic");
4544 #endif
4546 DECL_INITIAL (decl) = value;
4548 /* ANSI wants warnings about out-of-range constant initializers. */
4549 STRIP_TYPE_NOPS (value);
4550 constant_expression_warning (value);
4553 /* Methods for storing and printing names for error messages. */
4555 /* Implement a spelling stack that allows components of a name to be pushed
4556 and popped. Each element on the stack is this structure. */
4558 struct spelling
4560 int kind;
4561 union
4563 int i;
4564 char *s;
4565 } u;
4568 #define SPELLING_STRING 1
4569 #define SPELLING_MEMBER 2
4570 #define SPELLING_BOUNDS 3
4572 static struct spelling *spelling; /* Next stack element (unused). */
4573 static struct spelling *spelling_base; /* Spelling stack base. */
4574 static int spelling_size; /* Size of the spelling stack. */
4576 /* Macros to save and restore the spelling stack around push_... functions.
4577 Alternative to SAVE_SPELLING_STACK. */
4579 #define SPELLING_DEPTH() (spelling - spelling_base)
4580 #define RESTORE_SPELLING_DEPTH(depth) (spelling = spelling_base + depth)
4582 /* Save and restore the spelling stack around arbitrary C code. */
4584 #define SAVE_SPELLING_DEPTH(code) \
4586 int __depth = SPELLING_DEPTH (); \
4587 code; \
4588 RESTORE_SPELLING_DEPTH (__depth); \
4591 /* Push an element on the spelling stack with type KIND and assign VALUE
4592 to MEMBER. */
4594 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
4596 int depth = SPELLING_DEPTH (); \
4598 if (depth >= spelling_size) \
4600 spelling_size += 10; \
4601 if (spelling_base == 0) \
4602 spelling_base \
4603 = (struct spelling *) xmalloc (spelling_size * sizeof (struct spelling)); \
4604 else \
4605 spelling_base \
4606 = (struct spelling *) xrealloc (spelling_base, \
4607 spelling_size * sizeof (struct spelling)); \
4608 RESTORE_SPELLING_DEPTH (depth); \
4611 spelling->kind = (KIND); \
4612 spelling->MEMBER = (VALUE); \
4613 spelling++; \
4616 /* Push STRING on the stack. Printed literally. */
4618 static void
4619 push_string (string)
4620 char *string;
4622 PUSH_SPELLING (SPELLING_STRING, string, u.s);
4625 /* Push a member name on the stack. Printed as '.' STRING. */
4627 static void
4628 push_member_name (decl)
4629 tree decl;
4632 char *string
4633 = DECL_NAME (decl) ? IDENTIFIER_POINTER (DECL_NAME (decl)) : "<anonymous>";
4634 PUSH_SPELLING (SPELLING_MEMBER, string, u.s);
4637 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
4639 static void
4640 push_array_bounds (bounds)
4641 int bounds;
4643 PUSH_SPELLING (SPELLING_BOUNDS, bounds, u.i);
4646 /* Compute the maximum size in bytes of the printed spelling. */
4648 static int
4649 spelling_length ()
4651 register int size = 0;
4652 register struct spelling *p;
4654 for (p = spelling_base; p < spelling; p++)
4656 if (p->kind == SPELLING_BOUNDS)
4657 size += 25;
4658 else
4659 size += strlen (p->u.s) + 1;
4662 return size;
4665 /* Print the spelling to BUFFER and return it. */
4667 static char *
4668 print_spelling (buffer)
4669 register char *buffer;
4671 register char *d = buffer;
4672 register char *s;
4673 register struct spelling *p;
4675 for (p = spelling_base; p < spelling; p++)
4676 if (p->kind == SPELLING_BOUNDS)
4678 sprintf (d, "[%d]", p->u.i);
4679 d += strlen (d);
4681 else
4683 if (p->kind == SPELLING_MEMBER)
4684 *d++ = '.';
4685 for (s = p->u.s; *d = *s++; d++)
4688 *d++ = '\0';
4689 return buffer;
4692 /* Issue an error message for a bad initializer component.
4693 MSGID identifies the message.
4694 The component name is taken from the spelling stack. */
4696 void
4697 error_init (msgid)
4698 char *msgid;
4700 char *ofwhat;
4702 error (msgid);
4703 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4704 if (*ofwhat)
4705 error ("(near initialization for `%s')", ofwhat);
4708 /* Issue a pedantic warning for a bad initializer component.
4709 MSGID identifies the message.
4710 The component name is taken from the spelling stack. */
4712 void
4713 pedwarn_init (msgid)
4714 char *msgid;
4716 char *ofwhat;
4718 pedwarn (msgid);
4719 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4720 if (*ofwhat)
4721 pedwarn ("(near initialization for `%s')", ofwhat);
4724 /* Issue a warning for a bad initializer component.
4725 MSGID identifies the message.
4726 The component name is taken from the spelling stack. */
4728 static void
4729 warning_init (msgid)
4730 char *msgid;
4732 char *ofwhat;
4734 warning (msgid);
4735 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4736 if (*ofwhat)
4737 warning ("(near initialization for `%s')", ofwhat);
4740 /* Digest the parser output INIT as an initializer for type TYPE.
4741 Return a C expression of type TYPE to represent the initial value.
4743 The arguments REQUIRE_CONSTANT and CONSTRUCTOR_CONSTANT request errors
4744 if non-constant initializers or elements are seen. CONSTRUCTOR_CONSTANT
4745 applies only to elements of constructors. */
4747 static tree
4748 digest_init (type, init, require_constant, constructor_constant)
4749 tree type, init;
4750 int require_constant, constructor_constant;
4752 enum tree_code code = TREE_CODE (type);
4753 tree inside_init = init;
4755 if (init == error_mark_node)
4756 return init;
4758 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4759 /* Do not use STRIP_NOPS here. We do not want an enumerator
4760 whose value is 0 to count as a null pointer constant. */
4761 if (TREE_CODE (init) == NON_LVALUE_EXPR)
4762 inside_init = TREE_OPERAND (init, 0);
4764 /* Initialization of an array of chars from a string constant
4765 optionally enclosed in braces. */
4767 if (code == ARRAY_TYPE)
4769 tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
4770 if ((typ1 == char_type_node
4771 || typ1 == signed_char_type_node
4772 || typ1 == unsigned_char_type_node
4773 || typ1 == unsigned_wchar_type_node
4774 || typ1 == signed_wchar_type_node)
4775 && ((inside_init && TREE_CODE (inside_init) == STRING_CST)))
4777 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
4778 TYPE_MAIN_VARIANT (type)))
4779 return inside_init;
4781 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)))
4782 != char_type_node)
4783 && TYPE_PRECISION (typ1) == TYPE_PRECISION (char_type_node))
4785 error_init ("char-array initialized from wide string");
4786 return error_mark_node;
4788 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)))
4789 == char_type_node)
4790 && TYPE_PRECISION (typ1) != TYPE_PRECISION (char_type_node))
4792 error_init ("int-array initialized from non-wide string");
4793 return error_mark_node;
4796 TREE_TYPE (inside_init) = type;
4797 if (TYPE_DOMAIN (type) != 0
4798 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
4800 register int size = TREE_INT_CST_LOW (TYPE_SIZE (type));
4801 size = (size + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
4802 /* Subtract 1 (or sizeof (wchar_t))
4803 because it's ok to ignore the terminating null char
4804 that is counted in the length of the constant. */
4805 if (size < TREE_STRING_LENGTH (inside_init)
4806 - (TYPE_PRECISION (typ1) != TYPE_PRECISION (char_type_node)
4807 ? TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT
4808 : 1))
4809 pedwarn_init ("initializer-string for array of chars is too long");
4811 return inside_init;
4815 /* Any type can be initialized
4816 from an expression of the same type, optionally with braces. */
4818 if (inside_init && TREE_TYPE (inside_init) != 0
4819 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
4820 TYPE_MAIN_VARIANT (type))
4821 || (code == ARRAY_TYPE
4822 && comptypes (TREE_TYPE (inside_init), type))
4823 || (code == POINTER_TYPE
4824 && (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
4825 || TREE_CODE (TREE_TYPE (inside_init)) == FUNCTION_TYPE)
4826 && comptypes (TREE_TYPE (TREE_TYPE (inside_init)),
4827 TREE_TYPE (type)))))
4829 if (code == POINTER_TYPE
4830 && (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
4831 || TREE_CODE (TREE_TYPE (inside_init)) == FUNCTION_TYPE))
4832 inside_init = default_conversion (inside_init);
4833 else if (code == ARRAY_TYPE && TREE_CODE (inside_init) != STRING_CST
4834 && TREE_CODE (inside_init) != CONSTRUCTOR)
4836 error_init ("array initialized from non-constant array expression");
4837 return error_mark_node;
4840 if (optimize && TREE_CODE (inside_init) == VAR_DECL)
4841 inside_init = decl_constant_value (inside_init);
4843 /* Compound expressions can only occur here if -pedantic or
4844 -pedantic-errors is specified. In the later case, we always want
4845 an error. In the former case, we simply want a warning. */
4846 if (require_constant && pedantic
4847 && TREE_CODE (inside_init) == COMPOUND_EXPR)
4849 inside_init
4850 = valid_compound_expr_initializer (inside_init,
4851 TREE_TYPE (inside_init));
4852 if (inside_init == error_mark_node)
4853 error_init ("initializer element is not constant");
4854 else
4855 pedwarn_init ("initializer element is not constant");
4856 if (flag_pedantic_errors)
4857 inside_init = error_mark_node;
4859 else if (require_constant && ! TREE_CONSTANT (inside_init))
4861 error_init ("initializer element is not constant");
4862 inside_init = error_mark_node;
4864 else if (require_constant
4865 && initializer_constant_valid_p (inside_init, TREE_TYPE (inside_init)) == 0)
4867 error_init ("initializer element is not computable at load time");
4868 inside_init = error_mark_node;
4871 return inside_init;
4874 /* Handle scalar types, including conversions. */
4876 if (code == INTEGER_TYPE || code == REAL_TYPE || code == POINTER_TYPE
4877 || code == ENUMERAL_TYPE || code == COMPLEX_TYPE)
4879 /* Note that convert_for_assignment calls default_conversion
4880 for arrays and functions. We must not call it in the
4881 case where inside_init is a null pointer constant. */
4882 inside_init
4883 = convert_for_assignment (type, init, _("initialization"),
4884 NULL_TREE, NULL_TREE, 0);
4886 if (require_constant && ! TREE_CONSTANT (inside_init))
4888 error_init ("initializer element is not constant");
4889 inside_init = error_mark_node;
4891 else if (require_constant
4892 && initializer_constant_valid_p (inside_init, TREE_TYPE (inside_init)) == 0)
4894 error_init ("initializer element is not computable at load time");
4895 inside_init = error_mark_node;
4898 return inside_init;
4901 /* Come here only for records and arrays. */
4903 if (TYPE_SIZE (type) && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4905 error_init ("variable-sized object may not be initialized");
4906 return error_mark_node;
4909 /* Traditionally, you can write struct foo x = 0;
4910 and it initializes the first element of x to 0. */
4911 if (flag_traditional)
4913 tree top = 0, prev = 0, otype = type;
4914 while (TREE_CODE (type) == RECORD_TYPE
4915 || TREE_CODE (type) == ARRAY_TYPE
4916 || TREE_CODE (type) == QUAL_UNION_TYPE
4917 || TREE_CODE (type) == UNION_TYPE)
4919 tree temp = build (CONSTRUCTOR, type, NULL_TREE, NULL_TREE);
4920 if (prev == 0)
4921 top = temp;
4922 else
4923 TREE_OPERAND (prev, 1) = build_tree_list (NULL_TREE, temp);
4924 prev = temp;
4925 if (TREE_CODE (type) == ARRAY_TYPE)
4926 type = TREE_TYPE (type);
4927 else if (TYPE_FIELDS (type))
4928 type = TREE_TYPE (TYPE_FIELDS (type));
4929 else
4931 error_init ("invalid initializer");
4932 return error_mark_node;
4936 if (otype != type)
4938 TREE_OPERAND (prev, 1)
4939 = build_tree_list (NULL_TREE,
4940 digest_init (type, init, require_constant,
4941 constructor_constant));
4942 return top;
4944 else
4945 return error_mark_node;
4947 error_init ("invalid initializer");
4948 return error_mark_node;
4951 /* Handle initializers that use braces. */
4953 /* Type of object we are accumulating a constructor for.
4954 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
4955 static tree constructor_type;
4957 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
4958 left to fill. */
4959 static tree constructor_fields;
4961 /* For an ARRAY_TYPE, this is the specified index
4962 at which to store the next element we get.
4963 This is a special INTEGER_CST node that we modify in place. */
4964 static tree constructor_index;
4966 /* For an ARRAY_TYPE, this is the end index of the range
4967 to initialize with the next element, or NULL in the ordinary case
4968 where the element is used just once. */
4969 static tree constructor_range_end;
4971 /* For an ARRAY_TYPE, this is the maximum index. */
4972 static tree constructor_max_index;
4974 /* For a RECORD_TYPE, this is the first field not yet written out. */
4975 static tree constructor_unfilled_fields;
4977 /* For an ARRAY_TYPE, this is the index of the first element
4978 not yet written out.
4979 This is a special INTEGER_CST node that we modify in place. */
4980 static tree constructor_unfilled_index;
4982 /* In a RECORD_TYPE, the byte index of the next consecutive field.
4983 This is so we can generate gaps between fields, when appropriate.
4984 This is a special INTEGER_CST node that we modify in place. */
4985 static tree constructor_bit_index;
4987 /* If we are saving up the elements rather than allocating them,
4988 this is the list of elements so far (in reverse order,
4989 most recent first). */
4990 static tree constructor_elements;
4992 /* 1 if so far this constructor's elements are all compile-time constants. */
4993 static int constructor_constant;
4995 /* 1 if so far this constructor's elements are all valid address constants. */
4996 static int constructor_simple;
4998 /* 1 if this constructor is erroneous so far. */
4999 static int constructor_erroneous;
5001 /* 1 if have called defer_addressed_constants. */
5002 static int constructor_subconstants_deferred;
5004 /* Structure for managing pending initializer elements, organized as an
5005 AVL tree. */
5007 struct init_node
5009 struct init_node *left, *right;
5010 struct init_node *parent;
5011 int balance;
5012 tree purpose;
5013 tree value;
5016 /* Tree of pending elements at this constructor level.
5017 These are elements encountered out of order
5018 which belong at places we haven't reached yet in actually
5019 writing the output. */
5020 static struct init_node *constructor_pending_elts;
5022 /* The SPELLING_DEPTH of this constructor. */
5023 static int constructor_depth;
5025 /* 0 if implicitly pushing constructor levels is allowed. */
5026 int constructor_no_implicit = 0; /* 0 for C; 1 for some other languages. */
5028 /* 1 if this constructor level was entered implicitly. */
5029 static int constructor_implicit;
5031 static int require_constant_value;
5032 static int require_constant_elements;
5034 /* 1 if it is ok to output this constructor as we read it.
5035 0 means must accumulate a CONSTRUCTOR expression. */
5036 static int constructor_incremental;
5038 /* DECL node for which an initializer is being read.
5039 0 means we are reading a constructor expression
5040 such as (struct foo) {...}. */
5041 static tree constructor_decl;
5043 /* start_init saves the ASMSPEC arg here for really_start_incremental_init. */
5044 static char *constructor_asmspec;
5046 /* Nonzero if this is an initializer for a top-level decl. */
5047 static int constructor_top_level;
5049 /* When we finish reading a constructor expression
5050 (constructor_decl is 0), the CONSTRUCTOR goes here. */
5051 static tree constructor_result;
5053 /* This stack has a level for each implicit or explicit level of
5054 structuring in the initializer, including the outermost one. It
5055 saves the values of most of the variables above. */
5057 struct constructor_stack
5059 struct constructor_stack *next;
5060 tree type;
5061 tree fields;
5062 tree index;
5063 tree range_end;
5064 tree max_index;
5065 tree unfilled_index;
5066 tree unfilled_fields;
5067 tree bit_index;
5068 tree elements;
5069 int offset;
5070 struct init_node *pending_elts;
5071 int depth;
5072 /* If nonzero, this value should replace the entire
5073 constructor at this level. */
5074 tree replacement_value;
5075 char constant;
5076 char simple;
5077 char implicit;
5078 char incremental;
5079 char erroneous;
5080 char outer;
5083 struct constructor_stack *constructor_stack;
5085 /* This stack records separate initializers that are nested.
5086 Nested initializers can't happen in ANSI C, but GNU C allows them
5087 in cases like { ... (struct foo) { ... } ... }. */
5089 struct initializer_stack
5091 struct initializer_stack *next;
5092 tree decl;
5093 char *asmspec;
5094 struct constructor_stack *constructor_stack;
5095 tree elements;
5096 struct spelling *spelling;
5097 struct spelling *spelling_base;
5098 int spelling_size;
5099 char top_level;
5100 char incremental;
5101 char require_constant_value;
5102 char require_constant_elements;
5103 char deferred;
5106 struct initializer_stack *initializer_stack;
5108 /* Prepare to parse and output the initializer for variable DECL. */
5110 void
5111 start_init (decl, asmspec_tree, top_level)
5112 tree decl;
5113 tree asmspec_tree;
5114 int top_level;
5116 char *locus;
5117 struct initializer_stack *p
5118 = (struct initializer_stack *) xmalloc (sizeof (struct initializer_stack));
5119 char *asmspec = 0;
5121 if (asmspec_tree)
5122 asmspec = TREE_STRING_POINTER (asmspec_tree);
5124 p->decl = constructor_decl;
5125 p->asmspec = constructor_asmspec;
5126 p->incremental = constructor_incremental;
5127 p->require_constant_value = require_constant_value;
5128 p->require_constant_elements = require_constant_elements;
5129 p->constructor_stack = constructor_stack;
5130 p->elements = constructor_elements;
5131 p->spelling = spelling;
5132 p->spelling_base = spelling_base;
5133 p->spelling_size = spelling_size;
5134 p->deferred = constructor_subconstants_deferred;
5135 p->top_level = constructor_top_level;
5136 p->next = initializer_stack;
5137 initializer_stack = p;
5139 constructor_decl = decl;
5140 constructor_incremental = top_level;
5141 constructor_asmspec = asmspec;
5142 constructor_subconstants_deferred = 0;
5143 constructor_top_level = top_level;
5145 if (decl != 0)
5147 require_constant_value = TREE_STATIC (decl);
5148 require_constant_elements
5149 = ((TREE_STATIC (decl) || pedantic)
5150 /* For a scalar, you can always use any value to initialize,
5151 even within braces. */
5152 && (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
5153 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
5154 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
5155 || TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE));
5156 locus = IDENTIFIER_POINTER (DECL_NAME (decl));
5157 constructor_incremental |= TREE_STATIC (decl);
5159 else
5161 require_constant_value = 0;
5162 require_constant_elements = 0;
5163 locus = "(anonymous)";
5166 constructor_stack = 0;
5168 missing_braces_mentioned = 0;
5170 spelling_base = 0;
5171 spelling_size = 0;
5172 RESTORE_SPELLING_DEPTH (0);
5174 if (locus)
5175 push_string (locus);
5178 void
5179 finish_init ()
5181 struct initializer_stack *p = initializer_stack;
5183 /* Output subconstants (string constants, usually)
5184 that were referenced within this initializer and saved up.
5185 Must do this if and only if we called defer_addressed_constants. */
5186 if (constructor_subconstants_deferred)
5187 output_deferred_addressed_constants ();
5189 /* Free the whole constructor stack of this initializer. */
5190 while (constructor_stack)
5192 struct constructor_stack *q = constructor_stack;
5193 constructor_stack = q->next;
5194 free (q);
5197 /* Pop back to the data of the outer initializer (if any). */
5198 constructor_decl = p->decl;
5199 constructor_asmspec = p->asmspec;
5200 constructor_incremental = p->incremental;
5201 require_constant_value = p->require_constant_value;
5202 require_constant_elements = p->require_constant_elements;
5203 constructor_stack = p->constructor_stack;
5204 constructor_elements = p->elements;
5205 spelling = p->spelling;
5206 spelling_base = p->spelling_base;
5207 spelling_size = p->spelling_size;
5208 constructor_subconstants_deferred = p->deferred;
5209 constructor_top_level = p->top_level;
5210 initializer_stack = p->next;
5211 free (p);
5214 /* Call here when we see the initializer is surrounded by braces.
5215 This is instead of a call to push_init_level;
5216 it is matched by a call to pop_init_level.
5218 TYPE is the type to initialize, for a constructor expression.
5219 For an initializer for a decl, TYPE is zero. */
5221 void
5222 really_start_incremental_init (type)
5223 tree type;
5225 struct constructor_stack *p
5226 = (struct constructor_stack *) xmalloc (sizeof (struct constructor_stack));
5228 if (type == 0)
5229 type = TREE_TYPE (constructor_decl);
5231 /* Turn off constructor_incremental if type is a struct with bitfields.
5232 Do this before the first push, so that the corrected value
5233 is available in finish_init. */
5234 check_init_type_bitfields (type);
5236 p->type = constructor_type;
5237 p->fields = constructor_fields;
5238 p->index = constructor_index;
5239 p->range_end = constructor_range_end;
5240 p->max_index = constructor_max_index;
5241 p->unfilled_index = constructor_unfilled_index;
5242 p->unfilled_fields = constructor_unfilled_fields;
5243 p->bit_index = constructor_bit_index;
5244 p->elements = constructor_elements;
5245 p->constant = constructor_constant;
5246 p->simple = constructor_simple;
5247 p->erroneous = constructor_erroneous;
5248 p->pending_elts = constructor_pending_elts;
5249 p->depth = constructor_depth;
5250 p->replacement_value = 0;
5251 p->implicit = 0;
5252 p->incremental = constructor_incremental;
5253 p->outer = 0;
5254 p->next = 0;
5255 constructor_stack = p;
5257 constructor_constant = 1;
5258 constructor_simple = 1;
5259 constructor_depth = SPELLING_DEPTH ();
5260 constructor_elements = 0;
5261 constructor_pending_elts = 0;
5262 constructor_type = type;
5264 if (TREE_CODE (constructor_type) == RECORD_TYPE
5265 || TREE_CODE (constructor_type) == UNION_TYPE)
5267 constructor_fields = TYPE_FIELDS (constructor_type);
5268 /* Skip any nameless bit fields at the beginning. */
5269 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
5270 && DECL_NAME (constructor_fields) == 0)
5271 constructor_fields = TREE_CHAIN (constructor_fields);
5272 constructor_unfilled_fields = constructor_fields;
5273 constructor_bit_index = copy_node (integer_zero_node);
5275 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5277 constructor_range_end = 0;
5278 if (TYPE_DOMAIN (constructor_type))
5280 constructor_max_index
5281 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
5282 constructor_index
5283 = copy_node (TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5285 else
5286 constructor_index = copy_node (integer_zero_node);
5287 constructor_unfilled_index = copy_node (constructor_index);
5289 else
5291 /* Handle the case of int x = {5}; */
5292 constructor_fields = constructor_type;
5293 constructor_unfilled_fields = constructor_type;
5296 if (constructor_incremental)
5298 int momentary = suspend_momentary ();
5299 push_obstacks_nochange ();
5300 if (TREE_PERMANENT (constructor_decl))
5301 end_temporary_allocation ();
5302 make_decl_rtl (constructor_decl, constructor_asmspec,
5303 constructor_top_level);
5304 assemble_variable (constructor_decl, constructor_top_level, 0, 1);
5305 pop_obstacks ();
5306 resume_momentary (momentary);
5309 if (constructor_incremental)
5311 defer_addressed_constants ();
5312 constructor_subconstants_deferred = 1;
5316 /* Push down into a subobject, for initialization.
5317 If this is for an explicit set of braces, IMPLICIT is 0.
5318 If it is because the next element belongs at a lower level,
5319 IMPLICIT is 1. */
5321 void
5322 push_init_level (implicit)
5323 int implicit;
5325 struct constructor_stack *p;
5327 /* If we've exhausted any levels that didn't have braces,
5328 pop them now. */
5329 while (constructor_stack->implicit)
5331 if ((TREE_CODE (constructor_type) == RECORD_TYPE
5332 || TREE_CODE (constructor_type) == UNION_TYPE)
5333 && constructor_fields == 0)
5334 process_init_element (pop_init_level (1));
5335 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
5336 && tree_int_cst_lt (constructor_max_index, constructor_index))
5337 process_init_element (pop_init_level (1));
5338 else
5339 break;
5342 /* Structure elements may require alignment. Do this now if necessary
5343 for the subaggregate, and if it comes next in sequence. Don't do
5344 this for subaggregates that will go on the pending list. */
5345 if (constructor_incremental && constructor_type != 0
5346 && TREE_CODE (constructor_type) == RECORD_TYPE && constructor_fields
5347 && constructor_fields == constructor_unfilled_fields)
5349 /* Advance to offset of this element. */
5350 if (! tree_int_cst_equal (constructor_bit_index,
5351 DECL_FIELD_BITPOS (constructor_fields)))
5353 int next = (TREE_INT_CST_LOW
5354 (DECL_FIELD_BITPOS (constructor_fields))
5355 / BITS_PER_UNIT);
5356 int here = (TREE_INT_CST_LOW (constructor_bit_index)
5357 / BITS_PER_UNIT);
5359 assemble_zeros (next - here);
5361 /* Indicate that we have now filled the structure up to the current
5362 field. */
5363 constructor_unfilled_fields = constructor_fields;
5366 p = (struct constructor_stack *) xmalloc (sizeof (struct constructor_stack));
5367 p->type = constructor_type;
5368 p->fields = constructor_fields;
5369 p->index = constructor_index;
5370 p->range_end = constructor_range_end;
5371 p->max_index = constructor_max_index;
5372 p->unfilled_index = constructor_unfilled_index;
5373 p->unfilled_fields = constructor_unfilled_fields;
5374 p->bit_index = constructor_bit_index;
5375 p->elements = constructor_elements;
5376 p->constant = constructor_constant;
5377 p->simple = constructor_simple;
5378 p->erroneous = constructor_erroneous;
5379 p->pending_elts = constructor_pending_elts;
5380 p->depth = constructor_depth;
5381 p->replacement_value = 0;
5382 p->implicit = implicit;
5383 p->incremental = constructor_incremental;
5384 p->outer = 0;
5385 p->next = constructor_stack;
5386 constructor_stack = p;
5388 constructor_constant = 1;
5389 constructor_simple = 1;
5390 constructor_depth = SPELLING_DEPTH ();
5391 constructor_elements = 0;
5392 constructor_pending_elts = 0;
5394 /* Don't die if an entire brace-pair level is superfluous
5395 in the containing level. */
5396 if (constructor_type == 0)
5398 else if (TREE_CODE (constructor_type) == RECORD_TYPE
5399 || TREE_CODE (constructor_type) == UNION_TYPE)
5401 /* Don't die if there are extra init elts at the end. */
5402 if (constructor_fields == 0)
5403 constructor_type = 0;
5404 else
5406 constructor_type = TREE_TYPE (constructor_fields);
5407 push_member_name (constructor_fields);
5408 constructor_depth++;
5409 if (constructor_fields != constructor_unfilled_fields)
5410 constructor_incremental = 0;
5413 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5415 constructor_type = TREE_TYPE (constructor_type);
5416 push_array_bounds (TREE_INT_CST_LOW (constructor_index));
5417 constructor_depth++;
5418 if (! tree_int_cst_equal (constructor_index, constructor_unfilled_index)
5419 || constructor_range_end != 0)
5420 constructor_incremental = 0;
5423 if (constructor_type == 0)
5425 error_init ("extra brace group at end of initializer");
5426 constructor_fields = 0;
5427 constructor_unfilled_fields = 0;
5428 return;
5431 /* Turn off constructor_incremental if type is a struct with bitfields. */
5432 check_init_type_bitfields (constructor_type);
5434 if (implicit && warn_missing_braces && !missing_braces_mentioned)
5436 missing_braces_mentioned = 1;
5437 warning_init ("missing braces around initializer");
5440 if (TREE_CODE (constructor_type) == RECORD_TYPE
5441 || TREE_CODE (constructor_type) == UNION_TYPE)
5443 constructor_fields = TYPE_FIELDS (constructor_type);
5444 /* Skip any nameless bit fields at the beginning. */
5445 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
5446 && DECL_NAME (constructor_fields) == 0)
5447 constructor_fields = TREE_CHAIN (constructor_fields);
5448 constructor_unfilled_fields = constructor_fields;
5449 constructor_bit_index = copy_node (integer_zero_node);
5451 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5453 constructor_range_end = 0;
5454 if (TYPE_DOMAIN (constructor_type))
5456 constructor_max_index
5457 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
5458 constructor_index
5459 = copy_node (TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5461 else
5462 constructor_index = copy_node (integer_zero_node);
5463 constructor_unfilled_index = copy_node (constructor_index);
5465 else
5467 warning_init ("braces around scalar initializer");
5468 constructor_fields = constructor_type;
5469 constructor_unfilled_fields = constructor_type;
5473 /* Don't read a struct incrementally if it has any bitfields,
5474 because the incremental reading code doesn't know how to
5475 handle bitfields yet. */
5477 static void
5478 check_init_type_bitfields (type)
5479 tree type;
5481 if (TREE_CODE (type) == RECORD_TYPE)
5483 tree tail;
5484 for (tail = TYPE_FIELDS (type); tail;
5485 tail = TREE_CHAIN (tail))
5487 if (DECL_C_BIT_FIELD (tail)
5488 /* This catches cases like `int foo : 8;'. */
5489 || DECL_MODE (tail) != TYPE_MODE (TREE_TYPE (tail)))
5491 constructor_incremental = 0;
5492 break;
5495 check_init_type_bitfields (TREE_TYPE (tail));
5499 else if (TREE_CODE (type) == ARRAY_TYPE)
5500 check_init_type_bitfields (TREE_TYPE (type));
5503 /* At the end of an implicit or explicit brace level,
5504 finish up that level of constructor.
5505 If we were outputting the elements as they are read, return 0
5506 from inner levels (process_init_element ignores that),
5507 but return error_mark_node from the outermost level
5508 (that's what we want to put in DECL_INITIAL).
5509 Otherwise, return a CONSTRUCTOR expression. */
5511 tree
5512 pop_init_level (implicit)
5513 int implicit;
5515 struct constructor_stack *p;
5516 int size = 0;
5517 tree constructor = 0;
5519 if (implicit == 0)
5521 /* When we come to an explicit close brace,
5522 pop any inner levels that didn't have explicit braces. */
5523 while (constructor_stack->implicit)
5524 process_init_element (pop_init_level (1));
5527 p = constructor_stack;
5529 if (constructor_type != 0)
5530 size = int_size_in_bytes (constructor_type);
5532 /* Now output all pending elements. */
5533 output_pending_init_elements (1);
5535 #if 0 /* c-parse.in warns about {}. */
5536 /* In ANSI, each brace level must have at least one element. */
5537 if (! implicit && pedantic
5538 && (TREE_CODE (constructor_type) == ARRAY_TYPE
5539 ? integer_zerop (constructor_unfilled_index)
5540 : constructor_unfilled_fields == TYPE_FIELDS (constructor_type)))
5541 pedwarn_init ("empty braces in initializer");
5542 #endif
5544 /* Pad out the end of the structure. */
5546 if (p->replacement_value)
5548 /* If this closes a superfluous brace pair,
5549 just pass out the element between them. */
5550 constructor = p->replacement_value;
5551 /* If this is the top level thing within the initializer,
5552 and it's for a variable, then since we already called
5553 assemble_variable, we must output the value now. */
5554 if (p->next == 0 && constructor_decl != 0
5555 && constructor_incremental)
5557 constructor = digest_init (constructor_type, constructor,
5558 require_constant_value,
5559 require_constant_elements);
5561 /* If initializing an array of unknown size,
5562 determine the size now. */
5563 if (TREE_CODE (constructor_type) == ARRAY_TYPE
5564 && TYPE_DOMAIN (constructor_type) == 0)
5566 int failure;
5567 int momentary_p;
5569 push_obstacks_nochange ();
5570 if (TREE_PERMANENT (constructor_type))
5571 end_temporary_allocation ();
5573 momentary_p = suspend_momentary ();
5575 /* We shouldn't have an incomplete array type within
5576 some other type. */
5577 if (constructor_stack->next)
5578 abort ();
5580 failure
5581 = complete_array_type (constructor_type,
5582 constructor, 0);
5583 if (failure)
5584 abort ();
5586 size = int_size_in_bytes (constructor_type);
5587 resume_momentary (momentary_p);
5588 pop_obstacks ();
5591 output_constant (constructor, size);
5594 else if (constructor_type == 0)
5596 else if (TREE_CODE (constructor_type) != RECORD_TYPE
5597 && TREE_CODE (constructor_type) != UNION_TYPE
5598 && TREE_CODE (constructor_type) != ARRAY_TYPE
5599 && ! constructor_incremental)
5601 /* A nonincremental scalar initializer--just return
5602 the element, after verifying there is just one. */
5603 if (constructor_elements == 0)
5605 error_init ("empty scalar initializer");
5606 constructor = error_mark_node;
5608 else if (TREE_CHAIN (constructor_elements) != 0)
5610 error_init ("extra elements in scalar initializer");
5611 constructor = TREE_VALUE (constructor_elements);
5613 else
5614 constructor = TREE_VALUE (constructor_elements);
5616 else if (! constructor_incremental)
5618 if (constructor_erroneous)
5619 constructor = error_mark_node;
5620 else
5622 int momentary = suspend_momentary ();
5624 constructor = build (CONSTRUCTOR, constructor_type, NULL_TREE,
5625 nreverse (constructor_elements));
5626 if (constructor_constant)
5627 TREE_CONSTANT (constructor) = 1;
5628 if (constructor_constant && constructor_simple)
5629 TREE_STATIC (constructor) = 1;
5631 resume_momentary (momentary);
5634 else
5636 tree filled;
5637 int momentary = suspend_momentary ();
5639 if (TREE_CODE (constructor_type) == RECORD_TYPE
5640 || TREE_CODE (constructor_type) == UNION_TYPE)
5642 /* Find the offset of the end of that field. */
5643 filled = size_binop (CEIL_DIV_EXPR,
5644 constructor_bit_index,
5645 size_int (BITS_PER_UNIT));
5647 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5649 /* If initializing an array of unknown size,
5650 determine the size now. */
5651 if (TREE_CODE (constructor_type) == ARRAY_TYPE
5652 && TYPE_DOMAIN (constructor_type) == 0)
5654 tree maxindex
5655 = size_binop (MINUS_EXPR,
5656 constructor_unfilled_index,
5657 integer_one_node);
5659 push_obstacks_nochange ();
5660 if (TREE_PERMANENT (constructor_type))
5661 end_temporary_allocation ();
5662 maxindex = copy_node (maxindex);
5663 TYPE_DOMAIN (constructor_type) = build_index_type (maxindex);
5664 TREE_TYPE (maxindex) = TYPE_DOMAIN (constructor_type);
5666 /* TYPE_MAX_VALUE is always one less than the number of elements
5667 in the array, because we start counting at zero. Therefore,
5668 warn only if the value is less than zero. */
5669 if (pedantic
5670 && (tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type)))
5671 < 0))
5672 error_with_decl (constructor_decl,
5673 "zero or negative array size `%s'");
5674 layout_type (constructor_type);
5675 size = int_size_in_bytes (constructor_type);
5676 pop_obstacks ();
5679 filled = size_binop (MULT_EXPR, constructor_unfilled_index,
5680 size_in_bytes (TREE_TYPE (constructor_type)));
5682 else
5683 filled = 0;
5685 if (filled != 0)
5686 assemble_zeros (size - TREE_INT_CST_LOW (filled));
5688 resume_momentary (momentary);
5692 constructor_type = p->type;
5693 constructor_fields = p->fields;
5694 constructor_index = p->index;
5695 constructor_range_end = p->range_end;
5696 constructor_max_index = p->max_index;
5697 constructor_unfilled_index = p->unfilled_index;
5698 constructor_unfilled_fields = p->unfilled_fields;
5699 constructor_bit_index = p->bit_index;
5700 constructor_elements = p->elements;
5701 constructor_constant = p->constant;
5702 constructor_simple = p->simple;
5703 constructor_erroneous = p->erroneous;
5704 constructor_pending_elts = p->pending_elts;
5705 constructor_depth = p->depth;
5706 constructor_incremental = p->incremental;
5707 RESTORE_SPELLING_DEPTH (constructor_depth);
5709 constructor_stack = p->next;
5710 free (p);
5712 if (constructor == 0)
5714 if (constructor_stack == 0)
5715 return error_mark_node;
5716 return NULL_TREE;
5718 return constructor;
5721 /* Within an array initializer, specify the next index to be initialized.
5722 FIRST is that index. If LAST is nonzero, then initialize a range
5723 of indices, running from FIRST through LAST. */
5725 void
5726 set_init_index (first, last)
5727 tree first, last;
5729 while ((TREE_CODE (first) == NOP_EXPR
5730 || TREE_CODE (first) == CONVERT_EXPR
5731 || TREE_CODE (first) == NON_LVALUE_EXPR)
5732 && (TYPE_MODE (TREE_TYPE (first))
5733 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (first, 0)))))
5734 (first) = TREE_OPERAND (first, 0);
5735 if (last)
5736 while ((TREE_CODE (last) == NOP_EXPR
5737 || TREE_CODE (last) == CONVERT_EXPR
5738 || TREE_CODE (last) == NON_LVALUE_EXPR)
5739 && (TYPE_MODE (TREE_TYPE (last))
5740 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (last, 0)))))
5741 (last) = TREE_OPERAND (last, 0);
5743 if (TREE_CODE (first) != INTEGER_CST)
5744 error_init ("nonconstant array index in initializer");
5745 else if (last != 0 && TREE_CODE (last) != INTEGER_CST)
5746 error_init ("nonconstant array index in initializer");
5747 else if (! constructor_unfilled_index)
5748 error_init ("array index in non-array initializer");
5749 else if (tree_int_cst_lt (first, constructor_unfilled_index))
5750 error_init ("duplicate array index in initializer");
5751 else
5753 TREE_INT_CST_LOW (constructor_index) = TREE_INT_CST_LOW (first);
5754 TREE_INT_CST_HIGH (constructor_index) = TREE_INT_CST_HIGH (first);
5756 if (last != 0 && tree_int_cst_lt (last, first))
5757 error_init ("empty index range in initializer");
5758 else
5760 if (pedantic)
5761 pedwarn ("ANSI C forbids specifying element to initialize");
5762 constructor_range_end = last;
5767 /* Within a struct initializer, specify the next field to be initialized. */
5769 void
5770 set_init_label (fieldname)
5771 tree fieldname;
5773 tree tail;
5774 int passed = 0;
5776 /* Don't die if an entire brace-pair level is superfluous
5777 in the containing level. */
5778 if (constructor_type == 0)
5779 return;
5781 for (tail = TYPE_FIELDS (constructor_type); tail;
5782 tail = TREE_CHAIN (tail))
5784 if (tail == constructor_unfilled_fields)
5785 passed = 1;
5786 if (DECL_NAME (tail) == fieldname)
5787 break;
5790 if (tail == 0)
5791 error ("unknown field `%s' specified in initializer",
5792 IDENTIFIER_POINTER (fieldname));
5793 else if (!passed)
5794 error ("field `%s' already initialized",
5795 IDENTIFIER_POINTER (fieldname));
5796 else
5798 constructor_fields = tail;
5799 if (pedantic)
5800 pedwarn ("ANSI C forbids specifying structure member to initialize");
5804 /* Add a new initializer to the tree of pending initializers. PURPOSE
5805 indentifies the initializer, either array index or field in a structure.
5806 VALUE is the value of that index or field. */
5808 static void
5809 add_pending_init (purpose, value)
5810 tree purpose, value;
5812 struct init_node *p, **q, *r;
5814 q = &constructor_pending_elts;
5815 p = 0;
5817 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5819 while (*q != 0)
5821 p = *q;
5822 if (tree_int_cst_lt (purpose, p->purpose))
5823 q = &p->left;
5824 else if (tree_int_cst_lt (p->purpose, purpose))
5825 q = &p->right;
5826 else
5827 abort ();
5830 else
5832 while (*q != NULL)
5834 p = *q;
5835 if (tree_int_cst_lt (DECL_FIELD_BITPOS (purpose),
5836 DECL_FIELD_BITPOS (p->purpose)))
5837 q = &p->left;
5838 else if (tree_int_cst_lt (DECL_FIELD_BITPOS (p->purpose),
5839 DECL_FIELD_BITPOS (purpose)))
5840 q = &p->right;
5841 else
5842 abort ();
5846 r = (struct init_node *) oballoc (sizeof (struct init_node));
5847 r->purpose = purpose;
5848 r->value = value;
5850 *q = r;
5851 r->parent = p;
5852 r->left = 0;
5853 r->right = 0;
5854 r->balance = 0;
5856 while (p)
5858 struct init_node *s;
5860 if (r == p->left)
5862 if (p->balance == 0)
5863 p->balance = -1;
5864 else if (p->balance < 0)
5866 if (r->balance < 0)
5868 /* L rotation. */
5869 p->left = r->right;
5870 if (p->left)
5871 p->left->parent = p;
5872 r->right = p;
5874 p->balance = 0;
5875 r->balance = 0;
5877 s = p->parent;
5878 p->parent = r;
5879 r->parent = s;
5880 if (s)
5882 if (s->left == p)
5883 s->left = r;
5884 else
5885 s->right = r;
5887 else
5888 constructor_pending_elts = r;
5890 else
5892 /* LR rotation. */
5893 struct init_node *t = r->right;
5895 r->right = t->left;
5896 if (r->right)
5897 r->right->parent = r;
5898 t->left = r;
5900 p->left = t->right;
5901 if (p->left)
5902 p->left->parent = p;
5903 t->right = p;
5905 p->balance = t->balance < 0;
5906 r->balance = -(t->balance > 0);
5907 t->balance = 0;
5909 s = p->parent;
5910 p->parent = t;
5911 r->parent = t;
5912 t->parent = s;
5913 if (s)
5915 if (s->left == p)
5916 s->left = t;
5917 else
5918 s->right = t;
5920 else
5921 constructor_pending_elts = t;
5923 break;
5925 else
5927 /* p->balance == +1; growth of left side balances the node. */
5928 p->balance = 0;
5929 break;
5932 else /* r == p->right */
5934 if (p->balance == 0)
5935 /* Growth propagation from right side. */
5936 p->balance++;
5937 else if (p->balance > 0)
5939 if (r->balance > 0)
5941 /* R rotation. */
5942 p->right = r->left;
5943 if (p->right)
5944 p->right->parent = p;
5945 r->left = p;
5947 p->balance = 0;
5948 r->balance = 0;
5950 s = p->parent;
5951 p->parent = r;
5952 r->parent = s;
5953 if (s)
5955 if (s->left == p)
5956 s->left = r;
5957 else
5958 s->right = r;
5960 else
5961 constructor_pending_elts = r;
5963 else /* r->balance == -1 */
5965 /* RL rotation */
5966 struct init_node *t = r->left;
5968 r->left = t->right;
5969 if (r->left)
5970 r->left->parent = r;
5971 t->right = r;
5973 p->right = t->left;
5974 if (p->right)
5975 p->right->parent = p;
5976 t->left = p;
5978 r->balance = (t->balance < 0);
5979 p->balance = -(t->balance > 0);
5980 t->balance = 0;
5982 s = p->parent;
5983 p->parent = t;
5984 r->parent = t;
5985 t->parent = s;
5986 if (s)
5988 if (s->left == p)
5989 s->left = t;
5990 else
5991 s->right = t;
5993 else
5994 constructor_pending_elts = t;
5996 break;
5998 else
6000 /* p->balance == -1; growth of right side balances the node. */
6001 p->balance = 0;
6002 break;
6006 r = p;
6007 p = p->parent;
6011 /* Return nonzero if FIELD is equal to the index of a pending initializer. */
6013 static int
6014 pending_init_member (field)
6015 tree field;
6017 struct init_node *p;
6019 p = constructor_pending_elts;
6020 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6022 while (p)
6024 if (tree_int_cst_equal (field, p->purpose))
6025 return 1;
6026 else if (tree_int_cst_lt (field, p->purpose))
6027 p = p->left;
6028 else
6029 p = p->right;
6032 else
6034 while (p)
6036 if (field == p->purpose)
6037 return 1;
6038 else if (tree_int_cst_lt (DECL_FIELD_BITPOS (field),
6039 DECL_FIELD_BITPOS (p->purpose)))
6040 p = p->left;
6041 else
6042 p = p->right;
6046 return 0;
6049 /* "Output" the next constructor element.
6050 At top level, really output it to assembler code now.
6051 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
6052 TYPE is the data type that the containing data type wants here.
6053 FIELD is the field (a FIELD_DECL) or the index that this element fills.
6055 PENDING if non-nil means output pending elements that belong
6056 right after this element. (PENDING is normally 1;
6057 it is 0 while outputting pending elements, to avoid recursion.) */
6059 static void
6060 output_init_element (value, type, field, pending)
6061 tree value, type, field;
6062 int pending;
6064 int duplicate = 0;
6066 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
6067 || (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
6068 && !(TREE_CODE (value) == STRING_CST
6069 && TREE_CODE (type) == ARRAY_TYPE
6070 && TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE)
6071 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value)),
6072 TYPE_MAIN_VARIANT (type))))
6073 value = default_conversion (value);
6075 if (value == error_mark_node)
6076 constructor_erroneous = 1;
6077 else if (!TREE_CONSTANT (value))
6078 constructor_constant = 0;
6079 else if (initializer_constant_valid_p (value, TREE_TYPE (value)) == 0
6080 || ((TREE_CODE (constructor_type) == RECORD_TYPE
6081 || TREE_CODE (constructor_type) == UNION_TYPE)
6082 && DECL_C_BIT_FIELD (field)
6083 && TREE_CODE (value) != INTEGER_CST))
6084 constructor_simple = 0;
6086 if (require_constant_value && ! TREE_CONSTANT (value))
6088 error_init ("initializer element is not constant");
6089 value = error_mark_node;
6091 else if (require_constant_elements
6092 && initializer_constant_valid_p (value, TREE_TYPE (value)) == 0)
6094 error_init ("initializer element is not computable at load time");
6095 value = error_mark_node;
6098 /* If this element duplicates one on constructor_pending_elts,
6099 print a message and ignore it. Don't do this when we're
6100 processing elements taken off constructor_pending_elts,
6101 because we'd always get spurious errors. */
6102 if (pending)
6104 if (TREE_CODE (constructor_type) == RECORD_TYPE
6105 || TREE_CODE (constructor_type) == UNION_TYPE
6106 || TREE_CODE (constructor_type) == ARRAY_TYPE)
6108 if (pending_init_member (field))
6110 error_init ("duplicate initializer");
6111 duplicate = 1;
6116 /* If this element doesn't come next in sequence,
6117 put it on constructor_pending_elts. */
6118 if (TREE_CODE (constructor_type) == ARRAY_TYPE
6119 && !tree_int_cst_equal (field, constructor_unfilled_index))
6121 if (! duplicate)
6122 /* The copy_node is needed in case field is actually
6123 constructor_index, which is modified in place. */
6124 add_pending_init (copy_node (field),
6125 digest_init (type, value, require_constant_value,
6126 require_constant_elements));
6128 else if (TREE_CODE (constructor_type) == RECORD_TYPE
6129 && field != constructor_unfilled_fields)
6131 /* We do this for records but not for unions. In a union,
6132 no matter which field is specified, it can be initialized
6133 right away since it starts at the beginning of the union. */
6134 if (!duplicate)
6135 add_pending_init (field,
6136 digest_init (type, value, require_constant_value,
6137 require_constant_elements));
6139 else
6141 /* Otherwise, output this element either to
6142 constructor_elements or to the assembler file. */
6144 if (!duplicate)
6146 if (! constructor_incremental)
6148 if (field && TREE_CODE (field) == INTEGER_CST)
6149 field = copy_node (field);
6150 constructor_elements
6151 = tree_cons (field, digest_init (type, value,
6152 require_constant_value,
6153 require_constant_elements),
6154 constructor_elements);
6156 else
6158 /* Structure elements may require alignment.
6159 Do this, if necessary. */
6160 if (TREE_CODE (constructor_type) == RECORD_TYPE)
6162 /* Advance to offset of this element. */
6163 if (! tree_int_cst_equal (constructor_bit_index,
6164 DECL_FIELD_BITPOS (field)))
6166 int next = (TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field))
6167 / BITS_PER_UNIT);
6168 int here = (TREE_INT_CST_LOW (constructor_bit_index)
6169 / BITS_PER_UNIT);
6171 assemble_zeros (next - here);
6174 output_constant (digest_init (type, value,
6175 require_constant_value,
6176 require_constant_elements),
6177 int_size_in_bytes (type));
6179 /* For a record or union,
6180 keep track of end position of last field. */
6181 if (TREE_CODE (constructor_type) == RECORD_TYPE
6182 || TREE_CODE (constructor_type) == UNION_TYPE)
6184 tree temp = size_binop (PLUS_EXPR, DECL_FIELD_BITPOS (field),
6185 DECL_SIZE (field));
6186 TREE_INT_CST_LOW (constructor_bit_index)
6187 = TREE_INT_CST_LOW (temp);
6188 TREE_INT_CST_HIGH (constructor_bit_index)
6189 = TREE_INT_CST_HIGH (temp);
6194 /* Advance the variable that indicates sequential elements output. */
6195 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6197 tree tem = size_binop (PLUS_EXPR, constructor_unfilled_index,
6198 integer_one_node);
6199 TREE_INT_CST_LOW (constructor_unfilled_index)
6200 = TREE_INT_CST_LOW (tem);
6201 TREE_INT_CST_HIGH (constructor_unfilled_index)
6202 = TREE_INT_CST_HIGH (tem);
6204 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
6205 constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
6206 else if (TREE_CODE (constructor_type) == UNION_TYPE)
6207 constructor_unfilled_fields = 0;
6209 /* Now output any pending elements which have become next. */
6210 if (pending)
6211 output_pending_init_elements (0);
6215 /* Output any pending elements which have become next.
6216 As we output elements, constructor_unfilled_{fields,index}
6217 advances, which may cause other elements to become next;
6218 if so, they too are output.
6220 If ALL is 0, we return when there are
6221 no more pending elements to output now.
6223 If ALL is 1, we output space as necessary so that
6224 we can output all the pending elements. */
6226 static void
6227 output_pending_init_elements (all)
6228 int all;
6230 struct init_node *elt = constructor_pending_elts;
6231 tree next;
6233 retry:
6235 /* Look thru the whole pending tree.
6236 If we find an element that should be output now,
6237 output it. Otherwise, set NEXT to the element
6238 that comes first among those still pending. */
6240 next = 0;
6241 while (elt)
6243 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6245 if (tree_int_cst_equal (elt->purpose,
6246 constructor_unfilled_index))
6247 output_init_element (elt->value,
6248 TREE_TYPE (constructor_type),
6249 constructor_unfilled_index, 0);
6250 else if (tree_int_cst_lt (constructor_unfilled_index,
6251 elt->purpose))
6253 /* Advance to the next smaller node. */
6254 if (elt->left)
6255 elt = elt->left;
6256 else
6258 /* We have reached the smallest node bigger than the
6259 current unfilled index. Fill the space first. */
6260 next = elt->purpose;
6261 break;
6264 else
6266 /* Advance to the next bigger node. */
6267 if (elt->right)
6268 elt = elt->right;
6269 else
6271 /* We have reached the biggest node in a subtree. Find
6272 the parent of it, which is the next bigger node. */
6273 while (elt->parent && elt->parent->right == elt)
6274 elt = elt->parent;
6275 elt = elt->parent;
6276 if (elt && tree_int_cst_lt (constructor_unfilled_index,
6277 elt->purpose))
6279 next = elt->purpose;
6280 break;
6285 else if (TREE_CODE (constructor_type) == RECORD_TYPE
6286 || TREE_CODE (constructor_type) == UNION_TYPE)
6288 /* If the current record is complete we are done. */
6289 if (constructor_unfilled_fields == 0)
6290 break;
6291 if (elt->purpose == constructor_unfilled_fields)
6293 output_init_element (elt->value,
6294 TREE_TYPE (constructor_unfilled_fields),
6295 constructor_unfilled_fields,
6298 else if (tree_int_cst_lt (DECL_FIELD_BITPOS (constructor_unfilled_fields),
6299 DECL_FIELD_BITPOS (elt->purpose)))
6301 /* Advance to the next smaller node. */
6302 if (elt->left)
6303 elt = elt->left;
6304 else
6306 /* We have reached the smallest node bigger than the
6307 current unfilled field. Fill the space first. */
6308 next = elt->purpose;
6309 break;
6312 else
6314 /* Advance to the next bigger node. */
6315 if (elt->right)
6316 elt = elt->right;
6317 else
6319 /* We have reached the biggest node in a subtree. Find
6320 the parent of it, which is the next bigger node. */
6321 while (elt->parent && elt->parent->right == elt)
6322 elt = elt->parent;
6323 elt = elt->parent;
6324 if (elt
6325 && tree_int_cst_lt (DECL_FIELD_BITPOS (constructor_unfilled_fields),
6326 DECL_FIELD_BITPOS (elt->purpose)))
6328 next = elt->purpose;
6329 break;
6336 /* Ordinarily return, but not if we want to output all
6337 and there are elements left. */
6338 if (! (all && next != 0))
6339 return;
6341 /* Generate space up to the position of NEXT. */
6342 if (constructor_incremental)
6344 tree filled;
6345 tree nextpos_tree = size_int (0);
6347 if (TREE_CODE (constructor_type) == RECORD_TYPE
6348 || TREE_CODE (constructor_type) == UNION_TYPE)
6350 tree tail;
6351 /* Find the last field written out, if any. */
6352 for (tail = TYPE_FIELDS (constructor_type); tail;
6353 tail = TREE_CHAIN (tail))
6354 if (TREE_CHAIN (tail) == constructor_unfilled_fields)
6355 break;
6357 if (tail)
6358 /* Find the offset of the end of that field. */
6359 filled = size_binop (CEIL_DIV_EXPR,
6360 size_binop (PLUS_EXPR,
6361 DECL_FIELD_BITPOS (tail),
6362 DECL_SIZE (tail)),
6363 size_int (BITS_PER_UNIT));
6364 else
6365 filled = size_int (0);
6367 nextpos_tree = size_binop (CEIL_DIV_EXPR,
6368 DECL_FIELD_BITPOS (next),
6369 size_int (BITS_PER_UNIT));
6371 TREE_INT_CST_HIGH (constructor_bit_index)
6372 = TREE_INT_CST_HIGH (DECL_FIELD_BITPOS (next));
6373 TREE_INT_CST_LOW (constructor_bit_index)
6374 = TREE_INT_CST_LOW (DECL_FIELD_BITPOS (next));
6375 constructor_unfilled_fields = next;
6377 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6379 filled = size_binop (MULT_EXPR, constructor_unfilled_index,
6380 size_in_bytes (TREE_TYPE (constructor_type)));
6381 nextpos_tree
6382 = size_binop (MULT_EXPR, next,
6383 size_in_bytes (TREE_TYPE (constructor_type)));
6384 TREE_INT_CST_LOW (constructor_unfilled_index)
6385 = TREE_INT_CST_LOW (next);
6386 TREE_INT_CST_HIGH (constructor_unfilled_index)
6387 = TREE_INT_CST_HIGH (next);
6389 else
6390 filled = 0;
6392 if (filled)
6394 int nextpos = TREE_INT_CST_LOW (nextpos_tree);
6396 assemble_zeros (nextpos - TREE_INT_CST_LOW (filled));
6399 else
6401 /* If it's not incremental, just skip over the gap,
6402 so that after jumping to retry we will output the next
6403 successive element. */
6404 if (TREE_CODE (constructor_type) == RECORD_TYPE
6405 || TREE_CODE (constructor_type) == UNION_TYPE)
6406 constructor_unfilled_fields = next;
6407 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6409 TREE_INT_CST_LOW (constructor_unfilled_index)
6410 = TREE_INT_CST_LOW (next);
6411 TREE_INT_CST_HIGH (constructor_unfilled_index)
6412 = TREE_INT_CST_HIGH (next);
6416 /* ELT now points to the node in the pending tree with the next
6417 initializer to output. */
6418 goto retry;
6421 /* Add one non-braced element to the current constructor level.
6422 This adjusts the current position within the constructor's type.
6423 This may also start or terminate implicit levels
6424 to handle a partly-braced initializer.
6426 Once this has found the correct level for the new element,
6427 it calls output_init_element.
6429 Note: if we are incrementally outputting this constructor,
6430 this function may be called with a null argument
6431 representing a sub-constructor that was already incrementally output.
6432 When that happens, we output nothing, but we do the bookkeeping
6433 to skip past that element of the current constructor. */
6435 void
6436 process_init_element (value)
6437 tree value;
6439 tree orig_value = value;
6440 int string_flag = value != 0 && TREE_CODE (value) == STRING_CST;
6442 /* Handle superfluous braces around string cst as in
6443 char x[] = {"foo"}; */
6444 if (string_flag
6445 && constructor_type
6446 && TREE_CODE (constructor_type) == ARRAY_TYPE
6447 && TREE_CODE (TREE_TYPE (constructor_type)) == INTEGER_TYPE
6448 && integer_zerop (constructor_unfilled_index))
6450 constructor_stack->replacement_value = value;
6451 return;
6454 if (constructor_stack->replacement_value != 0)
6456 error_init ("excess elements in struct initializer");
6457 return;
6460 /* Ignore elements of a brace group if it is entirely superfluous
6461 and has already been diagnosed. */
6462 if (constructor_type == 0)
6463 return;
6465 /* If we've exhausted any levels that didn't have braces,
6466 pop them now. */
6467 while (constructor_stack->implicit)
6469 if ((TREE_CODE (constructor_type) == RECORD_TYPE
6470 || TREE_CODE (constructor_type) == UNION_TYPE)
6471 && constructor_fields == 0)
6472 process_init_element (pop_init_level (1));
6473 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
6474 && (constructor_max_index == 0
6475 || tree_int_cst_lt (constructor_max_index,
6476 constructor_index)))
6477 process_init_element (pop_init_level (1));
6478 else
6479 break;
6482 while (1)
6484 if (TREE_CODE (constructor_type) == RECORD_TYPE)
6486 tree fieldtype;
6487 enum tree_code fieldcode;
6489 if (constructor_fields == 0)
6491 pedwarn_init ("excess elements in struct initializer");
6492 break;
6495 fieldtype = TREE_TYPE (constructor_fields);
6496 if (fieldtype != error_mark_node)
6497 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
6498 fieldcode = TREE_CODE (fieldtype);
6500 /* Accept a string constant to initialize a subarray. */
6501 if (value != 0
6502 && fieldcode == ARRAY_TYPE
6503 && TREE_CODE (TREE_TYPE (fieldtype)) == INTEGER_TYPE
6504 && string_flag)
6505 value = orig_value;
6506 /* Otherwise, if we have come to a subaggregate,
6507 and we don't have an element of its type, push into it. */
6508 else if (value != 0 && !constructor_no_implicit
6509 && value != error_mark_node
6510 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != fieldtype
6511 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
6512 || fieldcode == UNION_TYPE))
6514 push_init_level (1);
6515 continue;
6518 if (value)
6520 push_member_name (constructor_fields);
6521 output_init_element (value, fieldtype, constructor_fields, 1);
6522 RESTORE_SPELLING_DEPTH (constructor_depth);
6524 else
6525 /* Do the bookkeeping for an element that was
6526 directly output as a constructor. */
6528 /* For a record, keep track of end position of last field. */
6529 tree temp = size_binop (PLUS_EXPR,
6530 DECL_FIELD_BITPOS (constructor_fields),
6531 DECL_SIZE (constructor_fields));
6532 TREE_INT_CST_LOW (constructor_bit_index)
6533 = TREE_INT_CST_LOW (temp);
6534 TREE_INT_CST_HIGH (constructor_bit_index)
6535 = TREE_INT_CST_HIGH (temp);
6537 constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
6540 constructor_fields = TREE_CHAIN (constructor_fields);
6541 /* Skip any nameless bit fields at the beginning. */
6542 while (constructor_fields != 0
6543 && DECL_C_BIT_FIELD (constructor_fields)
6544 && DECL_NAME (constructor_fields) == 0)
6545 constructor_fields = TREE_CHAIN (constructor_fields);
6546 break;
6548 if (TREE_CODE (constructor_type) == UNION_TYPE)
6550 tree fieldtype;
6551 enum tree_code fieldcode;
6553 if (constructor_fields == 0)
6555 pedwarn_init ("excess elements in union initializer");
6556 break;
6559 fieldtype = TREE_TYPE (constructor_fields);
6560 if (fieldtype != error_mark_node)
6561 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
6562 fieldcode = TREE_CODE (fieldtype);
6564 /* Accept a string constant to initialize a subarray. */
6565 if (value != 0
6566 && fieldcode == ARRAY_TYPE
6567 && TREE_CODE (TREE_TYPE (fieldtype)) == INTEGER_TYPE
6568 && string_flag)
6569 value = orig_value;
6570 /* Otherwise, if we have come to a subaggregate,
6571 and we don't have an element of its type, push into it. */
6572 else if (value != 0 && !constructor_no_implicit
6573 && value != error_mark_node
6574 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != fieldtype
6575 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
6576 || fieldcode == UNION_TYPE))
6578 push_init_level (1);
6579 continue;
6582 if (value)
6584 push_member_name (constructor_fields);
6585 output_init_element (value, fieldtype, constructor_fields, 1);
6586 RESTORE_SPELLING_DEPTH (constructor_depth);
6588 else
6589 /* Do the bookkeeping for an element that was
6590 directly output as a constructor. */
6592 TREE_INT_CST_LOW (constructor_bit_index)
6593 = TREE_INT_CST_LOW (DECL_SIZE (constructor_fields));
6594 TREE_INT_CST_HIGH (constructor_bit_index)
6595 = TREE_INT_CST_HIGH (DECL_SIZE (constructor_fields));
6597 constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
6600 constructor_fields = 0;
6601 break;
6603 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6605 tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
6606 enum tree_code eltcode = TREE_CODE (elttype);
6608 /* Accept a string constant to initialize a subarray. */
6609 if (value != 0
6610 && eltcode == ARRAY_TYPE
6611 && TREE_CODE (TREE_TYPE (elttype)) == INTEGER_TYPE
6612 && string_flag)
6613 value = orig_value;
6614 /* Otherwise, if we have come to a subaggregate,
6615 and we don't have an element of its type, push into it. */
6616 else if (value != 0 && !constructor_no_implicit
6617 && value != error_mark_node
6618 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != elttype
6619 && (eltcode == RECORD_TYPE || eltcode == ARRAY_TYPE
6620 || eltcode == UNION_TYPE))
6622 push_init_level (1);
6623 continue;
6626 if (constructor_max_index != 0
6627 && tree_int_cst_lt (constructor_max_index, constructor_index))
6629 pedwarn_init ("excess elements in array initializer");
6630 break;
6633 /* In the case of [LO .. HI] = VALUE, only evaluate VALUE once. */
6634 if (constructor_range_end)
6636 if (constructor_max_index != 0
6637 && tree_int_cst_lt (constructor_max_index,
6638 constructor_range_end))
6640 pedwarn_init ("excess elements in array initializer");
6641 TREE_INT_CST_HIGH (constructor_range_end)
6642 = TREE_INT_CST_HIGH (constructor_max_index);
6643 TREE_INT_CST_LOW (constructor_range_end)
6644 = TREE_INT_CST_LOW (constructor_max_index);
6647 value = save_expr (value);
6650 /* Now output the actual element.
6651 Ordinarily, output once.
6652 If there is a range, repeat it till we advance past the range. */
6655 tree tem;
6657 if (value)
6659 push_array_bounds (TREE_INT_CST_LOW (constructor_index));
6660 output_init_element (value, elttype, constructor_index, 1);
6661 RESTORE_SPELLING_DEPTH (constructor_depth);
6664 tem = size_binop (PLUS_EXPR, constructor_index,
6665 integer_one_node);
6666 TREE_INT_CST_LOW (constructor_index) = TREE_INT_CST_LOW (tem);
6667 TREE_INT_CST_HIGH (constructor_index) = TREE_INT_CST_HIGH (tem);
6669 if (!value)
6670 /* If we are doing the bookkeeping for an element that was
6671 directly output as a constructor,
6672 we must update constructor_unfilled_index. */
6674 TREE_INT_CST_LOW (constructor_unfilled_index)
6675 = TREE_INT_CST_LOW (constructor_index);
6676 TREE_INT_CST_HIGH (constructor_unfilled_index)
6677 = TREE_INT_CST_HIGH (constructor_index);
6680 while (! (constructor_range_end == 0
6681 || tree_int_cst_lt (constructor_range_end,
6682 constructor_index)));
6684 break;
6687 /* Handle the sole element allowed in a braced initializer
6688 for a scalar variable. */
6689 if (constructor_fields == 0)
6691 pedwarn_init ("excess elements in scalar initializer");
6692 break;
6695 if (value)
6696 output_init_element (value, constructor_type, NULL_TREE, 1);
6697 constructor_fields = 0;
6698 break;
6701 /* If the (lexically) previous elments are not now saved,
6702 we can discard the storage for them. */
6703 if (constructor_incremental && constructor_pending_elts == 0 && value != 0
6704 && constructor_stack == 0)
6705 clear_momentary ();
6708 /* Expand an ASM statement with operands, handling output operands
6709 that are not variables or INDIRECT_REFS by transforming such
6710 cases into cases that expand_asm_operands can handle.
6712 Arguments are same as for expand_asm_operands. */
6714 void
6715 c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
6716 tree string, outputs, inputs, clobbers;
6717 int vol;
6718 char *filename;
6719 int line;
6721 int noutputs = list_length (outputs);
6722 register int i;
6723 /* o[I] is the place that output number I should be written. */
6724 register tree *o = (tree *) alloca (noutputs * sizeof (tree));
6725 register tree tail;
6727 if (TREE_CODE (string) == ADDR_EXPR)
6728 string = TREE_OPERAND (string, 0);
6729 if (TREE_CODE (string) != STRING_CST)
6731 error ("asm template is not a string constant");
6732 return;
6735 /* Record the contents of OUTPUTS before it is modified. */
6736 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
6738 tree output = TREE_VALUE (tail);
6740 /* We can remove conversions that just change the type, not the mode. */
6741 STRIP_NOPS (output);
6742 o[i] = output;
6744 /* Allow conversions as LHS here. build_modify_expr as called below
6745 will do the right thing with them. */
6746 while (TREE_CODE (output) == NOP_EXPR
6747 || TREE_CODE (output) == CONVERT_EXPR
6748 || TREE_CODE (output) == FLOAT_EXPR
6749 || TREE_CODE (output) == FIX_TRUNC_EXPR
6750 || TREE_CODE (output) == FIX_FLOOR_EXPR
6751 || TREE_CODE (output) == FIX_ROUND_EXPR
6752 || TREE_CODE (output) == FIX_CEIL_EXPR)
6753 output = TREE_OPERAND (output, 1);
6755 lvalue_or_else (o[i], "invalid lvalue in asm statement");
6758 /* Perform default conversions on array and function inputs. */
6759 /* Don't do this for other types--
6760 it would screw up operands expected to be in memory. */
6761 for (i = 0, tail = inputs; tail; tail = TREE_CHAIN (tail), i++)
6762 if (TREE_CODE (TREE_TYPE (TREE_VALUE (tail))) == ARRAY_TYPE
6763 || TREE_CODE (TREE_TYPE (TREE_VALUE (tail))) == FUNCTION_TYPE)
6764 TREE_VALUE (tail) = default_conversion (TREE_VALUE (tail));
6766 /* Generate the ASM_OPERANDS insn;
6767 store into the TREE_VALUEs of OUTPUTS some trees for
6768 where the values were actually stored. */
6769 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line);
6771 /* Copy all the intermediate outputs into the specified outputs. */
6772 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
6774 if (o[i] != TREE_VALUE (tail))
6776 expand_expr (build_modify_expr (o[i], NOP_EXPR, TREE_VALUE (tail)),
6777 0, VOIDmode, 0);
6778 free_temp_slots ();
6780 /* Detect modification of read-only values.
6781 (Otherwise done by build_modify_expr.) */
6782 else
6784 tree type = TREE_TYPE (o[i]);
6785 if (TREE_READONLY (o[i])
6786 || TYPE_READONLY (type)
6787 || ((TREE_CODE (type) == RECORD_TYPE
6788 || TREE_CODE (type) == UNION_TYPE)
6789 && C_TYPE_FIELDS_READONLY (type)))
6790 readonly_warning (o[i], "modification by `asm'");
6794 /* Those MODIFY_EXPRs could do autoincrements. */
6795 emit_queue ();
6798 /* Expand a C `return' statement.
6799 RETVAL is the expression for what to return,
6800 or a null pointer for `return;' with no value. */
6802 void
6803 c_expand_return (retval)
6804 tree retval;
6806 tree valtype = TREE_TYPE (TREE_TYPE (current_function_decl));
6808 if (TREE_THIS_VOLATILE (current_function_decl))
6809 warning ("function declared `noreturn' has a `return' statement");
6811 if (!retval)
6813 current_function_returns_null = 1;
6814 if (warn_return_type && valtype != 0 && TREE_CODE (valtype) != VOID_TYPE)
6815 warning ("`return' with no value, in function returning non-void");
6816 expand_null_return ();
6818 else if (valtype == 0 || TREE_CODE (valtype) == VOID_TYPE)
6820 current_function_returns_null = 1;
6821 if (pedantic || TREE_CODE (TREE_TYPE (retval)) != VOID_TYPE)
6822 pedwarn ("`return' with a value, in function returning void");
6823 expand_return (retval);
6825 else
6827 tree t = convert_for_assignment (valtype, retval, _("return"),
6828 NULL_TREE, NULL_TREE, 0);
6829 tree res = DECL_RESULT (current_function_decl);
6830 tree inner;
6832 if (t == error_mark_node)
6833 return;
6835 inner = t = convert (TREE_TYPE (res), t);
6837 /* Strip any conversions, additions, and subtractions, and see if
6838 we are returning the address of a local variable. Warn if so. */
6839 while (1)
6841 switch (TREE_CODE (inner))
6843 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
6844 case PLUS_EXPR:
6845 inner = TREE_OPERAND (inner, 0);
6846 continue;
6848 case MINUS_EXPR:
6849 /* If the second operand of the MINUS_EXPR has a pointer
6850 type (or is converted from it), this may be valid, so
6851 don't give a warning. */
6853 tree op1 = TREE_OPERAND (inner, 1);
6855 while (! POINTER_TYPE_P (TREE_TYPE (op1))
6856 && (TREE_CODE (op1) == NOP_EXPR
6857 || TREE_CODE (op1) == NON_LVALUE_EXPR
6858 || TREE_CODE (op1) == CONVERT_EXPR))
6859 op1 = TREE_OPERAND (op1, 0);
6861 if (POINTER_TYPE_P (TREE_TYPE (op1)))
6862 break;
6864 inner = TREE_OPERAND (inner, 0);
6865 continue;
6868 case ADDR_EXPR:
6869 inner = TREE_OPERAND (inner, 0);
6871 while (TREE_CODE_CLASS (TREE_CODE (inner)) == 'r')
6872 inner = TREE_OPERAND (inner, 0);
6874 if (TREE_CODE (inner) == VAR_DECL
6875 && ! DECL_EXTERNAL (inner)
6876 && ! TREE_STATIC (inner)
6877 && DECL_CONTEXT (inner) == current_function_decl)
6878 warning ("function returns address of local variable");
6879 break;
6881 default:
6882 break;
6885 break;
6888 t = build (MODIFY_EXPR, TREE_TYPE (res), res, t);
6889 TREE_SIDE_EFFECTS (t) = 1;
6890 expand_return (t);
6891 current_function_returns_value = 1;
6895 /* Start a C switch statement, testing expression EXP.
6896 Return EXP if it is valid, an error node otherwise. */
6898 tree
6899 c_expand_start_case (exp)
6900 tree exp;
6902 register enum tree_code code = TREE_CODE (TREE_TYPE (exp));
6903 tree type = TREE_TYPE (exp);
6905 if (code != INTEGER_TYPE && code != ENUMERAL_TYPE && code != ERROR_MARK)
6907 error ("switch quantity not an integer");
6908 exp = error_mark_node;
6910 else
6912 tree index;
6913 type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
6915 if (warn_traditional
6916 && (type == long_integer_type_node
6917 || type == long_unsigned_type_node))
6918 pedwarn ("`long' switch expression not converted to `int' in ANSI C");
6920 exp = default_conversion (exp);
6921 type = TREE_TYPE (exp);
6922 index = get_unwidened (exp, NULL_TREE);
6923 /* We can't strip a conversion from a signed type to an unsigned,
6924 because if we did, int_fits_type_p would do the wrong thing
6925 when checking case values for being in range,
6926 and it's too hard to do the right thing. */
6927 if (TREE_UNSIGNED (TREE_TYPE (exp))
6928 == TREE_UNSIGNED (TREE_TYPE (index)))
6929 exp = index;
6932 expand_start_case (1, exp, type, "switch statement");
6934 return exp;