OSDN Git Service

* gcc-interface/misc.c (gnat_handle_option): Do not populate gnat_argv.
[pf3gnuchains/gcc-fork.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-2010, 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 /* This file contains parts of the compiler that are required for interfacing
27    with GCC but otherwise do nothing and parts of Gigi that need to know
28    about GIMPLE.  */
29
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "tree.h"
35 #include "diagnostic.h"
36 #include "target.h"
37 #include "ggc.h"
38 #include "flags.h"
39 #include "debug.h"
40 #include "toplev.h"
41 #include "langhooks.h"
42 #include "langhooks-def.h"
43 #include "opts.h"
44 #include "options.h"
45 #include "plugin.h"
46 #include "function.h"   /* For pass_by_reference.  */
47
48 #include "ada.h"
49 #include "adadecode.h"
50 #include "types.h"
51 #include "atree.h"
52 #include "elists.h"
53 #include "namet.h"
54 #include "nlists.h"
55 #include "stringt.h"
56 #include "uintp.h"
57 #include "fe.h"
58 #include "sinfo.h"
59 #include "einfo.h"
60 #include "ada-tree.h"
61 #include "gigi.h"
62
63 static bool gnat_init                   (void);
64 static unsigned int gnat_init_options   (unsigned int, const char **);
65 static int gnat_handle_option           (size_t, const char *, int, int);
66 static bool gnat_post_options           (const char **);
67 static alias_set_type gnat_get_alias_set (tree);
68 static void gnat_print_decl             (FILE *, tree, int);
69 static void gnat_print_type             (FILE *, tree, int);
70 static const char *gnat_printable_name  (tree, int);
71 static const char *gnat_dwarf_name      (tree, int);
72 static tree gnat_return_tree            (tree);
73 static void gnat_parse_file             (int);
74 static void internal_error_function     (diagnostic_context *,
75                                          const char *, va_list *);
76 static tree gnat_type_max_size          (const_tree);
77 static void gnat_get_subrange_bounds    (const_tree, tree *, tree *);
78 static tree gnat_eh_personality         (void);
79
80 /* Definitions for our language-specific hooks.  */
81
82 #undef  LANG_HOOKS_NAME
83 #define LANG_HOOKS_NAME                 "GNU Ada"
84 #undef  LANG_HOOKS_IDENTIFIER_SIZE
85 #define LANG_HOOKS_IDENTIFIER_SIZE      sizeof (struct tree_identifier)
86 #undef  LANG_HOOKS_INIT
87 #define LANG_HOOKS_INIT                 gnat_init
88 #undef  LANG_HOOKS_INIT_OPTIONS
89 #define LANG_HOOKS_INIT_OPTIONS         gnat_init_options
90 #undef  LANG_HOOKS_HANDLE_OPTION
91 #define LANG_HOOKS_HANDLE_OPTION        gnat_handle_option
92 #undef  LANG_HOOKS_POST_OPTIONS
93 #define LANG_HOOKS_POST_OPTIONS         gnat_post_options
94 #undef  LANG_HOOKS_PARSE_FILE
95 #define LANG_HOOKS_PARSE_FILE           gnat_parse_file
96 #undef  LANG_HOOKS_HASH_TYPES
97 #define LANG_HOOKS_HASH_TYPES           false
98 #undef  LANG_HOOKS_GETDECLS
99 #define LANG_HOOKS_GETDECLS             lhd_return_null_tree_v
100 #undef  LANG_HOOKS_PUSHDECL
101 #define LANG_HOOKS_PUSHDECL             gnat_return_tree
102 #undef  LANG_HOOKS_WRITE_GLOBALS
103 #define LANG_HOOKS_WRITE_GLOBALS        gnat_write_global_declarations
104 #undef  LANG_HOOKS_GET_ALIAS_SET
105 #define LANG_HOOKS_GET_ALIAS_SET        gnat_get_alias_set
106 #undef  LANG_HOOKS_PRINT_DECL
107 #define LANG_HOOKS_PRINT_DECL           gnat_print_decl
108 #undef  LANG_HOOKS_PRINT_TYPE
109 #define LANG_HOOKS_PRINT_TYPE           gnat_print_type
110 #undef  LANG_HOOKS_TYPE_MAX_SIZE
111 #define LANG_HOOKS_TYPE_MAX_SIZE        gnat_type_max_size
112 #undef  LANG_HOOKS_DECL_PRINTABLE_NAME
113 #define LANG_HOOKS_DECL_PRINTABLE_NAME  gnat_printable_name
114 #undef  LANG_HOOKS_DWARF_NAME
115 #define LANG_HOOKS_DWARF_NAME           gnat_dwarf_name
116 #undef  LANG_HOOKS_GIMPLIFY_EXPR
117 #define LANG_HOOKS_GIMPLIFY_EXPR        gnat_gimplify_expr
118 #undef  LANG_HOOKS_TYPE_FOR_MODE
119 #define LANG_HOOKS_TYPE_FOR_MODE        gnat_type_for_mode
120 #undef  LANG_HOOKS_TYPE_FOR_SIZE
121 #define LANG_HOOKS_TYPE_FOR_SIZE        gnat_type_for_size
122 #undef  LANG_HOOKS_TYPES_COMPATIBLE_P
123 #define LANG_HOOKS_TYPES_COMPATIBLE_P   gnat_types_compatible_p
124 #undef  LANG_HOOKS_GET_SUBRANGE_BOUNDS
125 #define LANG_HOOKS_GET_SUBRANGE_BOUNDS  gnat_get_subrange_bounds
126 #undef  LANG_HOOKS_ATTRIBUTE_TABLE
127 #define LANG_HOOKS_ATTRIBUTE_TABLE      gnat_internal_attribute_table
128 #undef  LANG_HOOKS_BUILTIN_FUNCTION
129 #define LANG_HOOKS_BUILTIN_FUNCTION     gnat_builtin_function
130 #undef  LANG_HOOKS_EH_PERSONALITY
131 #define LANG_HOOKS_EH_PERSONALITY       gnat_eh_personality
132 #undef  LANG_HOOKS_DEEP_UNSHARING
133 #define LANG_HOOKS_DEEP_UNSHARING       true
134
135 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
136
137 /* This symbol needs to be defined for the front-end.  */
138 void *callgraph_info_file = NULL;
139
140 /* How much we want of our DWARF extensions.  Some of our dwarf+ extensions
141    are incompatible with regular GDB versions, so we must make sure to only
142    produce them on explicit request.  This is eventually reflected into the
143    use_gnu_debug_info_extensions common flag for later processing.  */
144 static int gnat_dwarf_extensions = 0;
145
146 /* Command-line argc and argv.  These variables are global
147    since they are imported in back_end.adb.  */
148 unsigned int save_argc;
149 const char **save_argv;
150
151 /* GNAT argc and argv.  */
152 extern int gnat_argc;
153 extern char **gnat_argv;
154
155 /* Declare functions we use as part of startup.  */
156 extern void __gnat_initialize           (void *);
157 extern void __gnat_install_SEH_handler  (void *);
158 extern void adainit                     (void);
159 extern void _ada_gnat1drv               (void);
160
161 /* The parser for the language.  For us, we process the GNAT tree.  */
162
163 static void
164 gnat_parse_file (int set_yydebug ATTRIBUTE_UNUSED)
165 {
166   int seh[2];
167
168   /* Call the target specific initializations.  */
169   __gnat_initialize (NULL);
170
171   /* ??? Call the SEH initialization routine.  This is to workaround
172   a bootstrap path problem.  The call below should be removed at some
173   point and the SEH pointer passed to __gnat_initialize() above.  */
174   __gnat_install_SEH_handler((void *)seh);
175
176   /* Call the front-end elaboration procedures.  */
177   adainit ();
178
179   /* Call the front end.  */
180   _ada_gnat1drv ();
181 }
182
183 /* Decode all the language specific options that cannot be decoded by GCC.
184    The option decoding phase of GCC calls this routine on the flags that
185    it cannot decode.  Return the number of consecutive arguments from ARGV
186    that have been successfully decoded or 0 on failure.  */
187
188 static int
189 gnat_handle_option (size_t scode, const char *arg, int value,
190                     int kind ATTRIBUTE_UNUSED)
191 {
192   const struct cl_option *option = &cl_options[scode];
193   enum opt_code code = (enum opt_code) scode;
194
195   if (arg == NULL && (option->flags & (CL_JOINED | CL_SEPARATE)))
196     {
197       error ("missing argument to \"-%s\"", option->opt_text);
198       return 1;
199     }
200
201   switch (code)
202     {
203     case OPT_Wall:
204       warn_unused = value;
205       warn_uninitialized = value;
206       break;
207
208     case OPT_Wmissing_prototypes:
209     case OPT_Wstrict_prototypes:
210     case OPT_Wwrite_strings:
211     case OPT_Wlong_long:
212     case OPT_Wvariadic_macros:
213     case OPT_Wold_style_definition:
214     case OPT_Wmissing_format_attribute:
215     case OPT_Woverlength_strings:
216       /* These are used in the GCC Makefile.  */
217       break;
218
219     case OPT_feliminate_unused_debug_types:
220       /* We arrange for post_option to be able to only set the corresponding
221          flag to 1 when explicitly requested by the user.  We expect the
222          default flag value to be either 0 or positive, and expose a positive
223          -f as a negative value to post_option.  */
224       flag_eliminate_unused_debug_types = -value;
225       break;
226
227     case OPT_gdwarfplus:
228       gnat_dwarf_extensions = 1;
229       break;
230
231     case OPT_gant:
232       warning (0, "%<-gnat%> misspelled as %<-gant%>");
233
234       /* ... fall through ... */
235
236     case OPT_gnat:
237     case OPT_gnatO:
238     case OPT_fRTS_:
239     case OPT_I:
240     case OPT_nostdinc:
241     case OPT_nostdlib:
242       /* These are handled by the front-end.  */
243       break;
244
245     default:
246       gcc_unreachable ();
247     }
248
249   return 1;
250 }
251
252 /* Initialize for option processing.  */
253
254 static unsigned int
255 gnat_init_options (unsigned int argc, const char **argv)
256 {
257   gnat_argv = (char **) xmalloc (sizeof (argv[0]));
258   gnat_argv[0] = xstrdup (argv[0]);     /* name of the command */
259   gnat_argc = 1;
260
261   save_argc = argc;
262   save_argv = argv;
263
264   /* Uninitialized really means uninitialized in Ada.  */
265   flag_zero_initialized_in_bss = 0;
266
267   return CL_Ada;
268 }
269
270 /* Post-switch processing.  */
271
272 bool
273 gnat_post_options (const char **pfilename ATTRIBUTE_UNUSED)
274 {
275   /* Excess precision other than "fast" requires front-end
276      support.  */
277   if (flag_excess_precision_cmdline == EXCESS_PRECISION_STANDARD
278       && TARGET_FLT_EVAL_METHOD_NON_DEFAULT)
279     sorry ("-fexcess-precision=standard for Ada");
280   flag_excess_precision_cmdline = EXCESS_PRECISION_FAST;
281
282   /* ??? The warning machinery is outsmarted by Ada.  */
283   warn_unused_parameter = 0;
284
285   /* No psABI change warnings for Ada.  */
286   warn_psabi = 0;
287
288   /* Force eliminate_unused_debug_types to 0 unless an explicit positive
289      -f has been passed.  This forces the default to 0 for Ada, which might
290      differ from the common default.  */
291   if (flag_eliminate_unused_debug_types < 0)
292     flag_eliminate_unused_debug_types = 1;
293   else
294     flag_eliminate_unused_debug_types = 0;
295
296   /* Reflect the explicit request of DWARF extensions into the common
297      flag for use by later passes.  */
298   if (write_symbols == DWARF2_DEBUG)
299     use_gnu_debug_info_extensions = gnat_dwarf_extensions > 0;
300
301   return false;
302 }
303
304 /* Here is the function to handle the compiler error processing in GCC.  */
305
306 static void
307 internal_error_function (diagnostic_context *context,
308                          const char *msgid, va_list *ap)
309 {
310   text_info tinfo;
311   char *buffer, *p, *loc;
312   String_Template temp, temp_loc;
313   Fat_Pointer fp, fp_loc;
314   expanded_location s;
315
316   /* Warn if plugins present.  */
317   warn_if_plugins ();
318
319   /* Reset the pretty-printer.  */
320   pp_clear_output_area (context->printer);
321
322   /* Format the message into the pretty-printer.  */
323   tinfo.format_spec = msgid;
324   tinfo.args_ptr = ap;
325   tinfo.err_no = errno;
326   pp_format_verbatim (context->printer, &tinfo);
327
328   /* Extract a (writable) pointer to the formatted text.  */
329   buffer = xstrdup (pp_formatted_text (context->printer));
330
331   /* Go up to the first newline.  */
332   for (p = buffer; *p; p++)
333     if (*p == '\n')
334       {
335         *p = '\0';
336         break;
337       }
338
339   temp.Low_Bound = 1;
340   temp.High_Bound = p - buffer;
341   fp.Bounds = &temp;
342   fp.Array = buffer;
343
344   s = expand_location (input_location);
345   if (context->show_column && s.column != 0)
346     asprintf (&loc, "%s:%d:%d", s.file, s.line, s.column);
347   else
348     asprintf (&loc, "%s:%d", s.file, s.line);
349   temp_loc.Low_Bound = 1;
350   temp_loc.High_Bound = strlen (loc);
351   fp_loc.Bounds = &temp_loc;
352   fp_loc.Array = loc;
353
354   Current_Error_Node = error_gnat_node;
355   Compiler_Abort (fp, -1, fp_loc);
356 }
357
358 /* Perform all the initialization steps that are language-specific.  */
359
360 static bool
361 gnat_init (void)
362 {
363   /* Do little here, most of the standard declarations are set up after the
364      front-end has been run.  Use the same `char' as C, this doesn't really
365      matter since we'll use the explicit `unsigned char' for Character.  */
366   build_common_tree_nodes (flag_signed_char);
367
368   /* In Ada, we use the unsigned type corresponding to the width of Pmode as
369      SIZETYPE.  In most cases when ptr_mode and Pmode differ, C will use the
370      width of ptr_mode for SIZETYPE, but we get better code using the width
371      of Pmode.  Note that, although we manipulate negative offsets for some
372      internal constructs and rely on compile time overflow detection in size
373      computations, using unsigned types for SIZETYPEs is fine since they are
374      treated specially by the middle-end, in particular sign-extended.  */
375   size_type_node = gnat_type_for_mode (Pmode, 1);
376   set_sizetype (size_type_node);
377   TYPE_NAME (sizetype) = get_identifier ("size_type");
378
379   /* In Ada, we use an unsigned 8-bit type for the default boolean type.  */
380   boolean_type_node = make_unsigned_type (8);
381   TREE_SET_CODE (boolean_type_node, BOOLEAN_TYPE);
382   SET_TYPE_RM_MAX_VALUE (boolean_type_node,
383                          build_int_cst (boolean_type_node, 1));
384   SET_TYPE_RM_SIZE (boolean_type_node, bitsize_int (1));
385
386   build_common_tree_nodes_2 (0);
387   sbitsize_one_node = sbitsize_int (1);
388   sbitsize_unit_node = sbitsize_int (BITS_PER_UNIT);
389   boolean_true_node = TYPE_MAX_VALUE (boolean_type_node);
390
391   ptr_void_type_node = build_pointer_type (void_type_node);
392
393   /* Show that REFERENCE_TYPEs are internal and should be Pmode.  */
394   internal_reference_types ();
395
396   /* Register our internal error function.  */
397   global_dc->internal_error = &internal_error_function;
398
399   return true;
400 }
401
402 /* If we are using the GCC mechanism to process exception handling, we
403    have to register the personality routine for Ada and to initialize
404    various language dependent hooks.  */
405
406 void
407 gnat_init_gcc_eh (void)
408 {
409 #ifdef DWARF2_UNWIND_INFO
410   /* lang_dependent_init already called dwarf2out_frame_init if true.  */
411   int dwarf2out_frame_initialized = dwarf2out_do_frame ();
412 #endif
413
414   /* We shouldn't do anything if the No_Exceptions_Handler pragma is set,
415      though. This could for instance lead to the emission of tables with
416      references to symbols (such as the Ada eh personality routine) within
417      libraries we won't link against.  */
418   if (No_Exception_Handlers_Set ())
419     return;
420
421   /* Tell GCC we are handling cleanup actions through exception propagation.
422      This opens possibilities that we don't take advantage of yet, but is
423      nonetheless necessary to ensure that fixup code gets assigned to the
424      right exception regions.  */
425   using_eh_for_cleanups ();
426
427   /* Turn on -fexceptions and -fnon-call-exceptions.  The first one triggers
428      the generation of the necessary exception tables.  The second one is
429      useful for two reasons: 1/ we map some asynchronous signals like SEGV to
430      exceptions, so we need to ensure that the insns which can lead to such
431      signals are correctly attached to the exception region they pertain to,
432      2/ Some calls to pure subprograms are handled as libcall blocks and then
433      marked as "cannot trap" if the flag is not set (see emit_libcall_block).
434      We should not let this be since it is possible for such calls to actually
435      raise in Ada.  */
436   flag_exceptions = 1;
437   flag_non_call_exceptions = 1;
438
439   init_eh ();
440 #ifdef DWARF2_UNWIND_INFO
441   if (!dwarf2out_frame_initialized && dwarf2out_do_frame ())
442     dwarf2out_frame_init ();
443 #endif
444 }
445
446 /* Print language-specific items in declaration NODE.  */
447
448 static void
449 gnat_print_decl (FILE *file, tree node, int indent)
450 {
451   switch (TREE_CODE (node))
452     {
453     case CONST_DECL:
454       print_node (file, "corresponding var",
455                   DECL_CONST_CORRESPONDING_VAR (node), indent + 4);
456       break;
457
458     case FIELD_DECL:
459       print_node (file, "original field", DECL_ORIGINAL_FIELD (node),
460                   indent + 4);
461       break;
462
463     case VAR_DECL:
464       print_node (file, "renamed object", DECL_RENAMED_OBJECT (node),
465                   indent + 4);
466       break;
467
468     default:
469       break;
470     }
471 }
472
473 /* Print language-specific items in type NODE.  */
474
475 static void
476 gnat_print_type (FILE *file, tree node, int indent)
477 {
478   switch (TREE_CODE (node))
479     {
480     case FUNCTION_TYPE:
481       print_node (file, "ci/co list", TYPE_CI_CO_LIST (node), indent + 4);
482       break;
483
484     case INTEGER_TYPE:
485       if (TYPE_MODULAR_P (node))
486         print_node_brief (file, "modulus", TYPE_MODULUS (node), indent + 4);
487       else if (TYPE_HAS_ACTUAL_BOUNDS_P (node))
488         print_node (file, "actual bounds", TYPE_ACTUAL_BOUNDS (node),
489                     indent + 4);
490       else if (TYPE_VAX_FLOATING_POINT_P (node))
491         ;
492       else
493         print_node (file, "index type", TYPE_INDEX_TYPE (node), indent + 4);
494
495       /* ... fall through ... */
496
497     case ENUMERAL_TYPE:
498     case BOOLEAN_TYPE:
499       print_node_brief (file, "RM size", TYPE_RM_SIZE (node), indent + 4);
500
501       /* ... fall through ... */
502
503     case REAL_TYPE:
504       print_node_brief (file, "RM min", TYPE_RM_MIN_VALUE (node), indent + 4);
505       print_node_brief (file, "RM max", TYPE_RM_MAX_VALUE (node), indent + 4);
506       break;
507
508     case ARRAY_TYPE:
509       print_node (file,"actual bounds", TYPE_ACTUAL_BOUNDS (node), indent + 4);
510       break;
511
512     case VECTOR_TYPE:
513       print_node (file,"representative array",
514                   TYPE_REPRESENTATIVE_ARRAY (node), indent + 4);
515       break;
516
517     case RECORD_TYPE:
518       if (TYPE_FAT_POINTER_P (node) || TYPE_CONTAINS_TEMPLATE_P (node))
519         print_node (file, "unconstrained array",
520                     TYPE_UNCONSTRAINED_ARRAY (node), indent + 4);
521       else
522         print_node (file, "Ada size", TYPE_ADA_SIZE (node), indent + 4);
523       break;
524
525     case UNION_TYPE:
526     case QUAL_UNION_TYPE:
527       print_node (file, "Ada size", TYPE_ADA_SIZE (node), indent + 4);
528       break;
529
530     default:
531       break;
532     }
533 }
534
535 /* Return the name to be printed for DECL.  */
536
537 static const char *
538 gnat_printable_name (tree decl, int verbosity)
539 {
540   const char *coded_name = IDENTIFIER_POINTER (DECL_NAME (decl));
541   char *ada_name = (char *) ggc_alloc_atomic (strlen (coded_name) * 2 + 60);
542
543   __gnat_decode (coded_name, ada_name, 0);
544
545   if (verbosity == 2 && !DECL_IS_BUILTIN (decl))
546     {
547       Set_Identifier_Casing (ada_name, DECL_SOURCE_FILE (decl));
548       return ggc_strdup (Name_Buffer);
549     }
550
551   return ada_name;
552 }
553
554 /* Return the name to be used in DWARF debug info for DECL.  */
555
556 static const char *
557 gnat_dwarf_name (tree decl, int verbosity ATTRIBUTE_UNUSED)
558 {
559   gcc_assert (DECL_P (decl));
560   return (const char *) IDENTIFIER_POINTER (DECL_NAME (decl));
561 }
562
563 /* Do nothing (return the tree node passed).  */
564
565 static tree
566 gnat_return_tree (tree t)
567 {
568   return t;
569 }
570
571 /* Get the alias set corresponding to a type or expression.  */
572
573 static alias_set_type
574 gnat_get_alias_set (tree type)
575 {
576   /* If this is a padding type, use the type of the first field.  */
577   if (TYPE_IS_PADDING_P (type))
578     return get_alias_set (TREE_TYPE (TYPE_FIELDS (type)));
579
580   /* If the type is an unconstrained array, use the type of the
581      self-referential array we make.  */
582   else if (TREE_CODE (type) == UNCONSTRAINED_ARRAY_TYPE)
583     return
584       get_alias_set (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (type)))));
585
586   /* If the type can alias any other types, return the alias set 0.  */
587   else if (TYPE_P (type)
588            && TYPE_UNIVERSAL_ALIASING_P (TYPE_MAIN_VARIANT (type)))
589     return 0;
590
591   return -1;
592 }
593
594 /* GNU_TYPE is a type.  Return its maximum size in bytes, if known,
595    as a constant when possible.  */
596
597 static tree
598 gnat_type_max_size (const_tree gnu_type)
599 {
600   /* First see what we can get from TYPE_SIZE_UNIT, which might not
601      be constant even for simple expressions if it has already been
602      elaborated and possibly replaced by a VAR_DECL.  */
603   tree max_unitsize = max_size (TYPE_SIZE_UNIT (gnu_type), true);
604
605   /* If we don't have a constant, see what we can get from TYPE_ADA_SIZE,
606      which should stay untouched.  */
607   if (!host_integerp (max_unitsize, 1)
608       && (TREE_CODE (gnu_type) == RECORD_TYPE
609           || TREE_CODE (gnu_type) == UNION_TYPE
610           || TREE_CODE (gnu_type) == QUAL_UNION_TYPE)
611       && TYPE_ADA_SIZE (gnu_type))
612     {
613       tree max_adasize = max_size (TYPE_ADA_SIZE (gnu_type), true);
614
615       /* If we have succeeded in finding a constant, round it up to the
616          type's alignment and return the result in units.  */
617       if (host_integerp (max_adasize, 1))
618         max_unitsize
619           = size_binop (CEIL_DIV_EXPR,
620                         round_up (max_adasize, TYPE_ALIGN (gnu_type)),
621                         bitsize_unit_node);
622     }
623
624   return max_unitsize;
625 }
626
627 /* GNU_TYPE is a subtype of an integral type.  Set LOWVAL to the low bound
628    and HIGHVAL to the high bound, respectively.  */
629
630 static void
631 gnat_get_subrange_bounds (const_tree gnu_type, tree *lowval, tree *highval)
632 {
633   *lowval = TYPE_MIN_VALUE (gnu_type);
634   *highval = TYPE_MAX_VALUE (gnu_type);
635 }
636
637 /* GNU_TYPE is a type. Determine if it should be passed by reference by
638    default.  */
639
640 bool
641 default_pass_by_ref (tree gnu_type)
642 {
643   /* We pass aggregates by reference if they are sufficiently large.  The
644      choice of constant here is somewhat arbitrary.  We also pass by
645      reference if the target machine would either pass or return by
646      reference.  Strictly speaking, we need only check the return if this
647      is an In Out parameter, but it's probably best to err on the side of
648      passing more things by reference.  */
649
650   if (pass_by_reference (NULL, TYPE_MODE (gnu_type), gnu_type, 1))
651     return true;
652
653   if (targetm.calls.return_in_memory (gnu_type, NULL_TREE))
654     return true;
655
656   if (AGGREGATE_TYPE_P (gnu_type)
657       && (!host_integerp (TYPE_SIZE (gnu_type), 1)
658           || 0 < compare_tree_int (TYPE_SIZE (gnu_type),
659                                    8 * TYPE_ALIGN (gnu_type))))
660     return true;
661
662   return false;
663 }
664
665 /* GNU_TYPE is the type of a subprogram parameter.  Determine from the type if
666    it should be passed by reference. */
667
668 bool
669 must_pass_by_ref (tree gnu_type)
670 {
671   /* We pass only unconstrained objects, those required by the language
672      to be passed by reference, and objects of variable size.  The latter
673      is more efficient, avoids problems with variable size temporaries,
674      and does not produce compatibility problems with C, since C does
675      not have such objects.  */
676   return (TREE_CODE (gnu_type) == UNCONSTRAINED_ARRAY_TYPE
677           || TREE_ADDRESSABLE (gnu_type)
678           || (TYPE_SIZE (gnu_type)
679               && TREE_CODE (TYPE_SIZE (gnu_type)) != INTEGER_CST));
680 }
681
682 /* Return the size of the FP mode with precision PREC.  */
683
684 int
685 fp_prec_to_size (int prec)
686 {
687   enum machine_mode mode;
688
689   for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
690        mode = GET_MODE_WIDER_MODE (mode))
691     if (GET_MODE_PRECISION (mode) == prec)
692       return GET_MODE_BITSIZE (mode);
693
694   gcc_unreachable ();
695 }
696
697 /* Return the precision of the FP mode with size SIZE.  */
698
699 int
700 fp_size_to_prec (int size)
701 {
702   enum machine_mode mode;
703
704   for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
705        mode = GET_MODE_WIDER_MODE (mode))
706     if (GET_MODE_BITSIZE (mode) == size)
707       return GET_MODE_PRECISION (mode);
708
709   gcc_unreachable ();
710 }
711
712 static GTY(()) tree gnat_eh_personality_decl;
713
714 static tree
715 gnat_eh_personality (void)
716 {
717   if (!gnat_eh_personality_decl)
718     gnat_eh_personality_decl
719       = build_personality_function (USING_SJLJ_EXCEPTIONS
720                                     ? "__gnat_eh_personality_sj"
721                                     : "__gnat_eh_personality");
722
723   return gnat_eh_personality_decl;
724 }
725
726 #include "gt-ada-misc.h"