OSDN Git Service

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