OSDN Git Service

* gcc-interface/gigi.h (gnat_build_constructor): Take a VEC instead
[pf3gnuchains/gcc-fork.git] / gcc / ada / gcc-interface / utils2.c
1 /****************************************************************************
2  *                                                                          *
3  *                         GNAT COMPILER COMPONENTS                         *
4  *                                                                          *
5  *                               U T I L S 2                                *
6  *                                                                          *
7  *                          C Implementation File                           *
8  *                                                                          *
9  *          Copyright (C) 1992-2010, Free Software Foundation, Inc.         *
10  *                                                                          *
11  * GNAT is free software;  you can  redistribute it  and/or modify it under *
12  * terms of the  GNU General Public License as published  by the Free Soft- *
13  * ware  Foundation;  either version 3,  or (at your option) any later ver- *
14  * sion.  GNAT is distributed in the hope that it will be useful, but WITH- *
15  * OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY *
16  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License *
17  * for  more details.  You should have received a copy of the GNU General   *
18  * Public License along with GCC; see the file COPYING3.  If not see        *
19  * <http://www.gnu.org/licenses/>.                                          *
20  *                                                                          *
21  * GNAT was originally developed  by the GNAT team at  New York University. *
22  * Extensive contributions were provided by Ada Core Technologies Inc.      *
23  *                                                                          *
24  ****************************************************************************/
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "tree.h"
31 #include "ggc.h"
32 #include "output.h"
33 #include "tree-inline.h"
34
35 #include "ada.h"
36 #include "types.h"
37 #include "atree.h"
38 #include "elists.h"
39 #include "namet.h"
40 #include "nlists.h"
41 #include "snames.h"
42 #include "stringt.h"
43 #include "uintp.h"
44 #include "fe.h"
45 #include "sinfo.h"
46 #include "einfo.h"
47 #include "ada-tree.h"
48 #include "gigi.h"
49
50 static tree find_common_type (tree, tree);
51 static tree compare_arrays (tree, tree, tree);
52 static tree nonbinary_modular_operation (enum tree_code, tree, tree, tree);
53 static tree build_simple_component_ref (tree, tree, tree, bool);
54 \f
55 /* Return the base type of TYPE.  */
56
57 tree
58 get_base_type (tree type)
59 {
60   if (TREE_CODE (type) == RECORD_TYPE
61       && TYPE_JUSTIFIED_MODULAR_P (type))
62     type = TREE_TYPE (TYPE_FIELDS (type));
63
64   while (TREE_TYPE (type)
65          && (TREE_CODE (type) == INTEGER_TYPE
66              || TREE_CODE (type) == REAL_TYPE))
67     type = TREE_TYPE (type);
68
69   return type;
70 }
71 \f
72 /* EXP is a GCC tree representing an address.  See if we can find how
73    strictly the object at that address is aligned.   Return that alignment
74    in bits.  If we don't know anything about the alignment, return 0.  */
75
76 unsigned int
77 known_alignment (tree exp)
78 {
79   unsigned int this_alignment;
80   unsigned int lhs, rhs;
81
82   switch (TREE_CODE (exp))
83     {
84     CASE_CONVERT:
85     case VIEW_CONVERT_EXPR:
86     case NON_LVALUE_EXPR:
87       /* Conversions between pointers and integers don't change the alignment
88          of the underlying object.  */
89       this_alignment = known_alignment (TREE_OPERAND (exp, 0));
90       break;
91
92     case COMPOUND_EXPR:
93       /* The value of a COMPOUND_EXPR is that of it's second operand.  */
94       this_alignment = known_alignment (TREE_OPERAND (exp, 1));
95       break;
96
97     case PLUS_EXPR:
98     case MINUS_EXPR:
99       /* If two address are added, the alignment of the result is the
100          minimum of the two alignments.  */
101       lhs = known_alignment (TREE_OPERAND (exp, 0));
102       rhs = known_alignment (TREE_OPERAND (exp, 1));
103       this_alignment = MIN (lhs, rhs);
104       break;
105
106     case POINTER_PLUS_EXPR:
107       lhs = known_alignment (TREE_OPERAND (exp, 0));
108       rhs = known_alignment (TREE_OPERAND (exp, 1));
109       /* If we don't know the alignment of the offset, we assume that
110          of the base.  */
111       if (rhs == 0)
112         this_alignment = lhs;
113       else
114         this_alignment = MIN (lhs, rhs);
115       break;
116
117     case COND_EXPR:
118       /* If there is a choice between two values, use the smallest one.  */
119       lhs = known_alignment (TREE_OPERAND (exp, 1));
120       rhs = known_alignment (TREE_OPERAND (exp, 2));
121       this_alignment = MIN (lhs, rhs);
122       break;
123
124     case INTEGER_CST:
125       {
126         unsigned HOST_WIDE_INT c = TREE_INT_CST_LOW (exp);
127         /* The first part of this represents the lowest bit in the constant,
128            but it is originally in bytes, not bits.  */
129         this_alignment = MIN (BITS_PER_UNIT * (c & -c), BIGGEST_ALIGNMENT);
130       }
131       break;
132
133     case MULT_EXPR:
134       /* If we know the alignment of just one side, use it.  Otherwise,
135          use the product of the alignments.  */
136       lhs = known_alignment (TREE_OPERAND (exp, 0));
137       rhs = known_alignment (TREE_OPERAND (exp, 1));
138
139       if (lhs == 0)
140         this_alignment = rhs;
141       else if (rhs == 0)
142         this_alignment = lhs;
143       else
144         this_alignment = MIN (lhs * rhs, BIGGEST_ALIGNMENT);
145       break;
146
147     case BIT_AND_EXPR:
148       /* A bit-and expression is as aligned as the maximum alignment of the
149          operands.  We typically get here for a complex lhs and a constant
150          negative power of two on the rhs to force an explicit alignment, so
151          don't bother looking at the lhs.  */
152       this_alignment = known_alignment (TREE_OPERAND (exp, 1));
153       break;
154
155     case ADDR_EXPR:
156       this_alignment = expr_align (TREE_OPERAND (exp, 0));
157       break;
158
159     case CALL_EXPR:
160       {
161         tree t = maybe_inline_call_in_expr (exp);
162         if (t)
163           return known_alignment (t);
164       }
165
166       /* Fall through... */
167
168     default:
169       /* For other pointer expressions, we assume that the pointed-to object
170          is at least as aligned as the pointed-to type.  Beware that we can
171          have a dummy type here (e.g. a Taft Amendment type), for which the
172          alignment is meaningless and should be ignored.  */
173       if (POINTER_TYPE_P (TREE_TYPE (exp))
174           && !TYPE_IS_DUMMY_P (TREE_TYPE (TREE_TYPE (exp))))
175         this_alignment = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (exp)));
176       else
177         this_alignment = 0;
178       break;
179     }
180
181   return this_alignment;
182 }
183 \f
184 /* We have a comparison or assignment operation on two types, T1 and T2, which
185    are either both array types or both record types.  T1 is assumed to be for
186    the left hand side operand, and T2 for the right hand side.  Return the
187    type that both operands should be converted to for the operation, if any.
188    Otherwise return zero.  */
189
190 static tree
191 find_common_type (tree t1, tree t2)
192 {
193   /* ??? As of today, various constructs lead here with types of different
194      sizes even when both constants (e.g. tagged types, packable vs regular
195      component types, padded vs unpadded types, ...).  While some of these
196      would better be handled upstream (types should be made consistent before
197      calling into build_binary_op), some others are really expected and we
198      have to be careful.  */
199
200   /* We must prevent writing more than what the target may hold if this is for
201      an assignment and the case of tagged types is handled in build_binary_op
202      so use the lhs type if it is known to be smaller, or of constant size and
203      the rhs type is not, whatever the modes.  We also force t1 in case of
204      constant size equality to minimize occurrences of view conversions on the
205      lhs of assignments.  */
206   if (TREE_CONSTANT (TYPE_SIZE (t1))
207       && (!TREE_CONSTANT (TYPE_SIZE (t2))
208           || !tree_int_cst_lt (TYPE_SIZE (t2), TYPE_SIZE (t1))))
209     return t1;
210
211   /* Otherwise, if the lhs type is non-BLKmode, use it.  Note that we know
212      that we will not have any alignment problems since, if we did, the
213      non-BLKmode type could not have been used.  */
214   if (TYPE_MODE (t1) != BLKmode)
215     return t1;
216
217   /* If the rhs type is of constant size, use it whatever the modes.  At
218      this point it is known to be smaller, or of constant size and the
219      lhs type is not.  */
220   if (TREE_CONSTANT (TYPE_SIZE (t2)))
221     return t2;
222
223   /* Otherwise, if the rhs type is non-BLKmode, use it.  */
224   if (TYPE_MODE (t2) != BLKmode)
225     return t2;
226
227   /* In this case, both types have variable size and BLKmode.  It's
228      probably best to leave the "type mismatch" because changing it
229      could cause a bad self-referential reference.  */
230   return NULL_TREE;
231 }
232 \f
233 /* Return an expression tree representing an equality comparison of A1 and A2,
234    two objects of type ARRAY_TYPE.  The result should be of type RESULT_TYPE.
235
236    Two arrays are equal in one of two ways: (1) if both have zero length in
237    some dimension (not necessarily the same dimension) or (2) if the lengths
238    in each dimension are equal and the data is equal.  We perform the length
239    tests in as efficient a manner as possible.  */
240
241 static tree
242 compare_arrays (tree result_type, tree a1, tree a2)
243 {
244   tree result = convert (result_type, boolean_true_node);
245   tree a1_is_null = convert (result_type, boolean_false_node);
246   tree a2_is_null = convert (result_type, boolean_false_node);
247   tree t1 = TREE_TYPE (a1);
248   tree t2 = TREE_TYPE (a2);
249   bool a1_side_effects_p = TREE_SIDE_EFFECTS (a1);
250   bool a2_side_effects_p = TREE_SIDE_EFFECTS (a2);
251   bool length_zero_p = false;
252
253   /* If either operand has side-effects, they have to be evaluated only once
254      in spite of the multiple references to the operand in the comparison.  */
255   if (a1_side_effects_p)
256     a1 = gnat_protect_expr (a1);
257
258   if (a2_side_effects_p)
259     a2 = gnat_protect_expr (a2);
260
261   /* Process each dimension separately and compare the lengths.  If any
262      dimension has a length known to be zero, set LENGTH_ZERO_P to true
263      in order to suppress the comparison of the data at the end.  */
264   while (TREE_CODE (t1) == ARRAY_TYPE && TREE_CODE (t2) == ARRAY_TYPE)
265     {
266       tree lb1 = TYPE_MIN_VALUE (TYPE_DOMAIN (t1));
267       tree ub1 = TYPE_MAX_VALUE (TYPE_DOMAIN (t1));
268       tree lb2 = TYPE_MIN_VALUE (TYPE_DOMAIN (t2));
269       tree ub2 = TYPE_MAX_VALUE (TYPE_DOMAIN (t2));
270       tree length1 = size_binop (PLUS_EXPR, size_binop (MINUS_EXPR, ub1, lb1),
271                                  size_one_node);
272       tree length2 = size_binop (PLUS_EXPR, size_binop (MINUS_EXPR, ub2, lb2),
273                                  size_one_node);
274       tree comparison, this_a1_is_null, this_a2_is_null;
275
276       /* If the length of the first array is a constant, swap our operands
277          unless the length of the second array is the constant zero.  */
278       if (TREE_CODE (length1) == INTEGER_CST && !integer_zerop (length2))
279         {
280           tree tem;
281           bool btem;
282
283           tem = a1, a1 = a2, a2 = tem;
284           tem = t1, t1 = t2, t2 = tem;
285           tem = lb1, lb1 = lb2, lb2 = tem;
286           tem = ub1, ub1 = ub2, ub2 = tem;
287           tem = length1, length1 = length2, length2 = tem;
288           tem = a1_is_null, a1_is_null = a2_is_null, a2_is_null = tem;
289           btem = a1_side_effects_p, a1_side_effects_p = a2_side_effects_p,
290           a2_side_effects_p = btem;
291         }
292
293       /* If the length of the second array is the constant zero, we can just
294          use the original stored bounds for the first array and see whether
295          last < first holds.  */
296       if (integer_zerop (length2))
297         {
298           length_zero_p = true;
299
300           ub1 = TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (t1)));
301           lb1 = TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (t1)));
302
303           comparison = build_binary_op (LT_EXPR, result_type, ub1, lb1);
304           comparison = SUBSTITUTE_PLACEHOLDER_IN_EXPR (comparison, a1);
305           if (EXPR_P (comparison))
306             SET_EXPR_LOCATION (comparison, input_location);
307
308           this_a1_is_null = comparison;
309           this_a2_is_null = convert (result_type, boolean_true_node);
310         }
311
312       /* Otherwise, if the length is some other constant value, we know that
313          this dimension in the second array cannot be superflat, so we can
314          just use its length computed from the actual stored bounds.  */
315       else if (TREE_CODE (length2) == INTEGER_CST)
316         {
317           tree bt;
318
319           ub1 = TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (t1)));
320           lb1 = TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (t1)));
321           /* Note that we know that UB2 and LB2 are constant and hence
322              cannot contain a PLACEHOLDER_EXPR.  */
323           ub2 = TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (t2)));
324           lb2 = TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (t2)));
325           bt = get_base_type (TREE_TYPE (ub1));
326
327           comparison
328             = build_binary_op (EQ_EXPR, result_type,
329                                build_binary_op (MINUS_EXPR, bt, ub1, lb1),
330                                build_binary_op (MINUS_EXPR, bt, ub2, lb2));
331           comparison = SUBSTITUTE_PLACEHOLDER_IN_EXPR (comparison, a1);
332           if (EXPR_P (comparison))
333             SET_EXPR_LOCATION (comparison, input_location);
334
335           this_a1_is_null = build_binary_op (LT_EXPR, result_type, ub1, lb1);
336           if (EXPR_P (this_a1_is_null))
337             SET_EXPR_LOCATION (this_a1_is_null, input_location);
338
339           this_a2_is_null = convert (result_type, boolean_false_node);
340         }
341
342       /* Otherwise, compare the computed lengths.  */
343       else
344         {
345           length1 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (length1, a1);
346           length2 = SUBSTITUTE_PLACEHOLDER_IN_EXPR (length2, a2);
347
348           comparison
349             = build_binary_op (EQ_EXPR, result_type, length1, length2);
350           if (EXPR_P (comparison))
351             SET_EXPR_LOCATION (comparison, input_location);
352
353           /* If the length expression is of the form (cond ? val : 0), assume
354              that cond is equivalent to (length != 0).  That's guaranteed by
355              construction of the array types in gnat_to_gnu_entity.  */
356           if (TREE_CODE (length1) == COND_EXPR
357               && integer_zerop (TREE_OPERAND (length1, 2)))
358             this_a1_is_null = invert_truthvalue (TREE_OPERAND (length1, 0));
359           else
360             this_a1_is_null = build_binary_op (EQ_EXPR, result_type, length1,
361                                                size_zero_node);
362           if (EXPR_P (this_a1_is_null))
363             SET_EXPR_LOCATION (this_a1_is_null, input_location);
364
365           /* Likewise for the second array.  */
366           if (TREE_CODE (length2) == COND_EXPR
367               && integer_zerop (TREE_OPERAND (length2, 2)))
368             this_a2_is_null = invert_truthvalue (TREE_OPERAND (length2, 0));
369           else
370             this_a2_is_null = build_binary_op (EQ_EXPR, result_type, length2,
371                                                size_zero_node);
372           if (EXPR_P (this_a2_is_null))
373             SET_EXPR_LOCATION (this_a2_is_null, input_location);
374         }
375
376       /* Append expressions for this dimension to the final expressions.  */
377       result = build_binary_op (TRUTH_ANDIF_EXPR, result_type,
378                                 result, comparison);
379
380       a1_is_null = build_binary_op (TRUTH_ORIF_EXPR, result_type,
381                                     this_a1_is_null, a1_is_null);
382
383       a2_is_null = build_binary_op (TRUTH_ORIF_EXPR, result_type,
384                                     this_a2_is_null, a2_is_null);
385
386       t1 = TREE_TYPE (t1);
387       t2 = TREE_TYPE (t2);
388     }
389
390   /* Unless the length of some dimension is known to be zero, compare the
391      data in the array.  */
392   if (!length_zero_p)
393     {
394       tree type = find_common_type (TREE_TYPE (a1), TREE_TYPE (a2));
395       tree comparison;
396
397       if (type)
398         {
399           a1 = convert (type, a1),
400           a2 = convert (type, a2);
401         }
402
403       comparison = fold_build2 (EQ_EXPR, result_type, a1, a2);
404       if (EXPR_P (comparison))
405         SET_EXPR_LOCATION (comparison, input_location);
406
407       result
408         = build_binary_op (TRUTH_ANDIF_EXPR, result_type, result, comparison);
409     }
410
411   /* The result is also true if both sizes are zero.  */
412   result = build_binary_op (TRUTH_ORIF_EXPR, result_type,
413                             build_binary_op (TRUTH_ANDIF_EXPR, result_type,
414                                              a1_is_null, a2_is_null),
415                             result);
416
417   /* If either operand has side-effects, they have to be evaluated before
418      starting the comparison above since the place they would be otherwise
419      evaluated could be wrong.  */
420   if (a1_side_effects_p)
421     result = build2 (COMPOUND_EXPR, result_type, a1, result);
422
423   if (a2_side_effects_p)
424     result = build2 (COMPOUND_EXPR, result_type, a2, result);
425
426   return result;
427 }
428 \f
429 /* Compute the result of applying OP_CODE to LHS and RHS, where both are of
430    type TYPE.  We know that TYPE is a modular type with a nonbinary
431    modulus.  */
432
433 static tree
434 nonbinary_modular_operation (enum tree_code op_code, tree type, tree lhs,
435                              tree rhs)
436 {
437   tree modulus = TYPE_MODULUS (type);
438   unsigned int needed_precision = tree_floor_log2 (modulus) + 1;
439   unsigned int precision;
440   bool unsignedp = true;
441   tree op_type = type;
442   tree result;
443
444   /* If this is an addition of a constant, convert it to a subtraction
445      of a constant since we can do that faster.  */
446   if (op_code == PLUS_EXPR && TREE_CODE (rhs) == INTEGER_CST)
447     {
448       rhs = fold_build2 (MINUS_EXPR, type, modulus, rhs);
449       op_code = MINUS_EXPR;
450     }
451
452   /* For the logical operations, we only need PRECISION bits.  For
453      addition and subtraction, we need one more and for multiplication we
454      need twice as many.  But we never want to make a size smaller than
455      our size. */
456   if (op_code == PLUS_EXPR || op_code == MINUS_EXPR)
457     needed_precision += 1;
458   else if (op_code == MULT_EXPR)
459     needed_precision *= 2;
460
461   precision = MAX (needed_precision, TYPE_PRECISION (op_type));
462
463   /* Unsigned will do for everything but subtraction.  */
464   if (op_code == MINUS_EXPR)
465     unsignedp = false;
466
467   /* If our type is the wrong signedness or isn't wide enough, make a new
468      type and convert both our operands to it.  */
469   if (TYPE_PRECISION (op_type) < precision
470       || TYPE_UNSIGNED (op_type) != unsignedp)
471     {
472       /* Copy the node so we ensure it can be modified to make it modular.  */
473       op_type = copy_node (gnat_type_for_size (precision, unsignedp));
474       modulus = convert (op_type, modulus);
475       SET_TYPE_MODULUS (op_type, modulus);
476       TYPE_MODULAR_P (op_type) = 1;
477       lhs = convert (op_type, lhs);
478       rhs = convert (op_type, rhs);
479     }
480
481   /* Do the operation, then we'll fix it up.  */
482   result = fold_build2 (op_code, op_type, lhs, rhs);
483
484   /* For multiplication, we have no choice but to do a full modulus
485      operation.  However, we want to do this in the narrowest
486      possible size.  */
487   if (op_code == MULT_EXPR)
488     {
489       tree div_type = copy_node (gnat_type_for_size (needed_precision, 1));
490       modulus = convert (div_type, modulus);
491       SET_TYPE_MODULUS (div_type, modulus);
492       TYPE_MODULAR_P (div_type) = 1;
493       result = convert (op_type,
494                         fold_build2 (TRUNC_MOD_EXPR, div_type,
495                                      convert (div_type, result), modulus));
496     }
497
498   /* For subtraction, add the modulus back if we are negative.  */
499   else if (op_code == MINUS_EXPR)
500     {
501       result = gnat_protect_expr (result);
502       result = fold_build3 (COND_EXPR, op_type,
503                             fold_build2 (LT_EXPR, boolean_type_node, result,
504                                          convert (op_type, integer_zero_node)),
505                             fold_build2 (PLUS_EXPR, op_type, result, modulus),
506                             result);
507     }
508
509   /* For the other operations, subtract the modulus if we are >= it.  */
510   else
511     {
512       result = gnat_protect_expr (result);
513       result = fold_build3 (COND_EXPR, op_type,
514                             fold_build2 (GE_EXPR, boolean_type_node,
515                                          result, modulus),
516                             fold_build2 (MINUS_EXPR, op_type,
517                                          result, modulus),
518                             result);
519     }
520
521   return convert (type, result);
522 }
523 \f
524 /* Make a binary operation of kind OP_CODE.  RESULT_TYPE is the type
525    desired for the result.  Usually the operation is to be performed
526    in that type.  For MODIFY_EXPR and ARRAY_REF, RESULT_TYPE may be 0
527    in which case the type to be used will be derived from the operands.
528
529    This function is very much unlike the ones for C and C++ since we
530    have already done any type conversion and matching required.  All we
531    have to do here is validate the work done by SEM and handle subtypes.  */
532
533 tree
534 build_binary_op (enum tree_code op_code, tree result_type,
535                  tree left_operand, tree right_operand)
536 {
537   tree left_type  = TREE_TYPE (left_operand);
538   tree right_type = TREE_TYPE (right_operand);
539   tree left_base_type = get_base_type (left_type);
540   tree right_base_type = get_base_type (right_type);
541   tree operation_type = result_type;
542   tree best_type = NULL_TREE;
543   tree modulus, result;
544   bool has_side_effects = false;
545
546   if (operation_type
547       && TREE_CODE (operation_type) == RECORD_TYPE
548       && TYPE_JUSTIFIED_MODULAR_P (operation_type))
549     operation_type = TREE_TYPE (TYPE_FIELDS (operation_type));
550
551   if (operation_type
552       && !AGGREGATE_TYPE_P (operation_type)
553       && TYPE_EXTRA_SUBTYPE_P (operation_type))
554     operation_type = get_base_type (operation_type);
555
556   modulus = (operation_type
557              && TREE_CODE (operation_type) == INTEGER_TYPE
558              && TYPE_MODULAR_P (operation_type)
559              ? TYPE_MODULUS (operation_type) : NULL_TREE);
560
561   switch (op_code)
562     {
563     case INIT_EXPR:
564     case MODIFY_EXPR:
565       /* If there were integral or pointer conversions on the LHS, remove
566          them; we'll be putting them back below if needed.  Likewise for
567          conversions between array and record types, except for justified
568          modular types.  But don't do this if the right operand is not
569          BLKmode (for packed arrays) unless we are not changing the mode.  */
570       while ((CONVERT_EXPR_P (left_operand)
571               || TREE_CODE (left_operand) == VIEW_CONVERT_EXPR)
572              && (((INTEGRAL_TYPE_P (left_type)
573                    || POINTER_TYPE_P (left_type))
574                   && (INTEGRAL_TYPE_P (TREE_TYPE
575                                        (TREE_OPERAND (left_operand, 0)))
576                       || POINTER_TYPE_P (TREE_TYPE
577                                          (TREE_OPERAND (left_operand, 0)))))
578                  || (((TREE_CODE (left_type) == RECORD_TYPE
579                        && !TYPE_JUSTIFIED_MODULAR_P (left_type))
580                       || TREE_CODE (left_type) == ARRAY_TYPE)
581                      && ((TREE_CODE (TREE_TYPE
582                                      (TREE_OPERAND (left_operand, 0)))
583                           == RECORD_TYPE)
584                          || (TREE_CODE (TREE_TYPE
585                                         (TREE_OPERAND (left_operand, 0)))
586                              == ARRAY_TYPE))
587                      && (TYPE_MODE (right_type) == BLKmode
588                          || (TYPE_MODE (left_type)
589                              == TYPE_MODE (TREE_TYPE
590                                            (TREE_OPERAND
591                                             (left_operand, 0))))))))
592         {
593           left_operand = TREE_OPERAND (left_operand, 0);
594           left_type = TREE_TYPE (left_operand);
595         }
596
597       /* If a class-wide type may be involved, force use of the RHS type.  */
598       if ((TREE_CODE (right_type) == RECORD_TYPE
599            || TREE_CODE (right_type) == UNION_TYPE)
600           && TYPE_ALIGN_OK (right_type))
601         operation_type = right_type;
602
603       /* If we are copying between padded objects with compatible types, use
604          the padded view of the objects, this is very likely more efficient.
605          Likewise for a padded object that is assigned a constructor, if we
606          can convert the constructor to the inner type, to avoid putting a
607          VIEW_CONVERT_EXPR on the LHS.  But don't do so if we wouldn't have
608          actually copied anything.  */
609       else if (TYPE_IS_PADDING_P (left_type)
610                && TREE_CONSTANT (TYPE_SIZE (left_type))
611                && ((TREE_CODE (right_operand) == COMPONENT_REF
612                     && TYPE_IS_PADDING_P
613                        (TREE_TYPE (TREE_OPERAND (right_operand, 0)))
614                     && gnat_types_compatible_p
615                        (left_type,
616                         TREE_TYPE (TREE_OPERAND (right_operand, 0))))
617                    || (TREE_CODE (right_operand) == CONSTRUCTOR
618                        && !CONTAINS_PLACEHOLDER_P
619                            (DECL_SIZE (TYPE_FIELDS (left_type)))))
620                && !integer_zerop (TYPE_SIZE (right_type)))
621         operation_type = left_type;
622
623       /* Find the best type to use for copying between aggregate types.  */
624       else if (((TREE_CODE (left_type) == ARRAY_TYPE
625                  && TREE_CODE (right_type) == ARRAY_TYPE)
626                 || (TREE_CODE (left_type) == RECORD_TYPE
627                     && TREE_CODE (right_type) == RECORD_TYPE))
628                && (best_type = find_common_type (left_type, right_type)))
629         operation_type = best_type;
630
631       /* Otherwise use the LHS type.  */
632       else if (!operation_type)
633         operation_type = left_type;
634
635       /* Ensure everything on the LHS is valid.  If we have a field reference,
636          strip anything that get_inner_reference can handle.  Then remove any
637          conversions between types having the same code and mode.  And mark
638          VIEW_CONVERT_EXPRs with TREE_ADDRESSABLE.  When done, we must have
639          either an INDIRECT_REF, a NULL_EXPR or a DECL node.  */
640       result = left_operand;
641       while (true)
642         {
643           tree restype = TREE_TYPE (result);
644
645           if (TREE_CODE (result) == COMPONENT_REF
646               || TREE_CODE (result) == ARRAY_REF
647               || TREE_CODE (result) == ARRAY_RANGE_REF)
648             while (handled_component_p (result))
649               result = TREE_OPERAND (result, 0);
650           else if (TREE_CODE (result) == REALPART_EXPR
651                    || TREE_CODE (result) == IMAGPART_EXPR
652                    || (CONVERT_EXPR_P (result)
653                        && (((TREE_CODE (restype)
654                              == TREE_CODE (TREE_TYPE
655                                            (TREE_OPERAND (result, 0))))
656                              && (TYPE_MODE (TREE_TYPE
657                                             (TREE_OPERAND (result, 0)))
658                                  == TYPE_MODE (restype)))
659                            || TYPE_ALIGN_OK (restype))))
660             result = TREE_OPERAND (result, 0);
661           else if (TREE_CODE (result) == VIEW_CONVERT_EXPR)
662             {
663               TREE_ADDRESSABLE (result) = 1;
664               result = TREE_OPERAND (result, 0);
665             }
666           else
667             break;
668         }
669
670       gcc_assert (TREE_CODE (result) == INDIRECT_REF
671                   || TREE_CODE (result) == NULL_EXPR
672                   || DECL_P (result));
673
674       /* Convert the right operand to the operation type unless it is
675          either already of the correct type or if the type involves a
676          placeholder, since the RHS may not have the same record type.  */
677       if (operation_type != right_type
678           && !CONTAINS_PLACEHOLDER_P (TYPE_SIZE (operation_type)))
679         {
680           right_operand = convert (operation_type, right_operand);
681           right_type = operation_type;
682         }
683
684       /* If the left operand is not of the same type as the operation
685          type, wrap it up in a VIEW_CONVERT_EXPR.  */
686       if (left_type != operation_type)
687         left_operand = unchecked_convert (operation_type, left_operand, false);
688
689       has_side_effects = true;
690       modulus = NULL_TREE;
691       break;
692
693     case ARRAY_REF:
694       if (!operation_type)
695         operation_type = TREE_TYPE (left_type);
696
697       /* ... fall through ... */
698
699     case ARRAY_RANGE_REF:
700       /* First look through conversion between type variants.  Note that
701          this changes neither the operation type nor the type domain.  */
702       if (TREE_CODE (left_operand) == VIEW_CONVERT_EXPR
703           && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (left_operand, 0)))
704              == TYPE_MAIN_VARIANT (left_type))
705         {
706           left_operand = TREE_OPERAND (left_operand, 0);
707           left_type = TREE_TYPE (left_operand);
708         }
709
710       /* For a range, make sure the element type is consistent.  */
711       if (op_code == ARRAY_RANGE_REF
712           && TREE_TYPE (operation_type) != TREE_TYPE (left_type))
713         operation_type = build_array_type (TREE_TYPE (left_type),
714                                            TYPE_DOMAIN (operation_type));
715
716       /* Then convert the right operand to its base type.  This will prevent
717          unneeded sign conversions when sizetype is wider than integer.  */
718       right_operand = convert (right_base_type, right_operand);
719       right_operand = convert (sizetype, right_operand);
720
721       if (!TREE_CONSTANT (right_operand)
722           || !TREE_CONSTANT (TYPE_MIN_VALUE (right_type)))
723         gnat_mark_addressable (left_operand);
724
725       modulus = NULL_TREE;
726       break;
727
728     case TRUTH_ANDIF_EXPR:
729     case TRUTH_ORIF_EXPR:
730     case TRUTH_AND_EXPR:
731     case TRUTH_OR_EXPR:
732     case TRUTH_XOR_EXPR:
733 #ifdef ENABLE_CHECKING
734       gcc_assert (TREE_CODE (get_base_type (result_type)) == BOOLEAN_TYPE);
735 #endif
736       operation_type = left_base_type;
737       left_operand = convert (operation_type, left_operand);
738       right_operand = convert (operation_type, right_operand);
739       break;
740
741     case GE_EXPR:
742     case LE_EXPR:
743     case GT_EXPR:
744     case LT_EXPR:
745     case EQ_EXPR:
746     case NE_EXPR:
747 #ifdef ENABLE_CHECKING
748       gcc_assert (TREE_CODE (get_base_type (result_type)) == BOOLEAN_TYPE);
749 #endif
750       /* If either operand is a NULL_EXPR, just return a new one.  */
751       if (TREE_CODE (left_operand) == NULL_EXPR)
752         return build2 (op_code, result_type,
753                        build1 (NULL_EXPR, integer_type_node,
754                                TREE_OPERAND (left_operand, 0)),
755                        integer_zero_node);
756
757       else if (TREE_CODE (right_operand) == NULL_EXPR)
758         return build2 (op_code, result_type,
759                        build1 (NULL_EXPR, integer_type_node,
760                                TREE_OPERAND (right_operand, 0)),
761                        integer_zero_node);
762
763       /* If either object is a justified modular types, get the
764          fields from within.  */
765       if (TREE_CODE (left_type) == RECORD_TYPE
766           && TYPE_JUSTIFIED_MODULAR_P (left_type))
767         {
768           left_operand = convert (TREE_TYPE (TYPE_FIELDS (left_type)),
769                                   left_operand);
770           left_type = TREE_TYPE (left_operand);
771           left_base_type = get_base_type (left_type);
772         }
773
774       if (TREE_CODE (right_type) == RECORD_TYPE
775           && TYPE_JUSTIFIED_MODULAR_P (right_type))
776         {
777           right_operand = convert (TREE_TYPE (TYPE_FIELDS (right_type)),
778                                   right_operand);
779           right_type = TREE_TYPE (right_operand);
780           right_base_type = get_base_type (right_type);
781         }
782
783       /* If both objects are arrays, compare them specially.  */
784       if ((TREE_CODE (left_type) == ARRAY_TYPE
785            || (TREE_CODE (left_type) == INTEGER_TYPE
786                && TYPE_HAS_ACTUAL_BOUNDS_P (left_type)))
787           && (TREE_CODE (right_type) == ARRAY_TYPE
788               || (TREE_CODE (right_type) == INTEGER_TYPE
789                   && TYPE_HAS_ACTUAL_BOUNDS_P (right_type))))
790         {
791           result = compare_arrays (result_type, left_operand, right_operand);
792
793           if (op_code == NE_EXPR)
794             result = invert_truthvalue (result);
795           else
796             gcc_assert (op_code == EQ_EXPR);
797
798           return result;
799         }
800
801       /* Otherwise, the base types must be the same, unless they are both fat
802          pointer types or record types.  In the latter case, use the best type
803          and convert both operands to that type.  */
804       if (left_base_type != right_base_type)
805         {
806           if (TYPE_IS_FAT_POINTER_P (left_base_type)
807               && TYPE_IS_FAT_POINTER_P (right_base_type))
808             {
809               gcc_assert (TYPE_MAIN_VARIANT (left_base_type)
810                           == TYPE_MAIN_VARIANT (right_base_type));
811               best_type = left_base_type;
812             }
813
814           else if (TREE_CODE (left_base_type) == RECORD_TYPE
815                    && TREE_CODE (right_base_type) == RECORD_TYPE)
816             {
817               /* The only way this is permitted is if both types have the same
818                  name.  In that case, one of them must not be self-referential.
819                  Use it as the best type.  Even better with a fixed size.  */
820               gcc_assert (TYPE_NAME (left_base_type)
821                           && TYPE_NAME (left_base_type)
822                              == TYPE_NAME (right_base_type));
823
824               if (TREE_CONSTANT (TYPE_SIZE (left_base_type)))
825                 best_type = left_base_type;
826               else if (TREE_CONSTANT (TYPE_SIZE (right_base_type)))
827                 best_type = right_base_type;
828               else if (!CONTAINS_PLACEHOLDER_P (TYPE_SIZE (left_base_type)))
829                 best_type = left_base_type;
830               else if (!CONTAINS_PLACEHOLDER_P (TYPE_SIZE (right_base_type)))
831                 best_type = right_base_type;
832               else
833                 gcc_unreachable ();
834             }
835
836           else
837             gcc_unreachable ();
838
839           left_operand = convert (best_type, left_operand);
840           right_operand = convert (best_type, right_operand);
841         }
842       else
843         {
844           left_operand = convert (left_base_type, left_operand);
845           right_operand = convert (right_base_type, right_operand);
846         }
847
848       /* If we are comparing a fat pointer against zero, we just need to
849          compare the data pointer.  */
850       if (TYPE_IS_FAT_POINTER_P (left_base_type)
851           && TREE_CODE (right_operand) == CONSTRUCTOR
852           && integer_zerop (VEC_index (constructor_elt,
853                                        CONSTRUCTOR_ELTS (right_operand),
854                                        0)->value))
855         {
856           left_operand
857             = build_component_ref (left_operand, NULL_TREE,
858                                    TYPE_FIELDS (left_base_type), false);
859           right_operand
860             = convert (TREE_TYPE (left_operand), integer_zero_node);
861         }
862
863       modulus = NULL_TREE;
864       break;
865
866     case LSHIFT_EXPR:
867     case RSHIFT_EXPR:
868     case LROTATE_EXPR:
869     case RROTATE_EXPR:
870        /* The RHS of a shift can be any type.  Also, ignore any modulus
871          (we used to abort, but this is needed for unchecked conversion
872          to modular types).  Otherwise, processing is the same as normal.  */
873       gcc_assert (operation_type == left_base_type);
874       modulus = NULL_TREE;
875       left_operand = convert (operation_type, left_operand);
876       break;
877
878     case BIT_AND_EXPR:
879     case BIT_IOR_EXPR:
880     case BIT_XOR_EXPR:
881       /* For binary modulus, if the inputs are in range, so are the
882          outputs.  */
883       if (modulus && integer_pow2p (modulus))
884         modulus = NULL_TREE;
885       goto common;
886
887     case COMPLEX_EXPR:
888       gcc_assert (TREE_TYPE (result_type) == left_base_type
889                   && TREE_TYPE (result_type) == right_base_type);
890       left_operand = convert (left_base_type, left_operand);
891       right_operand = convert (right_base_type, right_operand);
892       break;
893
894     case TRUNC_DIV_EXPR:   case TRUNC_MOD_EXPR:
895     case CEIL_DIV_EXPR:    case CEIL_MOD_EXPR:
896     case FLOOR_DIV_EXPR:   case FLOOR_MOD_EXPR:
897     case ROUND_DIV_EXPR:   case ROUND_MOD_EXPR:
898       /* These always produce results lower than either operand.  */
899       modulus = NULL_TREE;
900       goto common;
901
902     case POINTER_PLUS_EXPR:
903       gcc_assert (operation_type == left_base_type
904                   && sizetype == right_base_type);
905       left_operand = convert (operation_type, left_operand);
906       right_operand = convert (sizetype, right_operand);
907       break;
908
909     case PLUS_NOMOD_EXPR:
910     case MINUS_NOMOD_EXPR:
911       if (op_code == PLUS_NOMOD_EXPR)
912         op_code = PLUS_EXPR;
913       else
914         op_code = MINUS_EXPR;
915       modulus = NULL_TREE;
916
917       /* ... fall through ... */
918
919     case PLUS_EXPR:
920     case MINUS_EXPR:
921       /* Avoid doing arithmetics in ENUMERAL_TYPE or BOOLEAN_TYPE like the
922          other compilers.  Contrary to C, Ada doesn't allow arithmetics in
923          these types but can generate addition/subtraction for Succ/Pred.  */
924       if (operation_type
925           && (TREE_CODE (operation_type) == ENUMERAL_TYPE
926               || TREE_CODE (operation_type) == BOOLEAN_TYPE))
927         operation_type = left_base_type = right_base_type
928           = gnat_type_for_mode (TYPE_MODE (operation_type),
929                                 TYPE_UNSIGNED (operation_type));
930
931       /* ... fall through ... */
932
933     default:
934     common:
935       /* The result type should be the same as the base types of the
936          both operands (and they should be the same).  Convert
937          everything to the result type.  */
938
939       gcc_assert (operation_type == left_base_type
940                   && left_base_type == right_base_type);
941       left_operand = convert (operation_type, left_operand);
942       right_operand = convert (operation_type, right_operand);
943     }
944
945   if (modulus && !integer_pow2p (modulus))
946     {
947       result = nonbinary_modular_operation (op_code, operation_type,
948                                             left_operand, right_operand);
949       modulus = NULL_TREE;
950     }
951   /* If either operand is a NULL_EXPR, just return a new one.  */
952   else if (TREE_CODE (left_operand) == NULL_EXPR)
953     return build1 (NULL_EXPR, operation_type, TREE_OPERAND (left_operand, 0));
954   else if (TREE_CODE (right_operand) == NULL_EXPR)
955     return build1 (NULL_EXPR, operation_type, TREE_OPERAND (right_operand, 0));
956   else if (op_code == ARRAY_REF || op_code == ARRAY_RANGE_REF)
957     result = fold (build4 (op_code, operation_type, left_operand,
958                            right_operand, NULL_TREE, NULL_TREE));
959   else
960     result
961       = fold_build2 (op_code, operation_type, left_operand, right_operand);
962
963   TREE_SIDE_EFFECTS (result) |= has_side_effects;
964   TREE_CONSTANT (result)
965     |= (TREE_CONSTANT (left_operand) & TREE_CONSTANT (right_operand)
966         && op_code != ARRAY_REF && op_code != ARRAY_RANGE_REF);
967
968   if ((op_code == ARRAY_REF || op_code == ARRAY_RANGE_REF)
969       && TYPE_VOLATILE (operation_type))
970     TREE_THIS_VOLATILE (result) = 1;
971
972   /* If we are working with modular types, perform the MOD operation
973      if something above hasn't eliminated the need for it.  */
974   if (modulus)
975     result = fold_build2 (FLOOR_MOD_EXPR, operation_type, result,
976                           convert (operation_type, modulus));
977
978   if (result_type && result_type != operation_type)
979     result = convert (result_type, result);
980
981   return result;
982 }
983 \f
984 /* Similar, but for unary operations.  */
985
986 tree
987 build_unary_op (enum tree_code op_code, tree result_type, tree operand)
988 {
989   tree type = TREE_TYPE (operand);
990   tree base_type = get_base_type (type);
991   tree operation_type = result_type;
992   tree result;
993   bool side_effects = false;
994
995   if (operation_type
996       && TREE_CODE (operation_type) == RECORD_TYPE
997       && TYPE_JUSTIFIED_MODULAR_P (operation_type))
998     operation_type = TREE_TYPE (TYPE_FIELDS (operation_type));
999
1000   if (operation_type
1001       && !AGGREGATE_TYPE_P (operation_type)
1002       && TYPE_EXTRA_SUBTYPE_P (operation_type))
1003     operation_type = get_base_type (operation_type);
1004
1005   switch (op_code)
1006     {
1007     case REALPART_EXPR:
1008     case IMAGPART_EXPR:
1009       if (!operation_type)
1010         result_type = operation_type = TREE_TYPE (type);
1011       else
1012         gcc_assert (result_type == TREE_TYPE (type));
1013
1014       result = fold_build1 (op_code, operation_type, operand);
1015       break;
1016
1017     case TRUTH_NOT_EXPR:
1018 #ifdef ENABLE_CHECKING
1019       gcc_assert (TREE_CODE (get_base_type (result_type)) == BOOLEAN_TYPE);
1020 #endif
1021       result = invert_truthvalue (operand);
1022       break;
1023
1024     case ATTR_ADDR_EXPR:
1025     case ADDR_EXPR:
1026       switch (TREE_CODE (operand))
1027         {
1028         case INDIRECT_REF:
1029         case UNCONSTRAINED_ARRAY_REF:
1030           result = TREE_OPERAND (operand, 0);
1031
1032           /* Make sure the type here is a pointer, not a reference.
1033              GCC wants pointer types for function addresses.  */
1034           if (!result_type)
1035             result_type = build_pointer_type (type);
1036
1037           /* If the underlying object can alias everything, propagate the
1038              property since we are effectively retrieving the object.  */
1039           if (POINTER_TYPE_P (TREE_TYPE (result))
1040               && TYPE_REF_CAN_ALIAS_ALL (TREE_TYPE (result)))
1041             {
1042               if (TREE_CODE (result_type) == POINTER_TYPE
1043                   && !TYPE_REF_CAN_ALIAS_ALL (result_type))
1044                 result_type
1045                   = build_pointer_type_for_mode (TREE_TYPE (result_type),
1046                                                  TYPE_MODE (result_type),
1047                                                  true);
1048               else if (TREE_CODE (result_type) == REFERENCE_TYPE
1049                        && !TYPE_REF_CAN_ALIAS_ALL (result_type))
1050                 result_type
1051                   = build_reference_type_for_mode (TREE_TYPE (result_type),
1052                                                    TYPE_MODE (result_type),
1053                                                    true);
1054             }
1055           break;
1056
1057         case NULL_EXPR:
1058           result = operand;
1059           TREE_TYPE (result) = type = build_pointer_type (type);
1060           break;
1061
1062         case COMPOUND_EXPR:
1063           /* Fold a compound expression if it has unconstrained array type
1064              since the middle-end cannot handle it.  But we don't it in the
1065              general case because it may introduce aliasing issues if the
1066              first operand is an indirect assignment and the second operand
1067              the corresponding address, e.g. for an allocator.  */
1068           if (TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
1069             {
1070               result = build_unary_op (ADDR_EXPR, result_type,
1071                                        TREE_OPERAND (operand, 1));
1072               result = build2 (COMPOUND_EXPR, TREE_TYPE (result),
1073                                TREE_OPERAND (operand, 0), result);
1074               break;
1075             }
1076           goto common;
1077
1078         case ARRAY_REF:
1079         case ARRAY_RANGE_REF:
1080         case COMPONENT_REF:
1081         case BIT_FIELD_REF:
1082             /* If this is for 'Address, find the address of the prefix and add
1083                the offset to the field.  Otherwise, do this the normal way.  */
1084           if (op_code == ATTR_ADDR_EXPR)
1085             {
1086               HOST_WIDE_INT bitsize;
1087               HOST_WIDE_INT bitpos;
1088               tree offset, inner;
1089               enum machine_mode mode;
1090               int unsignedp, volatilep;
1091
1092               inner = get_inner_reference (operand, &bitsize, &bitpos, &offset,
1093                                            &mode, &unsignedp, &volatilep,
1094                                            false);
1095
1096               /* If INNER is a padding type whose field has a self-referential
1097                  size, convert to that inner type.  We know the offset is zero
1098                  and we need to have that type visible.  */
1099               if (TYPE_IS_PADDING_P (TREE_TYPE (inner))
1100                   && CONTAINS_PLACEHOLDER_P
1101                      (TYPE_SIZE (TREE_TYPE (TYPE_FIELDS
1102                                             (TREE_TYPE (inner))))))
1103                 inner = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (inner))),
1104                                  inner);
1105
1106               /* Compute the offset as a byte offset from INNER.  */
1107               if (!offset)
1108                 offset = size_zero_node;
1109
1110               offset = size_binop (PLUS_EXPR, offset,
1111                                    size_int (bitpos / BITS_PER_UNIT));
1112
1113               /* Take the address of INNER, convert the offset to void *, and
1114                  add then.  It will later be converted to the desired result
1115                  type, if any.  */
1116               inner = build_unary_op (ADDR_EXPR, NULL_TREE, inner);
1117               inner = convert (ptr_void_type_node, inner);
1118               result = build_binary_op (POINTER_PLUS_EXPR, ptr_void_type_node,
1119                                         inner, offset);
1120               result = convert (build_pointer_type (TREE_TYPE (operand)),
1121                                 result);
1122               break;
1123             }
1124           goto common;
1125
1126         case CONSTRUCTOR:
1127           /* If this is just a constructor for a padded record, we can
1128              just take the address of the single field and convert it to
1129              a pointer to our type.  */
1130           if (TYPE_IS_PADDING_P (type))
1131             {
1132               result = VEC_index (constructor_elt,
1133                                   CONSTRUCTOR_ELTS (operand),
1134                                   0)->value;
1135               result = convert (build_pointer_type (TREE_TYPE (operand)),
1136                                 build_unary_op (ADDR_EXPR, NULL_TREE, result));
1137               break;
1138             }
1139
1140           goto common;
1141
1142         case NOP_EXPR:
1143           if (AGGREGATE_TYPE_P (type)
1144               && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (operand, 0))))
1145             return build_unary_op (ADDR_EXPR, result_type,
1146                                    TREE_OPERAND (operand, 0));
1147
1148           /* ... fallthru ... */
1149
1150         case VIEW_CONVERT_EXPR:
1151           /* If this just a variant conversion or if the conversion doesn't
1152              change the mode, get the result type from this type and go down.
1153              This is needed for conversions of CONST_DECLs, to eventually get
1154              to the address of their CORRESPONDING_VARs.  */
1155           if ((TYPE_MAIN_VARIANT (type)
1156                == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (operand, 0))))
1157               || (TYPE_MODE (type) != BLKmode
1158                   && (TYPE_MODE (type)
1159                       == TYPE_MODE (TREE_TYPE (TREE_OPERAND (operand, 0))))))
1160             return build_unary_op (ADDR_EXPR,
1161                                    (result_type ? result_type
1162                                     : build_pointer_type (type)),
1163                                    TREE_OPERAND (operand, 0));
1164           goto common;
1165
1166         case CONST_DECL:
1167           operand = DECL_CONST_CORRESPONDING_VAR (operand);
1168
1169           /* ... fall through ... */
1170
1171         default:
1172         common:
1173
1174           /* If we are taking the address of a padded record whose field is
1175              contains a template, take the address of the template.  */
1176           if (TYPE_IS_PADDING_P (type)
1177               && TREE_CODE (TREE_TYPE (TYPE_FIELDS (type))) == RECORD_TYPE
1178               && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (TYPE_FIELDS (type))))
1179             {
1180               type = TREE_TYPE (TYPE_FIELDS (type));
1181               operand = convert (type, operand);
1182             }
1183
1184           gnat_mark_addressable (operand);
1185           result = build_fold_addr_expr (operand);
1186         }
1187
1188       TREE_CONSTANT (result) = staticp (operand) || TREE_CONSTANT (operand);
1189       break;
1190
1191     case INDIRECT_REF:
1192       /* If we want to refer to an unconstrained array, use the appropriate
1193          expression to do so.  This will never survive down to the back-end.
1194          But if TYPE is a thin pointer, first convert to a fat pointer.  */
1195       if (TYPE_IS_THIN_POINTER_P (type)
1196           && TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type)))
1197         {
1198           operand
1199             = convert (TREE_TYPE (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type))),
1200                        operand);
1201           type = TREE_TYPE (operand);
1202         }
1203
1204       if (TYPE_IS_FAT_POINTER_P (type))
1205         {
1206           result = build1 (UNCONSTRAINED_ARRAY_REF,
1207                            TYPE_UNCONSTRAINED_ARRAY (type), operand);
1208           TREE_READONLY (result)
1209             = TYPE_READONLY (TYPE_UNCONSTRAINED_ARRAY (type));
1210         }
1211
1212       /* If we are dereferencing an ADDR_EXPR, return its operand.  */
1213       else if (TREE_CODE (operand) == ADDR_EXPR)
1214         result = TREE_OPERAND (operand, 0);
1215
1216       /* Otherwise, build and fold the indirect reference.  */
1217       else
1218         {
1219           result = build_fold_indirect_ref (operand);
1220           TREE_READONLY (result) = TYPE_READONLY (TREE_TYPE (type));
1221         }
1222
1223       side_effects
1224         = (!TYPE_IS_FAT_POINTER_P (type) && TYPE_VOLATILE (TREE_TYPE (type)));
1225       break;
1226
1227     case NEGATE_EXPR:
1228     case BIT_NOT_EXPR:
1229       {
1230         tree modulus = ((operation_type
1231                          && TREE_CODE (operation_type) == INTEGER_TYPE
1232                          && TYPE_MODULAR_P (operation_type))
1233                         ? TYPE_MODULUS (operation_type) : NULL_TREE);
1234         int mod_pow2 = modulus && integer_pow2p (modulus);
1235
1236         /* If this is a modular type, there are various possibilities
1237            depending on the operation and whether the modulus is a
1238            power of two or not.  */
1239
1240         if (modulus)
1241           {
1242             gcc_assert (operation_type == base_type);
1243             operand = convert (operation_type, operand);
1244
1245             /* The fastest in the negate case for binary modulus is
1246                the straightforward code; the TRUNC_MOD_EXPR below
1247                is an AND operation.  */
1248             if (op_code == NEGATE_EXPR && mod_pow2)
1249               result = fold_build2 (TRUNC_MOD_EXPR, operation_type,
1250                                     fold_build1 (NEGATE_EXPR, operation_type,
1251                                                  operand),
1252                                     modulus);
1253
1254             /* For nonbinary negate case, return zero for zero operand,
1255                else return the modulus minus the operand.  If the modulus
1256                is a power of two minus one, we can do the subtraction
1257                as an XOR since it is equivalent and faster on most machines. */
1258             else if (op_code == NEGATE_EXPR && !mod_pow2)
1259               {
1260                 if (integer_pow2p (fold_build2 (PLUS_EXPR, operation_type,
1261                                                 modulus,
1262                                                 convert (operation_type,
1263                                                          integer_one_node))))
1264                   result = fold_build2 (BIT_XOR_EXPR, operation_type,
1265                                         operand, modulus);
1266                 else
1267                   result = fold_build2 (MINUS_EXPR, operation_type,
1268                                         modulus, operand);
1269
1270                 result = fold_build3 (COND_EXPR, operation_type,
1271                                       fold_build2 (NE_EXPR,
1272                                                    boolean_type_node,
1273                                                    operand,
1274                                                    convert
1275                                                      (operation_type,
1276                                                       integer_zero_node)),
1277                                       result, operand);
1278               }
1279             else
1280               {
1281                 /* For the NOT cases, we need a constant equal to
1282                    the modulus minus one.  For a binary modulus, we
1283                    XOR against the constant and subtract the operand from
1284                    that constant for nonbinary modulus.  */
1285
1286                 tree cnst = fold_build2 (MINUS_EXPR, operation_type, modulus,
1287                                          convert (operation_type,
1288                                                   integer_one_node));
1289
1290                 if (mod_pow2)
1291                   result = fold_build2 (BIT_XOR_EXPR, operation_type,
1292                                         operand, cnst);
1293                 else
1294                   result = fold_build2 (MINUS_EXPR, operation_type,
1295                                         cnst, operand);
1296               }
1297
1298             break;
1299           }
1300       }
1301
1302       /* ... fall through ... */
1303
1304     default:
1305       gcc_assert (operation_type == base_type);
1306       result = fold_build1 (op_code, operation_type,
1307                             convert (operation_type, operand));
1308     }
1309
1310   if (side_effects)
1311     {
1312       TREE_SIDE_EFFECTS (result) = 1;
1313       if (TREE_CODE (result) == INDIRECT_REF)
1314         TREE_THIS_VOLATILE (result) = TYPE_VOLATILE (TREE_TYPE (result));
1315     }
1316
1317   if (result_type && TREE_TYPE (result) != result_type)
1318     result = convert (result_type, result);
1319
1320   return result;
1321 }
1322 \f
1323 /* Similar, but for COND_EXPR.  */
1324
1325 tree
1326 build_cond_expr (tree result_type, tree condition_operand,
1327                  tree true_operand, tree false_operand)
1328 {
1329   bool addr_p = false;
1330   tree result;
1331
1332   /* The front-end verified that result, true and false operands have
1333      same base type.  Convert everything to the result type.  */
1334   true_operand = convert (result_type, true_operand);
1335   false_operand = convert (result_type, false_operand);
1336
1337   /* If the result type is unconstrained, take the address of the operands and
1338      then dereference the result.  Likewise if the result type is passed by
1339      reference, but this is natively handled in the gimplifier.  */
1340   if (TREE_CODE (result_type) == UNCONSTRAINED_ARRAY_TYPE
1341       || CONTAINS_PLACEHOLDER_P (TYPE_SIZE (result_type)))
1342     {
1343       result_type = build_pointer_type (result_type);
1344       true_operand = build_unary_op (ADDR_EXPR, result_type, true_operand);
1345       false_operand = build_unary_op (ADDR_EXPR, result_type, false_operand);
1346       addr_p = true;
1347     }
1348
1349   result = fold_build3 (COND_EXPR, result_type, condition_operand,
1350                         true_operand, false_operand);
1351
1352   /* If we have a common SAVE_EXPR (possibly surrounded by arithmetics)
1353      in both arms, make sure it gets evaluated by moving it ahead of the
1354      conditional expression.  This is necessary because it is evaluated
1355      in only one place at run time and would otherwise be uninitialized
1356      in one of the arms.  */
1357   true_operand = skip_simple_arithmetic (true_operand);
1358   false_operand = skip_simple_arithmetic (false_operand);
1359
1360   if (true_operand == false_operand && TREE_CODE (true_operand) == SAVE_EXPR)
1361     result = build2 (COMPOUND_EXPR, result_type, true_operand, result);
1362
1363   if (addr_p)
1364     result = build_unary_op (INDIRECT_REF, NULL_TREE, result);
1365
1366   return result;
1367 }
1368
1369 /* Similar, but for RETURN_EXPR.  If RET_VAL is non-null, build a RETURN_EXPR
1370    around the assignment of RET_VAL to RET_OBJ.  Otherwise just build a bare
1371    RETURN_EXPR around RESULT_OBJ, which may be null in this case.  */
1372
1373 tree
1374 build_return_expr (tree ret_obj, tree ret_val)
1375 {
1376   tree result_expr;
1377
1378   if (ret_val)
1379     {
1380       /* The gimplifier explicitly enforces the following invariant:
1381
1382               RETURN_EXPR
1383                   |
1384               MODIFY_EXPR
1385               /        \
1386              /          \
1387          RET_OBJ        ...
1388
1389          As a consequence, type consistency dictates that we use the type
1390          of the RET_OBJ as the operation type.  */
1391       tree operation_type = TREE_TYPE (ret_obj);
1392
1393       /* Convert the right operand to the operation type.  Note that it's the
1394          same transformation as in the MODIFY_EXPR case of build_binary_op,
1395          with the assumption that the type cannot involve a placeholder.  */
1396       if (operation_type != TREE_TYPE (ret_val))
1397         ret_val = convert (operation_type, ret_val);
1398
1399       result_expr = build2 (MODIFY_EXPR, operation_type, ret_obj, ret_val);
1400     }
1401   else
1402     result_expr = ret_obj;
1403
1404   return build1 (RETURN_EXPR, void_type_node, result_expr);
1405 }
1406 \f
1407 /* Build a CALL_EXPR to call FUNDECL with one argument, ARG.  Return
1408    the CALL_EXPR.  */
1409
1410 tree
1411 build_call_1_expr (tree fundecl, tree arg)
1412 {
1413   tree call = build_call_nary (TREE_TYPE (TREE_TYPE (fundecl)),
1414                                build_unary_op (ADDR_EXPR, NULL_TREE, fundecl),
1415                                1, arg);
1416   TREE_SIDE_EFFECTS (call) = 1;
1417   return call;
1418 }
1419
1420 /* Build a CALL_EXPR to call FUNDECL with two arguments, ARG1 & ARG2.  Return
1421    the CALL_EXPR.  */
1422
1423 tree
1424 build_call_2_expr (tree fundecl, tree arg1, tree arg2)
1425 {
1426   tree call = build_call_nary (TREE_TYPE (TREE_TYPE (fundecl)),
1427                                build_unary_op (ADDR_EXPR, NULL_TREE, fundecl),
1428                                2, arg1, arg2);
1429   TREE_SIDE_EFFECTS (call) = 1;
1430   return call;
1431 }
1432
1433 /* Likewise to call FUNDECL with no arguments.  */
1434
1435 tree
1436 build_call_0_expr (tree fundecl)
1437 {
1438   /* We rely on build_call_nary to compute TREE_SIDE_EFFECTS.  This makes
1439      it possible to propagate DECL_IS_PURE on parameterless functions.  */
1440   tree call = build_call_nary (TREE_TYPE (TREE_TYPE (fundecl)),
1441                                build_unary_op (ADDR_EXPR, NULL_TREE, fundecl),
1442                                0);
1443   return call;
1444 }
1445 \f
1446 /* Call a function that raises an exception and pass the line number and file
1447    name, if requested.  MSG says which exception function to call.
1448
1449    GNAT_NODE is the gnat node conveying the source location for which the
1450    error should be signaled, or Empty in which case the error is signaled on
1451    the current ref_file_name/input_line.
1452
1453    KIND says which kind of exception this is for
1454    (N_Raise_{Constraint,Storage,Program}_Error).  */
1455
1456 tree
1457 build_call_raise (int msg, Node_Id gnat_node, char kind)
1458 {
1459   tree fndecl = gnat_raise_decls[msg];
1460   tree label = get_exception_label (kind);
1461   tree filename;
1462   int line_number;
1463   const char *str;
1464   int len;
1465
1466   /* If this is to be done as a goto, handle that case.  */
1467   if (label)
1468     {
1469       Entity_Id local_raise = Get_Local_Raise_Call_Entity ();
1470       tree gnu_result = build1 (GOTO_EXPR, void_type_node, label);
1471
1472       /* If Local_Raise is present, generate
1473          Local_Raise (exception'Identity);  */
1474       if (Present (local_raise))
1475         {
1476           tree gnu_local_raise
1477             = gnat_to_gnu_entity (local_raise, NULL_TREE, 0);
1478           tree gnu_exception_entity
1479             = gnat_to_gnu_entity (Get_RT_Exception_Entity (msg), NULL_TREE, 0);
1480           tree gnu_call
1481             = build_call_1_expr (gnu_local_raise,
1482                                  build_unary_op (ADDR_EXPR, NULL_TREE,
1483                                                  gnu_exception_entity));
1484
1485           gnu_result = build2 (COMPOUND_EXPR, void_type_node,
1486                                gnu_call, gnu_result);}
1487
1488       return gnu_result;
1489     }
1490
1491   str
1492     = (Debug_Flag_NN || Exception_Locations_Suppressed)
1493       ? ""
1494       : (gnat_node != Empty && Sloc (gnat_node) != No_Location)
1495         ? IDENTIFIER_POINTER
1496           (get_identifier (Get_Name_String
1497                            (Debug_Source_Name
1498                             (Get_Source_File_Index (Sloc (gnat_node))))))
1499         : ref_filename;
1500
1501   len = strlen (str);
1502   filename = build_string (len, str);
1503   line_number
1504     = (gnat_node != Empty && Sloc (gnat_node) != No_Location)
1505       ? Get_Logical_Line_Number (Sloc(gnat_node)) : input_line;
1506
1507   TREE_TYPE (filename) = build_array_type (unsigned_char_type_node,
1508                                            build_index_type (size_int (len)));
1509
1510   return
1511     build_call_2_expr (fndecl,
1512                        build1 (ADDR_EXPR,
1513                                build_pointer_type (unsigned_char_type_node),
1514                                filename),
1515                        build_int_cst (NULL_TREE, line_number));
1516 }
1517 \f
1518 /* qsort comparer for the bit positions of two constructor elements
1519    for record components.  */
1520
1521 static int
1522 compare_elmt_bitpos (const PTR rt1, const PTR rt2)
1523 {
1524   const constructor_elt * const elmt1 = (const constructor_elt const *) rt1;
1525   const constructor_elt * const elmt2 = (const constructor_elt const *) rt2;
1526   const_tree const field1 = elmt1->index;
1527   const_tree const field2 = elmt2->index;
1528   const int ret
1529     = tree_int_cst_compare (bit_position (field1), bit_position (field2));
1530
1531   return ret ? ret : (int) (DECL_UID (field1) - DECL_UID (field2));
1532 }
1533
1534 /* Return a CONSTRUCTOR of TYPE whose elements are V.  */
1535
1536 tree
1537 gnat_build_constructor (tree type, VEC(constructor_elt,gc) *v)
1538 {
1539   bool allconstant = (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST);
1540   bool side_effects = false;
1541   tree result, obj, val;
1542   unsigned int n_elmts;
1543
1544   /* Scan the elements to see if they are all constant or if any has side
1545      effects, to let us set global flags on the resulting constructor.  Count
1546      the elements along the way for possible sorting purposes below.  */
1547   FOR_EACH_CONSTRUCTOR_ELT (v, n_elmts, obj, val)
1548     {
1549       /* The predicate must be in keeping with output_constructor.  */
1550       if (!TREE_CONSTANT (val)
1551           || (TREE_CODE (type) == RECORD_TYPE
1552               && CONSTRUCTOR_BITFIELD_P (obj)
1553               && !initializer_constant_valid_for_bitfield_p (val))
1554           || !initializer_constant_valid_p (val, TREE_TYPE (val)))
1555         allconstant = false;
1556
1557       if (TREE_SIDE_EFFECTS (val))
1558         side_effects = true;
1559     }
1560
1561   /* For record types with constant components only, sort field list
1562      by increasing bit position.  This is necessary to ensure the
1563      constructor can be output as static data.  */
1564   if (allconstant && TREE_CODE (type) == RECORD_TYPE && n_elmts > 1)
1565     qsort (VEC_address (constructor_elt, v), n_elmts,
1566            sizeof (constructor_elt), compare_elmt_bitpos);
1567
1568   result = build_constructor (type, v);
1569   TREE_CONSTANT (result) = TREE_STATIC (result) = allconstant;
1570   TREE_SIDE_EFFECTS (result) = side_effects;
1571   TREE_READONLY (result) = TYPE_READONLY (type) || allconstant;
1572   return result;
1573 }
1574 \f
1575 /* Return a COMPONENT_REF to access a field that is given by COMPONENT,
1576    an IDENTIFIER_NODE giving the name of the field, or FIELD, a FIELD_DECL,
1577    for the field.  Don't fold the result if NO_FOLD_P is true.
1578
1579    We also handle the fact that we might have been passed a pointer to the
1580    actual record and know how to look for fields in variant parts.  */
1581
1582 static tree
1583 build_simple_component_ref (tree record_variable, tree component,
1584                             tree field, bool no_fold_p)
1585 {
1586   tree record_type = TYPE_MAIN_VARIANT (TREE_TYPE (record_variable));
1587   tree ref, inner_variable;
1588
1589   gcc_assert ((TREE_CODE (record_type) == RECORD_TYPE
1590                || TREE_CODE (record_type) == UNION_TYPE
1591                || TREE_CODE (record_type) == QUAL_UNION_TYPE)
1592               && TYPE_SIZE (record_type)
1593               && (component != 0) != (field != 0));
1594
1595   /* If no field was specified, look for a field with the specified name
1596      in the current record only.  */
1597   if (!field)
1598     for (field = TYPE_FIELDS (record_type); field;
1599          field = TREE_CHAIN (field))
1600       if (DECL_NAME (field) == component)
1601         break;
1602
1603   if (!field)
1604     return NULL_TREE;
1605
1606   /* If this field is not in the specified record, see if we can find
1607      something in the record whose original field is the same as this one. */
1608   if (DECL_CONTEXT (field) != record_type)
1609     /* Check if there is a field with name COMPONENT in the record.  */
1610     {
1611       tree new_field;
1612
1613       /* First loop thru normal components.  */
1614       for (new_field = TYPE_FIELDS (record_type); new_field;
1615            new_field = TREE_CHAIN (new_field))
1616         if (SAME_FIELD_P (field, new_field))
1617           break;
1618
1619       /* Next, loop thru DECL_INTERNAL_P components if we haven't found
1620          the component in the first search. Doing this search in 2 steps
1621          is required to avoiding hidden homonymous fields in the
1622          _Parent field.  */
1623       if (!new_field)
1624         for (new_field = TYPE_FIELDS (record_type); new_field;
1625              new_field = TREE_CHAIN (new_field))
1626           if (DECL_INTERNAL_P (new_field))
1627             {
1628               tree field_ref
1629                 = build_simple_component_ref (record_variable,
1630                                               NULL_TREE, new_field, no_fold_p);
1631               ref = build_simple_component_ref (field_ref, NULL_TREE, field,
1632                                                 no_fold_p);
1633
1634               if (ref)
1635                 return ref;
1636             }
1637
1638       field = new_field;
1639     }
1640
1641   if (!field)
1642     return NULL_TREE;
1643
1644   /* If the field's offset has overflowed, do not attempt to access it
1645      as doing so may trigger sanity checks deeper in the back-end.
1646      Note that we don't need to warn since this will be done on trying
1647      to declare the object.  */
1648   if (TREE_CODE (DECL_FIELD_OFFSET (field)) == INTEGER_CST
1649       && TREE_OVERFLOW (DECL_FIELD_OFFSET (field)))
1650     return NULL_TREE;
1651
1652   /* Look through conversion between type variants.  Note that this
1653      is transparent as far as the field is concerned.  */
1654   if (TREE_CODE (record_variable) == VIEW_CONVERT_EXPR
1655       && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_OPERAND (record_variable, 0)))
1656          == record_type)
1657     inner_variable = TREE_OPERAND (record_variable, 0);
1658   else
1659     inner_variable = record_variable;
1660
1661   ref = build3 (COMPONENT_REF, TREE_TYPE (field), inner_variable, field,
1662                 NULL_TREE);
1663
1664   if (TREE_READONLY (record_variable) || TREE_READONLY (field))
1665     TREE_READONLY (ref) = 1;
1666   if (TREE_THIS_VOLATILE (record_variable) || TREE_THIS_VOLATILE (field)
1667       || TYPE_VOLATILE (record_type))
1668     TREE_THIS_VOLATILE (ref) = 1;
1669
1670   if (no_fold_p)
1671     return ref;
1672
1673   /* The generic folder may punt in this case because the inner array type
1674      can be self-referential, but folding is in fact not problematic.  */
1675   else if (TREE_CODE (record_variable) == CONSTRUCTOR
1676            && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (record_variable)))
1677     {
1678       VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (record_variable);
1679       unsigned HOST_WIDE_INT idx;
1680       tree index, value;
1681       FOR_EACH_CONSTRUCTOR_ELT (elts, idx, index, value)
1682         if (index == field)
1683           return value;
1684       return ref;
1685     }
1686
1687   else
1688     return fold (ref);
1689 }
1690 \f
1691 /* Like build_simple_component_ref, except that we give an error if the
1692    reference could not be found.  */
1693
1694 tree
1695 build_component_ref (tree record_variable, tree component,
1696                      tree field, bool no_fold_p)
1697 {
1698   tree ref = build_simple_component_ref (record_variable, component, field,
1699                                          no_fold_p);
1700
1701   if (ref)
1702     return ref;
1703
1704   /* If FIELD was specified, assume this is an invalid user field so raise
1705      Constraint_Error.  Otherwise, we have no type to return so abort.  */
1706   gcc_assert (field);
1707   return build1 (NULL_EXPR, TREE_TYPE (field),
1708                  build_call_raise (CE_Discriminant_Check_Failed, Empty,
1709                                    N_Raise_Constraint_Error));
1710 }
1711 \f
1712 /* Helper for build_call_alloc_dealloc, with arguments to be interpreted
1713    identically.  Process the case where a GNAT_PROC to call is provided.  */
1714
1715 static inline tree
1716 build_call_alloc_dealloc_proc (tree gnu_obj, tree gnu_size, tree gnu_type,
1717                                Entity_Id gnat_proc, Entity_Id gnat_pool)
1718 {
1719   tree gnu_proc = gnat_to_gnu (gnat_proc);
1720   tree gnu_proc_addr = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_proc);
1721   tree gnu_call;
1722
1723   /* The storage pools are obviously always tagged types, but the
1724      secondary stack uses the same mechanism and is not tagged.  */
1725   if (Is_Tagged_Type (Etype (gnat_pool)))
1726     {
1727       /* The size is the third parameter; the alignment is the
1728          same type.  */
1729       Entity_Id gnat_size_type
1730         = Etype (Next_Formal (Next_Formal (First_Formal (gnat_proc))));
1731       tree gnu_size_type = gnat_to_gnu_type (gnat_size_type);
1732
1733       tree gnu_pool = gnat_to_gnu (gnat_pool);
1734       tree gnu_pool_addr = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_pool);
1735       tree gnu_align = size_int (TYPE_ALIGN (gnu_type) / BITS_PER_UNIT);
1736
1737       gnu_size = convert (gnu_size_type, gnu_size);
1738       gnu_align = convert (gnu_size_type, gnu_align);
1739
1740       /* The first arg is always the address of the storage pool; next
1741          comes the address of the object, for a deallocator, then the
1742          size and alignment.  */
1743       if (gnu_obj)
1744         gnu_call = build_call_nary (TREE_TYPE (TREE_TYPE (gnu_proc)),
1745                                     gnu_proc_addr, 4, gnu_pool_addr,
1746                                     gnu_obj, gnu_size, gnu_align);
1747       else
1748         gnu_call = build_call_nary (TREE_TYPE (TREE_TYPE (gnu_proc)),
1749                                     gnu_proc_addr, 3, gnu_pool_addr,
1750                                     gnu_size, gnu_align);
1751     }
1752
1753   /* Secondary stack case.  */
1754   else
1755     {
1756       /* The size is the second parameter.  */
1757       Entity_Id gnat_size_type
1758         = Etype (Next_Formal (First_Formal (gnat_proc)));
1759       tree gnu_size_type = gnat_to_gnu_type (gnat_size_type);
1760
1761       gnu_size = convert (gnu_size_type, gnu_size);
1762
1763       /* The first arg is the address of the object, for a deallocator,
1764          then the size.  */
1765       if (gnu_obj)
1766         gnu_call = build_call_nary (TREE_TYPE (TREE_TYPE (gnu_proc)),
1767                                     gnu_proc_addr, 2, gnu_obj, gnu_size);
1768       else
1769         gnu_call = build_call_nary (TREE_TYPE (TREE_TYPE (gnu_proc)),
1770                                     gnu_proc_addr, 1, gnu_size);
1771     }
1772
1773   TREE_SIDE_EFFECTS (gnu_call) = 1;
1774   return gnu_call;
1775 }
1776
1777 /* Helper for build_call_alloc_dealloc, to build and return an allocator for
1778    DATA_SIZE bytes aimed at containing a DATA_TYPE object, using the default
1779    __gnat_malloc allocator.  Honor DATA_TYPE alignments greater than what the
1780    latter offers.  */
1781
1782 static inline tree
1783 maybe_wrap_malloc (tree data_size, tree data_type, Node_Id gnat_node)
1784 {
1785   /* When the DATA_TYPE alignment is stricter than what malloc offers
1786      (super-aligned case), we allocate an "aligning" wrapper type and return
1787      the address of its single data field with the malloc's return value
1788      stored just in front.  */
1789
1790   unsigned int data_align = TYPE_ALIGN (data_type);
1791   unsigned int default_allocator_alignment
1792       = get_target_default_allocator_alignment () * BITS_PER_UNIT;
1793
1794   tree aligning_type
1795     = ((data_align > default_allocator_alignment)
1796        ? make_aligning_type (data_type, data_align, data_size,
1797                              default_allocator_alignment,
1798                              POINTER_SIZE / BITS_PER_UNIT)
1799        : NULL_TREE);
1800
1801   tree size_to_malloc
1802     = aligning_type ? TYPE_SIZE_UNIT (aligning_type) : data_size;
1803
1804   tree malloc_ptr;
1805
1806   /* On VMS, if pointers are 64-bit and the allocator size is 32-bit or
1807      Convention C, allocate 32-bit memory.  */
1808   if (TARGET_ABI_OPEN_VMS
1809       && (POINTER_SIZE == 64
1810              && (UI_To_Int (Esize (Etype (gnat_node))) == 32
1811                  || Convention (Etype (gnat_node)) == Convention_C)))
1812     malloc_ptr = build_call_1_expr (malloc32_decl, size_to_malloc);
1813   else
1814     malloc_ptr = build_call_1_expr (malloc_decl, size_to_malloc);
1815
1816   if (aligning_type)
1817     {
1818       /* Latch malloc's return value and get a pointer to the aligning field
1819          first.  */
1820       tree storage_ptr = gnat_protect_expr (malloc_ptr);
1821
1822       tree aligning_record_addr
1823         = convert (build_pointer_type (aligning_type), storage_ptr);
1824
1825       tree aligning_record
1826         = build_unary_op (INDIRECT_REF, NULL_TREE, aligning_record_addr);
1827
1828       tree aligning_field
1829         = build_component_ref (aligning_record, NULL_TREE,
1830                                TYPE_FIELDS (aligning_type), false);
1831
1832       tree aligning_field_addr
1833         = build_unary_op (ADDR_EXPR, NULL_TREE, aligning_field);
1834
1835       /* Then arrange to store the allocator's return value ahead
1836          and return.  */
1837       tree storage_ptr_slot_addr
1838         = build_binary_op (POINTER_PLUS_EXPR, ptr_void_type_node,
1839                            convert (ptr_void_type_node, aligning_field_addr),
1840                            size_int (-(HOST_WIDE_INT) POINTER_SIZE
1841                                      / BITS_PER_UNIT));
1842
1843       tree storage_ptr_slot
1844         = build_unary_op (INDIRECT_REF, NULL_TREE,
1845                           convert (build_pointer_type (ptr_void_type_node),
1846                                    storage_ptr_slot_addr));
1847
1848       return
1849         build2 (COMPOUND_EXPR, TREE_TYPE (aligning_field_addr),
1850                 build_binary_op (MODIFY_EXPR, NULL_TREE,
1851                                  storage_ptr_slot, storage_ptr),
1852                 aligning_field_addr);
1853     }
1854   else
1855     return malloc_ptr;
1856 }
1857
1858 /* Helper for build_call_alloc_dealloc, to release a DATA_TYPE object
1859    designated by DATA_PTR using the __gnat_free entry point.  */
1860
1861 static inline tree
1862 maybe_wrap_free (tree data_ptr, tree data_type)
1863 {
1864   /* In the regular alignment case, we pass the data pointer straight to free.
1865      In the superaligned case, we need to retrieve the initial allocator
1866      return value, stored in front of the data block at allocation time.  */
1867
1868   unsigned int data_align = TYPE_ALIGN (data_type);
1869   unsigned int default_allocator_alignment
1870       = get_target_default_allocator_alignment () * BITS_PER_UNIT;
1871
1872   tree free_ptr;
1873
1874   if (data_align > default_allocator_alignment)
1875     {
1876       /* DATA_FRONT_PTR (void *)
1877          = (void *)DATA_PTR - (void *)sizeof (void *))  */
1878       tree data_front_ptr
1879         = build_binary_op
1880           (POINTER_PLUS_EXPR, ptr_void_type_node,
1881            convert (ptr_void_type_node, data_ptr),
1882            size_int (-(HOST_WIDE_INT) POINTER_SIZE / BITS_PER_UNIT));
1883
1884       /* FREE_PTR (void *) = *(void **)DATA_FRONT_PTR  */
1885       free_ptr
1886         = build_unary_op
1887           (INDIRECT_REF, NULL_TREE,
1888            convert (build_pointer_type (ptr_void_type_node), data_front_ptr));
1889     }
1890   else
1891     free_ptr = data_ptr;
1892
1893   return build_call_1_expr (free_decl, free_ptr);
1894 }
1895
1896 /* Build a GCC tree to call an allocation or deallocation function.
1897    If GNU_OBJ is nonzero, it is an object to deallocate.  Otherwise,
1898    generate an allocator.
1899
1900    GNU_SIZE is the number of bytes to allocate and GNU_TYPE is the contained
1901    object type, used to determine the to-be-honored address alignment.
1902    GNAT_PROC, if present, is a procedure to call and GNAT_POOL is the storage
1903    pool to use.  If not present, malloc and free are used.  GNAT_NODE is used
1904    to provide an error location for restriction violation messages.  */
1905
1906 tree
1907 build_call_alloc_dealloc (tree gnu_obj, tree gnu_size, tree gnu_type,
1908                           Entity_Id gnat_proc, Entity_Id gnat_pool,
1909                           Node_Id gnat_node)
1910 {
1911   gnu_size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_size, gnu_obj);
1912
1913   /* Explicit proc to call ?  This one is assumed to deal with the type
1914      alignment constraints.  */
1915   if (Present (gnat_proc))
1916     return build_call_alloc_dealloc_proc (gnu_obj, gnu_size, gnu_type,
1917                                           gnat_proc, gnat_pool);
1918
1919   /* Otherwise, object to "free" or "malloc" with possible special processing
1920      for alignments stricter than what the default allocator honors.  */
1921   else if (gnu_obj)
1922     return maybe_wrap_free (gnu_obj, gnu_type);
1923   else
1924     {
1925       /* Assert that we no longer can be called with this special pool.  */
1926       gcc_assert (gnat_pool != -1);
1927
1928       /* Check that we aren't violating the associated restriction.  */
1929       if (!(Nkind (gnat_node) == N_Allocator && Comes_From_Source (gnat_node)))
1930         Check_No_Implicit_Heap_Alloc (gnat_node);
1931
1932       return maybe_wrap_malloc (gnu_size, gnu_type, gnat_node);
1933     }
1934 }
1935 \f
1936 /* Build a GCC tree to correspond to allocating an object of TYPE whose
1937    initial value is INIT, if INIT is nonzero.  Convert the expression to
1938    RESULT_TYPE, which must be some type of pointer.  Return the tree.
1939
1940    GNAT_PROC and GNAT_POOL optionally give the procedure to call and
1941    the storage pool to use.  GNAT_NODE is used to provide an error
1942    location for restriction violation messages.  If IGNORE_INIT_TYPE is
1943    true, ignore the type of INIT for the purpose of determining the size;
1944    this will cause the maximum size to be allocated if TYPE is of
1945    self-referential size.  */
1946
1947 tree
1948 build_allocator (tree type, tree init, tree result_type, Entity_Id gnat_proc,
1949                  Entity_Id gnat_pool, Node_Id gnat_node, bool ignore_init_type)
1950 {
1951   tree size = TYPE_SIZE_UNIT (type);
1952   tree result;
1953
1954   /* If the initializer, if present, is a NULL_EXPR, just return a new one.  */
1955   if (init && TREE_CODE (init) == NULL_EXPR)
1956     return build1 (NULL_EXPR, result_type, TREE_OPERAND (init, 0));
1957
1958   /* If RESULT_TYPE is a fat or thin pointer, set SIZE to be the sum of the
1959      sizes of the object and its template.  Allocate the whole thing and
1960      fill in the parts that are known.  */
1961   else if (TYPE_IS_FAT_OR_THIN_POINTER_P (result_type))
1962     {
1963       tree storage_type
1964         = build_unc_object_type_from_ptr (result_type, type,
1965                                           get_identifier ("ALLOC"), false);
1966       tree template_type = TREE_TYPE (TYPE_FIELDS (storage_type));
1967       tree storage_ptr_type = build_pointer_type (storage_type);
1968       tree storage;
1969
1970       size = SUBSTITUTE_PLACEHOLDER_IN_EXPR (TYPE_SIZE_UNIT (storage_type),
1971                                              init);
1972
1973       /* If the size overflows, pass -1 so the allocator will raise
1974          storage error.  */
1975       if (TREE_CODE (size) == INTEGER_CST && TREE_OVERFLOW (size))
1976         size = ssize_int (-1);
1977
1978       storage = build_call_alloc_dealloc (NULL_TREE, size, storage_type,
1979                                           gnat_proc, gnat_pool, gnat_node);
1980       storage = convert (storage_ptr_type, gnat_protect_expr (storage));
1981
1982       if (TYPE_IS_PADDING_P (type))
1983         {
1984           type = TREE_TYPE (TYPE_FIELDS (type));
1985           if (init)
1986             init = convert (type, init);
1987         }
1988
1989       /* If there is an initializing expression, make a constructor for
1990          the entire object including the bounds and copy it into the
1991          object.  If there is no initializing expression, just set the
1992          bounds.  */
1993       if (init)
1994         {
1995           VEC(constructor_elt,gc) *v = VEC_alloc (constructor_elt, gc, 2);
1996
1997           CONSTRUCTOR_APPEND_ELT (v, TYPE_FIELDS (storage_type),
1998                                   build_template (template_type, type, init));
1999           CONSTRUCTOR_APPEND_ELT (v, TREE_CHAIN (TYPE_FIELDS (storage_type)),
2000                                   init);
2001
2002           return convert
2003             (result_type,
2004              build2 (COMPOUND_EXPR, storage_ptr_type,
2005                      build_binary_op
2006                      (MODIFY_EXPR, storage_type,
2007                       build_unary_op (INDIRECT_REF, NULL_TREE,
2008                                       convert (storage_ptr_type, storage)),
2009                       gnat_build_constructor (storage_type, v)),
2010                      convert (storage_ptr_type, storage)));
2011         }
2012       else
2013         return build2
2014           (COMPOUND_EXPR, result_type,
2015            build_binary_op
2016            (MODIFY_EXPR, template_type,
2017             build_component_ref
2018             (build_unary_op (INDIRECT_REF, NULL_TREE,
2019                              convert (storage_ptr_type, storage)),
2020              NULL_TREE, TYPE_FIELDS (storage_type), false),
2021             build_template (template_type, type, NULL_TREE)),
2022            convert (result_type, convert (storage_ptr_type, storage)));
2023     }
2024
2025   /* If we have an initializing expression, see if its size is simpler
2026      than the size from the type.  */
2027   if (!ignore_init_type && init && TYPE_SIZE_UNIT (TREE_TYPE (init))
2028       && (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (init))) == INTEGER_CST
2029           || CONTAINS_PLACEHOLDER_P (size)))
2030     size = TYPE_SIZE_UNIT (TREE_TYPE (init));
2031
2032   /* If the size is still self-referential, reference the initializing
2033      expression, if it is present.  If not, this must have been a
2034      call to allocate a library-level object, in which case we use
2035      the maximum size.  */
2036   if (CONTAINS_PLACEHOLDER_P (size))
2037     {
2038       if (!ignore_init_type && init)
2039         size = substitute_placeholder_in_expr (size, init);
2040       else
2041         size = max_size (size, true);
2042     }
2043
2044   /* If the size overflows, pass -1 so the allocator will raise
2045      storage error.  */
2046   if (TREE_CODE (size) == INTEGER_CST && TREE_OVERFLOW (size))
2047     size = ssize_int (-1);
2048
2049   result = convert (result_type,
2050                     build_call_alloc_dealloc (NULL_TREE, size, type,
2051                                               gnat_proc, gnat_pool,
2052                                               gnat_node));
2053
2054   /* If we have an initial value, protect the new address, assign the value
2055      and return the address with a COMPOUND_EXPR.  */
2056   if (init)
2057     {
2058       result = gnat_protect_expr (result);
2059       result
2060         = build2 (COMPOUND_EXPR, TREE_TYPE (result),
2061                   build_binary_op
2062                   (MODIFY_EXPR, NULL_TREE,
2063                    build_unary_op (INDIRECT_REF,
2064                                    TREE_TYPE (TREE_TYPE (result)), result),
2065                    init),
2066                   result);
2067     }
2068
2069   return convert (result_type, result);
2070 }
2071 \f
2072 /* Fill in a VMS descriptor for EXPR and return a constructor for it.
2073    GNAT_FORMAL is how we find the descriptor record.  GNAT_ACTUAL is
2074    how we derive the source location to raise C_E on an out of range
2075    pointer. */
2076
2077 tree
2078 fill_vms_descriptor (tree expr, Entity_Id gnat_formal, Node_Id gnat_actual)
2079 {
2080   tree parm_decl = get_gnu_tree (gnat_formal);
2081   tree record_type = TREE_TYPE (TREE_TYPE (parm_decl));
2082   tree field;
2083   const bool do_range_check
2084     = strcmp ("MBO",
2085               IDENTIFIER_POINTER (DECL_NAME (TYPE_FIELDS (record_type))));
2086   VEC(constructor_elt,gc) *v = NULL;
2087
2088   expr = maybe_unconstrained_array (expr);
2089   gnat_mark_addressable (expr);
2090
2091   for (field = TYPE_FIELDS (record_type); field; field = TREE_CHAIN (field))
2092     {
2093       tree conexpr = convert (TREE_TYPE (field),
2094                               SUBSTITUTE_PLACEHOLDER_IN_EXPR
2095                               (DECL_INITIAL (field), expr));
2096
2097       /* Check to ensure that only 32-bit pointers are passed in
2098          32-bit descriptors */
2099       if (do_range_check
2100           && strcmp (IDENTIFIER_POINTER (DECL_NAME (field)), "POINTER") == 0)
2101         {
2102           tree pointer64type
2103             = build_pointer_type_for_mode (void_type_node, DImode, false);
2104           tree addr64expr = build_unary_op (ADDR_EXPR, pointer64type, expr);
2105           tree malloc64low
2106             = build_int_cstu (long_integer_type_node, 0x80000000);
2107
2108           add_stmt (build3 (COND_EXPR, void_type_node,
2109                             build_binary_op (GE_EXPR, boolean_type_node,
2110                                              convert (long_integer_type_node,
2111                                                       addr64expr),
2112                                              malloc64low),
2113                             build_call_raise (CE_Range_Check_Failed,
2114                                               gnat_actual,
2115                                               N_Raise_Constraint_Error),
2116                             NULL_TREE));
2117         }
2118       CONSTRUCTOR_APPEND_ELT (v, field, conexpr);
2119     }
2120
2121   return gnat_build_constructor (record_type, v);
2122 }
2123
2124 /* Indicate that we need to take the address of T and that it therefore
2125    should not be allocated in a register.  Returns true if successful.  */
2126
2127 bool
2128 gnat_mark_addressable (tree t)
2129 {
2130   while (true)
2131     switch (TREE_CODE (t))
2132       {
2133       case ADDR_EXPR:
2134       case COMPONENT_REF:
2135       case ARRAY_REF:
2136       case ARRAY_RANGE_REF:
2137       case REALPART_EXPR:
2138       case IMAGPART_EXPR:
2139       case VIEW_CONVERT_EXPR:
2140       case NON_LVALUE_EXPR:
2141       CASE_CONVERT:
2142         t = TREE_OPERAND (t, 0);
2143         break;
2144
2145       case COMPOUND_EXPR:
2146         t = TREE_OPERAND (t, 1);
2147         break;
2148
2149       case CONSTRUCTOR:
2150         TREE_ADDRESSABLE (t) = 1;
2151         return true;
2152
2153       case VAR_DECL:
2154       case PARM_DECL:
2155       case RESULT_DECL:
2156         TREE_ADDRESSABLE (t) = 1;
2157         return true;
2158
2159       case FUNCTION_DECL:
2160         TREE_ADDRESSABLE (t) = 1;
2161         return true;
2162
2163       case CONST_DECL:
2164         return DECL_CONST_CORRESPONDING_VAR (t)
2165                && gnat_mark_addressable (DECL_CONST_CORRESPONDING_VAR (t));
2166
2167       default:
2168         return true;
2169     }
2170 }
2171 \f
2172 /* Save EXP for later use or reuse.  This is equivalent to save_expr in tree.c
2173    but we know how to handle our own nodes.  */
2174
2175 tree
2176 gnat_save_expr (tree exp)
2177 {
2178   tree type = TREE_TYPE (exp);
2179   enum tree_code code = TREE_CODE (exp);
2180
2181   if (TREE_CONSTANT (exp) || code == SAVE_EXPR || code == NULL_EXPR)
2182     return exp;
2183
2184   if (code == UNCONSTRAINED_ARRAY_REF)
2185     {
2186       tree t = build1 (code, type, gnat_save_expr (TREE_OPERAND (exp, 0)));
2187       TREE_READONLY (t) = TYPE_READONLY (type);
2188       return t;
2189     }
2190
2191   /* If this is a COMPONENT_REF of a fat pointer, save the entire fat pointer.
2192      This may be more efficient, but will also allow us to more easily find
2193      the match for the PLACEHOLDER_EXPR.  */
2194   if (code == COMPONENT_REF
2195       && TYPE_IS_FAT_POINTER_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
2196     return build3 (code, type, gnat_save_expr (TREE_OPERAND (exp, 0)),
2197                    TREE_OPERAND (exp, 1), TREE_OPERAND (exp, 2));
2198
2199   return save_expr (exp);
2200 }
2201
2202 /* Protect EXP for immediate reuse.  This is a variant of gnat_save_expr that
2203    is optimized under the assumption that EXP's value doesn't change before
2204    its subsequent reuse(s) except through its potential reevaluation.  */
2205
2206 tree
2207 gnat_protect_expr (tree exp)
2208 {
2209   tree type = TREE_TYPE (exp);
2210   enum tree_code code = TREE_CODE (exp);
2211
2212   if (TREE_CONSTANT (exp) || code == SAVE_EXPR || code == NULL_EXPR)
2213     return exp;
2214
2215   /* If EXP has no side effects, we theoritically don't need to do anything.
2216      However, we may be recursively passed more and more complex expressions
2217      involving checks which will be reused multiple times and eventually be
2218      unshared for gimplification; in order to avoid a complexity explosion
2219      at that point, we protect any expressions more complex than a simple
2220      arithmetic expression.  */
2221   if (!TREE_SIDE_EFFECTS (exp))
2222     {
2223       tree inner = skip_simple_arithmetic (exp);
2224       if (!EXPR_P (inner) || REFERENCE_CLASS_P (inner))
2225         return exp;
2226     }
2227
2228   /* If this is a conversion, protect what's inside the conversion.  */
2229   if (code == NON_LVALUE_EXPR
2230       || CONVERT_EXPR_CODE_P (code)
2231       || code == VIEW_CONVERT_EXPR)
2232   return build1 (code, type, gnat_protect_expr (TREE_OPERAND (exp, 0)));
2233
2234   /* If we're indirectly referencing something, we only need to protect the
2235      address since the data itself can't change in these situations.  */
2236   if (code == INDIRECT_REF || code == UNCONSTRAINED_ARRAY_REF)
2237     {
2238       tree t = build1 (code, type, gnat_protect_expr (TREE_OPERAND (exp, 0)));
2239       TREE_READONLY (t) = TYPE_READONLY (type);
2240       return t;
2241     }
2242
2243   /* If this is a COMPONENT_REF of a fat pointer, save the entire fat pointer.
2244      This may be more efficient, but will also allow us to more easily find
2245      the match for the PLACEHOLDER_EXPR.  */
2246   if (code == COMPONENT_REF
2247       && TYPE_IS_FAT_POINTER_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
2248     return build3 (code, type, gnat_protect_expr (TREE_OPERAND (exp, 0)),
2249                    TREE_OPERAND (exp, 1), TREE_OPERAND (exp, 2));
2250
2251   /* If this is a fat pointer or something that can be placed in a register,
2252      just make a SAVE_EXPR.  Likewise for a CALL_EXPR as large objects are
2253      returned via invisible reference in most ABIs so the temporary will
2254      directly be filled by the callee.  */
2255   if (TYPE_IS_FAT_POINTER_P (type)
2256       || TYPE_MODE (type) != BLKmode
2257       || code == CALL_EXPR)
2258     return save_expr (exp);
2259
2260   /* Otherwise reference, protect the address and dereference.  */
2261   return
2262     build_unary_op (INDIRECT_REF, type,
2263                     save_expr (build_unary_op (ADDR_EXPR,
2264                                                build_reference_type (type),
2265                                                exp)));
2266 }
2267
2268 /* This is equivalent to stabilize_reference_1 in tree.c but we take an extra
2269    argument to force evaluation of everything.  */
2270
2271 static tree
2272 gnat_stabilize_reference_1 (tree e, bool force)
2273 {
2274   enum tree_code code = TREE_CODE (e);
2275   tree type = TREE_TYPE (e);
2276   tree result;
2277
2278   /* We cannot ignore const expressions because it might be a reference
2279      to a const array but whose index contains side-effects.  But we can
2280      ignore things that are actual constant or that already have been
2281      handled by this function.  */
2282   if (TREE_CONSTANT (e) || code == SAVE_EXPR)
2283     return e;
2284
2285   switch (TREE_CODE_CLASS (code))
2286     {
2287     case tcc_exceptional:
2288     case tcc_declaration:
2289     case tcc_comparison:
2290     case tcc_expression:
2291     case tcc_reference:
2292     case tcc_vl_exp:
2293       /* If this is a COMPONENT_REF of a fat pointer, save the entire
2294          fat pointer.  This may be more efficient, but will also allow
2295          us to more easily find the match for the PLACEHOLDER_EXPR.  */
2296       if (code == COMPONENT_REF
2297           && TYPE_IS_FAT_POINTER_P (TREE_TYPE (TREE_OPERAND (e, 0))))
2298         result
2299           = build3 (code, type,
2300                     gnat_stabilize_reference_1 (TREE_OPERAND (e, 0), force),
2301                     TREE_OPERAND (e, 1), TREE_OPERAND (e, 2));
2302       /* If the expression has side-effects, then encase it in a SAVE_EXPR
2303          so that it will only be evaluated once.  */
2304       /* The tcc_reference and tcc_comparison classes could be handled as
2305          below, but it is generally faster to only evaluate them once.  */
2306       else if (TREE_SIDE_EFFECTS (e) || force)
2307         return save_expr (e);
2308       else
2309         return e;
2310       break;
2311
2312     case tcc_binary:
2313       /* Recursively stabilize each operand.  */
2314       result
2315         = build2 (code, type,
2316                   gnat_stabilize_reference_1 (TREE_OPERAND (e, 0), force),
2317                   gnat_stabilize_reference_1 (TREE_OPERAND (e, 1), force));
2318       break;
2319
2320     case tcc_unary:
2321       /* Recursively stabilize each operand.  */
2322       result
2323         = build1 (code, type,
2324                   gnat_stabilize_reference_1 (TREE_OPERAND (e, 0), force));
2325       break;
2326
2327     default:
2328       gcc_unreachable ();
2329     }
2330
2331   /* See similar handling in gnat_stabilize_reference.  */
2332   TREE_READONLY (result) = TREE_READONLY (e);
2333   TREE_SIDE_EFFECTS (result) |= TREE_SIDE_EFFECTS (e);
2334   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
2335
2336   return result;
2337 }
2338
2339 /* This is equivalent to stabilize_reference in tree.c but we know how to
2340    handle our own nodes and we take extra arguments.  FORCE says whether to
2341    force evaluation of everything.  We set SUCCESS to true unless we walk
2342    through something we don't know how to stabilize.  */
2343
2344 tree
2345 gnat_stabilize_reference (tree ref, bool force, bool *success)
2346 {
2347   tree type = TREE_TYPE (ref);
2348   enum tree_code code = TREE_CODE (ref);
2349   tree result;
2350
2351   /* Assume we'll success unless proven otherwise.  */
2352   if (success)
2353     *success = true;
2354
2355   switch (code)
2356     {
2357     case CONST_DECL:
2358     case VAR_DECL:
2359     case PARM_DECL:
2360     case RESULT_DECL:
2361       /* No action is needed in this case.  */
2362       return ref;
2363
2364     case ADDR_EXPR:
2365     CASE_CONVERT:
2366     case FLOAT_EXPR:
2367     case FIX_TRUNC_EXPR:
2368     case VIEW_CONVERT_EXPR:
2369       result
2370         = build1 (code, type,
2371                   gnat_stabilize_reference (TREE_OPERAND (ref, 0), force,
2372                                             success));
2373       break;
2374
2375     case INDIRECT_REF:
2376     case UNCONSTRAINED_ARRAY_REF:
2377       result = build1 (code, type,
2378                        gnat_stabilize_reference_1 (TREE_OPERAND (ref, 0),
2379                                                    force));
2380       break;
2381
2382     case COMPONENT_REF:
2383      result = build3 (COMPONENT_REF, type,
2384                       gnat_stabilize_reference (TREE_OPERAND (ref, 0), force,
2385                                                 success),
2386                       TREE_OPERAND (ref, 1), NULL_TREE);
2387       break;
2388
2389     case BIT_FIELD_REF:
2390       result = build3 (BIT_FIELD_REF, type,
2391                        gnat_stabilize_reference (TREE_OPERAND (ref, 0), force,
2392                                                  success),
2393                        gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
2394                                                    force),
2395                        gnat_stabilize_reference_1 (TREE_OPERAND (ref, 2),
2396                                                    force));
2397       break;
2398
2399     case ARRAY_REF:
2400     case ARRAY_RANGE_REF:
2401       result = build4 (code, type,
2402                        gnat_stabilize_reference (TREE_OPERAND (ref, 0), force,
2403                                                  success),
2404                        gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
2405                                                    force),
2406                        NULL_TREE, NULL_TREE);
2407       break;
2408
2409     case CALL_EXPR:
2410       result = gnat_stabilize_reference_1 (ref, force);
2411       break;
2412
2413     case COMPOUND_EXPR:
2414       result = build2 (COMPOUND_EXPR, type,
2415                        gnat_stabilize_reference (TREE_OPERAND (ref, 0), force,
2416                                                  success),
2417                        gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
2418                                                    force));
2419       break;
2420
2421     case CONSTRUCTOR:
2422       /* Constructors with 1 element are used extensively to formally
2423          convert objects to special wrapping types.  */
2424       if (TREE_CODE (type) == RECORD_TYPE
2425           && VEC_length (constructor_elt, CONSTRUCTOR_ELTS (ref)) == 1)
2426         {
2427           tree index
2428             = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ref), 0)->index;
2429           tree value
2430             = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ref), 0)->value;
2431           result
2432             = build_constructor_single (type, index,
2433                                         gnat_stabilize_reference_1 (value,
2434                                                                     force));
2435         }
2436       else
2437         {
2438           if (success)
2439             *success = false;
2440           return ref;
2441         }
2442       break;
2443
2444     case ERROR_MARK:
2445       ref = error_mark_node;
2446
2447       /* ...  fall through to failure ... */
2448
2449       /* If arg isn't a kind of lvalue we recognize, make no change.
2450          Caller should recognize the error for an invalid lvalue.  */
2451     default:
2452       if (success)
2453         *success = false;
2454       return ref;
2455     }
2456
2457   /* TREE_THIS_VOLATILE and TREE_SIDE_EFFECTS set on the initial expression
2458      may not be sustained across some paths, such as the way via build1 for
2459      INDIRECT_REF.  We reset those flags here in the general case, which is
2460      consistent with the GCC version of this routine.
2461
2462      Special care should be taken regarding TREE_SIDE_EFFECTS, because some
2463      paths introduce side-effects where there was none initially (e.g. if a
2464      SAVE_EXPR is built) and we also want to keep track of that.  */
2465   TREE_READONLY (result) = TREE_READONLY (ref);
2466   TREE_SIDE_EFFECTS (result) |= TREE_SIDE_EFFECTS (ref);
2467   TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
2468
2469   return result;
2470 }