gnat_rm.texi: Document new mechanism Short_Descriptor.
[gcc.git] / gcc / ada / gcc-interface / trans.c
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * T R A N S *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2008, 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, 51 Franklin Street, Fifth Floor, *
20 * Boston, MA 02110-1301, USA. *
21 * *
22 * GNAT was originally developed by the GNAT team at New York University. *
23 * Extensive contributions were provided by Ada Core Technologies Inc. *
24 * *
25 ****************************************************************************/
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "real.h"
33 #include "flags.h"
34 #include "toplev.h"
35 #include "rtl.h"
36 #include "expr.h"
37 #include "ggc.h"
38 #include "cgraph.h"
39 #include "function.h"
40 #include "except.h"
41 #include "debug.h"
42 #include "output.h"
43 #include "tree-iterator.h"
44 #include "gimple.h"
45 #include "ada.h"
46 #include "types.h"
47 #include "atree.h"
48 #include "elists.h"
49 #include "namet.h"
50 #include "nlists.h"
51 #include "snames.h"
52 #include "stringt.h"
53 #include "uintp.h"
54 #include "urealp.h"
55 #include "fe.h"
56 #include "sinfo.h"
57 #include "einfo.h"
58 #include "ada-tree.h"
59 #include "gigi.h"
60 #include "adadecode.h"
61
62 #include "dwarf2.h"
63 #include "dwarf2out.h"
64
65 /* We should avoid allocating more than ALLOCA_THRESHOLD bytes via alloca,
66 for fear of running out of stack space. If we need more, we use xmalloc
67 instead. */
68 #define ALLOCA_THRESHOLD 1000
69
70 /* Let code below know whether we are targetting VMS without need of
71 intrusive preprocessor directives. */
72 #ifndef TARGET_ABI_OPEN_VMS
73 #define TARGET_ABI_OPEN_VMS 0
74 #endif
75
76 extern char *__gnat_to_canonical_file_spec (char *);
77
78 int max_gnat_nodes;
79 int number_names;
80 int number_files;
81 struct Node *Nodes_Ptr;
82 Node_Id *Next_Node_Ptr;
83 Node_Id *Prev_Node_Ptr;
84 struct Elist_Header *Elists_Ptr;
85 struct Elmt_Item *Elmts_Ptr;
86 struct String_Entry *Strings_Ptr;
87 Char_Code *String_Chars_Ptr;
88 struct List_Header *List_Headers_Ptr;
89
90 /* Current filename without path. */
91 const char *ref_filename;
92
93 /* If true, then gigi is being called on an analyzed but unexpanded
94 tree, and the only purpose of the call is to properly annotate
95 types with representation information. */
96 bool type_annotate_only;
97
98 /* When not optimizing, we cache the 'First, 'Last and 'Length attributes
99 of unconstrained array IN parameters to avoid emitting a great deal of
100 redundant instructions to recompute them each time. */
101 struct parm_attr GTY (())
102 {
103 int id; /* GTY doesn't like Entity_Id. */
104 int dim;
105 tree first;
106 tree last;
107 tree length;
108 };
109
110 typedef struct parm_attr *parm_attr;
111
112 DEF_VEC_P(parm_attr);
113 DEF_VEC_ALLOC_P(parm_attr,gc);
114
115 struct language_function GTY(())
116 {
117 VEC(parm_attr,gc) *parm_attr_cache;
118 };
119
120 #define f_parm_attr_cache \
121 DECL_STRUCT_FUNCTION (current_function_decl)->language->parm_attr_cache
122
123 /* A structure used to gather together information about a statement group.
124 We use this to gather related statements, for example the "then" part
125 of a IF. In the case where it represents a lexical scope, we may also
126 have a BLOCK node corresponding to it and/or cleanups. */
127
128 struct stmt_group GTY((chain_next ("%h.previous"))) {
129 struct stmt_group *previous; /* Previous code group. */
130 tree stmt_list; /* List of statements for this code group. */
131 tree block; /* BLOCK for this code group, if any. */
132 tree cleanups; /* Cleanups for this code group, if any. */
133 };
134
135 static GTY(()) struct stmt_group *current_stmt_group;
136
137 /* List of unused struct stmt_group nodes. */
138 static GTY((deletable)) struct stmt_group *stmt_group_free_list;
139
140 /* A structure used to record information on elaboration procedures
141 we've made and need to process.
142
143 ??? gnat_node should be Node_Id, but gengtype gets confused. */
144
145 struct elab_info GTY((chain_next ("%h.next"))) {
146 struct elab_info *next; /* Pointer to next in chain. */
147 tree elab_proc; /* Elaboration procedure. */
148 int gnat_node; /* The N_Compilation_Unit. */
149 };
150
151 static GTY(()) struct elab_info *elab_info_list;
152
153 /* Free list of TREE_LIST nodes used for stacks. */
154 static GTY((deletable)) tree gnu_stack_free_list;
155
156 /* List of TREE_LIST nodes representing a stack of exception pointer
157 variables. TREE_VALUE is the VAR_DECL that stores the address of
158 the raised exception. Nonzero means we are in an exception
159 handler. Not used in the zero-cost case. */
160 static GTY(()) tree gnu_except_ptr_stack;
161
162 /* List of TREE_LIST nodes used to store the current elaboration procedure
163 decl. TREE_VALUE is the decl. */
164 static GTY(()) tree gnu_elab_proc_stack;
165
166 /* Variable that stores a list of labels to be used as a goto target instead of
167 a return in some functions. See processing for N_Subprogram_Body. */
168 static GTY(()) tree gnu_return_label_stack;
169
170 /* List of TREE_LIST nodes representing a stack of LOOP_STMT nodes.
171 TREE_VALUE of each entry is the label of the corresponding LOOP_STMT. */
172 static GTY(()) tree gnu_loop_label_stack;
173
174 /* List of TREE_LIST nodes representing labels for switch statements.
175 TREE_VALUE of each entry is the label at the end of the switch. */
176 static GTY(()) tree gnu_switch_label_stack;
177
178 /* List of TREE_LIST nodes containing the stacks for N_{Push,Pop}_*_Label. */
179 static GTY(()) tree gnu_constraint_error_label_stack;
180 static GTY(()) tree gnu_storage_error_label_stack;
181 static GTY(()) tree gnu_program_error_label_stack;
182
183 /* Map GNAT tree codes to GCC tree codes for simple expressions. */
184 static enum tree_code gnu_codes[Number_Node_Kinds];
185
186 /* Current node being treated, in case abort called. */
187 Node_Id error_gnat_node;
188
189 static void init_code_table (void);
190 static void Compilation_Unit_to_gnu (Node_Id);
191 static void record_code_position (Node_Id);
192 static void insert_code_for (Node_Id);
193 static void add_cleanup (tree, Node_Id);
194 static tree unshare_save_expr (tree *, int *, void *);
195 static void add_stmt_list (List_Id);
196 static void push_exception_label_stack (tree *, Entity_Id);
197 static tree build_stmt_group (List_Id, bool);
198 static void push_stack (tree *, tree, tree);
199 static void pop_stack (tree *);
200 static enum gimplify_status gnat_gimplify_stmt (tree *);
201 static void elaborate_all_entities (Node_Id);
202 static void process_freeze_entity (Node_Id);
203 static void process_inlined_subprograms (Node_Id);
204 static void process_decls (List_Id, List_Id, Node_Id, bool, bool);
205 static tree emit_range_check (tree, Node_Id);
206 static tree emit_index_check (tree, tree, tree, tree);
207 static tree emit_check (tree, tree, int);
208 static tree build_unary_op_trapv (enum tree_code, tree, tree);
209 static tree build_binary_op_trapv (enum tree_code, tree, tree, tree);
210 static tree convert_with_check (Entity_Id, tree, bool, bool, bool);
211 static bool smaller_packable_type_p (tree, tree);
212 static bool addressable_p (tree, tree);
213 static tree assoc_to_constructor (Entity_Id, Node_Id, tree);
214 static tree extract_values (tree, tree);
215 static tree pos_to_constructor (Node_Id, tree, Entity_Id);
216 static tree maybe_implicit_deref (tree);
217 static tree gnat_stabilize_reference (tree, bool);
218 static tree gnat_stabilize_reference_1 (tree, bool);
219 static void set_expr_location_from_node (tree, Node_Id);
220 static int lvalue_required_p (Node_Id, tree, int);
221
222 /* Hooks for debug info back-ends, only supported and used in a restricted set
223 of configurations. */
224 static const char *extract_encoding (const char *) ATTRIBUTE_UNUSED;
225 static const char *decode_name (const char *) ATTRIBUTE_UNUSED;
226 \f
227 /* This is the main program of the back-end. It sets up all the table
228 structures and then generates code. */
229
230 void
231 gigi (Node_Id gnat_root, int max_gnat_node, int number_name,
232 struct Node *nodes_ptr, Node_Id *next_node_ptr, Node_Id *prev_node_ptr,
233 struct Elist_Header *elists_ptr, struct Elmt_Item *elmts_ptr,
234 struct String_Entry *strings_ptr, Char_Code *string_chars_ptr,
235 struct List_Header *list_headers_ptr, Nat number_file,
236 struct File_Info_Type *file_info_ptr, Entity_Id standard_boolean,
237 Entity_Id standard_integer, Entity_Id standard_long_long_float,
238 Entity_Id standard_exception_type, Int gigi_operating_mode)
239 {
240 Entity_Id gnat_literal;
241 tree gnu_standard_long_long_float, gnu_standard_exception_type, t;
242 struct elab_info *info;
243 int i;
244
245 max_gnat_nodes = max_gnat_node;
246 number_names = number_name;
247 number_files = number_file;
248 Nodes_Ptr = nodes_ptr;
249 Next_Node_Ptr = next_node_ptr;
250 Prev_Node_Ptr = prev_node_ptr;
251 Elists_Ptr = elists_ptr;
252 Elmts_Ptr = elmts_ptr;
253 Strings_Ptr = strings_ptr;
254 String_Chars_Ptr = string_chars_ptr;
255 List_Headers_Ptr = list_headers_ptr;
256
257 type_annotate_only = (gigi_operating_mode == 1);
258
259 for (i = 0; i < number_files; i++)
260 {
261 /* Use the identifier table to make a permanent copy of the filename as
262 the name table gets reallocated after Gigi returns but before all the
263 debugging information is output. The __gnat_to_canonical_file_spec
264 call translates filenames from pragmas Source_Reference that contain
265 host style syntax not understood by gdb. */
266 const char *filename
267 = IDENTIFIER_POINTER
268 (get_identifier
269 (__gnat_to_canonical_file_spec
270 (Get_Name_String (file_info_ptr[i].File_Name))));
271
272 /* We rely on the order isomorphism between files and line maps. */
273 gcc_assert ((int) line_table->used == i);
274
275 /* We create the line map for a source file at once, with a fixed number
276 of columns chosen to avoid jumping over the next power of 2. */
277 linemap_add (line_table, LC_ENTER, 0, filename, 1);
278 linemap_line_start (line_table, file_info_ptr[i].Num_Source_Lines, 252);
279 linemap_position_for_column (line_table, 252 - 1);
280 linemap_add (line_table, LC_LEAVE, 0, NULL, 0);
281 }
282
283 /* Initialize ourselves. */
284 init_code_table ();
285 init_gnat_to_gnu ();
286 gnat_compute_largest_alignment ();
287 init_dummy_type ();
288
289 /* If we are just annotating types, give VOID_TYPE zero sizes to avoid
290 errors. */
291 if (type_annotate_only)
292 {
293 TYPE_SIZE (void_type_node) = bitsize_zero_node;
294 TYPE_SIZE_UNIT (void_type_node) = size_zero_node;
295 }
296
297 /* If the GNU type extensions to DWARF are available, setup the hooks. */
298 #if defined (DWARF2_DEBUGGING_INFO) && defined (DWARF2_GNU_TYPE_EXTENSIONS)
299 /* We condition the name demangling and the generation of type encoding
300 strings on -gdwarf+ and always set descriptive types on. */
301 if (use_gnu_debug_info_extensions)
302 {
303 dwarf2out_set_type_encoding_func (extract_encoding);
304 dwarf2out_set_demangle_name_func (decode_name);
305 }
306 dwarf2out_set_descriptive_type_func (get_parallel_type);
307 #endif
308
309 /* Enable GNAT stack checking method if needed */
310 if (!Stack_Check_Probes_On_Target)
311 set_stack_check_libfunc (gen_rtx_SYMBOL_REF (Pmode, "_gnat_stack_check"));
312
313 /* Give names and make TYPE_DECLs for common types. */
314 create_type_decl (get_identifier (SIZE_TYPE), sizetype,
315 NULL, false, true, Empty);
316 create_type_decl (get_identifier ("boolean"), boolean_type_node,
317 NULL, false, true, Empty);
318 create_type_decl (get_identifier ("integer"), integer_type_node,
319 NULL, false, true, Empty);
320 create_type_decl (get_identifier ("unsigned char"), char_type_node,
321 NULL, false, true, Empty);
322 create_type_decl (get_identifier ("long integer"), long_integer_type_node,
323 NULL, false, true, Empty);
324
325 /* Save the type we made for boolean as the type for Standard.Boolean. */
326 save_gnu_tree (Base_Type (standard_boolean), TYPE_NAME (boolean_type_node),
327 false);
328 gnat_literal = First_Literal (Base_Type (standard_boolean));
329 t = UI_To_gnu (Enumeration_Rep (gnat_literal), boolean_type_node);
330 gcc_assert (t == boolean_false_node);
331 t = create_var_decl (get_entity_name (gnat_literal), NULL_TREE,
332 boolean_type_node, t, true, false, false, false,
333 NULL, gnat_literal);
334 DECL_IGNORED_P (t) = 1;
335 save_gnu_tree (gnat_literal, t, false);
336 gnat_literal = Next_Literal (gnat_literal);
337 t = UI_To_gnu (Enumeration_Rep (gnat_literal), boolean_type_node);
338 gcc_assert (t == boolean_true_node);
339 t = create_var_decl (get_entity_name (gnat_literal), NULL_TREE,
340 boolean_type_node, t, true, false, false, false,
341 NULL, gnat_literal);
342 DECL_IGNORED_P (t) = 1;
343 save_gnu_tree (gnat_literal, t, false);
344
345 /* Save the type we made for integer as the type for Standard.Integer.
346 Then make the rest of the standard types. Note that some of these
347 may be subtypes. */
348 save_gnu_tree (Base_Type (standard_integer), TYPE_NAME (integer_type_node),
349 false);
350
351 gnu_except_ptr_stack = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
352 gnu_constraint_error_label_stack
353 = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
354 gnu_storage_error_label_stack = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
355 gnu_program_error_label_stack = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE);
356
357 gnu_standard_long_long_float
358 = gnat_to_gnu_entity (Base_Type (standard_long_long_float), NULL_TREE, 0);
359 gnu_standard_exception_type
360 = gnat_to_gnu_entity (Base_Type (standard_exception_type), NULL_TREE, 0);
361
362 init_gigi_decls (gnu_standard_long_long_float, gnu_standard_exception_type);
363
364 /* Process any Pragma Ident for the main unit. */
365 #ifdef ASM_OUTPUT_IDENT
366 if (Present (Ident_String (Main_Unit)))
367 ASM_OUTPUT_IDENT
368 (asm_out_file,
369 TREE_STRING_POINTER (gnat_to_gnu (Ident_String (Main_Unit))));
370 #endif
371
372 /* If we are using the GCC exception mechanism, let GCC know. */
373 if (Exception_Mechanism == Back_End_Exceptions)
374 gnat_init_gcc_eh ();
375
376 gcc_assert (Nkind (gnat_root) == N_Compilation_Unit);
377 start_stmt_group ();
378 Compilation_Unit_to_gnu (gnat_root);
379
380 /* Now see if we have any elaboration procedures to deal with. */
381 for (info = elab_info_list; info; info = info->next)
382 {
383 tree gnu_body = DECL_SAVED_TREE (info->elab_proc);
384
385 /* Unshare SAVE_EXPRs between subprograms. These are not unshared by
386 the gimplifier for obvious reasons, but it turns out that we need to
387 unshare them for the global level because of SAVE_EXPRs made around
388 checks for global objects and around allocators for global objects
389 of variable size, in order to prevent node sharing in the underlying
390 expression. Note that this implicitly assumes that the SAVE_EXPR
391 nodes themselves are not shared between subprograms, which would be
392 an upstream bug for which we would not change the outcome. */
393 walk_tree_without_duplicates (&gnu_body, unshare_save_expr, NULL);
394
395 /* Process the function as others, but for indicating this is an
396 elab proc, to be discarded if empty, then propagate the status
397 up to the GNAT tree node. */
398 begin_subprog_body (info->elab_proc);
399 end_subprog_body (gnu_body, true);
400
401 if (empty_body_p (gimple_body (info->elab_proc)))
402 Set_Has_No_Elaboration_Code (info->gnat_node, 1);
403 }
404
405 /* We cannot track the location of errors past this point. */
406 error_gnat_node = Empty;
407 }
408 \f
409 /* Return a positive value if an lvalue is required for GNAT_NODE.
410 GNU_TYPE is the type that will be used for GNAT_NODE in the
411 translated GNU tree. ALIASED indicates whether the underlying
412 object represented by GNAT_NODE is aliased in the Ada sense.
413
414 The function climbs up the GNAT tree starting from the node and
415 returns 1 upon encountering a node that effectively requires an
416 lvalue downstream. It returns int instead of bool to facilitate
417 usage in non purely binary logic contexts. */
418
419 static int
420 lvalue_required_p (Node_Id gnat_node, tree gnu_type, int aliased)
421 {
422 Node_Id gnat_parent = Parent (gnat_node), gnat_temp;
423
424 switch (Nkind (gnat_parent))
425 {
426 case N_Reference:
427 return 1;
428
429 case N_Attribute_Reference:
430 {
431 unsigned char id = Get_Attribute_Id (Attribute_Name (gnat_parent));
432 return id == Attr_Address
433 || id == Attr_Access
434 || id == Attr_Unchecked_Access
435 || id == Attr_Unrestricted_Access;
436 }
437
438 case N_Parameter_Association:
439 case N_Function_Call:
440 case N_Procedure_Call_Statement:
441 return (must_pass_by_ref (gnu_type) || default_pass_by_ref (gnu_type));
442
443 case N_Indexed_Component:
444 /* Only the array expression can require an lvalue. */
445 if (Prefix (gnat_parent) != gnat_node)
446 return 0;
447
448 /* ??? Consider that referencing an indexed component with a
449 non-constant index forces the whole aggregate to memory.
450 Note that N_Integer_Literal is conservative, any static
451 expression in the RM sense could probably be accepted. */
452 for (gnat_temp = First (Expressions (gnat_parent));
453 Present (gnat_temp);
454 gnat_temp = Next (gnat_temp))
455 if (Nkind (gnat_temp) != N_Integer_Literal)
456 return 1;
457
458 /* ... fall through ... */
459
460 case N_Slice:
461 /* Only the array expression can require an lvalue. */
462 if (Prefix (gnat_parent) != gnat_node)
463 return 0;
464
465 aliased |= Has_Aliased_Components (Etype (gnat_node));
466 return lvalue_required_p (gnat_parent, gnu_type, aliased);
467
468 case N_Selected_Component:
469 aliased |= Is_Aliased (Entity (Selector_Name (gnat_parent)));
470 return lvalue_required_p (gnat_parent, gnu_type, aliased);
471
472 case N_Object_Renaming_Declaration:
473 /* We need to make a real renaming only if the constant object is
474 aliased or if we may use a renaming pointer; otherwise we can
475 optimize and return the rvalue. We make an exception if the object
476 is an identifier since in this case the rvalue can be propagated
477 attached to the CONST_DECL. */
478 return (aliased != 0
479 /* This should match the constant case of the renaming code. */
480 || Is_Composite_Type (Etype (Name (gnat_parent)))
481 || Nkind (Name (gnat_parent)) == N_Identifier);
482
483 default:
484 return 0;
485 }
486
487 gcc_unreachable ();
488 }
489
490 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Identifier,
491 to a GCC tree, which is returned. GNU_RESULT_TYPE_P is a pointer
492 to where we should place the result type. */
493
494 static tree
495 Identifier_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p)
496 {
497 Node_Id gnat_temp, gnat_temp_type;
498 tree gnu_result, gnu_result_type;
499
500 /* Whether we should require an lvalue for GNAT_NODE. Needed in
501 specific circumstances only, so evaluated lazily. < 0 means
502 unknown, > 0 means known true, 0 means known false. */
503 int require_lvalue = -1;
504
505 /* If GNAT_NODE is a constant, whether we should use the initialization
506 value instead of the constant entity, typically for scalars with an
507 address clause when the parent doesn't require an lvalue. */
508 bool use_constant_initializer = false;
509
510 /* If the Etype of this node does not equal the Etype of the Entity,
511 something is wrong with the entity map, probably in generic
512 instantiation. However, this does not apply to types. Since we sometime
513 have strange Ekind's, just do this test for objects. Also, if the Etype of
514 the Entity is private, the Etype of the N_Identifier is allowed to be the
515 full type and also we consider a packed array type to be the same as the
516 original type. Similarly, a class-wide type is equivalent to a subtype of
517 itself. Finally, if the types are Itypes, one may be a copy of the other,
518 which is also legal. */
519 gnat_temp = (Nkind (gnat_node) == N_Defining_Identifier
520 ? gnat_node : Entity (gnat_node));
521 gnat_temp_type = Etype (gnat_temp);
522
523 gcc_assert (Etype (gnat_node) == gnat_temp_type
524 || (Is_Packed (gnat_temp_type)
525 && Etype (gnat_node) == Packed_Array_Type (gnat_temp_type))
526 || (Is_Class_Wide_Type (Etype (gnat_node)))
527 || (IN (Ekind (gnat_temp_type), Private_Kind)
528 && Present (Full_View (gnat_temp_type))
529 && ((Etype (gnat_node) == Full_View (gnat_temp_type))
530 || (Is_Packed (Full_View (gnat_temp_type))
531 && (Etype (gnat_node)
532 == Packed_Array_Type (Full_View
533 (gnat_temp_type))))))
534 || (Is_Itype (Etype (gnat_node)) && Is_Itype (gnat_temp_type))
535 || !(Ekind (gnat_temp) == E_Variable
536 || Ekind (gnat_temp) == E_Component
537 || Ekind (gnat_temp) == E_Constant
538 || Ekind (gnat_temp) == E_Loop_Parameter
539 || IN (Ekind (gnat_temp), Formal_Kind)));
540
541 /* If this is a reference to a deferred constant whose partial view is an
542 unconstrained private type, the proper type is on the full view of the
543 constant, not on the full view of the type, which may be unconstrained.
544
545 This may be a reference to a type, for example in the prefix of the
546 attribute Position, generated for dispatching code (see Make_DT in
547 exp_disp,adb). In that case we need the type itself, not is parent,
548 in particular if it is a derived type */
549 if (Is_Private_Type (gnat_temp_type)
550 && Has_Unknown_Discriminants (gnat_temp_type)
551 && Ekind (gnat_temp) == E_Constant
552 && Present (Full_View (gnat_temp)))
553 {
554 gnat_temp = Full_View (gnat_temp);
555 gnat_temp_type = Etype (gnat_temp);
556 }
557 else
558 {
559 /* We want to use the Actual_Subtype if it has already been elaborated,
560 otherwise the Etype. Avoid using Actual_Subtype for packed arrays to
561 simplify things. */
562 if ((Ekind (gnat_temp) == E_Constant
563 || Ekind (gnat_temp) == E_Variable || Is_Formal (gnat_temp))
564 && !(Is_Array_Type (Etype (gnat_temp))
565 && Present (Packed_Array_Type (Etype (gnat_temp))))
566 && Present (Actual_Subtype (gnat_temp))
567 && present_gnu_tree (Actual_Subtype (gnat_temp)))
568 gnat_temp_type = Actual_Subtype (gnat_temp);
569 else
570 gnat_temp_type = Etype (gnat_node);
571 }
572
573 /* Expand the type of this identifier first, in case it is an enumeral
574 literal, which only get made when the type is expanded. There is no
575 order-of-elaboration issue here. */
576 gnu_result_type = get_unpadded_type (gnat_temp_type);
577
578 /* If this is a non-imported scalar constant with an address clause,
579 retrieve the value instead of a pointer to be dereferenced unless
580 an lvalue is required. This is generally more efficient and actually
581 required if this is a static expression because it might be used
582 in a context where a dereference is inappropriate, such as a case
583 statement alternative or a record discriminant. There is no possible
584 volatile-ness short-circuit here since Volatile constants must be imported
585 per C.6. */
586 if (Ekind (gnat_temp) == E_Constant && Is_Scalar_Type (gnat_temp_type)
587 && !Is_Imported (gnat_temp)
588 && Present (Address_Clause (gnat_temp)))
589 {
590 require_lvalue = lvalue_required_p (gnat_node, gnu_result_type,
591 Is_Aliased (gnat_temp));
592 use_constant_initializer = !require_lvalue;
593 }
594
595 if (use_constant_initializer)
596 {
597 /* If this is a deferred constant, the initializer is attached to
598 the full view. */
599 if (Present (Full_View (gnat_temp)))
600 gnat_temp = Full_View (gnat_temp);
601
602 gnu_result = gnat_to_gnu (Expression (Declaration_Node (gnat_temp)));
603 }
604 else
605 gnu_result = gnat_to_gnu_entity (gnat_temp, NULL_TREE, 0);
606
607 /* If we are in an exception handler, force this variable into memory to
608 ensure optimization does not remove stores that appear redundant but are
609 actually needed in case an exception occurs.
610
611 ??? Note that we need not do this if the variable is declared within the
612 handler, only if it is referenced in the handler and declared in an
613 enclosing block, but we have no way of testing that right now.
614
615 ??? We used to essentially set the TREE_ADDRESSABLE flag on the variable
616 here, but it can now be removed by the Tree aliasing machinery if the
617 address of the variable is never taken. All we can do is to make the
618 variable volatile, which might incur the generation of temporaries just
619 to access the memory in some circumstances. This can be avoided for
620 variables of non-constant size because they are automatically allocated
621 to memory. There might be no way of allocating a proper temporary for
622 them in any case. We only do this for SJLJ though. */
623 if (TREE_VALUE (gnu_except_ptr_stack)
624 && TREE_CODE (gnu_result) == VAR_DECL
625 && TREE_CODE (DECL_SIZE_UNIT (gnu_result)) == INTEGER_CST)
626 TREE_THIS_VOLATILE (gnu_result) = TREE_SIDE_EFFECTS (gnu_result) = 1;
627
628 /* Some objects (such as parameters passed by reference, globals of
629 variable size, and renamed objects) actually represent the address
630 of the object. In that case, we must do the dereference. Likewise,
631 deal with parameters to foreign convention subprograms. */
632 if (DECL_P (gnu_result)
633 && (DECL_BY_REF_P (gnu_result)
634 || (TREE_CODE (gnu_result) == PARM_DECL
635 && DECL_BY_COMPONENT_PTR_P (gnu_result))))
636 {
637 bool ro = DECL_POINTS_TO_READONLY_P (gnu_result);
638 tree renamed_obj;
639
640 if (TREE_CODE (gnu_result) == PARM_DECL
641 && DECL_BY_COMPONENT_PTR_P (gnu_result))
642 gnu_result
643 = build_unary_op (INDIRECT_REF, NULL_TREE,
644 convert (build_pointer_type (gnu_result_type),
645 gnu_result));
646
647 /* If it's a renaming pointer and we are at the right binding level,
648 we can reference the renamed object directly, since the renamed
649 expression has been protected against multiple evaluations. */
650 else if (TREE_CODE (gnu_result) == VAR_DECL
651 && (renamed_obj = DECL_RENAMED_OBJECT (gnu_result)) != 0
652 && (! DECL_RENAMING_GLOBAL_P (gnu_result)
653 || global_bindings_p ()))
654 gnu_result = renamed_obj;
655
656 /* Return the underlying CST for a CONST_DECL like a few lines below,
657 after dereferencing in this case. */
658 else if (TREE_CODE (gnu_result) == CONST_DECL)
659 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE,
660 DECL_INITIAL (gnu_result));
661
662 else
663 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_result);
664
665 TREE_READONLY (gnu_result) = TREE_STATIC (gnu_result) = ro;
666 }
667
668 /* The GNAT tree has the type of a function as the type of its result. Also
669 use the type of the result if the Etype is a subtype which is nominally
670 unconstrained. But remove any padding from the resulting type. */
671 if (TREE_CODE (TREE_TYPE (gnu_result)) == FUNCTION_TYPE
672 || Is_Constr_Subt_For_UN_Aliased (gnat_temp_type))
673 {
674 gnu_result_type = TREE_TYPE (gnu_result);
675 if (TREE_CODE (gnu_result_type) == RECORD_TYPE
676 && TYPE_IS_PADDING_P (gnu_result_type))
677 gnu_result_type = TREE_TYPE (TYPE_FIELDS (gnu_result_type));
678 }
679
680 /* If we have a constant declaration and its initializer at hand,
681 try to return the latter to avoid the need to call fold in lots
682 of places and the need of elaboration code if this Id is used as
683 an initializer itself. */
684 if (TREE_CONSTANT (gnu_result)
685 && DECL_P (gnu_result)
686 && DECL_INITIAL (gnu_result))
687 {
688 tree object
689 = (TREE_CODE (gnu_result) == CONST_DECL
690 ? DECL_CONST_CORRESPONDING_VAR (gnu_result) : gnu_result);
691
692 /* If there is a corresponding variable, we only want to return
693 the CST value if an lvalue is not required. Evaluate this
694 now if we have not already done so. */
695 if (object && require_lvalue < 0)
696 require_lvalue = lvalue_required_p (gnat_node, gnu_result_type,
697 Is_Aliased (gnat_temp));
698
699 if (!object || !require_lvalue)
700 gnu_result = unshare_expr (DECL_INITIAL (gnu_result));
701 }
702
703 *gnu_result_type_p = gnu_result_type;
704 return gnu_result;
705 }
706 \f
707 /* Subroutine of gnat_to_gnu to process gnat_node, an N_Pragma. Return
708 any statements we generate. */
709
710 static tree
711 Pragma_to_gnu (Node_Id gnat_node)
712 {
713 Node_Id gnat_temp;
714 tree gnu_result = alloc_stmt_list ();
715
716 /* Check for (and ignore) unrecognized pragma and do nothing if we are just
717 annotating types. */
718 if (type_annotate_only
719 || !Is_Pragma_Name (Chars (Pragma_Identifier (gnat_node))))
720 return gnu_result;
721
722 switch (Get_Pragma_Id (Chars (Pragma_Identifier (gnat_node))))
723 {
724 case Pragma_Inspection_Point:
725 /* Do nothing at top level: all such variables are already viewable. */
726 if (global_bindings_p ())
727 break;
728
729 for (gnat_temp = First (Pragma_Argument_Associations (gnat_node));
730 Present (gnat_temp);
731 gnat_temp = Next (gnat_temp))
732 {
733 Node_Id gnat_expr = Expression (gnat_temp);
734 tree gnu_expr = gnat_to_gnu (gnat_expr);
735 int use_address;
736 enum machine_mode mode;
737 tree asm_constraint = NULL_TREE;
738 #ifdef ASM_COMMENT_START
739 char *comment;
740 #endif
741
742 if (TREE_CODE (gnu_expr) == UNCONSTRAINED_ARRAY_REF)
743 gnu_expr = TREE_OPERAND (gnu_expr, 0);
744
745 /* Use the value only if it fits into a normal register,
746 otherwise use the address. */
747 mode = TYPE_MODE (TREE_TYPE (gnu_expr));
748 use_address = ((GET_MODE_CLASS (mode) != MODE_INT
749 && GET_MODE_CLASS (mode) != MODE_PARTIAL_INT)
750 || GET_MODE_SIZE (mode) > UNITS_PER_WORD);
751
752 if (use_address)
753 gnu_expr = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr);
754
755 #ifdef ASM_COMMENT_START
756 comment = concat (ASM_COMMENT_START,
757 " inspection point: ",
758 Get_Name_String (Chars (gnat_expr)),
759 use_address ? " address" : "",
760 " is in %0",
761 NULL);
762 asm_constraint = build_string (strlen (comment), comment);
763 free (comment);
764 #endif
765 gnu_expr = build4 (ASM_EXPR, void_type_node,
766 asm_constraint,
767 NULL_TREE,
768 tree_cons
769 (build_tree_list (NULL_TREE,
770 build_string (1, "g")),
771 gnu_expr, NULL_TREE),
772 NULL_TREE);
773 ASM_VOLATILE_P (gnu_expr) = 1;
774 set_expr_location_from_node (gnu_expr, gnat_node);
775 append_to_statement_list (gnu_expr, &gnu_result);
776 }
777 break;
778
779 case Pragma_Optimize:
780 switch (Chars (Expression
781 (First (Pragma_Argument_Associations (gnat_node)))))
782 {
783 case Name_Time: case Name_Space:
784 if (optimize == 0)
785 post_error ("insufficient -O value?", gnat_node);
786 break;
787
788 case Name_Off:
789 if (optimize != 0)
790 post_error ("must specify -O0?", gnat_node);
791 break;
792
793 default:
794 gcc_unreachable ();
795 }
796 break;
797
798 case Pragma_Reviewable:
799 if (write_symbols == NO_DEBUG)
800 post_error ("must specify -g?", gnat_node);
801 break;
802 }
803
804 return gnu_result;
805 }
806 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Attribute,
807 to a GCC tree, which is returned. GNU_RESULT_TYPE_P is a pointer to
808 where we should place the result type. ATTRIBUTE is the attribute ID. */
809
810 static tree
811 Attribute_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p, int attribute)
812 {
813 tree gnu_result = error_mark_node;
814 tree gnu_result_type;
815 tree gnu_expr;
816 bool prefix_unused = false;
817 tree gnu_prefix = gnat_to_gnu (Prefix (gnat_node));
818 tree gnu_type = TREE_TYPE (gnu_prefix);
819
820 /* If the input is a NULL_EXPR, make a new one. */
821 if (TREE_CODE (gnu_prefix) == NULL_EXPR)
822 {
823 *gnu_result_type_p = get_unpadded_type (Etype (gnat_node));
824 return build1 (NULL_EXPR, *gnu_result_type_p,
825 TREE_OPERAND (gnu_prefix, 0));
826 }
827
828 switch (attribute)
829 {
830 case Attr_Pos:
831 case Attr_Val:
832 /* These are just conversions until since representation clauses for
833 enumerations are handled in the front end. */
834 {
835 bool checkp = Do_Range_Check (First (Expressions (gnat_node)));
836
837 gnu_result = gnat_to_gnu (First (Expressions (gnat_node)));
838 gnu_result_type = get_unpadded_type (Etype (gnat_node));
839 gnu_result = convert_with_check (Etype (gnat_node), gnu_result,
840 checkp, checkp, true);
841 }
842 break;
843
844 case Attr_Pred:
845 case Attr_Succ:
846 /* These just add or subject the constant 1. Representation clauses for
847 enumerations are handled in the front-end. */
848 gnu_expr = gnat_to_gnu (First (Expressions (gnat_node)));
849 gnu_result_type = get_unpadded_type (Etype (gnat_node));
850
851 if (Do_Range_Check (First (Expressions (gnat_node))))
852 {
853 gnu_expr = protect_multiple_eval (gnu_expr);
854 gnu_expr
855 = emit_check
856 (build_binary_op (EQ_EXPR, integer_type_node,
857 gnu_expr,
858 attribute == Attr_Pred
859 ? TYPE_MIN_VALUE (gnu_result_type)
860 : TYPE_MAX_VALUE (gnu_result_type)),
861 gnu_expr, CE_Range_Check_Failed);
862 }
863
864 gnu_result
865 = build_binary_op (attribute == Attr_Pred
866 ? MINUS_EXPR : PLUS_EXPR,
867 gnu_result_type, gnu_expr,
868 convert (gnu_result_type, integer_one_node));
869 break;
870
871 case Attr_Address:
872 case Attr_Unrestricted_Access:
873 /* Conversions don't change something's address but can cause us to miss
874 the COMPONENT_REF case below, so strip them off. */
875 gnu_prefix = remove_conversions (gnu_prefix,
876 !Must_Be_Byte_Aligned (gnat_node));
877
878 /* If we are taking 'Address of an unconstrained object, this is the
879 pointer to the underlying array. */
880 if (attribute == Attr_Address)
881 gnu_prefix = maybe_unconstrained_array (gnu_prefix);
882
883 /* If we are building a static dispatch table, we have to honor
884 TARGET_VTABLE_USES_DESCRIPTORS if we want to be compatible
885 with the C++ ABI. We do it in the non-static case as well,
886 see gnat_to_gnu_entity, case E_Access_Subprogram_Type. */
887 else if (TARGET_VTABLE_USES_DESCRIPTORS
888 && Is_Dispatch_Table_Entity (Etype (gnat_node)))
889 {
890 tree gnu_field, gnu_list = NULL_TREE, t;
891 /* Descriptors can only be built here for top-level functions. */
892 bool build_descriptor = (global_bindings_p () != 0);
893 int i;
894
895 gnu_result_type = get_unpadded_type (Etype (gnat_node));
896
897 /* If we're not going to build the descriptor, we have to retrieve
898 the one which will be built by the linker (or by the compiler
899 later if a static chain is requested). */
900 if (!build_descriptor)
901 {
902 gnu_result = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_prefix);
903 gnu_result = fold_convert (build_pointer_type (gnu_result_type),
904 gnu_result);
905 gnu_result = build1 (INDIRECT_REF, gnu_result_type, gnu_result);
906 }
907
908 for (gnu_field = TYPE_FIELDS (gnu_result_type), i = 0;
909 i < TARGET_VTABLE_USES_DESCRIPTORS;
910 gnu_field = TREE_CHAIN (gnu_field), i++)
911 {
912 if (build_descriptor)
913 {
914 t = build2 (FDESC_EXPR, TREE_TYPE (gnu_field), gnu_prefix,
915 build_int_cst (NULL_TREE, i));
916 TREE_CONSTANT (t) = 1;
917 }
918 else
919 t = build3 (COMPONENT_REF, ptr_void_ftype, gnu_result,
920 gnu_field, NULL_TREE);
921
922 gnu_list = tree_cons (gnu_field, t, gnu_list);
923 }
924
925 gnu_result = gnat_build_constructor (gnu_result_type, gnu_list);
926 break;
927 }
928
929 /* ... fall through ... */
930
931 case Attr_Access:
932 case Attr_Unchecked_Access:
933 case Attr_Code_Address:
934 gnu_result_type = get_unpadded_type (Etype (gnat_node));
935 gnu_result
936 = build_unary_op (((attribute == Attr_Address
937 || attribute == Attr_Unrestricted_Access)
938 && !Must_Be_Byte_Aligned (gnat_node))
939 ? ATTR_ADDR_EXPR : ADDR_EXPR,
940 gnu_result_type, gnu_prefix);
941
942 /* For 'Code_Address, find an inner ADDR_EXPR and mark it so that we
943 don't try to build a trampoline. */
944 if (attribute == Attr_Code_Address)
945 {
946 for (gnu_expr = gnu_result;
947 CONVERT_EXPR_P (gnu_expr);
948 gnu_expr = TREE_OPERAND (gnu_expr, 0))
949 TREE_CONSTANT (gnu_expr) = 1;
950
951 if (TREE_CODE (gnu_expr) == ADDR_EXPR)
952 TREE_NO_TRAMPOLINE (gnu_expr) = TREE_CONSTANT (gnu_expr) = 1;
953 }
954
955 /* For other address attributes applied to a nested function,
956 find an inner ADDR_EXPR and annotate it so that we can issue
957 a useful warning with -Wtrampolines. */
958 else if (TREE_CODE (TREE_TYPE (gnu_prefix)) == FUNCTION_TYPE)
959 {
960 for (gnu_expr = gnu_result;
961 CONVERT_EXPR_P (gnu_expr);
962 gnu_expr = TREE_OPERAND (gnu_expr, 0))
963 ;
964
965 if (TREE_CODE (gnu_expr) == ADDR_EXPR
966 && decl_function_context (TREE_OPERAND (gnu_expr, 0)))
967 {
968 set_expr_location_from_node (gnu_expr, gnat_node);
969
970 /* Check that we're not violating the No_Implicit_Dynamic_Code
971 restriction. Be conservative if we don't know anything
972 about the trampoline strategy for the target. */
973 Check_Implicit_Dynamic_Code_Allowed (gnat_node);
974 }
975 }
976 break;
977
978 case Attr_Pool_Address:
979 {
980 tree gnu_obj_type;
981 tree gnu_ptr = gnu_prefix;
982
983 gnu_result_type = get_unpadded_type (Etype (gnat_node));
984
985 /* If this is an unconstrained array, we know the object must have been
986 allocated with the template in front of the object. So compute the
987 template address.*/
988 if (TYPE_FAT_POINTER_P (TREE_TYPE (gnu_ptr)))
989 gnu_ptr
990 = convert (build_pointer_type
991 (TYPE_OBJECT_RECORD_TYPE
992 (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (gnu_ptr)))),
993 gnu_ptr);
994
995 gnu_obj_type = TREE_TYPE (TREE_TYPE (gnu_ptr));
996 if (TREE_CODE (gnu_obj_type) == RECORD_TYPE
997 && TYPE_CONTAINS_TEMPLATE_P (gnu_obj_type))
998 {
999 tree gnu_char_ptr_type = build_pointer_type (char_type_node);
1000 tree gnu_pos = byte_position (TYPE_FIELDS (gnu_obj_type));
1001 tree gnu_byte_offset
1002 = convert (sizetype,
1003 size_diffop (size_zero_node, gnu_pos));
1004 gnu_byte_offset = fold_build1 (NEGATE_EXPR, sizetype, gnu_byte_offset);
1005
1006 gnu_ptr = convert (gnu_char_ptr_type, gnu_ptr);
1007 gnu_ptr = build_binary_op (POINTER_PLUS_EXPR, gnu_char_ptr_type,
1008 gnu_ptr, gnu_byte_offset);
1009 }
1010
1011 gnu_result = convert (gnu_result_type, gnu_ptr);
1012 }
1013 break;
1014
1015 case Attr_Size:
1016 case Attr_Object_Size:
1017 case Attr_Value_Size:
1018 case Attr_Max_Size_In_Storage_Elements:
1019 gnu_expr = gnu_prefix;
1020
1021 /* Remove NOPS from gnu_expr and conversions from gnu_prefix.
1022 We only use GNU_EXPR to see if a COMPONENT_REF was involved. */
1023 while (TREE_CODE (gnu_expr) == NOP_EXPR)
1024 gnu_expr = TREE_OPERAND (gnu_expr, 0);
1025
1026 gnu_prefix = remove_conversions (gnu_prefix, true);
1027 prefix_unused = true;
1028 gnu_type = TREE_TYPE (gnu_prefix);
1029
1030 /* Replace an unconstrained array type with the type of the underlying
1031 array. We can't do this with a call to maybe_unconstrained_array
1032 since we may have a TYPE_DECL. For 'Max_Size_In_Storage_Elements,
1033 use the record type that will be used to allocate the object and its
1034 template. */
1035 if (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE)
1036 {
1037 gnu_type = TYPE_OBJECT_RECORD_TYPE (gnu_type);
1038 if (attribute != Attr_Max_Size_In_Storage_Elements)
1039 gnu_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (gnu_type)));
1040 }
1041
1042 /* If we're looking for the size of a field, return the field size.
1043 Otherwise, if the prefix is an object, or if 'Object_Size or
1044 'Max_Size_In_Storage_Elements has been specified, the result is the
1045 GCC size of the type. Otherwise, the result is the RM_Size of the
1046 type. */
1047 if (TREE_CODE (gnu_prefix) == COMPONENT_REF)
1048 gnu_result = DECL_SIZE (TREE_OPERAND (gnu_prefix, 1));
1049 else if (TREE_CODE (gnu_prefix) != TYPE_DECL
1050 || attribute == Attr_Object_Size
1051 || attribute == Attr_Max_Size_In_Storage_Elements)
1052 {
1053 /* If this is a padded type, the GCC size isn't relevant to the
1054 programmer. Normally, what we want is the RM_Size, which was set
1055 from the specified size, but if it was not set, we want the size
1056 of the relevant field. Using the MAX of those two produces the
1057 right result in all case. Don't use the size of the field if it's
1058 a self-referential type, since that's never what's wanted. */
1059 if (TREE_CODE (gnu_type) == RECORD_TYPE
1060 && TYPE_IS_PADDING_P (gnu_type)
1061 && TREE_CODE (gnu_expr) == COMPONENT_REF)
1062 {
1063 gnu_result = rm_size (gnu_type);
1064 if (!(CONTAINS_PLACEHOLDER_P
1065 (DECL_SIZE (TREE_OPERAND (gnu_expr, 1)))))
1066 gnu_result
1067 = size_binop (MAX_EXPR, gnu_result,
1068 DECL_SIZE (TREE_OPERAND (gnu_expr, 1)));
1069 }
1070 else if (Nkind (Prefix (gnat_node)) == N_Explicit_Dereference)
1071 {
1072 Node_Id gnat_deref = Prefix (gnat_node);
1073 Node_Id gnat_actual_subtype = Actual_Designated_Subtype (gnat_deref);
1074 tree gnu_ptr_type = TREE_TYPE (gnat_to_gnu (Prefix (gnat_deref)));
1075 if (TYPE_FAT_OR_THIN_POINTER_P (gnu_ptr_type)
1076 && Present (gnat_actual_subtype))
1077 {
1078 tree gnu_actual_obj_type = gnat_to_gnu_type (gnat_actual_subtype);
1079 gnu_type = build_unc_object_type_from_ptr (gnu_ptr_type,
1080 gnu_actual_obj_type, get_identifier ("SIZE"));
1081 }
1082
1083 gnu_result = TYPE_SIZE (gnu_type);
1084 }
1085 else
1086 gnu_result = TYPE_SIZE (gnu_type);
1087 }
1088 else
1089 gnu_result = rm_size (gnu_type);
1090
1091 gcc_assert (gnu_result);
1092
1093 /* Deal with a self-referential size by returning the maximum size for a
1094 type and by qualifying the size with the object for 'Size of an
1095 object. */
1096 if (CONTAINS_PLACEHOLDER_P (gnu_result))
1097 {
1098 if (TREE_CODE (gnu_prefix) != TYPE_DECL)
1099 gnu_result = substitute_placeholder_in_expr (gnu_result, gnu_expr);
1100 else
1101 gnu_result = max_size (gnu_result, true);
1102 }
1103
1104 /* If the type contains a template, subtract its size. */
1105 if (TREE_CODE (gnu_type) == RECORD_TYPE
1106 && TYPE_CONTAINS_TEMPLATE_P (gnu_type))
1107 gnu_result = size_binop (MINUS_EXPR, gnu_result,
1108 DECL_SIZE (TYPE_FIELDS (gnu_type)));
1109
1110 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1111
1112 /* Always perform division using unsigned arithmetic as the size cannot
1113 be negative, but may be an overflowed positive value. This provides
1114 correct results for sizes up to 512 MB.
1115
1116 ??? Size should be calculated in storage elements directly. */
1117
1118 if (attribute == Attr_Max_Size_In_Storage_Elements)
1119 gnu_result = convert (sizetype,
1120 fold_build2 (CEIL_DIV_EXPR, bitsizetype,
1121 gnu_result, bitsize_unit_node));
1122 break;
1123
1124 case Attr_Alignment:
1125 if (TREE_CODE (gnu_prefix) == COMPONENT_REF
1126 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))
1127 == RECORD_TYPE)
1128 && (TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))))
1129 gnu_prefix = TREE_OPERAND (gnu_prefix, 0);
1130
1131 gnu_type = TREE_TYPE (gnu_prefix);
1132 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1133 prefix_unused = true;
1134
1135 gnu_result = size_int ((TREE_CODE (gnu_prefix) == COMPONENT_REF
1136 ? DECL_ALIGN (TREE_OPERAND (gnu_prefix, 1))
1137 : TYPE_ALIGN (gnu_type)) / BITS_PER_UNIT);
1138 break;
1139
1140 case Attr_First:
1141 case Attr_Last:
1142 case Attr_Range_Length:
1143 prefix_unused = true;
1144
1145 if (INTEGRAL_TYPE_P (gnu_type) || TREE_CODE (gnu_type) == REAL_TYPE)
1146 {
1147 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1148
1149 if (attribute == Attr_First)
1150 gnu_result = TYPE_MIN_VALUE (gnu_type);
1151 else if (attribute == Attr_Last)
1152 gnu_result = TYPE_MAX_VALUE (gnu_type);
1153 else
1154 gnu_result
1155 = build_binary_op
1156 (MAX_EXPR, get_base_type (gnu_result_type),
1157 build_binary_op
1158 (PLUS_EXPR, get_base_type (gnu_result_type),
1159 build_binary_op (MINUS_EXPR,
1160 get_base_type (gnu_result_type),
1161 convert (gnu_result_type,
1162 TYPE_MAX_VALUE (gnu_type)),
1163 convert (gnu_result_type,
1164 TYPE_MIN_VALUE (gnu_type))),
1165 convert (gnu_result_type, integer_one_node)),
1166 convert (gnu_result_type, integer_zero_node));
1167
1168 break;
1169 }
1170
1171 /* ... fall through ... */
1172
1173 case Attr_Length:
1174 {
1175 int Dimension = (Present (Expressions (gnat_node))
1176 ? UI_To_Int (Intval (First (Expressions (gnat_node))))
1177 : 1), i;
1178 struct parm_attr *pa = NULL;
1179 Entity_Id gnat_param = Empty;
1180
1181 /* Make sure any implicit dereference gets done. */
1182 gnu_prefix = maybe_implicit_deref (gnu_prefix);
1183 gnu_prefix = maybe_unconstrained_array (gnu_prefix);
1184 /* We treat unconstrained array In parameters specially. */
1185 if (Nkind (Prefix (gnat_node)) == N_Identifier
1186 && !Is_Constrained (Etype (Prefix (gnat_node)))
1187 && Ekind (Entity (Prefix (gnat_node))) == E_In_Parameter)
1188 gnat_param = Entity (Prefix (gnat_node));
1189 gnu_type = TREE_TYPE (gnu_prefix);
1190 prefix_unused = true;
1191 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1192
1193 if (TYPE_CONVENTION_FORTRAN_P (gnu_type))
1194 {
1195 int ndim;
1196 tree gnu_type_temp;
1197
1198 for (ndim = 1, gnu_type_temp = gnu_type;
1199 TREE_CODE (TREE_TYPE (gnu_type_temp)) == ARRAY_TYPE
1200 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_type_temp));
1201 ndim++, gnu_type_temp = TREE_TYPE (gnu_type_temp))
1202 ;
1203
1204 Dimension = ndim + 1 - Dimension;
1205 }
1206
1207 for (i = 1; i < Dimension; i++)
1208 gnu_type = TREE_TYPE (gnu_type);
1209
1210 gcc_assert (TREE_CODE (gnu_type) == ARRAY_TYPE);
1211
1212 /* When not optimizing, look up the slot associated with the parameter
1213 and the dimension in the cache and create a new one on failure. */
1214 if (!optimize && Present (gnat_param))
1215 {
1216 for (i = 0; VEC_iterate (parm_attr, f_parm_attr_cache, i, pa); i++)
1217 if (pa->id == gnat_param && pa->dim == Dimension)
1218 break;
1219
1220 if (!pa)
1221 {
1222 pa = GGC_CNEW (struct parm_attr);
1223 pa->id = gnat_param;
1224 pa->dim = Dimension;
1225 VEC_safe_push (parm_attr, gc, f_parm_attr_cache, pa);
1226 }
1227 }
1228
1229 /* Return the cached expression or build a new one. */
1230 if (attribute == Attr_First)
1231 {
1232 if (pa && pa->first)
1233 {
1234 gnu_result = pa->first;
1235 break;
1236 }
1237
1238 gnu_result
1239 = TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type)));
1240 }
1241
1242 else if (attribute == Attr_Last)
1243 {
1244 if (pa && pa->last)
1245 {
1246 gnu_result = pa->last;
1247 break;
1248 }
1249
1250 gnu_result
1251 = TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type)));
1252 }
1253
1254 else /* attribute == Attr_Range_Length || attribute == Attr_Length */
1255 {
1256 if (pa && pa->length)
1257 {
1258 gnu_result = pa->length;
1259 break;
1260 }
1261 else
1262 {
1263 /* We used to compute the length as max (hb - lb + 1, 0),
1264 which could overflow for some cases of empty arrays, e.g.
1265 when lb == index_type'first. We now compute the length as
1266 (hb < lb) ? 0 : hb - lb + 1, which would only overflow in
1267 much rarer cases, for extremely large arrays we expect
1268 never to encounter in practice. In addition, the former
1269 computation required the use of potentially constraining
1270 signed arithmetic while the latter doesn't. */
1271
1272 tree gnu_compute_type = get_base_type (gnu_result_type);
1273
1274 tree index_type
1275 = TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type));
1276 tree lb
1277 = convert (gnu_compute_type, TYPE_MIN_VALUE (index_type));
1278 tree hb
1279 = convert (gnu_compute_type, TYPE_MAX_VALUE (index_type));
1280
1281 gnu_result
1282 = build3
1283 (COND_EXPR, gnu_compute_type,
1284 build_binary_op (LT_EXPR, gnu_compute_type, hb, lb),
1285 convert (gnu_compute_type, integer_zero_node),
1286 build_binary_op
1287 (PLUS_EXPR, gnu_compute_type,
1288 build_binary_op (MINUS_EXPR, gnu_compute_type, hb, lb),
1289 convert (gnu_compute_type, integer_one_node)));
1290 }
1291 }
1292
1293 /* If this has a PLACEHOLDER_EXPR, qualify it by the object we are
1294 handling. Note that these attributes could not have been used on
1295 an unconstrained array type. */
1296 gnu_result = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_result,
1297 gnu_prefix);
1298
1299 /* Cache the expression we have just computed. Since we want to do it
1300 at runtime, we force the use of a SAVE_EXPR and let the gimplifier
1301 create the temporary. */
1302 if (pa)
1303 {
1304 gnu_result
1305 = build1 (SAVE_EXPR, TREE_TYPE (gnu_result), gnu_result);
1306 TREE_SIDE_EFFECTS (gnu_result) = 1;
1307 if (attribute == Attr_First)
1308 pa->first = gnu_result;
1309 else if (attribute == Attr_Last)
1310 pa->last = gnu_result;
1311 else
1312 pa->length = gnu_result;
1313 }
1314 break;
1315 }
1316
1317 case Attr_Bit_Position:
1318 case Attr_Position:
1319 case Attr_First_Bit:
1320 case Attr_Last_Bit:
1321 case Attr_Bit:
1322 {
1323 HOST_WIDE_INT bitsize;
1324 HOST_WIDE_INT bitpos;
1325 tree gnu_offset;
1326 tree gnu_field_bitpos;
1327 tree gnu_field_offset;
1328 tree gnu_inner;
1329 enum machine_mode mode;
1330 int unsignedp, volatilep;
1331
1332 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1333 gnu_prefix = remove_conversions (gnu_prefix, true);
1334 prefix_unused = true;
1335
1336 /* We can have 'Bit on any object, but if it isn't a COMPONENT_REF,
1337 the result is 0. Don't allow 'Bit on a bare component, though. */
1338 if (attribute == Attr_Bit
1339 && TREE_CODE (gnu_prefix) != COMPONENT_REF
1340 && TREE_CODE (gnu_prefix) != FIELD_DECL)
1341 {
1342 gnu_result = integer_zero_node;
1343 break;
1344 }
1345
1346 else
1347 gcc_assert (TREE_CODE (gnu_prefix) == COMPONENT_REF
1348 || (attribute == Attr_Bit_Position
1349 && TREE_CODE (gnu_prefix) == FIELD_DECL));
1350
1351 get_inner_reference (gnu_prefix, &bitsize, &bitpos, &gnu_offset,
1352 &mode, &unsignedp, &volatilep, false);
1353
1354 if (TREE_CODE (gnu_prefix) == COMPONENT_REF)
1355 {
1356 gnu_field_bitpos = bit_position (TREE_OPERAND (gnu_prefix, 1));
1357 gnu_field_offset = byte_position (TREE_OPERAND (gnu_prefix, 1));
1358
1359 for (gnu_inner = TREE_OPERAND (gnu_prefix, 0);
1360 TREE_CODE (gnu_inner) == COMPONENT_REF
1361 && DECL_INTERNAL_P (TREE_OPERAND (gnu_inner, 1));
1362 gnu_inner = TREE_OPERAND (gnu_inner, 0))
1363 {
1364 gnu_field_bitpos
1365 = size_binop (PLUS_EXPR, gnu_field_bitpos,
1366 bit_position (TREE_OPERAND (gnu_inner, 1)));
1367 gnu_field_offset
1368 = size_binop (PLUS_EXPR, gnu_field_offset,
1369 byte_position (TREE_OPERAND (gnu_inner, 1)));
1370 }
1371 }
1372 else if (TREE_CODE (gnu_prefix) == FIELD_DECL)
1373 {
1374 gnu_field_bitpos = bit_position (gnu_prefix);
1375 gnu_field_offset = byte_position (gnu_prefix);
1376 }
1377 else
1378 {
1379 gnu_field_bitpos = bitsize_zero_node;
1380 gnu_field_offset = size_zero_node;
1381 }
1382
1383 switch (attribute)
1384 {
1385 case Attr_Position:
1386 gnu_result = gnu_field_offset;
1387 break;
1388
1389 case Attr_First_Bit:
1390 case Attr_Bit:
1391 gnu_result = size_int (bitpos % BITS_PER_UNIT);
1392 break;
1393
1394 case Attr_Last_Bit:
1395 gnu_result = bitsize_int (bitpos % BITS_PER_UNIT);
1396 gnu_result = size_binop (PLUS_EXPR, gnu_result,
1397 TYPE_SIZE (TREE_TYPE (gnu_prefix)));
1398 gnu_result = size_binop (MINUS_EXPR, gnu_result,
1399 bitsize_one_node);
1400 break;
1401
1402 case Attr_Bit_Position:
1403 gnu_result = gnu_field_bitpos;
1404 break;
1405 }
1406
1407 /* If this has a PLACEHOLDER_EXPR, qualify it by the object
1408 we are handling. */
1409 gnu_result = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_result, gnu_prefix);
1410 break;
1411 }
1412
1413 case Attr_Min:
1414 case Attr_Max:
1415 {
1416 tree gnu_lhs = gnat_to_gnu (First (Expressions (gnat_node)));
1417 tree gnu_rhs = gnat_to_gnu (Next (First (Expressions (gnat_node))));
1418
1419 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1420 gnu_result = build_binary_op (attribute == Attr_Min
1421 ? MIN_EXPR : MAX_EXPR,
1422 gnu_result_type, gnu_lhs, gnu_rhs);
1423 }
1424 break;
1425
1426 case Attr_Passed_By_Reference:
1427 gnu_result = size_int (default_pass_by_ref (gnu_type)
1428 || must_pass_by_ref (gnu_type));
1429 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1430 break;
1431
1432 case Attr_Component_Size:
1433 if (TREE_CODE (gnu_prefix) == COMPONENT_REF
1434 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))
1435 == RECORD_TYPE)
1436 && (TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (gnu_prefix, 0)))))
1437 gnu_prefix = TREE_OPERAND (gnu_prefix, 0);
1438
1439 gnu_prefix = maybe_implicit_deref (gnu_prefix);
1440 gnu_type = TREE_TYPE (gnu_prefix);
1441
1442 if (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE)
1443 gnu_type = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_type))));
1444
1445 while (TREE_CODE (TREE_TYPE (gnu_type)) == ARRAY_TYPE
1446 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_type)))
1447 gnu_type = TREE_TYPE (gnu_type);
1448
1449 gcc_assert (TREE_CODE (gnu_type) == ARRAY_TYPE);
1450
1451 /* Note this size cannot be self-referential. */
1452 gnu_result = TYPE_SIZE (TREE_TYPE (gnu_type));
1453 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1454 prefix_unused = true;
1455 break;
1456
1457 case Attr_Null_Parameter:
1458 /* This is just a zero cast to the pointer type for
1459 our prefix and dereferenced. */
1460 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1461 gnu_result
1462 = build_unary_op (INDIRECT_REF, NULL_TREE,
1463 convert (build_pointer_type (gnu_result_type),
1464 integer_zero_node));
1465 TREE_PRIVATE (gnu_result) = 1;
1466 break;
1467
1468 case Attr_Mechanism_Code:
1469 {
1470 int code;
1471 Entity_Id gnat_obj = Entity (Prefix (gnat_node));
1472
1473 prefix_unused = true;
1474 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1475 if (Present (Expressions (gnat_node)))
1476 {
1477 int i = UI_To_Int (Intval (First (Expressions (gnat_node))));
1478
1479 for (gnat_obj = First_Formal (gnat_obj); i > 1;
1480 i--, gnat_obj = Next_Formal (gnat_obj))
1481 ;
1482 }
1483
1484 code = Mechanism (gnat_obj);
1485 if (code == Default)
1486 code = ((present_gnu_tree (gnat_obj)
1487 && (DECL_BY_REF_P (get_gnu_tree (gnat_obj))
1488 || ((TREE_CODE (get_gnu_tree (gnat_obj))
1489 == PARM_DECL)
1490 && (DECL_BY_COMPONENT_PTR_P
1491 (get_gnu_tree (gnat_obj))))))
1492 ? By_Reference : By_Copy);
1493 gnu_result = convert (gnu_result_type, size_int (- code));
1494 }
1495 break;
1496
1497 default:
1498 /* Say we have an unimplemented attribute. Then set the value to be
1499 returned to be a zero and hope that's something we can convert to the
1500 type of this attribute. */
1501 post_error ("unimplemented attribute", gnat_node);
1502 gnu_result_type = get_unpadded_type (Etype (gnat_node));
1503 gnu_result = integer_zero_node;
1504 break;
1505 }
1506
1507 /* If this is an attribute where the prefix was unused, force a use of it if
1508 it has a side-effect. But don't do it if the prefix is just an entity
1509 name. However, if an access check is needed, we must do it. See second
1510 example in AARM 11.6(5.e). */
1511 if (prefix_unused && TREE_SIDE_EFFECTS (gnu_prefix)
1512 && !Is_Entity_Name (Prefix (gnat_node)))
1513 gnu_result = fold_build2 (COMPOUND_EXPR, TREE_TYPE (gnu_result),
1514 gnu_prefix, gnu_result);
1515
1516 *gnu_result_type_p = gnu_result_type;
1517 return gnu_result;
1518 }
1519 \f
1520 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Case_Statement,
1521 to a GCC tree, which is returned. */
1522
1523 static tree
1524 Case_Statement_to_gnu (Node_Id gnat_node)
1525 {
1526 tree gnu_result;
1527 tree gnu_expr;
1528 Node_Id gnat_when;
1529
1530 gnu_expr = gnat_to_gnu (Expression (gnat_node));
1531 gnu_expr = convert (get_base_type (TREE_TYPE (gnu_expr)), gnu_expr);
1532
1533 /* The range of values in a case statement is determined by the rules in
1534 RM 5.4(7-9). In almost all cases, this range is represented by the Etype
1535 of the expression. One exception arises in the case of a simple name that
1536 is parenthesized. This still has the Etype of the name, but since it is
1537 not a name, para 7 does not apply, and we need to go to the base type.
1538 This is the only case where parenthesization affects the dynamic
1539 semantics (i.e. the range of possible values at runtime that is covered
1540 by the others alternative.
1541
1542 Another exception is if the subtype of the expression is non-static. In
1543 that case, we also have to use the base type. */
1544 if (Paren_Count (Expression (gnat_node)) != 0
1545 || !Is_OK_Static_Subtype (Underlying_Type
1546 (Etype (Expression (gnat_node)))))
1547 gnu_expr = convert (get_base_type (TREE_TYPE (gnu_expr)), gnu_expr);
1548
1549 /* We build a SWITCH_EXPR that contains the code with interspersed
1550 CASE_LABEL_EXPRs for each label. */
1551
1552 push_stack (&gnu_switch_label_stack, NULL_TREE, create_artificial_label ());
1553 start_stmt_group ();
1554 for (gnat_when = First_Non_Pragma (Alternatives (gnat_node));
1555 Present (gnat_when);
1556 gnat_when = Next_Non_Pragma (gnat_when))
1557 {
1558 Node_Id gnat_choice;
1559 int choices_added = 0;
1560
1561 /* First compile all the different case choices for the current WHEN
1562 alternative. */
1563 for (gnat_choice = First (Discrete_Choices (gnat_when));
1564 Present (gnat_choice); gnat_choice = Next (gnat_choice))
1565 {
1566 tree gnu_low = NULL_TREE, gnu_high = NULL_TREE;
1567
1568 switch (Nkind (gnat_choice))
1569 {
1570 case N_Range:
1571 gnu_low = gnat_to_gnu (Low_Bound (gnat_choice));
1572 gnu_high = gnat_to_gnu (High_Bound (gnat_choice));
1573 break;
1574
1575 case N_Subtype_Indication:
1576 gnu_low = gnat_to_gnu (Low_Bound (Range_Expression
1577 (Constraint (gnat_choice))));
1578 gnu_high = gnat_to_gnu (High_Bound (Range_Expression
1579 (Constraint (gnat_choice))));
1580 break;
1581
1582 case N_Identifier:
1583 case N_Expanded_Name:
1584 /* This represents either a subtype range or a static value of
1585 some kind; Ekind says which. */
1586 if (IN (Ekind (Entity (gnat_choice)), Type_Kind))
1587 {
1588 tree gnu_type = get_unpadded_type (Entity (gnat_choice));
1589
1590 gnu_low = fold (TYPE_MIN_VALUE (gnu_type));
1591 gnu_high = fold (TYPE_MAX_VALUE (gnu_type));
1592 break;
1593 }
1594
1595 /* ... fall through ... */
1596
1597 case N_Character_Literal:
1598 case N_Integer_Literal:
1599 gnu_low = gnat_to_gnu (gnat_choice);
1600 break;
1601
1602 case N_Others_Choice:
1603 break;
1604
1605 default:
1606 gcc_unreachable ();
1607 }
1608
1609 /* If the case value is a subtype that raises Constraint_Error at
1610 run-time because of a wrong bound, then gnu_low or gnu_high is
1611 not transtaleted into an INTEGER_CST. In such a case, we need
1612 to ensure that the when statement is not added in the tree,
1613 otherwise it will crash the gimplifier. */
1614 if ((!gnu_low || TREE_CODE (gnu_low) == INTEGER_CST)
1615 && (!gnu_high || TREE_CODE (gnu_high) == INTEGER_CST))
1616 {
1617 add_stmt_with_node (build3 (CASE_LABEL_EXPR, void_type_node,
1618 gnu_low, gnu_high,
1619 create_artificial_label ()),
1620 gnat_choice);
1621 choices_added++;
1622 }
1623 }
1624
1625 /* Push a binding level here in case variables are declared as we want
1626 them to be local to this set of statements instead of to the block
1627 containing the Case statement. */
1628 if (choices_added > 0)
1629 {
1630 add_stmt (build_stmt_group (Statements (gnat_when), true));
1631 add_stmt (build1 (GOTO_EXPR, void_type_node,
1632 TREE_VALUE (gnu_switch_label_stack)));
1633 }
1634 }
1635
1636 /* Now emit a definition of the label all the cases branched to. */
1637 add_stmt (build1 (LABEL_EXPR, void_type_node,
1638 TREE_VALUE (gnu_switch_label_stack)));
1639 gnu_result = build3 (SWITCH_EXPR, TREE_TYPE (gnu_expr), gnu_expr,
1640 end_stmt_group (), NULL_TREE);
1641 pop_stack (&gnu_switch_label_stack);
1642
1643 return gnu_result;
1644 }
1645 \f
1646 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Loop_Statement,
1647 to a GCC tree, which is returned. */
1648
1649 static tree
1650 Loop_Statement_to_gnu (Node_Id gnat_node)
1651 {
1652 /* ??? It would be nice to use "build" here, but there's no build5. */
1653 tree gnu_loop_stmt = build_nt (LOOP_STMT, NULL_TREE, NULL_TREE,
1654 NULL_TREE, NULL_TREE, NULL_TREE);
1655 tree gnu_loop_var = NULL_TREE;
1656 Node_Id gnat_iter_scheme = Iteration_Scheme (gnat_node);
1657 tree gnu_cond_expr = NULL_TREE;
1658 tree gnu_result;
1659
1660 TREE_TYPE (gnu_loop_stmt) = void_type_node;
1661 TREE_SIDE_EFFECTS (gnu_loop_stmt) = 1;
1662 LOOP_STMT_LABEL (gnu_loop_stmt) = create_artificial_label ();
1663 set_expr_location_from_node (gnu_loop_stmt, gnat_node);
1664 Sloc_to_locus (Sloc (End_Label (gnat_node)),
1665 &DECL_SOURCE_LOCATION (LOOP_STMT_LABEL (gnu_loop_stmt)));
1666
1667 /* Save the end label of this LOOP_STMT in a stack so that the corresponding
1668 N_Exit_Statement can find it. */
1669 push_stack (&gnu_loop_label_stack, NULL_TREE,
1670 LOOP_STMT_LABEL (gnu_loop_stmt));
1671
1672 /* Set the condition that under which the loop should continue.
1673 For "LOOP .... END LOOP;" the condition is always true. */
1674 if (No (gnat_iter_scheme))
1675 ;
1676 /* The case "WHILE condition LOOP ..... END LOOP;" */
1677 else if (Present (Condition (gnat_iter_scheme)))
1678 LOOP_STMT_TOP_COND (gnu_loop_stmt)
1679 = gnat_to_gnu (Condition (gnat_iter_scheme));
1680 else
1681 {
1682 /* We have an iteration scheme. */
1683 Node_Id gnat_loop_spec = Loop_Parameter_Specification (gnat_iter_scheme);
1684 Entity_Id gnat_loop_var = Defining_Entity (gnat_loop_spec);
1685 Entity_Id gnat_type = Etype (gnat_loop_var);
1686 tree gnu_type = get_unpadded_type (gnat_type);
1687 tree gnu_low = TYPE_MIN_VALUE (gnu_type);
1688 tree gnu_high = TYPE_MAX_VALUE (gnu_type);
1689 bool reversep = Reverse_Present (gnat_loop_spec);
1690 tree gnu_first = reversep ? gnu_high : gnu_low;
1691 tree gnu_last = reversep ? gnu_low : gnu_high;
1692 enum tree_code end_code = reversep ? GE_EXPR : LE_EXPR;
1693 tree gnu_base_type = get_base_type (gnu_type);
1694 tree gnu_limit = (reversep ? TYPE_MIN_VALUE (gnu_base_type)
1695 : TYPE_MAX_VALUE (gnu_base_type));
1696
1697 /* We know the loop variable will not overflow if GNU_LAST is a constant
1698 and is not equal to GNU_LIMIT. If it might overflow, we have to move
1699 the limit test to the end of the loop. In that case, we have to test
1700 for an empty loop outside the loop. */
1701 if (TREE_CODE (gnu_last) != INTEGER_CST
1702 || TREE_CODE (gnu_limit) != INTEGER_CST
1703 || tree_int_cst_equal (gnu_last, gnu_limit))
1704 {
1705 gnu_cond_expr
1706 = build3 (COND_EXPR, void_type_node,
1707 build_binary_op (LE_EXPR, integer_type_node,
1708 gnu_low, gnu_high),
1709 NULL_TREE, alloc_stmt_list ());
1710 set_expr_location_from_node (gnu_cond_expr, gnat_loop_spec);
1711 }
1712
1713 /* Open a new nesting level that will surround the loop to declare the
1714 loop index variable. */
1715 start_stmt_group ();
1716 gnat_pushlevel ();
1717
1718 /* Declare the loop index and set it to its initial value. */
1719 gnu_loop_var = gnat_to_gnu_entity (gnat_loop_var, gnu_first, 1);
1720 if (DECL_BY_REF_P (gnu_loop_var))
1721 gnu_loop_var = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_loop_var);
1722
1723 /* The loop variable might be a padded type, so use `convert' to get a
1724 reference to the inner variable if so. */
1725 gnu_loop_var = convert (get_base_type (gnu_type), gnu_loop_var);
1726
1727 /* Set either the top or bottom exit condition as appropriate depending
1728 on whether or not we know an overflow cannot occur. */
1729 if (gnu_cond_expr)
1730 LOOP_STMT_BOT_COND (gnu_loop_stmt)
1731 = build_binary_op (NE_EXPR, integer_type_node,
1732 gnu_loop_var, gnu_last);
1733 else
1734 LOOP_STMT_TOP_COND (gnu_loop_stmt)
1735 = build_binary_op (end_code, integer_type_node,
1736 gnu_loop_var, gnu_last);
1737
1738 LOOP_STMT_UPDATE (gnu_loop_stmt)
1739 = build_binary_op (reversep ? PREDECREMENT_EXPR
1740 : PREINCREMENT_EXPR,
1741 TREE_TYPE (gnu_loop_var),
1742 gnu_loop_var,
1743 convert (TREE_TYPE (gnu_loop_var),
1744 integer_one_node));
1745 set_expr_location_from_node (LOOP_STMT_UPDATE (gnu_loop_stmt),
1746 gnat_iter_scheme);
1747 }
1748
1749 /* If the loop was named, have the name point to this loop. In this case,
1750 the association is not a ..._DECL node, but the end label from this
1751 LOOP_STMT. */
1752 if (Present (Identifier (gnat_node)))
1753 save_gnu_tree (Entity (Identifier (gnat_node)),
1754 LOOP_STMT_LABEL (gnu_loop_stmt), true);
1755
1756 /* Make the loop body into its own block, so any allocated storage will be
1757 released every iteration. This is needed for stack allocation. */
1758 LOOP_STMT_BODY (gnu_loop_stmt)
1759 = build_stmt_group (Statements (gnat_node), true);
1760
1761 /* If we declared a variable, then we are in a statement group for that
1762 declaration. Add the LOOP_STMT to it and make that the "loop". */
1763 if (gnu_loop_var)
1764 {
1765 add_stmt (gnu_loop_stmt);
1766 gnat_poplevel ();
1767 gnu_loop_stmt = end_stmt_group ();
1768 }
1769
1770 /* If we have an outer COND_EXPR, that's our result and this loop is its
1771 "true" statement. Otherwise, the result is the LOOP_STMT. */
1772 if (gnu_cond_expr)
1773 {
1774 COND_EXPR_THEN (gnu_cond_expr) = gnu_loop_stmt;
1775 gnu_result = gnu_cond_expr;
1776 recalculate_side_effects (gnu_cond_expr);
1777 }
1778 else
1779 gnu_result = gnu_loop_stmt;
1780
1781 pop_stack (&gnu_loop_label_stack);
1782
1783 return gnu_result;
1784 }
1785 \f
1786 /* Emit statements to establish __gnat_handle_vms_condition as a VMS condition
1787 handler for the current function. */
1788
1789 /* This is implemented by issuing a call to the appropriate VMS specific
1790 builtin. To avoid having VMS specific sections in the global gigi decls
1791 array, we maintain the decls of interest here. We can't declare them
1792 inside the function because we must mark them never to be GC'd, which we
1793 can only do at the global level. */
1794
1795 static GTY(()) tree vms_builtin_establish_handler_decl = NULL_TREE;
1796 static GTY(()) tree gnat_vms_condition_handler_decl = NULL_TREE;
1797
1798 static void
1799 establish_gnat_vms_condition_handler (void)
1800 {
1801 tree establish_stmt;
1802
1803 /* Elaborate the required decls on the first call. Check on the decl for
1804 the gnat condition handler to decide, as this is one we create so we are
1805 sure that it will be non null on subsequent calls. The builtin decl is
1806 looked up so remains null on targets where it is not implemented yet. */
1807 if (gnat_vms_condition_handler_decl == NULL_TREE)
1808 {
1809 vms_builtin_establish_handler_decl
1810 = builtin_decl_for
1811 (get_identifier ("__builtin_establish_vms_condition_handler"));
1812
1813 gnat_vms_condition_handler_decl
1814 = create_subprog_decl (get_identifier ("__gnat_handle_vms_condition"),
1815 NULL_TREE,
1816 build_function_type_list (integer_type_node,
1817 ptr_void_type_node,
1818 ptr_void_type_node,
1819 NULL_TREE),
1820 NULL_TREE, 0, 1, 1, 0, Empty);
1821 }
1822
1823 /* Do nothing if the establish builtin is not available, which might happen
1824 on targets where the facility is not implemented. */
1825 if (vms_builtin_establish_handler_decl == NULL_TREE)
1826 return;
1827
1828 establish_stmt
1829 = build_call_1_expr (vms_builtin_establish_handler_decl,
1830 build_unary_op
1831 (ADDR_EXPR, NULL_TREE,
1832 gnat_vms_condition_handler_decl));
1833
1834 add_stmt (establish_stmt);
1835 }
1836 \f
1837 /* Subroutine of gnat_to_gnu to process gnat_node, an N_Subprogram_Body. We
1838 don't return anything. */
1839
1840 static void
1841 Subprogram_Body_to_gnu (Node_Id gnat_node)
1842 {
1843 /* Defining identifier of a parameter to the subprogram. */
1844 Entity_Id gnat_param;
1845 /* The defining identifier for the subprogram body. Note that if a
1846 specification has appeared before for this body, then the identifier
1847 occurring in that specification will also be a defining identifier and all
1848 the calls to this subprogram will point to that specification. */
1849 Entity_Id gnat_subprog_id
1850 = (Present (Corresponding_Spec (gnat_node))
1851 ? Corresponding_Spec (gnat_node) : Defining_Entity (gnat_node));
1852 /* The FUNCTION_DECL node corresponding to the subprogram spec. */
1853 tree gnu_subprog_decl;
1854 /* The FUNCTION_TYPE node corresponding to the subprogram spec. */
1855 tree gnu_subprog_type;
1856 tree gnu_cico_list;
1857 tree gnu_result;
1858 VEC(parm_attr,gc) *cache;
1859
1860 /* If this is a generic object or if it has been eliminated,
1861 ignore it. */
1862 if (Ekind (gnat_subprog_id) == E_Generic_Procedure
1863 || Ekind (gnat_subprog_id) == E_Generic_Function
1864 || Is_Eliminated (gnat_subprog_id))
1865 return;
1866
1867 /* If this subprogram acts as its own spec, define it. Otherwise, just get
1868 the already-elaborated tree node. However, if this subprogram had its
1869 elaboration deferred, we will already have made a tree node for it. So
1870 treat it as not being defined in that case. Such a subprogram cannot
1871 have an address clause or a freeze node, so this test is safe, though it
1872 does disable some otherwise-useful error checking. */
1873 gnu_subprog_decl
1874 = gnat_to_gnu_entity (gnat_subprog_id, NULL_TREE,
1875 Acts_As_Spec (gnat_node)
1876 && !present_gnu_tree (gnat_subprog_id));
1877
1878 gnu_subprog_type = TREE_TYPE (gnu_subprog_decl);
1879
1880 /* Propagate the debug mode. */
1881 if (!Needs_Debug_Info (gnat_subprog_id))
1882 DECL_IGNORED_P (gnu_subprog_decl) = 1;
1883
1884 /* Set the line number in the decl to correspond to that of the body so that
1885 the line number notes are written correctly. */
1886 Sloc_to_locus (Sloc (gnat_node), &DECL_SOURCE_LOCATION (gnu_subprog_decl));
1887
1888 /* Initialize the information structure for the function. */
1889 allocate_struct_function (gnu_subprog_decl, false);
1890 DECL_STRUCT_FUNCTION (gnu_subprog_decl)->language
1891 = GGC_CNEW (struct language_function);
1892
1893 begin_subprog_body (gnu_subprog_decl);
1894 gnu_cico_list = TYPE_CI_CO_LIST (gnu_subprog_type);
1895
1896 /* If there are Out parameters, we need to ensure that the return statement
1897 properly copies them out. We do this by making a new block and converting
1898 any inner return into a goto to a label at the end of the block. */
1899 push_stack (&gnu_return_label_stack, NULL_TREE,
1900 gnu_cico_list ? create_artificial_label () : NULL_TREE);
1901
1902 /* Get a tree corresponding to the code for the subprogram. */
1903 start_stmt_group ();
1904 gnat_pushlevel ();
1905
1906 /* See if there are any parameters for which we don't yet have GCC entities.
1907 These must be for Out parameters for which we will be making VAR_DECL
1908 nodes here. Fill them in to TYPE_CI_CO_LIST, which must contain the empty
1909 entry as well. We can match up the entries because TYPE_CI_CO_LIST is in
1910 the order of the parameters. */
1911 for (gnat_param = First_Formal_With_Extras (gnat_subprog_id);
1912 Present (gnat_param);
1913 gnat_param = Next_Formal_With_Extras (gnat_param))
1914 if (!present_gnu_tree (gnat_param))
1915 {
1916 /* Skip any entries that have been already filled in; they must
1917 correspond to In Out parameters. */
1918 for (; gnu_cico_list && TREE_VALUE (gnu_cico_list);
1919 gnu_cico_list = TREE_CHAIN (gnu_cico_list))
1920 ;
1921
1922 /* Do any needed references for padded types. */
1923 TREE_VALUE (gnu_cico_list)
1924 = convert (TREE_TYPE (TREE_PURPOSE (gnu_cico_list)),
1925 gnat_to_gnu_entity (gnat_param, NULL_TREE, 1));
1926 }
1927
1928 /* On VMS, establish our condition handler to possibly turn a condition into
1929 the corresponding exception if the subprogram has a foreign convention or
1930 is exported.
1931
1932 To ensure proper execution of local finalizations on condition instances,
1933 we must turn a condition into the corresponding exception even if there
1934 is no applicable Ada handler, and need at least one condition handler per
1935 possible call chain involving GNAT code. OTOH, establishing the handler
1936 has a cost so we want to minimize the number of subprograms into which
1937 this happens. The foreign or exported condition is expected to satisfy
1938 all the constraints. */
1939 if (TARGET_ABI_OPEN_VMS
1940 && (Has_Foreign_Convention (gnat_node) || Is_Exported (gnat_node)))
1941 establish_gnat_vms_condition_handler ();
1942
1943 process_decls (Declarations (gnat_node), Empty, Empty, true, true);
1944
1945 /* Generate the code of the subprogram itself. A return statement will be
1946 present and any Out parameters will be handled there. */
1947 add_stmt (gnat_to_gnu (Handled_Statement_Sequence (gnat_node)));
1948 gnat_poplevel ();
1949 gnu_result = end_stmt_group ();
1950
1951 /* If we populated the parameter attributes cache, we need to make sure
1952 that the cached expressions are evaluated on all possible paths. */
1953 cache = DECL_STRUCT_FUNCTION (gnu_subprog_decl)->language->parm_attr_cache;
1954 if (cache)
1955 {
1956 struct parm_attr *pa;
1957 int i;
1958
1959 start_stmt_group ();
1960
1961 for (i = 0; VEC_iterate (parm_attr, cache, i, pa); i++)
1962 {
1963 if (pa->first)
1964 add_stmt (pa->first);
1965 if (pa->last)
1966 add_stmt (pa->last);
1967 if (pa->length)
1968 add_stmt (pa->length);
1969 }
1970
1971 add_stmt (gnu_result);
1972 gnu_result = end_stmt_group ();
1973 }
1974
1975 /* If we made a special return label, we need to make a block that contains
1976 the definition of that label and the copying to the return value. That
1977 block first contains the function, then the label and copy statement. */
1978 if (TREE_VALUE (gnu_return_label_stack))
1979 {
1980 tree gnu_retval;
1981
1982 start_stmt_group ();
1983 gnat_pushlevel ();
1984 add_stmt (gnu_result);
1985 add_stmt (build1 (LABEL_EXPR, void_type_node,
1986 TREE_VALUE (gnu_return_label_stack)));
1987
1988 gnu_cico_list = TYPE_CI_CO_LIST (gnu_subprog_type);
1989 if (list_length (gnu_cico_list) == 1)
1990 gnu_retval = TREE_VALUE (gnu_cico_list);
1991 else
1992 gnu_retval = gnat_build_constructor (TREE_TYPE (gnu_subprog_type),
1993 gnu_cico_list);
1994
1995 if (DECL_P (gnu_retval) && DECL_BY_REF_P (gnu_retval))
1996 gnu_retval = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_retval);
1997
1998 add_stmt_with_node
1999 (build_return_expr (DECL_RESULT (gnu_subprog_decl), gnu_retval),
2000 gnat_node);
2001 gnat_poplevel ();
2002 gnu_result = end_stmt_group ();
2003 }
2004
2005 pop_stack (&gnu_return_label_stack);
2006
2007 /* Set the end location. */
2008 Sloc_to_locus
2009 ((Present (End_Label (Handled_Statement_Sequence (gnat_node)))
2010 ? Sloc (End_Label (Handled_Statement_Sequence (gnat_node)))
2011 : Sloc (gnat_node)),
2012 &DECL_STRUCT_FUNCTION (gnu_subprog_decl)->function_end_locus);
2013
2014 end_subprog_body (gnu_result, false);
2015
2016 /* Disconnect the trees for parameters that we made variables for from the
2017 GNAT entities since these are unusable after we end the function. */
2018 for (gnat_param = First_Formal_With_Extras (gnat_subprog_id);
2019 Present (gnat_param);
2020 gnat_param = Next_Formal_With_Extras (gnat_param))
2021 if (TREE_CODE (get_gnu_tree (gnat_param)) == VAR_DECL)
2022 save_gnu_tree (gnat_param, NULL_TREE, false);
2023
2024 if (DECL_FUNCTION_STUB (gnu_subprog_decl))
2025 build_function_stub (gnu_subprog_decl, gnat_subprog_id);
2026
2027 mark_out_of_scope (Defining_Unit_Name (Specification (gnat_node)));
2028 }
2029 \f
2030 /* Subroutine of gnat_to_gnu to translate gnat_node, either an N_Function_Call
2031 or an N_Procedure_Call_Statement, to a GCC tree, which is returned.
2032 GNU_RESULT_TYPE_P is a pointer to where we should place the result type.
2033 If GNU_TARGET is non-null, this must be a function call and the result
2034 of the call is to be placed into that object. */
2035
2036 static tree
2037 call_to_gnu (Node_Id gnat_node, tree *gnu_result_type_p, tree gnu_target)
2038 {
2039 tree gnu_result;
2040 /* The GCC node corresponding to the GNAT subprogram name. This can either
2041 be a FUNCTION_DECL node if we are dealing with a standard subprogram call,
2042 or an indirect reference expression (an INDIRECT_REF node) pointing to a
2043 subprogram. */
2044 tree gnu_subprog_node = gnat_to_gnu (Name (gnat_node));
2045 /* The FUNCTION_TYPE node giving the GCC type of the subprogram. */
2046 tree gnu_subprog_type = TREE_TYPE (gnu_subprog_node);
2047 tree gnu_subprog_addr = build_unary_op (ADDR_EXPR, NULL_TREE,
2048 gnu_subprog_node);
2049 Entity_Id gnat_formal;
2050 Node_Id gnat_actual;
2051 tree gnu_actual_list = NULL_TREE;
2052 tree gnu_name_list = NULL_TREE;
2053 tree gnu_before_list = NULL_TREE;
2054 tree gnu_after_list = NULL_TREE;
2055 tree gnu_subprog_call;
2056
2057 switch (Nkind (Name (gnat_node)))
2058 {
2059 case N_Identifier:
2060 case N_Operator_Symbol:
2061 case N_Expanded_Name:
2062 case N_Attribute_Reference:
2063 if (Is_Eliminated (Entity (Name (gnat_node))))
2064 Eliminate_Error_Msg (gnat_node, Entity (Name (gnat_node)));
2065 }
2066
2067 gcc_assert (TREE_CODE (gnu_subprog_type) == FUNCTION_TYPE);
2068
2069 /* If we are calling a stubbed function, make this into a raise of
2070 Program_Error. Elaborate all our args first. */
2071 if (TREE_CODE (gnu_subprog_node) == FUNCTION_DECL
2072 && DECL_STUBBED_P (gnu_subprog_node))
2073 {
2074 for (gnat_actual = First_Actual (gnat_node);
2075 Present (gnat_actual);
2076 gnat_actual = Next_Actual (gnat_actual))
2077 add_stmt (gnat_to_gnu (gnat_actual));
2078
2079 {
2080 tree call_expr
2081 = build_call_raise (PE_Stubbed_Subprogram_Called, gnat_node,
2082 N_Raise_Program_Error);
2083
2084 if (Nkind (gnat_node) == N_Function_Call && !gnu_target)
2085 {
2086 *gnu_result_type_p = TREE_TYPE (gnu_subprog_type);
2087 return build1 (NULL_EXPR, *gnu_result_type_p, call_expr);
2088 }
2089 else
2090 return call_expr;
2091 }
2092 }
2093
2094 /* If we are calling by supplying a pointer to a target, set up that
2095 pointer as the first argument. Use GNU_TARGET if one was passed;
2096 otherwise, make a target by building a variable of the maximum size
2097 of the type. */
2098 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
2099 {
2100 tree gnu_real_ret_type
2101 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (gnu_subprog_type)));
2102
2103 if (!gnu_target)
2104 {
2105 tree gnu_obj_type
2106 = maybe_pad_type (gnu_real_ret_type,
2107 max_size (TYPE_SIZE (gnu_real_ret_type), true),
2108 0, Etype (Name (gnat_node)), "PAD", false,
2109 false, false);
2110
2111 /* ??? We may be about to create a static temporary if we happen to
2112 be at the global binding level. That's a regression from what
2113 the 3.x back-end would generate in the same situation, but we
2114 don't have a mechanism in Gigi for creating automatic variables
2115 in the elaboration routines. */
2116 gnu_target
2117 = create_var_decl (create_tmp_var_name ("LR"), NULL, gnu_obj_type,
2118 NULL, false, false, false, false, NULL,
2119 gnat_node);
2120 }
2121
2122 gnu_actual_list
2123 = tree_cons (NULL_TREE,
2124 build_unary_op (ADDR_EXPR, NULL_TREE,
2125 unchecked_convert (gnu_real_ret_type,
2126 gnu_target,
2127 false)),
2128 NULL_TREE);
2129
2130 }
2131
2132 /* The only way we can be making a call via an access type is if Name is an
2133 explicit dereference. In that case, get the list of formal args from the
2134 type the access type is pointing to. Otherwise, get the formals from
2135 entity being called. */
2136 if (Nkind (Name (gnat_node)) == N_Explicit_Dereference)
2137 gnat_formal = First_Formal_With_Extras (Etype (Name (gnat_node)));
2138 else if (Nkind (Name (gnat_node)) == N_Attribute_Reference)
2139 /* Assume here that this must be 'Elab_Body or 'Elab_Spec. */
2140 gnat_formal = 0;
2141 else
2142 gnat_formal = First_Formal_With_Extras (Entity (Name (gnat_node)));
2143
2144 /* Create the list of the actual parameters as GCC expects it, namely a chain
2145 of TREE_LIST nodes in which the TREE_VALUE field of each node is a
2146 parameter-expression and the TREE_PURPOSE field is null. Skip Out
2147 parameters not passed by reference and don't need to be copied in. */
2148 for (gnat_actual = First_Actual (gnat_node);
2149 Present (gnat_actual);
2150 gnat_formal = Next_Formal_With_Extras (gnat_formal),
2151 gnat_actual = Next_Actual (gnat_actual))
2152 {
2153 tree gnu_formal
2154 = (present_gnu_tree (gnat_formal)
2155 ? get_gnu_tree (gnat_formal) : NULL_TREE);
2156 tree gnu_formal_type = gnat_to_gnu_type (Etype (gnat_formal));
2157 /* We must suppress conversions that can cause the creation of a
2158 temporary in the Out or In Out case because we need the real
2159 object in this case, either to pass its address if it's passed
2160 by reference or as target of the back copy done after the call
2161 if it uses the copy-in copy-out mechanism. We do it in the In
2162 case too, except for an unchecked conversion because it alone
2163 can cause the actual to be misaligned and the addressability
2164 test is applied to the real object. */
2165 bool suppress_type_conversion
2166 = ((Nkind (gnat_actual) == N_Unchecked_Type_Conversion
2167 && Ekind (gnat_formal) != E_In_Parameter)
2168 || (Nkind (gnat_actual) == N_Type_Conversion
2169 && Is_Composite_Type (Underlying_Type (Etype (gnat_formal)))));
2170 Node_Id gnat_name = (suppress_type_conversion
2171 ? Expression (gnat_actual) : gnat_actual);
2172 tree gnu_name = gnat_to_gnu (gnat_name), gnu_name_type;
2173 tree gnu_actual;
2174
2175 /* If it's possible we may need to use this expression twice, make sure
2176 that any side-effects are handled via SAVE_EXPRs. Likewise if we need
2177 to force side-effects before the call.
2178 ??? This is more conservative than we need since we don't need to do
2179 this for pass-by-ref with no conversion. */
2180 if (Ekind (gnat_formal) != E_In_Parameter)
2181 gnu_name = gnat_stabilize_reference (gnu_name, true);
2182
2183 /* If we are passing a non-addressable parameter by reference, pass the
2184 address of a copy. In the Out or In Out case, set up to copy back
2185 out after the call. */
2186 if (gnu_formal
2187 && (DECL_BY_REF_P (gnu_formal)
2188 || (TREE_CODE (gnu_formal) == PARM_DECL
2189 && (DECL_BY_COMPONENT_PTR_P (gnu_formal)
2190 || (DECL_BY_DESCRIPTOR_P (gnu_formal)))))
2191 && (gnu_name_type = gnat_to_gnu_type (Etype (gnat_name)))
2192 && !addressable_p (gnu_name, gnu_name_type))
2193 {
2194 tree gnu_copy = gnu_name, gnu_temp;
2195
2196 /* If the type is by_reference, a copy is not allowed. */
2197 if (Is_By_Reference_Type (Etype (gnat_formal)))
2198 post_error
2199 ("misaligned actual cannot be passed by reference", gnat_actual);
2200
2201 /* For users of Starlet we issue a warning because the
2202 interface apparently assumes that by-ref parameters
2203 outlive the procedure invocation. The code still
2204 will not work as intended, but we cannot do much
2205 better since other low-level parts of the back-end
2206 would allocate temporaries at will because of the
2207 misalignment if we did not do so here. */
2208 else if (Is_Valued_Procedure (Entity (Name (gnat_node))))
2209 {
2210 post_error
2211 ("?possible violation of implicit assumption", gnat_actual);
2212 post_error_ne
2213 ("?made by pragma Import_Valued_Procedure on &", gnat_actual,
2214 Entity (Name (gnat_node)));
2215 post_error_ne ("?because of misalignment of &", gnat_actual,
2216 gnat_formal);
2217 }
2218
2219 /* Remove any unpadding from the object and reset the copy. */
2220 if (TREE_CODE (gnu_name) == COMPONENT_REF
2221 && ((TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_name, 0)))
2222 == RECORD_TYPE)
2223 && (TYPE_IS_PADDING_P
2224 (TREE_TYPE (TREE_OPERAND (gnu_name, 0))))))
2225 gnu_name = gnu_copy = TREE_OPERAND (gnu_name, 0);
2226
2227 /* Otherwise convert to the nominal type of the object if it's
2228 a record type. There are several cases in which we need to
2229 make the temporary using this type instead of the actual type
2230 of the object if they are distinct, because the expectations
2231 of the callee would otherwise not be met:
2232 - if it's a justified modular type,
2233 - if the actual type is a smaller packable version of it. */
2234 else if (TREE_CODE (gnu_name_type) == RECORD_TYPE
2235 && (TYPE_JUSTIFIED_MODULAR_P (gnu_name_type)
2236 || smaller_packable_type_p (TREE_TYPE (gnu_name),
2237 gnu_name_type)))
2238 gnu_name = convert (gnu_name_type, gnu_name);
2239
2240 /* Make a SAVE_EXPR to both properly account for potential side
2241 effects and handle the creation of a temporary copy. Special
2242 code in gnat_gimplify_expr ensures that the same temporary is
2243 used as the object and copied back after the call if needed. */
2244 gnu_name = build1 (SAVE_EXPR, TREE_TYPE (gnu_name), gnu_name);
2245 TREE_SIDE_EFFECTS (gnu_name) = 1;
2246
2247 /* Set up to move the copy back to the original. */
2248 if (Ekind (gnat_formal) != E_In_Parameter)
2249 {
2250 gnu_temp = build_binary_op (MODIFY_EXPR, NULL_TREE, gnu_copy,
2251 gnu_name);
2252 set_expr_location_from_node (gnu_temp, gnat_actual);
2253 append_to_statement_list (gnu_temp, &gnu_after_list);
2254 }
2255 }
2256
2257 /* Start from the real object and build the actual. */
2258 gnu_actual = gnu_name;
2259
2260 /* If this was a procedure call, we may not have removed any padding.
2261 So do it here for the part we will use as an input, if any. */
2262 if (Ekind (gnat_formal) != E_Out_Parameter
2263 && TREE_CODE (TREE_TYPE (gnu_actual)) == RECORD_TYPE
2264 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_actual)))
2265 gnu_actual = convert (get_unpadded_type (Etype (gnat_actual)),
2266 gnu_actual);
2267
2268 /* Do any needed conversions for the actual and make sure that it is
2269 in range of the formal's type. */
2270 if (suppress_type_conversion)
2271 {
2272 /* Put back the conversion we suppressed above in the computation
2273 of the real object. Note that we treat a conversion between
2274 aggregate types as if it is an unchecked conversion here. */
2275 gnu_actual
2276 = unchecked_convert (gnat_to_gnu_type (Etype (gnat_actual)),
2277 gnu_actual,
2278 (Nkind (gnat_actual)
2279 == N_Unchecked_Type_Conversion)
2280 && No_Truncation (gnat_actual));
2281
2282 if (Ekind (gnat_formal) != E_Out_Parameter
2283 && Do_Range_Check (gnat_actual))
2284 gnu_actual = emit_range_check (gnu_actual, Etype (gnat_formal));
2285 }
2286 else
2287 {
2288 if (Ekind (gnat_formal) != E_Out_Parameter
2289 && Do_Range_Check (gnat_actual))
2290 gnu_actual = emit_range_check (gnu_actual, Etype (gnat_formal));
2291
2292 /* We may have suppressed a conversion to the Etype of the actual
2293 since the parent is a procedure call. So put it back here.
2294 ??? We use the reverse order compared to the case above because
2295 of an awkward interaction with the check and actually don't put
2296 back the conversion at all if a check is emitted. This is also
2297 done for the conversion to the formal's type just below. */
2298 if (TREE_CODE (gnu_actual) != SAVE_EXPR)
2299 gnu_actual = convert (gnat_to_gnu_type (Etype (gnat_actual)),
2300 gnu_actual);
2301 }
2302
2303 if (TREE_CODE (gnu_actual) != SAVE_EXPR)
2304 gnu_actual = convert (gnu_formal_type, gnu_actual);
2305
2306 /* Unless this is an In parameter, we must remove any justified modular
2307 building from GNU_NAME to get an lvalue. */
2308 if (Ekind (gnat_formal) != E_In_Parameter
2309 && TREE_CODE (gnu_name) == CONSTRUCTOR
2310 && TREE_CODE (TREE_TYPE (gnu_name)) == RECORD_TYPE
2311 && TYPE_JUSTIFIED_MODULAR_P (TREE_TYPE (gnu_name)))
2312 gnu_name = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_name))),
2313 gnu_name);
2314
2315 /* If we have not saved a GCC object for the formal, it means it is an
2316 Out parameter not passed by reference and that does not need to be
2317 copied in. Otherwise, look at the PARM_DECL to see if it is passed by
2318 reference. */
2319 if (gnu_formal
2320 && TREE_CODE (gnu_formal) == PARM_DECL
2321 && DECL_BY_REF_P (gnu_formal))
2322 {
2323 if (Ekind (gnat_formal) != E_In_Parameter)
2324 {
2325 /* In Out or Out parameters passed by reference don't use the
2326 copy-in copy-out mechanism so the address of the real object
2327 must be passed to the function. */
2328 gnu_actual = gnu_name;
2329
2330 /* If we have a padded type, be sure we've removed padding. */
2331 if (TREE_CODE (TREE_TYPE (gnu_actual)) == RECORD_TYPE
2332 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_actual))
2333 && TREE_CODE (gnu_actual) != SAVE_EXPR)
2334 gnu_actual = convert (get_unpadded_type (Etype (gnat_actual)),
2335 gnu_actual);
2336
2337 /* If we have the constructed subtype of an aliased object
2338 with an unconstrained nominal subtype, the type of the
2339 actual includes the template, although it is formally
2340 constrained. So we need to convert it back to the real
2341 constructed subtype to retrieve the constrained part
2342 and takes its address. */
2343 if (TREE_CODE (TREE_TYPE (gnu_actual)) == RECORD_TYPE
2344 && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (gnu_actual))
2345 && TREE_CODE (gnu_actual) != SAVE_EXPR
2346 && Is_Constr_Subt_For_UN_Aliased (Etype (gnat_actual))
2347 && Is_Array_Type (Etype (gnat_actual)))
2348 gnu_actual = convert (gnat_to_gnu_type (Etype (gnat_actual)),
2349 gnu_actual);
2350 }
2351
2352 /* The symmetry of the paths to the type of an entity is broken here
2353 since arguments don't know that they will be passed by ref. */
2354 gnu_formal_type = TREE_TYPE (get_gnu_tree (gnat_formal));
2355 gnu_actual = build_unary_op (ADDR_EXPR, gnu_formal_type, gnu_actual);
2356 }
2357 else if (gnu_formal
2358 && TREE_CODE (gnu_formal) == PARM_DECL
2359 && DECL_BY_COMPONENT_PTR_P (gnu_formal))
2360 {
2361 gnu_formal_type = TREE_TYPE (get_gnu_tree (gnat_formal));
2362 gnu_actual = maybe_implicit_deref (gnu_actual);
2363 gnu_actual = maybe_unconstrained_array (gnu_actual);
2364
2365 if (TREE_CODE (gnu_formal_type) == RECORD_TYPE
2366 && TYPE_IS_PADDING_P (gnu_formal_type))
2367 {
2368 gnu_formal_type = TREE_TYPE (TYPE_FIELDS (gnu_formal_type));
2369 gnu_actual = convert (gnu_formal_type, gnu_actual);
2370 }
2371
2372 /* Take the address of the object and convert to the proper pointer
2373 type. We'd like to actually compute the address of the beginning
2374 of the array using an ADDR_EXPR of an ARRAY_REF, but there's a
2375 possibility that the ARRAY_REF might return a constant and we'd be
2376 getting the wrong address. Neither approach is exactly correct,
2377 but this is the most likely to work in all cases. */
2378 gnu_actual = convert (gnu_formal_type,
2379 build_unary_op (ADDR_EXPR, NULL_TREE,
2380 gnu_actual));
2381 }
2382 else if (gnu_formal
2383 && TREE_CODE (gnu_formal) == PARM_DECL
2384 && DECL_BY_DESCRIPTOR_P (gnu_formal))
2385 {
2386 /* If arg is 'Null_Parameter, pass zero descriptor. */
2387 if ((TREE_CODE (gnu_actual) == INDIRECT_REF
2388 || TREE_CODE (gnu_actual) == UNCONSTRAINED_ARRAY_REF)
2389 && TREE_PRIVATE (gnu_actual))
2390 gnu_actual = convert (DECL_ARG_TYPE (get_gnu_tree (gnat_formal)),
2391 integer_zero_node);
2392 else
2393 gnu_actual = build_unary_op (ADDR_EXPR, NULL_TREE,
2394 fill_vms_descriptor (gnu_actual,
2395 gnat_formal));
2396 }
2397 else
2398 {
2399 tree gnu_actual_size = TYPE_SIZE (TREE_TYPE (gnu_actual));
2400
2401 if (Ekind (gnat_formal) != E_In_Parameter)
2402 gnu_name_list = tree_cons (NULL_TREE, gnu_name, gnu_name_list);
2403
2404 if (!gnu_formal || TREE_CODE (gnu_formal) != PARM_DECL)
2405 continue;
2406
2407 /* If this is 'Null_Parameter, pass a zero even though we are
2408 dereferencing it. */
2409 else if (TREE_CODE (gnu_actual) == INDIRECT_REF
2410 && TREE_PRIVATE (gnu_actual)
2411 && host_integerp (gnu_actual_size, 1)
2412 && 0 >= compare_tree_int (gnu_actual_size,
2413 BITS_PER_WORD))
2414 gnu_actual
2415 = unchecked_convert (DECL_ARG_TYPE (gnu_formal),
2416 convert (gnat_type_for_size
2417 (tree_low_cst (gnu_actual_size, 1),
2418 1),
2419 integer_zero_node),
2420 false);
2421 else
2422 gnu_actual = convert (DECL_ARG_TYPE (gnu_formal), gnu_actual);
2423 }
2424
2425 gnu_actual_list = tree_cons (NULL_TREE, gnu_actual, gnu_actual_list);
2426 }
2427
2428 gnu_subprog_call = build_call_list (TREE_TYPE (gnu_subprog_type),
2429 gnu_subprog_addr,
2430 nreverse (gnu_actual_list));
2431 set_expr_location_from_node (gnu_subprog_call, gnat_node);
2432
2433 /* If we return by passing a target, the result is the target after the
2434 call. We must not emit the call directly here because this might be
2435 evaluated as part of an expression with conditions to control whether
2436 the call should be emitted or not. */
2437 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
2438 {
2439 /* Conceptually, what we need is a COMPOUND_EXPR with the call followed
2440 by the target object converted to the proper type. Doing so would
2441 potentially be very inefficient, however, as this expression might
2442 end up wrapped into an outer SAVE_EXPR later on, which would incur a
2443 pointless temporary copy of the whole object.
2444
2445 What we do instead is build a COMPOUND_EXPR returning the address of
2446 the target, and then dereference. Wrapping the COMPOUND_EXPR into a
2447 SAVE_EXPR later on then only incurs a pointer copy. */
2448
2449 tree gnu_result_type
2450 = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (gnu_subprog_type)));
2451
2452 /* Build and return
2453 (result_type) *[gnu_subprog_call (&gnu_target, ...), &gnu_target] */
2454
2455 tree gnu_target_address
2456 = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_target);
2457 set_expr_location_from_node (gnu_target_address, gnat_node);
2458
2459 gnu_result
2460 = build2 (COMPOUND_EXPR, TREE_TYPE (gnu_target_address),
2461 gnu_subprog_call, gnu_target_address);
2462
2463 gnu_result
2464 = unchecked_convert (gnu_result_type,
2465 build_unary_op (INDIRECT_REF, NULL_TREE,
2466 gnu_result),
2467 false);
2468
2469 *gnu_result_type_p = gnu_result_type;
2470 return gnu_result;
2471 }
2472
2473 /* If it is a function call, the result is the call expression unless
2474 a target is specified, in which case we copy the result into the target
2475 and return the assignment statement. */
2476 else if (Nkind (gnat_node) == N_Function_Call)
2477 {
2478 gnu_result = gnu_subprog_call;
2479
2480 /* If the function returns an unconstrained array or by reference,
2481 we have to de-dereference the pointer. */
2482 if (TYPE_RETURNS_UNCONSTRAINED_P (gnu_subprog_type)
2483 || TYPE_RETURNS_BY_REF_P (gnu_subprog_type))
2484 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_result);
2485
2486 if (gnu_target)
2487 gnu_result = build_binary_op (MODIFY_EXPR, NULL_TREE,
2488 gnu_target, gnu_result);
2489 else
2490 *gnu_result_type_p = get_unpadded_type (Etype (gnat_node));
2491
2492 return gnu_result;
2493 }
2494
2495 /* If this is the case where the GNAT tree contains a procedure call
2496 but the Ada procedure has copy in copy out parameters, the special
2497 parameter passing mechanism must be used. */
2498 else if (TYPE_CI_CO_LIST (gnu_subprog_type) != NULL_TREE)
2499 {
2500 /* List of FIELD_DECLs associated with the PARM_DECLs of the copy
2501 in copy out parameters. */
2502 tree scalar_return_list = TYPE_CI_CO_LIST (gnu_subprog_type);
2503 int length = list_length (scalar_return_list);
2504
2505 if (length > 1)
2506 {
2507 tree gnu_name;
2508
2509 gnu_subprog_call = save_expr (gnu_subprog_call);
2510 gnu_name_list = nreverse (gnu_name_list);
2511
2512 /* If any of the names had side-effects, ensure they are all
2513 evaluated before the call. */
2514 for (gnu_name = gnu_name_list; gnu_name;
2515 gnu_name = TREE_CHAIN (gnu_name))
2516 if (TREE_SIDE_EFFECTS (TREE_VALUE (gnu_name)))
2517 append_to_statement_list (TREE_VALUE (gnu_name),
2518 &gnu_before_list);
2519 }
2520
2521 if (Nkind (Name (gnat_node)) == N_Explicit_Dereference)
2522 gnat_formal = First_Formal_With_Extras (Etype (Name (gnat_node)));
2523 else
2524 gnat_formal = First_Formal_With_Extras (Entity (Name (gnat_node)));
2525
2526 for (gnat_actual = First_Actual (gnat_node);
2527 Present (gnat_actual);
2528 gnat_formal = Next_Formal_With_Extras (gnat_formal),
2529 gnat_actual = Next_Actual (gnat_actual))
2530 /* If we are dealing with a copy in copy out parameter, we must
2531 retrieve its value from the record returned in the call. */
2532 if (!(present_gnu_tree (gnat_formal)
2533 && TREE_CODE (get_gnu_tree (gnat_formal)) == PARM_DECL
2534 && (DECL_BY_REF_P (get_gnu_tree (gnat_formal))
2535 || (TREE_CODE (get_gnu_tree (gnat_formal)) == PARM_DECL
2536 && ((DECL_BY_COMPONENT_PTR_P (get_gnu_tree (gnat_formal))
2537 || (DECL_BY_DESCRIPTOR_P
2538 (get_gnu_tree (gnat_formal))))))))
2539 && Ekind (gnat_formal) != E_In_Parameter)
2540 {
2541 /* Get the value to assign to this Out or In Out parameter. It is
2542 either the result of the function if there is only a single such
2543 parameter or the appropriate field from the record returned. */
2544 tree gnu_result
2545 = length == 1 ? gnu_subprog_call
2546 : build_component_ref (gnu_subprog_call, NULL_TREE,
2547 TREE_PURPOSE (scalar_return_list),
2548 false);
2549
2550 /* If the actual is a conversion, get the inner expression, which
2551 will be the real destination, and convert the result to the
2552 type of the actual parameter. */
2553 tree gnu_actual
2554 = maybe_unconstrained_array (TREE_VALUE (gnu_name_list));
2555
2556 /* If the result is a padded type, remove the padding. */
2557 if (TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
2558 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_result)))
2559 gnu_result = convert (TREE_TYPE (TYPE_FIELDS
2560 (TREE_TYPE (gnu_result))),
2561 gnu_result);
2562
2563 /* If the actual is a type conversion, the real target object is
2564 denoted by the inner Expression and we need to convert the
2565 result to the associated type.
2566 We also need to convert our gnu assignment target to this type
2567 if the corresponding GNU_NAME was constructed from the GNAT
2568 conversion node and not from the inner Expression. */
2569 if (Nkind (gnat_actual) == N_Type_Conversion)
2570 {
2571 gnu_result
2572 = convert_with_check
2573 (Etype (Expression (gnat_actual)), gnu_result,
2574 Do_Overflow_Check (gnat_actual),
2575 Do_Range_Check (Expression (gnat_actual)),
2576 Float_Truncate (gnat_actual));
2577
2578 if (!Is_Composite_Type (Underlying_Type (Etype (gnat_formal))))
2579 gnu_actual = convert (TREE_TYPE (gnu_result), gnu_actual);
2580 }
2581
2582 /* Unchecked conversions as actuals for Out parameters are not
2583 allowed in user code because they are not variables, but do
2584 occur in front-end expansions. The associated GNU_NAME is
2585 always obtained from the inner expression in such cases. */
2586 else if (Nkind (gnat_actual) == N_Unchecked_Type_Conversion)
2587 gnu_result = unchecked_convert (TREE_TYPE (gnu_actual),
2588 gnu_result,
2589 No_Truncation (gnat_actual));
2590 else
2591 {
2592 if (Do_Range_Check (gnat_actual))
2593 gnu_result = emit_range_check (gnu_result,
2594 Etype (gnat_actual));
2595
2596 if (!(!TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (gnu_actual)))
2597 && TREE_CONSTANT (TYPE_SIZE (TREE_TYPE (gnu_result)))))
2598 gnu_result = convert (TREE_TYPE (gnu_actual), gnu_result);
2599 }
2600
2601 gnu_result = build_binary_op (MODIFY_EXPR, NULL_TREE,
2602 gnu_actual, gnu_result);
2603 set_expr_location_from_node (gnu_result, gnat_actual);
2604 append_to_statement_list (gnu_result, &gnu_before_list);
2605 scalar_return_list = TREE_CHAIN (scalar_return_list);
2606 gnu_name_list = TREE_CHAIN (gnu_name_list);
2607 }
2608 }
2609 else
2610 append_to_statement_list (gnu_subprog_call, &gnu_before_list);
2611
2612 append_to_statement_list (gnu_after_list, &gnu_before_list);
2613 return gnu_before_list;
2614 }
2615 \f
2616 /* Subroutine of gnat_to_gnu to translate gnat_node, an
2617 N_Handled_Sequence_Of_Statements, to a GCC tree, which is returned. */
2618
2619 static tree
2620 Handled_Sequence_Of_Statements_to_gnu (Node_Id gnat_node)
2621 {
2622 tree gnu_jmpsave_decl = NULL_TREE;
2623 tree gnu_jmpbuf_decl = NULL_TREE;
2624 /* If just annotating, ignore all EH and cleanups. */
2625 bool gcc_zcx = (!type_annotate_only
2626 && Present (Exception_Handlers (gnat_node))
2627 && Exception_Mechanism == Back_End_Exceptions);
2628 bool setjmp_longjmp
2629 = (!type_annotate_only && Present (Exception_Handlers (gnat_node))
2630 && Exception_Mechanism == Setjmp_Longjmp);
2631 bool at_end = !type_annotate_only && Present (At_End_Proc (gnat_node));
2632 bool binding_for_block = (at_end || gcc_zcx || setjmp_longjmp);
2633 tree gnu_inner_block; /* The statement(s) for the block itself. */
2634 tree gnu_result;
2635 tree gnu_expr;
2636 Node_Id gnat_temp;
2637
2638 /* The GCC exception handling mechanism can handle both ZCX and SJLJ schemes
2639 and we have our own SJLJ mechanism. To call the GCC mechanism, we call
2640 add_cleanup, and when we leave the binding, end_stmt_group will create
2641 the TRY_FINALLY_EXPR.
2642
2643 ??? The region level calls down there have been specifically put in place
2644 for a ZCX context and currently the order in which things are emitted
2645 (region/handlers) is different from the SJLJ case. Instead of putting
2646 other calls with different conditions at other places for the SJLJ case,
2647 it seems cleaner to reorder things for the SJLJ case and generalize the
2648 condition to make it not ZCX specific.
2649
2650 If there are any exceptions or cleanup processing involved, we need an
2651 outer statement group (for Setjmp_Longjmp) and binding level. */
2652 if (binding_for_block)
2653 {
2654 start_stmt_group ();
2655 gnat_pushlevel ();
2656 }
2657
2658 /* If using setjmp_longjmp, make the variables for the setjmp buffer and save
2659 area for address of previous buffer. Do this first since we need to have
2660 the setjmp buf known for any decls in this block. */
2661 if (setjmp_longjmp)
2662 {
2663 gnu_jmpsave_decl = create_var_decl (get_identifier ("JMPBUF_SAVE"),
2664 NULL_TREE, jmpbuf_ptr_type,
2665 build_call_0_expr (get_jmpbuf_decl),
2666 false, false, false, false, NULL,
2667 gnat_node);
2668 DECL_ARTIFICIAL (gnu_jmpsave_decl) = 1;
2669
2670 /* The __builtin_setjmp receivers will immediately reinstall it. Now
2671 because of the unstructured form of EH used by setjmp_longjmp, there
2672 might be forward edges going to __builtin_setjmp receivers on which
2673 it is uninitialized, although they will never be actually taken. */
2674 TREE_NO_WARNING (gnu_jmpsave_decl) = 1;
2675 gnu_jmpbuf_decl = create_var_decl (get_identifier ("JMP_BUF"),
2676 NULL_TREE, jmpbuf_type,
2677 NULL_TREE, false, false, false, false,
2678 NULL, gnat_node);
2679 DECL_ARTIFICIAL (gnu_jmpbuf_decl) = 1;
2680
2681 set_block_jmpbuf_decl (gnu_jmpbuf_decl);
2682
2683 /* When we exit this block, restore the saved value. */
2684 add_cleanup (build_call_1_expr (set_jmpbuf_decl, gnu_jmpsave_decl),
2685 End_Label (gnat_node));
2686 }
2687
2688 /* If we are to call a function when exiting this block, add a cleanup
2689 to the binding level we made above. Note that add_cleanup is FIFO
2690 so we must register this cleanup after the EH cleanup just above. */
2691 if (at_end)
2692 add_cleanup (build_call_0_expr (gnat_to_gnu (At_End_Proc (gnat_node))),
2693 End_Label (gnat_node));
2694
2695 /* Now build the tree for the declarations and statements inside this block.
2696 If this is SJLJ, set our jmp_buf as the current buffer. */
2697 start_stmt_group ();
2698
2699 if (setjmp_longjmp)
2700 add_stmt (build_call_1_expr (set_jmpbuf_decl,
2701 build_unary_op (ADDR_EXPR, NULL_TREE,
2702 gnu_jmpbuf_decl)));
2703
2704 if (Present (First_Real_Statement (gnat_node)))
2705 process_decls (Statements (gnat_node), Empty,
2706 First_Real_Statement (gnat_node), true, true);
2707
2708 /* Generate code for each statement in the block. */
2709 for (gnat_temp = (Present (First_Real_Statement (gnat_node))
2710 ? First_Real_Statement (gnat_node)
2711 : First (Statements (gnat_node)));
2712 Present (gnat_temp); gnat_temp = Next (gnat_temp))
2713 add_stmt (gnat_to_gnu (gnat_temp));
2714 gnu_inner_block = end_stmt_group ();
2715
2716 /* Now generate code for the two exception models, if either is relevant for
2717 this block. */
2718 if (setjmp_longjmp)
2719 {
2720 tree *gnu_else_ptr = 0;
2721 tree gnu_handler;
2722
2723 /* Make a binding level for the exception handling declarations and code
2724 and set up gnu_except_ptr_stack for the handlers to use. */
2725 start_stmt_group ();
2726 gnat_pushlevel ();
2727
2728 push_stack (&gnu_except_ptr_stack, NULL_TREE,
2729 create_var_decl (get_identifier ("EXCEPT_PTR"),
2730 NULL_TREE,
2731 build_pointer_type (except_type_node),
2732 build_call_0_expr (get_excptr_decl), false,
2733 false, false, false, NULL, gnat_node));
2734
2735 /* Generate code for each handler. The N_Exception_Handler case does the
2736 real work and returns a COND_EXPR for each handler, which we chain
2737 together here. */
2738 for (gnat_temp = First_Non_Pragma (Exception_Handlers (gnat_node));
2739 Present (gnat_temp); gnat_temp = Next_Non_Pragma (gnat_temp))
2740 {
2741 gnu_expr = gnat_to_gnu (gnat_temp);
2742
2743 /* If this is the first one, set it as the outer one. Otherwise,
2744 point the "else" part of the previous handler to us. Then point
2745 to our "else" part. */
2746 if (!gnu_else_ptr)
2747 add_stmt (gnu_expr);
2748 else
2749 *gnu_else_ptr = gnu_expr;
2750
2751 gnu_else_ptr = &COND_EXPR_ELSE (gnu_expr);
2752 }
2753
2754 /* If none of the exception handlers did anything, re-raise but do not
2755 defer abortion. */
2756 gnu_expr = build_call_1_expr (raise_nodefer_decl,
2757 TREE_VALUE (gnu_except_ptr_stack));
2758 set_expr_location_from_node (gnu_expr, gnat_node);
2759
2760 if (gnu_else_ptr)
2761 *gnu_else_ptr = gnu_expr;
2762 else
2763 add_stmt (gnu_expr);
2764
2765 /* End the binding level dedicated to the exception handlers and get the
2766 whole statement group. */
2767 pop_stack (&gnu_except_ptr_stack);
2768 gnat_poplevel ();
2769 gnu_handler = end_stmt_group ();
2770
2771 /* If the setjmp returns 1, we restore our incoming longjmp value and
2772 then check the handlers. */
2773 start_stmt_group ();
2774 add_stmt_with_node (build_call_1_expr (set_jmpbuf_decl,
2775 gnu_jmpsave_decl),
2776 gnat_node);
2777 add_stmt (gnu_handler);
2778 gnu_handler = end_stmt_group ();
2779
2780 /* This block is now "if (setjmp) ... <handlers> else <block>". */
2781 gnu_result = build3 (COND_EXPR, void_type_node,
2782 (build_call_1_expr
2783 (setjmp_decl,
2784 build_unary_op (ADDR_EXPR, NULL_TREE,
2785 gnu_jmpbuf_decl))),
2786 gnu_handler, gnu_inner_block);
2787 }
2788 else if (gcc_zcx)
2789 {
2790 tree gnu_handlers;
2791
2792 /* First make a block containing the handlers. */
2793 start_stmt_group ();
2794 for (gnat_temp = First_Non_Pragma (Exception_Handlers (gnat_node));
2795 Present (gnat_temp);
2796 gnat_temp = Next_Non_Pragma (gnat_temp))
2797 add_stmt (gnat_to_gnu (gnat_temp));
2798 gnu_handlers = end_stmt_group ();
2799
2800 /* Now make the TRY_CATCH_EXPR for the block. */
2801 gnu_result = build2 (TRY_CATCH_EXPR, void_type_node,
2802 gnu_inner_block, gnu_handlers);
2803 }
2804 else
2805 gnu_result = gnu_inner_block;
2806
2807 /* Now close our outer block, if we had to make one. */
2808 if (binding_for_block)
2809 {
2810 add_stmt (gnu_result);
2811 gnat_poplevel ();
2812 gnu_result = end_stmt_group ();
2813 }
2814
2815 return gnu_result;
2816 }
2817 \f
2818 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Exception_Handler,
2819 to a GCC tree, which is returned. This is the variant for Setjmp_Longjmp
2820 exception handling. */
2821
2822 static tree
2823 Exception_Handler_to_gnu_sjlj (Node_Id gnat_node)
2824 {
2825 /* Unless this is "Others" or the special "Non-Ada" exception for Ada, make
2826 an "if" statement to select the proper exceptions. For "Others", exclude
2827 exceptions where Handled_By_Others is nonzero unless the All_Others flag
2828 is set. For "Non-ada", accept an exception if "Lang" is 'V'. */
2829 tree gnu_choice = integer_zero_node;
2830 tree gnu_body = build_stmt_group (Statements (gnat_node), false);
2831 Node_Id gnat_temp;
2832
2833 for (gnat_temp = First (Exception_Choices (gnat_node));
2834 gnat_temp; gnat_temp = Next (gnat_temp))
2835 {
2836 tree this_choice;
2837
2838 if (Nkind (gnat_temp) == N_Others_Choice)
2839 {
2840 if (All_Others (gnat_temp))
2841 this_choice = integer_one_node;
2842 else
2843 this_choice
2844 = build_binary_op
2845 (EQ_EXPR, integer_type_node,
2846 convert
2847 (integer_type_node,
2848 build_component_ref
2849 (build_unary_op
2850 (INDIRECT_REF, NULL_TREE,
2851 TREE_VALUE (gnu_except_ptr_stack)),
2852 get_identifier ("not_handled_by_others"), NULL_TREE,
2853 false)),
2854 integer_zero_node);
2855 }
2856
2857 else if (Nkind (gnat_temp) == N_Identifier
2858 || Nkind (gnat_temp) == N_Expanded_Name)
2859 {
2860 Entity_Id gnat_ex_id = Entity (gnat_temp);
2861 tree gnu_expr;
2862
2863 /* Exception may be a renaming. Recover original exception which is
2864 the one elaborated and registered. */
2865 if (Present (Renamed_Object (gnat_ex_id)))
2866 gnat_ex_id = Renamed_Object (gnat_ex_id);
2867
2868 gnu_expr = gnat_to_gnu_entity (gnat_ex_id, NULL_TREE, 0);
2869
2870 this_choice
2871 = build_binary_op
2872 (EQ_EXPR, integer_type_node, TREE_VALUE (gnu_except_ptr_stack),
2873 convert (TREE_TYPE (TREE_VALUE (gnu_except_ptr_stack)),
2874 build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr)));
2875
2876 /* If this is the distinguished exception "Non_Ada_Error" (and we are
2877 in VMS mode), also allow a non-Ada exception (a VMS condition) t
2878 match. */
2879 if (Is_Non_Ada_Error (Entity (gnat_temp)))
2880 {
2881 tree gnu_comp
2882 = build_component_ref
2883 (build_unary_op (INDIRECT_REF, NULL_TREE,
2884 TREE_VALUE (gnu_except_ptr_stack)),
2885 get_identifier ("lang"), NULL_TREE, false);
2886
2887 this_choice
2888 = build_binary_op
2889 (TRUTH_ORIF_EXPR, integer_type_node,
2890 build_binary_op (EQ_EXPR, integer_type_node, gnu_comp,
2891 build_int_cst (TREE_TYPE (gnu_comp), 'V')),
2892 this_choice);
2893 }
2894 }
2895 else
2896 gcc_unreachable ();
2897
2898 gnu_choice = build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
2899 gnu_choice, this_choice);
2900 }
2901
2902 return build3 (COND_EXPR, void_type_node, gnu_choice, gnu_body, NULL_TREE);
2903 }
2904 \f
2905 /* Subroutine of gnat_to_gnu to translate gnat_node, an N_Exception_Handler,
2906 to a GCC tree, which is returned. This is the variant for ZCX. */
2907
2908 static tree
2909 Exception_Handler_to_gnu_zcx (Node_Id gnat_node)
2910 {
2911 tree gnu_etypes_list = NULL_TREE;
2912 tree gnu_expr;
2913 tree gnu_etype;
2914 tree gnu_current_exc_ptr;
2915 tree gnu_incoming_exc_ptr;
2916 Node_Id gnat_temp;
2917
2918 /* We build a TREE_LIST of nodes representing what exception types this
2919 handler can catch, with special cases for others and all others cases.
2920
2921 Each exception type is actually identified by a pointer to the exception
2922 id, or to a dummy object for "others" and "all others".
2923
2924 Care should be taken to ensure that the control flow impact of "others"
2925 and "all others" is known to GCC. lang_eh_type_covers is doing the trick
2926 currently. */
2927 for (gnat_temp = First (Exception_Choices (gnat_node));
2928 gnat_temp; gnat_temp = Next (gnat_temp))
2929 {
2930 if (Nkind (gnat_temp) == N_Others_Choice)
2931 {
2932 tree gnu_expr
2933 = All_Others (gnat_temp) ? all_others_decl : others_decl;
2934
2935 gnu_etype
2936 = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr);
2937 }
2938 else if (Nkind (gnat_temp) == N_Identifier
2939 || Nkind (gnat_temp) == N_Expanded_Name)
2940 {
2941 Entity_Id gnat_ex_id = Entity (gnat_temp);
2942
2943 /* Exception may be a renaming. Recover original exception which is
2944 the one elaborated and registered. */
2945 if (Present (Renamed_Object (gnat_ex_id)))
2946 gnat_ex_id = Renamed_Object (gnat_ex_id);
2947
2948 gnu_expr = gnat_to_gnu_entity (gnat_ex_id, NULL_TREE, 0);
2949 gnu_etype = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_expr);
2950
2951 /* The Non_Ada_Error case for VMS exceptions is handled
2952 by the personality routine. */
2953 }
2954 else
2955 gcc_unreachable ();
2956
2957 /* The GCC interface expects NULL to be passed for catch all handlers, so
2958 it would be quite tempting to set gnu_etypes_list to NULL if gnu_etype
2959 is integer_zero_node. It would not work, however, because GCC's
2960 notion of "catch all" is stronger than our notion of "others". Until
2961 we correctly use the cleanup interface as well, doing that would
2962 prevent the "all others" handlers from being seen, because nothing
2963 can be caught beyond a catch all from GCC's point of view. */
2964 gnu_etypes_list = tree_cons (NULL_TREE, gnu_etype, gnu_etypes_list);
2965 }
2966
2967 start_stmt_group ();
2968 gnat_pushlevel ();
2969
2970 /* Expand a call to the begin_handler hook at the beginning of the handler,
2971 and arrange for a call to the end_handler hook to occur on every possible
2972 exit path.
2973
2974 The hooks expect a pointer to the low level occurrence. This is required
2975 for our stack management scheme because a raise inside the handler pushes
2976 a new occurrence on top of the stack, which means that this top does not
2977 necessarily match the occurrence this handler was dealing with.
2978
2979 The EXC_PTR_EXPR object references the exception occurrence being
2980 propagated. Upon handler entry, this is the exception for which the
2981 handler is triggered. This might not be the case upon handler exit,
2982 however, as we might have a new occurrence propagated by the handler's
2983 body, and the end_handler hook called as a cleanup in this context.
2984
2985 We use a local variable to retrieve the incoming value at handler entry
2986 time, and reuse it to feed the end_handler hook's argument at exit. */
2987 gnu_current_exc_ptr = build0 (EXC_PTR_EXPR, ptr_type_node);
2988 gnu_incoming_exc_ptr = create_var_decl (get_identifier ("EXPTR"), NULL_TREE,
2989 ptr_type_node, gnu_current_exc_ptr,
2990 false, false, false, false, NULL,
2991 gnat_node);
2992
2993 add_stmt_with_node (build_call_1_expr (begin_handler_decl,
2994 gnu_incoming_exc_ptr),
2995 gnat_node);
2996 /* ??? We don't seem to have an End_Label at hand to set the location. */
2997 add_cleanup (build_call_1_expr (end_handler_decl, gnu_incoming_exc_ptr),
2998 Empty);
2999 add_stmt_list (Statements (gnat_node));
3000 gnat_poplevel ();
3001
3002 return build2 (CATCH_EXPR, void_type_node, gnu_etypes_list,
3003 end_stmt_group ());
3004 }
3005 \f
3006 /* Subroutine of gnat_to_gnu to generate code for an N_Compilation unit. */
3007
3008 static void
3009 Compilation_Unit_to_gnu (Node_Id gnat_node)
3010 {
3011 /* Make the decl for the elaboration procedure. */
3012 bool body_p = (Defining_Entity (Unit (gnat_node)),
3013 Nkind (Unit (gnat_node)) == N_Package_Body
3014 || Nkind (Unit (gnat_node)) == N_Subprogram_Body);
3015 Entity_Id gnat_unit_entity = Defining_Entity (Unit (gnat_node));
3016 tree gnu_elab_proc_decl
3017 = create_subprog_decl
3018 (create_concat_name (gnat_unit_entity,
3019 body_p ? "elabb" : "elabs"),
3020 NULL_TREE, void_ftype, NULL_TREE, false, true, false, NULL,
3021 gnat_unit_entity);
3022 struct elab_info *info;
3023
3024 push_stack (&gnu_elab_proc_stack, NULL_TREE, gnu_elab_proc_decl);
3025
3026 DECL_ELABORATION_PROC_P (gnu_elab_proc_decl) = 1;
3027 allocate_struct_function (gnu_elab_proc_decl, false);
3028 Sloc_to_locus (Sloc (gnat_unit_entity), &cfun->function_end_locus);
3029 set_cfun (NULL);
3030
3031 /* For a body, first process the spec if there is one. */
3032 if (Nkind (Unit (gnat_node)) == N_Package_Body
3033 || (Nkind (Unit (gnat_node)) == N_Subprogram_Body
3034 && !Acts_As_Spec (gnat_node)))
3035 {
3036 add_stmt (gnat_to_gnu (Library_Unit (gnat_node)));
3037 finalize_from_with_types ();
3038 }
3039
3040 process_inlined_subprograms (gnat_node);
3041
3042 if (type_annotate_only && gnat_node == Cunit (Main_Unit))
3043 {
3044 elaborate_all_entities (gnat_node);
3045
3046 if (Nkind (Unit (gnat_node)) == N_Subprogram_Declaration
3047 || Nkind (Unit (gnat_node)) == N_Generic_Package_Declaration
3048 || Nkind (Unit (gnat_node)) == N_Generic_Subprogram_Declaration)
3049 return;
3050 }
3051
3052 process_decls (Declarations (Aux_Decls_Node (gnat_node)), Empty, Empty,
3053 true, true);
3054 add_stmt (gnat_to_gnu (Unit (gnat_node)));
3055
3056 /* Process any pragmas and actions following the unit. */
3057 add_stmt_list (Pragmas_After (Aux_Decls_Node (gnat_node)));
3058 add_stmt_list (Actions (Aux_Decls_Node (gnat_node)));
3059 finalize_from_with_types ();
3060
3061 /* Save away what we've made so far and record this potential elaboration
3062 procedure. */
3063 info = (struct elab_info *) ggc_alloc (sizeof (struct elab_info));
3064 set_current_block_context (gnu_elab_proc_decl);
3065 gnat_poplevel ();
3066 DECL_SAVED_TREE (gnu_elab_proc_decl) = end_stmt_group ();
3067 info->next = elab_info_list;
3068 info->elab_proc = gnu_elab_proc_decl;
3069 info->gnat_node = gnat_node;
3070 elab_info_list = info;
3071
3072 /* Generate elaboration code for this unit, if necessary, and say whether
3073 we did or not. */
3074 pop_stack (&gnu_elab_proc_stack);
3075
3076 /* Invalidate the global renaming pointers. This is necessary because
3077 stabilization of the renamed entities may create SAVE_EXPRs which
3078 have been tied to a specific elaboration routine just above. */
3079 invalidate_global_renaming_pointers ();
3080 }
3081 \f
3082 /* This function is the driver of the GNAT to GCC tree transformation
3083 process. It is the entry point of the tree transformer. GNAT_NODE is the
3084 root of some GNAT tree. Return the root of the corresponding GCC tree.
3085 If this is an expression, return the GCC equivalent of the expression. If
3086 it is a statement, return the statement. In the case when called for a
3087 statement, it may also add statements to the current statement group, in
3088 which case anything it returns is to be interpreted as occurring after
3089 anything `it already added. */
3090
3091 tree
3092 gnat_to_gnu (Node_Id gnat_node)
3093 {
3094 bool went_into_elab_proc = false;
3095 tree gnu_result = error_mark_node; /* Default to no value. */
3096 tree gnu_result_type = void_type_node;
3097 tree gnu_expr;
3098 tree gnu_lhs, gnu_rhs;
3099 Node_Id gnat_temp;
3100
3101 /* Save node number for error message and set location information. */
3102 error_gnat_node = gnat_node;
3103 Sloc_to_locus (Sloc (gnat_node), &input_location);
3104
3105 if (type_annotate_only
3106 && IN (Nkind (gnat_node), N_Statement_Other_Than_Procedure_Call))
3107 return alloc_stmt_list ();
3108
3109 /* If this node is a non-static subexpression and we are only
3110 annotating types, make this into a NULL_EXPR. */
3111 if (type_annotate_only
3112 && IN (Nkind (gnat_node), N_Subexpr)
3113 && Nkind (gnat_node) != N_Identifier
3114 && !Compile_Time_Known_Value (gnat_node))
3115 return build1 (NULL_EXPR, get_unpadded_type (Etype (gnat_node)),
3116 build_call_raise (CE_Range_Check_Failed, gnat_node,
3117 N_Raise_Constraint_Error));
3118
3119 /* If this is a Statement and we are at top level, it must be part of the
3120 elaboration procedure, so mark us as being in that procedure and push our
3121 context.
3122
3123 If we are in the elaboration procedure, check if we are violating a
3124 No_Elaboration_Code restriction by having a statement there. */
3125 if ((IN (Nkind (gnat_node), N_Statement_Other_Than_Procedure_Call)
3126 && Nkind (gnat_node) != N_Null_Statement)
3127 || Nkind (gnat_node) == N_Procedure_Call_Statement
3128 || Nkind (gnat_node) == N_Label
3129 || Nkind (gnat_node) == N_Implicit_Label_Declaration
3130 || Nkind (gnat_node) == N_Handled_Sequence_Of_Statements
3131 || ((Nkind (gnat_node) == N_Raise_Constraint_Error
3132 || Nkind (gnat_node) == N_Raise_Storage_Error
3133 || Nkind (gnat_node) == N_Raise_Program_Error)
3134 && (Ekind (Etype (gnat_node)) == E_Void)))
3135 {
3136 if (!current_function_decl)
3137 {
3138 current_function_decl = TREE_VALUE (gnu_elab_proc_stack);
3139 start_stmt_group ();
3140 gnat_pushlevel ();
3141 went_into_elab_proc = true;
3142 }
3143
3144 /* Don't check for a possible No_Elaboration_Code restriction violation
3145 on N_Handled_Sequence_Of_Statements, as we want to signal an error on
3146 every nested real statement instead. This also avoids triggering
3147 spurious errors on dummy (empty) sequences created by the front-end
3148 for package bodies in some cases. */
3149
3150 if (current_function_decl == TREE_VALUE (gnu_elab_proc_stack)
3151 && Nkind (gnat_node) != N_Handled_Sequence_Of_Statements)
3152 Check_Elaboration_Code_Allowed (gnat_node);
3153 }
3154
3155 switch (Nkind (gnat_node))
3156 {
3157 /********************************/
3158 /* Chapter 2: Lexical Elements: */
3159 /********************************/
3160
3161 case N_Identifier:
3162 case N_Expanded_Name:
3163 case N_Operator_Symbol:
3164 case N_Defining_Identifier:
3165 gnu_result = Identifier_to_gnu (gnat_node, &gnu_result_type);
3166 break;
3167
3168 case N_Integer_Literal:
3169 {
3170 tree gnu_type;
3171
3172 /* Get the type of the result, looking inside any padding and
3173 justified modular types. Then get the value in that type. */
3174 gnu_type = gnu_result_type = get_unpadded_type (Etype (gnat_node));
3175
3176 if (TREE_CODE (gnu_type) == RECORD_TYPE
3177 && TYPE_JUSTIFIED_MODULAR_P (gnu_type))
3178 gnu_type = TREE_TYPE (TYPE_FIELDS (gnu_type));
3179
3180 gnu_result = UI_To_gnu (Intval (gnat_node), gnu_type);
3181
3182 /* If the result overflows (meaning it doesn't fit in its base type),
3183 abort. We would like to check that the value is within the range
3184 of the subtype, but that causes problems with subtypes whose usage
3185 will raise Constraint_Error and with biased representation, so
3186 we don't. */
3187 gcc_assert (!TREE_OVERFLOW (gnu_result));
3188 }
3189 break;
3190
3191 case N_Character_Literal:
3192 /* If a Entity is present, it means that this was one of the
3193 literals in a user-defined character type. In that case,
3194 just return the value in the CONST_DECL. Otherwise, use the
3195 character code. In that case, the base type should be an
3196 INTEGER_TYPE, but we won't bother checking for that. */
3197 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3198 if (Present (Entity (gnat_node)))
3199 gnu_result = DECL_INITIAL (get_gnu_tree (Entity (gnat_node)));
3200 else
3201 gnu_result
3202 = build_int_cst_type
3203 (gnu_result_type, UI_To_CC (Char_Literal_Value (gnat_node)));
3204 break;
3205
3206 case N_Real_Literal:
3207 /* If this is of a fixed-point type, the value we want is the
3208 value of the corresponding integer. */
3209 if (IN (Ekind (Underlying_Type (Etype (gnat_node))), Fixed_Point_Kind))
3210 {
3211 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3212 gnu_result = UI_To_gnu (Corresponding_Integer_Value (gnat_node),
3213 gnu_result_type);
3214 gcc_assert (!TREE_OVERFLOW (gnu_result));
3215 }
3216
3217 /* We should never see a Vax_Float type literal, since the front end
3218 is supposed to transform these using appropriate conversions */
3219 else if (Vax_Float (Underlying_Type (Etype (gnat_node))))
3220 gcc_unreachable ();
3221
3222 else
3223 {
3224 Ureal ur_realval = Realval (gnat_node);
3225
3226 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3227
3228 /* If the real value is zero, so is the result. Otherwise,
3229 convert it to a machine number if it isn't already. That
3230 forces BASE to 0 or 2 and simplifies the rest of our logic. */
3231 if (UR_Is_Zero (ur_realval))
3232 gnu_result = convert (gnu_result_type, integer_zero_node);
3233 else
3234 {
3235 if (!Is_Machine_Number (gnat_node))
3236 ur_realval
3237 = Machine (Base_Type (Underlying_Type (Etype (gnat_node))),
3238 ur_realval, Round_Even, gnat_node);
3239
3240 gnu_result
3241 = UI_To_gnu (Numerator (ur_realval), gnu_result_type);
3242
3243 /* If we have a base of zero, divide by the denominator.
3244 Otherwise, the base must be 2 and we scale the value, which
3245 we know can fit in the mantissa of the type (hence the use
3246 of that type above). */
3247 if (No (Rbase (ur_realval)))
3248 gnu_result
3249 = build_binary_op (RDIV_EXPR,
3250 get_base_type (gnu_result_type),
3251 gnu_result,
3252 UI_To_gnu (Denominator (ur_realval),
3253 gnu_result_type));
3254 else
3255 {
3256 REAL_VALUE_TYPE tmp;
3257
3258 gcc_assert (Rbase (ur_realval) == 2);
3259 real_ldexp (&tmp, &TREE_REAL_CST (gnu_result),
3260 - UI_To_Int (Denominator (ur_realval)));
3261 gnu_result = build_real (gnu_result_type, tmp);
3262 }
3263 }
3264
3265 /* Now see if we need to negate the result. Do it this way to
3266 properly handle -0. */
3267 if (UR_Is_Negative (Realval (gnat_node)))
3268 gnu_result
3269 = build_unary_op (NEGATE_EXPR, get_base_type (gnu_result_type),
3270 gnu_result);
3271 }
3272
3273 break;
3274
3275 case N_String_Literal:
3276 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3277 if (TYPE_PRECISION (TREE_TYPE (gnu_result_type)) == HOST_BITS_PER_CHAR)
3278 {
3279 String_Id gnat_string = Strval (gnat_node);
3280 int length = String_Length (gnat_string);
3281 int i;
3282 char *string;
3283 if (length >= ALLOCA_THRESHOLD)
3284 string = XNEWVEC (char, length + 1); /* in case of large strings */
3285 else
3286 string = (char *) alloca (length + 1);
3287
3288 /* Build the string with the characters in the literal. Note
3289 that Ada strings are 1-origin. */
3290 for (i = 0; i < length; i++)
3291 string[i] = Get_String_Char (gnat_string, i + 1);
3292
3293 /* Put a null at the end of the string in case it's in a context
3294 where GCC will want to treat it as a C string. */
3295 string[i] = 0;
3296
3297 gnu_result = build_string (length, string);
3298
3299 /* Strings in GCC don't normally have types, but we want
3300 this to not be converted to the array type. */
3301 TREE_TYPE (gnu_result) = gnu_result_type;
3302
3303 if (length >= ALLOCA_THRESHOLD) /* free if heap-allocated */
3304 free (string);
3305 }
3306 else
3307 {
3308 /* Build a list consisting of each character, then make
3309 the aggregate. */
3310 String_Id gnat_string = Strval (gnat_node);
3311 int length = String_Length (gnat_string);
3312 int i;
3313 tree gnu_list = NULL_TREE;
3314 tree gnu_idx = TYPE_MIN_VALUE (TYPE_DOMAIN (gnu_result_type));
3315
3316 for (i = 0; i < length; i++)
3317 {
3318 gnu_list
3319 = tree_cons (gnu_idx,
3320 build_int_cst (TREE_TYPE (gnu_result_type),
3321 Get_String_Char (gnat_string,
3322 i + 1)),
3323 gnu_list);
3324
3325 gnu_idx = int_const_binop (PLUS_EXPR, gnu_idx, integer_one_node,
3326 0);
3327 }
3328
3329 gnu_result
3330 = gnat_build_constructor (gnu_result_type, nreverse (gnu_list));
3331 }
3332 break;
3333
3334 case N_Pragma:
3335 gnu_result = Pragma_to_gnu (gnat_node);
3336 break;
3337
3338 /**************************************/
3339 /* Chapter 3: Declarations and Types: */
3340 /**************************************/
3341
3342 case N_Subtype_Declaration:
3343 case N_Full_Type_Declaration:
3344 case N_Incomplete_Type_Declaration:
3345 case N_Private_Type_Declaration:
3346 case N_Private_Extension_Declaration:
3347 case N_Task_Type_Declaration:
3348 process_type (Defining_Entity (gnat_node));
3349 gnu_result = alloc_stmt_list ();
3350 break;
3351
3352 case N_Object_Declaration:
3353 case N_Exception_Declaration:
3354 gnat_temp = Defining_Entity (gnat_node);
3355 gnu_result = alloc_stmt_list ();
3356
3357 /* If we are just annotating types and this object has an unconstrained
3358 or task type, don't elaborate it. */
3359 if (type_annotate_only
3360 && (((Is_Array_Type (Etype (gnat_temp))
3361 || Is_Record_Type (Etype (gnat_temp)))
3362 && !Is_Constrained (Etype (gnat_temp)))
3363 || Is_Concurrent_Type (Etype (gnat_temp))))
3364 break;
3365
3366 if (Present (Expression (gnat_node))
3367 && !(Nkind (gnat_node) == N_Object_Declaration
3368 && No_Initialization (gnat_node))
3369 && (!type_annotate_only
3370 || Compile_Time_Known_Value (Expression (gnat_node))))
3371 {
3372 gnu_expr = gnat_to_gnu (Expression (gnat_node));
3373 if (Do_Range_Check (Expression (gnat_node)))
3374 gnu_expr = emit_range_check (gnu_expr, Etype (gnat_temp));
3375
3376 /* If this object has its elaboration delayed, we must force
3377 evaluation of GNU_EXPR right now and save it for when the object
3378 is frozen. */
3379 if (Present (Freeze_Node (gnat_temp)))
3380 {
3381 if ((Is_Public (gnat_temp) || global_bindings_p ())
3382 && !TREE_CONSTANT (gnu_expr))
3383 gnu_expr
3384 = create_var_decl (create_concat_name (gnat_temp, "init"),
3385 NULL_TREE, TREE_TYPE (gnu_expr),
3386 gnu_expr, false, Is_Public (gnat_temp),
3387 false, false, NULL, gnat_temp);
3388 else
3389 gnu_expr = maybe_variable (gnu_expr);
3390
3391 save_gnu_tree (gnat_node, gnu_expr, true);
3392 }
3393 }
3394 else
3395 gnu_expr = NULL_TREE;
3396
3397 if (type_annotate_only && gnu_expr && TREE_CODE (gnu_expr) == ERROR_MARK)
3398 gnu_expr = NULL_TREE;
3399
3400 if (No (Freeze_Node (gnat_temp)))
3401 gnat_to_gnu_entity (gnat_temp, gnu_expr, 1);
3402 break;
3403
3404 case N_Object_Renaming_Declaration:
3405 gnat_temp = Defining_Entity (gnat_node);
3406
3407 /* Don't do anything if this renaming is handled by the front end or if
3408 we are just annotating types and this object has a composite or task
3409 type, don't elaborate it. We return the result in case it has any
3410 SAVE_EXPRs in it that need to be evaluated here. */
3411 if (!Is_Renaming_Of_Object (gnat_temp)
3412 && ! (type_annotate_only
3413 && (Is_Array_Type (Etype (gnat_temp))
3414 || Is_Record_Type (Etype (gnat_temp))
3415 || Is_Concurrent_Type (Etype (gnat_temp)))))
3416 gnu_result
3417 = gnat_to_gnu_entity (gnat_temp,
3418 gnat_to_gnu (Renamed_Object (gnat_temp)), 1);
3419 else
3420 gnu_result = alloc_stmt_list ();
3421 break;
3422
3423 case N_Implicit_Label_Declaration:
3424 gnat_to_gnu_entity (Defining_Entity (gnat_node), NULL_TREE, 1);
3425 gnu_result = alloc_stmt_list ();
3426 break;
3427
3428 case N_Exception_Renaming_Declaration:
3429 case N_Number_Declaration:
3430 case N_Package_Renaming_Declaration:
3431 case N_Subprogram_Renaming_Declaration:
3432 /* These are fully handled in the front end. */
3433 gnu_result = alloc_stmt_list ();
3434 break;
3435
3436 /*************************************/
3437 /* Chapter 4: Names and Expressions: */
3438 /*************************************/
3439
3440 case N_Explicit_Dereference:
3441 gnu_result = gnat_to_gnu (Prefix (gnat_node));
3442 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3443 gnu_result = build_unary_op (INDIRECT_REF, NULL_TREE, gnu_result);
3444 break;
3445
3446 case N_Indexed_Component:
3447 {
3448 tree gnu_array_object = gnat_to_gnu (Prefix (gnat_node));
3449 tree gnu_type;
3450 int ndim;
3451 int i;
3452 Node_Id *gnat_expr_array;
3453
3454 gnu_array_object = maybe_implicit_deref (gnu_array_object);
3455 gnu_array_object = maybe_unconstrained_array (gnu_array_object);
3456
3457 /* If we got a padded type, remove it too. */
3458 if (TREE_CODE (TREE_TYPE (gnu_array_object)) == RECORD_TYPE
3459 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_array_object)))
3460 gnu_array_object
3461 = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_array_object))),
3462 gnu_array_object);
3463
3464 gnu_result = gnu_array_object;
3465
3466 /* First compute the number of dimensions of the array, then
3467 fill the expression array, the order depending on whether
3468 this is a Convention_Fortran array or not. */
3469 for (ndim = 1, gnu_type = TREE_TYPE (gnu_array_object);
3470 TREE_CODE (TREE_TYPE (gnu_type)) == ARRAY_TYPE
3471 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_type));
3472 ndim++, gnu_type = TREE_TYPE (gnu_type))
3473 ;
3474
3475 gnat_expr_array = (Node_Id *) alloca (ndim * sizeof (Node_Id));
3476
3477 if (TYPE_CONVENTION_FORTRAN_P (TREE_TYPE (gnu_array_object)))
3478 for (i = ndim - 1, gnat_temp = First (Expressions (gnat_node));
3479 i >= 0;
3480 i--, gnat_temp = Next (gnat_temp))
3481 gnat_expr_array[i] = gnat_temp;
3482 else
3483 for (i = 0, gnat_temp = First (Expressions (gnat_node));
3484 i < ndim;
3485 i++, gnat_temp = Next (gnat_temp))
3486 gnat_expr_array[i] = gnat_temp;
3487
3488 for (i = 0, gnu_type = TREE_TYPE (gnu_array_object);
3489 i < ndim; i++, gnu_type = TREE_TYPE (gnu_type))
3490 {
3491 gcc_assert (TREE_CODE (gnu_type) == ARRAY_TYPE);
3492 gnat_temp = gnat_expr_array[i];
3493 gnu_expr = gnat_to_gnu (gnat_temp);
3494
3495 if (Do_Range_Check (gnat_temp))
3496 gnu_expr
3497 = emit_index_check
3498 (gnu_array_object, gnu_expr,
3499 TYPE_MIN_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))),
3500 TYPE_MAX_VALUE (TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type))));
3501
3502 gnu_result = build_binary_op (ARRAY_REF, NULL_TREE,
3503 gnu_result, gnu_expr);
3504 }
3505 }
3506
3507 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3508 break;
3509
3510 case N_Slice:
3511 {
3512 tree gnu_type;
3513 Node_Id gnat_range_node = Discrete_Range (gnat_node);
3514
3515 gnu_result = gnat_to_gnu (Prefix (gnat_node));
3516 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3517
3518 /* Do any implicit dereferences of the prefix and do any needed
3519 range check. */
3520 gnu_result = maybe_implicit_deref (gnu_result);
3521 gnu_result = maybe_unconstrained_array (gnu_result);
3522 gnu_type = TREE_TYPE (gnu_result);
3523 if (Do_Range_Check (gnat_range_node))
3524 {
3525 /* Get the bounds of the slice. */
3526 tree gnu_index_type
3527 = TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_result_type));
3528 tree gnu_min_expr = TYPE_MIN_VALUE (gnu_index_type);
3529 tree gnu_max_expr = TYPE_MAX_VALUE (gnu_index_type);
3530 /* Get the permitted bounds. */
3531 tree gnu_base_index_type
3532 = TYPE_INDEX_TYPE (TYPE_DOMAIN (gnu_type));
3533 tree gnu_base_min_expr = TYPE_MIN_VALUE (gnu_base_index_type);
3534 tree gnu_base_max_expr = TYPE_MAX_VALUE (gnu_base_index_type);
3535 tree gnu_expr_l, gnu_expr_h, gnu_expr_type;
3536
3537 /* Check to see that the minimum slice value is in range. */
3538 gnu_expr_l = emit_index_check (gnu_result,
3539 gnu_min_expr,
3540 gnu_base_min_expr,
3541 gnu_base_max_expr);
3542
3543 /* Check to see that the maximum slice value is in range. */
3544 gnu_expr_h = emit_index_check (gnu_result,
3545 gnu_max_expr,
3546 gnu_base_min_expr,
3547 gnu_base_max_expr);
3548
3549 /* Derive a good type to convert everything to. */
3550 gnu_expr_type = get_base_type (TREE_TYPE (gnu_expr_l));
3551
3552 /* Build a compound expression that does the range checks and
3553 returns the low bound. */
3554 gnu_expr = build_binary_op (COMPOUND_EXPR, gnu_expr_type,
3555 convert (gnu_expr_type, gnu_expr_h),
3556 convert (gnu_expr_type, gnu_expr_l));
3557
3558 /* Build a conditional expression that does the range check and
3559 returns the low bound if the slice is not empty (max >= min),
3560 and returns the naked low bound otherwise (max < min), unless
3561 it is non-constant and the high bound is; this prevents VRP
3562 from inferring bogus ranges on the unlikely path. */
3563 gnu_expr = fold_build3 (COND_EXPR, gnu_expr_type,
3564 build_binary_op (GE_EXPR, gnu_expr_type,
3565 convert (gnu_expr_type,
3566 gnu_max_expr),
3567 convert (gnu_expr_type,
3568 gnu_min_expr)),
3569 gnu_expr,
3570 TREE_CODE (gnu_min_expr) != INTEGER_CST
3571 && TREE_CODE (gnu_max_expr) == INTEGER_CST
3572 ? gnu_max_expr : gnu_min_expr);
3573 }
3574 else
3575 /* Simply return the naked low bound. */
3576 gnu_expr = TYPE_MIN_VALUE (TYPE_DOMAIN (gnu_result_type));
3577
3578 gnu_result = build_binary_op (ARRAY_RANGE_REF, gnu_result_type,
3579 gnu_result, gnu_expr);
3580 }
3581 break;
3582
3583 case N_Selected_Component:
3584 {
3585 tree gnu_prefix = gnat_to_gnu (Prefix (gnat_node));
3586 Entity_Id gnat_field = Entity (Selector_Name (gnat_node));
3587 Entity_Id gnat_pref_type = Etype (Prefix (gnat_node));
3588 tree gnu_field;
3589
3590 while (IN (Ekind (gnat_pref_type), Incomplete_Or_Private_Kind)
3591 || IN (Ekind (gnat_pref_type), Access_Kind))
3592 {
3593 if (IN (Ekind (gnat_pref_type), Incomplete_Or_Private_Kind))
3594 gnat_pref_type = Underlying_Type (gnat_pref_type);
3595 else if (IN (Ekind (gnat_pref_type), Access_Kind))
3596 gnat_pref_type = Designated_Type (gnat_pref_type);
3597 }
3598
3599 gnu_prefix = maybe_implicit_deref (gnu_prefix);
3600
3601 /* For discriminant references in tagged types always substitute the
3602 corresponding discriminant as the actual selected component. */
3603
3604 if (Is_Tagged_Type (gnat_pref_type))
3605 while (Present (Corresponding_Discriminant (gnat_field)))
3606 gnat_field = Corresponding_Discriminant (gnat_field);
3607
3608 /* For discriminant references of untagged types always substitute the
3609 corresponding stored discriminant. */
3610
3611 else if (Present (Corresponding_Discriminant (gnat_field)))
3612 gnat_field = Original_Record_Component (gnat_field);
3613
3614 /* Handle extracting the real or imaginary part of a complex.
3615 The real part is the first field and the imaginary the last. */
3616
3617 if (TREE_CODE (TREE_TYPE (gnu_prefix)) == COMPLEX_TYPE)
3618 gnu_result = build_unary_op (Present (Next_Entity (gnat_field))
3619 ? REALPART_EXPR : IMAGPART_EXPR,
3620 NULL_TREE, gnu_prefix);
3621 else
3622 {
3623 gnu_field = gnat_to_gnu_field_decl (gnat_field);
3624
3625 /* If there are discriminants, the prefix might be
3626 evaluated more than once, which is a problem if it has
3627 side-effects. */
3628 if (Has_Discriminants (Is_Access_Type (Etype (Prefix (gnat_node)))
3629 ? Designated_Type (Etype
3630 (Prefix (gnat_node)))
3631 : Etype (Prefix (gnat_node))))
3632 gnu_prefix = gnat_stabilize_reference (gnu_prefix, false);
3633
3634 gnu_result
3635 = build_component_ref (gnu_prefix, NULL_TREE, gnu_field,
3636 (Nkind (Parent (gnat_node))
3637 == N_Attribute_Reference));
3638 }
3639
3640 gcc_assert (gnu_result);
3641 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3642 }
3643 break;
3644
3645 case N_Attribute_Reference:
3646 {
3647 /* The attribute designator (like an enumeration value). */
3648 int attribute = Get_Attribute_Id (Attribute_Name (gnat_node));
3649
3650 /* The Elab_Spec and Elab_Body attributes are special in that
3651 Prefix is a unit, not an object with a GCC equivalent. Similarly
3652 for Elaborated, since that variable isn't otherwise known. */
3653 if (attribute == Attr_Elab_Body || attribute == Attr_Elab_Spec)
3654 return (create_subprog_decl
3655 (create_concat_name (Entity (Prefix (gnat_node)),
3656 attribute == Attr_Elab_Body
3657 ? "elabb" : "elabs"),
3658 NULL_TREE, void_ftype, NULL_TREE, false, true, true, NULL,
3659 gnat_node));
3660
3661 gnu_result = Attribute_to_gnu (gnat_node, &gnu_result_type, attribute);
3662 }
3663 break;
3664
3665 case N_Reference:
3666 /* Like 'Access as far as we are concerned. */
3667 gnu_result = gnat_to_gnu (Prefix (gnat_node));
3668 gnu_result = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_result);
3669 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3670 break;
3671
3672 case N_Aggregate:
3673 case N_Extension_Aggregate:
3674 {
3675 tree gnu_aggr_type;
3676
3677 /* ??? It is wrong to evaluate the type now, but there doesn't
3678 seem to be any other practical way of doing it. */
3679
3680 gcc_assert (!Expansion_Delayed (gnat_node));
3681
3682 gnu_aggr_type = gnu_result_type
3683 = get_unpadded_type (Etype (gnat_node));
3684
3685 if (TREE_CODE (gnu_result_type) == RECORD_TYPE
3686 && TYPE_CONTAINS_TEMPLATE_P (gnu_result_type))
3687 gnu_aggr_type
3688 = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (gnu_result_type)));
3689
3690 if (Null_Record_Present (gnat_node))
3691 gnu_result = gnat_build_constructor (gnu_aggr_type, NULL_TREE);
3692
3693 else if (TREE_CODE (gnu_aggr_type) == RECORD_TYPE
3694 || TREE_CODE (gnu_aggr_type) == UNION_TYPE)
3695 gnu_result
3696 = assoc_to_constructor (Etype (gnat_node),
3697 First (Component_Associations (gnat_node)),
3698 gnu_aggr_type);
3699 else if (TREE_CODE (gnu_aggr_type) == ARRAY_TYPE)
3700 gnu_result = pos_to_constructor (First (Expressions (gnat_node)),
3701 gnu_aggr_type,
3702 Component_Type (Etype (gnat_node)));
3703 else if (TREE_CODE (gnu_aggr_type) == COMPLEX_TYPE)
3704 gnu_result
3705 = build_binary_op
3706 (COMPLEX_EXPR, gnu_aggr_type,
3707 gnat_to_gnu (Expression (First
3708 (Component_Associations (gnat_node)))),
3709 gnat_to_gnu (Expression
3710 (Next
3711 (First (Component_Associations (gnat_node))))));
3712 else
3713 gcc_unreachable ();
3714
3715 gnu_result = convert (gnu_result_type, gnu_result);
3716 }
3717 break;
3718
3719 case N_Null:
3720 if (TARGET_VTABLE_USES_DESCRIPTORS
3721 && Ekind (Etype (gnat_node)) == E_Access_Subprogram_Type
3722 && Is_Dispatch_Table_Entity (Etype (gnat_node)))
3723 gnu_result = null_fdesc_node;
3724 else
3725 gnu_result = null_pointer_node;
3726 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3727 break;
3728
3729 case N_Type_Conversion:
3730 case N_Qualified_Expression:
3731 /* Get the operand expression. */
3732 gnu_result = gnat_to_gnu (Expression (gnat_node));
3733 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3734
3735 gnu_result
3736 = convert_with_check (Etype (gnat_node), gnu_result,
3737 Do_Overflow_Check (gnat_node),
3738 Do_Range_Check (Expression (gnat_node)),
3739 Nkind (gnat_node) == N_Type_Conversion
3740 && Float_Truncate (gnat_node));
3741 break;
3742
3743 case N_Unchecked_Type_Conversion:
3744 gnu_result = gnat_to_gnu (Expression (gnat_node));
3745 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3746
3747 /* If the result is a pointer type, see if we are improperly
3748 converting to a stricter alignment. */
3749 if (STRICT_ALIGNMENT && POINTER_TYPE_P (gnu_result_type)
3750 && IN (Ekind (Etype (gnat_node)), Access_Kind))
3751 {
3752 unsigned int align = known_alignment (gnu_result);
3753 tree gnu_obj_type = TREE_TYPE (gnu_result_type);
3754 unsigned int oalign = TYPE_ALIGN (gnu_obj_type);
3755
3756 if (align != 0 && align < oalign && !TYPE_ALIGN_OK (gnu_obj_type))
3757 post_error_ne_tree_2
3758 ("?source alignment (^) '< alignment of & (^)",
3759 gnat_node, Designated_Type (Etype (gnat_node)),
3760 size_int (align / BITS_PER_UNIT), oalign / BITS_PER_UNIT);
3761 }
3762
3763 /* If we are converting a descriptor to a function pointer, first
3764 build the pointer. */
3765 if (TARGET_VTABLE_USES_DESCRIPTORS
3766 && TREE_TYPE (gnu_result) == fdesc_type_node
3767 && POINTER_TYPE_P (gnu_result_type))
3768 gnu_result = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_result);
3769
3770 gnu_result = unchecked_convert (gnu_result_type, gnu_result,
3771 No_Truncation (gnat_node));
3772 break;
3773
3774 case N_In:
3775 case N_Not_In:
3776 {
3777 tree gnu_object = gnat_to_gnu (Left_Opnd (gnat_node));
3778 Node_Id gnat_range = Right_Opnd (gnat_node);
3779 tree gnu_low;
3780 tree gnu_high;
3781
3782 /* GNAT_RANGE is either an N_Range node or an identifier
3783 denoting a subtype. */
3784 if (Nkind (gnat_range) == N_Range)
3785 {
3786 gnu_low = gnat_to_gnu (Low_Bound (gnat_range));
3787 gnu_high = gnat_to_gnu (High_Bound (gnat_range));
3788 }
3789 else if (Nkind (gnat_range) == N_Identifier
3790 || Nkind (gnat_range) == N_Expanded_Name)
3791 {
3792 tree gnu_range_type = get_unpadded_type (Entity (gnat_range));
3793
3794 gnu_low = TYPE_MIN_VALUE (gnu_range_type);
3795 gnu_high = TYPE_MAX_VALUE (gnu_range_type);
3796 }
3797 else
3798 gcc_unreachable ();
3799
3800 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3801
3802 /* If LOW and HIGH are identical, perform an equality test.
3803 Otherwise, ensure that GNU_OBJECT is only evaluated once
3804 and perform a full range test. */
3805 if (operand_equal_p (gnu_low, gnu_high, 0))
3806 gnu_result = build_binary_op (EQ_EXPR, gnu_result_type,
3807 gnu_object, gnu_low);
3808 else
3809 {
3810 gnu_object = protect_multiple_eval (gnu_object);
3811 gnu_result
3812 = build_binary_op (TRUTH_ANDIF_EXPR, gnu_result_type,
3813 build_binary_op (GE_EXPR, gnu_result_type,
3814 gnu_object, gnu_low),
3815 build_binary_op (LE_EXPR, gnu_result_type,
3816 gnu_object, gnu_high));
3817 }
3818
3819 if (Nkind (gnat_node) == N_Not_In)
3820 gnu_result = invert_truthvalue (gnu_result);
3821 }
3822 break;
3823
3824 case N_Op_Divide:
3825 gnu_lhs = gnat_to_gnu (Left_Opnd (gnat_node));
3826 gnu_rhs = gnat_to_gnu (Right_Opnd (gnat_node));
3827 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3828 gnu_result = build_binary_op (FLOAT_TYPE_P (gnu_result_type)
3829 ? RDIV_EXPR
3830 : (Rounded_Result (gnat_node)
3831 ? ROUND_DIV_EXPR : TRUNC_DIV_EXPR),
3832 gnu_result_type, gnu_lhs, gnu_rhs);
3833 break;
3834
3835 case N_Op_Or: case N_Op_And: case N_Op_Xor:
3836 /* These can either be operations on booleans or on modular types.
3837 Fall through for boolean types since that's the way GNU_CODES is
3838 set up. */
3839 if (IN (Ekind (Underlying_Type (Etype (gnat_node))),
3840 Modular_Integer_Kind))
3841 {
3842 enum tree_code code
3843 = (Nkind (gnat_node) == N_Op_Or ? BIT_IOR_EXPR
3844 : Nkind (gnat_node) == N_Op_And ? BIT_AND_EXPR
3845 : BIT_XOR_EXPR);
3846
3847 gnu_lhs = gnat_to_gnu (Left_Opnd (gnat_node));
3848 gnu_rhs = gnat_to_gnu (Right_Opnd (gnat_node));
3849 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3850 gnu_result = build_binary_op (code, gnu_result_type,
3851 gnu_lhs, gnu_rhs);
3852 break;
3853 }
3854
3855 /* ... fall through ... */
3856
3857 case N_Op_Eq: case N_Op_Ne: case N_Op_Lt:
3858 case N_Op_Le: case N_Op_Gt: case N_Op_Ge:
3859 case N_Op_Add: case N_Op_Subtract: case N_Op_Multiply:
3860 case N_Op_Mod: case N_Op_Rem:
3861 case N_Op_Rotate_Left:
3862 case N_Op_Rotate_Right:
3863 case N_Op_Shift_Left:
3864 case N_Op_Shift_Right:
3865 case N_Op_Shift_Right_Arithmetic:
3866 case N_And_Then: case N_Or_Else:
3867 {
3868 enum tree_code code = gnu_codes[Nkind (gnat_node)];
3869 bool ignore_lhs_overflow = false;
3870 tree gnu_type;
3871
3872 gnu_lhs = gnat_to_gnu (Left_Opnd (gnat_node));
3873 gnu_rhs = gnat_to_gnu (Right_Opnd (gnat_node));
3874 gnu_type = gnu_result_type = get_unpadded_type (Etype (gnat_node));
3875
3876 /* If this is a comparison operator, convert any references to
3877 an unconstrained array value into a reference to the
3878 actual array. */
3879 if (TREE_CODE_CLASS (code) == tcc_comparison)
3880 {
3881 gnu_lhs = maybe_unconstrained_array (gnu_lhs);
3882 gnu_rhs = maybe_unconstrained_array (gnu_rhs);
3883 }
3884
3885 /* If the result type is a private type, its full view may be a
3886 numeric subtype. The representation we need is that of its base
3887 type, given that it is the result of an arithmetic operation. */
3888 else if (Is_Private_Type (Etype (gnat_node)))
3889 gnu_type = gnu_result_type
3890 = get_unpadded_type (Base_Type (Full_View (Etype (gnat_node))));
3891
3892 /* If this is a shift whose count is not guaranteed to be correct,
3893 we need to adjust the shift count. */
3894 if (IN (Nkind (gnat_node), N_Op_Shift)
3895 && !Shift_Count_OK (gnat_node))
3896 {
3897 tree gnu_count_type = get_base_type (TREE_TYPE (gnu_rhs));
3898 tree gnu_max_shift
3899 = convert (gnu_count_type, TYPE_SIZE (gnu_type));
3900
3901 if (Nkind (gnat_node) == N_Op_Rotate_Left
3902 || Nkind (gnat_node) == N_Op_Rotate_Right)
3903 gnu_rhs = build_binary_op (TRUNC_MOD_EXPR, gnu_count_type,
3904 gnu_rhs, gnu_max_shift);
3905 else if (Nkind (gnat_node) == N_Op_Shift_Right_Arithmetic)
3906 gnu_rhs
3907 = build_binary_op
3908 (MIN_EXPR, gnu_count_type,
3909 build_binary_op (MINUS_EXPR,
3910 gnu_count_type,
3911 gnu_max_shift,
3912 convert (gnu_count_type,
3913 integer_one_node)),
3914 gnu_rhs);
3915 }
3916
3917 /* For right shifts, the type says what kind of shift to do,
3918 so we may need to choose a different type. In this case,
3919 we have to ignore integer overflow lest it propagates all
3920 the way down and causes a CE to be explicitly raised. */
3921 if (Nkind (gnat_node) == N_Op_Shift_Right
3922 && !TYPE_UNSIGNED (gnu_type))
3923 {
3924 gnu_type = gnat_unsigned_type (gnu_type);
3925 ignore_lhs_overflow = true;
3926 }
3927 else if (Nkind (gnat_node) == N_Op_Shift_Right_Arithmetic
3928 && TYPE_UNSIGNED (gnu_type))
3929 {
3930 gnu_type = gnat_signed_type (gnu_type);
3931 ignore_lhs_overflow = true;
3932 }
3933
3934 if (gnu_type != gnu_result_type)
3935 {
3936 tree gnu_old_lhs = gnu_lhs;
3937 gnu_lhs = convert (gnu_type, gnu_lhs);
3938 if (TREE_CODE (gnu_lhs) == INTEGER_CST && ignore_lhs_overflow)
3939 TREE_OVERFLOW (gnu_lhs) = TREE_OVERFLOW (gnu_old_lhs);
3940 gnu_rhs = convert (gnu_type, gnu_rhs);
3941 }
3942
3943 /* Instead of expanding overflow checks for addition, subtraction
3944 and multiplication itself, the front end will leave this to
3945 the back end when Backend_Overflow_Checks_On_Target is set.
3946 As the GCC back end itself does not know yet how to properly
3947 do overflow checking, do it here. The goal is to push
3948 the expansions further into the back end over time. */
3949 if (Do_Overflow_Check (gnat_node) && Backend_Overflow_Checks_On_Target
3950 && (Nkind (gnat_node) == N_Op_Add
3951 || Nkind (gnat_node) == N_Op_Subtract
3952 || Nkind (gnat_node) == N_Op_Multiply)
3953 && !TYPE_UNSIGNED (gnu_type)
3954 && !FLOAT_TYPE_P (gnu_type))
3955 gnu_result
3956 = build_binary_op_trapv (code, gnu_type, gnu_lhs, gnu_rhs);
3957 else
3958 gnu_result = build_binary_op (code, gnu_type, gnu_lhs, gnu_rhs);
3959
3960 /* If this is a logical shift with the shift count not verified,
3961 we must return zero if it is too large. We cannot compensate
3962 above in this case. */
3963 if ((Nkind (gnat_node) == N_Op_Shift_Left
3964 || Nkind (gnat_node) == N_Op_Shift_Right)
3965 && !Shift_Count_OK (gnat_node))
3966 gnu_result
3967 = build_cond_expr
3968 (gnu_type,
3969 build_binary_op (GE_EXPR, integer_type_node,
3970 gnu_rhs,
3971 convert (TREE_TYPE (gnu_rhs),
3972 TYPE_SIZE (gnu_type))),
3973 convert (gnu_type, integer_zero_node),
3974 gnu_result);
3975 }
3976 break;
3977
3978 case N_Conditional_Expression:
3979 {
3980 tree gnu_cond = gnat_to_gnu (First (Expressions (gnat_node)));
3981 tree gnu_true = gnat_to_gnu (Next (First (Expressions (gnat_node))));
3982 tree gnu_false
3983 = gnat_to_gnu (Next (Next (First (Expressions (gnat_node)))));
3984
3985 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3986 gnu_result = build_cond_expr (gnu_result_type,
3987 gnat_truthvalue_conversion (gnu_cond),
3988 gnu_true, gnu_false);
3989 }
3990 break;
3991
3992 case N_Op_Plus:
3993 gnu_result = gnat_to_gnu (Right_Opnd (gnat_node));
3994 gnu_result_type = get_unpadded_type (Etype (gnat_node));
3995 break;
3996
3997 case N_Op_Not:
3998 /* This case can apply to a boolean or a modular type.
3999 Fall through for a boolean operand since GNU_CODES is set
4000 up to handle this. */
4001 if (Is_Modular_Integer_Type (Etype (gnat_node))
4002 || (Ekind (Etype (gnat_node)) == E_Private_Type
4003 && Is_Modular_Integer_Type (Full_View (Etype (gnat_node)))))
4004 {
4005 gnu_expr = gnat_to_gnu (Right_Opnd (gnat_node));
4006 gnu_result_type = get_unpadded_type (Etype (gnat_node));
4007 gnu_result = build_unary_op (BIT_NOT_EXPR, gnu_result_type,
4008 gnu_expr);
4009 break;
4010 }
4011
4012 /* ... fall through ... */
4013
4014 case N_Op_Minus: case N_Op_Abs:
4015 gnu_expr = gnat_to_gnu (Right_Opnd (gnat_node));
4016
4017 if (Ekind (Etype (gnat_node)) != E_Private_Type)
4018 gnu_result_type = get_unpadded_type (Etype (gnat_node));
4019 else
4020 gnu_result_type = get_unpadded_type (Base_Type
4021 (Full_View (Etype (gnat_node))));
4022
4023 if (Do_Overflow_Check (gnat_node)
4024 && !TYPE_UNSIGNED (gnu_result_type)
4025 && !FLOAT_TYPE_P (gnu_result_type))
4026 gnu_result = build_unary_op_trapv (gnu_codes[Nkind (gnat_node)],
4027 gnu_result_type, gnu_expr);
4028 else
4029 gnu_result = build_unary_op (gnu_codes[Nkind (gnat_node)],
4030 gnu_result_type, gnu_expr);
4031 break;
4032
4033 case N_Allocator:
4034 {
4035 tree gnu_init = 0;
4036 tree gnu_type;
4037 bool ignore_init_type = false;
4038
4039 gnat_temp = Expression (gnat_node);
4040
4041 /* The Expression operand can either be an N_Identifier or
4042 Expanded_Name, which must represent a type, or a
4043 N_Qualified_Expression, which contains both the object type and an
4044 initial value for the object. */
4045 if (Nkind (gnat_temp) == N_Identifier
4046 || Nkind (gnat_temp) == N_Expanded_Name)
4047 gnu_type = gnat_to_gnu_type (Entity (gnat_temp));
4048 else if (Nkind (gnat_temp) == N_Qualified_Expression)
4049 {
4050 Entity_Id gnat_desig_type
4051 = Designated_Type (Underlying_Type (Etype (gnat_node)));
4052
4053 ignore_init_type = Has_Constrained_Partial_View (gnat_desig_type);
4054 gnu_init = gnat_to_gnu (Expression (gnat_temp));
4055
4056 gnu_init = maybe_unconstrained_array (gnu_init);
4057 if (Do_Range_Check (Expression (gnat_temp)))
4058 gnu_init = emit_range_check (gnu_init, gnat_desig_type);
4059
4060 if (Is_Elementary_Type (gnat_desig_type)
4061 || Is_Constrained (gnat_desig_type))
4062 {
4063 gnu_type = gnat_to_gnu_type (gnat_desig_type);
4064 gnu_init = convert (gnu_type, gnu_init);
4065 }
4066 else
4067 {
4068 gnu_type = gnat_to_gnu_type (Etype (Expression (gnat_temp)));
4069 if (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE)
4070 gnu_type = TREE_TYPE (gnu_init);
4071
4072 gnu_init = convert (gnu_type, gnu_init);
4073 }
4074 }
4075 else
4076 gcc_unreachable ();
4077
4078 gnu_result_type = get_unpadded_type (Etype (gnat_node));
4079 return build_allocator (gnu_type, gnu_init, gnu_result_type,
4080 Procedure_To_Call (gnat_node),
4081 Storage_Pool (gnat_node), gnat_node,
4082 ignore_init_type);
4083 }
4084 break;
4085
4086 /***************************/
4087 /* Chapter 5: Statements: */
4088 /***************************/
4089
4090 case N_Label:
4091 gnu_result = build1 (LABEL_EXPR, void_type_node,
4092 gnat_to_gnu (Identifier (gnat_node)));
4093 break;
4094
4095 case N_Null_Statement:
4096 gnu_result = alloc_stmt_list ();
4097 break;
4098
4099 case N_Assignment_Statement:
4100 /* Get the LHS and RHS of the statement and convert any reference to an
4101 unconstrained array into a reference to the underlying array.
4102 If we are not to do range checking and the RHS is an N_Function_Call,
4103 pass the LHS to the call function. */
4104 gnu_lhs = maybe_unconstrained_array (gnat_to_gnu (Name (gnat_node)));
4105
4106 /* If the type has a size that overflows, convert this into raise of
4107 Storage_Error: execution shouldn't have gotten here anyway. */
4108 if (TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (gnu_lhs))) == INTEGER_CST
4109 && TREE_OVERFLOW (TYPE_SIZE_UNIT (TREE_TYPE (gnu_lhs))))
4110 gnu_result = build_call_raise (SE_Object_Too_Large, gnat_node,
4111 N_Raise_Storage_Error);
4112 else if (Nkind (Expression (gnat_node)) == N_Function_Call
4113 && !Do_Range_Check (Expression (gnat_node)))
4114 gnu_result = call_to_gnu (Expression (gnat_node),
4115 &gnu_result_type, gnu_lhs);
4116 else
4117 {
4118 gnu_rhs
4119 = maybe_unconstrained_array (gnat_to_gnu (Expression (gnat_node)));
4120
4121 /* If range check is needed, emit code to generate it */
4122 if (Do_Range_Check (Expression (gnat_node)))
4123 gnu_rhs = emit_range_check (gnu_rhs, Etype (Name (gnat_node)));
4124
4125 gnu_result
4126 = build_binary_op (MODIFY_EXPR, NULL_TREE, gnu_lhs, gnu_rhs);
4127 }
4128 break;
4129
4130 case N_If_Statement:
4131 {
4132 tree *gnu_else_ptr; /* Point to put next "else if" or "else". */
4133
4134 /* Make the outer COND_EXPR. Avoid non-determinism. */
4135 gnu_result = build3 (COND_EXPR, void_type_node,
4136 gnat_to_gnu (Condition (gnat_node)),
4137 NULL_TREE, NULL_TREE);
4138 COND_EXPR_THEN (gnu_result)
4139 = build_stmt_group (Then_Statements (gnat_node), false);
4140 TREE_SIDE_EFFECTS (gnu_result) = 1;
4141 gnu_else_ptr = &COND_EXPR_ELSE (gnu_result);
4142
4143 /* Now make a COND_EXPR for each of the "else if" parts. Put each
4144 into the previous "else" part and point to where to put any
4145 outer "else". Also avoid non-determinism. */
4146 if (Present (Elsif_Parts (gnat_node)))
4147 for (gnat_temp = First (Elsif_Parts (gnat_node));
4148 Present (gnat_temp); gnat_temp = Next (gnat_temp))
4149 {
4150 gnu_expr = build3 (COND_EXPR, void_type_node,
4151 gnat_to_gnu (Condition (gnat_temp)),
4152 NULL_TREE, NULL_TREE);
4153 COND_EXPR_THEN (gnu_expr)
4154 = build_stmt_group (Then_Statements (gnat_temp), false);
4155 TREE_SIDE_EFFECTS (gnu_expr) = 1;
4156 set_expr_location_from_node (gnu_expr, gnat_temp);
4157 *gnu_else_ptr = gnu_expr;
4158 gnu_else_ptr = &COND_EXPR_ELSE (gnu_expr);
4159 }
4160
4161 *gnu_else_ptr = build_stmt_group (Else_Statements (gnat_node), false);
4162 }
4163 break;
4164
4165 case N_Case_Statement:
4166 gnu_result = Case_Statement_to_gnu (gnat_node);
4167 break;
4168
4169 case N_Loop_Statement:
4170 gnu_result = Loop_Statement_to_gnu (gnat_node);
4171 break;
4172
4173 case N_Block_Statement:
4174 start_stmt_group ();
4175 gnat_pushlevel ();
4176 process_decls (Declarations (gnat_node), Empty, Empty, true, true);
4177 add_stmt (gnat_to_gnu (Handled_Statement_Sequence (gnat_node)));
4178 gnat_poplevel ();
4179 gnu_result = end_stmt_group ();
4180
4181 if (Present (Identifier (gnat_node)))
4182 mark_out_of_scope (Entity (Identifier (gnat_node)));
4183 break;
4184
4185 case N_Exit_Statement:
4186 gnu_result
4187 = build2 (EXIT_STMT, void_type_node,
4188 (Present (Condition (gnat_node))
4189 ? gnat_to_gnu (Condition (gnat_node)) : NULL_TREE),
4190 (Present (Name (gnat_node))
4191 ? get_gnu_tree (Entity (Name (gnat_node)))
4192 : TREE_VALUE (gnu_loop_label_stack)));
4193 break;
4194
4195 case N_Return_Statement:
4196 {
4197 /* The gnu function type of the subprogram currently processed. */
4198 tree gnu_subprog_type = TREE_TYPE (current_function_decl);
4199 /* The return value from the subprogram. */
4200 tree gnu_ret_val = NULL_TREE;
4201 /* The place to put the return value. */
4202 tree gnu_lhs;
4203
4204 /* If we are dealing with a "return;" from an Ada procedure with
4205 parameters passed by copy in copy out, we need to return a record
4206 containing the final values of these parameters. If the list
4207 contains only one entry, return just that entry.
4208
4209 For a full description of the copy in copy out parameter mechanism,
4210 see the part of the gnat_to_gnu_entity routine dealing with the
4211 translation of subprograms.
4212
4213 But if we have a return label defined, convert this into
4214 a branch to that label. */
4215
4216 if (TREE_VALUE (gnu_return_label_stack))
4217 {
4218 gnu_result = build1 (GOTO_EXPR, void_type_node,
4219 TREE_VALUE (gnu_return_label_stack));
4220 break;
4221 }
4222
4223 else if (TYPE_CI_CO_LIST (gnu_subprog_type))
4224 {
4225 gnu_lhs = DECL_RESULT (current_function_decl);
4226 if (list_length (TYPE_CI_CO_LIST (gnu_subprog_type)) == 1)
4227 gnu_ret_val = TREE_VALUE (TYPE_CI_CO_LIST (gnu_subprog_type));
4228 else
4229 gnu_ret_val
4230 = gnat_build_constructor (TREE_TYPE (gnu_subprog_type),
4231 TYPE_CI_CO_LIST (gnu_subprog_type));
4232 }
4233
4234 /* If the Ada subprogram is a function, we just need to return the
4235 expression. If the subprogram returns an unconstrained
4236 array, we have to allocate a new version of the result and
4237 return it. If we return by reference, return a pointer. */
4238
4239 else if (Present (Expression (gnat_node)))
4240 {
4241 /* If the current function returns by target pointer and we
4242 are doing a call, pass that target to the call. */
4243 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type)
4244 && Nkind (Expression (gnat_node)) == N_Function_Call)
4245 {
4246 gnu_lhs
4247 = build_unary_op (INDIRECT_REF, NULL_TREE,
4248 DECL_ARGUMENTS (current_function_decl));
4249 gnu_result = call_to_gnu (Expression (gnat_node),
4250 &gnu_result_type, gnu_lhs);
4251 }
4252 else
4253 {
4254 gnu_ret_val = gnat_to_gnu (Expression (gnat_node));
4255
4256 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
4257 /* The original return type was unconstrained so dereference
4258 the TARGET pointer in the actual return value's type. */
4259 gnu_lhs
4260 = build_unary_op (INDIRECT_REF, TREE_TYPE (gnu_ret_val),
4261 DECL_ARGUMENTS (current_function_decl));
4262 else
4263 gnu_lhs = DECL_RESULT (current_function_decl);
4264
4265 /* Do not remove the padding from GNU_RET_VAL if the inner
4266 type is self-referential since we want to allocate the fixed
4267 size in that case. */
4268 if (TREE_CODE (gnu_ret_val) == COMPONENT_REF
4269 && (TREE_CODE (TREE_TYPE (TREE_OPERAND (gnu_ret_val, 0)))
4270 == RECORD_TYPE)
4271 && (TYPE_IS_PADDING_P
4272 (TREE_TYPE (TREE_OPERAND (gnu_ret_val, 0))))
4273 && (CONTAINS_PLACEHOLDER_P
4274 (TYPE_SIZE (TREE_TYPE (gnu_ret_val)))))
4275 gnu_ret_val = TREE_OPERAND (gnu_ret_val, 0);
4276
4277 if (TYPE_RETURNS_BY_REF_P (gnu_subprog_type)
4278 || By_Ref (gnat_node))
4279 gnu_ret_val
4280 = build_unary_op (ADDR_EXPR, NULL_TREE, gnu_ret_val);
4281
4282 else if (TYPE_RETURNS_UNCONSTRAINED_P (gnu_subprog_type))
4283 {
4284 gnu_ret_val = maybe_unconstrained_array (gnu_ret_val);
4285 gnu_ret_val
4286 = build_allocator (TREE_TYPE (gnu_ret_val),
4287 gnu_ret_val,
4288 TREE_TYPE (gnu_subprog_type),
4289 Procedure_To_Call (gnat_node),
4290 Storage_Pool (gnat_node),
4291 gnat_node, false);
4292 }
4293 }
4294 }
4295 else
4296 /* If the Ada subprogram is a regular procedure, just return. */
4297 gnu_lhs = NULL_TREE;
4298
4299 if (TYPE_RETURNS_BY_TARGET_PTR_P (gnu_subprog_type))
4300 {
4301 if (gnu_ret_val)
4302 gnu_result = build_binary_op (MODIFY_EXPR, NULL_TREE,
4303 gnu_lhs, gnu_ret_val);
4304 add_stmt_with_node (gnu_result, gnat_node);
4305 gnu_lhs = NULL_TREE;
4306 }
4307
4308 gnu_result = build_return_expr (gnu_lhs, gnu_ret_val);
4309 }
4310 break;
4311
4312 case N_Goto_Statement:
4313 gnu_result = build1 (GOTO_EXPR, void_type_node,
4314 gnat_to_gnu (Name (gnat_node)));
4315 break;
4316
4317 /****************************/
4318 /* Chapter 6: Subprograms: */
4319 /****************************/
4320
4321 case N_Subprogram_Declaration:
4322 /* Unless there is a freeze node, declare the subprogram. We consider
4323 this a "definition" even though we're not generating code for
4324 the subprogram because we will be making the corresponding GCC
4325 node here. */
4326
4327 if (No (Freeze_Node (Defining_Entity (Specification (gnat_node)))))
4328 gnat_to_gnu_entity (Defining_Entity (Specification (gnat_node)),
4329 NULL_TREE, 1);
4330 gnu_result = alloc_stmt_list ();
4331 break;
4332
4333 case N_Abstract_Subprogram_Declaration:
4334 /* This subprogram doesn't exist for code generation purposes, but we
4335 have to elaborate the types of any parameters and result, unless
4336 they are imported types (nothing to generate in this case). */
4337
4338 /* Process the parameter types first. */
4339
4340 for (gnat_temp
4341 = First_Formal_With_Extras
4342 (Defining_Entity (Specification (gnat_node)));
4343 Present (gnat_temp);
4344 gnat_temp = Next_Formal_With_Extras (gnat_temp))
4345 if (Is_Itype (Etype (gnat_temp))
4346 && !From_With_Type (Etype (gnat_temp)))
4347 gnat_to_gnu_entity (Etype (gnat_temp), NULL_TREE, 0);
4348
4349
4350 /* Then the result type, set to Standard_Void_Type for procedures. */
4351
4352 {
4353 Entity_Id gnat_temp_type
4354 = Etype (Defining_Entity (Specification (gnat_node)));
4355
4356 if (Is_Itype (gnat_temp_type) && !From_With_Type (gnat_temp_type))
4357 gnat_to_gnu_entity (Etype (gnat_temp_type), NULL_TREE, 0);
4358 }
4359
4360 gnu_result = alloc_stmt_list ();
4361 break;
4362
4363 case N_Defining_Program_Unit_Name:
4364 /* For a child unit identifier go up a level to get the
4365 specification. We get this when we try to find the spec of
4366 a child unit package that is the compilation unit being compiled. */
4367 gnu_result = gnat_to_gnu (Parent (gnat_node));
4368 break;
4369
4370 case N_Subprogram_Body:
4371 Subprogram_Body_to_gnu (gnat_node);
4372 gnu_result = alloc_stmt_list ();
4373 break;
4374
4375 case N_Function_Call:
4376 case N_Procedure_Call_Statement:
4377 gnu_result = call_to_gnu (gnat_node, &gnu_result_type, NULL_TREE);
4378 break;
4379
4380 /*************************/
4381 /* Chapter 7: Packages: */
4382 /*************************/
4383
4384 case N_Package_Declaration:
4385 gnu_result = gnat_to_gnu (Specification (gnat_node));
4386 break;
4387
4388 case N_Package_Specification:
4389
4390 start_stmt_group ();
4391 process_decls (Visible_Declarations (gnat_node),
4392 Private_Declarations (gnat_node), Empty, true, true);
4393 gnu_result = end_stmt_group ();
4394 break;
4395
4396 case N_Package_Body:
4397
4398 /* If this is the body of a generic package - do nothing */
4399 if (Ekind (Corresponding_Spec (gnat_node)) == E_Generic_Package)
4400 {
4401 gnu_result = alloc_stmt_list ();
4402 break;
4403 }
4404
4405 start_stmt_group ();
4406 process_decls (Declarations (gnat_node), Empty, Empty, true, true);
4407
4408 if (Present (Handled_Statement_Sequence (gnat_node)))
4409 add_stmt (gnat_to_gnu (Handled_Statement_Sequence (gnat_node)));
4410
4411 gnu_result = end_stmt_group ();
4412 break;
4413
4414 /*********************************/
4415 /* Chapter 8: Visibility Rules: */
4416 /*********************************/
4417
4418 case N_Use_Package_Clause:
4419 case N_Use_Type_Clause:
4420 /* Nothing to do here - but these may appear in list of declarations */
4421 gnu_result = alloc_stmt_list ();
4422 break;
4423
4424 /***********************/
4425 /* Chapter 9: Tasks: */
4426 /***********************/
4427
4428 case N_Protected_Type_Declaration:
4429 gnu_result = alloc_stmt_list ();
4430 break;
4431
4432 case N_Single_Task_Declaration:
4433 gnat_to_gnu_entity (Defining_Entity (gnat_node), NULL_TREE, 1);
4434 gnu_result = alloc_stmt_list ();
4435 break;
4436
4437 /***********************************************************/
4438 /* Chapter 10: Program Structure and Compilation Issues: */
4439 /***********************************************************/
4440
4441 case N_Compilation_Unit:
4442
4443 /* This is not called for the main unit, which is handled in function
4444 gigi above. */
4445 start_stmt_group ();
4446 gnat_pushlevel ();
4447
4448 Compilation_Unit_to_gnu (gnat_node);
4449 gnu_result = alloc_stmt_list ();
4450 break;
4451
4452 case N_Subprogram_Body_Stub:
4453 case N_Package_Body_Stub:
4454 case N_Protected_Body_Stub:
4455 case N_Task_Body_Stub:
4456 /* Simply process whatever unit is being inserted. */
4457 gnu_result = gnat_to_gnu (Unit (Library_Unit (gnat_node)));
4458 break;
4459
4460 case N_Subunit:
4461 gnu_result = gnat_to_gnu (Proper_Body (gnat_node));
4462 break;
4463
4464 /***************************/
4465 /* Chapter 11: Exceptions: */
4466 /***************************/
4467
4468 case N_Handled_Sequence_Of_Statements:
4469 /* If there is an At_End procedure attached to this node, and the EH
4470 mechanism is SJLJ, we must have at least a corresponding At_End
4471 handler, unless the No_Exception_Handlers restriction is set. */
4472 gcc_assert (type_annotate_only
4473 || Exception_Mechanism != Setjmp_Longjmp
4474 || No (At_End_Proc (gnat_node))
4475 || Present (Exception_Handlers (gnat_node))
4476 || No_Exception_Handlers_Set ());
4477
4478 gnu_result = Handled_Sequence_Of_Statements_to_gnu (gnat_node);
4479 break;
4480
4481 case N_Exception_Handler:
4482 if (Exception_Mechanism == Setjmp_Longjmp)
4483 gnu_result = Exception_Handler_to_gnu_sjlj (gnat_node);
4484 else if (Exception_Mechanism == Back_End_Exceptions)
4485 gnu_result = Exception_Handler_to_gnu_zcx (gnat_node);
4486 else
4487 gcc_unreachable ();
4488
4489 break;
4490
4491 case N_Push_Constraint_Error_Label:
4492 push_exception_label_stack (&gnu_constraint_error_label_stack,
4493 Exception_Label (gnat_node));
4494 break;
4495
4496 case N_Push_Storage_Error_Label:
4497 push_exception_label_stack (&gnu_storage_error_label_stack,
4498 Exception_Label (gnat_node));
4499 break;
4500
4501 case N_Push_Program_Error_Label:
4502 push_exception_label_stack (&gnu_program_error_label_stack,
4503 Exception_Label (gnat_node));
4504 break;
4505
4506 case N_Pop_Constraint_Error_Label:
4507 gnu_constraint_error_label_stack
4508 = TREE_CHAIN (gnu_constraint_error_label_stack);
4509 break;
4510
4511 case N_Pop_Storage_Error_Label:
4512 gnu_storage_error_label_stack
4513 = TREE_CHAIN (gnu_storage_error_label_stack);
4514 break;
4515
4516 case N_Pop_Program_Error_Label:
4517 gnu_program_error_label_stack
4518 = TREE_CHAIN (gnu_program_error_label_stack);
4519 break;
4520
4521 /*******************************/
4522 /* Chapter 12: Generic Units: */
4523 /*******************************/
4524
4525 case N_Generic_Function_Renaming_Declaration:
4526 case N_Generic_Package_Renaming_Declaration:
4527 case N_Generic_Procedure_Renaming_Declaration:
4528 case N_Generic_Package_Declaration:
4529 case N_Generic_Subprogram_Declaration:
4530 case N_Package_Instantiation:
4531 case N_Procedure_Instantiation:
4532 case N_Function_Instantiation:
4533 /* These nodes can appear on a declaration list but there is nothing to
4534 to be done with them. */
4535 gnu_result = alloc_stmt_list ();
4536 break;
4537
4538 /***************************************************/
4539 /* Chapter 13: Representation Clauses and */
4540 /* Implementation-Dependent Features: */
4541 /***************************************************/
4542
4543 case N_Attribute_Definition_Clause:
4544
4545 gnu_result = alloc_stmt_list ();
4546
4547 /* The only one we need deal with is for 'Address. For the others, SEM
4548 puts the information elsewhere. We need only deal with 'Address
4549 if the object has a Freeze_Node (which it never will currently). */
4550 if (Get_Attribute_Id (Chars (gnat_node)) != Attr_Address
4551 || No (Freeze_Node (Entity (Name (gnat_node)))))
4552 break;
4553
4554 /* Get the value to use as the address and save it as the
4555 equivalent for GNAT_TEMP. When the object is frozen,
4556 gnat_to_gnu_entity will do the right thing. */
4557 save_gnu_tree (Entity (Name (gnat_node)),
4558 gnat_to_gnu (Expression (gnat_node)), true);
4559 break;
4560
4561 case N_Enumeration_Representation_Clause:
4562 case N_Record_Representation_Clause:
4563 case N_At_Clause:
4564 /* We do nothing with these. SEM puts the information elsewhere. */
4565 gnu_result = alloc_stmt_list ();
4566 break;
4567
4568 case N_Code_Statement:
4569 if (!type_annotate_only)
4570 {
4571 tree gnu_template = gnat_to_gnu (Asm_Template (gnat_node));
4572 tree gnu_inputs = NULL_TREE, gnu_outputs = NULL_TREE;
4573 tree gnu_clobbers = NULL_TREE, tail;
4574 bool allows_mem, allows_reg, fake;
4575 int ninputs, noutputs, i;
4576 const char **oconstraints;
4577 const char *constraint;
4578 char *clobber;
4579
4580 /* First retrieve the 3 operand lists built by the front-end. */
4581 Setup_Asm_Outputs (gnat_node);
4582 while (Present (gnat_temp = Asm_Output_Variable ()))
4583 {
4584 tree gnu_value = gnat_to_gnu (gnat_temp);
4585 tree gnu_constr = build_tree_list (NULL_TREE, gnat_to_gnu
4586 (Asm_Output_Constraint ()));
4587
4588 gnu_outputs = tree_cons (gnu_constr, gnu_value, gnu_outputs);
4589 Next_Asm_Output ();
4590 }
4591
4592 Setup_Asm_Inputs (gnat_node);
4593 while (Present (gnat_temp = Asm_Input_Value ()))
4594 {
4595 tree gnu_value = gnat_to_gnu (gnat_temp);
4596 tree gnu_constr = build_tree_list (NULL_TREE, gnat_to_gnu
4597 (Asm_Input_Constraint ()));
4598
4599 gnu_inputs = tree_cons (gnu_constr, gnu_value, gnu_inputs);
4600 Next_Asm_Input ();
4601 }
4602
4603 Clobber_Setup (gnat_node);
4604 while ((clobber = Clobber_Get_Next ()))
4605 gnu_clobbers
4606 = tree_cons (NULL_TREE,
4607 build_string (strlen (clobber) + 1, clobber),
4608 gnu_clobbers);
4609
4610 /* Then perform some standard checking and processing on the
4611 operands. In particular, mark them addressable if needed. */
4612 gnu_outputs = nreverse (gnu_outputs);
4613 noutputs = list_length (gnu_outputs);
4614 gnu_inputs = nreverse (gnu_inputs);
4615 ninputs = list_length (gnu_inputs);
4616 oconstraints
4617 = (const char **) alloca (noutputs * sizeof (const char *));
4618
4619 for (i = 0, tail = gnu_outputs; tail; ++i, tail = TREE_CHAIN (tail))
4620 {
4621 tree output = TREE_VALUE (tail);
4622 constraint
4623 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail)));
4624 oconstraints[i] = constraint;
4625
4626 if (parse_output_constraint (&constraint, i, ninputs, noutputs,
4627 &allows_mem, &allows_reg, &fake))
4628 {
4629 /* If the operand is going to end up in memory,
4630 mark it addressable. Note that we don't test
4631 allows_mem like in the input case below; this
4632 is modelled on the C front-end. */
4633 if (!allows_reg
4634 && !gnat_mark_addressable (output))
4635 output = error_mark_node;
4636 }
4637 else
4638 output = error_mark_node;
4639
4640 TREE_VALUE (tail) = output;
4641 }
4642
4643 for (i = 0, tail = gnu_inputs; tail; ++i, tail = TREE_CHAIN (tail))
4644 {
4645 tree input = TREE_VALUE (tail);
4646 constraint
4647 = TREE_STRING_POINTER (TREE_VALUE (TREE_PURPOSE (tail)));
4648
4649 if (parse_input_constraint (&constraint, i, ninputs, noutputs,
4650 0, oconstraints,
4651 &allows_mem, &allows_reg))
4652 {
4653 /* If the operand is going to end up in memory,
4654 mark it addressable. */
4655 if (!allows_reg && allows_mem
4656 && !gnat_mark_addressable (input))
4657 input = error_mark_node;
4658 }
4659 else
4660 input = error_mark_node;
4661
4662 TREE_VALUE (tail) = input;
4663 }
4664
4665 gnu_result = build4 (ASM_EXPR, void_type_node,
4666 gnu_template, gnu_outputs,
4667 gnu_inputs, gnu_clobbers);
4668 ASM_VOLATILE_P (gnu_result) = Is_Asm_Volatile (gnat_node);
4669 }
4670 else
4671 gnu_result = alloc_stmt_list ();
4672
4673 break;
4674
4675 /***************************************************/
4676 /* Added Nodes */
4677 /***************************************************/
4678
4679 case N_Freeze_Entity:
4680 start_stmt_group ();
4681 process_freeze_entity (gnat_node);
4682 process_decls (Actions (gnat_node), Empty, Empty, true, true);
4683 gnu_result = end_stmt_group ();
4684 break;
4685
4686 case N_Itype_Reference:
4687 if (!present_gnu_tree (Itype (gnat_node)))
4688 process_type (Itype (gnat_node));
4689
4690 gnu_result = alloc_stmt_list ();
4691 break;
4692
4693 case N_Free_Statement:
4694 if (!type_annotate_only)
4695 {
4696 tree gnu_ptr = gnat_to_gnu (Expression (gnat_node));
4697 tree gnu_ptr_type = TREE_TYPE (gnu_ptr);
4698 tree gnu_obj_type;
4699 tree gnu_actual_obj_type = 0;
4700 tree gnu_obj_size;
4701 unsigned int align;
4702 unsigned int default_allocator_alignment
4703 = get_target_default_allocator_alignment () * BITS_PER_UNIT;
4704
4705 /* If this is a thin pointer, we must dereference it to create
4706 a fat pointer, then go back below to a thin pointer. The
4707 reason for this is that we need a fat pointer someplace in
4708 order to properly compute the size. */
4709 if (TYPE_THIN_POINTER_P (TREE_TYPE (gnu_ptr)))
4710 gnu_ptr = build_unary_op (ADDR_EXPR, NULL_TREE,
4711 build_unary_op (INDIRECT_REF, NULL_TREE,
4712 gnu_ptr));
4713
4714 /* If this is an unconstrained array, we know the object must
4715 have been allocated with the template in front of the object.
4716 So pass the template address, but get the total size. Do this
4717 by converting to a thin pointer. */
4718 if (TYPE_FAT_POINTER_P (TREE_TYPE (gnu_ptr)))
4719 gnu_ptr
4720 = convert (build_pointer_type
4721 (TYPE_OBJECT_RECORD_TYPE
4722 (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (gnu_ptr)))),
4723 gnu_ptr);
4724
4725 gnu_obj_type = TREE_TYPE (TREE_TYPE (gnu_ptr));
4726
4727 if (Present (Actual_Designated_Subtype (gnat_node)))
4728 {
4729 gnu_actual_obj_type
4730 = gnat_to_gnu_type (Actual_Designated_Subtype (gnat_node));
4731
4732 if (TYPE_FAT_OR_THIN_POINTER_P (gnu_ptr_type))
4733 gnu_actual_obj_type
4734 = build_unc_object_type_from_ptr (gnu_ptr_type,
4735 gnu_actual_obj_type,
4736 get_identifier ("DEALLOC"));
4737 }
4738 else
4739 gnu_actual_obj_type = gnu_obj_type;
4740
4741 gnu_obj_size = TYPE_SIZE_UNIT (gnu_actual_obj_type);
4742 align = TYPE_ALIGN (gnu_obj_type);
4743
4744 if (TREE_CODE (gnu_obj_type) == RECORD_TYPE
4745 && TYPE_CONTAINS_TEMPLATE_P (gnu_obj_type))
4746 {
4747 tree gnu_char_ptr_type = build_pointer_type (char_type_node);
4748 tree gnu_pos = byte_position (TYPE_FIELDS (gnu_obj_type));
4749 tree gnu_byte_offset
4750 = convert (sizetype,
4751 size_diffop (size_zero_node, gnu_pos));
4752 gnu_byte_offset = fold_build1 (NEGATE_EXPR, sizetype, gnu_byte_offset);
4753
4754 gnu_ptr = convert (gnu_char_ptr_type, gnu_ptr);
4755 gnu_ptr = build_binary_op (POINTER_PLUS_EXPR, gnu_char_ptr_type,
4756 gnu_ptr, gnu_byte_offset);
4757 }
4758
4759 /* If the object was allocated from the default storage pool, the
4760 alignment was greater than what the allocator provides, and this
4761 is not a fat or thin pointer, what we have in gnu_ptr here is an
4762 address dynamically adjusted to match the alignment requirement
4763 (see build_allocator). What we need to pass to free is the
4764 initial allocator's return value, which has been stored just in
4765 front of the block we have. */
4766
4767 if (No (Procedure_To_Call (gnat_node))
4768 && align > default_allocator_alignment
4769 && ! TYPE_FAT_OR_THIN_POINTER_P (gnu_ptr_type))
4770 {
4771 /* We set GNU_PTR
4772 as * (void **)((void *)GNU_PTR - (void *)sizeof(void *))
4773 in two steps: */
4774
4775 /* GNU_PTR (void *)
4776 = (void *)GNU_PTR - (void *)sizeof (void *)) */
4777 gnu_ptr
4778 = build_binary_op
4779 (POINTER_PLUS_EXPR, ptr_void_type_node,
4780 convert (ptr_void_type_node, gnu_ptr),
4781 size_int (-POINTER_SIZE/BITS_PER_UNIT));
4782
4783 /* GNU_PTR (void *) = *(void **)GNU_PTR */
4784 gnu_ptr
4785 = build_unary_op
4786 (INDIRECT_REF, NULL_TREE,
4787 convert (build_pointer_type (ptr_void_type_node),
4788 gnu_ptr));
4789 }
4790
4791 gnu_result = build_call_alloc_dealloc (gnu_ptr, gnu_obj_size, align,
4792 Procedure_To_Call (gnat_node),
4793 Storage_Pool (gnat_node),
4794 gnat_node);
4795 }
4796 break;
4797
4798 case N_Raise_Constraint_Error:
4799 case N_Raise_Program_Error:
4800 case N_Raise_Storage_Error:
4801 if (type_annotate_only)
4802 {
4803 gnu_result = alloc_stmt_list ();
4804 break;
4805 }
4806
4807 gnu_result_type = get_unpadded_type (Etype (gnat_node));
4808 gnu_result
4809 = build_call_raise (UI_To_Int (Reason (gnat_node)), gnat_node,
4810 Nkind (gnat_node));
4811
4812 /* If the type is VOID, this is a statement, so we need to
4813 generate the code for the call. Handle a Condition, if there
4814 is one. */
4815 if (TREE_CODE (gnu_result_type) == VOID_TYPE)
4816 {
4817 set_expr_location_from_node (gnu_result, gnat_node);
4818
4819 if (Present (Condition (gnat_node)))
4820 gnu_result = build3 (COND_EXPR, void_type_node,
4821 gnat_to_gnu (Condition (gnat_node)),
4822 gnu_result, alloc_stmt_list ());
4823 }
4824 else
4825 gnu_result = build1 (NULL_EXPR, gnu_result_type, gnu_result);
4826 break;
4827
4828 case N_Validate_Unchecked_Conversion:
4829 {
4830 Entity_Id gnat_target_type = Target_Type (gnat_node);
4831 tree gnu_source_type = gnat_to_gnu_type (Source_Type (gnat_node));
4832 tree gnu_target_type = gnat_to_gnu_type (gnat_target_type);
4833
4834 /* No need for any warning in this case. */
4835 if (!flag_strict_aliasing)
4836 ;
4837
4838 /* If the result is a pointer type, see if we are either converting
4839 from a non-pointer or from a pointer to a type with a different
4840 alias set and warn if so. If the result is defined in the same
4841 unit as this unchecked conversion, we can allow this because we
4842 can know to make the pointer type behave properly. */
4843 else if (POINTER_TYPE_P (gnu_target_type)
4844 && !In_Same_Source_Unit (gnat_target_type, gnat_node)
4845 && !No_Strict_Aliasing (Underlying_Type (gnat_target_type)))
4846 {
4847 tree gnu_source_desig_type = POINTER_TYPE_P (gnu_source_type)
4848 ? TREE_TYPE (gnu_source_type)
4849 : NULL_TREE;
4850 tree gnu_target_desig_type = TREE_TYPE (gnu_target_type);
4851
4852 if ((TYPE_DUMMY_P (gnu_target_desig_type)
4853 || get_alias_set (gnu_target_desig_type) != 0)
4854 && (!POINTER_TYPE_P (gnu_source_type)
4855 || (TYPE_DUMMY_P (gnu_source_desig_type)
4856 != TYPE_DUMMY_P (gnu_target_desig_type))
4857 || (TYPE_DUMMY_P (gnu_source_desig_type)
4858 && gnu_source_desig_type != gnu_target_desig_type)
4859 || (get_alias_set (gnu_source_desig_type)
4860 != get_alias_set (gnu_target_desig_type))))
4861 {
4862 post_error_ne
4863 ("?possible aliasing problem for type&",
4864 gnat_node, Target_Type (gnat_node));
4865 post_error
4866 ("\\?use -fno-strict-aliasing switch for references",
4867 gnat_node);
4868 post_error_ne
4869 ("\\?or use `pragma No_Strict_Aliasing (&);`",
4870 gnat_node, Target_Type (gnat_node));
4871 }
4872 }
4873
4874 /* But if the result is a fat pointer type, we have no mechanism to
4875 do that, so we unconditionally warn in problematic cases. */
4876 else if (TYPE_FAT_POINTER_P (gnu_target_type))
4877 {
4878 tree gnu_source_array_type
4879 = TYPE_FAT_POINTER_P (gnu_source_type)
4880 ? TREE_TYPE (TREE_TYPE (TYPE_FIELDS (gnu_source_type)))
4881 : NULL_TREE;
4882 tree gnu_target_array_type
4883 = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (gnu_target_type)));
4884
4885 if ((TYPE_DUMMY_P (gnu_target_array_type)
4886 || get_alias_set (gnu_target_array_type) != 0)
4887 && (!TYPE_FAT_POINTER_P (gnu_source_type)
4888 || (TYPE_DUMMY_P (gnu_source_array_type)
4889 != TYPE_DUMMY_P (gnu_target_array_type))
4890 || (TYPE_DUMMY_P (gnu_source_array_type)
4891 && gnu_source_array_type != gnu_target_array_type)
4892 || (get_alias_set (gnu_source_array_type)
4893 != get_alias_set (gnu_target_array_type))))
4894 {
4895 post_error_ne
4896 ("?possible aliasing problem for type&",
4897 gnat_node, Target_Type (gnat_node));
4898 post_error
4899 ("\\?use -fno-strict-aliasing switch for references",
4900 gnat_node);
4901 }
4902 }
4903 }
4904 gnu_result = alloc_stmt_list ();
4905 break;
4906
4907 case N_Raise_Statement:
4908 case N_Function_Specification:
4909 case N_Procedure_Specification:
4910 case N_Op_Concat:
4911 case N_Component_Association:
4912 case N_Task_Body:
4913 default:
4914 gcc_assert (type_annotate_only);
4915 gnu_result = alloc_stmt_list ();
4916 }
4917
4918 /* If we pushed our level as part of processing the elaboration routine,
4919 pop it back now. */
4920 if (went_into_elab_proc)
4921 {
4922 add_stmt (gnu_result);
4923 gnat_poplevel ();
4924 gnu_result = end_stmt_group ();
4925 current_function_decl = NULL_TREE;
4926 }
4927
4928 /* Set the location information on the result if it is a real expression.
4929 References can be reused for multiple GNAT nodes and they would get
4930 the location information of their last use. Note that we may have
4931 no result if we tried to build a CALL_EXPR node to a procedure with
4932 no side-effects and optimization is enabled. */
4933 if (gnu_result
4934 && EXPR_P (gnu_result)
4935 && TREE_CODE (gnu_result) != NOP_EXPR
4936 && !REFERENCE_CLASS_P (gnu_result))
4937 set_expr_location_from_node (gnu_result, gnat_node);
4938
4939 /* If we're supposed to return something of void_type, it means we have
4940 something we're elaborating for effect, so just return. */
4941 if (TREE_CODE (gnu_result_type) == VOID_TYPE)
4942 return gnu_result;
4943
4944 /* If the result is a constant that overflows, raise constraint error. */
4945 else if (TREE_CODE (gnu_result) == INTEGER_CST
4946 && TREE_OVERFLOW (gnu_result))
4947 {
4948 post_error ("Constraint_Error will be raised at run-time?", gnat_node);
4949
4950 gnu_result
4951 = build1 (NULL_EXPR, gnu_result_type,
4952 build_call_raise (CE_Overflow_Check_Failed, gnat_node,
4953 N_Raise_Constraint_Error));
4954 }
4955
4956 /* If our result has side-effects and is of an unconstrained type,
4957 make a SAVE_EXPR so that we can be sure it will only be referenced
4958 once. Note we must do this before any conversions. */
4959 if (TREE_SIDE_EFFECTS (gnu_result)
4960 && (TREE_CODE (gnu_result_type) == UNCONSTRAINED_ARRAY_TYPE
4961 || CONTAINS_PLACEHOLDER_P (TYPE_SIZE (gnu_result_type))))
4962 gnu_result = gnat_stabilize_reference (gnu_result, false);
4963
4964 /* Now convert the result to the result type, unless we are in one of the
4965 following cases:
4966
4967 1. If this is the Name of an assignment statement or a parameter of
4968 a procedure call, return the result almost unmodified since the
4969 RHS will have to be converted to our type in that case, unless
4970 the result type has a simpler size. Similarly, don't convert
4971 integral types that are the operands of an unchecked conversion
4972 since we need to ignore those conversions (for 'Valid).
4973
4974 2. If we have a label (which doesn't have any well-defined type), a
4975 field or an error, return the result almost unmodified. Also don't
4976 do the conversion if the result type involves a PLACEHOLDER_EXPR in
4977 its size since those are the cases where the front end may have the
4978 type wrong due to "instantiating" the unconstrained record with
4979 discriminant values. Similarly, if the two types are record types
4980 with the same name don't convert. This will be the case when we are
4981 converting from a packable version of a type to its original type and
4982 we need those conversions to be NOPs in order for assignments into
4983 these types to work properly.
4984
4985 3. If the type is void or if we have no result, return error_mark_node
4986 to show we have no result.
4987
4988 4. Finally, if the type of the result is already correct. */
4989
4990 if (Present (Parent (gnat_node))
4991 && ((Nkind (Parent (gnat_node)) == N_Assignment_Statement
4992 && Name (Parent (gnat_node)) == gnat_node)
4993 || (Nkind (Parent (gnat_node)) == N_Procedure_Call_Statement
4994 && Name (Parent (gnat_node)) != gnat_node)
4995 || Nkind (Parent (gnat_node)) == N_Parameter_Association
4996 || (Nkind (Parent (gnat_node)) == N_Unchecked_Type_Conversion
4997 && !AGGREGATE_TYPE_P (gnu_result_type)
4998 && !AGGREGATE_TYPE_P (TREE_TYPE (gnu_result))))
4999 && !(TYPE_SIZE (gnu_result_type)
5000 && TYPE_SIZE (TREE_TYPE (gnu_result))
5001 && (AGGREGATE_TYPE_P (gnu_result_type)
5002 == AGGREGATE_TYPE_P (TREE_TYPE (gnu_result)))
5003 && ((TREE_CODE (TYPE_SIZE (gnu_result_type)) == INTEGER_CST
5004 && (TREE_CODE (TYPE_SIZE (TREE_TYPE (gnu_result)))
5005 != INTEGER_CST))
5006 || (TREE_CODE (TYPE_SIZE (gnu_result_type)) != INTEGER_CST
5007 && !CONTAINS_PLACEHOLDER_P (TYPE_SIZE (gnu_result_type))
5008 && (CONTAINS_PLACEHOLDER_P
5009 (TYPE_SIZE (TREE_TYPE (gnu_result))))))
5010 && !(TREE_CODE (gnu_result_type) == RECORD_TYPE
5011 && TYPE_JUSTIFIED_MODULAR_P (gnu_result_type))))
5012 {
5013 /* Remove padding only if the inner object is of self-referential
5014 size: in that case it must be an object of unconstrained type
5015 with a default discriminant and we want to avoid copying too
5016 much data. */
5017 if (TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
5018 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_result))
5019 && CONTAINS_PLACEHOLDER_P (TYPE_SIZE (TREE_TYPE (TYPE_FIELDS
5020 (TREE_TYPE (gnu_result))))))
5021 gnu_result = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_result))),
5022 gnu_result);
5023 }
5024
5025 else if (TREE_CODE (gnu_result) == LABEL_DECL
5026 || TREE_CODE (gnu_result) == FIELD_DECL
5027 || TREE_CODE (gnu_result) == ERROR_MARK
5028 || (TYPE_SIZE (gnu_result_type)
5029 && TREE_CODE (TYPE_SIZE (gnu_result_type)) != INTEGER_CST
5030 && TREE_CODE (gnu_result) != INDIRECT_REF
5031 && CONTAINS_PLACEHOLDER_P (TYPE_SIZE (gnu_result_type)))
5032 || ((TYPE_NAME (gnu_result_type)
5033 == TYPE_NAME (TREE_TYPE (gnu_result)))
5034 && TREE_CODE (gnu_result_type) == RECORD_TYPE
5035 && TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE))
5036 {
5037 /* Remove any padding. */
5038 if (TREE_CODE (TREE_TYPE (gnu_result)) == RECORD_TYPE
5039 && TYPE_IS_PADDING_P (TREE_TYPE (gnu_result)))
5040 gnu_result = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (gnu_result))),
5041 gnu_result);
5042 }
5043
5044 else if (gnu_result == error_mark_node || gnu_result_type == void_type_node)
5045 gnu_result = error_mark_node;
5046
5047 else if (gnu_result_type != TREE_TYPE (gnu_result))
5048 gnu_result = convert (gnu_result_type, gnu_result);
5049
5050 /* We don't need any NOP_EXPR or NON_LVALUE_EXPR on the result. */
5051 while ((TREE_CODE (gnu_result) == NOP_EXPR
5052 || TREE_CODE (gnu_result) == NON_LVALUE_EXPR)
5053 && TREE_TYPE (TREE_OPERAND (gnu_result, 0)) == TREE_TYPE (gnu_result))
5054 gnu_result = TREE_OPERAND (gnu_result, 0);
5055
5056 return gnu_result;
5057 }
5058 \f
5059 /* Subroutine of above to push the exception label stack. GNU_STACK is
5060 a pointer to the stack to update and GNAT_LABEL, if present, is the
5061 label to push onto the stack. */
5062
5063 static void
5064 push_exception_label_stack (tree *gnu_stack, Entity_Id gnat_label)
5065 {
5066 tree gnu_label = (Present (gnat_label)
5067 ? gnat_to_gnu_entity (gnat_label, NULL_TREE, 0)
5068 : NULL_TREE);
5069
5070 *gnu_stack = tree_cons (NULL_TREE, gnu_label, *gnu_stack);
5071 }
5072 \f
5073 /* Record the current code position in GNAT_NODE. */
5074
5075 static void
5076 record_code_position (Node_Id gnat_node)
5077 {
5078 tree stmt_stmt = build1 (STMT_STMT, void_type_node, NULL_TREE);
5079
5080 add_stmt_with_node (stmt_stmt, gnat_node);
5081 save_gnu_tree (gnat_node, stmt_stmt, true);
5082 }
5083
5084 /* Insert the code for GNAT_NODE at the position saved for that node. */
5085
5086 static void
5087 insert_code_for (Node_Id gnat_node)
5088 {
5089 STMT_STMT_STMT (get_gnu_tree (gnat_node)) = gnat_to_gnu (gnat_node);
5090 save_gnu_tree (gnat_node, NULL_TREE, true);
5091 }
5092 \f
5093 /* Start a new statement group chained to the previous group. */
5094
5095 void
5096 start_stmt_group (void)
5097 {
5098 struct stmt_group *group = stmt_group_free_list;
5099
5100 /* First see if we can get one from the free list. */
5101 if (group)
5102 stmt_group_free_list = group->previous;
5103 else
5104 group = (struct stmt_group *) ggc_alloc (sizeof (struct stmt_group));
5105
5106 group->previous = current_stmt_group;
5107 group->stmt_list = group->block = group->cleanups = NULL_TREE;
5108 current_stmt_group = group;
5109 }
5110
5111 /* Add GNU_STMT to the current statement group. */
5112
5113 void
5114 add_stmt (tree gnu_stmt)
5115 {
5116 append_to_statement_list (gnu_stmt, &current_stmt_group->stmt_list);
5117 }
5118
5119 /* Similar, but set the location of GNU_STMT to that of GNAT_NODE. */
5120
5121 void
5122 add_stmt_with_node (tree gnu_stmt, Node_Id gnat_node)
5123 {
5124 if (Present (gnat_node))
5125 set_expr_location_from_node (gnu_stmt, gnat_node);
5126 add_stmt (gnu_stmt);
5127 }
5128
5129 /* Add a declaration statement for GNU_DECL to the current statement group.
5130 Get SLOC from Entity_Id. */
5131
5132 void
5133 add_decl_expr (tree gnu_decl, Entity_Id gnat_entity)
5134 {
5135 tree type = TREE_TYPE (gnu_decl);
5136 tree gnu_stmt, gnu_init, t;
5137
5138 /* If this is a variable that Gigi is to ignore, we may have been given
5139 an ERROR_MARK. So test for it. We also might have been given a
5140 reference for a renaming. So only do something for a decl. Also
5141 ignore a TYPE_DECL for an UNCONSTRAINED_ARRAY_TYPE. */
5142 if (!DECL_P (gnu_decl)
5143 || (TREE_CODE (gnu_decl) == TYPE_DECL
5144 && TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE))
5145 return;
5146
5147 gnu_stmt = build1 (DECL_EXPR, void_type_node, gnu_decl);
5148
5149 /* If we are global, we don't want to actually output the DECL_EXPR for
5150 this decl since we already have evaluated the expressions in the
5151 sizes and positions as globals and doing it again would be wrong. */
5152 if (global_bindings_p ())
5153 {
5154 /* Mark everything as used to prevent node sharing with subprograms.
5155 Note that walk_tree knows how to deal with TYPE_DECL, but neither
5156 VAR_DECL nor CONST_DECL. This appears to be somewhat arbitrary. */
5157 mark_visited (&gnu_stmt);
5158 if (TREE_CODE (gnu_decl) == VAR_DECL
5159 || TREE_CODE (gnu_decl) == CONST_DECL)
5160 {
5161 mark_visited (&DECL_SIZE (gnu_decl));
5162 mark_visited (&DECL_SIZE_UNIT (gnu_decl));
5163 mark_visited (&DECL_INITIAL (gnu_decl));
5164 }
5165 /* In any case, we have to deal with our own TYPE_ADA_SIZE field. */
5166 if (TREE_CODE (gnu_decl) == TYPE_DECL
5167 && (TREE_CODE (type) == RECORD_TYPE
5168 || TREE_CODE (type) == UNION_TYPE
5169 || TREE_CODE (type) == QUAL_UNION_TYPE)
5170 && (t = TYPE_ADA_SIZE (type)))
5171 mark_visited (&t);
5172 }
5173 else
5174 add_stmt_with_node (gnu_stmt, gnat_entity);
5175
5176 /* If this is a variable and an initializer is attached to it, it must be
5177 valid for the context. Similar to init_const in create_var_decl_1. */
5178 if (TREE_CODE (gnu_decl) == VAR_DECL
5179 && (gnu_init = DECL_INITIAL (gnu_decl)) != NULL_TREE
5180 && (!gnat_types_compatible_p (type, TREE_TYPE (gnu_init))
5181 || (TREE_STATIC (gnu_decl)
5182 && !initializer_constant_valid_p (gnu_init,
5183 TREE_TYPE (gnu_init)))))
5184 {
5185 /* If GNU_DECL has a padded type, convert it to the unpadded
5186 type so the assignment is done properly. */
5187 if (TREE_CODE (type) == RECORD_TYPE && TYPE_IS_PADDING_P (type))
5188 t = convert (TREE_TYPE (TYPE_FIELDS (type)), gnu_decl);
5189 else
5190 t = gnu_decl;
5191
5192 gnu_stmt = build_binary_op (MODIFY_EXPR, NULL_TREE, t, gnu_init);
5193
5194 DECL_INITIAL (gnu_decl) = NULL_TREE;
5195 if (TREE_READONLY (gnu_decl))
5196 {
5197 TREE_READONLY (gnu_decl) = 0;
5198 DECL_READONLY_ONCE_ELAB (gnu_decl) = 1;
5199 }
5200
5201 add_stmt_with_node (gnu_stmt, gnat_entity);
5202 }
5203 }
5204
5205 /* Callback for walk_tree to mark the visited trees rooted at *TP. */
5206
5207 static tree
5208 mark_visited_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
5209 {
5210 if (TREE_VISITED (*tp))
5211 *walk_subtrees = 0;
5212
5213 /* Don't mark a dummy type as visited because we want to mark its sizes
5214 and fields once it's filled in. */
5215 else if (!TYPE_IS_DUMMY_P (*tp))
5216 TREE_VISITED (*tp) = 1;
5217
5218 if (TYPE_P (*tp))
5219 TYPE_SIZES_GIMPLIFIED (*tp) = 1;
5220
5221 return NULL_TREE;
5222 }
5223
5224 /* Utility function to unshare expressions wrapped up in a SAVE_EXPR. */
5225
5226 static tree
5227 unshare_save_expr (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
5228 void *data ATTRIBUTE_UNUSED)
5229 {
5230 tree t = *tp;
5231
5232 if (TREE_CODE (t) == SAVE_EXPR)
5233 TREE_OPERAND (t, 0) = unshare_expr (TREE_OPERAND (t, 0));
5234
5235 return NULL_TREE;
5236 }
5237
5238 /* Mark nodes rooted at *TP with TREE_VISITED and types as having their
5239 sized gimplified. We use this to indicate all variable sizes and
5240 positions in global types may not be shared by any subprogram. */
5241
5242 void
5243 mark_visited (tree *tp)
5244 {
5245 walk_tree (tp, mark_visited_r, NULL, NULL);
5246 }
5247
5248 /* Add GNU_CLEANUP, a cleanup action, to the current code group and
5249 set its location to that of GNAT_NODE if present. */
5250
5251 static void
5252 add_cleanup (tree gnu_cleanup, Node_Id gnat_node)
5253 {
5254 if (Present (gnat_node))
5255 set_expr_location_from_node (gnu_cleanup, gnat_node);
5256 append_to_statement_list (gnu_cleanup, &current_stmt_group->cleanups);
5257 }
5258
5259 /* Set the BLOCK node corresponding to the current code group to GNU_BLOCK. */
5260
5261 void
5262 set_block_for_group (tree gnu_block)
5263 {
5264 gcc_assert (!current_stmt_group->block);
5265 current_stmt_group->block = gnu_block;
5266 }
5267
5268 /* Return code corresponding to the current code group. It is normally
5269 a STATEMENT_LIST, but may also be a BIND_EXPR or TRY_FINALLY_EXPR if
5270 BLOCK or cleanups were set. */
5271
5272 tree
5273 end_stmt_group (void)
5274 {
5275 struct stmt_group *group = current_stmt_group;
5276 tree gnu_retval = group->stmt_list;
5277
5278 /* If this is a null list, allocate a new STATEMENT_LIST. Then, if there
5279 are cleanups, make a TRY_FINALLY_EXPR. Last, if there is a BLOCK,
5280 make a BIND_EXPR. Note that we nest in that because the cleanup may
5281 reference variables in the block. */
5282 if (gnu_retval == NULL_TREE)
5283 gnu_retval = alloc_stmt_list ();
5284
5285 if (group->cleanups)
5286 gnu_retval = build2 (TRY_FINALLY_EXPR, void_type_node, gnu_retval,
5287 group->cleanups);
5288
5289 if (current_stmt_group->block)
5290 gnu_retval = build3 (BIND_EXPR, void_type_node, BLOCK_VARS (group->block),
5291 gnu_retval, group->block);
5292
5293 /* Remove this group from the stack and add it to the free list. */
5294 current_stmt_group = group->previous;
5295 group->previous = stmt_group_free_list;
5296 stmt_group_free_list = group;
5297
5298 return gnu_retval;
5299 }
5300
5301 /* Add a list of statements from GNAT_LIST, a possibly-empty list of
5302 statements.*/
5303
5304 static void
5305 add_stmt_list (List_Id gnat_list)
5306 {
5307 Node_Id gnat_node;
5308
5309 if (Present (gnat_list))
5310 for (gnat_node = First (gnat_list); Present (gnat_node);
5311 gnat_node = Next (gnat_node))
5312 add_stmt (gnat_to_gnu (gnat_node));
5313 }
5314
5315 /* Build a tree from GNAT_LIST, a possibly-empty list of statements.
5316 If BINDING_P is true, push and pop a binding level around the list. */
5317
5318 static tree
5319 build_stmt_group (List_Id gnat_list, bool binding_p)
5320 {
5321 start_stmt_group ();
5322 if (binding_p)
5323 gnat_pushlevel ();
5324
5325 add_stmt_list (gnat_list);
5326 if (binding_p)
5327 gnat_poplevel ();
5328
5329 return end_stmt_group ();
5330 }
5331 \f
5332 /* Push and pop routines for stacks. We keep a free list around so we
5333 don't waste tree nodes. */
5334
5335 static void
5336 push_stack (tree *gnu_stack_ptr, tree gnu_purpose, tree gnu_value)
5337 {
5338 tree gnu_node = gnu_stack_free_list;
5339
5340 if (gnu_node)
5341 {
5342 gnu_stack_free_list = TREE_CHAIN (gnu_node);
5343 TREE_CHAIN (gnu_node) = *gnu_stack_ptr;
5344 TREE_PURPOSE (gnu_node) = gnu_purpose;
5345 TREE_VALUE (gnu_node) = gnu_value;
5346 }
5347 else
5348 gnu_node = tree_cons (gnu_purpose, gnu_value, *gnu_stack_ptr);
5349
5350 *gnu_stack_ptr = gnu_node;
5351 }
5352
5353 static void
5354 pop_stack (tree *gnu_stack_ptr)
5355 {
5356 tree gnu_node = *gnu_stack_ptr;
5357
5358 *gnu_stack_ptr = TREE_CHAIN (gnu_node);
5359 TREE_CHAIN (gnu_node) = gnu_stack_free_list;
5360 gnu_stack_free_list = gnu_node;
5361 }
5362 \f
5363 /* Generate GIMPLE in place for the expression at *EXPR_P. */
5364
5365 int
5366 gnat_gimplify_expr (tree *expr_p, gimple_seq *pre_p,
5367 gimple_seq *post_p ATTRIBUTE_UNUSED)
5368 {
5369 tree expr = *expr_p;
5370 tree op;
5371
5372 if (IS_ADA_STMT (expr))
5373 return gnat_gimplify_stmt (expr_p);
5374
5375 switch (TREE_CODE (expr))
5376 {
5377 case NULL_EXPR:
5378 /* If this is for a scalar, just make a VAR_DECL for it. If for
5379 an aggregate, get a null pointer of the appropriate type and
5380 dereference it. */
5381 if (AGGREGATE_TYPE_P (TREE_TYPE (expr)))
5382 *expr_p = build1 (INDIRECT_REF, TREE_TYPE (expr),
5383 convert (build_pointer_type (TREE_TYPE (expr)),
5384 integer_zero_node));
5385 else
5386 {
5387 *expr_p = create_tmp_var (TREE_TYPE (expr), NULL);
5388 TREE_NO_WARNING (*expr_p) = 1;
5389 }
5390
5391 gimplify_and_add (TREE_OPERAND (expr, 0), pre_p);
5392 return GS_OK;
5393
5394 case UNCONSTRAINED_ARRAY_REF:
5395 /* We should only do this if we are just elaborating for side-effects,
5396 but we can't know that yet. */
5397 *expr_p = TREE_OPERAND (*expr_p, 0);
5398 return GS_OK;
5399
5400 case ADDR_EXPR:
5401 op = TREE_OPERAND (expr, 0);
5402
5403 /* If we're taking the address of a constant CONSTRUCTOR, force it to
5404 be put into static memory. We know it's going to be readonly given
5405 the semantics we have and it's required to be static memory in
5406 the case when the reference is in an elaboration procedure. */
5407 if (TREE_CODE (op) == CONSTRUCTOR && TREE_CONSTANT (op))
5408 {
5409 tree new_var = create_tmp_var (TREE_TYPE (op), "C");
5410
5411 TREE_READONLY (new_var) = 1;
5412 TREE_STATIC (new_var) = 1;
5413 TREE_ADDRESSABLE (new_var) = 1;
5414 DECL_INITIAL (new_var) = op;
5415
5416 TREE_OPERAND (expr, 0) = new_var;
5417 recompute_tree_invariant_for_addr_expr (expr);
5418 return GS_ALL_DONE;
5419 }
5420
5421 /* If we are taking the address of a SAVE_EXPR, we are typically
5422 processing a misaligned argument to be passed by reference in a
5423 procedure call. We just mark the operand as addressable + not
5424 readonly here and let the common gimplifier code perform the
5425 temporary creation, initialization, and "instantiation" in place of
5426 the SAVE_EXPR in further operands, in particular in the copy back
5427 code inserted after the call. */
5428 else if (TREE_CODE (op) == SAVE_EXPR)
5429 {
5430 TREE_ADDRESSABLE (op) = 1;
5431 TREE_READONLY (op) = 0;
5432 }
5433
5434 /* We let the gimplifier process &COND_EXPR and expect it to yield the
5435 address of the selected operand when it is addressable. Besides, we
5436 also expect addressable_p to only let COND_EXPRs where both arms are
5437 addressable reach here. */
5438 else if (TREE_CODE (op) == COND_EXPR)
5439 ;
5440
5441 /* Otherwise, if we are taking the address of something that is neither
5442 reference, declaration, or constant, make a variable for the operand
5443 here and then take its address. If we don't do it this way, we may
5444 confuse the gimplifier because it needs to know the variable is
5445 addressable at this point. This duplicates code in
5446 internal_get_tmp_var, which is unfortunate. */
5447 else if (TREE_CODE_CLASS (TREE_CODE (op)) != tcc_reference
5448 && TREE_CODE_CLASS (TREE_CODE (op)) != tcc_declaration
5449 && TREE_CODE_CLASS (TREE_CODE (op)) != tcc_constant)
5450 {
5451 tree new_var = create_tmp_var (TREE_TYPE (op), "A");
5452 gimple stmt;
5453
5454 TREE_ADDRESSABLE (new_var) = 1;
5455
5456 stmt = gimplify_assign (new_var, op, pre_p);
5457 if (EXPR_HAS_LOCATION (op))
5458 gimple_set_location (stmt, *EXPR_LOCUS (op));
5459
5460 TREE_OPERAND (expr, 0) = new_var;
5461 recompute_tree_invariant_for_addr_expr (expr);
5462 return GS_ALL_DONE;
5463 }
5464
5465 /* ... fall through ... */
5466
5467 default:
5468 return GS_UNHANDLED;
5469 }
5470 }
5471
5472 /* Generate GIMPLE in place for the statement at *STMT_P. */
5473
5474 static enum gimplify_status
5475 gnat_gimplify_stmt (tree *stmt_p)
5476 {
5477 tree stmt = *stmt_p;
5478
5479 switch (TREE_CODE (stmt))
5480 {
5481 case STMT_STMT:
5482 *stmt_p = STMT_STMT_STMT (stmt);
5483 return GS_OK;
5484
5485 case LOOP_STMT:
5486 {
5487 tree gnu_start_label = create_artificial_label ();
5488 tree gnu_end_label = LOOP_STMT_LABEL (stmt);
5489 tree t;
5490
5491 /* Set to emit the statements of the loop. */
5492 *stmt_p = NULL_TREE;
5493
5494 /* We first emit the start label and then a conditional jump to
5495 the end label if there's a top condition, then the body of the
5496 loop, then a conditional branch to the end label, then the update,
5497 if any, and finally a jump to the start label and the definition
5498 of the end label. */
5499 append_to_statement_list (build1 (LABEL_EXPR, void_type_node,
5500 gnu_start_label),
5501 stmt_p);
5502
5503 if (LOOP_STMT_TOP_COND (stmt))
5504 append_to_statement_list (build3 (COND_EXPR, void_type_node,
5505 LOOP_STMT_TOP_COND (stmt),
5506 alloc_stmt_list (),
5507 build1 (GOTO_EXPR,
5508 void_type_node,
5509 gnu_end_label)),
5510 stmt_p);
5511
5512 append_to_statement_list (LOOP_STMT_BODY (stmt), stmt_p);
5513
5514 if (LOOP_STMT_BOT_COND (stmt))
5515 append_to_statement_list (build3 (COND_EXPR, void_type_node,
5516 LOOP_STMT_BOT_COND (stmt),
5517 alloc_stmt_list (),
5518 build1 (GOTO_EXPR,
5519 void_type_node,
5520 gnu_end_label)),
5521 stmt_p);
5522
5523 if (LOOP_STMT_UPDATE (stmt))
5524 append_to_statement_list (LOOP_STMT_UPDATE (stmt), stmt_p);
5525
5526 t = build1 (GOTO_EXPR, void_type_node, gnu_start_label);
5527 SET_EXPR_LOCATION (t, DECL_SOURCE_LOCATION (gnu_end_label));
5528 append_to_statement_list (t, stmt_p);
5529
5530 append_to_statement_list (build1 (LABEL_EXPR, void_type_node,
5531 gnu_end_label),
5532 stmt_p);
5533 return GS_OK;
5534 }
5535
5536 case EXIT_STMT:
5537 /* Build a statement to jump to the corresponding end label, then
5538 see if it needs to be conditional. */
5539 *stmt_p = build1 (GOTO_EXPR, void_type_node, EXIT_STMT_LABEL (stmt));
5540 if (EXIT_STMT_COND (stmt))
5541 *stmt_p = build3 (COND_EXPR, void_type_node,
5542 EXIT_STMT_COND (stmt), *stmt_p, alloc_stmt_list ());
5543 return GS_OK;
5544
5545 default:
5546 gcc_unreachable ();
5547 }
5548 }
5549 \f
5550 /* Force references to each of the entities in packages withed by GNAT_NODE.
5551 Operate recursively but check that we aren't elaborating something more
5552 than once.
5553
5554 This routine is exclusively called in type_annotate mode, to compute DDA
5555 information for types in withed units, for ASIS use. */
5556
5557 static void
5558 elaborate_all_entities (Node_Id gnat_node)
5559 {
5560 Entity_Id gnat_with_clause, gnat_entity;
5561
5562 /* Process each unit only once. As we trace the context of all relevant
5563 units transitively, including generic bodies, we may encounter the
5564 same generic unit repeatedly. */
5565 if (!present_gnu_tree (gnat_node))
5566 save_gnu_tree (gnat_node, integer_zero_node, true);
5567
5568 /* Save entities in all context units. A body may have an implicit_with
5569 on its own spec, if the context includes a child unit, so don't save
5570 the spec twice. */
5571 for (gnat_with_clause = First (Context_Items (gnat_node));
5572 Present (gnat_with_clause);
5573 gnat_with_clause = Next (gnat_with_clause))
5574 if (Nkind (gnat_with_clause) == N_With_Clause
5575 && !present_gnu_tree (Library_Unit (gnat_with_clause))
5576 && Library_Unit (gnat_with_clause) != Library_Unit (Cunit (Main_Unit)))
5577 {
5578 elaborate_all_entities (Library_Unit (gnat_with_clause));
5579
5580 if (Ekind (Entity (Name (gnat_with_clause))) == E_Package)
5581 {
5582 for (gnat_entity = First_Entity (Entity (Name (gnat_with_clause)));
5583 Present (gnat_entity);
5584 gnat_entity = Next_Entity (gnat_entity))
5585 if (Is_Public (gnat_entity)
5586 && Convention (gnat_entity) != Convention_Intrinsic
5587 && Ekind (gnat_entity) != E_Package
5588 && Ekind (gnat_entity) != E_Package_Body
5589 && Ekind (gnat_entity) != E_Operator
5590 && !(IN (Ekind (gnat_entity), Type_Kind)
5591 && !Is_Frozen (gnat_entity))
5592 && !((Ekind (gnat_entity) == E_Procedure
5593 || Ekind (gnat_entity) == E_Function)
5594 && Is_Intrinsic_Subprogram (gnat_entity))
5595 && !IN (Ekind (gnat_entity), Named_Kind)
5596 && !IN (Ekind (gnat_entity), Generic_Unit_Kind))
5597 gnat_to_gnu_entity (gnat_entity, NULL_TREE, 0);
5598 }
5599 else if (Ekind (Entity (Name (gnat_with_clause))) == E_Generic_Package)
5600 {
5601 Node_Id gnat_body
5602 = Corresponding_Body (Unit (Library_Unit (gnat_with_clause)));
5603
5604 /* Retrieve compilation unit node of generic body. */
5605 while (Present (gnat_body)
5606 && Nkind (gnat_body) != N_Compilation_Unit)
5607 gnat_body = Parent (gnat_body);
5608
5609 /* If body is available, elaborate its context. */
5610 if (Present (gnat_body))
5611 elaborate_all_entities (gnat_body);
5612 }
5613 }
5614
5615 if (Nkind (Unit (gnat_node)) == N_Package_Body)
5616 elaborate_all_entities (Library_Unit (gnat_node));
5617 }
5618 \f
5619 /* Do the processing of N_Freeze_Entity, GNAT_NODE. */
5620
5621 static void
5622 process_freeze_entity (Node_Id gnat_node)
5623 {
5624 Entity_Id gnat_entity = Entity (gnat_node);
5625 tree gnu_old;
5626 tree gnu_new;
5627 tree gnu_init
5628 = (Nkind (Declaration_Node (gnat_entity)) == N_Object_Declaration
5629 && present_gnu_tree (Declaration_Node (gnat_entity)))
5630 ? get_gnu_tree (Declaration_Node (gnat_entity)) : NULL_TREE;
5631
5632 /* If this is a package, need to generate code for the package. */
5633 if (Ekind (gnat_entity) == E_Package)
5634 {
5635 insert_code_for
5636 (Parent (Corresponding_Body
5637 (Parent (Declaration_Node (gnat_entity)))));
5638 return;
5639 }
5640
5641 /* Check for old definition after the above call. This Freeze_Node
5642 might be for one its Itypes. */
5643 gnu_old
5644 = present_gnu_tree (gnat_entity) ? get_gnu_tree (gnat_entity) : 0;
5645
5646 /* If this entity has an Address representation clause, GNU_OLD is the
5647 address, so discard it here. */
5648 if (Present (Address_Clause (gnat_entity)))
5649 gnu_old = 0;
5650
5651 /* Don't do anything for class-wide types they are always
5652 transformed into their root type. */
5653 if (Ekind (gnat_entity) == E_Class_Wide_Type
5654 || (Ekind (gnat_entity) == E_Class_Wide_Subtype
5655 && Present (Equivalent_Type (gnat_entity))))
5656 return;
5657
5658 /* Don't do anything for subprograms that may have been elaborated before
5659 their freeze nodes. This can happen, for example because of an inner call
5660 in an instance body, or a previous compilation of a spec for inlining
5661 purposes. */
5662 if (gnu_old
5663 && ((TREE_CODE (gnu_old) == FUNCTION_DECL
5664 && (Ekind (gnat_entity) == E_Function
5665 || Ekind (gnat_entity) == E_Procedure))
5666 || (gnu_old
5667 && TREE_CODE (TREE_TYPE (gnu_old)) == FUNCTION_TYPE
5668 && Ekind (gnat_entity) == E_Subprogram_Type)))
5669 return;
5670
5671 /* If we have a non-dummy type old tree, we have nothing to do, except
5672 aborting if this is the public view of a private type whose full view was
5673 not delayed, as this node was never delayed as it should have been. We
5674 let this happen for concurrent types and their Corresponding_Record_Type,
5675 however, because each might legitimately be elaborated before it's own
5676 freeze node, e.g. while processing the other. */
5677 if (gnu_old
5678 && !(TREE_CODE (gnu_old) == TYPE_DECL
5679 && TYPE_IS_DUMMY_P (TREE_TYPE (gnu_old))))
5680 {
5681 gcc_assert ((IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
5682 && Present (Full_View (gnat_entity))
5683 && No (Freeze_Node (Full_View (gnat_entity))))
5684 || Is_Concurrent_Type (gnat_entity)
5685 || (IN (Ekind (gnat_entity), Record_Kind)
5686 && Is_Concurrent_Record_Type (gnat_entity)));
5687 return;
5688 }
5689
5690 /* Reset the saved tree, if any, and elaborate the object or type for real.
5691 If there is a full declaration, elaborate it and copy the type to
5692 GNAT_ENTITY. Likewise if this is the record subtype corresponding to
5693 a class wide type or subtype. */
5694 if (gnu_old)
5695 {
5696 save_gnu_tree (gnat_entity, NULL_TREE, false);
5697 if (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
5698 && Present (Full_View (gnat_entity))
5699 && present_gnu_tree (Full_View (gnat_entity)))
5700 save_gnu_tree (Full_View (gnat_entity), NULL_TREE, false);
5701 if (Present (Class_Wide_Type (gnat_entity))
5702 && Class_Wide_Type (gnat_entity) != gnat_entity)
5703 save_gnu_tree (Class_Wide_Type (gnat_entity), NULL_TREE, false);
5704 }
5705
5706 if (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
5707 && Present (Full_View (gnat_entity)))
5708 {
5709 gnu_new = gnat_to_gnu_entity (Full_View (gnat_entity), NULL_TREE, 1);
5710
5711 /* Propagate back-annotations from full view to partial view. */
5712 if (Unknown_Alignment (gnat_entity))
5713 Set_Alignment (gnat_entity, Alignment (Full_View (gnat_entity)));
5714
5715 if (Unknown_Esize (gnat_entity))
5716 Set_Esize (gnat_entity, Esize (Full_View (gnat_entity)));
5717
5718 if (Unknown_RM_Size (gnat_entity))
5719 Set_RM_Size (gnat_entity, RM_Size (Full_View (gnat_entity)));
5720
5721 /* The above call may have defined this entity (the simplest example
5722 of this is when we have a private enumeral type since the bounds
5723 will have the public view. */
5724 if (!present_gnu_tree (gnat_entity))
5725 save_gnu_tree (gnat_entity, gnu_new, false);
5726 if (Present (Class_Wide_Type (gnat_entity))
5727 && Class_Wide_Type (gnat_entity) != gnat_entity)
5728 save_gnu_tree (Class_Wide_Type (gnat_entity), gnu_new, false);
5729 }
5730 else
5731 gnu_new = gnat_to_gnu_entity (gnat_entity, gnu_init, 1);
5732
5733 /* If we've made any pointers to the old version of this type, we
5734 have to update them. */
5735 if (gnu_old)
5736 update_pointer_to (TYPE_MAIN_VARIANT (TREE_TYPE (gnu_old)),
5737 TREE_TYPE (gnu_new));
5738 }
5739 \f
5740 /* Process the list of inlined subprograms of GNAT_NODE, which is an
5741 N_Compilation_Unit. */
5742
5743 static void
5744 process_inlined_subprograms (Node_Id gnat_node)
5745 {
5746 Entity_Id gnat_entity;
5747 Node_Id gnat_body;
5748
5749 /* If we can inline, generate Gimple for all the inlined subprograms.
5750 Define the entity first so we set DECL_EXTERNAL. */
5751 if (optimize > 0)
5752 for (gnat_entity = First_Inlined_Subprogram (gnat_node);
5753 Present (gnat_entity);
5754 gnat_entity = Next_Inlined_Subprogram (gnat_entity))
5755 {
5756 gnat_body = Parent (Declaration_Node (gnat_entity));
5757
5758 if (Nkind (gnat_body) != N_Subprogram_Body)
5759 {
5760 /* ??? This really should always be Present. */
5761 if (No (Corresponding_Body (gnat_body)))
5762 continue;
5763
5764 gnat_body
5765 = Parent (Declaration_Node (Corresponding_Body (gnat_body)));
5766 }
5767
5768 if (Present (gnat_body))
5769 {
5770 gnat_to_gnu_entity (gnat_entity, NULL_TREE, 0);
5771 add_stmt (gnat_to_gnu (gnat_body));
5772 }
5773 }
5774 }
5775 \f
5776 /* Elaborate decls in the lists GNAT_DECLS and GNAT_DECLS2, if present.
5777 We make two passes, one to elaborate anything other than bodies (but
5778 we declare a function if there was no spec). The second pass
5779 elaborates the bodies.
5780
5781 GNAT_END_LIST gives the element in the list past the end. Normally,
5782 this is Empty, but can be First_Real_Statement for a
5783 Handled_Sequence_Of_Statements.
5784
5785 We make a complete pass through both lists if PASS1P is true, then make
5786 the second pass over both lists if PASS2P is true. The lists usually
5787 correspond to the public and private parts of a package. */
5788
5789 static void
5790 process_decls (List_Id gnat_decls, List_Id gnat_decls2,
5791 Node_Id gnat_end_list, bool pass1p, bool pass2p)
5792 {
5793 List_Id gnat_decl_array[2];
5794 Node_Id gnat_decl;
5795 int i;
5796
5797 gnat_decl_array[0] = gnat_decls, gnat_decl_array[1] = gnat_decls2;
5798
5799 if (pass1p)
5800 for (i = 0; i <= 1; i++)
5801 if (Present (gnat_decl_array[i]))
5802 for (gnat_decl = First (gnat_decl_array[i]);
5803 gnat_decl != gnat_end_list; gnat_decl = Next (gnat_decl))
5804 {
5805 /* For package specs, we recurse inside the declarations,
5806 thus taking the two pass approach inside the boundary. */
5807 if (Nkind (gnat_decl) == N_Package_Declaration
5808 && (Nkind (Specification (gnat_decl)
5809 == N_Package_Specification)))
5810 process_decls (Visible_Declarations (Specification (gnat_decl)),
5811 Private_Declarations (Specification (gnat_decl)),
5812 Empty, true, false);
5813
5814 /* Similarly for any declarations in the actions of a
5815 freeze node. */
5816 else if (Nkind (gnat_decl) == N_Freeze_Entity)
5817 {
5818 process_freeze_entity (gnat_decl);
5819 process_decls (Actions (gnat_decl), Empty, Empty, true, false);
5820 }
5821
5822 /* Package bodies with freeze nodes get their elaboration deferred
5823 until the freeze node, but the code must be placed in the right
5824 place, so record the code position now. */
5825 else if (Nkind (gnat_decl) == N_Package_Body
5826 && Present (Freeze_Node (Corresponding_Spec (gnat_decl))))
5827 record_code_position (gnat_decl);
5828
5829 else if (Nkind (gnat_decl) == N_Package_Body_Stub
5830 && Present (Library_Unit (gnat_decl))
5831 && Present (Freeze_Node
5832 (Corresponding_Spec
5833 (Proper_Body (Unit
5834 (Library_Unit (gnat_decl)))))))
5835 record_code_position
5836 (Proper_Body (Unit (Library_Unit (gnat_decl))));
5837
5838 /* We defer most subprogram bodies to the second pass. */
5839 else if (Nkind (gnat_decl) == N_Subprogram_Body)
5840 {
5841 if (Acts_As_Spec (gnat_decl))
5842 {
5843 Node_Id gnat_subprog_id = Defining_Entity (gnat_decl);
5844
5845 if (Ekind (gnat_subprog_id) != E_Generic_Procedure
5846 && Ekind (gnat_subprog_id) != E_Generic_Function)
5847 gnat_to_gnu_entity (gnat_subprog_id, NULL_TREE, 1);
5848 }
5849 }
5850 /* For bodies and stubs that act as their own specs, the entity
5851 itself must be elaborated in the first pass, because it may
5852 be used in other declarations. */
5853 else if (Nkind (gnat_decl) == N_Subprogram_Body_Stub)
5854 {
5855 Node_Id gnat_subprog_id =
5856 Defining_Entity (Specification (gnat_decl));
5857
5858 if (Ekind (gnat_subprog_id) != E_Subprogram_Body
5859 && Ekind (gnat_subprog_id) != E_Generic_Procedure
5860 && Ekind (gnat_subprog_id) != E_Generic_Function)
5861 gnat_to_gnu_entity (gnat_subprog_id, NULL_TREE, 1);
5862 }
5863
5864 /* Concurrent stubs stand for the corresponding subprogram bodies,
5865 which are deferred like other bodies. */
5866 else if (Nkind (gnat_decl) == N_Task_Body_Stub
5867 || Nkind (gnat_decl) == N_Protected_Body_Stub)
5868 ;
5869 else
5870 add_stmt (gnat_to_gnu (gnat_decl));
5871 }
5872
5873 /* Here we elaborate everything we deferred above except for package bodies,
5874 which are elaborated at their freeze nodes. Note that we must also
5875 go inside things (package specs and freeze nodes) the first pass did. */
5876 if (pass2p)
5877 for (i = 0; i <= 1; i++)
5878 if (Present (gnat_decl_array[i]))
5879 for (gnat_decl = First (gnat_decl_array[i]);
5880 gnat_decl != gnat_end_list; gnat_decl = Next (gnat_decl))
5881 {
5882 if (Nkind (gnat_decl) == N_Subprogram_Body
5883 || Nkind (gnat_decl) == N_Subprogram_Body_Stub
5884 || Nkind (gnat_decl) == N_Task_Body_Stub
5885 || Nkind (gnat_decl) == N_Protected_Body_Stub)
5886 add_stmt (gnat_to_gnu (gnat_decl));
5887
5888 else if (Nkind (gnat_decl) == N_Package_Declaration
5889 && (Nkind (Specification (gnat_decl)
5890 == N_Package_Specification)))
5891 process_decls (Visible_Declarations (Specification (gnat_decl)),
5892 Private_Declarations (Specification (gnat_decl)),
5893 Empty, false, true);
5894
5895 else if (Nkind (gnat_decl) == N_Freeze_Entity)
5896 process_decls (Actions (gnat_decl), Empty, Empty, false, true);
5897 }
5898 }
5899 \f
5900 /* Make a unary operation of kind CODE using build_unary_op, but guard
5901 the operation by an overflow check. CODE can be one of NEGATE_EXPR
5902 or ABS_EXPR. GNU_TYPE is the type desired for the result.
5903 Usually the operation is to be performed in that type. */
5904
5905 static tree
5906 build_unary_op_trapv (enum tree_code code,
5907 tree gnu_type,
5908 tree operand)
5909 {
5910 gcc_assert ((code == NEGATE_EXPR) || (code == ABS_EXPR));
5911
5912 operand = protect_multiple_eval (operand);
5913
5914 return emit_check (build_binary_op (EQ_EXPR, integer_type_node,
5915 operand, TYPE_MIN_VALUE (gnu_type)),
5916 build_unary_op (code, gnu_type, operand),
5917 CE_Overflow_Check_Failed);
5918 }
5919
5920 /* Make a binary operation of kind CODE using build_binary_op, but
5921 guard the operation by an overflow check. CODE can be one of
5922 PLUS_EXPR, MINUS_EXPR or MULT_EXPR. GNU_TYPE is the type desired
5923 for the result. Usually the operation is to be performed in that type. */
5924
5925 static tree
5926 build_binary_op_trapv (enum tree_code code,
5927 tree gnu_type,
5928 tree left,
5929 tree right)
5930 {
5931 tree lhs = protect_multiple_eval (left);
5932 tree rhs = protect_multiple_eval (right);
5933 tree type_max = TYPE_MAX_VALUE (gnu_type);
5934 tree type_min = TYPE_MIN_VALUE (gnu_type);
5935 tree gnu_expr;
5936 tree tmp1, tmp2;
5937 tree zero = convert (gnu_type, integer_zero_node);
5938 tree rhs_ge_zero;
5939 tree check_pos;
5940 tree check_neg;
5941
5942 int precision = TYPE_PRECISION (gnu_type);
5943
5944 /* Prefer a constant rhs to simplify checks */
5945
5946 if (TREE_CONSTANT (lhs) && !TREE_CONSTANT (rhs)
5947 && commutative_tree_code (code))
5948 {
5949 tree tmp = lhs;
5950 lhs = rhs;
5951 rhs = tmp;
5952 }
5953
5954 /* In the case the right-hand size is still not constant, try to
5955 use an exact operation in a wider type. */
5956
5957 if (!TREE_CONSTANT (rhs))
5958 {
5959 int needed_precision = code == MULT_EXPR ? 2 * precision : precision + 1;
5960
5961 if (code == MULT_EXPR && precision == 64)
5962 {
5963 return build_call_2_expr (mulv64_decl, lhs, rhs);
5964 }
5965 else if (needed_precision <= LONG_LONG_TYPE_SIZE)
5966 {
5967 tree calc_type = gnat_type_for_size (needed_precision, 0);
5968 tree result;
5969 tree check;
5970
5971 result = build_binary_op (code, calc_type,
5972 convert (calc_type, lhs),
5973 convert (calc_type, rhs));
5974
5975 check = build_binary_op
5976 (TRUTH_ORIF_EXPR, integer_type_node,
5977 build_binary_op (LT_EXPR, integer_type_node, result,
5978 convert (calc_type, type_min)),
5979 build_binary_op (GT_EXPR, integer_type_node, result,
5980 convert (calc_type, type_max)));
5981
5982 result = convert (gnu_type, result);
5983
5984 return emit_check (check, result, CE_Overflow_Check_Failed);
5985 }
5986 }
5987
5988 gnu_expr = build_binary_op (code, gnu_type, lhs, rhs);
5989 rhs_ge_zero = build_binary_op (GE_EXPR, integer_type_node, rhs, zero);
5990
5991 switch (code)
5992 {
5993 case PLUS_EXPR:
5994 /* When rhs >= 0, overflow when lhs > type_max - rhs */
5995 check_pos = build_binary_op (GT_EXPR, integer_type_node, lhs,
5996 build_binary_op (MINUS_EXPR, gnu_type,
5997 type_max, rhs)),
5998
5999 /* When rhs < 0, overflow when lhs < type_min - rhs */
6000 check_neg = build_binary_op (LT_EXPR, integer_type_node, lhs,
6001 build_binary_op (MINUS_EXPR, gnu_type,
6002 type_min, rhs));
6003 break;
6004
6005 case MINUS_EXPR:
6006 /* When rhs >= 0, overflow when lhs < type_min + rhs */
6007 check_pos = build_binary_op (LT_EXPR, integer_type_node, lhs,
6008 build_binary_op (PLUS_EXPR, gnu_type,
6009 type_min, rhs)),
6010
6011 /* When rhs < 0, overflow when lhs > type_max + rhs */
6012 check_neg = build_binary_op (GT_EXPR, integer_type_node, lhs,
6013 build_binary_op (PLUS_EXPR, gnu_type,
6014 type_max, rhs));
6015 break;
6016
6017 case MULT_EXPR:
6018 /* The check here is designed to be efficient if the rhs is constant,
6019 Four different check expressions determine wether X * C overflows,
6020 depending on C.
6021 C == 0 => false
6022 C > 0 => X > type_max / C || X < type_min / C
6023 C == -1 => X == type_min
6024 C < -1 => X > type_min / C || X < type_max / C */
6025
6026 tmp1 = build_binary_op (TRUNC_DIV_EXPR, gnu_type, type_max, rhs);
6027 tmp2 = build_binary_op (TRUNC_DIV_EXPR, gnu_type, type_min, rhs);
6028
6029 check_pos = build_binary_op (TRUTH_ANDIF_EXPR, integer_type_node,
6030 build_binary_op (NE_EXPR, integer_type_node, zero, rhs),
6031 build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
6032 build_binary_op (GT_EXPR, integer_type_node, lhs, tmp1),
6033 build_binary_op (LT_EXPR, integer_type_node, lhs, tmp2)));
6034
6035 check_neg = fold_build3 (COND_EXPR, integer_type_node,
6036 build_binary_op (EQ_EXPR, integer_type_node, rhs,
6037 build_int_cst (gnu_type, -1)),
6038 build_binary_op (EQ_EXPR, integer_type_node, lhs, type_min),
6039 build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
6040 build_binary_op (GT_EXPR, integer_type_node, lhs, tmp2),
6041 build_binary_op (LT_EXPR, integer_type_node, lhs, tmp1)));
6042 break;
6043
6044 default:
6045 gcc_unreachable();
6046 }
6047
6048 return emit_check (fold_build3 (COND_EXPR, integer_type_node, rhs_ge_zero,
6049 check_pos, check_neg),
6050 gnu_expr, CE_Overflow_Check_Failed);
6051 }
6052
6053 /* Emit code for a range check. GNU_EXPR is the expression to be checked,
6054 GNAT_RANGE_TYPE the gnat type or subtype containing the bounds against
6055 which we have to check. */
6056
6057 static tree
6058 emit_range_check (tree gnu_expr, Entity_Id gnat_range_type)
6059 {
6060 tree gnu_range_type = get_unpadded_type (gnat_range_type);
6061 tree gnu_low = TYPE_MIN_VALUE (gnu_range_type);
6062 tree gnu_high = TYPE_MAX_VALUE (gnu_range_type);
6063 tree gnu_compare_type = get_base_type (TREE_TYPE (gnu_expr));
6064
6065 /* If GNU_EXPR has GNAT_RANGE_TYPE as its base type, no check is needed.
6066 This can for example happen when translating 'Val or 'Value. */
6067 if (gnu_compare_type == gnu_range_type)
6068 return gnu_expr;
6069
6070 /* If GNU_EXPR has an integral type that is narrower than GNU_RANGE_TYPE,
6071 we can't do anything since we might be truncating the bounds. No
6072 check is needed in this case. */
6073 if (INTEGRAL_TYPE_P (TREE_TYPE (gnu_expr))
6074 && (TYPE_PRECISION (gnu_compare_type)
6075 < TYPE_PRECISION (get_base_type (gnu_range_type))))
6076 return gnu_expr;
6077
6078 /* Checked expressions must be evaluated only once. */
6079 gnu_expr = protect_multiple_eval (gnu_expr);
6080
6081 /* There's no good type to use here, so we might as well use
6082 integer_type_node. Note that the form of the check is
6083 (not (expr >= lo)) or (not (expr <= hi))
6084 the reason for this slightly convoluted form is that NaNs
6085 are not considered to be in range in the float case. */
6086 return emit_check
6087 (build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
6088 invert_truthvalue
6089 (build_binary_op (GE_EXPR, integer_type_node,
6090 convert (gnu_compare_type, gnu_expr),
6091 convert (gnu_compare_type, gnu_low))),
6092 invert_truthvalue
6093 (build_binary_op (LE_EXPR, integer_type_node,
6094 convert (gnu_compare_type, gnu_expr),
6095 convert (gnu_compare_type,
6096 gnu_high)))),
6097 gnu_expr, CE_Range_Check_Failed);
6098 }
6099 \f
6100 /* Emit code for an index check. GNU_ARRAY_OBJECT is the array object
6101 which we are about to index, GNU_EXPR is the index expression to be
6102 checked, GNU_LOW and GNU_HIGH are the lower and upper bounds
6103 against which GNU_EXPR has to be checked. Note that for index
6104 checking we cannot use the emit_range_check function (although very
6105 similar code needs to be generated in both cases) since for index
6106 checking the array type against which we are checking the indices
6107 may be unconstrained and consequently we need to retrieve the
6108 actual index bounds from the array object itself
6109 (GNU_ARRAY_OBJECT). The place where we need to do that is in
6110 subprograms having unconstrained array formal parameters */
6111
6112 static tree
6113 emit_index_check (tree gnu_array_object,
6114 tree gnu_expr,
6115 tree gnu_low,
6116 tree gnu_high)
6117 {
6118 tree gnu_expr_check;
6119
6120 /* Checked expressions must be evaluated only once. */
6121 gnu_expr = protect_multiple_eval (gnu_expr);
6122
6123 /* Must do this computation in the base type in case the expression's
6124 type is an unsigned subtypes. */
6125 gnu_expr_check = convert (get_base_type (TREE_TYPE (gnu_expr)), gnu_expr);
6126
6127 /* If GNU_LOW or GNU_HIGH are a PLACEHOLDER_EXPR, qualify them by
6128 the object we are handling. */
6129 gnu_low = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_low, gnu_array_object);
6130 gnu_high = SUBSTITUTE_PLACEHOLDER_IN_EXPR (gnu_high, gnu_array_object);
6131
6132 /* There's no good type to use here, so we might as well use
6133 integer_type_node. */
6134 return emit_check
6135 (build_binary_op (TRUTH_ORIF_EXPR, integer_type_node,
6136 build_binary_op (LT_EXPR, integer_type_node,
6137 gnu_expr_check,
6138 convert (TREE_TYPE (gnu_expr_check),
6139 gnu_low)),
6140 build_binary_op (GT_EXPR, integer_type_node,
6141 gnu_expr_check,
6142 convert (TREE_TYPE (gnu_expr_check),
6143 gnu_high))),
6144 gnu_expr, CE_Index_Check_Failed);
6145 }
6146 \f
6147 /* GNU_COND contains the condition corresponding to an access, discriminant or
6148 range check of value GNU_EXPR. Build a COND_EXPR that returns GNU_EXPR if
6149 GNU_COND is false and raises a CONSTRAINT_ERROR if GNU_COND is true.
6150 REASON is the code that says why the exception was raised. */
6151
6152 static tree
6153 emit_check (tree gnu_cond, tree gnu_expr, int reason)
6154 {
6155 tree gnu_call;
6156 tree gnu_result;
6157
6158 gnu_call = build_call_raise (reason, Empty, N_Raise_Constraint_Error);
6159
6160 /* Use an outer COMPOUND_EXPR to make sure that GNU_EXPR will get evaluated
6161 in front of the comparison in case it ends up being a SAVE_EXPR. Put the
6162 whole thing inside its own SAVE_EXPR so the inner SAVE_EXPR doesn't leak
6163 out. */
6164 gnu_result = fold_build3 (COND_EXPR, TREE_TYPE (gnu_expr), gnu_cond,
6165 build2 (COMPOUND_EXPR, TREE_TYPE (gnu_expr),
6166 gnu_call, gnu_expr),
6167 gnu_expr);
6168
6169 /* If GNU_EXPR has side effects, make the outer COMPOUND_EXPR and
6170 protect it. Otherwise, show GNU_RESULT has no side effects: we
6171 don't need to evaluate it just for the check. */
6172 if (TREE_SIDE_EFFECTS (gnu_expr))
6173 gnu_result
6174 = build2 (COMPOUND_EXPR, TREE_TYPE (gnu_expr), gnu_expr, gnu_result);
6175 else
6176 TREE_SIDE_EFFECTS (gnu_result) = 0;
6177
6178 /* ??? Unfortunately, if we don't put a SAVE_EXPR around this whole thing,
6179 we will repeatedly do the test. It would be nice if GCC was able
6180 to optimize this and only do it once. */
6181 return save_expr (gnu_result);
6182 }
6183 \f
6184 /* Return an expression that converts GNU_EXPR to GNAT_TYPE, doing
6185 overflow checks if OVERFLOW_P is nonzero and range checks if
6186 RANGE_P is nonzero. GNAT_TYPE is known to be an integral type.
6187 If TRUNCATE_P is nonzero, do a float to integer conversion with
6188 truncation; otherwise round. */
6189
6190 static tree
6191 convert_with_check (Entity_Id gnat_type, tree gnu_expr, bool overflowp,
6192 bool rangep, bool truncatep)
6193 {
6194 tree gnu_type = get_unpadded_type (gnat_type);
6195 tree gnu_in_type = TREE_TYPE (gnu_expr);
6196 tree gnu_in_basetype = get_base_type (gnu_in_type);
6197 tree gnu_base_type = get_base_type (gnu_type);
6198 tree gnu_result = gnu_expr;
6199
6200 /* If we are not doing any checks, the output is an integral type, and
6201 the input is not a floating type, just do the conversion. This
6202 shortcut is required to avoid problems with packed array types
6203 and simplifies code in all cases anyway. */
6204 if (!rangep && !overflowp && INTEGRAL_TYPE_P (gnu_base_type)
6205 && !FLOAT_TYPE_P (gnu_in_type))
6206 return convert (gnu_type, gnu_expr);
6207
6208 /* First convert the expression to its base type. This
6209 will never generate code, but makes the tests below much simpler.
6210 But don't do this if converting from an integer type to an unconstrained
6211 array type since then we need to get the bounds from the original
6212 (unpacked) type. */
6213 if (TREE_CODE (gnu_type) != UNCONSTRAINED_ARRAY_TYPE)
6214 gnu_result = convert (gnu_in_basetype, gnu_result);
6215
6216 /* If overflow checks are requested, we need to be sure the result will
6217 fit in the output base type. But don't do this if the input
6218 is integer and the output floating-point. */
6219 if (overflowp
6220 && !(FLOAT_TYPE_P (gnu_base_type) && INTEGRAL_TYPE_P (gnu_in_basetype)))
6221 {
6222 /* Ensure GNU_EXPR only gets evaluated once. */
6223 tree gnu_input = protect_multiple_eval (gnu_result);
6224 tree gnu_cond = integer_zero_node;
6225 tree gnu_in_lb = TYPE_MIN_VALUE (gnu_in_basetype);
6226 tree gnu_in_ub = TYPE_MAX_VALUE (gnu_in_basetype);
6227 tree gnu_out_lb = TYPE_MIN_VALUE (gnu_base_type);
6228 tree gnu_out_ub = TYPE_MAX_VALUE (gnu_base_type);
6229
6230 /* Convert the lower bounds to signed types, so we're sure we're
6231 comparing them properly. Likewise, convert the upper bounds
6232 to unsigned types. */
6233 if (INTEGRAL_TYPE_P (gnu_in_basetype) && TYPE_UNSIGNED (gnu_in_basetype))
6234 gnu_in_lb = convert (gnat_signed_type (gnu_in_basetype), gnu_in_lb);
6235
6236 if (INTEGRAL_TYPE_P (gnu_in_basetype)
6237 && !TYPE_UNSIGNED (gnu_in_basetype))
6238 gnu_in_ub = convert (gnat_unsigned_type (gnu_in_basetype), gnu_in_ub);
6239
6240 if (INTEGRAL_TYPE_P (gnu_base_type) && TYPE_UNSIGNED (gnu_base_type))
6241 gnu_out_lb = convert (gnat_signed_type (gnu_base_type), gnu_out_lb);
6242
6243 if (INTEGRAL_TYPE_P (gnu_base_type) && !TYPE_UNSIGNED (gnu_base_type))
6244 gnu_out_ub = convert (gnat_unsigned_type (gnu_base_type), gnu_out_ub);
6245
6246 /* Check each bound separately and only if the result bound
6247 is tighter than the bound on the input type. Note that all the
6248 types are base types, so the bounds must be constant. Also,
6249 the comparison is done in the base type of the input, which
6250 always has the proper signedness. First check for input
6251 integer (which means output integer), output float (which means
6252 both float), or mixed, in which case we always compare.
6253 Note that we have to do the comparison which would *fail* in the
6254 case of an error since if it's an FP comparison and one of the
6255 values is a NaN or Inf, the comparison will fail. */
6256 if (INTEGRAL_TYPE_P (gnu_in_basetype)
6257 ? tree_int_cst_lt (gnu_in_lb, gnu_out_lb)
6258 : (FLOAT_TYPE_P (gnu_base_type)
6259 ? REAL_VALUES_LESS (TREE_REAL_CST (gnu_in_lb),
6260 TREE_REAL_CST (gnu_out_lb))
6261 : 1))
6262 gnu_cond
6263 = invert_truthvalue
6264 (build_binary_op (GE_EXPR, integer_type_node,
6265 gnu_input, convert (gnu_in_basetype,
6266 gnu_out_lb)));
6267
6268 if (INTEGRAL_TYPE_P (gnu_in_basetype)
6269 ? tree_int_cst_lt (gnu_out_ub, gnu_in_ub)
6270 : (FLOAT_TYPE_P (gnu_base_type)
6271 ? REAL_VALUES_LESS (TREE_REAL_CST (gnu_out_ub),
6272 TREE_REAL_CST (gnu_in_lb))
6273 : 1))
6274 gnu_cond
6275 = build_binary_op (TRUTH_ORIF_EXPR, integer_type_node, gnu_cond,
6276 invert_truthvalue
6277 (build_binary_op (LE_EXPR, integer_type_node,
6278 gnu_input,
6279 convert (gnu_in_basetype,
6280 gnu_out_ub))));
6281
6282 if (!integer_zerop (gnu_cond))
6283 gnu_result = emit_check (gnu_cond, gnu_input,
6284 CE_Overflow_Check_Failed);
6285 }
6286
6287 /* Now convert to the result base type. If this is a non-truncating
6288 float-to-integer conversion, round. */
6289 if (INTEGRAL_TYPE_P (gnu_base_type) && FLOAT_TYPE_P (gnu_in_basetype)
6290 && !truncatep)
6291 {
6292 REAL_VALUE_TYPE half_minus_pred_half, pred_half;
6293 tree gnu_conv, gnu_zero, gnu_comp, gnu_saved_result, calc_type;
6294 tree gnu_pred_half, gnu_add_pred_half, gnu_subtract_pred_half;
6295 const struct real_format *fmt;
6296
6297 /* The following calculations depend on proper rounding to even
6298 of each arithmetic operation. In order to prevent excess
6299 precision from spoiling this property, use the widest hardware
6300 floating-point type.
6301
6302 FIXME: For maximum efficiency, this should only be done for machines
6303 and types where intermediates may have extra precision. */
6304
6305 calc_type = longest_float_type_node;
6306 /* FIXME: Should not have padding in the first place */
6307 if (TREE_CODE (calc_type) == RECORD_TYPE
6308 && TYPE_IS_PADDING_P (calc_type))
6309 calc_type = TREE_TYPE (TYPE_FIELDS (calc_type));
6310
6311 /* Compute the exact value calc_type'Pred (0.5) at compile time. */
6312 fmt = REAL_MODE_FORMAT (TYPE_MODE (calc_type));
6313 real_2expN (&half_minus_pred_half, -(fmt->p) - 1, TYPE_MODE (calc_type));
6314 REAL_ARITHMETIC (pred_half, MINUS_EXPR, dconsthalf,
6315 half_minus_pred_half);
6316 gnu_pred_half = build_real (calc_type, pred_half);
6317
6318 /* If the input is strictly negative, subtract this value
6319 and otherwise add it from the input. For 0.5, the result
6320 is exactly between 1.0 and the machine number preceding 1.0
6321 (for calc_type). Since the last bit of 1.0 is even, this 0.5
6322 will round to 1.0, while all other number with an absolute
6323 value less than 0.5 round to 0.0. For larger numbers exactly
6324 halfway between integers, rounding will always be correct as
6325 the true mathematical result will be closer to the higher
6326 integer compared to the lower one. So, this constant works
6327 for all floating-point numbers.
6328
6329 The reason to use the same constant with subtract/add instead
6330 of a positive and negative constant is to allow the comparison
6331 to be scheduled in parallel with retrieval of the constant and
6332 conversion of the input to the calc_type (if necessary).
6333 */
6334
6335 gnu_zero = convert (gnu_in_basetype, integer_zero_node);
6336 gnu_saved_result = save_expr (gnu_result);
6337 gnu_conv = convert (calc_type, gnu_saved_result);
6338 gnu_comp = build2 (GE_EXPR, integer_type_node,
6339 gnu_saved_result, gnu_zero);
6340 gnu_add_pred_half
6341 = build2 (PLUS_EXPR, calc_type, gnu_conv, gnu_pred_half);
6342 gnu_subtract_pred_half
6343 = build2 (MINUS_EXPR, calc_type, gnu_conv, gnu_pred_half);
6344 gnu_result = build3 (COND_EXPR, calc_type, gnu_comp,
6345 gnu_add_pred_half, gnu_subtract_pred_half);
6346 }
6347
6348 if (TREE_CODE (gnu_base_type) == INTEGER_TYPE
6349 && TYPE_HAS_ACTUAL_BOUNDS_P (gnu_base_type)
6350 && TREE_CODE (gnu_result) == UNCONSTRAINED_ARRAY_REF)
6351 gnu_result = unchecked_convert (gnu_base_type, gnu_result, false);
6352 else
6353 gnu_result = convert (gnu_base_type, gnu_result);
6354
6355 /* Finally, do the range check if requested. Note that if the
6356 result type is a modular type, the range check is actually
6357 an overflow check. */
6358
6359 if (rangep
6360 || (TREE_CODE (gnu_base_type) == INTEGER_TYPE
6361 && TYPE_MODULAR_P (gnu_base_type) && overflowp))
6362 gnu_result = emit_range_check (gnu_result, gnat_type);
6363
6364 return convert (gnu_type, gnu_result);
6365 }
6366 \f
6367 /* Return true if TYPE is a smaller packable version of RECORD_TYPE. */
6368
6369 static bool
6370 smaller_packable_type_p (tree type, tree record_type)
6371 {
6372 tree size, rsize;
6373
6374 /* We're not interested in variants here. */
6375 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (record_type))
6376 return false;
6377
6378 /* Like a variant, a packable version keeps the original TYPE_NAME. */
6379 if (TYPE_NAME (type) != TYPE_NAME (record_type))
6380 return false;
6381
6382 size = TYPE_SIZE (type);
6383 rsize = TYPE_SIZE (record_type);
6384
6385 if (!(TREE_CODE (size) == INTEGER_CST && TREE_CODE (rsize) == INTEGER_CST))
6386 return false;
6387
6388 return tree_int_cst_lt (size, rsize) != 0;
6389 }
6390
6391 /* Return true if GNU_EXPR can be directly addressed. This is the case
6392 unless it is an expression involving computation or if it involves a
6393 reference to a bitfield or to an object not sufficiently aligned for
6394 its type. If GNU_TYPE is non-null, return true only if GNU_EXPR can
6395 be directly addressed as an object of this type.
6396
6397 *** Notes on addressability issues in the Ada compiler ***
6398
6399 This predicate is necessary in order to bridge the gap between Gigi
6400 and the middle-end about addressability of GENERIC trees. A tree
6401 is said to be addressable if it can be directly addressed, i.e. if
6402 its address can be taken, is a multiple of the type's alignment on
6403 strict-alignment architectures and returns the first storage unit
6404 assigned to the object represented by the tree.
6405
6406 In the C family of languages, everything is in practice addressable
6407 at the language level, except for bit-fields. This means that these
6408 compilers will take the address of any tree that doesn't represent
6409 a bit-field reference and expect the result to be the first storage
6410 unit assigned to the object. Even in cases where this will result
6411 in unaligned accesses at run time, nothing is supposed to be done
6412 and the program is considered as erroneous instead (see PR c/18287).
6413
6414 The implicit assumptions made in the middle-end are in keeping with
6415 the C viewpoint described above:
6416 - the address of a bit-field reference is supposed to be never
6417 taken; the compiler (generally) will stop on such a construct,
6418 - any other tree is addressable if it is formally addressable,
6419 i.e. if it is formally allowed to be the operand of ADDR_EXPR.
6420
6421 In Ada, the viewpoint is the opposite one: nothing is addressable
6422 at the language level unless explicitly declared so. This means
6423 that the compiler will both make sure that the trees representing
6424 references to addressable ("aliased" in Ada parlance) objects are
6425 addressable and make no real attempts at ensuring that the trees
6426 representing references to non-addressable objects are addressable.
6427
6428 In the first case, Ada is effectively equivalent to C and handing
6429 down the direct result of applying ADDR_EXPR to these trees to the
6430 middle-end works flawlessly. In the second case, Ada cannot afford
6431 to consider the program as erroneous if the address of trees that
6432 are not addressable is requested for technical reasons, unlike C;
6433 as a consequence, the Ada compiler must arrange for either making
6434 sure that this address is not requested in the middle-end or for
6435 compensating by inserting temporaries if it is requested in Gigi.
6436
6437 The first goal can be achieved because the middle-end should not
6438 request the address of non-addressable trees on its own; the only
6439 exception is for the invocation of low-level block operations like
6440 memcpy, for which the addressability requirements are lower since
6441 the type's alignment can be disregarded. In practice, this means
6442 that Gigi must make sure that such operations cannot be applied to
6443 non-BLKmode bit-fields.
6444
6445 The second goal is achieved by means of the addressable_p predicate
6446 and by inserting SAVE_EXPRs around trees deemed non-addressable.
6447 They will be turned during gimplification into proper temporaries
6448 whose address will be used in lieu of that of the original tree. */
6449
6450 static bool
6451 addressable_p (tree gnu_expr, tree gnu_type)
6452 {
6453 /* The size of the real type of the object must not be smaller than
6454 that of the expected type, otherwise an indirect access in the
6455 latter type would be larger than the object. Only records need
6456 to be considered in practice. */
6457 if (gnu_type
6458 && TREE_CODE (gnu_type) == RECORD_TYPE
6459 && smaller_packable_type_p (TREE_TYPE (gnu_expr), gnu_type))
6460 return false;
6461
6462 switch (TREE_CODE (gnu_expr))
6463 {
6464 case VAR_DECL:
6465 case PARM_DECL:
6466 case FUNCTION_DECL:
6467 case RESULT_DECL:
6468 /* All DECLs are addressable: if they are in a register, we can force
6469 them to memory. */
6470 return true;
6471
6472 case UNCONSTRAINED_ARRAY_REF:
6473 case INDIRECT_REF:
6474 case CONSTRUCTOR:
6475 case STRING_CST:
6476 case INTEGER_CST:
6477 case NULL_EXPR:
6478 case SAVE_EXPR:
6479 case CALL_EXPR:
6480 return true;
6481
6482 case COND_EXPR:
6483 /* We accept &COND_EXPR as soon as both operands are addressable and
6484 expect the outcome to be the address of the selected operand. */
6485 return (addressable_p (TREE_OPERAND (gnu_expr, 1), NULL_TREE)
6486 && addressable_p (TREE_OPERAND (gnu_expr, 2), NULL_TREE));
6487
6488 case COMPONENT_REF:
6489 return (((!DECL_BIT_FIELD (TREE_OPERAND (gnu_expr, 1))
6490 /* Even with DECL_BIT_FIELD cleared, we have to ensure that
6491 the field is sufficiently aligned, in case it is subject
6492 to a pragma Component_Alignment. But we don't need to
6493 check the alignment of the containing record, as it is
6494 guaranteed to be not smaller than that of its most
6495 aligned field that is not a bit-field. */
6496 && (!STRICT_ALIGNMENT
6497 || DECL_ALIGN (TREE_OPERAND (gnu_expr, 1))
6498 >= TYPE_ALIGN (TREE_TYPE (gnu_expr))))
6499 /* The field of a padding record is always addressable. */
6500 || TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (gnu_expr, 0))))
6501 && addressable_p (TREE_OPERAND (gnu_expr, 0), NULL_TREE));
6502
6503 case ARRAY_REF: case ARRAY_RANGE_REF:
6504 case REALPART_EXPR: case IMAGPART_EXPR:
6505 case NOP_EXPR:
6506 return addressable_p (TREE_OPERAND (gnu_expr, 0), NULL_TREE);
6507
6508 case CONVERT_EXPR:
6509 return (AGGREGATE_TYPE_P (TREE_TYPE (gnu_expr))
6510 && addressable_p (TREE_OPERAND (gnu_expr, 0), NULL_TREE));
6511
6512 case VIEW_CONVERT_EXPR:
6513 {
6514 /* This is addressable if we can avoid a copy. */
6515 tree type = TREE_TYPE (gnu_expr);
6516 tree inner_type = TREE_TYPE (TREE_OPERAND (gnu_expr, 0));
6517 return (((TYPE_MODE (type) == TYPE_MODE (inner_type)
6518 && (!STRICT_ALIGNMENT
6519 || TYPE_ALIGN (type) <= TYPE_ALIGN (inner_type)
6520 || TYPE_ALIGN (inner_type) >= BIGGEST_ALIGNMENT))
6521 || ((TYPE_MODE (type) == BLKmode
6522 || TYPE_MODE (inner_type) == BLKmode)
6523 && (!STRICT_ALIGNMENT
6524 || TYPE_ALIGN (type) <= TYPE_ALIGN (inner_type)
6525 || TYPE_ALIGN (inner_type) >= BIGGEST_ALIGNMENT
6526 || TYPE_ALIGN_OK (type)
6527 || TYPE_ALIGN_OK (inner_type))))
6528 && addressable_p (TREE_OPERAND (gnu_expr, 0), NULL_TREE));
6529 }
6530
6531 default:
6532 return false;
6533 }
6534 }
6535 \f
6536 /* Do the processing for the declaration of a GNAT_ENTITY, a type. If
6537 a separate Freeze node exists, delay the bulk of the processing. Otherwise
6538 make a GCC type for GNAT_ENTITY and set up the correspondence. */
6539
6540 void
6541 process_type (Entity_Id gnat_entity)
6542 {
6543 tree gnu_old
6544 = present_gnu_tree (gnat_entity) ? get_gnu_tree (gnat_entity) : 0;
6545 tree gnu_new;
6546
6547 /* If we are to delay elaboration of this type, just do any
6548 elaborations needed for expressions within the declaration and
6549 make a dummy type entry for this node and its Full_View (if
6550 any) in case something points to it. Don't do this if it
6551 has already been done (the only way that can happen is if
6552 the private completion is also delayed). */
6553 if (Present (Freeze_Node (gnat_entity))
6554 || (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
6555 && Present (Full_View (gnat_entity))
6556 && Freeze_Node (Full_View (gnat_entity))
6557 && !present_gnu_tree (Full_View (gnat_entity))))
6558 {
6559 elaborate_entity (gnat_entity);
6560
6561 if (!gnu_old)
6562 {
6563 tree gnu_decl = create_type_decl (get_entity_name (gnat_entity),
6564 make_dummy_type (gnat_entity),
6565 NULL, false, false, gnat_entity);
6566
6567 save_gnu_tree (gnat_entity, gnu_decl, false);
6568 if (IN (Ekind (gnat_entity), Incomplete_Or_Private_Kind)
6569 && Present (Full_View (gnat_entity)))
6570 save_gnu_tree (Full_View (gnat_entity), gnu_decl, false);
6571 }
6572
6573 return;
6574 }
6575
6576 /* If we saved away a dummy type for this node it means that this
6577 made the type that corresponds to the full type of an incomplete
6578 type. Clear that type for now and then update the type in the
6579 pointers. */
6580 if (gnu_old)
6581 {
6582 gcc_assert (TREE_CODE (gnu_old) == TYPE_DECL
6583 && TYPE_IS_DUMMY_P (TREE_TYPE (gnu_old)));
6584
6585 save_gnu_tree (gnat_entity, NULL_TREE, false);
6586 }
6587
6588 /* Now fully elaborate the type. */
6589 gnu_new = gnat_to_gnu_entity (gnat_entity, NULL_TREE, 1);
6590 gcc_assert (TREE_CODE (gnu_new) == TYPE_DECL);
6591
6592 /* If we have an old type and we've made pointers to this type,
6593 update those pointers. */
6594 if (gnu_old)
6595 update_pointer_to (TYPE_MAIN_VARIANT (TREE_TYPE (gnu_old)),
6596 TREE_TYPE (gnu_new));
6597
6598 /* If this is a record type corresponding to a task or protected type
6599 that is a completion of an incomplete type, perform a similar update
6600 on the type. */
6601 /* ??? Including protected types here is a guess. */
6602
6603 if (IN (Ekind (gnat_entity), Record_Kind)
6604 && Is_Concurrent_Record_Type (gnat_entity)
6605 && present_gnu_tree (Corresponding_Concurrent_Type (gnat_entity)))
6606 {
6607 tree gnu_task_old
6608 = get_gnu_tree (Corresponding_Concurrent_Type (gnat_entity));
6609
6610 save_gnu_tree (Corresponding_Concurrent_Type (gnat_entity),
6611 NULL_TREE, false);
6612 save_gnu_tree (Corresponding_Concurrent_Type (gnat_entity),
6613 gnu_new, false);
6614
6615 update_pointer_to (TYPE_MAIN_VARIANT (TREE_TYPE (gnu_task_old)),
6616 TREE_TYPE (gnu_new));
6617 }
6618 }
6619 \f
6620 /* GNAT_ENTITY is the type of the resulting constructors,
6621 GNAT_ASSOC is the front of the Component_Associations of an N_Aggregate,
6622 and GNU_TYPE is the GCC type of the corresponding record.
6623
6624 Return a CONSTRUCTOR to build the record. */
6625
6626 static tree
6627 assoc_to_constructor (Entity_Id gnat_entity, Node_Id gnat_assoc, tree gnu_type)
6628 {
6629 tree gnu_list, gnu_result;
6630
6631 /* We test for GNU_FIELD being empty in the case where a variant
6632 was the last thing since we don't take things off GNAT_ASSOC in
6633 that case. We check GNAT_ASSOC in case we have a variant, but it
6634 has no fields. */
6635
6636 for (gnu_list = NULL_TREE; Present (gnat_assoc);
6637 gnat_assoc = Next (gnat_assoc))
6638 {
6639 Node_Id gnat_field = First (Choices (gnat_assoc));
6640 tree gnu_field = gnat_to_gnu_field_decl (Entity (gnat_field));
6641 tree gnu_expr = gnat_to_gnu (Expression (gnat_assoc));
6642
6643 /* The expander is supposed to put a single component selector name
6644 in every record component association */
6645 gcc_assert (No (Next (gnat_field)));
6646
6647 /* Ignore fields that have Corresponding_Discriminants since we'll
6648 be setting that field in the parent. */
6649 if (Present (Corresponding_Discriminant (Entity (gnat_field)))
6650 && Is_Tagged_Type (Scope (Entity (gnat_field))))
6651 continue;
6652
6653 /* Also ignore discriminants of Unchecked_Unions. */
6654 else if (Is_Unchecked_Union (gnat_entity)
6655 && Ekind (Entity (gnat_field)) == E_Discriminant)
6656 continue;
6657
6658 /* Before assigning a value in an aggregate make sure range checks
6659 are done if required. Then convert to the type of the field. */
6660 if (Do_Range_Check (Expression (gnat_assoc)))
6661 gnu_expr = emit_range_check (gnu_expr, Etype (gnat_field));
6662
6663 gnu_expr = convert (TREE_TYPE (gnu_field), gnu_expr);
6664
6665 /* Add the field and expression to the list. */
6666 gnu_list = tree_cons (gnu_field, gnu_expr, gnu_list);
6667 }
6668
6669 gnu_result = extract_values (gnu_list, gnu_type);
6670
6671 #ifdef ENABLE_CHECKING
6672 {
6673 tree gnu_field;
6674
6675 /* Verify every entry in GNU_LIST was used. */
6676 for (gnu_field = gnu_list; gnu_field; gnu_field = TREE_CHAIN (gnu_field))
6677 gcc_assert (TREE_ADDRESSABLE (gnu_field));
6678 }
6679 #endif
6680
6681 return gnu_result;
6682 }
6683
6684 /* Builds a possibly nested constructor for array aggregates. GNAT_EXPR
6685 is the first element of an array aggregate. It may itself be an
6686 aggregate (an array or record aggregate). GNU_ARRAY_TYPE is the gnu type
6687 corresponding to the array aggregate. GNAT_COMPONENT_TYPE is the type
6688 of the array component. It is needed for range checking. */
6689
6690 static tree
6691 pos_to_constructor (Node_Id gnat_expr, tree gnu_array_type,
6692 Entity_Id gnat_component_type)
6693 {
6694 tree gnu_expr_list = NULL_TREE;
6695 tree gnu_index = TYPE_MIN_VALUE (TYPE_DOMAIN (gnu_array_type));
6696 tree gnu_expr;
6697
6698 for ( ; Present (gnat_expr); gnat_expr = Next (gnat_expr))
6699 {
6700 /* If the expression is itself an array aggregate then first build the
6701 innermost constructor if it is part of our array (multi-dimensional
6702 case). */
6703
6704 if (Nkind (gnat_expr) == N_Aggregate
6705 && TREE_CODE (TREE_TYPE (gnu_array_type)) == ARRAY_TYPE
6706 && TYPE_MULTI_ARRAY_P (TREE_TYPE (gnu_array_type)))
6707 gnu_expr = pos_to_constructor (First (Expressions (gnat_expr)),
6708 TREE_TYPE (gnu_array_type),
6709 gnat_component_type);
6710 else
6711 {
6712 gnu_expr = gnat_to_gnu (gnat_expr);
6713
6714 /* before assigning the element to the array make sure it is
6715 in range */
6716 if (Do_Range_Check (gnat_expr))
6717 gnu_expr = emit_range_check (gnu_expr, gnat_component_type);
6718 }
6719
6720 gnu_expr_list
6721 = tree_cons (gnu_index, convert (TREE_TYPE (gnu_array_type), gnu_expr),
6722 gnu_expr_list);
6723
6724 gnu_index = int_const_binop (PLUS_EXPR, gnu_index, integer_one_node, 0);
6725 }
6726
6727 return gnat_build_constructor (gnu_array_type, nreverse (gnu_expr_list));
6728 }
6729 \f
6730 /* Subroutine of assoc_to_constructor: VALUES is a list of field associations,
6731 some of which are from RECORD_TYPE. Return a CONSTRUCTOR consisting
6732 of the associations that are from RECORD_TYPE. If we see an internal
6733 record, make a recursive call to fill it in as well. */
6734
6735 static tree
6736 extract_values (tree values, tree record_type)
6737 {
6738 tree result = NULL_TREE;
6739 tree field, tem;
6740
6741 for (field = TYPE_FIELDS (record_type); field; field = TREE_CHAIN (field))
6742 {
6743 tree value = 0;
6744
6745 /* _Parent is an internal field, but may have values in the aggregate,
6746 so check for values first. */
6747 if ((tem = purpose_member (field, values)))
6748 {
6749 value = TREE_VALUE (tem);
6750 TREE_ADDRESSABLE (tem) = 1;
6751 }
6752
6753 else if (DECL_INTERNAL_P (field))
6754 {
6755 value = extract_values (values, TREE_TYPE (field));
6756 if (TREE_CODE (value) == CONSTRUCTOR
6757 && VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (value)))
6758 value = 0;
6759 }
6760 else
6761 /* If we have a record subtype, the names will match, but not the
6762 actual FIELD_DECLs. */
6763 for (tem = values; tem; tem = TREE_CHAIN (tem))
6764 if (DECL_NAME (TREE_PURPOSE (tem)) == DECL_NAME (field))
6765 {
6766 value = convert (TREE_TYPE (field), TREE_VALUE (tem));
6767 TREE_ADDRESSABLE (tem) = 1;
6768 }
6769
6770 if (!value)
6771 continue;
6772
6773 result = tree_cons (field, value, result);
6774 }
6775
6776 return gnat_build_constructor (record_type, nreverse (result));
6777 }
6778 \f
6779 /* EXP is to be treated as an array or record. Handle the cases when it is
6780 an access object and perform the required dereferences. */
6781
6782 static tree
6783 maybe_implicit_deref (tree exp)
6784 {
6785 /* If the type is a pointer, dereference it. */
6786
6787 if (POINTER_TYPE_P (TREE_TYPE (exp)) || TYPE_FAT_POINTER_P (TREE_TYPE (exp)))
6788 exp = build_unary_op (INDIRECT_REF, NULL_TREE, exp);
6789
6790 /* If we got a padded type, remove it too. */
6791 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
6792 && TYPE_IS_PADDING_P (TREE_TYPE (exp)))
6793 exp = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (exp))), exp);
6794
6795 return exp;
6796 }
6797 \f
6798 /* Protect EXP from multiple evaluation. This may make a SAVE_EXPR. */
6799
6800 tree
6801 protect_multiple_eval (tree exp)
6802 {
6803 tree type = TREE_TYPE (exp);
6804
6805 /* If this has no side effects, we don't need to do anything. */
6806 if (!TREE_SIDE_EFFECTS (exp))
6807 return exp;
6808
6809 /* If it is a conversion, protect what's inside the conversion.
6810 Similarly, if we're indirectly referencing something, we only
6811 actually need to protect the address since the data itself can't
6812 change in these situations. */
6813 else if (TREE_CODE (exp) == NON_LVALUE_EXPR
6814 || CONVERT_EXPR_P (exp)
6815 || TREE_CODE (exp) == VIEW_CONVERT_EXPR
6816 || TREE_CODE (exp) == INDIRECT_REF
6817 || TREE_CODE (exp) == UNCONSTRAINED_ARRAY_REF)
6818 return build1 (TREE_CODE (exp), type,
6819 protect_multiple_eval (TREE_OPERAND (exp, 0)));
6820
6821 /* If EXP is a fat pointer or something that can be placed into a register,
6822 just make a SAVE_EXPR. */
6823 if (TYPE_FAT_POINTER_P (type) || TYPE_MODE (type) != BLKmode)
6824 return save_expr (exp);
6825
6826 /* Otherwise, dereference, protect the address, and re-reference. */
6827 else
6828 return
6829 build_unary_op (INDIRECT_REF, type,
6830 save_expr (build_unary_op (ADDR_EXPR,
6831 build_reference_type (type),
6832 exp)));
6833 }
6834 \f
6835 /* This is equivalent to stabilize_reference in tree.c, but we know how to
6836 handle our own nodes and we take extra arguments. FORCE says whether to
6837 force evaluation of everything. We set SUCCESS to true unless we walk
6838 through something we don't know how to stabilize. */
6839
6840 tree
6841 maybe_stabilize_reference (tree ref, bool force, bool *success)
6842 {
6843 tree type = TREE_TYPE (ref);
6844 enum tree_code code = TREE_CODE (ref);
6845 tree result;
6846
6847 /* Assume we'll success unless proven otherwise. */
6848 *success = true;
6849
6850 switch (code)
6851 {
6852 case CONST_DECL:
6853 case VAR_DECL:
6854 case PARM_DECL:
6855 case RESULT_DECL:
6856 /* No action is needed in this case. */
6857 return ref;
6858
6859 case ADDR_EXPR:
6860 CASE_CONVERT:
6861 case FLOAT_EXPR:
6862 case FIX_TRUNC_EXPR:
6863 case VIEW_CONVERT_EXPR:
6864 result
6865 = build1 (code, type,
6866 maybe_stabilize_reference (TREE_OPERAND (ref, 0), force,
6867 success));
6868 break;
6869
6870 case INDIRECT_REF:
6871 case UNCONSTRAINED_ARRAY_REF:
6872 result = build1 (code, type,
6873 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 0),
6874 force));
6875 break;
6876
6877 case COMPONENT_REF:
6878 result = build3 (COMPONENT_REF, type,
6879 maybe_stabilize_reference (TREE_OPERAND (ref, 0), force,
6880 success),
6881 TREE_OPERAND (ref, 1), NULL_TREE);
6882 break;
6883
6884 case BIT_FIELD_REF:
6885 result = build3 (BIT_FIELD_REF, type,
6886 maybe_stabilize_reference (TREE_OPERAND (ref, 0), force,
6887 success),
6888 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
6889 force),
6890 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 2),
6891 force));
6892 break;
6893
6894 case ARRAY_REF:
6895 case ARRAY_RANGE_REF:
6896 result = build4 (code, type,
6897 maybe_stabilize_reference (TREE_OPERAND (ref, 0), force,
6898 success),
6899 gnat_stabilize_reference_1 (TREE_OPERAND (ref, 1),
6900 force),
6901 NULL_TREE, NULL_TREE);
6902 break;
6903
6904 case COMPOUND_EXPR:
6905 result = gnat_stabilize_reference_1 (ref, force);
6906 break;
6907
6908 case CALL_EXPR:
6909 /* This generates better code than the scheme in protect_multiple_eval
6910 because large objects will be returned via invisible reference in
6911 most ABIs so the temporary will directly be filled by the callee. */
6912 result = gnat_stabilize_reference_1 (ref, force);
6913 break;
6914
6915 case CONSTRUCTOR:
6916 /* Constructors with 1 element are used extensively to formally
6917 convert objects to special wrapping types. */
6918 if (TREE_CODE (type) == RECORD_TYPE
6919 && VEC_length (constructor_elt, CONSTRUCTOR_ELTS (ref)) == 1)
6920 {
6921 tree index
6922 = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ref), 0)->index;
6923 tree value
6924 = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (ref), 0)->value;
6925 result
6926 = build_constructor_single (type, index,
6927 gnat_stabilize_reference_1 (value,
6928 force));
6929 }
6930 else
6931 {
6932 *success = false;
6933 return ref;
6934 }
6935 break;
6936
6937 case ERROR_MARK:
6938 ref = error_mark_node;
6939
6940 /* ... Fallthru to failure ... */
6941
6942 /* If arg isn't a kind of lvalue we recognize, make no change.
6943 Caller should recognize the error for an invalid lvalue. */
6944 default:
6945 *success = false;
6946 return ref;
6947 }
6948
6949 TREE_READONLY (result) = TREE_READONLY (ref);
6950
6951 /* TREE_THIS_VOLATILE and TREE_SIDE_EFFECTS attached to the initial
6952 expression may not be sustained across some paths, such as the way via
6953 build1 for INDIRECT_REF. We re-populate those flags here for the general
6954 case, which is consistent with the GCC version of this routine.
6955
6956 Special care should be taken regarding TREE_SIDE_EFFECTS, because some
6957 paths introduce side effects where there was none initially (e.g. calls
6958 to save_expr), and we also want to keep track of that. */
6959
6960 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (ref);
6961 TREE_SIDE_EFFECTS (result) |= TREE_SIDE_EFFECTS (ref);
6962
6963 return result;
6964 }
6965
6966 /* Wrapper around maybe_stabilize_reference, for common uses without
6967 lvalue restrictions and without need to examine the success
6968 indication. */
6969
6970 static tree
6971 gnat_stabilize_reference (tree ref, bool force)
6972 {
6973 bool dummy;
6974 return maybe_stabilize_reference (ref, force, &dummy);
6975 }
6976
6977 /* Similar to stabilize_reference_1 in tree.c, but supports an extra
6978 arg to force a SAVE_EXPR for everything. */
6979
6980 static tree
6981 gnat_stabilize_reference_1 (tree e, bool force)
6982 {
6983 enum tree_code code = TREE_CODE (e);
6984 tree type = TREE_TYPE (e);
6985 tree result;
6986
6987 /* We cannot ignore const expressions because it might be a reference
6988 to a const array but whose index contains side-effects. But we can
6989 ignore things that are actual constant or that already have been
6990 handled by this function. */
6991
6992 if (TREE_CONSTANT (e) || code == SAVE_EXPR)
6993 return e;
6994
6995 switch (TREE_CODE_CLASS (code))
6996 {
6997 case tcc_exceptional:
6998 case tcc_type:
6999 case tcc_declaration:
7000 case tcc_comparison:
7001 case tcc_statement:
7002 case tcc_expression:
7003 case tcc_reference:
7004 case tcc_vl_exp:
7005 /* If this is a COMPONENT_REF of a fat pointer, save the entire
7006 fat pointer. This may be more efficient, but will also allow
7007 us to more easily find the match for the PLACEHOLDER_EXPR. */
7008 if (code == COMPONENT_REF
7009 && TYPE_FAT_POINTER_P (TREE_TYPE (TREE_OPERAND (e, 0))))
7010 result = build3 (COMPONENT_REF, type,
7011 gnat_stabilize_reference_1 (TREE_OPERAND (e, 0),
7012 force),
7013 TREE_OPERAND (e, 1), TREE_OPERAND (e, 2));
7014 else if (TREE_SIDE_EFFECTS (e) || force)
7015 return save_expr (e);
7016 else
7017 return e;
7018 break;
7019
7020 case tcc_constant:
7021 /* Constants need no processing. In fact, we should never reach
7022 here. */
7023 return e;
7024
7025 case tcc_binary:
7026 /* Recursively stabilize each operand. */
7027 result = build2 (code, type,
7028 gnat_stabilize_reference_1 (TREE_OPERAND (e, 0), force),
7029 gnat_stabilize_reference_1 (TREE_OPERAND (e, 1),
7030 force));
7031 break;
7032
7033 case tcc_unary:
7034 /* Recursively stabilize each operand. */
7035 result = build1 (code, type,
7036 gnat_stabilize_reference_1 (TREE_OPERAND (e, 0),
7037 force));
7038 break;
7039
7040 default:
7041 gcc_unreachable ();
7042 }
7043
7044 TREE_READONLY (result) = TREE_READONLY (e);
7045
7046 TREE_THIS_VOLATILE (result) = TREE_THIS_VOLATILE (e);
7047 TREE_SIDE_EFFECTS (result) |= TREE_SIDE_EFFECTS (e);
7048 return result;
7049 }
7050 \f
7051 /* Convert SLOC into LOCUS. Return true if SLOC corresponds to a source code
7052 location and false if it doesn't. In the former case, set the Gigi global
7053 variable REF_FILENAME to the simple debug file name as given by sinput. */
7054
7055 bool
7056 Sloc_to_locus (Source_Ptr Sloc, location_t *locus)
7057 {
7058 if (Sloc == No_Location)
7059 return false;
7060
7061 if (Sloc <= Standard_Location)
7062 {
7063 if (*locus == UNKNOWN_LOCATION)
7064 *locus = BUILTINS_LOCATION;
7065 return false;
7066 }
7067 else
7068 {
7069 Source_File_Index file = Get_Source_File_Index (Sloc);
7070 Logical_Line_Number line = Get_Logical_Line_Number (Sloc);
7071 Column_Number column = Get_Column_Number (Sloc);
7072 struct line_map *map = &line_table->maps[file - 1];
7073
7074 /* Translate the location according to the line-map.h formula. */
7075 *locus = map->start_location
7076 + ((line - map->to_line) << map->column_bits)
7077 + (column & ((1 << map->column_bits) - 1));
7078 }
7079
7080 ref_filename
7081 = IDENTIFIER_POINTER
7082 (get_identifier
7083 (Get_Name_String (Debug_Source_Name (Get_Source_File_Index (Sloc)))));;
7084
7085 return true;
7086 }
7087
7088 /* Similar to set_expr_location, but start with the Sloc of GNAT_NODE and
7089 don't do anything if it doesn't correspond to a source location. */
7090
7091 static void
7092 set_expr_location_from_node (tree node, Node_Id gnat_node)
7093 {
7094 location_t locus;
7095
7096 if (!Sloc_to_locus (Sloc (gnat_node), &locus))
7097 return;
7098
7099 SET_EXPR_LOCATION (node, locus);
7100 }
7101 \f
7102 /* Return a colon-separated list of encodings contained in encoded Ada
7103 name. */
7104
7105 static const char *
7106 extract_encoding (const char *name)
7107 {
7108 char *encoding = GGC_NEWVEC (char, strlen (name));
7109
7110 get_encoding (name, encoding);
7111
7112 return encoding;
7113 }
7114
7115 /* Extract the Ada name from an encoded name. */
7116
7117 static const char *
7118 decode_name (const char *name)
7119 {
7120 char *decoded = GGC_NEWVEC (char, strlen (name) * 2 + 60);
7121
7122 __gnat_decode (name, decoded, 0);
7123
7124 return decoded;
7125 }
7126 \f
7127 /* Post an error message. MSG is the error message, properly annotated.
7128 NODE is the node at which to post the error and the node to use for the
7129 "&" substitution. */
7130
7131 void
7132 post_error (const char *msg, Node_Id node)
7133 {
7134 String_Template temp;
7135 Fat_Pointer fp;
7136
7137 temp.Low_Bound = 1, temp.High_Bound = strlen (msg);
7138 fp.Array = msg, fp.Bounds = &temp;
7139 if (Present (node))
7140 Error_Msg_N (fp, node);
7141 }
7142
7143 /* Similar, but NODE is the node at which to post the error and ENT
7144 is the node to use for the "&" substitution. */
7145
7146 void
7147 post_error_ne (const char *msg, Node_Id node, Entity_Id ent)
7148 {
7149 String_Template temp;
7150 Fat_Pointer fp;
7151
7152 temp.Low_Bound = 1, temp.High_Bound = strlen (msg);
7153 fp.Array = msg, fp.Bounds = &temp;
7154 if (Present (node))
7155 Error_Msg_NE (fp, node, ent);
7156 }
7157
7158 /* Similar, but NODE is the node at which to post the error, ENT is the node
7159 to use for the "&" substitution, and N is the number to use for the ^. */
7160
7161 void
7162 post_error_ne_num (const char *msg, Node_Id node, Entity_Id ent, int n)
7163 {
7164 String_Template temp;
7165 Fat_Pointer fp;
7166
7167 temp.Low_Bound = 1, temp.High_Bound = strlen (msg);
7168 fp.Array = msg, fp.Bounds = &temp;
7169 Error_Msg_Uint_1 = UI_From_Int (n);
7170
7171 if (Present (node))
7172 Error_Msg_NE (fp, node, ent);
7173 }
7174 \f
7175 /* Similar to post_error_ne_num, but T is a GCC tree representing the
7176 number to write. If the tree represents a constant that fits within
7177 a host integer, the text inside curly brackets in MSG will be output
7178 (presumably including a '^'). Otherwise that text will not be output
7179 and the text inside square brackets will be output instead. */
7180
7181 void
7182 post_error_ne_tree (const char *msg, Node_Id node, Entity_Id ent, tree t)
7183 {
7184 char *newmsg = XALLOCAVEC (char, strlen (msg) + 1);
7185 String_Template temp = {1, 0};
7186 Fat_Pointer fp;
7187 char start_yes, end_yes, start_no, end_no;
7188 const char *p;
7189 char *q;
7190
7191 fp.Array = newmsg, fp.Bounds = &temp;
7192
7193 if (host_integerp (t, 1)
7194 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_INT
7195 &&
7196 compare_tree_int
7197 (t, (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_INT - 1)) - 1)) < 0
7198 #endif
7199 )
7200 {
7201 Error_Msg_Uint_1 = UI_From_Int (tree_low_cst (t, 1));
7202 start_yes = '{', end_yes = '}', start_no = '[', end_no = ']';
7203 }
7204 else
7205 start_yes = '[', end_yes = ']', start_no = '{', end_no = '}';
7206
7207 for (p = msg, q = newmsg; *p; p++)
7208 {
7209 if (*p == start_yes)
7210 for (p++; *p != end_yes; p++)
7211 *q++ = *p;
7212 else if (*p == start_no)
7213 for (p++; *p != end_no; p++)
7214 ;
7215 else
7216 *q++ = *p;
7217 }
7218
7219 *q = 0;
7220
7221 temp.High_Bound = strlen (newmsg);
7222 if (Present (node))
7223 Error_Msg_NE (fp, node, ent);
7224 }
7225
7226 /* Similar to post_error_ne_tree, except that NUM is a second
7227 integer to write in the message. */
7228
7229 void
7230 post_error_ne_tree_2 (const char *msg,
7231 Node_Id node,
7232 Entity_Id ent,
7233 tree t,
7234 int num)
7235 {
7236 Error_Msg_Uint_2 = UI_From_Int (num);
7237 post_error_ne_tree (msg, node, ent, t);
7238 }
7239 \f
7240 /* Initialize the table that maps GNAT codes to GCC codes for simple
7241 binary and unary operations. */
7242
7243 static void
7244 init_code_table (void)
7245 {
7246 gnu_codes[N_And_Then] = TRUTH_ANDIF_EXPR;
7247 gnu_codes[N_Or_Else] = TRUTH_ORIF_EXPR;
7248
7249 gnu_codes[N_Op_And] = TRUTH_AND_EXPR;
7250 gnu_codes[N_Op_Or] = TRUTH_OR_EXPR;
7251 gnu_codes[N_Op_Xor] = TRUTH_XOR_EXPR;
7252 gnu_codes[N_Op_Eq] = EQ_EXPR;
7253 gnu_codes[N_Op_Ne] = NE_EXPR;
7254 gnu_codes[N_Op_Lt] = LT_EXPR;
7255 gnu_codes[N_Op_Le] = LE_EXPR;
7256 gnu_codes[N_Op_Gt] = GT_EXPR;
7257 gnu_codes[N_Op_Ge] = GE_EXPR;
7258 gnu_codes[N_Op_Add] = PLUS_EXPR;
7259 gnu_codes[N_Op_Subtract] = MINUS_EXPR;
7260 gnu_codes[N_Op_Multiply] = MULT_EXPR;
7261 gnu_codes[N_Op_Mod] = FLOOR_MOD_EXPR;
7262 gnu_codes[N_Op_Rem] = TRUNC_MOD_EXPR;
7263 gnu_codes[N_Op_Minus] = NEGATE_EXPR;
7264 gnu_codes[N_Op_Abs] = ABS_EXPR;
7265 gnu_codes[N_Op_Not] = TRUTH_NOT_EXPR;
7266 gnu_codes[N_Op_Rotate_Left] = LROTATE_EXPR;
7267 gnu_codes[N_Op_Rotate_Right] = RROTATE_EXPR;
7268 gnu_codes[N_Op_Shift_Left] = LSHIFT_EXPR;
7269 gnu_codes[N_Op_Shift_Right] = RSHIFT_EXPR;
7270 gnu_codes[N_Op_Shift_Right_Arithmetic] = RSHIFT_EXPR;
7271 }
7272
7273 /* Return a label to branch to for the exception type in KIND or NULL_TREE
7274 if none. */
7275
7276 tree
7277 get_exception_label (char kind)
7278 {
7279 if (kind == N_Raise_Constraint_Error)
7280 return TREE_VALUE (gnu_constraint_error_label_stack);
7281 else if (kind == N_Raise_Storage_Error)
7282 return TREE_VALUE (gnu_storage_error_label_stack);
7283 else if (kind == N_Raise_Program_Error)
7284 return TREE_VALUE (gnu_program_error_label_stack);
7285 else
7286 return NULL_TREE;
7287 }
7288
7289 #include "gt-ada-trans.h"