]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ada/utils.c
e1aac178a9e2d39c2ca084d10c15967345db817a
[thirdparty/gcc.git] / gcc / ada / utils.c
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * U T I L S *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2004, 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, 59 Temple Place - Suite 330, Boston, *
20 * MA 02111-1307, 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 ****************************************************************************/
26
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
42 #include "ada.h"
43 #include "types.h"
44 #include "atree.h"
45 #include "elists.h"
46 #include "namet.h"
47 #include "nlists.h"
48 #include "stringt.h"
49 #include "uintp.h"
50 #include "fe.h"
51 #include "sinfo.h"
52 #include "einfo.h"
53 #include "ada-tree.h"
54 #include "gigi.h"
55
56 #ifndef MAX_FIXED_MODE_SIZE
57 #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
58 #endif
59
60 #ifndef MAX_BITS_PER_WORD
61 #define MAX_BITS_PER_WORD BITS_PER_WORD
62 #endif
63
64 /* If nonzero, pretend we are allocating at global level. */
65 int force_global;
66
67 /* Tree nodes for the various types and decls we create. */
68 tree gnat_std_decls[(int) ADT_LAST];
69
70 /* Functions to call for each of the possible raise reasons. */
71 tree gnat_raise_decls[(int) LAST_REASON_CODE + 1];
72
73 /* Associates a GNAT tree node to a GCC tree node. It is used in
74 `save_gnu_tree', `get_gnu_tree' and `present_gnu_tree'. See documentation
75 of `save_gnu_tree' for more info. */
76 static GTY((length ("max_gnat_nodes"))) tree *associate_gnat_to_gnu;
77
78 /* This listhead is used to record any global objects that need elaboration.
79 TREE_PURPOSE is the variable to be elaborated and TREE_VALUE is the
80 initial value to assign. */
81
82 static GTY(()) tree pending_elaborations;
83
84 /* This stack allows us to momentarily switch to generating elaboration
85 lists for an inner context. */
86
87 struct e_stack GTY(()) {
88 struct e_stack *next;
89 tree elab_list;
90 };
91 static GTY(()) struct e_stack *elist_stack;
92
93 /* This variable keeps a table for types for each precision so that we only
94 allocate each of them once. Signed and unsigned types are kept separate.
95
96 Note that these types are only used when fold-const requests something
97 special. Perhaps we should NOT share these types; we'll see how it
98 goes later. */
99 static GTY(()) tree signed_and_unsigned_types[2 * MAX_BITS_PER_WORD + 1][2];
100
101 /* Likewise for float types, but record these by mode. */
102 static GTY(()) tree float_types[NUM_MACHINE_MODES];
103
104 /* For each binding contour we allocate a binding_level structure which records
105 the entities defined or declared in that contour. Contours include:
106
107 the global one
108 one for each subprogram definition
109 one for each compound statement (declare block)
110
111 Binding contours are used to create GCC tree BLOCK nodes. */
112
113 struct binding_level GTY(())
114 {
115 /* A chain of ..._DECL nodes for all variables, constants, functions,
116 parameters and type declarations. These ..._DECL nodes are chained
117 through the TREE_CHAIN field. Note that these ..._DECL nodes are stored
118 in the reverse of the order supplied to be compatible with the
119 back-end. */
120 tree names;
121 /* For each level (except the global one), a chain of BLOCK nodes for all
122 the levels that were entered and exited one level down from this one. */
123 tree blocks;
124 /* The BLOCK node for this level, if one has been preallocated.
125 If 0, the BLOCK is allocated (if needed) when the level is popped. */
126 tree this_block;
127 /* The binding level containing this one (the enclosing binding level). */
128 struct binding_level *level_chain;
129 };
130
131 /* The binding level currently in effect. */
132 static GTY(()) struct binding_level *current_binding_level;
133
134 /* A chain of binding_level structures awaiting reuse. */
135 static GTY((deletable (""))) struct binding_level *free_binding_level;
136
137 /* The outermost binding level. This binding level is created when the
138 compiler is started and it will exist through the entire compilation. */
139 static struct binding_level *global_binding_level;
140
141 /* Binding level structures are initialized by copying this one. */
142 static struct binding_level clear_binding_level = {NULL, NULL, NULL, NULL};
143
144 struct language_function GTY(())
145 {
146 int unused;
147 };
148
149 static tree merge_sizes (tree, tree, tree, int, int);
150 static tree compute_related_constant (tree, tree);
151 static tree split_plus (tree, tree *);
152 static int value_zerop (tree);
153 static tree float_type_for_precision (int, enum machine_mode);
154 static tree convert_to_fat_pointer (tree, tree);
155 static tree convert_to_thin_pointer (tree, tree);
156 static tree make_descriptor_field (const char *,tree, tree, tree);
157 static int value_factor_p (tree, int);
158 static int potential_alignment_gap (tree, tree, tree);
159 \f
160 /* Initialize the association of GNAT nodes to GCC trees. */
161
162 void
163 init_gnat_to_gnu (void)
164 {
165 associate_gnat_to_gnu
166 = (tree *) ggc_alloc_cleared (max_gnat_nodes * sizeof (tree));
167
168 pending_elaborations = build_tree_list (NULL_TREE, NULL_TREE);
169 }
170
171 /* GNAT_ENTITY is a GNAT tree node for an entity. GNU_DECL is the GCC tree
172 which is to be associated with GNAT_ENTITY. Such GCC tree node is always
173 a ..._DECL node. If NO_CHECK is nonzero, the latter check is suppressed.
174
175 If GNU_DECL is zero, a previous association is to be reset. */
176
177 void
178 save_gnu_tree (Entity_Id gnat_entity, tree gnu_decl, int no_check)
179 {
180 /* Check that GNAT_ENTITY is not already defined and that it is being set
181 to something which is a decl. Raise gigi 401 if not. Usually, this
182 means GNAT_ENTITY is defined twice, but occasionally is due to some
183 Gigi problem. */
184 if (gnu_decl
185 && (associate_gnat_to_gnu[gnat_entity - First_Node_Id]
186 || (! no_check && ! DECL_P (gnu_decl))))
187 gigi_abort (401);
188
189 associate_gnat_to_gnu[gnat_entity - First_Node_Id] = gnu_decl;
190 }
191
192 /* GNAT_ENTITY is a GNAT tree node for a defining identifier.
193 Return the ..._DECL node that was associated with it. If there is no tree
194 node associated with GNAT_ENTITY, abort.
195
196 In some cases, such as delayed elaboration or expressions that need to
197 be elaborated only once, GNAT_ENTITY is really not an entity. */
198
199 tree
200 get_gnu_tree (Entity_Id gnat_entity)
201 {
202 if (! associate_gnat_to_gnu[gnat_entity - First_Node_Id])
203 gigi_abort (402);
204
205 return associate_gnat_to_gnu[gnat_entity - First_Node_Id];
206 }
207
208 /* Return nonzero if a GCC tree has been associated with GNAT_ENTITY. */
209
210 int
211 present_gnu_tree (Entity_Id gnat_entity)
212 {
213 return (associate_gnat_to_gnu[gnat_entity - First_Node_Id] != NULL_TREE);
214 }
215
216 \f
217 /* Return non-zero if we are currently in the global binding level. */
218
219 int
220 global_bindings_p (void)
221 {
222 return (force_global != 0 || current_binding_level == global_binding_level
223 ? -1 : 0);
224 }
225
226 /* Return the list of declarations in the current level. Note that this list
227 is in reverse order (it has to be so for back-end compatibility). */
228
229 tree
230 getdecls (void)
231 {
232 return current_binding_level->names;
233 }
234
235 /* Nonzero if the current level needs to have a BLOCK made. */
236
237 int
238 kept_level_p (void)
239 {
240 return (current_binding_level->names != 0);
241 }
242
243 /* Enter a new binding level. The input parameter is ignored, but has to be
244 specified for back-end compatibility. */
245
246 void
247 pushlevel (int ignore ATTRIBUTE_UNUSED)
248 {
249 struct binding_level *newlevel = NULL;
250
251 /* Reuse a struct for this binding level, if there is one. */
252 if (free_binding_level)
253 {
254 newlevel = free_binding_level;
255 free_binding_level = free_binding_level->level_chain;
256 }
257 else
258 newlevel
259 = (struct binding_level *) ggc_alloc (sizeof (struct binding_level));
260
261 *newlevel = clear_binding_level;
262
263 /* Add this level to the front of the chain (stack) of levels that are
264 active. */
265 newlevel->level_chain = current_binding_level;
266 current_binding_level = newlevel;
267 }
268
269 /* Exit a binding level.
270 Pop the level off, and restore the state of the identifier-decl mappings
271 that were in effect when this level was entered.
272
273 If KEEP is nonzero, this level had explicit declarations, so
274 and create a "block" (a BLOCK node) for the level
275 to record its declarations and subblocks for symbol table output.
276
277 If FUNCTIONBODY is nonzero, this level is the body of a function,
278 so create a block as if KEEP were set and also clear out all
279 label names.
280
281 If REVERSE is nonzero, reverse the order of decls before putting
282 them into the BLOCK. */
283
284 tree
285 poplevel (int keep, int reverse, int functionbody)
286 {
287 /* Points to a GCC BLOCK tree node. This is the BLOCK node construted for the
288 binding level that we are about to exit and which is returned by this
289 routine. */
290 tree block = NULL_TREE;
291 tree decl_chain;
292 tree decl_node;
293 tree subblock_chain = current_binding_level->blocks;
294 tree subblock_node;
295 int block_previously_created;
296
297 /* Reverse the list of XXXX_DECL nodes if desired. Note that the ..._DECL
298 nodes chained through the `names' field of current_binding_level are in
299 reverse order except for PARM_DECL node, which are explicitly stored in
300 the right order. */
301 current_binding_level->names
302 = decl_chain = (reverse) ? nreverse (current_binding_level->names)
303 : current_binding_level->names;
304
305 /* Output any nested inline functions within this block which must be
306 compiled because their address is needed. */
307 for (decl_node = decl_chain; decl_node; decl_node = TREE_CHAIN (decl_node))
308 if (TREE_CODE (decl_node) == FUNCTION_DECL
309 && ! TREE_ASM_WRITTEN (decl_node) && TREE_ADDRESSABLE (decl_node)
310 && DECL_INITIAL (decl_node) != 0)
311 {
312 push_function_context ();
313 /* ??? This is temporary. */
314 ggc_push_context ();
315 output_inline_function (decl_node);
316 ggc_pop_context ();
317 pop_function_context ();
318 }
319
320 block = 0;
321 block_previously_created = (current_binding_level->this_block != 0);
322 if (block_previously_created)
323 block = current_binding_level->this_block;
324 else if (keep || functionbody)
325 block = make_node (BLOCK);
326 if (block != 0)
327 {
328 BLOCK_VARS (block) = keep ? decl_chain : 0;
329 BLOCK_SUBBLOCKS (block) = subblock_chain;
330 }
331
332 /* Record the BLOCK node just built as the subblock its enclosing scope. */
333 for (subblock_node = subblock_chain; subblock_node;
334 subblock_node = TREE_CHAIN (subblock_node))
335 BLOCK_SUPERCONTEXT (subblock_node) = block;
336
337 /* Clear out the meanings of the local variables of this level. */
338
339 for (subblock_node = decl_chain; subblock_node;
340 subblock_node = TREE_CHAIN (subblock_node))
341 if (DECL_NAME (subblock_node) != 0)
342 /* If the identifier was used or addressed via a local extern decl,
343 don't forget that fact. */
344 if (DECL_EXTERNAL (subblock_node))
345 {
346 if (TREE_USED (subblock_node))
347 TREE_USED (DECL_NAME (subblock_node)) = 1;
348 if (TREE_ADDRESSABLE (subblock_node))
349 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (subblock_node)) = 1;
350 }
351
352 {
353 /* Pop the current level, and free the structure for reuse. */
354 struct binding_level *level = current_binding_level;
355 current_binding_level = current_binding_level->level_chain;
356 level->level_chain = free_binding_level;
357 free_binding_level = level;
358 }
359
360 if (functionbody)
361 {
362 /* This is the top level block of a function. The ..._DECL chain stored
363 in BLOCK_VARS are the function's parameters (PARM_DECL nodes). Don't
364 leave them in the BLOCK because they are found in the FUNCTION_DECL
365 instead. */
366 DECL_INITIAL (current_function_decl) = block;
367 BLOCK_VARS (block) = 0;
368 }
369 else if (block)
370 {
371 if (!block_previously_created)
372 current_binding_level->blocks
373 = chainon (current_binding_level->blocks, block);
374 }
375
376 /* If we did not make a block for the level just exited, any blocks made for
377 inner levels (since they cannot be recorded as subblocks in that level)
378 must be carried forward so they will later become subblocks of something
379 else. */
380 else if (subblock_chain)
381 current_binding_level->blocks
382 = chainon (current_binding_level->blocks, subblock_chain);
383 if (block)
384 TREE_USED (block) = 1;
385
386 return block;
387 }
388 \f
389 /* Insert BLOCK at the end of the list of subblocks of the
390 current binding level. This is used when a BIND_EXPR is expanded,
391 to handle the BLOCK node inside the BIND_EXPR. */
392
393 void
394 insert_block (tree block)
395 {
396 TREE_USED (block) = 1;
397 current_binding_level->blocks
398 = chainon (current_binding_level->blocks, block);
399 }
400
401 /* Set the BLOCK node for the innermost scope
402 (the one we are currently in). */
403
404 void
405 set_block (tree block)
406 {
407 current_binding_level->this_block = block;
408 current_binding_level->names = chainon (current_binding_level->names,
409 BLOCK_VARS (block));
410 current_binding_level->blocks = chainon (current_binding_level->blocks,
411 BLOCK_SUBBLOCKS (block));
412 }
413
414 /* Records a ..._DECL node DECL as belonging to the current lexical scope.
415 Returns the ..._DECL node. */
416
417 tree
418 pushdecl (tree decl)
419 {
420 struct binding_level *b;
421
422 /* If at top level, there is no context. But PARM_DECLs always go in the
423 level of its function. */
424 if (global_bindings_p () && TREE_CODE (decl) != PARM_DECL)
425 {
426 b = global_binding_level;
427 DECL_CONTEXT (decl) = 0;
428 }
429 else
430 {
431 b = current_binding_level;
432 DECL_CONTEXT (decl) = current_function_decl;
433 }
434
435 /* Put the declaration on the list. The list of declarations is in reverse
436 order. The list will be reversed later if necessary. This needs to be
437 this way for compatibility with the back-end.
438
439 Don't put TYPE_DECLs for UNCONSTRAINED_ARRAY_TYPE into the list. They
440 will cause trouble with the debugger and aren't needed anyway. */
441 if (TREE_CODE (decl) != TYPE_DECL
442 || TREE_CODE (TREE_TYPE (decl)) != UNCONSTRAINED_ARRAY_TYPE)
443 {
444 TREE_CHAIN (decl) = b->names;
445 b->names = decl;
446 }
447
448 /* For the declaration of a type, set its name if it either is not already
449 set, was set to an IDENTIFIER_NODE, indicating an internal name,
450 or if the previous type name was not derived from a source name.
451 We'd rather have the type named with a real name and all the pointer
452 types to the same object have the same POINTER_TYPE node. Code in this
453 function in c-decl.c makes a copy of the type node here, but that may
454 cause us trouble with incomplete types, so let's not try it (at least
455 for now). */
456
457 if (TREE_CODE (decl) == TYPE_DECL
458 && DECL_NAME (decl) != 0
459 && (TYPE_NAME (TREE_TYPE (decl)) == 0
460 || TREE_CODE (TYPE_NAME (TREE_TYPE (decl))) == IDENTIFIER_NODE
461 || (TREE_CODE (TYPE_NAME (TREE_TYPE (decl))) == TYPE_DECL
462 && DECL_ARTIFICIAL (TYPE_NAME (TREE_TYPE (decl)))
463 && ! DECL_ARTIFICIAL (decl))))
464 TYPE_NAME (TREE_TYPE (decl)) = decl;
465
466 return decl;
467 }
468 \f
469 /* Do little here. Set up the standard declarations later after the
470 front end has been run. */
471
472 void
473 gnat_init_decl_processing (void)
474 {
475 input_line = 0;
476
477 /* Make the binding_level structure for global names. */
478 current_function_decl = 0;
479 current_binding_level = 0;
480 free_binding_level = 0;
481 pushlevel (0);
482 global_binding_level = current_binding_level;
483
484 build_common_tree_nodes (0);
485
486 /* In Ada, we use a signed type for SIZETYPE. Use the signed type
487 corresponding to the size of Pmode. In most cases when ptr_mode and
488 Pmode differ, C will use the width of ptr_mode as sizetype. But we get
489 far better code using the width of Pmode. Make this here since we need
490 this before we can expand the GNAT types. */
491 set_sizetype (gnat_type_for_size (GET_MODE_BITSIZE (Pmode), 0));
492 build_common_tree_nodes_2 (0);
493
494 pushdecl (build_decl (TYPE_DECL, get_identifier (SIZE_TYPE), sizetype));
495
496 /* We need to make the integer type before doing anything else.
497 We stitch this in to the appropriate GNAT type later. */
498 pushdecl (build_decl (TYPE_DECL, get_identifier ("integer"),
499 integer_type_node));
500 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
501 char_type_node));
502
503 ptr_void_type_node = build_pointer_type (void_type_node);
504
505 }
506
507 /* Create the predefined scalar types such as `integer_type_node' needed
508 in the gcc back-end and initialize the global binding level. */
509
510 void
511 init_gigi_decls (tree long_long_float_type, tree exception_type)
512 {
513 tree endlink, decl;
514 unsigned int i;
515
516 /* Set the types that GCC and Gigi use from the front end. We would like
517 to do this for char_type_node, but it needs to correspond to the C
518 char type. */
519 if (TREE_CODE (TREE_TYPE (long_long_float_type)) == INTEGER_TYPE)
520 {
521 /* In this case, the builtin floating point types are VAX float,
522 so make up a type for use. */
523 longest_float_type_node = make_node (REAL_TYPE);
524 TYPE_PRECISION (longest_float_type_node) = LONG_DOUBLE_TYPE_SIZE;
525 layout_type (longest_float_type_node);
526 pushdecl (build_decl (TYPE_DECL, get_identifier ("longest float type"),
527 longest_float_type_node));
528 }
529 else
530 longest_float_type_node = TREE_TYPE (long_long_float_type);
531
532 except_type_node = TREE_TYPE (exception_type);
533
534 unsigned_type_node = gnat_type_for_size (INT_TYPE_SIZE, 1);
535 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
536 unsigned_type_node));
537
538 void_type_decl_node
539 = pushdecl (build_decl (TYPE_DECL, get_identifier ("void"),
540 void_type_node));
541
542 void_ftype = build_function_type (void_type_node, NULL_TREE);
543 ptr_void_ftype = build_pointer_type (void_ftype);
544
545 /* Now declare runtime functions. */
546 endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
547
548 /* malloc is a function declaration tree for a function to allocate
549 memory. */
550 malloc_decl = create_subprog_decl (get_identifier ("__gnat_malloc"),
551 NULL_TREE,
552 build_function_type (ptr_void_type_node,
553 tree_cons (NULL_TREE,
554 sizetype,
555 endlink)),
556 NULL_TREE, 0, 1, 1, 0);
557
558 /* free is a function declaration tree for a function to free memory. */
559 free_decl
560 = create_subprog_decl (get_identifier ("__gnat_free"), NULL_TREE,
561 build_function_type (void_type_node,
562 tree_cons (NULL_TREE,
563 ptr_void_type_node,
564 endlink)),
565 NULL_TREE, 0, 1, 1, 0);
566
567 /* Make the types and functions used for exception processing. */
568 jmpbuf_type
569 = build_array_type (gnat_type_for_mode (Pmode, 0),
570 build_index_type (build_int_2 (5, 0)));
571 pushdecl (build_decl (TYPE_DECL, get_identifier ("JMPBUF_T"), jmpbuf_type));
572 jmpbuf_ptr_type = build_pointer_type (jmpbuf_type);
573
574 /* Functions to get and set the jumpbuf pointer for the current thread. */
575 get_jmpbuf_decl
576 = create_subprog_decl
577 (get_identifier ("system__soft_links__get_jmpbuf_address_soft"),
578 NULL_TREE, build_function_type (jmpbuf_ptr_type, NULL_TREE),
579 NULL_TREE, 0, 1, 1, 0);
580
581 set_jmpbuf_decl
582 = create_subprog_decl
583 (get_identifier ("system__soft_links__set_jmpbuf_address_soft"),
584 NULL_TREE,
585 build_function_type (void_type_node,
586 tree_cons (NULL_TREE, jmpbuf_ptr_type, endlink)),
587 NULL_TREE, 0, 1, 1, 0);
588
589 /* Function to get the current exception. */
590 get_excptr_decl
591 = create_subprog_decl
592 (get_identifier ("system__soft_links__get_gnat_exception"),
593 NULL_TREE,
594 build_function_type (build_pointer_type (except_type_node), NULL_TREE),
595 NULL_TREE, 0, 1, 1, 0);
596
597 /* Functions that raise exceptions. */
598 raise_nodefer_decl
599 = create_subprog_decl
600 (get_identifier ("__gnat_raise_nodefer_with_msg"), NULL_TREE,
601 build_function_type (void_type_node,
602 tree_cons (NULL_TREE,
603 build_pointer_type (except_type_node),
604 endlink)),
605 NULL_TREE, 0, 1, 1, 0);
606
607 /* Hooks to call when entering/leaving an exception handler. */
608 begin_handler_decl
609 = create_subprog_decl (get_identifier ("__gnat_begin_handler"), NULL_TREE,
610 build_function_type (void_type_node,
611 tree_cons (NULL_TREE,
612 ptr_void_type_node,
613 endlink)),
614 NULL_TREE, 0, 1, 1, 0);
615
616 end_handler_decl
617 = create_subprog_decl (get_identifier ("__gnat_end_handler"), NULL_TREE,
618 build_function_type (void_type_node,
619 tree_cons (NULL_TREE,
620 ptr_void_type_node,
621 endlink)),
622 NULL_TREE, 0, 1, 1, 0);
623
624 /* If in no exception handlers mode, all raise statements are redirected to
625 __gnat_last_chance_handler. No need to redefine raise_nodefer_decl, since
626 this procedure will never be called in this mode. */
627 if (No_Exception_Handlers_Set ())
628 {
629 decl
630 = create_subprog_decl
631 (get_identifier ("__gnat_last_chance_handler"), NULL_TREE,
632 build_function_type (void_type_node,
633 tree_cons (NULL_TREE,
634 build_pointer_type (char_type_node),
635 tree_cons (NULL_TREE,
636 integer_type_node,
637 endlink))),
638 NULL_TREE, 0, 1, 1, 0);
639
640 for (i = 0; i < ARRAY_SIZE (gnat_raise_decls); i++)
641 gnat_raise_decls[i] = decl;
642 }
643 else
644 /* Otherwise, make one decl for each exception reason. */
645 for (i = 0; i < ARRAY_SIZE (gnat_raise_decls); i++)
646 {
647 char name[17];
648
649 sprintf (name, "__gnat_rcheck_%.2d", i);
650 gnat_raise_decls[i]
651 = create_subprog_decl
652 (get_identifier (name), NULL_TREE,
653 build_function_type (void_type_node,
654 tree_cons (NULL_TREE,
655 build_pointer_type
656 (char_type_node),
657 tree_cons (NULL_TREE,
658 integer_type_node,
659 endlink))),
660 NULL_TREE, 0, 1, 1, 0);
661 }
662
663 /* Indicate that these never return. */
664 TREE_THIS_VOLATILE (raise_nodefer_decl) = 1;
665 TREE_SIDE_EFFECTS (raise_nodefer_decl) = 1;
666 TREE_TYPE (raise_nodefer_decl)
667 = build_qualified_type (TREE_TYPE (raise_nodefer_decl),
668 TYPE_QUAL_VOLATILE);
669
670 for (i = 0; i < ARRAY_SIZE (gnat_raise_decls); i++)
671 {
672 TREE_THIS_VOLATILE (gnat_raise_decls[i]) = 1;
673 TREE_SIDE_EFFECTS (gnat_raise_decls[i]) = 1;
674 TREE_TYPE (gnat_raise_decls[i])
675 = build_qualified_type (TREE_TYPE (gnat_raise_decls[i]),
676 TYPE_QUAL_VOLATILE);
677 }
678
679 /* setjmp returns an integer and has one operand, which is a pointer to
680 a jmpbuf. */
681 setjmp_decl
682 = create_subprog_decl
683 (get_identifier ("__builtin_setjmp"), NULL_TREE,
684 build_function_type (integer_type_node,
685 tree_cons (NULL_TREE, jmpbuf_ptr_type, endlink)),
686 NULL_TREE, 0, 1, 1, 0);
687
688 DECL_BUILT_IN_CLASS (setjmp_decl) = BUILT_IN_NORMAL;
689 DECL_FUNCTION_CODE (setjmp_decl) = BUILT_IN_SETJMP;
690
691 /* update_setjmp_buf updates a setjmp buffer from the current stack pointer
692 address. */
693 update_setjmp_buf_decl
694 = create_subprog_decl
695 (get_identifier ("__builtin_update_setjmp_buf"), NULL_TREE,
696 build_function_type (void_type_node,
697 tree_cons (NULL_TREE, jmpbuf_ptr_type, endlink)),
698 NULL_TREE, 0, 1, 1, 0);
699
700 DECL_BUILT_IN_CLASS (update_setjmp_buf_decl) = BUILT_IN_NORMAL;
701 DECL_FUNCTION_CODE (update_setjmp_buf_decl) = BUILT_IN_UPDATE_SETJMP_BUF;
702
703 main_identifier_node = get_identifier ("main");
704 }
705 \f
706 /* Given a record type (RECORD_TYPE) and a chain of FIELD_DECL
707 nodes (FIELDLIST), finish constructing the record or union type.
708 If HAS_REP is nonzero, this record has a rep clause; don't call
709 layout_type but merely set the size and alignment ourselves.
710 If DEFER_DEBUG is nonzero, do not call the debugging routines
711 on this type; it will be done later. */
712
713 void
714 finish_record_type (tree record_type,
715 tree fieldlist,
716 int has_rep,
717 int defer_debug)
718 {
719 enum tree_code code = TREE_CODE (record_type);
720 tree ada_size = bitsize_zero_node;
721 tree size = bitsize_zero_node;
722 tree size_unit = size_zero_node;
723 int var_size = 0;
724 tree field;
725
726 TYPE_FIELDS (record_type) = fieldlist;
727
728 if (TYPE_NAME (record_type) != 0
729 && TREE_CODE (TYPE_NAME (record_type)) == TYPE_DECL)
730 TYPE_STUB_DECL (record_type) = TYPE_NAME (record_type);
731 else
732 TYPE_STUB_DECL (record_type)
733 = pushdecl (build_decl (TYPE_DECL, TYPE_NAME (record_type),
734 record_type));
735
736 /* We don't need both the typedef name and the record name output in
737 the debugging information, since they are the same. */
738 DECL_ARTIFICIAL (TYPE_STUB_DECL (record_type)) = 1;
739
740 /* Globally initialize the record first. If this is a rep'ed record,
741 that just means some initializations; otherwise, layout the record. */
742
743 if (has_rep)
744 {
745 TYPE_ALIGN (record_type) = MAX (BITS_PER_UNIT, TYPE_ALIGN (record_type));
746 TYPE_MODE (record_type) = BLKmode;
747 if (TYPE_SIZE (record_type) == 0)
748 {
749 TYPE_SIZE (record_type) = bitsize_zero_node;
750 TYPE_SIZE_UNIT (record_type) = size_zero_node;
751 }
752 /* For all-repped records with a size specified, lay the QUAL_UNION_TYPE
753 out just like a UNION_TYPE, since the size will be fixed. */
754 else if (code == QUAL_UNION_TYPE)
755 code = UNION_TYPE;
756 }
757 else
758 {
759 /* Ensure there isn't a size already set. There can be in an error
760 case where there is a rep clause but all fields have errors and
761 no longer have a position. */
762 TYPE_SIZE (record_type) = 0;
763 layout_type (record_type);
764 }
765
766 /* At this point, the position and size of each field is known. It was
767 either set before entry by a rep clause, or by laying out the type above.
768
769 We now run a pass over the fields (in reverse order for QUAL_UNION_TYPEs)
770 to compute the Ada size; the GCC size and alignment (for rep'ed records
771 that are not padding types); and the mode (for rep'ed records). We also
772 clear the DECL_BIT_FIELD indication for the cases we know have not been
773 handled yet, and adjust DECL_NONADDRESSABLE_P accordingly. */
774
775 if (code == QUAL_UNION_TYPE)
776 fieldlist = nreverse (fieldlist);
777
778 for (field = fieldlist; field; field = TREE_CHAIN (field))
779 {
780 tree pos = bit_position (field);
781
782 tree type = TREE_TYPE (field);
783 tree this_size = DECL_SIZE (field);
784 tree this_size_unit = DECL_SIZE_UNIT (field);
785 tree this_ada_size = DECL_SIZE (field);
786
787 /* We need to make an XVE/XVU record if any field has variable size,
788 whether or not the record does. For example, if we have an union,
789 it may be that all fields, rounded up to the alignment, have the
790 same size, in which case we'll use that size. But the debug
791 output routines (except Dwarf2) won't be able to output the fields,
792 so we need to make the special record. */
793 if (TREE_CODE (this_size) != INTEGER_CST)
794 var_size = 1;
795
796 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
797 || TREE_CODE (type) == QUAL_UNION_TYPE)
798 && ! TYPE_IS_FAT_POINTER_P (type)
799 && ! TYPE_CONTAINS_TEMPLATE_P (type)
800 && TYPE_ADA_SIZE (type) != 0)
801 this_ada_size = TYPE_ADA_SIZE (type);
802
803 /* Clear DECL_BIT_FIELD for the cases layout_decl does not handle. */
804 if (DECL_BIT_FIELD (field) && !STRICT_ALIGNMENT
805 && value_factor_p (pos, BITS_PER_UNIT)
806 && operand_equal_p (this_size, TYPE_SIZE (type), 0))
807 DECL_BIT_FIELD (field) = 0;
808
809 /* If we still have DECL_BIT_FIELD set at this point, we know the field
810 is technically not addressable. Except that it can actually be
811 addressed if the field is BLKmode and happens to be properly
812 aligned. */
813 DECL_NONADDRESSABLE_P (field)
814 |= DECL_BIT_FIELD (field) && DECL_MODE (field) != BLKmode;
815
816 if (has_rep && ! DECL_BIT_FIELD (field))
817 TYPE_ALIGN (record_type)
818 = MAX (TYPE_ALIGN (record_type), DECL_ALIGN (field));
819
820 switch (code)
821 {
822 case UNION_TYPE:
823 ada_size = size_binop (MAX_EXPR, ada_size, this_ada_size);
824 size = size_binop (MAX_EXPR, size, this_size);
825 size_unit = size_binop (MAX_EXPR, size_unit, this_size_unit);
826 break;
827
828 case QUAL_UNION_TYPE:
829 ada_size
830 = fold (build (COND_EXPR, bitsizetype, DECL_QUALIFIER (field),
831 this_ada_size, ada_size));
832 size = fold (build (COND_EXPR, bitsizetype, DECL_QUALIFIER (field),
833 this_size, size));
834 size_unit = fold (build (COND_EXPR, sizetype, DECL_QUALIFIER (field),
835 this_size_unit, size_unit));
836 break;
837
838 case RECORD_TYPE:
839 /* Since we know here that all fields are sorted in order of
840 increasing bit position, the size of the record is one
841 higher than the ending bit of the last field processed
842 unless we have a rep clause, since in that case we might
843 have a field outside a QUAL_UNION_TYPE that has a higher ending
844 position. So use a MAX in that case. Also, if this field is a
845 QUAL_UNION_TYPE, we need to take into account the previous size in
846 the case of empty variants. */
847 ada_size
848 = merge_sizes (ada_size, pos, this_ada_size,
849 TREE_CODE (type) == QUAL_UNION_TYPE, has_rep);
850 size = merge_sizes (size, pos, this_size,
851 TREE_CODE (type) == QUAL_UNION_TYPE, has_rep);
852 size_unit
853 = merge_sizes (size_unit, byte_position (field), this_size_unit,
854 TREE_CODE (type) == QUAL_UNION_TYPE, has_rep);
855 break;
856
857 default:
858 abort ();
859 }
860 }
861
862 if (code == QUAL_UNION_TYPE)
863 nreverse (fieldlist);
864
865 /* If this is a padding record, we never want to make the size smaller than
866 what was specified in it, if any. */
867 if (TREE_CODE (record_type) == RECORD_TYPE
868 && TYPE_IS_PADDING_P (record_type) && TYPE_SIZE (record_type) != 0)
869 {
870 size = TYPE_SIZE (record_type);
871 size_unit = TYPE_SIZE_UNIT (record_type);
872 }
873
874 /* Now set any of the values we've just computed that apply. */
875 if (! TYPE_IS_FAT_POINTER_P (record_type)
876 && ! TYPE_CONTAINS_TEMPLATE_P (record_type))
877 SET_TYPE_ADA_SIZE (record_type, ada_size);
878
879 if (has_rep)
880 {
881 if (! (TREE_CODE (record_type) == RECORD_TYPE
882 && TYPE_IS_PADDING_P (record_type)
883 && CONTAINS_PLACEHOLDER_P (size)))
884 {
885 TYPE_SIZE (record_type) = round_up (size, TYPE_ALIGN (record_type));
886 TYPE_SIZE_UNIT (record_type)
887 = round_up (size_unit,
888 TYPE_ALIGN (record_type) / BITS_PER_UNIT);
889 }
890
891 compute_record_mode (record_type);
892 }
893
894 if (! defer_debug)
895 {
896 /* If this record is of variable size, rename it so that the
897 debugger knows it is and make a new, parallel, record
898 that tells the debugger how the record is laid out. See
899 exp_dbug.ads. But don't do this for records that are padding
900 since they confuse GDB. */
901 if (var_size
902 && ! (TREE_CODE (record_type) == RECORD_TYPE
903 && TYPE_IS_PADDING_P (record_type)))
904 {
905 tree new_record_type
906 = make_node (TREE_CODE (record_type) == QUAL_UNION_TYPE
907 ? UNION_TYPE : TREE_CODE (record_type));
908 tree orig_id = DECL_NAME (TYPE_STUB_DECL (record_type));
909 tree new_id
910 = concat_id_with_name (orig_id,
911 TREE_CODE (record_type) == QUAL_UNION_TYPE
912 ? "XVU" : "XVE");
913 tree last_pos = bitsize_zero_node;
914 tree old_field;
915 tree prev_old_field = 0;
916
917 TYPE_NAME (new_record_type) = new_id;
918 TYPE_ALIGN (new_record_type) = BIGGEST_ALIGNMENT;
919 TYPE_STUB_DECL (new_record_type)
920 = pushdecl (build_decl (TYPE_DECL, new_id, new_record_type));
921 DECL_ARTIFICIAL (TYPE_STUB_DECL (new_record_type)) = 1;
922 DECL_IGNORED_P (TYPE_STUB_DECL (new_record_type))
923 = DECL_IGNORED_P (TYPE_STUB_DECL (record_type));
924 TYPE_SIZE (new_record_type) = size_int (TYPE_ALIGN (record_type));
925
926 /* Now scan all the fields, replacing each field with a new
927 field corresponding to the new encoding. */
928 for (old_field = TYPE_FIELDS (record_type); old_field != 0;
929 old_field = TREE_CHAIN (old_field))
930 {
931 tree field_type = TREE_TYPE (old_field);
932 tree field_name = DECL_NAME (old_field);
933 tree new_field;
934 tree curpos = bit_position (old_field);
935 int var = 0;
936 unsigned int align = 0;
937 tree pos;
938
939 /* See how the position was modified from the last position.
940
941 There are two basic cases we support: a value was added
942 to the last position or the last position was rounded to
943 a boundary and they something was added. Check for the
944 first case first. If not, see if there is any evidence
945 of rounding. If so, round the last position and try
946 again.
947
948 If this is a union, the position can be taken as zero. */
949
950 if (TREE_CODE (new_record_type) == UNION_TYPE)
951 pos = bitsize_zero_node, align = 0;
952 else
953 pos = compute_related_constant (curpos, last_pos);
954
955 if (pos == 0 && TREE_CODE (curpos) == MULT_EXPR
956 && TREE_CODE (TREE_OPERAND (curpos, 1)) == INTEGER_CST)
957 {
958 align = TREE_INT_CST_LOW (TREE_OPERAND (curpos, 1));
959 pos = compute_related_constant (curpos,
960 round_up (last_pos, align));
961 }
962 else if (pos == 0 && TREE_CODE (curpos) == PLUS_EXPR
963 && TREE_CODE (TREE_OPERAND (curpos, 1)) == INTEGER_CST
964 && TREE_CODE (TREE_OPERAND (curpos, 0)) == MULT_EXPR
965 && host_integerp (TREE_OPERAND
966 (TREE_OPERAND (curpos, 0), 1),
967 1))
968 {
969 align
970 = tree_low_cst
971 (TREE_OPERAND (TREE_OPERAND (curpos, 0), 1), 1);
972 pos = compute_related_constant (curpos,
973 round_up (last_pos, align));
974 }
975 else if (potential_alignment_gap (prev_old_field, old_field,
976 pos))
977 {
978 align = TYPE_ALIGN (field_type);
979 pos = compute_related_constant (curpos,
980 round_up (last_pos, align));
981 }
982
983 /* If we can't compute a position, set it to zero.
984
985 ??? We really should abort here, but it's too much work
986 to get this correct for all cases. */
987
988 if (pos == 0)
989 pos = bitsize_zero_node;
990
991 /* See if this type is variable-size and make a new type
992 and indicate the indirection if so. */
993 if (TREE_CODE (DECL_SIZE (old_field)) != INTEGER_CST)
994 {
995 field_type = build_pointer_type (field_type);
996 var = 1;
997 }
998
999 /* Make a new field name, if necessary. */
1000 if (var || align != 0)
1001 {
1002 char suffix[6];
1003
1004 if (align != 0)
1005 sprintf (suffix, "XV%c%u", var ? 'L' : 'A',
1006 align / BITS_PER_UNIT);
1007 else
1008 strcpy (suffix, "XVL");
1009
1010 field_name = concat_id_with_name (field_name, suffix);
1011 }
1012
1013 new_field = create_field_decl (field_name, field_type,
1014 new_record_type, 0,
1015 DECL_SIZE (old_field), pos, 0);
1016 TREE_CHAIN (new_field) = TYPE_FIELDS (new_record_type);
1017 TYPE_FIELDS (new_record_type) = new_field;
1018
1019 /* If old_field is a QUAL_UNION_TYPE, take its size as being
1020 zero. The only time it's not the last field of the record
1021 is when there are other components at fixed positions after
1022 it (meaning there was a rep clause for every field) and we
1023 want to be able to encode them. */
1024 last_pos = size_binop (PLUS_EXPR, bit_position (old_field),
1025 (TREE_CODE (TREE_TYPE (old_field))
1026 == QUAL_UNION_TYPE)
1027 ? bitsize_zero_node
1028 : DECL_SIZE (old_field));
1029 prev_old_field = old_field;
1030 }
1031
1032 TYPE_FIELDS (new_record_type)
1033 = nreverse (TYPE_FIELDS (new_record_type));
1034
1035 rest_of_type_compilation (new_record_type, global_bindings_p ());
1036 }
1037
1038 rest_of_type_compilation (record_type, global_bindings_p ());
1039 }
1040 }
1041
1042 /* Utility function of above to merge LAST_SIZE, the previous size of a record
1043 with FIRST_BIT and SIZE that describe a field. SPECIAL is nonzero
1044 if this represents a QUAL_UNION_TYPE in which case we must look for
1045 COND_EXPRs and replace a value of zero with the old size. If HAS_REP
1046 is nonzero, we must take the MAX of the end position of this field
1047 with LAST_SIZE. In all other cases, we use FIRST_BIT plus SIZE.
1048
1049 We return an expression for the size. */
1050
1051 static tree
1052 merge_sizes (tree last_size,
1053 tree first_bit,
1054 tree size,
1055 int special,
1056 int has_rep)
1057 {
1058 tree type = TREE_TYPE (last_size);
1059 tree new;
1060
1061 if (! special || TREE_CODE (size) != COND_EXPR)
1062 {
1063 new = size_binop (PLUS_EXPR, first_bit, size);
1064 if (has_rep)
1065 new = size_binop (MAX_EXPR, last_size, new);
1066 }
1067
1068 else
1069 new = fold (build (COND_EXPR, type, TREE_OPERAND (size, 0),
1070 integer_zerop (TREE_OPERAND (size, 1))
1071 ? last_size : merge_sizes (last_size, first_bit,
1072 TREE_OPERAND (size, 1),
1073 1, has_rep),
1074 integer_zerop (TREE_OPERAND (size, 2))
1075 ? last_size : merge_sizes (last_size, first_bit,
1076 TREE_OPERAND (size, 2),
1077 1, has_rep)));
1078
1079 /* We don't need any NON_VALUE_EXPRs and they can confuse us (especially
1080 when fed through substitute_in_expr) into thinking that a constant
1081 size is not constant. */
1082 while (TREE_CODE (new) == NON_LVALUE_EXPR)
1083 new = TREE_OPERAND (new, 0);
1084
1085 return new;
1086 }
1087
1088 /* Utility function of above to see if OP0 and OP1, both of SIZETYPE, are
1089 related by the addition of a constant. Return that constant if so. */
1090
1091 static tree
1092 compute_related_constant (tree op0, tree op1)
1093 {
1094 tree op0_var, op1_var;
1095 tree op0_con = split_plus (op0, &op0_var);
1096 tree op1_con = split_plus (op1, &op1_var);
1097 tree result = size_binop (MINUS_EXPR, op0_con, op1_con);
1098
1099 if (operand_equal_p (op0_var, op1_var, 0))
1100 return result;
1101 else if (operand_equal_p (op0, size_binop (PLUS_EXPR, op1_var, result), 0))
1102 return result;
1103 else
1104 return 0;
1105 }
1106
1107 /* Utility function of above to split a tree OP which may be a sum, into a
1108 constant part, which is returned, and a variable part, which is stored
1109 in *PVAR. *PVAR may be bitsize_zero_node. All operations must be of
1110 bitsizetype. */
1111
1112 static tree
1113 split_plus (tree in, tree *pvar)
1114 {
1115 /* Strip NOPS in order to ease the tree traversal and maximize the
1116 potential for constant or plus/minus discovery. We need to be careful
1117 to always return and set *pvar to bitsizetype trees, but it's worth
1118 the effort. */
1119 STRIP_NOPS (in);
1120
1121 *pvar = convert (bitsizetype, in);
1122
1123 if (TREE_CODE (in) == INTEGER_CST)
1124 {
1125 *pvar = bitsize_zero_node;
1126 return convert (bitsizetype, in);
1127 }
1128 else if (TREE_CODE (in) == PLUS_EXPR || TREE_CODE (in) == MINUS_EXPR)
1129 {
1130 tree lhs_var, rhs_var;
1131 tree lhs_con = split_plus (TREE_OPERAND (in, 0), &lhs_var);
1132 tree rhs_con = split_plus (TREE_OPERAND (in, 1), &rhs_var);
1133
1134 if (lhs_var == TREE_OPERAND (in, 0)
1135 && rhs_var == TREE_OPERAND (in, 1))
1136 return bitsize_zero_node;
1137
1138 *pvar = size_binop (TREE_CODE (in), lhs_var, rhs_var);
1139 return size_binop (TREE_CODE (in), lhs_con, rhs_con);
1140 }
1141 else
1142 return bitsize_zero_node;
1143 }
1144 \f
1145 /* Return a FUNCTION_TYPE node. RETURN_TYPE is the type returned by the
1146 subprogram. If it is void_type_node, then we are dealing with a procedure,
1147 otherwise we are dealing with a function. PARAM_DECL_LIST is a list of
1148 PARM_DECL nodes that are the subprogram arguments. CICO_LIST is the
1149 copy-in/copy-out list to be stored into TYPE_CICO_LIST.
1150 RETURNS_UNCONSTRAINED is nonzero if the function returns an unconstrained
1151 object. RETURNS_BY_REF is nonzero if the function returns by reference.
1152 RETURNS_WITH_DSP is nonzero if the function is to return with a
1153 depressed stack pointer. */
1154
1155 tree
1156 create_subprog_type (tree return_type,
1157 tree param_decl_list,
1158 tree cico_list,
1159 int returns_unconstrained,
1160 int returns_by_ref,
1161 int returns_with_dsp)
1162 {
1163 /* A chain of TREE_LIST nodes whose TREE_VALUEs are the data type nodes of
1164 the subprogram formal parameters. This list is generated by traversing the
1165 input list of PARM_DECL nodes. */
1166 tree param_type_list = NULL;
1167 tree param_decl;
1168 tree type;
1169
1170 for (param_decl = param_decl_list; param_decl;
1171 param_decl = TREE_CHAIN (param_decl))
1172 param_type_list = tree_cons (NULL_TREE, TREE_TYPE (param_decl),
1173 param_type_list);
1174
1175 /* The list of the function parameter types has to be terminated by the void
1176 type to signal to the back-end that we are not dealing with a variable
1177 parameter subprogram, but that the subprogram has a fixed number of
1178 parameters. */
1179 param_type_list = tree_cons (NULL_TREE, void_type_node, param_type_list);
1180
1181 /* The list of argument types has been created in reverse
1182 so nreverse it. */
1183 param_type_list = nreverse (param_type_list);
1184
1185 type = build_function_type (return_type, param_type_list);
1186
1187 /* TYPE may have been shared since GCC hashes types. If it has a CICO_LIST
1188 or the new type should, make a copy of TYPE. Likewise for
1189 RETURNS_UNCONSTRAINED and RETURNS_BY_REF. */
1190 if (TYPE_CI_CO_LIST (type) != 0 || cico_list != 0
1191 || TYPE_RETURNS_UNCONSTRAINED_P (type) != returns_unconstrained
1192 || TYPE_RETURNS_BY_REF_P (type) != returns_by_ref)
1193 type = copy_type (type);
1194
1195 SET_TYPE_CI_CO_LIST (type, cico_list);
1196 TYPE_RETURNS_UNCONSTRAINED_P (type) = returns_unconstrained;
1197 TYPE_RETURNS_STACK_DEPRESSED (type) = returns_with_dsp;
1198 TYPE_RETURNS_BY_REF_P (type) = returns_by_ref;
1199 return type;
1200 }
1201 \f
1202 /* Return a copy of TYPE but safe to modify in any way. */
1203
1204 tree
1205 copy_type (tree type)
1206 {
1207 tree new = copy_node (type);
1208
1209 /* copy_node clears this field instead of copying it, because it is
1210 aliased with TREE_CHAIN. */
1211 TYPE_STUB_DECL (new) = TYPE_STUB_DECL (type);
1212
1213 TYPE_POINTER_TO (new) = 0;
1214 TYPE_REFERENCE_TO (new) = 0;
1215 TYPE_MAIN_VARIANT (new) = new;
1216 TYPE_NEXT_VARIANT (new) = 0;
1217
1218 return new;
1219 }
1220 \f
1221 /* Return an INTEGER_TYPE of SIZETYPE with range MIN to MAX and whose
1222 TYPE_INDEX_TYPE is INDEX. */
1223
1224 tree
1225 create_index_type (tree min, tree max, tree index)
1226 {
1227 /* First build a type for the desired range. */
1228 tree type = build_index_2_type (min, max);
1229
1230 /* If this type has the TYPE_INDEX_TYPE we want, return it. Otherwise, if it
1231 doesn't have TYPE_INDEX_TYPE set, set it to INDEX. If TYPE_INDEX_TYPE
1232 is set, but not to INDEX, make a copy of this type with the requested
1233 index type. Note that we have no way of sharing these types, but that's
1234 only a small hole. */
1235 if (TYPE_INDEX_TYPE (type) == index)
1236 return type;
1237 else if (TYPE_INDEX_TYPE (type) != 0)
1238 type = copy_type (type);
1239
1240 SET_TYPE_INDEX_TYPE (type, index);
1241 return type;
1242 }
1243 \f
1244 /* Return a TYPE_DECL node. TYPE_NAME gives the name of the type (a character
1245 string) and TYPE is a ..._TYPE node giving its data type.
1246 ARTIFICIAL_P is nonzero if this is a declaration that was generated
1247 by the compiler. DEBUG_INFO_P is nonzero if we need to write debugging
1248 information about this type. */
1249
1250 tree
1251 create_type_decl (tree type_name,
1252 tree type,
1253 struct attrib *attr_list,
1254 int artificial_p,
1255 int debug_info_p)
1256 {
1257 tree type_decl = build_decl (TYPE_DECL, type_name, type);
1258 enum tree_code code = TREE_CODE (type);
1259
1260 DECL_ARTIFICIAL (type_decl) = artificial_p;
1261 pushdecl (type_decl);
1262 process_attributes (type_decl, attr_list);
1263
1264 /* Pass type declaration information to the debugger unless this is an
1265 UNCONSTRAINED_ARRAY_TYPE, which the debugger does not support,
1266 and ENUMERAL_TYPE or RECORD_TYPE which is handled separately,
1267 a dummy type, which will be completed later, or a type for which
1268 debugging information was not requested. */
1269 if (code == UNCONSTRAINED_ARRAY_TYPE || TYPE_IS_DUMMY_P (type)
1270 || ! debug_info_p)
1271 DECL_IGNORED_P (type_decl) = 1;
1272 else if (code != ENUMERAL_TYPE && code != RECORD_TYPE
1273 && ! ((code == POINTER_TYPE || code == REFERENCE_TYPE)
1274 && TYPE_IS_DUMMY_P (TREE_TYPE (type))))
1275 rest_of_decl_compilation (type_decl, NULL, global_bindings_p (), 0);
1276
1277 return type_decl;
1278 }
1279
1280 /* Returns a GCC VAR_DECL node. VAR_NAME gives the name of the variable.
1281 ASM_NAME is its assembler name (if provided). TYPE is its data type
1282 (a GCC ..._TYPE node). VAR_INIT is the GCC tree for an optional initial
1283 expression; NULL_TREE if none.
1284
1285 CONST_FLAG is nonzero if this variable is constant.
1286
1287 PUBLIC_FLAG is nonzero if this definition is to be made visible outside of
1288 the current compilation unit. This flag should be set when processing the
1289 variable definitions in a package specification. EXTERN_FLAG is nonzero
1290 when processing an external variable declaration (as opposed to a
1291 definition: no storage is to be allocated for the variable here).
1292
1293 STATIC_FLAG is only relevant when not at top level. In that case
1294 it indicates whether to always allocate storage to the variable. */
1295
1296 tree
1297 create_var_decl (tree var_name,
1298 tree asm_name,
1299 tree type,
1300 tree var_init,
1301 int const_flag,
1302 int public_flag,
1303 int extern_flag,
1304 int static_flag,
1305 struct attrib *attr_list)
1306 {
1307 int init_const
1308 = (var_init == 0
1309 ? 0
1310 : (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (TREE_TYPE (var_init))
1311 && (global_bindings_p () || static_flag
1312 ? 0 != initializer_constant_valid_p (var_init,
1313 TREE_TYPE (var_init))
1314 : TREE_CONSTANT (var_init))));
1315 tree var_decl
1316 = build_decl ((const_flag && init_const
1317 /* Only make a CONST_DECL for sufficiently-small objects.
1318 We consider complex double "sufficiently-small" */
1319 && TYPE_SIZE (type) != 0
1320 && host_integerp (TYPE_SIZE_UNIT (type), 1)
1321 && 0 >= compare_tree_int (TYPE_SIZE_UNIT (type),
1322 GET_MODE_SIZE (DCmode)))
1323 ? CONST_DECL : VAR_DECL, var_name, type);
1324 tree assign_init = 0;
1325
1326 /* If this is external, throw away any initializations unless this is a
1327 CONST_DECL (meaning we have a constant); they will be done elsewhere. If
1328 we are defining a global here, leave a constant initialization and save
1329 any variable elaborations for the elaboration routine. Otherwise, if
1330 the initializing expression is not the same as TYPE, generate the
1331 initialization with an assignment statement, since it knows how
1332 to do the required adjustents. If we are just annotating types,
1333 throw away the initialization if it isn't a constant. */
1334
1335 if ((extern_flag && TREE_CODE (var_decl) != CONST_DECL)
1336 || (type_annotate_only && var_init != 0 && ! TREE_CONSTANT (var_init)))
1337 var_init = 0;
1338
1339 if (global_bindings_p () && var_init != 0 && ! init_const)
1340 {
1341 add_pending_elaborations (var_decl, var_init);
1342 var_init = 0;
1343 }
1344
1345 else if (var_init != 0
1346 && ((TYPE_MAIN_VARIANT (TREE_TYPE (var_init))
1347 != TYPE_MAIN_VARIANT (type))
1348 || (static_flag && ! init_const)))
1349 assign_init = var_init, var_init = 0;
1350
1351 DECL_INITIAL (var_decl) = var_init;
1352 TREE_READONLY (var_decl) = const_flag;
1353 DECL_EXTERNAL (var_decl) = extern_flag;
1354 TREE_PUBLIC (var_decl) = public_flag || extern_flag;
1355 TREE_CONSTANT (var_decl) = TREE_CODE (var_decl) == CONST_DECL;
1356 TREE_THIS_VOLATILE (var_decl) = TREE_SIDE_EFFECTS (var_decl)
1357 = TYPE_VOLATILE (type);
1358
1359 /* At the global binding level we need to allocate static storage for the
1360 variable if and only if its not external. If we are not at the top level
1361 we allocate automatic storage unless requested not to. */
1362 TREE_STATIC (var_decl) = global_bindings_p () ? !extern_flag : static_flag;
1363
1364 if (asm_name != 0)
1365 SET_DECL_ASSEMBLER_NAME (var_decl, asm_name);
1366
1367 process_attributes (var_decl, attr_list);
1368
1369 /* Add this decl to the current binding level and generate any
1370 needed code and RTL. */
1371 var_decl = pushdecl (var_decl);
1372 expand_decl (var_decl);
1373
1374 if (DECL_CONTEXT (var_decl) != 0)
1375 expand_decl_init (var_decl);
1376
1377 /* If this is volatile, force it into memory. */
1378 if (TREE_SIDE_EFFECTS (var_decl))
1379 gnat_mark_addressable (var_decl);
1380
1381 if (TREE_CODE (var_decl) != CONST_DECL)
1382 rest_of_decl_compilation (var_decl, 0, global_bindings_p (), 0);
1383
1384 if (assign_init != 0)
1385 {
1386 /* If VAR_DECL has a padded type, convert it to the unpadded
1387 type so the assignment is done properly. */
1388 tree lhs = var_decl;
1389
1390 if (TREE_CODE (TREE_TYPE (lhs)) == RECORD_TYPE
1391 && TYPE_IS_PADDING_P (TREE_TYPE (lhs)))
1392 lhs = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (lhs))), lhs);
1393
1394 expand_expr_stmt (build_binary_op (MODIFY_EXPR, NULL_TREE, lhs,
1395 assign_init));
1396 }
1397
1398 return var_decl;
1399 }
1400 \f
1401 /* Returns a FIELD_DECL node. FIELD_NAME the field name, FIELD_TYPE is its
1402 type, and RECORD_TYPE is the type of the parent. PACKED is nonzero if
1403 this field is in a record type with a "pragma pack". If SIZE is nonzero
1404 it is the specified size for this field. If POS is nonzero, it is the bit
1405 position. If ADDRESSABLE is nonzero, it means we are allowed to take
1406 the address of this field for aliasing purposes. */
1407
1408 tree
1409 create_field_decl (tree field_name,
1410 tree field_type,
1411 tree record_type,
1412 int packed,
1413 tree size,
1414 tree pos,
1415 int addressable)
1416 {
1417 tree field_decl = build_decl (FIELD_DECL, field_name, field_type);
1418
1419 DECL_CONTEXT (field_decl) = record_type;
1420 TREE_READONLY (field_decl) = TYPE_READONLY (field_type);
1421
1422 /* If FIELD_TYPE is BLKmode, we must ensure this is aligned to at least a
1423 byte boundary since GCC cannot handle less-aligned BLKmode bitfields. */
1424 if (packed && TYPE_MODE (field_type) == BLKmode)
1425 DECL_ALIGN (field_decl) = BITS_PER_UNIT;
1426
1427 /* If a size is specified, use it. Otherwise, if the record type is packed
1428 compute a size to use, which may differ from the object's natural size.
1429 We always set a size in this case to trigger the checks for bitfield
1430 creation below, which is typically required when no position has been
1431 specified. */
1432 if (size != 0)
1433 size = convert (bitsizetype, size);
1434 else if (packed == 1)
1435 {
1436 size = rm_size (field_type);
1437
1438 /* For a constant size larger than MAX_FIXED_MODE_SIZE, round up to
1439 byte. */
1440 if (TREE_CODE (size) == INTEGER_CST
1441 && compare_tree_int (size, MAX_FIXED_MODE_SIZE) > 0)
1442 size = round_up (size, BITS_PER_UNIT);
1443 }
1444
1445 /* Make a bitfield if a size is specified for two reasons: first if the size
1446 differs from the natural size. Second, if the alignment is insufficient.
1447 There are a number of ways the latter can be true.
1448
1449 We never make a bitfield if the type of the field has a nonconstant size,
1450 or if it is claimed to be addressable, because no such entity requiring
1451 bitfield operations should reach here.
1452
1453 We do *preventively* make a bitfield when there might be the need for it
1454 but we don't have all the necessary information to decide, as is the case
1455 of a field with no specified position in a packed record.
1456
1457 We also don't look at STRICT_ALIGNMENT here, and rely on later processing
1458 in layout_decl or finish_record_type to clear the bit_field indication if
1459 it is in fact not needed. */
1460 if (size != 0 && TREE_CODE (size) == INTEGER_CST
1461 && TREE_CODE (TYPE_SIZE (field_type)) == INTEGER_CST
1462 && ! addressable
1463 && (! operand_equal_p (TYPE_SIZE (field_type), size, 0)
1464 || (pos != 0
1465 && ! value_zerop (size_binop (TRUNC_MOD_EXPR, pos,
1466 bitsize_int (TYPE_ALIGN
1467 (field_type)))))
1468 || packed
1469 || (TYPE_ALIGN (record_type) != 0
1470 && TYPE_ALIGN (record_type) < TYPE_ALIGN (field_type))))
1471 {
1472 DECL_BIT_FIELD (field_decl) = 1;
1473 DECL_SIZE (field_decl) = size;
1474 if (! packed && pos == 0)
1475 DECL_ALIGN (field_decl)
1476 = (TYPE_ALIGN (record_type) != 0
1477 ? MIN (TYPE_ALIGN (record_type), TYPE_ALIGN (field_type))
1478 : TYPE_ALIGN (field_type));
1479 }
1480
1481 DECL_PACKED (field_decl) = pos != 0 ? DECL_BIT_FIELD (field_decl) : packed;
1482 DECL_ALIGN (field_decl)
1483 = MAX (DECL_ALIGN (field_decl),
1484 DECL_BIT_FIELD (field_decl) ? 1
1485 : packed && TYPE_MODE (field_type) != BLKmode ? BITS_PER_UNIT
1486 : TYPE_ALIGN (field_type));
1487
1488 if (pos != 0)
1489 {
1490 /* We need to pass in the alignment the DECL is known to have.
1491 This is the lowest-order bit set in POS, but no more than
1492 the alignment of the record, if one is specified. Note
1493 that an alignment of 0 is taken as infinite. */
1494 unsigned int known_align;
1495
1496 if (host_integerp (pos, 1))
1497 known_align = tree_low_cst (pos, 1) & - tree_low_cst (pos, 1);
1498 else
1499 known_align = BITS_PER_UNIT;
1500
1501 if (TYPE_ALIGN (record_type)
1502 && (known_align == 0 || known_align > TYPE_ALIGN (record_type)))
1503 known_align = TYPE_ALIGN (record_type);
1504
1505 layout_decl (field_decl, known_align);
1506 SET_DECL_OFFSET_ALIGN (field_decl,
1507 host_integerp (pos, 1) ? BIGGEST_ALIGNMENT
1508 : BITS_PER_UNIT);
1509 pos_from_bit (&DECL_FIELD_OFFSET (field_decl),
1510 &DECL_FIELD_BIT_OFFSET (field_decl),
1511 DECL_OFFSET_ALIGN (field_decl), pos);
1512
1513 DECL_HAS_REP_P (field_decl) = 1;
1514 }
1515
1516 /* If the field type is passed by reference, we will have pointers to the
1517 field, so it is addressable. */
1518 if (must_pass_by_ref (field_type) || default_pass_by_ref (field_type))
1519 addressable = 1;
1520
1521 /* ??? For now, we say that any field of aggregate type is addressable
1522 because the front end may take 'Reference of it. */
1523 if (AGGREGATE_TYPE_P (field_type))
1524 addressable = 1;
1525
1526 /* Mark the decl as nonaddressable if it is indicated so semantically,
1527 meaning we won't ever attempt to take the address of the field.
1528
1529 It may also be "technically" nonaddressable, meaning that even if we
1530 attempt to take the field's address we will actually get the address of a
1531 copy. This is the case for true bitfields, but the DECL_BIT_FIELD value
1532 we have at this point is not accurate enough, so we don't account for
1533 this here and let finish_record_type decide. */
1534 DECL_NONADDRESSABLE_P (field_decl) = ! addressable;
1535
1536 return field_decl;
1537 }
1538
1539 /* Subroutine of previous function: return nonzero if EXP, ignoring any side
1540 effects, has the value of zero. */
1541
1542 static int
1543 value_zerop (tree exp)
1544 {
1545 if (TREE_CODE (exp) == COMPOUND_EXPR)
1546 return value_zerop (TREE_OPERAND (exp, 1));
1547
1548 return integer_zerop (exp);
1549 }
1550 \f
1551 /* Returns a PARM_DECL node. PARAM_NAME is the name of the parameter,
1552 PARAM_TYPE is its type. READONLY is nonzero if the parameter is
1553 readonly (either an IN parameter or an address of a pass-by-ref
1554 parameter). */
1555
1556 tree
1557 create_param_decl (tree param_name, tree param_type, int readonly)
1558 {
1559 tree param_decl = build_decl (PARM_DECL, param_name, param_type);
1560
1561 /* Honor targetm.calls.promote_prototypes(), as not doing so can
1562 lead to various ABI violations. */
1563 if (targetm.calls.promote_prototypes (param_type)
1564 && (TREE_CODE (param_type) == INTEGER_TYPE
1565 || TREE_CODE (param_type) == ENUMERAL_TYPE)
1566 && TYPE_PRECISION (param_type) < TYPE_PRECISION (integer_type_node))
1567 {
1568 /* We have to be careful about biased types here. Make a subtype
1569 of integer_type_node with the proper biasing. */
1570 if (TREE_CODE (param_type) == INTEGER_TYPE
1571 && TYPE_BIASED_REPRESENTATION_P (param_type))
1572 {
1573 param_type
1574 = copy_type (build_range_type (integer_type_node,
1575 TYPE_MIN_VALUE (param_type),
1576 TYPE_MAX_VALUE (param_type)));
1577
1578 TYPE_BIASED_REPRESENTATION_P (param_type) = 1;
1579 }
1580 else
1581 param_type = integer_type_node;
1582 }
1583
1584 DECL_ARG_TYPE (param_decl) = param_type;
1585 DECL_ARG_TYPE_AS_WRITTEN (param_decl) = param_type;
1586 TREE_READONLY (param_decl) = readonly;
1587 return param_decl;
1588 }
1589 \f
1590 /* Given a DECL and ATTR_LIST, process the listed attributes. */
1591
1592 void
1593 process_attributes (tree decl, struct attrib *attr_list)
1594 {
1595 for (; attr_list; attr_list = attr_list->next)
1596 switch (attr_list->type)
1597 {
1598 case ATTR_MACHINE_ATTRIBUTE:
1599 decl_attributes (&decl, tree_cons (attr_list->name, attr_list->arg,
1600 NULL_TREE),
1601 ATTR_FLAG_TYPE_IN_PLACE);
1602 break;
1603
1604 case ATTR_LINK_ALIAS:
1605 TREE_STATIC (decl) = 1;
1606 assemble_alias (decl, attr_list->name);
1607 break;
1608
1609 case ATTR_WEAK_EXTERNAL:
1610 if (SUPPORTS_WEAK)
1611 declare_weak (decl);
1612 else
1613 post_error ("?weak declarations not supported on this target",
1614 attr_list->error_point);
1615 break;
1616
1617 case ATTR_LINK_SECTION:
1618 if (targetm.have_named_sections)
1619 {
1620 DECL_SECTION_NAME (decl)
1621 = build_string (IDENTIFIER_LENGTH (attr_list->name),
1622 IDENTIFIER_POINTER (attr_list->name));
1623 }
1624 else
1625 post_error ("?section attributes are not supported for this target",
1626 attr_list->error_point);
1627 break;
1628 }
1629 }
1630 \f
1631 /* Add some pending elaborations on the list. */
1632
1633 void
1634 add_pending_elaborations (tree var_decl, tree var_init)
1635 {
1636 if (var_init != 0)
1637 Check_Elaboration_Code_Allowed (error_gnat_node);
1638
1639 pending_elaborations
1640 = chainon (pending_elaborations, build_tree_list (var_decl, var_init));
1641 }
1642
1643 /* Obtain any pending elaborations and clear the old list. */
1644
1645 tree
1646 get_pending_elaborations (void)
1647 {
1648 /* Each thing added to the list went on the end; we want it on the
1649 beginning. */
1650 tree result = TREE_CHAIN (pending_elaborations);
1651
1652 TREE_CHAIN (pending_elaborations) = 0;
1653 return result;
1654 }
1655
1656 /* Return true if VALUE is a multiple of FACTOR. FACTOR must be a power
1657 of 2. */
1658
1659 static int
1660 value_factor_p (tree value, int factor)
1661 {
1662 if (host_integerp (value, 1))
1663 return tree_low_cst (value, 1) % factor == 0;
1664
1665 if (TREE_CODE (value) == MULT_EXPR)
1666 return (value_factor_p (TREE_OPERAND (value, 0), factor)
1667 || value_factor_p (TREE_OPERAND (value, 1), factor));
1668
1669 return 0;
1670 }
1671
1672 /* Given 2 consecutive field decls PREV_FIELD and CURR_FIELD, return true
1673 unless we can prove these 2 fields are laid out in such a way that no gap
1674 exist between the end of PREV_FIELD and the begining of CURR_FIELD. OFFSET
1675 is the distance in bits between the end of PREV_FIELD and the starting
1676 position of CURR_FIELD. It is ignored if null. */
1677
1678 static int
1679 potential_alignment_gap (tree prev_field, tree curr_field, tree offset)
1680 {
1681 /* If this is the first field of the record, there cannot be any gap */
1682 if (!prev_field)
1683 return 0;
1684
1685 /* If the previous field is a union type, then return False: The only
1686 time when such a field is not the last field of the record is when
1687 there are other components at fixed positions after it (meaning there
1688 was a rep clause for every field), in which case we don't want the
1689 alignment constraint to override them. */
1690 if (TREE_CODE (TREE_TYPE (prev_field)) == QUAL_UNION_TYPE)
1691 return 0;
1692
1693 /* If the distance between the end of prev_field and the begining of
1694 curr_field is constant, then there is a gap if the value of this
1695 constant is not null. */
1696 if (offset && host_integerp (offset, 1))
1697 return (!integer_zerop (offset));
1698
1699 /* If the size and position of the previous field are constant,
1700 then check the sum of this size and position. There will be a gap
1701 iff it is not multiple of the current field alignment. */
1702 if (host_integerp (DECL_SIZE (prev_field), 1)
1703 && host_integerp (bit_position (prev_field), 1))
1704 return ((tree_low_cst (bit_position (prev_field), 1)
1705 + tree_low_cst (DECL_SIZE (prev_field), 1))
1706 % DECL_ALIGN (curr_field) != 0);
1707
1708 /* If both the position and size of the previous field are multiples
1709 of the current field alignment, there can not be any gap. */
1710 if (value_factor_p (bit_position (prev_field), DECL_ALIGN (curr_field))
1711 && value_factor_p (DECL_SIZE (prev_field), DECL_ALIGN (curr_field)))
1712 return 0;
1713
1714 /* Fallback, return that there may be a potential gap */
1715 return 1;
1716 }
1717
1718 /* Return nonzero if there are pending elaborations. */
1719
1720 int
1721 pending_elaborations_p (void)
1722 {
1723 return TREE_CHAIN (pending_elaborations) != 0;
1724 }
1725
1726 /* Save a copy of the current pending elaboration list and make a new
1727 one. */
1728
1729 void
1730 push_pending_elaborations (void)
1731 {
1732 struct e_stack *p = (struct e_stack *) ggc_alloc (sizeof (struct e_stack));
1733
1734 p->next = elist_stack;
1735 p->elab_list = pending_elaborations;
1736 elist_stack = p;
1737 pending_elaborations = build_tree_list (NULL_TREE, NULL_TREE);
1738 }
1739
1740 /* Pop the stack of pending elaborations. */
1741
1742 void
1743 pop_pending_elaborations (void)
1744 {
1745 struct e_stack *p = elist_stack;
1746
1747 pending_elaborations = p->elab_list;
1748 elist_stack = p->next;
1749 }
1750
1751 /* Return the current position in pending_elaborations so we can insert
1752 elaborations after that point. */
1753
1754 tree
1755 get_elaboration_location (void)
1756 {
1757 return tree_last (pending_elaborations);
1758 }
1759
1760 /* Insert the current elaborations after ELAB, which is in some elaboration
1761 list. */
1762
1763 void
1764 insert_elaboration_list (tree elab)
1765 {
1766 tree next = TREE_CHAIN (elab);
1767
1768 if (TREE_CHAIN (pending_elaborations))
1769 {
1770 TREE_CHAIN (elab) = TREE_CHAIN (pending_elaborations);
1771 TREE_CHAIN (tree_last (pending_elaborations)) = next;
1772 TREE_CHAIN (pending_elaborations) = 0;
1773 }
1774 }
1775
1776 /* Returns a LABEL_DECL node for LABEL_NAME. */
1777
1778 tree
1779 create_label_decl (tree label_name)
1780 {
1781 tree label_decl = build_decl (LABEL_DECL, label_name, void_type_node);
1782
1783 DECL_CONTEXT (label_decl) = current_function_decl;
1784 DECL_MODE (label_decl) = VOIDmode;
1785 DECL_SOURCE_LOCATION (label_decl) = input_location;
1786
1787 return label_decl;
1788 }
1789 \f
1790 /* Returns a FUNCTION_DECL node. SUBPROG_NAME is the name of the subprogram,
1791 ASM_NAME is its assembler name, SUBPROG_TYPE is its type (a FUNCTION_TYPE
1792 node), PARAM_DECL_LIST is the list of the subprogram arguments (a list of
1793 PARM_DECL nodes chained through the TREE_CHAIN field).
1794
1795 INLINE_FLAG, PUBLIC_FLAG, EXTERN_FLAG, and ATTR_LIST are used to set the
1796 appropriate fields in the FUNCTION_DECL. */
1797
1798 tree
1799 create_subprog_decl (tree subprog_name,
1800 tree asm_name,
1801 tree subprog_type,
1802 tree param_decl_list,
1803 int inline_flag,
1804 int public_flag,
1805 int extern_flag,
1806 struct attrib *attr_list)
1807 {
1808 tree return_type = TREE_TYPE (subprog_type);
1809 tree subprog_decl = build_decl (FUNCTION_DECL, subprog_name, subprog_type);
1810
1811 /* If this is a function nested inside an inlined external function, it
1812 means we aren't going to compile the outer function unless it is
1813 actually inlined, so do the same for us. */
1814 if (current_function_decl != 0 && DECL_INLINE (current_function_decl)
1815 && DECL_EXTERNAL (current_function_decl))
1816 extern_flag = 1;
1817
1818 DECL_EXTERNAL (subprog_decl) = extern_flag;
1819 TREE_PUBLIC (subprog_decl) = public_flag;
1820 DECL_INLINE (subprog_decl) = inline_flag;
1821 TREE_READONLY (subprog_decl) = TYPE_READONLY (subprog_type);
1822 TREE_THIS_VOLATILE (subprog_decl) = TYPE_VOLATILE (subprog_type);
1823 TREE_SIDE_EFFECTS (subprog_decl) = TYPE_VOLATILE (subprog_type);
1824 DECL_ARGUMENTS (subprog_decl) = param_decl_list;
1825 DECL_RESULT (subprog_decl) = build_decl (RESULT_DECL, 0, return_type);
1826
1827 if (asm_name != 0)
1828 SET_DECL_ASSEMBLER_NAME (subprog_decl, asm_name);
1829
1830 process_attributes (subprog_decl, attr_list);
1831
1832 /* Add this decl to the current binding level. */
1833 subprog_decl = pushdecl (subprog_decl);
1834
1835 /* Output the assembler code and/or RTL for the declaration. */
1836 rest_of_decl_compilation (subprog_decl, 0, global_bindings_p (), 0);
1837
1838 return subprog_decl;
1839 }
1840 \f
1841 /* Count how deep we are into nested functions. This is because
1842 we shouldn't call the backend function context routines unless we
1843 are in a nested function. */
1844
1845 static int function_nesting_depth;
1846
1847 /* Set up the framework for generating code for SUBPROG_DECL, a subprogram
1848 body. This routine needs to be invoked before processing the declarations
1849 appearing in the subprogram. */
1850
1851 void
1852 begin_subprog_body (tree subprog_decl)
1853 {
1854 tree param_decl;
1855
1856 if (function_nesting_depth++ != 0)
1857 push_function_context ();
1858
1859 announce_function (subprog_decl);
1860
1861 /* Make this field nonzero so further routines know that this is not
1862 tentative. error_mark_node is replaced below (in poplevel) with the
1863 adequate BLOCK. */
1864 DECL_INITIAL (subprog_decl) = error_mark_node;
1865
1866 /* This function exists in static storage. This does not mean `static' in
1867 the C sense! */
1868 TREE_STATIC (subprog_decl) = 1;
1869
1870 /* Enter a new binding level and show that all the parameters belong to
1871 this function. */
1872 current_function_decl = subprog_decl;
1873 pushlevel (0);
1874
1875 for (param_decl = DECL_ARGUMENTS (subprog_decl); param_decl;
1876 param_decl = TREE_CHAIN (param_decl))
1877 DECL_CONTEXT (param_decl) = subprog_decl;
1878
1879 init_function_start (subprog_decl);
1880 expand_function_start (subprog_decl, 0);
1881
1882 /* If this function is `main', emit a call to `__main'
1883 to run global initializers, etc. */
1884 if (DECL_ASSEMBLER_NAME (subprog_decl) != 0
1885 && MAIN_NAME_P (DECL_ASSEMBLER_NAME (subprog_decl))
1886 && DECL_CONTEXT (subprog_decl) == NULL_TREE)
1887 expand_main_function ();
1888 }
1889
1890 /* Finish the definition of the current subprogram and compile it all the way
1891 to assembler language output. */
1892
1893 void
1894 end_subprog_body (void)
1895 {
1896 tree decl;
1897 tree cico_list;
1898
1899 poplevel (1, 0, 1);
1900 BLOCK_SUPERCONTEXT (DECL_INITIAL (current_function_decl))
1901 = current_function_decl;
1902
1903 /* Mark the RESULT_DECL as being in this subprogram. */
1904 DECL_CONTEXT (DECL_RESULT (current_function_decl)) = current_function_decl;
1905
1906 expand_function_end ();
1907
1908 /* If this is a nested function, push a new GC context. That will keep
1909 local variables on the stack from being collected while we're doing
1910 the compilation of this function. */
1911 if (function_nesting_depth > 1)
1912 ggc_push_context ();
1913
1914 /* If we're only annotating types, don't actually compile this
1915 function. */
1916 if (!type_annotate_only)
1917 {
1918 rest_of_compilation (current_function_decl);
1919 if (! DECL_DEFER_OUTPUT (current_function_decl))
1920 {
1921 free_after_compilation (cfun);
1922 DECL_STRUCT_FUNCTION (current_function_decl) = 0;
1923 }
1924 cfun = 0;
1925 }
1926
1927 if (function_nesting_depth > 1)
1928 ggc_pop_context ();
1929
1930 /* Throw away any VAR_DECLs we made for OUT parameters; they must
1931 not be seen when we call this function and will be in
1932 unallocated memory anyway. */
1933 for (cico_list = TYPE_CI_CO_LIST (TREE_TYPE (current_function_decl));
1934 cico_list != 0; cico_list = TREE_CHAIN (cico_list))
1935 TREE_VALUE (cico_list) = 0;
1936
1937 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0)
1938 {
1939 /* Throw away DECL_RTL in any PARM_DECLs unless this function
1940 was saved for inline, in which case the DECL_RTLs are in
1941 preserved memory. */
1942 for (decl = DECL_ARGUMENTS (current_function_decl);
1943 decl != 0; decl = TREE_CHAIN (decl))
1944 {
1945 SET_DECL_RTL (decl, 0);
1946 DECL_INCOMING_RTL (decl) = 0;
1947 }
1948
1949 /* Similarly, discard DECL_RTL of the return value. */
1950 SET_DECL_RTL (DECL_RESULT (current_function_decl), 0);
1951
1952 /* But DECL_INITIAL must remain nonzero so we know this
1953 was an actual function definition unless toplev.c decided not
1954 to inline it. */
1955 if (DECL_INITIAL (current_function_decl) != 0)
1956 DECL_INITIAL (current_function_decl) = error_mark_node;
1957
1958 DECL_ARGUMENTS (current_function_decl) = 0;
1959 }
1960
1961 /* If we are not at the bottom of the function nesting stack, pop up to
1962 the containing function. Otherwise show we aren't in any function. */
1963 if (--function_nesting_depth != 0)
1964 pop_function_context ();
1965 else
1966 current_function_decl = 0;
1967 }
1968 \f
1969 /* Return a definition for a builtin function named NAME and whose data type
1970 is TYPE. TYPE should be a function type with argument types.
1971 FUNCTION_CODE tells later passes how to compile calls to this function.
1972 See tree.h for its possible values.
1973
1974 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
1975 the name to be called if we can't opencode the function. If
1976 ATTRS is nonzero, use that for the function attribute list. */
1977
1978 tree
1979 builtin_function (const char *name,
1980 tree type,
1981 int function_code,
1982 enum built_in_class class,
1983 const char *library_name,
1984 tree attrs)
1985 {
1986 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
1987
1988 DECL_EXTERNAL (decl) = 1;
1989 TREE_PUBLIC (decl) = 1;
1990 if (library_name)
1991 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
1992
1993 pushdecl (decl);
1994 DECL_BUILT_IN_CLASS (decl) = class;
1995 DECL_FUNCTION_CODE (decl) = function_code;
1996 if (attrs)
1997 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
1998 return decl;
1999 }
2000
2001 /* Return an integer type with the number of bits of precision given by
2002 PRECISION. UNSIGNEDP is nonzero if the type is unsigned; otherwise
2003 it is a signed type. */
2004
2005 tree
2006 gnat_type_for_size (unsigned precision, int unsignedp)
2007 {
2008 tree t;
2009 char type_name[20];
2010
2011 if (precision <= 2 * MAX_BITS_PER_WORD
2012 && signed_and_unsigned_types[precision][unsignedp] != 0)
2013 return signed_and_unsigned_types[precision][unsignedp];
2014
2015 if (unsignedp)
2016 t = make_unsigned_type (precision);
2017 else
2018 t = make_signed_type (precision);
2019
2020 if (precision <= 2 * MAX_BITS_PER_WORD)
2021 signed_and_unsigned_types[precision][unsignedp] = t;
2022
2023 if (TYPE_NAME (t) == 0)
2024 {
2025 sprintf (type_name, "%sSIGNED_%d", unsignedp ? "UN" : "", precision);
2026 TYPE_NAME (t) = get_identifier (type_name);
2027 }
2028
2029 return t;
2030 }
2031
2032 /* Likewise for floating-point types. */
2033
2034 static tree
2035 float_type_for_precision (int precision, enum machine_mode mode)
2036 {
2037 tree t;
2038 char type_name[20];
2039
2040 if (float_types[(int) mode] != 0)
2041 return float_types[(int) mode];
2042
2043 float_types[(int) mode] = t = make_node (REAL_TYPE);
2044 TYPE_PRECISION (t) = precision;
2045 layout_type (t);
2046
2047 if (TYPE_MODE (t) != mode)
2048 gigi_abort (414);
2049
2050 if (TYPE_NAME (t) == 0)
2051 {
2052 sprintf (type_name, "FLOAT_%d", precision);
2053 TYPE_NAME (t) = get_identifier (type_name);
2054 }
2055
2056 return t;
2057 }
2058
2059 /* Return a data type that has machine mode MODE. UNSIGNEDP selects
2060 an unsigned type; otherwise a signed type is returned. */
2061
2062 tree
2063 gnat_type_for_mode (enum machine_mode mode, int unsignedp)
2064 {
2065 if (mode == BLKmode)
2066 return NULL_TREE;
2067 else if (mode == VOIDmode)
2068 return void_type_node;
2069 else if (GET_MODE_CLASS (mode) == MODE_FLOAT)
2070 return float_type_for_precision (GET_MODE_PRECISION (mode), mode);
2071 else
2072 return gnat_type_for_size (GET_MODE_BITSIZE (mode), unsignedp);
2073 }
2074
2075 /* Return the unsigned version of a TYPE_NODE, a scalar type. */
2076
2077 tree
2078 gnat_unsigned_type (tree type_node)
2079 {
2080 tree type = gnat_type_for_size (TYPE_PRECISION (type_node), 1);
2081
2082 if (TREE_CODE (type_node) == INTEGER_TYPE && TYPE_MODULAR_P (type_node))
2083 {
2084 type = copy_node (type);
2085 TREE_TYPE (type) = type_node;
2086 }
2087 else if (TREE_TYPE (type_node) != 0
2088 && TREE_CODE (TREE_TYPE (type_node)) == INTEGER_TYPE
2089 && TYPE_MODULAR_P (TREE_TYPE (type_node)))
2090 {
2091 type = copy_node (type);
2092 TREE_TYPE (type) = TREE_TYPE (type_node);
2093 }
2094
2095 return type;
2096 }
2097
2098 /* Return the signed version of a TYPE_NODE, a scalar type. */
2099
2100 tree
2101 gnat_signed_type (tree type_node)
2102 {
2103 tree type = gnat_type_for_size (TYPE_PRECISION (type_node), 0);
2104
2105 if (TREE_CODE (type_node) == INTEGER_TYPE && TYPE_MODULAR_P (type_node))
2106 {
2107 type = copy_node (type);
2108 TREE_TYPE (type) = type_node;
2109 }
2110 else if (TREE_TYPE (type_node) != 0
2111 && TREE_CODE (TREE_TYPE (type_node)) == INTEGER_TYPE
2112 && TYPE_MODULAR_P (TREE_TYPE (type_node)))
2113 {
2114 type = copy_node (type);
2115 TREE_TYPE (type) = TREE_TYPE (type_node);
2116 }
2117
2118 return type;
2119 }
2120
2121 /* Return a type the same as TYPE except unsigned or signed according to
2122 UNSIGNEDP. */
2123
2124 tree
2125 gnat_signed_or_unsigned_type (int unsignedp, tree type)
2126 {
2127 if (! INTEGRAL_TYPE_P (type) || TYPE_UNSIGNED (type) == unsignedp)
2128 return type;
2129 else
2130 return gnat_type_for_size (TYPE_PRECISION (type), unsignedp);
2131 }
2132 \f
2133 /* EXP is an expression for the size of an object. If this size contains
2134 discriminant references, replace them with the maximum (if MAX_P) or
2135 minimum (if ! MAX_P) possible value of the discriminant. */
2136
2137 tree
2138 max_size (tree exp, int max_p)
2139 {
2140 enum tree_code code = TREE_CODE (exp);
2141 tree type = TREE_TYPE (exp);
2142
2143 switch (TREE_CODE_CLASS (code))
2144 {
2145 case 'd':
2146 case 'c':
2147 return exp;
2148
2149 case 'x':
2150 if (code == TREE_LIST)
2151 return tree_cons (TREE_PURPOSE (exp),
2152 max_size (TREE_VALUE (exp), max_p),
2153 TREE_CHAIN (exp) != 0
2154 ? max_size (TREE_CHAIN (exp), max_p) : 0);
2155 break;
2156
2157 case 'r':
2158 /* If this contains a PLACEHOLDER_EXPR, it is the thing we want to
2159 modify. Otherwise, we treat it like a variable. */
2160 if (! CONTAINS_PLACEHOLDER_P (exp))
2161 return exp;
2162
2163 type = TREE_TYPE (TREE_OPERAND (exp, 1));
2164 return
2165 max_size (max_p ? TYPE_MAX_VALUE (type) : TYPE_MIN_VALUE (type), 1);
2166
2167 case '<':
2168 return max_p ? size_one_node : size_zero_node;
2169
2170 case '1':
2171 case '2':
2172 case 'e':
2173 switch (TREE_CODE_LENGTH (code))
2174 {
2175 case 1:
2176 if (code == NON_LVALUE_EXPR)
2177 return max_size (TREE_OPERAND (exp, 0), max_p);
2178 else
2179 return
2180 fold (build1 (code, type,
2181 max_size (TREE_OPERAND (exp, 0),
2182 code == NEGATE_EXPR ? ! max_p : max_p)));
2183
2184 case 2:
2185 if (code == RTL_EXPR)
2186 gigi_abort (407);
2187 else if (code == COMPOUND_EXPR)
2188 return max_size (TREE_OPERAND (exp, 1), max_p);
2189
2190 {
2191 tree lhs = max_size (TREE_OPERAND (exp, 0), max_p);
2192 tree rhs = max_size (TREE_OPERAND (exp, 1),
2193 code == MINUS_EXPR ? ! max_p : max_p);
2194
2195 /* Special-case wanting the maximum value of a MIN_EXPR.
2196 In that case, if one side overflows, return the other.
2197 sizetype is signed, but we know sizes are non-negative.
2198 Likewise, handle a MINUS_EXPR or PLUS_EXPR with the LHS
2199 overflowing or the maximum possible value and the RHS
2200 a variable. */
2201 if (max_p && code == MIN_EXPR && TREE_OVERFLOW (rhs))
2202 return lhs;
2203 else if (max_p && code == MIN_EXPR && TREE_OVERFLOW (lhs))
2204 return rhs;
2205 else if ((code == MINUS_EXPR || code == PLUS_EXPR)
2206 && ((TREE_CONSTANT (lhs) && TREE_OVERFLOW (lhs))
2207 || operand_equal_p (lhs, TYPE_MAX_VALUE (type), 0))
2208 && ! TREE_CONSTANT (rhs))
2209 return lhs;
2210 else
2211 return fold (build (code, type, lhs, rhs));
2212 }
2213
2214 case 3:
2215 if (code == SAVE_EXPR)
2216 return exp;
2217 else if (code == COND_EXPR)
2218 return fold (build (max_p ? MAX_EXPR : MIN_EXPR, type,
2219 max_size (TREE_OPERAND (exp, 1), max_p),
2220 max_size (TREE_OPERAND (exp, 2), max_p)));
2221 else if (code == CALL_EXPR && TREE_OPERAND (exp, 1) != 0)
2222 return build (CALL_EXPR, type, TREE_OPERAND (exp, 0),
2223 max_size (TREE_OPERAND (exp, 1), max_p));
2224 }
2225 }
2226
2227 gigi_abort (408);
2228 }
2229 \f
2230 /* Build a template of type TEMPLATE_TYPE from the array bounds of ARRAY_TYPE.
2231 EXPR is an expression that we can use to locate any PLACEHOLDER_EXPRs.
2232 Return a constructor for the template. */
2233
2234 tree
2235 build_template (tree template_type, tree array_type, tree expr)
2236 {
2237 tree template_elts = NULL_TREE;
2238 tree bound_list = NULL_TREE;
2239 tree field;
2240
2241 if (TREE_CODE (array_type) == RECORD_TYPE
2242 && (TYPE_IS_PADDING_P (array_type)
2243 || TYPE_LEFT_JUSTIFIED_MODULAR_P (array_type)))
2244 array_type = TREE_TYPE (TYPE_FIELDS (array_type));
2245
2246 if (TREE_CODE (array_type) == ARRAY_TYPE
2247 || (TREE_CODE (array_type) == INTEGER_TYPE
2248 && TYPE_HAS_ACTUAL_BOUNDS_P (array_type)))
2249 bound_list = TYPE_ACTUAL_BOUNDS (array_type);
2250
2251 /* First make the list for a CONSTRUCTOR for the template. Go down the
2252 field list of the template instead of the type chain because this
2253 array might be an Ada array of arrays and we can't tell where the
2254 nested arrays stop being the underlying object. */
2255
2256 for (field = TYPE_FIELDS (template_type); field;
2257 (bound_list != 0
2258 ? (bound_list = TREE_CHAIN (bound_list))
2259 : (array_type = TREE_TYPE (array_type))),
2260 field = TREE_CHAIN (TREE_CHAIN (field)))
2261 {
2262 tree bounds, min, max;
2263
2264 /* If we have a bound list, get the bounds from there. Likewise
2265 for an ARRAY_TYPE. Otherwise, if expr is a PARM_DECL with
2266 DECL_BY_COMPONENT_PTR_P, use the bounds of the field in the template.
2267 This will give us a maximum range. */
2268 if (bound_list != 0)
2269 bounds = TREE_VALUE (bound_list);
2270 else if (TREE_CODE (array_type) == ARRAY_TYPE)
2271 bounds = TYPE_INDEX_TYPE (TYPE_DOMAIN (array_type));
2272 else if (expr != 0 && TREE_CODE (expr) == PARM_DECL
2273 && DECL_BY_COMPONENT_PTR_P (expr))
2274 bounds = TREE_TYPE (field);
2275 else
2276 gigi_abort (411);
2277
2278 min = convert (TREE_TYPE (TREE_CHAIN (field)), TYPE_MIN_VALUE (bounds));
2279 max = convert (TREE_TYPE (field), TYPE_MAX_VALUE (bounds));
2280
2281 /* If either MIN or MAX involve a PLACEHOLDER_EXPR, we must
2282 substitute it from OBJECT. */
2283 min = SUBSTITUTE_PLACEHOLDER_IN_EXPR (min, expr);
2284 max = SUBSTITUTE_PLACEHOLDER_IN_EXPR (max, expr);
2285
2286 template_elts = tree_cons (TREE_CHAIN (field), max,
2287 tree_cons (field, min, template_elts));
2288 }
2289
2290 return gnat_build_constructor (template_type, nreverse (template_elts));
2291 }
2292 \f
2293 /* Build a VMS descriptor from a Mechanism_Type, which must specify
2294 a descriptor type, and the GCC type of an object. Each FIELD_DECL
2295 in the type contains in its DECL_INITIAL the expression to use when
2296 a constructor is made for the type. GNAT_ENTITY is a gnat node used
2297 to print out an error message if the mechanism cannot be applied to
2298 an object of that type and also for the name. */
2299
2300 tree
2301 build_vms_descriptor (tree type, Mechanism_Type mech, Entity_Id gnat_entity)
2302 {
2303 tree record_type = make_node (RECORD_TYPE);
2304 tree field_list = 0;
2305 int class;
2306 int dtype = 0;
2307 tree inner_type;
2308 int ndim;
2309 int i;
2310 tree *idx_arr;
2311 tree tem;
2312
2313 /* If TYPE is an unconstrained array, use the underlying array type. */
2314 if (TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
2315 type = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (type))));
2316
2317 /* If this is an array, compute the number of dimensions in the array,
2318 get the index types, and point to the inner type. */
2319 if (TREE_CODE (type) != ARRAY_TYPE)
2320 ndim = 0;
2321 else
2322 for (ndim = 1, inner_type = type;
2323 TREE_CODE (TREE_TYPE (inner_type)) == ARRAY_TYPE
2324 && TYPE_MULTI_ARRAY_P (TREE_TYPE (inner_type));
2325 ndim++, inner_type = TREE_TYPE (inner_type))
2326 ;
2327
2328 idx_arr = (tree *) alloca (ndim * sizeof (tree));
2329
2330 if (mech != By_Descriptor_NCA
2331 && TREE_CODE (type) == ARRAY_TYPE && TYPE_CONVENTION_FORTRAN_P (type))
2332 for (i = ndim - 1, inner_type = type;
2333 i >= 0;
2334 i--, inner_type = TREE_TYPE (inner_type))
2335 idx_arr[i] = TYPE_DOMAIN (inner_type);
2336 else
2337 for (i = 0, inner_type = type;
2338 i < ndim;
2339 i++, inner_type = TREE_TYPE (inner_type))
2340 idx_arr[i] = TYPE_DOMAIN (inner_type);
2341
2342 /* Now get the DTYPE value. */
2343 switch (TREE_CODE (type))
2344 {
2345 case INTEGER_TYPE:
2346 case ENUMERAL_TYPE:
2347 if (TYPE_VAX_FLOATING_POINT_P (type))
2348 switch (tree_low_cst (TYPE_DIGITS_VALUE (type), 1))
2349 {
2350 case 6:
2351 dtype = 10;
2352 break;
2353 case 9:
2354 dtype = 11;
2355 break;
2356 case 15:
2357 dtype = 27;
2358 break;
2359 }
2360 else
2361 switch (GET_MODE_BITSIZE (TYPE_MODE (type)))
2362 {
2363 case 8:
2364 dtype = TYPE_UNSIGNED (type) ? 2 : 6;
2365 break;
2366 case 16:
2367 dtype = TYPE_UNSIGNED (type) ? 3 : 7;
2368 break;
2369 case 32:
2370 dtype = TYPE_UNSIGNED (type) ? 4 : 8;
2371 break;
2372 case 64:
2373 dtype = TYPE_UNSIGNED (type) ? 5 : 9;
2374 break;
2375 case 128:
2376 dtype = TYPE_UNSIGNED (type) ? 25 : 26;
2377 break;
2378 }
2379 break;
2380
2381 case REAL_TYPE:
2382 dtype = GET_MODE_BITSIZE (TYPE_MODE (type)) == 32 ? 52 : 53;
2383 break;
2384
2385 case COMPLEX_TYPE:
2386 if (TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE
2387 && TYPE_VAX_FLOATING_POINT_P (type))
2388 switch (tree_low_cst (TYPE_DIGITS_VALUE (type), 1))
2389 {
2390 case 6:
2391 dtype = 12;
2392 break;
2393 case 9:
2394 dtype = 13;
2395 break;
2396 case 15:
2397 dtype = 29;
2398 }
2399 else
2400 dtype = GET_MODE_BITSIZE (TYPE_MODE (TREE_TYPE (type))) == 32 ? 54: 55;
2401 break;
2402
2403 case ARRAY_TYPE:
2404 dtype = 14;
2405 break;
2406
2407 default:
2408 break;
2409 }
2410
2411 /* Get the CLASS value. */
2412 switch (mech)
2413 {
2414 case By_Descriptor_A:
2415 class = 4;
2416 break;
2417 case By_Descriptor_NCA:
2418 class = 10;
2419 break;
2420 case By_Descriptor_SB:
2421 class = 15;
2422 break;
2423 default:
2424 class = 1;
2425 }
2426
2427 /* Make the type for a descriptor for VMS. The first four fields
2428 are the same for all types. */
2429
2430 field_list
2431 = chainon (field_list,
2432 make_descriptor_field
2433 ("LENGTH", gnat_type_for_size (16, 1), record_type,
2434 size_in_bytes (mech == By_Descriptor_A ? inner_type : type)));
2435
2436 field_list = chainon (field_list,
2437 make_descriptor_field ("DTYPE",
2438 gnat_type_for_size (8, 1),
2439 record_type, size_int (dtype)));
2440 field_list = chainon (field_list,
2441 make_descriptor_field ("CLASS",
2442 gnat_type_for_size (8, 1),
2443 record_type, size_int (class)));
2444
2445 field_list
2446 = chainon (field_list,
2447 make_descriptor_field ("POINTER",
2448 build_pointer_type (type),
2449 record_type,
2450 build1 (ADDR_EXPR,
2451 build_pointer_type (type),
2452 build (PLACEHOLDER_EXPR,
2453 type))));
2454
2455 switch (mech)
2456 {
2457 case By_Descriptor:
2458 case By_Descriptor_S:
2459 break;
2460
2461 case By_Descriptor_SB:
2462 field_list
2463 = chainon (field_list,
2464 make_descriptor_field
2465 ("SB_L1", gnat_type_for_size (32, 1), record_type,
2466 TREE_CODE (type) == ARRAY_TYPE
2467 ? TYPE_MIN_VALUE (TYPE_DOMAIN (type)) : size_zero_node));
2468 field_list
2469 = chainon (field_list,
2470 make_descriptor_field
2471 ("SB_L2", gnat_type_for_size (32, 1), record_type,
2472 TREE_CODE (type) == ARRAY_TYPE
2473 ? TYPE_MAX_VALUE (TYPE_DOMAIN (type)) : size_zero_node));
2474 break;
2475
2476 case By_Descriptor_A:
2477 case By_Descriptor_NCA:
2478 field_list = chainon (field_list,
2479 make_descriptor_field ("SCALE",
2480 gnat_type_for_size (8, 1),
2481 record_type,
2482 size_zero_node));
2483
2484 field_list = chainon (field_list,
2485 make_descriptor_field ("DIGITS",
2486 gnat_type_for_size (8, 1),
2487 record_type,
2488 size_zero_node));
2489
2490 field_list
2491 = chainon (field_list,
2492 make_descriptor_field
2493 ("AFLAGS", gnat_type_for_size (8, 1), record_type,
2494 size_int (mech == By_Descriptor_NCA
2495 ? 0
2496 /* Set FL_COLUMN, FL_COEFF, and FL_BOUNDS. */
2497 : (TREE_CODE (type) == ARRAY_TYPE
2498 && TYPE_CONVENTION_FORTRAN_P (type)
2499 ? 224 : 192))));
2500
2501 field_list = chainon (field_list,
2502 make_descriptor_field ("DIMCT",
2503 gnat_type_for_size (8, 1),
2504 record_type,
2505 size_int (ndim)));
2506
2507 field_list = chainon (field_list,
2508 make_descriptor_field ("ARSIZE",
2509 gnat_type_for_size (32, 1),
2510 record_type,
2511 size_in_bytes (type)));
2512
2513 /* Now build a pointer to the 0,0,0... element. */
2514 tem = build (PLACEHOLDER_EXPR, type);
2515 for (i = 0, inner_type = type; i < ndim;
2516 i++, inner_type = TREE_TYPE (inner_type))
2517 tem = build (ARRAY_REF, TREE_TYPE (inner_type), tem,
2518 convert (TYPE_DOMAIN (inner_type), size_zero_node));
2519
2520 field_list
2521 = chainon (field_list,
2522 make_descriptor_field
2523 ("A0", build_pointer_type (inner_type), record_type,
2524 build1 (ADDR_EXPR, build_pointer_type (inner_type), tem)));
2525
2526 /* Next come the addressing coefficients. */
2527 tem = size_int (1);
2528 for (i = 0; i < ndim; i++)
2529 {
2530 char fname[3];
2531 tree idx_length
2532 = size_binop (MULT_EXPR, tem,
2533 size_binop (PLUS_EXPR,
2534 size_binop (MINUS_EXPR,
2535 TYPE_MAX_VALUE (idx_arr[i]),
2536 TYPE_MIN_VALUE (idx_arr[i])),
2537 size_int (1)));
2538
2539 fname[0] = (mech == By_Descriptor_NCA ? 'S' : 'M');
2540 fname[1] = '0' + i, fname[2] = 0;
2541 field_list
2542 = chainon (field_list,
2543 make_descriptor_field (fname,
2544 gnat_type_for_size (32, 1),
2545 record_type, idx_length));
2546
2547 if (mech == By_Descriptor_NCA)
2548 tem = idx_length;
2549 }
2550
2551 /* Finally here are the bounds. */
2552 for (i = 0; i < ndim; i++)
2553 {
2554 char fname[3];
2555
2556 fname[0] = 'L', fname[1] = '0' + i, fname[2] = 0;
2557 field_list
2558 = chainon (field_list,
2559 make_descriptor_field
2560 (fname, gnat_type_for_size (32, 1), record_type,
2561 TYPE_MIN_VALUE (idx_arr[i])));
2562
2563 fname[0] = 'U';
2564 field_list
2565 = chainon (field_list,
2566 make_descriptor_field
2567 (fname, gnat_type_for_size (32, 1), record_type,
2568 TYPE_MAX_VALUE (idx_arr[i])));
2569 }
2570 break;
2571
2572 default:
2573 post_error ("unsupported descriptor type for &", gnat_entity);
2574 }
2575
2576 finish_record_type (record_type, field_list, 0, 1);
2577 pushdecl (build_decl (TYPE_DECL, create_concat_name (gnat_entity, "DESC"),
2578 record_type));
2579
2580 return record_type;
2581 }
2582
2583 /* Utility routine for above code to make a field. */
2584
2585 static tree
2586 make_descriptor_field (const char *name, tree type,
2587 tree rec_type, tree initial)
2588 {
2589 tree field
2590 = create_field_decl (get_identifier (name), type, rec_type, 0, 0, 0, 0);
2591
2592 DECL_INITIAL (field) = initial;
2593 return field;
2594 }
2595 \f
2596 /* Build a type to be used to represent an aliased object whose nominal
2597 type is an unconstrained array. This consists of a RECORD_TYPE containing
2598 a field of TEMPLATE_TYPE and a field of OBJECT_TYPE, which is an
2599 ARRAY_TYPE. If ARRAY_TYPE is that of the unconstrained array, this
2600 is used to represent an arbitrary unconstrained object. Use NAME
2601 as the name of the record. */
2602
2603 tree
2604 build_unc_object_type (tree template_type, tree object_type, tree name)
2605 {
2606 tree type = make_node (RECORD_TYPE);
2607 tree template_field = create_field_decl (get_identifier ("BOUNDS"),
2608 template_type, type, 0, 0, 0, 1);
2609 tree array_field = create_field_decl (get_identifier ("ARRAY"), object_type,
2610 type, 0, 0, 0, 1);
2611
2612 TYPE_NAME (type) = name;
2613 TYPE_CONTAINS_TEMPLATE_P (type) = 1;
2614 finish_record_type (type,
2615 chainon (chainon (NULL_TREE, template_field),
2616 array_field),
2617 0, 0);
2618
2619 return type;
2620 }
2621 \f
2622 /* Update anything previously pointing to OLD_TYPE to point to NEW_TYPE. In
2623 the normal case this is just two adjustments, but we have more to do
2624 if NEW is an UNCONSTRAINED_ARRAY_TYPE. */
2625
2626 void
2627 update_pointer_to (tree old_type, tree new_type)
2628 {
2629 tree ptr = TYPE_POINTER_TO (old_type);
2630 tree ref = TYPE_REFERENCE_TO (old_type);
2631 tree type;
2632
2633 /* If this is the main variant, process all the other variants first. */
2634 if (TYPE_MAIN_VARIANT (old_type) == old_type)
2635 for (type = TYPE_NEXT_VARIANT (old_type); type != 0;
2636 type = TYPE_NEXT_VARIANT (type))
2637 update_pointer_to (type, new_type);
2638
2639 /* If no pointer or reference, we are done. */
2640 if (ptr == 0 && ref == 0)
2641 return;
2642
2643 /* Merge the old type qualifiers in the new type.
2644
2645 Each old variant has qualifiers for specific reasons, and the new
2646 designated type as well. Each set of qualifiers represents useful
2647 information grabbed at some point, and merging the two simply unifies
2648 these inputs into the final type description.
2649
2650 Consider for instance a volatile type frozen after an access to constant
2651 type designating it. After the designated type freeze, we get here with a
2652 volatile new_type and a dummy old_type with a readonly variant, created
2653 when the access type was processed. We shall make a volatile and readonly
2654 designated type, because that's what it really is.
2655
2656 We might also get here for a non-dummy old_type variant with different
2657 qualifiers than the new_type ones, for instance in some cases of pointers
2658 to private record type elaboration (see the comments around the call to
2659 this routine from gnat_to_gnu_entity/E_Access_Type). We have to merge the
2660 qualifiers in thoses cases too, to avoid accidentally discarding the
2661 initial set, and will often end up with old_type == new_type then. */
2662 new_type = build_qualified_type (new_type,
2663 TYPE_QUALS (old_type)
2664 | TYPE_QUALS (new_type));
2665
2666 /* If the new type and the old one are identical, there is nothing to
2667 update. */
2668 if (old_type == new_type)
2669 return;
2670
2671 /* Otherwise, first handle the simple case. */
2672 if (TREE_CODE (new_type) != UNCONSTRAINED_ARRAY_TYPE)
2673 {
2674 TYPE_POINTER_TO (new_type) = ptr;
2675 TYPE_REFERENCE_TO (new_type) = ref;
2676
2677 for (; ptr; ptr = TYPE_NEXT_PTR_TO (ptr))
2678 {
2679 TREE_TYPE (ptr) = new_type;
2680
2681 if (TYPE_NAME (ptr) != 0
2682 && TREE_CODE (TYPE_NAME (ptr)) == TYPE_DECL
2683 && TREE_CODE (new_type) != ENUMERAL_TYPE)
2684 rest_of_decl_compilation (TYPE_NAME (ptr), NULL,
2685 global_bindings_p (), 0);
2686 }
2687
2688 for (; ref; ref = TYPE_NEXT_PTR_TO (ref))
2689 {
2690 TREE_TYPE (ref) = new_type;
2691
2692 if (TYPE_NAME (ref) != 0
2693 && TREE_CODE (TYPE_NAME (ref)) == TYPE_DECL
2694 && TREE_CODE (new_type) != ENUMERAL_TYPE)
2695 rest_of_decl_compilation (TYPE_NAME (ref), NULL,
2696 global_bindings_p (), 0);
2697 }
2698 }
2699
2700 /* Now deal with the unconstrained array case. In this case the "pointer"
2701 is actually a RECORD_TYPE where the types of both fields are
2702 pointers to void. In that case, copy the field list from the
2703 old type to the new one and update the fields' context. */
2704 else if (TREE_CODE (ptr) != RECORD_TYPE || ! TYPE_IS_FAT_POINTER_P (ptr))
2705 gigi_abort (412);
2706
2707 else
2708 {
2709 tree new_obj_rec = TYPE_OBJECT_RECORD_TYPE (new_type);
2710 tree ptr_temp_type;
2711 tree new_ref;
2712 tree var;
2713
2714 TYPE_FIELDS (ptr) = TYPE_FIELDS (TYPE_POINTER_TO (new_type));
2715 DECL_CONTEXT (TYPE_FIELDS (ptr)) = ptr;
2716 DECL_CONTEXT (TREE_CHAIN (TYPE_FIELDS (ptr))) = ptr;
2717
2718 /* Rework the PLACEHOLDER_EXPR inside the reference to the
2719 template bounds.
2720
2721 ??? This is now the only use of gnat_substitute_in_type, which
2722 is now a very "heavy" routine to do this, so it should be replaced
2723 at some point. */
2724 ptr_temp_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (ptr)));
2725 new_ref = build (COMPONENT_REF, ptr_temp_type,
2726 build (PLACEHOLDER_EXPR, ptr),
2727 TREE_CHAIN (TYPE_FIELDS (ptr)));
2728
2729 update_pointer_to
2730 (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))),
2731 gnat_substitute_in_type (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))),
2732 TREE_CHAIN (TYPE_FIELDS (ptr)), new_ref));
2733
2734 for (var = TYPE_MAIN_VARIANT (ptr); var; var = TYPE_NEXT_VARIANT (var))
2735 SET_TYPE_UNCONSTRAINED_ARRAY (var, new_type);
2736
2737 TYPE_POINTER_TO (new_type) = TYPE_REFERENCE_TO (new_type)
2738 = TREE_TYPE (new_type) = ptr;
2739
2740 /* Now handle updating the allocation record, what the thin pointer
2741 points to. Update all pointers from the old record into the new
2742 one, update the types of the fields, and recompute the size. */
2743
2744 update_pointer_to (TYPE_OBJECT_RECORD_TYPE (old_type), new_obj_rec);
2745
2746 TREE_TYPE (TYPE_FIELDS (new_obj_rec)) = TREE_TYPE (ptr_temp_type);
2747 TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2748 = TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr)));
2749 DECL_SIZE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2750 = TYPE_SIZE (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))));
2751 DECL_SIZE_UNIT (TREE_CHAIN (TYPE_FIELDS (new_obj_rec)))
2752 = TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (ptr))));
2753
2754 TYPE_SIZE (new_obj_rec)
2755 = size_binop (PLUS_EXPR,
2756 DECL_SIZE (TYPE_FIELDS (new_obj_rec)),
2757 DECL_SIZE (TREE_CHAIN (TYPE_FIELDS (new_obj_rec))));
2758 TYPE_SIZE_UNIT (new_obj_rec)
2759 = size_binop (PLUS_EXPR,
2760 DECL_SIZE_UNIT (TYPE_FIELDS (new_obj_rec)),
2761 DECL_SIZE_UNIT (TREE_CHAIN (TYPE_FIELDS (new_obj_rec))));
2762 rest_of_type_compilation (ptr, global_bindings_p ());
2763 }
2764 }
2765 \f
2766 /* Convert a pointer to a constrained array into a pointer to a fat
2767 pointer. This involves making or finding a template. */
2768
2769 static tree
2770 convert_to_fat_pointer (tree type, tree expr)
2771 {
2772 tree template_type = TREE_TYPE (TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (type))));
2773 tree template, template_addr;
2774 tree etype = TREE_TYPE (expr);
2775
2776 /* If EXPR is a constant of zero, we make a fat pointer that has a null
2777 pointer to the template and array. */
2778 if (integer_zerop (expr))
2779 return
2780 gnat_build_constructor
2781 (type,
2782 tree_cons (TYPE_FIELDS (type),
2783 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
2784 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2785 convert (build_pointer_type (template_type),
2786 expr),
2787 NULL_TREE)));
2788
2789 /* If EXPR is a thin pointer, make the template and data from the record. */
2790
2791 else if (TYPE_THIN_POINTER_P (etype))
2792 {
2793 tree fields = TYPE_FIELDS (TREE_TYPE (etype));
2794
2795 expr = save_expr (expr);
2796 if (TREE_CODE (expr) == ADDR_EXPR)
2797 expr = TREE_OPERAND (expr, 0);
2798 else
2799 expr = build1 (INDIRECT_REF, TREE_TYPE (etype), expr);
2800
2801 template = build_component_ref (expr, NULL_TREE, fields, 0);
2802 expr = build_unary_op (ADDR_EXPR, NULL_TREE,
2803 build_component_ref (expr, NULL_TREE,
2804 TREE_CHAIN (fields), 0));
2805 }
2806 else
2807 /* Otherwise, build the constructor for the template. */
2808 template = build_template (template_type, TREE_TYPE (etype), expr);
2809
2810 template_addr = build_unary_op (ADDR_EXPR, NULL_TREE, template);
2811
2812 /* The result is a CONSTRUCTOR for the fat pointer.
2813
2814 If expr is an argument of a foreign convention subprogram, the type it
2815 points to is directly the component type. In this case, the expression
2816 type may not match the corresponding FIELD_DECL type at this point, so we
2817 call "convert" here to fix that up if necessary. This type consistency is
2818 required, for instance because it ensures that possible later folding of
2819 component_refs against this constructor always yields something of the
2820 same type as the initial reference.
2821
2822 Note that the call to "build_template" above is still fine, because it
2823 will only refer to the provided template_type in this case. */
2824 return
2825 gnat_build_constructor
2826 (type, tree_cons (TYPE_FIELDS (type),
2827 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
2828 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2829 template_addr, NULL_TREE)));
2830 }
2831 \f
2832 /* Convert to a thin pointer type, TYPE. The only thing we know how to convert
2833 is something that is a fat pointer, so convert to it first if it EXPR
2834 is not already a fat pointer. */
2835
2836 static tree
2837 convert_to_thin_pointer (tree type, tree expr)
2838 {
2839 if (! TYPE_FAT_POINTER_P (TREE_TYPE (expr)))
2840 expr
2841 = convert_to_fat_pointer
2842 (TREE_TYPE (TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type))), expr);
2843
2844 /* We get the pointer to the data and use a NOP_EXPR to make it the
2845 proper GCC type. */
2846 expr
2847 = build_component_ref (expr, NULL_TREE, TYPE_FIELDS (TREE_TYPE (expr)), 0);
2848 expr = build1 (NOP_EXPR, type, expr);
2849
2850 return expr;
2851 }
2852 \f
2853 /* Create an expression whose value is that of EXPR,
2854 converted to type TYPE. The TREE_TYPE of the value
2855 is always TYPE. This function implements all reasonable
2856 conversions; callers should filter out those that are
2857 not permitted by the language being compiled. */
2858
2859 tree
2860 convert (tree type, tree expr)
2861 {
2862 enum tree_code code = TREE_CODE (type);
2863 tree etype = TREE_TYPE (expr);
2864 enum tree_code ecode = TREE_CODE (etype);
2865 tree tem;
2866
2867 /* If EXPR is already the right type, we are done. */
2868 if (type == etype)
2869 return expr;
2870 /* If we're converting between two aggregate types that have the same main
2871 variant, just make a NOP_EXPR. */
2872 else if (AGGREGATE_TYPE_P (type)
2873 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype))
2874 return build1 (NOP_EXPR, type, expr);
2875
2876 /* If the input type has padding, remove it by doing a component reference
2877 to the field. If the output type has padding, make a constructor
2878 to build the record. If both input and output have padding and are
2879 of variable size, do this as an unchecked conversion. */
2880 else if (ecode == RECORD_TYPE && code == RECORD_TYPE
2881 && TYPE_IS_PADDING_P (type) && TYPE_IS_PADDING_P (etype)
2882 && (! TREE_CONSTANT (TYPE_SIZE (type))
2883 || ! TREE_CONSTANT (TYPE_SIZE (etype))))
2884 ;
2885 else if (ecode == RECORD_TYPE && TYPE_IS_PADDING_P (etype))
2886 {
2887 /* If we have just converted to this padded type, just get
2888 the inner expression. */
2889 if (TREE_CODE (expr) == CONSTRUCTOR
2890 && CONSTRUCTOR_ELTS (expr) != 0
2891 && TREE_PURPOSE (CONSTRUCTOR_ELTS (expr)) == TYPE_FIELDS (etype))
2892 return TREE_VALUE (CONSTRUCTOR_ELTS (expr));
2893 else
2894 return convert (type, build_component_ref (expr, NULL_TREE,
2895 TYPE_FIELDS (etype), 0));
2896 }
2897 else if (code == RECORD_TYPE && TYPE_IS_PADDING_P (type))
2898 {
2899 /* If we previously converted from another type and our type is
2900 of variable size, remove the conversion to avoid the need for
2901 variable-size temporaries. */
2902 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
2903 && ! TREE_CONSTANT (TYPE_SIZE (type)))
2904 expr = TREE_OPERAND (expr, 0);
2905
2906 /* If we are just removing the padding from expr, convert the original
2907 object if we have variable size. That will avoid the need
2908 for some variable-size temporaries. */
2909 if (TREE_CODE (expr) == COMPONENT_REF
2910 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == RECORD_TYPE
2911 && TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (expr, 0)))
2912 && ! TREE_CONSTANT (TYPE_SIZE (type)))
2913 return convert (type, TREE_OPERAND (expr, 0));
2914
2915 /* If the result type is a padded type with a self-referentially-sized
2916 field and the expression type is a record, do this as an
2917 unchecked converstion. */
2918 else if (TREE_CODE (etype) == RECORD_TYPE
2919 && CONTAINS_PLACEHOLDER_P (DECL_SIZE (TYPE_FIELDS (type))))
2920 return unchecked_convert (type, expr, 0);
2921
2922 else
2923 return
2924 gnat_build_constructor (type,
2925 tree_cons (TYPE_FIELDS (type),
2926 convert (TREE_TYPE
2927 (TYPE_FIELDS (type)),
2928 expr),
2929 NULL_TREE));
2930 }
2931
2932 /* If the input is a biased type, adjust first. */
2933 if (ecode == INTEGER_TYPE && TYPE_BIASED_REPRESENTATION_P (etype))
2934 return convert (type, fold (build (PLUS_EXPR, TREE_TYPE (etype),
2935 fold (build1 (GNAT_NOP_EXPR,
2936 TREE_TYPE (etype), expr)),
2937 TYPE_MIN_VALUE (etype))));
2938
2939 /* If the input is a left-justified modular type, we need to extract
2940 the actual object before converting it to any other type with the
2941 exception of an unconstrained array. */
2942 if (ecode == RECORD_TYPE && TYPE_LEFT_JUSTIFIED_MODULAR_P (etype)
2943 && code != UNCONSTRAINED_ARRAY_TYPE)
2944 return convert (type, build_component_ref (expr, NULL_TREE,
2945 TYPE_FIELDS (etype), 0));
2946
2947 /* If converting to a type that contains a template, convert to the data
2948 type and then build the template. */
2949 if (code == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (type))
2950 {
2951 tree obj_type = TREE_TYPE (TREE_CHAIN (TYPE_FIELDS (type)));
2952
2953 /* If the source already has a template, get a reference to the
2954 associated array only, as we are going to rebuild a template
2955 for the target type anyway. */
2956 expr = maybe_unconstrained_array (expr);
2957
2958 return
2959 gnat_build_constructor
2960 (type,
2961 tree_cons (TYPE_FIELDS (type),
2962 build_template (TREE_TYPE (TYPE_FIELDS (type)),
2963 obj_type, NULL_TREE),
2964 tree_cons (TREE_CHAIN (TYPE_FIELDS (type)),
2965 convert (obj_type, expr), NULL_TREE)));
2966 }
2967
2968 /* There are some special cases of expressions that we process
2969 specially. */
2970 switch (TREE_CODE (expr))
2971 {
2972 case ERROR_MARK:
2973 return expr;
2974
2975 case TRANSFORM_EXPR:
2976 case NULL_EXPR:
2977 /* Just set its type here. For TRANSFORM_EXPR, we will do the actual
2978 conversion in gnat_expand_expr. NULL_EXPR does not represent
2979 and actual value, so no conversion is needed. */
2980 expr = copy_node (expr);
2981 TREE_TYPE (expr) = type;
2982 return expr;
2983
2984 case STRING_CST:
2985 case CONSTRUCTOR:
2986 /* If we are converting a STRING_CST to another constrained array type,
2987 just make a new one in the proper type. Likewise for
2988 CONSTRUCTOR if the alias sets are the same. */
2989 if (code == ecode && AGGREGATE_TYPE_P (etype)
2990 && ! (TREE_CODE (TYPE_SIZE (etype)) == INTEGER_CST
2991 && TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
2992 && (TREE_CODE (expr) == STRING_CST
2993 || get_alias_set (etype) == get_alias_set (type)))
2994 {
2995 expr = copy_node (expr);
2996 TREE_TYPE (expr) = type;
2997 return expr;
2998 }
2999 break;
3000
3001 case COMPONENT_REF:
3002 /* If we are converting between two aggregate types of the same
3003 kind, size, mode, and alignment, just make a new COMPONENT_REF.
3004 This avoid unneeded conversions which makes reference computations
3005 more complex. */
3006 if (code == ecode && TYPE_MODE (type) == TYPE_MODE (etype)
3007 && AGGREGATE_TYPE_P (type) && AGGREGATE_TYPE_P (etype)
3008 && TYPE_ALIGN (type) == TYPE_ALIGN (etype)
3009 && operand_equal_p (TYPE_SIZE (type), TYPE_SIZE (etype), 0)
3010 && get_alias_set (type) == get_alias_set (etype))
3011 return build (COMPONENT_REF, type, TREE_OPERAND (expr, 0),
3012 TREE_OPERAND (expr, 1));
3013
3014 break;
3015
3016 case UNCONSTRAINED_ARRAY_REF:
3017 /* Convert this to the type of the inner array by getting the address of
3018 the array from the template. */
3019 expr = build_unary_op (INDIRECT_REF, NULL_TREE,
3020 build_component_ref (TREE_OPERAND (expr, 0),
3021 get_identifier ("P_ARRAY"),
3022 NULL_TREE, 0));
3023 etype = TREE_TYPE (expr);
3024 ecode = TREE_CODE (etype);
3025 break;
3026
3027 case VIEW_CONVERT_EXPR:
3028 if (AGGREGATE_TYPE_P (type) && AGGREGATE_TYPE_P (etype)
3029 && ! TYPE_FAT_POINTER_P (type) && ! TYPE_FAT_POINTER_P (etype))
3030 return convert (type, TREE_OPERAND (expr, 0));
3031 break;
3032
3033 case INDIRECT_REF:
3034 /* If both types are record types, just convert the pointer and
3035 make a new INDIRECT_REF.
3036
3037 ??? Disable this for now since it causes problems with the
3038 code in build_binary_op for MODIFY_EXPR which wants to
3039 strip off conversions. But that code really is a mess and
3040 we need to do this a much better way some time. */
3041 if (0
3042 && (TREE_CODE (type) == RECORD_TYPE
3043 || TREE_CODE (type) == UNION_TYPE)
3044 && (TREE_CODE (etype) == RECORD_TYPE
3045 || TREE_CODE (etype) == UNION_TYPE)
3046 && ! TYPE_FAT_POINTER_P (type) && ! TYPE_FAT_POINTER_P (etype))
3047 return build_unary_op (INDIRECT_REF, NULL_TREE,
3048 convert (build_pointer_type (type),
3049 TREE_OPERAND (expr, 0)));
3050 break;
3051
3052 default:
3053 break;
3054 }
3055
3056 /* Check for converting to a pointer to an unconstrained array. */
3057 if (TYPE_FAT_POINTER_P (type) && ! TYPE_FAT_POINTER_P (etype))
3058 return convert_to_fat_pointer (type, expr);
3059
3060 if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (etype)
3061 || (code == INTEGER_CST && ecode == INTEGER_CST
3062 && (type == TREE_TYPE (etype) || etype == TREE_TYPE (type))))
3063 return fold (build1 (NOP_EXPR, type, expr));
3064
3065 switch (code)
3066 {
3067 case VOID_TYPE:
3068 return build1 (CONVERT_EXPR, type, expr);
3069
3070 case INTEGER_TYPE:
3071 if (TYPE_HAS_ACTUAL_BOUNDS_P (type)
3072 && (ecode == ARRAY_TYPE || ecode == UNCONSTRAINED_ARRAY_TYPE
3073 || (ecode == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (etype))))
3074 return unchecked_convert (type, expr, 0);
3075 else if (TYPE_BIASED_REPRESENTATION_P (type))
3076 return fold (build1 (CONVERT_EXPR, type,
3077 fold (build (MINUS_EXPR, TREE_TYPE (type),
3078 convert (TREE_TYPE (type), expr),
3079 TYPE_MIN_VALUE (type)))));
3080
3081 /* ... fall through ... */
3082
3083 case ENUMERAL_TYPE:
3084 return fold (convert_to_integer (type, expr));
3085
3086 case POINTER_TYPE:
3087 case REFERENCE_TYPE:
3088 /* If converting between two pointers to records denoting
3089 both a template and type, adjust if needed to account
3090 for any differing offsets, since one might be negative. */
3091 if (TYPE_THIN_POINTER_P (etype) && TYPE_THIN_POINTER_P (type))
3092 {
3093 tree bit_diff
3094 = size_diffop (bit_position (TYPE_FIELDS (TREE_TYPE (etype))),
3095 bit_position (TYPE_FIELDS (TREE_TYPE (type))));
3096 tree byte_diff = size_binop (CEIL_DIV_EXPR, bit_diff,
3097 sbitsize_int (BITS_PER_UNIT));
3098
3099 expr = build1 (NOP_EXPR, type, expr);
3100 TREE_CONSTANT (expr) = TREE_CONSTANT (TREE_OPERAND (expr, 0));
3101 if (integer_zerop (byte_diff))
3102 return expr;
3103
3104 return build_binary_op (PLUS_EXPR, type, expr,
3105 fold (convert_to_pointer (type, byte_diff)));
3106 }
3107
3108 /* If converting to a thin pointer, handle specially. */
3109 if (TYPE_THIN_POINTER_P (type)
3110 && TYPE_UNCONSTRAINED_ARRAY (TREE_TYPE (type)) != 0)
3111 return convert_to_thin_pointer (type, expr);
3112
3113 /* If converting fat pointer to normal pointer, get the pointer to the
3114 array and then convert it. */
3115 else if (TYPE_FAT_POINTER_P (etype))
3116 expr = build_component_ref (expr, get_identifier ("P_ARRAY"),
3117 NULL_TREE, 0);
3118
3119 return fold (convert_to_pointer (type, expr));
3120
3121 case REAL_TYPE:
3122 return fold (convert_to_real (type, expr));
3123
3124 case RECORD_TYPE:
3125 if (TYPE_LEFT_JUSTIFIED_MODULAR_P (type) && ! AGGREGATE_TYPE_P (etype))
3126 return
3127 gnat_build_constructor
3128 (type, tree_cons (TYPE_FIELDS (type),
3129 convert (TREE_TYPE (TYPE_FIELDS (type)), expr),
3130 NULL_TREE));
3131
3132 /* ... fall through ... */
3133
3134 case ARRAY_TYPE:
3135 /* In these cases, assume the front-end has validated the conversion.
3136 If the conversion is valid, it will be a bit-wise conversion, so
3137 it can be viewed as an unchecked conversion. */
3138 return unchecked_convert (type, expr, 0);
3139
3140 case UNION_TYPE:
3141 /* Just validate that the type is indeed that of a field
3142 of the type. Then make the simple conversion. */
3143 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
3144 {
3145 if (TREE_TYPE (tem) == etype)
3146 return build1 (CONVERT_EXPR, type, expr);
3147 else if (TREE_CODE (TREE_TYPE (tem)) == RECORD_TYPE
3148 && (TYPE_LEFT_JUSTIFIED_MODULAR_P (TREE_TYPE (tem))
3149 || TYPE_IS_PADDING_P (TREE_TYPE (tem)))
3150 && TREE_TYPE (TYPE_FIELDS (TREE_TYPE (tem))) == etype)
3151 return build1 (CONVERT_EXPR, type,
3152 convert (TREE_TYPE (tem), expr));
3153 }
3154
3155 gigi_abort (413);
3156
3157 case UNCONSTRAINED_ARRAY_TYPE:
3158 /* If EXPR is a constrained array, take its address, convert it to a
3159 fat pointer, and then dereference it. Likewise if EXPR is a
3160 record containing both a template and a constrained array.
3161 Note that a record representing a left justified modular type
3162 always represents a packed constrained array. */
3163 if (ecode == ARRAY_TYPE
3164 || (ecode == INTEGER_TYPE && TYPE_HAS_ACTUAL_BOUNDS_P (etype))
3165 || (ecode == RECORD_TYPE && TYPE_CONTAINS_TEMPLATE_P (etype))
3166 || (ecode == RECORD_TYPE && TYPE_LEFT_JUSTIFIED_MODULAR_P (etype)))
3167 return
3168 build_unary_op
3169 (INDIRECT_REF, NULL_TREE,
3170 convert_to_fat_pointer (TREE_TYPE (type),
3171 build_unary_op (ADDR_EXPR,
3172 NULL_TREE, expr)));
3173
3174 /* Do something very similar for converting one unconstrained
3175 array to another. */
3176 else if (ecode == UNCONSTRAINED_ARRAY_TYPE)
3177 return
3178 build_unary_op (INDIRECT_REF, NULL_TREE,
3179 convert (TREE_TYPE (type),
3180 build_unary_op (ADDR_EXPR,
3181 NULL_TREE, expr)));
3182 else
3183 gigi_abort (409);
3184
3185 case COMPLEX_TYPE:
3186 return fold (convert_to_complex (type, expr));
3187
3188 default:
3189 gigi_abort (410);
3190 }
3191 }
3192 \f
3193 /* Remove all conversions that are done in EXP. This includes converting
3194 from a padded type or to a left-justified modular type. If TRUE_ADDRESS
3195 is nonzero, always return the address of the containing object even if
3196 the address is not bit-aligned. */
3197
3198 tree
3199 remove_conversions (tree exp, int true_address)
3200 {
3201 switch (TREE_CODE (exp))
3202 {
3203 case CONSTRUCTOR:
3204 if (true_address
3205 && TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE
3206 && TYPE_LEFT_JUSTIFIED_MODULAR_P (TREE_TYPE (exp)))
3207 return remove_conversions (TREE_VALUE (CONSTRUCTOR_ELTS (exp)), 1);
3208 break;
3209
3210 case COMPONENT_REF:
3211 if (TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == RECORD_TYPE
3212 && TYPE_IS_PADDING_P (TREE_TYPE (TREE_OPERAND (exp, 0))))
3213 return remove_conversions (TREE_OPERAND (exp, 0), true_address);
3214 break;
3215
3216 case VIEW_CONVERT_EXPR: case NON_LVALUE_EXPR:
3217 case NOP_EXPR: case CONVERT_EXPR: case GNAT_NOP_EXPR:
3218 return remove_conversions (TREE_OPERAND (exp, 0), true_address);
3219
3220 default:
3221 break;
3222 }
3223
3224 return exp;
3225 }
3226 \f
3227 /* If EXP's type is an UNCONSTRAINED_ARRAY_TYPE, return an expression that
3228 refers to the underlying array. If its type has TYPE_CONTAINS_TEMPLATE_P,
3229 likewise return an expression pointing to the underlying array. */
3230
3231 tree
3232 maybe_unconstrained_array (tree exp)
3233 {
3234 enum tree_code code = TREE_CODE (exp);
3235 tree new;
3236
3237 switch (TREE_CODE (TREE_TYPE (exp)))
3238 {
3239 case UNCONSTRAINED_ARRAY_TYPE:
3240 if (code == UNCONSTRAINED_ARRAY_REF)
3241 {
3242 new
3243 = build_unary_op (INDIRECT_REF, NULL_TREE,
3244 build_component_ref (TREE_OPERAND (exp, 0),
3245 get_identifier ("P_ARRAY"),
3246 NULL_TREE, 0));
3247 TREE_READONLY (new) = TREE_STATIC (new) = TREE_READONLY (exp);
3248 return new;
3249 }
3250
3251 else if (code == NULL_EXPR)
3252 return build1 (NULL_EXPR,
3253 TREE_TYPE (TREE_TYPE (TYPE_FIELDS
3254 (TREE_TYPE (TREE_TYPE (exp))))),
3255 TREE_OPERAND (exp, 0));
3256
3257 case RECORD_TYPE:
3258 /* If this is a padded type, convert to the unpadded type and see if
3259 it contains a template. */
3260 if (TYPE_IS_PADDING_P (TREE_TYPE (exp)))
3261 {
3262 new = convert (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (exp))), exp);
3263 if (TREE_CODE (TREE_TYPE (new)) == RECORD_TYPE
3264 && TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (new)))
3265 return
3266 build_component_ref (new, NULL_TREE,
3267 TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (new))),
3268 0);
3269 }
3270 else if (TYPE_CONTAINS_TEMPLATE_P (TREE_TYPE (exp)))
3271 return
3272 build_component_ref (exp, NULL_TREE,
3273 TREE_CHAIN (TYPE_FIELDS (TREE_TYPE (exp))), 0);
3274 break;
3275
3276 default:
3277 break;
3278 }
3279
3280 return exp;
3281 }
3282 \f
3283 /* Return an expression that does an unchecked converstion of EXPR to TYPE.
3284 If NOTRUNC_P is set, truncation operations should be suppressed. */
3285
3286 tree
3287 unchecked_convert (tree type, tree expr, int notrunc_p)
3288 {
3289 tree etype = TREE_TYPE (expr);
3290
3291 /* If the expression is already the right type, we are done. */
3292 if (etype == type)
3293 return expr;
3294
3295 /* If both types types are integral just do a normal conversion.
3296 Likewise for a conversion to an unconstrained array. */
3297 if ((((INTEGRAL_TYPE_P (type)
3298 && ! (TREE_CODE (type) == INTEGER_TYPE
3299 && TYPE_VAX_FLOATING_POINT_P (type)))
3300 || (POINTER_TYPE_P (type) && ! TYPE_THIN_POINTER_P (type))
3301 || (TREE_CODE (type) == RECORD_TYPE
3302 && TYPE_LEFT_JUSTIFIED_MODULAR_P (type)))
3303 && ((INTEGRAL_TYPE_P (etype)
3304 && ! (TREE_CODE (etype) == INTEGER_TYPE
3305 && TYPE_VAX_FLOATING_POINT_P (etype)))
3306 || (POINTER_TYPE_P (etype) && ! TYPE_THIN_POINTER_P (etype))
3307 || (TREE_CODE (etype) == RECORD_TYPE
3308 && TYPE_LEFT_JUSTIFIED_MODULAR_P (etype))))
3309 || TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
3310 {
3311 tree rtype = type;
3312
3313 if (TREE_CODE (etype) == INTEGER_TYPE
3314 && TYPE_BIASED_REPRESENTATION_P (etype))
3315 {
3316 tree ntype = copy_type (etype);
3317
3318 TYPE_BIASED_REPRESENTATION_P (ntype) = 0;
3319 TYPE_MAIN_VARIANT (ntype) = ntype;
3320 expr = build1 (GNAT_NOP_EXPR, ntype, expr);
3321 }
3322
3323 if (TREE_CODE (type) == INTEGER_TYPE
3324 && TYPE_BIASED_REPRESENTATION_P (type))
3325 {
3326 rtype = copy_type (type);
3327 TYPE_BIASED_REPRESENTATION_P (rtype) = 0;
3328 TYPE_MAIN_VARIANT (rtype) = rtype;
3329 }
3330
3331 expr = convert (rtype, expr);
3332 if (type != rtype)
3333 expr = build1 (GNAT_NOP_EXPR, type, expr);
3334 }
3335
3336 /* If we are converting TO an integral type whose precision is not the
3337 same as its size, first unchecked convert to a record that contains
3338 an object of the output type. Then extract the field. */
3339 else if (INTEGRAL_TYPE_P (type) && TYPE_RM_SIZE (type) != 0
3340 && 0 != compare_tree_int (TYPE_RM_SIZE (type),
3341 GET_MODE_BITSIZE (TYPE_MODE (type))))
3342 {
3343 tree rec_type = make_node (RECORD_TYPE);
3344 tree field = create_field_decl (get_identifier ("OBJ"), type,
3345 rec_type, 1, 0, 0, 0);
3346
3347 TYPE_FIELDS (rec_type) = field;
3348 layout_type (rec_type);
3349
3350 expr = unchecked_convert (rec_type, expr, notrunc_p);
3351 expr = build_component_ref (expr, NULL_TREE, field, 0);
3352 }
3353
3354 /* Similarly for integral input type whose precision is not equal to its
3355 size. */
3356 else if (INTEGRAL_TYPE_P (etype) && TYPE_RM_SIZE (etype) != 0
3357 && 0 != compare_tree_int (TYPE_RM_SIZE (etype),
3358 GET_MODE_BITSIZE (TYPE_MODE (etype))))
3359 {
3360 tree rec_type = make_node (RECORD_TYPE);
3361 tree field
3362 = create_field_decl (get_identifier ("OBJ"), etype, rec_type,
3363 1, 0, 0, 0);
3364
3365 TYPE_FIELDS (rec_type) = field;
3366 layout_type (rec_type);
3367
3368 expr = gnat_build_constructor (rec_type, build_tree_list (field, expr));
3369 expr = unchecked_convert (type, expr, notrunc_p);
3370 }
3371
3372 /* We have a special case when we are converting between two
3373 unconstrained array types. In that case, take the address,
3374 convert the fat pointer types, and dereference. */
3375 else if (TREE_CODE (etype) == UNCONSTRAINED_ARRAY_TYPE
3376 && TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
3377 expr = build_unary_op (INDIRECT_REF, NULL_TREE,
3378 build1 (VIEW_CONVERT_EXPR, TREE_TYPE (type),
3379 build_unary_op (ADDR_EXPR, NULL_TREE,
3380 expr)));
3381 else
3382 {
3383 expr = maybe_unconstrained_array (expr);
3384 etype = TREE_TYPE (expr);
3385 expr = build1 (VIEW_CONVERT_EXPR, type, expr);
3386 }
3387
3388 /* If the result is an integral type whose size is not equal to
3389 the size of the underlying machine type, sign- or zero-extend
3390 the result. We need not do this in the case where the input is
3391 an integral type of the same precision and signedness or if the output
3392 is a biased type or if both the input and output are unsigned. */
3393 if (! notrunc_p
3394 && INTEGRAL_TYPE_P (type) && TYPE_RM_SIZE (type) != 0
3395 && ! (TREE_CODE (type) == INTEGER_TYPE
3396 && TYPE_BIASED_REPRESENTATION_P (type))
3397 && 0 != compare_tree_int (TYPE_RM_SIZE (type),
3398 GET_MODE_BITSIZE (TYPE_MODE (type)))
3399 && ! (INTEGRAL_TYPE_P (etype)
3400 && TYPE_UNSIGNED (type) == TYPE_UNSIGNED (etype)
3401 && operand_equal_p (TYPE_RM_SIZE (type),
3402 (TYPE_RM_SIZE (etype) != 0
3403 ? TYPE_RM_SIZE (etype) : TYPE_SIZE (etype)),
3404 0))
3405 && ! (TYPE_UNSIGNED (type) && TYPE_UNSIGNED (etype)))
3406 {
3407 tree base_type = gnat_type_for_mode (TYPE_MODE (type),
3408 TYPE_UNSIGNED (type));
3409 tree shift_expr
3410 = convert (base_type,
3411 size_binop (MINUS_EXPR,
3412 bitsize_int
3413 (GET_MODE_BITSIZE (TYPE_MODE (type))),
3414 TYPE_RM_SIZE (type)));
3415 expr
3416 = convert (type,
3417 build_binary_op (RSHIFT_EXPR, base_type,
3418 build_binary_op (LSHIFT_EXPR, base_type,
3419 convert (base_type, expr),
3420 shift_expr),
3421 shift_expr));
3422 }
3423
3424 /* An unchecked conversion should never raise Constraint_Error. The code
3425 below assumes that GCC's conversion routines overflow the same way that
3426 the underlying hardware does. This is probably true. In the rare case
3427 when it is false, we can rely on the fact that such conversions are
3428 erroneous anyway. */
3429 if (TREE_CODE (expr) == INTEGER_CST)
3430 TREE_OVERFLOW (expr) = TREE_CONSTANT_OVERFLOW (expr) = 0;
3431
3432 /* If the sizes of the types differ and this is an VIEW_CONVERT_EXPR,
3433 show no longer constant. */
3434 if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
3435 && ! operand_equal_p (TYPE_SIZE_UNIT (type), TYPE_SIZE_UNIT (etype), 1))
3436 TREE_CONSTANT (expr) = 0;
3437
3438 return expr;
3439 }
3440
3441 #include "gt-ada-utils.h"
3442 #include "gtype-ada.h"