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