OSDN Git Service

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