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, 2002 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
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). */
46 /* Nonzero if we've already printed a "missing braces around initializer"
47 message within this initializer. */
48 static int missing_braces_mentioned
;
50 /* 1 if we explained undeclared var errors. */
51 static int undeclared_variable_notice
;
53 static tree qualify_type
PARAMS ((tree
, tree
));
54 static int comp_target_types
PARAMS ((tree
, tree
));
55 static int function_types_compatible_p
PARAMS ((tree
, tree
));
56 static int type_lists_compatible_p
PARAMS ((tree
, tree
));
57 static tree decl_constant_value_for_broken_optimization
PARAMS ((tree
));
58 static tree default_function_array_conversion
PARAMS ((tree
));
59 static tree lookup_field
PARAMS ((tree
, tree
));
60 static tree convert_arguments
PARAMS ((tree
, tree
, tree
, tree
));
61 static tree pointer_diff
PARAMS ((tree
, tree
));
62 static tree unary_complex_lvalue
PARAMS ((enum tree_code
, tree
, int));
63 static void pedantic_lvalue_warning
PARAMS ((enum tree_code
));
64 static tree internal_build_compound_expr
PARAMS ((tree
, int));
65 static tree convert_for_assignment
PARAMS ((tree
, tree
, const char *,
67 static void warn_for_assignment
PARAMS ((const char *, const char *,
69 static tree valid_compound_expr_initializer
PARAMS ((tree
, tree
));
70 static void push_string
PARAMS ((const char *));
71 static void push_member_name
PARAMS ((tree
));
72 static void push_array_bounds
PARAMS ((int));
73 static int spelling_length
PARAMS ((void));
74 static char *print_spelling
PARAMS ((char *));
75 static void warning_init
PARAMS ((const char *));
76 static tree digest_init
PARAMS ((tree
, tree
, int));
77 static void output_init_element
PARAMS ((tree
, tree
, tree
, int));
78 static void output_pending_init_elements
PARAMS ((int));
79 static int set_designator
PARAMS ((int));
80 static void push_range_stack
PARAMS ((tree
));
81 static void add_pending_init
PARAMS ((tree
, tree
));
82 static void set_nonincremental_init
PARAMS ((void));
83 static void set_nonincremental_init_from_string
PARAMS ((tree
));
84 static tree find_init_member
PARAMS ((tree
));
86 /* Do `exp = require_complete_type (exp);' to make sure exp
87 does not have an incomplete type. (That includes void types.) */
90 require_complete_type (value
)
93 tree type
= TREE_TYPE (value
);
95 if (value
== error_mark_node
|| type
== error_mark_node
)
96 return error_mark_node
;
98 /* First, detect a valid value with a complete type. */
99 if (COMPLETE_TYPE_P (type
))
102 c_incomplete_type_error (value
, type
);
103 return error_mark_node
;
106 /* Print an error message for invalid use of an incomplete type.
107 VALUE is the expression that was used (or 0 if that isn't known)
108 and TYPE is the type that was invalid. */
111 c_incomplete_type_error (value
, type
)
115 const char *type_code_string
;
117 /* Avoid duplicate error message. */
118 if (TREE_CODE (type
) == ERROR_MARK
)
121 if (value
!= 0 && (TREE_CODE (value
) == VAR_DECL
122 || TREE_CODE (value
) == PARM_DECL
))
123 error ("`%s' has an incomplete type",
124 IDENTIFIER_POINTER (DECL_NAME (value
)));
128 /* We must print an error message. Be clever about what it says. */
130 switch (TREE_CODE (type
))
133 type_code_string
= "struct";
137 type_code_string
= "union";
141 type_code_string
= "enum";
145 error ("invalid use of void expression");
149 if (TYPE_DOMAIN (type
))
151 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL
)
153 error ("invalid use of flexible array member");
156 type
= TREE_TYPE (type
);
159 error ("invalid use of array with unspecified bounds");
166 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
167 error ("invalid use of undefined type `%s %s'",
168 type_code_string
, IDENTIFIER_POINTER (TYPE_NAME (type
)));
170 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
171 error ("invalid use of incomplete typedef `%s'",
172 IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
))));
176 /* Given a type, apply default promotions wrt unnamed function
177 arguments and return the new type. */
180 c_type_promotes_to (type
)
183 if (TYPE_MAIN_VARIANT (type
) == float_type_node
)
184 return double_type_node
;
186 if (c_promoting_integer_type_p (type
))
188 /* Preserve unsignedness if not really getting any wider. */
189 if (TREE_UNSIGNED (type
)
190 && (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)))
191 return unsigned_type_node
;
192 return integer_type_node
;
198 /* Return a variant of TYPE which has all the type qualifiers of LIKE
199 as well as those of TYPE. */
202 qualify_type (type
, like
)
205 return c_build_qualified_type (type
,
206 TYPE_QUALS (type
) | TYPE_QUALS (like
));
209 /* Return the common type of two types.
210 We assume that comptypes has already been done and returned 1;
211 if that isn't so, this may crash. In particular, we assume that qualifiers
214 This is the type for the result of most arithmetic operations
215 if the operands have the given two types. */
221 enum tree_code code1
;
222 enum tree_code code2
;
225 /* Save time if the two types are the same. */
227 if (t1
== t2
) return t1
;
229 /* If one type is nonsense, use the other. */
230 if (t1
== error_mark_node
)
232 if (t2
== error_mark_node
)
235 /* Merge the attributes. */
236 attributes
= (*targetm
.merge_type_attributes
) (t1
, t2
);
238 /* Treat an enum type as the unsigned integer type of the same width. */
240 if (TREE_CODE (t1
) == ENUMERAL_TYPE
)
241 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), 1);
242 if (TREE_CODE (t2
) == ENUMERAL_TYPE
)
243 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), 1);
245 code1
= TREE_CODE (t1
);
246 code2
= TREE_CODE (t2
);
248 /* If one type is complex, form the common type of the non-complex
249 components, then make that complex. Use T1 or T2 if it is the
251 if (code1
== COMPLEX_TYPE
|| code2
== COMPLEX_TYPE
)
253 tree subtype1
= code1
== COMPLEX_TYPE
? TREE_TYPE (t1
) : t1
;
254 tree subtype2
= code2
== COMPLEX_TYPE
? TREE_TYPE (t2
) : t2
;
255 tree subtype
= common_type (subtype1
, subtype2
);
257 if (code1
== COMPLEX_TYPE
&& TREE_TYPE (t1
) == subtype
)
258 return build_type_attribute_variant (t1
, attributes
);
259 else if (code2
== COMPLEX_TYPE
&& TREE_TYPE (t2
) == subtype
)
260 return build_type_attribute_variant (t2
, attributes
);
262 return build_type_attribute_variant (build_complex_type (subtype
),
270 /* If only one is real, use it as the result. */
272 if (code1
== REAL_TYPE
&& code2
!= REAL_TYPE
)
273 return build_type_attribute_variant (t1
, attributes
);
275 if (code2
== REAL_TYPE
&& code1
!= REAL_TYPE
)
276 return build_type_attribute_variant (t2
, attributes
);
278 /* Both real or both integers; use the one with greater precision. */
280 if (TYPE_PRECISION (t1
) > TYPE_PRECISION (t2
))
281 return build_type_attribute_variant (t1
, attributes
);
282 else if (TYPE_PRECISION (t2
) > TYPE_PRECISION (t1
))
283 return build_type_attribute_variant (t2
, attributes
);
285 /* Same precision. Prefer longs to ints even when same size. */
287 if (TYPE_MAIN_VARIANT (t1
) == long_unsigned_type_node
288 || TYPE_MAIN_VARIANT (t2
) == long_unsigned_type_node
)
289 return build_type_attribute_variant (long_unsigned_type_node
,
292 if (TYPE_MAIN_VARIANT (t1
) == long_integer_type_node
293 || TYPE_MAIN_VARIANT (t2
) == long_integer_type_node
)
295 /* But preserve unsignedness from the other type,
296 since long cannot hold all the values of an unsigned int. */
297 if (TREE_UNSIGNED (t1
) || TREE_UNSIGNED (t2
))
298 t1
= long_unsigned_type_node
;
300 t1
= long_integer_type_node
;
301 return build_type_attribute_variant (t1
, attributes
);
304 /* Likewise, prefer long double to double even if same size. */
305 if (TYPE_MAIN_VARIANT (t1
) == long_double_type_node
306 || TYPE_MAIN_VARIANT (t2
) == long_double_type_node
)
307 return build_type_attribute_variant (long_double_type_node
,
310 /* Otherwise prefer the unsigned one. */
312 if (TREE_UNSIGNED (t1
))
313 return build_type_attribute_variant (t1
, attributes
);
315 return build_type_attribute_variant (t2
, attributes
);
318 /* For two pointers, do this recursively on the target type,
319 and combine the qualifiers of the two types' targets. */
320 /* This code was turned off; I don't know why.
321 But ANSI C specifies doing this with the qualifiers.
322 So I turned it on again. */
324 tree pointed_to_1
= TREE_TYPE (t1
);
325 tree pointed_to_2
= TREE_TYPE (t2
);
326 tree target
= common_type (TYPE_MAIN_VARIANT (pointed_to_1
),
327 TYPE_MAIN_VARIANT (pointed_to_2
));
328 t1
= build_pointer_type (c_build_qualified_type
330 TYPE_QUALS (pointed_to_1
) |
331 TYPE_QUALS (pointed_to_2
)));
332 return build_type_attribute_variant (t1
, attributes
);
335 t1
= build_pointer_type (common_type (TREE_TYPE (t1
), TREE_TYPE (t2
)));
336 return build_type_attribute_variant (t1
, attributes
);
341 tree elt
= common_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
342 /* Save space: see if the result is identical to one of the args. */
343 if (elt
== TREE_TYPE (t1
) && TYPE_DOMAIN (t1
))
344 return build_type_attribute_variant (t1
, attributes
);
345 if (elt
== TREE_TYPE (t2
) && TYPE_DOMAIN (t2
))
346 return build_type_attribute_variant (t2
, attributes
);
347 /* Merge the element types, and have a size if either arg has one. */
348 t1
= build_array_type (elt
, TYPE_DOMAIN (TYPE_DOMAIN (t1
) ? t1
: t2
));
349 return build_type_attribute_variant (t1
, attributes
);
353 /* Function types: prefer the one that specified arg types.
354 If both do, merge the arg types. Also merge the return types. */
356 tree valtype
= common_type (TREE_TYPE (t1
), TREE_TYPE (t2
));
357 tree p1
= TYPE_ARG_TYPES (t1
);
358 tree p2
= TYPE_ARG_TYPES (t2
);
363 /* Save space: see if the result is identical to one of the args. */
364 if (valtype
== TREE_TYPE (t1
) && ! TYPE_ARG_TYPES (t2
))
365 return build_type_attribute_variant (t1
, attributes
);
366 if (valtype
== TREE_TYPE (t2
) && ! TYPE_ARG_TYPES (t1
))
367 return build_type_attribute_variant (t2
, attributes
);
369 /* Simple way if one arg fails to specify argument types. */
370 if (TYPE_ARG_TYPES (t1
) == 0)
372 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t2
));
373 return build_type_attribute_variant (t1
, attributes
);
375 if (TYPE_ARG_TYPES (t2
) == 0)
377 t1
= build_function_type (valtype
, TYPE_ARG_TYPES (t1
));
378 return build_type_attribute_variant (t1
, attributes
);
381 /* If both args specify argument types, we must merge the two
382 lists, argument by argument. */
385 declare_parm_level (1);
387 len
= list_length (p1
);
390 for (i
= 0; i
< len
; i
++)
391 newargs
= tree_cons (NULL_TREE
, NULL_TREE
, newargs
);
396 p1
= TREE_CHAIN (p1
), p2
= TREE_CHAIN (p2
), n
= TREE_CHAIN (n
))
398 /* A null type means arg type is not specified.
399 Take whatever the other function type has. */
400 if (TREE_VALUE (p1
) == 0)
402 TREE_VALUE (n
) = TREE_VALUE (p2
);
405 if (TREE_VALUE (p2
) == 0)
407 TREE_VALUE (n
) = TREE_VALUE (p1
);
411 /* Given wait (union {union wait *u; int *i} *)
412 and wait (union wait *),
413 prefer union wait * as type of parm. */
414 if (TREE_CODE (TREE_VALUE (p1
)) == UNION_TYPE
415 && TREE_VALUE (p1
) != TREE_VALUE (p2
))
418 for (memb
= TYPE_FIELDS (TREE_VALUE (p1
));
419 memb
; memb
= TREE_CHAIN (memb
))
420 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (p2
)))
422 TREE_VALUE (n
) = TREE_VALUE (p2
);
424 pedwarn ("function types not truly compatible in ISO C");
428 if (TREE_CODE (TREE_VALUE (p2
)) == UNION_TYPE
429 && TREE_VALUE (p2
) != TREE_VALUE (p1
))
432 for (memb
= TYPE_FIELDS (TREE_VALUE (p2
));
433 memb
; memb
= TREE_CHAIN (memb
))
434 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (p1
)))
436 TREE_VALUE (n
) = TREE_VALUE (p1
);
438 pedwarn ("function types not truly compatible in ISO C");
442 TREE_VALUE (n
) = common_type (TREE_VALUE (p1
), TREE_VALUE (p2
));
448 t1
= build_function_type (valtype
, newargs
);
449 /* ... falls through ... */
453 return build_type_attribute_variant (t1
, attributes
);
458 /* Return 1 if TYPE1 and TYPE2 are compatible types for assignment
459 or various other operations. Return 2 if they are compatible
460 but a warning may be needed if you use them together. */
463 comptypes (type1
, type2
)
470 /* Suppress errors caused by previously reported errors. */
472 if (t1
== t2
|| !t1
|| !t2
473 || TREE_CODE (t1
) == ERROR_MARK
|| TREE_CODE (t2
) == ERROR_MARK
)
476 /* If either type is the internal version of sizetype, return the
478 if (TREE_CODE (t1
) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (t1
)
479 && TYPE_DOMAIN (t1
) != 0)
480 t1
= TYPE_DOMAIN (t1
);
482 if (TREE_CODE (t2
) == INTEGER_TYPE
&& TYPE_IS_SIZETYPE (t2
)
483 && TYPE_DOMAIN (t2
) != 0)
484 t2
= TYPE_DOMAIN (t2
);
486 /* Treat an enum type as the integer type of the same width and
489 if (TREE_CODE (t1
) == ENUMERAL_TYPE
)
490 t1
= c_common_type_for_size (TYPE_PRECISION (t1
), TREE_UNSIGNED (t1
));
491 if (TREE_CODE (t2
) == ENUMERAL_TYPE
)
492 t2
= c_common_type_for_size (TYPE_PRECISION (t2
), TREE_UNSIGNED (t2
));
497 /* Different classes of types can't be compatible. */
499 if (TREE_CODE (t1
) != TREE_CODE (t2
)) return 0;
501 /* Qualifiers must match. */
503 if (TYPE_QUALS (t1
) != TYPE_QUALS (t2
))
506 /* Allow for two different type nodes which have essentially the same
507 definition. Note that we already checked for equality of the type
508 qualifiers (just above). */
510 if (TYPE_MAIN_VARIANT (t1
) == TYPE_MAIN_VARIANT (t2
))
513 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
514 if (! (attrval
= (*targetm
.comp_type_attributes
) (t1
, t2
)))
517 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
520 switch (TREE_CODE (t1
))
523 val
= (TREE_TYPE (t1
) == TREE_TYPE (t2
)
524 ? 1 : comptypes (TREE_TYPE (t1
), TREE_TYPE (t2
)));
528 val
= function_types_compatible_p (t1
, t2
);
533 tree d1
= TYPE_DOMAIN (t1
);
534 tree d2
= TYPE_DOMAIN (t2
);
535 bool d1_variable
, d2_variable
;
536 bool d1_zero
, d2_zero
;
539 /* Target types must match incl. qualifiers. */
540 if (TREE_TYPE (t1
) != TREE_TYPE (t2
)
541 && 0 == (val
= comptypes (TREE_TYPE (t1
), TREE_TYPE (t2
))))
544 /* Sizes must match unless one is missing or variable. */
545 if (d1
== 0 || d2
== 0 || d1
== d2
)
548 d1_zero
= ! TYPE_MAX_VALUE (d1
);
549 d2_zero
= ! TYPE_MAX_VALUE (d2
);
551 d1_variable
= (! d1_zero
552 && (TREE_CODE (TYPE_MIN_VALUE (d1
)) != INTEGER_CST
553 || TREE_CODE (TYPE_MAX_VALUE (d1
)) != INTEGER_CST
));
554 d2_variable
= (! d2_zero
555 && (TREE_CODE (TYPE_MIN_VALUE (d2
)) != INTEGER_CST
556 || TREE_CODE (TYPE_MAX_VALUE (d2
)) != INTEGER_CST
));
558 if (d1_variable
|| d2_variable
)
560 if (d1_zero
&& d2_zero
)
562 if (d1_zero
|| d2_zero
563 || ! tree_int_cst_equal (TYPE_MIN_VALUE (d1
), TYPE_MIN_VALUE (d2
))
564 || ! tree_int_cst_equal (TYPE_MAX_VALUE (d1
), TYPE_MAX_VALUE (d2
)))
571 if (maybe_objc_comptypes (t1
, t2
, 0) == 1)
578 return attrval
== 2 && val
== 1 ? 2 : val
;
581 /* Return 1 if TTL and TTR are pointers to types that are equivalent,
582 ignoring their qualifiers. */
585 comp_target_types (ttl
, ttr
)
590 /* Give maybe_objc_comptypes a crack at letting these types through. */
591 if ((val
= maybe_objc_comptypes (ttl
, ttr
, 1)) >= 0)
594 val
= comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (ttl
)),
595 TYPE_MAIN_VARIANT (TREE_TYPE (ttr
)));
597 if (val
== 2 && pedantic
)
598 pedwarn ("types are not quite compatible");
602 /* Subroutines of `comptypes'. */
604 /* Return 1 if two function types F1 and F2 are compatible.
605 If either type specifies no argument types,
606 the other must specify a fixed number of self-promoting arg types.
607 Otherwise, if one type specifies only the number of arguments,
608 the other must specify that number of self-promoting arg types.
609 Otherwise, the argument types must match. */
612 function_types_compatible_p (f1
, f2
)
616 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
620 if (!(TREE_TYPE (f1
) == TREE_TYPE (f2
)
621 || (val
= comptypes (TREE_TYPE (f1
), TREE_TYPE (f2
)))))
624 args1
= TYPE_ARG_TYPES (f1
);
625 args2
= TYPE_ARG_TYPES (f2
);
627 /* An unspecified parmlist matches any specified parmlist
628 whose argument types don't need default promotions. */
632 if (!self_promoting_args_p (args2
))
634 /* If one of these types comes from a non-prototype fn definition,
635 compare that with the other type's arglist.
636 If they don't match, ask for a warning (but no error). */
637 if (TYPE_ACTUAL_ARG_TYPES (f1
)
638 && 1 != type_lists_compatible_p (args2
, TYPE_ACTUAL_ARG_TYPES (f1
)))
644 if (!self_promoting_args_p (args1
))
646 if (TYPE_ACTUAL_ARG_TYPES (f2
)
647 && 1 != type_lists_compatible_p (args1
, TYPE_ACTUAL_ARG_TYPES (f2
)))
652 /* Both types have argument lists: compare them and propagate results. */
653 val1
= type_lists_compatible_p (args1
, args2
);
654 return val1
!= 1 ? val1
: val
;
657 /* Check two lists of types for compatibility,
658 returning 0 for incompatible, 1 for compatible,
659 or 2 for compatible with warning. */
662 type_lists_compatible_p (args1
, args2
)
665 /* 1 if no need for warning yet, 2 if warning cause has been seen. */
671 if (args1
== 0 && args2
== 0)
673 /* If one list is shorter than the other,
674 they fail to match. */
675 if (args1
== 0 || args2
== 0)
677 /* A null pointer instead of a type
678 means there is supposed to be an argument
679 but nothing is specified about what type it has.
680 So match anything that self-promotes. */
681 if (TREE_VALUE (args1
) == 0)
683 if (c_type_promotes_to (TREE_VALUE (args2
)) != TREE_VALUE (args2
))
686 else if (TREE_VALUE (args2
) == 0)
688 if (c_type_promotes_to (TREE_VALUE (args1
)) != TREE_VALUE (args1
))
691 else if (! (newval
= comptypes (TYPE_MAIN_VARIANT (TREE_VALUE (args1
)),
692 TYPE_MAIN_VARIANT (TREE_VALUE (args2
)))))
694 /* Allow wait (union {union wait *u; int *i} *)
695 and wait (union wait *) to be compatible. */
696 if (TREE_CODE (TREE_VALUE (args1
)) == UNION_TYPE
697 && (TYPE_NAME (TREE_VALUE (args1
)) == 0
698 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args1
)))
699 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args1
))) == INTEGER_CST
700 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args1
)),
701 TYPE_SIZE (TREE_VALUE (args2
))))
704 for (memb
= TYPE_FIELDS (TREE_VALUE (args1
));
705 memb
; memb
= TREE_CHAIN (memb
))
706 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (args2
)))
711 else if (TREE_CODE (TREE_VALUE (args2
)) == UNION_TYPE
712 && (TYPE_NAME (TREE_VALUE (args2
)) == 0
713 || TYPE_TRANSPARENT_UNION (TREE_VALUE (args2
)))
714 && TREE_CODE (TYPE_SIZE (TREE_VALUE (args2
))) == INTEGER_CST
715 && tree_int_cst_equal (TYPE_SIZE (TREE_VALUE (args2
)),
716 TYPE_SIZE (TREE_VALUE (args1
))))
719 for (memb
= TYPE_FIELDS (TREE_VALUE (args2
));
720 memb
; memb
= TREE_CHAIN (memb
))
721 if (comptypes (TREE_TYPE (memb
), TREE_VALUE (args1
)))
730 /* comptypes said ok, but record if it said to warn. */
734 args1
= TREE_CHAIN (args1
);
735 args2
= TREE_CHAIN (args2
);
739 /* Compute the value of the `sizeof' operator. */
745 enum tree_code code
= TREE_CODE (type
);
748 if (code
== FUNCTION_TYPE
)
750 if (pedantic
|| warn_pointer_arith
)
751 pedwarn ("sizeof applied to a function type");
752 size
= size_one_node
;
754 else if (code
== VOID_TYPE
)
756 if (pedantic
|| warn_pointer_arith
)
757 pedwarn ("sizeof applied to a void type");
758 size
= size_one_node
;
760 else if (code
== ERROR_MARK
)
761 size
= size_one_node
;
762 else if (!COMPLETE_TYPE_P (type
))
764 error ("sizeof applied to an incomplete type");
765 size
= size_zero_node
;
768 /* Convert in case a char is more than one unit. */
769 size
= size_binop (CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
770 size_int (TYPE_PRECISION (char_type_node
)
773 /* SIZE will have an integer type with TYPE_IS_SIZETYPE set.
774 TYPE_IS_SIZETYPE means that certain things (like overflow) will
775 never happen. However, this node should really have type
776 `size_t', which is just a typedef for an ordinary integer type. */
777 return fold (build1 (NOP_EXPR
, c_size_type_node
, size
));
781 c_sizeof_nowarn (type
)
784 enum tree_code code
= TREE_CODE (type
);
787 if (code
== FUNCTION_TYPE
|| code
== VOID_TYPE
|| code
== ERROR_MARK
)
788 size
= size_one_node
;
789 else if (!COMPLETE_TYPE_P (type
))
790 size
= size_zero_node
;
792 /* Convert in case a char is more than one unit. */
793 size
= size_binop (CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
794 size_int (TYPE_PRECISION (char_type_node
)
797 /* SIZE will have an integer type with TYPE_IS_SIZETYPE set.
798 TYPE_IS_SIZETYPE means that certain things (like overflow) will
799 never happen. However, this node should really have type
800 `size_t', which is just a typedef for an ordinary integer type. */
801 return fold (build1 (NOP_EXPR
, c_size_type_node
, size
));
804 /* Compute the size to increment a pointer by. */
807 c_size_in_bytes (type
)
810 enum tree_code code
= TREE_CODE (type
);
812 if (code
== FUNCTION_TYPE
|| code
== VOID_TYPE
|| code
== ERROR_MARK
)
813 return size_one_node
;
815 if (!COMPLETE_OR_VOID_TYPE_P (type
))
817 error ("arithmetic on pointer to an incomplete type");
818 return size_one_node
;
821 /* Convert in case a char is more than one unit. */
822 return size_binop (CEIL_DIV_EXPR
, TYPE_SIZE_UNIT (type
),
823 size_int (TYPE_PRECISION (char_type_node
)
827 /* Return either DECL or its known constant value (if it has one). */
830 decl_constant_value (decl
)
833 if (/* Don't change a variable array bound or initial value to a constant
834 in a place where a variable is invalid. */
835 current_function_decl
!= 0
836 && ! TREE_THIS_VOLATILE (decl
)
837 && TREE_READONLY (decl
)
838 && DECL_INITIAL (decl
) != 0
839 && TREE_CODE (DECL_INITIAL (decl
)) != ERROR_MARK
840 /* This is invalid if initial value is not constant.
841 If it has either a function call, a memory reference,
842 or a variable, then re-evaluating it could give different results. */
843 && TREE_CONSTANT (DECL_INITIAL (decl
))
844 /* Check for cases where this is sub-optimal, even though valid. */
845 && TREE_CODE (DECL_INITIAL (decl
)) != CONSTRUCTOR
)
846 return DECL_INITIAL (decl
);
850 /* Return either DECL or its known constant value (if it has one), but
851 return DECL if pedantic or DECL has mode BLKmode. This is for
852 bug-compatibility with the old behavior of decl_constant_value
853 (before GCC 3.0); every use of this function is a bug and it should
854 be removed before GCC 3.1. It is not appropriate to use pedantic
855 in a way that affects optimization, and BLKmode is probably not the
856 right test for avoiding misoptimizations either. */
859 decl_constant_value_for_broken_optimization (decl
)
862 if (pedantic
|| DECL_MODE (decl
) == BLKmode
)
865 return decl_constant_value (decl
);
869 /* Perform the default conversion of arrays and functions to pointers.
870 Return the result of converting EXP. For any other expression, just
874 default_function_array_conversion (exp
)
878 tree type
= TREE_TYPE (exp
);
879 enum tree_code code
= TREE_CODE (type
);
882 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
885 Do not use STRIP_NOPS here! It will remove conversions from pointer
886 to integer and cause infinite recursion. */
888 while (TREE_CODE (exp
) == NON_LVALUE_EXPR
889 || (TREE_CODE (exp
) == NOP_EXPR
890 && TREE_TYPE (TREE_OPERAND (exp
, 0)) == TREE_TYPE (exp
)))
892 if (TREE_CODE (exp
) == NON_LVALUE_EXPR
)
894 exp
= TREE_OPERAND (exp
, 0);
897 /* Preserve the original expression code. */
898 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (exp
))))
899 C_SET_EXP_ORIGINAL_CODE (exp
, C_EXP_ORIGINAL_CODE (orig_exp
));
901 if (code
== FUNCTION_TYPE
)
903 return build_unary_op (ADDR_EXPR
, exp
, 0);
905 if (code
== ARRAY_TYPE
)
908 tree restype
= TREE_TYPE (type
);
914 if (TREE_CODE_CLASS (TREE_CODE (exp
)) == 'r' || DECL_P (exp
))
916 constp
= TREE_READONLY (exp
);
917 volatilep
= TREE_THIS_VOLATILE (exp
);
920 if (TYPE_QUALS (type
) || constp
|| volatilep
)
922 = c_build_qualified_type (restype
,
924 | (constp
* TYPE_QUAL_CONST
)
925 | (volatilep
* TYPE_QUAL_VOLATILE
));
927 if (TREE_CODE (exp
) == INDIRECT_REF
)
928 return convert (TYPE_POINTER_TO (restype
),
929 TREE_OPERAND (exp
, 0));
931 if (TREE_CODE (exp
) == COMPOUND_EXPR
)
933 tree op1
= default_conversion (TREE_OPERAND (exp
, 1));
934 return build (COMPOUND_EXPR
, TREE_TYPE (op1
),
935 TREE_OPERAND (exp
, 0), op1
);
938 lvalue_array_p
= !not_lvalue
&& lvalue_p (exp
);
939 if (!flag_isoc99
&& !lvalue_array_p
)
941 /* Before C99, non-lvalue arrays do not decay to pointers.
942 Normally, using such an array would be invalid; but it can
943 be used correctly inside sizeof or as a statement expression.
944 Thus, do not give an error here; an error will result later. */
948 ptrtype
= build_pointer_type (restype
);
950 if (TREE_CODE (exp
) == VAR_DECL
)
952 /* ??? This is not really quite correct
953 in that the type of the operand of ADDR_EXPR
954 is not the target type of the type of the ADDR_EXPR itself.
955 Question is, can this lossage be avoided? */
956 adr
= build1 (ADDR_EXPR
, ptrtype
, exp
);
957 if (!c_mark_addressable (exp
))
958 return error_mark_node
;
959 TREE_CONSTANT (adr
) = staticp (exp
);
960 TREE_SIDE_EFFECTS (adr
) = 0; /* Default would be, same as EXP. */
963 /* This way is better for a COMPONENT_REF since it can
964 simplify the offset for a component. */
965 adr
= build_unary_op (ADDR_EXPR
, exp
, 1);
966 return convert (ptrtype
, adr
);
971 /* Perform default promotions for C data used in expressions.
972 Arrays and functions are converted to pointers;
973 enumeral types or short or char, to int.
974 In addition, manifest constants symbols are replaced by their values. */
977 default_conversion (exp
)
981 tree type
= TREE_TYPE (exp
);
982 enum tree_code code
= TREE_CODE (type
);
984 if (code
== FUNCTION_TYPE
|| code
== ARRAY_TYPE
)
985 return default_function_array_conversion (exp
);
987 /* Constants can be used directly unless they're not loadable. */
988 if (TREE_CODE (exp
) == CONST_DECL
)
989 exp
= DECL_INITIAL (exp
);
991 /* Replace a nonvolatile const static variable with its value unless
992 it is an array, in which case we must be sure that taking the
993 address of the array produces consistent results. */
994 else if (optimize
&& TREE_CODE (exp
) == VAR_DECL
&& code
!= ARRAY_TYPE
)
996 exp
= decl_constant_value_for_broken_optimization (exp
);
997 type
= TREE_TYPE (exp
);
1000 /* Strip NON_LVALUE_EXPRs and no-op conversions, since we aren't using as
1003 Do not use STRIP_NOPS here! It will remove conversions from pointer
1004 to integer and cause infinite recursion. */
1006 while (TREE_CODE (exp
) == NON_LVALUE_EXPR
1007 || (TREE_CODE (exp
) == NOP_EXPR
1008 && TREE_TYPE (TREE_OPERAND (exp
, 0)) == TREE_TYPE (exp
)))
1009 exp
= TREE_OPERAND (exp
, 0);
1011 /* Preserve the original expression code. */
1012 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (exp
))))
1013 C_SET_EXP_ORIGINAL_CODE (exp
, C_EXP_ORIGINAL_CODE (orig_exp
));
1015 /* Normally convert enums to int,
1016 but convert wide enums to something wider. */
1017 if (code
== ENUMERAL_TYPE
)
1019 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
1020 TYPE_PRECISION (integer_type_node
)),
1021 ((TYPE_PRECISION (type
)
1022 >= TYPE_PRECISION (integer_type_node
))
1023 && TREE_UNSIGNED (type
)));
1025 return convert (type
, exp
);
1028 if (TREE_CODE (exp
) == COMPONENT_REF
1029 && DECL_C_BIT_FIELD (TREE_OPERAND (exp
, 1))
1030 /* If it's thinner than an int, promote it like a
1031 c_promoting_integer_type_p, otherwise leave it alone. */
1032 && 0 > compare_tree_int (DECL_SIZE (TREE_OPERAND (exp
, 1)),
1033 TYPE_PRECISION (integer_type_node
)))
1034 return convert (integer_type_node
, exp
);
1036 if (c_promoting_integer_type_p (type
))
1038 /* Preserve unsignedness if not really getting any wider. */
1039 if (TREE_UNSIGNED (type
)
1040 && TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
))
1041 return convert (unsigned_type_node
, exp
);
1043 return convert (integer_type_node
, exp
);
1046 if (code
== VOID_TYPE
)
1048 error ("void value not ignored as it ought to be");
1049 return error_mark_node
;
1054 /* Look up COMPONENT in a structure or union DECL.
1056 If the component name is not found, returns NULL_TREE. Otherwise,
1057 the return value is a TREE_LIST, with each TREE_VALUE a FIELD_DECL
1058 stepping down the chain to the component, which is in the last
1059 TREE_VALUE of the list. Normally the list is of length one, but if
1060 the component is embedded within (nested) anonymous structures or
1061 unions, the list steps down the chain to the component. */
1064 lookup_field (decl
, component
)
1065 tree decl
, component
;
1067 tree type
= TREE_TYPE (decl
);
1070 /* If TYPE_LANG_SPECIFIC is set, then it is a sorted array of pointers
1071 to the field elements. Use a binary search on this array to quickly
1072 find the element. Otherwise, do a linear search. TYPE_LANG_SPECIFIC
1073 will always be set for structures which have many elements. */
1075 if (TYPE_LANG_SPECIFIC (type
))
1078 tree
*field_array
= &TYPE_LANG_SPECIFIC (type
)->elts
[0];
1080 field
= TYPE_FIELDS (type
);
1082 top
= TYPE_LANG_SPECIFIC (type
)->len
;
1083 while (top
- bot
> 1)
1085 half
= (top
- bot
+ 1) >> 1;
1086 field
= field_array
[bot
+half
];
1088 if (DECL_NAME (field
) == NULL_TREE
)
1090 /* Step through all anon unions in linear fashion. */
1091 while (DECL_NAME (field_array
[bot
]) == NULL_TREE
)
1093 field
= field_array
[bot
++];
1094 if (TREE_CODE (TREE_TYPE (field
)) == RECORD_TYPE
1095 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
)
1097 tree anon
= lookup_field (field
, component
);
1100 return tree_cons (NULL_TREE
, field
, anon
);
1104 /* Entire record is only anon unions. */
1108 /* Restart the binary search, with new lower bound. */
1112 if (DECL_NAME (field
) == component
)
1114 if (DECL_NAME (field
) < component
)
1120 if (DECL_NAME (field_array
[bot
]) == component
)
1121 field
= field_array
[bot
];
1122 else if (DECL_NAME (field
) != component
)
1127 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
1129 if (DECL_NAME (field
) == NULL_TREE
1130 && (TREE_CODE (TREE_TYPE (field
)) == RECORD_TYPE
1131 || TREE_CODE (TREE_TYPE (field
)) == UNION_TYPE
))
1133 tree anon
= lookup_field (field
, component
);
1136 return tree_cons (NULL_TREE
, field
, anon
);
1139 if (DECL_NAME (field
) == component
)
1143 if (field
== NULL_TREE
)
1147 return tree_cons (NULL_TREE
, field
, NULL_TREE
);
1150 /* Make an expression to refer to the COMPONENT field of
1151 structure or union value DATUM. COMPONENT is an IDENTIFIER_NODE. */
1154 build_component_ref (datum
, component
)
1155 tree datum
, component
;
1157 tree type
= TREE_TYPE (datum
);
1158 enum tree_code code
= TREE_CODE (type
);
1162 /* If DATUM is a COMPOUND_EXPR, move our reference inside it.
1163 If pedantic ensure that the arguments are not lvalues; otherwise,
1164 if the component is an array, it would wrongly decay to a pointer in
1166 We cannot do this with a COND_EXPR, because in a conditional expression
1167 the default promotions are applied to both sides, and this would yield
1168 the wrong type of the result; for example, if the components have
1170 switch (TREE_CODE (datum
))
1174 tree value
= build_component_ref (TREE_OPERAND (datum
, 1), component
);
1175 return build (COMPOUND_EXPR
, TREE_TYPE (value
),
1176 TREE_OPERAND (datum
, 0), pedantic_non_lvalue (value
));
1182 /* See if there is a field or component with name COMPONENT. */
1184 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
)
1186 if (!COMPLETE_TYPE_P (type
))
1188 c_incomplete_type_error (NULL_TREE
, type
);
1189 return error_mark_node
;
1192 field
= lookup_field (datum
, component
);
1196 error ("%s has no member named `%s'",
1197 code
== RECORD_TYPE
? "structure" : "union",
1198 IDENTIFIER_POINTER (component
));
1199 return error_mark_node
;
1202 /* Chain the COMPONENT_REFs if necessary down to the FIELD.
1203 This might be better solved in future the way the C++ front
1204 end does it - by giving the anonymous entities each a
1205 separate name and type, and then have build_component_ref
1206 recursively call itself. We can't do that here. */
1207 for (; field
; field
= TREE_CHAIN (field
))
1209 tree subdatum
= TREE_VALUE (field
);
1211 if (TREE_TYPE (subdatum
) == error_mark_node
)
1212 return error_mark_node
;
1214 ref
= build (COMPONENT_REF
, TREE_TYPE (subdatum
), datum
, subdatum
);
1215 if (TREE_READONLY (datum
) || TREE_READONLY (subdatum
))
1216 TREE_READONLY (ref
) = 1;
1217 if (TREE_THIS_VOLATILE (datum
) || TREE_THIS_VOLATILE (subdatum
))
1218 TREE_THIS_VOLATILE (ref
) = 1;
1220 if (TREE_DEPRECATED (subdatum
))
1221 warn_deprecated_use (subdatum
);
1228 else if (code
!= ERROR_MARK
)
1229 error ("request for member `%s' in something not a structure or union",
1230 IDENTIFIER_POINTER (component
));
1232 return error_mark_node
;
1235 /* Given an expression PTR for a pointer, return an expression
1236 for the value pointed to.
1237 ERRORSTRING is the name of the operator to appear in error messages. */
1240 build_indirect_ref (ptr
, errorstring
)
1242 const char *errorstring
;
1244 tree pointer
= default_conversion (ptr
);
1245 tree type
= TREE_TYPE (pointer
);
1247 if (TREE_CODE (type
) == POINTER_TYPE
)
1249 if (TREE_CODE (pointer
) == ADDR_EXPR
1251 && (TREE_TYPE (TREE_OPERAND (pointer
, 0))
1252 == TREE_TYPE (type
)))
1253 return TREE_OPERAND (pointer
, 0);
1256 tree t
= TREE_TYPE (type
);
1257 tree ref
= build1 (INDIRECT_REF
, TYPE_MAIN_VARIANT (t
), pointer
);
1259 if (!COMPLETE_OR_VOID_TYPE_P (t
) && TREE_CODE (t
) != ARRAY_TYPE
)
1261 error ("dereferencing pointer to incomplete type");
1262 return error_mark_node
;
1264 if (VOID_TYPE_P (t
) && skip_evaluation
== 0)
1265 warning ("dereferencing `void *' pointer");
1267 /* We *must* set TREE_READONLY when dereferencing a pointer to const,
1268 so that we get the proper error message if the result is used
1269 to assign to. Also, &* is supposed to be a no-op.
1270 And ANSI C seems to specify that the type of the result
1271 should be the const type. */
1272 /* A de-reference of a pointer to const is not a const. It is valid
1273 to change it via some other pointer. */
1274 TREE_READONLY (ref
) = TYPE_READONLY (t
);
1275 TREE_SIDE_EFFECTS (ref
)
1276 = TYPE_VOLATILE (t
) || TREE_SIDE_EFFECTS (pointer
) || flag_volatile
;
1277 TREE_THIS_VOLATILE (ref
) = TYPE_VOLATILE (t
);
1281 else if (TREE_CODE (pointer
) != ERROR_MARK
)
1282 error ("invalid type argument of `%s'", errorstring
);
1283 return error_mark_node
;
1286 /* This handles expressions of the form "a[i]", which denotes
1289 This is logically equivalent in C to *(a+i), but we may do it differently.
1290 If A is a variable or a member, we generate a primitive ARRAY_REF.
1291 This avoids forcing the array out of registers, and can work on
1292 arrays that are not lvalues (for example, members of structures returned
1296 build_array_ref (array
, index
)
1301 error ("subscript missing in array reference");
1302 return error_mark_node
;
1305 if (TREE_TYPE (array
) == error_mark_node
1306 || TREE_TYPE (index
) == error_mark_node
)
1307 return error_mark_node
;
1309 if (TREE_CODE (TREE_TYPE (array
)) == ARRAY_TYPE
1310 && TREE_CODE (array
) != INDIRECT_REF
)
1314 /* Subscripting with type char is likely to lose
1315 on a machine where chars are signed.
1316 So warn on any machine, but optionally.
1317 Don't warn for unsigned char since that type is safe.
1318 Don't warn for signed char because anyone who uses that
1319 must have done so deliberately. */
1320 if (warn_char_subscripts
1321 && TYPE_MAIN_VARIANT (TREE_TYPE (index
)) == char_type_node
)
1322 warning ("array subscript has type `char'");
1324 /* Apply default promotions *after* noticing character types. */
1325 index
= default_conversion (index
);
1327 /* Require integer *after* promotion, for sake of enums. */
1328 if (TREE_CODE (TREE_TYPE (index
)) != INTEGER_TYPE
)
1330 error ("array subscript is not an integer");
1331 return error_mark_node
;
1334 /* An array that is indexed by a non-constant
1335 cannot be stored in a register; we must be able to do
1336 address arithmetic on its address.
1337 Likewise an array of elements of variable size. */
1338 if (TREE_CODE (index
) != INTEGER_CST
1339 || (COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (array
)))
1340 && TREE_CODE (TYPE_SIZE (TREE_TYPE (TREE_TYPE (array
)))) != INTEGER_CST
))
1342 if (!c_mark_addressable (array
))
1343 return error_mark_node
;
1345 /* An array that is indexed by a constant value which is not within
1346 the array bounds cannot be stored in a register either; because we
1347 would get a crash in store_bit_field/extract_bit_field when trying
1348 to access a non-existent part of the register. */
1349 if (TREE_CODE (index
) == INTEGER_CST
1350 && TYPE_VALUES (TREE_TYPE (array
))
1351 && ! int_fits_type_p (index
, TYPE_VALUES (TREE_TYPE (array
))))
1353 if (!c_mark_addressable (array
))
1354 return error_mark_node
;
1360 while (TREE_CODE (foo
) == COMPONENT_REF
)
1361 foo
= TREE_OPERAND (foo
, 0);
1362 if (TREE_CODE (foo
) == VAR_DECL
&& DECL_REGISTER (foo
))
1363 pedwarn ("ISO C forbids subscripting `register' array");
1364 else if (! flag_isoc99
&& ! lvalue_p (foo
))
1365 pedwarn ("ISO C89 forbids subscripting non-lvalue array");
1368 type
= TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (array
)));
1369 rval
= build (ARRAY_REF
, type
, array
, index
);
1370 /* Array ref is const/volatile if the array elements are
1371 or if the array is. */
1372 TREE_READONLY (rval
)
1373 |= (TYPE_READONLY (TREE_TYPE (TREE_TYPE (array
)))
1374 | TREE_READONLY (array
));
1375 TREE_SIDE_EFFECTS (rval
)
1376 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
1377 | TREE_SIDE_EFFECTS (array
));
1378 TREE_THIS_VOLATILE (rval
)
1379 |= (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (array
)))
1380 /* This was added by rms on 16 Nov 91.
1381 It fixes vol struct foo *a; a->elts[1]
1382 in an inline function.
1383 Hope it doesn't break something else. */
1384 | TREE_THIS_VOLATILE (array
));
1385 return require_complete_type (fold (rval
));
1389 tree ar
= default_conversion (array
);
1390 tree ind
= default_conversion (index
);
1392 /* Do the same warning check as above, but only on the part that's
1393 syntactically the index and only if it is also semantically
1395 if (warn_char_subscripts
1396 && TREE_CODE (TREE_TYPE (index
)) == INTEGER_TYPE
1397 && TYPE_MAIN_VARIANT (TREE_TYPE (index
)) == char_type_node
)
1398 warning ("subscript has type `char'");
1400 /* Put the integer in IND to simplify error checking. */
1401 if (TREE_CODE (TREE_TYPE (ar
)) == INTEGER_TYPE
)
1408 if (ar
== error_mark_node
)
1411 if (TREE_CODE (TREE_TYPE (ar
)) != POINTER_TYPE
1412 || TREE_CODE (TREE_TYPE (TREE_TYPE (ar
))) == FUNCTION_TYPE
)
1414 error ("subscripted value is neither array nor pointer");
1415 return error_mark_node
;
1417 if (TREE_CODE (TREE_TYPE (ind
)) != INTEGER_TYPE
)
1419 error ("array subscript is not an integer");
1420 return error_mark_node
;
1423 return build_indirect_ref (build_binary_op (PLUS_EXPR
, ar
, ind
, 0),
1428 /* Build an external reference to identifier ID. FUN indicates
1429 whether this will be used for a function call. */
1431 build_external_ref (id
, fun
)
1436 tree decl
= lookup_name (id
);
1437 tree objc_ivar
= lookup_objc_ivar (id
);
1439 if (decl
&& TREE_DEPRECATED (decl
))
1440 warn_deprecated_use (decl
);
1442 if (!decl
|| decl
== error_mark_node
|| C_DECL_ANTICIPATED (decl
))
1448 if (!decl
|| decl
== error_mark_node
)
1449 /* Ordinary implicit function declaration. */
1450 ref
= implicitly_declare (id
);
1453 /* Implicit declaration of built-in function. Don't
1454 change the built-in declaration, but don't let this
1455 go by silently, either. */
1456 implicit_decl_warning (id
);
1458 /* only issue this warning once */
1459 C_DECL_ANTICIPATED (decl
) = 0;
1465 /* Reference to undeclared variable, including reference to
1466 builtin outside of function-call context. */
1467 if (current_function_decl
== 0)
1468 error ("`%s' undeclared here (not in a function)",
1469 IDENTIFIER_POINTER (id
));
1472 if (IDENTIFIER_GLOBAL_VALUE (id
) != error_mark_node
1473 || IDENTIFIER_ERROR_LOCUS (id
) != current_function_decl
)
1475 error ("`%s' undeclared (first use in this function)",
1476 IDENTIFIER_POINTER (id
));
1478 if (! undeclared_variable_notice
)
1480 error ("(Each undeclared identifier is reported only once");
1481 error ("for each function it appears in.)");
1482 undeclared_variable_notice
= 1;
1485 IDENTIFIER_GLOBAL_VALUE (id
) = error_mark_node
;
1486 IDENTIFIER_ERROR_LOCUS (id
) = current_function_decl
;
1488 return error_mark_node
;
1493 /* Properly declared variable or function reference. */
1496 else if (decl
!= objc_ivar
&& IDENTIFIER_LOCAL_VALUE (id
))
1498 warning ("local declaration of `%s' hides instance variable",
1499 IDENTIFIER_POINTER (id
));
1506 if (TREE_TYPE (ref
) == error_mark_node
)
1507 return error_mark_node
;
1509 assemble_external (ref
);
1510 TREE_USED (ref
) = 1;
1512 if (TREE_CODE (ref
) == CONST_DECL
)
1514 ref
= DECL_INITIAL (ref
);
1515 TREE_CONSTANT (ref
) = 1;
1521 /* Build a function call to function FUNCTION with parameters PARAMS.
1522 PARAMS is a list--a chain of TREE_LIST nodes--in which the
1523 TREE_VALUE of each node is a parameter-expression.
1524 FUNCTION's data type may be a function type or a pointer-to-function. */
1527 build_function_call (function
, params
)
1528 tree function
, params
;
1530 tree fntype
, fundecl
= 0;
1531 tree coerced_params
;
1532 tree name
= NULL_TREE
, assembler_name
= NULL_TREE
, result
;
1534 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
1535 STRIP_TYPE_NOPS (function
);
1537 /* Convert anything with function type to a pointer-to-function. */
1538 if (TREE_CODE (function
) == FUNCTION_DECL
)
1540 name
= DECL_NAME (function
);
1541 assembler_name
= DECL_ASSEMBLER_NAME (function
);
1543 /* Differs from default_conversion by not setting TREE_ADDRESSABLE
1544 (because calling an inline function does not mean the function
1545 needs to be separately compiled). */
1546 fntype
= build_type_variant (TREE_TYPE (function
),
1547 TREE_READONLY (function
),
1548 TREE_THIS_VOLATILE (function
));
1550 function
= build1 (ADDR_EXPR
, build_pointer_type (fntype
), function
);
1553 function
= default_conversion (function
);
1555 fntype
= TREE_TYPE (function
);
1557 if (TREE_CODE (fntype
) == ERROR_MARK
)
1558 return error_mark_node
;
1560 if (!(TREE_CODE (fntype
) == POINTER_TYPE
1561 && TREE_CODE (TREE_TYPE (fntype
)) == FUNCTION_TYPE
))
1563 error ("called object is not a function");
1564 return error_mark_node
;
1567 if (fundecl
&& TREE_THIS_VOLATILE (fundecl
))
1568 current_function_returns_abnormally
= 1;
1570 /* fntype now gets the type of function pointed to. */
1571 fntype
= TREE_TYPE (fntype
);
1573 /* Convert the parameters to the types declared in the
1574 function prototype, or apply default promotions. */
1577 = convert_arguments (TYPE_ARG_TYPES (fntype
), params
, name
, fundecl
);
1579 /* Check for errors in format strings. */
1582 check_function_format (NULL
, TYPE_ATTRIBUTES (fntype
), coerced_params
);
1584 /* Recognize certain built-in functions so we can make tree-codes
1585 other than CALL_EXPR. We do this when it enables fold-const.c
1586 to do something useful. */
1588 if (TREE_CODE (function
) == ADDR_EXPR
1589 && TREE_CODE (TREE_OPERAND (function
, 0)) == FUNCTION_DECL
1590 && DECL_BUILT_IN (TREE_OPERAND (function
, 0)))
1592 result
= expand_tree_builtin (TREE_OPERAND (function
, 0),
1593 params
, coerced_params
);
1598 result
= build (CALL_EXPR
, TREE_TYPE (fntype
),
1599 function
, coerced_params
, NULL_TREE
);
1600 TREE_SIDE_EFFECTS (result
) = 1;
1601 result
= fold (result
);
1603 if (VOID_TYPE_P (TREE_TYPE (result
)))
1605 return require_complete_type (result
);
1608 /* Convert the argument expressions in the list VALUES
1609 to the types in the list TYPELIST. The result is a list of converted
1610 argument expressions.
1612 If TYPELIST is exhausted, or when an element has NULL as its type,
1613 perform the default conversions.
1615 PARMLIST is the chain of parm decls for the function being called.
1616 It may be 0, if that info is not available.
1617 It is used only for generating error messages.
1619 NAME is an IDENTIFIER_NODE or 0. It is used only for error messages.
1621 This is also where warnings about wrong number of args are generated.
1623 Both VALUES and the returned value are chains of TREE_LIST nodes
1624 with the elements of the list in the TREE_VALUE slots of those nodes. */
1627 convert_arguments (typelist
, values
, name
, fundecl
)
1628 tree typelist
, values
, name
, fundecl
;
1630 tree typetail
, valtail
;
1634 /* Scan the given expressions and types, producing individual
1635 converted arguments and pushing them on RESULT in reverse order. */
1637 for (valtail
= values
, typetail
= typelist
, parmnum
= 0;
1639 valtail
= TREE_CHAIN (valtail
), parmnum
++)
1641 tree type
= typetail
? TREE_VALUE (typetail
) : 0;
1642 tree val
= TREE_VALUE (valtail
);
1644 if (type
== void_type_node
)
1647 error ("too many arguments to function `%s'",
1648 IDENTIFIER_POINTER (name
));
1650 error ("too many arguments to function");
1654 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
1655 /* Do not use STRIP_NOPS here! We do not want an enumerator with value 0
1656 to convert automatically to a pointer. */
1657 if (TREE_CODE (val
) == NON_LVALUE_EXPR
)
1658 val
= TREE_OPERAND (val
, 0);
1660 val
= default_function_array_conversion (val
);
1662 val
= require_complete_type (val
);
1666 /* Formal parm type is specified by a function prototype. */
1669 if (!COMPLETE_TYPE_P (type
))
1671 error ("type of formal parameter %d is incomplete", parmnum
+ 1);
1676 /* Optionally warn about conversions that
1677 differ from the default conversions. */
1678 if (warn_conversion
|| warn_traditional
)
1680 int formal_prec
= TYPE_PRECISION (type
);
1682 if (INTEGRAL_TYPE_P (type
)
1683 && TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
)
1684 warn_for_assignment ("%s as integer rather than floating due to prototype", (char *) 0, name
, parmnum
+ 1);
1685 if (INTEGRAL_TYPE_P (type
)
1686 && TREE_CODE (TREE_TYPE (val
)) == COMPLEX_TYPE
)
1687 warn_for_assignment ("%s as integer rather than complex due to prototype", (char *) 0, name
, parmnum
+ 1);
1688 else if (TREE_CODE (type
) == COMPLEX_TYPE
1689 && TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
)
1690 warn_for_assignment ("%s as complex rather than floating due to prototype", (char *) 0, name
, parmnum
+ 1);
1691 else if (TREE_CODE (type
) == REAL_TYPE
1692 && INTEGRAL_TYPE_P (TREE_TYPE (val
)))
1693 warn_for_assignment ("%s as floating rather than integer due to prototype", (char *) 0, name
, parmnum
+ 1);
1694 else if (TREE_CODE (type
) == COMPLEX_TYPE
1695 && INTEGRAL_TYPE_P (TREE_TYPE (val
)))
1696 warn_for_assignment ("%s as complex rather than integer due to prototype", (char *) 0, name
, parmnum
+ 1);
1697 else if (TREE_CODE (type
) == REAL_TYPE
1698 && TREE_CODE (TREE_TYPE (val
)) == COMPLEX_TYPE
)
1699 warn_for_assignment ("%s as floating rather than complex due to prototype", (char *) 0, name
, parmnum
+ 1);
1700 /* ??? At some point, messages should be written about
1701 conversions between complex types, but that's too messy
1703 else if (TREE_CODE (type
) == REAL_TYPE
1704 && TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
)
1706 /* Warn if any argument is passed as `float',
1707 since without a prototype it would be `double'. */
1708 if (formal_prec
== TYPE_PRECISION (float_type_node
))
1709 warn_for_assignment ("%s as `float' rather than `double' due to prototype", (char *) 0, name
, parmnum
+ 1);
1711 /* Detect integer changing in width or signedness.
1712 These warnings are only activated with
1713 -Wconversion, not with -Wtraditional. */
1714 else if (warn_conversion
&& INTEGRAL_TYPE_P (type
)
1715 && INTEGRAL_TYPE_P (TREE_TYPE (val
)))
1717 tree would_have_been
= default_conversion (val
);
1718 tree type1
= TREE_TYPE (would_have_been
);
1720 if (TREE_CODE (type
) == ENUMERAL_TYPE
1721 && (TYPE_MAIN_VARIANT (type
)
1722 == TYPE_MAIN_VARIANT (TREE_TYPE (val
))))
1723 /* No warning if function asks for enum
1724 and the actual arg is that enum type. */
1726 else if (formal_prec
!= TYPE_PRECISION (type1
))
1727 warn_for_assignment ("%s with different width due to prototype", (char *) 0, name
, parmnum
+ 1);
1728 else if (TREE_UNSIGNED (type
) == TREE_UNSIGNED (type1
))
1730 /* Don't complain if the formal parameter type
1731 is an enum, because we can't tell now whether
1732 the value was an enum--even the same enum. */
1733 else if (TREE_CODE (type
) == ENUMERAL_TYPE
)
1735 else if (TREE_CODE (val
) == INTEGER_CST
1736 && int_fits_type_p (val
, type
))
1737 /* Change in signedness doesn't matter
1738 if a constant value is unaffected. */
1740 /* Likewise for a constant in a NOP_EXPR. */
1741 else if (TREE_CODE (val
) == NOP_EXPR
1742 && TREE_CODE (TREE_OPERAND (val
, 0)) == INTEGER_CST
1743 && int_fits_type_p (TREE_OPERAND (val
, 0), type
))
1745 #if 0 /* We never get such tree structure here. */
1746 else if (TREE_CODE (TREE_TYPE (val
)) == ENUMERAL_TYPE
1747 && int_fits_type_p (TYPE_MIN_VALUE (TREE_TYPE (val
)), type
)
1748 && int_fits_type_p (TYPE_MAX_VALUE (TREE_TYPE (val
)), type
))
1749 /* Change in signedness doesn't matter
1750 if an enum value is unaffected. */
1753 /* If the value is extended from a narrower
1754 unsigned type, it doesn't matter whether we
1755 pass it as signed or unsigned; the value
1756 certainly is the same either way. */
1757 else if (TYPE_PRECISION (TREE_TYPE (val
)) < TYPE_PRECISION (type
)
1758 && TREE_UNSIGNED (TREE_TYPE (val
)))
1760 else if (TREE_UNSIGNED (type
))
1761 warn_for_assignment ("%s as unsigned due to prototype", (char *) 0, name
, parmnum
+ 1);
1763 warn_for_assignment ("%s as signed due to prototype", (char *) 0, name
, parmnum
+ 1);
1767 parmval
= convert_for_assignment (type
, val
,
1768 (char *) 0, /* arg passing */
1769 fundecl
, name
, parmnum
+ 1);
1771 if (PROMOTE_PROTOTYPES
1772 && INTEGRAL_TYPE_P (type
)
1773 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
1774 parmval
= default_conversion (parmval
);
1776 result
= tree_cons (NULL_TREE
, parmval
, result
);
1778 else if (TREE_CODE (TREE_TYPE (val
)) == REAL_TYPE
1779 && (TYPE_PRECISION (TREE_TYPE (val
))
1780 < TYPE_PRECISION (double_type_node
)))
1781 /* Convert `float' to `double'. */
1782 result
= tree_cons (NULL_TREE
, convert (double_type_node
, val
), result
);
1784 /* Convert `short' and `char' to full-size `int'. */
1785 result
= tree_cons (NULL_TREE
, default_conversion (val
), result
);
1788 typetail
= TREE_CHAIN (typetail
);
1791 if (typetail
!= 0 && TREE_VALUE (typetail
) != void_type_node
)
1794 error ("too few arguments to function `%s'",
1795 IDENTIFIER_POINTER (name
));
1797 error ("too few arguments to function");
1800 return nreverse (result
);
1803 /* This is the entry point used by the parser
1804 for binary operators in the input.
1805 In addition to constructing the expression,
1806 we check for operands that were written with other binary operators
1807 in a way that is likely to confuse the user. */
1810 parser_build_binary_op (code
, arg1
, arg2
)
1811 enum tree_code code
;
1814 tree result
= build_binary_op (code
, arg1
, arg2
, 1);
1817 char class1
= TREE_CODE_CLASS (TREE_CODE (arg1
));
1818 char class2
= TREE_CODE_CLASS (TREE_CODE (arg2
));
1819 enum tree_code code1
= ERROR_MARK
;
1820 enum tree_code code2
= ERROR_MARK
;
1822 if (TREE_CODE (result
) == ERROR_MARK
)
1823 return error_mark_node
;
1825 if (IS_EXPR_CODE_CLASS (class1
))
1826 code1
= C_EXP_ORIGINAL_CODE (arg1
);
1827 if (IS_EXPR_CODE_CLASS (class2
))
1828 code2
= C_EXP_ORIGINAL_CODE (arg2
);
1830 /* Check for cases such as x+y<<z which users are likely
1831 to misinterpret. If parens are used, C_EXP_ORIGINAL_CODE
1832 is cleared to prevent these warnings. */
1833 if (warn_parentheses
)
1835 if (code
== LSHIFT_EXPR
|| code
== RSHIFT_EXPR
)
1837 if (code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
1838 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
1839 warning ("suggest parentheses around + or - inside shift");
1842 if (code
== TRUTH_ORIF_EXPR
)
1844 if (code1
== TRUTH_ANDIF_EXPR
1845 || code2
== TRUTH_ANDIF_EXPR
)
1846 warning ("suggest parentheses around && within ||");
1849 if (code
== BIT_IOR_EXPR
)
1851 if (code1
== BIT_AND_EXPR
|| code1
== BIT_XOR_EXPR
1852 || code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
1853 || code2
== BIT_AND_EXPR
|| code2
== BIT_XOR_EXPR
1854 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
1855 warning ("suggest parentheses around arithmetic in operand of |");
1856 /* Check cases like x|y==z */
1857 if (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<')
1858 warning ("suggest parentheses around comparison in operand of |");
1861 if (code
== BIT_XOR_EXPR
)
1863 if (code1
== BIT_AND_EXPR
1864 || code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
1865 || code2
== BIT_AND_EXPR
1866 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
1867 warning ("suggest parentheses around arithmetic in operand of ^");
1868 /* Check cases like x^y==z */
1869 if (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<')
1870 warning ("suggest parentheses around comparison in operand of ^");
1873 if (code
== BIT_AND_EXPR
)
1875 if (code1
== PLUS_EXPR
|| code1
== MINUS_EXPR
1876 || code2
== PLUS_EXPR
|| code2
== MINUS_EXPR
)
1877 warning ("suggest parentheses around + or - in operand of &");
1878 /* Check cases like x&y==z */
1879 if (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<')
1880 warning ("suggest parentheses around comparison in operand of &");
1884 /* Similarly, check for cases like 1<=i<=10 that are probably errors. */
1885 if (TREE_CODE_CLASS (code
) == '<' && extra_warnings
1886 && (TREE_CODE_CLASS (code1
) == '<' || TREE_CODE_CLASS (code2
) == '<'))
1887 warning ("comparisons like X<=Y<=Z do not have their mathematical meaning");
1889 unsigned_conversion_warning (result
, arg1
);
1890 unsigned_conversion_warning (result
, arg2
);
1891 overflow_warning (result
);
1893 class = TREE_CODE_CLASS (TREE_CODE (result
));
1895 /* Record the code that was specified in the source,
1896 for the sake of warnings about confusing nesting. */
1897 if (IS_EXPR_CODE_CLASS (class))
1898 C_SET_EXP_ORIGINAL_CODE (result
, code
);
1901 int flag
= TREE_CONSTANT (result
);
1902 /* We used to use NOP_EXPR rather than NON_LVALUE_EXPR
1903 so that convert_for_assignment wouldn't strip it.
1904 That way, we got warnings for things like p = (1 - 1).
1905 But it turns out we should not get those warnings. */
1906 result
= build1 (NON_LVALUE_EXPR
, TREE_TYPE (result
), result
);
1907 C_SET_EXP_ORIGINAL_CODE (result
, code
);
1908 TREE_CONSTANT (result
) = flag
;
1914 /* Build a binary-operation expression without default conversions.
1915 CODE is the kind of expression to build.
1916 This function differs from `build' in several ways:
1917 the data type of the result is computed and recorded in it,
1918 warnings are generated if arg data types are invalid,
1919 special handling for addition and subtraction of pointers is known,
1920 and some optimization is done (operations on narrow ints
1921 are done in the narrower type when that gives the same result).
1922 Constant folding is also done before the result is returned.
1924 Note that the operands will never have enumeral types, or function
1925 or array types, because either they will have the default conversions
1926 performed or they have both just been converted to some other type in which
1927 the arithmetic is to be done. */
1930 build_binary_op (code
, orig_op0
, orig_op1
, convert_p
)
1931 enum tree_code code
;
1932 tree orig_op0
, orig_op1
;
1936 enum tree_code code0
, code1
;
1939 /* Expression code to give to the expression when it is built.
1940 Normally this is CODE, which is what the caller asked for,
1941 but in some special cases we change it. */
1942 enum tree_code resultcode
= code
;
1944 /* Data type in which the computation is to be performed.
1945 In the simplest cases this is the common type of the arguments. */
1946 tree result_type
= NULL
;
1948 /* Nonzero means operands have already been type-converted
1949 in whatever way is necessary.
1950 Zero means they need to be converted to RESULT_TYPE. */
1953 /* Nonzero means create the expression with this type, rather than
1955 tree build_type
= 0;
1957 /* Nonzero means after finally constructing the expression
1958 convert it to this type. */
1959 tree final_type
= 0;
1961 /* Nonzero if this is an operation like MIN or MAX which can
1962 safely be computed in short if both args are promoted shorts.
1963 Also implies COMMON.
1964 -1 indicates a bitwise operation; this makes a difference
1965 in the exact conditions for when it is safe to do the operation
1966 in a narrower mode. */
1969 /* Nonzero if this is a comparison operation;
1970 if both args are promoted shorts, compare the original shorts.
1971 Also implies COMMON. */
1972 int short_compare
= 0;
1974 /* Nonzero if this is a right-shift operation, which can be computed on the
1975 original short and then promoted if the operand is a promoted short. */
1976 int short_shift
= 0;
1978 /* Nonzero means set RESULT_TYPE to the common type of the args. */
1983 op0
= default_conversion (orig_op0
);
1984 op1
= default_conversion (orig_op1
);
1992 type0
= TREE_TYPE (op0
);
1993 type1
= TREE_TYPE (op1
);
1995 /* The expression codes of the data types of the arguments tell us
1996 whether the arguments are integers, floating, pointers, etc. */
1997 code0
= TREE_CODE (type0
);
1998 code1
= TREE_CODE (type1
);
2000 /* Strip NON_LVALUE_EXPRs, etc., since we aren't using as an lvalue. */
2001 STRIP_TYPE_NOPS (op0
);
2002 STRIP_TYPE_NOPS (op1
);
2004 /* If an error was already reported for one of the arguments,
2005 avoid reporting another error. */
2007 if (code0
== ERROR_MARK
|| code1
== ERROR_MARK
)
2008 return error_mark_node
;
2013 /* Handle the pointer + int case. */
2014 if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
2015 return pointer_int_sum (PLUS_EXPR
, op0
, op1
);
2016 else if (code1
== POINTER_TYPE
&& code0
== INTEGER_TYPE
)
2017 return pointer_int_sum (PLUS_EXPR
, op1
, op0
);
2023 /* Subtraction of two similar pointers.
2024 We must subtract them as integers, then divide by object size. */
2025 if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
2026 && comp_target_types (type0
, type1
))
2027 return pointer_diff (op0
, op1
);
2028 /* Handle pointer minus int. Just like pointer plus int. */
2029 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
2030 return pointer_int_sum (MINUS_EXPR
, op0
, op1
);
2039 case TRUNC_DIV_EXPR
:
2041 case FLOOR_DIV_EXPR
:
2042 case ROUND_DIV_EXPR
:
2043 case EXACT_DIV_EXPR
:
2044 /* Floating point division by zero is a legitimate way to obtain
2045 infinities and NaNs. */
2046 if (warn_div_by_zero
&& skip_evaluation
== 0 && integer_zerop (op1
))
2047 warning ("division by zero");
2049 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
2050 || code0
== COMPLEX_TYPE
)
2051 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
2052 || code1
== COMPLEX_TYPE
))
2054 if (!(code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
))
2055 resultcode
= RDIV_EXPR
;
2057 /* Although it would be tempting to shorten always here, that
2058 loses on some targets, since the modulo instruction is
2059 undefined if the quotient can't be represented in the
2060 computation mode. We shorten only if unsigned or if
2061 dividing by something we know != -1. */
2062 shorten
= (TREE_UNSIGNED (TREE_TYPE (orig_op0
))
2063 || (TREE_CODE (op1
) == INTEGER_CST
2064 && ! integer_all_onesp (op1
)));
2070 case BIT_ANDTC_EXPR
:
2073 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
2077 case TRUNC_MOD_EXPR
:
2078 case FLOOR_MOD_EXPR
:
2079 if (warn_div_by_zero
&& skip_evaluation
== 0 && integer_zerop (op1
))
2080 warning ("division by zero");
2082 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
2084 /* Although it would be tempting to shorten always here, that loses
2085 on some targets, since the modulo instruction is undefined if the
2086 quotient can't be represented in the computation mode. We shorten
2087 only if unsigned or if dividing by something we know != -1. */
2088 shorten
= (TREE_UNSIGNED (TREE_TYPE (orig_op0
))
2089 || (TREE_CODE (op1
) == INTEGER_CST
2090 && ! integer_all_onesp (op1
)));
2095 case TRUTH_ANDIF_EXPR
:
2096 case TRUTH_ORIF_EXPR
:
2097 case TRUTH_AND_EXPR
:
2099 case TRUTH_XOR_EXPR
:
2100 if ((code0
== INTEGER_TYPE
|| code0
== POINTER_TYPE
2101 || code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
)
2102 && (code1
== INTEGER_TYPE
|| code1
== POINTER_TYPE
2103 || code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
))
2105 /* Result of these operations is always an int,
2106 but that does not mean the operands should be
2107 converted to ints! */
2108 result_type
= integer_type_node
;
2109 op0
= c_common_truthvalue_conversion (op0
);
2110 op1
= c_common_truthvalue_conversion (op1
);
2115 /* Shift operations: result has same type as first operand;
2116 always convert second operand to int.
2117 Also set SHORT_SHIFT if shifting rightward. */
2120 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
2122 if (TREE_CODE (op1
) == INTEGER_CST
&& skip_evaluation
== 0)
2124 if (tree_int_cst_sgn (op1
) < 0)
2125 warning ("right shift count is negative");
2128 if (! integer_zerop (op1
))
2131 if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
2132 warning ("right shift count >= width of type");
2136 /* Use the type of the value to be shifted. */
2137 result_type
= type0
;
2138 /* Convert the shift-count to an integer, regardless of size
2139 of value being shifted. */
2140 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
2141 op1
= convert (integer_type_node
, op1
);
2142 /* Avoid converting op1 to result_type later. */
2148 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
2150 if (TREE_CODE (op1
) == INTEGER_CST
&& skip_evaluation
== 0)
2152 if (tree_int_cst_sgn (op1
) < 0)
2153 warning ("left shift count is negative");
2155 else if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
2156 warning ("left shift count >= width of type");
2159 /* Use the type of the value to be shifted. */
2160 result_type
= type0
;
2161 /* Convert the shift-count to an integer, regardless of size
2162 of value being shifted. */
2163 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
2164 op1
= convert (integer_type_node
, op1
);
2165 /* Avoid converting op1 to result_type later. */
2172 if (code0
== INTEGER_TYPE
&& code1
== INTEGER_TYPE
)
2174 if (TREE_CODE (op1
) == INTEGER_CST
&& skip_evaluation
== 0)
2176 if (tree_int_cst_sgn (op1
) < 0)
2177 warning ("shift count is negative");
2178 else if (compare_tree_int (op1
, TYPE_PRECISION (type0
)) >= 0)
2179 warning ("shift count >= width of type");
2182 /* Use the type of the value to be shifted. */
2183 result_type
= type0
;
2184 /* Convert the shift-count to an integer, regardless of size
2185 of value being shifted. */
2186 if (TYPE_MAIN_VARIANT (TREE_TYPE (op1
)) != integer_type_node
)
2187 op1
= convert (integer_type_node
, op1
);
2188 /* Avoid converting op1 to result_type later. */
2195 if (warn_float_equal
&& (code0
== REAL_TYPE
|| code1
== REAL_TYPE
))
2196 warning ("comparing floating point with == or != is unsafe");
2197 /* Result of comparison is always int,
2198 but don't convert the args to int! */
2199 build_type
= integer_type_node
;
2200 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
2201 || code0
== COMPLEX_TYPE
)
2202 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
2203 || code1
== COMPLEX_TYPE
))
2205 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
2207 tree tt0
= TREE_TYPE (type0
);
2208 tree tt1
= TREE_TYPE (type1
);
2209 /* Anything compares with void *. void * compares with anything.
2210 Otherwise, the targets must be compatible
2211 and both must be object or both incomplete. */
2212 if (comp_target_types (type0
, type1
))
2213 result_type
= common_type (type0
, type1
);
2214 else if (VOID_TYPE_P (tt0
))
2216 /* op0 != orig_op0 detects the case of something
2217 whose value is 0 but which isn't a valid null ptr const. */
2218 if (pedantic
&& (!integer_zerop (op0
) || op0
!= orig_op0
)
2219 && TREE_CODE (tt1
) == FUNCTION_TYPE
)
2220 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
2222 else if (VOID_TYPE_P (tt1
))
2224 if (pedantic
&& (!integer_zerop (op1
) || op1
!= orig_op1
)
2225 && TREE_CODE (tt0
) == FUNCTION_TYPE
)
2226 pedwarn ("ISO C forbids comparison of `void *' with function pointer");
2229 pedwarn ("comparison of distinct pointer types lacks a cast");
2231 if (result_type
== NULL_TREE
)
2232 result_type
= ptr_type_node
;
2234 else if (code0
== POINTER_TYPE
&& TREE_CODE (op1
) == INTEGER_CST
2235 && integer_zerop (op1
))
2236 result_type
= type0
;
2237 else if (code1
== POINTER_TYPE
&& TREE_CODE (op0
) == INTEGER_CST
2238 && integer_zerop (op0
))
2239 result_type
= type1
;
2240 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
2242 result_type
= type0
;
2243 pedwarn ("comparison between pointer and integer");
2245 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
2247 result_type
= type1
;
2248 pedwarn ("comparison between pointer and integer");
2254 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
)
2255 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
))
2257 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
2259 if (comp_target_types (type0
, type1
))
2261 result_type
= common_type (type0
, type1
);
2263 && TREE_CODE (TREE_TYPE (type0
)) == FUNCTION_TYPE
)
2264 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
2268 result_type
= ptr_type_node
;
2269 pedwarn ("comparison of distinct pointer types lacks a cast");
2278 build_type
= integer_type_node
;
2279 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
)
2280 && (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
))
2282 else if (code0
== POINTER_TYPE
&& code1
== POINTER_TYPE
)
2284 if (comp_target_types (type0
, type1
))
2286 result_type
= common_type (type0
, type1
);
2287 if (!COMPLETE_TYPE_P (TREE_TYPE (type0
))
2288 != !COMPLETE_TYPE_P (TREE_TYPE (type1
)))
2289 pedwarn ("comparison of complete and incomplete pointers");
2291 && TREE_CODE (TREE_TYPE (type0
)) == FUNCTION_TYPE
)
2292 pedwarn ("ISO C forbids ordered comparisons of pointers to functions");
2296 result_type
= ptr_type_node
;
2297 pedwarn ("comparison of distinct pointer types lacks a cast");
2300 else if (code0
== POINTER_TYPE
&& TREE_CODE (op1
) == INTEGER_CST
2301 && integer_zerop (op1
))
2303 result_type
= type0
;
2304 if (pedantic
|| extra_warnings
)
2305 pedwarn ("ordered comparison of pointer with integer zero");
2307 else if (code1
== POINTER_TYPE
&& TREE_CODE (op0
) == INTEGER_CST
2308 && integer_zerop (op0
))
2310 result_type
= type1
;
2312 pedwarn ("ordered comparison of pointer with integer zero");
2314 else if (code0
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
2316 result_type
= type0
;
2317 pedwarn ("comparison between pointer and integer");
2319 else if (code0
== INTEGER_TYPE
&& code1
== POINTER_TYPE
)
2321 result_type
= type1
;
2322 pedwarn ("comparison between pointer and integer");
2326 case UNORDERED_EXPR
:
2333 build_type
= integer_type_node
;
2334 if (code0
!= REAL_TYPE
|| code1
!= REAL_TYPE
)
2336 error ("unordered comparison on non-floating point argument");
2337 return error_mark_node
;
2346 if ((code0
== INTEGER_TYPE
|| code0
== REAL_TYPE
|| code0
== COMPLEX_TYPE
)
2348 (code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
|| code1
== COMPLEX_TYPE
))
2350 int none_complex
= (code0
!= COMPLEX_TYPE
&& code1
!= COMPLEX_TYPE
);
2352 if (shorten
|| common
|| short_compare
)
2353 result_type
= common_type (type0
, type1
);
2355 /* For certain operations (which identify themselves by shorten != 0)
2356 if both args were extended from the same smaller type,
2357 do the arithmetic in that type and then extend.
2359 shorten !=0 and !=1 indicates a bitwise operation.
2360 For them, this optimization is safe only if
2361 both args are zero-extended or both are sign-extended.
2362 Otherwise, we might change the result.
2363 Eg, (short)-1 | (unsigned short)-1 is (int)-1
2364 but calculated in (unsigned short) it would be (unsigned short)-1. */
2366 if (shorten
&& none_complex
)
2368 int unsigned0
, unsigned1
;
2369 tree arg0
= get_narrower (op0
, &unsigned0
);
2370 tree arg1
= get_narrower (op1
, &unsigned1
);
2371 /* UNS is 1 if the operation to be done is an unsigned one. */
2372 int uns
= TREE_UNSIGNED (result_type
);
2375 final_type
= result_type
;
2377 /* Handle the case that OP0 (or OP1) does not *contain* a conversion
2378 but it *requires* conversion to FINAL_TYPE. */
2380 if ((TYPE_PRECISION (TREE_TYPE (op0
))
2381 == TYPE_PRECISION (TREE_TYPE (arg0
)))
2382 && TREE_TYPE (op0
) != final_type
)
2383 unsigned0
= TREE_UNSIGNED (TREE_TYPE (op0
));
2384 if ((TYPE_PRECISION (TREE_TYPE (op1
))
2385 == TYPE_PRECISION (TREE_TYPE (arg1
)))
2386 && TREE_TYPE (op1
) != final_type
)
2387 unsigned1
= TREE_UNSIGNED (TREE_TYPE (op1
));
2389 /* Now UNSIGNED0 is 1 if ARG0 zero-extends to FINAL_TYPE. */
2391 /* For bitwise operations, signedness of nominal type
2392 does not matter. Consider only how operands were extended. */
2396 /* Note that in all three cases below we refrain from optimizing
2397 an unsigned operation on sign-extended args.
2398 That would not be valid. */
2400 /* Both args variable: if both extended in same way
2401 from same width, do it in that width.
2402 Do it unsigned if args were zero-extended. */
2403 if ((TYPE_PRECISION (TREE_TYPE (arg0
))
2404 < TYPE_PRECISION (result_type
))
2405 && (TYPE_PRECISION (TREE_TYPE (arg1
))
2406 == TYPE_PRECISION (TREE_TYPE (arg0
)))
2407 && unsigned0
== unsigned1
2408 && (unsigned0
|| !uns
))
2410 = c_common_signed_or_unsigned_type
2411 (unsigned0
, common_type (TREE_TYPE (arg0
), TREE_TYPE (arg1
)));
2412 else if (TREE_CODE (arg0
) == INTEGER_CST
2413 && (unsigned1
|| !uns
)
2414 && (TYPE_PRECISION (TREE_TYPE (arg1
))
2415 < TYPE_PRECISION (result_type
))
2417 = c_common_signed_or_unsigned_type (unsigned1
,
2419 int_fits_type_p (arg0
, type
)))
2421 else if (TREE_CODE (arg1
) == INTEGER_CST
2422 && (unsigned0
|| !uns
)
2423 && (TYPE_PRECISION (TREE_TYPE (arg0
))
2424 < TYPE_PRECISION (result_type
))
2426 = c_common_signed_or_unsigned_type (unsigned0
,
2428 int_fits_type_p (arg1
, type
)))
2432 /* Shifts can be shortened if shifting right. */
2437 tree arg0
= get_narrower (op0
, &unsigned_arg
);
2439 final_type
= result_type
;
2441 if (arg0
== op0
&& final_type
== TREE_TYPE (op0
))
2442 unsigned_arg
= TREE_UNSIGNED (TREE_TYPE (op0
));
2444 if (TYPE_PRECISION (TREE_TYPE (arg0
)) < TYPE_PRECISION (result_type
)
2445 /* We can shorten only if the shift count is less than the
2446 number of bits in the smaller type size. */
2447 && compare_tree_int (op1
, TYPE_PRECISION (TREE_TYPE (arg0
))) < 0
2448 /* We cannot drop an unsigned shift after sign-extension. */
2449 && (!TREE_UNSIGNED (final_type
) || unsigned_arg
))
2451 /* Do an unsigned shift if the operand was zero-extended. */
2453 = c_common_signed_or_unsigned_type (unsigned_arg
,
2455 /* Convert value-to-be-shifted to that type. */
2456 if (TREE_TYPE (op0
) != result_type
)
2457 op0
= convert (result_type
, op0
);
2462 /* Comparison operations are shortened too but differently.
2463 They identify themselves by setting short_compare = 1. */
2467 /* Don't write &op0, etc., because that would prevent op0
2468 from being kept in a register.
2469 Instead, make copies of the our local variables and
2470 pass the copies by reference, then copy them back afterward. */
2471 tree xop0
= op0
, xop1
= op1
, xresult_type
= result_type
;
2472 enum tree_code xresultcode
= resultcode
;
2474 = shorten_compare (&xop0
, &xop1
, &xresult_type
, &xresultcode
);
2479 op0
= xop0
, op1
= xop1
;
2481 resultcode
= xresultcode
;
2483 if ((warn_sign_compare
< 0 ? extra_warnings
: warn_sign_compare
!= 0)
2484 && skip_evaluation
== 0)
2486 int op0_signed
= ! TREE_UNSIGNED (TREE_TYPE (orig_op0
));
2487 int op1_signed
= ! TREE_UNSIGNED (TREE_TYPE (orig_op1
));
2488 int unsignedp0
, unsignedp1
;
2489 tree primop0
= get_narrower (op0
, &unsignedp0
);
2490 tree primop1
= get_narrower (op1
, &unsignedp1
);
2494 STRIP_TYPE_NOPS (xop0
);
2495 STRIP_TYPE_NOPS (xop1
);
2497 /* Give warnings for comparisons between signed and unsigned
2498 quantities that may fail.
2500 Do the checking based on the original operand trees, so that
2501 casts will be considered, but default promotions won't be.
2503 Do not warn if the comparison is being done in a signed type,
2504 since the signed type will only be chosen if it can represent
2505 all the values of the unsigned type. */
2506 if (! TREE_UNSIGNED (result_type
))
2508 /* Do not warn if both operands are the same signedness. */
2509 else if (op0_signed
== op1_signed
)
2516 sop
= xop0
, uop
= xop1
;
2518 sop
= xop1
, uop
= xop0
;
2520 /* Do not warn if the signed quantity is an
2521 unsuffixed integer literal (or some static
2522 constant expression involving such literals or a
2523 conditional expression involving such literals)
2524 and it is non-negative. */
2525 if (tree_expr_nonnegative_p (sop
))
2527 /* Do not warn if the comparison is an equality operation,
2528 the unsigned quantity is an integral constant, and it
2529 would fit in the result if the result were signed. */
2530 else if (TREE_CODE (uop
) == INTEGER_CST
2531 && (resultcode
== EQ_EXPR
|| resultcode
== NE_EXPR
)
2533 (uop
, c_common_signed_type (result_type
)))
2535 /* Do not warn if the unsigned quantity is an enumeration
2536 constant and its maximum value would fit in the result
2537 if the result were signed. */
2538 else if (TREE_CODE (uop
) == INTEGER_CST
2539 && TREE_CODE (TREE_TYPE (uop
)) == ENUMERAL_TYPE
2541 (TYPE_MAX_VALUE (TREE_TYPE(uop
)),
2542 c_common_signed_type (result_type
)))
2545 warning ("comparison between signed and unsigned");
2548 /* Warn if two unsigned values are being compared in a size
2549 larger than their original size, and one (and only one) is the
2550 result of a `~' operator. This comparison will always fail.
2552 Also warn if one operand is a constant, and the constant
2553 does not have all bits set that are set in the ~ operand
2554 when it is extended. */
2556 if ((TREE_CODE (primop0
) == BIT_NOT_EXPR
)
2557 != (TREE_CODE (primop1
) == BIT_NOT_EXPR
))
2559 if (TREE_CODE (primop0
) == BIT_NOT_EXPR
)
2560 primop0
= get_narrower (TREE_OPERAND (primop0
, 0),
2563 primop1
= get_narrower (TREE_OPERAND (primop1
, 0),
2566 if (host_integerp (primop0
, 0) || host_integerp (primop1
, 0))
2569 HOST_WIDE_INT constant
, mask
;
2570 int unsignedp
, bits
;
2572 if (host_integerp (primop0
, 0))
2575 unsignedp
= unsignedp1
;
2576 constant
= tree_low_cst (primop0
, 0);
2581 unsignedp
= unsignedp0
;
2582 constant
= tree_low_cst (primop1
, 0);
2585 bits
= TYPE_PRECISION (TREE_TYPE (primop
));
2586 if (bits
< TYPE_PRECISION (result_type
)
2587 && bits
< HOST_BITS_PER_WIDE_INT
&& unsignedp
)
2589 mask
= (~ (HOST_WIDE_INT
) 0) << bits
;
2590 if ((mask
& constant
) != mask
)
2591 warning ("comparison of promoted ~unsigned with constant");
2594 else if (unsignedp0
&& unsignedp1
2595 && (TYPE_PRECISION (TREE_TYPE (primop0
))
2596 < TYPE_PRECISION (result_type
))
2597 && (TYPE_PRECISION (TREE_TYPE (primop1
))
2598 < TYPE_PRECISION (result_type
)))
2599 warning ("comparison of promoted ~unsigned with unsigned");
2605 /* At this point, RESULT_TYPE must be nonzero to avoid an error message.
2606 If CONVERTED is zero, both args will be converted to type RESULT_TYPE.
2607 Then the expression will be built.
2608 It will be given type FINAL_TYPE if that is nonzero;
2609 otherwise, it will be given type RESULT_TYPE. */
2613 binary_op_error (code
);
2614 return error_mark_node
;
2619 if (TREE_TYPE (op0
) != result_type
)
2620 op0
= convert (result_type
, op0
);
2621 if (TREE_TYPE (op1
) != result_type
)
2622 op1
= convert (result_type
, op1
);
2625 if (build_type
== NULL_TREE
)
2626 build_type
= result_type
;
2629 tree result
= build (resultcode
, build_type
, op0
, op1
);
2632 folded
= fold (result
);
2633 if (folded
== result
)
2634 TREE_CONSTANT (folded
) = TREE_CONSTANT (op0
) & TREE_CONSTANT (op1
);
2635 if (final_type
!= 0)
2636 return convert (final_type
, folded
);
2641 /* Return a tree for the difference of pointers OP0 and OP1.
2642 The resulting tree has type int. */
2645 pointer_diff (op0
, op1
)
2648 tree result
, folded
;
2649 tree restype
= ptrdiff_type_node
;
2651 tree target_type
= TREE_TYPE (TREE_TYPE (op0
));
2652 tree con0
, con1
, lit0
, lit1
;
2653 tree orig_op1
= op1
;
2655 if (pedantic
|| warn_pointer_arith
)
2657 if (TREE_CODE (target_type
) == VOID_TYPE
)
2658 pedwarn ("pointer of type `void *' used in subtraction");
2659 if (TREE_CODE (target_type
) == FUNCTION_TYPE
)
2660 pedwarn ("pointer to a function used in subtraction");
2663 /* If the conversion to ptrdiff_type does anything like widening or
2664 converting a partial to an integral mode, we get a convert_expression
2665 that is in the way to do any simplifications.
2666 (fold-const.c doesn't know that the extra bits won't be needed.
2667 split_tree uses STRIP_SIGN_NOPS, which leaves conversions to a
2668 different mode in place.)
2669 So first try to find a common term here 'by hand'; we want to cover
2670 at least the cases that occur in legal static initializers. */
2671 con0
= TREE_CODE (op0
) == NOP_EXPR
? TREE_OPERAND (op0
, 0) : op0
;
2672 con1
= TREE_CODE (op1
) == NOP_EXPR
? TREE_OPERAND (op1
, 0) : op1
;
2674 if (TREE_CODE (con0
) == PLUS_EXPR
)
2676 lit0
= TREE_OPERAND (con0
, 1);
2677 con0
= TREE_OPERAND (con0
, 0);
2680 lit0
= integer_zero_node
;
2682 if (TREE_CODE (con1
) == PLUS_EXPR
)
2684 lit1
= TREE_OPERAND (con1
, 1);
2685 con1
= TREE_OPERAND (con1
, 0);
2688 lit1
= integer_zero_node
;
2690 if (operand_equal_p (con0
, con1
, 0))
2697 /* First do the subtraction as integers;
2698 then drop through to build the divide operator.
2699 Do not do default conversions on the minus operator
2700 in case restype is a short type. */
2702 op0
= build_binary_op (MINUS_EXPR
, convert (restype
, op0
),
2703 convert (restype
, op1
), 0);
2704 /* This generates an error if op1 is pointer to incomplete type. */
2705 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (orig_op1
))))
2706 error ("arithmetic on pointer to an incomplete type");
2708 /* This generates an error if op0 is pointer to incomplete type. */
2709 op1
= c_size_in_bytes (target_type
);
2711 /* Divide by the size, in easiest possible way. */
2713 result
= build (EXACT_DIV_EXPR
, restype
, op0
, convert (restype
, op1
));
2715 folded
= fold (result
);
2716 if (folded
== result
)
2717 TREE_CONSTANT (folded
) = TREE_CONSTANT (op0
) & TREE_CONSTANT (op1
);
2721 /* Construct and perhaps optimize a tree representation
2722 for a unary operation. CODE, a tree_code, specifies the operation
2723 and XARG is the operand.
2724 For any CODE other than ADDR_EXPR, FLAG nonzero suppresses
2725 the default promotions (such as from short to int).
2726 For ADDR_EXPR, the default promotions are not applied; FLAG nonzero
2727 allows non-lvalues; this is only used to handle conversion of non-lvalue
2728 arrays to pointers in C99. */
2731 build_unary_op (code
, xarg
, flag
)
2732 enum tree_code code
;
2736 /* No default_conversion here. It causes trouble for ADDR_EXPR. */
2739 enum tree_code typecode
= TREE_CODE (TREE_TYPE (arg
));
2741 int noconvert
= flag
;
2743 if (typecode
== ERROR_MARK
)
2744 return error_mark_node
;
2745 if (typecode
== ENUMERAL_TYPE
|| typecode
== BOOLEAN_TYPE
)
2746 typecode
= INTEGER_TYPE
;
2751 /* This is used for unary plus, because a CONVERT_EXPR
2752 is enough to prevent anybody from looking inside for
2753 associativity, but won't generate any code. */
2754 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2755 || typecode
== COMPLEX_TYPE
))
2757 error ("wrong type argument to unary plus");
2758 return error_mark_node
;
2760 else if (!noconvert
)
2761 arg
= default_conversion (arg
);
2762 arg
= non_lvalue (arg
);
2766 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2767 || typecode
== COMPLEX_TYPE
))
2769 error ("wrong type argument to unary minus");
2770 return error_mark_node
;
2772 else if (!noconvert
)
2773 arg
= default_conversion (arg
);
2777 if (typecode
== COMPLEX_TYPE
)
2781 pedwarn ("ISO C does not support `~' for complex conjugation");
2783 arg
= default_conversion (arg
);
2785 else if (typecode
!= INTEGER_TYPE
)
2787 error ("wrong type argument to bit-complement");
2788 return error_mark_node
;
2790 else if (!noconvert
)
2791 arg
= default_conversion (arg
);
2795 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2796 || typecode
== COMPLEX_TYPE
))
2798 error ("wrong type argument to abs");
2799 return error_mark_node
;
2801 else if (!noconvert
)
2802 arg
= default_conversion (arg
);
2806 /* Conjugating a real value is a no-op, but allow it anyway. */
2807 if (!(typecode
== INTEGER_TYPE
|| typecode
== REAL_TYPE
2808 || typecode
== COMPLEX_TYPE
))
2810 error ("wrong type argument to conjugation");
2811 return error_mark_node
;
2813 else if (!noconvert
)
2814 arg
= default_conversion (arg
);
2817 case TRUTH_NOT_EXPR
:
2818 if (typecode
!= INTEGER_TYPE
2819 && typecode
!= REAL_TYPE
&& typecode
!= POINTER_TYPE
2820 && typecode
!= COMPLEX_TYPE
2821 /* These will convert to a pointer. */
2822 && typecode
!= ARRAY_TYPE
&& typecode
!= FUNCTION_TYPE
)
2824 error ("wrong type argument to unary exclamation mark");
2825 return error_mark_node
;
2827 arg
= c_common_truthvalue_conversion (arg
);
2828 return invert_truthvalue (arg
);
2834 if (TREE_CODE (arg
) == COMPLEX_CST
)
2835 return TREE_REALPART (arg
);
2836 else if (TREE_CODE (TREE_TYPE (arg
)) == COMPLEX_TYPE
)
2837 return fold (build1 (REALPART_EXPR
, TREE_TYPE (TREE_TYPE (arg
)), arg
));
2842 if (TREE_CODE (arg
) == COMPLEX_CST
)
2843 return TREE_IMAGPART (arg
);
2844 else if (TREE_CODE (TREE_TYPE (arg
)) == COMPLEX_TYPE
)
2845 return fold (build1 (IMAGPART_EXPR
, TREE_TYPE (TREE_TYPE (arg
)), arg
));
2847 return convert (TREE_TYPE (arg
), integer_zero_node
);
2849 case PREINCREMENT_EXPR
:
2850 case POSTINCREMENT_EXPR
:
2851 case PREDECREMENT_EXPR
:
2852 case POSTDECREMENT_EXPR
:
2853 /* Handle complex lvalues (when permitted)
2854 by reduction to simpler cases. */
2856 val
= unary_complex_lvalue (code
, arg
, 0);
2860 /* Increment or decrement the real part of the value,
2861 and don't change the imaginary part. */
2862 if (typecode
== COMPLEX_TYPE
)
2867 pedwarn ("ISO C does not support `++' and `--' on complex types");
2869 arg
= stabilize_reference (arg
);
2870 real
= build_unary_op (REALPART_EXPR
, arg
, 1);
2871 imag
= build_unary_op (IMAGPART_EXPR
, arg
, 1);
2872 return build (COMPLEX_EXPR
, TREE_TYPE (arg
),
2873 build_unary_op (code
, real
, 1), imag
);
2876 /* Report invalid types. */
2878 if (typecode
!= POINTER_TYPE
2879 && typecode
!= INTEGER_TYPE
&& typecode
!= REAL_TYPE
)
2881 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2882 error ("wrong type argument to increment");
2884 error ("wrong type argument to decrement");
2886 return error_mark_node
;
2891 tree result_type
= TREE_TYPE (arg
);
2893 arg
= get_unwidened (arg
, 0);
2894 argtype
= TREE_TYPE (arg
);
2896 /* Compute the increment. */
2898 if (typecode
== POINTER_TYPE
)
2900 /* If pointer target is an undefined struct,
2901 we just cannot know how to do the arithmetic. */
2902 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (result_type
)))
2904 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2905 error ("increment of pointer to unknown structure");
2907 error ("decrement of pointer to unknown structure");
2909 else if ((pedantic
|| warn_pointer_arith
)
2910 && (TREE_CODE (TREE_TYPE (result_type
)) == FUNCTION_TYPE
2911 || TREE_CODE (TREE_TYPE (result_type
)) == VOID_TYPE
))
2913 if (code
== PREINCREMENT_EXPR
|| code
== POSTINCREMENT_EXPR
)
2914 pedwarn ("wrong type argument to increment");
2916 pedwarn ("wrong type argument to decrement");
2919 inc
= c_size_in_bytes (TREE_TYPE (result_type
));
2922 inc
= integer_one_node
;
2924 inc
= convert (argtype
, inc
);
2926 /* Handle incrementing a cast-expression. */
2929 switch (TREE_CODE (arg
))
2934 case FIX_TRUNC_EXPR
:
2935 case FIX_FLOOR_EXPR
:
2936 case FIX_ROUND_EXPR
:
2938 pedantic_lvalue_warning (CONVERT_EXPR
);
2939 /* If the real type has the same machine representation
2940 as the type it is cast to, we can make better output
2941 by adding directly to the inside of the cast. */
2942 if ((TREE_CODE (TREE_TYPE (arg
))
2943 == TREE_CODE (TREE_TYPE (TREE_OPERAND (arg
, 0))))
2944 && (TYPE_MODE (TREE_TYPE (arg
))
2945 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (arg
, 0)))))
2946 arg
= TREE_OPERAND (arg
, 0);
2949 tree incremented
, modify
, value
;
2950 if (TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
)
2951 value
= boolean_increment (code
, arg
);
2954 arg
= stabilize_reference (arg
);
2955 if (code
== PREINCREMENT_EXPR
|| code
== PREDECREMENT_EXPR
)
2958 value
= save_expr (arg
);
2959 incremented
= build (((code
== PREINCREMENT_EXPR
2960 || code
== POSTINCREMENT_EXPR
)
2961 ? PLUS_EXPR
: MINUS_EXPR
),
2962 argtype
, value
, inc
);
2963 TREE_SIDE_EFFECTS (incremented
) = 1;
2964 modify
= build_modify_expr (arg
, NOP_EXPR
, incremented
);
2965 value
= build (COMPOUND_EXPR
, TREE_TYPE (arg
), modify
, value
);
2967 TREE_USED (value
) = 1;
2977 /* Complain about anything else that is not a true lvalue. */
2978 if (!lvalue_or_else (arg
, ((code
== PREINCREMENT_EXPR
2979 || code
== POSTINCREMENT_EXPR
)
2980 ? "invalid lvalue in increment"
2981 : "invalid lvalue in decrement")))
2982 return error_mark_node
;
2984 /* Report a read-only lvalue. */
2985 if (TREE_READONLY (arg
))
2986 readonly_warning (arg
,
2987 ((code
== PREINCREMENT_EXPR
2988 || code
== POSTINCREMENT_EXPR
)
2989 ? "increment" : "decrement"));
2991 if (TREE_CODE (TREE_TYPE (arg
)) == BOOLEAN_TYPE
)
2992 val
= boolean_increment (code
, arg
);
2994 val
= build (code
, TREE_TYPE (arg
), arg
, inc
);
2995 TREE_SIDE_EFFECTS (val
) = 1;
2996 val
= convert (result_type
, val
);
2997 if (TREE_CODE (val
) != code
)
2998 TREE_NO_UNUSED_WARNING (val
) = 1;
3003 /* Note that this operation never does default_conversion. */
3005 /* Let &* cancel out to simplify resulting code. */
3006 if (TREE_CODE (arg
) == INDIRECT_REF
)
3008 /* Don't let this be an lvalue. */
3009 if (lvalue_p (TREE_OPERAND (arg
, 0)))
3010 return non_lvalue (TREE_OPERAND (arg
, 0));
3011 return TREE_OPERAND (arg
, 0);
3014 /* For &x[y], return x+y */
3015 if (TREE_CODE (arg
) == ARRAY_REF
)
3017 if (!c_mark_addressable (TREE_OPERAND (arg
, 0)))
3018 return error_mark_node
;
3019 return build_binary_op (PLUS_EXPR
, TREE_OPERAND (arg
, 0),
3020 TREE_OPERAND (arg
, 1), 1);
3023 /* Handle complex lvalues (when permitted)
3024 by reduction to simpler cases. */
3025 val
= unary_complex_lvalue (code
, arg
, flag
);
3029 #if 0 /* Turned off because inconsistent;
3030 float f; *&(int)f = 3.4 stores in int format
3031 whereas (int)f = 3.4 stores in float format. */
3032 /* Address of a cast is just a cast of the address
3033 of the operand of the cast. */
3034 switch (TREE_CODE (arg
))
3039 case FIX_TRUNC_EXPR
:
3040 case FIX_FLOOR_EXPR
:
3041 case FIX_ROUND_EXPR
:
3044 pedwarn ("ISO C forbids the address of a cast expression");
3045 return convert (build_pointer_type (TREE_TYPE (arg
)),
3046 build_unary_op (ADDR_EXPR
, TREE_OPERAND (arg
, 0),
3051 /* Anything not already handled and not a true memory reference
3052 or a non-lvalue array is an error. */
3053 else if (typecode
!= FUNCTION_TYPE
&& !flag
3054 && !lvalue_or_else (arg
, "invalid lvalue in unary `&'"))
3055 return error_mark_node
;
3057 /* Ordinary case; arg is a COMPONENT_REF or a decl. */
3058 argtype
= TREE_TYPE (arg
);
3060 /* If the lvalue is const or volatile, merge that into the type
3061 to which the address will point. Note that you can't get a
3062 restricted pointer by taking the address of something, so we
3063 only have to deal with `const' and `volatile' here. */
3064 if ((DECL_P (arg
) || TREE_CODE_CLASS (TREE_CODE (arg
)) == 'r')
3065 && (TREE_READONLY (arg
) || TREE_THIS_VOLATILE (arg
)))
3066 argtype
= c_build_type_variant (argtype
,
3067 TREE_READONLY (arg
),
3068 TREE_THIS_VOLATILE (arg
));
3070 argtype
= build_pointer_type (argtype
);
3072 if (!c_mark_addressable (arg
))
3073 return error_mark_node
;
3078 if (TREE_CODE (arg
) == COMPONENT_REF
)
3080 tree field
= TREE_OPERAND (arg
, 1);
3082 addr
= build_unary_op (ADDR_EXPR
, TREE_OPERAND (arg
, 0), flag
);
3084 if (DECL_C_BIT_FIELD (field
))
3086 error ("attempt to take address of bit-field structure member `%s'",
3087 IDENTIFIER_POINTER (DECL_NAME (field
)));
3088 return error_mark_node
;
3091 addr
= fold (build (PLUS_EXPR
, argtype
,
3092 convert (argtype
, addr
),
3093 convert (argtype
, byte_position (field
))));
3096 addr
= build1 (code
, argtype
, arg
);
3098 /* Address of a static or external variable or
3099 file-scope function counts as a constant. */
3101 && ! (TREE_CODE (arg
) == FUNCTION_DECL
3102 && DECL_CONTEXT (arg
) != 0))
3103 TREE_CONSTANT (addr
) = 1;
3112 argtype
= TREE_TYPE (arg
);
3113 return fold (build1 (code
, argtype
, arg
));
3117 /* If CONVERSIONS is a conversion expression or a nested sequence of such,
3118 convert ARG with the same conversions in the same order
3119 and return the result. */
3122 convert_sequence (conversions
, arg
)
3126 switch (TREE_CODE (conversions
))
3131 case FIX_TRUNC_EXPR
:
3132 case FIX_FLOOR_EXPR
:
3133 case FIX_ROUND_EXPR
:
3135 return convert (TREE_TYPE (conversions
),
3136 convert_sequence (TREE_OPERAND (conversions
, 0),
3145 /* Return nonzero if REF is an lvalue valid for this language.
3146 Lvalues can be assigned, unless their type has TYPE_READONLY.
3147 Lvalues can have their address taken, unless they have DECL_REGISTER. */
3153 enum tree_code code
= TREE_CODE (ref
);
3160 return lvalue_p (TREE_OPERAND (ref
, 0));
3162 case COMPOUND_LITERAL_EXPR
:
3172 return (TREE_CODE (TREE_TYPE (ref
)) != FUNCTION_TYPE
3173 && TREE_CODE (TREE_TYPE (ref
)) != METHOD_TYPE
);
3177 return TREE_CODE (TREE_TYPE (ref
)) == ARRAY_TYPE
;
3184 /* Return nonzero if REF is an lvalue valid for this language;
3185 otherwise, print an error message and return zero. */
3188 lvalue_or_else (ref
, msgid
)
3192 int win
= lvalue_p (ref
);
3195 error ("%s", msgid
);
3200 /* Apply unary lvalue-demanding operator CODE to the expression ARG
3201 for certain kinds of expressions which are not really lvalues
3202 but which we can accept as lvalues. If FLAG is nonzero, then
3203 non-lvalues are OK since we may be converting a non-lvalue array to
3206 If ARG is not a kind of expression we can handle, return zero. */
3209 unary_complex_lvalue (code
, arg
, flag
)
3210 enum tree_code code
;
3214 /* Handle (a, b) used as an "lvalue". */
3215 if (TREE_CODE (arg
) == COMPOUND_EXPR
)
3217 tree real_result
= build_unary_op (code
, TREE_OPERAND (arg
, 1), 0);
3219 /* If this returns a function type, it isn't really being used as
3220 an lvalue, so don't issue a warning about it. */
3221 if (TREE_CODE (TREE_TYPE (arg
)) != FUNCTION_TYPE
&& !flag
)
3222 pedantic_lvalue_warning (COMPOUND_EXPR
);
3224 return build (COMPOUND_EXPR
, TREE_TYPE (real_result
),
3225 TREE_OPERAND (arg
, 0), real_result
);
3228 /* Handle (a ? b : c) used as an "lvalue". */
3229 if (TREE_CODE (arg
) == COND_EXPR
)
3232 pedantic_lvalue_warning (COND_EXPR
);
3233 if (TREE_CODE (TREE_TYPE (arg
)) != FUNCTION_TYPE
&& !flag
)
3234 pedantic_lvalue_warning (COMPOUND_EXPR
);
3236 return (build_conditional_expr
3237 (TREE_OPERAND (arg
, 0),
3238 build_unary_op (code
, TREE_OPERAND (arg
, 1), flag
),
3239 build_unary_op (code
, TREE_OPERAND (arg
, 2), flag
)));
3245 /* If pedantic, warn about improper lvalue. CODE is either COND_EXPR
3246 COMPOUND_EXPR, or CONVERT_EXPR (for casts). */
3249 pedantic_lvalue_warning (code
)
3250 enum tree_code code
;
3256 pedwarn ("ISO C forbids use of conditional expressions as lvalues");
3259 pedwarn ("ISO C forbids use of compound expressions as lvalues");
3262 pedwarn ("ISO C forbids use of cast expressions as lvalues");
3267 /* Warn about storing in something that is `const'. */
3270 readonly_warning (arg
, msgid
)
3274 if (TREE_CODE (arg
) == COMPONENT_REF
)
3276 if (TYPE_READONLY (TREE_TYPE (TREE_OPERAND (arg
, 0))))
3277 readonly_warning (TREE_OPERAND (arg
, 0), msgid
);
3279 pedwarn ("%s of read-only member `%s'", _(msgid
),
3280 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (arg
, 1))));
3282 else if (TREE_CODE (arg
) == VAR_DECL
)
3283 pedwarn ("%s of read-only variable `%s'", _(msgid
),
3284 IDENTIFIER_POINTER (DECL_NAME (arg
)));
3286 pedwarn ("%s of read-only location", _(msgid
));
3289 /* Mark EXP saying that we need to be able to take the
3290 address of it; it should not be allocated in a register.
3291 Returns true if successful. */
3294 c_mark_addressable (exp
)
3300 switch (TREE_CODE (x
))
3303 if (DECL_C_BIT_FIELD (TREE_OPERAND (x
, 1)))
3305 error ("cannot take address of bit-field `%s'",
3306 IDENTIFIER_POINTER (DECL_NAME (TREE_OPERAND (x
, 1))));
3310 /* ... fall through ... */
3316 x
= TREE_OPERAND (x
, 0);
3319 case COMPOUND_LITERAL_EXPR
:
3321 TREE_ADDRESSABLE (x
) = 1;
3328 if (DECL_REGISTER (x
) && !TREE_ADDRESSABLE (x
)
3329 && DECL_NONLOCAL (x
))
3331 if (TREE_PUBLIC (x
))
3333 error ("global register variable `%s' used in nested function",
3334 IDENTIFIER_POINTER (DECL_NAME (x
)));
3337 pedwarn ("register variable `%s' used in nested function",
3338 IDENTIFIER_POINTER (DECL_NAME (x
)));
3340 else if (DECL_REGISTER (x
) && !TREE_ADDRESSABLE (x
))
3342 if (TREE_PUBLIC (x
))
3344 error ("address of global register variable `%s' requested",
3345 IDENTIFIER_POINTER (DECL_NAME (x
)));
3349 /* If we are making this addressable due to its having
3350 volatile components, give a different error message. Also
3351 handle the case of an unnamed parameter by not trying
3352 to give the name. */
3354 else if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (x
)))
3356 error ("cannot put object with volatile field into register");
3360 pedwarn ("address of register variable `%s' requested",
3361 IDENTIFIER_POINTER (DECL_NAME (x
)));
3363 put_var_into_stack (x
);
3367 TREE_ADDRESSABLE (x
) = 1;
3368 #if 0 /* poplevel deals with this now. */
3369 if (DECL_CONTEXT (x
) == 0)
3370 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (x
)) = 1;
3378 /* Build and return a conditional expression IFEXP ? OP1 : OP2. */
3381 build_conditional_expr (ifexp
, op1
, op2
)
3382 tree ifexp
, op1
, op2
;
3386 enum tree_code code1
;
3387 enum tree_code code2
;
3388 tree result_type
= NULL
;
3389 tree orig_op1
= op1
, orig_op2
= op2
;
3391 ifexp
= c_common_truthvalue_conversion (default_conversion (ifexp
));
3393 #if 0 /* Produces wrong result if within sizeof. */
3394 /* Don't promote the operands separately if they promote
3395 the same way. Return the unpromoted type and let the combined
3396 value get promoted if necessary. */
3398 if (TREE_TYPE (op1
) == TREE_TYPE (op2
)
3399 && TREE_CODE (TREE_TYPE (op1
)) != ARRAY_TYPE
3400 && TREE_CODE (TREE_TYPE (op1
)) != ENUMERAL_TYPE
3401 && TREE_CODE (TREE_TYPE (op1
)) != FUNCTION_TYPE
)
3403 if (TREE_CODE (ifexp
) == INTEGER_CST
)
3404 return pedantic_non_lvalue (integer_zerop (ifexp
) ? op2
: op1
);
3406 return fold (build (COND_EXPR
, TREE_TYPE (op1
), ifexp
, op1
, op2
));
3410 /* Promote both alternatives. */
3412 if (TREE_CODE (TREE_TYPE (op1
)) != VOID_TYPE
)
3413 op1
= default_conversion (op1
);
3414 if (TREE_CODE (TREE_TYPE (op2
)) != VOID_TYPE
)
3415 op2
= default_conversion (op2
);
3417 if (TREE_CODE (ifexp
) == ERROR_MARK
3418 || TREE_CODE (TREE_TYPE (op1
)) == ERROR_MARK
3419 || TREE_CODE (TREE_TYPE (op2
)) == ERROR_MARK
)
3420 return error_mark_node
;
3422 type1
= TREE_TYPE (op1
);
3423 code1
= TREE_CODE (type1
);
3424 type2
= TREE_TYPE (op2
);
3425 code2
= TREE_CODE (type2
);
3427 /* Quickly detect the usual case where op1 and op2 have the same type
3429 if (TYPE_MAIN_VARIANT (type1
) == TYPE_MAIN_VARIANT (type2
))
3432 result_type
= type1
;
3434 result_type
= TYPE_MAIN_VARIANT (type1
);
3436 else if ((code1
== INTEGER_TYPE
|| code1
== REAL_TYPE
3437 || code1
== COMPLEX_TYPE
)
3438 && (code2
== INTEGER_TYPE
|| code2
== REAL_TYPE
3439 || code2
== COMPLEX_TYPE
))
3441 result_type
= common_type (type1
, type2
);
3443 /* If -Wsign-compare, warn here if type1 and type2 have
3444 different signedness. We'll promote the signed to unsigned
3445 and later code won't know it used to be different.
3446 Do this check on the original types, so that explicit casts
3447 will be considered, but default promotions won't. */
3448 if ((warn_sign_compare
< 0 ? extra_warnings
: warn_sign_compare
)
3449 && !skip_evaluation
)
3451 int unsigned_op1
= TREE_UNSIGNED (TREE_TYPE (orig_op1
));
3452 int unsigned_op2
= TREE_UNSIGNED (TREE_TYPE (orig_op2
));
3454 if (unsigned_op1
^ unsigned_op2
)
3456 /* Do not warn if the result type is signed, since the
3457 signed type will only be chosen if it can represent
3458 all the values of the unsigned type. */
3459 if (! TREE_UNSIGNED (result_type
))
3461 /* Do not warn if the signed quantity is an unsuffixed
3462 integer literal (or some static constant expression
3463 involving such literals) and it is non-negative. */
3464 else if ((unsigned_op2
&& tree_expr_nonnegative_p (op1
))
3465 || (unsigned_op1
&& tree_expr_nonnegative_p (op2
)))
3468 warning ("signed and unsigned type in conditional expression");
3472 else if (code1
== VOID_TYPE
|| code2
== VOID_TYPE
)
3474 if (pedantic
&& (code1
!= VOID_TYPE
|| code2
!= VOID_TYPE
))
3475 pedwarn ("ISO C forbids conditional expr with only one void side");
3476 result_type
= void_type_node
;
3478 else if (code1
== POINTER_TYPE
&& code2
== POINTER_TYPE
)
3480 if (comp_target_types (type1
, type2
))
3481 result_type
= common_type (type1
, type2
);
3482 else if (integer_zerop (op1
) && TREE_TYPE (type1
) == void_type_node
3483 && TREE_CODE (orig_op1
) != NOP_EXPR
)
3484 result_type
= qualify_type (type2
, type1
);
3485 else if (integer_zerop (op2
) && TREE_TYPE (type2
) == void_type_node
3486 && TREE_CODE (orig_op2
) != NOP_EXPR
)
3487 result_type
= qualify_type (type1
, type2
);
3488 else if (VOID_TYPE_P (TREE_TYPE (type1
)))
3490 if (pedantic
&& TREE_CODE (TREE_TYPE (type2
)) == FUNCTION_TYPE
)
3491 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
3492 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type1
),
3493 TREE_TYPE (type2
)));
3495 else if (VOID_TYPE_P (TREE_TYPE (type2
)))
3497 if (pedantic
&& TREE_CODE (TREE_TYPE (type1
)) == FUNCTION_TYPE
)
3498 pedwarn ("ISO C forbids conditional expr between `void *' and function pointer");
3499 result_type
= build_pointer_type (qualify_type (TREE_TYPE (type2
),
3500 TREE_TYPE (type1
)));
3504 pedwarn ("pointer type mismatch in conditional expression");
3505 result_type
= build_pointer_type (void_type_node
);
3508 else if (code1
== POINTER_TYPE
&& code2
== INTEGER_TYPE
)
3510 if (! integer_zerop (op2
))
3511 pedwarn ("pointer/integer type mismatch in conditional expression");
3514 op2
= null_pointer_node
;
3516 result_type
= type1
;
3518 else if (code2
== POINTER_TYPE
&& code1
== INTEGER_TYPE
)
3520 if (!integer_zerop (op1
))
3521 pedwarn ("pointer/integer type mismatch in conditional expression");
3524 op1
= null_pointer_node
;
3526 result_type
= type2
;
3531 if (flag_cond_mismatch
)
3532 result_type
= void_type_node
;
3535 error ("type mismatch in conditional expression");
3536 return error_mark_node
;
3540 /* Merge const and volatile flags of the incoming types. */
3542 = build_type_variant (result_type
,
3543 TREE_READONLY (op1
) || TREE_READONLY (op2
),
3544 TREE_THIS_VOLATILE (op1
) || TREE_THIS_VOLATILE (op2
));
3546 if (result_type
!= TREE_TYPE (op1
))
3547 op1
= convert_and_check (result_type
, op1
);
3548 if (result_type
!= TREE_TYPE (op2
))
3549 op2
= convert_and_check (result_type
, op2
);
3551 if (TREE_CODE (ifexp
) == INTEGER_CST
)
3552 return pedantic_non_lvalue (integer_zerop (ifexp
) ? op2
: op1
);
3554 return fold (build (COND_EXPR
, result_type
, ifexp
, op1
, op2
));
3557 /* Given a list of expressions, return a compound expression
3558 that performs them all and returns the value of the last of them. */
3561 build_compound_expr (list
)
3564 return internal_build_compound_expr (list
, TRUE
);
3568 internal_build_compound_expr (list
, first_p
)
3574 if (TREE_CHAIN (list
) == 0)
3576 /* Convert arrays and functions to pointers when there
3577 really is a comma operator. */
3580 = default_function_array_conversion (TREE_VALUE (list
));
3582 #if 0 /* If something inside inhibited lvalueness, we should not override. */
3583 /* Consider (x, y+0), which is not an lvalue since y+0 is not. */
3585 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3586 if (TREE_CODE (list
) == NON_LVALUE_EXPR
)
3587 list
= TREE_OPERAND (list
, 0);
3590 /* Don't let (0, 0) be null pointer constant. */
3591 if (!first_p
&& integer_zerop (TREE_VALUE (list
)))
3592 return non_lvalue (TREE_VALUE (list
));
3593 return TREE_VALUE (list
);
3596 rest
= internal_build_compound_expr (TREE_CHAIN (list
), FALSE
);
3598 if (! TREE_SIDE_EFFECTS (TREE_VALUE (list
)))
3600 /* The left-hand operand of a comma expression is like an expression
3601 statement: with -W or -Wunused, we should warn if it doesn't have
3602 any side-effects, unless it was explicitly cast to (void). */
3603 if ((extra_warnings
|| warn_unused_value
)
3604 && ! (TREE_CODE (TREE_VALUE (list
)) == CONVERT_EXPR
3605 && VOID_TYPE_P (TREE_TYPE (TREE_VALUE (list
)))))
3606 warning ("left-hand operand of comma expression has no effect");
3608 /* When pedantic, a compound expression can be neither an lvalue
3609 nor an integer constant expression. */
3614 /* With -Wunused, we should also warn if the left-hand operand does have
3615 side-effects, but computes a value which is not used. For example, in
3616 `foo() + bar(), baz()' the result of the `+' operator is not used,
3617 so we should issue a warning. */
3618 else if (warn_unused_value
)
3619 warn_if_unused_value (TREE_VALUE (list
));
3621 return build (COMPOUND_EXPR
, TREE_TYPE (rest
), TREE_VALUE (list
), rest
);
3624 /* Build an expression representing a cast to type TYPE of expression EXPR. */
3627 build_c_cast (type
, expr
)
3633 if (type
== error_mark_node
|| expr
== error_mark_node
)
3634 return error_mark_node
;
3635 type
= TYPE_MAIN_VARIANT (type
);
3638 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3639 if (TREE_CODE (value
) == NON_LVALUE_EXPR
)
3640 value
= TREE_OPERAND (value
, 0);
3643 if (TREE_CODE (type
) == ARRAY_TYPE
)
3645 error ("cast specifies array type");
3646 return error_mark_node
;
3649 if (TREE_CODE (type
) == FUNCTION_TYPE
)
3651 error ("cast specifies function type");
3652 return error_mark_node
;
3655 if (type
== TYPE_MAIN_VARIANT (TREE_TYPE (value
)))
3659 if (TREE_CODE (type
) == RECORD_TYPE
3660 || TREE_CODE (type
) == UNION_TYPE
)
3661 pedwarn ("ISO C forbids casting nonscalar to the same type");
3664 else if (TREE_CODE (type
) == UNION_TYPE
)
3667 value
= default_function_array_conversion (value
);
3669 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
3670 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (field
)),
3671 TYPE_MAIN_VARIANT (TREE_TYPE (value
))))
3680 pedwarn ("ISO C forbids casts to union type");
3681 if (TYPE_NAME (type
) != 0)
3683 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
3684 name
= IDENTIFIER_POINTER (TYPE_NAME (type
));
3686 name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
)));
3690 t
= digest_init (type
, build (CONSTRUCTOR
, type
, NULL_TREE
,
3691 build_tree_list (field
, value
)), 0);
3692 TREE_CONSTANT (t
) = TREE_CONSTANT (value
);
3695 error ("cast to union type from type not present in union");
3696 return error_mark_node
;
3702 /* If casting to void, avoid the error that would come
3703 from default_conversion in the case of a non-lvalue array. */
3704 if (type
== void_type_node
)
3705 return build1 (CONVERT_EXPR
, type
, value
);
3707 /* Convert functions and arrays to pointers,
3708 but don't convert any other types. */
3709 value
= default_function_array_conversion (value
);
3710 otype
= TREE_TYPE (value
);
3712 /* Optionally warn about potentially worrisome casts. */
3715 && TREE_CODE (type
) == POINTER_TYPE
3716 && TREE_CODE (otype
) == POINTER_TYPE
)
3718 tree in_type
= type
;
3719 tree in_otype
= otype
;
3723 /* Check that the qualifiers on IN_TYPE are a superset of
3724 the qualifiers of IN_OTYPE. The outermost level of
3725 POINTER_TYPE nodes is uninteresting and we stop as soon
3726 as we hit a non-POINTER_TYPE node on either type. */
3729 in_otype
= TREE_TYPE (in_otype
);
3730 in_type
= TREE_TYPE (in_type
);
3732 /* GNU C allows cv-qualified function types. 'const'
3733 means the function is very pure, 'volatile' means it
3734 can't return. We need to warn when such qualifiers
3735 are added, not when they're taken away. */
3736 if (TREE_CODE (in_otype
) == FUNCTION_TYPE
3737 && TREE_CODE (in_type
) == FUNCTION_TYPE
)
3738 added
|= (TYPE_QUALS (in_type
) & ~TYPE_QUALS (in_otype
));
3740 discarded
|= (TYPE_QUALS (in_otype
) & ~TYPE_QUALS (in_type
));
3742 while (TREE_CODE (in_type
) == POINTER_TYPE
3743 && TREE_CODE (in_otype
) == POINTER_TYPE
);
3746 warning ("cast adds new qualifiers to function type");
3749 /* There are qualifiers present in IN_OTYPE that are not
3750 present in IN_TYPE. */
3751 warning ("cast discards qualifiers from pointer target type");
3754 /* Warn about possible alignment problems. */
3755 if (STRICT_ALIGNMENT
&& warn_cast_align
3756 && TREE_CODE (type
) == POINTER_TYPE
3757 && TREE_CODE (otype
) == POINTER_TYPE
3758 && TREE_CODE (TREE_TYPE (otype
)) != VOID_TYPE
3759 && TREE_CODE (TREE_TYPE (otype
)) != FUNCTION_TYPE
3760 /* Don't warn about opaque types, where the actual alignment
3761 restriction is unknown. */
3762 && !((TREE_CODE (TREE_TYPE (otype
)) == UNION_TYPE
3763 || TREE_CODE (TREE_TYPE (otype
)) == RECORD_TYPE
)
3764 && TYPE_MODE (TREE_TYPE (otype
)) == VOIDmode
)
3765 && TYPE_ALIGN (TREE_TYPE (type
)) > TYPE_ALIGN (TREE_TYPE (otype
)))
3766 warning ("cast increases required alignment of target type");
3768 if (TREE_CODE (type
) == INTEGER_TYPE
3769 && TREE_CODE (otype
) == POINTER_TYPE
3770 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
)
3771 && !TREE_CONSTANT (value
))
3772 warning ("cast from pointer to integer of different size");
3774 if (warn_bad_function_cast
3775 && TREE_CODE (value
) == CALL_EXPR
3776 && TREE_CODE (type
) != TREE_CODE (otype
))
3777 warning ("cast does not match function type");
3779 if (TREE_CODE (type
) == POINTER_TYPE
3780 && TREE_CODE (otype
) == INTEGER_TYPE
3781 && TYPE_PRECISION (type
) != TYPE_PRECISION (otype
)
3782 /* Don't warn about converting any constant. */
3783 && !TREE_CONSTANT (value
))
3784 warning ("cast to pointer from integer of different size");
3787 value
= convert (type
, value
);
3789 /* Ignore any integer overflow caused by the cast. */
3790 if (TREE_CODE (value
) == INTEGER_CST
)
3792 TREE_OVERFLOW (value
) = TREE_OVERFLOW (ovalue
);
3793 TREE_CONSTANT_OVERFLOW (value
) = TREE_CONSTANT_OVERFLOW (ovalue
);
3797 /* Pedantically, don't let (void *) (FOO *) 0 be a null pointer constant. */
3798 if (pedantic
&& TREE_CODE (value
) == INTEGER_CST
3799 && TREE_CODE (expr
) == INTEGER_CST
3800 && TREE_CODE (TREE_TYPE (expr
)) != INTEGER_TYPE
)
3801 value
= non_lvalue (value
);
3803 /* If pedantic, don't let a cast be an lvalue. */
3804 if (value
== expr
&& pedantic
)
3805 value
= non_lvalue (value
);
3810 /* Interpret a cast of expression EXPR to type TYPE. */
3812 c_cast_expr (type
, expr
)
3815 int saved_wsp
= warn_strict_prototypes
;
3817 /* This avoids warnings about unprototyped casts on
3818 integers. E.g. "#define SIG_DFL (void(*)())0". */
3819 if (TREE_CODE (expr
) == INTEGER_CST
)
3820 warn_strict_prototypes
= 0;
3821 type
= groktypename (type
);
3822 warn_strict_prototypes
= saved_wsp
;
3824 return build_c_cast (type
, expr
);
3828 /* Build an assignment expression of lvalue LHS from value RHS.
3829 MODIFYCODE is the code for a binary operator that we use
3830 to combine the old value of LHS with RHS to get the new value.
3831 Or else MODIFYCODE is NOP_EXPR meaning do a simple assignment. */
3834 build_modify_expr (lhs
, modifycode
, rhs
)
3836 enum tree_code modifycode
;
3840 tree lhstype
= TREE_TYPE (lhs
);
3841 tree olhstype
= lhstype
;
3843 /* Types that aren't fully specified cannot be used in assignments. */
3844 lhs
= require_complete_type (lhs
);
3846 /* Avoid duplicate error messages from operands that had errors. */
3847 if (TREE_CODE (lhs
) == ERROR_MARK
|| TREE_CODE (rhs
) == ERROR_MARK
)
3848 return error_mark_node
;
3850 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
3851 /* Do not use STRIP_NOPS here. We do not want an enumerator
3852 whose value is 0 to count as a null pointer constant. */
3853 if (TREE_CODE (rhs
) == NON_LVALUE_EXPR
)
3854 rhs
= TREE_OPERAND (rhs
, 0);
3858 /* Handle control structure constructs used as "lvalues". */
3860 switch (TREE_CODE (lhs
))
3862 /* Handle (a, b) used as an "lvalue". */
3864 pedantic_lvalue_warning (COMPOUND_EXPR
);
3865 newrhs
= build_modify_expr (TREE_OPERAND (lhs
, 1), modifycode
, rhs
);
3866 if (TREE_CODE (newrhs
) == ERROR_MARK
)
3867 return error_mark_node
;
3868 return build (COMPOUND_EXPR
, lhstype
,
3869 TREE_OPERAND (lhs
, 0), newrhs
);
3871 /* Handle (a ? b : c) used as an "lvalue". */
3873 pedantic_lvalue_warning (COND_EXPR
);
3874 rhs
= save_expr (rhs
);
3876 /* Produce (a ? (b = rhs) : (c = rhs))
3877 except that the RHS goes through a save-expr
3878 so the code to compute it is only emitted once. */
3880 = build_conditional_expr (TREE_OPERAND (lhs
, 0),
3881 build_modify_expr (TREE_OPERAND (lhs
, 1),
3883 build_modify_expr (TREE_OPERAND (lhs
, 2),
3885 if (TREE_CODE (cond
) == ERROR_MARK
)
3887 /* Make sure the code to compute the rhs comes out
3888 before the split. */
3889 return build (COMPOUND_EXPR
, TREE_TYPE (lhs
),
3890 /* But cast it to void to avoid an "unused" error. */
3891 convert (void_type_node
, rhs
), cond
);
3897 /* If a binary op has been requested, combine the old LHS value with the RHS
3898 producing the value we should actually store into the LHS. */
3900 if (modifycode
!= NOP_EXPR
)
3902 lhs
= stabilize_reference (lhs
);
3903 newrhs
= build_binary_op (modifycode
, lhs
, rhs
, 1);
3906 /* Handle a cast used as an "lvalue".
3907 We have already performed any binary operator using the value as cast.
3908 Now convert the result to the cast type of the lhs,
3909 and then true type of the lhs and store it there;
3910 then convert result back to the cast type to be the value
3911 of the assignment. */
3913 switch (TREE_CODE (lhs
))
3918 case FIX_TRUNC_EXPR
:
3919 case FIX_FLOOR_EXPR
:
3920 case FIX_ROUND_EXPR
:
3922 newrhs
= default_function_array_conversion (newrhs
);
3924 tree inner_lhs
= TREE_OPERAND (lhs
, 0);
3926 result
= build_modify_expr (inner_lhs
, NOP_EXPR
,
3927 convert (TREE_TYPE (inner_lhs
),
3928 convert (lhstype
, newrhs
)));
3929 if (TREE_CODE (result
) == ERROR_MARK
)
3931 pedantic_lvalue_warning (CONVERT_EXPR
);
3932 return convert (TREE_TYPE (lhs
), result
);
3939 /* Now we have handled acceptable kinds of LHS that are not truly lvalues.
3940 Reject anything strange now. */
3942 if (!lvalue_or_else (lhs
, "invalid lvalue in assignment"))
3943 return error_mark_node
;
3945 /* Warn about storing in something that is `const'. */
3947 if (TREE_READONLY (lhs
) || TYPE_READONLY (lhstype
)
3948 || ((TREE_CODE (lhstype
) == RECORD_TYPE
3949 || TREE_CODE (lhstype
) == UNION_TYPE
)
3950 && C_TYPE_FIELDS_READONLY (lhstype
)))
3951 readonly_warning (lhs
, "assignment");
3953 /* If storing into a structure or union member,
3954 it has probably been given type `int'.
3955 Compute the type that would go with
3956 the actual amount of storage the member occupies. */
3958 if (TREE_CODE (lhs
) == COMPONENT_REF
3959 && (TREE_CODE (lhstype
) == INTEGER_TYPE
3960 || TREE_CODE (lhstype
) == BOOLEAN_TYPE
3961 || TREE_CODE (lhstype
) == REAL_TYPE
3962 || TREE_CODE (lhstype
) == ENUMERAL_TYPE
))
3963 lhstype
= TREE_TYPE (get_unwidened (lhs
, 0));
3965 /* If storing in a field that is in actuality a short or narrower than one,
3966 we must store in the field in its actual type. */
3968 if (lhstype
!= TREE_TYPE (lhs
))
3970 lhs
= copy_node (lhs
);
3971 TREE_TYPE (lhs
) = lhstype
;
3974 /* Convert new value to destination type. */
3976 newrhs
= convert_for_assignment (lhstype
, newrhs
, _("assignment"),
3977 NULL_TREE
, NULL_TREE
, 0);
3978 if (TREE_CODE (newrhs
) == ERROR_MARK
)
3979 return error_mark_node
;
3983 result
= build (MODIFY_EXPR
, lhstype
, lhs
, newrhs
);
3984 TREE_SIDE_EFFECTS (result
) = 1;
3986 /* If we got the LHS in a different type for storing in,
3987 convert the result back to the nominal type of LHS
3988 so that the value we return always has the same type
3989 as the LHS argument. */
3991 if (olhstype
== TREE_TYPE (result
))
3993 return convert_for_assignment (olhstype
, result
, _("assignment"),
3994 NULL_TREE
, NULL_TREE
, 0);
3997 /* Convert value RHS to type TYPE as preparation for an assignment
3998 to an lvalue of type TYPE.
3999 The real work of conversion is done by `convert'.
4000 The purpose of this function is to generate error messages
4001 for assignments that are not allowed in C.
4002 ERRTYPE is a string to use in error messages:
4003 "assignment", "return", etc. If it is null, this is parameter passing
4004 for a function call (and different error messages are output).
4006 FUNNAME is the name of the function being called,
4007 as an IDENTIFIER_NODE, or null.
4008 PARMNUM is the number of the argument, for printing in error messages. */
4011 convert_for_assignment (type
, rhs
, errtype
, fundecl
, funname
, parmnum
)
4013 const char *errtype
;
4014 tree fundecl
, funname
;
4017 enum tree_code codel
= TREE_CODE (type
);
4019 enum tree_code coder
;
4021 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4022 /* Do not use STRIP_NOPS here. We do not want an enumerator
4023 whose value is 0 to count as a null pointer constant. */
4024 if (TREE_CODE (rhs
) == NON_LVALUE_EXPR
)
4025 rhs
= TREE_OPERAND (rhs
, 0);
4027 if (TREE_CODE (TREE_TYPE (rhs
)) == ARRAY_TYPE
4028 || TREE_CODE (TREE_TYPE (rhs
)) == FUNCTION_TYPE
)
4029 rhs
= default_conversion (rhs
);
4030 else if (optimize
&& TREE_CODE (rhs
) == VAR_DECL
)
4031 rhs
= decl_constant_value_for_broken_optimization (rhs
);
4033 rhstype
= TREE_TYPE (rhs
);
4034 coder
= TREE_CODE (rhstype
);
4036 if (coder
== ERROR_MARK
)
4037 return error_mark_node
;
4039 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (rhstype
))
4041 overflow_warning (rhs
);
4042 /* Check for Objective-C protocols. This will issue a warning if
4043 there are protocol violations. No need to use the return value. */
4044 maybe_objc_comptypes (type
, rhstype
, 0);
4048 if (coder
== VOID_TYPE
)
4050 error ("void value not ignored as it ought to be");
4051 return error_mark_node
;
4053 /* A type converts to a reference to it.
4054 This code doesn't fully support references, it's just for the
4055 special case of va_start and va_copy. */
4056 if (codel
== REFERENCE_TYPE
4057 && comptypes (TREE_TYPE (type
), TREE_TYPE (rhs
)) == 1)
4059 if (!lvalue_p (rhs
))
4061 error ("cannot pass rvalue to reference parameter");
4062 return error_mark_node
;
4064 if (!c_mark_addressable (rhs
))
4065 return error_mark_node
;
4066 rhs
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (rhs
)), rhs
);
4068 /* We already know that these two types are compatible, but they
4069 may not be exactly identical. In fact, `TREE_TYPE (type)' is
4070 likely to be __builtin_va_list and `TREE_TYPE (rhs)' is
4071 likely to be va_list, a typedef to __builtin_va_list, which
4072 is different enough that it will cause problems later. */
4073 if (TREE_TYPE (TREE_TYPE (rhs
)) != TREE_TYPE (type
))
4074 rhs
= build1 (NOP_EXPR
, build_pointer_type (TREE_TYPE (type
)), rhs
);
4076 rhs
= build1 (NOP_EXPR
, type
, rhs
);
4079 /* Arithmetic types all interconvert, and enum is treated like int. */
4080 else if ((codel
== INTEGER_TYPE
|| codel
== REAL_TYPE
4081 || codel
== ENUMERAL_TYPE
|| codel
== COMPLEX_TYPE
4082 || codel
== BOOLEAN_TYPE
)
4083 && (coder
== INTEGER_TYPE
|| coder
== REAL_TYPE
4084 || coder
== ENUMERAL_TYPE
|| coder
== COMPLEX_TYPE
4085 || coder
== BOOLEAN_TYPE
))
4086 return convert_and_check (type
, rhs
);
4088 /* Conversion to a transparent union from its member types.
4089 This applies only to function arguments. */
4090 else if (codel
== UNION_TYPE
&& TYPE_TRANSPARENT_UNION (type
) && ! errtype
)
4093 tree marginal_memb_type
= 0;
4095 for (memb_types
= TYPE_FIELDS (type
); memb_types
;
4096 memb_types
= TREE_CHAIN (memb_types
))
4098 tree memb_type
= TREE_TYPE (memb_types
);
4100 if (comptypes (TYPE_MAIN_VARIANT (memb_type
),
4101 TYPE_MAIN_VARIANT (rhstype
)))
4104 if (TREE_CODE (memb_type
) != POINTER_TYPE
)
4107 if (coder
== POINTER_TYPE
)
4109 tree ttl
= TREE_TYPE (memb_type
);
4110 tree ttr
= TREE_TYPE (rhstype
);
4112 /* Any non-function converts to a [const][volatile] void *
4113 and vice versa; otherwise, targets must be the same.
4114 Meanwhile, the lhs target must have all the qualifiers of
4116 if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
4117 || comp_target_types (memb_type
, rhstype
))
4119 /* If this type won't generate any warnings, use it. */
4120 if (TYPE_QUALS (ttl
) == TYPE_QUALS (ttr
)
4121 || ((TREE_CODE (ttr
) == FUNCTION_TYPE
4122 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
4123 ? ((TYPE_QUALS (ttl
) | TYPE_QUALS (ttr
))
4124 == TYPE_QUALS (ttr
))
4125 : ((TYPE_QUALS (ttl
) | TYPE_QUALS (ttr
))
4126 == TYPE_QUALS (ttl
))))
4129 /* Keep looking for a better type, but remember this one. */
4130 if (! marginal_memb_type
)
4131 marginal_memb_type
= memb_type
;
4135 /* Can convert integer zero to any pointer type. */
4136 if (integer_zerop (rhs
)
4137 || (TREE_CODE (rhs
) == NOP_EXPR
4138 && integer_zerop (TREE_OPERAND (rhs
, 0))))
4140 rhs
= null_pointer_node
;
4145 if (memb_types
|| marginal_memb_type
)
4149 /* We have only a marginally acceptable member type;
4150 it needs a warning. */
4151 tree ttl
= TREE_TYPE (marginal_memb_type
);
4152 tree ttr
= TREE_TYPE (rhstype
);
4154 /* Const and volatile mean something different for function
4155 types, so the usual warnings are not appropriate. */
4156 if (TREE_CODE (ttr
) == FUNCTION_TYPE
4157 && TREE_CODE (ttl
) == FUNCTION_TYPE
)
4159 /* Because const and volatile on functions are
4160 restrictions that say the function will not do
4161 certain things, it is okay to use a const or volatile
4162 function where an ordinary one is wanted, but not
4164 if (TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
))
4165 warn_for_assignment ("%s makes qualified function pointer from unqualified",
4166 errtype
, funname
, parmnum
);
4168 else if (TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
))
4169 warn_for_assignment ("%s discards qualifiers from pointer target type",
4174 if (pedantic
&& ! DECL_IN_SYSTEM_HEADER (fundecl
))
4175 pedwarn ("ISO C prohibits argument conversion to union type");
4177 return build1 (NOP_EXPR
, type
, rhs
);
4181 /* Conversions among pointers */
4182 else if ((codel
== POINTER_TYPE
|| codel
== REFERENCE_TYPE
)
4183 && (coder
== codel
))
4185 tree ttl
= TREE_TYPE (type
);
4186 tree ttr
= TREE_TYPE (rhstype
);
4188 /* Any non-function converts to a [const][volatile] void *
4189 and vice versa; otherwise, targets must be the same.
4190 Meanwhile, the lhs target must have all the qualifiers of the rhs. */
4191 if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
4192 || comp_target_types (type
, rhstype
)
4193 || (c_common_unsigned_type (TYPE_MAIN_VARIANT (ttl
))
4194 == c_common_unsigned_type (TYPE_MAIN_VARIANT (ttr
))))
4197 && ((VOID_TYPE_P (ttl
) && TREE_CODE (ttr
) == FUNCTION_TYPE
)
4200 /* Check TREE_CODE to catch cases like (void *) (char *) 0
4201 which are not ANSI null ptr constants. */
4202 && (!integer_zerop (rhs
) || TREE_CODE (rhs
) == NOP_EXPR
)
4203 && TREE_CODE (ttl
) == FUNCTION_TYPE
)))
4204 warn_for_assignment ("ISO C forbids %s between function pointer and `void *'",
4205 errtype
, funname
, parmnum
);
4206 /* Const and volatile mean something different for function types,
4207 so the usual warnings are not appropriate. */
4208 else if (TREE_CODE (ttr
) != FUNCTION_TYPE
4209 && TREE_CODE (ttl
) != FUNCTION_TYPE
)
4211 if (TYPE_QUALS (ttr
) & ~TYPE_QUALS (ttl
))
4212 warn_for_assignment ("%s discards qualifiers from pointer target type",
4213 errtype
, funname
, parmnum
);
4214 /* If this is not a case of ignoring a mismatch in signedness,
4216 else if (VOID_TYPE_P (ttl
) || VOID_TYPE_P (ttr
)
4217 || comp_target_types (type
, rhstype
))
4219 /* If there is a mismatch, do warn. */
4221 warn_for_assignment ("pointer targets in %s differ in signedness",
4222 errtype
, funname
, parmnum
);
4224 else if (TREE_CODE (ttl
) == FUNCTION_TYPE
4225 && TREE_CODE (ttr
) == FUNCTION_TYPE
)
4227 /* Because const and volatile on functions are restrictions
4228 that say the function will not do certain things,
4229 it is okay to use a const or volatile function
4230 where an ordinary one is wanted, but not vice-versa. */
4231 if (TYPE_QUALS (ttl
) & ~TYPE_QUALS (ttr
))
4232 warn_for_assignment ("%s makes qualified function pointer from unqualified",
4233 errtype
, funname
, parmnum
);
4237 warn_for_assignment ("%s from incompatible pointer type",
4238 errtype
, funname
, parmnum
);
4239 return convert (type
, rhs
);
4241 else if (codel
== POINTER_TYPE
&& coder
== INTEGER_TYPE
)
4243 /* An explicit constant 0 can convert to a pointer,
4244 or one that results from arithmetic, even including
4245 a cast to integer type. */
4246 if (! (TREE_CODE (rhs
) == INTEGER_CST
&& integer_zerop (rhs
))
4248 ! (TREE_CODE (rhs
) == NOP_EXPR
4249 && TREE_CODE (TREE_TYPE (rhs
)) == INTEGER_TYPE
4250 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == INTEGER_CST
4251 && integer_zerop (TREE_OPERAND (rhs
, 0))))
4253 warn_for_assignment ("%s makes pointer from integer without a cast",
4254 errtype
, funname
, parmnum
);
4255 return convert (type
, rhs
);
4257 return null_pointer_node
;
4259 else if (codel
== INTEGER_TYPE
&& coder
== POINTER_TYPE
)
4261 warn_for_assignment ("%s makes integer from pointer without a cast",
4262 errtype
, funname
, parmnum
);
4263 return convert (type
, rhs
);
4265 else if (codel
== BOOLEAN_TYPE
&& coder
== POINTER_TYPE
)
4266 return convert (type
, rhs
);
4272 tree selector
= maybe_building_objc_message_expr ();
4274 if (selector
&& parmnum
> 2)
4275 error ("incompatible type for argument %d of `%s'",
4276 parmnum
- 2, IDENTIFIER_POINTER (selector
));
4278 error ("incompatible type for argument %d of `%s'",
4279 parmnum
, IDENTIFIER_POINTER (funname
));
4282 error ("incompatible type for argument %d of indirect function call",
4286 error ("incompatible types in %s", errtype
);
4288 return error_mark_node
;
4291 /* Convert VALUE for assignment into inlined parameter PARM. */
4294 c_convert_parm_for_inlining (parm
, value
, fn
)
4295 tree parm
, value
, fn
;
4299 /* If FN was prototyped, the value has been converted already
4300 in convert_arguments. */
4301 if (! value
|| TYPE_ARG_TYPES (TREE_TYPE (fn
)))
4304 type
= TREE_TYPE (parm
);
4305 ret
= convert_for_assignment (type
, value
,
4306 (char *) 0 /* arg passing */, fn
,
4308 if (PROMOTE_PROTOTYPES
4309 && INTEGRAL_TYPE_P (type
)
4310 && (TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
)))
4311 ret
= default_conversion (ret
);
4315 /* Print a warning using MSGID.
4316 It gets OPNAME as its one parameter.
4317 If OPNAME is null, it is replaced by "passing arg ARGNUM of `FUNCTION'".
4318 FUNCTION and ARGNUM are handled specially if we are building an
4319 Objective-C selector. */
4322 warn_for_assignment (msgid
, opname
, function
, argnum
)
4330 tree selector
= maybe_building_objc_message_expr ();
4333 if (selector
&& argnum
> 2)
4335 function
= selector
;
4340 /* Function name is known; supply it. */
4341 const char *const argstring
= _("passing arg %d of `%s'");
4342 new_opname
= (char *) alloca (IDENTIFIER_LENGTH (function
)
4343 + strlen (argstring
) + 1 + 25
4345 sprintf (new_opname
, argstring
, argnum
,
4346 IDENTIFIER_POINTER (function
));
4350 /* Function name unknown (call through ptr); just give arg number. */
4351 const char *const argnofun
= _("passing arg %d of pointer to function");
4352 new_opname
= (char *) alloca (strlen (argnofun
) + 1 + 25 /*%d*/ + 1);
4353 sprintf (new_opname
, argnofun
, argnum
);
4355 opname
= new_opname
;
4357 pedwarn (msgid
, opname
);
4360 /* If VALUE is a compound expr all of whose expressions are constant, then
4361 return its value. Otherwise, return error_mark_node.
4363 This is for handling COMPOUND_EXPRs as initializer elements
4364 which is allowed with a warning when -pedantic is specified. */
4367 valid_compound_expr_initializer (value
, endtype
)
4371 if (TREE_CODE (value
) == COMPOUND_EXPR
)
4373 if (valid_compound_expr_initializer (TREE_OPERAND (value
, 0), endtype
)
4375 return error_mark_node
;
4376 return valid_compound_expr_initializer (TREE_OPERAND (value
, 1),
4379 else if (! TREE_CONSTANT (value
)
4380 && ! initializer_constant_valid_p (value
, endtype
))
4381 return error_mark_node
;
4386 /* Perform appropriate conversions on the initial value of a variable,
4387 store it in the declaration DECL,
4388 and print any error messages that are appropriate.
4389 If the init is invalid, store an ERROR_MARK. */
4392 store_init_value (decl
, init
)
4397 /* If variable's type was invalidly declared, just ignore it. */
4399 type
= TREE_TYPE (decl
);
4400 if (TREE_CODE (type
) == ERROR_MARK
)
4403 /* Digest the specified initializer into an expression. */
4405 value
= digest_init (type
, init
, TREE_STATIC (decl
));
4407 /* Store the expression if valid; else report error. */
4410 /* Note that this is the only place we can detect the error
4411 in a case such as struct foo bar = (struct foo) { x, y };
4412 where there is one initial value which is a constructor expression. */
4413 if (value
== error_mark_node
)
4415 else if (TREE_STATIC (decl
) && ! TREE_CONSTANT (value
))
4417 error ("initializer for static variable is not constant");
4418 value
= error_mark_node
;
4420 else if (TREE_STATIC (decl
)
4421 && initializer_constant_valid_p (value
, TREE_TYPE (value
)) == 0)
4423 error ("initializer for static variable uses complicated arithmetic");
4424 value
= error_mark_node
;
4428 if (pedantic
&& TREE_CODE (value
) == CONSTRUCTOR
)
4430 if (! TREE_CONSTANT (value
))
4431 pedwarn ("aggregate initializer is not constant");
4432 else if (! TREE_STATIC (value
))
4433 pedwarn ("aggregate initializer uses complicated arithmetic");
4438 if (warn_traditional
&& !in_system_header
4439 && AGGREGATE_TYPE_P (TREE_TYPE (decl
)) && ! TREE_STATIC (decl
))
4440 warning ("traditional C rejects automatic aggregate initialization");
4442 DECL_INITIAL (decl
) = value
;
4444 /* ANSI wants warnings about out-of-range constant initializers. */
4445 STRIP_TYPE_NOPS (value
);
4446 constant_expression_warning (value
);
4448 /* Check if we need to set array size from compound literal size. */
4449 if (TREE_CODE (type
) == ARRAY_TYPE
4450 && TYPE_DOMAIN (type
) == 0
4451 && value
!= error_mark_node
)
4453 tree inside_init
= init
;
4455 if (TREE_CODE (init
) == NON_LVALUE_EXPR
)
4456 inside_init
= TREE_OPERAND (init
, 0);
4457 inside_init
= fold (inside_init
);
4459 if (TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
4461 tree decl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
4463 if (TYPE_DOMAIN (TREE_TYPE (decl
)))
4465 /* For int foo[] = (int [3]){1}; we need to set array size
4466 now since later on array initializer will be just the
4467 brace enclosed list of the compound literal. */
4468 TYPE_DOMAIN (type
) = TYPE_DOMAIN (TREE_TYPE (decl
));
4470 layout_decl (decl
, 0);
4476 /* Methods for storing and printing names for error messages. */
4478 /* Implement a spelling stack that allows components of a name to be pushed
4479 and popped. Each element on the stack is this structure. */
4491 #define SPELLING_STRING 1
4492 #define SPELLING_MEMBER 2
4493 #define SPELLING_BOUNDS 3
4495 static struct spelling
*spelling
; /* Next stack element (unused). */
4496 static struct spelling
*spelling_base
; /* Spelling stack base. */
4497 static int spelling_size
; /* Size of the spelling stack. */
4499 /* Macros to save and restore the spelling stack around push_... functions.
4500 Alternative to SAVE_SPELLING_STACK. */
4502 #define SPELLING_DEPTH() (spelling - spelling_base)
4503 #define RESTORE_SPELLING_DEPTH(DEPTH) (spelling = spelling_base + (DEPTH))
4505 /* Save and restore the spelling stack around arbitrary C code. */
4507 #define SAVE_SPELLING_DEPTH(code) \
4509 int __depth = SPELLING_DEPTH (); \
4511 RESTORE_SPELLING_DEPTH (__depth); \
4514 /* Push an element on the spelling stack with type KIND and assign VALUE
4517 #define PUSH_SPELLING(KIND, VALUE, MEMBER) \
4519 int depth = SPELLING_DEPTH (); \
4521 if (depth >= spelling_size) \
4523 spelling_size += 10; \
4524 if (spelling_base == 0) \
4526 = (struct spelling *) xmalloc (spelling_size * sizeof (struct spelling)); \
4529 = (struct spelling *) xrealloc (spelling_base, \
4530 spelling_size * sizeof (struct spelling)); \
4531 RESTORE_SPELLING_DEPTH (depth); \
4534 spelling->kind = (KIND); \
4535 spelling->MEMBER = (VALUE); \
4539 /* Push STRING on the stack. Printed literally. */
4542 push_string (string
)
4545 PUSH_SPELLING (SPELLING_STRING
, string
, u
.s
);
4548 /* Push a member name on the stack. Printed as '.' STRING. */
4551 push_member_name (decl
)
4555 const char *const string
4556 = DECL_NAME (decl
) ? IDENTIFIER_POINTER (DECL_NAME (decl
)) : "<anonymous>";
4557 PUSH_SPELLING (SPELLING_MEMBER
, string
, u
.s
);
4560 /* Push an array bounds on the stack. Printed as [BOUNDS]. */
4563 push_array_bounds (bounds
)
4566 PUSH_SPELLING (SPELLING_BOUNDS
, bounds
, u
.i
);
4569 /* Compute the maximum size in bytes of the printed spelling. */
4577 for (p
= spelling_base
; p
< spelling
; p
++)
4579 if (p
->kind
== SPELLING_BOUNDS
)
4582 size
+= strlen (p
->u
.s
) + 1;
4588 /* Print the spelling to BUFFER and return it. */
4591 print_spelling (buffer
)
4597 for (p
= spelling_base
; p
< spelling
; p
++)
4598 if (p
->kind
== SPELLING_BOUNDS
)
4600 sprintf (d
, "[%d]", p
->u
.i
);
4606 if (p
->kind
== SPELLING_MEMBER
)
4608 for (s
= p
->u
.s
; (*d
= *s
++); d
++)
4615 /* Issue an error message for a bad initializer component.
4616 MSGID identifies the message.
4617 The component name is taken from the spelling stack. */
4625 error ("%s", _(msgid
));
4626 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
4628 error ("(near initialization for `%s')", ofwhat
);
4631 /* Issue a pedantic warning for a bad initializer component.
4632 MSGID identifies the message.
4633 The component name is taken from the spelling stack. */
4636 pedwarn_init (msgid
)
4641 pedwarn ("%s", _(msgid
));
4642 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
4644 pedwarn ("(near initialization for `%s')", ofwhat
);
4647 /* Issue a warning for a bad initializer component.
4648 MSGID identifies the message.
4649 The component name is taken from the spelling stack. */
4652 warning_init (msgid
)
4657 warning ("%s", _(msgid
));
4658 ofwhat
= print_spelling ((char *) alloca (spelling_length () + 1));
4660 warning ("(near initialization for `%s')", ofwhat
);
4663 /* Digest the parser output INIT as an initializer for type TYPE.
4664 Return a C expression of type TYPE to represent the initial value.
4666 REQUIRE_CONSTANT requests an error if non-constant initializers or
4667 elements are seen. */
4670 digest_init (type
, init
, require_constant
)
4672 int require_constant
;
4674 enum tree_code code
= TREE_CODE (type
);
4675 tree inside_init
= init
;
4677 if (type
== error_mark_node
4678 || init
== error_mark_node
4679 || TREE_TYPE (init
) == error_mark_node
)
4680 return error_mark_node
;
4682 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4683 /* Do not use STRIP_NOPS here. We do not want an enumerator
4684 whose value is 0 to count as a null pointer constant. */
4685 if (TREE_CODE (init
) == NON_LVALUE_EXPR
)
4686 inside_init
= TREE_OPERAND (init
, 0);
4688 inside_init
= fold (inside_init
);
4690 /* Initialization of an array of chars from a string constant
4691 optionally enclosed in braces. */
4693 if (code
== ARRAY_TYPE
)
4695 tree typ1
= TYPE_MAIN_VARIANT (TREE_TYPE (type
));
4696 if ((typ1
== char_type_node
4697 || typ1
== signed_char_type_node
4698 || typ1
== unsigned_char_type_node
4699 || typ1
== unsigned_wchar_type_node
4700 || typ1
== signed_wchar_type_node
)
4701 && ((inside_init
&& TREE_CODE (inside_init
) == STRING_CST
)))
4703 if (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
4704 TYPE_MAIN_VARIANT (type
)))
4707 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init
)))
4709 && TYPE_PRECISION (typ1
) == TYPE_PRECISION (char_type_node
))
4711 error_init ("char-array initialized from wide string");
4712 return error_mark_node
;
4714 if ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (inside_init
)))
4716 && TYPE_PRECISION (typ1
) != TYPE_PRECISION (char_type_node
))
4718 error_init ("int-array initialized from non-wide string");
4719 return error_mark_node
;
4722 TREE_TYPE (inside_init
) = type
;
4723 if (TYPE_DOMAIN (type
) != 0
4724 && TYPE_SIZE (type
) != 0
4725 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
4726 /* Subtract 1 (or sizeof (wchar_t))
4727 because it's ok to ignore the terminating null char
4728 that is counted in the length of the constant. */
4729 && 0 > compare_tree_int (TYPE_SIZE_UNIT (type
),
4730 TREE_STRING_LENGTH (inside_init
)
4731 - ((TYPE_PRECISION (typ1
)
4732 != TYPE_PRECISION (char_type_node
))
4733 ? (TYPE_PRECISION (wchar_type_node
)
4736 pedwarn_init ("initializer-string for array of chars is too long");
4742 /* Any type can be initialized
4743 from an expression of the same type, optionally with braces. */
4745 if (inside_init
&& TREE_TYPE (inside_init
) != 0
4746 && (comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (inside_init
)),
4747 TYPE_MAIN_VARIANT (type
))
4748 || (code
== ARRAY_TYPE
4749 && comptypes (TREE_TYPE (inside_init
), type
))
4750 || (code
== VECTOR_TYPE
4751 && comptypes (TREE_TYPE (inside_init
), type
))
4752 || (code
== POINTER_TYPE
4753 && (TREE_CODE (TREE_TYPE (inside_init
)) == ARRAY_TYPE
4754 || TREE_CODE (TREE_TYPE (inside_init
)) == FUNCTION_TYPE
)
4755 && comptypes (TREE_TYPE (TREE_TYPE (inside_init
)),
4756 TREE_TYPE (type
)))))
4758 if (code
== POINTER_TYPE
)
4759 inside_init
= default_function_array_conversion (inside_init
);
4761 if (require_constant
&& !flag_isoc99
4762 && TREE_CODE (inside_init
) == COMPOUND_LITERAL_EXPR
)
4764 /* As an extension, allow initializing objects with static storage
4765 duration with compound literals (which are then treated just as
4766 the brace enclosed list they contain). */
4767 tree decl
= COMPOUND_LITERAL_EXPR_DECL (inside_init
);
4768 inside_init
= DECL_INITIAL (decl
);
4771 if (code
== ARRAY_TYPE
&& TREE_CODE (inside_init
) != STRING_CST
4772 && TREE_CODE (inside_init
) != CONSTRUCTOR
)
4774 error_init ("array initialized from non-constant array expression");
4775 return error_mark_node
;
4778 if (optimize
&& TREE_CODE (inside_init
) == VAR_DECL
)
4779 inside_init
= decl_constant_value_for_broken_optimization (inside_init
);
4781 /* Compound expressions can only occur here if -pedantic or
4782 -pedantic-errors is specified. In the later case, we always want
4783 an error. In the former case, we simply want a warning. */
4784 if (require_constant
&& pedantic
4785 && TREE_CODE (inside_init
) == COMPOUND_EXPR
)
4788 = valid_compound_expr_initializer (inside_init
,
4789 TREE_TYPE (inside_init
));
4790 if (inside_init
== error_mark_node
)
4791 error_init ("initializer element is not constant");
4793 pedwarn_init ("initializer element is not constant");
4794 if (flag_pedantic_errors
)
4795 inside_init
= error_mark_node
;
4797 else if (require_constant
4798 && (!TREE_CONSTANT (inside_init
)
4799 /* This test catches things like `7 / 0' which
4800 result in an expression for which TREE_CONSTANT
4801 is true, but which is not actually something
4802 that is a legal constant. We really should not
4803 be using this function, because it is a part of
4804 the back-end. Instead, the expression should
4805 already have been turned into ERROR_MARK_NODE. */
4806 || !initializer_constant_valid_p (inside_init
,
4807 TREE_TYPE (inside_init
))))
4809 error_init ("initializer element is not constant");
4810 inside_init
= error_mark_node
;
4816 /* Handle scalar types, including conversions. */
4818 if (code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== POINTER_TYPE
4819 || code
== ENUMERAL_TYPE
|| code
== BOOLEAN_TYPE
|| code
== COMPLEX_TYPE
)
4821 /* Note that convert_for_assignment calls default_conversion
4822 for arrays and functions. We must not call it in the
4823 case where inside_init is a null pointer constant. */
4825 = convert_for_assignment (type
, init
, _("initialization"),
4826 NULL_TREE
, NULL_TREE
, 0);
4828 if (require_constant
&& ! TREE_CONSTANT (inside_init
))
4830 error_init ("initializer element is not constant");
4831 inside_init
= error_mark_node
;
4833 else if (require_constant
4834 && initializer_constant_valid_p (inside_init
, TREE_TYPE (inside_init
)) == 0)
4836 error_init ("initializer element is not computable at load time");
4837 inside_init
= error_mark_node
;
4843 /* Come here only for records and arrays. */
4845 if (COMPLETE_TYPE_P (type
) && TREE_CODE (TYPE_SIZE (type
)) != INTEGER_CST
)
4847 error_init ("variable-sized object may not be initialized");
4848 return error_mark_node
;
4851 error_init ("invalid initializer");
4852 return error_mark_node
;
4855 /* Handle initializers that use braces. */
4857 /* Type of object we are accumulating a constructor for.
4858 This type is always a RECORD_TYPE, UNION_TYPE or ARRAY_TYPE. */
4859 static tree constructor_type
;
4861 /* For a RECORD_TYPE or UNION_TYPE, this is the chain of fields
4863 static tree constructor_fields
;
4865 /* For an ARRAY_TYPE, this is the specified index
4866 at which to store the next element we get. */
4867 static tree constructor_index
;
4869 /* For an ARRAY_TYPE, this is the maximum index. */
4870 static tree constructor_max_index
;
4872 /* For a RECORD_TYPE, this is the first field not yet written out. */
4873 static tree constructor_unfilled_fields
;
4875 /* For an ARRAY_TYPE, this is the index of the first element
4876 not yet written out. */
4877 static tree constructor_unfilled_index
;
4879 /* In a RECORD_TYPE, the byte index of the next consecutive field.
4880 This is so we can generate gaps between fields, when appropriate. */
4881 static tree constructor_bit_index
;
4883 /* If we are saving up the elements rather than allocating them,
4884 this is the list of elements so far (in reverse order,
4885 most recent first). */
4886 static tree constructor_elements
;
4888 /* 1 if constructor should be incrementally stored into a constructor chain,
4889 0 if all the elements should be kept in AVL tree. */
4890 static int constructor_incremental
;
4892 /* 1 if so far this constructor's elements are all compile-time constants. */
4893 static int constructor_constant
;
4895 /* 1 if so far this constructor's elements are all valid address constants. */
4896 static int constructor_simple
;
4898 /* 1 if this constructor is erroneous so far. */
4899 static int constructor_erroneous
;
4901 /* 1 if have called defer_addressed_constants. */
4902 static int constructor_subconstants_deferred
;
4904 /* Structure for managing pending initializer elements, organized as an
4909 struct init_node
*left
, *right
;
4910 struct init_node
*parent
;
4916 /* Tree of pending elements at this constructor level.
4917 These are elements encountered out of order
4918 which belong at places we haven't reached yet in actually
4920 Will never hold tree nodes across GC runs. */
4921 static struct init_node
*constructor_pending_elts
;
4923 /* The SPELLING_DEPTH of this constructor. */
4924 static int constructor_depth
;
4926 /* 0 if implicitly pushing constructor levels is allowed. */
4927 int constructor_no_implicit
= 0; /* 0 for C; 1 for some other languages. */
4929 static int require_constant_value
;
4930 static int require_constant_elements
;
4932 /* DECL node for which an initializer is being read.
4933 0 means we are reading a constructor expression
4934 such as (struct foo) {...}. */
4935 static tree constructor_decl
;
4937 /* start_init saves the ASMSPEC arg here for really_start_incremental_init. */
4938 static const char *constructor_asmspec
;
4940 /* Nonzero if this is an initializer for a top-level decl. */
4941 static int constructor_top_level
;
4943 /* Nonzero if there were any member designators in this initializer. */
4944 static int constructor_designated
;
4946 /* Nesting depth of designator list. */
4947 static int designator_depth
;
4949 /* Nonzero if there were diagnosed errors in this designator list. */
4950 static int designator_errorneous
;
4953 /* This stack has a level for each implicit or explicit level of
4954 structuring in the initializer, including the outermost one. It
4955 saves the values of most of the variables above. */
4957 struct constructor_range_stack
;
4959 struct constructor_stack
4961 struct constructor_stack
*next
;
4966 tree unfilled_index
;
4967 tree unfilled_fields
;
4970 struct init_node
*pending_elts
;
4973 /* If nonzero, this value should replace the entire
4974 constructor at this level. */
4975 tree replacement_value
;
4976 struct constructor_range_stack
*range_stack
;
4986 struct constructor_stack
*constructor_stack
;
4988 /* This stack represents designators from some range designator up to
4989 the last designator in the list. */
4991 struct constructor_range_stack
4993 struct constructor_range_stack
*next
, *prev
;
4994 struct constructor_stack
*stack
;
5001 struct constructor_range_stack
*constructor_range_stack
;
5003 /* This stack records separate initializers that are nested.
5004 Nested initializers can't happen in ANSI C, but GNU C allows them
5005 in cases like { ... (struct foo) { ... } ... }. */
5007 struct initializer_stack
5009 struct initializer_stack
*next
;
5011 const char *asmspec
;
5012 struct constructor_stack
*constructor_stack
;
5013 struct constructor_range_stack
*constructor_range_stack
;
5015 struct spelling
*spelling
;
5016 struct spelling
*spelling_base
;
5019 char require_constant_value
;
5020 char require_constant_elements
;
5024 struct initializer_stack
*initializer_stack
;
5026 /* Prepare to parse and output the initializer for variable DECL. */
5029 start_init (decl
, asmspec_tree
, top_level
)
5035 struct initializer_stack
*p
5036 = (struct initializer_stack
*) xmalloc (sizeof (struct initializer_stack
));
5037 const char *asmspec
= 0;
5040 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
5042 p
->decl
= constructor_decl
;
5043 p
->asmspec
= constructor_asmspec
;
5044 p
->require_constant_value
= require_constant_value
;
5045 p
->require_constant_elements
= require_constant_elements
;
5046 p
->constructor_stack
= constructor_stack
;
5047 p
->constructor_range_stack
= constructor_range_stack
;
5048 p
->elements
= constructor_elements
;
5049 p
->spelling
= spelling
;
5050 p
->spelling_base
= spelling_base
;
5051 p
->spelling_size
= spelling_size
;
5052 p
->deferred
= constructor_subconstants_deferred
;
5053 p
->top_level
= constructor_top_level
;
5054 p
->next
= initializer_stack
;
5055 initializer_stack
= p
;
5057 constructor_decl
= decl
;
5058 constructor_asmspec
= asmspec
;
5059 constructor_subconstants_deferred
= 0;
5060 constructor_designated
= 0;
5061 constructor_top_level
= top_level
;
5065 require_constant_value
= TREE_STATIC (decl
);
5066 require_constant_elements
5067 = ((TREE_STATIC (decl
) || (pedantic
&& !flag_isoc99
))
5068 /* For a scalar, you can always use any value to initialize,
5069 even within braces. */
5070 && (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
5071 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
5072 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
5073 || TREE_CODE (TREE_TYPE (decl
)) == QUAL_UNION_TYPE
));
5074 locus
= IDENTIFIER_POINTER (DECL_NAME (decl
));
5078 require_constant_value
= 0;
5079 require_constant_elements
= 0;
5080 locus
= "(anonymous)";
5083 constructor_stack
= 0;
5084 constructor_range_stack
= 0;
5086 missing_braces_mentioned
= 0;
5090 RESTORE_SPELLING_DEPTH (0);
5093 push_string (locus
);
5099 struct initializer_stack
*p
= initializer_stack
;
5101 /* Output subconstants (string constants, usually)
5102 that were referenced within this initializer and saved up.
5103 Must do this if and only if we called defer_addressed_constants. */
5104 if (constructor_subconstants_deferred
)
5105 output_deferred_addressed_constants ();
5107 /* Free the whole constructor stack of this initializer. */
5108 while (constructor_stack
)
5110 struct constructor_stack
*q
= constructor_stack
;
5111 constructor_stack
= q
->next
;
5115 if (constructor_range_stack
)
5118 /* Pop back to the data of the outer initializer (if any). */
5119 constructor_decl
= p
->decl
;
5120 constructor_asmspec
= p
->asmspec
;
5121 require_constant_value
= p
->require_constant_value
;
5122 require_constant_elements
= p
->require_constant_elements
;
5123 constructor_stack
= p
->constructor_stack
;
5124 constructor_range_stack
= p
->constructor_range_stack
;
5125 constructor_elements
= p
->elements
;
5126 spelling
= p
->spelling
;
5127 spelling_base
= p
->spelling_base
;
5128 spelling_size
= p
->spelling_size
;
5129 constructor_subconstants_deferred
= p
->deferred
;
5130 constructor_top_level
= p
->top_level
;
5131 initializer_stack
= p
->next
;
5135 /* Call here when we see the initializer is surrounded by braces.
5136 This is instead of a call to push_init_level;
5137 it is matched by a call to pop_init_level.
5139 TYPE is the type to initialize, for a constructor expression.
5140 For an initializer for a decl, TYPE is zero. */
5143 really_start_incremental_init (type
)
5146 struct constructor_stack
*p
5147 = (struct constructor_stack
*) xmalloc (sizeof (struct constructor_stack
));
5150 type
= TREE_TYPE (constructor_decl
);
5152 p
->type
= constructor_type
;
5153 p
->fields
= constructor_fields
;
5154 p
->index
= constructor_index
;
5155 p
->max_index
= constructor_max_index
;
5156 p
->unfilled_index
= constructor_unfilled_index
;
5157 p
->unfilled_fields
= constructor_unfilled_fields
;
5158 p
->bit_index
= constructor_bit_index
;
5159 p
->elements
= constructor_elements
;
5160 p
->constant
= constructor_constant
;
5161 p
->simple
= constructor_simple
;
5162 p
->erroneous
= constructor_erroneous
;
5163 p
->pending_elts
= constructor_pending_elts
;
5164 p
->depth
= constructor_depth
;
5165 p
->replacement_value
= 0;
5169 p
->incremental
= constructor_incremental
;
5170 p
->designated
= constructor_designated
;
5172 constructor_stack
= p
;
5174 constructor_constant
= 1;
5175 constructor_simple
= 1;
5176 constructor_depth
= SPELLING_DEPTH ();
5177 constructor_elements
= 0;
5178 constructor_pending_elts
= 0;
5179 constructor_type
= type
;
5180 constructor_incremental
= 1;
5181 constructor_designated
= 0;
5182 designator_depth
= 0;
5183 designator_errorneous
= 0;
5185 if (TREE_CODE (constructor_type
) == RECORD_TYPE
5186 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5188 constructor_fields
= TYPE_FIELDS (constructor_type
);
5189 /* Skip any nameless bit fields at the beginning. */
5190 while (constructor_fields
!= 0 && DECL_C_BIT_FIELD (constructor_fields
)
5191 && DECL_NAME (constructor_fields
) == 0)
5192 constructor_fields
= TREE_CHAIN (constructor_fields
);
5194 constructor_unfilled_fields
= constructor_fields
;
5195 constructor_bit_index
= bitsize_zero_node
;
5197 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5199 if (TYPE_DOMAIN (constructor_type
))
5201 constructor_max_index
5202 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
5204 /* Detect non-empty initializations of zero-length arrays. */
5205 if (constructor_max_index
== NULL_TREE
5206 && TYPE_SIZE (constructor_type
))
5207 constructor_max_index
= build_int_2 (-1, -1);
5209 /* constructor_max_index needs to be an INTEGER_CST. Attempts
5210 to initialize VLAs will cause an proper error; avoid tree
5211 checking errors as well by setting a safe value. */
5212 if (constructor_max_index
5213 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
5214 constructor_max_index
= build_int_2 (-1, -1);
5217 = convert (bitsizetype
,
5218 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
5221 constructor_index
= bitsize_zero_node
;
5223 constructor_unfilled_index
= constructor_index
;
5225 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
5227 /* Vectors are like simple fixed-size arrays. */
5228 constructor_max_index
=
5229 build_int_2 (TYPE_VECTOR_SUBPARTS (constructor_type
) - 1, 0);
5230 constructor_index
= convert (bitsizetype
, bitsize_zero_node
);
5231 constructor_unfilled_index
= constructor_index
;
5235 /* Handle the case of int x = {5}; */
5236 constructor_fields
= constructor_type
;
5237 constructor_unfilled_fields
= constructor_type
;
5241 /* Push down into a subobject, for initialization.
5242 If this is for an explicit set of braces, IMPLICIT is 0.
5243 If it is because the next element belongs at a lower level,
5244 IMPLICIT is 1 (or 2 if the push is because of designator list). */
5247 push_init_level (implicit
)
5250 struct constructor_stack
*p
;
5251 tree value
= NULL_TREE
;
5253 /* If we've exhausted any levels that didn't have braces,
5255 while (constructor_stack
->implicit
)
5257 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
5258 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5259 && constructor_fields
== 0)
5260 process_init_element (pop_init_level (1));
5261 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
5262 && tree_int_cst_lt (constructor_max_index
, constructor_index
))
5263 process_init_element (pop_init_level (1));
5268 /* Unless this is an explicit brace, we need to preserve previous
5272 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
5273 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5274 && constructor_fields
)
5275 value
= find_init_member (constructor_fields
);
5276 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5277 value
= find_init_member (constructor_index
);
5280 p
= (struct constructor_stack
*) xmalloc (sizeof (struct constructor_stack
));
5281 p
->type
= constructor_type
;
5282 p
->fields
= constructor_fields
;
5283 p
->index
= constructor_index
;
5284 p
->max_index
= constructor_max_index
;
5285 p
->unfilled_index
= constructor_unfilled_index
;
5286 p
->unfilled_fields
= constructor_unfilled_fields
;
5287 p
->bit_index
= constructor_bit_index
;
5288 p
->elements
= constructor_elements
;
5289 p
->constant
= constructor_constant
;
5290 p
->simple
= constructor_simple
;
5291 p
->erroneous
= constructor_erroneous
;
5292 p
->pending_elts
= constructor_pending_elts
;
5293 p
->depth
= constructor_depth
;
5294 p
->replacement_value
= 0;
5295 p
->implicit
= implicit
;
5297 p
->incremental
= constructor_incremental
;
5298 p
->designated
= constructor_designated
;
5299 p
->next
= constructor_stack
;
5301 constructor_stack
= p
;
5303 constructor_constant
= 1;
5304 constructor_simple
= 1;
5305 constructor_depth
= SPELLING_DEPTH ();
5306 constructor_elements
= 0;
5307 constructor_incremental
= 1;
5308 constructor_designated
= 0;
5309 constructor_pending_elts
= 0;
5312 p
->range_stack
= constructor_range_stack
;
5313 constructor_range_stack
= 0;
5314 designator_depth
= 0;
5315 designator_errorneous
= 0;
5318 /* Don't die if an entire brace-pair level is superfluous
5319 in the containing level. */
5320 if (constructor_type
== 0)
5322 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
5323 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5325 /* Don't die if there are extra init elts at the end. */
5326 if (constructor_fields
== 0)
5327 constructor_type
= 0;
5330 constructor_type
= TREE_TYPE (constructor_fields
);
5331 push_member_name (constructor_fields
);
5332 constructor_depth
++;
5335 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5337 constructor_type
= TREE_TYPE (constructor_type
);
5338 push_array_bounds (tree_low_cst (constructor_index
, 0));
5339 constructor_depth
++;
5342 if (constructor_type
== 0)
5344 error_init ("extra brace group at end of initializer");
5345 constructor_fields
= 0;
5346 constructor_unfilled_fields
= 0;
5350 if (value
&& TREE_CODE (value
) == CONSTRUCTOR
)
5352 constructor_constant
= TREE_CONSTANT (value
);
5353 constructor_simple
= TREE_STATIC (value
);
5354 constructor_elements
= TREE_OPERAND (value
, 1);
5355 if (constructor_elements
5356 && (TREE_CODE (constructor_type
) == RECORD_TYPE
5357 || TREE_CODE (constructor_type
) == ARRAY_TYPE
))
5358 set_nonincremental_init ();
5361 if (implicit
== 1 && warn_missing_braces
&& !missing_braces_mentioned
)
5363 missing_braces_mentioned
= 1;
5364 warning_init ("missing braces around initializer");
5367 if (TREE_CODE (constructor_type
) == RECORD_TYPE
5368 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5370 constructor_fields
= TYPE_FIELDS (constructor_type
);
5371 /* Skip any nameless bit fields at the beginning. */
5372 while (constructor_fields
!= 0 && DECL_C_BIT_FIELD (constructor_fields
)
5373 && DECL_NAME (constructor_fields
) == 0)
5374 constructor_fields
= TREE_CHAIN (constructor_fields
);
5376 constructor_unfilled_fields
= constructor_fields
;
5377 constructor_bit_index
= bitsize_zero_node
;
5379 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
5381 /* Vectors are like simple fixed-size arrays. */
5382 constructor_max_index
=
5383 build_int_2 (TYPE_VECTOR_SUBPARTS (constructor_type
) - 1, 0);
5384 constructor_index
= convert (bitsizetype
, integer_zero_node
);
5385 constructor_unfilled_index
= constructor_index
;
5387 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5389 if (TYPE_DOMAIN (constructor_type
))
5391 constructor_max_index
5392 = TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
));
5394 /* Detect non-empty initializations of zero-length arrays. */
5395 if (constructor_max_index
== NULL_TREE
5396 && TYPE_SIZE (constructor_type
))
5397 constructor_max_index
= build_int_2 (-1, -1);
5399 /* constructor_max_index needs to be an INTEGER_CST. Attempts
5400 to initialize VLAs will cause an proper error; avoid tree
5401 checking errors as well by setting a safe value. */
5402 if (constructor_max_index
5403 && TREE_CODE (constructor_max_index
) != INTEGER_CST
)
5404 constructor_max_index
= build_int_2 (-1, -1);
5407 = convert (bitsizetype
,
5408 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
5411 constructor_index
= bitsize_zero_node
;
5413 constructor_unfilled_index
= constructor_index
;
5414 if (value
&& TREE_CODE (value
) == STRING_CST
)
5416 /* We need to split the char/wchar array into individual
5417 characters, so that we don't have to special case it
5419 set_nonincremental_init_from_string (value
);
5424 warning_init ("braces around scalar initializer");
5425 constructor_fields
= constructor_type
;
5426 constructor_unfilled_fields
= constructor_type
;
5430 /* At the end of an implicit or explicit brace level,
5431 finish up that level of constructor.
5432 If we were outputting the elements as they are read, return 0
5433 from inner levels (process_init_element ignores that),
5434 but return error_mark_node from the outermost level
5435 (that's what we want to put in DECL_INITIAL).
5436 Otherwise, return a CONSTRUCTOR expression. */
5439 pop_init_level (implicit
)
5442 struct constructor_stack
*p
;
5443 tree constructor
= 0;
5447 /* When we come to an explicit close brace,
5448 pop any inner levels that didn't have explicit braces. */
5449 while (constructor_stack
->implicit
)
5450 process_init_element (pop_init_level (1));
5452 if (constructor_range_stack
)
5456 p
= constructor_stack
;
5458 /* Error for initializing a flexible array member, or a zero-length
5459 array member in an inappropriate context. */
5460 if (constructor_type
&& constructor_fields
5461 && TREE_CODE (constructor_type
) == ARRAY_TYPE
5462 && TYPE_DOMAIN (constructor_type
)
5463 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (constructor_type
)))
5465 /* Silently discard empty initializations. The parser will
5466 already have pedwarned for empty brackets. */
5467 if (integer_zerop (constructor_unfilled_index
))
5468 constructor_type
= NULL_TREE
;
5469 else if (! TYPE_SIZE (constructor_type
))
5471 if (constructor_depth
> 2)
5472 error_init ("initialization of flexible array member in a nested context");
5474 pedwarn_init ("initialization of a flexible array member");
5476 /* We have already issued an error message for the existence
5477 of a flexible array member not at the end of the structure.
5478 Discard the initializer so that we do not abort later. */
5479 if (TREE_CHAIN (constructor_fields
) != NULL_TREE
)
5480 constructor_type
= NULL_TREE
;
5483 /* Zero-length arrays are no longer special, so we should no longer
5488 /* Warn when some struct elements are implicitly initialized to zero. */
5491 && TREE_CODE (constructor_type
) == RECORD_TYPE
5492 && constructor_unfilled_fields
)
5494 /* Do not warn for flexible array members or zero-length arrays. */
5495 while (constructor_unfilled_fields
5496 && (! DECL_SIZE (constructor_unfilled_fields
)
5497 || integer_zerop (DECL_SIZE (constructor_unfilled_fields
))))
5498 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
5500 /* Do not warn if this level of the initializer uses member
5501 designators; it is likely to be deliberate. */
5502 if (constructor_unfilled_fields
&& !constructor_designated
)
5504 push_member_name (constructor_unfilled_fields
);
5505 warning_init ("missing initializer");
5506 RESTORE_SPELLING_DEPTH (constructor_depth
);
5510 /* Now output all pending elements. */
5511 constructor_incremental
= 1;
5512 output_pending_init_elements (1);
5514 /* Pad out the end of the structure. */
5515 if (p
->replacement_value
)
5516 /* If this closes a superfluous brace pair,
5517 just pass out the element between them. */
5518 constructor
= p
->replacement_value
;
5519 else if (constructor_type
== 0)
5521 else if (TREE_CODE (constructor_type
) != RECORD_TYPE
5522 && TREE_CODE (constructor_type
) != UNION_TYPE
5523 && TREE_CODE (constructor_type
) != ARRAY_TYPE
5524 && TREE_CODE (constructor_type
) != VECTOR_TYPE
)
5526 /* A nonincremental scalar initializer--just return
5527 the element, after verifying there is just one. */
5528 if (constructor_elements
== 0)
5530 if (!constructor_erroneous
)
5531 error_init ("empty scalar initializer");
5532 constructor
= error_mark_node
;
5534 else if (TREE_CHAIN (constructor_elements
) != 0)
5536 error_init ("extra elements in scalar initializer");
5537 constructor
= TREE_VALUE (constructor_elements
);
5540 constructor
= TREE_VALUE (constructor_elements
);
5544 if (constructor_erroneous
)
5545 constructor
= error_mark_node
;
5548 constructor
= build (CONSTRUCTOR
, constructor_type
, NULL_TREE
,
5549 nreverse (constructor_elements
));
5550 if (constructor_constant
)
5551 TREE_CONSTANT (constructor
) = 1;
5552 if (constructor_constant
&& constructor_simple
)
5553 TREE_STATIC (constructor
) = 1;
5557 constructor_type
= p
->type
;
5558 constructor_fields
= p
->fields
;
5559 constructor_index
= p
->index
;
5560 constructor_max_index
= p
->max_index
;
5561 constructor_unfilled_index
= p
->unfilled_index
;
5562 constructor_unfilled_fields
= p
->unfilled_fields
;
5563 constructor_bit_index
= p
->bit_index
;
5564 constructor_elements
= p
->elements
;
5565 constructor_constant
= p
->constant
;
5566 constructor_simple
= p
->simple
;
5567 constructor_erroneous
= p
->erroneous
;
5568 constructor_incremental
= p
->incremental
;
5569 constructor_designated
= p
->designated
;
5570 constructor_pending_elts
= p
->pending_elts
;
5571 constructor_depth
= p
->depth
;
5573 constructor_range_stack
= p
->range_stack
;
5574 RESTORE_SPELLING_DEPTH (constructor_depth
);
5576 constructor_stack
= p
->next
;
5579 if (constructor
== 0)
5581 if (constructor_stack
== 0)
5582 return error_mark_node
;
5588 /* Common handling for both array range and field name designators.
5589 ARRAY argument is non-zero for array ranges. Returns zero for success. */
5592 set_designator (array
)
5596 enum tree_code subcode
;
5598 /* Don't die if an entire brace-pair level is superfluous
5599 in the containing level. */
5600 if (constructor_type
== 0)
5603 /* If there were errors in this designator list already, bail out silently. */
5604 if (designator_errorneous
)
5607 if (!designator_depth
)
5609 if (constructor_range_stack
)
5612 /* Designator list starts at the level of closest explicit
5614 while (constructor_stack
->implicit
)
5615 process_init_element (pop_init_level (1));
5616 constructor_designated
= 1;
5620 if (constructor_no_implicit
)
5622 error_init ("initialization designators may not nest");
5626 if (TREE_CODE (constructor_type
) == RECORD_TYPE
5627 || TREE_CODE (constructor_type
) == UNION_TYPE
)
5629 subtype
= TREE_TYPE (constructor_fields
);
5630 if (subtype
!= error_mark_node
)
5631 subtype
= TYPE_MAIN_VARIANT (subtype
);
5633 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5635 subtype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
5640 subcode
= TREE_CODE (subtype
);
5641 if (array
&& subcode
!= ARRAY_TYPE
)
5643 error_init ("array index in non-array initializer");
5646 else if (!array
&& subcode
!= RECORD_TYPE
&& subcode
!= UNION_TYPE
)
5648 error_init ("field name not in record or union initializer");
5652 constructor_designated
= 1;
5653 push_init_level (2);
5657 /* If there are range designators in designator list, push a new designator
5658 to constructor_range_stack. RANGE_END is end of such stack range or
5659 NULL_TREE if there is no range designator at this level. */
5662 push_range_stack (range_end
)
5665 struct constructor_range_stack
*p
;
5667 p
= (struct constructor_range_stack
*)
5668 ggc_alloc (sizeof (struct constructor_range_stack
));
5669 p
->prev
= constructor_range_stack
;
5671 p
->fields
= constructor_fields
;
5672 p
->range_start
= constructor_index
;
5673 p
->index
= constructor_index
;
5674 p
->stack
= constructor_stack
;
5675 p
->range_end
= range_end
;
5676 if (constructor_range_stack
)
5677 constructor_range_stack
->next
= p
;
5678 constructor_range_stack
= p
;
5681 /* Within an array initializer, specify the next index to be initialized.
5682 FIRST is that index. If LAST is nonzero, then initialize a range
5683 of indices, running from FIRST through LAST. */
5686 set_init_index (first
, last
)
5689 if (set_designator (1))
5692 designator_errorneous
= 1;
5694 while ((TREE_CODE (first
) == NOP_EXPR
5695 || TREE_CODE (first
) == CONVERT_EXPR
5696 || TREE_CODE (first
) == NON_LVALUE_EXPR
)
5697 && (TYPE_MODE (TREE_TYPE (first
))
5698 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (first
, 0)))))
5699 first
= TREE_OPERAND (first
, 0);
5702 while ((TREE_CODE (last
) == NOP_EXPR
5703 || TREE_CODE (last
) == CONVERT_EXPR
5704 || TREE_CODE (last
) == NON_LVALUE_EXPR
)
5705 && (TYPE_MODE (TREE_TYPE (last
))
5706 == TYPE_MODE (TREE_TYPE (TREE_OPERAND (last
, 0)))))
5707 last
= TREE_OPERAND (last
, 0);
5709 if (TREE_CODE (first
) != INTEGER_CST
)
5710 error_init ("nonconstant array index in initializer");
5711 else if (last
!= 0 && TREE_CODE (last
) != INTEGER_CST
)
5712 error_init ("nonconstant array index in initializer");
5713 else if (TREE_CODE (constructor_type
) != ARRAY_TYPE
)
5714 error_init ("array index in non-array initializer");
5715 else if (constructor_max_index
5716 && tree_int_cst_lt (constructor_max_index
, first
))
5717 error_init ("array index in initializer exceeds array bounds");
5720 constructor_index
= convert (bitsizetype
, first
);
5724 if (tree_int_cst_equal (first
, last
))
5726 else if (tree_int_cst_lt (last
, first
))
5728 error_init ("empty index range in initializer");
5733 last
= convert (bitsizetype
, last
);
5734 if (constructor_max_index
!= 0
5735 && tree_int_cst_lt (constructor_max_index
, last
))
5737 error_init ("array index range in initializer exceeds array bounds");
5744 designator_errorneous
= 0;
5745 if (constructor_range_stack
|| last
)
5746 push_range_stack (last
);
5750 /* Within a struct initializer, specify the next field to be initialized. */
5753 set_init_label (fieldname
)
5758 if (set_designator (0))
5761 designator_errorneous
= 1;
5763 if (TREE_CODE (constructor_type
) != RECORD_TYPE
5764 && TREE_CODE (constructor_type
) != UNION_TYPE
)
5766 error_init ("field name not in record or union initializer");
5770 for (tail
= TYPE_FIELDS (constructor_type
); tail
;
5771 tail
= TREE_CHAIN (tail
))
5773 if (DECL_NAME (tail
) == fieldname
)
5778 error ("unknown field `%s' specified in initializer",
5779 IDENTIFIER_POINTER (fieldname
));
5782 constructor_fields
= tail
;
5784 designator_errorneous
= 0;
5785 if (constructor_range_stack
)
5786 push_range_stack (NULL_TREE
);
5790 /* Add a new initializer to the tree of pending initializers. PURPOSE
5791 identifies the initializer, either array index or field in a structure.
5792 VALUE is the value of that index or field. */
5795 add_pending_init (purpose
, value
)
5796 tree purpose
, value
;
5798 struct init_node
*p
, **q
, *r
;
5800 q
= &constructor_pending_elts
;
5803 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
5808 if (tree_int_cst_lt (purpose
, p
->purpose
))
5810 else if (tree_int_cst_lt (p
->purpose
, purpose
))
5814 if (TREE_SIDE_EFFECTS (p
->value
))
5815 warning_init ("initialized field with side-effects overwritten");
5825 bitpos
= bit_position (purpose
);
5829 if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
5831 else if (p
->purpose
!= purpose
)
5835 if (TREE_SIDE_EFFECTS (p
->value
))
5836 warning_init ("initialized field with side-effects overwritten");
5843 r
= (struct init_node
*) ggc_alloc (sizeof (struct init_node
));
5844 r
->purpose
= purpose
;
5855 struct init_node
*s
;
5859 if (p
->balance
== 0)
5861 else if (p
->balance
< 0)
5868 p
->left
->parent
= p
;
5885 constructor_pending_elts
= r
;
5890 struct init_node
*t
= r
->right
;
5894 r
->right
->parent
= r
;
5899 p
->left
->parent
= p
;
5902 p
->balance
= t
->balance
< 0;
5903 r
->balance
= -(t
->balance
> 0);
5918 constructor_pending_elts
= t
;
5924 /* p->balance == +1; growth of left side balances the node. */
5929 else /* r == p->right */
5931 if (p
->balance
== 0)
5932 /* Growth propagation from right side. */
5934 else if (p
->balance
> 0)
5941 p
->right
->parent
= p
;
5958 constructor_pending_elts
= r
;
5960 else /* r->balance == -1 */
5963 struct init_node
*t
= r
->left
;
5967 r
->left
->parent
= r
;
5972 p
->right
->parent
= p
;
5975 r
->balance
= (t
->balance
< 0);
5976 p
->balance
= -(t
->balance
> 0);
5991 constructor_pending_elts
= t
;
5997 /* p->balance == -1; growth of right side balances the node. */
6008 /* Build AVL tree from a sorted chain. */
6011 set_nonincremental_init ()
6015 if (TREE_CODE (constructor_type
) != RECORD_TYPE
6016 && TREE_CODE (constructor_type
) != ARRAY_TYPE
)
6019 for (chain
= constructor_elements
; chain
; chain
= TREE_CHAIN (chain
))
6020 add_pending_init (TREE_PURPOSE (chain
), TREE_VALUE (chain
));
6021 constructor_elements
= 0;
6022 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
6024 constructor_unfilled_fields
= TYPE_FIELDS (constructor_type
);
6025 /* Skip any nameless bit fields at the beginning. */
6026 while (constructor_unfilled_fields
!= 0
6027 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
6028 && DECL_NAME (constructor_unfilled_fields
) == 0)
6029 constructor_unfilled_fields
= TREE_CHAIN (constructor_unfilled_fields
);
6032 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6034 if (TYPE_DOMAIN (constructor_type
))
6035 constructor_unfilled_index
6036 = convert (bitsizetype
,
6037 TYPE_MIN_VALUE (TYPE_DOMAIN (constructor_type
)));
6039 constructor_unfilled_index
= bitsize_zero_node
;
6041 constructor_incremental
= 0;
6044 /* Build AVL tree from a string constant. */
6047 set_nonincremental_init_from_string (str
)
6050 tree value
, purpose
, type
;
6051 HOST_WIDE_INT val
[2];
6052 const char *p
, *end
;
6053 int byte
, wchar_bytes
, charwidth
, bitpos
;
6055 if (TREE_CODE (constructor_type
) != ARRAY_TYPE
)
6058 if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str
)))
6059 == TYPE_PRECISION (char_type_node
))
6061 else if (TYPE_PRECISION (TREE_TYPE (TREE_TYPE (str
)))
6062 == TYPE_PRECISION (wchar_type_node
))
6063 wchar_bytes
= TYPE_PRECISION (wchar_type_node
) / BITS_PER_UNIT
;
6067 charwidth
= TYPE_PRECISION (char_type_node
);
6068 type
= TREE_TYPE (constructor_type
);
6069 p
= TREE_STRING_POINTER (str
);
6070 end
= p
+ TREE_STRING_LENGTH (str
);
6072 for (purpose
= bitsize_zero_node
;
6073 p
< end
&& !tree_int_cst_lt (constructor_max_index
, purpose
);
6074 purpose
= size_binop (PLUS_EXPR
, purpose
, bitsize_one_node
))
6076 if (wchar_bytes
== 1)
6078 val
[1] = (unsigned char) *p
++;
6085 for (byte
= 0; byte
< wchar_bytes
; byte
++)
6087 if (BYTES_BIG_ENDIAN
)
6088 bitpos
= (wchar_bytes
- byte
- 1) * charwidth
;
6090 bitpos
= byte
* charwidth
;
6091 val
[bitpos
< HOST_BITS_PER_WIDE_INT
]
6092 |= ((unsigned HOST_WIDE_INT
) ((unsigned char) *p
++))
6093 << (bitpos
% HOST_BITS_PER_WIDE_INT
);
6097 if (!TREE_UNSIGNED (type
))
6099 bitpos
= ((wchar_bytes
- 1) * charwidth
) + HOST_BITS_PER_CHAR
;
6100 if (bitpos
< HOST_BITS_PER_WIDE_INT
)
6102 if (val
[1] & (((HOST_WIDE_INT
) 1) << (bitpos
- 1)))
6104 val
[1] |= ((HOST_WIDE_INT
) -1) << bitpos
;
6108 else if (bitpos
== HOST_BITS_PER_WIDE_INT
)
6113 else if (val
[0] & (((HOST_WIDE_INT
) 1)
6114 << (bitpos
- 1 - HOST_BITS_PER_WIDE_INT
)))
6115 val
[0] |= ((HOST_WIDE_INT
) -1)
6116 << (bitpos
- HOST_BITS_PER_WIDE_INT
);
6119 value
= build_int_2 (val
[1], val
[0]);
6120 TREE_TYPE (value
) = type
;
6121 add_pending_init (purpose
, value
);
6124 constructor_incremental
= 0;
6127 /* Return value of FIELD in pending initializer or zero if the field was
6128 not initialized yet. */
6131 find_init_member (field
)
6134 struct init_node
*p
;
6136 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6138 if (constructor_incremental
6139 && tree_int_cst_lt (field
, constructor_unfilled_index
))
6140 set_nonincremental_init ();
6142 p
= constructor_pending_elts
;
6145 if (tree_int_cst_lt (field
, p
->purpose
))
6147 else if (tree_int_cst_lt (p
->purpose
, field
))
6153 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
6155 tree bitpos
= bit_position (field
);
6157 if (constructor_incremental
6158 && (!constructor_unfilled_fields
6159 || tree_int_cst_lt (bitpos
,
6160 bit_position (constructor_unfilled_fields
))))
6161 set_nonincremental_init ();
6163 p
= constructor_pending_elts
;
6166 if (field
== p
->purpose
)
6168 else if (tree_int_cst_lt (bitpos
, bit_position (p
->purpose
)))
6174 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
6176 if (constructor_elements
6177 && TREE_PURPOSE (constructor_elements
) == field
)
6178 return TREE_VALUE (constructor_elements
);
6183 /* "Output" the next constructor element.
6184 At top level, really output it to assembler code now.
6185 Otherwise, collect it in a list from which we will make a CONSTRUCTOR.
6186 TYPE is the data type that the containing data type wants here.
6187 FIELD is the field (a FIELD_DECL) or the index that this element fills.
6189 PENDING if non-nil means output pending elements that belong
6190 right after this element. (PENDING is normally 1;
6191 it is 0 while outputting pending elements, to avoid recursion.) */
6194 output_init_element (value
, type
, field
, pending
)
6195 tree value
, type
, field
;
6198 if (TREE_CODE (TREE_TYPE (value
)) == FUNCTION_TYPE
6199 || (TREE_CODE (TREE_TYPE (value
)) == ARRAY_TYPE
6200 && !(TREE_CODE (value
) == STRING_CST
6201 && TREE_CODE (type
) == ARRAY_TYPE
6202 && TREE_CODE (TREE_TYPE (type
)) == INTEGER_TYPE
)
6203 && !comptypes (TYPE_MAIN_VARIANT (TREE_TYPE (value
)),
6204 TYPE_MAIN_VARIANT (type
))))
6205 value
= default_conversion (value
);
6207 if (TREE_CODE (value
) == COMPOUND_LITERAL_EXPR
6208 && require_constant_value
&& !flag_isoc99
&& pending
)
6210 /* As an extension, allow initializing objects with static storage
6211 duration with compound literals (which are then treated just as
6212 the brace enclosed list they contain). */
6213 tree decl
= COMPOUND_LITERAL_EXPR_DECL (value
);
6214 value
= DECL_INITIAL (decl
);
6217 if (value
== error_mark_node
)
6218 constructor_erroneous
= 1;
6219 else if (!TREE_CONSTANT (value
))
6220 constructor_constant
= 0;
6221 else if (initializer_constant_valid_p (value
, TREE_TYPE (value
)) == 0
6222 || ((TREE_CODE (constructor_type
) == RECORD_TYPE
6223 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6224 && DECL_C_BIT_FIELD (field
)
6225 && TREE_CODE (value
) != INTEGER_CST
))
6226 constructor_simple
= 0;
6228 if (require_constant_value
&& ! TREE_CONSTANT (value
))
6230 error_init ("initializer element is not constant");
6231 value
= error_mark_node
;
6233 else if (require_constant_elements
6234 && initializer_constant_valid_p (value
, TREE_TYPE (value
)) == 0)
6235 pedwarn ("initializer element is not computable at load time");
6237 /* If this field is empty (and not at the end of structure),
6238 don't do anything other than checking the initializer. */
6240 && (TREE_TYPE (field
) == error_mark_node
6241 || (COMPLETE_TYPE_P (TREE_TYPE (field
))
6242 && integer_zerop (TYPE_SIZE (TREE_TYPE (field
)))
6243 && (TREE_CODE (constructor_type
) == ARRAY_TYPE
6244 || TREE_CHAIN (field
)))))
6247 value
= digest_init (type
, value
, require_constant_value
);
6248 if (value
== error_mark_node
)
6250 constructor_erroneous
= 1;
6254 /* If this element doesn't come next in sequence,
6255 put it on constructor_pending_elts. */
6256 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
6257 && (!constructor_incremental
6258 || !tree_int_cst_equal (field
, constructor_unfilled_index
)))
6260 if (constructor_incremental
6261 && tree_int_cst_lt (field
, constructor_unfilled_index
))
6262 set_nonincremental_init ();
6264 add_pending_init (field
, value
);
6267 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
6268 && (!constructor_incremental
6269 || field
!= constructor_unfilled_fields
))
6271 /* We do this for records but not for unions. In a union,
6272 no matter which field is specified, it can be initialized
6273 right away since it starts at the beginning of the union. */
6274 if (constructor_incremental
)
6276 if (!constructor_unfilled_fields
)
6277 set_nonincremental_init ();
6280 tree bitpos
, unfillpos
;
6282 bitpos
= bit_position (field
);
6283 unfillpos
= bit_position (constructor_unfilled_fields
);
6285 if (tree_int_cst_lt (bitpos
, unfillpos
))
6286 set_nonincremental_init ();
6290 add_pending_init (field
, value
);
6293 else if (TREE_CODE (constructor_type
) == UNION_TYPE
6294 && constructor_elements
)
6296 if (TREE_SIDE_EFFECTS (TREE_VALUE (constructor_elements
)))
6297 warning_init ("initialized field with side-effects overwritten");
6299 /* We can have just one union field set. */
6300 constructor_elements
= 0;
6303 /* Otherwise, output this element either to
6304 constructor_elements or to the assembler file. */
6306 if (field
&& TREE_CODE (field
) == INTEGER_CST
)
6307 field
= copy_node (field
);
6308 constructor_elements
6309 = tree_cons (field
, value
, constructor_elements
);
6311 /* Advance the variable that indicates sequential elements output. */
6312 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6313 constructor_unfilled_index
6314 = size_binop (PLUS_EXPR
, constructor_unfilled_index
,
6316 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
6318 constructor_unfilled_fields
6319 = TREE_CHAIN (constructor_unfilled_fields
);
6321 /* Skip any nameless bit fields. */
6322 while (constructor_unfilled_fields
!= 0
6323 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
6324 && DECL_NAME (constructor_unfilled_fields
) == 0)
6325 constructor_unfilled_fields
=
6326 TREE_CHAIN (constructor_unfilled_fields
);
6328 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
6329 constructor_unfilled_fields
= 0;
6331 /* Now output any pending elements which have become next. */
6333 output_pending_init_elements (0);
6336 /* Output any pending elements which have become next.
6337 As we output elements, constructor_unfilled_{fields,index}
6338 advances, which may cause other elements to become next;
6339 if so, they too are output.
6341 If ALL is 0, we return when there are
6342 no more pending elements to output now.
6344 If ALL is 1, we output space as necessary so that
6345 we can output all the pending elements. */
6348 output_pending_init_elements (all
)
6351 struct init_node
*elt
= constructor_pending_elts
;
6356 /* Look thru the whole pending tree.
6357 If we find an element that should be output now,
6358 output it. Otherwise, set NEXT to the element
6359 that comes first among those still pending. */
6364 if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6366 if (tree_int_cst_equal (elt
->purpose
,
6367 constructor_unfilled_index
))
6368 output_init_element (elt
->value
,
6369 TREE_TYPE (constructor_type
),
6370 constructor_unfilled_index
, 0);
6371 else if (tree_int_cst_lt (constructor_unfilled_index
,
6374 /* Advance to the next smaller node. */
6379 /* We have reached the smallest node bigger than the
6380 current unfilled index. Fill the space first. */
6381 next
= elt
->purpose
;
6387 /* Advance to the next bigger node. */
6392 /* We have reached the biggest node in a subtree. Find
6393 the parent of it, which is the next bigger node. */
6394 while (elt
->parent
&& elt
->parent
->right
== elt
)
6397 if (elt
&& tree_int_cst_lt (constructor_unfilled_index
,
6400 next
= elt
->purpose
;
6406 else if (TREE_CODE (constructor_type
) == RECORD_TYPE
6407 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6409 tree ctor_unfilled_bitpos
, elt_bitpos
;
6411 /* If the current record is complete we are done. */
6412 if (constructor_unfilled_fields
== 0)
6415 ctor_unfilled_bitpos
= bit_position (constructor_unfilled_fields
);
6416 elt_bitpos
= bit_position (elt
->purpose
);
6417 /* We can't compare fields here because there might be empty
6418 fields in between. */
6419 if (tree_int_cst_equal (elt_bitpos
, ctor_unfilled_bitpos
))
6421 constructor_unfilled_fields
= elt
->purpose
;
6422 output_init_element (elt
->value
, TREE_TYPE (elt
->purpose
),
6425 else if (tree_int_cst_lt (ctor_unfilled_bitpos
, elt_bitpos
))
6427 /* Advance to the next smaller node. */
6432 /* We have reached the smallest node bigger than the
6433 current unfilled field. Fill the space first. */
6434 next
= elt
->purpose
;
6440 /* Advance to the next bigger node. */
6445 /* We have reached the biggest node in a subtree. Find
6446 the parent of it, which is the next bigger node. */
6447 while (elt
->parent
&& elt
->parent
->right
== elt
)
6451 && (tree_int_cst_lt (ctor_unfilled_bitpos
,
6452 bit_position (elt
->purpose
))))
6454 next
= elt
->purpose
;
6462 /* Ordinarily return, but not if we want to output all
6463 and there are elements left. */
6464 if (! (all
&& next
!= 0))
6467 /* If it's not incremental, just skip over the gap, so that after
6468 jumping to retry we will output the next successive element. */
6469 if (TREE_CODE (constructor_type
) == RECORD_TYPE
6470 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6471 constructor_unfilled_fields
= next
;
6472 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6473 constructor_unfilled_index
= next
;
6475 /* ELT now points to the node in the pending tree with the next
6476 initializer to output. */
6480 /* Add one non-braced element to the current constructor level.
6481 This adjusts the current position within the constructor's type.
6482 This may also start or terminate implicit levels
6483 to handle a partly-braced initializer.
6485 Once this has found the correct level for the new element,
6486 it calls output_init_element. */
6489 process_init_element (value
)
6492 tree orig_value
= value
;
6493 int string_flag
= value
!= 0 && TREE_CODE (value
) == STRING_CST
;
6495 designator_depth
= 0;
6496 designator_errorneous
= 0;
6498 /* Handle superfluous braces around string cst as in
6499 char x[] = {"foo"}; */
6502 && TREE_CODE (constructor_type
) == ARRAY_TYPE
6503 && TREE_CODE (TREE_TYPE (constructor_type
)) == INTEGER_TYPE
6504 && integer_zerop (constructor_unfilled_index
))
6506 if (constructor_stack
->replacement_value
)
6507 error_init ("excess elements in char array initializer");
6508 constructor_stack
->replacement_value
= value
;
6512 if (constructor_stack
->replacement_value
!= 0)
6514 error_init ("excess elements in struct initializer");
6518 /* Ignore elements of a brace group if it is entirely superfluous
6519 and has already been diagnosed. */
6520 if (constructor_type
== 0)
6523 /* If we've exhausted any levels that didn't have braces,
6525 while (constructor_stack
->implicit
)
6527 if ((TREE_CODE (constructor_type
) == RECORD_TYPE
6528 || TREE_CODE (constructor_type
) == UNION_TYPE
)
6529 && constructor_fields
== 0)
6530 process_init_element (pop_init_level (1));
6531 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
6532 && (constructor_max_index
== 0
6533 || tree_int_cst_lt (constructor_max_index
,
6534 constructor_index
)))
6535 process_init_element (pop_init_level (1));
6540 /* In the case of [LO ... HI] = VALUE, only evaluate VALUE once. */
6541 if (constructor_range_stack
)
6543 /* If value is a compound literal and we'll be just using its
6544 content, don't put it into a SAVE_EXPR. */
6545 if (TREE_CODE (value
) != COMPOUND_LITERAL_EXPR
6546 || !require_constant_value
6548 value
= save_expr (value
);
6553 if (TREE_CODE (constructor_type
) == RECORD_TYPE
)
6556 enum tree_code fieldcode
;
6558 if (constructor_fields
== 0)
6560 pedwarn_init ("excess elements in struct initializer");
6564 fieldtype
= TREE_TYPE (constructor_fields
);
6565 if (fieldtype
!= error_mark_node
)
6566 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
6567 fieldcode
= TREE_CODE (fieldtype
);
6569 /* Error for non-static initialization of a flexible array member. */
6570 if (fieldcode
== ARRAY_TYPE
6571 && !require_constant_value
6572 && TYPE_SIZE (fieldtype
) == NULL_TREE
6573 && TREE_CHAIN (constructor_fields
) == NULL_TREE
)
6575 error_init ("non-static initialization of a flexible array member");
6579 /* Accept a string constant to initialize a subarray. */
6581 && fieldcode
== ARRAY_TYPE
6582 && TREE_CODE (TREE_TYPE (fieldtype
)) == INTEGER_TYPE
6585 /* Otherwise, if we have come to a subaggregate,
6586 and we don't have an element of its type, push into it. */
6587 else if (value
!= 0 && !constructor_no_implicit
6588 && value
!= error_mark_node
6589 && TYPE_MAIN_VARIANT (TREE_TYPE (value
)) != fieldtype
6590 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
6591 || fieldcode
== UNION_TYPE
))
6593 push_init_level (1);
6599 push_member_name (constructor_fields
);
6600 output_init_element (value
, fieldtype
, constructor_fields
, 1);
6601 RESTORE_SPELLING_DEPTH (constructor_depth
);
6604 /* Do the bookkeeping for an element that was
6605 directly output as a constructor. */
6607 /* For a record, keep track of end position of last field. */
6608 if (DECL_SIZE (constructor_fields
))
6609 constructor_bit_index
6610 = size_binop (PLUS_EXPR
,
6611 bit_position (constructor_fields
),
6612 DECL_SIZE (constructor_fields
));
6614 constructor_unfilled_fields
= TREE_CHAIN (constructor_fields
);
6615 /* Skip any nameless bit fields. */
6616 while (constructor_unfilled_fields
!= 0
6617 && DECL_C_BIT_FIELD (constructor_unfilled_fields
)
6618 && DECL_NAME (constructor_unfilled_fields
) == 0)
6619 constructor_unfilled_fields
=
6620 TREE_CHAIN (constructor_unfilled_fields
);
6623 constructor_fields
= TREE_CHAIN (constructor_fields
);
6624 /* Skip any nameless bit fields at the beginning. */
6625 while (constructor_fields
!= 0
6626 && DECL_C_BIT_FIELD (constructor_fields
)
6627 && DECL_NAME (constructor_fields
) == 0)
6628 constructor_fields
= TREE_CHAIN (constructor_fields
);
6630 else if (TREE_CODE (constructor_type
) == UNION_TYPE
)
6633 enum tree_code fieldcode
;
6635 if (constructor_fields
== 0)
6637 pedwarn_init ("excess elements in union initializer");
6641 fieldtype
= TREE_TYPE (constructor_fields
);
6642 if (fieldtype
!= error_mark_node
)
6643 fieldtype
= TYPE_MAIN_VARIANT (fieldtype
);
6644 fieldcode
= TREE_CODE (fieldtype
);
6646 /* Warn that traditional C rejects initialization of unions.
6647 We skip the warning if the value is zero. This is done
6648 under the assumption that the zero initializer in user
6649 code appears conditioned on e.g. __STDC__ to avoid
6650 "missing initializer" warnings and relies on default
6651 initialization to zero in the traditional C case.
6652 We also skip the warning if the initializer is designated,
6653 again on the assumption that this must be conditional on
6654 __STDC__ anyway (and we've already complained about the
6655 member-designator already). */
6656 if (warn_traditional
&& !in_system_header
&& !constructor_designated
6657 && !(value
&& (integer_zerop (value
) || real_zerop (value
))))
6658 warning ("traditional C rejects initialization of unions");
6660 /* Accept a string constant to initialize a subarray. */
6662 && fieldcode
== ARRAY_TYPE
6663 && TREE_CODE (TREE_TYPE (fieldtype
)) == INTEGER_TYPE
6666 /* Otherwise, if we have come to a subaggregate,
6667 and we don't have an element of its type, push into it. */
6668 else if (value
!= 0 && !constructor_no_implicit
6669 && value
!= error_mark_node
6670 && TYPE_MAIN_VARIANT (TREE_TYPE (value
)) != fieldtype
6671 && (fieldcode
== RECORD_TYPE
|| fieldcode
== ARRAY_TYPE
6672 || fieldcode
== UNION_TYPE
))
6674 push_init_level (1);
6680 push_member_name (constructor_fields
);
6681 output_init_element (value
, fieldtype
, constructor_fields
, 1);
6682 RESTORE_SPELLING_DEPTH (constructor_depth
);
6685 /* Do the bookkeeping for an element that was
6686 directly output as a constructor. */
6688 constructor_bit_index
= DECL_SIZE (constructor_fields
);
6689 constructor_unfilled_fields
= TREE_CHAIN (constructor_fields
);
6692 constructor_fields
= 0;
6694 else if (TREE_CODE (constructor_type
) == ARRAY_TYPE
)
6696 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
6697 enum tree_code eltcode
= TREE_CODE (elttype
);
6699 /* Accept a string constant to initialize a subarray. */
6701 && eltcode
== ARRAY_TYPE
6702 && TREE_CODE (TREE_TYPE (elttype
)) == INTEGER_TYPE
6705 /* Otherwise, if we have come to a subaggregate,
6706 and we don't have an element of its type, push into it. */
6707 else if (value
!= 0 && !constructor_no_implicit
6708 && value
!= error_mark_node
6709 && TYPE_MAIN_VARIANT (TREE_TYPE (value
)) != elttype
6710 && (eltcode
== RECORD_TYPE
|| eltcode
== ARRAY_TYPE
6711 || eltcode
== UNION_TYPE
))
6713 push_init_level (1);
6717 if (constructor_max_index
!= 0
6718 && (tree_int_cst_lt (constructor_max_index
, constructor_index
)
6719 || integer_all_onesp (constructor_max_index
)))
6721 pedwarn_init ("excess elements in array initializer");
6725 /* Now output the actual element. */
6728 push_array_bounds (tree_low_cst (constructor_index
, 0));
6729 output_init_element (value
, elttype
, constructor_index
, 1);
6730 RESTORE_SPELLING_DEPTH (constructor_depth
);
6734 = size_binop (PLUS_EXPR
, constructor_index
, bitsize_one_node
);
6737 /* If we are doing the bookkeeping for an element that was
6738 directly output as a constructor, we must update
6739 constructor_unfilled_index. */
6740 constructor_unfilled_index
= constructor_index
;
6742 else if (TREE_CODE (constructor_type
) == VECTOR_TYPE
)
6744 tree elttype
= TYPE_MAIN_VARIANT (TREE_TYPE (constructor_type
));
6746 /* Do a basic check of initializer size. Note that vectors
6747 always have a fixed size derived from their type. */
6748 if (tree_int_cst_lt (constructor_max_index
, constructor_index
))
6750 pedwarn_init ("excess elements in vector initializer");
6754 /* Now output the actual element. */
6756 output_init_element (value
, elttype
, constructor_index
, 1);
6759 = size_binop (PLUS_EXPR
, constructor_index
, bitsize_one_node
);
6762 /* If we are doing the bookkeeping for an element that was
6763 directly output as a constructor, we must update
6764 constructor_unfilled_index. */
6765 constructor_unfilled_index
= constructor_index
;
6768 /* Handle the sole element allowed in a braced initializer
6769 for a scalar variable. */
6770 else if (constructor_fields
== 0)
6772 pedwarn_init ("excess elements in scalar initializer");
6778 output_init_element (value
, constructor_type
, NULL_TREE
, 1);
6779 constructor_fields
= 0;
6782 /* Handle range initializers either at this level or anywhere higher
6783 in the designator stack. */
6784 if (constructor_range_stack
)
6786 struct constructor_range_stack
*p
, *range_stack
;
6789 range_stack
= constructor_range_stack
;
6790 constructor_range_stack
= 0;
6791 while (constructor_stack
!= range_stack
->stack
)
6793 if (!constructor_stack
->implicit
)
6795 process_init_element (pop_init_level (1));
6797 for (p
= range_stack
;
6798 !p
->range_end
|| tree_int_cst_equal (p
->index
, p
->range_end
);
6801 if (!constructor_stack
->implicit
)
6803 process_init_element (pop_init_level (1));
6806 p
->index
= size_binop (PLUS_EXPR
, p
->index
, bitsize_one_node
);
6807 if (tree_int_cst_equal (p
->index
, p
->range_end
) && !p
->prev
)
6812 constructor_index
= p
->index
;
6813 constructor_fields
= p
->fields
;
6814 if (finish
&& p
->range_end
&& p
->index
== p
->range_start
)
6822 push_init_level (2);
6823 p
->stack
= constructor_stack
;
6824 if (p
->range_end
&& tree_int_cst_equal (p
->index
, p
->range_end
))
6825 p
->index
= p
->range_start
;
6829 constructor_range_stack
= range_stack
;
6836 constructor_range_stack
= 0;
6839 /* Build a simple asm-statement, from one string literal. */
6841 simple_asm_stmt (expr
)
6846 if (TREE_CODE (expr
) == ADDR_EXPR
)
6847 expr
= TREE_OPERAND (expr
, 0);
6849 if (TREE_CODE (expr
) == STRING_CST
)
6853 stmt
= add_stmt (build_stmt (ASM_STMT
, NULL_TREE
, expr
,
6854 NULL_TREE
, NULL_TREE
,
6856 ASM_INPUT_P (stmt
) = 1;
6860 error ("argument of `asm' is not a constant string");
6864 /* Build an asm-statement, whose components are a CV_QUALIFIER, a
6865 STRING, some OUTPUTS, some INPUTS, and some CLOBBERS. */
6868 build_asm_stmt (cv_qualifier
, string
, outputs
, inputs
, clobbers
)
6877 if (TREE_CODE (string
) != STRING_CST
)
6879 error ("asm template is not a string constant");
6883 if (cv_qualifier
!= NULL_TREE
6884 && cv_qualifier
!= ridpointers
[(int) RID_VOLATILE
])
6886 warning ("%s qualifier ignored on asm",
6887 IDENTIFIER_POINTER (cv_qualifier
));
6888 cv_qualifier
= NULL_TREE
;
6891 /* We can remove output conversions that change the type,
6892 but not the mode. */
6893 for (tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
))
6895 tree output
= TREE_VALUE (tail
);
6897 STRIP_NOPS (output
);
6898 TREE_VALUE (tail
) = output
;
6900 /* Allow conversions as LHS here. build_modify_expr as called below
6901 will do the right thing with them. */
6902 while (TREE_CODE (output
) == NOP_EXPR
6903 || TREE_CODE (output
) == CONVERT_EXPR
6904 || TREE_CODE (output
) == FLOAT_EXPR
6905 || TREE_CODE (output
) == FIX_TRUNC_EXPR
6906 || TREE_CODE (output
) == FIX_FLOOR_EXPR
6907 || TREE_CODE (output
) == FIX_ROUND_EXPR
6908 || TREE_CODE (output
) == FIX_CEIL_EXPR
)
6909 output
= TREE_OPERAND (output
, 0);
6911 lvalue_or_else (TREE_VALUE (tail
), "invalid lvalue in asm statement");
6914 /* Remove output conversions that change the type but not the mode. */
6915 for (tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
))
6917 tree output
= TREE_VALUE (tail
);
6918 STRIP_NOPS (output
);
6919 TREE_VALUE (tail
) = output
;
6922 /* Perform default conversions on array and function inputs.
6923 Don't do this for other types as it would screw up operands
6924 expected to be in memory. */
6925 for (tail
= inputs
; tail
; tail
= TREE_CHAIN (tail
))
6926 TREE_VALUE (tail
) = default_function_array_conversion (TREE_VALUE (tail
));
6928 return add_stmt (build_stmt (ASM_STMT
, cv_qualifier
, string
,
6929 outputs
, inputs
, clobbers
));
6932 /* Expand an ASM statement with operands, handling output operands
6933 that are not variables or INDIRECT_REFS by transforming such
6934 cases into cases that expand_asm_operands can handle.
6936 Arguments are same as for expand_asm_operands. */
6939 c_expand_asm_operands (string
, outputs
, inputs
, clobbers
, vol
, filename
, line
)
6940 tree string
, outputs
, inputs
, clobbers
;
6942 const char *filename
;
6945 int noutputs
= list_length (outputs
);
6947 /* o[I] is the place that output number I should be written. */
6948 tree
*o
= (tree
*) alloca (noutputs
* sizeof (tree
));
6951 /* Record the contents of OUTPUTS before it is modified. */
6952 for (i
= 0, tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
), i
++)
6953 o
[i
] = TREE_VALUE (tail
);
6955 /* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
6956 OUTPUTS some trees for where the values were actually stored. */
6957 expand_asm_operands (string
, outputs
, inputs
, clobbers
, vol
, filename
, line
);
6959 /* Copy all the intermediate outputs into the specified outputs. */
6960 for (i
= 0, tail
= outputs
; tail
; tail
= TREE_CHAIN (tail
), i
++)
6962 if (o
[i
] != TREE_VALUE (tail
))
6964 expand_expr (build_modify_expr (o
[i
], NOP_EXPR
, TREE_VALUE (tail
)),
6965 NULL_RTX
, VOIDmode
, EXPAND_NORMAL
);
6968 /* Restore the original value so that it's correct the next
6969 time we expand this function. */
6970 TREE_VALUE (tail
) = o
[i
];
6972 /* Detect modification of read-only values.
6973 (Otherwise done by build_modify_expr.) */
6976 tree type
= TREE_TYPE (o
[i
]);
6977 if (TREE_READONLY (o
[i
])
6978 || TYPE_READONLY (type
)
6979 || ((TREE_CODE (type
) == RECORD_TYPE
6980 || TREE_CODE (type
) == UNION_TYPE
)
6981 && C_TYPE_FIELDS_READONLY (type
)))
6982 readonly_warning (o
[i
], "modification by `asm'");
6986 /* Those MODIFY_EXPRs could do autoincrements. */
6990 /* Expand a C `return' statement.
6991 RETVAL is the expression for what to return,
6992 or a null pointer for `return;' with no value. */
6995 c_expand_return (retval
)
6998 tree valtype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
7000 if (TREE_THIS_VOLATILE (current_function_decl
))
7001 warning ("function declared `noreturn' has a `return' statement");
7005 current_function_returns_null
= 1;
7006 if ((warn_return_type
|| flag_isoc99
)
7007 && valtype
!= 0 && TREE_CODE (valtype
) != VOID_TYPE
)
7008 pedwarn_c99 ("`return' with no value, in function returning non-void");
7010 else if (valtype
== 0 || TREE_CODE (valtype
) == VOID_TYPE
)
7012 current_function_returns_null
= 1;
7013 if (pedantic
|| TREE_CODE (TREE_TYPE (retval
)) != VOID_TYPE
)
7014 pedwarn ("`return' with a value, in function returning void");
7018 tree t
= convert_for_assignment (valtype
, retval
, _("return"),
7019 NULL_TREE
, NULL_TREE
, 0);
7020 tree res
= DECL_RESULT (current_function_decl
);
7023 current_function_returns_value
= 1;
7024 if (t
== error_mark_node
)
7027 inner
= t
= convert (TREE_TYPE (res
), t
);
7029 /* Strip any conversions, additions, and subtractions, and see if
7030 we are returning the address of a local variable. Warn if so. */
7033 switch (TREE_CODE (inner
))
7035 case NOP_EXPR
: case NON_LVALUE_EXPR
: case CONVERT_EXPR
:
7037 inner
= TREE_OPERAND (inner
, 0);
7041 /* If the second operand of the MINUS_EXPR has a pointer
7042 type (or is converted from it), this may be valid, so
7043 don't give a warning. */
7045 tree op1
= TREE_OPERAND (inner
, 1);
7047 while (! POINTER_TYPE_P (TREE_TYPE (op1
))
7048 && (TREE_CODE (op1
) == NOP_EXPR
7049 || TREE_CODE (op1
) == NON_LVALUE_EXPR
7050 || TREE_CODE (op1
) == CONVERT_EXPR
))
7051 op1
= TREE_OPERAND (op1
, 0);
7053 if (POINTER_TYPE_P (TREE_TYPE (op1
)))
7056 inner
= TREE_OPERAND (inner
, 0);
7061 inner
= TREE_OPERAND (inner
, 0);
7063 while (TREE_CODE_CLASS (TREE_CODE (inner
)) == 'r')
7064 inner
= TREE_OPERAND (inner
, 0);
7066 if (TREE_CODE (inner
) == VAR_DECL
7067 && ! DECL_EXTERNAL (inner
)
7068 && ! TREE_STATIC (inner
)
7069 && DECL_CONTEXT (inner
) == current_function_decl
)
7070 warning ("function returns address of local variable");
7080 retval
= build (MODIFY_EXPR
, TREE_TYPE (res
), res
, t
);
7083 return add_stmt (build_return_stmt (retval
));
7087 /* The SWITCH_STMT being built. */
7089 /* A splay-tree mapping the low element of a case range to the high
7090 element, or NULL_TREE if there is no high element. Used to
7091 determine whether or not a new case label duplicates an old case
7092 label. We need a tree, rather than simply a hash table, because
7093 of the GNU case range extension. */
7095 /* The next node on the stack. */
7096 struct c_switch
*next
;
7099 /* A stack of the currently active switch statements. The innermost
7100 switch statement is on the top of the stack. There is no need to
7101 mark the stack for garbage collection because it is only active
7102 during the processing of the body of a function, and we never
7103 collect at that point. */
7105 static struct c_switch
*switch_stack
;
7107 /* Start a C switch statement, testing expression EXP. Return the new
7114 enum tree_code code
;
7115 tree type
, orig_type
= error_mark_node
;
7116 struct c_switch
*cs
;
7118 if (exp
!= error_mark_node
)
7120 code
= TREE_CODE (TREE_TYPE (exp
));
7121 orig_type
= TREE_TYPE (exp
);
7123 if (! INTEGRAL_TYPE_P (orig_type
)
7124 && code
!= ERROR_MARK
)
7126 error ("switch quantity not an integer");
7127 exp
= integer_zero_node
;
7131 type
= TYPE_MAIN_VARIANT (TREE_TYPE (exp
));
7133 if (warn_traditional
&& !in_system_header
7134 && (type
== long_integer_type_node
7135 || type
== long_unsigned_type_node
))
7136 warning ("`long' switch expression not converted to `int' in ISO C");
7138 exp
= default_conversion (exp
);
7139 type
= TREE_TYPE (exp
);
7143 /* Add this new SWITCH_STMT to the stack. */
7144 cs
= (struct c_switch
*) xmalloc (sizeof (*cs
));
7145 cs
->switch_stmt
= build_stmt (SWITCH_STMT
, exp
, NULL_TREE
, orig_type
);
7146 cs
->cases
= splay_tree_new (case_compare
, NULL
, NULL
);
7147 cs
->next
= switch_stack
;
7150 return add_stmt (switch_stack
->switch_stmt
);
7153 /* Process a case label. */
7156 do_case (low_value
, high_value
)
7160 tree label
= NULL_TREE
;
7164 label
= c_add_case_label (switch_stack
->cases
,
7165 SWITCH_COND (switch_stack
->switch_stmt
),
7166 low_value
, high_value
);
7167 if (label
== error_mark_node
)
7171 error ("case label not within a switch statement");
7173 error ("`default' label not within a switch statement");
7178 /* Finish the switch statement. */
7183 struct c_switch
*cs
= switch_stack
;
7185 RECHAIN_STMTS (cs
->switch_stmt
, SWITCH_BODY (cs
->switch_stmt
));
7187 /* Pop the stack. */
7188 switch_stack
= switch_stack
->next
;
7189 splay_tree_delete (cs
->cases
);