Merge from mainline
[official-gcc.git] / gcc / ada / utils.c
blob2bfafce9b51fbff556bc23c3e5152b242b746dcc
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 && code == MIN_EXPR && TREE_OVERFLOW (rhs))
2035 return lhs;
2036 else if (max_p && code == MIN_EXPR && TREE_OVERFLOW (lhs))
2037 return rhs;
2038 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
2039 && ((TREE_CONSTANT (lhs) && TREE_OVERFLOW (lhs))
2040 || operand_equal_p (lhs, TYPE_MAX_VALUE (type), 0))
2041 && !TREE_CONSTANT (rhs))
2042 return lhs;
2043 else
2044 return fold (build2 (code, type, lhs, rhs));
2047 case 3:
2048 if (code == SAVE_EXPR)
2049 return exp;
2050 else if (code == COND_EXPR)
2051 return fold (build2 (max_p ? MAX_EXPR : MIN_EXPR, type,
2052 max_size (TREE_OPERAND (exp, 1), max_p),
2053 max_size (TREE_OPERAND (exp, 2), max_p)));
2054 else if (code == CALL_EXPR && TREE_OPERAND (exp, 1))
2055 return build3 (CALL_EXPR, type, TREE_OPERAND (exp, 0),
2056 max_size (TREE_OPERAND (exp, 1), max_p), NULL);
2059 /* Other tree classes cannot happen. */
2060 default:
2061 break;
2064 gcc_unreachable ();
2067 /* Build a template of type TEMPLATE_TYPE from the array bounds of ARRAY_TYPE.
2068 EXPR is an expression that we can use to locate any PLACEHOLDER_EXPRs.
2069 Return a constructor for the template. */
2071 tree
2072 build_template (tree template_type, tree array_type, tree expr)
2074 tree template_elts = NULL_TREE;
2075 tree bound_list = NULL_TREE;
2076 tree field;
2078 if (TREE_CODE (array_type) == RECORD_TYPE
2079 && (TYPE_IS_PADDING_P (array_type)
2080 || TYPE_JUSTIFIED_MODULAR_P (array_type)))
2081 array_type = TREE_TYPE (TYPE_FIELDS (array_type));
2083 if (TREE_CODE (array_type) == ARRAY_TYPE
2084 || (TREE_CODE (array_type) == INTEGER_TYPE
2085 && TYPE_HAS_ACTUAL_BOUNDS_P (array_type)))
2086 bound_list = TYPE_ACTUAL_BOUNDS (array_type);
2088 /* First make the list for a CONSTRUCTOR for the template. Go down the
2089 field list of the template instead of the type chain because this
2090 array might be an Ada array of arrays and we can't tell where the
2091 nested arrays stop being the underlying object. */
2093 for (field = TYPE_FIELDS (template_type); field;
2094 (bound_list
2095 ? (bound_list = TREE_CHAIN (bound_list))
2096 : (array_type = TREE_TYPE (array_type))),
2097 field = TREE_CHAIN (TREE_CHAIN (field)))
2099 tree bounds, min, max;
2101 /* If we have a bound list, get the bounds from there. Likewise
2102 for an ARRAY_TYPE. Otherwise, if expr is a PARM_DECL with
2103 DECL_BY_COMPONENT_PTR_P, use the bounds of the field in the template.
2104 This will give us a maximum range. */
2105 if (bound_list)
2106 bounds = TREE_VALUE (bound_list);
2107 else if (TREE_CODE (array_type) == ARRAY_TYPE)
2108 bounds = TYPE_INDEX_TYPE (TYPE_DOMAIN (array_type));
2109 else if (expr && TREE_CODE (expr) == PARM_DECL
2110 && DECL_BY_COMPONENT_PTR_P (expr))
2111 bounds = TREE_TYPE (field);
2112 else
2113 gcc_unreachable ();
2115 min = convert (TREE_TYPE (TREE_CHAIN (field)), TYPE_MIN_VALUE (bounds));
2116 max = convert (TREE_TYPE (field), TYPE_MAX_VALUE (bounds));
2118 /* If either MIN or MAX involve a PLACEHOLDER_EXPR, we must
2119 substitute it from OBJECT. */
2120 min = SUBSTITUTE_PLACEHOLDER_IN_EXPR (min, expr);
2121 max = SUBSTITUTE_PLACEHOLDER_IN_EXPR (max, expr);
2123 template_elts = tree_cons (TREE_CHAIN (field), max,
2124 tree_cons (field, min, template_elts));
2127 return gnat_build_constructor (template_type, nreverse (template_elts));
2130 /* Build a VMS descriptor from a Mechanism_Type, which must specify
2131 a descriptor type, and the GCC type of an object. Each FIELD_DECL
2132 in the type contains in its DECL_INITIAL the expression to use when
2133 a constructor is made for the type. GNAT_ENTITY is an entity used
2134 to print out an error message if the mechanism cannot be applied to
2135 an object of that type and also for the name. */
2137 tree
2138 build_vms_descriptor (tree type, Mechanism_Type mech, Entity_Id gnat_entity)
2140 tree record_type = make_node (RECORD_TYPE);
2141 tree field_list = 0;
2142 int class;
2143 int dtype = 0;
2144 tree inner_type;
2145 int ndim;
2146 int i;
2147 tree *idx_arr;
2148 tree tem;
2150 /* If TYPE is an unconstrained array, use the underlying array type. */
2151 if (TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
2152 type = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (type))));
2154 /* If this is an array, compute the number of dimensions in the array,
2155 get the index types, and point to the inner type. */
2156 if (TREE_CODE (type) != ARRAY_TYPE)
2157 ndim = 0;
2158 else
2159 for (ndim = 1, inner_type = type;
2160 TREE_CODE (TREE_TYPE (inner_type)) == ARRAY_TYPE
2161 && TYPE_MULTI_ARRAY_P (TREE_TYPE (inner_type));
2162 ndim++, inner_type = TREE_TYPE (inner_type))
2165 idx_arr = (tree *) alloca (ndim * sizeof (tree));
2167 if (mech != By_Descriptor_NCA
2168 && TREE_CODE (type) == ARRAY_TYPE && TYPE_CONVENTION_FORTRAN_P (type))
2169 for (i = ndim - 1, inner_type = type;
2170 i >= 0;
2171 i--, inner_type = TREE_TYPE (inner_type))
2172 idx_arr[i] = TYPE_DOMAIN (inner_type);
2173 else
2174 for (i = 0, inner_type = type;
2175 i < ndim;
2176 i++, inner_type = TREE_TYPE (inner_type))
2177 idx_arr[i] = TYPE_DOMAIN (inner_type);
2179 /* Now get the DTYPE value. */
2180 switch (TREE_CODE (type))
2182 case INTEGER_TYPE:
2183 case ENUMERAL_TYPE:
2184 if (TYPE_VAX_FLOATING_POINT_P (type))
2185 switch (tree_low_cst (TYPE_DIGITS_VALUE (type), 1))
2187 case 6:
2188 dtype = 10;
2189 break;
2190 case 9:
2191 dtype = 11;
2192 break;
2193 case 15:
2194 dtype = 27;
2195 break;
2197 else
2198 switch (GET_MODE_BITSIZE (TYPE_MODE (type)))
2200 case 8:
2201 dtype = TYPE_UNSIGNED (type) ? 2 : 6;
2202 break;
2203 case 16:
2204 dtype = TYPE_UNSIGNED (type) ? 3 : 7;
2205 break;
2206 case 32:
2207 dtype = TYPE_UNSIGNED (type) ? 4 : 8;
2208 break;
2209 case 64:
2210 dtype = TYPE_UNSIGNED (type) ? 5 : 9;
2211 break;
2212 case 128:
2213 dtype = TYPE_UNSIGNED (type) ? 25 : 26;
2214 break;
2216 break;
2218 case REAL_TYPE:
2219 dtype = GET_MODE_BITSIZE (TYPE_MODE (type)) == 32 ? 52 : 53;
2220 break;
2222 case COMPLEX_TYPE:
2223 if (TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE
2224 && TYPE_VAX_FLOATING_POINT_P (type))
2225 switch (tree_low_cst (TYPE_DIGITS_VALUE (type), 1))
2227 case 6:
2228 dtype = 12;
2229 break;
2230 case 9:
2231 dtype = 13;
2232 break;
2233 case 15:
2234 dtype = 29;
2236 else
2237 dtype = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))) == 32 ? 54: 55;
2238 break;
2240 case ARRAY_TYPE:
2241 dtype = 14;
2242 break;
2244 default:
2245 break;
2248 /* Get the CLASS value. */
2249 switch (mech)
2251 case By_Descriptor_A:
2252 class = 4;
2253 break;
2254 case By_Descriptor_NCA:
2255 class = 10;
2256 break;
2257 case By_Descriptor_SB:
2258 class = 15;
2259 break;
2260 default:
2261 class = 1;
2264 /* Make the type for a descriptor for VMS. The first four fields
2265 are the same for all types. */
2267 field_list
2268 = chainon (field_list,
2269 make_descriptor_field
2270 ("LENGTH", gnat_type_for_size (16, 1), record_type,
2271 size_in_bytes (mech == By_Descriptor_A ? inner_type : type)));
2273 field_list = chainon (field_list,
2274 make_descriptor_field ("DTYPE",
2275 gnat_type_for_size (8, 1),
2276 record_type, size_int (dtype)));
2277 field_list = chainon (field_list,
2278 make_descriptor_field ("CLASS",
2279 gnat_type_for_size (8, 1),
2280 record_type, size_int (class)));
2282 field_list
2283 = chainon (field_list,
2284 make_descriptor_field
2285 ("POINTER",
2286 build_pointer_type_for_mode (type, SImode, false), record_type,
2287 build1 (ADDR_EXPR,
2288 build_pointer_type_for_mode (type, SImode, false),
2289 build0 (PLACEHOLDER_EXPR, type))));
2291 switch (mech)
2293 case By_Descriptor:
2294 case By_Descriptor_S:
2295 break;
2297 case By_Descriptor_SB:
2298 field_list
2299 = chainon (field_list,
2300 make_descriptor_field
2301 ("SB_L1", gnat_type_for_size (32, 1), record_type,
2302 TREE_CODE (type) == ARRAY_TYPE
2303 ? TYPE_MIN_VALUE (TYPE_DOMAIN (type)) : size_zero_node));
2304 field_list
2305 = chainon (field_list,
2306 make_descriptor_field
2307 ("SB_L2", gnat_type_for_size (32, 1), record_type,
2308 TREE_CODE (type) == ARRAY_TYPE
2309 ? TYPE_MAX_VALUE (TYPE_DOMAIN (type)) : size_zero_node));
2310 break;
2312 case By_Descriptor_A:
2313 case By_Descriptor_NCA:
2314 field_list = chainon (field_list,
2315 make_descriptor_field ("SCALE",
2316 gnat_type_for_size (8, 1),
2317 record_type,
2318 size_zero_node));
2320 field_list = chainon (field_list,
2321 make_descriptor_field ("DIGITS",
2322 gnat_type_for_size (8, 1),
2323 record_type,
2324 size_zero_node));
2326 field_list
2327 = chainon (field_list,
2328 make_descriptor_field
2329 ("AFLAGS", gnat_type_for_size (8, 1), record_type,
2330 size_int (mech == By_Descriptor_NCA
2332 /* Set FL_COLUMN, FL_COEFF, and FL_BOUNDS. */
2333 : (TREE_CODE (type) == ARRAY_TYPE
2334 && TYPE_CONVENTION_FORTRAN_P (type)
2335 ? 224 : 192))));
2337 field_list = chainon (field_list,
2338 make_descriptor_field ("DIMCT",
2339 gnat_type_for_size (8, 1),
2340 record_type,
2341 size_int (ndim)));
2343 field_list = chainon (field_list,
2344 make_descriptor_field ("ARSIZE",
2345 gnat_type_for_size (32, 1),
2346 record_type,
2347 size_in_bytes (type)));
2349 /* Now build a pointer to the 0,0,0... element. */
2350 tem = build0 (PLACEHOLDER_EXPR, type);
2351 for (i = 0, inner_type = type; i < ndim;
2352 i++, inner_type = TREE_TYPE (inner_type))
2353 tem = build4 (ARRAY_REF, TREE_TYPE (inner_type), tem,
2354 convert (TYPE_DOMAIN (inner_type), size_zero_node),
2355 NULL_TREE, NULL_TREE);
2357 field_list
2358 = chainon (field_list,
2359 make_descriptor_field
2360 ("A0",
2361 build_pointer_type_for_mode (inner_type, SImode, false),
2362 record_type,
2363 build1 (ADDR_EXPR,
2364 build_pointer_type_for_mode (inner_type, SImode,
2365 false),
2366 tem)));
2368 /* Next come the addressing coefficients. */
2369 tem = size_int (1);
2370 for (i = 0; i < ndim; i++)
2372 char fname[3];
2373 tree idx_length
2374 = size_binop (MULT_EXPR, tem,
2375 size_binop (PLUS_EXPR,
2376 size_binop (MINUS_EXPR,
2377 TYPE_MAX_VALUE (idx_arr[i]),
2378 TYPE_MIN_VALUE (idx_arr[i])),
2379 size_int (1)));
2381 fname[0] = (mech == By_Descriptor_NCA ? 'S' : 'M');
2382 fname[1] = '0' + i, fname[2] = 0;
2383 field_list
2384 = chainon (field_list,
2385 make_descriptor_field (fname,
2386 gnat_type_for_size (32, 1),
2387 record_type, idx_length));
2389 if (mech == By_Descriptor_NCA)
2390 tem = idx_length;
2393 /* Finally here are the bounds. */
2394 for (i = 0; i < ndim; i++)
2396 char fname[3];
2398 fname[0] = 'L', fname[1] = '0' + i, fname[2] = 0;
2399 field_list
2400 = chainon (field_list,
2401 make_descriptor_field
2402 (fname, gnat_type_for_size (32, 1), record_type,
2403 TYPE_MIN_VALUE (idx_arr[i])));
2405 fname[0] = 'U';
2406 field_list
2407 = chainon (field_list,
2408 make_descriptor_field
2409 (fname, gnat_type_for_size (32, 1), record_type,
2410 TYPE_MAX_VALUE (idx_arr[i])));
2412 break;
2414 default:
2415 post_error ("unsupported descriptor type for &", gnat_entity);
2418 finish_record_type (record_type, field_list, false, true);
2419 create_type_decl (create_concat_name (gnat_entity, "DESC"), record_type,
2420 NULL, true, false, gnat_entity);
2422 return record_type;
2425 /* Utility routine for above code to make a field. */
2427 static tree
2428 make_descriptor_field (const char *name, tree type,
2429 tree rec_type, tree initial)
2431 tree field
2432 = create_field_decl (get_identifier (name), type, rec_type, 0, 0, 0, 0);
2434 DECL_INITIAL (field) = initial;
2435 return field;
2438 /* Build a type to be used to represent an aliased object whose nominal
2439 type is an unconstrained array. This consists of a RECORD_TYPE containing
2440 a field of TEMPLATE_TYPE and a field of OBJECT_TYPE, which is an
2441 ARRAY_TYPE. If ARRAY_TYPE is that of the unconstrained array, this
2442 is used to represent an arbitrary unconstrained object. Use NAME
2443 as the name of the record. */
2445 tree
2446 build_unc_object_type (tree template_type, tree object_type, tree name)
2448 tree type = make_node (RECORD_TYPE);
2449 tree template_field = create_field_decl (get_identifier ("BOUNDS"),
2450 template_type, type, 0, 0, 0, 1);
2451 tree array_field = create_field_decl (get_identifier ("ARRAY"), object_type,
2452 type, 0, 0, 0, 1);
2454 TYPE_NAME (type) = name;
2455 TYPE_CONTAINS_TEMPLATE_P (type) = 1;
2456 finish_record_type (type,
2457 chainon (chainon (NULL_TREE, template_field),
2458 array_field),
2459 false, false);
2461 return type;
2464 /* Same, taking a thin or fat pointer type instead of a template type. */
2466 tree
2467 build_unc_object_type_from_ptr (tree thin_fat_ptr_type, tree object_type, tree name)
2469 tree template_type;
2471 gcc_assert (TYPE_FAT_OR_THIN_POINTER_P (thin_fat_ptr_type));
2473 template_type
2474 = (TYPE_FAT_POINTER_P (thin_fat_ptr_type)
2475 ? TREE_TYPE (TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (thin_fat_ptr_type))))
2476 : TREE_TYPE (TYPE_FIELDS (TREE_TYPE (thin_fat_ptr_type))));
2477 return build_unc_object_type (template_type, object_type, name);
2480 /* Update anything previously pointing to OLD_TYPE to point to NEW_TYPE. In
2481 the normal case this is just two adjustments, but we have more to do
2482 if NEW is an UNCONSTRAINED_ARRAY_TYPE. */
2484 void
2485 update_pointer_to (tree old_type, tree new_type)
2487 tree ptr = TYPE_POINTER_TO (old_type);
2488 tree ref = TYPE_REFERENCE_TO (old_type);
2489 tree ptr1, ref1;
2490 tree type;
2492 /* If this is the main variant, process all the other variants first. */
2493 if (TYPE_MAIN_VARIANT (old_type) == old_type)
2494 for (type = TYPE_NEXT_VARIANT (old_type); type;
2495 type = TYPE_NEXT_VARIANT (type))
2496 update_pointer_to (type, new_type);
2498 /* If no pointer or reference, we are done. */
2499 if (!ptr && !ref)
2500 return;
2502 /* Merge the old type qualifiers in the new type.
2504 Each old variant has qualifiers for specific reasons, and the new
2505 designated type as well. Each set of qualifiers represents useful
2506 information grabbed at some point, and merging the two simply unifies
2507 these inputs into the final type description.
2509 Consider for instance a volatile type frozen after an access to constant
2510 type designating it. After the designated type freeze, we get here with a
2511 volatile new_type and a dummy old_type with a readonly variant, created
2512 when the access type was processed. We shall make a volatile and readonly
2513 designated type, because that's what it really is.
2515 We might also get here for a non-dummy old_type variant with different
2516 qualifiers than the new_type ones, for instance in some cases of pointers
2517 to private record type elaboration (see the comments around the call to
2518 this routine from gnat_to_gnu_entity/E_Access_Type). We have to merge the
2519 qualifiers in thoses cases too, to avoid accidentally discarding the
2520 initial set, and will often end up with old_type == new_type then. */
2521 new_type = build_qualified_type (new_type,
2522 TYPE_QUALS (old_type)
2523 | TYPE_QUALS (new_type));
2525 /* If the new type and the old one are identical, there is nothing to
2526 update. */
2527 if (old_type == new_type)
2528 return;
2530 /* Otherwise, first handle the simple case. */
2531 if (TREE_CODE (new_type) != UNCONSTRAINED_ARRAY_TYPE)
2533 TYPE_POINTER_TO (new_type) = ptr;
2534 TYPE_REFERENCE_TO (new_type) = ref;
2536 for (; ptr; ptr = TYPE_NEXT_PTR_TO (ptr))
2537 for (ptr1 = TYPE_MAIN_VARIANT (ptr); ptr1;
2538 ptr1 = TYPE_NEXT_VARIANT (ptr1))
2539 TREE_TYPE (ptr1) = new_type;
2541 for (; ref; ref = TYPE_NEXT_REF_TO (ref))
2542 for (ref1 = TYPE_MAIN_VARIANT (ref); ref1;
2543 ref1 = TYPE_NEXT_VARIANT (ref1))
2544 TREE_TYPE (ref1) = new_type;
2547 /* Now deal with the unconstrained array case. In this case the "pointer"
2548 is actually a RECORD_TYPE where the types of both fields are
2549 pointers to void. In that case, copy the field list from the
2550 old type to the new one and update the fields' context. */
2551 else if (TREE_CODE (ptr) != RECORD_TYPE || !TYPE_IS_FAT_POINTER_P (ptr))
2552 gcc_unreachable ();
2554 else
2556 tree new_obj_rec = TYPE_OBJECT_RECORD_TYPE (new_type);
2557 tree ptr_temp_type;
2558 tree new_ref;
2559 tree var;
2561 SET_DECL_ORIGINAL_FIELD (TYPE_FIELDS (ptr),
2562 TYPE_FIELDS (TYPE_POINTER_TO (new_type)));
2563 SET_DECL_ORIGINAL_FIELD (TREE_CHAIN (TYPE_FIELDS (ptr)),
2564 TREE_CHAIN (TYPE_FIELDS
2565 (TYPE_POINTER_TO (new_type))));
2567 TYPE_FIELDS (ptr) = TYPE_FIELDS (TYPE_POINTER_TO (new_type));
2568 DECL_CONTEXT (TYPE_FIELDS (ptr)) = ptr;
2569 DECL_CONTEXT (TREE_CHAIN (TYPE_FIELDS (ptr))) = ptr;
2571 /* Rework the PLACEHOLDER_EXPR inside the reference to the
2572 template bounds.
2574 ??? This is now the only use of gnat_substitute_in_type, which
2575 is now a very "heavy" routine to do this, so it should be replaced
2576 at some point. */
2577 ptr_temp_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (ptr)));
2578 new_ref = build3 (COMPONENT_REF, ptr_temp_type,
2579 build0 (PLACEHOLDER_EXPR, ptr),
2580 TREE_CHAIN (TYPE_FIELDS (ptr)), NULL_TREE);
2582 update_pointer_to
2583 (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))),
2584 gnat_substitute_in_type (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))),
2585 TREE_CHAIN (TYPE_FIELDS (ptr)), new_ref));
2587 for (var = TYPE_MAIN_VARIANT (ptr); var; var = TYPE_NEXT_VARIANT (var))
2588 SET_TYPE_UNCONSTRAINED_ARRAY (var, new_type);
2590 TYPE_POINTER_TO (new_type) = TYPE_REFERENCE_TO (new_type)
2591 = TREE_TYPE (new_type) = ptr;
2593 /* Now handle updating the allocation record, what the thin pointer
2594 points to. Update all pointers from the old record into the new
2595 one, update the types of the fields, and recompute the size. */
2597 update_pointer_to (TYPE_OBJECT_RECORD_TYPE (old_type), new_obj_rec);
2599 TREE_TYPE (TYPE_FIELDS (new_obj_rec)) = TREE_TYPE (ptr_temp_type);
2600 TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2601 = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr)));
2602 DECL_SIZE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2603 = TYPE_SIZE (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))));
2604 DECL_SIZE_UNIT (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2605 = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))));
2607 TYPE_SIZE (new_obj_rec)
2608 = size_binop (PLUS_EXPR,
2609 DECL_SIZE (TYPE_FIELDS (new_obj_rec)),
2610 DECL_SIZE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec))));
2611 TYPE_SIZE_UNIT (new_obj_rec)
2612 = size_binop (PLUS_EXPR,
2613 DECL_SIZE_UNIT (TYPE_FIELDS (new_obj_rec)),
2614 DECL_SIZE_UNIT (TREE_CHAIN (TYPE_FIELDS (new_obj_rec))));
2615 rest_of_type_compilation (ptr, global_bindings_p ());
2619 /* Convert a pointer to a constrained array into a pointer to a fat
2620 pointer. This involves making or finding a template. */
2622 static tree
2623 convert_to_fat_pointer (tree type, tree expr)
2625 tree template_type = TREE_TYPE (TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (type))));
2626 tree template, template_addr;
2627 tree etype = TREE_TYPE (expr);
2629 /* If EXPR is a constant of zero, we make a fat pointer that has a null
2630 pointer to the template and array. */
2631 if (integer_zerop (expr))
2632 return
2633 gnat_build_constructor
2634 (type,
2635 tree_cons (TYPE_FIELDS (type),
2636 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
2637 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2638 convert (build_pointer_type (template_type),
2639 expr),
2640 NULL_TREE)));
2642 /* If EXPR is a thin pointer, make the template and data from the record. */
2644 else if (TYPE_THIN_POINTER_P (etype))
2646 tree fields = TYPE_FIELDS (TREE_TYPE (etype));
2648 expr = save_expr (expr);
2649 if (TREE_CODE (expr) == ADDR_EXPR)
2650 expr = TREE_OPERAND (expr, 0);
2651 else
2652 expr = build1 (INDIRECT_REF, TREE_TYPE (etype), expr);
2654 template = build_component_ref (expr, NULL_TREE, fields, false);
2655 expr = build_unary_op (ADDR_EXPR, NULL_TREE,
2656 build_component_ref (expr, NULL_TREE,
2657 TREE_CHAIN (fields), false));
2659 else
2660 /* Otherwise, build the constructor for the template. */
2661 template = build_template (template_type, TREE_TYPE (etype), expr);
2663 template_addr = build_unary_op (ADDR_EXPR, NULL_TREE, template);
2665 /* The result is a CONSTRUCTOR for the fat pointer.
2667 If expr is an argument of a foreign convention subprogram, the type it
2668 points to is directly the component type. In this case, the expression
2669 type may not match the corresponding FIELD_DECL type at this point, so we
2670 call "convert" here to fix that up if necessary. This type consistency is
2671 required, for instance because it ensures that possible later folding of
2672 component_refs against this constructor always yields something of the
2673 same type as the initial reference.
2675 Note that the call to "build_template" above is still fine, because it
2676 will only refer to the provided template_type in this case. */
2677 return
2678 gnat_build_constructor
2679 (type, tree_cons (TYPE_FIELDS (type),
2680 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
2681 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2682 template_addr, NULL_TREE)));
2685 /* Convert to a thin pointer type, TYPE. The only thing we know how to convert
2686 is something that is a fat pointer, so convert to it first if it EXPR
2687 is not already a fat pointer. */
2689 static tree
2690 convert_to_thin_pointer (tree type, tree expr)
2692 if (!TYPE_FAT_POINTER_P (TREE_TYPE (expr)))
2693 expr
2694 = convert_to_fat_pointer
2695 (TREE_TYPE (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type))), expr);
2697 /* We get the pointer to the data and use a NOP_EXPR to make it the
2698 proper GCC type. */
2699 expr = build_component_ref (expr, NULL_TREE, TYPE_FIELDS (TREE_TYPE (expr)),
2700 false);
2701 expr = build1 (NOP_EXPR, type, expr);
2703 return expr;
2706 /* Create an expression whose value is that of EXPR,
2707 converted to type TYPE. The TREE_TYPE of the value
2708 is always TYPE. This function implements all reasonable
2709 conversions; callers should filter out those that are
2710 not permitted by the language being compiled. */
2712 tree
2713 convert (tree type, tree expr)
2715 enum tree_code code = TREE_CODE (type);
2716 tree etype = TREE_TYPE (expr);
2717 enum tree_code ecode = TREE_CODE (etype);
2718 tree tem;
2720 /* If EXPR is already the right type, we are done. */
2721 if (type == etype)
2722 return expr;
2724 /* If the input type has padding, remove it by doing a component reference
2725 to the field. If the output type has padding, make a constructor
2726 to build the record. If both input and output have padding and are
2727 of variable size, do this as an unchecked conversion. */
2728 else if (ecode == RECORD_TYPE && code == RECORD_TYPE
2729 && TYPE_IS_PADDING_P (type) && TYPE_IS_PADDING_P (etype)
2730 && (!TREE_CONSTANT (TYPE_SIZE (type))
2731 || !TREE_CONSTANT (TYPE_SIZE (etype))))
2733 else if (ecode == RECORD_TYPE && TYPE_IS_PADDING_P (etype))
2735 /* If we have just converted to this padded type, just get
2736 the inner expression. */
2737 if (TREE_CODE (expr) == CONSTRUCTOR
2738 && !VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (expr))
2739 && VEC_index (constructor_elt, CONSTRUCTOR_ELTS (expr), 0)->index
2740 == TYPE_FIELDS (etype))
2741 return VEC_index (constructor_elt, CONSTRUCTOR_ELTS (expr), 0)->value;
2742 else
2743 return convert (type,
2744 build_component_ref (expr, NULL_TREE,
2745 TYPE_FIELDS (etype), false));
2747 else if (code == RECORD_TYPE && TYPE_IS_PADDING_P (type))
2749 /* If we previously converted from another type and our type is
2750 of variable size, remove the conversion to avoid the need for
2751 variable-size temporaries. */
2752 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
2753 && !TREE_CONSTANT (TYPE_SIZE (type)))
2754 expr = TREE_OPERAND (expr, 0);
2756 /* If we are just removing the padding from expr, convert the original
2757 object if we have variable size. That will avoid the need
2758 for some variable-size temporaries. */
2759 if (TREE_CODE (expr) == COMPONENT_REF
2760 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE
2761 && TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (expr, 0)))
2762 && !TREE_CONSTANT (TYPE_SIZE (type)))
2763 return convert (type, TREE_OPERAND (expr, 0));
2765 /* If the result type is a padded type with a self-referentially-sized
2766 field and the expression type is a record, do this as an
2767 unchecked conversion. */
2768 else if (TREE_CODE (etype) == RECORD_TYPE
2769 && CONTAINS_PLACEHOLDER_P (DECL_SIZE (TYPE_FIELDS (type))))
2770 return unchecked_convert (type, expr, false);
2772 else
2773 return
2774 gnat_build_constructor (type,
2775 tree_cons (TYPE_FIELDS (type),
2776 convert (TREE_TYPE
2777 (TYPE_FIELDS (type)),
2778 expr),
2779 NULL_TREE));
2782 /* If the input is a biased type, adjust first. */
2783 if (ecode == INTEGER_TYPE && TYPE_BIASED_REPRESENTATION_P (etype))
2784 return convert (type, fold (build2 (PLUS_EXPR, TREE_TYPE (etype),
2785 fold (build1 (NOP_EXPR,
2786 TREE_TYPE (etype),
2787 expr)),
2788 TYPE_MIN_VALUE (etype))));
2790 /* If the input is a justified modular type, we need to extract the actual
2791 object before converting it to any other type with the exceptions of an
2792 unconstrained array or of a mere type variant. It is useful to avoid the
2793 extraction and conversion in the type variant case because it could end
2794 up replacing a VAR_DECL expr by a constructor and we might be about the
2795 take the address of the result. */
2796 if (ecode == RECORD_TYPE && TYPE_JUSTIFIED_MODULAR_P (etype)
2797 && code != UNCONSTRAINED_ARRAY_TYPE
2798 && TYPE_MAIN_VARIANT (type) != TYPE_MAIN_VARIANT (etype))
2799 return convert (type, build_component_ref (expr, NULL_TREE,
2800 TYPE_FIELDS (etype), false));
2802 /* If converting to a type that contains a template, convert to the data
2803 type and then build the template. */
2804 if (code == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (type))
2806 tree obj_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (type)));
2808 /* If the source already has a template, get a reference to the
2809 associated array only, as we are going to rebuild a template
2810 for the target type anyway. */
2811 expr = maybe_unconstrained_array (expr);
2813 return
2814 gnat_build_constructor
2815 (type,
2816 tree_cons (TYPE_FIELDS (type),
2817 build_template (TREE_TYPE (TYPE_FIELDS (type)),
2818 obj_type, NULL_TREE),
2819 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2820 convert (obj_type, expr), NULL_TREE)));
2823 /* There are some special cases of expressions that we process
2824 specially. */
2825 switch (TREE_CODE (expr))
2827 case ERROR_MARK:
2828 return expr;
2830 case NULL_EXPR:
2831 /* Just set its type here. For TRANSFORM_EXPR, we will do the actual
2832 conversion in gnat_expand_expr. NULL_EXPR does not represent
2833 and actual value, so no conversion is needed. */
2834 expr = copy_node (expr);
2835 TREE_TYPE (expr) = type;
2836 return expr;
2838 case STRING_CST:
2839 /* If we are converting a STRING_CST to another constrained array type,
2840 just make a new one in the proper type. */
2841 if (code == ecode && AGGREGATE_TYPE_P (etype)
2842 && !(TREE_CODE (TYPE_SIZE (etype)) == INTEGER_CST
2843 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST))
2845 expr = copy_node (expr);
2846 TREE_TYPE (expr) = type;
2847 return expr;
2849 break;
2851 case UNCONSTRAINED_ARRAY_REF:
2852 /* Convert this to the type of the inner array by getting the address of
2853 the array from the template. */
2854 expr = build_unary_op (INDIRECT_REF, NULL_TREE,
2855 build_component_ref (TREE_OPERAND (expr, 0),
2856 get_identifier ("P_ARRAY"),
2857 NULL_TREE, false));
2858 etype = TREE_TYPE (expr);
2859 ecode = TREE_CODE (etype);
2860 break;
2862 case VIEW_CONVERT_EXPR:
2864 /* GCC 4.x is very sensitive to type consistency overall, and view
2865 conversions thus are very frequent. Eventhough just "convert"ing
2866 the inner operand to the output type is fine in most cases, it
2867 might expose unexpected input/output type mismatches in special
2868 circumstances so we avoid such recursive calls when we can. */
2870 tree op0 = TREE_OPERAND (expr, 0);
2872 /* If we are converting back to the original type, we can just
2873 lift the input conversion. This is a common occurence with
2874 switches back-and-forth amongst type variants. */
2875 if (type == TREE_TYPE (op0))
2876 return op0;
2878 /* Otherwise, if we're converting between two aggregate types, we
2879 might be allowed to substitute the VIEW_CONVERT target type in
2880 place or to just convert the inner expression. */
2881 if (AGGREGATE_TYPE_P (type) && AGGREGATE_TYPE_P (etype))
2883 /* If we are converting between type variants, we can just
2884 substitute the VIEW_CONVERT in place. */
2885 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype))
2886 return build1 (VIEW_CONVERT_EXPR, type, op0);
2888 /* Otherwise, we may just bypass the input view conversion unless
2889 one of the types is a fat pointer, or we're converting to an
2890 unchecked union type. Both are handled by specialized code
2891 below and the latter relies on exact type matching. */
2892 else if (!TYPE_FAT_POINTER_P (type) && !TYPE_FAT_POINTER_P (etype)
2893 && !(code == UNION_TYPE && TYPE_UNCHECKED_UNION_P (type)))
2894 return convert (type, op0);
2897 break;
2899 case INDIRECT_REF:
2900 /* If both types are record types, just convert the pointer and
2901 make a new INDIRECT_REF.
2903 ??? Disable this for now since it causes problems with the
2904 code in build_binary_op for MODIFY_EXPR which wants to
2905 strip off conversions. But that code really is a mess and
2906 we need to do this a much better way some time. */
2907 if (0
2908 && (TREE_CODE (type) == RECORD_TYPE
2909 || TREE_CODE (type) == UNION_TYPE)
2910 && (TREE_CODE (etype) == RECORD_TYPE
2911 || TREE_CODE (etype) == UNION_TYPE)
2912 && !TYPE_FAT_POINTER_P (type) && !TYPE_FAT_POINTER_P (etype))
2913 return build_unary_op (INDIRECT_REF, NULL_TREE,
2914 convert (build_pointer_type (type),
2915 TREE_OPERAND (expr, 0)));
2916 break;
2918 default:
2919 break;
2922 /* Check for converting to a pointer to an unconstrained array. */
2923 if (TYPE_FAT_POINTER_P (type) && !TYPE_FAT_POINTER_P (etype))
2924 return convert_to_fat_pointer (type, expr);
2926 /* If we're converting between two aggregate types that have the same main
2927 variant, just make a VIEW_CONVER_EXPR. */
2928 else if (AGGREGATE_TYPE_P (type)
2929 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype))
2930 return build1 (VIEW_CONVERT_EXPR, type, expr);
2932 /* In all other cases of related types, make a NOP_EXPR. */
2933 else if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype)
2934 || (code == INTEGER_CST && ecode == INTEGER_CST
2935 && (type == TREE_TYPE (etype) || etype == TREE_TYPE (type))))
2936 return fold (build1 (NOP_EXPR, type, expr));
2938 switch (code)
2940 case VOID_TYPE:
2941 return build1 (CONVERT_EXPR, type, expr);
2943 case BOOLEAN_TYPE:
2944 return fold (build1 (NOP_EXPR, type, gnat_truthvalue_conversion (expr)));
2946 case INTEGER_TYPE:
2947 if (TYPE_HAS_ACTUAL_BOUNDS_P (type)
2948 && (ecode == ARRAY_TYPE || ecode == UNCONSTRAINED_ARRAY_TYPE
2949 || (ecode == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (etype))))
2950 return unchecked_convert (type, expr, false);
2951 else if (TYPE_BIASED_REPRESENTATION_P (type))
2952 return fold (build1 (CONVERT_EXPR, type,
2953 fold (build2 (MINUS_EXPR, TREE_TYPE (type),
2954 convert (TREE_TYPE (type), expr),
2955 TYPE_MIN_VALUE (type)))));
2957 /* ... fall through ... */
2959 case ENUMERAL_TYPE:
2960 return fold (convert_to_integer (type, expr));
2962 case POINTER_TYPE:
2963 case REFERENCE_TYPE:
2964 /* If converting between two pointers to records denoting
2965 both a template and type, adjust if needed to account
2966 for any differing offsets, since one might be negative. */
2967 if (TYPE_THIN_POINTER_P (etype) && TYPE_THIN_POINTER_P (type))
2969 tree bit_diff
2970 = size_diffop (bit_position (TYPE_FIELDS (TREE_TYPE (etype))),
2971 bit_position (TYPE_FIELDS (TREE_TYPE (type))));
2972 tree byte_diff = size_binop (CEIL_DIV_EXPR, bit_diff,
2973 sbitsize_int (BITS_PER_UNIT));
2975 expr = build1 (NOP_EXPR, type, expr);
2976 TREE_CONSTANT (expr) = TREE_CONSTANT (TREE_OPERAND (expr, 0));
2977 if (integer_zerop (byte_diff))
2978 return expr;
2980 return build_binary_op (PLUS_EXPR, type, expr,
2981 fold (convert_to_pointer (type, byte_diff)));
2984 /* If converting to a thin pointer, handle specially. */
2985 if (TYPE_THIN_POINTER_P (type)
2986 && TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type)))
2987 return convert_to_thin_pointer (type, expr);
2989 /* If converting fat pointer to normal pointer, get the pointer to the
2990 array and then convert it. */
2991 else if (TYPE_FAT_POINTER_P (etype))
2992 expr = build_component_ref (expr, get_identifier ("P_ARRAY"),
2993 NULL_TREE, false);
2995 return fold (convert_to_pointer (type, expr));
2997 case REAL_TYPE:
2998 return fold (convert_to_real (type, expr));
3000 case RECORD_TYPE:
3001 if (TYPE_JUSTIFIED_MODULAR_P (type) && !AGGREGATE_TYPE_P (etype))
3002 return
3003 gnat_build_constructor
3004 (type, tree_cons (TYPE_FIELDS (type),
3005 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
3006 NULL_TREE));
3008 /* ... fall through ... */
3010 case ARRAY_TYPE:
3011 /* In these cases, assume the front-end has validated the conversion.
3012 If the conversion is valid, it will be a bit-wise conversion, so
3013 it can be viewed as an unchecked conversion. */
3014 return unchecked_convert (type, expr, false);
3016 case UNION_TYPE:
3017 /* For unchecked unions, just validate that the type is indeed that of
3018 a field of the type. Then make the simple conversion. */
3019 if (TYPE_UNCHECKED_UNION_P (type))
3021 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
3023 if (TREE_TYPE (tem) == etype)
3024 return build1 (CONVERT_EXPR, type, expr);
3025 else if (TREE_CODE (TREE_TYPE (tem)) == RECORD_TYPE
3026 && (TYPE_JUSTIFIED_MODULAR_P (TREE_TYPE (tem))
3027 || TYPE_IS_PADDING_P (TREE_TYPE (tem)))
3028 && TREE_TYPE (TYPE_FIELDS (TREE_TYPE (tem))) == etype)
3029 return build1 (CONVERT_EXPR, type,
3030 convert (TREE_TYPE (tem), expr));
3033 gcc_unreachable ();
3035 else
3036 /* Otherwise, this is a conversion between a tagged type and some
3037 subtype, which we have to mark as a UNION_TYPE because of
3038 overlapping fields. */
3039 return unchecked_convert (type, expr, false);
3041 case UNCONSTRAINED_ARRAY_TYPE:
3042 /* If EXPR is a constrained array, take its address, convert it to a
3043 fat pointer, and then dereference it. Likewise if EXPR is a
3044 record containing both a template and a constrained array.
3045 Note that a record representing a justified modular type
3046 always represents a packed constrained array. */
3047 if (ecode == ARRAY_TYPE
3048 || (ecode == INTEGER_TYPE && TYPE_HAS_ACTUAL_BOUNDS_P (etype))
3049 || (ecode == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (etype))
3050 || (ecode == RECORD_TYPE && TYPE_JUSTIFIED_MODULAR_P (etype)))
3051 return
3052 build_unary_op
3053 (INDIRECT_REF, NULL_TREE,
3054 convert_to_fat_pointer (TREE_TYPE (type),
3055 build_unary_op (ADDR_EXPR,
3056 NULL_TREE, expr)));
3058 /* Do something very similar for converting one unconstrained
3059 array to another. */
3060 else if (ecode == UNCONSTRAINED_ARRAY_TYPE)
3061 return
3062 build_unary_op (INDIRECT_REF, NULL_TREE,
3063 convert (TREE_TYPE (type),
3064 build_unary_op (ADDR_EXPR,
3065 NULL_TREE, expr)));
3066 else
3067 gcc_unreachable ();
3069 case COMPLEX_TYPE:
3070 return fold (convert_to_complex (type, expr));
3072 default:
3073 gcc_unreachable ();
3077 /* Remove all conversions that are done in EXP. This includes converting
3078 from a padded type or to a justified modular type. If TRUE_ADDRESS
3079 is true, always return the address of the containing object even if
3080 the address is not bit-aligned. */
3082 tree
3083 remove_conversions (tree exp, bool true_address)
3085 switch (TREE_CODE (exp))
3087 case CONSTRUCTOR:
3088 if (true_address
3089 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
3090 && TYPE_JUSTIFIED_MODULAR_P (TREE_TYPE (exp)))
3091 return remove_conversions (VEC_index (constructor_elt,
3092 CONSTRUCTOR_ELTS (exp), 0)->value,
3093 true);
3094 break;
3096 case COMPONENT_REF:
3097 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == RECORD_TYPE
3098 && TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
3099 return remove_conversions (TREE_OPERAND (exp, 0), true_address);
3100 break;
3102 case VIEW_CONVERT_EXPR: case NON_LVALUE_EXPR:
3103 case NOP_EXPR: case CONVERT_EXPR:
3104 return remove_conversions (TREE_OPERAND (exp, 0), true_address);
3106 default:
3107 break;
3110 return exp;
3113 /* If EXP's type is an UNCONSTRAINED_ARRAY_TYPE, return an expression that
3114 refers to the underlying array. If its type has TYPE_CONTAINS_TEMPLATE_P,
3115 likewise return an expression pointing to the underlying array. */
3117 tree
3118 maybe_unconstrained_array (tree exp)
3120 enum tree_code code = TREE_CODE (exp);
3121 tree new;
3123 switch (TREE_CODE (TREE_TYPE (exp)))
3125 case UNCONSTRAINED_ARRAY_TYPE:
3126 if (code == UNCONSTRAINED_ARRAY_REF)
3129 = build_unary_op (INDIRECT_REF, NULL_TREE,
3130 build_component_ref (TREE_OPERAND (exp, 0),
3131 get_identifier ("P_ARRAY"),
3132 NULL_TREE, false));
3133 TREE_READONLY (new) = TREE_STATIC (new) = TREE_READONLY (exp);
3134 return new;
3137 else if (code == NULL_EXPR)
3138 return build1 (NULL_EXPR,
3139 TREE_TYPE (TREE_TYPE (TYPE_FIELDS
3140 (TREE_TYPE (TREE_TYPE (exp))))),
3141 TREE_OPERAND (exp, 0));
3143 case RECORD_TYPE:
3144 /* If this is a padded type, convert to the unpadded type and see if
3145 it contains a template. */
3146 if (TYPE_IS_PADDING_P (TREE_TYPE (exp)))
3148 new = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (exp))), exp);
3149 if (TREE_CODE (TREE_TYPE (new)) == RECORD_TYPE
3150 && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (new)))
3151 return
3152 build_component_ref (new, NULL_TREE,
3153 TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (new))),
3156 else if (TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (exp)))
3157 return
3158 build_component_ref (exp, NULL_TREE,
3159 TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (exp))), 0);
3160 break;
3162 default:
3163 break;
3166 return exp;
3169 /* Return an expression that does an unchecked conversion of EXPR to TYPE.
3170 If NOTRUNC_P is true, truncation operations should be suppressed. */
3172 tree
3173 unchecked_convert (tree type, tree expr, bool notrunc_p)
3175 tree etype = TREE_TYPE (expr);
3177 /* If the expression is already the right type, we are done. */
3178 if (etype == type)
3179 return expr;
3181 /* If both types types are integral just do a normal conversion.
3182 Likewise for a conversion to an unconstrained array. */
3183 if ((((INTEGRAL_TYPE_P (type)
3184 && !(TREE_CODE (type) == INTEGER_TYPE
3185 && TYPE_VAX_FLOATING_POINT_P (type)))
3186 || (POINTER_TYPE_P (type) && ! TYPE_THIN_POINTER_P (type))
3187 || (TREE_CODE (type) == RECORD_TYPE
3188 && TYPE_JUSTIFIED_MODULAR_P (type)))
3189 && ((INTEGRAL_TYPE_P (etype)
3190 && !(TREE_CODE (etype) == INTEGER_TYPE
3191 && TYPE_VAX_FLOATING_POINT_P (etype)))
3192 || (POINTER_TYPE_P (etype) && !TYPE_THIN_POINTER_P (etype))
3193 || (TREE_CODE (etype) == RECORD_TYPE
3194 && TYPE_JUSTIFIED_MODULAR_P (etype))))
3195 || TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
3197 tree rtype = type;
3199 if (TREE_CODE (etype) == INTEGER_TYPE
3200 && TYPE_BIASED_REPRESENTATION_P (etype))
3202 tree ntype = copy_type (etype);
3204 TYPE_BIASED_REPRESENTATION_P (ntype) = 0;
3205 TYPE_MAIN_VARIANT (ntype) = ntype;
3206 expr = build1 (NOP_EXPR, ntype, expr);
3209 if (TREE_CODE (type) == INTEGER_TYPE
3210 && TYPE_BIASED_REPRESENTATION_P (type))
3212 rtype = copy_type (type);
3213 TYPE_BIASED_REPRESENTATION_P (rtype) = 0;
3214 TYPE_MAIN_VARIANT (rtype) = rtype;
3217 expr = convert (rtype, expr);
3218 if (type != rtype)
3219 expr = build1 (NOP_EXPR, type, expr);
3222 /* If we are converting TO an integral type whose precision is not the
3223 same as its size, first unchecked convert to a record that contains
3224 an object of the output type. Then extract the field. */
3225 else if (INTEGRAL_TYPE_P (type) && TYPE_RM_SIZE (type)
3226 && 0 != compare_tree_int (TYPE_RM_SIZE (type),
3227 GET_MODE_BITSIZE (TYPE_MODE (type))))
3229 tree rec_type = make_node (RECORD_TYPE);
3230 tree field = create_field_decl (get_identifier ("OBJ"), type,
3231 rec_type, 1, 0, 0, 0);
3233 TYPE_FIELDS (rec_type) = field;
3234 layout_type (rec_type);
3236 expr = unchecked_convert (rec_type, expr, notrunc_p);
3237 expr = build_component_ref (expr, NULL_TREE, field, 0);
3240 /* Similarly for integral input type whose precision is not equal to its
3241 size. */
3242 else if (INTEGRAL_TYPE_P (etype) && TYPE_RM_SIZE (etype)
3243 && 0 != compare_tree_int (TYPE_RM_SIZE (etype),
3244 GET_MODE_BITSIZE (TYPE_MODE (etype))))
3246 tree rec_type = make_node (RECORD_TYPE);
3247 tree field
3248 = create_field_decl (get_identifier ("OBJ"), etype, rec_type,
3249 1, 0, 0, 0);
3251 TYPE_FIELDS (rec_type) = field;
3252 layout_type (rec_type);
3254 expr = gnat_build_constructor (rec_type, build_tree_list (field, expr));
3255 expr = unchecked_convert (type, expr, notrunc_p);
3258 /* We have a special case when we are converting between two
3259 unconstrained array types. In that case, take the address,
3260 convert the fat pointer types, and dereference. */
3261 else if (TREE_CODE (etype) == UNCONSTRAINED_ARRAY_TYPE
3262 && TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
3263 expr = build_unary_op (INDIRECT_REF, NULL_TREE,
3264 build1 (VIEW_CONVERT_EXPR, TREE_TYPE (type),
3265 build_unary_op (ADDR_EXPR, NULL_TREE,
3266 expr)));
3267 else
3269 expr = maybe_unconstrained_array (expr);
3271 /* There's no point in doing two unchecked conversions in a row. */
3272 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR)
3273 expr = TREE_OPERAND (expr, 0);
3275 etype = TREE_TYPE (expr);
3276 expr = build1 (VIEW_CONVERT_EXPR, type, expr);
3279 /* If the result is an integral type whose size is not equal to
3280 the size of the underlying machine type, sign- or zero-extend
3281 the result. We need not do this in the case where the input is
3282 an integral type of the same precision and signedness or if the output
3283 is a biased type or if both the input and output are unsigned. */
3284 if (!notrunc_p
3285 && INTEGRAL_TYPE_P (type) && TYPE_RM_SIZE (type)
3286 && !(TREE_CODE (type) == INTEGER_TYPE
3287 && TYPE_BIASED_REPRESENTATION_P (type))
3288 && 0 != compare_tree_int (TYPE_RM_SIZE (type),
3289 GET_MODE_BITSIZE (TYPE_MODE (type)))
3290 && !(INTEGRAL_TYPE_P (etype)
3291 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (etype)
3292 && operand_equal_p (TYPE_RM_SIZE (type),
3293 (TYPE_RM_SIZE (etype) != 0
3294 ? TYPE_RM_SIZE (etype) : TYPE_SIZE (etype)),
3296 && !(TYPE_UNSIGNED (type) && TYPE_UNSIGNED (etype)))
3298 tree base_type = gnat_type_for_mode (TYPE_MODE (type),
3299 TYPE_UNSIGNED (type));
3300 tree shift_expr
3301 = convert (base_type,
3302 size_binop (MINUS_EXPR,
3303 bitsize_int
3304 (GET_MODE_BITSIZE (TYPE_MODE (type))),
3305 TYPE_RM_SIZE (type)));
3306 expr
3307 = convert (type,
3308 build_binary_op (RSHIFT_EXPR, base_type,
3309 build_binary_op (LSHIFT_EXPR, base_type,
3310 convert (base_type, expr),
3311 shift_expr),
3312 shift_expr));
3315 /* An unchecked conversion should never raise Constraint_Error. The code
3316 below assumes that GCC's conversion routines overflow the same way that
3317 the underlying hardware does. This is probably true. In the rare case
3318 when it is false, we can rely on the fact that such conversions are
3319 erroneous anyway. */
3320 if (TREE_CODE (expr) == INTEGER_CST)
3321 TREE_OVERFLOW (expr) = TREE_CONSTANT_OVERFLOW (expr) = 0;
3323 /* If the sizes of the types differ and this is an VIEW_CONVERT_EXPR,
3324 show no longer constant. */
3325 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
3326 && !operand_equal_p (TYPE_SIZE_UNIT (type), TYPE_SIZE_UNIT (etype),
3327 OEP_ONLY_CONST))
3328 TREE_CONSTANT (expr) = 0;
3330 return expr;
3333 /* Search the chain of currently reachable declarations for a builtin
3334 FUNCTION_DECL node corresponding to function NAME (an IDENTIFIER_NODE).
3335 Return the first node found, if any, or NULL_TREE otherwise. */
3337 tree
3338 builtin_decl_for (tree name __attribute__ ((unused)))
3340 /* ??? not clear yet how to implement this function in tree-ssa, so
3341 return NULL_TREE for now */
3342 return NULL_TREE;
3345 #include "gt-ada-utils.h"
3346 #include "gtype-ada.h"