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