OSDN Git Service

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