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