* c-typeck.c (digest_init): Issue error messages about
[official-gcc.git] / gcc / c-typeck.c
blob6a6a7e6e47d3d4418e599bf00c1f987f4db9bd97
1 /* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* This file is part of the C front end.
24 It contains routines to build C expressions given their operands,
25 including computing the types of the result, C-specific error checks,
26 and some optimization.
28 There are also routines to build RETURN_STMT nodes and CASE_STMT nodes,
29 and to process initializations in declarations (since they work
30 like a strange sort of assignment). */
32 #include "config.h"
33 #include "system.h"
34 #include "tree.h"
35 #include "c-tree.h"
36 #include "tm_p.h"
37 #include "flags.h"
38 #include "output.h"
39 #include "rtl.h"
40 #include "expr.h"
41 #include "toplev.h"
42 #include "intl.h"
43 #include "ggc.h"
45 /* Nonzero if we've already printed a "missing braces around initializer"
46 message within this initializer. */
47 static int missing_braces_mentioned;
49 /* 1 if we explained undeclared var errors. */
50 static int undeclared_variable_notice;
52 static tree qualify_type PARAMS ((tree, tree));
53 static int comp_target_types PARAMS ((tree, tree));
54 static int function_types_compatible_p PARAMS ((tree, tree));
55 static int type_lists_compatible_p PARAMS ((tree, tree));
56 static tree decl_constant_value_for_broken_optimization PARAMS ((tree));
57 static tree lookup_field PARAMS ((tree, tree, tree *));
58 static tree convert_arguments PARAMS ((tree, tree, tree, tree));
59 static tree pointer_int_sum PARAMS ((enum tree_code, tree, tree));
60 static tree pointer_diff PARAMS ((tree, tree));
61 static tree unary_complex_lvalue PARAMS ((enum tree_code, tree));
62 static void pedantic_lvalue_warning PARAMS ((enum tree_code));
63 static tree internal_build_compound_expr PARAMS ((tree, int));
64 static tree convert_for_assignment PARAMS ((tree, tree, const char *,
65 tree, tree, int));
66 static void warn_for_assignment PARAMS ((const char *, const char *,
67 tree, int));
68 static tree valid_compound_expr_initializer PARAMS ((tree, tree));
69 static void push_string PARAMS ((const char *));
70 static void push_member_name PARAMS ((tree));
71 static void push_array_bounds PARAMS ((int));
72 static int spelling_length PARAMS ((void));
73 static char *print_spelling PARAMS ((char *));
74 static void warning_init PARAMS ((const char *));
75 static tree digest_init PARAMS ((tree, tree, int, int));
76 static void output_init_element PARAMS ((tree, tree, tree, int));
77 static void output_pending_init_elements PARAMS ((int));
78 static int set_designator PARAMS ((int));
79 static void push_range_stack PARAMS ((tree));
80 static void add_pending_init PARAMS ((tree, tree));
81 static void set_nonincremental_init PARAMS ((void));
82 static void set_nonincremental_init_from_string PARAMS ((tree));
83 static tree find_init_member PARAMS ((tree));
85 /* Do `exp = require_complete_type (exp);' to make sure exp
86 does not have an incomplete type. (That includes void types.) */
88 tree
89 require_complete_type (value)
90 tree value;
92 tree type = TREE_TYPE (value);
94 if (TREE_CODE (value) == ERROR_MARK)
95 return error_mark_node;
97 /* First, detect a valid value with a complete type. */
98 if (COMPLETE_TYPE_P (type))
99 return value;
101 incomplete_type_error (value, type);
102 return error_mark_node;
105 /* Print an error message for invalid use of an incomplete type.
106 VALUE is the expression that was used (or 0 if that isn't known)
107 and TYPE is the type that was invalid. */
109 void
110 incomplete_type_error (value, type)
111 tree value;
112 tree type;
114 const char *type_code_string;
116 /* Avoid duplicate error message. */
117 if (TREE_CODE (type) == ERROR_MARK)
118 return;
120 if (value != 0 && (TREE_CODE (value) == VAR_DECL
121 || TREE_CODE (value) == PARM_DECL))
122 error ("`%s' has an incomplete type",
123 IDENTIFIER_POINTER (DECL_NAME (value)));
124 else
126 retry:
127 /* We must print an error message. Be clever about what it says. */
129 switch (TREE_CODE (type))
131 case RECORD_TYPE:
132 type_code_string = "struct";
133 break;
135 case UNION_TYPE:
136 type_code_string = "union";
137 break;
139 case ENUMERAL_TYPE:
140 type_code_string = "enum";
141 break;
143 case VOID_TYPE:
144 error ("invalid use of void expression");
145 return;
147 case ARRAY_TYPE:
148 if (TYPE_DOMAIN (type))
150 type = TREE_TYPE (type);
151 goto retry;
153 error ("invalid use of array with unspecified bounds");
154 return;
156 default:
157 abort ();
160 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
161 error ("invalid use of undefined type `%s %s'",
162 type_code_string, IDENTIFIER_POINTER (TYPE_NAME (type)));
163 else
164 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
165 error ("invalid use of incomplete typedef `%s'",
166 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
170 /* Return a variant of TYPE which has all the type qualifiers of LIKE
171 as well as those of TYPE. */
173 static tree
174 qualify_type (type, like)
175 tree type, like;
177 return c_build_qualified_type (type,
178 TYPE_QUALS (type) | TYPE_QUALS (like));
181 /* Return the common type of two types.
182 We assume that comptypes has already been done and returned 1;
183 if that isn't so, this may crash. In particular, we assume that qualifiers
184 match.
186 This is the type for the result of most arithmetic operations
187 if the operands have the given two types. */
189 tree
190 common_type (t1, t2)
191 tree t1, t2;
193 register enum tree_code code1;
194 register enum tree_code code2;
195 tree attributes;
197 /* Save time if the two types are the same. */
199 if (t1 == t2) return t1;
201 /* If one type is nonsense, use the other. */
202 if (t1 == error_mark_node)
203 return t2;
204 if (t2 == error_mark_node)
205 return t1;
207 /* Merge the attributes. */
208 attributes = merge_machine_type_attributes (t1, t2);
210 /* Treat an enum type as the unsigned integer type of the same width. */
212 if (TREE_CODE (t1) == ENUMERAL_TYPE)
213 t1 = type_for_size (TYPE_PRECISION (t1), 1);
214 if (TREE_CODE (t2) == ENUMERAL_TYPE)
215 t2 = type_for_size (TYPE_PRECISION (t2), 1);
217 code1 = TREE_CODE (t1);
218 code2 = TREE_CODE (t2);
220 /* If one type is complex, form the common type of the non-complex
221 components, then make that complex. Use T1 or T2 if it is the
222 required type. */
223 if (code1 == COMPLEX_TYPE || code2 == COMPLEX_TYPE)
225 tree subtype1 = code1 == COMPLEX_TYPE ? TREE_TYPE (t1) : t1;
226 tree subtype2 = code2 == COMPLEX_TYPE ? TREE_TYPE (t2) : t2;
227 tree subtype = common_type (subtype1, subtype2);
229 if (code1 == COMPLEX_TYPE && TREE_TYPE (t1) == subtype)
230 return build_type_attribute_variant (t1, attributes);
231 else if (code2 == COMPLEX_TYPE && TREE_TYPE (t2) == subtype)
232 return build_type_attribute_variant (t2, attributes);
233 else
234 return build_type_attribute_variant (build_complex_type (subtype),
235 attributes);
238 switch (code1)
240 case INTEGER_TYPE:
241 case REAL_TYPE:
242 /* If only one is real, use it as the result. */
244 if (code1 == REAL_TYPE && code2 != REAL_TYPE)
245 return build_type_attribute_variant (t1, attributes);
247 if (code2 == REAL_TYPE && code1 != REAL_TYPE)
248 return build_type_attribute_variant (t2, attributes);
250 /* Both real or both integers; use the one with greater precision. */
252 if (TYPE_PRECISION (t1) > TYPE_PRECISION (t2))
253 return build_type_attribute_variant (t1, attributes);
254 else if (TYPE_PRECISION (t2) > TYPE_PRECISION (t1))
255 return build_type_attribute_variant (t2, attributes);
257 /* Same precision. Prefer longs to ints even when same size. */
259 if (TYPE_MAIN_VARIANT (t1) == long_unsigned_type_node
260 || TYPE_MAIN_VARIANT (t2) == long_unsigned_type_node)
261 return build_type_attribute_variant (long_unsigned_type_node,
262 attributes);
264 if (TYPE_MAIN_VARIANT (t1) == long_integer_type_node
265 || TYPE_MAIN_VARIANT (t2) == long_integer_type_node)
267 /* But preserve unsignedness from the other type,
268 since long cannot hold all the values of an unsigned int. */
269 if (TREE_UNSIGNED (t1) || TREE_UNSIGNED (t2))
270 t1 = long_unsigned_type_node;
271 else
272 t1 = long_integer_type_node;
273 return build_type_attribute_variant (t1, attributes);
276 /* Likewise, prefer long double to double even if same size. */
277 if (TYPE_MAIN_VARIANT (t1) == long_double_type_node
278 || TYPE_MAIN_VARIANT (t2) == long_double_type_node)
279 return build_type_attribute_variant (long_double_type_node,
280 attributes);
282 /* Otherwise prefer the unsigned one. */
284 if (TREE_UNSIGNED (t1))
285 return build_type_attribute_variant (t1, attributes);
286 else
287 return build_type_attribute_variant (t2, attributes);
289 case POINTER_TYPE:
290 /* For two pointers, do this recursively on the target type,
291 and combine the qualifiers of the two types' targets. */
292 /* This code was turned off; I don't know why.
293 But ANSI C specifies doing this with the qualifiers.
294 So I turned it on again. */
296 tree pointed_to_1 = TREE_TYPE (t1);
297 tree pointed_to_2 = TREE_TYPE (t2);
298 tree target = common_type (TYPE_MAIN_VARIANT (pointed_to_1),
299 TYPE_MAIN_VARIANT (pointed_to_2));
300 t1 = build_pointer_type (c_build_qualified_type
301 (target,
302 TYPE_QUALS (pointed_to_1) |
303 TYPE_QUALS (pointed_to_2)));
304 return build_type_attribute_variant (t1, attributes);
306 #if 0
307 t1 = build_pointer_type (common_type (TREE_TYPE (t1), TREE_TYPE (t2)));
308 return build_type_attribute_variant (t1, attributes);
309 #endif
311 case ARRAY_TYPE:
313 tree elt = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
314 /* Save space: see if the result is identical to one of the args. */
315 if (elt == TREE_TYPE (t1) && TYPE_DOMAIN (t1))
316 return build_type_attribute_variant (t1, attributes);
317 if (elt == TREE_TYPE (t2) && TYPE_DOMAIN (t2))
318 return build_type_attribute_variant (t2, attributes);
319 /* Merge the element types, and have a size if either arg has one. */
320 t1 = build_array_type (elt, TYPE_DOMAIN (TYPE_DOMAIN (t1) ? t1 : t2));
321 return build_type_attribute_variant (t1, attributes);
324 case FUNCTION_TYPE:
325 /* Function types: prefer the one that specified arg types.
326 If both do, merge the arg types. Also merge the return types. */
328 tree valtype = common_type (TREE_TYPE (t1), TREE_TYPE (t2));
329 tree p1 = TYPE_ARG_TYPES (t1);
330 tree p2 = TYPE_ARG_TYPES (t2);
331 int len;
332 tree newargs, n;
333 int i;
335 /* Save space: see if the result is identical to one of the args. */
336 if (valtype == TREE_TYPE (t1) && ! TYPE_ARG_TYPES (t2))
337 return build_type_attribute_variant (t1, attributes);
338 if (valtype == TREE_TYPE (t2) && ! TYPE_ARG_TYPES (t1))
339 return build_type_attribute_variant (t2, attributes);
341 /* Simple way if one arg fails to specify argument types. */
342 if (TYPE_ARG_TYPES (t1) == 0)
344 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t2));
345 return build_type_attribute_variant (t1, attributes);
347 if (TYPE_ARG_TYPES (t2) == 0)
349 t1 = build_function_type (valtype, TYPE_ARG_TYPES (t1));
350 return build_type_attribute_variant (t1, attributes);
353 /* If both args specify argument types, we must merge the two
354 lists, argument by argument. */
356 pushlevel (0);
357 declare_parm_level (1);
359 len = list_length (p1);
360 newargs = 0;
362 for (i = 0; i < len; i++)
363 newargs = tree_cons (NULL_TREE, NULL_TREE, newargs);
365 n = newargs;
367 for (; p1;
368 p1 = TREE_CHAIN (p1), p2 = TREE_CHAIN (p2), n = TREE_CHAIN (n))
370 /* A null type means arg type is not specified.
371 Take whatever the other function type has. */
372 if (TREE_VALUE (p1) == 0)
374 TREE_VALUE (n) = TREE_VALUE (p2);
375 goto parm_done;
377 if (TREE_VALUE (p2) == 0)
379 TREE_VALUE (n) = TREE_VALUE (p1);
380 goto parm_done;
383 /* Given wait (union {union wait *u; int *i} *)
384 and wait (union wait *),
385 prefer union wait * as type of parm. */
386 if (TREE_CODE (TREE_VALUE (p1)) == UNION_TYPE
387 && TREE_VALUE (p1) != TREE_VALUE (p2))
389 tree memb;
390 for (memb = TYPE_FIELDS (TREE_VALUE (p1));
391 memb; memb = TREE_CHAIN (memb))
392 if (comptypes (TREE_TYPE (memb), TREE_VALUE (p2)))
394 TREE_VALUE (n) = TREE_VALUE (p2);
395 if (pedantic)
396 pedwarn ("function types not truly compatible in ISO C");
397 goto parm_done;
400 if (TREE_CODE (TREE_VALUE (p2)) == UNION_TYPE
401 && TREE_VALUE (p2) != TREE_VALUE (p1))
403 tree memb;
404 for (memb = TYPE_FIELDS (TREE_VALUE (p2));
405 memb; memb = TREE_CHAIN (memb))
406 if (comptypes (TREE_TYPE (memb), TREE_VALUE (p1)))
408 TREE_VALUE (n) = TREE_VALUE (p1);
409 if (pedantic)
410 pedwarn ("function types not truly compatible in ISO C");
411 goto parm_done;
414 TREE_VALUE (n) = common_type (TREE_VALUE (p1), TREE_VALUE (p2));
415 parm_done: ;
418 poplevel (0, 0, 0);
420 t1 = build_function_type (valtype, newargs);
421 /* ... falls through ... */
424 default:
425 return build_type_attribute_variant (t1, attributes);
430 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
431 or various other operations. Return 2 if they are compatible
432 but a warning may be needed if you use them together. */
435 comptypes (type1, type2)
436 tree type1, type2;
438 register tree t1 = type1;
439 register tree t2 = type2;
440 int attrval, val;
442 /* Suppress errors caused by previously reported errors. */
444 if (t1 == t2 || !t1 || !t2
445 || TREE_CODE (t1) == ERROR_MARK || TREE_CODE (t2) == ERROR_MARK)
446 return 1;
448 /* If either type is the internal version of sizetype, return the
449 language version. */
450 if (TREE_CODE (t1) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t1)
451 && TYPE_DOMAIN (t1) != 0)
452 t1 = TYPE_DOMAIN (t1);
454 if (TREE_CODE (t2) == INTEGER_TYPE && TYPE_IS_SIZETYPE (t2)
455 && TYPE_DOMAIN (t2) != 0)
456 t2 = TYPE_DOMAIN (t2);
458 /* Treat an enum type as the integer type of the same width and
459 signedness. */
461 if (TREE_CODE (t1) == ENUMERAL_TYPE)
462 t1 = type_for_size (TYPE_PRECISION (t1), TREE_UNSIGNED (t1));
463 if (TREE_CODE (t2) == ENUMERAL_TYPE)
464 t2 = type_for_size (TYPE_PRECISION (t2), TREE_UNSIGNED (t2));
466 if (t1 == t2)
467 return 1;
469 /* Different classes of types can't be compatible. */
471 if (TREE_CODE (t1) != TREE_CODE (t2)) return 0;
473 /* Qualifiers must match. */
475 if (TYPE_QUALS (t1) != TYPE_QUALS (t2))
476 return 0;
478 /* Allow for two different type nodes which have essentially the same
479 definition. Note that we already checked for equality of the type
480 qualifiers (just above). */
482 if (TYPE_MAIN_VARIANT (t1) == TYPE_MAIN_VARIANT (t2))
483 return 1;
485 #ifndef COMP_TYPE_ATTRIBUTES
486 #define COMP_TYPE_ATTRIBUTES(t1,t2) 1
487 #endif
489 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
490 if (! (attrval = COMP_TYPE_ATTRIBUTES (t1, t2)))
491 return 0;
493 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
494 val = 0;
496 switch (TREE_CODE (t1))
498 case POINTER_TYPE:
499 val = (TREE_TYPE (t1) == TREE_TYPE (t2)
500 ? 1 : comptypes (TREE_TYPE (t1), TREE_TYPE (t2)));
501 break;
503 case FUNCTION_TYPE:
504 val = function_types_compatible_p (t1, t2);
505 break;
507 case ARRAY_TYPE:
509 tree d1 = TYPE_DOMAIN (t1);
510 tree d2 = TYPE_DOMAIN (t2);
511 val = 1;
513 /* Target types must match incl. qualifiers. */
514 if (TREE_TYPE (t1) != TREE_TYPE (t2)
515 && 0 == (val = comptypes (TREE_TYPE (t1), TREE_TYPE (t2))))
516 return 0;
518 /* Sizes must match unless one is missing or variable. */
519 if (d1 == 0 || d2 == 0 || d1 == d2
520 || TREE_CODE (TYPE_MIN_VALUE (d1)) != INTEGER_CST
521 || TREE_CODE (TYPE_MIN_VALUE (d2)) != INTEGER_CST
522 || TREE_CODE (TYPE_MAX_VALUE (d1)) != INTEGER_CST
523 || TREE_CODE (TYPE_MAX_VALUE (d2)) != INTEGER_CST)
524 break;
526 if (! tree_int_cst_equal (TYPE_MIN_VALUE (d1), TYPE_MIN_VALUE (d2))
527 || ! tree_int_cst_equal (TYPE_MAX_VALUE (d1), TYPE_MAX_VALUE (d2)))
528 val = 0;
530 break;
533 case RECORD_TYPE:
534 if (maybe_objc_comptypes (t1, t2, 0) == 1)
535 val = 1;
536 break;
538 default:
539 break;
541 return attrval == 2 && val == 1 ? 2 : val;
544 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
545 ignoring their qualifiers. */
547 static int
548 comp_target_types (ttl, ttr)
549 tree ttl, ttr;
551 int val;
553 /* Give maybe_objc_comptypes a crack at letting these types through. */
554 if ((val = maybe_objc_comptypes (ttl, ttr, 1)) >= 0)
555 return val;
557 val = comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (ttl)),
558 TYPE_MAIN_VARIANT (TREE_TYPE (ttr)));
560 if (val == 2 && pedantic)
561 pedwarn ("types are not quite compatible");
562 return val;
565 /* Subroutines of `comptypes'. */
567 /* Return 1 if two function types F1 and F2 are compatible.
568 If either type specifies no argument types,
569 the other must specify a fixed number of self-promoting arg types.
570 Otherwise, if one type specifies only the number of arguments,
571 the other must specify that number of self-promoting arg types.
572 Otherwise, the argument types must match. */
574 static int
575 function_types_compatible_p (f1, f2)
576 tree f1, f2;
578 tree args1, args2;
579 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
580 int val = 1;
581 int val1;
583 if (!(TREE_TYPE (f1) == TREE_TYPE (f2)
584 || (val = comptypes (TREE_TYPE (f1), TREE_TYPE (f2)))))
585 return 0;
587 args1 = TYPE_ARG_TYPES (f1);
588 args2 = TYPE_ARG_TYPES (f2);
590 /* An unspecified parmlist matches any specified parmlist
591 whose argument types don't need default promotions. */
593 if (args1 == 0)
595 if (!self_promoting_args_p (args2))
596 return 0;
597 /* If one of these types comes from a non-prototype fn definition,
598 compare that with the other type's arglist.
599 If they don't match, ask for a warning (but no error). */
600 if (TYPE_ACTUAL_ARG_TYPES (f1)
601 && 1 != type_lists_compatible_p (args2, TYPE_ACTUAL_ARG_TYPES (f1)))
602 val = 2;
603 return val;
605 if (args2 == 0)
607 if (!self_promoting_args_p (args1))
608 return 0;
609 if (TYPE_ACTUAL_ARG_TYPES (f2)
610 && 1 != type_lists_compatible_p (args1, TYPE_ACTUAL_ARG_TYPES (f2)))
611 val = 2;
612 return val;
615 /* Both types have argument lists: compare them and propagate results. */
616 val1 = type_lists_compatible_p (args1, args2);
617 return val1 != 1 ? val1 : val;
620 /* Check two lists of types for compatibility,
621 returning 0 for incompatible, 1 for compatible,
622 or 2 for compatible with warning. */
624 static int
625 type_lists_compatible_p (args1, args2)
626 tree args1, args2;
628 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
629 int val = 1;
630 int newval = 0;
632 while (1)
634 if (args1 == 0 && args2 == 0)
635 return val;
636 /* If one list is shorter than the other,
637 they fail to match. */
638 if (args1 == 0 || args2 == 0)
639 return 0;
640 /* A null pointer instead of a type
641 means there is supposed to be an argument
642 but nothing is specified about what type it has.
643 So match anything that self-promotes. */
644 if (TREE_VALUE (args1) == 0)
646 if (simple_type_promotes_to (TREE_VALUE (args2)) != NULL_TREE)
647 return 0;
649 else if (TREE_VALUE (args2) == 0)
651 if (simple_type_promotes_to (TREE_VALUE (args1)) != NULL_TREE)
652 return 0;
654 else if (! (newval = comptypes (TREE_VALUE (args1), TREE_VALUE (args2))))
656 /* Allow wait (union {union wait *u; int *i} *)
657 and wait (union wait *) to be compatible. */
658 if (TREE_CODE (TREE_VALUE (args1)) == UNION_TYPE
659 && (TYPE_NAME (TREE_VALUE (args1)) == 0
660 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args1)))
661 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args1))) == INTEGER_CST
662 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args1)),
663 TYPE_SIZE (TREE_VALUE (args2))))
665 tree memb;
666 for (memb = TYPE_FIELDS (TREE_VALUE (args1));
667 memb; memb = TREE_CHAIN (memb))
668 if (comptypes (TREE_TYPE (memb), TREE_VALUE (args2)))
669 break;
670 if (memb == 0)
671 return 0;
673 else if (TREE_CODE (TREE_VALUE (args2)) == UNION_TYPE
674 && (TYPE_NAME (TREE_VALUE (args2)) == 0
675 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args2)))
676 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args2))) == INTEGER_CST
677 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args2)),
678 TYPE_SIZE (TREE_VALUE (args1))))
680 tree memb;
681 for (memb = TYPE_FIELDS (TREE_VALUE (args2));
682 memb; memb = TREE_CHAIN (memb))
683 if (comptypes (TREE_TYPE (memb), TREE_VALUE (args1)))
684 break;
685 if (memb == 0)
686 return 0;
688 else
689 return 0;
692 /* comptypes said ok, but record if it said to warn. */
693 if (newval > val)
694 val = newval;
696 args1 = TREE_CHAIN (args1);
697 args2 = TREE_CHAIN (args2);
701 /* Compute the value of the `sizeof' operator. */
703 tree
704 c_sizeof (type)
705 tree type;
707 enum tree_code code = TREE_CODE (type);
708 tree size;
710 if (code == FUNCTION_TYPE)
712 if (pedantic || warn_pointer_arith)
713 pedwarn ("sizeof applied to a function type");
714 size = size_one_node;
716 else if (code == VOID_TYPE)
718 if (pedantic || warn_pointer_arith)
719 pedwarn ("sizeof applied to a void type");
720 size = size_one_node;
722 else if (code == ERROR_MARK)
723 size = size_one_node;
724 else if (!COMPLETE_TYPE_P (type))
726 error ("sizeof applied to an incomplete type");
727 size = size_zero_node;
729 else
730 /* Convert in case a char is more than one unit. */
731 size = size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
732 size_int (TYPE_PRECISION (char_type_node)
733 / BITS_PER_UNIT));
735 /* SIZE will have an integer type with TYPE_IS_SIZETYPE set.
736 TYPE_IS_SIZETYPE means that certain things (like overflow) will
737 never happen. However, this node should really have type
738 `size_t', which is just a typedef for an ordinary integer type. */
739 return fold (build1 (NOP_EXPR, c_size_type_node, size));
742 tree
743 c_sizeof_nowarn (type)
744 tree type;
746 enum tree_code code = TREE_CODE (type);
747 tree size;
749 if (code == FUNCTION_TYPE || code == VOID_TYPE || code == ERROR_MARK)
750 size = size_one_node;
751 else if (!COMPLETE_TYPE_P (type))
752 size = size_zero_node;
753 else
754 /* Convert in case a char is more than one unit. */
755 size = size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
756 size_int (TYPE_PRECISION (char_type_node)
757 / BITS_PER_UNIT));
759 /* SIZE will have an integer type with TYPE_IS_SIZETYPE set.
760 TYPE_IS_SIZETYPE means that certain things (like overflow) will
761 never happen. However, this node should really have type
762 `size_t', which is just a typedef for an ordinary integer type. */
763 return fold (build1 (NOP_EXPR, c_size_type_node, size));
766 /* Compute the size to increment a pointer by. */
768 tree
769 c_size_in_bytes (type)
770 tree type;
772 enum tree_code code = TREE_CODE (type);
774 if (code == FUNCTION_TYPE || code == VOID_TYPE || code == ERROR_MARK)
775 return size_one_node;
777 if (!COMPLETE_OR_VOID_TYPE_P (type))
779 error ("arithmetic on pointer to an incomplete type");
780 return size_one_node;
783 /* Convert in case a char is more than one unit. */
784 return size_binop (CEIL_DIV_EXPR, TYPE_SIZE_UNIT (type),
785 size_int (TYPE_PRECISION (char_type_node)
786 / BITS_PER_UNIT));
789 /* Implement the __alignof keyword: Return the minimum required
790 alignment of TYPE, measured in bytes. */
792 tree
793 c_alignof (type)
794 tree type;
796 enum tree_code code = TREE_CODE (type);
797 tree t;
799 if (code == FUNCTION_TYPE)
800 t = size_int (FUNCTION_BOUNDARY / BITS_PER_UNIT);
801 else if (code == VOID_TYPE || code == ERROR_MARK)
802 t = size_one_node;
803 else if (code == ERROR_MARK)
804 t = size_one_node;
805 else if (!COMPLETE_TYPE_P (type))
807 error ("__alignof__ applied to an incomplete type");
808 t = size_zero_node;
810 else
811 t = size_int (TYPE_ALIGN (type) / BITS_PER_UNIT);
813 return fold (build1 (NOP_EXPR, c_size_type_node, t));
816 /* Implement the __alignof keyword: Return the minimum required
817 alignment of EXPR, measured in bytes. For VAR_DECL's and
818 FIELD_DECL's return DECL_ALIGN (which can be set from an
819 "aligned" __attribute__ specification). */
821 tree
822 c_alignof_expr (expr)
823 tree expr;
825 tree t;
827 if (TREE_CODE (expr) == VAR_DECL)
828 t = size_int (DECL_ALIGN (expr) / BITS_PER_UNIT);
830 else if (TREE_CODE (expr) == COMPONENT_REF
831 && DECL_C_BIT_FIELD (TREE_OPERAND (expr, 1)))
833 error ("`__alignof' applied to a bit-field");
834 t = size_one_node;
836 else if (TREE_CODE (expr) == COMPONENT_REF
837 && TREE_CODE (TREE_OPERAND (expr, 1)) == FIELD_DECL)
838 t = size_int (DECL_ALIGN (TREE_OPERAND (expr, 1)) / BITS_PER_UNIT);
840 else if (TREE_CODE (expr) == INDIRECT_REF)
842 tree t = TREE_OPERAND (expr, 0);
843 tree best = t;
844 int bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
846 while (TREE_CODE (t) == NOP_EXPR
847 && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
849 int thisalign;
851 t = TREE_OPERAND (t, 0);
852 thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
853 if (thisalign > bestalign)
854 best = t, bestalign = thisalign;
856 return c_alignof (TREE_TYPE (TREE_TYPE (best)));
858 else
859 return c_alignof (TREE_TYPE (expr));
861 return fold (build1 (NOP_EXPR, c_size_type_node, t));
864 /* Return either DECL or its known constant value (if it has one). */
866 tree
867 decl_constant_value (decl)
868 tree decl;
870 if (/* Don't change a variable array bound or initial value to a constant
871 in a place where a variable is invalid. */
872 current_function_decl != 0
873 && ! TREE_THIS_VOLATILE (decl)
874 && TREE_READONLY (decl)
875 && DECL_INITIAL (decl) != 0
876 && TREE_CODE (DECL_INITIAL (decl)) != ERROR_MARK
877 /* This is invalid if initial value is not constant.
878 If it has either a function call, a memory reference,
879 or a variable, then re-evaluating it could give different results. */
880 && TREE_CONSTANT (DECL_INITIAL (decl))
881 /* Check for cases where this is sub-optimal, even though valid. */
882 && TREE_CODE (DECL_INITIAL (decl)) != CONSTRUCTOR)
883 return DECL_INITIAL (decl);
884 return decl;
887 /* Return either DECL or its known constant value (if it has one), but
888 return DECL if pedantic or DECL has mode BLKmode. This is for
889 bug-compatibility with the old behavior of decl_constant_value
890 (before GCC 3.0); every use of this function is a bug and it should
891 be removed before GCC 3.1. It is not appropriate to use pedantic
892 in a way that affects optimization, and BLKmode is probably not the
893 right test for avoiding misoptimizations either. */
895 static tree
896 decl_constant_value_for_broken_optimization (decl)
897 tree decl;
899 if (pedantic || DECL_MODE (decl) == BLKmode)
900 return decl;
901 else
902 return decl_constant_value (decl);
905 /* Perform default promotions for C data used in expressions.
906 Arrays and functions are converted to pointers;
907 enumeral types or short or char, to int.
908 In addition, manifest constants symbols are replaced by their values. */
910 tree
911 default_conversion (exp)
912 tree exp;
914 register tree type = TREE_TYPE (exp);
915 register enum tree_code code = TREE_CODE (type);
917 /* Constants can be used directly unless they're not loadable. */
918 if (TREE_CODE (exp) == CONST_DECL)
919 exp = DECL_INITIAL (exp);
921 /* Replace a nonvolatile const static variable with its value unless
922 it is an array, in which case we must be sure that taking the
923 address of the array produces consistent results. */
924 else if (optimize && TREE_CODE (exp) == VAR_DECL && code != ARRAY_TYPE)
926 exp = decl_constant_value_for_broken_optimization (exp);
927 type = TREE_TYPE (exp);
930 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
931 an lvalue.
933 Do not use STRIP_NOPS here! It will remove conversions from pointer
934 to integer and cause infinite recursion. */
935 while (TREE_CODE (exp) == NON_LVALUE_EXPR
936 || (TREE_CODE (exp) == NOP_EXPR
937 && TREE_TYPE (TREE_OPERAND (exp, 0)) == TREE_TYPE (exp)))
938 exp = TREE_OPERAND (exp, 0);
940 /* Normally convert enums to int,
941 but convert wide enums to something wider. */
942 if (code == ENUMERAL_TYPE)
944 type = type_for_size (MAX (TYPE_PRECISION (type),
945 TYPE_PRECISION (integer_type_node)),
946 ((flag_traditional
947 || (TYPE_PRECISION (type)
948 >= TYPE_PRECISION (integer_type_node)))
949 && TREE_UNSIGNED (type)));
951 return convert (type, exp);
954 if (TREE_CODE (exp) == COMPONENT_REF
955 && DECL_C_BIT_FIELD (TREE_OPERAND (exp, 1))
956 /* If it's thinner than an int, promote it like a
957 c_promoting_integer_type_p, otherwise leave it alone. */
958 && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp, 1)),
959 TYPE_PRECISION (integer_type_node)))
960 return convert (flag_traditional && TREE_UNSIGNED (type)
961 ? unsigned_type_node : integer_type_node,
962 exp);
964 if (c_promoting_integer_type_p (type))
966 /* Traditionally, unsignedness is preserved in default promotions.
967 Also preserve unsignedness if not really getting any wider. */
968 if (TREE_UNSIGNED (type)
969 && (flag_traditional
970 || TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)))
971 return convert (unsigned_type_node, exp);
973 return convert (integer_type_node, exp);
976 if (flag_traditional && !flag_allow_single_precision
977 && TYPE_MAIN_VARIANT (type) == float_type_node)
978 return convert (double_type_node, exp);
980 if (code == VOID_TYPE)
982 error ("void value not ignored as it ought to be");
983 return error_mark_node;
985 if (code == FUNCTION_TYPE)
987 return build_unary_op (ADDR_EXPR, exp, 0);
989 if (code == ARRAY_TYPE)
991 register tree adr;
992 tree restype = TREE_TYPE (type);
993 tree ptrtype;
994 int constp = 0;
995 int volatilep = 0;
997 if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'r' || DECL_P (exp))
999 constp = TREE_READONLY (exp);
1000 volatilep = TREE_THIS_VOLATILE (exp);
1003 if (TYPE_QUALS (type) || constp || volatilep)
1004 restype
1005 = c_build_qualified_type (restype,
1006 TYPE_QUALS (type)
1007 | (constp * TYPE_QUAL_CONST)
1008 | (volatilep * TYPE_QUAL_VOLATILE));
1010 if (TREE_CODE (exp) == INDIRECT_REF)
1011 return convert (TYPE_POINTER_TO (restype),
1012 TREE_OPERAND (exp, 0));
1014 if (TREE_CODE (exp) == COMPOUND_EXPR)
1016 tree op1 = default_conversion (TREE_OPERAND (exp, 1));
1017 return build (COMPOUND_EXPR, TREE_TYPE (op1),
1018 TREE_OPERAND (exp, 0), op1);
1021 if (! lvalue_p (exp)
1022 && ! (TREE_CODE (exp) == CONSTRUCTOR && TREE_STATIC (exp)))
1024 error ("invalid use of non-lvalue array");
1025 return error_mark_node;
1028 ptrtype = build_pointer_type (restype);
1030 if (TREE_CODE (exp) == VAR_DECL)
1032 /* ??? This is not really quite correct
1033 in that the type of the operand of ADDR_EXPR
1034 is not the target type of the type of the ADDR_EXPR itself.
1035 Question is, can this lossage be avoided? */
1036 adr = build1 (ADDR_EXPR, ptrtype, exp);
1037 if (mark_addressable (exp) == 0)
1038 return error_mark_node;
1039 TREE_CONSTANT (adr) = staticp (exp);
1040 TREE_SIDE_EFFECTS (adr) = 0; /* Default would be, same as EXP. */
1041 return adr;
1043 /* This way is better for a COMPONENT_REF since it can
1044 simplify the offset for a component. */
1045 adr = build_unary_op (ADDR_EXPR, exp, 1);
1046 return convert (ptrtype, adr);
1048 return exp;
1051 /* Look up component name in the structure type definition.
1053 If this component name is found indirectly within an anonymous union,
1054 store in *INDIRECT the component which directly contains
1055 that anonymous union. Otherwise, set *INDIRECT to 0. */
1057 static tree
1058 lookup_field (type, component, indirect)
1059 tree type, component;
1060 tree *indirect;
1062 tree field;
1064 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1065 to the field elements. Use a binary search on this array to quickly
1066 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
1067 will always be set for structures which have many elements. */
1069 if (TYPE_LANG_SPECIFIC (type))
1071 int bot, top, half;
1072 tree *field_array = &TYPE_LANG_SPECIFIC (type)->elts[0];
1074 field = TYPE_FIELDS (type);
1075 bot = 0;
1076 top = TYPE_LANG_SPECIFIC (type)->len;
1077 while (top - bot > 1)
1079 half = (top - bot + 1) >> 1;
1080 field = field_array[bot+half];
1082 if (DECL_NAME (field) == NULL_TREE)
1084 /* Step through all anon unions in linear fashion. */
1085 while (DECL_NAME (field_array[bot]) == NULL_TREE)
1087 tree anon = 0, junk;
1089 field = field_array[bot++];
1090 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1091 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1092 anon = lookup_field (TREE_TYPE (field), component, &junk);
1094 if (anon != NULL_TREE)
1096 *indirect = field;
1097 return anon;
1101 /* Entire record is only anon unions. */
1102 if (bot > top)
1103 return NULL_TREE;
1105 /* Restart the binary search, with new lower bound. */
1106 continue;
1109 if (DECL_NAME (field) == component)
1110 break;
1111 if (DECL_NAME (field) < component)
1112 bot += half;
1113 else
1114 top = bot + half;
1117 if (DECL_NAME (field_array[bot]) == component)
1118 field = field_array[bot];
1119 else if (DECL_NAME (field) != component)
1120 field = 0;
1122 else
1124 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
1126 if (DECL_NAME (field) == NULL_TREE)
1128 tree junk;
1129 tree anon = 0;
1131 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1132 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1133 anon = lookup_field (TREE_TYPE (field), component, &junk);
1135 if (anon != NULL_TREE)
1137 *indirect = field;
1138 return anon;
1142 if (DECL_NAME (field) == component)
1143 break;
1147 *indirect = NULL_TREE;
1148 return field;
1151 /* Make an expression to refer to the COMPONENT field of
1152 structure or union value DATUM. COMPONENT is an IDENTIFIER_NODE. */
1154 tree
1155 build_component_ref (datum, component)
1156 tree datum, component;
1158 register tree type = TREE_TYPE (datum);
1159 register enum tree_code code = TREE_CODE (type);
1160 register tree field = NULL;
1161 register tree ref;
1163 /* If DATUM is a COMPOUND_EXPR or COND_EXPR, move our reference inside it
1164 unless we are not to support things not strictly ANSI. */
1165 switch (TREE_CODE (datum))
1167 case COMPOUND_EXPR:
1169 tree value = build_component_ref (TREE_OPERAND (datum, 1), component);
1170 return build (COMPOUND_EXPR, TREE_TYPE (value),
1171 TREE_OPERAND (datum, 0), value);
1173 case COND_EXPR:
1174 return build_conditional_expr
1175 (TREE_OPERAND (datum, 0),
1176 build_component_ref (TREE_OPERAND (datum, 1), component),
1177 build_component_ref (TREE_OPERAND (datum, 2), component));
1179 default:
1180 break;
1183 /* See if there is a field or component with name COMPONENT. */
1185 if (code == RECORD_TYPE || code == UNION_TYPE)
1187 tree indirect = 0;
1189 if (!COMPLETE_TYPE_P (type))
1191 incomplete_type_error (NULL_TREE, type);
1192 return error_mark_node;
1195 field = lookup_field (type, component, &indirect);
1197 if (!field)
1199 error ("%s has no member named `%s'",
1200 code == RECORD_TYPE ? "structure" : "union",
1201 IDENTIFIER_POINTER (component));
1202 return error_mark_node;
1204 if (TREE_TYPE (field) == error_mark_node)
1205 return error_mark_node;
1207 /* If FIELD was found buried within an anonymous union,
1208 make one COMPONENT_REF to get that anonymous union,
1209 then fall thru to make a second COMPONENT_REF to get FIELD. */
1210 if (indirect != 0)
1212 ref = build (COMPONENT_REF, TREE_TYPE (indirect), datum, indirect);
1213 if (TREE_READONLY (datum) || TREE_READONLY (indirect))
1214 TREE_READONLY (ref) = 1;
1215 if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (indirect))
1216 TREE_THIS_VOLATILE (ref) = 1;
1217 datum = ref;
1220 ref = build (COMPONENT_REF, TREE_TYPE (field), datum, field);
1222 if (TREE_READONLY (datum) || TREE_READONLY (field))
1223 TREE_READONLY (ref) = 1;
1224 if (TREE_THIS_VOLATILE (datum) || TREE_THIS_VOLATILE (field))
1225 TREE_THIS_VOLATILE (ref) = 1;
1227 return ref;
1229 else if (code != ERROR_MARK)
1230 error ("request for member `%s' in something not a structure or union",
1231 IDENTIFIER_POINTER (component));
1233 return error_mark_node;
1236 /* Given an expression PTR for a pointer, return an expression
1237 for the value pointed to.
1238 ERRORSTRING is the name of the operator to appear in error messages. */
1240 tree
1241 build_indirect_ref (ptr, errorstring)
1242 tree ptr;
1243 const char *errorstring;
1245 register tree pointer = default_conversion (ptr);
1246 register tree type = TREE_TYPE (pointer);
1248 if (TREE_CODE (type) == POINTER_TYPE)
1250 if (TREE_CODE (pointer) == ADDR_EXPR
1251 && !flag_volatile
1252 && (TREE_TYPE (TREE_OPERAND (pointer, 0))
1253 == TREE_TYPE (type)))
1254 return TREE_OPERAND (pointer, 0);
1255 else
1257 tree t = TREE_TYPE (type);
1258 register tree ref = build1 (INDIRECT_REF,
1259 TYPE_MAIN_VARIANT (t), pointer);
1261 if (!COMPLETE_OR_VOID_TYPE_P (t) && TREE_CODE (t) != ARRAY_TYPE)
1263 error ("dereferencing pointer to incomplete type");
1264 return error_mark_node;
1266 if (VOID_TYPE_P (t) && skip_evaluation == 0)
1267 warning ("dereferencing `void *' pointer");
1269 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
1270 so that we get the proper error message if the result is used
1271 to assign to. Also, &* is supposed to be a no-op.
1272 And ANSI C seems to specify that the type of the result
1273 should be the const type. */
1274 /* A de-reference of a pointer to const is not a const. It is valid
1275 to change it via some other pointer. */
1276 TREE_READONLY (ref) = TYPE_READONLY (t);
1277 TREE_SIDE_EFFECTS (ref)
1278 = TYPE_VOLATILE (t) || TREE_SIDE_EFFECTS (pointer) || flag_volatile;
1279 TREE_THIS_VOLATILE (ref) = TYPE_VOLATILE (t);
1280 return ref;
1283 else if (TREE_CODE (pointer) != ERROR_MARK)
1284 error ("invalid type argument of `%s'", errorstring);
1285 return error_mark_node;
1288 /* This handles expressions of the form "a[i]", which denotes
1289 an array reference.
1291 This is logically equivalent in C to *(a+i), but we may do it differently.
1292 If A is a variable or a member, we generate a primitive ARRAY_REF.
1293 This avoids forcing the array out of registers, and can work on
1294 arrays that are not lvalues (for example, members of structures returned
1295 by functions). */
1297 tree
1298 build_array_ref (array, index)
1299 tree array, index;
1301 if (index == 0)
1303 error ("subscript missing in array reference");
1304 return error_mark_node;
1307 if (TREE_TYPE (array) == error_mark_node
1308 || TREE_TYPE (index) == error_mark_node)
1309 return error_mark_node;
1311 if (TREE_CODE (TREE_TYPE (array)) == ARRAY_TYPE
1312 && TREE_CODE (array) != INDIRECT_REF)
1314 tree rval, type;
1316 /* Subscripting with type char is likely to lose
1317 on a machine where chars are signed.
1318 So warn on any machine, but optionally.
1319 Don't warn for unsigned char since that type is safe.
1320 Don't warn for signed char because anyone who uses that
1321 must have done so deliberately. */
1322 if (warn_char_subscripts
1323 && TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node)
1324 warning ("array subscript has type `char'");
1326 /* Apply default promotions *after* noticing character types. */
1327 index = default_conversion (index);
1329 /* Require integer *after* promotion, for sake of enums. */
1330 if (TREE_CODE (TREE_TYPE (index)) != INTEGER_TYPE)
1332 error ("array subscript is not an integer");
1333 return error_mark_node;
1336 /* An array that is indexed by a non-constant
1337 cannot be stored in a register; we must be able to do
1338 address arithmetic on its address.
1339 Likewise an array of elements of variable size. */
1340 if (TREE_CODE (index) != INTEGER_CST
1341 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array)))
1342 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array)))) != INTEGER_CST))
1344 if (mark_addressable (array) == 0)
1345 return error_mark_node;
1347 /* An array that is indexed by a constant value which is not within
1348 the array bounds cannot be stored in a register either; because we
1349 would get a crash in store_bit_field/extract_bit_field when trying
1350 to access a non-existent part of the register. */
1351 if (TREE_CODE (index) == INTEGER_CST
1352 && TYPE_VALUES (TREE_TYPE (array))
1353 && ! int_fits_type_p (index, TYPE_VALUES (TREE_TYPE (array))))
1355 if (mark_addressable (array) == 0)
1356 return error_mark_node;
1359 if (pedantic)
1361 tree foo = array;
1362 while (TREE_CODE (foo) == COMPONENT_REF)
1363 foo = TREE_OPERAND (foo, 0);
1364 if (TREE_CODE (foo) == VAR_DECL && DECL_REGISTER (foo))
1365 pedwarn ("ISO C forbids subscripting `register' array");
1366 else if (! flag_isoc99 && ! lvalue_p (foo))
1367 pedwarn ("ISO C89 forbids subscripting non-lvalue array");
1370 type = TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (array)));
1371 rval = build (ARRAY_REF, type, array, index);
1372 /* Array ref is const/volatile if the array elements are
1373 or if the array is. */
1374 TREE_READONLY (rval)
1375 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array)))
1376 | TREE_READONLY (array));
1377 TREE_SIDE_EFFECTS (rval)
1378 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
1379 | TREE_SIDE_EFFECTS (array));
1380 TREE_THIS_VOLATILE (rval)
1381 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array)))
1382 /* This was added by rms on 16 Nov 91.
1383 It fixes vol struct foo *a; a->elts[1]
1384 in an inline function.
1385 Hope it doesn't break something else. */
1386 | TREE_THIS_VOLATILE (array));
1387 return require_complete_type (fold (rval));
1391 tree ar = default_conversion (array);
1392 tree ind = default_conversion (index);
1394 /* Do the same warning check as above, but only on the part that's
1395 syntactically the index and only if it is also semantically
1396 the index. */
1397 if (warn_char_subscripts
1398 && TREE_CODE (TREE_TYPE (index)) == INTEGER_TYPE
1399 && TYPE_MAIN_VARIANT (TREE_TYPE (index)) == char_type_node)
1400 warning ("subscript has type `char'");
1402 /* Put the integer in IND to simplify error checking. */
1403 if (TREE_CODE (TREE_TYPE (ar)) == INTEGER_TYPE)
1405 tree temp = ar;
1406 ar = ind;
1407 ind = temp;
1410 if (ar == error_mark_node)
1411 return ar;
1413 if (TREE_CODE (TREE_TYPE (ar)) != POINTER_TYPE
1414 || TREE_CODE (TREE_TYPE (TREE_TYPE (ar))) == FUNCTION_TYPE)
1416 error ("subscripted value is neither array nor pointer");
1417 return error_mark_node;
1419 if (TREE_CODE (TREE_TYPE (ind)) != INTEGER_TYPE)
1421 error ("array subscript is not an integer");
1422 return error_mark_node;
1425 return build_indirect_ref (build_binary_op (PLUS_EXPR, ar, ind, 0),
1426 "array indexing");
1430 /* Build an external reference to identifier ID. FUN indicates
1431 whether this will be used for a function call. */
1432 tree
1433 build_external_ref (id, fun)
1434 tree id;
1435 int fun;
1437 tree ref;
1438 tree decl = lookup_name (id);
1439 tree objc_ivar = lookup_objc_ivar (id);
1441 if (!decl || decl == error_mark_node || C_DECL_ANTICIPATED (decl))
1443 if (objc_ivar)
1444 ref = objc_ivar;
1445 else if (fun)
1447 if (!decl || decl == error_mark_node)
1448 /* Ordinary implicit function declaration. */
1449 ref = implicitly_declare (id);
1450 else
1452 /* Implicit declaration of built-in function. Don't
1453 change the built-in declaration, but don't let this
1454 go by silently, either. */
1455 implicit_decl_warning (id);
1457 /* only issue this warning once */
1458 C_DECL_ANTICIPATED (decl) = 0;
1459 ref = decl;
1462 else
1464 /* Reference to undeclared variable, including reference to
1465 builtin outside of function-call context. */
1466 if (current_function_decl == 0)
1467 error ("`%s' undeclared here (not in a function)",
1468 IDENTIFIER_POINTER (id));
1469 else
1471 if (IDENTIFIER_GLOBAL_VALUE (id) != error_mark_node
1472 || IDENTIFIER_ERROR_LOCUS (id) != current_function_decl)
1474 error ("`%s' undeclared (first use in this function)",
1475 IDENTIFIER_POINTER (id));
1477 if (! undeclared_variable_notice)
1479 error ("(Each undeclared identifier is reported only once");
1480 error ("for each function it appears in.)");
1481 undeclared_variable_notice = 1;
1484 IDENTIFIER_GLOBAL_VALUE (id) = error_mark_node;
1485 IDENTIFIER_ERROR_LOCUS (id) = current_function_decl;
1487 return error_mark_node;
1490 else
1492 /* Properly declared variable or function reference. */
1493 if (!objc_ivar)
1494 ref = decl;
1495 else if (decl != objc_ivar && IDENTIFIER_LOCAL_VALUE (id))
1497 warning ("local declaration of `%s' hides instance variable",
1498 IDENTIFIER_POINTER (id));
1499 ref = decl;
1501 else
1502 ref = objc_ivar;
1505 if (TREE_TYPE (ref) == error_mark_node)
1506 return error_mark_node;
1508 assemble_external (ref);
1509 TREE_USED (ref) = 1;
1511 if (TREE_CODE (ref) == CONST_DECL)
1513 ref = DECL_INITIAL (ref);
1514 TREE_CONSTANT (ref) = 1;
1517 return ref;
1520 /* Build a function call to function FUNCTION with parameters PARAMS.
1521 PARAMS is a list--a chain of TREE_LIST nodes--in which the
1522 TREE_VALUE of each node is a parameter-expression.
1523 FUNCTION's data type may be a function type or a pointer-to-function. */
1525 tree
1526 build_function_call (function, params)
1527 tree function, params;
1529 register tree fntype, fundecl = 0;
1530 register tree coerced_params;
1531 tree name = NULL_TREE, assembler_name = NULL_TREE, result;
1533 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
1534 STRIP_TYPE_NOPS (function);
1536 /* Convert anything with function type to a pointer-to-function. */
1537 if (TREE_CODE (function) == FUNCTION_DECL)
1539 name = DECL_NAME (function);
1540 assembler_name = DECL_ASSEMBLER_NAME (function);
1542 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
1543 (because calling an inline function does not mean the function
1544 needs to be separately compiled). */
1545 fntype = build_type_variant (TREE_TYPE (function),
1546 TREE_READONLY (function),
1547 TREE_THIS_VOLATILE (function));
1548 fundecl = function;
1549 function = build1 (ADDR_EXPR, build_pointer_type (fntype), function);
1551 else
1552 function = default_conversion (function);
1554 fntype = TREE_TYPE (function);
1556 if (TREE_CODE (fntype) == ERROR_MARK)
1557 return error_mark_node;
1559 if (!(TREE_CODE (fntype) == POINTER_TYPE
1560 && TREE_CODE (TREE_TYPE (fntype)) == FUNCTION_TYPE))
1562 error ("called object is not a function");
1563 return error_mark_node;
1566 /* fntype now gets the type of function pointed to. */
1567 fntype = TREE_TYPE (fntype);
1569 /* Convert the parameters to the types declared in the
1570 function prototype, or apply default promotions. */
1572 coerced_params
1573 = convert_arguments (TYPE_ARG_TYPES (fntype), params, name, fundecl);
1575 /* Check for errors in format strings. */
1577 if (warn_format && (name || assembler_name))
1578 check_function_format (NULL, name, assembler_name, coerced_params);
1580 /* Recognize certain built-in functions so we can make tree-codes
1581 other than CALL_EXPR. We do this when it enables fold-const.c
1582 to do something useful. */
1584 if (TREE_CODE (function) == ADDR_EXPR
1585 && TREE_CODE (TREE_OPERAND (function, 0)) == FUNCTION_DECL
1586 && DECL_BUILT_IN (TREE_OPERAND (function, 0)))
1588 result = expand_tree_builtin (TREE_OPERAND (function, 0),
1589 params, coerced_params);
1590 if (result)
1591 return result;
1594 result = build (CALL_EXPR, TREE_TYPE (fntype),
1595 function, coerced_params, NULL_TREE);
1596 TREE_SIDE_EFFECTS (result) = 1;
1597 result = fold (result);
1599 if (VOID_TYPE_P (TREE_TYPE (result)))
1600 return result;
1601 return require_complete_type (result);
1604 /* Convert the argument expressions in the list VALUES
1605 to the types in the list TYPELIST. The result is a list of converted
1606 argument expressions.
1608 If TYPELIST is exhausted, or when an element has NULL as its type,
1609 perform the default conversions.
1611 PARMLIST is the chain of parm decls for the function being called.
1612 It may be 0, if that info is not available.
1613 It is used only for generating error messages.
1615 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
1617 This is also where warnings about wrong number of args are generated.
1619 Both VALUES and the returned value are chains of TREE_LIST nodes
1620 with the elements of the list in the TREE_VALUE slots of those nodes. */
1622 static tree
1623 convert_arguments (typelist, values, name, fundecl)
1624 tree typelist, values, name, fundecl;
1626 register tree typetail, valtail;
1627 register tree result = NULL;
1628 int parmnum;
1630 /* Scan the given expressions and types, producing individual
1631 converted arguments and pushing them on RESULT in reverse order. */
1633 for (valtail = values, typetail = typelist, parmnum = 0;
1634 valtail;
1635 valtail = TREE_CHAIN (valtail), parmnum++)
1637 register tree type = typetail ? TREE_VALUE (typetail) : 0;
1638 register tree val = TREE_VALUE (valtail);
1640 if (type == void_type_node)
1642 if (name)
1643 error ("too many arguments to function `%s'",
1644 IDENTIFIER_POINTER (name));
1645 else
1646 error ("too many arguments to function");
1647 break;
1650 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
1651 /* Do not use STRIP_NOPS here! We do not want an enumerator with value 0
1652 to convert automatically to a pointer. */
1653 if (TREE_CODE (val) == NON_LVALUE_EXPR)
1654 val = TREE_OPERAND (val, 0);
1656 if (TREE_CODE (TREE_TYPE (val)) == ARRAY_TYPE
1657 || TREE_CODE (TREE_TYPE (val)) == FUNCTION_TYPE)
1658 val = default_conversion (val);
1660 val = require_complete_type (val);
1662 if (type != 0)
1664 /* Formal parm type is specified by a function prototype. */
1665 tree parmval;
1667 if (!COMPLETE_TYPE_P (type))
1669 error ("type of formal parameter %d is incomplete", parmnum + 1);
1670 parmval = val;
1672 else
1674 /* Optionally warn about conversions that
1675 differ from the default conversions. */
1676 if (warn_conversion || warn_traditional)
1678 int formal_prec = TYPE_PRECISION (type);
1680 if (INTEGRAL_TYPE_P (type)
1681 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1682 warn_for_assignment ("%s as integer rather than floating due to prototype", (char *) 0, name, parmnum + 1);
1683 if (INTEGRAL_TYPE_P (type)
1684 && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
1685 warn_for_assignment ("%s as integer rather than complex due to prototype", (char *) 0, name, parmnum + 1);
1686 else if (TREE_CODE (type) == COMPLEX_TYPE
1687 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1688 warn_for_assignment ("%s as complex rather than floating due to prototype", (char *) 0, name, parmnum + 1);
1689 else if (TREE_CODE (type) == REAL_TYPE
1690 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
1691 warn_for_assignment ("%s as floating rather than integer due to prototype", (char *) 0, name, parmnum + 1);
1692 else if (TREE_CODE (type) == COMPLEX_TYPE
1693 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
1694 warn_for_assignment ("%s as complex rather than integer due to prototype", (char *) 0, name, parmnum + 1);
1695 else if (TREE_CODE (type) == REAL_TYPE
1696 && TREE_CODE (TREE_TYPE (val)) == COMPLEX_TYPE)
1697 warn_for_assignment ("%s as floating rather than complex due to prototype", (char *) 0, name, parmnum + 1);
1698 /* ??? At some point, messages should be written about
1699 conversions between complex types, but that's too messy
1700 to do now. */
1701 else if (TREE_CODE (type) == REAL_TYPE
1702 && TREE_CODE (TREE_TYPE (val)) == REAL_TYPE)
1704 /* Warn if any argument is passed as `float',
1705 since without a prototype it would be `double'. */
1706 if (formal_prec == TYPE_PRECISION (float_type_node))
1707 warn_for_assignment ("%s as `float' rather than `double' due to prototype", (char *) 0, name, parmnum + 1);
1709 /* Detect integer changing in width or signedness.
1710 These warnings are only activated with
1711 -Wconversion, not with -Wtraditional. */
1712 else if (warn_conversion && INTEGRAL_TYPE_P (type)
1713 && INTEGRAL_TYPE_P (TREE_TYPE (val)))
1715 tree would_have_been = default_conversion (val);
1716 tree type1 = TREE_TYPE (would_have_been);
1718 if (TREE_CODE (type) == ENUMERAL_TYPE
1719 && type == TREE_TYPE (val))
1720 /* No warning if function asks for enum
1721 and the actual arg is that enum type. */
1723 else if (formal_prec != TYPE_PRECISION (type1))
1724 warn_for_assignment ("%s with different width due to prototype", (char *) 0, name, parmnum + 1);
1725 else if (TREE_UNSIGNED (type) == TREE_UNSIGNED (type1))
1727 /* Don't complain if the formal parameter type
1728 is an enum, because we can't tell now whether
1729 the value was an enum--even the same enum. */
1730 else if (TREE_CODE (type) == ENUMERAL_TYPE)
1732 else if (TREE_CODE (val) == INTEGER_CST
1733 && int_fits_type_p (val, type))
1734 /* Change in signedness doesn't matter
1735 if a constant value is unaffected. */
1737 /* Likewise for a constant in a NOP_EXPR. */
1738 else if (TREE_CODE (val) == NOP_EXPR
1739 && TREE_CODE (TREE_OPERAND (val, 0)) == INTEGER_CST
1740 && int_fits_type_p (TREE_OPERAND (val, 0), type))
1742 #if 0 /* We never get such tree structure here. */
1743 else if (TREE_CODE (TREE_TYPE (val)) == ENUMERAL_TYPE
1744 && int_fits_type_p (TYPE_MIN_VALUE (TREE_TYPE (val)), type)
1745 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (val)), type))
1746 /* Change in signedness doesn't matter
1747 if an enum value is unaffected. */
1749 #endif
1750 /* If the value is extended from a narrower
1751 unsigned type, it doesn't matter whether we
1752 pass it as signed or unsigned; the value
1753 certainly is the same either way. */
1754 else if (TYPE_PRECISION (TREE_TYPE (val)) < TYPE_PRECISION (type)
1755 && TREE_UNSIGNED (TREE_TYPE (val)))
1757 else if (TREE_UNSIGNED (type))
1758 warn_for_assignment ("%s as unsigned due to prototype", (char *) 0, name, parmnum + 1);
1759 else
1760 warn_for_assignment ("%s as signed due to prototype", (char *) 0, name, parmnum + 1);
1764 parmval = convert_for_assignment (type, val,
1765 (char *) 0, /* arg passing */
1766 fundecl, name, parmnum + 1);
1768 if (PROMOTE_PROTOTYPES
1769 && (TREE_CODE (type) == INTEGER_TYPE
1770 || TREE_CODE (type) == ENUMERAL_TYPE
1771 || TREE_CODE (type) == BOOLEAN_TYPE)
1772 && (TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node)))
1773 parmval = default_conversion (parmval);
1775 result = tree_cons (NULL_TREE, parmval, result);
1777 else if (TREE_CODE (TREE_TYPE (val)) == REAL_TYPE
1778 && (TYPE_PRECISION (TREE_TYPE (val))
1779 < TYPE_PRECISION (double_type_node)))
1780 /* Convert `float' to `double'. */
1781 result = tree_cons (NULL_TREE, convert (double_type_node, val), result);
1782 else
1783 /* Convert `short' and `char' to full-size `int'. */
1784 result = tree_cons (NULL_TREE, default_conversion (val), result);
1786 if (typetail)
1787 typetail = TREE_CHAIN (typetail);
1790 if (typetail != 0 && TREE_VALUE (typetail) != void_type_node)
1792 if (name)
1793 error ("too few arguments to function `%s'",
1794 IDENTIFIER_POINTER (name));
1795 else
1796 error ("too few arguments to function");
1799 return nreverse (result);
1802 /* This is the entry point used by the parser
1803 for binary operators in the input.
1804 In addition to constructing the expression,
1805 we check for operands that were written with other binary operators
1806 in a way that is likely to confuse the user. */
1808 tree
1809 parser_build_binary_op (code, arg1, arg2)
1810 enum tree_code code;
1811 tree arg1, arg2;
1813 tree result = build_binary_op (code, arg1, arg2, 1);
1815 char class;
1816 char class1 = TREE_CODE_CLASS (TREE_CODE (arg1));
1817 char class2 = TREE_CODE_CLASS (TREE_CODE (arg2));
1818 enum tree_code code1 = ERROR_MARK;
1819 enum tree_code code2 = ERROR_MARK;
1821 if (class1 == 'e' || class1 == '1'
1822 || class1 == '2' || class1 == '<')
1823 code1 = C_EXP_ORIGINAL_CODE (arg1);
1824 if (class2 == 'e' || class2 == '1'
1825 || class2 == '2' || class2 == '<')
1826 code2 = C_EXP_ORIGINAL_CODE (arg2);
1828 /* Check for cases such as x+y<<z which users are likely
1829 to misinterpret. If parens are used, C_EXP_ORIGINAL_CODE
1830 is cleared to prevent these warnings. */
1831 if (warn_parentheses)
1833 if (code == LSHIFT_EXPR || code == RSHIFT_EXPR)
1835 if (code1 == PLUS_EXPR || code1 == MINUS_EXPR
1836 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1837 warning ("suggest parentheses around + or - inside shift");
1840 if (code == TRUTH_ORIF_EXPR)
1842 if (code1 == TRUTH_ANDIF_EXPR
1843 || code2 == TRUTH_ANDIF_EXPR)
1844 warning ("suggest parentheses around && within ||");
1847 if (code == BIT_IOR_EXPR)
1849 if (code1 == BIT_AND_EXPR || code1 == BIT_XOR_EXPR
1850 || code1 == PLUS_EXPR || code1 == MINUS_EXPR
1851 || code2 == BIT_AND_EXPR || code2 == BIT_XOR_EXPR
1852 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1853 warning ("suggest parentheses around arithmetic in operand of |");
1854 /* Check cases like x|y==z */
1855 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1856 warning ("suggest parentheses around comparison in operand of |");
1859 if (code == BIT_XOR_EXPR)
1861 if (code1 == BIT_AND_EXPR
1862 || code1 == PLUS_EXPR || code1 == MINUS_EXPR
1863 || code2 == BIT_AND_EXPR
1864 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1865 warning ("suggest parentheses around arithmetic in operand of ^");
1866 /* Check cases like x^y==z */
1867 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1868 warning ("suggest parentheses around comparison in operand of ^");
1871 if (code == BIT_AND_EXPR)
1873 if (code1 == PLUS_EXPR || code1 == MINUS_EXPR
1874 || code2 == PLUS_EXPR || code2 == MINUS_EXPR)
1875 warning ("suggest parentheses around + or - in operand of &");
1876 /* Check cases like x&y==z */
1877 if (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<')
1878 warning ("suggest parentheses around comparison in operand of &");
1882 /* Similarly, check for cases like 1<=i<=10 that are probably errors. */
1883 if (TREE_CODE_CLASS (code) == '<' && extra_warnings
1884 && (TREE_CODE_CLASS (code1) == '<' || TREE_CODE_CLASS (code2) == '<'))
1885 warning ("comparisons like X<=Y<=Z do not have their mathematical meaning");
1887 unsigned_conversion_warning (result, arg1);
1888 unsigned_conversion_warning (result, arg2);
1889 overflow_warning (result);
1891 class = TREE_CODE_CLASS (TREE_CODE (result));
1893 /* Record the code that was specified in the source,
1894 for the sake of warnings about confusing nesting. */
1895 if (class == 'e' || class == '1'
1896 || class == '2' || class == '<')
1897 C_SET_EXP_ORIGINAL_CODE (result, code);
1898 else
1900 int flag = TREE_CONSTANT (result);
1901 /* We used to use NOP_EXPR rather than NON_LVALUE_EXPR
1902 so that convert_for_assignment wouldn't strip it.
1903 That way, we got warnings for things like p = (1 - 1).
1904 But it turns out we should not get those warnings. */
1905 result = build1 (NON_LVALUE_EXPR, TREE_TYPE (result), result);
1906 C_SET_EXP_ORIGINAL_CODE (result, code);
1907 TREE_CONSTANT (result) = flag;
1910 return result;
1913 /* Build a binary-operation expression without default conversions.
1914 CODE is the kind of expression to build.
1915 This function differs from `build' in several ways:
1916 the data type of the result is computed and recorded in it,
1917 warnings are generated if arg data types are invalid,
1918 special handling for addition and subtraction of pointers is known,
1919 and some optimization is done (operations on narrow ints
1920 are done in the narrower type when that gives the same result).
1921 Constant folding is also done before the result is returned.
1923 Note that the operands will never have enumeral types, or function
1924 or array types, because either they will have the default conversions
1925 performed or they have both just been converted to some other type in which
1926 the arithmetic is to be done. */
1928 tree
1929 build_binary_op (code, orig_op0, orig_op1, convert_p)
1930 enum tree_code code;
1931 tree orig_op0, orig_op1;
1932 int convert_p;
1934 tree type0, type1;
1935 register enum tree_code code0, code1;
1936 tree op0, op1;
1938 /* Expression code to give to the expression when it is built.
1939 Normally this is CODE, which is what the caller asked for,
1940 but in some special cases we change it. */
1941 register enum tree_code resultcode = code;
1943 /* Data type in which the computation is to be performed.
1944 In the simplest cases this is the common type of the arguments. */
1945 register tree result_type = NULL;
1947 /* Nonzero means operands have already been type-converted
1948 in whatever way is necessary.
1949 Zero means they need to be converted to RESULT_TYPE. */
1950 int converted = 0;
1952 /* Nonzero means create the expression with this type, rather than
1953 RESULT_TYPE. */
1954 tree build_type = 0;
1956 /* Nonzero means after finally constructing the expression
1957 convert it to this type. */
1958 tree final_type = 0;
1960 /* Nonzero if this is an operation like MIN or MAX which can
1961 safely be computed in short if both args are promoted shorts.
1962 Also implies COMMON.
1963 -1 indicates a bitwise operation; this makes a difference
1964 in the exact conditions for when it is safe to do the operation
1965 in a narrower mode. */
1966 int shorten = 0;
1968 /* Nonzero if this is a comparison operation;
1969 if both args are promoted shorts, compare the original shorts.
1970 Also implies COMMON. */
1971 int short_compare = 0;
1973 /* Nonzero if this is a right-shift operation, which can be computed on the
1974 original short and then promoted if the operand is a promoted short. */
1975 int short_shift = 0;
1977 /* Nonzero means set RESULT_TYPE to the common type of the args. */
1978 int common = 0;
1980 if (convert_p)
1982 op0 = default_conversion (orig_op0);
1983 op1 = default_conversion (orig_op1);
1985 else
1987 op0 = orig_op0;
1988 op1 = orig_op1;
1991 type0 = TREE_TYPE (op0);
1992 type1 = TREE_TYPE (op1);
1994 /* The expression codes of the data types of the arguments tell us
1995 whether the arguments are integers, floating, pointers, etc. */
1996 code0 = TREE_CODE (type0);
1997 code1 = TREE_CODE (type1);
1999 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
2000 STRIP_TYPE_NOPS (op0);
2001 STRIP_TYPE_NOPS (op1);
2003 /* If an error was already reported for one of the arguments,
2004 avoid reporting another error. */
2006 if (code0 == ERROR_MARK || code1 == ERROR_MARK)
2007 return error_mark_node;
2009 switch (code)
2011 case PLUS_EXPR:
2012 /* Handle the pointer + int case. */
2013 if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2014 return pointer_int_sum (PLUS_EXPR, op0, op1);
2015 else if (code1 == POINTER_TYPE && code0 == INTEGER_TYPE)
2016 return pointer_int_sum (PLUS_EXPR, op1, op0);
2017 else
2018 common = 1;
2019 break;
2021 case MINUS_EXPR:
2022 /* Subtraction of two similar pointers.
2023 We must subtract them as integers, then divide by object size. */
2024 if (code0 == POINTER_TYPE && code1 == POINTER_TYPE
2025 && comp_target_types (type0, type1))
2026 return pointer_diff (op0, op1);
2027 /* Handle pointer minus int. Just like pointer plus int. */
2028 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2029 return pointer_int_sum (MINUS_EXPR, op0, op1);
2030 else
2031 common = 1;
2032 break;
2034 case MULT_EXPR:
2035 common = 1;
2036 break;
2038 case TRUNC_DIV_EXPR:
2039 case CEIL_DIV_EXPR:
2040 case FLOOR_DIV_EXPR:
2041 case ROUND_DIV_EXPR:
2042 case EXACT_DIV_EXPR:
2043 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
2044 || code0 == COMPLEX_TYPE)
2045 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
2046 || code1 == COMPLEX_TYPE))
2048 if (!(code0 == INTEGER_TYPE && code1 == INTEGER_TYPE))
2049 resultcode = RDIV_EXPR;
2050 else
2051 /* Although it would be tempting to shorten always here, that
2052 loses on some targets, since the modulo instruction is
2053 undefined if the quotient can't be represented in the
2054 computation mode. We shorten only if unsigned or if
2055 dividing by something we know != -1. */
2056 shorten = (TREE_UNSIGNED (TREE_TYPE (orig_op0))
2057 || (TREE_CODE (op1) == INTEGER_CST
2058 && ! integer_all_onesp (op1)));
2059 common = 1;
2061 break;
2063 case BIT_AND_EXPR:
2064 case BIT_ANDTC_EXPR:
2065 case BIT_IOR_EXPR:
2066 case BIT_XOR_EXPR:
2067 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2068 shorten = -1;
2069 /* If one operand is a constant, and the other is a short type
2070 that has been converted to an int,
2071 really do the work in the short type and then convert the
2072 result to int. If we are lucky, the constant will be 0 or 1
2073 in the short type, making the entire operation go away. */
2074 if (TREE_CODE (op0) == INTEGER_CST
2075 && TREE_CODE (op1) == NOP_EXPR
2076 && TYPE_PRECISION (type1) > TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op1, 0)))
2077 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op1, 0))))
2079 final_type = result_type;
2080 op1 = TREE_OPERAND (op1, 0);
2081 result_type = TREE_TYPE (op1);
2083 if (TREE_CODE (op1) == INTEGER_CST
2084 && TREE_CODE (op0) == NOP_EXPR
2085 && TYPE_PRECISION (type0) > TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (op0, 0)))
2086 && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (op0, 0))))
2088 final_type = result_type;
2089 op0 = TREE_OPERAND (op0, 0);
2090 result_type = TREE_TYPE (op0);
2092 break;
2094 case TRUNC_MOD_EXPR:
2095 case FLOOR_MOD_EXPR:
2096 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2098 /* Although it would be tempting to shorten always here, that loses
2099 on some targets, since the modulo instruction is undefined if the
2100 quotient can't be represented in the computation mode. We shorten
2101 only if unsigned or if dividing by something we know != -1. */
2102 shorten = (TREE_UNSIGNED (TREE_TYPE (orig_op0))
2103 || (TREE_CODE (op1) == INTEGER_CST
2104 && ! integer_all_onesp (op1)));
2105 common = 1;
2107 break;
2109 case TRUTH_ANDIF_EXPR:
2110 case TRUTH_ORIF_EXPR:
2111 case TRUTH_AND_EXPR:
2112 case TRUTH_OR_EXPR:
2113 case TRUTH_XOR_EXPR:
2114 if ((code0 == INTEGER_TYPE || code0 == POINTER_TYPE
2115 || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
2116 && (code1 == INTEGER_TYPE || code1 == POINTER_TYPE
2117 || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
2119 /* Result of these operations is always an int,
2120 but that does not mean the operands should be
2121 converted to ints! */
2122 result_type = integer_type_node;
2123 op0 = truthvalue_conversion (op0);
2124 op1 = truthvalue_conversion (op1);
2125 converted = 1;
2127 break;
2129 /* Shift operations: result has same type as first operand;
2130 always convert second operand to int.
2131 Also set SHORT_SHIFT if shifting rightward. */
2133 case RSHIFT_EXPR:
2134 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2136 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
2138 if (tree_int_cst_sgn (op1) < 0)
2139 warning ("right shift count is negative");
2140 else
2142 if (! integer_zerop (op1))
2143 short_shift = 1;
2145 if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
2146 warning ("right shift count >= width of type");
2150 /* Use the type of the value to be shifted.
2151 This is what most traditional C compilers do. */
2152 result_type = type0;
2153 /* Unless traditional, convert the shift-count to an integer,
2154 regardless of size of value being shifted. */
2155 if (! flag_traditional)
2157 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
2158 op1 = convert (integer_type_node, op1);
2159 /* Avoid converting op1 to result_type later. */
2160 converted = 1;
2163 break;
2165 case LSHIFT_EXPR:
2166 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2168 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
2170 if (tree_int_cst_sgn (op1) < 0)
2171 warning ("left shift count is negative");
2173 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
2174 warning ("left shift count >= width of type");
2177 /* Use the type of the value to be shifted.
2178 This is what most traditional C compilers do. */
2179 result_type = type0;
2180 /* Unless traditional, convert the shift-count to an integer,
2181 regardless of size of value being shifted. */
2182 if (! flag_traditional)
2184 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
2185 op1 = convert (integer_type_node, op1);
2186 /* Avoid converting op1 to result_type later. */
2187 converted = 1;
2190 break;
2192 case RROTATE_EXPR:
2193 case LROTATE_EXPR:
2194 if (code0 == INTEGER_TYPE && code1 == INTEGER_TYPE)
2196 if (TREE_CODE (op1) == INTEGER_CST && skip_evaluation == 0)
2198 if (tree_int_cst_sgn (op1) < 0)
2199 warning ("shift count is negative");
2200 else if (compare_tree_int (op1, TYPE_PRECISION (type0)) >= 0)
2201 warning ("shift count >= width of type");
2204 /* Use the type of the value to be shifted.
2205 This is what most traditional C compilers do. */
2206 result_type = type0;
2207 /* Unless traditional, convert the shift-count to an integer,
2208 regardless of size of value being shifted. */
2209 if (! flag_traditional)
2211 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1)) != integer_type_node)
2212 op1 = convert (integer_type_node, op1);
2213 /* Avoid converting op1 to result_type later. */
2214 converted = 1;
2217 break;
2219 case EQ_EXPR:
2220 case NE_EXPR:
2221 if (warn_float_equal && (code0 == REAL_TYPE || code1 == REAL_TYPE))
2222 warning ("comparing floating point with == or != is unsafe");
2223 /* Result of comparison is always int,
2224 but don't convert the args to int! */
2225 build_type = integer_type_node;
2226 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE
2227 || code0 == COMPLEX_TYPE)
2228 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE
2229 || code1 == COMPLEX_TYPE))
2230 short_compare = 1;
2231 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2233 register tree tt0 = TREE_TYPE (type0);
2234 register tree tt1 = TREE_TYPE (type1);
2235 /* Anything compares with void *. void * compares with anything.
2236 Otherwise, the targets must be compatible
2237 and both must be object or both incomplete. */
2238 if (comp_target_types (type0, type1))
2239 result_type = common_type (type0, type1);
2240 else if (VOID_TYPE_P (tt0))
2242 /* op0 != orig_op0 detects the case of something
2243 whose value is 0 but which isn't a valid null ptr const. */
2244 if (pedantic && (!integer_zerop (op0) || op0 != orig_op0)
2245 && TREE_CODE (tt1) == FUNCTION_TYPE)
2246 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
2248 else if (VOID_TYPE_P (tt1))
2250 if (pedantic && (!integer_zerop (op1) || op1 != orig_op1)
2251 && TREE_CODE (tt0) == FUNCTION_TYPE)
2252 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
2254 else
2255 pedwarn ("comparison of distinct pointer types lacks a cast");
2257 if (result_type == NULL_TREE)
2258 result_type = ptr_type_node;
2260 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
2261 && integer_zerop (op1))
2262 result_type = type0;
2263 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
2264 && integer_zerop (op0))
2265 result_type = type1;
2266 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2268 result_type = type0;
2269 if (! flag_traditional)
2270 pedwarn ("comparison between pointer and integer");
2272 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
2274 result_type = type1;
2275 if (! flag_traditional)
2276 pedwarn ("comparison between pointer and integer");
2278 break;
2280 case MAX_EXPR:
2281 case MIN_EXPR:
2282 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
2283 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
2284 shorten = 1;
2285 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2287 if (comp_target_types (type0, type1))
2289 result_type = common_type (type0, type1);
2290 if (pedantic
2291 && TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
2292 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
2294 else
2296 result_type = ptr_type_node;
2297 pedwarn ("comparison of distinct pointer types lacks a cast");
2300 break;
2302 case LE_EXPR:
2303 case GE_EXPR:
2304 case LT_EXPR:
2305 case GT_EXPR:
2306 build_type = integer_type_node;
2307 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE)
2308 && (code1 == INTEGER_TYPE || code1 == REAL_TYPE))
2309 short_compare = 1;
2310 else if (code0 == POINTER_TYPE && code1 == POINTER_TYPE)
2312 if (comp_target_types (type0, type1))
2314 result_type = common_type (type0, type1);
2315 if (!COMPLETE_TYPE_P (TREE_TYPE (type0))
2316 != !COMPLETE_TYPE_P (TREE_TYPE (type1)))
2317 pedwarn ("comparison of complete and incomplete pointers");
2318 else if (pedantic
2319 && TREE_CODE (TREE_TYPE (type0)) == FUNCTION_TYPE)
2320 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
2322 else
2324 result_type = ptr_type_node;
2325 pedwarn ("comparison of distinct pointer types lacks a cast");
2328 else if (code0 == POINTER_TYPE && TREE_CODE (op1) == INTEGER_CST
2329 && integer_zerop (op1))
2331 result_type = type0;
2332 if (pedantic || extra_warnings)
2333 pedwarn ("ordered comparison of pointer with integer zero");
2335 else if (code1 == POINTER_TYPE && TREE_CODE (op0) == INTEGER_CST
2336 && integer_zerop (op0))
2338 result_type = type1;
2339 if (pedantic)
2340 pedwarn ("ordered comparison of pointer with integer zero");
2342 else if (code0 == POINTER_TYPE && code1 == INTEGER_TYPE)
2344 result_type = type0;
2345 if (! flag_traditional)
2346 pedwarn ("comparison between pointer and integer");
2348 else if (code0 == INTEGER_TYPE && code1 == POINTER_TYPE)
2350 result_type = type1;
2351 if (! flag_traditional)
2352 pedwarn ("comparison between pointer and integer");
2354 break;
2356 case UNORDERED_EXPR:
2357 case ORDERED_EXPR:
2358 case UNLT_EXPR:
2359 case UNLE_EXPR:
2360 case UNGT_EXPR:
2361 case UNGE_EXPR:
2362 case UNEQ_EXPR:
2363 build_type = integer_type_node;
2364 if (code0 != REAL_TYPE || code1 != REAL_TYPE)
2366 error ("unordered comparison on non-floating point argument");
2367 return error_mark_node;
2369 common = 1;
2370 break;
2372 default:
2373 break;
2376 if ((code0 == INTEGER_TYPE || code0 == REAL_TYPE || code0 == COMPLEX_TYPE)
2378 (code1 == INTEGER_TYPE || code1 == REAL_TYPE || code1 == COMPLEX_TYPE))
2380 int none_complex = (code0 != COMPLEX_TYPE && code1 != COMPLEX_TYPE);
2382 if (shorten || common || short_compare)
2383 result_type = common_type (type0, type1);
2385 /* For certain operations (which identify themselves by shorten != 0)
2386 if both args were extended from the same smaller type,
2387 do the arithmetic in that type and then extend.
2389 shorten !=0 and !=1 indicates a bitwise operation.
2390 For them, this optimization is safe only if
2391 both args are zero-extended or both are sign-extended.
2392 Otherwise, we might change the result.
2393 Eg, (short)-1 | (unsigned short)-1 is (int)-1
2394 but calculated in (unsigned short) it would be (unsigned short)-1. */
2396 if (shorten && none_complex)
2398 int unsigned0, unsigned1;
2399 tree arg0 = get_narrower (op0, &unsigned0);
2400 tree arg1 = get_narrower (op1, &unsigned1);
2401 /* UNS is 1 if the operation to be done is an unsigned one. */
2402 int uns = TREE_UNSIGNED (result_type);
2403 tree type;
2405 final_type = result_type;
2407 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
2408 but it *requires* conversion to FINAL_TYPE. */
2410 if ((TYPE_PRECISION (TREE_TYPE (op0))
2411 == TYPE_PRECISION (TREE_TYPE (arg0)))
2412 && TREE_TYPE (op0) != final_type)
2413 unsigned0 = TREE_UNSIGNED (TREE_TYPE (op0));
2414 if ((TYPE_PRECISION (TREE_TYPE (op1))
2415 == TYPE_PRECISION (TREE_TYPE (arg1)))
2416 && TREE_TYPE (op1) != final_type)
2417 unsigned1 = TREE_UNSIGNED (TREE_TYPE (op1));
2419 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
2421 /* For bitwise operations, signedness of nominal type
2422 does not matter. Consider only how operands were extended. */
2423 if (shorten == -1)
2424 uns = unsigned0;
2426 /* Note that in all three cases below we refrain from optimizing
2427 an unsigned operation on sign-extended args.
2428 That would not be valid. */
2430 /* Both args variable: if both extended in same way
2431 from same width, do it in that width.
2432 Do it unsigned if args were zero-extended. */
2433 if ((TYPE_PRECISION (TREE_TYPE (arg0))
2434 < TYPE_PRECISION (result_type))
2435 && (TYPE_PRECISION (TREE_TYPE (arg1))
2436 == TYPE_PRECISION (TREE_TYPE (arg0)))
2437 && unsigned0 == unsigned1
2438 && (unsigned0 || !uns))
2439 result_type
2440 = signed_or_unsigned_type (unsigned0,
2441 common_type (TREE_TYPE (arg0), TREE_TYPE (arg1)));
2442 else if (TREE_CODE (arg0) == INTEGER_CST
2443 && (unsigned1 || !uns)
2444 && (TYPE_PRECISION (TREE_TYPE (arg1))
2445 < TYPE_PRECISION (result_type))
2446 && (type = signed_or_unsigned_type (unsigned1,
2447 TREE_TYPE (arg1)),
2448 int_fits_type_p (arg0, type)))
2449 result_type = type;
2450 else if (TREE_CODE (arg1) == INTEGER_CST
2451 && (unsigned0 || !uns)
2452 && (TYPE_PRECISION (TREE_TYPE (arg0))
2453 < TYPE_PRECISION (result_type))
2454 && (type = signed_or_unsigned_type (unsigned0,
2455 TREE_TYPE (arg0)),
2456 int_fits_type_p (arg1, type)))
2457 result_type = type;
2460 /* Shifts can be shortened if shifting right. */
2462 if (short_shift)
2464 int unsigned_arg;
2465 tree arg0 = get_narrower (op0, &unsigned_arg);
2467 final_type = result_type;
2469 if (arg0 == op0 && final_type == TREE_TYPE (op0))
2470 unsigned_arg = TREE_UNSIGNED (TREE_TYPE (op0));
2472 if (TYPE_PRECISION (TREE_TYPE (arg0)) < TYPE_PRECISION (result_type)
2473 /* We can shorten only if the shift count is less than the
2474 number of bits in the smaller type size. */
2475 && compare_tree_int (op1, TYPE_PRECISION (TREE_TYPE (arg0))) < 0
2476 /* If arg is sign-extended and then unsigned-shifted,
2477 we can simulate this with a signed shift in arg's type
2478 only if the extended result is at least twice as wide
2479 as the arg. Otherwise, the shift could use up all the
2480 ones made by sign-extension and bring in zeros.
2481 We can't optimize that case at all, but in most machines
2482 it never happens because available widths are 2**N. */
2483 && (!TREE_UNSIGNED (final_type)
2484 || unsigned_arg
2485 || (2 * TYPE_PRECISION (TREE_TYPE (arg0))
2486 <= TYPE_PRECISION (result_type))))
2488 /* Do an unsigned shift if the operand was zero-extended. */
2489 result_type
2490 = signed_or_unsigned_type (unsigned_arg,
2491 TREE_TYPE (arg0));
2492 /* Convert value-to-be-shifted to that type. */
2493 if (TREE_TYPE (op0) != result_type)
2494 op0 = convert (result_type, op0);
2495 converted = 1;
2499 /* Comparison operations are shortened too but differently.
2500 They identify themselves by setting short_compare = 1. */
2502 if (short_compare)
2504 /* Don't write &op0, etc., because that would prevent op0
2505 from being kept in a register.
2506 Instead, make copies of the our local variables and
2507 pass the copies by reference, then copy them back afterward. */
2508 tree xop0 = op0, xop1 = op1, xresult_type = result_type;
2509 enum tree_code xresultcode = resultcode;
2510 tree val
2511 = shorten_compare (&xop0, &xop1, &xresult_type, &xresultcode);
2513 if (val != 0)
2514 return val;
2516 op0 = xop0, op1 = xop1;
2517 converted = 1;
2518 resultcode = xresultcode;
2520 if ((warn_sign_compare < 0 ? extra_warnings : warn_sign_compare != 0)
2521 && skip_evaluation == 0)
2523 int op0_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op0));
2524 int op1_signed = ! TREE_UNSIGNED (TREE_TYPE (orig_op1));
2525 int unsignedp0, unsignedp1;
2526 tree primop0 = get_narrower (op0, &unsignedp0);
2527 tree primop1 = get_narrower (op1, &unsignedp1);
2529 xop0 = orig_op0;
2530 xop1 = orig_op1;
2531 STRIP_TYPE_NOPS (xop0);
2532 STRIP_TYPE_NOPS (xop1);
2534 /* Give warnings for comparisons between signed and unsigned
2535 quantities that may fail.
2537 Do the checking based on the original operand trees, so that
2538 casts will be considered, but default promotions won't be.
2540 Do not warn if the comparison is being done in a signed type,
2541 since the signed type will only be chosen if it can represent
2542 all the values of the unsigned type. */
2543 if (! TREE_UNSIGNED (result_type))
2544 /* OK */;
2545 /* Do not warn if both operands are the same signedness. */
2546 else if (op0_signed == op1_signed)
2547 /* OK */;
2548 else
2550 tree sop, uop;
2552 if (op0_signed)
2553 sop = xop0, uop = xop1;
2554 else
2555 sop = xop1, uop = xop0;
2557 /* Do not warn if the signed quantity is an
2558 unsuffixed integer literal (or some static
2559 constant expression involving such literals or a
2560 conditional expression involving such literals)
2561 and it is non-negative. */
2562 if (tree_expr_nonnegative_p (sop))
2563 /* OK */;
2564 /* Do not warn if the comparison is an equality operation,
2565 the unsigned quantity is an integral constant, and it
2566 would fit in the result if the result were signed. */
2567 else if (TREE_CODE (uop) == INTEGER_CST
2568 && (resultcode == EQ_EXPR || resultcode == NE_EXPR)
2569 && int_fits_type_p (uop, signed_type (result_type)))
2570 /* OK */;
2571 /* Do not warn if the unsigned quantity is an enumeration
2572 constant and its maximum value would fit in the result
2573 if the result were signed. */
2574 else if (TREE_CODE (uop) == INTEGER_CST
2575 && TREE_CODE (TREE_TYPE (uop)) == ENUMERAL_TYPE
2576 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE(uop)),
2577 signed_type (result_type)))
2578 /* OK */;
2579 else
2580 warning ("comparison between signed and unsigned");
2583 /* Warn if two unsigned values are being compared in a size
2584 larger than their original size, and one (and only one) is the
2585 result of a `~' operator. This comparison will always fail.
2587 Also warn if one operand is a constant, and the constant
2588 does not have all bits set that are set in the ~ operand
2589 when it is extended. */
2591 if ((TREE_CODE (primop0) == BIT_NOT_EXPR)
2592 != (TREE_CODE (primop1) == BIT_NOT_EXPR))
2594 if (TREE_CODE (primop0) == BIT_NOT_EXPR)
2595 primop0 = get_narrower (TREE_OPERAND (primop0, 0),
2596 &unsignedp0);
2597 else
2598 primop1 = get_narrower (TREE_OPERAND (primop1, 0),
2599 &unsignedp1);
2601 if (host_integerp (primop0, 0) || host_integerp (primop1, 0))
2603 tree primop;
2604 HOST_WIDE_INT constant, mask;
2605 int unsignedp, bits;
2607 if (host_integerp (primop0, 0))
2609 primop = primop1;
2610 unsignedp = unsignedp1;
2611 constant = tree_low_cst (primop0, 0);
2613 else
2615 primop = primop0;
2616 unsignedp = unsignedp0;
2617 constant = tree_low_cst (primop1, 0);
2620 bits = TYPE_PRECISION (TREE_TYPE (primop));
2621 if (bits < TYPE_PRECISION (result_type)
2622 && bits < HOST_BITS_PER_WIDE_INT && unsignedp)
2624 mask = (~ (HOST_WIDE_INT) 0) << bits;
2625 if ((mask & constant) != mask)
2626 warning ("comparison of promoted ~unsigned with constant");
2629 else if (unsignedp0 && unsignedp1
2630 && (TYPE_PRECISION (TREE_TYPE (primop0))
2631 < TYPE_PRECISION (result_type))
2632 && (TYPE_PRECISION (TREE_TYPE (primop1))
2633 < TYPE_PRECISION (result_type)))
2634 warning ("comparison of promoted ~unsigned with unsigned");
2640 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
2641 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
2642 Then the expression will be built.
2643 It will be given type FINAL_TYPE if that is nonzero;
2644 otherwise, it will be given type RESULT_TYPE. */
2646 if (!result_type)
2648 binary_op_error (code);
2649 return error_mark_node;
2652 if (! converted)
2654 if (TREE_TYPE (op0) != result_type)
2655 op0 = convert (result_type, op0);
2656 if (TREE_TYPE (op1) != result_type)
2657 op1 = convert (result_type, op1);
2660 if (build_type == NULL_TREE)
2661 build_type = result_type;
2664 register tree result = build (resultcode, build_type, op0, op1);
2665 register tree folded;
2667 folded = fold (result);
2668 if (folded == result)
2669 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
2670 if (final_type != 0)
2671 return convert (final_type, folded);
2672 return folded;
2676 /* Return a tree for the sum or difference (RESULTCODE says which)
2677 of pointer PTROP and integer INTOP. */
2679 static tree
2680 pointer_int_sum (resultcode, ptrop, intop)
2681 enum tree_code resultcode;
2682 register tree ptrop, intop;
2684 tree size_exp;
2686 register tree result;
2687 register tree folded;
2689 /* The result is a pointer of the same type that is being added. */
2691 register tree result_type = TREE_TYPE (ptrop);
2693 if (TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE)
2695 if (pedantic || warn_pointer_arith)
2696 pedwarn ("pointer of type `void *' used in arithmetic");
2697 size_exp = integer_one_node;
2699 else if (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE)
2701 if (pedantic || warn_pointer_arith)
2702 pedwarn ("pointer to a function used in arithmetic");
2703 size_exp = integer_one_node;
2705 else
2706 size_exp = c_size_in_bytes (TREE_TYPE (result_type));
2708 /* If what we are about to multiply by the size of the elements
2709 contains a constant term, apply distributive law
2710 and multiply that constant term separately.
2711 This helps produce common subexpressions. */
2713 if ((TREE_CODE (intop) == PLUS_EXPR || TREE_CODE (intop) == MINUS_EXPR)
2714 && ! TREE_CONSTANT (intop)
2715 && TREE_CONSTANT (TREE_OPERAND (intop, 1))
2716 && TREE_CONSTANT (size_exp)
2717 /* If the constant comes from pointer subtraction,
2718 skip this optimization--it would cause an error. */
2719 && TREE_CODE (TREE_TYPE (TREE_OPERAND (intop, 0))) == INTEGER_TYPE
2720 /* If the constant is unsigned, and smaller than the pointer size,
2721 then we must skip this optimization. This is because it could cause
2722 an overflow error if the constant is negative but INTOP is not. */
2723 && (! TREE_UNSIGNED (TREE_TYPE (intop))
2724 || (TYPE_PRECISION (TREE_TYPE (intop))
2725 == TYPE_PRECISION (TREE_TYPE (ptrop)))))
2727 enum tree_code subcode = resultcode;
2728 tree int_type = TREE_TYPE (intop);
2729 if (TREE_CODE (intop) == MINUS_EXPR)
2730 subcode = (subcode == PLUS_EXPR ? MINUS_EXPR : PLUS_EXPR);
2731 /* Convert both subexpression types to the type of intop,
2732 because weird cases involving pointer arithmetic
2733 can result in a sum or difference with different type args. */
2734 ptrop = build_binary_op (subcode, ptrop,
2735 convert (int_type, TREE_OPERAND (intop, 1)), 1);
2736 intop = convert (int_type, TREE_OPERAND (intop, 0));
2739 /* Convert the integer argument to a type the same size as sizetype
2740 so the multiply won't overflow spuriously. */
2742 if (TYPE_PRECISION (TREE_TYPE (intop)) != TYPE_PRECISION (sizetype)
2743 || TREE_UNSIGNED (TREE_TYPE (intop)) != TREE_UNSIGNED (sizetype))
2744 intop = convert (type_for_size (TYPE_PRECISION (sizetype),
2745 TREE_UNSIGNED (sizetype)), intop);
2747 /* Replace the integer argument with a suitable product by the object size.
2748 Do this multiplication as signed, then convert to the appropriate
2749 pointer type (actually unsigned integral). */
2751 intop = convert (result_type,
2752 build_binary_op (MULT_EXPR, intop,
2753 convert (TREE_TYPE (intop), size_exp), 1));
2755 /* Create the sum or difference. */
2757 result = build (resultcode, result_type, ptrop, intop);
2759 folded = fold (result);
2760 if (folded == result)
2761 TREE_CONSTANT (folded) = TREE_CONSTANT (ptrop) & TREE_CONSTANT (intop);
2762 return folded;
2765 /* Return a tree for the difference of pointers OP0 and OP1.
2766 The resulting tree has type int. */
2768 static tree
2769 pointer_diff (op0, op1)
2770 register tree op0, op1;
2772 register tree result, folded;
2773 tree restype = ptrdiff_type_node;
2775 tree target_type = TREE_TYPE (TREE_TYPE (op0));
2777 if (pedantic || warn_pointer_arith)
2779 if (TREE_CODE (target_type) == VOID_TYPE)
2780 pedwarn ("pointer of type `void *' used in subtraction");
2781 if (TREE_CODE (target_type) == FUNCTION_TYPE)
2782 pedwarn ("pointer to a function used in subtraction");
2785 /* First do the subtraction as integers;
2786 then drop through to build the divide operator.
2787 Do not do default conversions on the minus operator
2788 in case restype is a short type. */
2790 op0 = build_binary_op (MINUS_EXPR, convert (restype, op0),
2791 convert (restype, op1), 0);
2792 /* This generates an error if op1 is pointer to incomplete type. */
2793 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (op1))))
2794 error ("arithmetic on pointer to an incomplete type");
2796 /* This generates an error if op0 is pointer to incomplete type. */
2797 op1 = c_size_in_bytes (target_type);
2799 /* Divide by the size, in easiest possible way. */
2801 result = build (EXACT_DIV_EXPR, restype, op0, convert (restype, op1));
2803 folded = fold (result);
2804 if (folded == result)
2805 TREE_CONSTANT (folded) = TREE_CONSTANT (op0) & TREE_CONSTANT (op1);
2806 return folded;
2809 /* Construct and perhaps optimize a tree representation
2810 for a unary operation. CODE, a tree_code, specifies the operation
2811 and XARG is the operand. NOCONVERT nonzero suppresses
2812 the default promotions (such as from short to int). */
2814 tree
2815 build_unary_op (code, xarg, noconvert)
2816 enum tree_code code;
2817 tree xarg;
2818 int noconvert;
2820 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
2821 register tree arg = xarg;
2822 register tree argtype = 0;
2823 register enum tree_code typecode = TREE_CODE (TREE_TYPE (arg));
2824 tree val;
2826 if (typecode == ERROR_MARK)
2827 return error_mark_node;
2828 if (typecode == ENUMERAL_TYPE || typecode == BOOLEAN_TYPE)
2829 typecode = INTEGER_TYPE;
2831 switch (code)
2833 case CONVERT_EXPR:
2834 /* This is used for unary plus, because a CONVERT_EXPR
2835 is enough to prevent anybody from looking inside for
2836 associativity, but won't generate any code. */
2837 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2838 || typecode == COMPLEX_TYPE))
2840 error ("wrong type argument to unary plus");
2841 return error_mark_node;
2843 else if (!noconvert)
2844 arg = default_conversion (arg);
2845 break;
2847 case NEGATE_EXPR:
2848 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2849 || typecode == COMPLEX_TYPE))
2851 error ("wrong type argument to unary minus");
2852 return error_mark_node;
2854 else if (!noconvert)
2855 arg = default_conversion (arg);
2856 break;
2858 case BIT_NOT_EXPR:
2859 if (typecode == COMPLEX_TYPE)
2861 code = CONJ_EXPR;
2862 if (pedantic)
2863 pedwarn ("ISO C does not support `~' for complex conjugation");
2864 if (!noconvert)
2865 arg = default_conversion (arg);
2867 else if (typecode != INTEGER_TYPE)
2869 error ("wrong type argument to bit-complement");
2870 return error_mark_node;
2872 else if (!noconvert)
2873 arg = default_conversion (arg);
2874 break;
2876 case ABS_EXPR:
2877 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2878 || typecode == COMPLEX_TYPE))
2880 error ("wrong type argument to abs");
2881 return error_mark_node;
2883 else if (!noconvert)
2884 arg = default_conversion (arg);
2885 break;
2887 case CONJ_EXPR:
2888 /* Conjugating a real value is a no-op, but allow it anyway. */
2889 if (!(typecode == INTEGER_TYPE || typecode == REAL_TYPE
2890 || typecode == COMPLEX_TYPE))
2892 error ("wrong type argument to conjugation");
2893 return error_mark_node;
2895 else if (!noconvert)
2896 arg = default_conversion (arg);
2897 break;
2899 case TRUTH_NOT_EXPR:
2900 if (typecode != INTEGER_TYPE
2901 && typecode != REAL_TYPE && typecode != POINTER_TYPE
2902 && typecode != COMPLEX_TYPE
2903 /* These will convert to a pointer. */
2904 && typecode != ARRAY_TYPE && typecode != FUNCTION_TYPE)
2906 error ("wrong type argument to unary exclamation mark");
2907 return error_mark_node;
2909 arg = truthvalue_conversion (arg);
2910 return invert_truthvalue (arg);
2912 case NOP_EXPR:
2913 break;
2915 case REALPART_EXPR:
2916 if (TREE_CODE (arg) == COMPLEX_CST)
2917 return TREE_REALPART (arg);
2918 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
2919 return fold (build1 (REALPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
2920 else
2921 return arg;
2923 case IMAGPART_EXPR:
2924 if (TREE_CODE (arg) == COMPLEX_CST)
2925 return TREE_IMAGPART (arg);
2926 else if (TREE_CODE (TREE_TYPE (arg)) == COMPLEX_TYPE)
2927 return fold (build1 (IMAGPART_EXPR, TREE_TYPE (TREE_TYPE (arg)), arg));
2928 else
2929 return convert (TREE_TYPE (arg), integer_zero_node);
2931 case PREINCREMENT_EXPR:
2932 case POSTINCREMENT_EXPR:
2933 case PREDECREMENT_EXPR:
2934 case POSTDECREMENT_EXPR:
2935 /* Handle complex lvalues (when permitted)
2936 by reduction to simpler cases. */
2938 val = unary_complex_lvalue (code, arg);
2939 if (val != 0)
2940 return val;
2942 /* Increment or decrement the real part of the value,
2943 and don't change the imaginary part. */
2944 if (typecode == COMPLEX_TYPE)
2946 tree real, imag;
2948 if (pedantic)
2949 pedwarn ("ISO C does not support `++' and `--' on complex types");
2951 arg = stabilize_reference (arg);
2952 real = build_unary_op (REALPART_EXPR, arg, 1);
2953 imag = build_unary_op (IMAGPART_EXPR, arg, 1);
2954 return build (COMPLEX_EXPR, TREE_TYPE (arg),
2955 build_unary_op (code, real, 1), imag);
2958 /* Report invalid types. */
2960 if (typecode != POINTER_TYPE
2961 && typecode != INTEGER_TYPE && typecode != REAL_TYPE)
2963 error ("wrong type argument to %s",
2964 code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR
2965 ? "increment" : "decrement");
2966 return error_mark_node;
2970 register tree inc;
2971 tree result_type = TREE_TYPE (arg);
2973 arg = get_unwidened (arg, 0);
2974 argtype = TREE_TYPE (arg);
2976 /* Compute the increment. */
2978 if (typecode == POINTER_TYPE)
2980 /* If pointer target is an undefined struct,
2981 we just cannot know how to do the arithmetic. */
2982 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (result_type)))
2983 error ("%s of pointer to unknown structure",
2984 code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR
2985 ? "increment" : "decrement");
2986 else if ((pedantic || warn_pointer_arith)
2987 && (TREE_CODE (TREE_TYPE (result_type)) == FUNCTION_TYPE
2988 || TREE_CODE (TREE_TYPE (result_type)) == VOID_TYPE))
2989 pedwarn ("wrong type argument to %s",
2990 code == PREINCREMENT_EXPR || code == POSTINCREMENT_EXPR
2991 ? "increment" : "decrement");
2992 inc = c_size_in_bytes (TREE_TYPE (result_type));
2994 else
2995 inc = integer_one_node;
2997 inc = convert (argtype, inc);
2999 /* Handle incrementing a cast-expression. */
3001 while (1)
3002 switch (TREE_CODE (arg))
3004 case NOP_EXPR:
3005 case CONVERT_EXPR:
3006 case FLOAT_EXPR:
3007 case FIX_TRUNC_EXPR:
3008 case FIX_FLOOR_EXPR:
3009 case FIX_ROUND_EXPR:
3010 case FIX_CEIL_EXPR:
3011 pedantic_lvalue_warning (CONVERT_EXPR);
3012 /* If the real type has the same machine representation
3013 as the type it is cast to, we can make better output
3014 by adding directly to the inside of the cast. */
3015 if ((TREE_CODE (TREE_TYPE (arg))
3016 == TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))))
3017 && (TYPE_MODE (TREE_TYPE (arg))
3018 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (arg, 0)))))
3019 arg = TREE_OPERAND (arg, 0);
3020 else
3022 tree incremented, modify, value;
3023 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3024 value = boolean_increment (code, arg);
3025 else
3027 arg = stabilize_reference (arg);
3028 if (code == PREINCREMENT_EXPR || code == PREDECREMENT_EXPR)
3029 value = arg;
3030 else
3031 value = save_expr (arg);
3032 incremented = build (((code == PREINCREMENT_EXPR
3033 || code == POSTINCREMENT_EXPR)
3034 ? PLUS_EXPR : MINUS_EXPR),
3035 argtype, value, inc);
3036 TREE_SIDE_EFFECTS (incremented) = 1;
3037 modify = build_modify_expr (arg, NOP_EXPR, incremented);
3038 value = build (COMPOUND_EXPR, TREE_TYPE (arg), modify, value);
3040 TREE_USED (value) = 1;
3041 return value;
3043 break;
3045 default:
3046 goto give_up;
3048 give_up:
3050 /* Complain about anything else that is not a true lvalue. */
3051 if (!lvalue_or_else (arg, ((code == PREINCREMENT_EXPR
3052 || code == POSTINCREMENT_EXPR)
3053 ? "invalid lvalue in increment"
3054 : "invalid lvalue in decrement")))
3055 return error_mark_node;
3057 /* Report a read-only lvalue. */
3058 if (TREE_READONLY (arg))
3059 readonly_warning (arg,
3060 ((code == PREINCREMENT_EXPR
3061 || code == POSTINCREMENT_EXPR)
3062 ? "increment" : "decrement"));
3064 if (TREE_CODE (TREE_TYPE (arg)) == BOOLEAN_TYPE)
3065 val = boolean_increment (code, arg);
3066 else
3067 val = build (code, TREE_TYPE (arg), arg, inc);
3068 TREE_SIDE_EFFECTS (val) = 1;
3069 val = convert (result_type, val);
3070 if (TREE_CODE (val) != code)
3071 TREE_NO_UNUSED_WARNING (val) = 1;
3072 return val;
3075 case ADDR_EXPR:
3076 /* Note that this operation never does default_conversion
3077 regardless of NOCONVERT. */
3079 /* Let &* cancel out to simplify resulting code. */
3080 if (TREE_CODE (arg) == INDIRECT_REF)
3082 /* Don't let this be an lvalue. */
3083 if (lvalue_p (TREE_OPERAND (arg, 0)))
3084 return non_lvalue (TREE_OPERAND (arg, 0));
3085 return TREE_OPERAND (arg, 0);
3088 /* For &x[y], return x+y */
3089 if (TREE_CODE (arg) == ARRAY_REF)
3091 if (mark_addressable (TREE_OPERAND (arg, 0)) == 0)
3092 return error_mark_node;
3093 return build_binary_op (PLUS_EXPR, TREE_OPERAND (arg, 0),
3094 TREE_OPERAND (arg, 1), 1);
3097 /* Handle complex lvalues (when permitted)
3098 by reduction to simpler cases. */
3099 val = unary_complex_lvalue (code, arg);
3100 if (val != 0)
3101 return val;
3103 #if 0 /* Turned off because inconsistent;
3104 float f; *&(int)f = 3.4 stores in int format
3105 whereas (int)f = 3.4 stores in float format. */
3106 /* Address of a cast is just a cast of the address
3107 of the operand of the cast. */
3108 switch (TREE_CODE (arg))
3110 case NOP_EXPR:
3111 case CONVERT_EXPR:
3112 case FLOAT_EXPR:
3113 case FIX_TRUNC_EXPR:
3114 case FIX_FLOOR_EXPR:
3115 case FIX_ROUND_EXPR:
3116 case FIX_CEIL_EXPR:
3117 if (pedantic)
3118 pedwarn ("ISO C forbids the address of a cast expression");
3119 return convert (build_pointer_type (TREE_TYPE (arg)),
3120 build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0),
3121 0));
3123 #endif
3125 /* Allow the address of a constructor if all the elements
3126 are constant. */
3127 if (TREE_CODE (arg) == CONSTRUCTOR && TREE_CONSTANT (arg))
3129 /* Anything not already handled and not a true memory reference
3130 is an error. */
3131 else if (typecode != FUNCTION_TYPE
3132 && !lvalue_or_else (arg, "invalid lvalue in unary `&'"))
3133 return error_mark_node;
3135 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
3136 argtype = TREE_TYPE (arg);
3138 /* If the lvalue is const or volatile, merge that into the type
3139 to which the address will point. Note that you can't get a
3140 restricted pointer by taking the address of something, so we
3141 only have to deal with `const' and `volatile' here. */
3142 if ((DECL_P (arg) || TREE_CODE_CLASS (TREE_CODE (arg)) == 'r')
3143 && (TREE_READONLY (arg) || TREE_THIS_VOLATILE (arg)))
3144 argtype = c_build_type_variant (argtype,
3145 TREE_READONLY (arg),
3146 TREE_THIS_VOLATILE (arg));
3148 argtype = build_pointer_type (argtype);
3150 if (mark_addressable (arg) == 0)
3151 return error_mark_node;
3154 tree addr;
3156 if (TREE_CODE (arg) == COMPONENT_REF)
3158 tree field = TREE_OPERAND (arg, 1);
3160 addr = build_unary_op (ADDR_EXPR, TREE_OPERAND (arg, 0), 0);
3162 if (DECL_C_BIT_FIELD (field))
3164 error ("attempt to take address of bit-field structure member `%s'",
3165 IDENTIFIER_POINTER (DECL_NAME (field)));
3166 return error_mark_node;
3169 addr = fold (build (PLUS_EXPR, argtype,
3170 convert (argtype, addr),
3171 convert (argtype, byte_position (field))));
3173 else
3174 addr = build1 (code, argtype, arg);
3176 /* Address of a static or external variable or
3177 file-scope function counts as a constant. */
3178 if (staticp (arg)
3179 && ! (TREE_CODE (arg) == FUNCTION_DECL
3180 && DECL_CONTEXT (arg) != 0))
3181 TREE_CONSTANT (addr) = 1;
3182 return addr;
3185 default:
3186 break;
3189 if (argtype == 0)
3190 argtype = TREE_TYPE (arg);
3191 return fold (build1 (code, argtype, arg));
3194 #if 0
3195 /* If CONVERSIONS is a conversion expression or a nested sequence of such,
3196 convert ARG with the same conversions in the same order
3197 and return the result. */
3199 static tree
3200 convert_sequence (conversions, arg)
3201 tree conversions;
3202 tree arg;
3204 switch (TREE_CODE (conversions))
3206 case NOP_EXPR:
3207 case CONVERT_EXPR:
3208 case FLOAT_EXPR:
3209 case FIX_TRUNC_EXPR:
3210 case FIX_FLOOR_EXPR:
3211 case FIX_ROUND_EXPR:
3212 case FIX_CEIL_EXPR:
3213 return convert (TREE_TYPE (conversions),
3214 convert_sequence (TREE_OPERAND (conversions, 0),
3215 arg));
3217 default:
3218 return arg;
3221 #endif /* 0 */
3223 /* Return nonzero if REF is an lvalue valid for this language.
3224 Lvalues can be assigned, unless their type has TYPE_READONLY.
3225 Lvalues can have their address taken, unless they have DECL_REGISTER. */
3228 lvalue_p (ref)
3229 tree ref;
3231 register enum tree_code code = TREE_CODE (ref);
3233 switch (code)
3235 case REALPART_EXPR:
3236 case IMAGPART_EXPR:
3237 case COMPONENT_REF:
3238 return lvalue_p (TREE_OPERAND (ref, 0));
3240 case STRING_CST:
3241 return 1;
3243 case INDIRECT_REF:
3244 case ARRAY_REF:
3245 case VAR_DECL:
3246 case PARM_DECL:
3247 case RESULT_DECL:
3248 case ERROR_MARK:
3249 return (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
3250 && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE);
3252 case BIND_EXPR:
3253 case RTL_EXPR:
3254 return TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE;
3256 default:
3257 return 0;
3261 /* Return nonzero if REF is an lvalue valid for this language;
3262 otherwise, print an error message and return zero. */
3265 lvalue_or_else (ref, msgid)
3266 tree ref;
3267 const char *msgid;
3269 int win = lvalue_p (ref);
3271 if (! win)
3272 error ("%s", msgid);
3274 return win;
3277 /* Apply unary lvalue-demanding operator CODE to the expression ARG
3278 for certain kinds of expressions which are not really lvalues
3279 but which we can accept as lvalues.
3281 If ARG is not a kind of expression we can handle, return zero. */
3283 static tree
3284 unary_complex_lvalue (code, arg)
3285 enum tree_code code;
3286 tree arg;
3288 /* Handle (a, b) used as an "lvalue". */
3289 if (TREE_CODE (arg) == COMPOUND_EXPR)
3291 tree real_result = build_unary_op (code, TREE_OPERAND (arg, 1), 0);
3293 /* If this returns a function type, it isn't really being used as
3294 an lvalue, so don't issue a warning about it. */
3295 if (TREE_CODE (TREE_TYPE (arg)) != FUNCTION_TYPE)
3296 pedantic_lvalue_warning (COMPOUND_EXPR);
3298 return build (COMPOUND_EXPR, TREE_TYPE (real_result),
3299 TREE_OPERAND (arg, 0), real_result);
3302 /* Handle (a ? b : c) used as an "lvalue". */
3303 if (TREE_CODE (arg) == COND_EXPR)
3305 pedantic_lvalue_warning (COND_EXPR);
3306 if (TREE_CODE (TREE_TYPE (arg)) != FUNCTION_TYPE)
3307 pedantic_lvalue_warning (COMPOUND_EXPR);
3309 return (build_conditional_expr
3310 (TREE_OPERAND (arg, 0),
3311 build_unary_op (code, TREE_OPERAND (arg, 1), 0),
3312 build_unary_op (code, TREE_OPERAND (arg, 2), 0)));
3315 return 0;
3318 /* If pedantic, warn about improper lvalue. CODE is either COND_EXPR
3319 COMPOUND_EXPR, or CONVERT_EXPR (for casts). */
3321 static void
3322 pedantic_lvalue_warning (code)
3323 enum tree_code code;
3325 if (pedantic)
3326 switch (code)
3328 case COND_EXPR:
3329 pedwarn ("ISO C forbids use of conditional expressions as lvalues");
3330 break;
3331 case COMPOUND_EXPR:
3332 pedwarn ("ISO C forbids use of compound expressions as lvalues");
3333 break;
3334 default:
3335 pedwarn ("ISO C forbids use of cast expressions as lvalues");
3336 break;
3340 /* Warn about storing in something that is `const'. */
3342 void
3343 readonly_warning (arg, msgid)
3344 tree arg;
3345 const char *msgid;
3347 if (TREE_CODE (arg) == COMPONENT_REF)
3349 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg, 0))))
3350 readonly_warning (TREE_OPERAND (arg, 0), msgid);
3351 else
3352 pedwarn ("%s of read-only member `%s'", _(msgid),
3353 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (arg, 1))));
3355 else if (TREE_CODE (arg) == VAR_DECL)
3356 pedwarn ("%s of read-only variable `%s'", _(msgid),
3357 IDENTIFIER_POINTER (DECL_NAME (arg)));
3358 else
3359 pedwarn ("%s of read-only location", _(msgid));
3362 /* Mark EXP saying that we need to be able to take the
3363 address of it; it should not be allocated in a register.
3364 Value is 1 if successful. */
3367 mark_addressable (exp)
3368 tree exp;
3370 register tree x = exp;
3371 while (1)
3372 switch (TREE_CODE (x))
3374 case COMPONENT_REF:
3375 if (DECL_C_BIT_FIELD (TREE_OPERAND (x, 1)))
3377 error ("cannot take address of bitfield `%s'",
3378 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x, 1))));
3379 return 0;
3382 /* ... fall through ... */
3384 case ADDR_EXPR:
3385 case ARRAY_REF:
3386 case REALPART_EXPR:
3387 case IMAGPART_EXPR:
3388 x = TREE_OPERAND (x, 0);
3389 break;
3391 case CONSTRUCTOR:
3392 TREE_ADDRESSABLE (x) = 1;
3393 return 1;
3395 case VAR_DECL:
3396 case CONST_DECL:
3397 case PARM_DECL:
3398 case RESULT_DECL:
3399 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x)
3400 && DECL_NONLOCAL (x))
3402 if (TREE_PUBLIC (x))
3404 error ("global register variable `%s' used in nested function",
3405 IDENTIFIER_POINTER (DECL_NAME (x)));
3406 return 0;
3408 pedwarn ("register variable `%s' used in nested function",
3409 IDENTIFIER_POINTER (DECL_NAME (x)));
3411 else if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x))
3413 if (TREE_PUBLIC (x))
3415 error ("address of global register variable `%s' requested",
3416 IDENTIFIER_POINTER (DECL_NAME (x)));
3417 return 0;
3420 /* If we are making this addressable due to its having
3421 volatile components, give a different error message. Also
3422 handle the case of an unnamed parameter by not trying
3423 to give the name. */
3425 else if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (x)))
3427 error ("cannot put object with volatile field into register");
3428 return 0;
3431 pedwarn ("address of register variable `%s' requested",
3432 IDENTIFIER_POINTER (DECL_NAME (x)));
3434 put_var_into_stack (x);
3436 /* drops in */
3437 case FUNCTION_DECL:
3438 TREE_ADDRESSABLE (x) = 1;
3439 #if 0 /* poplevel deals with this now. */
3440 if (DECL_CONTEXT (x) == 0)
3441 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (x)) = 1;
3442 #endif
3444 default:
3445 return 1;
3449 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
3451 tree
3452 build_conditional_expr (ifexp, op1, op2)
3453 tree ifexp, op1, op2;
3455 register tree type1;
3456 register tree type2;
3457 register enum tree_code code1;
3458 register enum tree_code code2;
3459 register tree result_type = NULL;
3460 tree orig_op1 = op1, orig_op2 = op2;
3462 ifexp = truthvalue_conversion (default_conversion (ifexp));
3464 #if 0 /* Produces wrong result if within sizeof. */
3465 /* Don't promote the operands separately if they promote
3466 the same way. Return the unpromoted type and let the combined
3467 value get promoted if necessary. */
3469 if (TREE_TYPE (op1) == TREE_TYPE (op2)
3470 && TREE_CODE (TREE_TYPE (op1)) != ARRAY_TYPE
3471 && TREE_CODE (TREE_TYPE (op1)) != ENUMERAL_TYPE
3472 && TREE_CODE (TREE_TYPE (op1)) != FUNCTION_TYPE)
3474 if (TREE_CODE (ifexp) == INTEGER_CST)
3475 return pedantic_non_lvalue (integer_zerop (ifexp) ? op2 : op1);
3477 return fold (build (COND_EXPR, TREE_TYPE (op1), ifexp, op1, op2));
3479 #endif
3481 /* Promote both alternatives. */
3483 if (TREE_CODE (TREE_TYPE (op1)) != VOID_TYPE)
3484 op1 = default_conversion (op1);
3485 if (TREE_CODE (TREE_TYPE (op2)) != VOID_TYPE)
3486 op2 = default_conversion (op2);
3488 if (TREE_CODE (ifexp) == ERROR_MARK
3489 || TREE_CODE (TREE_TYPE (op1)) == ERROR_MARK
3490 || TREE_CODE (TREE_TYPE (op2)) == ERROR_MARK)
3491 return error_mark_node;
3493 type1 = TREE_TYPE (op1);
3494 code1 = TREE_CODE (type1);
3495 type2 = TREE_TYPE (op2);
3496 code2 = TREE_CODE (type2);
3498 /* Quickly detect the usual case where op1 and op2 have the same type
3499 after promotion. */
3500 if (TYPE_MAIN_VARIANT (type1) == TYPE_MAIN_VARIANT (type2))
3502 if (type1 == type2)
3503 result_type = type1;
3504 else
3505 result_type = TYPE_MAIN_VARIANT (type1);
3507 else if ((code1 == INTEGER_TYPE || code1 == REAL_TYPE
3508 || code1 == COMPLEX_TYPE)
3509 && (code2 == INTEGER_TYPE || code2 == REAL_TYPE
3510 || code2 == COMPLEX_TYPE))
3512 result_type = common_type (type1, type2);
3514 /* If -Wsign-compare, warn here if type1 and type2 have
3515 different signedness. We'll promote the signed to unsigned
3516 and later code won't know it used to be different.
3517 Do this check on the original types, so that explicit casts
3518 will be considered, but default promotions won't. */
3519 if ((warn_sign_compare < 0 ? extra_warnings : warn_sign_compare)
3520 && !skip_evaluation)
3522 int unsigned_op1 = TREE_UNSIGNED (TREE_TYPE (orig_op1));
3523 int unsigned_op2 = TREE_UNSIGNED (TREE_TYPE (orig_op2));
3525 if (unsigned_op1 ^ unsigned_op2)
3527 /* Do not warn if the result type is signed, since the
3528 signed type will only be chosen if it can represent
3529 all the values of the unsigned type. */
3530 if (! TREE_UNSIGNED (result_type))
3531 /* OK */;
3532 /* Do not warn if the signed quantity is an unsuffixed
3533 integer literal (or some static constant expression
3534 involving such literals) and it is non-negative. */
3535 else if ((unsigned_op2 && tree_expr_nonnegative_p (op1))
3536 || (unsigned_op1 && tree_expr_nonnegative_p (op2)))
3537 /* OK */;
3538 else
3539 warning ("signed and unsigned type in conditional expression");
3543 else if (code1 == VOID_TYPE || code2 == VOID_TYPE)
3545 if (pedantic && (code1 != VOID_TYPE || code2 != VOID_TYPE))
3546 pedwarn ("ISO C forbids conditional expr with only one void side");
3547 result_type = void_type_node;
3549 else if (code1 == POINTER_TYPE && code2 == POINTER_TYPE)
3551 if (comp_target_types (type1, type2))
3552 result_type = common_type (type1, type2);
3553 else if (integer_zerop (op1) && TREE_TYPE (type1) == void_type_node
3554 && TREE_CODE (orig_op1) != NOP_EXPR)
3555 result_type = qualify_type (type2, type1);
3556 else if (integer_zerop (op2) && TREE_TYPE (type2) == void_type_node
3557 && TREE_CODE (orig_op2) != NOP_EXPR)
3558 result_type = qualify_type (type1, type2);
3559 else if (VOID_TYPE_P (TREE_TYPE (type1)))
3561 if (pedantic && TREE_CODE (TREE_TYPE (type2)) == FUNCTION_TYPE)
3562 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
3563 result_type = build_pointer_type (qualify_type (TREE_TYPE (type1),
3564 TREE_TYPE (type2)));
3566 else if (VOID_TYPE_P (TREE_TYPE (type2)))
3568 if (pedantic && TREE_CODE (TREE_TYPE (type1)) == FUNCTION_TYPE)
3569 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
3570 result_type = build_pointer_type (qualify_type (TREE_TYPE (type2),
3571 TREE_TYPE (type1)));
3573 else
3575 pedwarn ("pointer type mismatch in conditional expression");
3576 result_type = build_pointer_type (void_type_node);
3579 else if (code1 == POINTER_TYPE && code2 == INTEGER_TYPE)
3581 if (! integer_zerop (op2))
3582 pedwarn ("pointer/integer type mismatch in conditional expression");
3583 else
3585 op2 = null_pointer_node;
3587 result_type = type1;
3589 else if (code2 == POINTER_TYPE && code1 == INTEGER_TYPE)
3591 if (!integer_zerop (op1))
3592 pedwarn ("pointer/integer type mismatch in conditional expression");
3593 else
3595 op1 = null_pointer_node;
3597 result_type = type2;
3600 if (!result_type)
3602 if (flag_cond_mismatch)
3603 result_type = void_type_node;
3604 else
3606 error ("type mismatch in conditional expression");
3607 return error_mark_node;
3611 /* Merge const and volatile flags of the incoming types. */
3612 result_type
3613 = build_type_variant (result_type,
3614 TREE_READONLY (op1) || TREE_READONLY (op2),
3615 TREE_THIS_VOLATILE (op1) || TREE_THIS_VOLATILE (op2));
3617 if (result_type != TREE_TYPE (op1))
3618 op1 = convert_and_check (result_type, op1);
3619 if (result_type != TREE_TYPE (op2))
3620 op2 = convert_and_check (result_type, op2);
3622 if (TREE_CODE (ifexp) == INTEGER_CST)
3623 return pedantic_non_lvalue (integer_zerop (ifexp) ? op2 : op1);
3625 return fold (build (COND_EXPR, result_type, ifexp, op1, op2));
3628 /* Given a list of expressions, return a compound expression
3629 that performs them all and returns the value of the last of them. */
3631 tree
3632 build_compound_expr (list)
3633 tree list;
3635 return internal_build_compound_expr (list, TRUE);
3638 static tree
3639 internal_build_compound_expr (list, first_p)
3640 tree list;
3641 int first_p;
3643 register tree rest;
3645 if (TREE_CHAIN (list) == 0)
3647 #if 0 /* If something inside inhibited lvalueness, we should not override. */
3648 /* Consider (x, y+0), which is not an lvalue since y+0 is not. */
3650 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3651 if (TREE_CODE (list) == NON_LVALUE_EXPR)
3652 list = TREE_OPERAND (list, 0);
3653 #endif
3655 /* Don't let (0, 0) be null pointer constant. */
3656 if (!first_p && integer_zerop (TREE_VALUE (list)))
3657 return non_lvalue (TREE_VALUE (list));
3658 return TREE_VALUE (list);
3661 if (TREE_CHAIN (list) != 0 && TREE_CHAIN (TREE_CHAIN (list)) == 0)
3663 /* Convert arrays to pointers when there really is a comma operator. */
3664 if (TREE_CODE (TREE_TYPE (TREE_VALUE (TREE_CHAIN (list)))) == ARRAY_TYPE)
3665 TREE_VALUE (TREE_CHAIN (list))
3666 = default_conversion (TREE_VALUE (TREE_CHAIN (list)));
3669 rest = internal_build_compound_expr (TREE_CHAIN (list), FALSE);
3671 if (! TREE_SIDE_EFFECTS (TREE_VALUE (list)))
3673 /* The left-hand operand of a comma expression is like an expression
3674 statement: with -W or -Wunused, we should warn if it doesn't have
3675 any side-effects, unless it was explicitly cast to (void). */
3676 if ((extra_warnings || warn_unused_value)
3677 && ! (TREE_CODE (TREE_VALUE (list)) == CONVERT_EXPR
3678 && VOID_TYPE_P (TREE_TYPE (TREE_VALUE (list)))))
3679 warning ("left-hand operand of comma expression has no effect");
3681 /* When pedantic, a compound expression can be neither an lvalue
3682 nor an integer constant expression. */
3683 if (! pedantic)
3684 return rest;
3687 /* With -Wunused, we should also warn if the left-hand operand does have
3688 side-effects, but computes a value which is not used. For example, in
3689 `foo() + bar(), baz()' the result of the `+' operator is not used,
3690 so we should issue a warning. */
3691 else if (warn_unused_value)
3692 warn_if_unused_value (TREE_VALUE (list));
3694 return build (COMPOUND_EXPR, TREE_TYPE (rest), TREE_VALUE (list), rest);
3697 /* Build an expression representing a cast to type TYPE of expression EXPR. */
3699 tree
3700 build_c_cast (type, expr)
3701 register tree type;
3702 tree expr;
3704 register tree value = expr;
3706 if (type == error_mark_node || expr == error_mark_node)
3707 return error_mark_node;
3708 type = TYPE_MAIN_VARIANT (type);
3710 #if 0
3711 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3712 if (TREE_CODE (value) == NON_LVALUE_EXPR)
3713 value = TREE_OPERAND (value, 0);
3714 #endif
3716 if (TREE_CODE (type) == ARRAY_TYPE)
3718 error ("cast specifies array type");
3719 return error_mark_node;
3722 if (TREE_CODE (type) == FUNCTION_TYPE)
3724 error ("cast specifies function type");
3725 return error_mark_node;
3728 if (type == TREE_TYPE (value))
3730 if (pedantic)
3732 if (TREE_CODE (type) == RECORD_TYPE
3733 || TREE_CODE (type) == UNION_TYPE)
3734 pedwarn ("ISO C forbids casting nonscalar to the same type");
3737 else if (TREE_CODE (type) == UNION_TYPE)
3739 tree field;
3740 if (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
3741 || TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE)
3742 value = default_conversion (value);
3744 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
3745 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field)),
3746 TYPE_MAIN_VARIANT (TREE_TYPE (value))))
3747 break;
3749 if (field)
3751 const char *name;
3752 tree t;
3754 if (pedantic)
3755 pedwarn ("ISO C forbids casts to union type");
3756 if (TYPE_NAME (type) != 0)
3758 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
3759 name = IDENTIFIER_POINTER (TYPE_NAME (type));
3760 else
3761 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
3763 else
3764 name = "";
3765 t = digest_init (type, build (CONSTRUCTOR, type, NULL_TREE,
3766 build_tree_list (field, value)),
3767 0, 0);
3768 TREE_CONSTANT (t) = TREE_CONSTANT (value);
3769 return t;
3771 error ("cast to union type from type not present in union");
3772 return error_mark_node;
3774 else
3776 tree otype, ovalue;
3778 /* If casting to void, avoid the error that would come
3779 from default_conversion in the case of a non-lvalue array. */
3780 if (type == void_type_node)
3781 return build1 (CONVERT_EXPR, type, value);
3783 /* Convert functions and arrays to pointers,
3784 but don't convert any other types. */
3785 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
3786 || TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE)
3787 value = default_conversion (value);
3788 otype = TREE_TYPE (value);
3790 /* Optionally warn about potentially worrisome casts. */
3792 if (warn_cast_qual
3793 && TREE_CODE (type) == POINTER_TYPE
3794 && TREE_CODE (otype) == POINTER_TYPE)
3796 tree in_type = type;
3797 tree in_otype = otype;
3798 int warn = 0;
3800 /* Check that the qualifiers on IN_TYPE are a superset of
3801 the qualifiers of IN_OTYPE. The outermost level of
3802 POINTER_TYPE nodes is uninteresting and we stop as soon
3803 as we hit a non-POINTER_TYPE node on either type. */
3806 in_otype = TREE_TYPE (in_otype);
3807 in_type = TREE_TYPE (in_type);
3808 warn |= (TYPE_QUALS (in_otype) & ~TYPE_QUALS (in_type));
3810 while (TREE_CODE (in_type) == POINTER_TYPE
3811 && TREE_CODE (in_otype) == POINTER_TYPE);
3813 if (warn)
3814 /* There are qualifiers present in IN_OTYPE that are not
3815 present in IN_TYPE. */
3816 warning ("cast discards qualifiers from pointer target type");
3819 /* Warn about possible alignment problems. */
3820 if (STRICT_ALIGNMENT && warn_cast_align
3821 && TREE_CODE (type) == POINTER_TYPE
3822 && TREE_CODE (otype) == POINTER_TYPE
3823 && TREE_CODE (TREE_TYPE (otype)) != VOID_TYPE
3824 && TREE_CODE (TREE_TYPE (otype)) != FUNCTION_TYPE
3825 /* Don't warn about opaque types, where the actual alignment
3826 restriction is unknown. */
3827 && !((TREE_CODE (TREE_TYPE (otype)) == UNION_TYPE
3828 || TREE_CODE (TREE_TYPE (otype)) == RECORD_TYPE)
3829 && TYPE_MODE (TREE_TYPE (otype)) == VOIDmode)
3830 && TYPE_ALIGN (TREE_TYPE (type)) > TYPE_ALIGN (TREE_TYPE (otype)))
3831 warning ("cast increases required alignment of target type");
3833 if (TREE_CODE (type) == INTEGER_TYPE
3834 && TREE_CODE (otype) == POINTER_TYPE
3835 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3836 && !TREE_CONSTANT (value))
3837 warning ("cast from pointer to integer of different size");
3839 if (warn_bad_function_cast
3840 && TREE_CODE (value) == CALL_EXPR
3841 && TREE_CODE (type) != TREE_CODE (otype))
3842 warning ("cast does not match function type");
3844 if (TREE_CODE (type) == POINTER_TYPE
3845 && TREE_CODE (otype) == INTEGER_TYPE
3846 && TYPE_PRECISION (type) != TYPE_PRECISION (otype)
3847 /* Don't warn about converting any constant. */
3848 && !TREE_CONSTANT (value))
3849 warning ("cast to pointer from integer of different size");
3851 ovalue = value;
3852 value = convert (type, value);
3854 /* Ignore any integer overflow caused by the cast. */
3855 if (TREE_CODE (value) == INTEGER_CST)
3857 TREE_OVERFLOW (value) = TREE_OVERFLOW (ovalue);
3858 TREE_CONSTANT_OVERFLOW (value) = TREE_CONSTANT_OVERFLOW (ovalue);
3862 /* Pedantically, don't ley (void *) (FOO *) 0 be a null pointer constant. */
3863 if (pedantic && TREE_CODE (value) == INTEGER_CST
3864 && TREE_CODE (expr) == INTEGER_CST
3865 && TREE_CODE (TREE_TYPE (expr)) != INTEGER_TYPE)
3866 value = non_lvalue (value);
3868 /* If pedantic, don't let a cast be an lvalue. */
3869 if (value == expr && pedantic)
3870 value = non_lvalue (value);
3872 return value;
3875 /* Build an assignment expression of lvalue LHS from value RHS.
3876 MODIFYCODE is the code for a binary operator that we use
3877 to combine the old value of LHS with RHS to get the new value.
3878 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment. */
3880 tree
3881 build_modify_expr (lhs, modifycode, rhs)
3882 tree lhs, rhs;
3883 enum tree_code modifycode;
3885 register tree result;
3886 tree newrhs;
3887 tree lhstype = TREE_TYPE (lhs);
3888 tree olhstype = lhstype;
3890 /* Types that aren't fully specified cannot be used in assignments. */
3891 lhs = require_complete_type (lhs);
3893 /* Avoid duplicate error messages from operands that had errors. */
3894 if (TREE_CODE (lhs) == ERROR_MARK || TREE_CODE (rhs) == ERROR_MARK)
3895 return error_mark_node;
3897 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3898 /* Do not use STRIP_NOPS here. We do not want an enumerator
3899 whose value is 0 to count as a null pointer constant. */
3900 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
3901 rhs = TREE_OPERAND (rhs, 0);
3903 newrhs = rhs;
3905 /* Handle control structure constructs used as "lvalues". */
3907 switch (TREE_CODE (lhs))
3909 /* Handle (a, b) used as an "lvalue". */
3910 case COMPOUND_EXPR:
3911 pedantic_lvalue_warning (COMPOUND_EXPR);
3912 newrhs = build_modify_expr (TREE_OPERAND (lhs, 1), modifycode, rhs);
3913 if (TREE_CODE (newrhs) == ERROR_MARK)
3914 return error_mark_node;
3915 return build (COMPOUND_EXPR, lhstype,
3916 TREE_OPERAND (lhs, 0), newrhs);
3918 /* Handle (a ? b : c) used as an "lvalue". */
3919 case COND_EXPR:
3920 pedantic_lvalue_warning (COND_EXPR);
3921 rhs = save_expr (rhs);
3923 /* Produce (a ? (b = rhs) : (c = rhs))
3924 except that the RHS goes through a save-expr
3925 so the code to compute it is only emitted once. */
3926 tree cond
3927 = build_conditional_expr (TREE_OPERAND (lhs, 0),
3928 build_modify_expr (TREE_OPERAND (lhs, 1),
3929 modifycode, rhs),
3930 build_modify_expr (TREE_OPERAND (lhs, 2),
3931 modifycode, rhs));
3932 if (TREE_CODE (cond) == ERROR_MARK)
3933 return cond;
3934 /* Make sure the code to compute the rhs comes out
3935 before the split. */
3936 return build (COMPOUND_EXPR, TREE_TYPE (lhs),
3937 /* But cast it to void to avoid an "unused" error. */
3938 convert (void_type_node, rhs), cond);
3940 default:
3941 break;
3944 /* If a binary op has been requested, combine the old LHS value with the RHS
3945 producing the value we should actually store into the LHS. */
3947 if (modifycode != NOP_EXPR)
3949 lhs = stabilize_reference (lhs);
3950 newrhs = build_binary_op (modifycode, lhs, rhs, 1);
3953 /* Handle a cast used as an "lvalue".
3954 We have already performed any binary operator using the value as cast.
3955 Now convert the result to the cast type of the lhs,
3956 and then true type of the lhs and store it there;
3957 then convert result back to the cast type to be the value
3958 of the assignment. */
3960 switch (TREE_CODE (lhs))
3962 case NOP_EXPR:
3963 case CONVERT_EXPR:
3964 case FLOAT_EXPR:
3965 case FIX_TRUNC_EXPR:
3966 case FIX_FLOOR_EXPR:
3967 case FIX_ROUND_EXPR:
3968 case FIX_CEIL_EXPR:
3969 if (TREE_CODE (TREE_TYPE (newrhs)) == ARRAY_TYPE
3970 || TREE_CODE (TREE_TYPE (newrhs)) == FUNCTION_TYPE)
3971 newrhs = default_conversion (newrhs);
3973 tree inner_lhs = TREE_OPERAND (lhs, 0);
3974 tree result;
3975 result = build_modify_expr (inner_lhs, NOP_EXPR,
3976 convert (TREE_TYPE (inner_lhs),
3977 convert (lhstype, newrhs)));
3978 if (TREE_CODE (result) == ERROR_MARK)
3979 return result;
3980 pedantic_lvalue_warning (CONVERT_EXPR);
3981 return convert (TREE_TYPE (lhs), result);
3984 default:
3985 break;
3988 /* Now we have handled acceptable kinds of LHS that are not truly lvalues.
3989 Reject anything strange now. */
3991 if (!lvalue_or_else (lhs, "invalid lvalue in assignment"))
3992 return error_mark_node;
3994 /* Warn about storing in something that is `const'. */
3996 if (TREE_READONLY (lhs) || TYPE_READONLY (lhstype)
3997 || ((TREE_CODE (lhstype) == RECORD_TYPE
3998 || TREE_CODE (lhstype) == UNION_TYPE)
3999 && C_TYPE_FIELDS_READONLY (lhstype)))
4000 readonly_warning (lhs, "assignment");
4002 /* If storing into a structure or union member,
4003 it has probably been given type `int'.
4004 Compute the type that would go with
4005 the actual amount of storage the member occupies. */
4007 if (TREE_CODE (lhs) == COMPONENT_REF
4008 && (TREE_CODE (lhstype) == INTEGER_TYPE
4009 || TREE_CODE (lhstype) == BOOLEAN_TYPE
4010 || TREE_CODE (lhstype) == REAL_TYPE
4011 || TREE_CODE (lhstype) == ENUMERAL_TYPE))
4012 lhstype = TREE_TYPE (get_unwidened (lhs, 0));
4014 /* If storing in a field that is in actuality a short or narrower than one,
4015 we must store in the field in its actual type. */
4017 if (lhstype != TREE_TYPE (lhs))
4019 lhs = copy_node (lhs);
4020 TREE_TYPE (lhs) = lhstype;
4023 /* Convert new value to destination type. */
4025 newrhs = convert_for_assignment (lhstype, newrhs, _("assignment"),
4026 NULL_TREE, NULL_TREE, 0);
4027 if (TREE_CODE (newrhs) == ERROR_MARK)
4028 return error_mark_node;
4030 /* Scan operands */
4032 result = build (MODIFY_EXPR, lhstype, lhs, newrhs);
4033 TREE_SIDE_EFFECTS (result) = 1;
4035 /* If we got the LHS in a different type for storing in,
4036 convert the result back to the nominal type of LHS
4037 so that the value we return always has the same type
4038 as the LHS argument. */
4040 if (olhstype == TREE_TYPE (result))
4041 return result;
4042 return convert_for_assignment (olhstype, result, _("assignment"),
4043 NULL_TREE, NULL_TREE, 0);
4046 /* Convert value RHS to type TYPE as preparation for an assignment
4047 to an lvalue of type TYPE.
4048 The real work of conversion is done by `convert'.
4049 The purpose of this function is to generate error messages
4050 for assignments that are not allowed in C.
4051 ERRTYPE is a string to use in error messages:
4052 "assignment", "return", etc. If it is null, this is parameter passing
4053 for a function call (and different error messages are output).
4055 FUNNAME is the name of the function being called,
4056 as an IDENTIFIER_NODE, or null.
4057 PARMNUM is the number of the argument, for printing in error messages. */
4059 static tree
4060 convert_for_assignment (type, rhs, errtype, fundecl, funname, parmnum)
4061 tree type, rhs;
4062 const char *errtype;
4063 tree fundecl, funname;
4064 int parmnum;
4066 register enum tree_code codel = TREE_CODE (type);
4067 register tree rhstype;
4068 register enum tree_code coder;
4070 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4071 /* Do not use STRIP_NOPS here. We do not want an enumerator
4072 whose value is 0 to count as a null pointer constant. */
4073 if (TREE_CODE (rhs) == NON_LVALUE_EXPR)
4074 rhs = TREE_OPERAND (rhs, 0);
4076 if (TREE_CODE (TREE_TYPE (rhs)) == ARRAY_TYPE
4077 || TREE_CODE (TREE_TYPE (rhs)) == FUNCTION_TYPE)
4078 rhs = default_conversion (rhs);
4079 else if (optimize && TREE_CODE (rhs) == VAR_DECL)
4080 rhs = decl_constant_value_for_broken_optimization (rhs);
4082 rhstype = TREE_TYPE (rhs);
4083 coder = TREE_CODE (rhstype);
4085 if (coder == ERROR_MARK)
4086 return error_mark_node;
4088 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (rhstype))
4090 overflow_warning (rhs);
4091 /* Check for Objective-C protocols. This will issue a warning if
4092 there are protocol violations. No need to use the return value. */
4093 maybe_objc_comptypes (type, rhstype, 0);
4094 return rhs;
4097 if (coder == VOID_TYPE)
4099 error ("void value not ignored as it ought to be");
4100 return error_mark_node;
4102 /* A type converts to a reference to it.
4103 This code doesn't fully support references, it's just for the
4104 special case of va_start and va_copy. */
4105 if (codel == REFERENCE_TYPE
4106 && comptypes (TREE_TYPE (type), TREE_TYPE (rhs)) == 1)
4108 if (mark_addressable (rhs) == 0)
4109 return error_mark_node;
4110 rhs = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (rhs)), rhs);
4112 /* We already know that these two types are compatible, but they
4113 may not be exactly identical. In fact, `TREE_TYPE (type)' is
4114 likely to be __builtin_va_list and `TREE_TYPE (rhs)' is
4115 likely to be va_list, a typedef to __builtin_va_list, which
4116 is different enough that it will cause problems later. */
4117 if (TREE_TYPE (TREE_TYPE (rhs)) != TREE_TYPE (type))
4118 rhs = build1 (NOP_EXPR, build_pointer_type (TREE_TYPE (type)), rhs);
4120 rhs = build1 (NOP_EXPR, type, rhs);
4121 return rhs;
4123 /* Arithmetic types all interconvert, and enum is treated like int. */
4124 else if ((codel == INTEGER_TYPE || codel == REAL_TYPE
4125 || codel == ENUMERAL_TYPE || codel == COMPLEX_TYPE
4126 || codel == BOOLEAN_TYPE)
4127 && (coder == INTEGER_TYPE || coder == REAL_TYPE
4128 || coder == ENUMERAL_TYPE || coder == COMPLEX_TYPE
4129 || coder == BOOLEAN_TYPE))
4130 return convert_and_check (type, rhs);
4132 /* Conversion to a transparent union from its member types.
4133 This applies only to function arguments. */
4134 else if (codel == UNION_TYPE && TYPE_TRANSPARENT_UNION (type) && ! errtype)
4136 tree memb_types;
4137 tree marginal_memb_type = 0;
4139 for (memb_types = TYPE_FIELDS (type); memb_types;
4140 memb_types = TREE_CHAIN (memb_types))
4142 tree memb_type = TREE_TYPE (memb_types);
4144 if (comptypes (TYPE_MAIN_VARIANT (memb_type),
4145 TYPE_MAIN_VARIANT (rhstype)))
4146 break;
4148 if (TREE_CODE (memb_type) != POINTER_TYPE)
4149 continue;
4151 if (coder == POINTER_TYPE)
4153 register tree ttl = TREE_TYPE (memb_type);
4154 register tree ttr = TREE_TYPE (rhstype);
4156 /* Any non-function converts to a [const][volatile] void *
4157 and vice versa; otherwise, targets must be the same.
4158 Meanwhile, the lhs target must have all the qualifiers of
4159 the rhs. */
4160 if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
4161 || comp_target_types (memb_type, rhstype))
4163 /* If this type won't generate any warnings, use it. */
4164 if (TYPE_QUALS (ttl) == TYPE_QUALS (ttr)
4165 || ((TREE_CODE (ttr) == FUNCTION_TYPE
4166 && TREE_CODE (ttl) == FUNCTION_TYPE)
4167 ? ((TYPE_QUALS (ttl) | TYPE_QUALS (ttr))
4168 == TYPE_QUALS (ttr))
4169 : ((TYPE_QUALS (ttl) | TYPE_QUALS (ttr))
4170 == TYPE_QUALS (ttl))))
4171 break;
4173 /* Keep looking for a better type, but remember this one. */
4174 if (! marginal_memb_type)
4175 marginal_memb_type = memb_type;
4179 /* Can convert integer zero to any pointer type. */
4180 if (integer_zerop (rhs)
4181 || (TREE_CODE (rhs) == NOP_EXPR
4182 && integer_zerop (TREE_OPERAND (rhs, 0))))
4184 rhs = null_pointer_node;
4185 break;
4189 if (memb_types || marginal_memb_type)
4191 if (! memb_types)
4193 /* We have only a marginally acceptable member type;
4194 it needs a warning. */
4195 register tree ttl = TREE_TYPE (marginal_memb_type);
4196 register tree ttr = TREE_TYPE (rhstype);
4198 /* Const and volatile mean something different for function
4199 types, so the usual warnings are not appropriate. */
4200 if (TREE_CODE (ttr) == FUNCTION_TYPE
4201 && TREE_CODE (ttl) == FUNCTION_TYPE)
4203 /* Because const and volatile on functions are
4204 restrictions that say the function will not do
4205 certain things, it is okay to use a const or volatile
4206 function where an ordinary one is wanted, but not
4207 vice-versa. */
4208 if (TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr))
4209 warn_for_assignment ("%s makes qualified function pointer from unqualified",
4210 errtype, funname, parmnum);
4212 else if (TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl))
4213 warn_for_assignment ("%s discards qualifiers from pointer target type",
4214 errtype, funname,
4215 parmnum);
4218 if (pedantic && ! DECL_IN_SYSTEM_HEADER (fundecl))
4219 pedwarn ("ISO C prohibits argument conversion to union type");
4221 return build1 (NOP_EXPR, type, rhs);
4225 /* Conversions among pointers */
4226 else if ((codel == POINTER_TYPE || codel == REFERENCE_TYPE)
4227 && (coder == POINTER_TYPE || coder == REFERENCE_TYPE))
4229 register tree ttl = TREE_TYPE (type);
4230 register tree ttr = TREE_TYPE (rhstype);
4232 /* Any non-function converts to a [const][volatile] void *
4233 and vice versa; otherwise, targets must be the same.
4234 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
4235 if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
4236 || comp_target_types (type, rhstype)
4237 || (unsigned_type (TYPE_MAIN_VARIANT (ttl))
4238 == unsigned_type (TYPE_MAIN_VARIANT (ttr))))
4240 if (pedantic
4241 && ((VOID_TYPE_P (ttl) && TREE_CODE (ttr) == FUNCTION_TYPE)
4243 (VOID_TYPE_P (ttr)
4244 /* Check TREE_CODE to catch cases like (void *) (char *) 0
4245 which are not ANSI null ptr constants. */
4246 && (!integer_zerop (rhs) || TREE_CODE (rhs) == NOP_EXPR)
4247 && TREE_CODE (ttl) == FUNCTION_TYPE)))
4248 warn_for_assignment ("ISO C forbids %s between function pointer and `void *'",
4249 errtype, funname, parmnum);
4250 /* Const and volatile mean something different for function types,
4251 so the usual warnings are not appropriate. */
4252 else if (TREE_CODE (ttr) != FUNCTION_TYPE
4253 && TREE_CODE (ttl) != FUNCTION_TYPE)
4255 if (TYPE_QUALS (ttr) & ~TYPE_QUALS (ttl))
4256 warn_for_assignment ("%s discards qualifiers from pointer target type",
4257 errtype, funname, parmnum);
4258 /* If this is not a case of ignoring a mismatch in signedness,
4259 no warning. */
4260 else if (VOID_TYPE_P (ttl) || VOID_TYPE_P (ttr)
4261 || comp_target_types (type, rhstype))
4263 /* If there is a mismatch, do warn. */
4264 else if (pedantic)
4265 warn_for_assignment ("pointer targets in %s differ in signedness",
4266 errtype, funname, parmnum);
4268 else if (TREE_CODE (ttl) == FUNCTION_TYPE
4269 && TREE_CODE (ttr) == FUNCTION_TYPE)
4271 /* Because const and volatile on functions are restrictions
4272 that say the function will not do certain things,
4273 it is okay to use a const or volatile function
4274 where an ordinary one is wanted, but not vice-versa. */
4275 if (TYPE_QUALS (ttl) & ~TYPE_QUALS (ttr))
4276 warn_for_assignment ("%s makes qualified function pointer from unqualified",
4277 errtype, funname, parmnum);
4280 else
4281 warn_for_assignment ("%s from incompatible pointer type",
4282 errtype, funname, parmnum);
4283 return convert (type, rhs);
4285 else if (codel == POINTER_TYPE && coder == INTEGER_TYPE)
4287 /* An explicit constant 0 can convert to a pointer,
4288 or one that results from arithmetic, even including
4289 a cast to integer type. */
4290 if (! (TREE_CODE (rhs) == INTEGER_CST && integer_zerop (rhs))
4292 ! (TREE_CODE (rhs) == NOP_EXPR
4293 && TREE_CODE (TREE_TYPE (rhs)) == INTEGER_TYPE
4294 && TREE_CODE (TREE_OPERAND (rhs, 0)) == INTEGER_CST
4295 && integer_zerop (TREE_OPERAND (rhs, 0))))
4297 warn_for_assignment ("%s makes pointer from integer without a cast",
4298 errtype, funname, parmnum);
4299 return convert (type, rhs);
4301 return null_pointer_node;
4303 else if (codel == INTEGER_TYPE && coder == POINTER_TYPE)
4305 warn_for_assignment ("%s makes integer from pointer without a cast",
4306 errtype, funname, parmnum);
4307 return convert (type, rhs);
4309 else if (codel == BOOLEAN_TYPE && coder == POINTER_TYPE)
4310 return convert (type, rhs);
4312 if (!errtype)
4314 if (funname)
4316 tree selector = maybe_building_objc_message_expr ();
4318 if (selector && parmnum > 2)
4319 error ("incompatible type for argument %d of `%s'",
4320 parmnum - 2, IDENTIFIER_POINTER (selector));
4321 else
4322 error ("incompatible type for argument %d of `%s'",
4323 parmnum, IDENTIFIER_POINTER (funname));
4325 else
4326 error ("incompatible type for argument %d of indirect function call",
4327 parmnum);
4329 else
4330 error ("incompatible types in %s", errtype);
4332 return error_mark_node;
4335 /* Print a warning using MSGID.
4336 It gets OPNAME as its one parameter.
4337 If OPNAME is null, it is replaced by "passing arg ARGNUM of `FUNCTION'".
4338 FUNCTION and ARGNUM are handled specially if we are building an
4339 Objective-C selector. */
4341 static void
4342 warn_for_assignment (msgid, opname, function, argnum)
4343 const char *msgid;
4344 const char *opname;
4345 tree function;
4346 int argnum;
4348 if (opname == 0)
4350 tree selector = maybe_building_objc_message_expr ();
4351 char * new_opname;
4353 if (selector && argnum > 2)
4355 function = selector;
4356 argnum -= 2;
4358 if (function)
4360 /* Function name is known; supply it. */
4361 const char *argstring = _("passing arg %d of `%s'");
4362 new_opname = (char *) alloca (IDENTIFIER_LENGTH (function)
4363 + strlen (argstring) + 1 + 25
4364 /*%d*/ + 1);
4365 sprintf (new_opname, argstring, argnum,
4366 IDENTIFIER_POINTER (function));
4368 else
4370 /* Function name unknown (call through ptr); just give arg number.*/
4371 const char *argnofun = _("passing arg %d of pointer to function");
4372 new_opname = (char *) alloca (strlen (argnofun) + 1 + 25 /*%d*/ + 1);
4373 sprintf (new_opname, argnofun, argnum);
4375 opname = new_opname;
4377 pedwarn (msgid, opname);
4380 /* If VALUE is a compound expr all of whose expressions are constant, then
4381 return its value. Otherwise, return error_mark_node.
4383 This is for handling COMPOUND_EXPRs as initializer elements
4384 which is allowed with a warning when -pedantic is specified. */
4386 static tree
4387 valid_compound_expr_initializer (value, endtype)
4388 tree value;
4389 tree endtype;
4391 if (TREE_CODE (value) == COMPOUND_EXPR)
4393 if (valid_compound_expr_initializer (TREE_OPERAND (value, 0), endtype)
4394 == error_mark_node)
4395 return error_mark_node;
4396 return valid_compound_expr_initializer (TREE_OPERAND (value, 1),
4397 endtype);
4399 else if (! TREE_CONSTANT (value)
4400 && ! initializer_constant_valid_p (value, endtype))
4401 return error_mark_node;
4402 else
4403 return value;
4406 /* Perform appropriate conversions on the initial value of a variable,
4407 store it in the declaration DECL,
4408 and print any error messages that are appropriate.
4409 If the init is invalid, store an ERROR_MARK. */
4411 void
4412 store_init_value (decl, init)
4413 tree decl, init;
4415 register tree value, type;
4417 /* If variable's type was invalidly declared, just ignore it. */
4419 type = TREE_TYPE (decl);
4420 if (TREE_CODE (type) == ERROR_MARK)
4421 return;
4423 /* Digest the specified initializer into an expression. */
4425 value = digest_init (type, init, TREE_STATIC (decl),
4426 TREE_STATIC (decl) || (pedantic && !flag_isoc99));
4428 /* Store the expression if valid; else report error. */
4430 #if 0
4431 /* Note that this is the only place we can detect the error
4432 in a case such as struct foo bar = (struct foo) { x, y };
4433 where there is one initial value which is a constructor expression. */
4434 if (value == error_mark_node)
4436 else if (TREE_STATIC (decl) && ! TREE_CONSTANT (value))
4438 error ("initializer for static variable is not constant");
4439 value = error_mark_node;
4441 else if (TREE_STATIC (decl)
4442 && initializer_constant_valid_p (value, TREE_TYPE (value)) == 0)
4444 error ("initializer for static variable uses complicated arithmetic");
4445 value = error_mark_node;
4447 else
4449 if (pedantic && TREE_CODE (value) == CONSTRUCTOR)
4451 if (! TREE_CONSTANT (value))
4452 pedwarn ("aggregate initializer is not constant");
4453 else if (! TREE_STATIC (value))
4454 pedwarn ("aggregate initializer uses complicated arithmetic");
4457 #endif
4459 if (warn_traditional && !in_system_header
4460 && AGGREGATE_TYPE_P (TREE_TYPE (decl)) && ! TREE_STATIC (decl))
4461 warning ("traditional C rejects automatic aggregate initialization");
4463 DECL_INITIAL (decl) = value;
4465 /* ANSI wants warnings about out-of-range constant initializers. */
4466 STRIP_TYPE_NOPS (value);
4467 constant_expression_warning (value);
4470 /* Methods for storing and printing names for error messages. */
4472 /* Implement a spelling stack that allows components of a name to be pushed
4473 and popped. Each element on the stack is this structure. */
4475 struct spelling
4477 int kind;
4478 union
4480 int i;
4481 const char *s;
4482 } u;
4485 #define SPELLING_STRING 1
4486 #define SPELLING_MEMBER 2
4487 #define SPELLING_BOUNDS 3
4489 static struct spelling *spelling; /* Next stack element (unused). */
4490 static struct spelling *spelling_base; /* Spelling stack base. */
4491 static int spelling_size; /* Size of the spelling stack. */
4493 /* Macros to save and restore the spelling stack around push_... functions.
4494 Alternative to SAVE_SPELLING_STACK. */
4496 #define SPELLING_DEPTH() (spelling - spelling_base)
4497 #define RESTORE_SPELLING_DEPTH(depth) (spelling = spelling_base + depth)
4499 /* Save and restore the spelling stack around arbitrary C code. */
4501 #define SAVE_SPELLING_DEPTH(code) \
4503 int __depth = SPELLING_DEPTH (); \
4504 code; \
4505 RESTORE_SPELLING_DEPTH (__depth); \
4508 /* Push an element on the spelling stack with type KIND and assign VALUE
4509 to MEMBER. */
4511 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
4513 int depth = SPELLING_DEPTH (); \
4515 if (depth >= spelling_size) \
4517 spelling_size += 10; \
4518 if (spelling_base == 0) \
4519 spelling_base \
4520 = (struct spelling *) xmalloc (spelling_size * sizeof (struct spelling)); \
4521 else \
4522 spelling_base \
4523 = (struct spelling *) xrealloc (spelling_base, \
4524 spelling_size * sizeof (struct spelling)); \
4525 RESTORE_SPELLING_DEPTH (depth); \
4528 spelling->kind = (KIND); \
4529 spelling->MEMBER = (VALUE); \
4530 spelling++; \
4533 /* Push STRING on the stack. Printed literally. */
4535 static void
4536 push_string (string)
4537 const char *string;
4539 PUSH_SPELLING (SPELLING_STRING, string, u.s);
4542 /* Push a member name on the stack. Printed as '.' STRING. */
4544 static void
4545 push_member_name (decl)
4546 tree decl;
4549 const char *string
4550 = DECL_NAME (decl) ? IDENTIFIER_POINTER (DECL_NAME (decl)) : "<anonymous>";
4551 PUSH_SPELLING (SPELLING_MEMBER, string, u.s);
4554 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
4556 static void
4557 push_array_bounds (bounds)
4558 int bounds;
4560 PUSH_SPELLING (SPELLING_BOUNDS, bounds, u.i);
4563 /* Compute the maximum size in bytes of the printed spelling. */
4565 static int
4566 spelling_length ()
4568 register int size = 0;
4569 register struct spelling *p;
4571 for (p = spelling_base; p < spelling; p++)
4573 if (p->kind == SPELLING_BOUNDS)
4574 size += 25;
4575 else
4576 size += strlen (p->u.s) + 1;
4579 return size;
4582 /* Print the spelling to BUFFER and return it. */
4584 static char *
4585 print_spelling (buffer)
4586 register char *buffer;
4588 register char *d = buffer;
4589 register struct spelling *p;
4591 for (p = spelling_base; p < spelling; p++)
4592 if (p->kind == SPELLING_BOUNDS)
4594 sprintf (d, "[%d]", p->u.i);
4595 d += strlen (d);
4597 else
4599 register const char *s;
4600 if (p->kind == SPELLING_MEMBER)
4601 *d++ = '.';
4602 for (s = p->u.s; (*d = *s++); d++)
4605 *d++ = '\0';
4606 return buffer;
4609 /* Issue an error message for a bad initializer component.
4610 MSGID identifies the message.
4611 The component name is taken from the spelling stack. */
4613 void
4614 error_init (msgid)
4615 const char *msgid;
4617 char *ofwhat;
4619 error ("%s", msgid);
4620 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4621 if (*ofwhat)
4622 error ("(near initialization for `%s')", ofwhat);
4625 /* Issue a pedantic warning for a bad initializer component.
4626 MSGID identifies the message.
4627 The component name is taken from the spelling stack. */
4629 void
4630 pedwarn_init (msgid)
4631 const char *msgid;
4633 char *ofwhat;
4635 pedwarn ("%s", msgid);
4636 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4637 if (*ofwhat)
4638 pedwarn ("(near initialization for `%s')", ofwhat);
4641 /* Issue a warning for a bad initializer component.
4642 MSGID identifies the message.
4643 The component name is taken from the spelling stack. */
4645 static void
4646 warning_init (msgid)
4647 const char *msgid;
4649 char *ofwhat;
4651 warning ("%s", msgid);
4652 ofwhat = print_spelling ((char *) alloca (spelling_length () + 1));
4653 if (*ofwhat)
4654 warning ("(near initialization for `%s')", ofwhat);
4657 /* Digest the parser output INIT as an initializer for type TYPE.
4658 Return a C expression of type TYPE to represent the initial value.
4660 The arguments REQUIRE_CONSTANT and CONSTRUCTOR_CONSTANT request errors
4661 if non-constant initializers or elements are seen. CONSTRUCTOR_CONSTANT
4662 applies only to elements of constructors. */
4664 static tree
4665 digest_init (type, init, require_constant, constructor_constant)
4666 tree type, init;
4667 int require_constant, constructor_constant;
4669 enum tree_code code = TREE_CODE (type);
4670 tree inside_init = init;
4672 if (type == error_mark_node
4673 || init == error_mark_node
4674 || TREE_TYPE (init) == error_mark_node)
4675 return error_mark_node;
4677 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4678 /* Do not use STRIP_NOPS here. We do not want an enumerator
4679 whose value is 0 to count as a null pointer constant. */
4680 if (TREE_CODE (init) == NON_LVALUE_EXPR)
4681 inside_init = TREE_OPERAND (init, 0);
4683 inside_init = fold (inside_init);
4685 /* Initialization of an array of chars from a string constant
4686 optionally enclosed in braces. */
4688 if (code == ARRAY_TYPE)
4690 tree typ1 = TYPE_MAIN_VARIANT (TREE_TYPE (type));
4691 if ((typ1 == char_type_node
4692 || typ1 == signed_char_type_node
4693 || typ1 == unsigned_char_type_node
4694 || typ1 == unsigned_wchar_type_node
4695 || typ1 == signed_wchar_type_node)
4696 && ((inside_init && TREE_CODE (inside_init) == STRING_CST)))
4698 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
4699 TYPE_MAIN_VARIANT (type)))
4700 return inside_init;
4702 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)))
4703 != char_type_node)
4704 && TYPE_PRECISION (typ1) == TYPE_PRECISION (char_type_node))
4706 error_init ("char-array initialized from wide string");
4707 return error_mark_node;
4709 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init)))
4710 == char_type_node)
4711 && TYPE_PRECISION (typ1) != TYPE_PRECISION (char_type_node))
4713 error_init ("int-array initialized from non-wide string");
4714 return error_mark_node;
4717 TREE_TYPE (inside_init) = type;
4718 if (TYPE_DOMAIN (type) != 0
4719 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
4720 /* Subtract 1 (or sizeof (wchar_t))
4721 because it's ok to ignore the terminating null char
4722 that is counted in the length of the constant. */
4723 && 0 > compare_tree_int (TYPE_SIZE_UNIT (type),
4724 TREE_STRING_LENGTH (inside_init)
4725 - ((TYPE_PRECISION (typ1)
4726 != TYPE_PRECISION (char_type_node))
4727 ? (TYPE_PRECISION (wchar_type_node)
4728 / BITS_PER_UNIT)
4729 : 1)))
4730 pedwarn_init ("initializer-string for array of chars is too long");
4732 return inside_init;
4736 /* Any type can be initialized
4737 from an expression of the same type, optionally with braces. */
4739 if (inside_init && TREE_TYPE (inside_init) != 0
4740 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init)),
4741 TYPE_MAIN_VARIANT (type))
4742 || (code == ARRAY_TYPE
4743 && comptypes (TREE_TYPE (inside_init), type))
4744 || (code == POINTER_TYPE
4745 && (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
4746 || TREE_CODE (TREE_TYPE (inside_init)) == FUNCTION_TYPE)
4747 && comptypes (TREE_TYPE (TREE_TYPE (inside_init)),
4748 TREE_TYPE (type)))))
4750 if (code == POINTER_TYPE
4751 && (TREE_CODE (TREE_TYPE (inside_init)) == ARRAY_TYPE
4752 || TREE_CODE (TREE_TYPE (inside_init)) == FUNCTION_TYPE))
4753 inside_init = default_conversion (inside_init);
4754 else if (code == ARRAY_TYPE && TREE_CODE (inside_init) != STRING_CST
4755 && TREE_CODE (inside_init) != CONSTRUCTOR)
4757 error_init ("array initialized from non-constant array expression");
4758 return error_mark_node;
4761 if (optimize && TREE_CODE (inside_init) == VAR_DECL)
4762 inside_init = decl_constant_value_for_broken_optimization (inside_init);
4764 /* Compound expressions can only occur here if -pedantic or
4765 -pedantic-errors is specified. In the later case, we always want
4766 an error. In the former case, we simply want a warning. */
4767 if (require_constant && pedantic
4768 && TREE_CODE (inside_init) == COMPOUND_EXPR)
4770 inside_init
4771 = valid_compound_expr_initializer (inside_init,
4772 TREE_TYPE (inside_init));
4773 if (inside_init == error_mark_node)
4774 error_init ("initializer element is not constant");
4775 else
4776 pedwarn_init ("initializer element is not constant");
4777 if (flag_pedantic_errors)
4778 inside_init = error_mark_node;
4780 else if (require_constant
4781 && (!TREE_CONSTANT (inside_init)
4782 /* This test catches things like `7 / 0' which
4783 result in an expression for which TREE_CONSTANT
4784 is true, but which is not actually something
4785 that is a legal constant. We really should not
4786 be using this function, because it is a part of
4787 the back-end. Instead, the expression should
4788 already have been turned into ERROR_MARK_NODE. */
4789 || !initializer_constant_valid_p (inside_init,
4790 TREE_TYPE (inside_init))))
4792 error_init ("initializer element is not constant");
4793 inside_init = error_mark_node;
4796 return inside_init;
4799 /* Handle scalar types, including conversions. */
4801 if (code == INTEGER_TYPE || code == REAL_TYPE || code == POINTER_TYPE
4802 || code == ENUMERAL_TYPE || code == BOOLEAN_TYPE || code == COMPLEX_TYPE)
4804 /* Note that convert_for_assignment calls default_conversion
4805 for arrays and functions. We must not call it in the
4806 case where inside_init is a null pointer constant. */
4807 inside_init
4808 = convert_for_assignment (type, init, _("initialization"),
4809 NULL_TREE, NULL_TREE, 0);
4811 if (require_constant && ! TREE_CONSTANT (inside_init))
4813 error_init ("initializer element is not constant");
4814 inside_init = error_mark_node;
4816 else if (require_constant
4817 && initializer_constant_valid_p (inside_init, TREE_TYPE (inside_init)) == 0)
4819 error_init ("initializer element is not computable at load time");
4820 inside_init = error_mark_node;
4823 return inside_init;
4826 /* Come here only for records and arrays. */
4828 if (COMPLETE_TYPE_P (type) && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4830 error_init ("variable-sized object may not be initialized");
4831 return error_mark_node;
4834 /* Traditionally, you can write struct foo x = 0;
4835 and it initializes the first element of x to 0. */
4836 if (flag_traditional)
4838 tree top = 0, prev = 0, otype = type;
4839 while (TREE_CODE (type) == RECORD_TYPE
4840 || TREE_CODE (type) == ARRAY_TYPE
4841 || TREE_CODE (type) == QUAL_UNION_TYPE
4842 || TREE_CODE (type) == UNION_TYPE)
4844 tree temp = build (CONSTRUCTOR, type, NULL_TREE, NULL_TREE);
4845 if (prev == 0)
4846 top = temp;
4847 else
4848 TREE_OPERAND (prev, 1) = build_tree_list (NULL_TREE, temp);
4849 prev = temp;
4850 if (TREE_CODE (type) == ARRAY_TYPE)
4851 type = TREE_TYPE (type);
4852 else if (TYPE_FIELDS (type))
4853 type = TREE_TYPE (TYPE_FIELDS (type));
4854 else
4856 error_init ("invalid initializer");
4857 return error_mark_node;
4861 if (otype != type)
4863 TREE_OPERAND (prev, 1)
4864 = build_tree_list (NULL_TREE,
4865 digest_init (type, init, require_constant,
4866 constructor_constant));
4867 return top;
4869 else
4870 return error_mark_node;
4872 error_init ("invalid initializer");
4873 return error_mark_node;
4876 /* Handle initializers that use braces. */
4878 /* Type of object we are accumulating a constructor for.
4879 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
4880 static tree constructor_type;
4882 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
4883 left to fill. */
4884 static tree constructor_fields;
4886 /* For an ARRAY_TYPE, this is the specified index
4887 at which to store the next element we get. */
4888 static tree constructor_index;
4890 /* For an ARRAY_TYPE, this is the maximum index. */
4891 static tree constructor_max_index;
4893 /* For a RECORD_TYPE, this is the first field not yet written out. */
4894 static tree constructor_unfilled_fields;
4896 /* For an ARRAY_TYPE, this is the index of the first element
4897 not yet written out. */
4898 static tree constructor_unfilled_index;
4900 /* In a RECORD_TYPE, the byte index of the next consecutive field.
4901 This is so we can generate gaps between fields, when appropriate. */
4902 static tree constructor_bit_index;
4904 /* If we are saving up the elements rather than allocating them,
4905 this is the list of elements so far (in reverse order,
4906 most recent first). */
4907 static tree constructor_elements;
4909 /* 1 if constructor should be incrementally stored into a constructor chain,
4910 0 if all the elements should be kept in AVL tree. */
4911 static int constructor_incremental;
4913 /* 1 if so far this constructor's elements are all compile-time constants. */
4914 static int constructor_constant;
4916 /* 1 if so far this constructor's elements are all valid address constants. */
4917 static int constructor_simple;
4919 /* 1 if this constructor is erroneous so far. */
4920 static int constructor_erroneous;
4922 /* 1 if have called defer_addressed_constants. */
4923 static int constructor_subconstants_deferred;
4925 /* Structure for managing pending initializer elements, organized as an
4926 AVL tree. */
4928 struct init_node
4930 struct init_node *left, *right;
4931 struct init_node *parent;
4932 int balance;
4933 tree purpose;
4934 tree value;
4937 /* Tree of pending elements at this constructor level.
4938 These are elements encountered out of order
4939 which belong at places we haven't reached yet in actually
4940 writing the output.
4941 Will never hold tree nodes across GC runs. */
4942 static struct init_node *constructor_pending_elts;
4944 /* The SPELLING_DEPTH of this constructor. */
4945 static int constructor_depth;
4947 /* 0 if implicitly pushing constructor levels is allowed. */
4948 int constructor_no_implicit = 0; /* 0 for C; 1 for some other languages. */
4950 static int require_constant_value;
4951 static int require_constant_elements;
4953 /* DECL node for which an initializer is being read.
4954 0 means we are reading a constructor expression
4955 such as (struct foo) {...}. */
4956 static tree constructor_decl;
4958 /* start_init saves the ASMSPEC arg here for really_start_incremental_init. */
4959 static const char *constructor_asmspec;
4961 /* Nonzero if this is an initializer for a top-level decl. */
4962 static int constructor_top_level;
4964 /* Nesting depth of designator list. */
4965 static int designator_depth;
4967 /* Nonzero if there were diagnosed errors in this designator list. */
4968 static int designator_errorneous;
4971 /* This stack has a level for each implicit or explicit level of
4972 structuring in the initializer, including the outermost one. It
4973 saves the values of most of the variables above. */
4975 struct constructor_range_stack;
4977 struct constructor_stack
4979 struct constructor_stack *next;
4980 tree type;
4981 tree fields;
4982 tree index;
4983 tree max_index;
4984 tree unfilled_index;
4985 tree unfilled_fields;
4986 tree bit_index;
4987 tree elements;
4988 struct init_node *pending_elts;
4989 int offset;
4990 int depth;
4991 /* If nonzero, this value should replace the entire
4992 constructor at this level. */
4993 tree replacement_value;
4994 struct constructor_range_stack *range_stack;
4995 char constant;
4996 char simple;
4997 char implicit;
4998 char erroneous;
4999 char outer;
5000 char incremental;
5003 struct constructor_stack *constructor_stack;
5005 /* This stack represents designators from some range designator up to
5006 the last designator in the list. */
5008 struct constructor_range_stack
5010 struct constructor_range_stack *next, *prev;
5011 struct constructor_stack *stack;
5012 tree range_start;
5013 tree index;
5014 tree range_end;
5015 tree fields;
5018 struct constructor_range_stack *constructor_range_stack;
5020 /* This stack records separate initializers that are nested.
5021 Nested initializers can't happen in ANSI C, but GNU C allows them
5022 in cases like { ... (struct foo) { ... } ... }. */
5024 struct initializer_stack
5026 struct initializer_stack *next;
5027 tree decl;
5028 const char *asmspec;
5029 struct constructor_stack *constructor_stack;
5030 struct constructor_range_stack *constructor_range_stack;
5031 tree elements;
5032 struct spelling *spelling;
5033 struct spelling *spelling_base;
5034 int spelling_size;
5035 char top_level;
5036 char require_constant_value;
5037 char require_constant_elements;
5038 char deferred;
5041 struct initializer_stack *initializer_stack;
5043 /* Prepare to parse and output the initializer for variable DECL. */
5045 void
5046 start_init (decl, asmspec_tree, top_level)
5047 tree decl;
5048 tree asmspec_tree;
5049 int top_level;
5051 const char *locus;
5052 struct initializer_stack *p
5053 = (struct initializer_stack *) xmalloc (sizeof (struct initializer_stack));
5054 const char *asmspec = 0;
5056 if (asmspec_tree)
5057 asmspec = TREE_STRING_POINTER (asmspec_tree);
5059 p->decl = constructor_decl;
5060 p->asmspec = constructor_asmspec;
5061 p->require_constant_value = require_constant_value;
5062 p->require_constant_elements = require_constant_elements;
5063 p->constructor_stack = constructor_stack;
5064 p->constructor_range_stack = constructor_range_stack;
5065 p->elements = constructor_elements;
5066 p->spelling = spelling;
5067 p->spelling_base = spelling_base;
5068 p->spelling_size = spelling_size;
5069 p->deferred = constructor_subconstants_deferred;
5070 p->top_level = constructor_top_level;
5071 p->next = initializer_stack;
5072 initializer_stack = p;
5074 constructor_decl = decl;
5075 constructor_asmspec = asmspec;
5076 constructor_subconstants_deferred = 0;
5077 constructor_top_level = top_level;
5079 if (decl != 0)
5081 require_constant_value = TREE_STATIC (decl);
5082 require_constant_elements
5083 = ((TREE_STATIC (decl) || (pedantic && !flag_isoc99))
5084 /* For a scalar, you can always use any value to initialize,
5085 even within braces. */
5086 && (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE
5087 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
5088 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
5089 || TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE));
5090 locus = IDENTIFIER_POINTER (DECL_NAME (decl));
5092 else
5094 require_constant_value = 0;
5095 require_constant_elements = 0;
5096 locus = "(anonymous)";
5099 constructor_stack = 0;
5100 constructor_range_stack = 0;
5102 missing_braces_mentioned = 0;
5104 spelling_base = 0;
5105 spelling_size = 0;
5106 RESTORE_SPELLING_DEPTH (0);
5108 if (locus)
5109 push_string (locus);
5112 void
5113 finish_init ()
5115 struct initializer_stack *p = initializer_stack;
5117 /* Output subconstants (string constants, usually)
5118 that were referenced within this initializer and saved up.
5119 Must do this if and only if we called defer_addressed_constants. */
5120 if (constructor_subconstants_deferred)
5121 output_deferred_addressed_constants ();
5123 /* Free the whole constructor stack of this initializer. */
5124 while (constructor_stack)
5126 struct constructor_stack *q = constructor_stack;
5127 constructor_stack = q->next;
5128 free (q);
5131 if (constructor_range_stack)
5132 abort ();
5134 /* Pop back to the data of the outer initializer (if any). */
5135 constructor_decl = p->decl;
5136 constructor_asmspec = p->asmspec;
5137 require_constant_value = p->require_constant_value;
5138 require_constant_elements = p->require_constant_elements;
5139 constructor_stack = p->constructor_stack;
5140 constructor_range_stack = p->constructor_range_stack;
5141 constructor_elements = p->elements;
5142 spelling = p->spelling;
5143 spelling_base = p->spelling_base;
5144 spelling_size = p->spelling_size;
5145 constructor_subconstants_deferred = p->deferred;
5146 constructor_top_level = p->top_level;
5147 initializer_stack = p->next;
5148 free (p);
5151 /* Call here when we see the initializer is surrounded by braces.
5152 This is instead of a call to push_init_level;
5153 it is matched by a call to pop_init_level.
5155 TYPE is the type to initialize, for a constructor expression.
5156 For an initializer for a decl, TYPE is zero. */
5158 void
5159 really_start_incremental_init (type)
5160 tree type;
5162 struct constructor_stack *p
5163 = (struct constructor_stack *) xmalloc (sizeof (struct constructor_stack));
5165 if (type == 0)
5166 type = TREE_TYPE (constructor_decl);
5168 p->type = constructor_type;
5169 p->fields = constructor_fields;
5170 p->index = constructor_index;
5171 p->max_index = constructor_max_index;
5172 p->unfilled_index = constructor_unfilled_index;
5173 p->unfilled_fields = constructor_unfilled_fields;
5174 p->bit_index = constructor_bit_index;
5175 p->elements = constructor_elements;
5176 p->constant = constructor_constant;
5177 p->simple = constructor_simple;
5178 p->erroneous = constructor_erroneous;
5179 p->pending_elts = constructor_pending_elts;
5180 p->depth = constructor_depth;
5181 p->replacement_value = 0;
5182 p->implicit = 0;
5183 p->range_stack = 0;
5184 p->outer = 0;
5185 p->incremental = constructor_incremental;
5186 p->next = 0;
5187 constructor_stack = p;
5189 constructor_constant = 1;
5190 constructor_simple = 1;
5191 constructor_depth = SPELLING_DEPTH ();
5192 constructor_elements = 0;
5193 constructor_pending_elts = 0;
5194 constructor_type = type;
5195 constructor_incremental = 1;
5196 designator_depth = 0;
5197 designator_errorneous = 0;
5199 if (TREE_CODE (constructor_type) == RECORD_TYPE
5200 || TREE_CODE (constructor_type) == UNION_TYPE)
5202 constructor_fields = TYPE_FIELDS (constructor_type);
5203 /* Skip any nameless bit fields at the beginning. */
5204 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
5205 && DECL_NAME (constructor_fields) == 0)
5206 constructor_fields = TREE_CHAIN (constructor_fields);
5208 constructor_unfilled_fields = constructor_fields;
5209 constructor_bit_index = bitsize_zero_node;
5211 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5213 if (TYPE_DOMAIN (constructor_type))
5215 constructor_max_index
5216 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
5218 /* Detect non-empty initializations of zero-length arrays. */
5219 if (constructor_max_index == NULL_TREE)
5220 constructor_max_index = build_int_2 (-1, -1);
5222 constructor_index
5223 = convert (bitsizetype,
5224 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5226 else
5227 constructor_index = bitsize_zero_node;
5229 constructor_unfilled_index = constructor_index;
5231 else
5233 /* Handle the case of int x = {5}; */
5234 constructor_fields = constructor_type;
5235 constructor_unfilled_fields = constructor_type;
5239 /* Push down into a subobject, for initialization.
5240 If this is for an explicit set of braces, IMPLICIT is 0.
5241 If it is because the next element belongs at a lower level,
5242 IMPLICIT is 1 (or 2 if the push is because of designator list). */
5244 void
5245 push_init_level (implicit)
5246 int implicit;
5248 struct constructor_stack *p;
5249 tree value = NULL_TREE;
5251 /* If we've exhausted any levels that didn't have braces,
5252 pop them now. */
5253 while (constructor_stack->implicit)
5255 if ((TREE_CODE (constructor_type) == RECORD_TYPE
5256 || TREE_CODE (constructor_type) == UNION_TYPE)
5257 && constructor_fields == 0)
5258 process_init_element (pop_init_level (1));
5259 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
5260 && tree_int_cst_lt (constructor_max_index, constructor_index))
5261 process_init_element (pop_init_level (1));
5262 else
5263 break;
5266 /* Unless this is an explicit brace, we need to preserve previous
5267 content if any. */
5268 if (implicit)
5270 if ((TREE_CODE (constructor_type) == RECORD_TYPE
5271 || TREE_CODE (constructor_type) == UNION_TYPE)
5272 && constructor_fields)
5273 value = find_init_member (constructor_fields);
5274 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5275 value = find_init_member (constructor_index);
5278 p = (struct constructor_stack *) xmalloc (sizeof (struct constructor_stack));
5279 p->type = constructor_type;
5280 p->fields = constructor_fields;
5281 p->index = constructor_index;
5282 p->max_index = constructor_max_index;
5283 p->unfilled_index = constructor_unfilled_index;
5284 p->unfilled_fields = constructor_unfilled_fields;
5285 p->bit_index = constructor_bit_index;
5286 p->elements = constructor_elements;
5287 p->constant = constructor_constant;
5288 p->simple = constructor_simple;
5289 p->erroneous = constructor_erroneous;
5290 p->pending_elts = constructor_pending_elts;
5291 p->depth = constructor_depth;
5292 p->replacement_value = 0;
5293 p->implicit = implicit;
5294 p->outer = 0;
5295 p->incremental = constructor_incremental;
5296 p->next = constructor_stack;
5297 p->range_stack = 0;
5298 constructor_stack = p;
5300 constructor_constant = 1;
5301 constructor_simple = 1;
5302 constructor_depth = SPELLING_DEPTH ();
5303 constructor_elements = 0;
5304 constructor_incremental = 1;
5305 constructor_pending_elts = 0;
5306 if (!implicit)
5308 p->range_stack = constructor_range_stack;
5309 constructor_range_stack = 0;
5310 designator_depth = 0;
5311 designator_errorneous = 0;
5314 /* Don't die if an entire brace-pair level is superfluous
5315 in the containing level. */
5316 if (constructor_type == 0)
5318 else if (TREE_CODE (constructor_type) == RECORD_TYPE
5319 || TREE_CODE (constructor_type) == UNION_TYPE)
5321 /* Don't die if there are extra init elts at the end. */
5322 if (constructor_fields == 0)
5323 constructor_type = 0;
5324 else
5326 constructor_type = TREE_TYPE (constructor_fields);
5327 push_member_name (constructor_fields);
5328 constructor_depth++;
5331 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5333 constructor_type = TREE_TYPE (constructor_type);
5334 push_array_bounds (tree_low_cst (constructor_index, 0));
5335 constructor_depth++;
5338 if (constructor_type == 0)
5340 error_init ("extra brace group at end of initializer");
5341 constructor_fields = 0;
5342 constructor_unfilled_fields = 0;
5343 return;
5346 if (value && TREE_CODE (value) == CONSTRUCTOR)
5348 constructor_constant = TREE_CONSTANT (value);
5349 constructor_simple = TREE_STATIC (value);
5350 constructor_elements = TREE_OPERAND (value, 1);
5351 if (constructor_elements
5352 && (TREE_CODE (constructor_type) == RECORD_TYPE
5353 || TREE_CODE (constructor_type) == ARRAY_TYPE))
5354 set_nonincremental_init ();
5357 if (implicit == 1 && warn_missing_braces && !missing_braces_mentioned)
5359 missing_braces_mentioned = 1;
5360 warning_init ("missing braces around initializer");
5363 if (TREE_CODE (constructor_type) == RECORD_TYPE
5364 || TREE_CODE (constructor_type) == UNION_TYPE)
5366 constructor_fields = TYPE_FIELDS (constructor_type);
5367 /* Skip any nameless bit fields at the beginning. */
5368 while (constructor_fields != 0 && DECL_C_BIT_FIELD (constructor_fields)
5369 && DECL_NAME (constructor_fields) == 0)
5370 constructor_fields = TREE_CHAIN (constructor_fields);
5372 constructor_unfilled_fields = constructor_fields;
5373 constructor_bit_index = bitsize_zero_node;
5375 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5377 if (TYPE_DOMAIN (constructor_type))
5379 constructor_max_index
5380 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type));
5381 constructor_index
5382 = convert (bitsizetype,
5383 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
5385 /* ??? For GCC 3.1, remove special case initialization of
5386 zero-length array members from pop_init_level and set
5387 constructor_max_index such that we get the normal
5388 "excess elements" warning. */
5390 else
5391 constructor_index = bitsize_zero_node;
5393 constructor_unfilled_index = constructor_index;
5394 if (value && TREE_CODE (value) == STRING_CST)
5396 /* We need to split the char/wchar array into individual
5397 characters, so that we don't have to special case it
5398 everywhere. */
5399 set_nonincremental_init_from_string (value);
5402 else
5404 warning_init ("braces around scalar initializer");
5405 constructor_fields = constructor_type;
5406 constructor_unfilled_fields = constructor_type;
5410 /* At the end of an implicit or explicit brace level,
5411 finish up that level of constructor.
5412 If we were outputting the elements as they are read, return 0
5413 from inner levels (process_init_element ignores that),
5414 but return error_mark_node from the outermost level
5415 (that's what we want to put in DECL_INITIAL).
5416 Otherwise, return a CONSTRUCTOR expression. */
5418 tree
5419 pop_init_level (implicit)
5420 int implicit;
5422 struct constructor_stack *p;
5423 HOST_WIDE_INT size = 0;
5424 tree constructor = 0;
5426 if (implicit == 0)
5428 /* When we come to an explicit close brace,
5429 pop any inner levels that didn't have explicit braces. */
5430 while (constructor_stack->implicit)
5431 process_init_element (pop_init_level (1));
5433 if (constructor_range_stack)
5434 abort ();
5437 p = constructor_stack;
5439 if (constructor_type != 0)
5440 size = int_size_in_bytes (constructor_type);
5442 /* Error for initializing a flexible array member, or a zero-length
5443 array member in an inappropriate context. */
5444 if (constructor_type && constructor_fields
5445 && TREE_CODE (constructor_type) == ARRAY_TYPE
5446 && TYPE_DOMAIN (constructor_type)
5447 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type)))
5449 /* Silently discard empty initializations. The parser will
5450 already have pedwarned for empty brackets. */
5451 if (integer_zerop (constructor_unfilled_index))
5452 constructor_type = NULL_TREE;
5453 else if (! TYPE_SIZE (constructor_type))
5455 if (constructor_depth > 2)
5456 error_init ("initialization of flexible array member in a nested context");
5457 else if (pedantic)
5458 pedwarn_init ("initialization of a flexible array member");
5460 /* We have already issued an error message for the existance
5461 of a flexible array member not at the end of the structure.
5462 Discard the initializer so that we do not abort later. */
5463 if (TREE_CHAIN (constructor_fields) != NULL_TREE)
5464 constructor_type = NULL_TREE;
5466 else
5468 warning_init ("deprecated initialization of zero-length array");
5470 /* We must be initializing the last member of a top-level struct. */
5471 if (TREE_CHAIN (constructor_fields) != NULL_TREE)
5473 error_init ("initialization of zero-length array before end of structure");
5474 /* Discard the initializer so that we do not abort later. */
5475 constructor_type = NULL_TREE;
5477 else if (constructor_depth > 2)
5478 error_init ("initialization of zero-length array inside a nested context");
5482 /* Warn when some struct elements are implicitly initialized to zero. */
5483 if (extra_warnings
5484 && constructor_type
5485 && TREE_CODE (constructor_type) == RECORD_TYPE
5486 && constructor_unfilled_fields)
5488 /* Do not warn for flexible array members or zero-length arrays. */
5489 while (constructor_unfilled_fields
5490 && (! DECL_SIZE (constructor_unfilled_fields)
5491 || integer_zerop (DECL_SIZE (constructor_unfilled_fields))))
5492 constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
5494 if (constructor_unfilled_fields)
5496 push_member_name (constructor_unfilled_fields);
5497 warning_init ("missing initializer");
5498 RESTORE_SPELLING_DEPTH (constructor_depth);
5502 /* Now output all pending elements. */
5503 constructor_incremental = 1;
5504 output_pending_init_elements (1);
5506 /* Pad out the end of the structure. */
5507 if (p->replacement_value)
5508 /* If this closes a superfluous brace pair,
5509 just pass out the element between them. */
5510 constructor = p->replacement_value;
5511 else if (constructor_type == 0)
5513 else if (TREE_CODE (constructor_type) != RECORD_TYPE
5514 && TREE_CODE (constructor_type) != UNION_TYPE
5515 && TREE_CODE (constructor_type) != ARRAY_TYPE)
5517 /* A nonincremental scalar initializer--just return
5518 the element, after verifying there is just one. */
5519 if (constructor_elements == 0)
5521 if (!constructor_erroneous)
5522 error_init ("empty scalar initializer");
5523 constructor = error_mark_node;
5525 else if (TREE_CHAIN (constructor_elements) != 0)
5527 error_init ("extra elements in scalar initializer");
5528 constructor = TREE_VALUE (constructor_elements);
5530 else
5531 constructor = TREE_VALUE (constructor_elements);
5533 else
5535 if (constructor_erroneous)
5536 constructor = error_mark_node;
5537 else
5539 constructor = build (CONSTRUCTOR, constructor_type, NULL_TREE,
5540 nreverse (constructor_elements));
5541 if (constructor_constant)
5542 TREE_CONSTANT (constructor) = 1;
5543 if (constructor_constant && constructor_simple)
5544 TREE_STATIC (constructor) = 1;
5548 constructor_type = p->type;
5549 constructor_fields = p->fields;
5550 constructor_index = p->index;
5551 constructor_max_index = p->max_index;
5552 constructor_unfilled_index = p->unfilled_index;
5553 constructor_unfilled_fields = p->unfilled_fields;
5554 constructor_bit_index = p->bit_index;
5555 constructor_elements = p->elements;
5556 constructor_constant = p->constant;
5557 constructor_simple = p->simple;
5558 constructor_erroneous = p->erroneous;
5559 constructor_incremental = p->incremental;
5560 constructor_pending_elts = p->pending_elts;
5561 constructor_depth = p->depth;
5562 if (!p->implicit)
5563 constructor_range_stack = p->range_stack;
5564 RESTORE_SPELLING_DEPTH (constructor_depth);
5566 constructor_stack = p->next;
5567 free (p);
5569 if (constructor == 0)
5571 if (constructor_stack == 0)
5572 return error_mark_node;
5573 return NULL_TREE;
5575 return constructor;
5578 /* Common handling for both array range and field name designators.
5579 ARRAY argument is non-zero for array ranges. Returns zero for success. */
5581 static int
5582 set_designator (array)
5583 int array;
5585 tree subtype;
5586 enum tree_code subcode;
5588 /* Don't die if an entire brace-pair level is superfluous
5589 in the containing level. */
5590 if (constructor_type == 0)
5591 return 1;
5593 /* If there were errors in this designator list already, bail out silently. */
5594 if (designator_errorneous)
5595 return 1;
5597 if (!designator_depth)
5599 if (constructor_range_stack)
5600 abort ();
5602 /* Designator list starts at the level of closest explicit
5603 braces. */
5604 while (constructor_stack->implicit)
5605 process_init_element (pop_init_level (1));
5606 return 0;
5609 if (constructor_no_implicit)
5611 error_init ("initialization designators may not nest");
5612 return 1;
5615 if (TREE_CODE (constructor_type) == RECORD_TYPE
5616 || TREE_CODE (constructor_type) == UNION_TYPE)
5618 subtype = TREE_TYPE (constructor_fields);
5619 if (subtype != error_mark_node)
5620 subtype = TYPE_MAIN_VARIANT (subtype);
5622 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5624 subtype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
5626 else
5627 abort ();
5629 subcode = TREE_CODE (subtype);
5630 if (array && subcode != ARRAY_TYPE)
5632 error_init ("array index in non-array initializer");
5633 return 1;
5635 else if (!array && subcode != RECORD_TYPE && subcode != UNION_TYPE)
5637 error_init ("field name not in record or union initializer");
5638 return 1;
5641 push_init_level (2);
5642 return 0;
5645 /* If there are range designators in designator list, push a new designator
5646 to constructor_range_stack. RANGE_END is end of such stack range or
5647 NULL_TREE if there is no range designator at this level. */
5649 static void
5650 push_range_stack (range_end)
5651 tree range_end;
5653 struct constructor_range_stack *p;
5655 p = (struct constructor_range_stack *)
5656 ggc_alloc (sizeof (struct constructor_range_stack));
5657 p->prev = constructor_range_stack;
5658 p->next = 0;
5659 p->fields = constructor_fields;
5660 p->range_start = constructor_index;
5661 p->index = constructor_index;
5662 p->stack = constructor_stack;
5663 p->range_end = range_end;
5664 if (constructor_range_stack)
5665 constructor_range_stack->next = p;
5666 constructor_range_stack = p;
5669 /* Within an array initializer, specify the next index to be initialized.
5670 FIRST is that index. If LAST is nonzero, then initialize a range
5671 of indices, running from FIRST through LAST. */
5673 void
5674 set_init_index (first, last)
5675 tree first, last;
5677 if (set_designator (1))
5678 return;
5680 designator_errorneous = 1;
5682 while ((TREE_CODE (first) == NOP_EXPR
5683 || TREE_CODE (first) == CONVERT_EXPR
5684 || TREE_CODE (first) == NON_LVALUE_EXPR)
5685 && (TYPE_MODE (TREE_TYPE (first))
5686 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (first, 0)))))
5687 first = TREE_OPERAND (first, 0);
5689 if (last)
5690 while ((TREE_CODE (last) == NOP_EXPR
5691 || TREE_CODE (last) == CONVERT_EXPR
5692 || TREE_CODE (last) == NON_LVALUE_EXPR)
5693 && (TYPE_MODE (TREE_TYPE (last))
5694 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (last, 0)))))
5695 last = TREE_OPERAND (last, 0);
5697 if (TREE_CODE (first) != INTEGER_CST)
5698 error_init ("nonconstant array index in initializer");
5699 else if (last != 0 && TREE_CODE (last) != INTEGER_CST)
5700 error_init ("nonconstant array index in initializer");
5701 else if (TREE_CODE (constructor_type) != ARRAY_TYPE)
5702 error_init ("array index in non-array initializer");
5703 else if (constructor_max_index
5704 && tree_int_cst_lt (constructor_max_index, first))
5705 error_init ("array index in initializer exceeds array bounds");
5706 else
5708 constructor_index = convert (bitsizetype, first);
5710 if (last)
5712 if (tree_int_cst_equal (first, last))
5713 last = 0;
5714 else if (tree_int_cst_lt (last, first))
5716 error_init ("empty index range in initializer");
5717 last = 0;
5719 else
5721 last = convert (bitsizetype, last);
5722 if (constructor_max_index != 0
5723 && tree_int_cst_lt (constructor_max_index, last))
5725 error_init ("array index range in initializer exceeds array bounds");
5726 last = 0;
5731 designator_depth++;
5732 designator_errorneous = 0;
5733 if (constructor_range_stack || last)
5734 push_range_stack (last);
5738 /* Within a struct initializer, specify the next field to be initialized. */
5740 void
5741 set_init_label (fieldname)
5742 tree fieldname;
5744 tree tail;
5746 if (set_designator (0))
5747 return;
5749 designator_errorneous = 1;
5751 if (TREE_CODE (constructor_type) != RECORD_TYPE
5752 && TREE_CODE (constructor_type) != UNION_TYPE)
5754 error_init ("field name not in record or union initializer");
5755 return;
5758 for (tail = TYPE_FIELDS (constructor_type); tail;
5759 tail = TREE_CHAIN (tail))
5761 if (DECL_NAME (tail) == fieldname)
5762 break;
5765 if (tail == 0)
5766 error ("unknown field `%s' specified in initializer",
5767 IDENTIFIER_POINTER (fieldname));
5768 else
5770 constructor_fields = tail;
5771 designator_depth++;
5772 designator_errorneous = 0;
5773 if (constructor_range_stack)
5774 push_range_stack (NULL_TREE);
5778 /* Add a new initializer to the tree of pending initializers. PURPOSE
5779 indentifies the initializer, either array index or field in a structure.
5780 VALUE is the value of that index or field. */
5782 static void
5783 add_pending_init (purpose, value)
5784 tree purpose, value;
5786 struct init_node *p, **q, *r;
5788 q = &constructor_pending_elts;
5789 p = 0;
5791 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
5793 while (*q != 0)
5795 p = *q;
5796 if (tree_int_cst_lt (purpose, p->purpose))
5797 q = &p->left;
5798 else if (tree_int_cst_lt (p->purpose, purpose))
5799 q = &p->right;
5800 else
5802 if (TREE_SIDE_EFFECTS (p->value))
5803 warning_init ("initialized field with side-effects overwritten");
5804 p->value = value;
5805 return;
5809 else
5811 tree bitpos;
5813 bitpos = bit_position (purpose);
5814 while (*q != NULL)
5816 p = *q;
5817 if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
5818 q = &p->left;
5819 else if (p->purpose != purpose)
5820 q = &p->right;
5821 else
5823 if (TREE_SIDE_EFFECTS (p->value))
5824 warning_init ("initialized field with side-effects overwritten");
5825 p->value = value;
5826 return;
5831 r = (struct init_node *) ggc_alloc (sizeof (struct init_node));
5832 r->purpose = purpose;
5833 r->value = value;
5835 *q = r;
5836 r->parent = p;
5837 r->left = 0;
5838 r->right = 0;
5839 r->balance = 0;
5841 while (p)
5843 struct init_node *s;
5845 if (r == p->left)
5847 if (p->balance == 0)
5848 p->balance = -1;
5849 else if (p->balance < 0)
5851 if (r->balance < 0)
5853 /* L rotation. */
5854 p->left = r->right;
5855 if (p->left)
5856 p->left->parent = p;
5857 r->right = p;
5859 p->balance = 0;
5860 r->balance = 0;
5862 s = p->parent;
5863 p->parent = r;
5864 r->parent = s;
5865 if (s)
5867 if (s->left == p)
5868 s->left = r;
5869 else
5870 s->right = r;
5872 else
5873 constructor_pending_elts = r;
5875 else
5877 /* LR rotation. */
5878 struct init_node *t = r->right;
5880 r->right = t->left;
5881 if (r->right)
5882 r->right->parent = r;
5883 t->left = r;
5885 p->left = t->right;
5886 if (p->left)
5887 p->left->parent = p;
5888 t->right = p;
5890 p->balance = t->balance < 0;
5891 r->balance = -(t->balance > 0);
5892 t->balance = 0;
5894 s = p->parent;
5895 p->parent = t;
5896 r->parent = t;
5897 t->parent = s;
5898 if (s)
5900 if (s->left == p)
5901 s->left = t;
5902 else
5903 s->right = t;
5905 else
5906 constructor_pending_elts = t;
5908 break;
5910 else
5912 /* p->balance == +1; growth of left side balances the node. */
5913 p->balance = 0;
5914 break;
5917 else /* r == p->right */
5919 if (p->balance == 0)
5920 /* Growth propagation from right side. */
5921 p->balance++;
5922 else if (p->balance > 0)
5924 if (r->balance > 0)
5926 /* R rotation. */
5927 p->right = r->left;
5928 if (p->right)
5929 p->right->parent = p;
5930 r->left = p;
5932 p->balance = 0;
5933 r->balance = 0;
5935 s = p->parent;
5936 p->parent = r;
5937 r->parent = s;
5938 if (s)
5940 if (s->left == p)
5941 s->left = r;
5942 else
5943 s->right = r;
5945 else
5946 constructor_pending_elts = r;
5948 else /* r->balance == -1 */
5950 /* RL rotation */
5951 struct init_node *t = r->left;
5953 r->left = t->right;
5954 if (r->left)
5955 r->left->parent = r;
5956 t->right = r;
5958 p->right = t->left;
5959 if (p->right)
5960 p->right->parent = p;
5961 t->left = p;
5963 r->balance = (t->balance < 0);
5964 p->balance = -(t->balance > 0);
5965 t->balance = 0;
5967 s = p->parent;
5968 p->parent = t;
5969 r->parent = t;
5970 t->parent = s;
5971 if (s)
5973 if (s->left == p)
5974 s->left = t;
5975 else
5976 s->right = t;
5978 else
5979 constructor_pending_elts = t;
5981 break;
5983 else
5985 /* p->balance == -1; growth of right side balances the node. */
5986 p->balance = 0;
5987 break;
5991 r = p;
5992 p = p->parent;
5996 /* Build AVL tree from a sorted chain. */
5998 static void
5999 set_nonincremental_init ()
6001 tree chain;
6003 if (TREE_CODE (constructor_type) != RECORD_TYPE
6004 && TREE_CODE (constructor_type) != ARRAY_TYPE)
6005 return;
6007 for (chain = constructor_elements; chain; chain = TREE_CHAIN (chain))
6008 add_pending_init (TREE_PURPOSE (chain), TREE_VALUE (chain));
6009 constructor_elements = 0;
6010 if (TREE_CODE (constructor_type) == RECORD_TYPE)
6012 constructor_unfilled_fields = TYPE_FIELDS (constructor_type);
6013 /* Skip any nameless bit fields at the beginning. */
6014 while (constructor_unfilled_fields != 0
6015 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
6016 && DECL_NAME (constructor_unfilled_fields) == 0)
6017 constructor_unfilled_fields = TREE_CHAIN (constructor_unfilled_fields);
6020 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6022 if (TYPE_DOMAIN (constructor_type))
6023 constructor_unfilled_index
6024 = convert (bitsizetype,
6025 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type)));
6026 else
6027 constructor_unfilled_index = bitsize_zero_node;
6029 constructor_incremental = 0;
6032 /* Build AVL tree from a string constant. */
6034 static void
6035 set_nonincremental_init_from_string (str)
6036 tree str;
6038 tree value, purpose, type;
6039 HOST_WIDE_INT val[2];
6040 const char *p, *end;
6041 int byte, wchar_bytes, charwidth, bitpos;
6043 if (TREE_CODE (constructor_type) != ARRAY_TYPE)
6044 abort ();
6046 if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str)))
6047 == TYPE_PRECISION (char_type_node))
6048 wchar_bytes = 1;
6049 else if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str)))
6050 == TYPE_PRECISION (wchar_type_node))
6051 wchar_bytes = TYPE_PRECISION (wchar_type_node) / BITS_PER_UNIT;
6052 else
6053 abort ();
6055 charwidth = TYPE_PRECISION (char_type_node);
6056 type = TREE_TYPE (constructor_type);
6057 p = TREE_STRING_POINTER (str);
6058 end = p + TREE_STRING_LENGTH (str);
6060 for (purpose = bitsize_zero_node;
6061 p < end && !tree_int_cst_lt (constructor_max_index, purpose);
6062 purpose = size_binop (PLUS_EXPR, purpose, bitsize_one_node))
6064 if (wchar_bytes == 1)
6066 val[1] = (unsigned char) *p++;
6067 val[0] = 0;
6069 else
6071 val[0] = 0;
6072 val[1] = 0;
6073 for (byte = 0; byte < wchar_bytes; byte++)
6075 if (BYTES_BIG_ENDIAN)
6076 bitpos = (wchar_bytes - byte - 1) * charwidth;
6077 else
6078 bitpos = byte * charwidth;
6079 val[bitpos < HOST_BITS_PER_WIDE_INT]
6080 |= ((unsigned HOST_WIDE_INT) ((unsigned char) *p++))
6081 << (bitpos % HOST_BITS_PER_WIDE_INT);
6085 if (!TREE_UNSIGNED (type))
6087 bitpos = ((wchar_bytes - 1) * charwidth) + HOST_BITS_PER_CHAR;
6088 if (bitpos < HOST_BITS_PER_WIDE_INT)
6090 if (val[1] & (((HOST_WIDE_INT) 1) << (bitpos - 1)))
6092 val[1] |= ((HOST_WIDE_INT) -1) << bitpos;
6093 val[0] = -1;
6096 else if (bitpos == HOST_BITS_PER_WIDE_INT)
6098 if (val[1] < 0)
6099 val[0] = -1;
6101 else if (val[0] & (((HOST_WIDE_INT) 1)
6102 << (bitpos - 1 - HOST_BITS_PER_WIDE_INT)))
6103 val[0] |= ((HOST_WIDE_INT) -1)
6104 << (bitpos - HOST_BITS_PER_WIDE_INT);
6107 value = build_int_2 (val[1], val[0]);
6108 TREE_TYPE (value) = type;
6109 add_pending_init (purpose, value);
6112 constructor_incremental = 0;
6115 /* Return value of FIELD in pending initializer or zero if the field was
6116 not initialized yet. */
6118 static tree
6119 find_init_member (field)
6120 tree field;
6122 struct init_node *p;
6124 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6126 if (constructor_incremental
6127 && tree_int_cst_lt (field, constructor_unfilled_index))
6128 set_nonincremental_init ();
6130 p = constructor_pending_elts;
6131 while (p)
6133 if (tree_int_cst_lt (field, p->purpose))
6134 p = p->left;
6135 else if (tree_int_cst_lt (p->purpose, field))
6136 p = p->right;
6137 else
6138 return p->value;
6141 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
6143 tree bitpos = bit_position (field);
6145 if (constructor_incremental
6146 && (!constructor_unfilled_fields
6147 || tree_int_cst_lt (bitpos,
6148 bit_position (constructor_unfilled_fields))))
6149 set_nonincremental_init ();
6151 p = constructor_pending_elts;
6152 while (p)
6154 if (field == p->purpose)
6155 return p->value;
6156 else if (tree_int_cst_lt (bitpos, bit_position (p->purpose)))
6157 p = p->left;
6158 else
6159 p = p->right;
6162 else if (TREE_CODE (constructor_type) == UNION_TYPE)
6164 if (constructor_elements
6165 && TREE_PURPOSE (constructor_elements) == field)
6166 return TREE_VALUE (constructor_elements);
6168 return 0;
6171 /* "Output" the next constructor element.
6172 At top level, really output it to assembler code now.
6173 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
6174 TYPE is the data type that the containing data type wants here.
6175 FIELD is the field (a FIELD_DECL) or the index that this element fills.
6177 PENDING if non-nil means output pending elements that belong
6178 right after this element. (PENDING is normally 1;
6179 it is 0 while outputting pending elements, to avoid recursion.) */
6181 static void
6182 output_init_element (value, type, field, pending)
6183 tree value, type, field;
6184 int pending;
6186 if (TREE_CODE (TREE_TYPE (value)) == FUNCTION_TYPE
6187 || (TREE_CODE (TREE_TYPE (value)) == ARRAY_TYPE
6188 && !(TREE_CODE (value) == STRING_CST
6189 && TREE_CODE (type) == ARRAY_TYPE
6190 && TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE)
6191 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value)),
6192 TYPE_MAIN_VARIANT (type))))
6193 value = default_conversion (value);
6195 if (value == error_mark_node)
6196 constructor_erroneous = 1;
6197 else if (!TREE_CONSTANT (value))
6198 constructor_constant = 0;
6199 else if (initializer_constant_valid_p (value, TREE_TYPE (value)) == 0
6200 || ((TREE_CODE (constructor_type) == RECORD_TYPE
6201 || TREE_CODE (constructor_type) == UNION_TYPE)
6202 && DECL_C_BIT_FIELD (field)
6203 && TREE_CODE (value) != INTEGER_CST))
6204 constructor_simple = 0;
6206 if (require_constant_value && ! TREE_CONSTANT (value))
6208 error_init ("initializer element is not constant");
6209 value = error_mark_node;
6211 else if (require_constant_elements
6212 && initializer_constant_valid_p (value, TREE_TYPE (value)) == 0)
6213 pedwarn ("initializer element is not computable at load time");
6215 /* If this field is empty (and not at the end of structure),
6216 don't do anything other than checking the initializer. */
6217 if (field
6218 && (TREE_TYPE (field) == error_mark_node
6219 || (COMPLETE_TYPE_P (TREE_TYPE (field))
6220 && integer_zerop (TYPE_SIZE (TREE_TYPE (field)))
6221 && (TREE_CODE (constructor_type) == ARRAY_TYPE
6222 || TREE_CHAIN (field)))))
6223 return;
6225 if (value == error_mark_node)
6227 constructor_erroneous = 1;
6228 return;
6231 /* If this element doesn't come next in sequence,
6232 put it on constructor_pending_elts. */
6233 if (TREE_CODE (constructor_type) == ARRAY_TYPE
6234 && (!constructor_incremental
6235 || !tree_int_cst_equal (field, constructor_unfilled_index)))
6237 if (constructor_incremental
6238 && tree_int_cst_lt (field, constructor_unfilled_index))
6239 set_nonincremental_init ();
6241 add_pending_init (field,
6242 digest_init (type, value, require_constant_value,
6243 require_constant_elements));
6244 return;
6246 else if (TREE_CODE (constructor_type) == RECORD_TYPE
6247 && (!constructor_incremental
6248 || field != constructor_unfilled_fields))
6250 /* We do this for records but not for unions. In a union,
6251 no matter which field is specified, it can be initialized
6252 right away since it starts at the beginning of the union. */
6253 if (constructor_incremental)
6255 if (!constructor_unfilled_fields)
6256 set_nonincremental_init ();
6257 else
6259 tree bitpos, unfillpos;
6261 bitpos = bit_position (field);
6262 unfillpos = bit_position (constructor_unfilled_fields);
6264 if (tree_int_cst_lt (bitpos, unfillpos))
6265 set_nonincremental_init ();
6269 add_pending_init (field,
6270 digest_init (type, value, require_constant_value,
6271 require_constant_elements));
6272 return;
6274 else if (TREE_CODE (constructor_type) == UNION_TYPE
6275 && constructor_elements)
6277 if (TREE_SIDE_EFFECTS (TREE_VALUE (constructor_elements)))
6278 warning_init ("initialized field with side-effects overwritten");
6280 /* We can have just one union field set. */
6281 constructor_elements = 0;
6284 /* Otherwise, output this element either to
6285 constructor_elements or to the assembler file. */
6287 if (field && TREE_CODE (field) == INTEGER_CST)
6288 field = copy_node (field);
6289 constructor_elements
6290 = tree_cons (field, digest_init (type, value,
6291 require_constant_value,
6292 require_constant_elements),
6293 constructor_elements);
6295 /* Advance the variable that indicates sequential elements output. */
6296 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6297 constructor_unfilled_index
6298 = size_binop (PLUS_EXPR, constructor_unfilled_index,
6299 bitsize_one_node);
6300 else if (TREE_CODE (constructor_type) == RECORD_TYPE)
6302 constructor_unfilled_fields
6303 = TREE_CHAIN (constructor_unfilled_fields);
6305 /* Skip any nameless bit fields. */
6306 while (constructor_unfilled_fields != 0
6307 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
6308 && DECL_NAME (constructor_unfilled_fields) == 0)
6309 constructor_unfilled_fields =
6310 TREE_CHAIN (constructor_unfilled_fields);
6312 else if (TREE_CODE (constructor_type) == UNION_TYPE)
6313 constructor_unfilled_fields = 0;
6315 /* Now output any pending elements which have become next. */
6316 if (pending)
6317 output_pending_init_elements (0);
6320 /* Output any pending elements which have become next.
6321 As we output elements, constructor_unfilled_{fields,index}
6322 advances, which may cause other elements to become next;
6323 if so, they too are output.
6325 If ALL is 0, we return when there are
6326 no more pending elements to output now.
6328 If ALL is 1, we output space as necessary so that
6329 we can output all the pending elements. */
6331 static void
6332 output_pending_init_elements (all)
6333 int all;
6335 struct init_node *elt = constructor_pending_elts;
6336 tree next;
6338 retry:
6340 /* Look thru the whole pending tree.
6341 If we find an element that should be output now,
6342 output it. Otherwise, set NEXT to the element
6343 that comes first among those still pending. */
6345 next = 0;
6346 while (elt)
6348 if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6350 if (tree_int_cst_equal (elt->purpose,
6351 constructor_unfilled_index))
6352 output_init_element (elt->value,
6353 TREE_TYPE (constructor_type),
6354 constructor_unfilled_index, 0);
6355 else if (tree_int_cst_lt (constructor_unfilled_index,
6356 elt->purpose))
6358 /* Advance to the next smaller node. */
6359 if (elt->left)
6360 elt = elt->left;
6361 else
6363 /* We have reached the smallest node bigger than the
6364 current unfilled index. Fill the space first. */
6365 next = elt->purpose;
6366 break;
6369 else
6371 /* Advance to the next bigger node. */
6372 if (elt->right)
6373 elt = elt->right;
6374 else
6376 /* We have reached the biggest node in a subtree. Find
6377 the parent of it, which is the next bigger node. */
6378 while (elt->parent && elt->parent->right == elt)
6379 elt = elt->parent;
6380 elt = elt->parent;
6381 if (elt && tree_int_cst_lt (constructor_unfilled_index,
6382 elt->purpose))
6384 next = elt->purpose;
6385 break;
6390 else if (TREE_CODE (constructor_type) == RECORD_TYPE
6391 || TREE_CODE (constructor_type) == UNION_TYPE)
6393 tree ctor_unfilled_bitpos, elt_bitpos;
6395 /* If the current record is complete we are done. */
6396 if (constructor_unfilled_fields == 0)
6397 break;
6399 ctor_unfilled_bitpos = bit_position (constructor_unfilled_fields);
6400 elt_bitpos = bit_position (elt->purpose);
6401 /* We can't compare fields here because there might be empty
6402 fields in between. */
6403 if (tree_int_cst_equal (elt_bitpos, ctor_unfilled_bitpos))
6405 constructor_unfilled_fields = elt->purpose;
6406 output_init_element (elt->value, TREE_TYPE (elt->purpose),
6407 elt->purpose, 0);
6409 else if (tree_int_cst_lt (ctor_unfilled_bitpos, elt_bitpos))
6411 /* Advance to the next smaller node. */
6412 if (elt->left)
6413 elt = elt->left;
6414 else
6416 /* We have reached the smallest node bigger than the
6417 current unfilled field. Fill the space first. */
6418 next = elt->purpose;
6419 break;
6422 else
6424 /* Advance to the next bigger node. */
6425 if (elt->right)
6426 elt = elt->right;
6427 else
6429 /* We have reached the biggest node in a subtree. Find
6430 the parent of it, which is the next bigger node. */
6431 while (elt->parent && elt->parent->right == elt)
6432 elt = elt->parent;
6433 elt = elt->parent;
6434 if (elt
6435 && (tree_int_cst_lt (ctor_unfilled_bitpos,
6436 bit_position (elt->purpose))))
6438 next = elt->purpose;
6439 break;
6446 /* Ordinarily return, but not if we want to output all
6447 and there are elements left. */
6448 if (! (all && next != 0))
6449 return;
6451 /* If it's not incremental, just skip over the gap, so that after
6452 jumping to retry we will output the next successive element. */
6453 if (TREE_CODE (constructor_type) == RECORD_TYPE
6454 || TREE_CODE (constructor_type) == UNION_TYPE)
6455 constructor_unfilled_fields = next;
6456 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6457 constructor_unfilled_index = next;
6459 /* ELT now points to the node in the pending tree with the next
6460 initializer to output. */
6461 goto retry;
6464 /* Add one non-braced element to the current constructor level.
6465 This adjusts the current position within the constructor's type.
6466 This may also start or terminate implicit levels
6467 to handle a partly-braced initializer.
6469 Once this has found the correct level for the new element,
6470 it calls output_init_element. */
6472 void
6473 process_init_element (value)
6474 tree value;
6476 tree orig_value = value;
6477 int string_flag = value != 0 && TREE_CODE (value) == STRING_CST;
6479 designator_depth = 0;
6480 designator_errorneous = 0;
6482 /* Handle superfluous braces around string cst as in
6483 char x[] = {"foo"}; */
6484 if (string_flag
6485 && constructor_type
6486 && TREE_CODE (constructor_type) == ARRAY_TYPE
6487 && TREE_CODE (TREE_TYPE (constructor_type)) == INTEGER_TYPE
6488 && integer_zerop (constructor_unfilled_index))
6490 if (constructor_stack->replacement_value)
6491 error_init ("excess elements in char array initializer");
6492 constructor_stack->replacement_value = value;
6493 return;
6496 if (constructor_stack->replacement_value != 0)
6498 error_init ("excess elements in struct initializer");
6499 return;
6502 /* Ignore elements of a brace group if it is entirely superfluous
6503 and has already been diagnosed. */
6504 if (constructor_type == 0)
6505 return;
6507 /* If we've exhausted any levels that didn't have braces,
6508 pop them now. */
6509 while (constructor_stack->implicit)
6511 if ((TREE_CODE (constructor_type) == RECORD_TYPE
6512 || TREE_CODE (constructor_type) == UNION_TYPE)
6513 && constructor_fields == 0)
6514 process_init_element (pop_init_level (1));
6515 else if (TREE_CODE (constructor_type) == ARRAY_TYPE
6516 && (constructor_max_index == 0
6517 || tree_int_cst_lt (constructor_max_index,
6518 constructor_index)))
6519 process_init_element (pop_init_level (1));
6520 else
6521 break;
6524 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
6525 if (constructor_range_stack)
6526 value = save_expr (value);
6528 while (1)
6530 if (TREE_CODE (constructor_type) == RECORD_TYPE)
6532 tree fieldtype;
6533 enum tree_code fieldcode;
6535 if (constructor_fields == 0)
6537 pedwarn_init ("excess elements in struct initializer");
6538 break;
6541 fieldtype = TREE_TYPE (constructor_fields);
6542 if (fieldtype != error_mark_node)
6543 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
6544 fieldcode = TREE_CODE (fieldtype);
6546 /* Accept a string constant to initialize a subarray. */
6547 if (value != 0
6548 && fieldcode == ARRAY_TYPE
6549 && TREE_CODE (TREE_TYPE (fieldtype)) == INTEGER_TYPE
6550 && string_flag)
6551 value = orig_value;
6552 /* Otherwise, if we have come to a subaggregate,
6553 and we don't have an element of its type, push into it. */
6554 else if (value != 0 && !constructor_no_implicit
6555 && value != error_mark_node
6556 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != fieldtype
6557 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
6558 || fieldcode == UNION_TYPE))
6560 push_init_level (1);
6561 continue;
6564 if (value)
6566 push_member_name (constructor_fields);
6567 output_init_element (value, fieldtype, constructor_fields, 1);
6568 RESTORE_SPELLING_DEPTH (constructor_depth);
6570 else
6571 /* Do the bookkeeping for an element that was
6572 directly output as a constructor. */
6574 /* For a record, keep track of end position of last field. */
6575 if (DECL_SIZE (constructor_fields))
6576 constructor_bit_index
6577 = size_binop (PLUS_EXPR,
6578 bit_position (constructor_fields),
6579 DECL_SIZE (constructor_fields));
6581 constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
6582 /* Skip any nameless bit fields. */
6583 while (constructor_unfilled_fields != 0
6584 && DECL_C_BIT_FIELD (constructor_unfilled_fields)
6585 && DECL_NAME (constructor_unfilled_fields) == 0)
6586 constructor_unfilled_fields =
6587 TREE_CHAIN (constructor_unfilled_fields);
6590 constructor_fields = TREE_CHAIN (constructor_fields);
6591 /* Skip any nameless bit fields at the beginning. */
6592 while (constructor_fields != 0
6593 && DECL_C_BIT_FIELD (constructor_fields)
6594 && DECL_NAME (constructor_fields) == 0)
6595 constructor_fields = TREE_CHAIN (constructor_fields);
6597 else if (TREE_CODE (constructor_type) == UNION_TYPE)
6599 tree fieldtype;
6600 enum tree_code fieldcode;
6602 if (constructor_fields == 0)
6604 pedwarn_init ("excess elements in union initializer");
6605 break;
6608 fieldtype = TREE_TYPE (constructor_fields);
6609 if (fieldtype != error_mark_node)
6610 fieldtype = TYPE_MAIN_VARIANT (fieldtype);
6611 fieldcode = TREE_CODE (fieldtype);
6613 /* Warn that traditional C rejects initialization of unions.
6614 We skip the warning if the value is zero. This is done
6615 under the assumption that the zero initializer in user
6616 code appears conditioned on e.g. __STDC__ to avoid
6617 "missing initializer" warnings and relies on default
6618 initialization to zero in the traditional C case. */
6619 if (warn_traditional && !in_system_header
6620 && !(value && (integer_zerop (value) || real_zerop (value))))
6621 warning ("traditional C rejects initialization of unions");
6623 /* Accept a string constant to initialize a subarray. */
6624 if (value != 0
6625 && fieldcode == ARRAY_TYPE
6626 && TREE_CODE (TREE_TYPE (fieldtype)) == INTEGER_TYPE
6627 && string_flag)
6628 value = orig_value;
6629 /* Otherwise, if we have come to a subaggregate,
6630 and we don't have an element of its type, push into it. */
6631 else if (value != 0 && !constructor_no_implicit
6632 && value != error_mark_node
6633 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != fieldtype
6634 && (fieldcode == RECORD_TYPE || fieldcode == ARRAY_TYPE
6635 || fieldcode == UNION_TYPE))
6637 push_init_level (1);
6638 continue;
6641 if (value)
6643 push_member_name (constructor_fields);
6644 output_init_element (value, fieldtype, constructor_fields, 1);
6645 RESTORE_SPELLING_DEPTH (constructor_depth);
6647 else
6648 /* Do the bookkeeping for an element that was
6649 directly output as a constructor. */
6651 constructor_bit_index = DECL_SIZE (constructor_fields);
6652 constructor_unfilled_fields = TREE_CHAIN (constructor_fields);
6655 constructor_fields = 0;
6657 else if (TREE_CODE (constructor_type) == ARRAY_TYPE)
6659 tree elttype = TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type));
6660 enum tree_code eltcode = TREE_CODE (elttype);
6662 /* Accept a string constant to initialize a subarray. */
6663 if (value != 0
6664 && eltcode == ARRAY_TYPE
6665 && TREE_CODE (TREE_TYPE (elttype)) == INTEGER_TYPE
6666 && string_flag)
6667 value = orig_value;
6668 /* Otherwise, if we have come to a subaggregate,
6669 and we don't have an element of its type, push into it. */
6670 else if (value != 0 && !constructor_no_implicit
6671 && value != error_mark_node
6672 && TYPE_MAIN_VARIANT (TREE_TYPE (value)) != elttype
6673 && (eltcode == RECORD_TYPE || eltcode == ARRAY_TYPE
6674 || eltcode == UNION_TYPE))
6676 push_init_level (1);
6677 continue;
6680 if (constructor_max_index != 0
6681 && (tree_int_cst_lt (constructor_max_index, constructor_index)
6682 || integer_all_onesp (constructor_max_index)))
6684 pedwarn_init ("excess elements in array initializer");
6685 break;
6688 /* Now output the actual element. */
6689 if (value)
6691 push_array_bounds (tree_low_cst (constructor_index, 0));
6692 output_init_element (value, elttype, constructor_index, 1);
6693 RESTORE_SPELLING_DEPTH (constructor_depth);
6696 constructor_index
6697 = size_binop (PLUS_EXPR, constructor_index, bitsize_one_node);
6699 if (! value)
6700 /* If we are doing the bookkeeping for an element that was
6701 directly output as a constructor, we must update
6702 constructor_unfilled_index. */
6703 constructor_unfilled_index = constructor_index;
6706 /* Handle the sole element allowed in a braced initializer
6707 for a scalar variable. */
6708 else if (constructor_fields == 0)
6710 pedwarn_init ("excess elements in scalar initializer");
6711 break;
6713 else
6715 if (value)
6716 output_init_element (value, constructor_type, NULL_TREE, 1);
6717 constructor_fields = 0;
6720 /* Handle range initializers either at this level or anywhere higher
6721 in the designator stack. */
6722 if (constructor_range_stack)
6724 struct constructor_range_stack *p, *range_stack;
6725 int finish = 0;
6727 range_stack = constructor_range_stack;
6728 constructor_range_stack = 0;
6729 while (constructor_stack != range_stack->stack)
6731 if (!constructor_stack->implicit)
6732 abort ();
6733 process_init_element (pop_init_level (1));
6735 for (p = range_stack;
6736 !p->range_end || tree_int_cst_equal (p->index, p->range_end);
6737 p = p->prev)
6739 if (!constructor_stack->implicit)
6740 abort ();
6741 process_init_element (pop_init_level (1));
6744 p->index = size_binop (PLUS_EXPR, p->index, bitsize_one_node);
6745 if (tree_int_cst_equal (p->index, p->range_end) && !p->prev)
6746 finish = 1;
6748 while (1)
6750 constructor_index = p->index;
6751 constructor_fields = p->fields;
6752 if (finish && p->range_end && p->index == p->range_start)
6754 finish = 0;
6755 p->prev = 0;
6757 p = p->next;
6758 if (!p)
6759 break;
6760 push_init_level (2);
6761 p->stack = constructor_stack;
6762 if (p->range_end && tree_int_cst_equal (p->index, p->range_end))
6763 p->index = p->range_start;
6766 if (!finish)
6767 constructor_range_stack = range_stack;
6768 continue;
6771 break;
6774 constructor_range_stack = 0;
6777 /* Build an asm-statement, whose components are a CV_QUALIFIER, a
6778 STRING, some OUTPUTS, some INPUTS, and some CLOBBERS. */
6780 tree
6781 build_asm_stmt (cv_qualifier, string, outputs, inputs, clobbers)
6782 tree cv_qualifier;
6783 tree string;
6784 tree outputs;
6785 tree inputs;
6786 tree clobbers;
6788 tree tail;
6790 if (TREE_CHAIN (string))
6791 string = combine_strings (string);
6792 if (TREE_CODE (string) != STRING_CST)
6794 error ("asm template is not a string constant");
6795 return NULL_TREE;
6798 if (cv_qualifier != NULL_TREE
6799 && cv_qualifier != ridpointers[(int) RID_VOLATILE])
6801 warning ("%s qualifier ignored on asm",
6802 IDENTIFIER_POINTER (cv_qualifier));
6803 cv_qualifier = NULL_TREE;
6806 /* We can remove output conversions that change the type,
6807 but not the mode. */
6808 for (tail = outputs; tail; tail = TREE_CHAIN (tail))
6810 tree output = TREE_VALUE (tail);
6812 STRIP_NOPS (output);
6813 TREE_VALUE (tail) = output;
6815 /* Allow conversions as LHS here. build_modify_expr as called below
6816 will do the right thing with them. */
6817 while (TREE_CODE (output) == NOP_EXPR
6818 || TREE_CODE (output) == CONVERT_EXPR
6819 || TREE_CODE (output) == FLOAT_EXPR
6820 || TREE_CODE (output) == FIX_TRUNC_EXPR
6821 || TREE_CODE (output) == FIX_FLOOR_EXPR
6822 || TREE_CODE (output) == FIX_ROUND_EXPR
6823 || TREE_CODE (output) == FIX_CEIL_EXPR)
6824 output = TREE_OPERAND (output, 0);
6826 lvalue_or_else (TREE_VALUE (tail), "invalid lvalue in asm statement");
6829 /* Remove output conversions that change the type but not the mode. */
6830 for (tail = outputs; tail; tail = TREE_CHAIN (tail))
6832 tree output = TREE_VALUE (tail);
6833 STRIP_NOPS (output);
6834 TREE_VALUE (tail) = output;
6837 /* Perform default conversions on array and function inputs.
6838 Don't do this for other types as it would screw up operands
6839 expected to be in memory. */
6840 for (tail = inputs; tail; tail = TREE_CHAIN (tail))
6841 if (TREE_CODE (TREE_TYPE (TREE_VALUE (tail))) == ARRAY_TYPE
6842 || TREE_CODE (TREE_TYPE (TREE_VALUE (tail))) == FUNCTION_TYPE)
6843 TREE_VALUE (tail) = default_conversion (TREE_VALUE (tail));
6845 return add_stmt (build_stmt (ASM_STMT, cv_qualifier, string,
6846 outputs, inputs, clobbers));
6849 /* Expand an ASM statement with operands, handling output operands
6850 that are not variables or INDIRECT_REFS by transforming such
6851 cases into cases that expand_asm_operands can handle.
6853 Arguments are same as for expand_asm_operands. */
6855 void
6856 c_expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
6857 tree string, outputs, inputs, clobbers;
6858 int vol;
6859 const char *filename;
6860 int line;
6862 int noutputs = list_length (outputs);
6863 register int i;
6864 /* o[I] is the place that output number I should be written. */
6865 register tree *o = (tree *) alloca (noutputs * sizeof (tree));
6866 register tree tail;
6868 /* Record the contents of OUTPUTS before it is modified. */
6869 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
6870 o[i] = TREE_VALUE (tail);
6872 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
6873 OUTPUTS some trees for where the values were actually stored. */
6874 expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line);
6876 /* Copy all the intermediate outputs into the specified outputs. */
6877 for (i = 0, tail = outputs; tail; tail = TREE_CHAIN (tail), i++)
6879 if (o[i] != TREE_VALUE (tail))
6881 expand_expr (build_modify_expr (o[i], NOP_EXPR, TREE_VALUE (tail)),
6882 NULL_RTX, VOIDmode, EXPAND_NORMAL);
6883 free_temp_slots ();
6885 /* Restore the original value so that it's correct the next
6886 time we expand this function. */
6887 TREE_VALUE (tail) = o[i];
6889 /* Detect modification of read-only values.
6890 (Otherwise done by build_modify_expr.) */
6891 else
6893 tree type = TREE_TYPE (o[i]);
6894 if (TREE_READONLY (o[i])
6895 || TYPE_READONLY (type)
6896 || ((TREE_CODE (type) == RECORD_TYPE
6897 || TREE_CODE (type) == UNION_TYPE)
6898 && C_TYPE_FIELDS_READONLY (type)))
6899 readonly_warning (o[i], "modification by `asm'");
6903 /* Those MODIFY_EXPRs could do autoincrements. */
6904 emit_queue ();
6907 /* Expand a C `return' statement.
6908 RETVAL is the expression for what to return,
6909 or a null pointer for `return;' with no value. */
6911 tree
6912 c_expand_return (retval)
6913 tree retval;
6915 tree valtype = TREE_TYPE (TREE_TYPE (current_function_decl));
6917 if (TREE_THIS_VOLATILE (current_function_decl))
6918 warning ("function declared `noreturn' has a `return' statement");
6920 if (!retval)
6922 current_function_returns_null = 1;
6923 if ((warn_return_type || flag_isoc99)
6924 && valtype != 0 && TREE_CODE (valtype) != VOID_TYPE)
6925 pedwarn_c99 ("`return' with no value, in function returning non-void");
6927 else if (valtype == 0 || TREE_CODE (valtype) == VOID_TYPE)
6929 current_function_returns_null = 1;
6930 if (pedantic || TREE_CODE (TREE_TYPE (retval)) != VOID_TYPE)
6931 pedwarn ("`return' with a value, in function returning void");
6933 else
6935 tree t = convert_for_assignment (valtype, retval, _("return"),
6936 NULL_TREE, NULL_TREE, 0);
6937 tree res = DECL_RESULT (current_function_decl);
6938 tree inner;
6940 if (t == error_mark_node)
6941 return NULL_TREE;
6943 inner = t = convert (TREE_TYPE (res), t);
6945 /* Strip any conversions, additions, and subtractions, and see if
6946 we are returning the address of a local variable. Warn if so. */
6947 while (1)
6949 switch (TREE_CODE (inner))
6951 case NOP_EXPR: case NON_LVALUE_EXPR: case CONVERT_EXPR:
6952 case PLUS_EXPR:
6953 inner = TREE_OPERAND (inner, 0);
6954 continue;
6956 case MINUS_EXPR:
6957 /* If the second operand of the MINUS_EXPR has a pointer
6958 type (or is converted from it), this may be valid, so
6959 don't give a warning. */
6961 tree op1 = TREE_OPERAND (inner, 1);
6963 while (! POINTER_TYPE_P (TREE_TYPE (op1))
6964 && (TREE_CODE (op1) == NOP_EXPR
6965 || TREE_CODE (op1) == NON_LVALUE_EXPR
6966 || TREE_CODE (op1) == CONVERT_EXPR))
6967 op1 = TREE_OPERAND (op1, 0);
6969 if (POINTER_TYPE_P (TREE_TYPE (op1)))
6970 break;
6972 inner = TREE_OPERAND (inner, 0);
6973 continue;
6976 case ADDR_EXPR:
6977 inner = TREE_OPERAND (inner, 0);
6979 while (TREE_CODE_CLASS (TREE_CODE (inner)) == 'r')
6980 inner = TREE_OPERAND (inner, 0);
6982 if (TREE_CODE (inner) == VAR_DECL
6983 && ! DECL_EXTERNAL (inner)
6984 && ! TREE_STATIC (inner)
6985 && DECL_CONTEXT (inner) == current_function_decl)
6986 warning ("function returns address of local variable");
6987 break;
6989 default:
6990 break;
6993 break;
6996 retval = build (MODIFY_EXPR, TREE_TYPE (res), res, t);
6997 current_function_returns_value = 1;
7000 return add_stmt (build_return_stmt (retval));
7003 struct c_switch {
7004 /* The SWITCH_STMT being built. */
7005 tree switch_stmt;
7006 /* A splay-tree mapping the low element of a case range to the high
7007 element, or NULL_TREE if there is no high element. Used to
7008 determine whether or not a new case label duplicates an old case
7009 label. We need a tree, rather than simply a hash table, because
7010 of the GNU case range extension. */
7011 splay_tree cases;
7012 /* The next node on the stack. */
7013 struct c_switch *next;
7016 /* A stack of the currently active switch statements. The innermost
7017 switch statement is on the top of the stack. There is no need to
7018 mark the stack for garbage collection because it is only active
7019 during the processing of the body of a function, and we never
7020 collect at that point. */
7022 static struct c_switch *switch_stack;
7024 /* Start a C switch statement, testing expression EXP. Return the new
7025 SWITCH_STMT. */
7027 tree
7028 c_start_case (exp)
7029 tree exp;
7031 register enum tree_code code;
7032 tree type;
7033 struct c_switch *cs;
7035 if (exp != error_mark_node)
7037 code = TREE_CODE (TREE_TYPE (exp));
7038 type = TREE_TYPE (exp);
7040 if (code != INTEGER_TYPE
7041 && code != ENUMERAL_TYPE
7042 && code != ERROR_MARK)
7044 error ("switch quantity not an integer");
7045 exp = integer_zero_node;
7047 else
7049 tree index;
7050 type = TYPE_MAIN_VARIANT (TREE_TYPE (exp));
7052 if (warn_traditional && !in_system_header
7053 && (type == long_integer_type_node
7054 || type == long_unsigned_type_node))
7055 warning ("`long' switch expression not converted to `int' in ISO C");
7057 exp = default_conversion (exp);
7058 type = TREE_TYPE (exp);
7059 index = get_unwidened (exp, NULL_TREE);
7060 /* We can't strip a conversion from a signed type to an
7061 unsigned, because if we did, int_fits_type_p would do the
7062 wrong thing when checking case values for being in range,
7063 and it's too hard to do the right thing. */
7064 if (TREE_UNSIGNED (TREE_TYPE (exp))
7065 == TREE_UNSIGNED (TREE_TYPE (index)))
7066 exp = index;
7070 /* Add this new SWITCH_STMT to the stack. */
7071 cs = (struct c_switch *) xmalloc (sizeof (*cs));
7072 cs->switch_stmt = build_stmt (SWITCH_STMT, exp, NULL_TREE, NULL_TREE);
7073 cs->cases = splay_tree_new (case_compare, NULL, NULL);
7074 cs->next = switch_stack;
7075 switch_stack = cs;
7077 return add_stmt (switch_stack->switch_stmt);
7080 /* Process a case label. */
7082 tree
7083 do_case (low_value, high_value)
7084 tree low_value;
7085 tree high_value;
7087 tree label = NULL_TREE;
7089 if (switch_stack)
7091 label = c_add_case_label (switch_stack->cases,
7092 SWITCH_COND (switch_stack->switch_stmt),
7093 low_value, high_value);
7094 if (label == error_mark_node)
7095 label = NULL_TREE;
7097 else if (low_value)
7098 error ("case label not within a switch statement");
7099 else
7100 error ("`default' label not within a switch statement");
7102 return label;
7105 /* Finish the switch statement. */
7107 void
7108 c_finish_case ()
7110 struct c_switch *cs = switch_stack;
7112 RECHAIN_STMTS (cs->switch_stmt, SWITCH_BODY (cs->switch_stmt));
7114 /* Pop the stack. */
7115 switch_stack = switch_stack->next;
7116 splay_tree_delete (cs->cases);
7117 free (cs);