a-exexpr.adb (Others_Value, [...]): New variables...
[gcc.git] / gcc / ada / trans.c
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * T R A N S *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2004, 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 2, 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 distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, *
20 * MA 02111-1307, USA. *
21 * *
22 * GNAT was originally developed by the GNAT team at New York University. *
23 * Extensive contributions were provided by Ada Core Technologies Inc. *
24 * *
25 ****************************************************************************/
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "real.h"
33 #include "flags.h"
34 #include "toplev.h"
35 #include "rtl.h"
36 #include "expr.h"
37 #include "ggc.h"
38 #include "function.h"
39 #include "except.h"
40 #include "debug.h"
41 #include "output.h"
42 #include "tree-gimple.h"
43 #include "ada.h"
44 #include "types.h"
45 #include "atree.h"
46 #include "elists.h"
47 #include "namet.h"
48 #include "nlists.h"
49 #include "snames.h"
50 #include "stringt.h"
51 #include "uintp.h"
52 #include "urealp.h"
53 #include "fe.h"
54 #include "sinfo.h"
55 #include "einfo.h"
56 #include "ada-tree.h"
57 #include "gigi.h"
58
59 int max_gnat_nodes;
60 int number_names;
61 struct Node *Nodes_Ptr;
62 Node_Id *Next_Node_Ptr;
63 Node_Id *Prev_Node_Ptr;
64 struct Elist_Header *Elists_Ptr;
65 struct Elmt_Item *Elmts_Ptr;
66 struct String_Entry *Strings_Ptr;
67 Char_Code *String_Chars_Ptr;
68 struct List_Header *List_Headers_Ptr;
69
70 /* Current filename without path. */
71 const char *ref_filename;
72
73 /* If true, then gigi is being called on an analyzed but unexpanded
74 tree, and the only purpose of the call is to properly annotate
75 types with representation information. */
76 bool type_annotate_only;
77
78 /* A structure used to gather together information about a statement group.
79 We use this to gather related statements, for example the "then" part
80 of a IF. In the case where it represents a lexical scope, we may also
81 have a BLOCK node corresponding to it and/or cleanups. */
82
83 struct stmt_group GTY((chain_next ("%h.previous"))) {
84 struct stmt_group *previous; /* Previous code group. */
85 tree stmt_list; /* List of statements for this code group. */
86 tree block; /* BLOCK for this code group, if any. */
87 tree cleanups; /* Cleanups for this code group, if any. */
88 };
89
90 static GTY(()) struct stmt_group *current_stmt_group;
91
92 /* List of unused struct stmt_group nodes. */
93 static GTY((deletable)) struct stmt_group *stmt_group_free_list;
94
95 /* A structure used to record information on elaboration procedures
96 we've made and need to process.
97
98 ??? gnat_node should be Node_Id, but gengtype gets confused. */
99
100 struct elab_info GTY((chain_next ("%h.next"))) {
101 struct elab_info *next; /* Pointer to next in chain. */
102 tree elab_proc; /* Elaboration procedure. */
103 int gnat_node; /* The N_Compilation_Unit. */
104 };
105
106 static GTY(()) struct elab_info *elab_info_list;
107
108 /* Free list of TREE_LIST nodes used for stacks. */
109 static GTY((deletable)) tree gnu_stack_free_list;
110
111 /* List of TREE_LIST nodes representing a stack of exception pointer
112 variables. TREE_VALUE is the VAR_DECL that stores the address of
113 the raised exception. Nonzero means we are in an exception
114 handler. Not used in the zero-cost case. */
115 static GTY(()) tree gnu_except_ptr_stack;
116
117 /* List of TREE_LIST nodes used to store the current elaboration procedure
118 decl. TREE_VALUE is the decl. */
119 static GTY(()) tree gnu_elab_proc_stack;
120
121 /* Variable that stores a list of labels to be used as a goto target instead of
122 a return in some functions. See processing for N_Subprogram_Body. */
123 static GTY(()) tree gnu_return_label_stack;
124
125 /* List of TREE_LIST nodes representing a stack of LOOP_STMT nodes.
126 TREE_VALUE of each entry is the label of the corresponding LOOP_STMT. */
127 static GTY(()) tree gnu_loop_label_stack;
128
129 /* List of TREE_LIST nodes representing labels for switch statements.
130 TREE_VALUE of each entry is the label at the end of the switch. */
131 static GTY(()) tree gnu_switch_label_stack;
132
133 /* Map GNAT tree codes to GCC tree codes for simple expressions. */
134 static enum tree_code gnu_codes[Number_Node_Kinds];
135
136 /* Current node being treated, in case abort called. */
137 Node_Id error_gnat_node;
138
139 static void Compilation_Unit_to_gnu (Node_Id);
140 static void record_code_position (Node_Id);
141 static void insert_code_for (Node_Id);
142 static void start_stmt_group (void);
143 static void add_cleanup (tree);
144 static tree mark_visited (tree *, int *, void *);
145 static tree mark_unvisited (tree *, int *, void *);
146 static tree end_stmt_group (void);
147 static void add_stmt_list (List_Id);
148 static tree build_stmt_group (List_Id, bool);
149 static void push_stack (tree *, tree, tree);
150 static void pop_stack (tree *);
151 static enum gimplify_status gnat_gimplify_stmt (tree *);
152 static void elaborate_all_entities (Node_Id);
153 static void process_freeze_entity (Node_Id);
154 static void process_inlined_subprograms (Node_Id);
155 static void process_decls (List_Id, List_Id, Node_Id, bool, bool);
156 static tree emit_range_check (tree, Node_Id);
157 static tree emit_index_check (tree, tree, tree, tree);
158 static tree emit_check (tree, tree, int);
159 static tree convert_with_check (Entity_Id, tree, bool, bool, bool);
160 static bool addressable_p (tree);
161 static tree assoc_to_constructor (Node_Id, tree);
162 static tree extract_values (tree, tree);
163 static tree pos_to_constructor (Node_Id, tree, Entity_Id);
164 static tree maybe_implicit_deref (tree);
165 static tree gnat_stabilize_reference_1 (tree, bool);
166 static void annotate_with_node (tree, Node_Id);
167
168 /* Constants for +0.5 and -0.5 for float-to-integer rounding. */
169 static REAL_VALUE_TYPE dconstp5;
170 static REAL_VALUE_TYPE dconstmp5;
171 \f
172 /* This is the main program of the back-end. It sets up all the table
173 structures and then generates code. */
174
175 void
176 gigi (Node_Id gnat_root, int max_gnat_node, int number_name,
177 struct Node *nodes_ptr, Node_Id *next_node_ptr, Node_Id *prev_node_ptr,
178 struct Elist_Header *elists_ptr, struct Elmt_Item *elmts_ptr,
179 struct String_Entry *strings_ptr, Char_Code *string_chars_ptr,
180 struct List_Header *list_headers_ptr, Int number_units ATTRIBUTE_UNUSED,
181 char *file_info_ptr ATTRIBUTE_UNUSED, Entity_Id standard_integer,
182 Entity_Id standard_long_long_float, Entity_Id standard_exception_type,
183 Int gigi_operating_mode)
184 {
185 tree gnu_standard_long_long_float;
186 tree gnu_standard_exception_type;
187 struct elab_info *info;
188
189 max_gnat_nodes = max_gnat_node;
190 number_names = number_name;
191 Nodes_Ptr = nodes_ptr;
192 Next_Node_Ptr = next_node_ptr;
193 Prev_Node_Ptr = prev_node_ptr;
194 Elists_Ptr = elists_ptr;
195 Elmts_Ptr = elmts_ptr;
196 Strings_Ptr = strings_ptr;
197 String_Chars_Ptr = string_chars_ptr;
198 List_Headers_Ptr = list_headers_ptr;
199
200 type_annotate_only = (gigi_operating_mode == 1);
201
202 init_gnat_to_gnu ();
203 gnat_compute_largest_alignment ();
204 init_dummy_type ();
205
206 /* If we are just annotating types, give VOID_TYPE zero sizes to avoid
207 errors. */
208 if (type_annotate_only)
209 {
210 TYPE_SIZE (void_type_node) = bitsize_zero_node;
211 TYPE_SIZE_UNIT (void_type_node) = size_zero_node;
212 }
213
214 /* Save the type we made for integer as the type for Standard.Integer.
215 Then make the rest of the standard types. Note that some of these
216 may be subtypes. */
217 save_gnu_tree (Base_Type (standard_integer), TYPE_NAME (integer_type_node),
218 false);
219
220 gnu_except_ptr_stack = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
221
222 gnu_standard_long_long_float
223 = gnat_to_gnu_entity (Base_Type (standard_long_long_float), NULL_TREE, 0);
224 gnu_standard_exception_type
225 = gnat_to_gnu_entity (Base_Type (standard_exception_type), NULL_TREE, 0);
226
227 init_gigi_decls (gnu_standard_long_long_float, gnu_standard_exception_type);
228
229 /* Process any Pragma Ident for the main unit. */
230 #ifdef ASM_OUTPUT_IDENT
231 if (Present (Ident_String (Main_Unit)))
232 ASM_OUTPUT_IDENT
233 (asm_out_file,
234 TREE_STRING_POINTER (gnat_to_gnu (Ident_String (Main_Unit))));
235 #endif
236
237 /* If we are using the GCC exception mechanism, let GCC know. */
238 if (Exception_Mechanism == GCC_ZCX)
239 gnat_init_gcc_eh ();
240
241 gcc_assert (Nkind (gnat_root) == N_Compilation_Unit);
242 Compilation_Unit_to_gnu (gnat_root);
243
244 /* Now see if we have any elaboration procedures to deal with. */
245 for (info = elab_info_list; info; info = info->next)
246 {
247 tree gnu_body = DECL_SAVED_TREE (info->elab_proc);
248 tree gnu_stmts;
249
250 /* Mark everything we have as not visited. */
251 walk_tree_without_duplicates (&gnu_body, mark_unvisited, NULL);
252
253 /* Set the current function to be the elaboration procedure and gimplify
254 what we have. */
255 current_function_decl = info->elab_proc;
256 gimplify_body (&gnu_body, info->elab_proc);
257
258 /* We should have a BIND_EXPR, but it may or may not have any statements
259 in it. If it doesn't have any, we have nothing to do. */
260 gnu_stmts = gnu_body;
261 if (TREE_CODE (gnu_stmts) == BIND_EXPR)
262 gnu_stmts = BIND_EXPR_BODY (gnu_stmts);
263
264 /* If there are no statements, there is no elaboration code. */
265 if (!gnu_stmts || !STATEMENT_LIST_HEAD (gnu_stmts))
266 Set_Has_No_Elaboration_Code (info->gnat_node, 1);
267 else
268 {
269 /* Otherwise, compile the function. Note that we'll be gimplifying
270 it twice, but that's fine for the nodes we use. */
271 begin_subprog_body (info->elab_proc);
272 end_subprog_body (gnu_body);
273 }
274 }
275 }
276 \f
277 /* Perform initializations for this module. */
278
279 void
280 gnat_init_stmt_group ()
281 {
282 /* Initialize ourselves. */
283 init_code_table ();
284 start_stmt_group ();
285
286 /* Enable GNAT stack checking method if needed */
287 if (!Stack_Check_Probes_On_Target)
288 set_stack_check_libfunc (gen_rtx_SYMBOL_REF (Pmode, "_gnat_stack_check"));
289
290 gcc_assert (Exception_Mechanism != Front_End_ZCX);
291
292 REAL_ARITHMETIC (dconstp5, RDIV_EXPR, dconst1, dconst2);
293 REAL_ARITHMETIC (dconstmp5, RDIV_EXPR, dconstm1, dconst2);
294 }
295 \f
296 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Identifier,
297 to a GCC tree, which is returned. GNU_RESULT_TYPE_P is a pointer to
298 where we should place the result type. */
299
300 static tree
301 Identifier_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p)
302 {
303 tree gnu_result_type;
304 tree gnu_result;
305 Node_Id gnat_temp, gnat_temp_type;
306
307 /* If the Etype of this node does not equal the Etype of the Entity,
308 something is wrong with the entity map, probably in generic
309 instantiation. However, this does not apply to types. Since we sometime
310 have strange Ekind's, just do this test for objects. Also, if the Etype of
311 the Entity is private, the Etype of the N_Identifier is allowed to be the
312 full type and also we consider a packed array type to be the same as the
313 original type. Similarly, a class-wide type is equivalent to a subtype of
314 itself. Finally, if the types are Itypes, one may be a copy of the other,
315 which is also legal. */
316 gnat_temp = (Nkind (gnat_node) == N_Defining_Identifier
317 ? gnat_node : Entity (gnat_node));
318 gnat_temp_type = Etype (gnat_temp);
319
320 gcc_assert (Etype (gnat_node) == gnat_temp_type
321 || (Is_Packed (gnat_temp_type)
322 && Etype (gnat_node) == Packed_Array_Type (gnat_temp_type))
323 || (Is_Class_Wide_Type (Etype (gnat_node)))
324 || (IN (Ekind (gnat_temp_type), Private_Kind)
325 && Present (Full_View (gnat_temp_type))
326 && ((Etype (gnat_node) == Full_View (gnat_temp_type))
327 || (Is_Packed (Full_View (gnat_temp_type))
328 && (Etype (gnat_node)
329 == Packed_Array_Type (Full_View
330 (gnat_temp_type))))))
331 || (Is_Itype (Etype (gnat_node)) && Is_Itype (gnat_temp_type))
332 || !(Ekind (gnat_temp) == E_Variable
333 || Ekind (gnat_temp) == E_Component
334 || Ekind (gnat_temp) == E_Constant
335 || Ekind (gnat_temp) == E_Loop_Parameter
336 || IN (Ekind (gnat_temp), Formal_Kind)));
337
338 /* If this is a reference to a deferred constant whose partial view is an
339 unconstrained private type, the proper type is on the full view of the
340 constant, not on the full view of the type, which may be unconstrained.
341
342 This may be a reference to a type, for example in the prefix of the
343 attribute Position, generated for dispatching code (see Make_DT in
344 exp_disp,adb). In that case we need the type itself, not is parent,
345 in particular if it is a derived type */
346 if (Is_Private_Type (gnat_temp_type)
347 && Has_Unknown_Discriminants (gnat_temp_type)
348 && Present (Full_View (gnat_temp))
349 && !Is_Type (gnat_temp))
350 {
351 gnat_temp = Full_View (gnat_temp);
352 gnat_temp_type = Etype (gnat_temp);
353 gnu_result_type = get_unpadded_type (gnat_temp_type);
354 }
355 else
356 {
357 /* Expand the type of this identitier first, in case it is an enumeral
358 literal, which only get made when the type is expanded. There is no
359 order-of-elaboration issue here. We want to use the Actual_Subtype if
360 it has already been elaborated, otherwise the Etype. Avoid using
361 Actual_Subtype for packed arrays to simplify things. */
362 if ((Ekind (gnat_temp) == E_Constant
363 || Ekind (gnat_temp) == E_Variable || Is_Formal (gnat_temp))
364 && !(Is_Array_Type (Etype (gnat_temp))
365 && Present (Packed_Array_Type (Etype (gnat_temp))))
366 && Present (Actual_Subtype (gnat_temp))
367 && present_gnu_tree (Actual_Subtype (gnat_temp)))
368 gnat_temp_type = Actual_Subtype (gnat_temp);
369 else
370 gnat_temp_type = Etype (gnat_node);
371
372 gnu_result_type = get_unpadded_type (gnat_temp_type);
373 }
374
375 gnu_result = gnat_to_gnu_entity (gnat_temp, NULL_TREE, 0);
376
377 /* If we are in an exception handler, force this variable into memory to
378 ensure optimization does not remove stores that appear redundant but are
379 actually needed in case an exception occurs.
380
381 ??? Note that we need not do this if the variable is declared within the
382 handler, only if it is referenced in the handler and declared in an
383 enclosing block, but we have no way of testing that right now.
384
385 ??? Also, for now all we can do is make it volatile. But we only
386 do this for SJLJ. */
387 if (TREE_VALUE (gnu_except_ptr_stack)
388 && TREE_CODE (gnu_result) == VAR_DECL)
389 TREE_THIS_VOLATILE (gnu_result) = TREE_SIDE_EFFECTS (gnu_result) = 1;
390
391 /* Some objects (such as parameters passed by reference, globals of
392 variable size, and renamed objects) actually represent the address
393 of the object. In that case, we must do the dereference. Likewise,
394 deal with parameters to foreign convention subprograms. Call fold
395 here since GNU_RESULT may be a CONST_DECL. */
396 if (DECL_P (gnu_result)
397 && (DECL_BY_REF_P (gnu_result)
398 || (TREE_CODE (gnu_result) == PARM_DECL
399 && DECL_BY_COMPONENT_PTR_P (gnu_result))))
400 {
401 bool ro = DECL_POINTS_TO_READONLY_P (gnu_result);
402 tree initial;
403
404 if (TREE_CODE (gnu_result) == PARM_DECL
405 && DECL_BY_COMPONENT_PTR_P (gnu_result))
406 gnu_result
407 = build_unary_op (INDIRECT_REF, NULL_TREE,
408 convert (build_pointer_type (gnu_result_type),
409 gnu_result));
410
411 /* If the object is constant, we try to do the dereference directly
412 through the DECL_INITIAL. This is actually required in order to get
413 correct aliasing information for renamed objects that are components
414 of non-aliased aggregates, because the type of the renamed object and
415 that of the aggregate don't alias.
416
417 Note that we expect the initial value to have been stabilized.
418 If it contains e.g. a variable reference, we certainly don't want
419 to re-evaluate the variable each time the renaming is used.
420
421 Stabilization is currently not performed at the global level but
422 create_var_decl avoids setting DECL_INITIAL if the value is not
423 constant then, and we get to the pointer dereference below.
424
425 ??? Couldn't the aliasing issue show up again in this case ?
426 There is no obvious reason why not. */
427 else if (TREE_READONLY (gnu_result)
428 && DECL_INITIAL (gnu_result)
429 /* Strip possible conversion to reference type. */
430 && ((initial = TREE_CODE (DECL_INITIAL (gnu_result))
431 == NOP_EXPR
432 ? TREE_OPERAND (DECL_INITIAL (gnu_result), 0)
433 : DECL_INITIAL (gnu_result), 1))
434 && TREE_CODE (initial) == ADDR_EXPR
435 && (TREE_CODE (TREE_OPERAND (initial, 0)) == ARRAY_REF
436 || (TREE_CODE (TREE_OPERAND (initial, 0))
437 == COMPONENT_REF)))
438 gnu_result = TREE_OPERAND (initial, 0);
439 else
440 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE,
441 fold (gnu_result));
442
443 TREE_READONLY (gnu_result) = TREE_STATIC (gnu_result) = ro;
444 }
445
446 /* The GNAT tree has the type of a function as the type of its result. Also
447 use the type of the result if the Etype is a subtype which is nominally
448 unconstrained. But remove any padding from the resulting type. */
449 if (TREE_CODE (TREE_TYPE (gnu_result)) == FUNCTION_TYPE
450 || Is_Constr_Subt_For_UN_Aliased (gnat_temp_type))
451 {
452 gnu_result_type = TREE_TYPE (gnu_result);
453 if (TREE_CODE (gnu_result_type) == RECORD_TYPE
454 && TYPE_IS_PADDING_P (gnu_result_type))
455 gnu_result_type = TREE_TYPE (TYPE_FIELDS (gnu_result_type));
456 }
457
458 /* We always want to return the underlying INTEGER_CST for an enumeration
459 literal to avoid the need to call fold in lots of places. But don't do
460 this is the parent will be taking the address of this object. */
461 if (TREE_CODE (gnu_result) == CONST_DECL)
462 {
463 gnat_temp = Parent (gnat_node);
464 if (!DECL_CONST_CORRESPONDING_VAR (gnu_result)
465 || (Nkind (gnat_temp) != N_Reference
466 && !(Nkind (gnat_temp) == N_Attribute_Reference
467 && ((Get_Attribute_Id (Attribute_Name (gnat_temp))
468 == Attr_Address)
469 || (Get_Attribute_Id (Attribute_Name (gnat_temp))
470 == Attr_Access)
471 || (Get_Attribute_Id (Attribute_Name (gnat_temp))
472 == Attr_Unchecked_Access)
473 || (Get_Attribute_Id (Attribute_Name (gnat_temp))
474 == Attr_Unrestricted_Access)))))
475 gnu_result = DECL_INITIAL (gnu_result);
476 }
477
478 *gnu_result_type_p = gnu_result_type;
479 return gnu_result;
480 }
481 \f
482 /* Subroutine of gnat_to_gnu to process gnat_node, an N_Pragma. Return
483 any statements we generate. */
484
485 static tree
486 Pragma_to_gnu (Node_Id gnat_node)
487 {
488 Node_Id gnat_temp;
489 tree gnu_result = alloc_stmt_list ();
490
491 /* Check for (and ignore) unrecognized pragma and do nothing if we are just
492 annotating types. */
493 if (type_annotate_only || !Is_Pragma_Name (Chars (gnat_node)))
494 return gnu_result;
495
496 switch (Get_Pragma_Id (Chars (gnat_node)))
497 {
498 case Pragma_Inspection_Point:
499 /* Do nothing at top level: all such variables are already viewable. */
500 if (global_bindings_p ())
501 break;
502
503 for (gnat_temp = First (Pragma_Argument_Associations (gnat_node));
504 Present (gnat_temp);
505 gnat_temp = Next (gnat_temp))
506 {
507 tree gnu_expr = gnat_to_gnu (Expression (gnat_temp));
508
509 if (TREE_CODE (gnu_expr) == UNCONSTRAINED_ARRAY_REF)
510 gnu_expr = TREE_OPERAND (gnu_expr, 0);
511
512 gnu_expr = build1 (USE_STMT, void_type_node, gnu_expr);
513 annotate_with_node (gnu_expr, gnat_node);
514 append_to_statement_list (gnu_expr, &gnu_result);
515 }
516 break;
517
518 case Pragma_Optimize:
519 switch (Chars (Expression
520 (First (Pragma_Argument_Associations (gnat_node)))))
521 {
522 case Name_Time: case Name_Space:
523 if (optimize == 0)
524 post_error ("insufficient -O value?", gnat_node);
525 break;
526
527 case Name_Off:
528 if (optimize != 0)
529 post_error ("must specify -O0?", gnat_node);
530 break;
531
532 default:
533 gcc_unreachable ();
534 }
535 break;
536
537 case Pragma_Reviewable:
538 if (write_symbols == NO_DEBUG)
539 post_error ("must specify -g?", gnat_node);
540 break;
541 }
542
543 return gnu_result;
544 }
545 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Attribute,
546 to a GCC tree, which is returned. GNU_RESULT_TYPE_P is a pointer to
547 where we should place the result type. ATTRIBUTE is the attribute ID. */
548
549 static tree
550 Attribute_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p, int attribute)
551 {
552 tree gnu_result = error_mark_node;
553 tree gnu_result_type;
554 tree gnu_expr;
555 bool prefix_unused = false;
556 tree gnu_prefix = gnat_to_gnu (Prefix (gnat_node));
557 tree gnu_type = TREE_TYPE (gnu_prefix);
558
559 /* If the input is a NULL_EXPR, make a new one. */
560 if (TREE_CODE (gnu_prefix) == NULL_EXPR)
561 {
562 *gnu_result_type_p = get_unpadded_type (Etype (gnat_node));
563 return build1 (NULL_EXPR, *gnu_result_type_p,
564 TREE_OPERAND (gnu_prefix, 0));
565 }
566
567 switch (attribute)
568 {
569 case Attr_Pos:
570 case Attr_Val:
571 /* These are just conversions until since representation clauses for
572 enumerations are handled in the front end. */
573 {
574 bool checkp = Do_Range_Check (First (Expressions (gnat_node)));
575
576 gnu_result = gnat_to_gnu (First (Expressions (gnat_node)));
577 gnu_result_type = get_unpadded_type (Etype (gnat_node));
578 gnu_result = convert_with_check (Etype (gnat_node), gnu_result,
579 checkp, checkp, true);
580 }
581 break;
582
583 case Attr_Pred:
584 case Attr_Succ:
585 /* These just add or subject the constant 1. Representation clauses for
586 enumerations are handled in the front-end. */
587 gnu_expr = gnat_to_gnu (First (Expressions (gnat_node)));
588 gnu_result_type = get_unpadded_type (Etype (gnat_node));
589
590 if (Do_Range_Check (First (Expressions (gnat_node))))
591 {
592 gnu_expr = protect_multiple_eval (gnu_expr);
593 gnu_expr
594 = emit_check
595 (build_binary_op (EQ_EXPR, integer_type_node,
596 gnu_expr,
597 attribute == Attr_Pred
598 ? TYPE_MIN_VALUE (gnu_result_type)
599 : TYPE_MAX_VALUE (gnu_result_type)),
600 gnu_expr, CE_Range_Check_Failed);
601 }
602
603 gnu_result
604 = build_binary_op (attribute == Attr_Pred
605 ? MINUS_EXPR : PLUS_EXPR,
606 gnu_result_type, gnu_expr,
607 convert (gnu_result_type, integer_one_node));
608 break;
609
610 case Attr_Address:
611 case Attr_Unrestricted_Access:
612 /* Conversions don't change something's address but can cause us to miss
613 the COMPONENT_REF case below, so strip them off. */
614 gnu_prefix = remove_conversions (gnu_prefix,
615 !Must_Be_Byte_Aligned (gnat_node));
616
617 /* If we are taking 'Address of an unconstrained object, this is the
618 pointer to the underlying array. */
619 gnu_prefix = maybe_unconstrained_array (gnu_prefix);
620
621 /* ... fall through ... */
622
623 case Attr_Access:
624 case Attr_Unchecked_Access:
625 case Attr_Code_Address:
626 gnu_result_type = get_unpadded_type (Etype (gnat_node));
627 gnu_result
628 = build_unary_op (((attribute == Attr_Address
629 || attribute == Attr_Unrestricted_Access)
630 && !Must_Be_Byte_Aligned (gnat_node))
631 ? ATTR_ADDR_EXPR : ADDR_EXPR,
632 gnu_result_type, gnu_prefix);
633
634 /* For 'Code_Address, find an inner ADDR_EXPR and mark it so that we
635 don't try to build a trampoline. */
636 if (attribute == Attr_Code_Address)
637 {
638 for (gnu_expr = gnu_result;
639 TREE_CODE (gnu_expr) == NOP_EXPR
640 || TREE_CODE (gnu_expr) == CONVERT_EXPR;
641 gnu_expr = TREE_OPERAND (gnu_expr, 0))
642 TREE_CONSTANT (gnu_expr) = 1;
643
644 if (TREE_CODE (gnu_expr) == ADDR_EXPR)
645 TREE_STATIC (gnu_expr) = TREE_CONSTANT (gnu_expr) = 1;
646 }
647 break;
648
649 case Attr_Pool_Address:
650 {
651 tree gnu_obj_type;
652 tree gnu_ptr = gnu_prefix;
653
654 gnu_result_type = get_unpadded_type (Etype (gnat_node));
655
656 /* If this is an unconstrained array, we know the object must have been
657 allocated with the template in front of the object. So compute the
658 template address.*/
659 if (TYPE_FAT_POINTER_P (TREE_TYPE (gnu_ptr)))
660 gnu_ptr
661 = convert (build_pointer_type
662 (TYPE_OBJECT_RECORD_TYPE
663 (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (gnu_ptr)))),
664 gnu_ptr);
665
666 gnu_obj_type = TREE_TYPE (TREE_TYPE (gnu_ptr));
667 if (TREE_CODE (gnu_obj_type) == RECORD_TYPE
668 && TYPE_CONTAINS_TEMPLATE_P (gnu_obj_type))
669 {
670 tree gnu_char_ptr_type = build_pointer_type (char_type_node);
671 tree gnu_pos = byte_position (TYPE_FIELDS (gnu_obj_type));
672 tree gnu_byte_offset
673 = convert (gnu_char_ptr_type,
674 size_diffop (size_zero_node, gnu_pos));
675
676 gnu_ptr = convert (gnu_char_ptr_type, gnu_ptr);
677 gnu_ptr = build_binary_op (MINUS_EXPR, gnu_char_ptr_type,
678 gnu_ptr, gnu_byte_offset);
679 }
680
681 gnu_result = convert (gnu_result_type, gnu_ptr);
682 }
683 break;
684
685 case Attr_Size:
686 case Attr_Object_Size:
687 case Attr_Value_Size:
688 case Attr_Max_Size_In_Storage_Elements:
689 gnu_expr = gnu_prefix;
690
691 /* Remove NOPS from gnu_expr and conversions from gnu_prefix.
692 We only use GNU_EXPR to see if a COMPONENT_REF was involved. */
693 while (TREE_CODE (gnu_expr) == NOP_EXPR)
694 gnu_expr = TREE_OPERAND (gnu_expr, 0)
695 ;
696
697 gnu_prefix = remove_conversions (gnu_prefix, true);
698 prefix_unused = true;
699 gnu_type = TREE_TYPE (gnu_prefix);
700
701 /* Replace an unconstrained array type with the type of the underlying
702 array. We can't do this with a call to maybe_unconstrained_array
703 since we may have a TYPE_DECL. For 'Max_Size_In_Storage_Elements,
704 use the record type that will be used to allocate the object and its
705 template. */
706 if (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE)
707 {
708 gnu_type = TYPE_OBJECT_RECORD_TYPE (gnu_type);
709 if (attribute != Attr_Max_Size_In_Storage_Elements)
710 gnu_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (gnu_type)));
711 }
712
713 /* If we're looking for the size of a field, return the field size.
714 Otherwise, if the prefix is an object, or if 'Object_Size or
715 'Max_Size_In_Storage_Elements has been specified, the result is the
716 GCC size of the type. Otherwise, the result is the RM_Size of the
717 type. */
718 if (TREE_CODE (gnu_prefix) == COMPONENT_REF)
719 gnu_result = DECL_SIZE (TREE_OPERAND (gnu_prefix, 1));
720 else if (TREE_CODE (gnu_prefix) != TYPE_DECL
721 || attribute == Attr_Object_Size
722 || attribute == Attr_Max_Size_In_Storage_Elements)
723 {
724 /* If this is a padded type, the GCC size isn't relevant to the
725 programmer. Normally, what we want is the RM_Size, which was set
726 from the specified size, but if it was not set, we want the size
727 of the relevant field. Using the MAX of those two produces the
728 right result in all case. Don't use the size of the field if it's
729 a self-referential type, since that's never what's wanted. */
730 if (TREE_CODE (gnu_type) == RECORD_TYPE
731 && TYPE_IS_PADDING_P (gnu_type)
732 && TREE_CODE (gnu_expr) == COMPONENT_REF)
733 {
734 gnu_result = rm_size (gnu_type);
735 if (!(CONTAINS_PLACEHOLDER_P
736 (DECL_SIZE (TREE_OPERAND (gnu_expr, 1)))))
737 gnu_result
738 = size_binop (MAX_EXPR, gnu_result,
739 DECL_SIZE (TREE_OPERAND (gnu_expr, 1)));
740 }
741 else
742 gnu_result = TYPE_SIZE (gnu_type);
743 }
744 else
745 gnu_result = rm_size (gnu_type);
746
747 gcc_assert (gnu_result);
748
749 /* Deal with a self-referential size by returning the maximum size for a
750 type and by qualifying the size with the object for 'Size of an
751 object. */
752 if (CONTAINS_PLACEHOLDER_P (gnu_result))
753 {
754 if (TREE_CODE (gnu_prefix) != TYPE_DECL)
755 gnu_result = substitute_placeholder_in_expr (gnu_result,
756 gnu_expr);
757 else
758 gnu_result = max_size (gnu_result, true);
759 }
760
761 /* If the type contains a template, subtract its size. */
762 if (TREE_CODE (gnu_type) == RECORD_TYPE
763 && TYPE_CONTAINS_TEMPLATE_P (gnu_type))
764 gnu_result = size_binop (MINUS_EXPR, gnu_result,
765 DECL_SIZE (TYPE_FIELDS (gnu_type)));
766
767 gnu_result_type = get_unpadded_type (Etype (gnat_node));
768
769 /* Always perform division using unsigned arithmetic as the size cannot
770 be negative, but may be an overflowed positive value. This provides
771 correct results for sizes up to 512 MB.
772
773 ??? Size should be calculated in storage elements directly. */
774
775 if (attribute == Attr_Max_Size_In_Storage_Elements)
776 gnu_result = convert (sizetype,
777 fold (build2 (CEIL_DIV_EXPR, bitsizetype,
778 gnu_result, bitsize_unit_node)));
779 break;
780
781 case Attr_Alignment:
782 if (TREE_CODE (gnu_prefix) == COMPONENT_REF
783 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))
784 == RECORD_TYPE)
785 && (TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))))
786 gnu_prefix = TREE_OPERAND (gnu_prefix, 0);
787
788 gnu_type = TREE_TYPE (gnu_prefix);
789 gnu_result_type = get_unpadded_type (Etype (gnat_node));
790 prefix_unused = true;
791
792 if (TREE_CODE (gnu_prefix) == COMPONENT_REF)
793 gnu_result = size_int (DECL_ALIGN (TREE_OPERAND (gnu_prefix, 1)));
794 else
795 gnu_result = size_int (TYPE_ALIGN (gnu_type) / BITS_PER_UNIT);
796 break;
797
798 case Attr_First:
799 case Attr_Last:
800 case Attr_Range_Length:
801 prefix_unused = true;
802
803 if (INTEGRAL_TYPE_P (gnu_type) || TREE_CODE (gnu_type) == REAL_TYPE)
804 {
805 gnu_result_type = get_unpadded_type (Etype (gnat_node));
806
807 if (attribute == Attr_First)
808 gnu_result = TYPE_MIN_VALUE (gnu_type);
809 else if (attribute == Attr_Last)
810 gnu_result = TYPE_MAX_VALUE (gnu_type);
811 else
812 gnu_result
813 = build_binary_op
814 (MAX_EXPR, get_base_type (gnu_result_type),
815 build_binary_op
816 (PLUS_EXPR, get_base_type (gnu_result_type),
817 build_binary_op (MINUS_EXPR,
818 get_base_type (gnu_result_type),
819 convert (gnu_result_type,
820 TYPE_MAX_VALUE (gnu_type)),
821 convert (gnu_result_type,
822 TYPE_MIN_VALUE (gnu_type))),
823 convert (gnu_result_type, integer_one_node)),
824 convert (gnu_result_type, integer_zero_node));
825
826 break;
827 }
828
829 /* ... fall through ... */
830
831 case Attr_Length:
832 {
833 int Dimension = (Present (Expressions (gnat_node))
834 ? UI_To_Int (Intval (First (Expressions (gnat_node))))
835 : 1);
836
837 /* Make sure any implicit dereference gets done. */
838 gnu_prefix = maybe_implicit_deref (gnu_prefix);
839 gnu_prefix = maybe_unconstrained_array (gnu_prefix);
840 gnu_type = TREE_TYPE (gnu_prefix);
841 prefix_unused = true;
842 gnu_result_type = get_unpadded_type (Etype (gnat_node));
843
844 if (TYPE_CONVENTION_FORTRAN_P (gnu_type))
845 {
846 int ndim;
847 tree gnu_type_temp;
848
849 for (ndim = 1, gnu_type_temp = gnu_type;
850 TREE_CODE (TREE_TYPE (gnu_type_temp)) == ARRAY_TYPE
851 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_type_temp));
852 ndim++, gnu_type_temp = TREE_TYPE (gnu_type_temp))
853 ;
854
855 Dimension = ndim + 1 - Dimension;
856 }
857
858 for (; Dimension > 1; Dimension--)
859 gnu_type = TREE_TYPE (gnu_type);
860
861 gcc_assert (TREE_CODE (gnu_type) == ARRAY_TYPE);
862 if (attribute == Attr_First)
863 gnu_result
864 = TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type)));
865 else if (attribute == Attr_Last)
866 gnu_result
867 = TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type)));
868 else
869 /* 'Length or 'Range_Length. */
870 {
871 tree gnu_compute_type
872 = gnat_signed_or_unsigned_type (0,
873 get_base_type (gnu_result_type));
874
875 gnu_result
876 = build_binary_op
877 (MAX_EXPR, gnu_compute_type,
878 build_binary_op
879 (PLUS_EXPR, gnu_compute_type,
880 build_binary_op
881 (MINUS_EXPR, gnu_compute_type,
882 convert (gnu_compute_type,
883 TYPE_MAX_VALUE
884 (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type)))),
885 convert (gnu_compute_type,
886 TYPE_MIN_VALUE
887 (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))))),
888 convert (gnu_compute_type, integer_one_node)),
889 convert (gnu_compute_type, integer_zero_node));
890 }
891
892 /* If this has a PLACEHOLDER_EXPR, qualify it by the object we are
893 handling. Note that these attributes could not have been used on
894 an unconstrained array type. */
895 gnu_result = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_result,
896 gnu_prefix);
897 break;
898 }
899
900 case Attr_Bit_Position:
901 case Attr_Position:
902 case Attr_First_Bit:
903 case Attr_Last_Bit:
904 case Attr_Bit:
905 {
906 HOST_WIDE_INT bitsize;
907 HOST_WIDE_INT bitpos;
908 tree gnu_offset;
909 tree gnu_field_bitpos;
910 tree gnu_field_offset;
911 tree gnu_inner;
912 enum machine_mode mode;
913 int unsignedp, volatilep;
914
915 gnu_result_type = get_unpadded_type (Etype (gnat_node));
916 gnu_prefix = remove_conversions (gnu_prefix, true);
917 prefix_unused = true;
918
919 /* We can have 'Bit on any object, but if it isn't a COMPONENT_REF,
920 the result is 0. Don't allow 'Bit on a bare component, though. */
921 if (attribute == Attr_Bit
922 && TREE_CODE (gnu_prefix) != COMPONENT_REF
923 && TREE_CODE (gnu_prefix) != FIELD_DECL)
924 {
925 gnu_result = integer_zero_node;
926 break;
927 }
928
929 else
930 gcc_assert (TREE_CODE (gnu_prefix) == COMPONENT_REF
931 || (attribute == Attr_Bit_Position
932 && TREE_CODE (gnu_prefix) == FIELD_DECL));
933
934 get_inner_reference (gnu_prefix, &bitsize, &bitpos, &gnu_offset,
935 &mode, &unsignedp, &volatilep);
936
937 if (TREE_CODE (gnu_prefix) == COMPONENT_REF)
938 {
939 gnu_field_bitpos = bit_position (TREE_OPERAND (gnu_prefix, 1));
940 gnu_field_offset = byte_position (TREE_OPERAND (gnu_prefix, 1));
941
942 for (gnu_inner = TREE_OPERAND (gnu_prefix, 0);
943 TREE_CODE (gnu_inner) == COMPONENT_REF
944 && DECL_INTERNAL_P (TREE_OPERAND (gnu_inner, 1));
945 gnu_inner = TREE_OPERAND (gnu_inner, 0))
946 {
947 gnu_field_bitpos
948 = size_binop (PLUS_EXPR, gnu_field_bitpos,
949 bit_position (TREE_OPERAND (gnu_inner, 1)));
950 gnu_field_offset
951 = size_binop (PLUS_EXPR, gnu_field_offset,
952 byte_position (TREE_OPERAND (gnu_inner, 1)));
953 }
954 }
955 else if (TREE_CODE (gnu_prefix) == FIELD_DECL)
956 {
957 gnu_field_bitpos = bit_position (gnu_prefix);
958 gnu_field_offset = byte_position (gnu_prefix);
959 }
960 else
961 {
962 gnu_field_bitpos = bitsize_zero_node;
963 gnu_field_offset = size_zero_node;
964 }
965
966 switch (attribute)
967 {
968 case Attr_Position:
969 gnu_result = gnu_field_offset;
970 break;
971
972 case Attr_First_Bit:
973 case Attr_Bit:
974 gnu_result = size_int (bitpos % BITS_PER_UNIT);
975 break;
976
977 case Attr_Last_Bit:
978 gnu_result = bitsize_int (bitpos % BITS_PER_UNIT);
979 gnu_result = size_binop (PLUS_EXPR, gnu_result,
980 TYPE_SIZE (TREE_TYPE (gnu_prefix)));
981 gnu_result = size_binop (MINUS_EXPR, gnu_result,
982 bitsize_one_node);
983 break;
984
985 case Attr_Bit_Position:
986 gnu_result = gnu_field_bitpos;
987 break;
988 }
989
990 /* If this has a PLACEHOLDER_EXPR, qualify it by the object
991 we are handling. */
992 gnu_result = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_result, gnu_prefix);
993 break;
994 }
995
996 case Attr_Min:
997 case Attr_Max:
998 {
999 tree gnu_lhs = gnat_to_gnu (First (Expressions (gnat_node)));
1000 tree gnu_rhs = gnat_to_gnu (Next (First (Expressions (gnat_node))));
1001
1002 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1003 gnu_result = build_binary_op (attribute == Attr_Min
1004 ? MIN_EXPR : MAX_EXPR,
1005 gnu_result_type, gnu_lhs, gnu_rhs);
1006 }
1007 break;
1008
1009 case Attr_Passed_By_Reference:
1010 gnu_result = size_int (default_pass_by_ref (gnu_type)
1011 || must_pass_by_ref (gnu_type));
1012 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1013 break;
1014
1015 case Attr_Component_Size:
1016 if (TREE_CODE (gnu_prefix) == COMPONENT_REF
1017 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))
1018 == RECORD_TYPE)
1019 && (TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))))
1020 gnu_prefix = TREE_OPERAND (gnu_prefix, 0);
1021
1022 gnu_prefix = maybe_implicit_deref (gnu_prefix);
1023 gnu_type = TREE_TYPE (gnu_prefix);
1024
1025 if (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE)
1026 gnu_type = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_type))));
1027
1028 while (TREE_CODE (TREE_TYPE (gnu_type)) == ARRAY_TYPE
1029 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_type)))
1030 gnu_type = TREE_TYPE (gnu_type);
1031
1032 gcc_assert (TREE_CODE (gnu_type) == ARRAY_TYPE);
1033
1034 /* Note this size cannot be self-referential. */
1035 gnu_result = TYPE_SIZE (TREE_TYPE (gnu_type));
1036 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1037 prefix_unused = true;
1038 break;
1039
1040 case Attr_Null_Parameter:
1041 /* This is just a zero cast to the pointer type for
1042 our prefix and dereferenced. */
1043 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1044 gnu_result
1045 = build_unary_op (INDIRECT_REF, NULL_TREE,
1046 convert (build_pointer_type (gnu_result_type),
1047 integer_zero_node));
1048 TREE_PRIVATE (gnu_result) = 1;
1049 break;
1050
1051 case Attr_Mechanism_Code:
1052 {
1053 int code;
1054 Entity_Id gnat_obj = Entity (Prefix (gnat_node));
1055
1056 prefix_unused = true;
1057 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1058 if (Present (Expressions (gnat_node)))
1059 {
1060 int i = UI_To_Int (Intval (First (Expressions (gnat_node))));
1061
1062 for (gnat_obj = First_Formal (gnat_obj); i > 1;
1063 i--, gnat_obj = Next_Formal (gnat_obj))
1064 ;
1065 }
1066
1067 code = Mechanism (gnat_obj);
1068 if (code == Default)
1069 code = ((present_gnu_tree (gnat_obj)
1070 && (DECL_BY_REF_P (get_gnu_tree (gnat_obj))
1071 || ((TREE_CODE (get_gnu_tree (gnat_obj))
1072 == PARM_DECL)
1073 && (DECL_BY_COMPONENT_PTR_P
1074 (get_gnu_tree (gnat_obj))))))
1075 ? By_Reference : By_Copy);
1076 gnu_result = convert (gnu_result_type, size_int (- code));
1077 }
1078 break;
1079
1080 default:
1081 /* Say we have an unimplemented attribute. Then set the value to be
1082 returned to be a zero and hope that's something we can convert to the
1083 type of this attribute. */
1084 post_error ("unimplemented attribute", gnat_node);
1085 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1086 gnu_result = integer_zero_node;
1087 break;
1088 }
1089
1090 /* If this is an attribute where the prefix was unused, force a use of it if
1091 it has a side-effect. But don't do it if the prefix is just an entity
1092 name. However, if an access check is needed, we must do it. See second
1093 example in AARM 11.6(5.e). */
1094 if (prefix_unused && TREE_SIDE_EFFECTS (gnu_prefix)
1095 && !Is_Entity_Name (Prefix (gnat_node)))
1096 gnu_result = fold (build2 (COMPOUND_EXPR, TREE_TYPE (gnu_result),
1097 gnu_prefix, gnu_result));
1098
1099 *gnu_result_type_p = gnu_result_type;
1100 return gnu_result;
1101 }
1102 \f
1103 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Case_Statement,
1104 to a GCC tree, which is returned. */
1105
1106 static tree
1107 Case_Statement_to_gnu (Node_Id gnat_node)
1108 {
1109 tree gnu_result;
1110 tree gnu_expr;
1111 Node_Id gnat_when;
1112
1113 gnu_expr = gnat_to_gnu (Expression (gnat_node));
1114 gnu_expr = convert (get_base_type (TREE_TYPE (gnu_expr)), gnu_expr);
1115
1116 /* The range of values in a case statement is determined by the rules in
1117 RM 5.4(7-9). In almost all cases, this range is represented by the Etype
1118 of the expression. One exception arises in the case of a simple name that
1119 is parenthesized. This still has the Etype of the name, but since it is
1120 not a name, para 7 does not apply, and we need to go to the base type.
1121 This is the only case where parenthesization affects the dynamic
1122 semantics (i.e. the range of possible values at runtime that is covered
1123 by the others alternative.
1124
1125 Another exception is if the subtype of the expression is non-static. In
1126 that case, we also have to use the base type. */
1127 if (Paren_Count (Expression (gnat_node)) != 0
1128 || !Is_OK_Static_Subtype (Underlying_Type
1129 (Etype (Expression (gnat_node)))))
1130 gnu_expr = convert (get_base_type (TREE_TYPE (gnu_expr)), gnu_expr);
1131
1132 /* We build a SWITCH_EXPR that contains the code with interspersed
1133 CASE_LABEL_EXPRs for each label. */
1134
1135 push_stack (&gnu_switch_label_stack, NULL_TREE, create_artificial_label ());
1136 start_stmt_group ();
1137 for (gnat_when = First_Non_Pragma (Alternatives (gnat_node));
1138 Present (gnat_when);
1139 gnat_when = Next_Non_Pragma (gnat_when))
1140 {
1141 Node_Id gnat_choice;
1142
1143 /* First compile all the different case choices for the current WHEN
1144 alternative. */
1145 for (gnat_choice = First (Discrete_Choices (gnat_when));
1146 Present (gnat_choice); gnat_choice = Next (gnat_choice))
1147 {
1148 tree gnu_low = NULL_TREE, gnu_high = NULL_TREE;
1149
1150 switch (Nkind (gnat_choice))
1151 {
1152 case N_Range:
1153 gnu_low = gnat_to_gnu (Low_Bound (gnat_choice));
1154 gnu_high = gnat_to_gnu (High_Bound (gnat_choice));
1155 break;
1156
1157 case N_Subtype_Indication:
1158 gnu_low = gnat_to_gnu (Low_Bound (Range_Expression
1159 (Constraint (gnat_choice))));
1160 gnu_high = gnat_to_gnu (High_Bound (Range_Expression
1161 (Constraint (gnat_choice))));
1162 break;
1163
1164 case N_Identifier:
1165 case N_Expanded_Name:
1166 /* This represents either a subtype range or a static value of
1167 some kind; Ekind says which. If a static value, fall through
1168 to the next case. */
1169 if (IN (Ekind (Entity (gnat_choice)), Type_Kind))
1170 {
1171 tree gnu_type = get_unpadded_type (Entity (gnat_choice));
1172
1173 gnu_low = fold (TYPE_MIN_VALUE (gnu_type));
1174 gnu_high = fold (TYPE_MAX_VALUE (gnu_type));
1175 break;
1176 }
1177
1178 /* ... fall through ... */
1179
1180 case N_Character_Literal:
1181 case N_Integer_Literal:
1182 gnu_low = gnat_to_gnu (gnat_choice);
1183 break;
1184
1185 case N_Others_Choice:
1186 break;
1187
1188 default:
1189 gcc_unreachable ();
1190 }
1191
1192 add_stmt_with_node (build3 (CASE_LABEL_EXPR, void_type_node,
1193 gnu_low, gnu_high,
1194 create_artificial_label ()),
1195 gnat_choice);
1196 }
1197
1198 /* Push a binding level here in case variables are declared since we want
1199 them to be local to this set of statements instead of the block
1200 containing the Case statement. */
1201 add_stmt (build_stmt_group (Statements (gnat_when), true));
1202 add_stmt (build1 (GOTO_EXPR, void_type_node,
1203 TREE_VALUE (gnu_switch_label_stack)));
1204 }
1205
1206 /* Now emit a definition of the label all the cases branched to. */
1207 add_stmt (build1 (LABEL_EXPR, void_type_node,
1208 TREE_VALUE (gnu_switch_label_stack)));
1209 gnu_result = build3 (SWITCH_EXPR, TREE_TYPE (gnu_expr), gnu_expr,
1210 end_stmt_group (), NULL_TREE);
1211 pop_stack (&gnu_switch_label_stack);
1212
1213 return gnu_result;
1214 }
1215 \f
1216 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Loop_Statement,
1217 to a GCC tree, which is returned. */
1218
1219 static tree
1220 Loop_Statement_to_gnu (Node_Id gnat_node)
1221 {
1222 /* ??? It would be nice to use "build" here, but there's no build5. */
1223 tree gnu_loop_stmt = build_nt (LOOP_STMT, NULL_TREE, NULL_TREE,
1224 NULL_TREE, NULL_TREE, NULL_TREE);
1225 tree gnu_loop_var = NULL_TREE;
1226 Node_Id gnat_iter_scheme = Iteration_Scheme (gnat_node);
1227 tree gnu_cond_expr = NULL_TREE;
1228 tree gnu_result;
1229
1230 TREE_TYPE (gnu_loop_stmt) = void_type_node;
1231 TREE_SIDE_EFFECTS (gnu_loop_stmt) = 1;
1232 LOOP_STMT_LABEL (gnu_loop_stmt) = create_artificial_label ();
1233 annotate_with_node (gnu_loop_stmt, gnat_node);
1234
1235 /* Save the end label of this LOOP_STMT in a stack so that the corresponding
1236 N_Exit_Statement can find it. */
1237 push_stack (&gnu_loop_label_stack, NULL_TREE,
1238 LOOP_STMT_LABEL (gnu_loop_stmt));
1239
1240 /* Set the condition that under which the loop should continue.
1241 For "LOOP .... END LOOP;" the condition is always true. */
1242 if (No (gnat_iter_scheme))
1243 ;
1244 /* The case "WHILE condition LOOP ..... END LOOP;" */
1245 else if (Present (Condition (gnat_iter_scheme)))
1246 LOOP_STMT_TOP_COND (gnu_loop_stmt)
1247 = gnat_to_gnu (Condition (gnat_iter_scheme));
1248 else
1249 {
1250 /* We have an iteration scheme. */
1251 Node_Id gnat_loop_spec = Loop_Parameter_Specification (gnat_iter_scheme);
1252 Entity_Id gnat_loop_var = Defining_Entity (gnat_loop_spec);
1253 Entity_Id gnat_type = Etype (gnat_loop_var);
1254 tree gnu_type = get_unpadded_type (gnat_type);
1255 tree gnu_low = TYPE_MIN_VALUE (gnu_type);
1256 tree gnu_high = TYPE_MAX_VALUE (gnu_type);
1257 bool reversep = Reverse_Present (gnat_loop_spec);
1258 tree gnu_first = reversep ? gnu_high : gnu_low;
1259 tree gnu_last = reversep ? gnu_low : gnu_high;
1260 enum tree_code end_code = reversep ? GE_EXPR : LE_EXPR;
1261 tree gnu_base_type = get_base_type (gnu_type);
1262 tree gnu_limit = (reversep ? TYPE_MIN_VALUE (gnu_base_type)
1263 : TYPE_MAX_VALUE (gnu_base_type));
1264
1265 /* We know the loop variable will not overflow if GNU_LAST is a constant
1266 and is not equal to GNU_LIMIT. If it might overflow, we have to move
1267 the limit test to the end of the loop. In that case, we have to test
1268 for an empty loop outside the loop. */
1269 if (TREE_CODE (gnu_last) != INTEGER_CST
1270 || TREE_CODE (gnu_limit) != INTEGER_CST
1271 || tree_int_cst_equal (gnu_last, gnu_limit))
1272 {
1273 gnu_cond_expr
1274 = build3 (COND_EXPR, void_type_node,
1275 build_binary_op (LE_EXPR, integer_type_node,
1276 gnu_low, gnu_high),
1277 NULL_TREE, alloc_stmt_list ());
1278 annotate_with_node (gnu_cond_expr, gnat_loop_spec);
1279 }
1280
1281 /* Open a new nesting level that will surround the loop to declare the
1282 loop index variable. */
1283 start_stmt_group ();
1284 gnat_pushlevel ();
1285
1286 /* Declare the loop index and set it to its initial value. */
1287 gnu_loop_var = gnat_to_gnu_entity (gnat_loop_var, gnu_first, 1);
1288 if (DECL_BY_REF_P (gnu_loop_var))
1289 gnu_loop_var = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_loop_var);
1290
1291 /* The loop variable might be a padded type, so use `convert' to get a
1292 reference to the inner variable if so. */
1293 gnu_loop_var = convert (get_base_type (gnu_type), gnu_loop_var);
1294
1295 /* Set either the top or bottom exit condition as appropriate depending
1296 on whether or not we know an overflow cannot occur. */
1297 if (gnu_cond_expr)
1298 LOOP_STMT_BOT_COND (gnu_loop_stmt)
1299 = build_binary_op (NE_EXPR, integer_type_node,
1300 gnu_loop_var, gnu_last);
1301 else
1302 LOOP_STMT_TOP_COND (gnu_loop_stmt)
1303 = build_binary_op (end_code, integer_type_node,
1304 gnu_loop_var, gnu_last);
1305
1306 LOOP_STMT_UPDATE (gnu_loop_stmt)
1307 = build_binary_op (reversep ? PREDECREMENT_EXPR
1308 : PREINCREMENT_EXPR,
1309 TREE_TYPE (gnu_loop_var),
1310 gnu_loop_var,
1311 convert (TREE_TYPE (gnu_loop_var),
1312 integer_one_node));
1313 annotate_with_node (LOOP_STMT_UPDATE (gnu_loop_stmt),
1314 gnat_iter_scheme);
1315 }
1316
1317 /* If the loop was named, have the name point to this loop. In this case,
1318 the association is not a ..._DECL node, but the end label from this
1319 LOOP_STMT. */
1320 if (Present (Identifier (gnat_node)))
1321 save_gnu_tree (Entity (Identifier (gnat_node)),
1322 LOOP_STMT_LABEL (gnu_loop_stmt), true);
1323
1324 /* Make the loop body into its own block, so any allocated storage will be
1325 released every iteration. This is needed for stack allocation. */
1326 LOOP_STMT_BODY (gnu_loop_stmt)
1327 = build_stmt_group (Statements (gnat_node), true);
1328
1329 /* If we declared a variable, then we are in a statement group for that
1330 declaration. Add the LOOP_STMT to it and make that the "loop". */
1331 if (gnu_loop_var)
1332 {
1333 add_stmt (gnu_loop_stmt);
1334 gnat_poplevel ();
1335 gnu_loop_stmt = end_stmt_group ();
1336 }
1337
1338 /* If we have an outer COND_EXPR, that's our result and this loop is its
1339 "true" statement. Otherwise, the result is the LOOP_STMT. */
1340 if (gnu_cond_expr)
1341 {
1342 COND_EXPR_THEN (gnu_cond_expr) = gnu_loop_stmt;
1343 gnu_result = gnu_cond_expr;
1344 recalculate_side_effects (gnu_cond_expr);
1345 }
1346 else
1347 gnu_result = gnu_loop_stmt;
1348
1349 pop_stack (&gnu_loop_label_stack);
1350
1351 return gnu_result;
1352 }
1353 \f
1354 /* Subroutine of gnat_to_gnu to process gnat_node, an N_Subprogram_Body. We
1355 don't return anything. */
1356
1357 static void
1358 Subprogram_Body_to_gnu (Node_Id gnat_node)
1359 {
1360 /* Save debug output mode in case it is reset. */
1361 enum debug_info_type save_write_symbols = write_symbols;
1362 const struct gcc_debug_hooks *const save_debug_hooks = debug_hooks;
1363 /* Definining identifier of a parameter to the subprogram. */
1364 Entity_Id gnat_param;
1365 /* The defining identifier for the subprogram body. Note that if a
1366 specification has appeared before for this body, then the identifier
1367 occurring in that specification will also be a defining identifier and all
1368 the calls to this subprogram will point to that specification. */
1369 Entity_Id gnat_subprog_id
1370 = (Present (Corresponding_Spec (gnat_node))
1371 ? Corresponding_Spec (gnat_node) : Defining_Entity (gnat_node));
1372 /* The FUNCTION_DECL node corresponding to the subprogram spec. */
1373 tree gnu_subprog_decl;
1374 /* The FUNCTION_TYPE node corresponding to the subprogram spec. */
1375 tree gnu_subprog_type;
1376 tree gnu_cico_list;
1377 tree gnu_result;
1378
1379 /* If this is a generic object or if it has been eliminated,
1380 ignore it. */
1381 if (Ekind (gnat_subprog_id) == E_Generic_Procedure
1382 || Ekind (gnat_subprog_id) == E_Generic_Function
1383 || Is_Eliminated (gnat_subprog_id))
1384 return;
1385
1386 /* If debug information is suppressed for the subprogram, turn debug
1387 mode off for the duration of processing. */
1388 if (!Needs_Debug_Info (gnat_subprog_id))
1389 {
1390 write_symbols = NO_DEBUG;
1391 debug_hooks = &do_nothing_debug_hooks;
1392 }
1393
1394 /* If this subprogram acts as its own spec, define it. Otherwise, just get
1395 the already-elaborated tree node. However, if this subprogram had its
1396 elaboration deferred, we will already have made a tree node for it. So
1397 treat it as not being defined in that case. Such a subprogram cannot
1398 have an address clause or a freeze node, so this test is safe, though it
1399 does disable some otherwise-useful error checking. */
1400 gnu_subprog_decl
1401 = gnat_to_gnu_entity (gnat_subprog_id, NULL_TREE,
1402 Acts_As_Spec (gnat_node)
1403 && !present_gnu_tree (gnat_subprog_id));
1404
1405 gnu_subprog_type = TREE_TYPE (gnu_subprog_decl);
1406
1407 /* Set the line number in the decl to correspond to that of the body so that
1408 the line number notes are written
1409 correctly. */
1410 Sloc_to_locus (Sloc (gnat_node), &DECL_SOURCE_LOCATION (gnu_subprog_decl));
1411
1412 begin_subprog_body (gnu_subprog_decl);
1413 gnu_cico_list = TYPE_CI_CO_LIST (gnu_subprog_type);
1414
1415 /* If there are OUT parameters, we need to ensure that the return statement
1416 properly copies them out. We do this by making a new block and converting
1417 any inner return into a goto to a label at the end of the block. */
1418 push_stack (&gnu_return_label_stack, NULL_TREE,
1419 gnu_cico_list ? create_artificial_label () : NULL_TREE);
1420
1421 /* Get a tree corresponding to the code for the subprogram. */
1422 start_stmt_group ();
1423 gnat_pushlevel ();
1424
1425 /* See if there are any parameters for which we don't yet have GCC entities.
1426 These must be for OUT parameters for which we will be making VAR_DECL
1427 nodes here. Fill them in to TYPE_CI_CO_LIST, which must contain the empty
1428 entry as well. We can match up the entries because TYPE_CI_CO_LIST is in
1429 the order of the parameters. */
1430 for (gnat_param = First_Formal (gnat_subprog_id);
1431 Present (gnat_param);
1432 gnat_param = Next_Formal_With_Extras (gnat_param))
1433 if (!present_gnu_tree (gnat_param))
1434 {
1435 /* Skip any entries that have been already filled in; they must
1436 correspond to IN OUT parameters. */
1437 for (; gnu_cico_list && TREE_VALUE (gnu_cico_list);
1438 gnu_cico_list = TREE_CHAIN (gnu_cico_list))
1439 ;
1440
1441 /* Do any needed references for padded types. */
1442 TREE_VALUE (gnu_cico_list)
1443 = convert (TREE_TYPE (TREE_PURPOSE (gnu_cico_list)),
1444 gnat_to_gnu_entity (gnat_param, NULL_TREE, 1));
1445 }
1446
1447 process_decls (Declarations (gnat_node), Empty, Empty, true, true);
1448
1449 /* Generate the code of the subprogram itself. A return statement will be
1450 present and any OUT parameters will be handled there. */
1451 add_stmt (gnat_to_gnu (Handled_Statement_Sequence (gnat_node)));
1452 gnat_poplevel ();
1453 gnu_result = end_stmt_group ();
1454
1455 /* If we made a special return label, we need to make a block that contains
1456 the definition of that label and the copying to the return value. That
1457 block first contains the function, then the label and copy statement. */
1458 if (TREE_VALUE (gnu_return_label_stack))
1459 {
1460 tree gnu_retval;
1461
1462 start_stmt_group ();
1463 gnat_pushlevel ();
1464 add_stmt (gnu_result);
1465 add_stmt (build1 (LABEL_EXPR, void_type_node,
1466 TREE_VALUE (gnu_return_label_stack)));
1467
1468 gnu_cico_list = TYPE_CI_CO_LIST (gnu_subprog_type);
1469 if (list_length (gnu_cico_list) == 1)
1470 gnu_retval = TREE_VALUE (gnu_cico_list);
1471 else
1472 gnu_retval = gnat_build_constructor (TREE_TYPE (gnu_subprog_type),
1473 gnu_cico_list);
1474
1475 if (DECL_P (gnu_retval) && DECL_BY_REF_P (gnu_retval))
1476 gnu_retval = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_retval);
1477
1478 add_stmt_with_node
1479 (build1 (RETURN_EXPR, void_type_node,
1480 build2 (MODIFY_EXPR, TREE_TYPE (gnu_retval),
1481 DECL_RESULT (current_function_decl), gnu_retval)),
1482 gnat_node);
1483 gnat_poplevel ();
1484 gnu_result = end_stmt_group ();
1485 }
1486
1487 pop_stack (&gnu_return_label_stack);
1488
1489 /* Initialize the information node for the function and set the
1490 end location. */
1491 allocate_struct_function (current_function_decl);
1492 Sloc_to_locus
1493 ((Present (End_Label (Handled_Statement_Sequence (gnat_node)))
1494 ? Sloc (End_Label (Handled_Statement_Sequence (gnat_node)))
1495 : Sloc (gnat_node)),
1496 &cfun->function_end_locus);
1497
1498 end_subprog_body (gnu_result);
1499
1500 /* Disconnect the trees for parameters that we made variables for from the
1501 GNAT entities since these are unusable after we end the function. */
1502 for (gnat_param = First_Formal (gnat_subprog_id);
1503 Present (gnat_param);
1504 gnat_param = Next_Formal_With_Extras (gnat_param))
1505 if (TREE_CODE (get_gnu_tree (gnat_param)) == VAR_DECL)
1506 save_gnu_tree (gnat_param, NULL_TREE, false);
1507
1508 mark_out_of_scope (Defining_Unit_Name (Specification (gnat_node)));
1509 write_symbols = save_write_symbols;
1510 debug_hooks = save_debug_hooks;
1511 }
1512 \f
1513 /* Subroutine of gnat_to_gnu to translate gnat_node, either an N_Function_Call
1514 or an N_Procedure_Call_Statement, to a GCC tree, which is returned.
1515 GNU_RESULT_TYPE_P is a pointer to where we should place the result type.
1516 If GNU_TARGET is non-null, this must be a function call and the result
1517 of the call is to be placed into that object. */
1518
1519 static tree
1520 call_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p, tree gnu_target)
1521 {
1522 tree gnu_result;
1523 /* The GCC node corresponding to the GNAT subprogram name. This can either
1524 be a FUNCTION_DECL node if we are dealing with a standard subprogram call,
1525 or an indirect reference expression (an INDIRECT_REF node) pointing to a
1526 subprogram. */
1527 tree gnu_subprog_node = gnat_to_gnu (Name (gnat_node));
1528 /* The FUNCTION_TYPE node giving the GCC type of the subprogram. */
1529 tree gnu_subprog_type = TREE_TYPE (gnu_subprog_node);
1530 tree gnu_subprog_addr = build_unary_op (ADDR_EXPR, NULL_TREE,
1531 gnu_subprog_node);
1532 Entity_Id gnat_formal;
1533 Node_Id gnat_actual;
1534 tree gnu_actual_list = NULL_TREE;
1535 tree gnu_name_list = NULL_TREE;
1536 tree gnu_before_list = NULL_TREE;
1537 tree gnu_after_list = NULL_TREE;
1538 tree gnu_subprog_call;
1539
1540 switch (Nkind (Name (gnat_node)))
1541 {
1542 case N_Identifier:
1543 case N_Operator_Symbol:
1544 case N_Expanded_Name:
1545 case N_Attribute_Reference:
1546 if (Is_Eliminated (Entity (Name (gnat_node))))
1547 Eliminate_Error_Msg (gnat_node, Entity (Name (gnat_node)));
1548 }
1549
1550 gcc_assert (TREE_CODE (gnu_subprog_type) == FUNCTION_TYPE);
1551
1552 /* If we are calling a stubbed function, make this into a raise of
1553 Program_Error. Elaborate all our args first. */
1554 if (TREE_CODE (gnu_subprog_node) == FUNCTION_DECL
1555 && DECL_STUBBED_P (gnu_subprog_node))
1556 {
1557 for (gnat_actual = First_Actual (gnat_node);
1558 Present (gnat_actual);
1559 gnat_actual = Next_Actual (gnat_actual))
1560 add_stmt (gnat_to_gnu (gnat_actual));
1561
1562 if (Nkind (gnat_node) == N_Function_Call && !gnu_target)
1563 {
1564 *gnu_result_type_p = TREE_TYPE (gnu_subprog_type);
1565 return build1 (NULL_EXPR, *gnu_result_type_p,
1566 build_call_raise (PE_Stubbed_Subprogram_Called));
1567 }
1568 else
1569 return build_call_raise (PE_Stubbed_Subprogram_Called);
1570 }
1571
1572 /* If we are calling by supplying a pointer to a target, set up that
1573 pointer as the first argument. Use GNU_TARGET if one was passed;
1574 otherwise, make a target by building a variable of the maximum size
1575 of the type. */
1576 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
1577 {
1578 tree gnu_real_ret_type
1579 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (gnu_subprog_type)));
1580
1581 if (!gnu_target)
1582 {
1583 tree gnu_obj_type
1584 = maybe_pad_type (gnu_real_ret_type,
1585 max_size (TYPE_SIZE (gnu_real_ret_type), true),
1586 0, Etype (Name (gnat_node)), "PAD", false,
1587 false, false);
1588
1589 gnu_target = create_tmp_var_raw (gnu_obj_type, "LR");
1590 gnat_pushdecl (gnu_target, gnat_node);
1591 }
1592
1593 gnu_actual_list
1594 = tree_cons (NULL_TREE,
1595 build_unary_op (ADDR_EXPR, NULL_TREE,
1596 unchecked_convert (gnu_real_ret_type,
1597 gnu_target,
1598 false)),
1599 NULL_TREE);
1600
1601 }
1602
1603 /* The only way we can be making a call via an access type is if Name is an
1604 explicit dereference. In that case, get the list of formal args from the
1605 type the access type is pointing to. Otherwise, get the formals from
1606 entity being called. */
1607 if (Nkind (Name (gnat_node)) == N_Explicit_Dereference)
1608 gnat_formal = First_Formal (Etype (Name (gnat_node)));
1609 else if (Nkind (Name (gnat_node)) == N_Attribute_Reference)
1610 /* Assume here that this must be 'Elab_Body or 'Elab_Spec. */
1611 gnat_formal = 0;
1612 else
1613 gnat_formal = First_Formal (Entity (Name (gnat_node)));
1614
1615 /* Create the list of the actual parameters as GCC expects it, namely a chain
1616 of TREE_LIST nodes in which the TREE_VALUE field of each node is a
1617 parameter-expression and the TREE_PURPOSE field is null. Skip OUT
1618 parameters not passed by reference and don't need to be copied in. */
1619 for (gnat_actual = First_Actual (gnat_node);
1620 Present (gnat_actual);
1621 gnat_formal = Next_Formal_With_Extras (gnat_formal),
1622 gnat_actual = Next_Actual (gnat_actual))
1623 {
1624 tree gnu_formal_type = gnat_to_gnu_type (Etype (gnat_formal));
1625 /* We treat a conversion between aggregate types as if it is an
1626 unchecked conversion. */
1627 bool unchecked_convert_p
1628 = (Nkind (gnat_actual) == N_Unchecked_Type_Conversion
1629 || (Nkind (gnat_actual) == N_Type_Conversion
1630 && Is_Composite_Type (Underlying_Type (Etype (gnat_formal)))));
1631 Node_Id gnat_name = (unchecked_convert_p
1632 ? Expression (gnat_actual) : gnat_actual);
1633 tree gnu_name = gnat_to_gnu (gnat_name);
1634 tree gnu_name_type = gnat_to_gnu_type (Etype (gnat_name));
1635 tree gnu_formal
1636 = (present_gnu_tree (gnat_formal)
1637 ? get_gnu_tree (gnat_formal) : NULL_TREE);
1638 tree gnu_actual;
1639
1640 /* If it's possible we may need to use this expression twice, make sure
1641 than any side-effects are handled via SAVE_EXPRs. Likewise if we need
1642 to force side-effects before the call.
1643
1644 ??? This is more conservative than we need since we don't need to do
1645 this for pass-by-ref with no conversion. If we are passing a
1646 non-addressable Out or In Out parameter by reference, pass the address
1647 of a copy and set up to copy back out after the call. */
1648 if (Ekind (gnat_formal) != E_In_Parameter)
1649 {
1650 gnu_name = gnat_stabilize_reference (gnu_name, true);
1651 if (!addressable_p (gnu_name)
1652 && gnu_formal
1653 && (DECL_BY_REF_P (gnu_formal)
1654 || (TREE_CODE (gnu_formal) == PARM_DECL
1655 && (DECL_BY_COMPONENT_PTR_P (gnu_formal)
1656 || (DECL_BY_DESCRIPTOR_P (gnu_formal))))))
1657 {
1658 tree gnu_copy = gnu_name;
1659 tree gnu_temp;
1660
1661 /* Remove any unpadding on the actual and make a copy. But if
1662 the actual is a justified modular type, first convert
1663 to it. */
1664 if (TREE_CODE (gnu_name) == COMPONENT_REF
1665 && ((TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_name, 0)))
1666 == RECORD_TYPE)
1667 && (TYPE_IS_PADDING_P
1668 (TREE_TYPE (TREE_OPERAND (gnu_name, 0))))))
1669 gnu_name = gnu_copy = TREE_OPERAND (gnu_name, 0);
1670 else if (TREE_CODE (gnu_name_type) == RECORD_TYPE
1671 && (TYPE_JUSTIFIED_MODULAR_P (gnu_name_type)))
1672 gnu_name = convert (gnu_name_type, gnu_name);
1673
1674 gnu_actual = save_expr (gnu_name);
1675
1676 /* Since we're going to take the address of the SAVE_EXPR, we
1677 don't want it to be marked as unchanging. So set
1678 TREE_ADDRESSABLE. */
1679 gnu_temp = skip_simple_arithmetic (gnu_actual);
1680 if (TREE_CODE (gnu_temp) == SAVE_EXPR)
1681 {
1682 TREE_ADDRESSABLE (gnu_temp) = 1;
1683 TREE_READONLY (gnu_temp) = 0;
1684 }
1685
1686 /* Set up to move the copy back to the original. */
1687 gnu_temp = build2 (MODIFY_EXPR, TREE_TYPE (gnu_copy),
1688 gnu_copy, gnu_actual);
1689 annotate_with_node (gnu_temp, gnat_actual);
1690 append_to_statement_list (gnu_temp, &gnu_after_list);
1691 }
1692 }
1693
1694 /* If this was a procedure call, we may not have removed any padding.
1695 So do it here for the part we will use as an input, if any. */
1696 gnu_actual = gnu_name;
1697 if (Ekind (gnat_formal) != E_Out_Parameter
1698 && TREE_CODE (TREE_TYPE (gnu_actual)) == RECORD_TYPE
1699 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_actual)))
1700 gnu_actual = convert (get_unpadded_type (Etype (gnat_actual)),
1701 gnu_actual);
1702
1703 /* Unless this is an In parameter, we must remove any LJM building
1704 from GNU_NAME. */
1705 if (Ekind (gnat_formal) != E_In_Parameter
1706 && TREE_CODE (gnu_name) == CONSTRUCTOR
1707 && TREE_CODE (TREE_TYPE (gnu_name)) == RECORD_TYPE
1708 && TYPE_JUSTIFIED_MODULAR_P (TREE_TYPE (gnu_name)))
1709 gnu_name = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_name))),
1710 gnu_name);
1711
1712 if (Ekind (gnat_formal) != E_Out_Parameter
1713 && !unchecked_convert_p
1714 && Do_Range_Check (gnat_actual))
1715 gnu_actual = emit_range_check (gnu_actual, Etype (gnat_formal));
1716
1717 /* Do any needed conversions. We need only check for unchecked
1718 conversion since normal conversions will be handled by just
1719 converting to the formal type. */
1720 if (unchecked_convert_p)
1721 {
1722 gnu_actual
1723 = unchecked_convert (gnat_to_gnu_type (Etype (gnat_actual)),
1724 gnu_actual,
1725 (Nkind (gnat_actual)
1726 == N_Unchecked_Type_Conversion)
1727 && No_Truncation (gnat_actual));
1728
1729 /* One we've done the unchecked conversion, we still must ensure that
1730 the object is in range of the formal's type. */
1731 if (Ekind (gnat_formal) != E_Out_Parameter
1732 && Do_Range_Check (gnat_actual))
1733 gnu_actual = emit_range_check (gnu_actual,
1734 Etype (gnat_formal));
1735 }
1736 else if (TREE_CODE (gnu_actual) != SAVE_EXPR)
1737 /* We may have suppressed a conversion to the Etype of the actual since
1738 the parent is a procedure call. So add the conversion here. */
1739 gnu_actual = convert (gnat_to_gnu_type (Etype (gnat_actual)),
1740 gnu_actual);
1741
1742 if (TREE_CODE (gnu_actual) != SAVE_EXPR)
1743 gnu_actual = convert (gnu_formal_type, gnu_actual);
1744
1745 /* If we have not saved a GCC object for the formal, it means it is an
1746 OUT parameter not passed by reference and that does not need to be
1747 copied in. Otherwise, look at the PARM_DECL to see if it is passed by
1748 reference. */
1749 if (gnu_formal
1750 && TREE_CODE (gnu_formal) == PARM_DECL && DECL_BY_REF_P (gnu_formal))
1751 {
1752 if (Ekind (gnat_formal) != E_In_Parameter)
1753 {
1754 gnu_actual = gnu_name;
1755
1756 /* If we have a padded type, be sure we've removed padding. */
1757 if (TREE_CODE (TREE_TYPE (gnu_actual)) == RECORD_TYPE
1758 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_actual))
1759 && TREE_CODE (gnu_actual) != SAVE_EXPR)
1760 gnu_actual = convert (get_unpadded_type (Etype (gnat_actual)),
1761 gnu_actual);
1762
1763 /* If we have the constructed subtype of an aliased object
1764 with an unconstrained nominal subtype, the type of the
1765 actual includes the template, although it is formally
1766 constrained. So we need to convert it back to the real
1767 constructed subtype to retrieve the constrained part
1768 and takes its address. */
1769 if (TREE_CODE (TREE_TYPE (gnu_actual)) == RECORD_TYPE
1770 && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (gnu_actual))
1771 && TREE_CODE (gnu_actual) != SAVE_EXPR
1772 && Is_Constr_Subt_For_UN_Aliased (Etype (gnat_actual))
1773 && Is_Array_Type (Etype (gnat_actual)))
1774 gnu_actual = convert (gnat_to_gnu_type (Etype (gnat_actual)),
1775 gnu_actual);
1776 }
1777
1778 /* Otherwise, if we have a non-addressable COMPONENT_REF of a
1779 variable-size type see if it's doing a unpadding operation. If
1780 so, remove that operation since we have no way of allocating the
1781 required temporary. */
1782 if (TREE_CODE (gnu_actual) == COMPONENT_REF
1783 && !TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (gnu_actual)))
1784 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_actual, 0)))
1785 == RECORD_TYPE)
1786 && TYPE_IS_PADDING_P (TREE_TYPE
1787 (TREE_OPERAND (gnu_actual, 0)))
1788 && !addressable_p (gnu_actual))
1789 gnu_actual = TREE_OPERAND (gnu_actual, 0);
1790
1791 /* The symmetry of the paths to the type of an entity is broken here
1792 since arguments don't know that they will be passed by ref. */
1793 gnu_formal_type = TREE_TYPE (get_gnu_tree (gnat_formal));
1794 gnu_actual = build_unary_op (ADDR_EXPR, gnu_formal_type, gnu_actual);
1795 }
1796 else if (gnu_formal && TREE_CODE (gnu_formal) == PARM_DECL
1797 && DECL_BY_COMPONENT_PTR_P (gnu_formal))
1798 {
1799 gnu_formal_type = TREE_TYPE (get_gnu_tree (gnat_formal));
1800 gnu_actual = maybe_implicit_deref (gnu_actual);
1801 gnu_actual = maybe_unconstrained_array (gnu_actual);
1802
1803 if (TREE_CODE (gnu_formal_type) == RECORD_TYPE
1804 && TYPE_IS_PADDING_P (gnu_formal_type))
1805 {
1806 gnu_formal_type = TREE_TYPE (TYPE_FIELDS (gnu_formal_type));
1807 gnu_actual = convert (gnu_formal_type, gnu_actual);
1808 }
1809
1810 /* Take the address of the object and convert to the proper pointer
1811 type. We'd like to actually compute the address of the beginning
1812 of the array using an ADDR_EXPR of an ARRAY_REF, but there's a
1813 possibility that the ARRAY_REF might return a constant and we'd be
1814 getting the wrong address. Neither approach is exactly correct,
1815 but this is the most likely to work in all cases. */
1816 gnu_actual = convert (gnu_formal_type,
1817 build_unary_op (ADDR_EXPR, NULL_TREE,
1818 gnu_actual));
1819 }
1820 else if (gnu_formal && TREE_CODE (gnu_formal) == PARM_DECL
1821 && DECL_BY_DESCRIPTOR_P (gnu_formal))
1822 {
1823 /* If arg is 'Null_Parameter, pass zero descriptor. */
1824 if ((TREE_CODE (gnu_actual) == INDIRECT_REF
1825 || TREE_CODE (gnu_actual) == UNCONSTRAINED_ARRAY_REF)
1826 && TREE_PRIVATE (gnu_actual))
1827 gnu_actual = convert (DECL_ARG_TYPE (get_gnu_tree (gnat_formal)),
1828 integer_zero_node);
1829 else
1830 gnu_actual = build_unary_op (ADDR_EXPR, NULL_TREE,
1831 fill_vms_descriptor (gnu_actual,
1832 gnat_formal));
1833 }
1834 else
1835 {
1836 tree gnu_actual_size = TYPE_SIZE (TREE_TYPE (gnu_actual));
1837
1838 if (Ekind (gnat_formal) != E_In_Parameter)
1839 gnu_name_list = tree_cons (NULL_TREE, gnu_name, gnu_name_list);
1840
1841 if (!gnu_formal || TREE_CODE (gnu_formal) != PARM_DECL)
1842 continue;
1843
1844 /* If this is 'Null_Parameter, pass a zero even though we are
1845 dereferencing it. */
1846 else if (TREE_CODE (gnu_actual) == INDIRECT_REF
1847 && TREE_PRIVATE (gnu_actual)
1848 && host_integerp (gnu_actual_size, 1)
1849 && 0 >= compare_tree_int (gnu_actual_size,
1850 BITS_PER_WORD))
1851 gnu_actual
1852 = unchecked_convert (DECL_ARG_TYPE (gnu_formal),
1853 convert (gnat_type_for_size
1854 (tree_low_cst (gnu_actual_size, 1),
1855 1),
1856 integer_zero_node),
1857 false);
1858 else
1859 gnu_actual
1860 = convert (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (gnu_formal)),
1861 gnu_actual);
1862 }
1863
1864 gnu_actual_list = tree_cons (NULL_TREE, gnu_actual, gnu_actual_list);
1865 }
1866
1867 gnu_subprog_call = build3 (CALL_EXPR, TREE_TYPE (gnu_subprog_type),
1868 gnu_subprog_addr, nreverse (gnu_actual_list),
1869 NULL_TREE);
1870
1871 /* If we return by passing a target, we emit the call and return the target
1872 as our result. */
1873 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
1874 {
1875 add_stmt_with_node (gnu_subprog_call, gnat_node);
1876 *gnu_result_type_p
1877 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (gnu_subprog_type)));
1878 return unchecked_convert (*gnu_result_type_p, gnu_target, false);
1879 }
1880
1881 /* If it is a function call, the result is the call expression unless
1882 a target is specified, in which case we copy the result into the target
1883 and return the assignment statement. */
1884 else if (Nkind (gnat_node) == N_Function_Call)
1885 {
1886 gnu_result = gnu_subprog_call;
1887
1888 /* If the function returns an unconstrained array or by reference,
1889 we have to de-dereference the pointer. */
1890 if (TYPE_RETURNS_UNCONSTRAINED_P (gnu_subprog_type)
1891 || TYPE_RETURNS_BY_REF_P (gnu_subprog_type))
1892 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_result);
1893
1894 if (gnu_target)
1895 gnu_result = build_binary_op (MODIFY_EXPR, NULL_TREE,
1896 gnu_target, gnu_result);
1897 else
1898 *gnu_result_type_p = get_unpadded_type (Etype (gnat_node));
1899
1900 return gnu_result;
1901 }
1902
1903 /* If this is the case where the GNAT tree contains a procedure call
1904 but the Ada procedure has copy in copy out parameters, the special
1905 parameter passing mechanism must be used. */
1906 else if (TYPE_CI_CO_LIST (gnu_subprog_type) != NULL_TREE)
1907 {
1908 /* List of FIELD_DECLs associated with the PARM_DECLs of the copy
1909 in copy out parameters. */
1910 tree scalar_return_list = TYPE_CI_CO_LIST (gnu_subprog_type);
1911 int length = list_length (scalar_return_list);
1912
1913 if (length > 1)
1914 {
1915 tree gnu_name;
1916
1917 gnu_subprog_call = save_expr (gnu_subprog_call);
1918 gnu_name_list = nreverse (gnu_name_list);
1919
1920 /* If any of the names had side-effects, ensure they are all
1921 evaluated before the call. */
1922 for (gnu_name = gnu_name_list; gnu_name;
1923 gnu_name = TREE_CHAIN (gnu_name))
1924 if (TREE_SIDE_EFFECTS (TREE_VALUE (gnu_name)))
1925 append_to_statement_list (TREE_VALUE (gnu_name),
1926 &gnu_before_list);
1927 }
1928
1929 if (Nkind (Name (gnat_node)) == N_Explicit_Dereference)
1930 gnat_formal = First_Formal (Etype (Name (gnat_node)));
1931 else
1932 gnat_formal = First_Formal (Entity (Name (gnat_node)));
1933
1934 for (gnat_actual = First_Actual (gnat_node);
1935 Present (gnat_actual);
1936 gnat_formal = Next_Formal_With_Extras (gnat_formal),
1937 gnat_actual = Next_Actual (gnat_actual))
1938 /* If we are dealing with a copy in copy out parameter, we must
1939 retrieve its value from the record returned in the call. */
1940 if (!(present_gnu_tree (gnat_formal)
1941 && TREE_CODE (get_gnu_tree (gnat_formal)) == PARM_DECL
1942 && (DECL_BY_REF_P (get_gnu_tree (gnat_formal))
1943 || (TREE_CODE (get_gnu_tree (gnat_formal)) == PARM_DECL
1944 && ((DECL_BY_COMPONENT_PTR_P (get_gnu_tree (gnat_formal))
1945 || (DECL_BY_DESCRIPTOR_P
1946 (get_gnu_tree (gnat_formal))))))))
1947 && Ekind (gnat_formal) != E_In_Parameter)
1948 {
1949 /* Get the value to assign to this OUT or IN OUT parameter. It is
1950 either the result of the function if there is only a single such
1951 parameter or the appropriate field from the record returned. */
1952 tree gnu_result
1953 = length == 1 ? gnu_subprog_call
1954 : build_component_ref (gnu_subprog_call, NULL_TREE,
1955 TREE_PURPOSE (scalar_return_list),
1956 false);
1957 bool unchecked_conversion = (Nkind (gnat_actual)
1958 == N_Unchecked_Type_Conversion);
1959 /* If the actual is a conversion, get the inner expression, which
1960 will be the real destination, and convert the result to the
1961 type of the actual parameter. */
1962 tree gnu_actual
1963 = maybe_unconstrained_array (TREE_VALUE (gnu_name_list));
1964
1965 /* If the result is a padded type, remove the padding. */
1966 if (TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
1967 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_result)))
1968 gnu_result = convert (TREE_TYPE (TYPE_FIELDS
1969 (TREE_TYPE (gnu_result))),
1970 gnu_result);
1971
1972 /* If the result is a type conversion, do it. */
1973 if (Nkind (gnat_actual) == N_Type_Conversion)
1974 gnu_result
1975 = convert_with_check
1976 (Etype (Expression (gnat_actual)), gnu_result,
1977 Do_Overflow_Check (gnat_actual),
1978 Do_Range_Check (Expression (gnat_actual)),
1979 Float_Truncate (gnat_actual));
1980
1981 else if (unchecked_conversion)
1982 gnu_result = unchecked_convert (TREE_TYPE (gnu_actual),
1983 gnu_result,
1984 No_Truncation (gnat_actual));
1985 else
1986 {
1987 if (Do_Range_Check (gnat_actual))
1988 gnu_result = emit_range_check (gnu_result,
1989 Etype (gnat_actual));
1990
1991 if (!(!TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (gnu_actual)))
1992 && TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (gnu_result)))))
1993 gnu_result = convert (TREE_TYPE (gnu_actual), gnu_result);
1994 }
1995
1996 gnu_result = build_binary_op (MODIFY_EXPR, NULL_TREE,
1997 gnu_actual, gnu_result);
1998 annotate_with_node (gnu_result, gnat_actual);
1999 append_to_statement_list (gnu_result, &gnu_before_list);
2000 scalar_return_list = TREE_CHAIN (scalar_return_list);
2001 gnu_name_list = TREE_CHAIN (gnu_name_list);
2002 }
2003 }
2004 else
2005 {
2006 annotate_with_node (gnu_subprog_call, gnat_node);
2007 append_to_statement_list (gnu_subprog_call, &gnu_before_list);
2008 }
2009
2010 append_to_statement_list (gnu_after_list, &gnu_before_list);
2011 return gnu_before_list;
2012 }
2013 \f
2014 /* Subroutine of gnat_to_gnu to translate gnat_node, an
2015 N_Handled_Sequence_Of_Statements, to a GCC tree, which is returned. */
2016
2017 static tree
2018 Handled_Sequence_Of_Statements_to_gnu (Node_Id gnat_node)
2019 {
2020 tree gnu_jmpsave_decl = NULL_TREE;
2021 tree gnu_jmpbuf_decl = NULL_TREE;
2022 /* If just annotating, ignore all EH and cleanups. */
2023 bool gcc_zcx = (!type_annotate_only
2024 && Present (Exception_Handlers (gnat_node))
2025 && Exception_Mechanism == GCC_ZCX);
2026 bool setjmp_longjmp
2027 = (!type_annotate_only && Present (Exception_Handlers (gnat_node))
2028 && Exception_Mechanism == Setjmp_Longjmp);
2029 bool at_end = !type_annotate_only && Present (At_End_Proc (gnat_node));
2030 bool binding_for_block = (at_end || gcc_zcx || setjmp_longjmp);
2031 tree gnu_inner_block; /* The statement(s) for the block itself. */
2032 tree gnu_result;
2033 tree gnu_expr;
2034 Node_Id gnat_temp;
2035
2036 /* The GCC exception handling mechanism can handle both ZCX and SJLJ schemes
2037 and we have our own SJLJ mechanism. To call the GCC mechanism, we call
2038 add_cleanup, and when we leave the binding, end_stmt_group will create
2039 the TRY_FINALLY_EXPR.
2040
2041 ??? The region level calls down there have been specifically put in place
2042 for a ZCX context and currently the order in which things are emitted
2043 (region/handlers) is different from the SJLJ case. Instead of putting
2044 other calls with different conditions at other places for the SJLJ case,
2045 it seems cleaner to reorder things for the SJLJ case and generalize the
2046 condition to make it not ZCX specific.
2047
2048 If there are any exceptions or cleanup processing involved, we need an
2049 outer statement group (for Setjmp_Longjmp) and binding level. */
2050 if (binding_for_block)
2051 {
2052 start_stmt_group ();
2053 gnat_pushlevel ();
2054 }
2055
2056 /* If we are to call a function when exiting this block add a cleanup
2057 to the binding level we made above. */
2058 if (at_end)
2059 add_cleanup (build_call_0_expr (gnat_to_gnu (At_End_Proc (gnat_node))));
2060
2061 /* If using setjmp_longjmp, make the variables for the setjmp buffer and save
2062 area for address of previous buffer. Do this first since we need to have
2063 the setjmp buf known for any decls in this block. */
2064 if (setjmp_longjmp)
2065 {
2066 gnu_jmpsave_decl = create_var_decl (get_identifier ("JMPBUF_SAVE"),
2067 NULL_TREE, jmpbuf_ptr_type,
2068 build_call_0_expr (get_jmpbuf_decl),
2069 false, false, false, false, NULL,
2070 gnat_node);
2071 gnu_jmpbuf_decl = create_var_decl (get_identifier ("JMP_BUF"),
2072 NULL_TREE, jmpbuf_type,
2073 NULL_TREE, false, false, false, false,
2074 NULL, gnat_node);
2075
2076 set_block_jmpbuf_decl (gnu_jmpbuf_decl);
2077
2078 /* When we exit this block, restore the saved value. */
2079 add_cleanup (build_call_1_expr (set_jmpbuf_decl, gnu_jmpsave_decl));
2080 }
2081
2082 /* Now build the tree for the declarations and statements inside this block.
2083 If this is SJLJ, set our jmp_buf as the current buffer. */
2084 start_stmt_group ();
2085
2086 if (setjmp_longjmp)
2087 add_stmt (build_call_1_expr (set_jmpbuf_decl,
2088 build_unary_op (ADDR_EXPR, NULL_TREE,
2089 gnu_jmpbuf_decl)));
2090
2091 if (Present (First_Real_Statement (gnat_node)))
2092 process_decls (Statements (gnat_node), Empty,
2093 First_Real_Statement (gnat_node), true, true);
2094
2095 /* Generate code for each statement in the block. */
2096 for (gnat_temp = (Present (First_Real_Statement (gnat_node))
2097 ? First_Real_Statement (gnat_node)
2098 : First (Statements (gnat_node)));
2099 Present (gnat_temp); gnat_temp = Next (gnat_temp))
2100 add_stmt (gnat_to_gnu (gnat_temp));
2101 gnu_inner_block = end_stmt_group ();
2102
2103 /* Now generate code for the two exception models, if either is relevant for
2104 this block. */
2105 if (setjmp_longjmp)
2106 {
2107 tree *gnu_else_ptr = 0;
2108 tree gnu_handler;
2109
2110 /* Make a binding level for the exception handling declarations and code
2111 and set up gnu_except_ptr_stack for the handlers to use. */
2112 start_stmt_group ();
2113 gnat_pushlevel ();
2114
2115 push_stack (&gnu_except_ptr_stack, NULL_TREE,
2116 create_var_decl (get_identifier ("EXCEPT_PTR"),
2117 NULL_TREE,
2118 build_pointer_type (except_type_node),
2119 build_call_0_expr (get_excptr_decl), false,
2120 false, false, false, NULL, gnat_node));
2121
2122 /* Generate code for each handler. The N_Exception_Handler case does the
2123 real work and returns a COND_EXPR for each handler, which we chain
2124 together here. */
2125 for (gnat_temp = First_Non_Pragma (Exception_Handlers (gnat_node));
2126 Present (gnat_temp); gnat_temp = Next_Non_Pragma (gnat_temp))
2127 {
2128 gnu_expr = gnat_to_gnu (gnat_temp);
2129
2130 /* If this is the first one, set it as the outer one. Otherwise,
2131 point the "else" part of the previous handler to us. Then point
2132 to our "else" part. */
2133 if (!gnu_else_ptr)
2134 add_stmt (gnu_expr);
2135 else
2136 *gnu_else_ptr = gnu_expr;
2137
2138 gnu_else_ptr = &COND_EXPR_ELSE (gnu_expr);
2139 }
2140
2141 /* If none of the exception handlers did anything, re-raise but do not
2142 defer abortion. */
2143 gnu_expr = build_call_1_expr (raise_nodefer_decl,
2144 TREE_VALUE (gnu_except_ptr_stack));
2145 annotate_with_node (gnu_expr, gnat_node);
2146
2147 if (gnu_else_ptr)
2148 *gnu_else_ptr = gnu_expr;
2149 else
2150 add_stmt (gnu_expr);
2151
2152 /* End the binding level dedicated to the exception handlers and get the
2153 whole statement group. */
2154 pop_stack (&gnu_except_ptr_stack);
2155 gnat_poplevel ();
2156 gnu_handler = end_stmt_group ();
2157
2158 /* If the setjmp returns 1, we restore our incoming longjmp value and
2159 then check the handlers. */
2160 start_stmt_group ();
2161 add_stmt_with_node (build_call_1_expr (set_jmpbuf_decl,
2162 gnu_jmpsave_decl),
2163 gnat_node);
2164 add_stmt (gnu_handler);
2165 gnu_handler = end_stmt_group ();
2166
2167 /* This block is now "if (setjmp) ... <handlers> else <block>". */
2168 gnu_result = build3 (COND_EXPR, void_type_node,
2169 (build_call_1_expr
2170 (setjmp_decl,
2171 build_unary_op (ADDR_EXPR, NULL_TREE,
2172 gnu_jmpbuf_decl))),
2173 gnu_handler, gnu_inner_block);
2174 }
2175 else if (gcc_zcx)
2176 {
2177 tree gnu_handlers;
2178
2179 /* First make a block containing the handlers. */
2180 start_stmt_group ();
2181 for (gnat_temp = First_Non_Pragma (Exception_Handlers (gnat_node));
2182 Present (gnat_temp);
2183 gnat_temp = Next_Non_Pragma (gnat_temp))
2184 add_stmt (gnat_to_gnu (gnat_temp));
2185 gnu_handlers = end_stmt_group ();
2186
2187 /* Now make the TRY_CATCH_EXPR for the block. */
2188 gnu_result = build2 (TRY_CATCH_EXPR, void_type_node,
2189 gnu_inner_block, gnu_handlers);
2190 }
2191 else
2192 gnu_result = gnu_inner_block;
2193
2194 /* Now close our outer block, if we had to make one. */
2195 if (binding_for_block)
2196 {
2197 add_stmt (gnu_result);
2198 gnat_poplevel ();
2199 gnu_result = end_stmt_group ();
2200 }
2201
2202 return gnu_result;
2203 }
2204 \f
2205 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Exception_Handler,
2206 to a GCC tree, which is returned. This is the variant for Setjmp_Longjmp
2207 exception handling. */
2208
2209 static tree
2210 Exception_Handler_to_gnu_sjlj (Node_Id gnat_node)
2211 {
2212 /* Unless this is "Others" or the special "Non-Ada" exception for Ada, make
2213 an "if" statement to select the proper exceptions. For "Others", exclude
2214 exceptions where Handled_By_Others is nonzero unless the All_Others flag
2215 is set. For "Non-ada", accept an exception if "Lang" is 'V'. */
2216 tree gnu_choice = integer_zero_node;
2217 tree gnu_body = build_stmt_group (Statements (gnat_node), false);
2218 Node_Id gnat_temp;
2219
2220 for (gnat_temp = First (Exception_Choices (gnat_node));
2221 gnat_temp; gnat_temp = Next (gnat_temp))
2222 {
2223 tree this_choice;
2224
2225 if (Nkind (gnat_temp) == N_Others_Choice)
2226 {
2227 if (All_Others (gnat_temp))
2228 this_choice = integer_one_node;
2229 else
2230 this_choice
2231 = build_binary_op
2232 (EQ_EXPR, integer_type_node,
2233 convert
2234 (integer_type_node,
2235 build_component_ref
2236 (build_unary_op
2237 (INDIRECT_REF, NULL_TREE,
2238 TREE_VALUE (gnu_except_ptr_stack)),
2239 get_identifier ("not_handled_by_others"), NULL_TREE,
2240 false)),
2241 integer_zero_node);
2242 }
2243
2244 else if (Nkind (gnat_temp) == N_Identifier
2245 || Nkind (gnat_temp) == N_Expanded_Name)
2246 {
2247 tree gnu_expr
2248 = gnat_to_gnu_entity (Entity (gnat_temp), NULL_TREE, 0);
2249
2250 this_choice
2251 = build_binary_op
2252 (EQ_EXPR, integer_type_node, TREE_VALUE (gnu_except_ptr_stack),
2253 convert (TREE_TYPE (TREE_VALUE (gnu_except_ptr_stack)),
2254 build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr)));
2255
2256 /* If this is the distinguished exception "Non_Ada_Error" (and we are
2257 in VMS mode), also allow a non-Ada exception (a VMS condition) t
2258 match. */
2259 if (Is_Non_Ada_Error (Entity (gnat_temp)))
2260 {
2261 tree gnu_comp
2262 = build_component_ref
2263 (build_unary_op (INDIRECT_REF, NULL_TREE,
2264 TREE_VALUE (gnu_except_ptr_stack)),
2265 get_identifier ("lang"), NULL_TREE, false);
2266
2267 this_choice
2268 = build_binary_op
2269 (TRUTH_ORIF_EXPR, integer_type_node,
2270 build_binary_op (EQ_EXPR, integer_type_node, gnu_comp,
2271 build_int_cst (TREE_TYPE (gnu_comp), 'V')),
2272 this_choice);
2273 }
2274 }
2275 else
2276 gcc_unreachable ();
2277
2278 gnu_choice = build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
2279 gnu_choice, this_choice);
2280 }
2281
2282 return build3 (COND_EXPR, void_type_node, gnu_choice, gnu_body, NULL_TREE);
2283 }
2284 \f
2285 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Exception_Handler,
2286 to a GCC tree, which is returned. This is the variant for ZCX. */
2287
2288 static tree
2289 Exception_Handler_to_gnu_zcx (Node_Id gnat_node)
2290 {
2291 tree gnu_etypes_list = NULL_TREE;
2292 tree gnu_expr;
2293 tree gnu_etype;
2294 tree gnu_current_exc_ptr;
2295 tree gnu_incoming_exc_ptr;
2296 Node_Id gnat_temp;
2297
2298 /* We build a TREE_LIST of nodes representing what exception types this
2299 handler can catch, with special cases for others and all others cases.
2300
2301 Each exception type is actually identified by a pointer to the exception
2302 id, or to a dummy object for "others" and "all others".
2303
2304 Care should be taken to ensure that the control flow impact of "others"
2305 and "all others" is known to GCC. lang_eh_type_covers is doing the trick
2306 currently. */
2307 for (gnat_temp = First (Exception_Choices (gnat_node));
2308 gnat_temp; gnat_temp = Next (gnat_temp))
2309 {
2310 if (Nkind (gnat_temp) == N_Others_Choice)
2311 {
2312 tree gnu_expr
2313 = All_Others (gnat_temp) ? all_others_decl : others_decl;
2314
2315 gnu_etype
2316 = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr);
2317 }
2318 else if (Nkind (gnat_temp) == N_Identifier
2319 || Nkind (gnat_temp) == N_Expanded_Name)
2320 {
2321 Entity_Id gnat_ex_id = Entity (gnat_temp);
2322
2323 /* Exception may be a renaming. Recover original exception which is
2324 the one elaborated and registered. */
2325 if (Present (Renamed_Object (gnat_ex_id)))
2326 gnat_ex_id = Renamed_Object (gnat_ex_id);
2327
2328 gnu_expr = gnat_to_gnu_entity (gnat_ex_id, NULL_TREE, 0);
2329 gnu_etype = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr);
2330
2331 /* The Non_Ada_Error case for VMS exceptions is handled
2332 by the personality routine. */
2333 }
2334 else
2335 gcc_unreachable ();
2336
2337 /* The GCC interface expects NULL to be passed for catch all handlers, so
2338 it would be quite tempting to set gnu_etypes_list to NULL if gnu_etype
2339 is integer_zero_node. It would not work, however, because GCC's
2340 notion of "catch all" is stronger than our notion of "others". Until
2341 we correctly use the cleanup interface as well, doing that would
2342 prevent the "all others" handlers from beeing seen, because nothing
2343 can be caught beyond a catch all from GCC's point of view. */
2344 gnu_etypes_list = tree_cons (NULL_TREE, gnu_etype, gnu_etypes_list);
2345 }
2346
2347 start_stmt_group ();
2348 gnat_pushlevel ();
2349
2350 /* Expand a call to the begin_handler hook at the beginning of the handler,
2351 and arrange for a call to the end_handler hook to occur on every possible
2352 exit path.
2353
2354 The hooks expect a pointer to the low level occurrence. This is required
2355 for our stack management scheme because a raise inside the handler pushes
2356 a new occurrence on top of the stack, which means that this top does not
2357 necessarily match the occurrence this handler was dealing with.
2358
2359 The EXC_PTR_EXPR object references the exception occurrence being
2360 propagated. Upon handler entry, this is the exception for which the
2361 handler is triggered. This might not be the case upon handler exit,
2362 however, as we might have a new occurrence propagated by the handler's
2363 body, and the end_handler hook called as a cleanup in this context.
2364
2365 We use a local variable to retrieve the incoming value at handler entry
2366 time, and reuse it to feed the end_handler hook's argument at exit. */
2367 gnu_current_exc_ptr = build0 (EXC_PTR_EXPR, ptr_type_node);
2368 gnu_incoming_exc_ptr = create_var_decl (get_identifier ("EXPTR"), NULL_TREE,
2369 ptr_type_node, gnu_current_exc_ptr,
2370 false, false, false, false, NULL,
2371 gnat_node);
2372
2373 add_stmt_with_node (build_call_1_expr (begin_handler_decl,
2374 gnu_incoming_exc_ptr),
2375 gnat_node);
2376 add_cleanup (build_call_1_expr (end_handler_decl, gnu_incoming_exc_ptr));
2377 add_stmt_list (Statements (gnat_node));
2378 gnat_poplevel ();
2379
2380 return build2 (CATCH_EXPR, void_type_node, gnu_etypes_list,
2381 end_stmt_group ());
2382 }
2383 \f
2384 /* Subroutine of gnat_to_gnu to generate code for an N_Compilation unit. */
2385
2386 static void
2387 Compilation_Unit_to_gnu (Node_Id gnat_node)
2388 {
2389 /* Make the decl for the elaboration procedure. */
2390 bool body_p = (Defining_Entity (Unit (gnat_node)),
2391 Nkind (Unit (gnat_node)) == N_Package_Body
2392 || Nkind (Unit (gnat_node)) == N_Subprogram_Body);
2393 Entity_Id gnat_unit_entity = Defining_Entity (Unit (gnat_node));
2394 tree gnu_elab_proc_decl
2395 = create_subprog_decl
2396 (create_concat_name (gnat_unit_entity,
2397 body_p ? "elabb" : "elabs"),
2398 NULL_TREE, void_ftype, NULL_TREE, false, true, false, NULL,
2399 gnat_unit_entity);
2400 struct elab_info *info;
2401
2402 push_stack (&gnu_elab_proc_stack, NULL_TREE, gnu_elab_proc_decl);
2403
2404 DECL_ELABORATION_PROC_P (gnu_elab_proc_decl) = 1;
2405 allocate_struct_function (gnu_elab_proc_decl);
2406 Sloc_to_locus (Sloc (gnat_unit_entity), &cfun->function_end_locus);
2407 cfun = 0;
2408
2409 /* For a body, first process the spec if there is one. */
2410 if (Nkind (Unit (gnat_node)) == N_Package_Body
2411 || (Nkind (Unit (gnat_node)) == N_Subprogram_Body
2412 && !Acts_As_Spec (gnat_node)))
2413 add_stmt (gnat_to_gnu (Library_Unit (gnat_node)));
2414
2415 process_inlined_subprograms (gnat_node);
2416
2417 if (type_annotate_only)
2418 {
2419 elaborate_all_entities (gnat_node);
2420
2421 if (Nkind (Unit (gnat_node)) == N_Subprogram_Declaration
2422 || Nkind (Unit (gnat_node)) == N_Generic_Package_Declaration
2423 || Nkind (Unit (gnat_node)) == N_Generic_Subprogram_Declaration)
2424 return;
2425 }
2426
2427 process_decls (Declarations (Aux_Decls_Node (gnat_node)), Empty, Empty,
2428 true, true);
2429 add_stmt (gnat_to_gnu (Unit (gnat_node)));
2430
2431 /* Process any pragmas and actions following the unit. */
2432 add_stmt_list (Pragmas_After (Aux_Decls_Node (gnat_node)));
2433 add_stmt_list (Actions (Aux_Decls_Node (gnat_node)));
2434
2435 /* Save away what we've made so far and record this potential elaboration
2436 procedure. */
2437 info = (struct elab_info *) ggc_alloc (sizeof (struct elab_info));
2438 set_current_block_context (gnu_elab_proc_decl);
2439 gnat_poplevel ();
2440 DECL_SAVED_TREE (gnu_elab_proc_decl) = end_stmt_group ();
2441 info->next = elab_info_list;
2442 info->elab_proc = gnu_elab_proc_decl;
2443 info->gnat_node = gnat_node;
2444 elab_info_list = info;
2445
2446 /* Generate elaboration code for this unit, if necessary, and say whether
2447 we did or not. */
2448 pop_stack (&gnu_elab_proc_stack);
2449 }
2450 \f
2451 /* This function is the driver of the GNAT to GCC tree transformation
2452 process. It is the entry point of the tree transformer. GNAT_NODE is the
2453 root of some GNAT tree. Return the root of the corresponding GCC tree.
2454 If this is an expression, return the GCC equivalent of the expression. If
2455 it is a statement, return the statement. In the case when called for a
2456 statement, it may also add statements to the current statement group, in
2457 which case anything it returns is to be interpreted as occuring after
2458 anything `it already added. */
2459
2460 tree
2461 gnat_to_gnu (Node_Id gnat_node)
2462 {
2463 bool went_into_elab_proc = false;
2464 tree gnu_result = error_mark_node; /* Default to no value. */
2465 tree gnu_result_type = void_type_node;
2466 tree gnu_expr;
2467 tree gnu_lhs, gnu_rhs;
2468 Node_Id gnat_temp;
2469
2470 /* Save node number for error message and set location information. */
2471 error_gnat_node = gnat_node;
2472 Sloc_to_locus (Sloc (gnat_node), &input_location);
2473
2474 if (type_annotate_only
2475 && IN (Nkind (gnat_node), N_Statement_Other_Than_Procedure_Call))
2476 return alloc_stmt_list ();
2477
2478 /* If this node is a non-static subexpression and we are only
2479 annotating types, make this into a NULL_EXPR. */
2480 if (type_annotate_only
2481 && IN (Nkind (gnat_node), N_Subexpr)
2482 && Nkind (gnat_node) != N_Identifier
2483 && !Compile_Time_Known_Value (gnat_node))
2484 return build1 (NULL_EXPR, get_unpadded_type (Etype (gnat_node)),
2485 build_call_raise (CE_Range_Check_Failed));
2486
2487 /* If this is a Statement and we are at top level, it must be part of
2488 the elaboration procedure, so mark us as being in that procedure
2489 and push our context. */
2490 if (!current_function_decl
2491 && ((IN (Nkind (gnat_node), N_Statement_Other_Than_Procedure_Call)
2492 && Nkind (gnat_node) != N_Null_Statement)
2493 || Nkind (gnat_node) == N_Procedure_Call_Statement
2494 || Nkind (gnat_node) == N_Label
2495 || Nkind (gnat_node) == N_Implicit_Label_Declaration
2496 || Nkind (gnat_node) == N_Handled_Sequence_Of_Statements
2497 || ((Nkind (gnat_node) == N_Raise_Constraint_Error
2498 || Nkind (gnat_node) == N_Raise_Storage_Error
2499 || Nkind (gnat_node) == N_Raise_Program_Error)
2500 && (Ekind (Etype (gnat_node)) == E_Void))))
2501 {
2502 current_function_decl = TREE_VALUE (gnu_elab_proc_stack);
2503 start_stmt_group ();
2504 gnat_pushlevel ();
2505 went_into_elab_proc = true;
2506 }
2507
2508 switch (Nkind (gnat_node))
2509 {
2510 /********************************/
2511 /* Chapter 2: Lexical Elements: */
2512 /********************************/
2513
2514 case N_Identifier:
2515 case N_Expanded_Name:
2516 case N_Operator_Symbol:
2517 case N_Defining_Identifier:
2518 gnu_result = Identifier_to_gnu (gnat_node, &gnu_result_type);
2519 break;
2520
2521 case N_Integer_Literal:
2522 {
2523 tree gnu_type;
2524
2525 /* Get the type of the result, looking inside any padding and
2526 justified modular types. Then get the value in that type. */
2527 gnu_type = gnu_result_type = get_unpadded_type (Etype (gnat_node));
2528
2529 if (TREE_CODE (gnu_type) == RECORD_TYPE
2530 && TYPE_JUSTIFIED_MODULAR_P (gnu_type))
2531 gnu_type = TREE_TYPE (TYPE_FIELDS (gnu_type));
2532
2533 gnu_result = UI_To_gnu (Intval (gnat_node), gnu_type);
2534
2535 /* If the result overflows (meaning it doesn't fit in its base type),
2536 abort. We would like to check that the value is within the range
2537 of the subtype, but that causes problems with subtypes whose usage
2538 will raise Constraint_Error and with biased representation, so
2539 we don't. */
2540 gcc_assert (!TREE_CONSTANT_OVERFLOW (gnu_result));
2541 }
2542 break;
2543
2544 case N_Character_Literal:
2545 /* If a Entity is present, it means that this was one of the
2546 literals in a user-defined character type. In that case,
2547 just return the value in the CONST_DECL. Otherwise, use the
2548 character code. In that case, the base type should be an
2549 INTEGER_TYPE, but we won't bother checking for that. */
2550 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2551 if (Present (Entity (gnat_node)))
2552 gnu_result = DECL_INITIAL (get_gnu_tree (Entity (gnat_node)));
2553 else
2554 gnu_result
2555 = force_fit_type
2556 (build_int_cst (gnu_result_type, Char_Literal_Value (gnat_node)),
2557 false, false, false);
2558 break;
2559
2560 case N_Real_Literal:
2561 /* If this is of a fixed-point type, the value we want is the
2562 value of the corresponding integer. */
2563 if (IN (Ekind (Underlying_Type (Etype (gnat_node))), Fixed_Point_Kind))
2564 {
2565 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2566 gnu_result = UI_To_gnu (Corresponding_Integer_Value (gnat_node),
2567 gnu_result_type);
2568 gcc_assert (!TREE_CONSTANT_OVERFLOW (gnu_result));
2569 }
2570
2571 /* We should never see a Vax_Float type literal, since the front end
2572 is supposed to transform these using appropriate conversions */
2573 else if (Vax_Float (Underlying_Type (Etype (gnat_node))))
2574 gcc_unreachable ();
2575
2576 else
2577 {
2578 Ureal ur_realval = Realval (gnat_node);
2579
2580 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2581
2582 /* If the real value is zero, so is the result. Otherwise,
2583 convert it to a machine number if it isn't already. That
2584 forces BASE to 0 or 2 and simplifies the rest of our logic. */
2585 if (UR_Is_Zero (ur_realval))
2586 gnu_result = convert (gnu_result_type, integer_zero_node);
2587 else
2588 {
2589 if (!Is_Machine_Number (gnat_node))
2590 ur_realval
2591 = Machine (Base_Type (Underlying_Type (Etype (gnat_node))),
2592 ur_realval, Round_Even, gnat_node);
2593
2594 gnu_result
2595 = UI_To_gnu (Numerator (ur_realval), gnu_result_type);
2596
2597 /* If we have a base of zero, divide by the denominator.
2598 Otherwise, the base must be 2 and we scale the value, which
2599 we know can fit in the mantissa of the type (hence the use
2600 of that type above). */
2601 if (No (Rbase (ur_realval)))
2602 gnu_result
2603 = build_binary_op (RDIV_EXPR,
2604 get_base_type (gnu_result_type),
2605 gnu_result,
2606 UI_To_gnu (Denominator (ur_realval),
2607 gnu_result_type));
2608 else
2609 {
2610 REAL_VALUE_TYPE tmp;
2611
2612 gcc_assert (Rbase (ur_realval) == 2);
2613 real_ldexp (&tmp, &TREE_REAL_CST (gnu_result),
2614 - UI_To_Int (Denominator (ur_realval)));
2615 gnu_result = build_real (gnu_result_type, tmp);
2616 }
2617 }
2618
2619 /* Now see if we need to negate the result. Do it this way to
2620 properly handle -0. */
2621 if (UR_Is_Negative (Realval (gnat_node)))
2622 gnu_result
2623 = build_unary_op (NEGATE_EXPR, get_base_type (gnu_result_type),
2624 gnu_result);
2625 }
2626
2627 break;
2628
2629 case N_String_Literal:
2630 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2631 if (TYPE_PRECISION (TREE_TYPE (gnu_result_type)) == HOST_BITS_PER_CHAR)
2632 {
2633 String_Id gnat_string = Strval (gnat_node);
2634 int length = String_Length (gnat_string);
2635 char *string = (char *) alloca (length + 1);
2636 int i;
2637
2638 /* Build the string with the characters in the literal. Note
2639 that Ada strings are 1-origin. */
2640 for (i = 0; i < length; i++)
2641 string[i] = Get_String_Char (gnat_string, i + 1);
2642
2643 /* Put a null at the end of the string in case it's in a context
2644 where GCC will want to treat it as a C string. */
2645 string[i] = 0;
2646
2647 gnu_result = build_string (length, string);
2648
2649 /* Strings in GCC don't normally have types, but we want
2650 this to not be converted to the array type. */
2651 TREE_TYPE (gnu_result) = gnu_result_type;
2652 }
2653 else
2654 {
2655 /* Build a list consisting of each character, then make
2656 the aggregate. */
2657 String_Id gnat_string = Strval (gnat_node);
2658 int length = String_Length (gnat_string);
2659 int i;
2660 tree gnu_list = NULL_TREE;
2661 tree gnu_idx = TYPE_MIN_VALUE (TYPE_DOMAIN (gnu_result_type));
2662
2663 for (i = 0; i < length; i++)
2664 {
2665 gnu_list
2666 = tree_cons (gnu_idx,
2667 build_int_cst (TREE_TYPE (gnu_result_type),
2668 Get_String_Char (gnat_string,
2669 i + 1)),
2670 gnu_list);
2671
2672 gnu_idx = int_const_binop (PLUS_EXPR, gnu_idx, integer_one_node,
2673 0);
2674 }
2675
2676 gnu_result
2677 = gnat_build_constructor (gnu_result_type, nreverse (gnu_list));
2678 }
2679 break;
2680
2681 case N_Pragma:
2682 gnu_result = Pragma_to_gnu (gnat_node);
2683 break;
2684
2685 /**************************************/
2686 /* Chapter 3: Declarations and Types: */
2687 /**************************************/
2688
2689 case N_Subtype_Declaration:
2690 case N_Full_Type_Declaration:
2691 case N_Incomplete_Type_Declaration:
2692 case N_Private_Type_Declaration:
2693 case N_Private_Extension_Declaration:
2694 case N_Task_Type_Declaration:
2695 process_type (Defining_Entity (gnat_node));
2696 gnu_result = alloc_stmt_list ();
2697 break;
2698
2699 case N_Object_Declaration:
2700 case N_Exception_Declaration:
2701 gnat_temp = Defining_Entity (gnat_node);
2702 gnu_result = alloc_stmt_list ();
2703
2704 /* If we are just annotating types and this object has an unconstrained
2705 or task type, don't elaborate it. */
2706 if (type_annotate_only
2707 && (((Is_Array_Type (Etype (gnat_temp))
2708 || Is_Record_Type (Etype (gnat_temp)))
2709 && !Is_Constrained (Etype (gnat_temp)))
2710 || Is_Concurrent_Type (Etype (gnat_temp))))
2711 break;
2712
2713 if (Present (Expression (gnat_node))
2714 && !(Nkind (gnat_node) == N_Object_Declaration
2715 && No_Initialization (gnat_node))
2716 && (!type_annotate_only
2717 || Compile_Time_Known_Value (Expression (gnat_node))))
2718 {
2719 gnu_expr = gnat_to_gnu (Expression (gnat_node));
2720 if (Do_Range_Check (Expression (gnat_node)))
2721 gnu_expr = emit_range_check (gnu_expr, Etype (gnat_temp));
2722
2723 /* If this object has its elaboration delayed, we must force
2724 evaluation of GNU_EXPR right now and save it for when the object
2725 is frozen. */
2726 if (Present (Freeze_Node (gnat_temp)))
2727 {
2728 if ((Is_Public (gnat_temp) || global_bindings_p ())
2729 && !TREE_CONSTANT (gnu_expr))
2730 gnu_expr
2731 = create_var_decl (create_concat_name (gnat_temp, "init"),
2732 NULL_TREE, TREE_TYPE (gnu_expr),
2733 gnu_expr, false, Is_Public (gnat_temp),
2734 false, false, NULL, gnat_temp);
2735 else
2736 gnu_expr = maybe_variable (gnu_expr);
2737
2738 save_gnu_tree (gnat_node, gnu_expr, true);
2739 }
2740 }
2741 else
2742 gnu_expr = NULL_TREE;
2743
2744 if (type_annotate_only && gnu_expr && TREE_CODE (gnu_expr) == ERROR_MARK)
2745 gnu_expr = NULL_TREE;
2746
2747 if (No (Freeze_Node (gnat_temp)))
2748 gnat_to_gnu_entity (gnat_temp, gnu_expr, 1);
2749 break;
2750
2751 case N_Object_Renaming_Declaration:
2752 gnat_temp = Defining_Entity (gnat_node);
2753
2754 /* Don't do anything if this renaming is handled by the front end. or if
2755 we are just annotating types and this object has a composite or task
2756 type, don't elaborate it. We return the result in case it has any
2757 SAVE_EXPRs in it that need to be evaluated here. */
2758 if (!Is_Renaming_Of_Object (gnat_temp)
2759 && ! (type_annotate_only
2760 && (Is_Array_Type (Etype (gnat_temp))
2761 || Is_Record_Type (Etype (gnat_temp))
2762 || Is_Concurrent_Type (Etype (gnat_temp)))))
2763 gnu_result
2764 = gnat_to_gnu_entity (gnat_temp,
2765 gnat_to_gnu (Renamed_Object (gnat_temp)), 1);
2766 else
2767 gnu_result = alloc_stmt_list ();
2768 break;
2769
2770 case N_Implicit_Label_Declaration:
2771 gnat_to_gnu_entity (Defining_Entity (gnat_node), NULL_TREE, 1);
2772 gnu_result = alloc_stmt_list ();
2773 break;
2774
2775 case N_Exception_Renaming_Declaration:
2776 case N_Number_Declaration:
2777 case N_Package_Renaming_Declaration:
2778 case N_Subprogram_Renaming_Declaration:
2779 /* These are fully handled in the front end. */
2780 gnu_result = alloc_stmt_list ();
2781 break;
2782
2783 /*************************************/
2784 /* Chapter 4: Names and Expressions: */
2785 /*************************************/
2786
2787 case N_Explicit_Dereference:
2788 gnu_result = gnat_to_gnu (Prefix (gnat_node));
2789 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2790 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_result);
2791 break;
2792
2793 case N_Indexed_Component:
2794 {
2795 tree gnu_array_object = gnat_to_gnu (Prefix (gnat_node));
2796 tree gnu_type;
2797 int ndim;
2798 int i;
2799 Node_Id *gnat_expr_array;
2800
2801 gnu_array_object = maybe_implicit_deref (gnu_array_object);
2802 gnu_array_object = maybe_unconstrained_array (gnu_array_object);
2803
2804 /* If we got a padded type, remove it too. */
2805 if (TREE_CODE (TREE_TYPE (gnu_array_object)) == RECORD_TYPE
2806 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_array_object)))
2807 gnu_array_object
2808 = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_array_object))),
2809 gnu_array_object);
2810
2811 gnu_result = gnu_array_object;
2812
2813 /* First compute the number of dimensions of the array, then
2814 fill the expression array, the order depending on whether
2815 this is a Convention_Fortran array or not. */
2816 for (ndim = 1, gnu_type = TREE_TYPE (gnu_array_object);
2817 TREE_CODE (TREE_TYPE (gnu_type)) == ARRAY_TYPE
2818 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_type));
2819 ndim++, gnu_type = TREE_TYPE (gnu_type))
2820 ;
2821
2822 gnat_expr_array = (Node_Id *) alloca (ndim * sizeof (Node_Id));
2823
2824 if (TYPE_CONVENTION_FORTRAN_P (TREE_TYPE (gnu_array_object)))
2825 for (i = ndim - 1, gnat_temp = First (Expressions (gnat_node));
2826 i >= 0;
2827 i--, gnat_temp = Next (gnat_temp))
2828 gnat_expr_array[i] = gnat_temp;
2829 else
2830 for (i = 0, gnat_temp = First (Expressions (gnat_node));
2831 i < ndim;
2832 i++, gnat_temp = Next (gnat_temp))
2833 gnat_expr_array[i] = gnat_temp;
2834
2835 for (i = 0, gnu_type = TREE_TYPE (gnu_array_object);
2836 i < ndim; i++, gnu_type = TREE_TYPE (gnu_type))
2837 {
2838 gcc_assert (TREE_CODE (gnu_type) == ARRAY_TYPE);
2839 gnat_temp = gnat_expr_array[i];
2840 gnu_expr = gnat_to_gnu (gnat_temp);
2841
2842 if (Do_Range_Check (gnat_temp))
2843 gnu_expr
2844 = emit_index_check
2845 (gnu_array_object, gnu_expr,
2846 TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))),
2847 TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))));
2848
2849 gnu_result = build_binary_op (ARRAY_REF, NULL_TREE,
2850 gnu_result, gnu_expr);
2851 }
2852 }
2853
2854 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2855 break;
2856
2857 case N_Slice:
2858 {
2859 tree gnu_type;
2860 Node_Id gnat_range_node = Discrete_Range (gnat_node);
2861
2862 gnu_result = gnat_to_gnu (Prefix (gnat_node));
2863 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2864
2865 /* Do any implicit dereferences of the prefix and do any needed
2866 range check. */
2867 gnu_result = maybe_implicit_deref (gnu_result);
2868 gnu_result = maybe_unconstrained_array (gnu_result);
2869 gnu_type = TREE_TYPE (gnu_result);
2870 if (Do_Range_Check (gnat_range_node))
2871 {
2872 /* Get the bounds of the slice. */
2873 tree gnu_index_type
2874 = TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_result_type));
2875 tree gnu_min_expr = TYPE_MIN_VALUE (gnu_index_type);
2876 tree gnu_max_expr = TYPE_MAX_VALUE (gnu_index_type);
2877 tree gnu_expr_l, gnu_expr_h, gnu_expr_type;
2878
2879 /* Check to see that the minimum slice value is in range */
2880 gnu_expr_l
2881 = emit_index_check
2882 (gnu_result, gnu_min_expr,
2883 TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))),
2884 TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))));
2885
2886 /* Check to see that the maximum slice value is in range */
2887 gnu_expr_h
2888 = emit_index_check
2889 (gnu_result, gnu_max_expr,
2890 TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))),
2891 TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))));
2892
2893 /* Derive a good type to convert everything too */
2894 gnu_expr_type = get_base_type (TREE_TYPE (gnu_expr_l));
2895
2896 /* Build a compound expression that does the range checks */
2897 gnu_expr
2898 = build_binary_op (COMPOUND_EXPR, gnu_expr_type,
2899 convert (gnu_expr_type, gnu_expr_h),
2900 convert (gnu_expr_type, gnu_expr_l));
2901
2902 /* Build a conditional expression that returns the range checks
2903 expression if the slice range is not null (max >= min) or
2904 returns the min if the slice range is null */
2905 gnu_expr
2906 = fold (build3 (COND_EXPR, gnu_expr_type,
2907 build_binary_op (GE_EXPR, gnu_expr_type,
2908 convert (gnu_expr_type,
2909 gnu_max_expr),
2910 convert (gnu_expr_type,
2911 gnu_min_expr)),
2912 gnu_expr, gnu_min_expr));
2913 }
2914 else
2915 gnu_expr = TYPE_MIN_VALUE (TYPE_DOMAIN (gnu_result_type));
2916
2917 gnu_result = build_binary_op (ARRAY_RANGE_REF, gnu_result_type,
2918 gnu_result, gnu_expr);
2919 }
2920 break;
2921
2922 case N_Selected_Component:
2923 {
2924 tree gnu_prefix = gnat_to_gnu (Prefix (gnat_node));
2925 Entity_Id gnat_field = Entity (Selector_Name (gnat_node));
2926 Entity_Id gnat_pref_type = Etype (Prefix (gnat_node));
2927 tree gnu_field;
2928
2929 while (IN (Ekind (gnat_pref_type), Incomplete_Or_Private_Kind)
2930 || IN (Ekind (gnat_pref_type), Access_Kind))
2931 {
2932 if (IN (Ekind (gnat_pref_type), Incomplete_Or_Private_Kind))
2933 gnat_pref_type = Underlying_Type (gnat_pref_type);
2934 else if (IN (Ekind (gnat_pref_type), Access_Kind))
2935 gnat_pref_type = Designated_Type (gnat_pref_type);
2936 }
2937
2938 gnu_prefix = maybe_implicit_deref (gnu_prefix);
2939
2940 /* For discriminant references in tagged types always substitute the
2941 corresponding discriminant as the actual selected component. */
2942
2943 if (Is_Tagged_Type (gnat_pref_type))
2944 while (Present (Corresponding_Discriminant (gnat_field)))
2945 gnat_field = Corresponding_Discriminant (gnat_field);
2946
2947 /* For discriminant references of untagged types always substitute the
2948 corresponding stored discriminant. */
2949
2950 else if (Present (Corresponding_Discriminant (gnat_field)))
2951 gnat_field = Original_Record_Component (gnat_field);
2952
2953 /* Handle extracting the real or imaginary part of a complex.
2954 The real part is the first field and the imaginary the last. */
2955
2956 if (TREE_CODE (TREE_TYPE (gnu_prefix)) == COMPLEX_TYPE)
2957 gnu_result = build_unary_op (Present (Next_Entity (gnat_field))
2958 ? REALPART_EXPR : IMAGPART_EXPR,
2959 NULL_TREE, gnu_prefix);
2960 else
2961 {
2962 gnu_field = gnat_to_gnu_entity (gnat_field, NULL_TREE, 0);
2963
2964 /* If there are discriminants, the prefix might be
2965 evaluated more than once, which is a problem if it has
2966 side-effects. */
2967 if (Has_Discriminants (Is_Access_Type (Etype (Prefix (gnat_node)))
2968 ? Designated_Type (Etype
2969 (Prefix (gnat_node)))
2970 : Etype (Prefix (gnat_node))))
2971 gnu_prefix = gnat_stabilize_reference (gnu_prefix, 0);
2972
2973 gnu_result
2974 = build_component_ref (gnu_prefix, NULL_TREE, gnu_field,
2975 (Nkind (Parent (gnat_node))
2976 == N_Attribute_Reference));
2977 }
2978
2979 gcc_assert (gnu_result);
2980 gnu_result_type = get_unpadded_type (Etype (gnat_node));
2981 }
2982 break;
2983
2984 case N_Attribute_Reference:
2985 {
2986 /* The attribute designator (like an enumeration value). */
2987 int attribute = Get_Attribute_Id (Attribute_Name (gnat_node));
2988
2989 /* The Elab_Spec and Elab_Body attributes are special in that
2990 Prefix is a unit, not an object with a GCC equivalent. Similarly
2991 for Elaborated, since that variable isn't otherwise known. */
2992 if (attribute == Attr_Elab_Body || attribute == Attr_Elab_Spec)
2993 return (create_subprog_decl
2994 (create_concat_name (Entity (Prefix (gnat_node)),
2995 attribute == Attr_Elab_Body
2996 ? "elabb" : "elabs"),
2997 NULL_TREE, void_ftype, NULL_TREE, false, true, true, NULL,
2998 gnat_node));
2999
3000 gnu_result = Attribute_to_gnu (gnat_node, &gnu_result_type, attribute);
3001 }
3002 break;
3003
3004 case N_Reference:
3005 /* Like 'Access as far as we are concerned. */
3006 gnu_result = gnat_to_gnu (Prefix (gnat_node));
3007 gnu_result = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_result);
3008 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3009 break;
3010
3011 case N_Aggregate:
3012 case N_Extension_Aggregate:
3013 {
3014 tree gnu_aggr_type;
3015
3016 /* ??? It is wrong to evaluate the type now, but there doesn't
3017 seem to be any other practical way of doing it. */
3018
3019 gnu_aggr_type = gnu_result_type
3020 = get_unpadded_type (Etype (gnat_node));
3021
3022 if (TREE_CODE (gnu_result_type) == RECORD_TYPE
3023 && TYPE_CONTAINS_TEMPLATE_P (gnu_result_type))
3024 gnu_aggr_type
3025 = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (gnu_result_type)));
3026
3027 if (Null_Record_Present (gnat_node))
3028 gnu_result = gnat_build_constructor (gnu_aggr_type, NULL_TREE);
3029
3030 else if (TREE_CODE (gnu_aggr_type) == RECORD_TYPE)
3031 gnu_result
3032 = assoc_to_constructor (First (Component_Associations (gnat_node)),
3033 gnu_aggr_type);
3034 else if (TREE_CODE (gnu_aggr_type) == UNION_TYPE)
3035 {
3036 /* The first element is the discrimant, which we ignore. The
3037 next is the field we're building. Convert the expression
3038 to the type of the field and then to the union type. */
3039 Node_Id gnat_assoc
3040 = Next (First (Component_Associations (gnat_node)));
3041 Entity_Id gnat_field = Entity (First (Choices (gnat_assoc)));
3042 tree gnu_field_type
3043 = TREE_TYPE (gnat_to_gnu_entity (gnat_field, NULL_TREE, 0));
3044
3045 gnu_result = convert (gnu_field_type,
3046 gnat_to_gnu (Expression (gnat_assoc)));
3047 }
3048 else if (TREE_CODE (gnu_aggr_type) == ARRAY_TYPE)
3049 gnu_result = pos_to_constructor (First (Expressions (gnat_node)),
3050 gnu_aggr_type,
3051 Component_Type (Etype (gnat_node)));
3052 else if (TREE_CODE (gnu_aggr_type) == COMPLEX_TYPE)
3053 gnu_result
3054 = build_binary_op
3055 (COMPLEX_EXPR, gnu_aggr_type,
3056 gnat_to_gnu (Expression (First
3057 (Component_Associations (gnat_node)))),
3058 gnat_to_gnu (Expression
3059 (Next
3060 (First (Component_Associations (gnat_node))))));
3061 else
3062 gcc_unreachable ();
3063
3064 gnu_result = convert (gnu_result_type, gnu_result);
3065 }
3066 break;
3067
3068 case N_Null:
3069 gnu_result = null_pointer_node;
3070 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3071 break;
3072
3073 case N_Type_Conversion:
3074 case N_Qualified_Expression:
3075 /* Get the operand expression. */
3076 gnu_result = gnat_to_gnu (Expression (gnat_node));
3077 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3078
3079 gnu_result
3080 = convert_with_check (Etype (gnat_node), gnu_result,
3081 Do_Overflow_Check (gnat_node),
3082 Do_Range_Check (Expression (gnat_node)),
3083 Nkind (gnat_node) == N_Type_Conversion
3084 && Float_Truncate (gnat_node));
3085 break;
3086
3087 case N_Unchecked_Type_Conversion:
3088 gnu_result = gnat_to_gnu (Expression (gnat_node));
3089 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3090
3091 /* If the result is a pointer type, see if we are improperly
3092 converting to a stricter alignment. */
3093
3094 if (STRICT_ALIGNMENT && POINTER_TYPE_P (gnu_result_type)
3095 && IN (Ekind (Etype (gnat_node)), Access_Kind))
3096 {
3097 unsigned int align = known_alignment (gnu_result);
3098 tree gnu_obj_type = TREE_TYPE (gnu_result_type);
3099 unsigned int oalign = TYPE_ALIGN (gnu_obj_type);
3100
3101 if (align != 0 && align < oalign && !TYPE_ALIGN_OK (gnu_obj_type))
3102 post_error_ne_tree_2
3103 ("?source alignment (^) < alignment of & (^)",
3104 gnat_node, Designated_Type (Etype (gnat_node)),
3105 size_int (align / BITS_PER_UNIT), oalign / BITS_PER_UNIT);
3106 }
3107
3108 gnu_result = unchecked_convert (gnu_result_type, gnu_result,
3109 No_Truncation (gnat_node));
3110 break;
3111
3112 case N_In:
3113 case N_Not_In:
3114 {
3115 tree gnu_object = gnat_to_gnu (Left_Opnd (gnat_node));
3116 Node_Id gnat_range = Right_Opnd (gnat_node);
3117 tree gnu_low;
3118 tree gnu_high;
3119
3120 /* GNAT_RANGE is either an N_Range node or an identifier
3121 denoting a subtype. */
3122 if (Nkind (gnat_range) == N_Range)
3123 {
3124 gnu_low = gnat_to_gnu (Low_Bound (gnat_range));
3125 gnu_high = gnat_to_gnu (High_Bound (gnat_range));
3126 }
3127 else if (Nkind (gnat_range) == N_Identifier
3128 || Nkind (gnat_range) == N_Expanded_Name)
3129 {
3130 tree gnu_range_type = get_unpadded_type (Entity (gnat_range));
3131
3132 gnu_low = TYPE_MIN_VALUE (gnu_range_type);
3133 gnu_high = TYPE_MAX_VALUE (gnu_range_type);
3134 }
3135 else
3136 gcc_unreachable ();
3137
3138 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3139
3140 /* If LOW and HIGH are identical, perform an equality test.
3141 Otherwise, ensure that GNU_OBJECT is only evaluated once
3142 and perform a full range test. */
3143 if (operand_equal_p (gnu_low, gnu_high, 0))
3144 gnu_result = build_binary_op (EQ_EXPR, gnu_result_type,
3145 gnu_object, gnu_low);
3146 else
3147 {
3148 gnu_object = protect_multiple_eval (gnu_object);
3149 gnu_result
3150 = build_binary_op (TRUTH_ANDIF_EXPR, gnu_result_type,
3151 build_binary_op (GE_EXPR, gnu_result_type,
3152 gnu_object, gnu_low),
3153 build_binary_op (LE_EXPR, gnu_result_type,
3154 gnu_object, gnu_high));
3155 }
3156
3157 if (Nkind (gnat_node) == N_Not_In)
3158 gnu_result = invert_truthvalue (gnu_result);
3159 }
3160 break;
3161
3162 case N_Op_Divide:
3163 gnu_lhs = gnat_to_gnu (Left_Opnd (gnat_node));
3164 gnu_rhs = gnat_to_gnu (Right_Opnd (gnat_node));
3165 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3166 gnu_result = build_binary_op (FLOAT_TYPE_P (gnu_result_type)
3167 ? RDIV_EXPR
3168 : (Rounded_Result (gnat_node)
3169 ? ROUND_DIV_EXPR : TRUNC_DIV_EXPR),
3170 gnu_result_type, gnu_lhs, gnu_rhs);
3171 break;
3172
3173 case N_Op_Or: case N_Op_And: case N_Op_Xor:
3174 /* These can either be operations on booleans or on modular types.
3175 Fall through for boolean types since that's the way GNU_CODES is
3176 set up. */
3177 if (IN (Ekind (Underlying_Type (Etype (gnat_node))),
3178 Modular_Integer_Kind))
3179 {
3180 enum tree_code code
3181 = (Nkind (gnat_node) == N_Op_Or ? BIT_IOR_EXPR
3182 : Nkind (gnat_node) == N_Op_And ? BIT_AND_EXPR
3183 : BIT_XOR_EXPR);
3184
3185 gnu_lhs = gnat_to_gnu (Left_Opnd (gnat_node));
3186 gnu_rhs = gnat_to_gnu (Right_Opnd (gnat_node));
3187 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3188 gnu_result = build_binary_op (code, gnu_result_type,
3189 gnu_lhs, gnu_rhs);
3190 break;
3191 }
3192
3193 /* ... fall through ... */
3194
3195 case N_Op_Eq: case N_Op_Ne: case N_Op_Lt:
3196 case N_Op_Le: case N_Op_Gt: case N_Op_Ge:
3197 case N_Op_Add: case N_Op_Subtract: case N_Op_Multiply:
3198 case N_Op_Mod: case N_Op_Rem:
3199 case N_Op_Rotate_Left:
3200 case N_Op_Rotate_Right:
3201 case N_Op_Shift_Left:
3202 case N_Op_Shift_Right:
3203 case N_Op_Shift_Right_Arithmetic:
3204 case N_And_Then: case N_Or_Else:
3205 {
3206 enum tree_code code = gnu_codes[Nkind (gnat_node)];
3207 tree gnu_type;
3208
3209 gnu_lhs = gnat_to_gnu (Left_Opnd (gnat_node));
3210 gnu_rhs = gnat_to_gnu (Right_Opnd (gnat_node));
3211 gnu_type = gnu_result_type = get_unpadded_type (Etype (gnat_node));
3212
3213 /* If this is a comparison operator, convert any references to
3214 an unconstrained array value into a reference to the
3215 actual array. */
3216 if (TREE_CODE_CLASS (code) == tcc_comparison)
3217 {
3218 gnu_lhs = maybe_unconstrained_array (gnu_lhs);
3219 gnu_rhs = maybe_unconstrained_array (gnu_rhs);
3220 }
3221
3222 /* If the result type is a private type, its full view may be a
3223 numeric subtype. The representation we need is that of its base
3224 type, given that it is the result of an arithmetic operation. */
3225 else if (Is_Private_Type (Etype (gnat_node)))
3226 gnu_type = gnu_result_type
3227 = get_unpadded_type (Base_Type (Full_View (Etype (gnat_node))));
3228
3229 /* If this is a shift whose count is not guaranteed to be correct,
3230 we need to adjust the shift count. */
3231 if (IN (Nkind (gnat_node), N_Op_Shift)
3232 && !Shift_Count_OK (gnat_node))
3233 {
3234 tree gnu_count_type = get_base_type (TREE_TYPE (gnu_rhs));
3235 tree gnu_max_shift
3236 = convert (gnu_count_type, TYPE_SIZE (gnu_type));
3237
3238 if (Nkind (gnat_node) == N_Op_Rotate_Left
3239 || Nkind (gnat_node) == N_Op_Rotate_Right)
3240 gnu_rhs = build_binary_op (TRUNC_MOD_EXPR, gnu_count_type,
3241 gnu_rhs, gnu_max_shift);
3242 else if (Nkind (gnat_node) == N_Op_Shift_Right_Arithmetic)
3243 gnu_rhs
3244 = build_binary_op
3245 (MIN_EXPR, gnu_count_type,
3246 build_binary_op (MINUS_EXPR,
3247 gnu_count_type,
3248 gnu_max_shift,
3249 convert (gnu_count_type,
3250 integer_one_node)),
3251 gnu_rhs);
3252 }
3253
3254 /* For right shifts, the type says what kind of shift to do,
3255 so we may need to choose a different type. */
3256 if (Nkind (gnat_node) == N_Op_Shift_Right
3257 && !TYPE_UNSIGNED (gnu_type))
3258 gnu_type = gnat_unsigned_type (gnu_type);
3259 else if (Nkind (gnat_node) == N_Op_Shift_Right_Arithmetic
3260 && TYPE_UNSIGNED (gnu_type))
3261 gnu_type = gnat_signed_type (gnu_type);
3262
3263 if (gnu_type != gnu_result_type)
3264 {
3265 gnu_lhs = convert (gnu_type, gnu_lhs);
3266 gnu_rhs = convert (gnu_type, gnu_rhs);
3267 }
3268
3269 gnu_result = build_binary_op (code, gnu_type, gnu_lhs, gnu_rhs);
3270
3271 /* If this is a logical shift with the shift count not verified,
3272 we must return zero if it is too large. We cannot compensate
3273 above in this case. */
3274 if ((Nkind (gnat_node) == N_Op_Shift_Left
3275 || Nkind (gnat_node) == N_Op_Shift_Right)
3276 && !Shift_Count_OK (gnat_node))
3277 gnu_result
3278 = build_cond_expr
3279 (gnu_type,
3280 build_binary_op (GE_EXPR, integer_type_node,
3281 gnu_rhs,
3282 convert (TREE_TYPE (gnu_rhs),
3283 TYPE_SIZE (gnu_type))),
3284 convert (gnu_type, integer_zero_node),
3285 gnu_result);
3286 }
3287 break;
3288
3289 case N_Conditional_Expression:
3290 {
3291 tree gnu_cond = gnat_to_gnu (First (Expressions (gnat_node)));
3292 tree gnu_true = gnat_to_gnu (Next (First (Expressions (gnat_node))));
3293 tree gnu_false
3294 = gnat_to_gnu (Next (Next (First (Expressions (gnat_node)))));
3295
3296 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3297 gnu_result = build_cond_expr (gnu_result_type,
3298 gnat_truthvalue_conversion (gnu_cond),
3299 gnu_true, gnu_false);
3300 }
3301 break;
3302
3303 case N_Op_Plus:
3304 gnu_result = gnat_to_gnu (Right_Opnd (gnat_node));
3305 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3306 break;
3307
3308 case N_Op_Not:
3309 /* This case can apply to a boolean or a modular type.
3310 Fall through for a boolean operand since GNU_CODES is set
3311 up to handle this. */
3312 if (IN (Ekind (Etype (gnat_node)), Modular_Integer_Kind))
3313 {
3314 gnu_expr = gnat_to_gnu (Right_Opnd (gnat_node));
3315 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3316 gnu_result = build_unary_op (BIT_NOT_EXPR, gnu_result_type,
3317 gnu_expr);
3318 break;
3319 }
3320
3321 /* ... fall through ... */
3322
3323 case N_Op_Minus: case N_Op_Abs:
3324 gnu_expr = gnat_to_gnu (Right_Opnd (gnat_node));
3325
3326 if (Ekind (Etype (gnat_node)) != E_Private_Type)
3327 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3328 else
3329 gnu_result_type = get_unpadded_type (Base_Type
3330 (Full_View (Etype (gnat_node))));
3331
3332 gnu_result = build_unary_op (gnu_codes[Nkind (gnat_node)],
3333 gnu_result_type, gnu_expr);
3334 break;
3335
3336 case N_Allocator:
3337 {
3338 tree gnu_init = 0;
3339 tree gnu_type;
3340
3341 gnat_temp = Expression (gnat_node);
3342
3343 /* The Expression operand can either be an N_Identifier or
3344 Expanded_Name, which must represent a type, or a
3345 N_Qualified_Expression, which contains both the object type and an
3346 initial value for the object. */
3347 if (Nkind (gnat_temp) == N_Identifier
3348 || Nkind (gnat_temp) == N_Expanded_Name)
3349 gnu_type = gnat_to_gnu_type (Entity (gnat_temp));
3350 else if (Nkind (gnat_temp) == N_Qualified_Expression)
3351 {
3352 Entity_Id gnat_desig_type
3353 = Designated_Type (Underlying_Type (Etype (gnat_node)));
3354
3355 gnu_init = gnat_to_gnu (Expression (gnat_temp));
3356
3357 gnu_init = maybe_unconstrained_array (gnu_init);
3358 if (Do_Range_Check (Expression (gnat_temp)))
3359 gnu_init = emit_range_check (gnu_init, gnat_desig_type);
3360
3361 if (Is_Elementary_Type (gnat_desig_type)
3362 || Is_Constrained (gnat_desig_type))
3363 {
3364 gnu_type = gnat_to_gnu_type (gnat_desig_type);
3365 gnu_init = convert (gnu_type, gnu_init);
3366 }
3367 else
3368 {
3369 gnu_type = gnat_to_gnu_type (Etype (Expression (gnat_temp)));
3370 if (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE)
3371 gnu_type = TREE_TYPE (gnu_init);
3372
3373 gnu_init = convert (gnu_type, gnu_init);
3374 }
3375 }
3376 else
3377 gcc_unreachable ();
3378
3379 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3380 return build_allocator (gnu_type, gnu_init, gnu_result_type,
3381 Procedure_To_Call (gnat_node),
3382 Storage_Pool (gnat_node), gnat_node);
3383 }
3384 break;
3385
3386 /***************************/
3387 /* Chapter 5: Statements: */
3388 /***************************/
3389
3390 case N_Label:
3391 gnu_result = build1 (LABEL_EXPR, void_type_node,
3392 gnat_to_gnu (Identifier (gnat_node)));
3393 break;
3394
3395 case N_Null_Statement:
3396 gnu_result = alloc_stmt_list ();
3397 break;
3398
3399 case N_Assignment_Statement:
3400 /* Get the LHS and RHS of the statement and convert any reference to an
3401 unconstrained array into a reference to the underlying array.
3402 If we are not to do range checking and the RHS is an N_Function_Call,
3403 pass the LHS to the call function. */
3404 gnu_lhs = maybe_unconstrained_array (gnat_to_gnu (Name (gnat_node)));
3405
3406 /* If the type has a size that overflows, convert this into raise of
3407 Storage_Error: execution shouldn't have gotten here anyway. */
3408 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (gnu_lhs))) == INTEGER_CST
3409 && TREE_OVERFLOW (TYPE_SIZE (TREE_TYPE (gnu_lhs))))
3410 gnu_result = build_call_raise (SE_Object_Too_Large);
3411 else if (Nkind (Expression (gnat_node)) == N_Function_Call
3412 && !Do_Range_Check (Expression (gnat_node)))
3413 gnu_result = call_to_gnu (Expression (gnat_node),
3414 &gnu_result_type, gnu_lhs);
3415 else
3416 {
3417 gnu_rhs
3418 = maybe_unconstrained_array (gnat_to_gnu (Expression (gnat_node)));
3419
3420 /* If range check is needed, emit code to generate it */
3421 if (Do_Range_Check (Expression (gnat_node)))
3422 gnu_rhs = emit_range_check (gnu_rhs, Etype (Name (gnat_node)));
3423
3424 gnu_result
3425 = build_binary_op (MODIFY_EXPR, NULL_TREE, gnu_lhs, gnu_rhs);
3426 }
3427 break;
3428
3429 case N_If_Statement:
3430 {
3431 tree *gnu_else_ptr; /* Point to put next "else if" or "else". */
3432
3433 /* Make the outer COND_EXPR. Avoid non-determinism. */
3434 gnu_result = build3 (COND_EXPR, void_type_node,
3435 gnat_to_gnu (Condition (gnat_node)),
3436 NULL_TREE, NULL_TREE);
3437 COND_EXPR_THEN (gnu_result)
3438 = build_stmt_group (Then_Statements (gnat_node), false);
3439 TREE_SIDE_EFFECTS (gnu_result) = 1;
3440 gnu_else_ptr = &COND_EXPR_ELSE (gnu_result);
3441
3442 /* Now make a COND_EXPR for each of the "else if" parts. Put each
3443 into the previous "else" part and point to where to put any
3444 outer "else". Also avoid non-determinism. */
3445 if (Present (Elsif_Parts (gnat_node)))
3446 for (gnat_temp = First (Elsif_Parts (gnat_node));
3447 Present (gnat_temp); gnat_temp = Next (gnat_temp))
3448 {
3449 gnu_expr = build3 (COND_EXPR, void_type_node,
3450 gnat_to_gnu (Condition (gnat_temp)),
3451 NULL_TREE, NULL_TREE);
3452 COND_EXPR_THEN (gnu_expr)
3453 = build_stmt_group (Then_Statements (gnat_temp), false);
3454 TREE_SIDE_EFFECTS (gnu_expr) = 1;
3455 annotate_with_node (gnu_expr, gnat_temp);
3456 *gnu_else_ptr = gnu_expr;
3457 gnu_else_ptr = &COND_EXPR_ELSE (gnu_expr);
3458 }
3459
3460 *gnu_else_ptr = build_stmt_group (Else_Statements (gnat_node), false);
3461 }
3462 break;
3463
3464 case N_Case_Statement:
3465 gnu_result = Case_Statement_to_gnu (gnat_node);
3466 break;
3467
3468 case N_Loop_Statement:
3469 gnu_result = Loop_Statement_to_gnu (gnat_node);
3470 break;
3471
3472 case N_Block_Statement:
3473 start_stmt_group ();
3474 gnat_pushlevel ();
3475 process_decls (Declarations (gnat_node), Empty, Empty, true, true);
3476 add_stmt (gnat_to_gnu (Handled_Statement_Sequence (gnat_node)));
3477 gnat_poplevel ();
3478 gnu_result = end_stmt_group ();
3479
3480 if (Present (Identifier (gnat_node)))
3481 mark_out_of_scope (Entity (Identifier (gnat_node)));
3482 break;
3483
3484 case N_Exit_Statement:
3485 gnu_result
3486 = build2 (EXIT_STMT, void_type_node,
3487 (Present (Condition (gnat_node))
3488 ? gnat_to_gnu (Condition (gnat_node)) : NULL_TREE),
3489 (Present (Name (gnat_node))
3490 ? get_gnu_tree (Entity (Name (gnat_node)))
3491 : TREE_VALUE (gnu_loop_label_stack)));
3492 break;
3493
3494 case N_Return_Statement:
3495 {
3496 /* The gnu function type of the subprogram currently processed. */
3497 tree gnu_subprog_type = TREE_TYPE (current_function_decl);
3498 /* The return value from the subprogram. */
3499 tree gnu_ret_val = NULL_TREE;
3500 /* The place to put the return value. */
3501 tree gnu_lhs
3502 = (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type)
3503 ? build_unary_op (INDIRECT_REF, NULL_TREE,
3504 DECL_ARGUMENTS (current_function_decl))
3505 : DECL_RESULT (current_function_decl));
3506
3507 /* If we are dealing with a "return;" from an Ada procedure with
3508 parameters passed by copy in copy out, we need to return a record
3509 containing the final values of these parameters. If the list
3510 contains only one entry, return just that entry.
3511
3512 For a full description of the copy in copy out parameter mechanism,
3513 see the part of the gnat_to_gnu_entity routine dealing with the
3514 translation of subprograms.
3515
3516 But if we have a return label defined, convert this into
3517 a branch to that label. */
3518
3519 if (TREE_VALUE (gnu_return_label_stack))
3520 {
3521 gnu_result = build1 (GOTO_EXPR, void_type_node,
3522 TREE_VALUE (gnu_return_label_stack));
3523 break;
3524 }
3525
3526 else if (TYPE_CI_CO_LIST (gnu_subprog_type))
3527 {
3528 if (list_length (TYPE_CI_CO_LIST (gnu_subprog_type)) == 1)
3529 gnu_ret_val = TREE_VALUE (TYPE_CI_CO_LIST (gnu_subprog_type));
3530 else
3531 gnu_ret_val
3532 = gnat_build_constructor (TREE_TYPE (gnu_subprog_type),
3533 TYPE_CI_CO_LIST (gnu_subprog_type));
3534 }
3535
3536 /* If the Ada subprogram is a function, we just need to return the
3537 expression. If the subprogram returns an unconstrained
3538 array, we have to allocate a new version of the result and
3539 return it. If we return by reference, return a pointer. */
3540
3541 else if (Present (Expression (gnat_node)))
3542 {
3543 /* If the current function returns by target pointer and we
3544 are doing a call, pass that target to the call. */
3545 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type)
3546 && Nkind (Expression (gnat_node)) == N_Function_Call)
3547 gnu_result = call_to_gnu (Expression (gnat_node),
3548 &gnu_result_type, gnu_lhs);
3549
3550 else
3551 {
3552 gnu_ret_val = gnat_to_gnu (Expression (gnat_node));
3553
3554 /* Do not remove the padding from GNU_RET_VAL if the inner
3555 type is self-referential since we want to allocate the fixed
3556 size in that case. */
3557 if (TREE_CODE (gnu_ret_val) == COMPONENT_REF
3558 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_ret_val, 0)))
3559 == RECORD_TYPE)
3560 && (TYPE_IS_PADDING_P
3561 (TREE_TYPE (TREE_OPERAND (gnu_ret_val, 0))))
3562 && (CONTAINS_PLACEHOLDER_P
3563 (TYPE_SIZE (TREE_TYPE (gnu_ret_val)))))
3564 gnu_ret_val = TREE_OPERAND (gnu_ret_val, 0);
3565
3566 if (TYPE_RETURNS_BY_REF_P (gnu_subprog_type)
3567 || By_Ref (gnat_node))
3568 gnu_ret_val
3569 = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_ret_val);
3570
3571 else if (TYPE_RETURNS_UNCONSTRAINED_P (gnu_subprog_type))
3572 {
3573 gnu_ret_val = maybe_unconstrained_array (gnu_ret_val);
3574
3575 /* We have two cases: either the function returns with
3576 depressed stack or not. If not, we allocate on the
3577 secondary stack. If so, we allocate in the stack frame.
3578 if no copy is needed, the front end will set By_Ref,
3579 which we handle in the case above. */
3580 if (TYPE_RETURNS_STACK_DEPRESSED (gnu_subprog_type))
3581 gnu_ret_val
3582 = build_allocator (TREE_TYPE (gnu_ret_val),
3583 gnu_ret_val,
3584 TREE_TYPE (gnu_subprog_type),
3585 0, -1, gnat_node);
3586 else
3587 gnu_ret_val
3588 = build_allocator (TREE_TYPE (gnu_ret_val),
3589 gnu_ret_val,
3590 TREE_TYPE (gnu_subprog_type),
3591 Procedure_To_Call (gnat_node),
3592 Storage_Pool (gnat_node),
3593 gnat_node);
3594 }
3595 }
3596
3597 gnu_result = build2 (MODIFY_EXPR, TREE_TYPE (gnu_ret_val),
3598 gnu_lhs, gnu_ret_val);
3599 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
3600 {
3601 add_stmt_with_node (gnu_result, gnat_node);
3602 gnu_ret_val = NULL_TREE;
3603 }
3604 }
3605
3606 gnu_result = build1 (RETURN_EXPR, void_type_node,
3607 gnu_ret_val ? gnu_result : gnu_ret_val);
3608 }
3609 break;
3610
3611 case N_Goto_Statement:
3612 gnu_result = build1 (GOTO_EXPR, void_type_node,
3613 gnat_to_gnu (Name (gnat_node)));
3614 break;
3615
3616 /****************************/
3617 /* Chapter 6: Subprograms: */
3618 /****************************/
3619
3620 case N_Subprogram_Declaration:
3621 /* Unless there is a freeze node, declare the subprogram. We consider
3622 this a "definition" even though we're not generating code for
3623 the subprogram because we will be making the corresponding GCC
3624 node here. */
3625
3626 if (No (Freeze_Node (Defining_Entity (Specification (gnat_node)))))
3627 gnat_to_gnu_entity (Defining_Entity (Specification (gnat_node)),
3628 NULL_TREE, 1);
3629 gnu_result = alloc_stmt_list ();
3630 break;
3631
3632 case N_Abstract_Subprogram_Declaration:
3633 /* This subprogram doesn't exist for code generation purposes, but we
3634 have to elaborate the types of any parameters, unless they are
3635 imported types (nothing to generate in this case). */
3636 for (gnat_temp
3637 = First_Formal (Defining_Entity (Specification (gnat_node)));
3638 Present (gnat_temp);
3639 gnat_temp = Next_Formal_With_Extras (gnat_temp))
3640 if (Is_Itype (Etype (gnat_temp))
3641 && !From_With_Type (Etype (gnat_temp)))
3642 gnat_to_gnu_entity (Etype (gnat_temp), NULL_TREE, 0);
3643
3644 gnu_result = alloc_stmt_list ();
3645 break;
3646
3647 case N_Defining_Program_Unit_Name:
3648 /* For a child unit identifier go up a level to get the
3649 specificaton. We get this when we try to find the spec of
3650 a child unit package that is the compilation unit being compiled. */
3651 gnu_result = gnat_to_gnu (Parent (gnat_node));
3652 break;
3653
3654 case N_Subprogram_Body:
3655 Subprogram_Body_to_gnu (gnat_node);
3656 gnu_result = alloc_stmt_list ();
3657 break;
3658
3659 case N_Function_Call:
3660 case N_Procedure_Call_Statement:
3661 gnu_result = call_to_gnu (gnat_node, &gnu_result_type, NULL_TREE);
3662 break;
3663
3664 /*************************/
3665 /* Chapter 7: Packages: */
3666 /*************************/
3667
3668 case N_Package_Declaration:
3669 gnu_result = gnat_to_gnu (Specification (gnat_node));
3670 break;
3671
3672 case N_Package_Specification:
3673
3674 start_stmt_group ();
3675 process_decls (Visible_Declarations (gnat_node),
3676 Private_Declarations (gnat_node), Empty, true, true);
3677 gnu_result = end_stmt_group ();
3678 break;
3679
3680 case N_Package_Body:
3681
3682 /* If this is the body of a generic package - do nothing */
3683 if (Ekind (Corresponding_Spec (gnat_node)) == E_Generic_Package)
3684 {
3685 gnu_result = alloc_stmt_list ();
3686 break;
3687 }
3688
3689 start_stmt_group ();
3690 process_decls (Declarations (gnat_node), Empty, Empty, true, true);
3691
3692 if (Present (Handled_Statement_Sequence (gnat_node)))
3693 add_stmt (gnat_to_gnu (Handled_Statement_Sequence (gnat_node)));
3694
3695 gnu_result = end_stmt_group ();
3696 break;
3697
3698 /*********************************/
3699 /* Chapter 8: Visibility Rules: */
3700 /*********************************/
3701
3702 case N_Use_Package_Clause:
3703 case N_Use_Type_Clause:
3704 /* Nothing to do here - but these may appear in list of declarations */
3705 gnu_result = alloc_stmt_list ();
3706 break;
3707
3708 /***********************/
3709 /* Chapter 9: Tasks: */
3710 /***********************/
3711
3712 case N_Protected_Type_Declaration:
3713 gnu_result = alloc_stmt_list ();
3714 break;
3715
3716 case N_Single_Task_Declaration:
3717 gnat_to_gnu_entity (Defining_Entity (gnat_node), NULL_TREE, 1);
3718 gnu_result = alloc_stmt_list ();
3719 break;
3720
3721 /***********************************************************/
3722 /* Chapter 10: Program Structure and Compilation Issues: */
3723 /***********************************************************/
3724
3725 case N_Compilation_Unit:
3726
3727 /* This is not called for the main unit, which is handled in function
3728 gigi above. */
3729 start_stmt_group ();
3730 gnat_pushlevel ();
3731
3732 Compilation_Unit_to_gnu (gnat_node);
3733 gnu_result = alloc_stmt_list ();
3734 break;
3735
3736 case N_Subprogram_Body_Stub:
3737 case N_Package_Body_Stub:
3738 case N_Protected_Body_Stub:
3739 case N_Task_Body_Stub:
3740 /* Simply process whatever unit is being inserted. */
3741 gnu_result = gnat_to_gnu (Unit (Library_Unit (gnat_node)));
3742 break;
3743
3744 case N_Subunit:
3745 gnu_result = gnat_to_gnu (Proper_Body (gnat_node));
3746 break;
3747
3748 /***************************/
3749 /* Chapter 11: Exceptions: */
3750 /***************************/
3751
3752 case N_Handled_Sequence_Of_Statements:
3753 /* If there is an At_End procedure attached to this node, and the EH
3754 mechanism is SJLJ, we must have at least a corresponding At_End
3755 handler, unless the No_Exception_Handlers restriction is set. */
3756 gcc_assert (type_annotate_only
3757 || Exception_Mechanism != Setjmp_Longjmp
3758 || No (At_End_Proc (gnat_node))
3759 || Present (Exception_Handlers (gnat_node))
3760 || No_Exception_Handlers_Set ());
3761
3762 gnu_result = Handled_Sequence_Of_Statements_to_gnu (gnat_node);
3763 break;
3764
3765 case N_Exception_Handler:
3766 if (Exception_Mechanism == Setjmp_Longjmp)
3767 gnu_result = Exception_Handler_to_gnu_sjlj (gnat_node);
3768 else if (Exception_Mechanism == GCC_ZCX)
3769 gnu_result = Exception_Handler_to_gnu_zcx (gnat_node);
3770 else
3771 gcc_unreachable ();
3772
3773 break;
3774
3775 /*******************************/
3776 /* Chapter 12: Generic Units: */
3777 /*******************************/
3778
3779 case N_Generic_Function_Renaming_Declaration:
3780 case N_Generic_Package_Renaming_Declaration:
3781 case N_Generic_Procedure_Renaming_Declaration:
3782 case N_Generic_Package_Declaration:
3783 case N_Generic_Subprogram_Declaration:
3784 case N_Package_Instantiation:
3785 case N_Procedure_Instantiation:
3786 case N_Function_Instantiation:
3787 /* These nodes can appear on a declaration list but there is nothing to
3788 to be done with them. */
3789 gnu_result = alloc_stmt_list ();
3790 break;
3791
3792 /***************************************************/
3793 /* Chapter 13: Representation Clauses and */
3794 /* Implementation-Dependent Features: */
3795 /***************************************************/
3796
3797 case N_Attribute_Definition_Clause:
3798
3799 gnu_result = alloc_stmt_list ();
3800
3801 /* The only one we need deal with is for 'Address. For the others, SEM
3802 puts the information elsewhere. We need only deal with 'Address
3803 if the object has a Freeze_Node (which it never will currently). */
3804 if (Get_Attribute_Id (Chars (gnat_node)) != Attr_Address
3805 || No (Freeze_Node (Entity (Name (gnat_node)))))
3806 break;
3807
3808 /* Get the value to use as the address and save it as the
3809 equivalent for GNAT_TEMP. When the object is frozen,
3810 gnat_to_gnu_entity will do the right thing. */
3811 save_gnu_tree (Entity (Name (gnat_node)),
3812 gnat_to_gnu (Expression (gnat_node)), true);
3813 break;
3814
3815 case N_Enumeration_Representation_Clause:
3816 case N_Record_Representation_Clause:
3817 case N_At_Clause:
3818 /* We do nothing with these. SEM puts the information elsewhere. */
3819 gnu_result = alloc_stmt_list ();
3820 break;
3821
3822 case N_Code_Statement:
3823 if (!type_annotate_only)
3824 {
3825 tree gnu_template = gnat_to_gnu (Asm_Template (gnat_node));
3826 tree gnu_input_list = NULL_TREE, gnu_output_list = NULL_TREE;
3827 tree gnu_clobber_list = NULL_TREE;
3828 char *clobber;
3829
3830 /* First process inputs, then outputs, then clobbers. */
3831 Setup_Asm_Inputs (gnat_node);
3832 while (Present (gnat_temp = Asm_Input_Value ()))
3833 {
3834 tree gnu_value = gnat_to_gnu (gnat_temp);
3835 tree gnu_constr = build_tree_list (NULL_TREE, gnat_to_gnu
3836 (Asm_Input_Constraint ()));
3837
3838 gnu_input_list
3839 = tree_cons (gnu_constr, gnu_value, gnu_input_list);
3840 Next_Asm_Input ();
3841 }
3842
3843 Setup_Asm_Outputs (gnat_node);
3844 while (Present (gnat_temp = Asm_Output_Variable ()))
3845 {
3846 tree gnu_value = gnat_to_gnu (gnat_temp);
3847 tree gnu_constr = build_tree_list (NULL_TREE, gnat_to_gnu
3848 (Asm_Output_Constraint ()));
3849
3850 gnu_output_list
3851 = tree_cons (gnu_constr, gnu_value, gnu_output_list);
3852 Next_Asm_Output ();
3853 }
3854
3855 Clobber_Setup (gnat_node);
3856 while ((clobber = Clobber_Get_Next ()))
3857 gnu_clobber_list
3858 = tree_cons (NULL_TREE,
3859 build_string (strlen (clobber) + 1, clobber),
3860 gnu_clobber_list);
3861
3862 gnu_input_list = nreverse (gnu_input_list);
3863 gnu_output_list = nreverse (gnu_output_list);
3864 gnu_result = build4 (ASM_EXPR, void_type_node,
3865 gnu_template, gnu_output_list,
3866 gnu_input_list, gnu_clobber_list);
3867 ASM_VOLATILE_P (gnu_result) = Is_Asm_Volatile (gnat_node);
3868 }
3869 else
3870 gnu_result = alloc_stmt_list ();
3871
3872 break;
3873
3874 /***************************************************/
3875 /* Added Nodes */
3876 /***************************************************/
3877
3878 case N_Freeze_Entity:
3879 start_stmt_group ();
3880 process_freeze_entity (gnat_node);
3881 process_decls (Actions (gnat_node), Empty, Empty, true, true);
3882 gnu_result = end_stmt_group ();
3883 break;
3884
3885 case N_Itype_Reference:
3886 if (!present_gnu_tree (Itype (gnat_node)))
3887 process_type (Itype (gnat_node));
3888
3889 gnu_result = alloc_stmt_list ();
3890 break;
3891
3892 case N_Free_Statement:
3893 if (!type_annotate_only)
3894 {
3895 tree gnu_ptr = gnat_to_gnu (Expression (gnat_node));
3896 tree gnu_obj_type;
3897 tree gnu_obj_size;
3898 int align;
3899
3900 /* If this is a thin pointer, we must dereference it to create
3901 a fat pointer, then go back below to a thin pointer. The
3902 reason for this is that we need a fat pointer someplace in
3903 order to properly compute the size. */
3904 if (TYPE_THIN_POINTER_P (TREE_TYPE (gnu_ptr)))
3905 gnu_ptr = build_unary_op (ADDR_EXPR, NULL_TREE,
3906 build_unary_op (INDIRECT_REF, NULL_TREE,
3907 gnu_ptr));
3908
3909 /* If this is an unconstrained array, we know the object must
3910 have been allocated with the template in front of the object.
3911 So pass the template address, but get the total size. Do this
3912 by converting to a thin pointer. */
3913 if (TYPE_FAT_POINTER_P (TREE_TYPE (gnu_ptr)))
3914 gnu_ptr
3915 = convert (build_pointer_type
3916 (TYPE_OBJECT_RECORD_TYPE
3917 (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (gnu_ptr)))),
3918 gnu_ptr);
3919
3920 gnu_obj_type = TREE_TYPE (TREE_TYPE (gnu_ptr));
3921 gnu_obj_size = TYPE_SIZE_UNIT (gnu_obj_type);
3922 align = TYPE_ALIGN (gnu_obj_type);
3923
3924 if (TREE_CODE (gnu_obj_type) == RECORD_TYPE
3925 && TYPE_CONTAINS_TEMPLATE_P (gnu_obj_type))
3926 {
3927 tree gnu_char_ptr_type = build_pointer_type (char_type_node);
3928 tree gnu_pos = byte_position (TYPE_FIELDS (gnu_obj_type));
3929 tree gnu_byte_offset
3930 = convert (gnu_char_ptr_type,
3931 size_diffop (size_zero_node, gnu_pos));
3932
3933 gnu_ptr = convert (gnu_char_ptr_type, gnu_ptr);
3934 gnu_ptr = build_binary_op (MINUS_EXPR, gnu_char_ptr_type,
3935 gnu_ptr, gnu_byte_offset);
3936 }
3937
3938 gnu_result = build_call_alloc_dealloc (gnu_ptr, gnu_obj_size, align,
3939 Procedure_To_Call (gnat_node),
3940 Storage_Pool (gnat_node),
3941 gnat_node);
3942 }
3943 break;
3944
3945 case N_Raise_Constraint_Error:
3946 case N_Raise_Program_Error:
3947 case N_Raise_Storage_Error:
3948 if (type_annotate_only)
3949 {
3950 gnu_result = alloc_stmt_list ();
3951 break;
3952 }
3953
3954 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3955 gnu_result = build_call_raise (UI_To_Int (Reason (gnat_node)));
3956
3957 /* If the type is VOID, this is a statement, so we need to
3958 generate the code for the call. Handle a Condition, if there
3959 is one. */
3960 if (TREE_CODE (gnu_result_type) == VOID_TYPE)
3961 {
3962 annotate_with_node (gnu_result, gnat_node);
3963
3964 if (Present (Condition (gnat_node)))
3965 gnu_result = build3 (COND_EXPR, void_type_node,
3966 gnat_to_gnu (Condition (gnat_node)),
3967 gnu_result, alloc_stmt_list ());
3968 }
3969 else
3970 gnu_result = build1 (NULL_EXPR, gnu_result_type, gnu_result);
3971 break;
3972
3973 case N_Validate_Unchecked_Conversion:
3974 /* If the result is a pointer type, see if we are either converting
3975 from a non-pointer or from a pointer to a type with a different
3976 alias set and warn if so. If the result defined in the same unit as
3977 this unchecked convertion, we can allow this because we can know to
3978 make that type have alias set 0. */
3979 {
3980 tree gnu_source_type = gnat_to_gnu_type (Source_Type (gnat_node));
3981 tree gnu_target_type = gnat_to_gnu_type (Target_Type (gnat_node));
3982
3983 if (POINTER_TYPE_P (gnu_target_type)
3984 && !In_Same_Source_Unit (Target_Type (gnat_node), gnat_node)
3985 && get_alias_set (TREE_TYPE (gnu_target_type)) != 0
3986 && !No_Strict_Aliasing (Underlying_Type (Target_Type (gnat_node)))
3987 && (!POINTER_TYPE_P (gnu_source_type)
3988 || (get_alias_set (TREE_TYPE (gnu_source_type))
3989 != get_alias_set (TREE_TYPE (gnu_target_type)))))
3990 {
3991 post_error_ne
3992 ("?possible aliasing problem for type&",
3993 gnat_node, Target_Type (gnat_node));
3994 post_error
3995 ("\\?use -fno-strict-aliasing switch for references",
3996 gnat_node);
3997 post_error_ne
3998 ("\\?or use `pragma No_Strict_Aliasing (&);`",
3999 gnat_node, Target_Type (gnat_node));
4000 }
4001 }
4002 gnu_result = alloc_stmt_list ();
4003 break;
4004
4005 case N_Raise_Statement:
4006 case N_Function_Specification:
4007 case N_Procedure_Specification:
4008 case N_Op_Concat:
4009 case N_Component_Association:
4010 case N_Task_Body:
4011 default:
4012 gcc_assert (type_annotate_only);
4013 gnu_result = alloc_stmt_list ();
4014 }
4015
4016 /* If we pushed our level as part of processing the elaboration routine,
4017 pop it back now. */
4018 if (went_into_elab_proc)
4019 {
4020 add_stmt (gnu_result);
4021 gnat_poplevel ();
4022 gnu_result = end_stmt_group ();
4023 current_function_decl = NULL_TREE;
4024 }
4025
4026 /* Set the location information into the result. If we're supposed to
4027 return something of void_type, it means we have something we're
4028 elaborating for effect, so just return. */
4029 if (EXPR_P (gnu_result))
4030 annotate_with_node (gnu_result, gnat_node);
4031
4032 if (TREE_CODE (gnu_result_type) == VOID_TYPE)
4033 return gnu_result;
4034
4035 /* If the result is a constant that overflows, raise constraint error. */
4036 else if (TREE_CODE (gnu_result) == INTEGER_CST
4037 && TREE_CONSTANT_OVERFLOW (gnu_result))
4038 {
4039 post_error ("Constraint_Error will be raised at run-time?", gnat_node);
4040
4041 gnu_result
4042 = build1 (NULL_EXPR, gnu_result_type,
4043 build_call_raise (CE_Overflow_Check_Failed));
4044 }
4045
4046 /* If our result has side-effects and is of an unconstrained type,
4047 make a SAVE_EXPR so that we can be sure it will only be referenced
4048 once. Note we must do this before any conversions. */
4049 if (TREE_SIDE_EFFECTS (gnu_result)
4050 && (TREE_CODE (gnu_result_type) == UNCONSTRAINED_ARRAY_TYPE
4051 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE (gnu_result_type))))
4052 gnu_result = gnat_stabilize_reference (gnu_result, 0);
4053
4054 /* Now convert the result to the proper type. If the type is void or if
4055 we have no result, return error_mark_node to show we have no result.
4056 If the type of the result is correct or if we have a label (which doesn't
4057 have any well-defined type), return our result. Also don't do the
4058 conversion if the "desired" type involves a PLACEHOLDER_EXPR in its size
4059 since those are the cases where the front end may have the type wrong due
4060 to "instantiating" the unconstrained record with discriminant values
4061 or if this is a FIELD_DECL. If this is the Name of an assignment
4062 statement or a parameter of a procedure call, return what we have since
4063 the RHS has to be converted to our type there in that case, unless
4064 GNU_RESULT_TYPE has a simpler size. Similarly, if the two types are
4065 record types with the same name, the expression type has integral mode,
4066 and GNU_RESULT_TYPE BLKmode, don't convert. This will be the case when
4067 we are converting from a packable type to its actual type and we need
4068 those conversions to be NOPs in order for assignments into these types to
4069 work properly if the inner object is a bitfield and hence can't have
4070 its address taken. Finally, don't convert integral types that are the
4071 operand of an unchecked conversion since we need to ignore those
4072 conversions (for 'Valid). Otherwise, convert the result to the proper
4073 type. */
4074
4075 if (Present (Parent (gnat_node))
4076 && ((Nkind (Parent (gnat_node)) == N_Assignment_Statement
4077 && Name (Parent (gnat_node)) == gnat_node)
4078 || (Nkind (Parent (gnat_node)) == N_Procedure_Call_Statement
4079 && Name (Parent (gnat_node)) != gnat_node)
4080 || (Nkind (Parent (gnat_node)) == N_Unchecked_Type_Conversion
4081 && !AGGREGATE_TYPE_P (gnu_result_type)
4082 && !AGGREGATE_TYPE_P (TREE_TYPE (gnu_result)))
4083 || Nkind (Parent (gnat_node)) == N_Parameter_Association)
4084 && !(TYPE_SIZE (gnu_result_type)
4085 && TYPE_SIZE (TREE_TYPE (gnu_result))
4086 && (AGGREGATE_TYPE_P (gnu_result_type)
4087 == AGGREGATE_TYPE_P (TREE_TYPE (gnu_result)))
4088 && ((TREE_CODE (TYPE_SIZE (gnu_result_type)) == INTEGER_CST
4089 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (gnu_result)))
4090 != INTEGER_CST))
4091 || (TREE_CODE (TYPE_SIZE (gnu_result_type)) != INTEGER_CST
4092 && !CONTAINS_PLACEHOLDER_P (TYPE_SIZE (gnu_result_type))
4093 && (CONTAINS_PLACEHOLDER_P
4094 (TYPE_SIZE (TREE_TYPE (gnu_result))))))
4095 && !(TREE_CODE (gnu_result_type) == RECORD_TYPE
4096 && TYPE_JUSTIFIED_MODULAR_P (gnu_result_type))))
4097 {
4098 /* In this case remove padding only if the inner object is of
4099 self-referential size: in that case it must be an object of
4100 unconstrained type with a default discriminant. In other cases,
4101 we want to avoid copying too much data. */
4102 if (TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
4103 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_result))
4104 && CONTAINS_PLACEHOLDER_P (TYPE_SIZE
4105 (TREE_TYPE (TYPE_FIELDS
4106 (TREE_TYPE (gnu_result))))))
4107 gnu_result = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_result))),
4108 gnu_result);
4109 }
4110
4111 else if (TREE_CODE (gnu_result) == LABEL_DECL
4112 || TREE_CODE (gnu_result) == FIELD_DECL
4113 || TREE_CODE (gnu_result) == ERROR_MARK
4114 || (TYPE_SIZE (gnu_result_type)
4115 && TREE_CODE (TYPE_SIZE (gnu_result_type)) != INTEGER_CST
4116 && TREE_CODE (gnu_result) != INDIRECT_REF
4117 && CONTAINS_PLACEHOLDER_P (TYPE_SIZE (gnu_result_type)))
4118 || ((TYPE_NAME (gnu_result_type)
4119 == TYPE_NAME (TREE_TYPE (gnu_result)))
4120 && TREE_CODE (gnu_result_type) == RECORD_TYPE
4121 && TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
4122 && TYPE_MODE (gnu_result_type) == BLKmode
4123 && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (gnu_result)))
4124 == MODE_INT)))
4125 {
4126 /* Remove any padding record, but do nothing more in this case. */
4127 if (TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
4128 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_result)))
4129 gnu_result = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_result))),
4130 gnu_result);
4131 }
4132
4133 else if (gnu_result == error_mark_node
4134 || gnu_result_type == void_type_node)
4135 gnu_result = error_mark_node;
4136 else if (gnu_result_type != TREE_TYPE (gnu_result))
4137 gnu_result = convert (gnu_result_type, gnu_result);
4138
4139 /* We don't need any NOP_EXPR or NON_LVALUE_EXPR on GNU_RESULT. */
4140 while ((TREE_CODE (gnu_result) == NOP_EXPR
4141 || TREE_CODE (gnu_result) == NON_LVALUE_EXPR)
4142 && TREE_TYPE (TREE_OPERAND (gnu_result, 0)) == TREE_TYPE (gnu_result))
4143 gnu_result = TREE_OPERAND (gnu_result, 0);
4144
4145 return gnu_result;
4146 }
4147 \f
4148 /* Record the current code position in GNAT_NODE. */
4149
4150 static void
4151 record_code_position (Node_Id gnat_node)
4152 {
4153 tree stmt_stmt = build1 (STMT_STMT, void_type_node, NULL_TREE);
4154
4155 add_stmt_with_node (stmt_stmt, gnat_node);
4156 save_gnu_tree (gnat_node, stmt_stmt, true);
4157 }
4158
4159 /* Insert the code for GNAT_NODE at the position saved for that node. */
4160
4161 static void
4162 insert_code_for (Node_Id gnat_node)
4163 {
4164 STMT_STMT_STMT (get_gnu_tree (gnat_node)) = gnat_to_gnu (gnat_node);
4165 save_gnu_tree (gnat_node, NULL_TREE, true);
4166 }
4167 \f
4168 /* Start a new statement group chained to the previous group. */
4169
4170 static void
4171 start_stmt_group ()
4172 {
4173 struct stmt_group *group = stmt_group_free_list;
4174
4175 /* First see if we can get one from the free list. */
4176 if (group)
4177 stmt_group_free_list = group->previous;
4178 else
4179 group = (struct stmt_group *) ggc_alloc (sizeof (struct stmt_group));
4180
4181 group->previous = current_stmt_group;
4182 group->stmt_list = group->block = group->cleanups = NULL_TREE;
4183 current_stmt_group = group;
4184 }
4185
4186 /* Add GNU_STMT to the current statement group. */
4187
4188 void
4189 add_stmt (tree gnu_stmt)
4190 {
4191 append_to_statement_list (gnu_stmt, &current_stmt_group->stmt_list);
4192
4193 /* If we're at top level, show everything in here is in use in case
4194 any of it is shared by a subprogram. */
4195 if (global_bindings_p ())
4196 walk_tree (&gnu_stmt, mark_visited, NULL, NULL);
4197
4198 }
4199
4200 /* Similar, but set the location of GNU_STMT to that of GNAT_NODE. */
4201
4202 void
4203 add_stmt_with_node (tree gnu_stmt, Node_Id gnat_node)
4204 {
4205 if (Present (gnat_node))
4206 annotate_with_node (gnu_stmt, gnat_node);
4207 add_stmt (gnu_stmt);
4208 }
4209
4210 /* Add a declaration statement for GNU_DECL to the current statement group.
4211 Get SLOC from Entity_Id. */
4212
4213 void
4214 add_decl_expr (tree gnu_decl, Entity_Id gnat_entity)
4215 {
4216 tree gnu_stmt;
4217
4218 /* If this is a variable that Gigi is to ignore, we may have been given
4219 an ERROR_MARK. So test for it. We also might have been given a
4220 reference for a renaming. So only do something for a decl. Also
4221 ignore a TYPE_DECL for an UNCONSTRAINED_ARRAY_TYPE. */
4222 if (!DECL_P (gnu_decl)
4223 || (TREE_CODE (gnu_decl) == TYPE_DECL
4224 && TREE_CODE (TREE_TYPE (gnu_decl)) == UNCONSTRAINED_ARRAY_TYPE))
4225 return;
4226
4227 /* If we are global, we don't want to actually output the DECL_EXPR for
4228 this decl since we already have evaluated the expressions in the
4229 sizes and positions as globals and doing it again would be wrong.
4230 But we do have to mark everything as used. */
4231 gnu_stmt = build1 (DECL_EXPR, void_type_node, gnu_decl);
4232 if (!global_bindings_p ())
4233 add_stmt_with_node (gnu_stmt, gnat_entity);
4234 else
4235 {
4236 walk_tree (&gnu_stmt, mark_visited, NULL, NULL);
4237 if (TREE_CODE (gnu_decl) == VAR_DECL
4238 || TREE_CODE (gnu_decl) == CONST_DECL)
4239 {
4240 walk_tree (&DECL_SIZE (gnu_decl), mark_visited, NULL, NULL);
4241 walk_tree (&DECL_SIZE_UNIT (gnu_decl), mark_visited, NULL, NULL);
4242 walk_tree (&DECL_INITIAL (gnu_decl), mark_visited, NULL, NULL);
4243 }
4244 }
4245
4246 /* If this is a DECL_EXPR for a variable with DECL_INITIAl set,
4247 there are two cases we need to handle here. */
4248 if (TREE_CODE (gnu_decl) == VAR_DECL && DECL_INITIAL (gnu_decl))
4249 {
4250 tree gnu_init = DECL_INITIAL (gnu_decl);
4251 tree gnu_lhs = NULL_TREE;
4252
4253 /* If this is a DECL_EXPR for a variable with DECL_INITIAL set
4254 and decl has a padded type, convert it to the unpadded type so the
4255 assignment is done properly. */
4256 if (TREE_CODE (TREE_TYPE (gnu_decl)) == RECORD_TYPE
4257 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_decl)))
4258 gnu_lhs
4259 = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_decl))), gnu_decl);
4260
4261 /* Otherwise, if this is going into memory and the initializer isn't
4262 valid for the assembler and loader. Gimplification could do this,
4263 but would be run too late if -fno-unit-at-a-time. */
4264 else if (TREE_STATIC (gnu_decl)
4265 && !initializer_constant_valid_p (gnu_init,
4266 TREE_TYPE (gnu_decl)))
4267 gnu_lhs = gnu_decl;
4268
4269 if (gnu_lhs)
4270 {
4271 tree gnu_assign_stmt
4272 = build_binary_op (MODIFY_EXPR, NULL_TREE,
4273 gnu_lhs, DECL_INITIAL (gnu_decl));
4274
4275 DECL_INITIAL (gnu_decl) = 0;
4276 TREE_READONLY (gnu_decl) = 0;
4277 annotate_with_locus (gnu_assign_stmt,
4278 DECL_SOURCE_LOCATION (gnu_decl));
4279 add_stmt (gnu_assign_stmt);
4280 }
4281 }
4282 }
4283
4284 /* Utility function to mark nodes with TREE_VISITED. Called from walk_tree.
4285 We use this to indicate all variable sizes and positions in global types
4286 may not be shared by any subprogram. */
4287
4288 static tree
4289 mark_visited (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4290 {
4291 if (TREE_VISITED (*tp))
4292 *walk_subtrees = 0;
4293
4294 /* Don't mark a dummy type as visited because we want to mark its sizes
4295 and fields once it's filled in. */
4296 else if (!TYPE_IS_DUMMY_P (*tp))
4297 TREE_VISITED (*tp) = 1;
4298
4299 return NULL_TREE;
4300 }
4301
4302 /* Likewise, but to mark as unvisited. */
4303
4304 static tree
4305 mark_unvisited (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4306 void *data ATTRIBUTE_UNUSED)
4307 {
4308 TREE_VISITED (*tp) = 0;
4309
4310 return NULL_TREE;
4311 }
4312
4313 /* Add GNU_CLEANUP, a cleanup action, to the current code group. */
4314
4315 static void
4316 add_cleanup (tree gnu_cleanup)
4317 {
4318 append_to_statement_list (gnu_cleanup, &current_stmt_group->cleanups);
4319 }
4320
4321 /* Set the BLOCK node corresponding to the current code group to GNU_BLOCK. */
4322
4323 void
4324 set_block_for_group (tree gnu_block)
4325 {
4326 gcc_assert (!current_stmt_group->block);
4327 current_stmt_group->block = gnu_block;
4328 }
4329
4330 /* Return code corresponding to the current code group. It is normally
4331 a STATEMENT_LIST, but may also be a BIND_EXPR or TRY_FINALLY_EXPR if
4332 BLOCK or cleanups were set. */
4333
4334 static tree
4335 end_stmt_group ()
4336 {
4337 struct stmt_group *group = current_stmt_group;
4338 tree gnu_retval = group->stmt_list;
4339
4340 /* If this is a null list, allocate a new STATEMENT_LIST. Then, if there
4341 are cleanups, make a TRY_FINALLY_EXPR. Last, if there is a BLOCK,
4342 make a BIND_EXPR. Note that we nest in that because the cleanup may
4343 reference variables in the block. */
4344 if (gnu_retval == NULL_TREE)
4345 gnu_retval = alloc_stmt_list ();
4346
4347 if (group->cleanups)
4348 gnu_retval = build2 (TRY_FINALLY_EXPR, void_type_node, gnu_retval,
4349 group->cleanups);
4350
4351 if (current_stmt_group->block)
4352 gnu_retval = build3 (BIND_EXPR, void_type_node, BLOCK_VARS (group->block),
4353 gnu_retval, group->block);
4354
4355 /* Remove this group from the stack and add it to the free list. */
4356 current_stmt_group = group->previous;
4357 group->previous = stmt_group_free_list;
4358 stmt_group_free_list = group;
4359
4360 return gnu_retval;
4361 }
4362
4363 /* Add a list of statements from GNAT_LIST, a possibly-empty list of
4364 statements.*/
4365
4366 static void
4367 add_stmt_list (List_Id gnat_list)
4368 {
4369 Node_Id gnat_node;
4370
4371 if (Present (gnat_list))
4372 for (gnat_node = First (gnat_list); Present (gnat_node);
4373 gnat_node = Next (gnat_node))
4374 add_stmt (gnat_to_gnu (gnat_node));
4375 }
4376
4377 /* Build a tree from GNAT_LIST, a possibly-empty list of statements.
4378 If BINDING_P is true, push and pop a binding level around the list. */
4379
4380 static tree
4381 build_stmt_group (List_Id gnat_list, bool binding_p)
4382 {
4383 start_stmt_group ();
4384 if (binding_p)
4385 gnat_pushlevel ();
4386
4387 add_stmt_list (gnat_list);
4388 if (binding_p)
4389 gnat_poplevel ();
4390
4391 return end_stmt_group ();
4392 }
4393 \f
4394 /* Push and pop routines for stacks. We keep a free list around so we
4395 don't waste tree nodes. */
4396
4397 static void
4398 push_stack (tree *gnu_stack_ptr, tree gnu_purpose, tree gnu_value)
4399 {
4400 tree gnu_node = gnu_stack_free_list;
4401
4402 if (gnu_node)
4403 {
4404 gnu_stack_free_list = TREE_CHAIN (gnu_node);
4405 TREE_CHAIN (gnu_node) = *gnu_stack_ptr;
4406 TREE_PURPOSE (gnu_node) = gnu_purpose;
4407 TREE_VALUE (gnu_node) = gnu_value;
4408 }
4409 else
4410 gnu_node = tree_cons (gnu_purpose, gnu_value, *gnu_stack_ptr);
4411
4412 *gnu_stack_ptr = gnu_node;
4413 }
4414
4415 static void
4416 pop_stack (tree *gnu_stack_ptr)
4417 {
4418 tree gnu_node = *gnu_stack_ptr;
4419
4420 *gnu_stack_ptr = TREE_CHAIN (gnu_node);
4421 TREE_CHAIN (gnu_node) = gnu_stack_free_list;
4422 gnu_stack_free_list = gnu_node;
4423 }
4424 \f
4425 /* GNU_STMT is a statement. We generate code for that statement. */
4426
4427 void
4428 gnat_expand_stmt (tree gnu_stmt)
4429 {
4430 #if 0
4431 tree gnu_elmt, gnu_elmt_2;
4432 #endif
4433
4434 switch (TREE_CODE (gnu_stmt))
4435 {
4436 #if 0
4437 case USE_STMT:
4438 /* First write a volatile ASM_INPUT to prevent anything from being
4439 moved. */
4440 gnu_elmt = gen_rtx_ASM_INPUT (VOIDmode, "");
4441 MEM_VOLATILE_P (gnu_elmt) = 1;
4442 emit_insn (gnu_elmt);
4443
4444 gnu_elmt = expand_expr (TREE_OPERAND (gnu_stmt, 0), NULL_RTX, VOIDmode,
4445 modifier);
4446 emit_insn (gen_rtx_USE (VOIDmode, ));
4447 return target;
4448 #endif
4449
4450 default:
4451 gcc_unreachable ();
4452 }
4453 }
4454 \f
4455 /* Generate GIMPLE in place for the expression at *EXPR_P. */
4456
4457 int
4458 gnat_gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p ATTRIBUTE_UNUSED)
4459 {
4460 tree expr = *expr_p;
4461
4462 if (IS_ADA_STMT (expr))
4463 return gnat_gimplify_stmt (expr_p);
4464
4465 switch (TREE_CODE (expr))
4466 {
4467 case NULL_EXPR:
4468 /* If this is for a scalar, just make a VAR_DECL for it. If for
4469 an aggregate, get a null pointer of the appropriate type and
4470 dereference it. */
4471 if (AGGREGATE_TYPE_P (TREE_TYPE (expr)))
4472 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (expr),
4473 convert (build_pointer_type (TREE_TYPE (expr)),
4474 integer_zero_node));
4475 else
4476 {
4477 *expr_p = create_tmp_var (TREE_TYPE (expr), NULL);
4478 TREE_NO_WARNING (*expr_p) = 1;
4479 }
4480
4481 append_to_statement_list (TREE_OPERAND (expr, 0), pre_p);
4482 return GS_OK;
4483
4484 case UNCONSTRAINED_ARRAY_REF:
4485 /* We should only do this if we are just elaborating for side-effects,
4486 but we can't know that yet. */
4487 *expr_p = TREE_OPERAND (*expr_p, 0);
4488 return GS_OK;
4489
4490 case ADDR_EXPR:
4491 /* If we're taking the address of a constant CONSTRUCTOR, force it to
4492 be put into static memory. We know it's going to be readonly given
4493 the semantics we have and it's required to be static memory in
4494 the case when the reference is in an elaboration procedure. */
4495 if (TREE_CODE (TREE_OPERAND (expr, 0)) == CONSTRUCTOR
4496 && TREE_CONSTANT (TREE_OPERAND (expr, 0)))
4497 {
4498 tree new_var
4499 = create_tmp_var (TREE_TYPE (TREE_OPERAND (expr, 0)), "C");
4500
4501 TREE_READONLY (new_var) = 1;
4502 TREE_STATIC (new_var) = 1;
4503 TREE_ADDRESSABLE (new_var) = 1;
4504 DECL_INITIAL (new_var) = TREE_OPERAND (expr, 0);
4505
4506 TREE_OPERAND (expr, 0) = new_var;
4507 return GS_ALL_DONE;
4508 }
4509 return GS_UNHANDLED;
4510
4511 case COMPONENT_REF:
4512 /* We have a kludge here. If the FIELD_DECL is from a fat pointer and is
4513 from an early dummy type, replace it with the proper FIELD_DECL. */
4514 if (TYPE_FAT_POINTER_P (TREE_TYPE (TREE_OPERAND (*expr_p, 0)))
4515 && DECL_ORIGINAL_FIELD (TREE_OPERAND (*expr_p, 1)))
4516 {
4517 TREE_OPERAND (*expr_p, 1)
4518 = DECL_ORIGINAL_FIELD (TREE_OPERAND (*expr_p, 1));
4519 return GS_OK;
4520 }
4521
4522 /* ... fall through ... */
4523
4524 default:
4525 return GS_UNHANDLED;
4526 }
4527 }
4528
4529 /* Generate GIMPLE in place for the statement at *STMT_P. */
4530
4531 static enum gimplify_status
4532 gnat_gimplify_stmt (tree *stmt_p)
4533 {
4534 tree stmt = *stmt_p;
4535
4536 switch (TREE_CODE (stmt))
4537 {
4538 case STMT_STMT:
4539 *stmt_p = STMT_STMT_STMT (stmt);
4540 return GS_OK;
4541
4542 case USE_STMT:
4543 *stmt_p = NULL_TREE;
4544 return GS_ALL_DONE;
4545
4546 case LOOP_STMT:
4547 {
4548 tree gnu_start_label = create_artificial_label ();
4549 tree gnu_end_label = LOOP_STMT_LABEL (stmt);
4550
4551 /* Set to emit the statements of the loop. */
4552 *stmt_p = NULL_TREE;
4553
4554 /* We first emit the start label and then a conditional jump to
4555 the end label if there's a top condition, then the body of the
4556 loop, then a conditional branch to the end label, then the update,
4557 if any, and finally a jump to the start label and the definition
4558 of the end label. */
4559 append_to_statement_list (build1 (LABEL_EXPR, void_type_node,
4560 gnu_start_label),
4561 stmt_p);
4562
4563 if (LOOP_STMT_TOP_COND (stmt))
4564 append_to_statement_list (build3 (COND_EXPR, void_type_node,
4565 LOOP_STMT_TOP_COND (stmt),
4566 alloc_stmt_list (),
4567 build1 (GOTO_EXPR,
4568 void_type_node,
4569 gnu_end_label)),
4570 stmt_p);
4571
4572 append_to_statement_list (LOOP_STMT_BODY (stmt), stmt_p);
4573
4574 if (LOOP_STMT_BOT_COND (stmt))
4575 append_to_statement_list (build3 (COND_EXPR, void_type_node,
4576 LOOP_STMT_BOT_COND (stmt),
4577 alloc_stmt_list (),
4578 build1 (GOTO_EXPR,
4579 void_type_node,
4580 gnu_end_label)),
4581 stmt_p);
4582
4583 if (LOOP_STMT_UPDATE (stmt))
4584 append_to_statement_list (LOOP_STMT_UPDATE (stmt), stmt_p);
4585
4586 append_to_statement_list (build1 (GOTO_EXPR, void_type_node,
4587 gnu_start_label),
4588 stmt_p);
4589 append_to_statement_list (build1 (LABEL_EXPR, void_type_node,
4590 gnu_end_label),
4591 stmt_p);
4592 return GS_OK;
4593 }
4594
4595 case EXIT_STMT:
4596 /* Build a statement to jump to the corresponding end label, then
4597 see if it needs to be conditional. */
4598 *stmt_p = build1 (GOTO_EXPR, void_type_node, EXIT_STMT_LABEL (stmt));
4599 if (EXIT_STMT_COND (stmt))
4600 *stmt_p = build3 (COND_EXPR, void_type_node,
4601 EXIT_STMT_COND (stmt), *stmt_p, alloc_stmt_list ());
4602 return GS_OK;
4603
4604 default:
4605 gcc_unreachable ();
4606 }
4607 }
4608 \f
4609 /* Force references to each of the entities in packages GNAT_NODE with's
4610 so that the debugging information for all of them are identical
4611 in all clients. Operate recursively on anything it with's, but check
4612 that we aren't elaborating something more than once. */
4613
4614 /* The reason for this routine's existence is two-fold.
4615 First, with some debugging formats, notably MDEBUG on SGI
4616 IRIX, the linker will remove duplicate debugging information if two
4617 clients have identical debugguing information. With the normal scheme
4618 of elaboration, this does not usually occur, since entities in with'ed
4619 packages are elaborated on demand, and if clients have different usage
4620 patterns, the normal case, then the order and selection of entities
4621 will differ. In most cases however, it seems that linkers do not know
4622 how to eliminate duplicate debugging information, even if it is
4623 identical, so the use of this routine would increase the total amount
4624 of debugging information in the final executable.
4625
4626 Second, this routine is called in type_annotate mode, to compute DDA
4627 information for types in withed units, for ASIS use */
4628
4629 static void
4630 elaborate_all_entities (Node_Id gnat_node)
4631 {
4632 Entity_Id gnat_with_clause, gnat_entity;
4633
4634 /* Process each unit only once. As we trace the context of all relevant
4635 units transitively, including generic bodies, we may encounter the
4636 same generic unit repeatedly */
4637
4638 if (!present_gnu_tree (gnat_node))
4639 save_gnu_tree (gnat_node, integer_zero_node, true);
4640
4641 /* Save entities in all context units. A body may have an implicit_with
4642 on its own spec, if the context includes a child unit, so don't save
4643 the spec twice. */
4644
4645 for (gnat_with_clause = First (Context_Items (gnat_node));
4646 Present (gnat_with_clause);
4647 gnat_with_clause = Next (gnat_with_clause))
4648 if (Nkind (gnat_with_clause) == N_With_Clause
4649 && !present_gnu_tree (Library_Unit (gnat_with_clause))
4650 && Library_Unit (gnat_with_clause) != Library_Unit (Cunit (Main_Unit)))
4651 {
4652 elaborate_all_entities (Library_Unit (gnat_with_clause));
4653
4654 if (Ekind (Entity (Name (gnat_with_clause))) == E_Package)
4655 {
4656 for (gnat_entity = First_Entity (Entity (Name (gnat_with_clause)));
4657 Present (gnat_entity);
4658 gnat_entity = Next_Entity (gnat_entity))
4659 if (Is_Public (gnat_entity)
4660 && Convention (gnat_entity) != Convention_Intrinsic
4661 && Ekind (gnat_entity) != E_Package
4662 && Ekind (gnat_entity) != E_Package_Body
4663 && Ekind (gnat_entity) != E_Operator
4664 && !(IN (Ekind (gnat_entity), Type_Kind)
4665 && !Is_Frozen (gnat_entity))
4666 && !((Ekind (gnat_entity) == E_Procedure
4667 || Ekind (gnat_entity) == E_Function)
4668 && Is_Intrinsic_Subprogram (gnat_entity))
4669 && !IN (Ekind (gnat_entity), Named_Kind)
4670 && !IN (Ekind (gnat_entity), Generic_Unit_Kind))
4671 gnat_to_gnu_entity (gnat_entity, NULL_TREE, 0);
4672 }
4673 else if (Ekind (Entity (Name (gnat_with_clause))) == E_Generic_Package)
4674 {
4675 Node_Id gnat_body
4676 = Corresponding_Body (Unit (Library_Unit (gnat_with_clause)));
4677
4678 /* Retrieve compilation unit node of generic body. */
4679 while (Present (gnat_body)
4680 && Nkind (gnat_body) != N_Compilation_Unit)
4681 gnat_body = Parent (gnat_body);
4682
4683 /* If body is available, elaborate its context. */
4684 if (Present (gnat_body))
4685 elaborate_all_entities (gnat_body);
4686 }
4687 }
4688
4689 if (Nkind (Unit (gnat_node)) == N_Package_Body && type_annotate_only)
4690 elaborate_all_entities (Library_Unit (gnat_node));
4691 }
4692 \f
4693 /* Do the processing of N_Freeze_Entity, GNAT_NODE. */
4694
4695 static void
4696 process_freeze_entity (Node_Id gnat_node)
4697 {
4698 Entity_Id gnat_entity = Entity (gnat_node);
4699 tree gnu_old;
4700 tree gnu_new;
4701 tree gnu_init
4702 = (Nkind (Declaration_Node (gnat_entity)) == N_Object_Declaration
4703 && present_gnu_tree (Declaration_Node (gnat_entity)))
4704 ? get_gnu_tree (Declaration_Node (gnat_entity)) : NULL_TREE;
4705
4706 /* If this is a package, need to generate code for the package. */
4707 if (Ekind (gnat_entity) == E_Package)
4708 {
4709 insert_code_for
4710 (Parent (Corresponding_Body
4711 (Parent (Declaration_Node (gnat_entity)))));
4712 return;
4713 }
4714
4715 /* Check for old definition after the above call. This Freeze_Node
4716 might be for one its Itypes. */
4717 gnu_old
4718 = present_gnu_tree (gnat_entity) ? get_gnu_tree (gnat_entity) : 0;
4719
4720 /* If this entity has an Address representation clause, GNU_OLD is the
4721 address, so discard it here. */
4722 if (Present (Address_Clause (gnat_entity)))
4723 gnu_old = 0;
4724
4725 /* Don't do anything for class-wide types they are always
4726 transformed into their root type. */
4727 if (Ekind (gnat_entity) == E_Class_Wide_Type
4728 || (Ekind (gnat_entity) == E_Class_Wide_Subtype
4729 && Present (Equivalent_Type (gnat_entity))))
4730 return;
4731
4732 /* Don't do anything for subprograms that may have been elaborated before
4733 their freeze nodes. This can happen, for example because of an inner call
4734 in an instance body. */
4735 if (gnu_old
4736 && TREE_CODE (gnu_old) == FUNCTION_DECL
4737 && (Ekind (gnat_entity) == E_Function
4738 || Ekind (gnat_entity) == E_Procedure))
4739 return;
4740
4741 /* If we have a non-dummy type old tree, we have nothing to do. Unless
4742 this is the public view of a private type whose full view was not
4743 delayed, this node was never delayed as it should have been.
4744 Also allow this to happen for concurrent types since we may have
4745 frozen both the Corresponding_Record_Type and this type. */
4746 if (gnu_old
4747 && !(TREE_CODE (gnu_old) == TYPE_DECL
4748 && TYPE_IS_DUMMY_P (TREE_TYPE (gnu_old))))
4749 {
4750 gcc_assert ((IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
4751 && Present (Full_View (gnat_entity))
4752 && No (Freeze_Node (Full_View (gnat_entity))))
4753 || Is_Concurrent_Type (gnat_entity));
4754 return;
4755 }
4756
4757 /* Reset the saved tree, if any, and elaborate the object or type for real.
4758 If there is a full declaration, elaborate it and copy the type to
4759 GNAT_ENTITY. Likewise if this is the record subtype corresponding to
4760 a class wide type or subtype. */
4761 if (gnu_old)
4762 {
4763 save_gnu_tree (gnat_entity, NULL_TREE, false);
4764 if (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
4765 && Present (Full_View (gnat_entity))
4766 && present_gnu_tree (Full_View (gnat_entity)))
4767 save_gnu_tree (Full_View (gnat_entity), NULL_TREE, false);
4768 if (Present (Class_Wide_Type (gnat_entity))
4769 && Class_Wide_Type (gnat_entity) != gnat_entity)
4770 save_gnu_tree (Class_Wide_Type (gnat_entity), NULL_TREE, false);
4771 }
4772
4773 if (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
4774 && Present (Full_View (gnat_entity)))
4775 {
4776 gnu_new = gnat_to_gnu_entity (Full_View (gnat_entity), NULL_TREE, 1);
4777
4778 /* The above call may have defined this entity (the simplest example
4779 of this is when we have a private enumeral type since the bounds
4780 will have the public view. */
4781 if (!present_gnu_tree (gnat_entity))
4782 save_gnu_tree (gnat_entity, gnu_new, false);
4783 if (Present (Class_Wide_Type (gnat_entity))
4784 && Class_Wide_Type (gnat_entity) != gnat_entity)
4785 save_gnu_tree (Class_Wide_Type (gnat_entity), gnu_new, false);
4786 }
4787 else
4788 gnu_new = gnat_to_gnu_entity (gnat_entity, gnu_init, 1);
4789
4790 /* If we've made any pointers to the old version of this type, we
4791 have to update them. */
4792 if (gnu_old)
4793 update_pointer_to (TYPE_MAIN_VARIANT (TREE_TYPE (gnu_old)),
4794 TREE_TYPE (gnu_new));
4795 }
4796 \f
4797 /* Process the list of inlined subprograms of GNAT_NODE, which is an
4798 N_Compilation_Unit. */
4799
4800 static void
4801 process_inlined_subprograms (Node_Id gnat_node)
4802 {
4803 Entity_Id gnat_entity;
4804 Node_Id gnat_body;
4805
4806 /* If we can inline, generate RTL for all the inlined subprograms.
4807 Define the entity first so we set DECL_EXTERNAL. */
4808 if (optimize > 0 && !flag_no_inline)
4809 for (gnat_entity = First_Inlined_Subprogram (gnat_node);
4810 Present (gnat_entity);
4811 gnat_entity = Next_Inlined_Subprogram (gnat_entity))
4812 {
4813 gnat_body = Parent (Declaration_Node (gnat_entity));
4814
4815 if (Nkind (gnat_body) != N_Subprogram_Body)
4816 {
4817 /* ??? This really should always be Present. */
4818 if (No (Corresponding_Body (gnat_body)))
4819 continue;
4820
4821 gnat_body
4822 = Parent (Declaration_Node (Corresponding_Body (gnat_body)));
4823 }
4824
4825 if (Present (gnat_body))
4826 {
4827 gnat_to_gnu_entity (gnat_entity, NULL_TREE, 0);
4828 add_stmt (gnat_to_gnu (gnat_body));
4829 }
4830 }
4831 }
4832 \f
4833 /* Elaborate decls in the lists GNAT_DECLS and GNAT_DECLS2, if present.
4834 We make two passes, one to elaborate anything other than bodies (but
4835 we declare a function if there was no spec). The second pass
4836 elaborates the bodies.
4837
4838 GNAT_END_LIST gives the element in the list past the end. Normally,
4839 this is Empty, but can be First_Real_Statement for a
4840 Handled_Sequence_Of_Statements.
4841
4842 We make a complete pass through both lists if PASS1P is true, then make
4843 the second pass over both lists if PASS2P is true. The lists usually
4844 correspond to the public and private parts of a package. */
4845
4846 static void
4847 process_decls (List_Id gnat_decls, List_Id gnat_decls2,
4848 Node_Id gnat_end_list, bool pass1p, bool pass2p)
4849 {
4850 List_Id gnat_decl_array[2];
4851 Node_Id gnat_decl;
4852 int i;
4853
4854 gnat_decl_array[0] = gnat_decls, gnat_decl_array[1] = gnat_decls2;
4855
4856 if (pass1p)
4857 for (i = 0; i <= 1; i++)
4858 if (Present (gnat_decl_array[i]))
4859 for (gnat_decl = First (gnat_decl_array[i]);
4860 gnat_decl != gnat_end_list; gnat_decl = Next (gnat_decl))
4861 {
4862 /* For package specs, we recurse inside the declarations,
4863 thus taking the two pass approach inside the boundary. */
4864 if (Nkind (gnat_decl) == N_Package_Declaration
4865 && (Nkind (Specification (gnat_decl)
4866 == N_Package_Specification)))
4867 process_decls (Visible_Declarations (Specification (gnat_decl)),
4868 Private_Declarations (Specification (gnat_decl)),
4869 Empty, true, false);
4870
4871 /* Similarly for any declarations in the actions of a
4872 freeze node. */
4873 else if (Nkind (gnat_decl) == N_Freeze_Entity)
4874 {
4875 process_freeze_entity (gnat_decl);
4876 process_decls (Actions (gnat_decl), Empty, Empty, true, false);
4877 }
4878
4879 /* Package bodies with freeze nodes get their elaboration deferred
4880 until the freeze node, but the code must be placed in the right
4881 place, so record the code position now. */
4882 else if (Nkind (gnat_decl) == N_Package_Body
4883 && Present (Freeze_Node (Corresponding_Spec (gnat_decl))))
4884 record_code_position (gnat_decl);
4885
4886 else if (Nkind (gnat_decl) == N_Package_Body_Stub
4887 && Present (Library_Unit (gnat_decl))
4888 && Present (Freeze_Node
4889 (Corresponding_Spec
4890 (Proper_Body (Unit
4891 (Library_Unit (gnat_decl)))))))
4892 record_code_position
4893 (Proper_Body (Unit (Library_Unit (gnat_decl))));
4894
4895 /* We defer most subprogram bodies to the second pass. */
4896 else if (Nkind (gnat_decl) == N_Subprogram_Body)
4897 {
4898 if (Acts_As_Spec (gnat_decl))
4899 {
4900 Node_Id gnat_subprog_id = Defining_Entity (gnat_decl);
4901
4902 if (Ekind (gnat_subprog_id) != E_Generic_Procedure
4903 && Ekind (gnat_subprog_id) != E_Generic_Function)
4904 gnat_to_gnu_entity (gnat_subprog_id, NULL_TREE, 1);
4905 }
4906 }
4907 /* For bodies and stubs that act as their own specs, the entity
4908 itself must be elaborated in the first pass, because it may
4909 be used in other declarations. */
4910 else if (Nkind (gnat_decl) == N_Subprogram_Body_Stub)
4911 {
4912 Node_Id gnat_subprog_id =
4913 Defining_Entity (Specification (gnat_decl));
4914
4915 if (Ekind (gnat_subprog_id) != E_Subprogram_Body
4916 && Ekind (gnat_subprog_id) != E_Generic_Procedure
4917 && Ekind (gnat_subprog_id) != E_Generic_Function)
4918 gnat_to_gnu_entity (gnat_subprog_id, NULL_TREE, 1);
4919 }
4920
4921 /* Concurrent stubs stand for the corresponding subprogram bodies,
4922 which are deferred like other bodies. */
4923 else if (Nkind (gnat_decl) == N_Task_Body_Stub
4924 || Nkind (gnat_decl) == N_Protected_Body_Stub)
4925 ;
4926 else
4927 add_stmt (gnat_to_gnu (gnat_decl));
4928 }
4929
4930 /* Here we elaborate everything we deferred above except for package bodies,
4931 which are elaborated at their freeze nodes. Note that we must also
4932 go inside things (package specs and freeze nodes) the first pass did. */
4933 if (pass2p)
4934 for (i = 0; i <= 1; i++)
4935 if (Present (gnat_decl_array[i]))
4936 for (gnat_decl = First (gnat_decl_array[i]);
4937 gnat_decl != gnat_end_list; gnat_decl = Next (gnat_decl))
4938 {
4939 if (Nkind (gnat_decl) == N_Subprogram_Body
4940 || Nkind (gnat_decl) == N_Subprogram_Body_Stub
4941 || Nkind (gnat_decl) == N_Task_Body_Stub
4942 || Nkind (gnat_decl) == N_Protected_Body_Stub)
4943 add_stmt (gnat_to_gnu (gnat_decl));
4944
4945 else if (Nkind (gnat_decl) == N_Package_Declaration
4946 && (Nkind (Specification (gnat_decl)
4947 == N_Package_Specification)))
4948 process_decls (Visible_Declarations (Specification (gnat_decl)),
4949 Private_Declarations (Specification (gnat_decl)),
4950 Empty, false, true);
4951
4952 else if (Nkind (gnat_decl) == N_Freeze_Entity)
4953 process_decls (Actions (gnat_decl), Empty, Empty, false, true);
4954 }
4955 }
4956 \f
4957 /* Emit code for a range check. GNU_EXPR is the expression to be checked,
4958 GNAT_RANGE_TYPE the gnat type or subtype containing the bounds against
4959 which we have to check. */
4960
4961 static tree
4962 emit_range_check (tree gnu_expr, Entity_Id gnat_range_type)
4963 {
4964 tree gnu_range_type = get_unpadded_type (gnat_range_type);
4965 tree gnu_low = TYPE_MIN_VALUE (gnu_range_type);
4966 tree gnu_high = TYPE_MAX_VALUE (gnu_range_type);
4967 tree gnu_compare_type = get_base_type (TREE_TYPE (gnu_expr));
4968
4969 /* If GNU_EXPR has an integral type that is narrower than GNU_RANGE_TYPE,
4970 we can't do anything since we might be truncating the bounds. No
4971 check is needed in this case. */
4972 if (INTEGRAL_TYPE_P (TREE_TYPE (gnu_expr))
4973 && (TYPE_PRECISION (gnu_compare_type)
4974 < TYPE_PRECISION (get_base_type (gnu_range_type))))
4975 return gnu_expr;
4976
4977 /* Checked expressions must be evaluated only once. */
4978 gnu_expr = protect_multiple_eval (gnu_expr);
4979
4980 /* There's no good type to use here, so we might as well use
4981 integer_type_node. Note that the form of the check is
4982 (not (expr >= lo)) or (not (expr >= hi))
4983 the reason for this slightly convoluted form is that NaN's
4984 are not considered to be in range in the float case. */
4985 return emit_check
4986 (build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
4987 invert_truthvalue
4988 (build_binary_op (GE_EXPR, integer_type_node,
4989 convert (gnu_compare_type, gnu_expr),
4990 convert (gnu_compare_type, gnu_low))),
4991 invert_truthvalue
4992 (build_binary_op (LE_EXPR, integer_type_node,
4993 convert (gnu_compare_type, gnu_expr),
4994 convert (gnu_compare_type,
4995 gnu_high)))),
4996 gnu_expr, CE_Range_Check_Failed);
4997 }
4998 \f
4999 /* Emit code for an index check. GNU_ARRAY_OBJECT is the array object
5000 which we are about to index, GNU_EXPR is the index expression to be
5001 checked, GNU_LOW and GNU_HIGH are the lower and upper bounds
5002 against which GNU_EXPR has to be checked. Note that for index
5003 checking we cannot use the emit_range_check function (although very
5004 similar code needs to be generated in both cases) since for index
5005 checking the array type against which we are checking the indeces
5006 may be unconstrained and consequently we need to retrieve the
5007 actual index bounds from the array object itself
5008 (GNU_ARRAY_OBJECT). The place where we need to do that is in
5009 subprograms having unconstrained array formal parameters */
5010
5011 static tree
5012 emit_index_check (tree gnu_array_object,
5013 tree gnu_expr,
5014 tree gnu_low,
5015 tree gnu_high)
5016 {
5017 tree gnu_expr_check;
5018
5019 /* Checked expressions must be evaluated only once. */
5020 gnu_expr = protect_multiple_eval (gnu_expr);
5021
5022 /* Must do this computation in the base type in case the expression's
5023 type is an unsigned subtypes. */
5024 gnu_expr_check = convert (get_base_type (TREE_TYPE (gnu_expr)), gnu_expr);
5025
5026 /* If GNU_LOW or GNU_HIGH are a PLACEHOLDER_EXPR, qualify them by
5027 the object we are handling. */
5028 gnu_low = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_low, gnu_array_object);
5029 gnu_high = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_high, gnu_array_object);
5030
5031 /* There's no good type to use here, so we might as well use
5032 integer_type_node. */
5033 return emit_check
5034 (build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
5035 build_binary_op (LT_EXPR, integer_type_node,
5036 gnu_expr_check,
5037 convert (TREE_TYPE (gnu_expr_check),
5038 gnu_low)),
5039 build_binary_op (GT_EXPR, integer_type_node,
5040 gnu_expr_check,
5041 convert (TREE_TYPE (gnu_expr_check),
5042 gnu_high))),
5043 gnu_expr, CE_Index_Check_Failed);
5044 }
5045 \f
5046 /* GNU_COND contains the condition corresponding to an access, discriminant or
5047 range check of value GNU_EXPR. Build a COND_EXPR that returns GNU_EXPR if
5048 GNU_COND is false and raises a CONSTRAINT_ERROR if GNU_COND is true.
5049 REASON is the code that says why the exception was raised. */
5050
5051 static tree
5052 emit_check (tree gnu_cond, tree gnu_expr, int reason)
5053 {
5054 tree gnu_call;
5055 tree gnu_result;
5056
5057 gnu_call = build_call_raise (reason);
5058
5059 /* Use an outer COMPOUND_EXPR to make sure that GNU_EXPR will get evaluated
5060 in front of the comparison in case it ends up being a SAVE_EXPR. Put the
5061 whole thing inside its own SAVE_EXPR so the inner SAVE_EXPR doesn't leak
5062 out. */
5063 gnu_result = fold (build3 (COND_EXPR, TREE_TYPE (gnu_expr), gnu_cond,
5064 build2 (COMPOUND_EXPR, TREE_TYPE (gnu_expr),
5065 gnu_call, gnu_expr),
5066 gnu_expr));
5067
5068 /* If GNU_EXPR has side effects, make the outer COMPOUND_EXPR and
5069 protect it. Otherwise, show GNU_RESULT has no side effects: we
5070 don't need to evaluate it just for the check. */
5071 if (TREE_SIDE_EFFECTS (gnu_expr))
5072 gnu_result
5073 = build2 (COMPOUND_EXPR, TREE_TYPE (gnu_expr), gnu_expr, gnu_result);
5074 else
5075 TREE_SIDE_EFFECTS (gnu_result) = 0;
5076
5077 /* ??? Unfortunately, if we don't put a SAVE_EXPR around this whole thing,
5078 we will repeatedly do the test. It would be nice if GCC was able
5079 to optimize this and only do it once. */
5080 return save_expr (gnu_result);
5081 }
5082 \f
5083 /* Return an expression that converts GNU_EXPR to GNAT_TYPE, doing
5084 overflow checks if OVERFLOW_P is nonzero and range checks if
5085 RANGE_P is nonzero. GNAT_TYPE is known to be an integral type.
5086 If TRUNCATE_P is nonzero, do a float to integer conversion with
5087 truncation; otherwise round. */
5088
5089 static tree
5090 convert_with_check (Entity_Id gnat_type, tree gnu_expr, bool overflowp,
5091 bool rangep, bool truncatep)
5092 {
5093 tree gnu_type = get_unpadded_type (gnat_type);
5094 tree gnu_in_type = TREE_TYPE (gnu_expr);
5095 tree gnu_in_basetype = get_base_type (gnu_in_type);
5096 tree gnu_base_type = get_base_type (gnu_type);
5097 tree gnu_ada_base_type = get_ada_base_type (gnu_type);
5098 tree gnu_result = gnu_expr;
5099
5100 /* If we are not doing any checks, the output is an integral type, and
5101 the input is not a floating type, just do the conversion. This
5102 shortcut is required to avoid problems with packed array types
5103 and simplifies code in all cases anyway. */
5104 if (!rangep && !overflowp && INTEGRAL_TYPE_P (gnu_base_type)
5105 && !FLOAT_TYPE_P (gnu_in_type))
5106 return convert (gnu_type, gnu_expr);
5107
5108 /* First convert the expression to its base type. This
5109 will never generate code, but makes the tests below much simpler.
5110 But don't do this if converting from an integer type to an unconstrained
5111 array type since then we need to get the bounds from the original
5112 (unpacked) type. */
5113 if (TREE_CODE (gnu_type) != UNCONSTRAINED_ARRAY_TYPE)
5114 gnu_result = convert (gnu_in_basetype, gnu_result);
5115
5116 /* If overflow checks are requested, we need to be sure the result will
5117 fit in the output base type. But don't do this if the input
5118 is integer and the output floating-point. */
5119 if (overflowp
5120 && !(FLOAT_TYPE_P (gnu_base_type) && INTEGRAL_TYPE_P (gnu_in_basetype)))
5121 {
5122 /* Ensure GNU_EXPR only gets evaluated once. */
5123 tree gnu_input = protect_multiple_eval (gnu_result);
5124 tree gnu_cond = integer_zero_node;
5125 tree gnu_in_lb = TYPE_MIN_VALUE (gnu_in_basetype);
5126 tree gnu_in_ub = TYPE_MAX_VALUE (gnu_in_basetype);
5127 tree gnu_out_lb = TYPE_MIN_VALUE (gnu_base_type);
5128 tree gnu_out_ub = TYPE_MAX_VALUE (gnu_base_type);
5129
5130 /* Convert the lower bounds to signed types, so we're sure we're
5131 comparing them properly. Likewise, convert the upper bounds
5132 to unsigned types. */
5133 if (INTEGRAL_TYPE_P (gnu_in_basetype) && TYPE_UNSIGNED (gnu_in_basetype))
5134 gnu_in_lb = convert (gnat_signed_type (gnu_in_basetype), gnu_in_lb);
5135
5136 if (INTEGRAL_TYPE_P (gnu_in_basetype)
5137 && !TYPE_UNSIGNED (gnu_in_basetype))
5138 gnu_in_ub = convert (gnat_unsigned_type (gnu_in_basetype), gnu_in_ub);
5139
5140 if (INTEGRAL_TYPE_P (gnu_base_type) && TYPE_UNSIGNED (gnu_base_type))
5141 gnu_out_lb = convert (gnat_signed_type (gnu_base_type), gnu_out_lb);
5142
5143 if (INTEGRAL_TYPE_P (gnu_base_type) && !TYPE_UNSIGNED (gnu_base_type))
5144 gnu_out_ub = convert (gnat_unsigned_type (gnu_base_type), gnu_out_ub);
5145
5146 /* Check each bound separately and only if the result bound
5147 is tighter than the bound on the input type. Note that all the
5148 types are base types, so the bounds must be constant. Also,
5149 the comparison is done in the base type of the input, which
5150 always has the proper signedness. First check for input
5151 integer (which means output integer), output float (which means
5152 both float), or mixed, in which case we always compare.
5153 Note that we have to do the comparison which would *fail* in the
5154 case of an error since if it's an FP comparison and one of the
5155 values is a NaN or Inf, the comparison will fail. */
5156 if (INTEGRAL_TYPE_P (gnu_in_basetype)
5157 ? tree_int_cst_lt (gnu_in_lb, gnu_out_lb)
5158 : (FLOAT_TYPE_P (gnu_base_type)
5159 ? REAL_VALUES_LESS (TREE_REAL_CST (gnu_in_lb),
5160 TREE_REAL_CST (gnu_out_lb))
5161 : 1))
5162 gnu_cond
5163 = invert_truthvalue
5164 (build_binary_op (GE_EXPR, integer_type_node,
5165 gnu_input, convert (gnu_in_basetype,
5166 gnu_out_lb)));
5167
5168 if (INTEGRAL_TYPE_P (gnu_in_basetype)
5169 ? tree_int_cst_lt (gnu_out_ub, gnu_in_ub)
5170 : (FLOAT_TYPE_P (gnu_base_type)
5171 ? REAL_VALUES_LESS (TREE_REAL_CST (gnu_out_ub),
5172 TREE_REAL_CST (gnu_in_lb))
5173 : 1))
5174 gnu_cond
5175 = build_binary_op (TRUTH_ORIF_EXPR, integer_type_node, gnu_cond,
5176 invert_truthvalue
5177 (build_binary_op (LE_EXPR, integer_type_node,
5178 gnu_input,
5179 convert (gnu_in_basetype,
5180 gnu_out_ub))));
5181
5182 if (!integer_zerop (gnu_cond))
5183 gnu_result = emit_check (gnu_cond, gnu_input,
5184 CE_Overflow_Check_Failed);
5185 }
5186
5187 /* Now convert to the result base type. If this is a non-truncating
5188 float-to-integer conversion, round. */
5189 if (INTEGRAL_TYPE_P (gnu_ada_base_type) && FLOAT_TYPE_P (gnu_in_basetype)
5190 && !truncatep)
5191 {
5192 tree gnu_point_5 = build_real (gnu_in_basetype, dconstp5);
5193 tree gnu_minus_point_5 = build_real (gnu_in_basetype, dconstmp5);
5194 tree gnu_zero = convert (gnu_in_basetype, integer_zero_node);
5195 tree gnu_saved_result = save_expr (gnu_result);
5196 tree gnu_comp = build2 (GE_EXPR, integer_type_node,
5197 gnu_saved_result, gnu_zero);
5198 tree gnu_adjust = build3 (COND_EXPR, gnu_in_basetype, gnu_comp,
5199 gnu_point_5, gnu_minus_point_5);
5200
5201 gnu_result
5202 = build2 (PLUS_EXPR, gnu_in_basetype, gnu_saved_result, gnu_adjust);
5203 }
5204
5205 if (TREE_CODE (gnu_ada_base_type) == INTEGER_TYPE
5206 && TYPE_HAS_ACTUAL_BOUNDS_P (gnu_ada_base_type)
5207 && TREE_CODE (gnu_result) == UNCONSTRAINED_ARRAY_REF)
5208 gnu_result = unchecked_convert (gnu_ada_base_type, gnu_result, false);
5209 else
5210 gnu_result = convert (gnu_ada_base_type, gnu_result);
5211
5212 /* Finally, do the range check if requested. Note that if the
5213 result type is a modular type, the range check is actually
5214 an overflow check. */
5215
5216 if (rangep
5217 || (TREE_CODE (gnu_base_type) == INTEGER_TYPE
5218 && TYPE_MODULAR_P (gnu_base_type) && overflowp))
5219 gnu_result = emit_range_check (gnu_result, gnat_type);
5220
5221 return convert (gnu_type, gnu_result);
5222 }
5223 \f
5224 /* Return 1 if GNU_EXPR can be directly addressed. This is the case unless
5225 it is an expression involving computation or if it involves a bitfield
5226 reference. This returns the same as gnat_mark_addressable in most
5227 cases. */
5228
5229 static bool
5230 addressable_p (tree gnu_expr)
5231 {
5232 switch (TREE_CODE (gnu_expr))
5233 {
5234 case VAR_DECL:
5235 case PARM_DECL:
5236 case FUNCTION_DECL:
5237 case RESULT_DECL:
5238 /* All DECLs are addressable: if they are in a register, we can force
5239 them to memory. */
5240 return true;
5241
5242 case UNCONSTRAINED_ARRAY_REF:
5243 case INDIRECT_REF:
5244 case CONSTRUCTOR:
5245 case NULL_EXPR:
5246 case SAVE_EXPR:
5247 return true;
5248
5249 case COMPONENT_REF:
5250 return (!DECL_BIT_FIELD (TREE_OPERAND (gnu_expr, 1))
5251 && (!DECL_NONADDRESSABLE_P (TREE_OPERAND (gnu_expr, 1))
5252 || !flag_strict_aliasing)
5253 && addressable_p (TREE_OPERAND (gnu_expr, 0)));
5254
5255 case ARRAY_REF: case ARRAY_RANGE_REF:
5256 case REALPART_EXPR: case IMAGPART_EXPR:
5257 case NOP_EXPR:
5258 return addressable_p (TREE_OPERAND (gnu_expr, 0));
5259
5260 case CONVERT_EXPR:
5261 return (AGGREGATE_TYPE_P (TREE_TYPE (gnu_expr))
5262 && addressable_p (TREE_OPERAND (gnu_expr, 0)));
5263
5264 case VIEW_CONVERT_EXPR:
5265 {
5266 /* This is addressable if we can avoid a copy. */
5267 tree type = TREE_TYPE (gnu_expr);
5268 tree inner_type = TREE_TYPE (TREE_OPERAND (gnu_expr, 0));
5269
5270 return (((TYPE_MODE (type) == TYPE_MODE (inner_type)
5271 && (TYPE_ALIGN (type) <= TYPE_ALIGN (inner_type)
5272 || TYPE_ALIGN (inner_type) >= BIGGEST_ALIGNMENT))
5273 || ((TYPE_MODE (type) == BLKmode
5274 || TYPE_MODE (inner_type) == BLKmode)
5275 && (TYPE_ALIGN (type) <= TYPE_ALIGN (inner_type)
5276 || TYPE_ALIGN (inner_type) >= BIGGEST_ALIGNMENT
5277 || TYPE_ALIGN_OK (type)
5278 || TYPE_ALIGN_OK (inner_type))))
5279 && addressable_p (TREE_OPERAND (gnu_expr, 0)));
5280 }
5281
5282 default:
5283 return false;
5284 }
5285 }
5286 \f
5287 /* Do the processing for the declaration of a GNAT_ENTITY, a type. If
5288 a separate Freeze node exists, delay the bulk of the processing. Otherwise
5289 make a GCC type for GNAT_ENTITY and set up the correspondance. */
5290
5291 void
5292 process_type (Entity_Id gnat_entity)
5293 {
5294 tree gnu_old
5295 = present_gnu_tree (gnat_entity) ? get_gnu_tree (gnat_entity) : 0;
5296 tree gnu_new;
5297
5298 /* If we are to delay elaboration of this type, just do any
5299 elaborations needed for expressions within the declaration and
5300 make a dummy type entry for this node and its Full_View (if
5301 any) in case something points to it. Don't do this if it
5302 has already been done (the only way that can happen is if
5303 the private completion is also delayed). */
5304 if (Present (Freeze_Node (gnat_entity))
5305 || (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
5306 && Present (Full_View (gnat_entity))
5307 && Freeze_Node (Full_View (gnat_entity))
5308 && !present_gnu_tree (Full_View (gnat_entity))))
5309 {
5310 elaborate_entity (gnat_entity);
5311
5312 if (!gnu_old)
5313 {
5314 tree gnu_decl = create_type_decl (get_entity_name (gnat_entity),
5315 make_dummy_type (gnat_entity),
5316 NULL, false, false, gnat_entity);
5317
5318 save_gnu_tree (gnat_entity, gnu_decl, false);
5319 if (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
5320 && Present (Full_View (gnat_entity)))
5321 save_gnu_tree (Full_View (gnat_entity), gnu_decl, false);
5322 }
5323
5324 return;
5325 }
5326
5327 /* If we saved away a dummy type for this node it means that this
5328 made the type that corresponds to the full type of an incomplete
5329 type. Clear that type for now and then update the type in the
5330 pointers. */
5331 if (gnu_old)
5332 {
5333 if (TREE_CODE (gnu_old) != TYPE_DECL
5334 || !TYPE_IS_DUMMY_P (TREE_TYPE (gnu_old)))
5335 {
5336 /* If this was a withed access type, this is not an error
5337 and merely indicates we've already elaborated the type
5338 already. */
5339 gcc_assert (Is_Type (gnat_entity) && From_With_Type (gnat_entity));
5340 return;
5341 }
5342
5343 save_gnu_tree (gnat_entity, NULL_TREE, false);
5344 }
5345
5346 /* Now fully elaborate the type. */
5347 gnu_new = gnat_to_gnu_entity (gnat_entity, NULL_TREE, 1);
5348 gcc_assert (TREE_CODE (gnu_new) == TYPE_DECL);
5349
5350 /* If we have an old type and we've made pointers to this type,
5351 update those pointers. */
5352 if (gnu_old)
5353 update_pointer_to (TYPE_MAIN_VARIANT (TREE_TYPE (gnu_old)),
5354 TREE_TYPE (gnu_new));
5355
5356 /* If this is a record type corresponding to a task or protected type
5357 that is a completion of an incomplete type, perform a similar update
5358 on the type. */
5359 /* ??? Including protected types here is a guess. */
5360
5361 if (IN (Ekind (gnat_entity), Record_Kind)
5362 && Is_Concurrent_Record_Type (gnat_entity)
5363 && present_gnu_tree (Corresponding_Concurrent_Type (gnat_entity)))
5364 {
5365 tree gnu_task_old
5366 = get_gnu_tree (Corresponding_Concurrent_Type (gnat_entity));
5367
5368 save_gnu_tree (Corresponding_Concurrent_Type (gnat_entity),
5369 NULL_TREE, false);
5370 save_gnu_tree (Corresponding_Concurrent_Type (gnat_entity),
5371 gnu_new, false);
5372
5373 update_pointer_to (TYPE_MAIN_VARIANT (TREE_TYPE (gnu_task_old)),
5374 TREE_TYPE (gnu_new));
5375 }
5376 }
5377 \f
5378 /* GNAT_ASSOC is the front of the Component_Associations of an N_Aggregate.
5379 GNU_TYPE is the GCC type of the corresponding record.
5380
5381 Return a CONSTRUCTOR to build the record. */
5382
5383 static tree
5384 assoc_to_constructor (Node_Id gnat_assoc, tree gnu_type)
5385 {
5386 tree gnu_list, gnu_result;
5387
5388 /* We test for GNU_FIELD being empty in the case where a variant
5389 was the last thing since we don't take things off GNAT_ASSOC in
5390 that case. We check GNAT_ASSOC in case we have a variant, but it
5391 has no fields. */
5392
5393 for (gnu_list = NULL_TREE; Present (gnat_assoc);
5394 gnat_assoc = Next (gnat_assoc))
5395 {
5396 Node_Id gnat_field = First (Choices (gnat_assoc));
5397 tree gnu_field = gnat_to_gnu_entity (Entity (gnat_field), NULL_TREE, 0);
5398 tree gnu_expr = gnat_to_gnu (Expression (gnat_assoc));
5399
5400 /* The expander is supposed to put a single component selector name
5401 in every record component association */
5402 gcc_assert (No (Next (gnat_field)));
5403
5404 /* Before assigning a value in an aggregate make sure range checks
5405 are done if required. Then convert to the type of the field. */
5406 if (Do_Range_Check (Expression (gnat_assoc)))
5407 gnu_expr = emit_range_check (gnu_expr, Etype (gnat_field));
5408
5409 gnu_expr = convert (TREE_TYPE (gnu_field), gnu_expr);
5410
5411 /* Add the field and expression to the list. */
5412 gnu_list = tree_cons (gnu_field, gnu_expr, gnu_list);
5413 }
5414
5415 gnu_result = extract_values (gnu_list, gnu_type);
5416
5417 #ifdef ENABLE_CHECKING
5418 {
5419 tree gnu_field;
5420
5421 /* Verify every enty in GNU_LIST was used. */
5422 for (gnu_field = gnu_list; gnu_field; gnu_field = TREE_CHAIN (gnu_field))
5423 gcc_assert (TREE_ADDRESSABLE (gnu_field));
5424 }
5425 #endif
5426
5427 return gnu_result;
5428 }
5429
5430 /* Builds a possibly nested constructor for array aggregates. GNAT_EXPR
5431 is the first element of an array aggregate. It may itself be an
5432 aggregate (an array or record aggregate). GNU_ARRAY_TYPE is the gnu type
5433 corresponding to the array aggregate. GNAT_COMPONENT_TYPE is the type
5434 of the array component. It is needed for range checking. */
5435
5436 static tree
5437 pos_to_constructor (Node_Id gnat_expr, tree gnu_array_type,
5438 Entity_Id gnat_component_type)
5439 {
5440 tree gnu_expr_list = NULL_TREE;
5441 tree gnu_index = TYPE_MIN_VALUE (TYPE_DOMAIN (gnu_array_type));
5442 tree gnu_expr;
5443
5444 for ( ; Present (gnat_expr); gnat_expr = Next (gnat_expr))
5445 {
5446 /* If the expression is itself an array aggregate then first build the
5447 innermost constructor if it is part of our array (multi-dimensional
5448 case). */
5449
5450 if (Nkind (gnat_expr) == N_Aggregate
5451 && TREE_CODE (TREE_TYPE (gnu_array_type)) == ARRAY_TYPE
5452 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_array_type)))
5453 gnu_expr = pos_to_constructor (First (Expressions (gnat_expr)),
5454 TREE_TYPE (gnu_array_type),
5455 gnat_component_type);
5456 else
5457 {
5458 gnu_expr = gnat_to_gnu (gnat_expr);
5459
5460 /* before assigning the element to the array make sure it is
5461 in range */
5462 if (Do_Range_Check (gnat_expr))
5463 gnu_expr = emit_range_check (gnu_expr, gnat_component_type);
5464 }
5465
5466 gnu_expr_list
5467 = tree_cons (gnu_index, convert (TREE_TYPE (gnu_array_type), gnu_expr),
5468 gnu_expr_list);
5469
5470 gnu_index = int_const_binop (PLUS_EXPR, gnu_index, integer_one_node, 0);
5471 }
5472
5473 return gnat_build_constructor (gnu_array_type, nreverse (gnu_expr_list));
5474 }
5475 \f
5476 /* Subroutine of assoc_to_constructor: VALUES is a list of field associations,
5477 some of which are from RECORD_TYPE. Return a CONSTRUCTOR consisting
5478 of the associations that are from RECORD_TYPE. If we see an internal
5479 record, make a recursive call to fill it in as well. */
5480
5481 static tree
5482 extract_values (tree values, tree record_type)
5483 {
5484 tree result = NULL_TREE;
5485 tree field, tem;
5486
5487 for (field = TYPE_FIELDS (record_type); field; field = TREE_CHAIN (field))
5488 {
5489 tree value = 0;
5490
5491 /* _Parent is an internal field, but may have values in the aggregate,
5492 so check for values first. */
5493 if ((tem = purpose_member (field, values)))
5494 {
5495 value = TREE_VALUE (tem);
5496 TREE_ADDRESSABLE (tem) = 1;
5497 }
5498
5499 else if (DECL_INTERNAL_P (field))
5500 {
5501 value = extract_values (values, TREE_TYPE (field));
5502 if (TREE_CODE (value) == CONSTRUCTOR && !CONSTRUCTOR_ELTS (value))
5503 value = 0;
5504 }
5505 else
5506 /* If we have a record subtype, the names will match, but not the
5507 actual FIELD_DECLs. */
5508 for (tem = values; tem; tem = TREE_CHAIN (tem))
5509 if (DECL_NAME (TREE_PURPOSE (tem)) == DECL_NAME (field))
5510 {
5511 value = convert (TREE_TYPE (field), TREE_VALUE (tem));
5512 TREE_ADDRESSABLE (tem) = 1;
5513 }
5514
5515 if (!value)
5516 continue;
5517
5518 result = tree_cons (field, value, result);
5519 }
5520
5521 return gnat_build_constructor (record_type, nreverse (result));
5522 }
5523 \f
5524 /* EXP is to be treated as an array or record. Handle the cases when it is
5525 an access object and perform the required dereferences. */
5526
5527 static tree
5528 maybe_implicit_deref (tree exp)
5529 {
5530 /* If the type is a pointer, dereference it. */
5531
5532 if (POINTER_TYPE_P (TREE_TYPE (exp)) || TYPE_FAT_POINTER_P (TREE_TYPE (exp)))
5533 exp = build_unary_op (INDIRECT_REF, NULL_TREE, exp);
5534
5535 /* If we got a padded type, remove it too. */
5536 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
5537 && TYPE_IS_PADDING_P (TREE_TYPE (exp)))
5538 exp = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (exp))), exp);
5539
5540 return exp;
5541 }
5542 \f
5543 /* Protect EXP from multiple evaluation. This may make a SAVE_EXPR. */
5544
5545 tree
5546 protect_multiple_eval (tree exp)
5547 {
5548 tree type = TREE_TYPE (exp);
5549
5550 /* If this has no side effects, we don't need to do anything. */
5551 if (!TREE_SIDE_EFFECTS (exp))
5552 return exp;
5553
5554 /* If it is a conversion, protect what's inside the conversion.
5555 Similarly, if we're indirectly referencing something, we only
5556 actually need to protect the address since the data itself can't
5557 change in these situations. */
5558 else if (TREE_CODE (exp) == NON_LVALUE_EXPR
5559 || TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
5560 || TREE_CODE (exp) == VIEW_CONVERT_EXPR
5561 || TREE_CODE (exp) == INDIRECT_REF
5562 || TREE_CODE (exp) == UNCONSTRAINED_ARRAY_REF)
5563 return build1 (TREE_CODE (exp), type,
5564 protect_multiple_eval (TREE_OPERAND (exp, 0)));
5565
5566 /* If EXP is a fat pointer or something that can be placed into a register,
5567 just make a SAVE_EXPR. */
5568 if (TYPE_FAT_POINTER_P (type) || TYPE_MODE (type) != BLKmode)
5569 return save_expr (exp);
5570
5571 /* Otherwise, dereference, protect the address, and re-reference. */
5572 else
5573 return
5574 build_unary_op (INDIRECT_REF, type,
5575 save_expr (build_unary_op (ADDR_EXPR,
5576 build_reference_type (type),
5577 exp)));
5578 }
5579 \f
5580 /* This is equivalent to stabilize_reference in GCC's tree.c, but we know
5581 how to handle our new nodes and we take an extra argument that says
5582 whether to force evaluation of everything. */
5583
5584 tree
5585 gnat_stabilize_reference (tree ref, bool force)
5586 {
5587 tree type = TREE_TYPE (ref);
5588 enum tree_code code = TREE_CODE (ref);
5589 tree result;
5590
5591 switch (code)
5592 {
5593 case VAR_DECL:
5594 case PARM_DECL:
5595 case RESULT_DECL:
5596 /* No action is needed in this case. */
5597 return ref;
5598
5599 case NOP_EXPR:
5600 case CONVERT_EXPR:
5601 case FLOAT_EXPR:
5602 case FIX_TRUNC_EXPR:
5603 case FIX_FLOOR_EXPR:
5604 case FIX_ROUND_EXPR:
5605 case FIX_CEIL_EXPR:
5606 case VIEW_CONVERT_EXPR:
5607 case ADDR_EXPR:
5608 result
5609 = build1 (code, type,
5610 gnat_stabilize_reference (TREE_OPERAND (ref, 0), force));
5611 break;
5612
5613 case INDIRECT_REF:
5614 case UNCONSTRAINED_ARRAY_REF:
5615 result = build1 (code, type,
5616 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 0),
5617 force));
5618 break;
5619
5620 case COMPONENT_REF:
5621 result = build3 (COMPONENT_REF, type,
5622 gnat_stabilize_reference (TREE_OPERAND (ref, 0),
5623 force),
5624 TREE_OPERAND (ref, 1), NULL_TREE);
5625 break;
5626
5627 case BIT_FIELD_REF:
5628 result = build3 (BIT_FIELD_REF, type,
5629 gnat_stabilize_reference (TREE_OPERAND (ref, 0), force),
5630 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
5631 force),
5632 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 2),
5633 force));
5634 break;
5635
5636 case ARRAY_REF:
5637 case ARRAY_RANGE_REF:
5638 result = build4 (code, type,
5639 gnat_stabilize_reference (TREE_OPERAND (ref, 0), force),
5640 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
5641 force),
5642 NULL_TREE, NULL_TREE);
5643 break;
5644
5645 case COMPOUND_EXPR:
5646 result = build2 (COMPOUND_EXPR, type,
5647 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 0),
5648 force),
5649 gnat_stabilize_reference (TREE_OPERAND (ref, 1),
5650 force));
5651 break;
5652
5653 /* If arg isn't a kind of lvalue we recognize, make no change.
5654 Caller should recognize the error for an invalid lvalue. */
5655 default:
5656 return ref;
5657
5658 case ERROR_MARK:
5659 return error_mark_node;
5660 }
5661
5662 TREE_READONLY (result) = TREE_READONLY (ref);
5663
5664 /* TREE_THIS_VOLATILE and TREE_SIDE_EFFECTS attached to the initial
5665 expression may not be sustained across some paths, such as the way via
5666 build1 for INDIRECT_REF. We re-populate those flags here for the general
5667 case, which is consistent with the GCC version of this routine.
5668
5669 Special care should be taken regarding TREE_SIDE_EFFECTS, because some
5670 paths introduce side effects where there was none initially (e.g. calls
5671 to save_expr), and we also want to keep track of that. */
5672
5673 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
5674 TREE_SIDE_EFFECTS (result) |= TREE_SIDE_EFFECTS (ref);
5675
5676 return result;
5677 }
5678
5679 /* Similar to stabilize_reference_1 in tree.c, but supports an extra
5680 arg to force a SAVE_EXPR for everything. */
5681
5682 static tree
5683 gnat_stabilize_reference_1 (tree e, bool force)
5684 {
5685 enum tree_code code = TREE_CODE (e);
5686 tree type = TREE_TYPE (e);
5687 tree result;
5688
5689 /* We cannot ignore const expressions because it might be a reference
5690 to a const array but whose index contains side-effects. But we can
5691 ignore things that are actual constant or that already have been
5692 handled by this function. */
5693
5694 if (TREE_CONSTANT (e) || code == SAVE_EXPR)
5695 return e;
5696
5697 switch (TREE_CODE_CLASS (code))
5698 {
5699 case tcc_exceptional:
5700 case tcc_type:
5701 case tcc_declaration:
5702 case tcc_comparison:
5703 case tcc_statement:
5704 case tcc_expression:
5705 case tcc_reference:
5706 /* If this is a COMPONENT_REF of a fat pointer, save the entire
5707 fat pointer. This may be more efficient, but will also allow
5708 us to more easily find the match for the PLACEHOLDER_EXPR. */
5709 if (code == COMPONENT_REF
5710 && TYPE_FAT_POINTER_P (TREE_TYPE (TREE_OPERAND (e, 0))))
5711 result = build3 (COMPONENT_REF, type,
5712 gnat_stabilize_reference_1 (TREE_OPERAND (e, 0),
5713 force),
5714 TREE_OPERAND (e, 1), TREE_OPERAND (e, 2));
5715 else if (TREE_SIDE_EFFECTS (e) || force)
5716 return save_expr (e);
5717 else
5718 return e;
5719 break;
5720
5721 case tcc_constant:
5722 /* Constants need no processing. In fact, we should never reach
5723 here. */
5724 return e;
5725
5726 case tcc_binary:
5727 /* Recursively stabilize each operand. */
5728 result = build2 (code, type,
5729 gnat_stabilize_reference_1 (TREE_OPERAND (e, 0), force),
5730 gnat_stabilize_reference_1 (TREE_OPERAND (e, 1),
5731 force));
5732 break;
5733
5734 case tcc_unary:
5735 /* Recursively stabilize each operand. */
5736 result = build1 (code, type,
5737 gnat_stabilize_reference_1 (TREE_OPERAND (e, 0),
5738 force));
5739 break;
5740
5741 default:
5742 gcc_unreachable ();
5743 }
5744
5745 TREE_READONLY (result) = TREE_READONLY (e);
5746
5747 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
5748 TREE_SIDE_EFFECTS (result) |= TREE_SIDE_EFFECTS (e);
5749 return result;
5750 }
5751 \f
5752 extern char *__gnat_to_canonical_file_spec (char *);
5753
5754 /* Convert Sloc into *LOCUS (a location_t). Return true if this Sloc
5755 corresponds to a source code location and false if it doesn't. In the
5756 latter case, we don't update *LOCUS. We also set the Gigi global variable
5757 REF_FILENAME to the reference file name as given by sinput (i.e no
5758 directory). */
5759
5760 bool
5761 Sloc_to_locus (Source_Ptr Sloc, location_t *locus)
5762 {
5763 /* If node not from source code, ignore. */
5764 if (Sloc < 0)
5765 return false;
5766
5767 /* Use the identifier table to make a hashed, permanent copy of the filename,
5768 since the name table gets reallocated after Gigi returns but before all
5769 the debugging information is output. The __gnat_to_canonical_file_spec
5770 call translates filenames from pragmas Source_Reference that contain host
5771 style syntax not understood by gdb. */
5772 locus->file
5773 = IDENTIFIER_POINTER
5774 (get_identifier
5775 (__gnat_to_canonical_file_spec
5776 (Get_Name_String (Full_Debug_Name (Get_Source_File_Index (Sloc))))));
5777
5778 locus->line = Get_Logical_Line_Number (Sloc);
5779
5780 ref_filename
5781 = IDENTIFIER_POINTER
5782 (get_identifier
5783 (Get_Name_String (Debug_Source_Name (Get_Source_File_Index (Sloc)))));;
5784
5785 return true;
5786 }
5787
5788 /* Similar to annotate_with_locus, but start with the Sloc of GNAT_NODE and
5789 don't do anything if it doesn't correspond to a source location. */
5790
5791 static void
5792 annotate_with_node (tree node, Node_Id gnat_node)
5793 {
5794 location_t locus;
5795
5796 if (!Sloc_to_locus (Sloc (gnat_node), &locus))
5797 return;
5798
5799 annotate_with_locus (node, locus);
5800 }
5801 \f
5802 /* Post an error message. MSG is the error message, properly annotated.
5803 NODE is the node at which to post the error and the node to use for the
5804 "&" substitution. */
5805
5806 void
5807 post_error (const char *msg, Node_Id node)
5808 {
5809 String_Template temp;
5810 Fat_Pointer fp;
5811
5812 temp.Low_Bound = 1, temp.High_Bound = strlen (msg);
5813 fp.Array = msg, fp.Bounds = &temp;
5814 if (Present (node))
5815 Error_Msg_N (fp, node);
5816 }
5817
5818 /* Similar, but NODE is the node at which to post the error and ENT
5819 is the node to use for the "&" substitution. */
5820
5821 void
5822 post_error_ne (const char *msg, Node_Id node, Entity_Id ent)
5823 {
5824 String_Template temp;
5825 Fat_Pointer fp;
5826
5827 temp.Low_Bound = 1, temp.High_Bound = strlen (msg);
5828 fp.Array = msg, fp.Bounds = &temp;
5829 if (Present (node))
5830 Error_Msg_NE (fp, node, ent);
5831 }
5832
5833 /* Similar, but NODE is the node at which to post the error, ENT is the node
5834 to use for the "&" substitution, and N is the number to use for the ^. */
5835
5836 void
5837 post_error_ne_num (const char *msg, Node_Id node, Entity_Id ent, int n)
5838 {
5839 String_Template temp;
5840 Fat_Pointer fp;
5841
5842 temp.Low_Bound = 1, temp.High_Bound = strlen (msg);
5843 fp.Array = msg, fp.Bounds = &temp;
5844 Error_Msg_Uint_1 = UI_From_Int (n);
5845
5846 if (Present (node))
5847 Error_Msg_NE (fp, node, ent);
5848 }
5849 \f
5850 /* Similar to post_error_ne_num, but T is a GCC tree representing the
5851 number to write. If the tree represents a constant that fits within
5852 a host integer, the text inside curly brackets in MSG will be output
5853 (presumably including a '^'). Otherwise that text will not be output
5854 and the text inside square brackets will be output instead. */
5855
5856 void
5857 post_error_ne_tree (const char *msg, Node_Id node, Entity_Id ent, tree t)
5858 {
5859 char *newmsg = alloca (strlen (msg) + 1);
5860 String_Template temp = {1, 0};
5861 Fat_Pointer fp;
5862 char start_yes, end_yes, start_no, end_no;
5863 const char *p;
5864 char *q;
5865
5866 fp.Array = newmsg, fp.Bounds = &temp;
5867
5868 if (host_integerp (t, 1)
5869 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_INT
5870 &&
5871 compare_tree_int
5872 (t, (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_INT - 1)) - 1)) < 0
5873 #endif
5874 )
5875 {
5876 Error_Msg_Uint_1 = UI_From_Int (tree_low_cst (t, 1));
5877 start_yes = '{', end_yes = '}', start_no = '[', end_no = ']';
5878 }
5879 else
5880 start_yes = '[', end_yes = ']', start_no = '{', end_no = '}';
5881
5882 for (p = msg, q = newmsg; *p; p++)
5883 {
5884 if (*p == start_yes)
5885 for (p++; *p != end_yes; p++)
5886 *q++ = *p;
5887 else if (*p == start_no)
5888 for (p++; *p != end_no; p++)
5889 ;
5890 else
5891 *q++ = *p;
5892 }
5893
5894 *q = 0;
5895
5896 temp.High_Bound = strlen (newmsg);
5897 if (Present (node))
5898 Error_Msg_NE (fp, node, ent);
5899 }
5900
5901 /* Similar to post_error_ne_tree, except that NUM is a second
5902 integer to write in the message. */
5903
5904 void
5905 post_error_ne_tree_2 (const char *msg,
5906 Node_Id node,
5907 Entity_Id ent,
5908 tree t,
5909 int num)
5910 {
5911 Error_Msg_Uint_2 = UI_From_Int (num);
5912 post_error_ne_tree (msg, node, ent, t);
5913 }
5914
5915 /* Set the node for a second '&' in the error message. */
5916
5917 void
5918 set_second_error_entity (Entity_Id e)
5919 {
5920 Error_Msg_Node_2 = e;
5921 }
5922 \f
5923 /* Initialize the table that maps GNAT codes to GCC codes for simple
5924 binary and unary operations. */
5925
5926 void
5927 init_code_table (void)
5928 {
5929 gnu_codes[N_And_Then] = TRUTH_ANDIF_EXPR;
5930 gnu_codes[N_Or_Else] = TRUTH_ORIF_EXPR;
5931
5932 gnu_codes[N_Op_And] = TRUTH_AND_EXPR;
5933 gnu_codes[N_Op_Or] = TRUTH_OR_EXPR;
5934 gnu_codes[N_Op_Xor] = TRUTH_XOR_EXPR;
5935 gnu_codes[N_Op_Eq] = EQ_EXPR;
5936 gnu_codes[N_Op_Ne] = NE_EXPR;
5937 gnu_codes[N_Op_Lt] = LT_EXPR;
5938 gnu_codes[N_Op_Le] = LE_EXPR;
5939 gnu_codes[N_Op_Gt] = GT_EXPR;
5940 gnu_codes[N_Op_Ge] = GE_EXPR;
5941 gnu_codes[N_Op_Add] = PLUS_EXPR;
5942 gnu_codes[N_Op_Subtract] = MINUS_EXPR;
5943 gnu_codes[N_Op_Multiply] = MULT_EXPR;
5944 gnu_codes[N_Op_Mod] = FLOOR_MOD_EXPR;
5945 gnu_codes[N_Op_Rem] = TRUNC_MOD_EXPR;
5946 gnu_codes[N_Op_Minus] = NEGATE_EXPR;
5947 gnu_codes[N_Op_Abs] = ABS_EXPR;
5948 gnu_codes[N_Op_Not] = TRUTH_NOT_EXPR;
5949 gnu_codes[N_Op_Rotate_Left] = LROTATE_EXPR;
5950 gnu_codes[N_Op_Rotate_Right] = RROTATE_EXPR;
5951 gnu_codes[N_Op_Shift_Left] = LSHIFT_EXPR;
5952 gnu_codes[N_Op_Shift_Right] = RSHIFT_EXPR;
5953 gnu_codes[N_Op_Shift_Right_Arithmetic] = RSHIFT_EXPR;
5954 }
5955
5956 #include "gt-ada-trans.h"