2005-12-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / ada / utils.c
blob0b499af270c823f32b504ffe906907df0c6f2ac7
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * U T I L S *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2005, Free Software Foundation, Inc. *
10 * *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 2, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
17 * for more details. You should have received a copy of the GNU General *
18 * Public License distributed with GNAT; see file COPYING. If not, write *
19 * to the Free Software Foundation, 51 Franklin Street, Fifth Floor, *
20 * Boston, MA 02110-1301, USA. *
21 * *
22 * GNAT was originally developed by the GNAT team at New York University. *
23 * Extensive contributions were provided by Ada Core Technologies Inc. *
24 * *
25 ****************************************************************************/
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "flags.h"
33 #include "defaults.h"
34 #include "toplev.h"
35 #include "output.h"
36 #include "ggc.h"
37 #include "debug.h"
38 #include "convert.h"
39 #include "target.h"
40 #include "function.h"
41 #include "cgraph.h"
42 #include "tree-inline.h"
43 #include "tree-gimple.h"
44 #include "tree-dump.h"
46 #include "ada.h"
47 #include "types.h"
48 #include "atree.h"
49 #include "elists.h"
50 #include "namet.h"
51 #include "nlists.h"
52 #include "stringt.h"
53 #include "uintp.h"
54 #include "fe.h"
55 #include "sinfo.h"
56 #include "einfo.h"
57 #include "ada-tree.h"
58 #include "gigi.h"
60 #ifndef MAX_FIXED_MODE_SIZE
61 #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
62 #endif
64 #ifndef MAX_BITS_PER_WORD
65 #define MAX_BITS_PER_WORD BITS_PER_WORD
66 #endif
68 /* If nonzero, pretend we are allocating at global level. */
69 int force_global;
71 /* Tree nodes for the various types and decls we create. */
72 tree gnat_std_decls[(int) ADT_LAST];
74 /* Functions to call for each of the possible raise reasons. */
75 tree gnat_raise_decls[(int) LAST_REASON_CODE + 1];
77 /* List of functions called automatically at the beginning and
78 end of execution, on targets without .ctors/.dtors sections. */
79 tree static_ctors;
80 tree static_dtors;
82 /* Associates a GNAT tree node to a GCC tree node. It is used in
83 `save_gnu_tree', `get_gnu_tree' and `present_gnu_tree'. See documentation
84 of `save_gnu_tree' for more info. */
85 static GTY((length ("max_gnat_nodes"))) tree *associate_gnat_to_gnu;
87 /* This variable keeps a table for types for each precision so that we only
88 allocate each of them once. Signed and unsigned types are kept separate.
90 Note that these types are only used when fold-const requests something
91 special. Perhaps we should NOT share these types; we'll see how it
92 goes later. */
93 static GTY(()) tree signed_and_unsigned_types[2 * MAX_BITS_PER_WORD + 1][2];
95 /* Likewise for float types, but record these by mode. */
96 static GTY(()) tree float_types[NUM_MACHINE_MODES];
98 /* For each binding contour we allocate a binding_level structure to indicate
99 the binding depth. */
101 struct gnat_binding_level GTY((chain_next ("%h.chain")))
103 /* The binding level containing this one (the enclosing binding level). */
104 struct gnat_binding_level *chain;
105 /* The BLOCK node for this level. */
106 tree block;
107 /* If nonzero, the setjmp buffer that needs to be updated for any
108 variable-sized definition within this context. */
109 tree jmpbuf_decl;
112 /* The binding level currently in effect. */
113 static GTY(()) struct gnat_binding_level *current_binding_level;
115 /* A chain of gnat_binding_level structures awaiting reuse. */
116 static GTY((deletable)) struct gnat_binding_level *free_binding_level;
118 /* A chain of unused BLOCK nodes. */
119 static GTY((deletable)) tree free_block_chain;
121 struct language_function GTY(())
123 int unused;
126 static void gnat_install_builtins (void);
127 static tree merge_sizes (tree, tree, tree, bool, bool);
128 static tree compute_related_constant (tree, tree);
129 static tree split_plus (tree, tree *);
130 static bool value_zerop (tree);
131 static void gnat_gimplify_function (tree);
132 static tree float_type_for_precision (int, enum machine_mode);
133 static tree convert_to_fat_pointer (tree, tree);
134 static tree convert_to_thin_pointer (tree, tree);
135 static tree make_descriptor_field (const char *,tree, tree, tree);
136 static bool value_factor_p (tree, HOST_WIDE_INT);
137 static bool potential_alignment_gap (tree, tree, tree);
139 /* Initialize the association of GNAT nodes to GCC trees. */
141 void
142 init_gnat_to_gnu (void)
144 associate_gnat_to_gnu
145 = (tree *) ggc_alloc_cleared (max_gnat_nodes * sizeof (tree));
148 /* GNAT_ENTITY is a GNAT tree node for an entity. GNU_DECL is the GCC tree
149 which is to be associated with GNAT_ENTITY. Such GCC tree node is always
150 a ..._DECL node. If NO_CHECK is nonzero, the latter check is suppressed.
152 If GNU_DECL is zero, a previous association is to be reset. */
154 void
155 save_gnu_tree (Entity_Id gnat_entity, tree gnu_decl, bool no_check)
157 /* Check that GNAT_ENTITY is not already defined and that it is being set
158 to something which is a decl. Raise gigi 401 if not. Usually, this
159 means GNAT_ENTITY is defined twice, but occasionally is due to some
160 Gigi problem. */
161 gcc_assert (!gnu_decl
162 || (!associate_gnat_to_gnu[gnat_entity - First_Node_Id]
163 && (no_check || DECL_P (gnu_decl))));
164 associate_gnat_to_gnu[gnat_entity - First_Node_Id] = gnu_decl;
167 /* GNAT_ENTITY is a GNAT tree node for a defining identifier.
168 Return the ..._DECL node that was associated with it. If there is no tree
169 node associated with GNAT_ENTITY, abort.
171 In some cases, such as delayed elaboration or expressions that need to
172 be elaborated only once, GNAT_ENTITY is really not an entity. */
174 tree
175 get_gnu_tree (Entity_Id gnat_entity)
177 gcc_assert (associate_gnat_to_gnu[gnat_entity - First_Node_Id]);
178 return associate_gnat_to_gnu[gnat_entity - First_Node_Id];
181 /* Return nonzero if a GCC tree has been associated with GNAT_ENTITY. */
183 bool
184 present_gnu_tree (Entity_Id gnat_entity)
186 return (associate_gnat_to_gnu[gnat_entity - First_Node_Id]) != 0;
190 /* Return non-zero if we are currently in the global binding level. */
193 global_bindings_p (void)
195 return ((force_global || !current_function_decl) ? -1 : 0);
198 /* Enter a new binding level. */
200 void
201 gnat_pushlevel ()
203 struct gnat_binding_level *newlevel = NULL;
205 /* Reuse a struct for this binding level, if there is one. */
206 if (free_binding_level)
208 newlevel = free_binding_level;
209 free_binding_level = free_binding_level->chain;
211 else
212 newlevel
213 = (struct gnat_binding_level *)
214 ggc_alloc (sizeof (struct gnat_binding_level));
216 /* Use a free BLOCK, if any; otherwise, allocate one. */
217 if (free_block_chain)
219 newlevel->block = free_block_chain;
220 free_block_chain = TREE_CHAIN (free_block_chain);
221 TREE_CHAIN (newlevel->block) = NULL_TREE;
223 else
224 newlevel->block = make_node (BLOCK);
226 /* Point the BLOCK we just made to its parent. */
227 if (current_binding_level)
228 BLOCK_SUPERCONTEXT (newlevel->block) = current_binding_level->block;
230 BLOCK_VARS (newlevel->block) = BLOCK_SUBBLOCKS (newlevel->block) = NULL_TREE;
231 TREE_USED (newlevel->block) = 1;
233 /* Add this level to the front of the chain (stack) of levels that are
234 active. */
235 newlevel->chain = current_binding_level;
236 newlevel->jmpbuf_decl = NULL_TREE;
237 current_binding_level = newlevel;
240 /* Set SUPERCONTEXT of the BLOCK for the current binding level to FNDECL
241 and point FNDECL to this BLOCK. */
243 void
244 set_current_block_context (tree fndecl)
246 BLOCK_SUPERCONTEXT (current_binding_level->block) = fndecl;
247 DECL_INITIAL (fndecl) = current_binding_level->block;
250 /* Set the jmpbuf_decl for the current binding level to DECL. */
252 void
253 set_block_jmpbuf_decl (tree decl)
255 current_binding_level->jmpbuf_decl = decl;
258 /* Get the jmpbuf_decl, if any, for the current binding level. */
260 tree
261 get_block_jmpbuf_decl ()
263 return current_binding_level->jmpbuf_decl;
266 /* Exit a binding level. Set any BLOCK into the current code group. */
268 void
269 gnat_poplevel ()
271 struct gnat_binding_level *level = current_binding_level;
272 tree block = level->block;
274 BLOCK_VARS (block) = nreverse (BLOCK_VARS (block));
275 BLOCK_SUBBLOCKS (block) = nreverse (BLOCK_SUBBLOCKS (block));
277 /* If this is a function-level BLOCK don't do anything. Otherwise, if there
278 are no variables free the block and merge its subblocks into those of its
279 parent block. Otherwise, add it to the list of its parent. */
280 if (TREE_CODE (BLOCK_SUPERCONTEXT (block)) == FUNCTION_DECL)
282 else if (BLOCK_VARS (block) == NULL_TREE)
284 BLOCK_SUBBLOCKS (level->chain->block)
285 = chainon (BLOCK_SUBBLOCKS (block),
286 BLOCK_SUBBLOCKS (level->chain->block));
287 TREE_CHAIN (block) = free_block_chain;
288 free_block_chain = block;
290 else
292 TREE_CHAIN (block) = BLOCK_SUBBLOCKS (level->chain->block);
293 BLOCK_SUBBLOCKS (level->chain->block) = block;
294 TREE_USED (block) = 1;
295 set_block_for_group (block);
298 /* Free this binding structure. */
299 current_binding_level = level->chain;
300 level->chain = free_binding_level;
301 free_binding_level = level;
304 /* Insert BLOCK at the end of the list of subblocks of the
305 current binding level. This is used when a BIND_EXPR is expanded,
306 to handle the BLOCK node inside the BIND_EXPR. */
308 void
309 insert_block (tree block)
311 TREE_USED (block) = 1;
312 TREE_CHAIN (block) = BLOCK_SUBBLOCKS (current_binding_level->block);
313 BLOCK_SUBBLOCKS (current_binding_level->block) = block;
316 /* Records a ..._DECL node DECL as belonging to the current lexical scope
317 and uses GNAT_NODE for location information and propagating flags. */
319 void
320 gnat_pushdecl (tree decl, Node_Id gnat_node)
322 /* If at top level, there is no context. But PARM_DECLs always go in the
323 level of its function. */
324 if (global_bindings_p () && TREE_CODE (decl) != PARM_DECL)
325 DECL_CONTEXT (decl) = 0;
326 else
328 DECL_CONTEXT (decl) = current_function_decl;
330 /* Functions imported in another function are not really nested. */
331 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_PUBLIC (decl))
332 DECL_NO_STATIC_CHAIN (decl) = 1;
335 TREE_NO_WARNING (decl) = (gnat_node == Empty || Warnings_Off (gnat_node));
337 /* Set the location of DECL and emit a declaration for it. */
338 if (Present (gnat_node))
339 Sloc_to_locus (Sloc (gnat_node), &DECL_SOURCE_LOCATION (decl));
340 add_decl_expr (decl, gnat_node);
342 /* Put the declaration on the list. The list of declarations is in reverse
343 order. The list will be reversed later. We don't do this for global
344 variables. Also, don't put TYPE_DECLs for UNCONSTRAINED_ARRAY_TYPE into
345 the list. They will cause trouble with the debugger and aren't needed
346 anyway. */
347 if (!global_bindings_p ()
348 && (TREE_CODE (decl) != TYPE_DECL
349 || TREE_CODE (TREE_TYPE (decl)) != UNCONSTRAINED_ARRAY_TYPE))
351 TREE_CHAIN (decl) = BLOCK_VARS (current_binding_level->block);
352 BLOCK_VARS (current_binding_level->block) = decl;
355 /* For the declaration of a type, set its name if it either is not already
356 set, was set to an IDENTIFIER_NODE, indicating an internal name,
357 or if the previous type name was not derived from a source name.
358 We'd rather have the type named with a real name and all the pointer
359 types to the same object have the same POINTER_TYPE node. Code in this
360 function in c-decl.c makes a copy of the type node here, but that may
361 cause us trouble with incomplete types, so let's not try it (at least
362 for now). */
364 if (TREE_CODE (decl) == TYPE_DECL
365 && DECL_NAME (decl)
366 && (!TYPE_NAME (TREE_TYPE (decl))
367 || TREE_CODE (TYPE_NAME (TREE_TYPE (decl))) == IDENTIFIER_NODE
368 || (TREE_CODE (TYPE_NAME (TREE_TYPE (decl))) == TYPE_DECL
369 && DECL_ARTIFICIAL (TYPE_NAME (TREE_TYPE (decl)))
370 && !DECL_ARTIFICIAL (decl))))
371 TYPE_NAME (TREE_TYPE (decl)) = decl;
373 /* if (TREE_CODE (decl) != CONST_DECL)
374 rest_of_decl_compilation (decl, global_bindings_p (), 0); */
377 /* Do little here. Set up the standard declarations later after the
378 front end has been run. */
380 void
381 gnat_init_decl_processing (void)
383 input_line = 0;
385 /* Make the binding_level structure for global names. */
386 current_function_decl = 0;
387 current_binding_level = 0;
388 free_binding_level = 0;
389 gnat_pushlevel ();
391 build_common_tree_nodes (true, true);
393 /* In Ada, we use a signed type for SIZETYPE. Use the signed type
394 corresponding to the size of Pmode. In most cases when ptr_mode and
395 Pmode differ, C will use the width of ptr_mode as sizetype. But we get
396 far better code using the width of Pmode. Make this here since we need
397 this before we can expand the GNAT types. */
398 size_type_node = gnat_type_for_size (GET_MODE_BITSIZE (Pmode), 0);
399 set_sizetype (size_type_node);
400 build_common_tree_nodes_2 (0);
402 /* Give names and make TYPE_DECLs for common types. */
403 gnat_pushdecl (build_decl (TYPE_DECL, get_identifier (SIZE_TYPE), sizetype),
404 Empty);
405 gnat_pushdecl (build_decl (TYPE_DECL, get_identifier ("integer"),
406 integer_type_node),
407 Empty);
408 gnat_pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
409 char_type_node),
410 Empty);
411 gnat_pushdecl (build_decl (TYPE_DECL, get_identifier ("long integer"),
412 long_integer_type_node),
413 Empty);
415 ptr_void_type_node = build_pointer_type (void_type_node);
417 gnat_install_builtins ();
420 /* Install the builtin functions the middle-end needs. */
422 static void
423 gnat_install_builtins ()
425 /* Builtins used by generic optimizers. */
426 build_common_builtin_nodes ();
428 /* Target specific builtins, such as the AltiVec family on ppc. */
429 targetm.init_builtins ();
432 /* Create the predefined scalar types such as `integer_type_node' needed
433 in the gcc back-end and initialize the global binding level. */
435 void
436 init_gigi_decls (tree long_long_float_type, tree exception_type)
438 tree endlink, decl;
439 unsigned int i;
441 /* Set the types that GCC and Gigi use from the front end. We would like
442 to do this for char_type_node, but it needs to correspond to the C
443 char type. */
444 if (TREE_CODE (TREE_TYPE (long_long_float_type)) == INTEGER_TYPE)
446 /* In this case, the builtin floating point types are VAX float,
447 so make up a type for use. */
448 longest_float_type_node = make_node (REAL_TYPE);
449 TYPE_PRECISION (longest_float_type_node) = LONG_DOUBLE_TYPE_SIZE;
450 layout_type (longest_float_type_node);
451 create_type_decl (get_identifier ("longest float type"),
452 longest_float_type_node, NULL, false, true, Empty);
454 else
455 longest_float_type_node = TREE_TYPE (long_long_float_type);
457 except_type_node = TREE_TYPE (exception_type);
459 unsigned_type_node = gnat_type_for_size (INT_TYPE_SIZE, 1);
460 create_type_decl (get_identifier ("unsigned int"), unsigned_type_node,
461 NULL, false, true, Empty);
463 void_type_decl_node = create_type_decl (get_identifier ("void"),
464 void_type_node, NULL, false, true,
465 Empty);
467 void_ftype = build_function_type (void_type_node, NULL_TREE);
468 ptr_void_ftype = build_pointer_type (void_ftype);
470 /* Now declare runtime functions. */
471 endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
473 /* malloc is a function declaration tree for a function to allocate
474 memory. */
475 malloc_decl = create_subprog_decl (get_identifier ("__gnat_malloc"),
476 NULL_TREE,
477 build_function_type (ptr_void_type_node,
478 tree_cons (NULL_TREE,
479 sizetype,
480 endlink)),
481 NULL_TREE, false, true, true, NULL,
482 Empty);
484 /* free is a function declaration tree for a function to free memory. */
485 free_decl
486 = create_subprog_decl (get_identifier ("__gnat_free"), NULL_TREE,
487 build_function_type (void_type_node,
488 tree_cons (NULL_TREE,
489 ptr_void_type_node,
490 endlink)),
491 NULL_TREE, false, true, true, NULL, Empty);
493 /* Make the types and functions used for exception processing. */
494 jmpbuf_type
495 = build_array_type (gnat_type_for_mode (Pmode, 0),
496 build_index_type (build_int_cst (NULL_TREE, 5)));
497 create_type_decl (get_identifier ("JMPBUF_T"), jmpbuf_type, NULL,
498 false, true, Empty);
499 jmpbuf_ptr_type = build_pointer_type (jmpbuf_type);
501 /* Functions to get and set the jumpbuf pointer for the current thread. */
502 get_jmpbuf_decl
503 = create_subprog_decl
504 (get_identifier ("system__soft_links__get_jmpbuf_address_soft"),
505 NULL_TREE, build_function_type (jmpbuf_ptr_type, NULL_TREE),
506 NULL_TREE, false, true, true, NULL, Empty);
508 set_jmpbuf_decl
509 = create_subprog_decl
510 (get_identifier ("system__soft_links__set_jmpbuf_address_soft"),
511 NULL_TREE,
512 build_function_type (void_type_node,
513 tree_cons (NULL_TREE, jmpbuf_ptr_type, endlink)),
514 NULL_TREE, false, true, true, NULL, Empty);
516 /* Function to get the current exception. */
517 get_excptr_decl
518 = create_subprog_decl
519 (get_identifier ("system__soft_links__get_gnat_exception"),
520 NULL_TREE,
521 build_function_type (build_pointer_type (except_type_node), NULL_TREE),
522 NULL_TREE, false, true, true, NULL, Empty);
524 /* Functions that raise exceptions. */
525 raise_nodefer_decl
526 = create_subprog_decl
527 (get_identifier ("__gnat_raise_nodefer_with_msg"), NULL_TREE,
528 build_function_type (void_type_node,
529 tree_cons (NULL_TREE,
530 build_pointer_type (except_type_node),
531 endlink)),
532 NULL_TREE, false, true, true, NULL, Empty);
534 /* Dummy objects to materialize "others" and "all others" in the exception
535 tables. These are exported by a-exexpr.adb, so see this unit for the
536 types to use. */
538 others_decl
539 = create_var_decl (get_identifier ("OTHERS"),
540 get_identifier ("__gnat_others_value"),
541 integer_type_node, 0, 1, 0, 1, 1, 0, Empty);
543 all_others_decl
544 = create_var_decl (get_identifier ("ALL_OTHERS"),
545 get_identifier ("__gnat_all_others_value"),
546 integer_type_node, 0, 1, 0, 1, 1, 0, Empty);
548 /* Hooks to call when entering/leaving an exception handler. */
549 begin_handler_decl
550 = create_subprog_decl (get_identifier ("__gnat_begin_handler"), NULL_TREE,
551 build_function_type (void_type_node,
552 tree_cons (NULL_TREE,
553 ptr_void_type_node,
554 endlink)),
555 NULL_TREE, false, true, true, NULL, Empty);
557 end_handler_decl
558 = create_subprog_decl (get_identifier ("__gnat_end_handler"), NULL_TREE,
559 build_function_type (void_type_node,
560 tree_cons (NULL_TREE,
561 ptr_void_type_node,
562 endlink)),
563 NULL_TREE, false, true, true, NULL, Empty);
565 /* If in no exception handlers mode, all raise statements are redirected to
566 __gnat_last_chance_handler. No need to redefine raise_nodefer_decl, since
567 this procedure will never be called in this mode. */
568 if (No_Exception_Handlers_Set ())
570 decl
571 = create_subprog_decl
572 (get_identifier ("__gnat_last_chance_handler"), NULL_TREE,
573 build_function_type (void_type_node,
574 tree_cons (NULL_TREE,
575 build_pointer_type (char_type_node),
576 tree_cons (NULL_TREE,
577 integer_type_node,
578 endlink))),
579 NULL_TREE, false, true, true, NULL, Empty);
581 for (i = 0; i < ARRAY_SIZE (gnat_raise_decls); i++)
582 gnat_raise_decls[i] = decl;
584 else
585 /* Otherwise, make one decl for each exception reason. */
586 for (i = 0; i < ARRAY_SIZE (gnat_raise_decls); i++)
588 char name[17];
590 sprintf (name, "__gnat_rcheck_%.2d", i);
591 gnat_raise_decls[i]
592 = create_subprog_decl
593 (get_identifier (name), NULL_TREE,
594 build_function_type (void_type_node,
595 tree_cons (NULL_TREE,
596 build_pointer_type
597 (char_type_node),
598 tree_cons (NULL_TREE,
599 integer_type_node,
600 endlink))),
601 NULL_TREE, false, true, true, NULL, Empty);
604 /* Indicate that these never return. */
605 TREE_THIS_VOLATILE (raise_nodefer_decl) = 1;
606 TREE_SIDE_EFFECTS (raise_nodefer_decl) = 1;
607 TREE_TYPE (raise_nodefer_decl)
608 = build_qualified_type (TREE_TYPE (raise_nodefer_decl),
609 TYPE_QUAL_VOLATILE);
611 for (i = 0; i < ARRAY_SIZE (gnat_raise_decls); i++)
613 TREE_THIS_VOLATILE (gnat_raise_decls[i]) = 1;
614 TREE_SIDE_EFFECTS (gnat_raise_decls[i]) = 1;
615 TREE_TYPE (gnat_raise_decls[i])
616 = build_qualified_type (TREE_TYPE (gnat_raise_decls[i]),
617 TYPE_QUAL_VOLATILE);
620 /* setjmp returns an integer and has one operand, which is a pointer to
621 a jmpbuf. */
622 setjmp_decl
623 = create_subprog_decl
624 (get_identifier ("__builtin_setjmp"), NULL_TREE,
625 build_function_type (integer_type_node,
626 tree_cons (NULL_TREE, jmpbuf_ptr_type, endlink)),
627 NULL_TREE, false, true, true, NULL, Empty);
629 DECL_BUILT_IN_CLASS (setjmp_decl) = BUILT_IN_NORMAL;
630 DECL_FUNCTION_CODE (setjmp_decl) = BUILT_IN_SETJMP;
632 /* update_setjmp_buf updates a setjmp buffer from the current stack pointer
633 address. */
634 update_setjmp_buf_decl
635 = create_subprog_decl
636 (get_identifier ("__builtin_update_setjmp_buf"), NULL_TREE,
637 build_function_type (void_type_node,
638 tree_cons (NULL_TREE, jmpbuf_ptr_type, endlink)),
639 NULL_TREE, false, true, true, NULL, Empty);
641 DECL_BUILT_IN_CLASS (update_setjmp_buf_decl) = BUILT_IN_NORMAL;
642 DECL_FUNCTION_CODE (update_setjmp_buf_decl) = BUILT_IN_UPDATE_SETJMP_BUF;
644 main_identifier_node = get_identifier ("main");
647 /* Given a record type (RECORD_TYPE) and a chain of FIELD_DECL nodes
648 (FIELDLIST), finish constructing the record or union type. If HAS_REP is
649 true, this record has a rep clause; don't call layout_type but merely set
650 the size and alignment ourselves. If DEFER_DEBUG is true, do not call
651 the debugging routines on this type; it will be done later. */
653 void
654 finish_record_type (tree record_type, tree fieldlist, bool has_rep,
655 bool defer_debug)
657 enum tree_code code = TREE_CODE (record_type);
658 tree ada_size = bitsize_zero_node;
659 tree size = bitsize_zero_node;
660 bool var_size = false;
661 bool had_size = TYPE_SIZE (record_type) != 0;
662 bool had_size_unit = TYPE_SIZE_UNIT (record_type) != 0;
663 tree field;
665 TYPE_FIELDS (record_type) = fieldlist;
666 TYPE_STUB_DECL (record_type)
667 = build_decl (TYPE_DECL, NULL_TREE, record_type);
669 /* We don't need both the typedef name and the record name output in
670 the debugging information, since they are the same. */
671 DECL_ARTIFICIAL (TYPE_STUB_DECL (record_type)) = 1;
673 /* Globally initialize the record first. If this is a rep'ed record,
674 that just means some initializations; otherwise, layout the record. */
676 if (has_rep)
678 TYPE_ALIGN (record_type) = MAX (BITS_PER_UNIT, TYPE_ALIGN (record_type));
679 TYPE_MODE (record_type) = BLKmode;
681 if (!had_size_unit)
682 TYPE_SIZE_UNIT (record_type) = size_zero_node;
683 if (!had_size)
684 TYPE_SIZE (record_type) = bitsize_zero_node;
686 /* For all-repped records with a size specified, lay the QUAL_UNION_TYPE
687 out just like a UNION_TYPE, since the size will be fixed. */
688 else if (code == QUAL_UNION_TYPE)
689 code = UNION_TYPE;
691 else
693 /* Ensure there isn't a size already set. There can be in an error
694 case where there is a rep clause but all fields have errors and
695 no longer have a position. */
696 TYPE_SIZE (record_type) = 0;
697 layout_type (record_type);
700 /* At this point, the position and size of each field is known. It was
701 either set before entry by a rep clause, or by laying out the type above.
703 We now run a pass over the fields (in reverse order for QUAL_UNION_TYPEs)
704 to compute the Ada size; the GCC size and alignment (for rep'ed records
705 that are not padding types); and the mode (for rep'ed records). We also
706 clear the DECL_BIT_FIELD indication for the cases we know have not been
707 handled yet, and adjust DECL_NONADDRESSABLE_P accordingly. */
709 if (code == QUAL_UNION_TYPE)
710 fieldlist = nreverse (fieldlist);
712 for (field = fieldlist; field; field = TREE_CHAIN (field))
714 tree pos = bit_position (field);
716 tree type = TREE_TYPE (field);
717 tree this_size = DECL_SIZE (field);
718 tree this_ada_size = DECL_SIZE (field);
720 /* We need to make an XVE/XVU record if any field has variable size,
721 whether or not the record does. For example, if we have a union,
722 it may be that all fields, rounded up to the alignment, have the
723 same size, in which case we'll use that size. But the debug
724 output routines (except Dwarf2) won't be able to output the fields,
725 so we need to make the special record. */
726 if (TREE_CODE (this_size) != INTEGER_CST)
727 var_size = true;
729 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
730 || TREE_CODE (type) == QUAL_UNION_TYPE)
731 && !TYPE_IS_FAT_POINTER_P (type)
732 && !TYPE_CONTAINS_TEMPLATE_P (type)
733 && TYPE_ADA_SIZE (type))
734 this_ada_size = TYPE_ADA_SIZE (type);
736 /* Clear DECL_BIT_FIELD for the cases layout_decl does not handle. */
737 if (DECL_BIT_FIELD (field) && !STRICT_ALIGNMENT
738 && value_factor_p (pos, BITS_PER_UNIT)
739 && operand_equal_p (this_size, TYPE_SIZE (type), 0))
740 DECL_BIT_FIELD (field) = 0;
742 /* If we still have DECL_BIT_FIELD set at this point, we know the field
743 is technically not addressable. Except that it can actually be
744 addressed if the field is BLKmode and happens to be properly
745 aligned. */
746 DECL_NONADDRESSABLE_P (field)
747 |= DECL_BIT_FIELD (field) && DECL_MODE (field) != BLKmode;
749 if (has_rep && !DECL_BIT_FIELD (field))
750 TYPE_ALIGN (record_type)
751 = MAX (TYPE_ALIGN (record_type), DECL_ALIGN (field));
753 switch (code)
755 case UNION_TYPE:
756 ada_size = size_binop (MAX_EXPR, ada_size, this_ada_size);
757 size = size_binop (MAX_EXPR, size, this_size);
758 break;
760 case QUAL_UNION_TYPE:
761 ada_size
762 = fold (build3 (COND_EXPR, bitsizetype, DECL_QUALIFIER (field),
763 this_ada_size, ada_size));
764 size = fold (build3 (COND_EXPR, bitsizetype, DECL_QUALIFIER (field),
765 this_size, size));
766 break;
768 case RECORD_TYPE:
769 /* Since we know here that all fields are sorted in order of
770 increasing bit position, the size of the record is one
771 higher than the ending bit of the last field processed
772 unless we have a rep clause, since in that case we might
773 have a field outside a QUAL_UNION_TYPE that has a higher ending
774 position. So use a MAX in that case. Also, if this field is a
775 QUAL_UNION_TYPE, we need to take into account the previous size in
776 the case of empty variants. */
777 ada_size
778 = merge_sizes (ada_size, pos, this_ada_size,
779 TREE_CODE (type) == QUAL_UNION_TYPE, has_rep);
780 size = merge_sizes (size, pos, this_size,
781 TREE_CODE (type) == QUAL_UNION_TYPE, has_rep);
782 break;
784 default:
785 gcc_unreachable ();
789 if (code == QUAL_UNION_TYPE)
790 nreverse (fieldlist);
792 /* If this is a padding record, we never want to make the size smaller than
793 what was specified in it, if any. */
794 if (TREE_CODE (record_type) == RECORD_TYPE
795 && TYPE_IS_PADDING_P (record_type) && TYPE_SIZE (record_type))
796 size = TYPE_SIZE (record_type);
798 /* Now set any of the values we've just computed that apply. */
799 if (!TYPE_IS_FAT_POINTER_P (record_type)
800 && !TYPE_CONTAINS_TEMPLATE_P (record_type))
801 SET_TYPE_ADA_SIZE (record_type, ada_size);
803 if (has_rep)
805 tree size_unit
806 = (had_size_unit ? TYPE_SIZE_UNIT (record_type)
807 : convert (sizetype, size_binop (CEIL_DIV_EXPR, size,
808 bitsize_unit_node)));
810 TYPE_SIZE (record_type)
811 = variable_size (round_up (size, TYPE_ALIGN (record_type)));
812 TYPE_SIZE_UNIT (record_type)
813 = variable_size (round_up (size_unit,
814 TYPE_ALIGN (record_type) / BITS_PER_UNIT));
816 compute_record_mode (record_type);
819 if (!defer_debug)
820 write_record_type_debug_info (record_type);
823 /* Output the debug information associated to a record type. */
825 void
826 write_record_type_debug_info (tree record_type)
828 tree fieldlist = TYPE_FIELDS (record_type);
829 tree field;
830 bool var_size = false;
832 for (field = fieldlist; field; field = TREE_CHAIN (field))
834 /* We need to make an XVE/XVU record if any field has variable size,
835 whether or not the record does. For example, if we have a union,
836 it may be that all fields, rounded up to the alignment, have the
837 same size, in which case we'll use that size. But the debug
838 output routines (except Dwarf2) won't be able to output the fields,
839 so we need to make the special record. */
840 if (TREE_CODE (DECL_SIZE (field)) != INTEGER_CST)
842 var_size = true;
843 break;
847 /* If this record is of variable size, rename it so that the
848 debugger knows it is and make a new, parallel, record
849 that tells the debugger how the record is laid out. See
850 exp_dbug.ads. But don't do this for records that are padding
851 since they confuse GDB. */
852 if (var_size
853 && !(TREE_CODE (record_type) == RECORD_TYPE
854 && TYPE_IS_PADDING_P (record_type)))
856 tree new_record_type
857 = make_node (TREE_CODE (record_type) == QUAL_UNION_TYPE
858 ? UNION_TYPE : TREE_CODE (record_type));
859 tree orig_name = TYPE_NAME (record_type);
860 tree orig_id
861 = (TREE_CODE (orig_name) == TYPE_DECL ? DECL_NAME (orig_name)
862 : orig_name);
863 tree new_id
864 = concat_id_with_name (orig_id,
865 TREE_CODE (record_type) == QUAL_UNION_TYPE
866 ? "XVU" : "XVE");
867 tree last_pos = bitsize_zero_node;
868 tree old_field;
869 tree prev_old_field = 0;
871 TYPE_NAME (new_record_type) = new_id;
872 TYPE_ALIGN (new_record_type) = BIGGEST_ALIGNMENT;
873 TYPE_STUB_DECL (new_record_type)
874 = build_decl (TYPE_DECL, NULL_TREE, new_record_type);
875 DECL_ARTIFICIAL (TYPE_STUB_DECL (new_record_type)) = 1;
876 DECL_IGNORED_P (TYPE_STUB_DECL (new_record_type))
877 = DECL_IGNORED_P (TYPE_STUB_DECL (record_type));
878 TYPE_SIZE (new_record_type) = size_int (TYPE_ALIGN (record_type));
879 TYPE_SIZE_UNIT (new_record_type)
880 = size_int (TYPE_ALIGN (record_type) / BITS_PER_UNIT);
882 /* Now scan all the fields, replacing each field with a new
883 field corresponding to the new encoding. */
884 for (old_field = TYPE_FIELDS (record_type); old_field;
885 old_field = TREE_CHAIN (old_field))
887 tree field_type = TREE_TYPE (old_field);
888 tree field_name = DECL_NAME (old_field);
889 tree new_field;
890 tree curpos = bit_position (old_field);
891 bool var = false;
892 unsigned int align = 0;
893 tree pos;
895 /* See how the position was modified from the last position.
897 There are two basic cases we support: a value was added
898 to the last position or the last position was rounded to
899 a boundary and they something was added. Check for the
900 first case first. If not, see if there is any evidence
901 of rounding. If so, round the last position and try
902 again.
904 If this is a union, the position can be taken as zero. */
906 if (TREE_CODE (new_record_type) == UNION_TYPE)
907 pos = bitsize_zero_node, align = 0;
908 else
909 pos = compute_related_constant (curpos, last_pos);
911 if (!pos && TREE_CODE (curpos) == MULT_EXPR
912 && TREE_CODE (TREE_OPERAND (curpos, 1)) == INTEGER_CST)
914 align = TREE_INT_CST_LOW (TREE_OPERAND (curpos, 1));
915 pos = compute_related_constant (curpos,
916 round_up (last_pos, align));
918 else if (!pos && TREE_CODE (curpos) == PLUS_EXPR
919 && TREE_CODE (TREE_OPERAND (curpos, 1)) == INTEGER_CST
920 && TREE_CODE (TREE_OPERAND (curpos, 0)) == MULT_EXPR
921 && host_integerp (TREE_OPERAND
922 (TREE_OPERAND (curpos, 0), 1),
925 align
926 = tree_low_cst
927 (TREE_OPERAND (TREE_OPERAND (curpos, 0), 1), 1);
928 pos = compute_related_constant (curpos,
929 round_up (last_pos, align));
931 else if (potential_alignment_gap (prev_old_field, old_field,
932 pos))
934 align = TYPE_ALIGN (field_type);
935 pos = compute_related_constant (curpos,
936 round_up (last_pos, align));
939 /* If we can't compute a position, set it to zero.
941 ??? We really should abort here, but it's too much work
942 to get this correct for all cases. */
944 if (!pos)
945 pos = bitsize_zero_node;
947 /* See if this type is variable-size and make a new type
948 and indicate the indirection if so. */
949 if (TREE_CODE (DECL_SIZE (old_field)) != INTEGER_CST)
951 field_type = build_pointer_type (field_type);
952 var = true;
955 /* Make a new field name, if necessary. */
956 if (var || align != 0)
958 char suffix[6];
960 if (align != 0)
961 sprintf (suffix, "XV%c%u", var ? 'L' : 'A',
962 align / BITS_PER_UNIT);
963 else
964 strcpy (suffix, "XVL");
966 field_name = concat_id_with_name (field_name, suffix);
969 new_field = create_field_decl (field_name, field_type,
970 new_record_type, 0,
971 DECL_SIZE (old_field), pos, 0);
972 TREE_CHAIN (new_field) = TYPE_FIELDS (new_record_type);
973 TYPE_FIELDS (new_record_type) = new_field;
975 /* If old_field is a QUAL_UNION_TYPE, take its size as being
976 zero. The only time it's not the last field of the record
977 is when there are other components at fixed positions after
978 it (meaning there was a rep clause for every field) and we
979 want to be able to encode them. */
980 last_pos = size_binop (PLUS_EXPR, bit_position (old_field),
981 (TREE_CODE (TREE_TYPE (old_field))
982 == QUAL_UNION_TYPE)
983 ? bitsize_zero_node
984 : DECL_SIZE (old_field));
985 prev_old_field = old_field;
988 TYPE_FIELDS (new_record_type)
989 = nreverse (TYPE_FIELDS (new_record_type));
991 rest_of_type_compilation (new_record_type, global_bindings_p ());
994 rest_of_type_compilation (record_type, global_bindings_p ());
997 /* Utility function of above to merge LAST_SIZE, the previous size of a record
998 with FIRST_BIT and SIZE that describe a field. SPECIAL is nonzero
999 if this represents a QUAL_UNION_TYPE in which case we must look for
1000 COND_EXPRs and replace a value of zero with the old size. If HAS_REP
1001 is nonzero, we must take the MAX of the end position of this field
1002 with LAST_SIZE. In all other cases, we use FIRST_BIT plus SIZE.
1004 We return an expression for the size. */
1006 static tree
1007 merge_sizes (tree last_size, tree first_bit, tree size, bool special,
1008 bool has_rep)
1010 tree type = TREE_TYPE (last_size);
1011 tree new;
1013 if (!special || TREE_CODE (size) != COND_EXPR)
1015 new = size_binop (PLUS_EXPR, first_bit, size);
1016 if (has_rep)
1017 new = size_binop (MAX_EXPR, last_size, new);
1020 else
1021 new = fold (build3 (COND_EXPR, type, TREE_OPERAND (size, 0),
1022 integer_zerop (TREE_OPERAND (size, 1))
1023 ? last_size : merge_sizes (last_size, first_bit,
1024 TREE_OPERAND (size, 1),
1025 1, has_rep),
1026 integer_zerop (TREE_OPERAND (size, 2))
1027 ? last_size : merge_sizes (last_size, first_bit,
1028 TREE_OPERAND (size, 2),
1029 1, has_rep)));
1031 /* We don't need any NON_VALUE_EXPRs and they can confuse us (especially
1032 when fed through substitute_in_expr) into thinking that a constant
1033 size is not constant. */
1034 while (TREE_CODE (new) == NON_LVALUE_EXPR)
1035 new = TREE_OPERAND (new, 0);
1037 return new;
1040 /* Utility function of above to see if OP0 and OP1, both of SIZETYPE, are
1041 related by the addition of a constant. Return that constant if so. */
1043 static tree
1044 compute_related_constant (tree op0, tree op1)
1046 tree op0_var, op1_var;
1047 tree op0_con = split_plus (op0, &op0_var);
1048 tree op1_con = split_plus (op1, &op1_var);
1049 tree result = size_binop (MINUS_EXPR, op0_con, op1_con);
1051 if (operand_equal_p (op0_var, op1_var, 0))
1052 return result;
1053 else if (operand_equal_p (op0, size_binop (PLUS_EXPR, op1_var, result), 0))
1054 return result;
1055 else
1056 return 0;
1059 /* Utility function of above to split a tree OP which may be a sum, into a
1060 constant part, which is returned, and a variable part, which is stored
1061 in *PVAR. *PVAR may be bitsize_zero_node. All operations must be of
1062 bitsizetype. */
1064 static tree
1065 split_plus (tree in, tree *pvar)
1067 /* Strip NOPS in order to ease the tree traversal and maximize the
1068 potential for constant or plus/minus discovery. We need to be careful
1069 to always return and set *pvar to bitsizetype trees, but it's worth
1070 the effort. */
1071 STRIP_NOPS (in);
1073 *pvar = convert (bitsizetype, in);
1075 if (TREE_CODE (in) == INTEGER_CST)
1077 *pvar = bitsize_zero_node;
1078 return convert (bitsizetype, in);
1080 else if (TREE_CODE (in) == PLUS_EXPR || TREE_CODE (in) == MINUS_EXPR)
1082 tree lhs_var, rhs_var;
1083 tree lhs_con = split_plus (TREE_OPERAND (in, 0), &lhs_var);
1084 tree rhs_con = split_plus (TREE_OPERAND (in, 1), &rhs_var);
1086 if (lhs_var == TREE_OPERAND (in, 0)
1087 && rhs_var == TREE_OPERAND (in, 1))
1088 return bitsize_zero_node;
1090 *pvar = size_binop (TREE_CODE (in), lhs_var, rhs_var);
1091 return size_binop (TREE_CODE (in), lhs_con, rhs_con);
1093 else
1094 return bitsize_zero_node;
1097 /* Return a FUNCTION_TYPE node. RETURN_TYPE is the type returned by the
1098 subprogram. If it is void_type_node, then we are dealing with a procedure,
1099 otherwise we are dealing with a function. PARAM_DECL_LIST is a list of
1100 PARM_DECL nodes that are the subprogram arguments. CICO_LIST is the
1101 copy-in/copy-out list to be stored into TYPE_CICO_LIST.
1102 RETURNS_UNCONSTRAINED is nonzero if the function returns an unconstrained
1103 object. RETURNS_BY_REF is nonzero if the function returns by reference.
1104 RETURNS_WITH_DSP is nonzero if the function is to return with a
1105 depressed stack pointer. RETURNS_BY_TARGET_PTR is true if the function
1106 is to be passed (as its first parameter) the address of the place to copy
1107 its result. */
1109 tree
1110 create_subprog_type (tree return_type, tree param_decl_list, tree cico_list,
1111 bool returns_unconstrained, bool returns_by_ref,
1112 bool returns_with_dsp, bool returns_by_target_ptr)
1114 /* A chain of TREE_LIST nodes whose TREE_VALUEs are the data type nodes of
1115 the subprogram formal parameters. This list is generated by traversing the
1116 input list of PARM_DECL nodes. */
1117 tree param_type_list = NULL;
1118 tree param_decl;
1119 tree type;
1121 for (param_decl = param_decl_list; param_decl;
1122 param_decl = TREE_CHAIN (param_decl))
1123 param_type_list = tree_cons (NULL_TREE, TREE_TYPE (param_decl),
1124 param_type_list);
1126 /* The list of the function parameter types has to be terminated by the void
1127 type to signal to the back-end that we are not dealing with a variable
1128 parameter subprogram, but that the subprogram has a fixed number of
1129 parameters. */
1130 param_type_list = tree_cons (NULL_TREE, void_type_node, param_type_list);
1132 /* The list of argument types has been created in reverse
1133 so nreverse it. */
1134 param_type_list = nreverse (param_type_list);
1136 type = build_function_type (return_type, param_type_list);
1138 /* TYPE may have been shared since GCC hashes types. If it has a CICO_LIST
1139 or the new type should, make a copy of TYPE. Likewise for
1140 RETURNS_UNCONSTRAINED and RETURNS_BY_REF. */
1141 if (TYPE_CI_CO_LIST (type) || cico_list
1142 || TYPE_RETURNS_UNCONSTRAINED_P (type) != returns_unconstrained
1143 || TYPE_RETURNS_BY_REF_P (type) != returns_by_ref
1144 || TYPE_RETURNS_BY_TARGET_PTR_P (type) != returns_by_target_ptr)
1145 type = copy_type (type);
1147 TYPE_CI_CO_LIST (type) = cico_list;
1148 TYPE_RETURNS_UNCONSTRAINED_P (type) = returns_unconstrained;
1149 TYPE_RETURNS_STACK_DEPRESSED (type) = returns_with_dsp;
1150 TYPE_RETURNS_BY_REF_P (type) = returns_by_ref;
1151 TYPE_RETURNS_BY_TARGET_PTR_P (type) = returns_by_target_ptr;
1152 return type;
1155 /* Return a copy of TYPE but safe to modify in any way. */
1157 tree
1158 copy_type (tree type)
1160 tree new = copy_node (type);
1162 /* copy_node clears this field instead of copying it, because it is
1163 aliased with TREE_CHAIN. */
1164 TYPE_STUB_DECL (new) = TYPE_STUB_DECL (type);
1166 TYPE_POINTER_TO (new) = 0;
1167 TYPE_REFERENCE_TO (new) = 0;
1168 TYPE_MAIN_VARIANT (new) = new;
1169 TYPE_NEXT_VARIANT (new) = 0;
1171 return new;
1174 /* Return an INTEGER_TYPE of SIZETYPE with range MIN to MAX and whose
1175 TYPE_INDEX_TYPE is INDEX. */
1177 tree
1178 create_index_type (tree min, tree max, tree index)
1180 /* First build a type for the desired range. */
1181 tree type = build_index_2_type (min, max);
1183 /* If this type has the TYPE_INDEX_TYPE we want, return it. Otherwise, if it
1184 doesn't have TYPE_INDEX_TYPE set, set it to INDEX. If TYPE_INDEX_TYPE
1185 is set, but not to INDEX, make a copy of this type with the requested
1186 index type. Note that we have no way of sharing these types, but that's
1187 only a small hole. */
1188 if (TYPE_INDEX_TYPE (type) == index)
1189 return type;
1190 else if (TYPE_INDEX_TYPE (type))
1191 type = copy_type (type);
1193 SET_TYPE_INDEX_TYPE (type, index);
1194 create_type_decl (NULL_TREE, type, NULL, true, false, Empty);
1195 return type;
1198 /* Return a TYPE_DECL node. TYPE_NAME gives the name of the type (a character
1199 string) and TYPE is a ..._TYPE node giving its data type.
1200 ARTIFICIAL_P is true if this is a declaration that was generated
1201 by the compiler. DEBUG_INFO_P is true if we need to write debugging
1202 information about this type. GNAT_NODE is used for the position of
1203 the decl. */
1205 tree
1206 create_type_decl (tree type_name, tree type, struct attrib *attr_list,
1207 bool artificial_p, bool debug_info_p, Node_Id gnat_node)
1209 tree type_decl = build_decl (TYPE_DECL, type_name, type);
1210 enum tree_code code = TREE_CODE (type);
1212 DECL_ARTIFICIAL (type_decl) = artificial_p;
1214 process_attributes (type_decl, attr_list);
1216 /* Pass type declaration information to the debugger unless this is an
1217 UNCONSTRAINED_ARRAY_TYPE, which the debugger does not support,
1218 and ENUMERAL_TYPE or RECORD_TYPE which is handled separately,
1219 a dummy type, which will be completed later, or a type for which
1220 debugging information was not requested. */
1221 if (code == UNCONSTRAINED_ARRAY_TYPE || TYPE_IS_DUMMY_P (type)
1222 || !debug_info_p)
1223 DECL_IGNORED_P (type_decl) = 1;
1224 else if (code != ENUMERAL_TYPE && code != RECORD_TYPE
1225 && !((code == POINTER_TYPE || code == REFERENCE_TYPE)
1226 && TYPE_IS_DUMMY_P (TREE_TYPE (type))))
1227 rest_of_decl_compilation (type_decl, global_bindings_p (), 0);
1229 if (!TYPE_IS_DUMMY_P (type))
1230 gnat_pushdecl (type_decl, gnat_node);
1232 return type_decl;
1235 /* Returns a GCC VAR_DECL node. VAR_NAME gives the name of the variable.
1236 ASM_NAME is its assembler name (if provided). TYPE is its data type
1237 (a GCC ..._TYPE node). VAR_INIT is the GCC tree for an optional initial
1238 expression; NULL_TREE if none.
1240 CONST_FLAG is true if this variable is constant.
1242 PUBLIC_FLAG is true if this definition is to be made visible outside of
1243 the current compilation unit. This flag should be set when processing the
1244 variable definitions in a package specification. EXTERN_FLAG is nonzero
1245 when processing an external variable declaration (as opposed to a
1246 definition: no storage is to be allocated for the variable here).
1248 STATIC_FLAG is only relevant when not at top level. In that case
1249 it indicates whether to always allocate storage to the variable.
1251 GNAT_NODE is used for the position of the decl. */
1253 tree
1254 create_var_decl (tree var_name, tree asm_name, tree type, tree var_init,
1255 bool const_flag, bool public_flag, bool extern_flag,
1256 bool static_flag, struct attrib *attr_list, Node_Id gnat_node)
1258 bool init_const
1259 = (!var_init
1260 ? false
1261 : (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (TREE_TYPE (var_init))
1262 && (global_bindings_p () || static_flag
1263 ? 0 != initializer_constant_valid_p (var_init,
1264 TREE_TYPE (var_init))
1265 : TREE_CONSTANT (var_init))));
1266 tree var_decl
1267 = build_decl ((const_flag && init_const
1268 /* Only make a CONST_DECL for sufficiently-small objects.
1269 We consider complex double "sufficiently-small" */
1270 && TYPE_SIZE (type) != 0
1271 && host_integerp (TYPE_SIZE_UNIT (type), 1)
1272 && 0 >= compare_tree_int (TYPE_SIZE_UNIT (type),
1273 GET_MODE_SIZE (DCmode)))
1274 ? CONST_DECL : VAR_DECL, var_name, type);
1276 /* If this is external, throw away any initializations unless this is a
1277 CONST_DECL (meaning we have a constant); they will be done elsewhere.
1278 If we are defining a global here, leave a constant initialization and
1279 save any variable elaborations for the elaboration routine. If we are
1280 just annotating types, throw away the initialization if it isn't a
1281 constant. */
1282 if ((extern_flag && TREE_CODE (var_decl) != CONST_DECL)
1283 || (type_annotate_only && var_init && !TREE_CONSTANT (var_init)))
1284 var_init = NULL_TREE;
1286 /* At the global level, an initializer requiring code to be generated
1287 produces elaboration statements. Check that such statements are allowed,
1288 that is, not violating a No_Elaboration_Code restriction. */
1289 if (global_bindings_p () && var_init != 0 && ! init_const)
1290 Check_Elaboration_Code_Allowed (gnat_node);
1292 /* Ada doesn't feature Fortran-like COMMON variables so we shouldn't
1293 try to fiddle with DECL_COMMON. However, on platforms that don't
1294 support global BSS sections, uninitialized global variables would
1295 go in DATA instead, thus increasing the size of the executable. */
1296 #if !defined(ASM_OUTPUT_BSS) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1297 if (TREE_CODE (var_decl) == VAR_DECL)
1298 DECL_COMMON (var_decl) = !flag_no_common;
1299 #endif
1300 DECL_INITIAL (var_decl) = var_init;
1301 TREE_READONLY (var_decl) = const_flag;
1302 DECL_EXTERNAL (var_decl) = extern_flag;
1303 TREE_PUBLIC (var_decl) = public_flag || extern_flag;
1304 TREE_CONSTANT (var_decl) = TREE_CODE (var_decl) == CONST_DECL;
1305 TREE_THIS_VOLATILE (var_decl) = TREE_SIDE_EFFECTS (var_decl)
1306 = TYPE_VOLATILE (type);
1308 /* If it's public and not external, always allocate storage for it.
1309 At the global binding level we need to allocate static storage for the
1310 variable if and only if it's not external. If we are not at the top level
1311 we allocate automatic storage unless requested not to. */
1312 TREE_STATIC (var_decl)
1313 = public_flag || (global_bindings_p () ? !extern_flag : static_flag);
1315 if (asm_name && VAR_OR_FUNCTION_DECL_P (var_decl))
1316 SET_DECL_ASSEMBLER_NAME (var_decl, asm_name);
1318 process_attributes (var_decl, attr_list);
1320 /* Add this decl to the current binding level. */
1321 gnat_pushdecl (var_decl, gnat_node);
1323 if (TREE_SIDE_EFFECTS (var_decl))
1324 TREE_ADDRESSABLE (var_decl) = 1;
1326 if (TREE_CODE (var_decl) != CONST_DECL)
1327 rest_of_decl_compilation (var_decl, global_bindings_p (), 0);
1328 else
1329 /* expand CONST_DECLs to set their MODE, ALIGN, SIZE and SIZE_UNIT,
1330 which we need for later back-annotations. */
1331 expand_decl (var_decl);
1333 return var_decl;
1336 /* Returns a FIELD_DECL node. FIELD_NAME the field name, FIELD_TYPE is its
1337 type, and RECORD_TYPE is the type of the parent. PACKED is nonzero if
1338 this field is in a record type with a "pragma pack". If SIZE is nonzero
1339 it is the specified size for this field. If POS is nonzero, it is the bit
1340 position. If ADDRESSABLE is nonzero, it means we are allowed to take
1341 the address of this field for aliasing purposes. If it is negative, we
1342 should not make a bitfield, which is used by make_aligning_type. */
1344 tree
1345 create_field_decl (tree field_name, tree field_type, tree record_type,
1346 int packed, tree size, tree pos, int addressable)
1348 tree field_decl = build_decl (FIELD_DECL, field_name, field_type);
1350 DECL_CONTEXT (field_decl) = record_type;
1351 TREE_READONLY (field_decl) = TYPE_READONLY (field_type);
1353 /* If FIELD_TYPE is BLKmode, we must ensure this is aligned to at least a
1354 byte boundary since GCC cannot handle less-aligned BLKmode bitfields. */
1355 if (packed && TYPE_MODE (field_type) == BLKmode)
1356 DECL_ALIGN (field_decl) = BITS_PER_UNIT;
1358 /* If a size is specified, use it. Otherwise, if the record type is packed
1359 compute a size to use, which may differ from the object's natural size.
1360 We always set a size in this case to trigger the checks for bitfield
1361 creation below, which is typically required when no position has been
1362 specified. */
1363 if (size)
1364 size = convert (bitsizetype, size);
1365 else if (packed == 1)
1367 size = rm_size (field_type);
1369 /* For a constant size larger than MAX_FIXED_MODE_SIZE, round up to
1370 byte. */
1371 if (TREE_CODE (size) == INTEGER_CST
1372 && compare_tree_int (size, MAX_FIXED_MODE_SIZE) > 0)
1373 size = round_up (size, BITS_PER_UNIT);
1376 /* If we may, according to ADDRESSABLE, make a bitfield if a size is
1377 specified for two reasons: first if the size differs from the natural
1378 size. Second, if the alignment is insufficient. There are a number of
1379 ways the latter can be true.
1381 We never make a bitfield if the type of the field has a nonconstant size,
1382 because no such entity requiring bitfield operations should reach here.
1384 We do *preventively* make a bitfield when there might be the need for it
1385 but we don't have all the necessary information to decide, as is the case
1386 of a field with no specified position in a packed record.
1388 We also don't look at STRICT_ALIGNMENT here, and rely on later processing
1389 in layout_decl or finish_record_type to clear the bit_field indication if
1390 it is in fact not needed. */
1391 if (addressable >= 0
1392 && size
1393 && TREE_CODE (size) == INTEGER_CST
1394 && TREE_CODE (TYPE_SIZE (field_type)) == INTEGER_CST
1395 && (!operand_equal_p (TYPE_SIZE (field_type), size, 0)
1396 || (pos && !value_factor_p (pos, TYPE_ALIGN (field_type)))
1397 || packed
1398 || (TYPE_ALIGN (record_type) != 0
1399 && TYPE_ALIGN (record_type) < TYPE_ALIGN (field_type))))
1401 DECL_BIT_FIELD (field_decl) = 1;
1402 DECL_SIZE (field_decl) = size;
1403 if (!packed && !pos)
1404 DECL_ALIGN (field_decl)
1405 = (TYPE_ALIGN (record_type) != 0
1406 ? MIN (TYPE_ALIGN (record_type), TYPE_ALIGN (field_type))
1407 : TYPE_ALIGN (field_type));
1410 DECL_PACKED (field_decl) = pos ? DECL_BIT_FIELD (field_decl) : packed;
1411 DECL_ALIGN (field_decl)
1412 = MAX (DECL_ALIGN (field_decl),
1413 DECL_BIT_FIELD (field_decl) ? 1
1414 : packed && TYPE_MODE (field_type) != BLKmode ? BITS_PER_UNIT
1415 : TYPE_ALIGN (field_type));
1417 if (pos)
1419 /* We need to pass in the alignment the DECL is known to have.
1420 This is the lowest-order bit set in POS, but no more than
1421 the alignment of the record, if one is specified. Note
1422 that an alignment of 0 is taken as infinite. */
1423 unsigned int known_align;
1425 if (host_integerp (pos, 1))
1426 known_align = tree_low_cst (pos, 1) & - tree_low_cst (pos, 1);
1427 else
1428 known_align = BITS_PER_UNIT;
1430 if (TYPE_ALIGN (record_type)
1431 && (known_align == 0 || known_align > TYPE_ALIGN (record_type)))
1432 known_align = TYPE_ALIGN (record_type);
1434 layout_decl (field_decl, known_align);
1435 SET_DECL_OFFSET_ALIGN (field_decl,
1436 host_integerp (pos, 1) ? BIGGEST_ALIGNMENT
1437 : BITS_PER_UNIT);
1438 pos_from_bit (&DECL_FIELD_OFFSET (field_decl),
1439 &DECL_FIELD_BIT_OFFSET (field_decl),
1440 DECL_OFFSET_ALIGN (field_decl), pos);
1442 DECL_HAS_REP_P (field_decl) = 1;
1445 /* If the field type is passed by reference, we will have pointers to the
1446 field, so it is addressable. */
1447 if (must_pass_by_ref (field_type) || default_pass_by_ref (field_type))
1448 addressable = 1;
1450 /* ??? For now, we say that any field of aggregate type is addressable
1451 because the front end may take 'Reference of it. */
1452 if (AGGREGATE_TYPE_P (field_type))
1453 addressable = 1;
1455 /* Mark the decl as nonaddressable if it is indicated so semantically,
1456 meaning we won't ever attempt to take the address of the field.
1458 It may also be "technically" nonaddressable, meaning that even if we
1459 attempt to take the field's address we will actually get the address of a
1460 copy. This is the case for true bitfields, but the DECL_BIT_FIELD value
1461 we have at this point is not accurate enough, so we don't account for
1462 this here and let finish_record_type decide. */
1463 DECL_NONADDRESSABLE_P (field_decl) = !addressable;
1465 return field_decl;
1468 /* Subroutine of previous function: return nonzero if EXP, ignoring any side
1469 effects, has the value of zero. */
1471 static bool
1472 value_zerop (tree exp)
1474 if (TREE_CODE (exp) == COMPOUND_EXPR)
1475 return value_zerop (TREE_OPERAND (exp, 1));
1477 return integer_zerop (exp);
1480 /* Returns a PARM_DECL node. PARAM_NAME is the name of the parameter,
1481 PARAM_TYPE is its type. READONLY is true if the parameter is
1482 readonly (either an IN parameter or an address of a pass-by-ref
1483 parameter). */
1485 tree
1486 create_param_decl (tree param_name, tree param_type, bool readonly)
1488 tree param_decl = build_decl (PARM_DECL, param_name, param_type);
1490 /* Honor targetm.calls.promote_prototypes(), as not doing so can
1491 lead to various ABI violations. */
1492 if (targetm.calls.promote_prototypes (param_type)
1493 && (TREE_CODE (param_type) == INTEGER_TYPE
1494 || TREE_CODE (param_type) == ENUMERAL_TYPE)
1495 && TYPE_PRECISION (param_type) < TYPE_PRECISION (integer_type_node))
1497 /* We have to be careful about biased types here. Make a subtype
1498 of integer_type_node with the proper biasing. */
1499 if (TREE_CODE (param_type) == INTEGER_TYPE
1500 && TYPE_BIASED_REPRESENTATION_P (param_type))
1502 param_type
1503 = copy_type (build_range_type (integer_type_node,
1504 TYPE_MIN_VALUE (param_type),
1505 TYPE_MAX_VALUE (param_type)));
1507 TYPE_BIASED_REPRESENTATION_P (param_type) = 1;
1509 else
1510 param_type = integer_type_node;
1513 DECL_ARG_TYPE (param_decl) = param_type;
1514 TREE_READONLY (param_decl) = readonly;
1515 return param_decl;
1518 /* Given a DECL and ATTR_LIST, process the listed attributes. */
1520 void
1521 process_attributes (tree decl, struct attrib *attr_list)
1523 for (; attr_list; attr_list = attr_list->next)
1524 switch (attr_list->type)
1526 case ATTR_MACHINE_ATTRIBUTE:
1527 decl_attributes (&decl, tree_cons (attr_list->name, attr_list->args,
1528 NULL_TREE),
1529 ATTR_FLAG_TYPE_IN_PLACE);
1530 break;
1532 case ATTR_LINK_ALIAS:
1533 if (! DECL_EXTERNAL (decl))
1535 TREE_STATIC (decl) = 1;
1536 assemble_alias (decl, attr_list->name);
1538 break;
1540 case ATTR_WEAK_EXTERNAL:
1541 if (SUPPORTS_WEAK)
1542 declare_weak (decl);
1543 else
1544 post_error ("?weak declarations not supported on this target",
1545 attr_list->error_point);
1546 break;
1548 case ATTR_LINK_SECTION:
1549 if (targetm.have_named_sections)
1551 DECL_SECTION_NAME (decl)
1552 = build_string (IDENTIFIER_LENGTH (attr_list->name),
1553 IDENTIFIER_POINTER (attr_list->name));
1554 DECL_COMMON (decl) = 0;
1556 else
1557 post_error ("?section attributes are not supported for this target",
1558 attr_list->error_point);
1559 break;
1561 case ATTR_LINK_CONSTRUCTOR:
1562 DECL_STATIC_CONSTRUCTOR (decl) = 1;
1563 TREE_USED (decl) = 1;
1564 break;
1566 case ATTR_LINK_DESTRUCTOR:
1567 DECL_STATIC_DESTRUCTOR (decl) = 1;
1568 TREE_USED (decl) = 1;
1569 break;
1573 /* Return true if VALUE is a known to be a multiple of FACTOR, which must be
1574 a power of 2. */
1576 static bool
1577 value_factor_p (tree value, HOST_WIDE_INT factor)
1579 if (host_integerp (value, 1))
1580 return tree_low_cst (value, 1) % factor == 0;
1582 if (TREE_CODE (value) == MULT_EXPR)
1583 return (value_factor_p (TREE_OPERAND (value, 0), factor)
1584 || value_factor_p (TREE_OPERAND (value, 1), factor));
1586 return 0;
1589 /* Given 2 consecutive field decls PREV_FIELD and CURR_FIELD, return true
1590 unless we can prove these 2 fields are laid out in such a way that no gap
1591 exist between the end of PREV_FIELD and the beginning of CURR_FIELD. OFFSET
1592 is the distance in bits between the end of PREV_FIELD and the starting
1593 position of CURR_FIELD. It is ignored if null. */
1595 static bool
1596 potential_alignment_gap (tree prev_field, tree curr_field, tree offset)
1598 /* If this is the first field of the record, there cannot be any gap */
1599 if (!prev_field)
1600 return false;
1602 /* If the previous field is a union type, then return False: The only
1603 time when such a field is not the last field of the record is when
1604 there are other components at fixed positions after it (meaning there
1605 was a rep clause for every field), in which case we don't want the
1606 alignment constraint to override them. */
1607 if (TREE_CODE (TREE_TYPE (prev_field)) == QUAL_UNION_TYPE)
1608 return false;
1610 /* If the distance between the end of prev_field and the beginning of
1611 curr_field is constant, then there is a gap if the value of this
1612 constant is not null. */
1613 if (offset && host_integerp (offset, 1))
1614 return !integer_zerop (offset);
1616 /* If the size and position of the previous field are constant,
1617 then check the sum of this size and position. There will be a gap
1618 iff it is not multiple of the current field alignment. */
1619 if (host_integerp (DECL_SIZE (prev_field), 1)
1620 && host_integerp (bit_position (prev_field), 1))
1621 return ((tree_low_cst (bit_position (prev_field), 1)
1622 + tree_low_cst (DECL_SIZE (prev_field), 1))
1623 % DECL_ALIGN (curr_field) != 0);
1625 /* If both the position and size of the previous field are multiples
1626 of the current field alignment, there cannot be any gap. */
1627 if (value_factor_p (bit_position (prev_field), DECL_ALIGN (curr_field))
1628 && value_factor_p (DECL_SIZE (prev_field), DECL_ALIGN (curr_field)))
1629 return false;
1631 /* Fallback, return that there may be a potential gap */
1632 return true;
1635 /* Returns a LABEL_DECL node for LABEL_NAME. */
1637 tree
1638 create_label_decl (tree label_name)
1640 tree label_decl = build_decl (LABEL_DECL, label_name, void_type_node);
1642 DECL_CONTEXT (label_decl) = current_function_decl;
1643 DECL_MODE (label_decl) = VOIDmode;
1644 DECL_SOURCE_LOCATION (label_decl) = input_location;
1646 return label_decl;
1649 /* Returns a FUNCTION_DECL node. SUBPROG_NAME is the name of the subprogram,
1650 ASM_NAME is its assembler name, SUBPROG_TYPE is its type (a FUNCTION_TYPE
1651 node), PARAM_DECL_LIST is the list of the subprogram arguments (a list of
1652 PARM_DECL nodes chained through the TREE_CHAIN field).
1654 INLINE_FLAG, PUBLIC_FLAG, EXTERN_FLAG, and ATTR_LIST are used to set the
1655 appropriate fields in the FUNCTION_DECL. GNAT_NODE gives the location. */
1657 tree
1658 create_subprog_decl (tree subprog_name, tree asm_name,
1659 tree subprog_type, tree param_decl_list, bool inline_flag,
1660 bool public_flag, bool extern_flag,
1661 struct attrib *attr_list, Node_Id gnat_node)
1663 tree return_type = TREE_TYPE (subprog_type);
1664 tree subprog_decl = build_decl (FUNCTION_DECL, subprog_name, subprog_type);
1666 /* If this is a function nested inside an inlined external function, it
1667 means we aren't going to compile the outer function unless it is
1668 actually inlined, so do the same for us. */
1669 if (current_function_decl && DECL_INLINE (current_function_decl)
1670 && DECL_EXTERNAL (current_function_decl))
1671 extern_flag = true;
1673 DECL_EXTERNAL (subprog_decl) = extern_flag;
1674 TREE_PUBLIC (subprog_decl) = public_flag;
1675 TREE_STATIC (subprog_decl) = 1;
1676 TREE_READONLY (subprog_decl) = TYPE_READONLY (subprog_type);
1677 TREE_THIS_VOLATILE (subprog_decl) = TYPE_VOLATILE (subprog_type);
1678 TREE_SIDE_EFFECTS (subprog_decl) = TYPE_VOLATILE (subprog_type);
1679 DECL_ARGUMENTS (subprog_decl) = param_decl_list;
1680 DECL_RESULT (subprog_decl) = build_decl (RESULT_DECL, 0, return_type);
1681 DECL_ARTIFICIAL (DECL_RESULT (subprog_decl)) = 1;
1682 DECL_IGNORED_P (DECL_RESULT (subprog_decl)) = 1;
1684 if (inline_flag)
1685 DECL_DECLARED_INLINE_P (subprog_decl) = 1;
1687 if (asm_name)
1688 SET_DECL_ASSEMBLER_NAME (subprog_decl, asm_name);
1690 process_attributes (subprog_decl, attr_list);
1692 /* Add this decl to the current binding level. */
1693 gnat_pushdecl (subprog_decl, gnat_node);
1695 /* Output the assembler code and/or RTL for the declaration. */
1696 rest_of_decl_compilation (subprog_decl, global_bindings_p (), 0);
1698 return subprog_decl;
1701 /* Set up the framework for generating code for SUBPROG_DECL, a subprogram
1702 body. This routine needs to be invoked before processing the declarations
1703 appearing in the subprogram. */
1705 void
1706 begin_subprog_body (tree subprog_decl)
1708 tree param_decl;
1710 current_function_decl = subprog_decl;
1711 announce_function (subprog_decl);
1713 /* Enter a new binding level and show that all the parameters belong to
1714 this function. */
1715 gnat_pushlevel ();
1716 for (param_decl = DECL_ARGUMENTS (subprog_decl); param_decl;
1717 param_decl = TREE_CHAIN (param_decl))
1718 DECL_CONTEXT (param_decl) = subprog_decl;
1720 make_decl_rtl (subprog_decl);
1722 /* We handle pending sizes via the elaboration of types, so we don't need to
1723 save them. This causes them to be marked as part of the outer function
1724 and then discarded. */
1725 get_pending_sizes ();
1728 /* Finish the definition of the current subprogram and compile it all the way
1729 to assembler language output. BODY is the tree corresponding to
1730 the subprogram. */
1732 void
1733 end_subprog_body (tree body)
1735 tree fndecl = current_function_decl;
1737 /* Mark the BLOCK for this level as being for this function and pop the
1738 level. Since the vars in it are the parameters, clear them. */
1739 BLOCK_VARS (current_binding_level->block) = 0;
1740 BLOCK_SUPERCONTEXT (current_binding_level->block) = fndecl;
1741 DECL_INITIAL (fndecl) = current_binding_level->block;
1742 gnat_poplevel ();
1744 /* Deal with inline. If declared inline or we should default to inline,
1745 set the flag in the decl. */
1746 DECL_INLINE (fndecl)
1747 = DECL_DECLARED_INLINE_P (fndecl) || flag_inline_trees == 2;
1749 /* We handle pending sizes via the elaboration of types, so we don't
1750 need to save them. */
1751 get_pending_sizes ();
1753 /* Mark the RESULT_DECL as being in this subprogram. */
1754 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
1756 DECL_SAVED_TREE (fndecl) = body;
1758 current_function_decl = DECL_CONTEXT (fndecl);
1759 cfun = NULL;
1761 /* If we're only annotating types, don't actually compile this function. */
1762 if (type_annotate_only)
1763 return;
1765 /* If we don't have .ctors/.dtors sections, and this is a static
1766 constructor or destructor, it must be recorded now. */
1767 if (DECL_STATIC_CONSTRUCTOR (fndecl) && !targetm.have_ctors_dtors)
1768 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
1770 if (DECL_STATIC_DESTRUCTOR (fndecl) && !targetm.have_ctors_dtors)
1771 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
1773 /* We do different things for nested and non-nested functions.
1774 ??? This should be in cgraph. */
1775 if (!DECL_CONTEXT (fndecl))
1777 gnat_gimplify_function (fndecl);
1778 cgraph_finalize_function (fndecl, false);
1780 else
1781 /* Register this function with cgraph just far enough to get it
1782 added to our parent's nested function list. */
1783 (void) cgraph_node (fndecl);
1786 /* Convert FNDECL's code to GIMPLE and handle any nested functions. */
1788 static void
1789 gnat_gimplify_function (tree fndecl)
1791 struct cgraph_node *cgn;
1793 dump_function (TDI_original, fndecl);
1794 gimplify_function_tree (fndecl);
1795 dump_function (TDI_generic, fndecl);
1797 /* Convert all nested functions to GIMPLE now. We do things in this order
1798 so that items like VLA sizes are expanded properly in the context of the
1799 correct function. */
1800 cgn = cgraph_node (fndecl);
1801 for (cgn = cgn->nested; cgn; cgn = cgn->next_nested)
1802 gnat_gimplify_function (cgn->decl);
1805 /* Return a definition for a builtin function named NAME and whose data type
1806 is TYPE. TYPE should be a function type with argument types.
1807 FUNCTION_CODE tells later passes how to compile calls to this function.
1808 See tree.h for its possible values.
1810 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
1811 the name to be called if we can't opencode the function. If
1812 ATTRS is nonzero, use that for the function attribute list. */
1814 tree
1815 builtin_function (const char *name, tree type, int function_code,
1816 enum built_in_class class, const char *library_name,
1817 tree attrs)
1819 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
1821 DECL_EXTERNAL (decl) = 1;
1822 TREE_PUBLIC (decl) = 1;
1823 if (library_name)
1824 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
1826 gnat_pushdecl (decl, Empty);
1827 DECL_BUILT_IN_CLASS (decl) = class;
1828 DECL_FUNCTION_CODE (decl) = function_code;
1829 if (attrs)
1830 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
1831 return decl;
1834 /* Return an integer type with the number of bits of precision given by
1835 PRECISION. UNSIGNEDP is nonzero if the type is unsigned; otherwise
1836 it is a signed type. */
1838 tree
1839 gnat_type_for_size (unsigned precision, int unsignedp)
1841 tree t;
1842 char type_name[20];
1844 if (precision <= 2 * MAX_BITS_PER_WORD
1845 && signed_and_unsigned_types[precision][unsignedp])
1846 return signed_and_unsigned_types[precision][unsignedp];
1848 if (unsignedp)
1849 t = make_unsigned_type (precision);
1850 else
1851 t = make_signed_type (precision);
1853 if (precision <= 2 * MAX_BITS_PER_WORD)
1854 signed_and_unsigned_types[precision][unsignedp] = t;
1856 if (!TYPE_NAME (t))
1858 sprintf (type_name, "%sSIGNED_%d", unsignedp ? "UN" : "", precision);
1859 TYPE_NAME (t) = get_identifier (type_name);
1862 return t;
1865 /* Likewise for floating-point types. */
1867 static tree
1868 float_type_for_precision (int precision, enum machine_mode mode)
1870 tree t;
1871 char type_name[20];
1873 if (float_types[(int) mode])
1874 return float_types[(int) mode];
1876 float_types[(int) mode] = t = make_node (REAL_TYPE);
1877 TYPE_PRECISION (t) = precision;
1878 layout_type (t);
1880 gcc_assert (TYPE_MODE (t) == mode);
1881 if (!TYPE_NAME (t))
1883 sprintf (type_name, "FLOAT_%d", precision);
1884 TYPE_NAME (t) = get_identifier (type_name);
1887 return t;
1890 /* Return a data type that has machine mode MODE. UNSIGNEDP selects
1891 an unsigned type; otherwise a signed type is returned. */
1893 tree
1894 gnat_type_for_mode (enum machine_mode mode, int unsignedp)
1896 if (mode == BLKmode)
1897 return NULL_TREE;
1898 else if (mode == VOIDmode)
1899 return void_type_node;
1900 else if (COMPLEX_MODE_P (mode))
1901 return NULL_TREE;
1902 else if (SCALAR_FLOAT_MODE_P (mode))
1903 return float_type_for_precision (GET_MODE_PRECISION (mode), mode);
1904 else if (SCALAR_INT_MODE_P (mode))
1905 return gnat_type_for_size (GET_MODE_BITSIZE (mode), unsignedp);
1906 else
1907 return NULL_TREE;
1910 /* Return the unsigned version of a TYPE_NODE, a scalar type. */
1912 tree
1913 gnat_unsigned_type (tree type_node)
1915 tree type = gnat_type_for_size (TYPE_PRECISION (type_node), 1);
1917 if (TREE_CODE (type_node) == INTEGER_TYPE && TYPE_MODULAR_P (type_node))
1919 type = copy_node (type);
1920 TREE_TYPE (type) = type_node;
1922 else if (TREE_TYPE (type_node)
1923 && TREE_CODE (TREE_TYPE (type_node)) == INTEGER_TYPE
1924 && TYPE_MODULAR_P (TREE_TYPE (type_node)))
1926 type = copy_node (type);
1927 TREE_TYPE (type) = TREE_TYPE (type_node);
1930 return type;
1933 /* Return the signed version of a TYPE_NODE, a scalar type. */
1935 tree
1936 gnat_signed_type (tree type_node)
1938 tree type = gnat_type_for_size (TYPE_PRECISION (type_node), 0);
1940 if (TREE_CODE (type_node) == INTEGER_TYPE && TYPE_MODULAR_P (type_node))
1942 type = copy_node (type);
1943 TREE_TYPE (type) = type_node;
1945 else if (TREE_TYPE (type_node)
1946 && TREE_CODE (TREE_TYPE (type_node)) == INTEGER_TYPE
1947 && TYPE_MODULAR_P (TREE_TYPE (type_node)))
1949 type = copy_node (type);
1950 TREE_TYPE (type) = TREE_TYPE (type_node);
1953 return type;
1956 /* Return a type the same as TYPE except unsigned or signed according to
1957 UNSIGNEDP. */
1959 tree
1960 gnat_signed_or_unsigned_type (int unsignedp, tree type)
1962 if (!INTEGRAL_TYPE_P (type) || TYPE_UNSIGNED (type) == unsignedp)
1963 return type;
1964 else
1965 return gnat_type_for_size (TYPE_PRECISION (type), unsignedp);
1968 /* EXP is an expression for the size of an object. If this size contains
1969 discriminant references, replace them with the maximum (if MAX_P) or
1970 minimum (if !MAX_P) possible value of the discriminant. */
1972 tree
1973 max_size (tree exp, bool max_p)
1975 enum tree_code code = TREE_CODE (exp);
1976 tree type = TREE_TYPE (exp);
1978 switch (TREE_CODE_CLASS (code))
1980 case tcc_declaration:
1981 case tcc_constant:
1982 return exp;
1984 case tcc_exceptional:
1985 if (code == TREE_LIST)
1986 return tree_cons (TREE_PURPOSE (exp),
1987 max_size (TREE_VALUE (exp), max_p),
1988 TREE_CHAIN (exp)
1989 ? max_size (TREE_CHAIN (exp), max_p) : NULL_TREE);
1990 break;
1992 case tcc_reference:
1993 /* If this contains a PLACEHOLDER_EXPR, it is the thing we want to
1994 modify. Otherwise, we treat it like a variable. */
1995 if (!CONTAINS_PLACEHOLDER_P (exp))
1996 return exp;
1998 type = TREE_TYPE (TREE_OPERAND (exp, 1));
1999 return
2000 max_size (max_p ? TYPE_MAX_VALUE (type) : TYPE_MIN_VALUE (type), true);
2002 case tcc_comparison:
2003 return max_p ? size_one_node : size_zero_node;
2005 case tcc_unary:
2006 case tcc_binary:
2007 case tcc_expression:
2008 switch (TREE_CODE_LENGTH (code))
2010 case 1:
2011 if (code == NON_LVALUE_EXPR)
2012 return max_size (TREE_OPERAND (exp, 0), max_p);
2013 else
2014 return
2015 fold (build1 (code, type,
2016 max_size (TREE_OPERAND (exp, 0),
2017 code == NEGATE_EXPR ? !max_p : max_p)));
2019 case 2:
2020 if (code == COMPOUND_EXPR)
2021 return max_size (TREE_OPERAND (exp, 1), max_p);
2024 tree lhs = max_size (TREE_OPERAND (exp, 0), max_p);
2025 tree rhs = max_size (TREE_OPERAND (exp, 1),
2026 code == MINUS_EXPR ? !max_p : max_p);
2028 /* Special-case wanting the maximum value of a MIN_EXPR.
2029 In that case, if one side overflows, return the other.
2030 sizetype is signed, but we know sizes are non-negative.
2031 Likewise, handle a MINUS_EXPR or PLUS_EXPR with the LHS
2032 overflowing or the maximum possible value and the RHS
2033 a variable. */
2034 if (max_p
2035 && code == MIN_EXPR
2036 && TREE_CODE (rhs) == INTEGER_CST
2037 && TREE_OVERFLOW (rhs))
2038 return lhs;
2039 else if (max_p
2040 && code == MIN_EXPR
2041 && TREE_CODE (lhs) == INTEGER_CST
2042 && TREE_OVERFLOW (lhs))
2043 return rhs;
2044 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
2045 && ((TREE_CODE (lhs) == INTEGER_CST
2046 && TREE_OVERFLOW (lhs))
2047 || operand_equal_p (lhs, TYPE_MAX_VALUE (type), 0))
2048 && !TREE_CONSTANT (rhs))
2049 return lhs;
2050 else
2051 return fold (build2 (code, type, lhs, rhs));
2054 case 3:
2055 if (code == SAVE_EXPR)
2056 return exp;
2057 else if (code == COND_EXPR)
2058 return fold (build2 (max_p ? MAX_EXPR : MIN_EXPR, type,
2059 max_size (TREE_OPERAND (exp, 1), max_p),
2060 max_size (TREE_OPERAND (exp, 2), max_p)));
2061 else if (code == CALL_EXPR && TREE_OPERAND (exp, 1))
2062 return build3 (CALL_EXPR, type, TREE_OPERAND (exp, 0),
2063 max_size (TREE_OPERAND (exp, 1), max_p), NULL);
2066 /* Other tree classes cannot happen. */
2067 default:
2068 break;
2071 gcc_unreachable ();
2074 /* Build a template of type TEMPLATE_TYPE from the array bounds of ARRAY_TYPE.
2075 EXPR is an expression that we can use to locate any PLACEHOLDER_EXPRs.
2076 Return a constructor for the template. */
2078 tree
2079 build_template (tree template_type, tree array_type, tree expr)
2081 tree template_elts = NULL_TREE;
2082 tree bound_list = NULL_TREE;
2083 tree field;
2085 if (TREE_CODE (array_type) == RECORD_TYPE
2086 && (TYPE_IS_PADDING_P (array_type)
2087 || TYPE_JUSTIFIED_MODULAR_P (array_type)))
2088 array_type = TREE_TYPE (TYPE_FIELDS (array_type));
2090 if (TREE_CODE (array_type) == ARRAY_TYPE
2091 || (TREE_CODE (array_type) == INTEGER_TYPE
2092 && TYPE_HAS_ACTUAL_BOUNDS_P (array_type)))
2093 bound_list = TYPE_ACTUAL_BOUNDS (array_type);
2095 /* First make the list for a CONSTRUCTOR for the template. Go down the
2096 field list of the template instead of the type chain because this
2097 array might be an Ada array of arrays and we can't tell where the
2098 nested arrays stop being the underlying object. */
2100 for (field = TYPE_FIELDS (template_type); field;
2101 (bound_list
2102 ? (bound_list = TREE_CHAIN (bound_list))
2103 : (array_type = TREE_TYPE (array_type))),
2104 field = TREE_CHAIN (TREE_CHAIN (field)))
2106 tree bounds, min, max;
2108 /* If we have a bound list, get the bounds from there. Likewise
2109 for an ARRAY_TYPE. Otherwise, if expr is a PARM_DECL with
2110 DECL_BY_COMPONENT_PTR_P, use the bounds of the field in the template.
2111 This will give us a maximum range. */
2112 if (bound_list)
2113 bounds = TREE_VALUE (bound_list);
2114 else if (TREE_CODE (array_type) == ARRAY_TYPE)
2115 bounds = TYPE_INDEX_TYPE (TYPE_DOMAIN (array_type));
2116 else if (expr && TREE_CODE (expr) == PARM_DECL
2117 && DECL_BY_COMPONENT_PTR_P (expr))
2118 bounds = TREE_TYPE (field);
2119 else
2120 gcc_unreachable ();
2122 min = convert (TREE_TYPE (TREE_CHAIN (field)), TYPE_MIN_VALUE (bounds));
2123 max = convert (TREE_TYPE (field), TYPE_MAX_VALUE (bounds));
2125 /* If either MIN or MAX involve a PLACEHOLDER_EXPR, we must
2126 substitute it from OBJECT. */
2127 min = SUBSTITUTE_PLACEHOLDER_IN_EXPR (min, expr);
2128 max = SUBSTITUTE_PLACEHOLDER_IN_EXPR (max, expr);
2130 template_elts = tree_cons (TREE_CHAIN (field), max,
2131 tree_cons (field, min, template_elts));
2134 return gnat_build_constructor (template_type, nreverse (template_elts));
2137 /* Build a VMS descriptor from a Mechanism_Type, which must specify
2138 a descriptor type, and the GCC type of an object. Each FIELD_DECL
2139 in the type contains in its DECL_INITIAL the expression to use when
2140 a constructor is made for the type. GNAT_ENTITY is an entity used
2141 to print out an error message if the mechanism cannot be applied to
2142 an object of that type and also for the name. */
2144 tree
2145 build_vms_descriptor (tree type, Mechanism_Type mech, Entity_Id gnat_entity)
2147 tree record_type = make_node (RECORD_TYPE);
2148 tree field_list = 0;
2149 int class;
2150 int dtype = 0;
2151 tree inner_type;
2152 int ndim;
2153 int i;
2154 tree *idx_arr;
2155 tree tem;
2157 /* If TYPE is an unconstrained array, use the underlying array type. */
2158 if (TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
2159 type = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (type))));
2161 /* If this is an array, compute the number of dimensions in the array,
2162 get the index types, and point to the inner type. */
2163 if (TREE_CODE (type) != ARRAY_TYPE)
2164 ndim = 0;
2165 else
2166 for (ndim = 1, inner_type = type;
2167 TREE_CODE (TREE_TYPE (inner_type)) == ARRAY_TYPE
2168 && TYPE_MULTI_ARRAY_P (TREE_TYPE (inner_type));
2169 ndim++, inner_type = TREE_TYPE (inner_type))
2172 idx_arr = (tree *) alloca (ndim * sizeof (tree));
2174 if (mech != By_Descriptor_NCA
2175 && TREE_CODE (type) == ARRAY_TYPE && TYPE_CONVENTION_FORTRAN_P (type))
2176 for (i = ndim - 1, inner_type = type;
2177 i >= 0;
2178 i--, inner_type = TREE_TYPE (inner_type))
2179 idx_arr[i] = TYPE_DOMAIN (inner_type);
2180 else
2181 for (i = 0, inner_type = type;
2182 i < ndim;
2183 i++, inner_type = TREE_TYPE (inner_type))
2184 idx_arr[i] = TYPE_DOMAIN (inner_type);
2186 /* Now get the DTYPE value. */
2187 switch (TREE_CODE (type))
2189 case INTEGER_TYPE:
2190 case ENUMERAL_TYPE:
2191 if (TYPE_VAX_FLOATING_POINT_P (type))
2192 switch (tree_low_cst (TYPE_DIGITS_VALUE (type), 1))
2194 case 6:
2195 dtype = 10;
2196 break;
2197 case 9:
2198 dtype = 11;
2199 break;
2200 case 15:
2201 dtype = 27;
2202 break;
2204 else
2205 switch (GET_MODE_BITSIZE (TYPE_MODE (type)))
2207 case 8:
2208 dtype = TYPE_UNSIGNED (type) ? 2 : 6;
2209 break;
2210 case 16:
2211 dtype = TYPE_UNSIGNED (type) ? 3 : 7;
2212 break;
2213 case 32:
2214 dtype = TYPE_UNSIGNED (type) ? 4 : 8;
2215 break;
2216 case 64:
2217 dtype = TYPE_UNSIGNED (type) ? 5 : 9;
2218 break;
2219 case 128:
2220 dtype = TYPE_UNSIGNED (type) ? 25 : 26;
2221 break;
2223 break;
2225 case REAL_TYPE:
2226 dtype = GET_MODE_BITSIZE (TYPE_MODE (type)) == 32 ? 52 : 53;
2227 break;
2229 case COMPLEX_TYPE:
2230 if (TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE
2231 && TYPE_VAX_FLOATING_POINT_P (type))
2232 switch (tree_low_cst (TYPE_DIGITS_VALUE (type), 1))
2234 case 6:
2235 dtype = 12;
2236 break;
2237 case 9:
2238 dtype = 13;
2239 break;
2240 case 15:
2241 dtype = 29;
2243 else
2244 dtype = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))) == 32 ? 54: 55;
2245 break;
2247 case ARRAY_TYPE:
2248 dtype = 14;
2249 break;
2251 default:
2252 break;
2255 /* Get the CLASS value. */
2256 switch (mech)
2258 case By_Descriptor_A:
2259 class = 4;
2260 break;
2261 case By_Descriptor_NCA:
2262 class = 10;
2263 break;
2264 case By_Descriptor_SB:
2265 class = 15;
2266 break;
2267 default:
2268 class = 1;
2271 /* Make the type for a descriptor for VMS. The first four fields
2272 are the same for all types. */
2274 field_list
2275 = chainon (field_list,
2276 make_descriptor_field
2277 ("LENGTH", gnat_type_for_size (16, 1), record_type,
2278 size_in_bytes (mech == By_Descriptor_A ? inner_type : type)));
2280 field_list = chainon (field_list,
2281 make_descriptor_field ("DTYPE",
2282 gnat_type_for_size (8, 1),
2283 record_type, size_int (dtype)));
2284 field_list = chainon (field_list,
2285 make_descriptor_field ("CLASS",
2286 gnat_type_for_size (8, 1),
2287 record_type, size_int (class)));
2289 field_list
2290 = chainon (field_list,
2291 make_descriptor_field
2292 ("POINTER",
2293 build_pointer_type_for_mode (type, SImode, false), record_type,
2294 build1 (ADDR_EXPR,
2295 build_pointer_type_for_mode (type, SImode, false),
2296 build0 (PLACEHOLDER_EXPR, type))));
2298 switch (mech)
2300 case By_Descriptor:
2301 case By_Descriptor_S:
2302 break;
2304 case By_Descriptor_SB:
2305 field_list
2306 = chainon (field_list,
2307 make_descriptor_field
2308 ("SB_L1", gnat_type_for_size (32, 1), record_type,
2309 TREE_CODE (type) == ARRAY_TYPE
2310 ? TYPE_MIN_VALUE (TYPE_DOMAIN (type)) : size_zero_node));
2311 field_list
2312 = chainon (field_list,
2313 make_descriptor_field
2314 ("SB_L2", gnat_type_for_size (32, 1), record_type,
2315 TREE_CODE (type) == ARRAY_TYPE
2316 ? TYPE_MAX_VALUE (TYPE_DOMAIN (type)) : size_zero_node));
2317 break;
2319 case By_Descriptor_A:
2320 case By_Descriptor_NCA:
2321 field_list = chainon (field_list,
2322 make_descriptor_field ("SCALE",
2323 gnat_type_for_size (8, 1),
2324 record_type,
2325 size_zero_node));
2327 field_list = chainon (field_list,
2328 make_descriptor_field ("DIGITS",
2329 gnat_type_for_size (8, 1),
2330 record_type,
2331 size_zero_node));
2333 field_list
2334 = chainon (field_list,
2335 make_descriptor_field
2336 ("AFLAGS", gnat_type_for_size (8, 1), record_type,
2337 size_int (mech == By_Descriptor_NCA
2339 /* Set FL_COLUMN, FL_COEFF, and FL_BOUNDS. */
2340 : (TREE_CODE (type) == ARRAY_TYPE
2341 && TYPE_CONVENTION_FORTRAN_P (type)
2342 ? 224 : 192))));
2344 field_list = chainon (field_list,
2345 make_descriptor_field ("DIMCT",
2346 gnat_type_for_size (8, 1),
2347 record_type,
2348 size_int (ndim)));
2350 field_list = chainon (field_list,
2351 make_descriptor_field ("ARSIZE",
2352 gnat_type_for_size (32, 1),
2353 record_type,
2354 size_in_bytes (type)));
2356 /* Now build a pointer to the 0,0,0... element. */
2357 tem = build0 (PLACEHOLDER_EXPR, type);
2358 for (i = 0, inner_type = type; i < ndim;
2359 i++, inner_type = TREE_TYPE (inner_type))
2360 tem = build4 (ARRAY_REF, TREE_TYPE (inner_type), tem,
2361 convert (TYPE_DOMAIN (inner_type), size_zero_node),
2362 NULL_TREE, NULL_TREE);
2364 field_list
2365 = chainon (field_list,
2366 make_descriptor_field
2367 ("A0",
2368 build_pointer_type_for_mode (inner_type, SImode, false),
2369 record_type,
2370 build1 (ADDR_EXPR,
2371 build_pointer_type_for_mode (inner_type, SImode,
2372 false),
2373 tem)));
2375 /* Next come the addressing coefficients. */
2376 tem = size_int (1);
2377 for (i = 0; i < ndim; i++)
2379 char fname[3];
2380 tree idx_length
2381 = size_binop (MULT_EXPR, tem,
2382 size_binop (PLUS_EXPR,
2383 size_binop (MINUS_EXPR,
2384 TYPE_MAX_VALUE (idx_arr[i]),
2385 TYPE_MIN_VALUE (idx_arr[i])),
2386 size_int (1)));
2388 fname[0] = (mech == By_Descriptor_NCA ? 'S' : 'M');
2389 fname[1] = '0' + i, fname[2] = 0;
2390 field_list
2391 = chainon (field_list,
2392 make_descriptor_field (fname,
2393 gnat_type_for_size (32, 1),
2394 record_type, idx_length));
2396 if (mech == By_Descriptor_NCA)
2397 tem = idx_length;
2400 /* Finally here are the bounds. */
2401 for (i = 0; i < ndim; i++)
2403 char fname[3];
2405 fname[0] = 'L', fname[1] = '0' + i, fname[2] = 0;
2406 field_list
2407 = chainon (field_list,
2408 make_descriptor_field
2409 (fname, gnat_type_for_size (32, 1), record_type,
2410 TYPE_MIN_VALUE (idx_arr[i])));
2412 fname[0] = 'U';
2413 field_list
2414 = chainon (field_list,
2415 make_descriptor_field
2416 (fname, gnat_type_for_size (32, 1), record_type,
2417 TYPE_MAX_VALUE (idx_arr[i])));
2419 break;
2421 default:
2422 post_error ("unsupported descriptor type for &", gnat_entity);
2425 finish_record_type (record_type, field_list, false, true);
2426 create_type_decl (create_concat_name (gnat_entity, "DESC"), record_type,
2427 NULL, true, false, gnat_entity);
2429 return record_type;
2432 /* Utility routine for above code to make a field. */
2434 static tree
2435 make_descriptor_field (const char *name, tree type,
2436 tree rec_type, tree initial)
2438 tree field
2439 = create_field_decl (get_identifier (name), type, rec_type, 0, 0, 0, 0);
2441 DECL_INITIAL (field) = initial;
2442 return field;
2445 /* Build a type to be used to represent an aliased object whose nominal
2446 type is an unconstrained array. This consists of a RECORD_TYPE containing
2447 a field of TEMPLATE_TYPE and a field of OBJECT_TYPE, which is an
2448 ARRAY_TYPE. If ARRAY_TYPE is that of the unconstrained array, this
2449 is used to represent an arbitrary unconstrained object. Use NAME
2450 as the name of the record. */
2452 tree
2453 build_unc_object_type (tree template_type, tree object_type, tree name)
2455 tree type = make_node (RECORD_TYPE);
2456 tree template_field = create_field_decl (get_identifier ("BOUNDS"),
2457 template_type, type, 0, 0, 0, 1);
2458 tree array_field = create_field_decl (get_identifier ("ARRAY"), object_type,
2459 type, 0, 0, 0, 1);
2461 TYPE_NAME (type) = name;
2462 TYPE_CONTAINS_TEMPLATE_P (type) = 1;
2463 finish_record_type (type,
2464 chainon (chainon (NULL_TREE, template_field),
2465 array_field),
2466 false, false);
2468 return type;
2471 /* Same, taking a thin or fat pointer type instead of a template type. */
2473 tree
2474 build_unc_object_type_from_ptr (tree thin_fat_ptr_type, tree object_type, tree name)
2476 tree template_type;
2478 gcc_assert (TYPE_FAT_OR_THIN_POINTER_P (thin_fat_ptr_type));
2480 template_type
2481 = (TYPE_FAT_POINTER_P (thin_fat_ptr_type)
2482 ? TREE_TYPE (TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (thin_fat_ptr_type))))
2483 : TREE_TYPE (TYPE_FIELDS (TREE_TYPE (thin_fat_ptr_type))));
2484 return build_unc_object_type (template_type, object_type, name);
2487 /* Update anything previously pointing to OLD_TYPE to point to NEW_TYPE. In
2488 the normal case this is just two adjustments, but we have more to do
2489 if NEW is an UNCONSTRAINED_ARRAY_TYPE. */
2491 void
2492 update_pointer_to (tree old_type, tree new_type)
2494 tree ptr = TYPE_POINTER_TO (old_type);
2495 tree ref = TYPE_REFERENCE_TO (old_type);
2496 tree ptr1, ref1;
2497 tree type;
2499 /* If this is the main variant, process all the other variants first. */
2500 if (TYPE_MAIN_VARIANT (old_type) == old_type)
2501 for (type = TYPE_NEXT_VARIANT (old_type); type;
2502 type = TYPE_NEXT_VARIANT (type))
2503 update_pointer_to (type, new_type);
2505 /* If no pointer or reference, we are done. */
2506 if (!ptr && !ref)
2507 return;
2509 /* Merge the old type qualifiers in the new type.
2511 Each old variant has qualifiers for specific reasons, and the new
2512 designated type as well. Each set of qualifiers represents useful
2513 information grabbed at some point, and merging the two simply unifies
2514 these inputs into the final type description.
2516 Consider for instance a volatile type frozen after an access to constant
2517 type designating it. After the designated type freeze, we get here with a
2518 volatile new_type and a dummy old_type with a readonly variant, created
2519 when the access type was processed. We shall make a volatile and readonly
2520 designated type, because that's what it really is.
2522 We might also get here for a non-dummy old_type variant with different
2523 qualifiers than the new_type ones, for instance in some cases of pointers
2524 to private record type elaboration (see the comments around the call to
2525 this routine from gnat_to_gnu_entity/E_Access_Type). We have to merge the
2526 qualifiers in thoses cases too, to avoid accidentally discarding the
2527 initial set, and will often end up with old_type == new_type then. */
2528 new_type = build_qualified_type (new_type,
2529 TYPE_QUALS (old_type)
2530 | TYPE_QUALS (new_type));
2532 /* If the new type and the old one are identical, there is nothing to
2533 update. */
2534 if (old_type == new_type)
2535 return;
2537 /* Otherwise, first handle the simple case. */
2538 if (TREE_CODE (new_type) != UNCONSTRAINED_ARRAY_TYPE)
2540 TYPE_POINTER_TO (new_type) = ptr;
2541 TYPE_REFERENCE_TO (new_type) = ref;
2543 for (; ptr; ptr = TYPE_NEXT_PTR_TO (ptr))
2544 for (ptr1 = TYPE_MAIN_VARIANT (ptr); ptr1;
2545 ptr1 = TYPE_NEXT_VARIANT (ptr1))
2546 TREE_TYPE (ptr1) = new_type;
2548 for (; ref; ref = TYPE_NEXT_REF_TO (ref))
2549 for (ref1 = TYPE_MAIN_VARIANT (ref); ref1;
2550 ref1 = TYPE_NEXT_VARIANT (ref1))
2551 TREE_TYPE (ref1) = new_type;
2554 /* Now deal with the unconstrained array case. In this case the "pointer"
2555 is actually a RECORD_TYPE where the types of both fields are
2556 pointers to void. In that case, copy the field list from the
2557 old type to the new one and update the fields' context. */
2558 else if (TREE_CODE (ptr) != RECORD_TYPE || !TYPE_IS_FAT_POINTER_P (ptr))
2559 gcc_unreachable ();
2561 else
2563 tree new_obj_rec = TYPE_OBJECT_RECORD_TYPE (new_type);
2564 tree ptr_temp_type;
2565 tree new_ref;
2566 tree var;
2568 SET_DECL_ORIGINAL_FIELD (TYPE_FIELDS (ptr),
2569 TYPE_FIELDS (TYPE_POINTER_TO (new_type)));
2570 SET_DECL_ORIGINAL_FIELD (TREE_CHAIN (TYPE_FIELDS (ptr)),
2571 TREE_CHAIN (TYPE_FIELDS
2572 (TYPE_POINTER_TO (new_type))));
2574 TYPE_FIELDS (ptr) = TYPE_FIELDS (TYPE_POINTER_TO (new_type));
2575 DECL_CONTEXT (TYPE_FIELDS (ptr)) = ptr;
2576 DECL_CONTEXT (TREE_CHAIN (TYPE_FIELDS (ptr))) = ptr;
2578 /* Rework the PLACEHOLDER_EXPR inside the reference to the
2579 template bounds.
2581 ??? This is now the only use of gnat_substitute_in_type, which
2582 is now a very "heavy" routine to do this, so it should be replaced
2583 at some point. */
2584 ptr_temp_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (ptr)));
2585 new_ref = build3 (COMPONENT_REF, ptr_temp_type,
2586 build0 (PLACEHOLDER_EXPR, ptr),
2587 TREE_CHAIN (TYPE_FIELDS (ptr)), NULL_TREE);
2589 update_pointer_to
2590 (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))),
2591 gnat_substitute_in_type (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))),
2592 TREE_CHAIN (TYPE_FIELDS (ptr)), new_ref));
2594 for (var = TYPE_MAIN_VARIANT (ptr); var; var = TYPE_NEXT_VARIANT (var))
2595 SET_TYPE_UNCONSTRAINED_ARRAY (var, new_type);
2597 TYPE_POINTER_TO (new_type) = TYPE_REFERENCE_TO (new_type)
2598 = TREE_TYPE (new_type) = ptr;
2600 /* Now handle updating the allocation record, what the thin pointer
2601 points to. Update all pointers from the old record into the new
2602 one, update the types of the fields, and recompute the size. */
2604 update_pointer_to (TYPE_OBJECT_RECORD_TYPE (old_type), new_obj_rec);
2606 TREE_TYPE (TYPE_FIELDS (new_obj_rec)) = TREE_TYPE (ptr_temp_type);
2607 TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2608 = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr)));
2609 DECL_SIZE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2610 = TYPE_SIZE (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))));
2611 DECL_SIZE_UNIT (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2612 = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))));
2614 TYPE_SIZE (new_obj_rec)
2615 = size_binop (PLUS_EXPR,
2616 DECL_SIZE (TYPE_FIELDS (new_obj_rec)),
2617 DECL_SIZE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec))));
2618 TYPE_SIZE_UNIT (new_obj_rec)
2619 = size_binop (PLUS_EXPR,
2620 DECL_SIZE_UNIT (TYPE_FIELDS (new_obj_rec)),
2621 DECL_SIZE_UNIT (TREE_CHAIN (TYPE_FIELDS (new_obj_rec))));
2622 rest_of_type_compilation (ptr, global_bindings_p ());
2626 /* Convert a pointer to a constrained array into a pointer to a fat
2627 pointer. This involves making or finding a template. */
2629 static tree
2630 convert_to_fat_pointer (tree type, tree expr)
2632 tree template_type = TREE_TYPE (TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (type))));
2633 tree template, template_addr;
2634 tree etype = TREE_TYPE (expr);
2636 /* If EXPR is a constant of zero, we make a fat pointer that has a null
2637 pointer to the template and array. */
2638 if (integer_zerop (expr))
2639 return
2640 gnat_build_constructor
2641 (type,
2642 tree_cons (TYPE_FIELDS (type),
2643 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
2644 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2645 convert (build_pointer_type (template_type),
2646 expr),
2647 NULL_TREE)));
2649 /* If EXPR is a thin pointer, make the template and data from the record. */
2651 else if (TYPE_THIN_POINTER_P (etype))
2653 tree fields = TYPE_FIELDS (TREE_TYPE (etype));
2655 expr = save_expr (expr);
2656 if (TREE_CODE (expr) == ADDR_EXPR)
2657 expr = TREE_OPERAND (expr, 0);
2658 else
2659 expr = build1 (INDIRECT_REF, TREE_TYPE (etype), expr);
2661 template = build_component_ref (expr, NULL_TREE, fields, false);
2662 expr = build_unary_op (ADDR_EXPR, NULL_TREE,
2663 build_component_ref (expr, NULL_TREE,
2664 TREE_CHAIN (fields), false));
2666 else
2667 /* Otherwise, build the constructor for the template. */
2668 template = build_template (template_type, TREE_TYPE (etype), expr);
2670 template_addr = build_unary_op (ADDR_EXPR, NULL_TREE, template);
2672 /* The result is a CONSTRUCTOR for the fat pointer.
2674 If expr is an argument of a foreign convention subprogram, the type it
2675 points to is directly the component type. In this case, the expression
2676 type may not match the corresponding FIELD_DECL type at this point, so we
2677 call "convert" here to fix that up if necessary. This type consistency is
2678 required, for instance because it ensures that possible later folding of
2679 component_refs against this constructor always yields something of the
2680 same type as the initial reference.
2682 Note that the call to "build_template" above is still fine, because it
2683 will only refer to the provided template_type in this case. */
2684 return
2685 gnat_build_constructor
2686 (type, tree_cons (TYPE_FIELDS (type),
2687 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
2688 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2689 template_addr, NULL_TREE)));
2692 /* Convert to a thin pointer type, TYPE. The only thing we know how to convert
2693 is something that is a fat pointer, so convert to it first if it EXPR
2694 is not already a fat pointer. */
2696 static tree
2697 convert_to_thin_pointer (tree type, tree expr)
2699 if (!TYPE_FAT_POINTER_P (TREE_TYPE (expr)))
2700 expr
2701 = convert_to_fat_pointer
2702 (TREE_TYPE (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type))), expr);
2704 /* We get the pointer to the data and use a NOP_EXPR to make it the
2705 proper GCC type. */
2706 expr = build_component_ref (expr, NULL_TREE, TYPE_FIELDS (TREE_TYPE (expr)),
2707 false);
2708 expr = build1 (NOP_EXPR, type, expr);
2710 return expr;
2713 /* Create an expression whose value is that of EXPR,
2714 converted to type TYPE. The TREE_TYPE of the value
2715 is always TYPE. This function implements all reasonable
2716 conversions; callers should filter out those that are
2717 not permitted by the language being compiled. */
2719 tree
2720 convert (tree type, tree expr)
2722 enum tree_code code = TREE_CODE (type);
2723 tree etype = TREE_TYPE (expr);
2724 enum tree_code ecode = TREE_CODE (etype);
2725 tree tem;
2727 /* If EXPR is already the right type, we are done. */
2728 if (type == etype)
2729 return expr;
2731 /* If the input type has padding, remove it by doing a component reference
2732 to the field. If the output type has padding, make a constructor
2733 to build the record. If both input and output have padding and are
2734 of variable size, do this as an unchecked conversion. */
2735 else if (ecode == RECORD_TYPE && code == RECORD_TYPE
2736 && TYPE_IS_PADDING_P (type) && TYPE_IS_PADDING_P (etype)
2737 && (!TREE_CONSTANT (TYPE_SIZE (type))
2738 || !TREE_CONSTANT (TYPE_SIZE (etype))))
2740 else if (ecode == RECORD_TYPE && TYPE_IS_PADDING_P (etype))
2742 /* If we have just converted to this padded type, just get
2743 the inner expression. */
2744 if (TREE_CODE (expr) == CONSTRUCTOR
2745 && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (expr))
2746 && VEC_index (constructor_elt, CONSTRUCTOR_ELTS (expr), 0)->index
2747 == TYPE_FIELDS (etype))
2748 return VEC_index (constructor_elt, CONSTRUCTOR_ELTS (expr), 0)->value;
2749 else
2750 return convert (type,
2751 build_component_ref (expr, NULL_TREE,
2752 TYPE_FIELDS (etype), false));
2754 else if (code == RECORD_TYPE && TYPE_IS_PADDING_P (type))
2756 /* If we previously converted from another type and our type is
2757 of variable size, remove the conversion to avoid the need for
2758 variable-size temporaries. */
2759 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
2760 && !TREE_CONSTANT (TYPE_SIZE (type)))
2761 expr = TREE_OPERAND (expr, 0);
2763 /* If we are just removing the padding from expr, convert the original
2764 object if we have variable size. That will avoid the need
2765 for some variable-size temporaries. */
2766 if (TREE_CODE (expr) == COMPONENT_REF
2767 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE
2768 && TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (expr, 0)))
2769 && !TREE_CONSTANT (TYPE_SIZE (type)))
2770 return convert (type, TREE_OPERAND (expr, 0));
2772 /* If the result type is a padded type with a self-referentially-sized
2773 field and the expression type is a record, do this as an
2774 unchecked conversion. */
2775 else if (TREE_CODE (etype) == RECORD_TYPE
2776 && CONTAINS_PLACEHOLDER_P (DECL_SIZE (TYPE_FIELDS (type))))
2777 return unchecked_convert (type, expr, false);
2779 else
2780 return
2781 gnat_build_constructor (type,
2782 tree_cons (TYPE_FIELDS (type),
2783 convert (TREE_TYPE
2784 (TYPE_FIELDS (type)),
2785 expr),
2786 NULL_TREE));
2789 /* If the input is a biased type, adjust first. */
2790 if (ecode == INTEGER_TYPE && TYPE_BIASED_REPRESENTATION_P (etype))
2791 return convert (type, fold (build2 (PLUS_EXPR, TREE_TYPE (etype),
2792 fold_convert (TREE_TYPE (etype),
2793 expr),
2794 TYPE_MIN_VALUE (etype))));
2796 /* If the input is a justified modular type, we need to extract the actual
2797 object before converting it to any other type with the exceptions of an
2798 unconstrained array or of a mere type variant. It is useful to avoid the
2799 extraction and conversion in the type variant case because it could end
2800 up replacing a VAR_DECL expr by a constructor and we might be about the
2801 take the address of the result. */
2802 if (ecode == RECORD_TYPE && TYPE_JUSTIFIED_MODULAR_P (etype)
2803 && code != UNCONSTRAINED_ARRAY_TYPE
2804 && TYPE_MAIN_VARIANT (type) != TYPE_MAIN_VARIANT (etype))
2805 return convert (type, build_component_ref (expr, NULL_TREE,
2806 TYPE_FIELDS (etype), false));
2808 /* If converting to a type that contains a template, convert to the data
2809 type and then build the template. */
2810 if (code == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (type))
2812 tree obj_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (type)));
2814 /* If the source already has a template, get a reference to the
2815 associated array only, as we are going to rebuild a template
2816 for the target type anyway. */
2817 expr = maybe_unconstrained_array (expr);
2819 return
2820 gnat_build_constructor
2821 (type,
2822 tree_cons (TYPE_FIELDS (type),
2823 build_template (TREE_TYPE (TYPE_FIELDS (type)),
2824 obj_type, NULL_TREE),
2825 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2826 convert (obj_type, expr), NULL_TREE)));
2829 /* There are some special cases of expressions that we process
2830 specially. */
2831 switch (TREE_CODE (expr))
2833 case ERROR_MARK:
2834 return expr;
2836 case NULL_EXPR:
2837 /* Just set its type here. For TRANSFORM_EXPR, we will do the actual
2838 conversion in gnat_expand_expr. NULL_EXPR does not represent
2839 and actual value, so no conversion is needed. */
2840 expr = copy_node (expr);
2841 TREE_TYPE (expr) = type;
2842 return expr;
2844 case STRING_CST:
2845 /* If we are converting a STRING_CST to another constrained array type,
2846 just make a new one in the proper type. */
2847 if (code == ecode && AGGREGATE_TYPE_P (etype)
2848 && !(TREE_CODE (TYPE_SIZE (etype)) == INTEGER_CST
2849 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
2851 expr = copy_node (expr);
2852 TREE_TYPE (expr) = type;
2853 return expr;
2855 break;
2857 case UNCONSTRAINED_ARRAY_REF:
2858 /* Convert this to the type of the inner array by getting the address of
2859 the array from the template. */
2860 expr = build_unary_op (INDIRECT_REF, NULL_TREE,
2861 build_component_ref (TREE_OPERAND (expr, 0),
2862 get_identifier ("P_ARRAY"),
2863 NULL_TREE, false));
2864 etype = TREE_TYPE (expr);
2865 ecode = TREE_CODE (etype);
2866 break;
2868 case VIEW_CONVERT_EXPR:
2870 /* GCC 4.x is very sensitive to type consistency overall, and view
2871 conversions thus are very frequent. Eventhough just "convert"ing
2872 the inner operand to the output type is fine in most cases, it
2873 might expose unexpected input/output type mismatches in special
2874 circumstances so we avoid such recursive calls when we can. */
2876 tree op0 = TREE_OPERAND (expr, 0);
2878 /* If we are converting back to the original type, we can just
2879 lift the input conversion. This is a common occurence with
2880 switches back-and-forth amongst type variants. */
2881 if (type == TREE_TYPE (op0))
2882 return op0;
2884 /* Otherwise, if we're converting between two aggregate types, we
2885 might be allowed to substitute the VIEW_CONVERT target type in
2886 place or to just convert the inner expression. */
2887 if (AGGREGATE_TYPE_P (type) && AGGREGATE_TYPE_P (etype))
2889 /* If we are converting between type variants, we can just
2890 substitute the VIEW_CONVERT in place. */
2891 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype))
2892 return build1 (VIEW_CONVERT_EXPR, type, op0);
2894 /* Otherwise, we may just bypass the input view conversion unless
2895 one of the types is a fat pointer, or we're converting to an
2896 unchecked union type. Both are handled by specialized code
2897 below and the latter relies on exact type matching. */
2898 else if (!TYPE_FAT_POINTER_P (type) && !TYPE_FAT_POINTER_P (etype)
2899 && !(code == UNION_TYPE && TYPE_UNCHECKED_UNION_P (type)))
2900 return convert (type, op0);
2903 break;
2905 case INDIRECT_REF:
2906 /* If both types are record types, just convert the pointer and
2907 make a new INDIRECT_REF.
2909 ??? Disable this for now since it causes problems with the
2910 code in build_binary_op for MODIFY_EXPR which wants to
2911 strip off conversions. But that code really is a mess and
2912 we need to do this a much better way some time. */
2913 if (0
2914 && (TREE_CODE (type) == RECORD_TYPE
2915 || TREE_CODE (type) == UNION_TYPE)
2916 && (TREE_CODE (etype) == RECORD_TYPE
2917 || TREE_CODE (etype) == UNION_TYPE)
2918 && !TYPE_FAT_POINTER_P (type) && !TYPE_FAT_POINTER_P (etype))
2919 return build_unary_op (INDIRECT_REF, NULL_TREE,
2920 convert (build_pointer_type (type),
2921 TREE_OPERAND (expr, 0)));
2922 break;
2924 default:
2925 break;
2928 /* Check for converting to a pointer to an unconstrained array. */
2929 if (TYPE_FAT_POINTER_P (type) && !TYPE_FAT_POINTER_P (etype))
2930 return convert_to_fat_pointer (type, expr);
2932 /* If we're converting between two aggregate types that have the same main
2933 variant, just make a VIEW_CONVER_EXPR. */
2934 else if (AGGREGATE_TYPE_P (type)
2935 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype))
2936 return build1 (VIEW_CONVERT_EXPR, type, expr);
2938 /* In all other cases of related types, make a NOP_EXPR. */
2939 else if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype)
2940 || (code == INTEGER_CST && ecode == INTEGER_CST
2941 && (type == TREE_TYPE (etype) || etype == TREE_TYPE (type))))
2942 return fold_convert (type, expr);
2944 switch (code)
2946 case VOID_TYPE:
2947 return build1 (CONVERT_EXPR, type, expr);
2949 case BOOLEAN_TYPE:
2950 return fold_convert (type, gnat_truthvalue_conversion (expr));
2952 case INTEGER_TYPE:
2953 if (TYPE_HAS_ACTUAL_BOUNDS_P (type)
2954 && (ecode == ARRAY_TYPE || ecode == UNCONSTRAINED_ARRAY_TYPE
2955 || (ecode == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (etype))))
2956 return unchecked_convert (type, expr, false);
2957 else if (TYPE_BIASED_REPRESENTATION_P (type))
2958 return fold_convert (type,
2959 fold_build2 (MINUS_EXPR, TREE_TYPE (type),
2960 convert (TREE_TYPE (type), expr),
2961 TYPE_MIN_VALUE (type)));
2963 /* ... fall through ... */
2965 case ENUMERAL_TYPE:
2966 return fold (convert_to_integer (type, expr));
2968 case POINTER_TYPE:
2969 case REFERENCE_TYPE:
2970 /* If converting between two pointers to records denoting
2971 both a template and type, adjust if needed to account
2972 for any differing offsets, since one might be negative. */
2973 if (TYPE_THIN_POINTER_P (etype) && TYPE_THIN_POINTER_P (type))
2975 tree bit_diff
2976 = size_diffop (bit_position (TYPE_FIELDS (TREE_TYPE (etype))),
2977 bit_position (TYPE_FIELDS (TREE_TYPE (type))));
2978 tree byte_diff = size_binop (CEIL_DIV_EXPR, bit_diff,
2979 sbitsize_int (BITS_PER_UNIT));
2981 expr = build1 (NOP_EXPR, type, expr);
2982 TREE_CONSTANT (expr) = TREE_CONSTANT (TREE_OPERAND (expr, 0));
2983 if (integer_zerop (byte_diff))
2984 return expr;
2986 return build_binary_op (PLUS_EXPR, type, expr,
2987 fold (convert_to_pointer (type, byte_diff)));
2990 /* If converting to a thin pointer, handle specially. */
2991 if (TYPE_THIN_POINTER_P (type)
2992 && TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type)))
2993 return convert_to_thin_pointer (type, expr);
2995 /* If converting fat pointer to normal pointer, get the pointer to the
2996 array and then convert it. */
2997 else if (TYPE_FAT_POINTER_P (etype))
2998 expr = build_component_ref (expr, get_identifier ("P_ARRAY"),
2999 NULL_TREE, false);
3001 return fold (convert_to_pointer (type, expr));
3003 case REAL_TYPE:
3004 return fold (convert_to_real (type, expr));
3006 case RECORD_TYPE:
3007 if (TYPE_JUSTIFIED_MODULAR_P (type) && !AGGREGATE_TYPE_P (etype))
3008 return
3009 gnat_build_constructor
3010 (type, tree_cons (TYPE_FIELDS (type),
3011 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
3012 NULL_TREE));
3014 /* ... fall through ... */
3016 case ARRAY_TYPE:
3017 /* In these cases, assume the front-end has validated the conversion.
3018 If the conversion is valid, it will be a bit-wise conversion, so
3019 it can be viewed as an unchecked conversion. */
3020 return unchecked_convert (type, expr, false);
3022 case UNION_TYPE:
3023 /* For unchecked unions, just validate that the type is indeed that of
3024 a field of the type. Then make the simple conversion. */
3025 if (TYPE_UNCHECKED_UNION_P (type))
3027 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
3029 if (TREE_TYPE (tem) == etype)
3030 return build1 (CONVERT_EXPR, type, expr);
3031 else if (TREE_CODE (TREE_TYPE (tem)) == RECORD_TYPE
3032 && (TYPE_JUSTIFIED_MODULAR_P (TREE_TYPE (tem))
3033 || TYPE_IS_PADDING_P (TREE_TYPE (tem)))
3034 && TREE_TYPE (TYPE_FIELDS (TREE_TYPE (tem))) == etype)
3035 return build1 (CONVERT_EXPR, type,
3036 convert (TREE_TYPE (tem), expr));
3039 gcc_unreachable ();
3041 else
3042 /* Otherwise, this is a conversion between a tagged type and some
3043 subtype, which we have to mark as a UNION_TYPE because of
3044 overlapping fields. */
3045 return unchecked_convert (type, expr, false);
3047 case UNCONSTRAINED_ARRAY_TYPE:
3048 /* If EXPR is a constrained array, take its address, convert it to a
3049 fat pointer, and then dereference it. Likewise if EXPR is a
3050 record containing both a template and a constrained array.
3051 Note that a record representing a justified modular type
3052 always represents a packed constrained array. */
3053 if (ecode == ARRAY_TYPE
3054 || (ecode == INTEGER_TYPE && TYPE_HAS_ACTUAL_BOUNDS_P (etype))
3055 || (ecode == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (etype))
3056 || (ecode == RECORD_TYPE && TYPE_JUSTIFIED_MODULAR_P (etype)))
3057 return
3058 build_unary_op
3059 (INDIRECT_REF, NULL_TREE,
3060 convert_to_fat_pointer (TREE_TYPE (type),
3061 build_unary_op (ADDR_EXPR,
3062 NULL_TREE, expr)));
3064 /* Do something very similar for converting one unconstrained
3065 array to another. */
3066 else if (ecode == UNCONSTRAINED_ARRAY_TYPE)
3067 return
3068 build_unary_op (INDIRECT_REF, NULL_TREE,
3069 convert (TREE_TYPE (type),
3070 build_unary_op (ADDR_EXPR,
3071 NULL_TREE, expr)));
3072 else
3073 gcc_unreachable ();
3075 case COMPLEX_TYPE:
3076 return fold (convert_to_complex (type, expr));
3078 default:
3079 gcc_unreachable ();
3083 /* Remove all conversions that are done in EXP. This includes converting
3084 from a padded type or to a justified modular type. If TRUE_ADDRESS
3085 is true, always return the address of the containing object even if
3086 the address is not bit-aligned. */
3088 tree
3089 remove_conversions (tree exp, bool true_address)
3091 switch (TREE_CODE (exp))
3093 case CONSTRUCTOR:
3094 if (true_address
3095 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
3096 && TYPE_JUSTIFIED_MODULAR_P (TREE_TYPE (exp)))
3097 return
3098 remove_conversions (VEC_index (constructor_elt,
3099 CONSTRUCTOR_ELTS (exp), 0)->value,
3100 true);
3101 break;
3103 case COMPONENT_REF:
3104 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == RECORD_TYPE
3105 && TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
3106 return remove_conversions (TREE_OPERAND (exp, 0), true_address);
3107 break;
3109 case VIEW_CONVERT_EXPR: case NON_LVALUE_EXPR:
3110 case NOP_EXPR: case CONVERT_EXPR:
3111 return remove_conversions (TREE_OPERAND (exp, 0), true_address);
3113 default:
3114 break;
3117 return exp;
3120 /* If EXP's type is an UNCONSTRAINED_ARRAY_TYPE, return an expression that
3121 refers to the underlying array. If its type has TYPE_CONTAINS_TEMPLATE_P,
3122 likewise return an expression pointing to the underlying array. */
3124 tree
3125 maybe_unconstrained_array (tree exp)
3127 enum tree_code code = TREE_CODE (exp);
3128 tree new;
3130 switch (TREE_CODE (TREE_TYPE (exp)))
3132 case UNCONSTRAINED_ARRAY_TYPE:
3133 if (code == UNCONSTRAINED_ARRAY_REF)
3136 = build_unary_op (INDIRECT_REF, NULL_TREE,
3137 build_component_ref (TREE_OPERAND (exp, 0),
3138 get_identifier ("P_ARRAY"),
3139 NULL_TREE, false));
3140 TREE_READONLY (new) = TREE_STATIC (new) = TREE_READONLY (exp);
3141 return new;
3144 else if (code == NULL_EXPR)
3145 return build1 (NULL_EXPR,
3146 TREE_TYPE (TREE_TYPE (TYPE_FIELDS
3147 (TREE_TYPE (TREE_TYPE (exp))))),
3148 TREE_OPERAND (exp, 0));
3150 case RECORD_TYPE:
3151 /* If this is a padded type, convert to the unpadded type and see if
3152 it contains a template. */
3153 if (TYPE_IS_PADDING_P (TREE_TYPE (exp)))
3155 new = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (exp))), exp);
3156 if (TREE_CODE (TREE_TYPE (new)) == RECORD_TYPE
3157 && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (new)))
3158 return
3159 build_component_ref (new, NULL_TREE,
3160 TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (new))),
3163 else if (TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (exp)))
3164 return
3165 build_component_ref (exp, NULL_TREE,
3166 TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (exp))), 0);
3167 break;
3169 default:
3170 break;
3173 return exp;
3176 /* Return an expression that does an unchecked conversion of EXPR to TYPE.
3177 If NOTRUNC_P is true, truncation operations should be suppressed. */
3179 tree
3180 unchecked_convert (tree type, tree expr, bool notrunc_p)
3182 tree etype = TREE_TYPE (expr);
3184 /* If the expression is already the right type, we are done. */
3185 if (etype == type)
3186 return expr;
3188 /* If both types types are integral just do a normal conversion.
3189 Likewise for a conversion to an unconstrained array. */
3190 if ((((INTEGRAL_TYPE_P (type)
3191 && !(TREE_CODE (type) == INTEGER_TYPE
3192 && TYPE_VAX_FLOATING_POINT_P (type)))
3193 || (POINTER_TYPE_P (type) && ! TYPE_THIN_POINTER_P (type))
3194 || (TREE_CODE (type) == RECORD_TYPE
3195 && TYPE_JUSTIFIED_MODULAR_P (type)))
3196 && ((INTEGRAL_TYPE_P (etype)
3197 && !(TREE_CODE (etype) == INTEGER_TYPE
3198 && TYPE_VAX_FLOATING_POINT_P (etype)))
3199 || (POINTER_TYPE_P (etype) && !TYPE_THIN_POINTER_P (etype))
3200 || (TREE_CODE (etype) == RECORD_TYPE
3201 && TYPE_JUSTIFIED_MODULAR_P (etype))))
3202 || TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
3204 tree rtype = type;
3206 if (TREE_CODE (etype) == INTEGER_TYPE
3207 && TYPE_BIASED_REPRESENTATION_P (etype))
3209 tree ntype = copy_type (etype);
3211 TYPE_BIASED_REPRESENTATION_P (ntype) = 0;
3212 TYPE_MAIN_VARIANT (ntype) = ntype;
3213 expr = build1 (NOP_EXPR, ntype, expr);
3216 if (TREE_CODE (type) == INTEGER_TYPE
3217 && TYPE_BIASED_REPRESENTATION_P (type))
3219 rtype = copy_type (type);
3220 TYPE_BIASED_REPRESENTATION_P (rtype) = 0;
3221 TYPE_MAIN_VARIANT (rtype) = rtype;
3224 expr = convert (rtype, expr);
3225 if (type != rtype)
3226 expr = build1 (NOP_EXPR, type, expr);
3229 /* If we are converting TO an integral type whose precision is not the
3230 same as its size, first unchecked convert to a record that contains
3231 an object of the output type. Then extract the field. */
3232 else if (INTEGRAL_TYPE_P (type) && TYPE_RM_SIZE (type)
3233 && 0 != compare_tree_int (TYPE_RM_SIZE (type),
3234 GET_MODE_BITSIZE (TYPE_MODE (type))))
3236 tree rec_type = make_node (RECORD_TYPE);
3237 tree field = create_field_decl (get_identifier ("OBJ"), type,
3238 rec_type, 1, 0, 0, 0);
3240 TYPE_FIELDS (rec_type) = field;
3241 layout_type (rec_type);
3243 expr = unchecked_convert (rec_type, expr, notrunc_p);
3244 expr = build_component_ref (expr, NULL_TREE, field, 0);
3247 /* Similarly for integral input type whose precision is not equal to its
3248 size. */
3249 else if (INTEGRAL_TYPE_P (etype) && TYPE_RM_SIZE (etype)
3250 && 0 != compare_tree_int (TYPE_RM_SIZE (etype),
3251 GET_MODE_BITSIZE (TYPE_MODE (etype))))
3253 tree rec_type = make_node (RECORD_TYPE);
3254 tree field
3255 = create_field_decl (get_identifier ("OBJ"), etype, rec_type,
3256 1, 0, 0, 0);
3258 TYPE_FIELDS (rec_type) = field;
3259 layout_type (rec_type);
3261 expr = gnat_build_constructor (rec_type, build_tree_list (field, expr));
3262 expr = unchecked_convert (type, expr, notrunc_p);
3265 /* We have a special case when we are converting between two
3266 unconstrained array types. In that case, take the address,
3267 convert the fat pointer types, and dereference. */
3268 else if (TREE_CODE (etype) == UNCONSTRAINED_ARRAY_TYPE
3269 && TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
3270 expr = build_unary_op (INDIRECT_REF, NULL_TREE,
3271 build1 (VIEW_CONVERT_EXPR, TREE_TYPE (type),
3272 build_unary_op (ADDR_EXPR, NULL_TREE,
3273 expr)));
3274 else
3276 expr = maybe_unconstrained_array (expr);
3278 /* There's no point in doing two unchecked conversions in a row. */
3279 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR)
3280 expr = TREE_OPERAND (expr, 0);
3282 etype = TREE_TYPE (expr);
3283 expr = build1 (VIEW_CONVERT_EXPR, type, expr);
3286 /* If the result is an integral type whose size is not equal to
3287 the size of the underlying machine type, sign- or zero-extend
3288 the result. We need not do this in the case where the input is
3289 an integral type of the same precision and signedness or if the output
3290 is a biased type or if both the input and output are unsigned. */
3291 if (!notrunc_p
3292 && INTEGRAL_TYPE_P (type) && TYPE_RM_SIZE (type)
3293 && !(TREE_CODE (type) == INTEGER_TYPE
3294 && TYPE_BIASED_REPRESENTATION_P (type))
3295 && 0 != compare_tree_int (TYPE_RM_SIZE (type),
3296 GET_MODE_BITSIZE (TYPE_MODE (type)))
3297 && !(INTEGRAL_TYPE_P (etype)
3298 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (etype)
3299 && operand_equal_p (TYPE_RM_SIZE (type),
3300 (TYPE_RM_SIZE (etype) != 0
3301 ? TYPE_RM_SIZE (etype) : TYPE_SIZE (etype)),
3303 && !(TYPE_UNSIGNED (type) && TYPE_UNSIGNED (etype)))
3305 tree base_type = gnat_type_for_mode (TYPE_MODE (type),
3306 TYPE_UNSIGNED (type));
3307 tree shift_expr
3308 = convert (base_type,
3309 size_binop (MINUS_EXPR,
3310 bitsize_int
3311 (GET_MODE_BITSIZE (TYPE_MODE (type))),
3312 TYPE_RM_SIZE (type)));
3313 expr
3314 = convert (type,
3315 build_binary_op (RSHIFT_EXPR, base_type,
3316 build_binary_op (LSHIFT_EXPR, base_type,
3317 convert (base_type, expr),
3318 shift_expr),
3319 shift_expr));
3322 /* An unchecked conversion should never raise Constraint_Error. The code
3323 below assumes that GCC's conversion routines overflow the same way that
3324 the underlying hardware does. This is probably true. In the rare case
3325 when it is false, we can rely on the fact that such conversions are
3326 erroneous anyway. */
3327 if (TREE_CODE (expr) == INTEGER_CST)
3328 TREE_OVERFLOW (expr) = TREE_CONSTANT_OVERFLOW (expr) = 0;
3330 /* If the sizes of the types differ and this is an VIEW_CONVERT_EXPR,
3331 show no longer constant. */
3332 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
3333 && !operand_equal_p (TYPE_SIZE_UNIT (type), TYPE_SIZE_UNIT (etype),
3334 OEP_ONLY_CONST))
3335 TREE_CONSTANT (expr) = 0;
3337 return expr;
3340 /* Search the chain of currently reachable declarations for a builtin
3341 FUNCTION_DECL node corresponding to function NAME (an IDENTIFIER_NODE).
3342 Return the first node found, if any, or NULL_TREE otherwise. */
3344 tree
3345 builtin_decl_for (tree name __attribute__ ((unused)))
3347 /* ??? not clear yet how to implement this function in tree-ssa, so
3348 return NULL_TREE for now */
3349 return NULL_TREE;
3352 #include "gt-ada-utils.h"
3353 #include "gtype-ada.h"