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