]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ada/gcc-interface/misc.c
2015-06-08 Andrew MacLeod <amacleod@redhat.com>
[thirdparty/gcc.git] / gcc / ada / gcc-interface / misc.c
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * M I S C *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2015, 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 3, 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 COPYING3. If not see *
19 * <http://www.gnu.org/licenses/>. *
20 * *
21 * GNAT was originally developed by the GNAT team at New York University. *
22 * Extensive contributions were provided by Ada Core Technologies Inc. *
23 * *
24 ****************************************************************************/
25
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "opts.h"
30 #include "options.h"
31 #include "tm.h"
32 #include "vec.h"
33 #include "input.h"
34 #include "alias.h"
35 #include "symtab.h"
36 #include "inchash.h"
37 #include "tree.h"
38 #include "fold-const.h"
39 #include "stor-layout.h"
40 #include "print-tree.h"
41 #include "diagnostic.h"
42 #include "target.h"
43 #include "ggc.h"
44 #include "flags.h"
45 #include "debug.h"
46 #include "toplev.h"
47 #include "langhooks.h"
48 #include "langhooks-def.h"
49 #include "plugin.h"
50 #include "hashtab.h"
51 #include "vec.h"
52 #include "hard-reg-set.h"
53 #include "input.h"
54 #include "function.h" /* For pass_by_reference. */
55 #include "dwarf2out.h"
56
57 #include "ada.h"
58 #include "adadecode.h"
59 #include "types.h"
60 #include "atree.h"
61 #include "elists.h"
62 #include "namet.h"
63 #include "nlists.h"
64 #include "stringt.h"
65 #include "uintp.h"
66 #include "fe.h"
67 #include "sinfo.h"
68 #include "einfo.h"
69 #include "ada-tree.h"
70 #include "gigi.h"
71
72 /* This symbol needs to be defined for the front-end. */
73 void *callgraph_info_file = NULL;
74
75 /* Command-line argc and argv. These variables are global since they are
76 imported in back_end.adb. */
77 unsigned int save_argc;
78 const char **save_argv;
79
80 /* GNAT argc and argv. */
81 extern int gnat_argc;
82 extern char **gnat_argv;
83
84 #ifdef __cplusplus
85 extern "C" {
86 #endif
87
88 /* Declare functions we use as part of startup. */
89 extern void __gnat_initialize (void *);
90 extern void __gnat_install_SEH_handler (void *);
91 extern void adainit (void);
92 extern void _ada_gnat1drv (void);
93
94 #ifdef __cplusplus
95 }
96 #endif
97
98 /* The parser for the language. For us, we process the GNAT tree. */
99
100 static void
101 gnat_parse_file (void)
102 {
103 int seh[2];
104
105 /* Call the target specific initializations. */
106 __gnat_initialize (NULL);
107
108 /* ??? Call the SEH initialization routine. This is to workaround
109 a bootstrap path problem. The call below should be removed at some
110 point and the SEH pointer passed to __gnat_initialize() above. */
111 __gnat_install_SEH_handler((void *)seh);
112
113 /* Call the front-end elaboration procedures. */
114 adainit ();
115
116 /* Call the front end. */
117 _ada_gnat1drv ();
118
119 note_types_used_by_globals ();
120 }
121
122 /* Return language mask for option processing. */
123
124 static unsigned int
125 gnat_option_lang_mask (void)
126 {
127 return CL_Ada;
128 }
129
130 /* Decode all the language specific options that cannot be decoded by GCC.
131 The option decoding phase of GCC calls this routine on the flags that
132 are marked as Ada-specific. Return true on success or false on failure. */
133
134 static bool
135 gnat_handle_option (size_t scode, const char *arg ATTRIBUTE_UNUSED, int value,
136 int kind ATTRIBUTE_UNUSED, location_t loc ATTRIBUTE_UNUSED,
137 const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
138 {
139 enum opt_code code = (enum opt_code) scode;
140
141 switch (code)
142 {
143 case OPT_Wall:
144 handle_generated_option (&global_options, &global_options_set,
145 OPT_Wunused, NULL, value,
146 gnat_option_lang_mask (), kind, loc,
147 handlers, global_dc);
148 warn_uninitialized = value;
149 warn_maybe_uninitialized = value;
150 break;
151
152 case OPT_gant:
153 warning (0, "%<-gnat%> misspelled as %<-gant%>");
154
155 /* ... fall through ... */
156
157 case OPT_gnat:
158 case OPT_gnatO:
159 case OPT_fRTS_:
160 case OPT_I:
161 case OPT_nostdinc:
162 case OPT_nostdlib:
163 /* These are handled by the front-end. */
164 break;
165
166 case OPT_fshort_enums:
167 /* This is handled by the middle-end. */
168 break;
169
170 default:
171 gcc_unreachable ();
172 }
173
174 Ada_handle_option_auto (&global_options, &global_options_set,
175 scode, arg, value,
176 gnat_option_lang_mask (), kind,
177 loc, handlers, global_dc);
178 return true;
179 }
180
181 /* Initialize options structure OPTS. */
182
183 static void
184 gnat_init_options_struct (struct gcc_options *opts)
185 {
186 /* Uninitialized really means uninitialized in Ada. */
187 opts->x_flag_zero_initialized_in_bss = 0;
188
189 /* We don't care about errno in Ada and it causes __builtin_sqrt to
190 call the libm function rather than do it inline. */
191 opts->x_flag_errno_math = 0;
192 opts->frontend_set_flag_errno_math = true;
193 }
194
195 /* Initialize for option processing. */
196
197 static void
198 gnat_init_options (unsigned int decoded_options_count,
199 struct cl_decoded_option *decoded_options)
200 {
201 /* Reconstruct an argv array for use of back_end.adb.
202
203 ??? back_end.adb should not rely on this; instead, it should work with
204 decoded options without such reparsing, to ensure consistency in how
205 options are decoded. */
206 unsigned int i;
207
208 save_argv = XNEWVEC (const char *, 2 * decoded_options_count + 1);
209 save_argc = 0;
210 for (i = 0; i < decoded_options_count; i++)
211 {
212 size_t num_elements = decoded_options[i].canonical_option_num_elements;
213
214 if (decoded_options[i].errors
215 || decoded_options[i].opt_index == OPT_SPECIAL_unknown
216 || num_elements == 0)
217 continue;
218
219 /* Deal with -I- specially since it must be a single switch. */
220 if (decoded_options[i].opt_index == OPT_I
221 && num_elements == 2
222 && decoded_options[i].canonical_option[1][0] == '-'
223 && decoded_options[i].canonical_option[1][1] == '\0')
224 save_argv[save_argc++] = "-I-";
225 else
226 {
227 gcc_assert (num_elements >= 1 && num_elements <= 2);
228 save_argv[save_argc++] = decoded_options[i].canonical_option[0];
229 if (num_elements >= 2)
230 save_argv[save_argc++] = decoded_options[i].canonical_option[1];
231 }
232 }
233 save_argv[save_argc] = NULL;
234
235 gnat_argv = (char **) xmalloc (sizeof (save_argv[0]));
236 gnat_argv[0] = xstrdup (save_argv[0]); /* name of the command */
237 gnat_argc = 1;
238 }
239
240 /* Ada code requires variables for these settings rather than elements
241 of the global_options structure. */
242 #undef optimize
243 #undef optimize_size
244 #undef flag_compare_debug
245 #undef flag_short_enums
246 #undef flag_stack_check
247 int gnat_encodings = 0;
248 int optimize;
249 int optimize_size;
250 int flag_compare_debug;
251 int flag_short_enums;
252 enum stack_check_type flag_stack_check = NO_STACK_CHECK;
253
254 /* Settings adjustments after switches processing by the back-end.
255 Note that the front-end switches processing (Scan_Compiler_Arguments)
256 has not been done yet at this point! */
257
258 static bool
259 gnat_post_options (const char **pfilename ATTRIBUTE_UNUSED)
260 {
261 /* Excess precision other than "fast" requires front-end support. */
262 if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
263 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
264 sorry ("-fexcess-precision=standard for Ada");
265 flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
266
267 /* ??? The warning machinery is outsmarted by Ada. */
268 warn_unused_parameter = 0;
269
270 /* No psABI change warnings for Ada. */
271 warn_psabi = 0;
272
273 /* No caret by default for Ada. */
274 if (!global_options_set.x_flag_diagnostics_show_caret)
275 global_dc->show_caret = false;
276
277 optimize = global_options.x_optimize;
278 optimize_size = global_options.x_optimize_size;
279 flag_compare_debug = global_options.x_flag_compare_debug;
280 flag_stack_check = global_options.x_flag_stack_check;
281 flag_short_enums = global_options.x_flag_short_enums;
282
283 /* Unfortunately the post_options hook is called before the value of
284 flag_short_enums is autodetected, if need be. Mimic the process
285 for our private flag_short_enums. */
286 if (flag_short_enums == 2)
287 flag_short_enums = targetm.default_short_enums ();
288
289 return false;
290 }
291
292 /* Here is the function to handle the compiler error processing in GCC. */
293
294 static void
295 internal_error_function (diagnostic_context *context,
296 const char *msgid, va_list *ap)
297 {
298 text_info tinfo;
299 char *buffer, *p, *loc;
300 String_Template temp, temp_loc;
301 String_Pointer sp, sp_loc;
302 expanded_location xloc;
303
304 /* Warn if plugins present. */
305 warn_if_plugins ();
306
307 /* Reset the pretty-printer. */
308 pp_clear_output_area (context->printer);
309
310 /* Format the message into the pretty-printer. */
311 tinfo.format_spec = msgid;
312 tinfo.args_ptr = ap;
313 tinfo.err_no = errno;
314 pp_format_verbatim (context->printer, &tinfo);
315
316 /* Extract a (writable) pointer to the formatted text. */
317 buffer = xstrdup (pp_formatted_text (context->printer));
318
319 /* Go up to the first newline. */
320 for (p = buffer; *p; p++)
321 if (*p == '\n')
322 {
323 *p = '\0';
324 break;
325 }
326
327 temp.Low_Bound = 1;
328 temp.High_Bound = p - buffer;
329 sp.Bounds = &temp;
330 sp.Array = buffer;
331
332 xloc = expand_location (input_location);
333 if (context->show_column && xloc.column != 0)
334 loc = xasprintf ("%s:%d:%d", xloc.file, xloc.line, xloc.column);
335 else
336 loc = xasprintf ("%s:%d", xloc.file, xloc.line);
337 temp_loc.Low_Bound = 1;
338 temp_loc.High_Bound = strlen (loc);
339 sp_loc.Bounds = &temp_loc;
340 sp_loc.Array = loc;
341
342 Current_Error_Node = error_gnat_node;
343 Compiler_Abort (sp, sp_loc, true);
344 }
345
346 /* Perform all the initialization steps that are language-specific. */
347
348 static bool
349 gnat_init (void)
350 {
351 /* Do little here, most of the standard declarations are set up after the
352 front-end has been run. Use the same `char' as C, this doesn't really
353 matter since we'll use the explicit `unsigned char' for Character. */
354 build_common_tree_nodes (flag_signed_char, false);
355
356 /* In Ada, we use an unsigned 8-bit type for the default boolean type. */
357 boolean_type_node = make_unsigned_type (8);
358 TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
359 SET_TYPE_RM_MAX_VALUE (boolean_type_node,
360 build_int_cst (boolean_type_node, 1));
361 SET_TYPE_RM_SIZE (boolean_type_node, bitsize_int (1));
362 boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
363 boolean_false_node = TYPE_MIN_VALUE (boolean_type_node);
364
365 sbitsize_one_node = sbitsize_int (1);
366 sbitsize_unit_node = sbitsize_int (BITS_PER_UNIT);
367
368 /* Show that REFERENCE_TYPEs are internal and should be Pmode. */
369 internal_reference_types ();
370
371 /* Register our internal error function. */
372 global_dc->internal_error = &internal_error_function;
373
374 return true;
375 }
376
377 /* Initialize the GCC support for exception handling. */
378
379 void
380 gnat_init_gcc_eh (void)
381 {
382 /* We shouldn't do anything if the No_Exceptions_Handler pragma is set,
383 though. This could for instance lead to the emission of tables with
384 references to symbols (such as the Ada eh personality routine) within
385 libraries we won't link against. */
386 if (No_Exception_Handlers_Set ())
387 return;
388
389 /* Tell GCC we are handling cleanup actions through exception propagation.
390 This opens possibilities that we don't take advantage of yet, but is
391 nonetheless necessary to ensure that fixup code gets assigned to the
392 right exception regions. */
393 using_eh_for_cleanups ();
394
395 /* Turn on -fexceptions, -fnon-call-exceptions and -fdelete-dead-exceptions.
396 The first one triggers the generation of the necessary exception tables.
397 The second one is useful for two reasons: 1/ we map some asynchronous
398 signals like SEGV to exceptions, so we need to ensure that the insns
399 which can lead to such signals are correctly attached to the exception
400 region they pertain to, 2/ some calls to pure subprograms are handled as
401 libcall blocks and then marked as "cannot trap" if the flag is not set
402 (see emit_libcall_block). We should not let this be since it is possible
403 for such calls to actually raise in Ada.
404 The third one is an optimization that makes it possible to delete dead
405 instructions that may throw exceptions, most notably loads and stores,
406 as permitted in Ada. */
407 flag_exceptions = 1;
408 flag_non_call_exceptions = 1;
409 flag_delete_dead_exceptions = 1;
410
411 init_eh ();
412 }
413
414 /* Initialize the GCC support for floating-point operations. */
415
416 void
417 gnat_init_gcc_fp (void)
418 {
419 /* Disable FP optimizations that ignore the signedness of zero if
420 S'Signed_Zeros is true, but don't override the user if not. */
421 if (Signed_Zeros_On_Target)
422 flag_signed_zeros = 1;
423 else if (!global_options_set.x_flag_signed_zeros)
424 flag_signed_zeros = 0;
425
426 /* Assume that FP operations can trap if S'Machine_Overflow is true,
427 but don't override the user if not. */
428 if (Machine_Overflows_On_Target)
429 flag_trapping_math = 1;
430 else if (!global_options_set.x_flag_trapping_math)
431 flag_trapping_math = 0;
432 }
433
434 /* Print language-specific items in declaration NODE. */
435
436 static void
437 gnat_print_decl (FILE *file, tree node, int indent)
438 {
439 switch (TREE_CODE (node))
440 {
441 case CONST_DECL:
442 print_node (file, "corresponding var",
443 DECL_CONST_CORRESPONDING_VAR (node), indent + 4);
444 break;
445
446 case FIELD_DECL:
447 print_node (file, "original field", DECL_ORIGINAL_FIELD (node),
448 indent + 4);
449 break;
450
451 case VAR_DECL:
452 if (DECL_LOOP_PARM_P (node))
453 print_node (file, "induction var", DECL_INDUCTION_VAR (node),
454 indent + 4);
455 else
456 print_node (file, "renamed object", DECL_RENAMED_OBJECT (node),
457 indent + 4);
458 break;
459
460 default:
461 break;
462 }
463 }
464
465 /* Print language-specific items in type NODE. */
466
467 static void
468 gnat_print_type (FILE *file, tree node, int indent)
469 {
470 switch (TREE_CODE (node))
471 {
472 case FUNCTION_TYPE:
473 print_node (file, "ci/co list", TYPE_CI_CO_LIST (node), indent + 4);
474 break;
475
476 case INTEGER_TYPE:
477 if (TYPE_MODULAR_P (node))
478 print_node_brief (file, "modulus", TYPE_MODULUS (node), indent + 4);
479 else if (TYPE_HAS_ACTUAL_BOUNDS_P (node))
480 print_node (file, "actual bounds", TYPE_ACTUAL_BOUNDS (node),
481 indent + 4);
482 else
483 print_node (file, "index type", TYPE_INDEX_TYPE (node), indent + 4);
484
485 /* ... fall through ... */
486
487 case ENUMERAL_TYPE:
488 case BOOLEAN_TYPE:
489 print_node_brief (file, "RM size", TYPE_RM_SIZE (node), indent + 4);
490
491 /* ... fall through ... */
492
493 case REAL_TYPE:
494 print_node_brief (file, "RM min", TYPE_RM_MIN_VALUE (node), indent + 4);
495 print_node_brief (file, "RM max", TYPE_RM_MAX_VALUE (node), indent + 4);
496 break;
497
498 case ARRAY_TYPE:
499 print_node (file,"actual bounds", TYPE_ACTUAL_BOUNDS (node), indent + 4);
500 break;
501
502 case VECTOR_TYPE:
503 print_node (file,"representative array",
504 TYPE_REPRESENTATIVE_ARRAY (node), indent + 4);
505 break;
506
507 case RECORD_TYPE:
508 if (TYPE_FAT_POINTER_P (node) || TYPE_CONTAINS_TEMPLATE_P (node))
509 print_node (file, "unconstrained array",
510 TYPE_UNCONSTRAINED_ARRAY (node), indent + 4);
511 else
512 print_node (file, "Ada size", TYPE_ADA_SIZE (node), indent + 4);
513 break;
514
515 case UNION_TYPE:
516 case QUAL_UNION_TYPE:
517 print_node (file, "Ada size", TYPE_ADA_SIZE (node), indent + 4);
518 break;
519
520 default:
521 break;
522 }
523 }
524
525 /* Return the name to be printed for DECL. */
526
527 static const char *
528 gnat_printable_name (tree decl, int verbosity)
529 {
530 const char *coded_name = IDENTIFIER_POINTER (DECL_NAME (decl));
531 char *ada_name = (char *) ggc_alloc_atomic (strlen (coded_name) * 2 + 60);
532
533 __gnat_decode (coded_name, ada_name, 0);
534
535 if (verbosity == 2 && !DECL_IS_BUILTIN (decl))
536 {
537 Set_Identifier_Casing (ada_name, DECL_SOURCE_FILE (decl));
538 return ggc_strdup (Name_Buffer);
539 }
540
541 return ada_name;
542 }
543
544 /* Return the name to be used in DWARF debug info for DECL. */
545
546 static const char *
547 gnat_dwarf_name (tree decl, int verbosity ATTRIBUTE_UNUSED)
548 {
549 gcc_assert (DECL_P (decl));
550 return (const char *) IDENTIFIER_POINTER (DECL_NAME (decl));
551 }
552
553 /* Return the descriptive type associated with TYPE, if any. */
554
555 static tree
556 gnat_descriptive_type (const_tree type)
557 {
558 if (TYPE_STUB_DECL (type))
559 return DECL_PARALLEL_TYPE (TYPE_STUB_DECL (type));
560 else
561 return NULL_TREE;
562 }
563
564 /* Return true if types T1 and T2 are identical for type hashing purposes.
565 Called only after doing all language independent checks. At present,
566 this function is only called when both types are FUNCTION_TYPE. */
567
568 static bool
569 gnat_type_hash_eq (const_tree t1, const_tree t2)
570 {
571 gcc_assert (TREE_CODE (t1) == FUNCTION_TYPE);
572 return fntype_same_flags_p (t1, TYPE_CI_CO_LIST (t2),
573 TYPE_RETURN_UNCONSTRAINED_P (t2),
574 TYPE_RETURN_BY_DIRECT_REF_P (t2),
575 TREE_ADDRESSABLE (t2));
576 }
577
578 /* Do nothing (return the tree node passed). */
579
580 static tree
581 gnat_return_tree (tree t)
582 {
583 return t;
584 }
585
586 /* Get the alias set corresponding to a type or expression. */
587
588 static alias_set_type
589 gnat_get_alias_set (tree type)
590 {
591 /* If this is a padding type, use the type of the first field. */
592 if (TYPE_IS_PADDING_P (type))
593 return get_alias_set (TREE_TYPE (TYPE_FIELDS (type)));
594
595 /* If the type is an unconstrained array, use the type of the
596 self-referential array we make. */
597 else if (TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
598 return
599 get_alias_set (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (type)))));
600
601 /* If the type can alias any other types, return the alias set 0. */
602 else if (TYPE_P (type) && TYPE_UNIVERSAL_ALIASING_P (type))
603 return 0;
604
605 return -1;
606 }
607
608 /* GNU_TYPE is a type. Return its maximum size in bytes, if known,
609 as a constant when possible. */
610
611 static tree
612 gnat_type_max_size (const_tree gnu_type)
613 {
614 /* First see what we can get from TYPE_SIZE_UNIT, which might not
615 be constant even for simple expressions if it has already been
616 elaborated and possibly replaced by a VAR_DECL. */
617 tree max_unitsize = max_size (TYPE_SIZE_UNIT (gnu_type), true);
618
619 /* If we don't have a constant, see what we can get from TYPE_ADA_SIZE,
620 which should stay untouched. */
621 if (!tree_fits_uhwi_p (max_unitsize)
622 && RECORD_OR_UNION_TYPE_P (gnu_type)
623 && !TYPE_FAT_POINTER_P (gnu_type)
624 && TYPE_ADA_SIZE (gnu_type))
625 {
626 tree max_adasize = max_size (TYPE_ADA_SIZE (gnu_type), true);
627
628 /* If we have succeeded in finding a constant, round it up to the
629 type's alignment and return the result in units. */
630 if (tree_fits_uhwi_p (max_adasize))
631 max_unitsize
632 = size_binop (CEIL_DIV_EXPR,
633 round_up (max_adasize, TYPE_ALIGN (gnu_type)),
634 bitsize_unit_node);
635 }
636
637 return max_unitsize;
638 }
639
640 /* Provide information in INFO for debug output about the TYPE array type.
641 Return whether TYPE is handled. */
642
643 static bool
644 gnat_get_array_descr_info (const_tree type, struct array_descr_info *info)
645 {
646 bool convention_fortran_p;
647 tree index_type;
648
649 const_tree dimen = NULL_TREE;
650 const_tree last_dimen = NULL_TREE;
651 int i;
652
653 if (TREE_CODE (type) != ARRAY_TYPE
654 || !TYPE_DOMAIN (type)
655 || !TYPE_INDEX_TYPE (TYPE_DOMAIN (type)))
656 return false;
657
658 /* Count how many dimentions this array has. */
659 for (i = 0, dimen = type; ; ++i, dimen = TREE_TYPE (dimen))
660 if (i > 0
661 && (TREE_CODE (dimen) != ARRAY_TYPE
662 || !TYPE_MULTI_ARRAY_P (dimen)))
663 break;
664 info->ndimensions = i;
665 convention_fortran_p = TYPE_CONVENTION_FORTRAN_P (type);
666
667 /* TODO: For row major ordering, we probably want to emit nothing and
668 instead specify it as the default in Dw_TAG_compile_unit. */
669 info->ordering = (convention_fortran_p
670 ? array_descr_ordering_column_major
671 : array_descr_ordering_row_major);
672 info->base_decl = NULL_TREE;
673 info->data_location = NULL_TREE;
674 info->allocated = NULL_TREE;
675 info->associated = NULL_TREE;
676
677 for (i = (convention_fortran_p ? info->ndimensions - 1 : 0),
678 dimen = type;
679
680 0 <= i && i < info->ndimensions;
681
682 i += (convention_fortran_p ? -1 : 1),
683 dimen = TREE_TYPE (dimen))
684 {
685 /* We are interested in the stored bounds for the debug info. */
686 index_type = TYPE_INDEX_TYPE (TYPE_DOMAIN (dimen));
687
688 info->dimen[i].bounds_type = index_type;
689 info->dimen[i].lower_bound = TYPE_MIN_VALUE (index_type);
690 info->dimen[i].upper_bound = TYPE_MAX_VALUE (index_type);
691 last_dimen = dimen;
692 }
693
694 info->element_type = TREE_TYPE (last_dimen);
695
696 return true;
697 }
698
699 /* GNU_TYPE is a subtype of an integral type. Set LOWVAL to the low bound
700 and HIGHVAL to the high bound, respectively. */
701
702 static void
703 gnat_get_subrange_bounds (const_tree gnu_type, tree *lowval, tree *highval)
704 {
705 *lowval = TYPE_MIN_VALUE (gnu_type);
706 *highval = TYPE_MAX_VALUE (gnu_type);
707 }
708
709 /* GNU_TYPE is the type of a subprogram parameter. Determine if it should be
710 passed by reference by default. */
711
712 bool
713 default_pass_by_ref (tree gnu_type)
714 {
715 /* We pass aggregates by reference if they are sufficiently large for
716 their alignment. The ratio is somewhat arbitrary. We also pass by
717 reference if the target machine would either pass or return by
718 reference. Strictly speaking, we need only check the return if this
719 is an In Out parameter, but it's probably best to err on the side of
720 passing more things by reference. */
721
722 if (pass_by_reference (NULL, TYPE_MODE (gnu_type), gnu_type, true))
723 return true;
724
725 if (targetm.calls.return_in_memory (gnu_type, NULL_TREE))
726 return true;
727
728 if (AGGREGATE_TYPE_P (gnu_type)
729 && (!valid_constant_size_p (TYPE_SIZE_UNIT (gnu_type))
730 || 0 < compare_tree_int (TYPE_SIZE_UNIT (gnu_type),
731 TYPE_ALIGN (gnu_type))))
732 return true;
733
734 return false;
735 }
736
737 /* GNU_TYPE is the type of a subprogram parameter. Determine if it must be
738 passed by reference. */
739
740 bool
741 must_pass_by_ref (tree gnu_type)
742 {
743 /* We pass only unconstrained objects, those required by the language
744 to be passed by reference, and objects of variable size. The latter
745 is more efficient, avoids problems with variable size temporaries,
746 and does not produce compatibility problems with C, since C does
747 not have such objects. */
748 return (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE
749 || TYPE_IS_BY_REFERENCE_P (gnu_type)
750 || (TYPE_SIZE_UNIT (gnu_type)
751 && TREE_CODE (TYPE_SIZE_UNIT (gnu_type)) != INTEGER_CST));
752 }
753
754 /* This function is called by the front-end to enumerate all the supported
755 modes for the machine, as well as some predefined C types. F is a function
756 which is called back with the parameters as listed below, first a string,
757 then seven ints. The name is any arbitrary null-terminated string and has
758 no particular significance, except for the case of predefined C types, where
759 it should be the name of the C type. For integer types, only signed types
760 should be listed, unsigned versions are assumed. The order of types should
761 be in order of preference, with the smallest/cheapest types first.
762
763 In particular, C predefined types should be listed before other types,
764 binary floating point types before decimal ones, and narrower/cheaper
765 type versions before more expensive ones. In type selection the first
766 matching variant will be used.
767
768 NAME pointer to first char of type name
769 DIGS number of decimal digits for floating-point modes, else 0
770 COMPLEX_P nonzero is this represents a complex mode
771 COUNT count of number of items, nonzero for vector mode
772 FLOAT_REP Float_Rep_Kind for FP, otherwise undefined
773 PRECISION number of bits used to store data
774 SIZE number of bits occupied by the mode
775 ALIGN number of bits to which mode is aligned. */
776
777 void
778 enumerate_modes (void (*f) (const char *, int, int, int, int, int, int, int))
779 {
780 const tree c_types[]
781 = { float_type_node, double_type_node, long_double_type_node };
782 const char *const c_names[]
783 = { "float", "double", "long double" };
784 int iloop;
785
786 /* We are going to compute it below. */
787 fp_arith_may_widen = false;
788
789 for (iloop = 0; iloop < NUM_MACHINE_MODES; iloop++)
790 {
791 machine_mode i = (machine_mode) iloop;
792 machine_mode inner_mode = i;
793 bool float_p = false;
794 bool complex_p = false;
795 bool vector_p = false;
796 bool skip_p = false;
797 int digs = 0;
798 unsigned int nameloop;
799 Float_Rep_Kind float_rep = IEEE_Binary; /* Until proven otherwise */
800
801 switch (GET_MODE_CLASS (i))
802 {
803 case MODE_INT:
804 break;
805 case MODE_FLOAT:
806 float_p = true;
807 break;
808 case MODE_COMPLEX_INT:
809 complex_p = true;
810 inner_mode = GET_MODE_INNER (i);
811 break;
812 case MODE_COMPLEX_FLOAT:
813 float_p = true;
814 complex_p = true;
815 inner_mode = GET_MODE_INNER (i);
816 break;
817 case MODE_VECTOR_INT:
818 vector_p = true;
819 inner_mode = GET_MODE_INNER (i);
820 break;
821 case MODE_VECTOR_FLOAT:
822 float_p = true;
823 vector_p = true;
824 inner_mode = GET_MODE_INNER (i);
825 break;
826 default:
827 skip_p = true;
828 }
829
830 if (float_p)
831 {
832 const struct real_format *fmt = REAL_MODE_FORMAT (inner_mode);
833
834 /* ??? Cope with the ghost XFmode of the ARM port. */
835 if (!fmt)
836 continue;
837
838 /* Be conservative and consider that floating-point arithmetics may
839 use wider intermediate results as soon as there is an extended
840 Motorola or Intel mode supported by the machine. */
841 if (fmt == &ieee_extended_motorola_format
842 || fmt == &ieee_extended_intel_96_format
843 || fmt == &ieee_extended_intel_96_round_53_format
844 || fmt == &ieee_extended_intel_128_format)
845 {
846 #ifdef TARGET_FPMATH_DEFAULT
847 if (TARGET_FPMATH_DEFAULT == FPMATH_387)
848 #endif
849 fp_arith_may_widen = true;
850 }
851
852 if (fmt->b == 2)
853 digs = (fmt->p - 1) * 1233 / 4096; /* scale by log (2) */
854
855 else if (fmt->b == 10)
856 digs = fmt->p;
857
858 else
859 gcc_unreachable();
860 }
861
862 /* First register any C types for this mode that the front end
863 may need to know about, unless the mode should be skipped. */
864 if (!skip_p && !vector_p)
865 for (nameloop = 0; nameloop < ARRAY_SIZE (c_types); nameloop++)
866 {
867 tree type = c_types[nameloop];
868 const char *name = c_names[nameloop];
869
870 if (TYPE_MODE (type) == i)
871 {
872 f (name, digs, complex_p, 0, float_rep, TYPE_PRECISION (type),
873 TREE_INT_CST_LOW (TYPE_SIZE (type)), TYPE_ALIGN (type));
874 skip_p = true;
875 }
876 }
877
878 /* If no predefined C types were found, register the mode itself. */
879 if (!skip_p)
880 f (GET_MODE_NAME (i), digs, complex_p,
881 vector_p ? GET_MODE_NUNITS (i) : 0, float_rep,
882 GET_MODE_PRECISION (i), GET_MODE_BITSIZE (i),
883 GET_MODE_ALIGNMENT (i));
884 }
885 }
886
887 /* Return the size of the FP mode with precision PREC. */
888
889 int
890 fp_prec_to_size (int prec)
891 {
892 machine_mode mode;
893
894 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
895 mode = GET_MODE_WIDER_MODE (mode))
896 if (GET_MODE_PRECISION (mode) == prec)
897 return GET_MODE_BITSIZE (mode);
898
899 gcc_unreachable ();
900 }
901
902 /* Return the precision of the FP mode with size SIZE. */
903
904 int
905 fp_size_to_prec (int size)
906 {
907 machine_mode mode;
908
909 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
910 mode = GET_MODE_WIDER_MODE (mode))
911 if (GET_MODE_BITSIZE (mode) == size)
912 return GET_MODE_PRECISION (mode);
913
914 gcc_unreachable ();
915 }
916
917 static GTY(()) tree gnat_eh_personality_decl;
918
919 /* Return the GNAT personality function decl. */
920
921 static tree
922 gnat_eh_personality (void)
923 {
924 if (!gnat_eh_personality_decl)
925 gnat_eh_personality_decl = build_personality_function ("gnat");
926 return gnat_eh_personality_decl;
927 }
928
929 /* Initialize language-specific bits of tree_contains_struct. */
930
931 static void
932 gnat_init_ts (void)
933 {
934 MARK_TS_COMMON (UNCONSTRAINED_ARRAY_TYPE);
935
936 MARK_TS_TYPED (UNCONSTRAINED_ARRAY_REF);
937 MARK_TS_TYPED (NULL_EXPR);
938 MARK_TS_TYPED (PLUS_NOMOD_EXPR);
939 MARK_TS_TYPED (MINUS_NOMOD_EXPR);
940 MARK_TS_TYPED (ATTR_ADDR_EXPR);
941 MARK_TS_TYPED (STMT_STMT);
942 MARK_TS_TYPED (LOOP_STMT);
943 MARK_TS_TYPED (EXIT_STMT);
944 }
945
946 /* Definitions for our language-specific hooks. */
947
948 #undef LANG_HOOKS_NAME
949 #define LANG_HOOKS_NAME "GNU Ada"
950 #undef LANG_HOOKS_IDENTIFIER_SIZE
951 #define LANG_HOOKS_IDENTIFIER_SIZE sizeof (struct tree_identifier)
952 #undef LANG_HOOKS_INIT
953 #define LANG_HOOKS_INIT gnat_init
954 #undef LANG_HOOKS_OPTION_LANG_MASK
955 #define LANG_HOOKS_OPTION_LANG_MASK gnat_option_lang_mask
956 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
957 #define LANG_HOOKS_INIT_OPTIONS_STRUCT gnat_init_options_struct
958 #undef LANG_HOOKS_INIT_OPTIONS
959 #define LANG_HOOKS_INIT_OPTIONS gnat_init_options
960 #undef LANG_HOOKS_HANDLE_OPTION
961 #define LANG_HOOKS_HANDLE_OPTION gnat_handle_option
962 #undef LANG_HOOKS_POST_OPTIONS
963 #define LANG_HOOKS_POST_OPTIONS gnat_post_options
964 #undef LANG_HOOKS_PARSE_FILE
965 #define LANG_HOOKS_PARSE_FILE gnat_parse_file
966 #undef LANG_HOOKS_TYPE_HASH_EQ
967 #define LANG_HOOKS_TYPE_HASH_EQ gnat_type_hash_eq
968 #undef LANG_HOOKS_GETDECLS
969 #define LANG_HOOKS_GETDECLS lhd_return_null_tree_v
970 #undef LANG_HOOKS_PUSHDECL
971 #define LANG_HOOKS_PUSHDECL gnat_return_tree
972 #undef LANG_HOOKS_GET_ALIAS_SET
973 #define LANG_HOOKS_GET_ALIAS_SET gnat_get_alias_set
974 #undef LANG_HOOKS_PRINT_DECL
975 #define LANG_HOOKS_PRINT_DECL gnat_print_decl
976 #undef LANG_HOOKS_PRINT_TYPE
977 #define LANG_HOOKS_PRINT_TYPE gnat_print_type
978 #undef LANG_HOOKS_TYPE_MAX_SIZE
979 #define LANG_HOOKS_TYPE_MAX_SIZE gnat_type_max_size
980 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
981 #define LANG_HOOKS_DECL_PRINTABLE_NAME gnat_printable_name
982 #undef LANG_HOOKS_DWARF_NAME
983 #define LANG_HOOKS_DWARF_NAME gnat_dwarf_name
984 #undef LANG_HOOKS_GIMPLIFY_EXPR
985 #define LANG_HOOKS_GIMPLIFY_EXPR gnat_gimplify_expr
986 #undef LANG_HOOKS_TYPE_FOR_MODE
987 #define LANG_HOOKS_TYPE_FOR_MODE gnat_type_for_mode
988 #undef LANG_HOOKS_TYPE_FOR_SIZE
989 #define LANG_HOOKS_TYPE_FOR_SIZE gnat_type_for_size
990 #undef LANG_HOOKS_TYPES_COMPATIBLE_P
991 #define LANG_HOOKS_TYPES_COMPATIBLE_P gnat_types_compatible_p
992 #undef LANG_HOOKS_GET_ARRAY_DESCR_INFO
993 #define LANG_HOOKS_GET_ARRAY_DESCR_INFO gnat_get_array_descr_info
994 #undef LANG_HOOKS_GET_SUBRANGE_BOUNDS
995 #define LANG_HOOKS_GET_SUBRANGE_BOUNDS gnat_get_subrange_bounds
996 #undef LANG_HOOKS_DESCRIPTIVE_TYPE
997 #define LANG_HOOKS_DESCRIPTIVE_TYPE gnat_descriptive_type
998 #undef LANG_HOOKS_ATTRIBUTE_TABLE
999 #define LANG_HOOKS_ATTRIBUTE_TABLE gnat_internal_attribute_table
1000 #undef LANG_HOOKS_BUILTIN_FUNCTION
1001 #define LANG_HOOKS_BUILTIN_FUNCTION gnat_builtin_function
1002 #undef LANG_HOOKS_EH_PERSONALITY
1003 #define LANG_HOOKS_EH_PERSONALITY gnat_eh_personality
1004 #undef LANG_HOOKS_DEEP_UNSHARING
1005 #define LANG_HOOKS_DEEP_UNSHARING true
1006 #undef LANG_HOOKS_INIT_TS
1007 #define LANG_HOOKS_INIT_TS gnat_init_ts
1008
1009 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
1010
1011 #include "gt-ada-misc.h"