1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 1992-2015, Free Software Foundation, Inc. *
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/>. *
21 * GNAT was originally developed by the GNAT team at New York University. *
22 * Extensive contributions were provided by Ada Core Technologies Inc. *
24 ****************************************************************************/
28 #include "coretypes.h"
37 #include "fold-const.h"
38 #include "stor-layout.h"
39 #include "print-tree.h"
40 #include "diagnostic.h"
46 #include "langhooks.h"
47 #include "langhooks-def.h"
50 #include "hard-reg-set.h"
51 #include "calls.h" /* For pass_by_reference. */
52 #include "dwarf2out.h"
55 #include "adadecode.h"
69 /* This symbol needs to be defined for the front-end. */
70 void *callgraph_info_file
= NULL
;
72 /* Command-line argc and argv. These variables are global since they are
73 imported in back_end.adb. */
74 unsigned int save_argc
;
75 const char **save_argv
;
77 /* GNAT argc and argv. */
79 extern char **gnat_argv
;
85 /* Declare functions we use as part of startup. */
86 extern void __gnat_initialize (void *);
87 extern void __gnat_install_SEH_handler (void *);
88 extern void adainit (void);
89 extern void _ada_gnat1drv (void);
95 /* The parser for the language. For us, we process the GNAT tree. */
98 gnat_parse_file (void)
102 /* Call the target specific initializations. */
103 __gnat_initialize (NULL
);
105 /* ??? Call the SEH initialization routine. This is to workaround
106 a bootstrap path problem. The call below should be removed at some
107 point and the SEH pointer passed to __gnat_initialize() above. */
108 __gnat_install_SEH_handler((void *)seh
);
110 /* Call the front-end elaboration procedures. */
113 /* Call the front end. */
116 note_types_used_by_globals ();
119 /* Return language mask for option processing. */
122 gnat_option_lang_mask (void)
127 /* Decode all the language specific options that cannot be decoded by GCC.
128 The option decoding phase of GCC calls this routine on the flags that
129 are marked as Ada-specific. Return true on success or false on failure. */
132 gnat_handle_option (size_t scode
, const char *arg ATTRIBUTE_UNUSED
, int value
,
133 int kind ATTRIBUTE_UNUSED
, location_t loc ATTRIBUTE_UNUSED
,
134 const struct cl_option_handlers
*handlers ATTRIBUTE_UNUSED
)
136 enum opt_code code
= (enum opt_code
) scode
;
141 handle_generated_option (&global_options
, &global_options_set
,
142 OPT_Wunused
, NULL
, value
,
143 gnat_option_lang_mask (), kind
, loc
,
144 handlers
, global_dc
);
145 warn_uninitialized
= value
;
146 warn_maybe_uninitialized
= value
;
150 warning (0, "%<-gnat%> misspelled as %<-gant%>");
152 /* ... fall through ... */
160 /* These are handled by the front-end. */
163 case OPT_fshort_enums
:
164 /* This is handled by the middle-end. */
171 Ada_handle_option_auto (&global_options
, &global_options_set
,
173 gnat_option_lang_mask (), kind
,
174 loc
, handlers
, global_dc
);
178 /* Initialize options structure OPTS. */
181 gnat_init_options_struct (struct gcc_options
*opts
)
183 /* Uninitialized really means uninitialized in Ada. */
184 opts
->x_flag_zero_initialized_in_bss
= 0;
186 /* We don't care about errno in Ada and it causes __builtin_sqrt to
187 call the libm function rather than do it inline. */
188 opts
->x_flag_errno_math
= 0;
189 opts
->frontend_set_flag_errno_math
= true;
192 /* Initialize for option processing. */
195 gnat_init_options (unsigned int decoded_options_count
,
196 struct cl_decoded_option
*decoded_options
)
198 /* Reconstruct an argv array for use of back_end.adb.
200 ??? back_end.adb should not rely on this; instead, it should work with
201 decoded options without such reparsing, to ensure consistency in how
202 options are decoded. */
205 save_argv
= XNEWVEC (const char *, 2 * decoded_options_count
+ 1);
207 for (i
= 0; i
< decoded_options_count
; i
++)
209 size_t num_elements
= decoded_options
[i
].canonical_option_num_elements
;
211 if (decoded_options
[i
].errors
212 || decoded_options
[i
].opt_index
== OPT_SPECIAL_unknown
213 || num_elements
== 0)
216 /* Deal with -I- specially since it must be a single switch. */
217 if (decoded_options
[i
].opt_index
== OPT_I
219 && decoded_options
[i
].canonical_option
[1][0] == '-'
220 && decoded_options
[i
].canonical_option
[1][1] == '\0')
221 save_argv
[save_argc
++] = "-I-";
224 gcc_assert (num_elements
>= 1 && num_elements
<= 2);
225 save_argv
[save_argc
++] = decoded_options
[i
].canonical_option
[0];
226 if (num_elements
>= 2)
227 save_argv
[save_argc
++] = decoded_options
[i
].canonical_option
[1];
230 save_argv
[save_argc
] = NULL
;
232 gnat_argv
= (char **) xmalloc (sizeof (save_argv
[0]));
233 gnat_argv
[0] = xstrdup (save_argv
[0]); /* name of the command */
237 /* Ada code requires variables for these settings rather than elements
238 of the global_options structure. */
241 #undef flag_compare_debug
242 #undef flag_short_enums
243 #undef flag_stack_check
244 int gnat_encodings
= 0;
247 int flag_compare_debug
;
248 int flag_short_enums
;
249 enum stack_check_type flag_stack_check
= NO_STACK_CHECK
;
251 /* Settings adjustments after switches processing by the back-end.
252 Note that the front-end switches processing (Scan_Compiler_Arguments)
253 has not been done yet at this point! */
256 gnat_post_options (const char **pfilename ATTRIBUTE_UNUSED
)
258 /* Excess precision other than "fast" requires front-end support. */
259 if (flag_excess_precision_cmdline
== EXCESS_PRECISION_STANDARD
260 && TARGET_FLT_EVAL_METHOD_NON_DEFAULT
)
261 sorry ("-fexcess-precision=standard for Ada");
262 flag_excess_precision_cmdline
= EXCESS_PRECISION_FAST
;
264 /* ??? The warning machinery is outsmarted by Ada. */
265 warn_unused_parameter
= 0;
267 /* No psABI change warnings for Ada. */
270 /* No caret by default for Ada. */
271 if (!global_options_set
.x_flag_diagnostics_show_caret
)
272 global_dc
->show_caret
= false;
274 optimize
= global_options
.x_optimize
;
275 optimize_size
= global_options
.x_optimize_size
;
276 flag_compare_debug
= global_options
.x_flag_compare_debug
;
277 flag_stack_check
= global_options
.x_flag_stack_check
;
278 flag_short_enums
= global_options
.x_flag_short_enums
;
280 /* Unfortunately the post_options hook is called before the value of
281 flag_short_enums is autodetected, if need be. Mimic the process
282 for our private flag_short_enums. */
283 if (flag_short_enums
== 2)
284 flag_short_enums
= targetm
.default_short_enums ();
289 /* Here is the function to handle the compiler error processing in GCC. */
292 internal_error_function (diagnostic_context
*context
,
293 const char *msgid
, va_list *ap
)
296 char *buffer
, *p
, *loc
;
297 String_Template temp
, temp_loc
;
298 String_Pointer sp
, sp_loc
;
299 expanded_location xloc
;
301 /* Warn if plugins present. */
304 /* Reset the pretty-printer. */
305 pp_clear_output_area (context
->printer
);
307 /* Format the message into the pretty-printer. */
308 tinfo
.format_spec
= msgid
;
310 tinfo
.err_no
= errno
;
311 pp_format_verbatim (context
->printer
, &tinfo
);
313 /* Extract a (writable) pointer to the formatted text. */
314 buffer
= xstrdup (pp_formatted_text (context
->printer
));
316 /* Go up to the first newline. */
317 for (p
= buffer
; *p
; p
++)
325 temp
.High_Bound
= p
- buffer
;
329 xloc
= expand_location (input_location
);
330 if (context
->show_column
&& xloc
.column
!= 0)
331 loc
= xasprintf ("%s:%d:%d", xloc
.file
, xloc
.line
, xloc
.column
);
333 loc
= xasprintf ("%s:%d", xloc
.file
, xloc
.line
);
334 temp_loc
.Low_Bound
= 1;
335 temp_loc
.High_Bound
= strlen (loc
);
336 sp_loc
.Bounds
= &temp_loc
;
339 Current_Error_Node
= error_gnat_node
;
340 Compiler_Abort (sp
, sp_loc
, true);
343 /* Perform all the initialization steps that are language-specific. */
348 /* Do little here, most of the standard declarations are set up after the
349 front-end has been run. Use the same `char' as C, this doesn't really
350 matter since we'll use the explicit `unsigned char' for Character. */
351 build_common_tree_nodes (flag_signed_char
, false);
353 /* In Ada, we use an unsigned 8-bit type for the default boolean type. */
354 boolean_type_node
= make_unsigned_type (8);
355 TREE_SET_CODE (boolean_type_node
, BOOLEAN_TYPE
);
356 SET_TYPE_RM_MAX_VALUE (boolean_type_node
,
357 build_int_cst (boolean_type_node
, 1));
358 SET_TYPE_RM_SIZE (boolean_type_node
, bitsize_int (1));
359 boolean_true_node
= TYPE_MAX_VALUE (boolean_type_node
);
360 boolean_false_node
= TYPE_MIN_VALUE (boolean_type_node
);
362 sbitsize_one_node
= sbitsize_int (1);
363 sbitsize_unit_node
= sbitsize_int (BITS_PER_UNIT
);
365 /* Show that REFERENCE_TYPEs are internal and should be Pmode. */
366 internal_reference_types ();
368 /* Register our internal error function. */
369 global_dc
->internal_error
= &internal_error_function
;
374 /* Initialize the GCC support for exception handling. */
377 gnat_init_gcc_eh (void)
379 /* We shouldn't do anything if the No_Exceptions_Handler pragma is set,
380 though. This could for instance lead to the emission of tables with
381 references to symbols (such as the Ada eh personality routine) within
382 libraries we won't link against. */
383 if (No_Exception_Handlers_Set ())
386 /* Tell GCC we are handling cleanup actions through exception propagation.
387 This opens possibilities that we don't take advantage of yet, but is
388 nonetheless necessary to ensure that fixup code gets assigned to the
389 right exception regions. */
390 using_eh_for_cleanups ();
392 /* Turn on -fexceptions, -fnon-call-exceptions and -fdelete-dead-exceptions.
393 The first one triggers the generation of the necessary exception tables.
394 The second one is useful for two reasons: 1/ we map some asynchronous
395 signals like SEGV to exceptions, so we need to ensure that the insns
396 which can lead to such signals are correctly attached to the exception
397 region they pertain to, 2/ some calls to pure subprograms are handled as
398 libcall blocks and then marked as "cannot trap" if the flag is not set
399 (see emit_libcall_block). We should not let this be since it is possible
400 for such calls to actually raise in Ada.
401 The third one is an optimization that makes it possible to delete dead
402 instructions that may throw exceptions, most notably loads and stores,
403 as permitted in Ada. */
405 flag_non_call_exceptions
= 1;
406 flag_delete_dead_exceptions
= 1;
411 /* Initialize the GCC support for floating-point operations. */
414 gnat_init_gcc_fp (void)
416 /* Disable FP optimizations that ignore the signedness of zero if
417 S'Signed_Zeros is true, but don't override the user if not. */
418 if (Signed_Zeros_On_Target
)
419 flag_signed_zeros
= 1;
420 else if (!global_options_set
.x_flag_signed_zeros
)
421 flag_signed_zeros
= 0;
423 /* Assume that FP operations can trap if S'Machine_Overflow is true,
424 but don't override the user if not. */
425 if (Machine_Overflows_On_Target
)
426 flag_trapping_math
= 1;
427 else if (!global_options_set
.x_flag_trapping_math
)
428 flag_trapping_math
= 0;
431 /* Print language-specific items in declaration NODE. */
434 gnat_print_decl (FILE *file
, tree node
, int indent
)
436 switch (TREE_CODE (node
))
439 print_node (file
, "corresponding var",
440 DECL_CONST_CORRESPONDING_VAR (node
), indent
+ 4);
444 print_node (file
, "original field", DECL_ORIGINAL_FIELD (node
),
449 if (DECL_LOOP_PARM_P (node
))
450 print_node (file
, "induction var", DECL_INDUCTION_VAR (node
),
453 print_node (file
, "renamed object", DECL_RENAMED_OBJECT (node
),
462 /* Print language-specific items in type NODE. */
465 gnat_print_type (FILE *file
, tree node
, int indent
)
467 switch (TREE_CODE (node
))
470 print_node (file
, "ci/co list", TYPE_CI_CO_LIST (node
), indent
+ 4);
474 if (TYPE_MODULAR_P (node
))
475 print_node_brief (file
, "modulus", TYPE_MODULUS (node
), indent
+ 4);
476 else if (TYPE_HAS_ACTUAL_BOUNDS_P (node
))
477 print_node (file
, "actual bounds", TYPE_ACTUAL_BOUNDS (node
),
480 print_node (file
, "index type", TYPE_INDEX_TYPE (node
), indent
+ 4);
482 /* ... fall through ... */
486 print_node_brief (file
, "RM size", TYPE_RM_SIZE (node
), indent
+ 4);
488 /* ... fall through ... */
491 print_node_brief (file
, "RM min", TYPE_RM_MIN_VALUE (node
), indent
+ 4);
492 print_node_brief (file
, "RM max", TYPE_RM_MAX_VALUE (node
), indent
+ 4);
496 print_node (file
,"actual bounds", TYPE_ACTUAL_BOUNDS (node
), indent
+ 4);
500 print_node (file
,"representative array",
501 TYPE_REPRESENTATIVE_ARRAY (node
), indent
+ 4);
505 if (TYPE_FAT_POINTER_P (node
) || TYPE_CONTAINS_TEMPLATE_P (node
))
506 print_node (file
, "unconstrained array",
507 TYPE_UNCONSTRAINED_ARRAY (node
), indent
+ 4);
509 print_node (file
, "Ada size", TYPE_ADA_SIZE (node
), indent
+ 4);
513 case QUAL_UNION_TYPE
:
514 print_node (file
, "Ada size", TYPE_ADA_SIZE (node
), indent
+ 4);
522 /* Return the name to be printed for DECL. */
525 gnat_printable_name (tree decl
, int verbosity
)
527 const char *coded_name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
528 char *ada_name
= (char *) ggc_alloc_atomic (strlen (coded_name
) * 2 + 60);
530 __gnat_decode (coded_name
, ada_name
, 0);
532 if (verbosity
== 2 && !DECL_IS_BUILTIN (decl
))
534 Set_Identifier_Casing (ada_name
, DECL_SOURCE_FILE (decl
));
535 return ggc_strdup (Name_Buffer
);
541 /* Return the name to be used in DWARF debug info for DECL. */
544 gnat_dwarf_name (tree decl
, int verbosity ATTRIBUTE_UNUSED
)
546 gcc_assert (DECL_P (decl
));
547 return (const char *) IDENTIFIER_POINTER (DECL_NAME (decl
));
550 /* Return the descriptive type associated with TYPE, if any. */
553 gnat_descriptive_type (const_tree type
)
555 if (TYPE_STUB_DECL (type
))
556 return DECL_PARALLEL_TYPE (TYPE_STUB_DECL (type
));
561 /* Return true if types T1 and T2 are identical for type hashing purposes.
562 Called only after doing all language independent checks. At present,
563 this function is only called when both types are FUNCTION_TYPE. */
566 gnat_type_hash_eq (const_tree t1
, const_tree t2
)
568 gcc_assert (TREE_CODE (t1
) == FUNCTION_TYPE
);
569 return fntype_same_flags_p (t1
, TYPE_CI_CO_LIST (t2
),
570 TYPE_RETURN_UNCONSTRAINED_P (t2
),
571 TYPE_RETURN_BY_DIRECT_REF_P (t2
),
572 TREE_ADDRESSABLE (t2
));
575 /* Do nothing (return the tree node passed). */
578 gnat_return_tree (tree t
)
583 /* Get the alias set corresponding to a type or expression. */
585 static alias_set_type
586 gnat_get_alias_set (tree type
)
588 /* If this is a padding type, use the type of the first field. */
589 if (TYPE_IS_PADDING_P (type
))
590 return get_alias_set (TREE_TYPE (TYPE_FIELDS (type
)));
592 /* If the type is an unconstrained array, use the type of the
593 self-referential array we make. */
594 else if (TREE_CODE (type
) == UNCONSTRAINED_ARRAY_TYPE
)
596 get_alias_set (TREE_TYPE (TREE_TYPE (TYPE_FIELDS (TREE_TYPE (type
)))));
598 /* If the type can alias any other types, return the alias set 0. */
599 else if (TYPE_P (type
) && TYPE_UNIVERSAL_ALIASING_P (type
))
605 /* GNU_TYPE is a type. Return its maximum size in bytes, if known,
606 as a constant when possible. */
609 gnat_type_max_size (const_tree gnu_type
)
611 /* First see what we can get from TYPE_SIZE_UNIT, which might not
612 be constant even for simple expressions if it has already been
613 elaborated and possibly replaced by a VAR_DECL. */
614 tree max_unitsize
= max_size (TYPE_SIZE_UNIT (gnu_type
), true);
616 /* If we don't have a constant, see what we can get from TYPE_ADA_SIZE,
617 which should stay untouched. */
618 if (!tree_fits_uhwi_p (max_unitsize
)
619 && RECORD_OR_UNION_TYPE_P (gnu_type
)
620 && !TYPE_FAT_POINTER_P (gnu_type
)
621 && TYPE_ADA_SIZE (gnu_type
))
623 tree max_adasize
= max_size (TYPE_ADA_SIZE (gnu_type
), true);
625 /* If we have succeeded in finding a constant, round it up to the
626 type's alignment and return the result in units. */
627 if (tree_fits_uhwi_p (max_adasize
))
629 = size_binop (CEIL_DIV_EXPR
,
630 round_up (max_adasize
, TYPE_ALIGN (gnu_type
)),
637 /* Provide information in INFO for debug output about the TYPE array type.
638 Return whether TYPE is handled. */
641 gnat_get_array_descr_info (const_tree type
, struct array_descr_info
*info
)
643 bool convention_fortran_p
;
646 const_tree dimen
= NULL_TREE
;
647 const_tree last_dimen
= NULL_TREE
;
650 if (TREE_CODE (type
) != ARRAY_TYPE
651 || !TYPE_DOMAIN (type
)
652 || !TYPE_INDEX_TYPE (TYPE_DOMAIN (type
)))
655 /* Count how many dimentions this array has. */
656 for (i
= 0, dimen
= type
; ; ++i
, dimen
= TREE_TYPE (dimen
))
658 && (TREE_CODE (dimen
) != ARRAY_TYPE
659 || !TYPE_MULTI_ARRAY_P (dimen
)))
661 info
->ndimensions
= i
;
662 convention_fortran_p
= TYPE_CONVENTION_FORTRAN_P (type
);
664 /* TODO: For row major ordering, we probably want to emit nothing and
665 instead specify it as the default in Dw_TAG_compile_unit. */
666 info
->ordering
= (convention_fortran_p
667 ? array_descr_ordering_column_major
668 : array_descr_ordering_row_major
);
669 info
->base_decl
= NULL_TREE
;
670 info
->data_location
= NULL_TREE
;
671 info
->allocated
= NULL_TREE
;
672 info
->associated
= NULL_TREE
;
674 for (i
= (convention_fortran_p
? info
->ndimensions
- 1 : 0),
677 0 <= i
&& i
< info
->ndimensions
;
679 i
+= (convention_fortran_p
? -1 : 1),
680 dimen
= TREE_TYPE (dimen
))
682 /* We are interested in the stored bounds for the debug info. */
683 index_type
= TYPE_INDEX_TYPE (TYPE_DOMAIN (dimen
));
685 info
->dimen
[i
].bounds_type
= index_type
;
686 info
->dimen
[i
].lower_bound
= TYPE_MIN_VALUE (index_type
);
687 info
->dimen
[i
].upper_bound
= TYPE_MAX_VALUE (index_type
);
691 info
->element_type
= TREE_TYPE (last_dimen
);
696 /* GNU_TYPE is a subtype of an integral type. Set LOWVAL to the low bound
697 and HIGHVAL to the high bound, respectively. */
700 gnat_get_subrange_bounds (const_tree gnu_type
, tree
*lowval
, tree
*highval
)
702 *lowval
= TYPE_MIN_VALUE (gnu_type
);
703 *highval
= TYPE_MAX_VALUE (gnu_type
);
706 /* GNU_TYPE is the type of a subprogram parameter. Determine if it should be
707 passed by reference by default. */
710 default_pass_by_ref (tree gnu_type
)
712 /* We pass aggregates by reference if they are sufficiently large for
713 their alignment. The ratio is somewhat arbitrary. We also pass by
714 reference if the target machine would either pass or return by
715 reference. Strictly speaking, we need only check the return if this
716 is an In Out parameter, but it's probably best to err on the side of
717 passing more things by reference. */
719 if (pass_by_reference (NULL
, TYPE_MODE (gnu_type
), gnu_type
, true))
722 if (targetm
.calls
.return_in_memory (gnu_type
, NULL_TREE
))
725 if (AGGREGATE_TYPE_P (gnu_type
)
726 && (!valid_constant_size_p (TYPE_SIZE_UNIT (gnu_type
))
727 || 0 < compare_tree_int (TYPE_SIZE_UNIT (gnu_type
),
728 TYPE_ALIGN (gnu_type
))))
734 /* GNU_TYPE is the type of a subprogram parameter. Determine if it must be
735 passed by reference. */
738 must_pass_by_ref (tree gnu_type
)
740 /* We pass only unconstrained objects, those required by the language
741 to be passed by reference, and objects of variable size. The latter
742 is more efficient, avoids problems with variable size temporaries,
743 and does not produce compatibility problems with C, since C does
744 not have such objects. */
745 return (TREE_CODE (gnu_type
) == UNCONSTRAINED_ARRAY_TYPE
746 || TYPE_IS_BY_REFERENCE_P (gnu_type
)
747 || (TYPE_SIZE_UNIT (gnu_type
)
748 && TREE_CODE (TYPE_SIZE_UNIT (gnu_type
)) != INTEGER_CST
));
751 /* This function is called by the front-end to enumerate all the supported
752 modes for the machine, as well as some predefined C types. F is a function
753 which is called back with the parameters as listed below, first a string,
754 then seven ints. The name is any arbitrary null-terminated string and has
755 no particular significance, except for the case of predefined C types, where
756 it should be the name of the C type. For integer types, only signed types
757 should be listed, unsigned versions are assumed. The order of types should
758 be in order of preference, with the smallest/cheapest types first.
760 In particular, C predefined types should be listed before other types,
761 binary floating point types before decimal ones, and narrower/cheaper
762 type versions before more expensive ones. In type selection the first
763 matching variant will be used.
765 NAME pointer to first char of type name
766 DIGS number of decimal digits for floating-point modes, else 0
767 COMPLEX_P nonzero is this represents a complex mode
768 COUNT count of number of items, nonzero for vector mode
769 FLOAT_REP Float_Rep_Kind for FP, otherwise undefined
770 PRECISION number of bits used to store data
771 SIZE number of bits occupied by the mode
772 ALIGN number of bits to which mode is aligned. */
775 enumerate_modes (void (*f
) (const char *, int, int, int, int, int, int, int))
778 = { float_type_node
, double_type_node
, long_double_type_node
};
779 const char *const c_names
[]
780 = { "float", "double", "long double" };
783 /* We are going to compute it below. */
784 fp_arith_may_widen
= false;
786 for (iloop
= 0; iloop
< NUM_MACHINE_MODES
; iloop
++)
788 machine_mode i
= (machine_mode
) iloop
;
789 machine_mode inner_mode
= i
;
790 bool float_p
= false;
791 bool complex_p
= false;
792 bool vector_p
= false;
795 unsigned int nameloop
;
796 Float_Rep_Kind float_rep
= IEEE_Binary
; /* Until proven otherwise */
798 switch (GET_MODE_CLASS (i
))
805 case MODE_COMPLEX_INT
:
807 inner_mode
= GET_MODE_INNER (i
);
809 case MODE_COMPLEX_FLOAT
:
812 inner_mode
= GET_MODE_INNER (i
);
814 case MODE_VECTOR_INT
:
816 inner_mode
= GET_MODE_INNER (i
);
818 case MODE_VECTOR_FLOAT
:
821 inner_mode
= GET_MODE_INNER (i
);
829 const struct real_format
*fmt
= REAL_MODE_FORMAT (inner_mode
);
831 /* ??? Cope with the ghost XFmode of the ARM port. */
835 /* Be conservative and consider that floating-point arithmetics may
836 use wider intermediate results as soon as there is an extended
837 Motorola or Intel mode supported by the machine. */
838 if (fmt
== &ieee_extended_motorola_format
839 || fmt
== &ieee_extended_intel_96_format
840 || fmt
== &ieee_extended_intel_96_round_53_format
841 || fmt
== &ieee_extended_intel_128_format
)
843 #ifdef TARGET_FPMATH_DEFAULT
844 if (TARGET_FPMATH_DEFAULT
== FPMATH_387
)
846 fp_arith_may_widen
= true;
850 digs
= (fmt
->p
- 1) * 1233 / 4096; /* scale by log (2) */
852 else if (fmt
->b
== 10)
859 /* First register any C types for this mode that the front end
860 may need to know about, unless the mode should be skipped. */
861 if (!skip_p
&& !vector_p
)
862 for (nameloop
= 0; nameloop
< ARRAY_SIZE (c_types
); nameloop
++)
864 tree type
= c_types
[nameloop
];
865 const char *name
= c_names
[nameloop
];
867 if (TYPE_MODE (type
) == i
)
869 f (name
, digs
, complex_p
, 0, float_rep
, TYPE_PRECISION (type
),
870 TREE_INT_CST_LOW (TYPE_SIZE (type
)), TYPE_ALIGN (type
));
875 /* If no predefined C types were found, register the mode itself. */
877 f (GET_MODE_NAME (i
), digs
, complex_p
,
878 vector_p
? GET_MODE_NUNITS (i
) : 0, float_rep
,
879 GET_MODE_PRECISION (i
), GET_MODE_BITSIZE (i
),
880 GET_MODE_ALIGNMENT (i
));
884 /* Return the size of the FP mode with precision PREC. */
887 fp_prec_to_size (int prec
)
891 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); mode
!= VOIDmode
;
892 mode
= GET_MODE_WIDER_MODE (mode
))
893 if (GET_MODE_PRECISION (mode
) == prec
)
894 return GET_MODE_BITSIZE (mode
);
899 /* Return the precision of the FP mode with size SIZE. */
902 fp_size_to_prec (int size
)
906 for (mode
= GET_CLASS_NARROWEST_MODE (MODE_FLOAT
); mode
!= VOIDmode
;
907 mode
= GET_MODE_WIDER_MODE (mode
))
908 if (GET_MODE_BITSIZE (mode
) == size
)
909 return GET_MODE_PRECISION (mode
);
914 static GTY(()) tree gnat_eh_personality_decl
;
916 /* Return the GNAT personality function decl. */
919 gnat_eh_personality (void)
921 if (!gnat_eh_personality_decl
)
922 gnat_eh_personality_decl
= build_personality_function ("gnat");
923 return gnat_eh_personality_decl
;
926 /* Initialize language-specific bits of tree_contains_struct. */
931 MARK_TS_COMMON (UNCONSTRAINED_ARRAY_TYPE
);
933 MARK_TS_TYPED (UNCONSTRAINED_ARRAY_REF
);
934 MARK_TS_TYPED (NULL_EXPR
);
935 MARK_TS_TYPED (PLUS_NOMOD_EXPR
);
936 MARK_TS_TYPED (MINUS_NOMOD_EXPR
);
937 MARK_TS_TYPED (ATTR_ADDR_EXPR
);
938 MARK_TS_TYPED (STMT_STMT
);
939 MARK_TS_TYPED (LOOP_STMT
);
940 MARK_TS_TYPED (EXIT_STMT
);
943 /* Definitions for our language-specific hooks. */
945 #undef LANG_HOOKS_NAME
946 #define LANG_HOOKS_NAME "GNU Ada"
947 #undef LANG_HOOKS_IDENTIFIER_SIZE
948 #define LANG_HOOKS_IDENTIFIER_SIZE sizeof (struct tree_identifier)
949 #undef LANG_HOOKS_INIT
950 #define LANG_HOOKS_INIT gnat_init
951 #undef LANG_HOOKS_OPTION_LANG_MASK
952 #define LANG_HOOKS_OPTION_LANG_MASK gnat_option_lang_mask
953 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
954 #define LANG_HOOKS_INIT_OPTIONS_STRUCT gnat_init_options_struct
955 #undef LANG_HOOKS_INIT_OPTIONS
956 #define LANG_HOOKS_INIT_OPTIONS gnat_init_options
957 #undef LANG_HOOKS_HANDLE_OPTION
958 #define LANG_HOOKS_HANDLE_OPTION gnat_handle_option
959 #undef LANG_HOOKS_POST_OPTIONS
960 #define LANG_HOOKS_POST_OPTIONS gnat_post_options
961 #undef LANG_HOOKS_PARSE_FILE
962 #define LANG_HOOKS_PARSE_FILE gnat_parse_file
963 #undef LANG_HOOKS_TYPE_HASH_EQ
964 #define LANG_HOOKS_TYPE_HASH_EQ gnat_type_hash_eq
965 #undef LANG_HOOKS_GETDECLS
966 #define LANG_HOOKS_GETDECLS lhd_return_null_tree_v
967 #undef LANG_HOOKS_PUSHDECL
968 #define LANG_HOOKS_PUSHDECL gnat_return_tree
969 #undef LANG_HOOKS_GET_ALIAS_SET
970 #define LANG_HOOKS_GET_ALIAS_SET gnat_get_alias_set
971 #undef LANG_HOOKS_PRINT_DECL
972 #define LANG_HOOKS_PRINT_DECL gnat_print_decl
973 #undef LANG_HOOKS_PRINT_TYPE
974 #define LANG_HOOKS_PRINT_TYPE gnat_print_type
975 #undef LANG_HOOKS_TYPE_MAX_SIZE
976 #define LANG_HOOKS_TYPE_MAX_SIZE gnat_type_max_size
977 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
978 #define LANG_HOOKS_DECL_PRINTABLE_NAME gnat_printable_name
979 #undef LANG_HOOKS_DWARF_NAME
980 #define LANG_HOOKS_DWARF_NAME gnat_dwarf_name
981 #undef LANG_HOOKS_GIMPLIFY_EXPR
982 #define LANG_HOOKS_GIMPLIFY_EXPR gnat_gimplify_expr
983 #undef LANG_HOOKS_TYPE_FOR_MODE
984 #define LANG_HOOKS_TYPE_FOR_MODE gnat_type_for_mode
985 #undef LANG_HOOKS_TYPE_FOR_SIZE
986 #define LANG_HOOKS_TYPE_FOR_SIZE gnat_type_for_size
987 #undef LANG_HOOKS_TYPES_COMPATIBLE_P
988 #define LANG_HOOKS_TYPES_COMPATIBLE_P gnat_types_compatible_p
989 #undef LANG_HOOKS_GET_ARRAY_DESCR_INFO
990 #define LANG_HOOKS_GET_ARRAY_DESCR_INFO gnat_get_array_descr_info
991 #undef LANG_HOOKS_GET_SUBRANGE_BOUNDS
992 #define LANG_HOOKS_GET_SUBRANGE_BOUNDS gnat_get_subrange_bounds
993 #undef LANG_HOOKS_DESCRIPTIVE_TYPE
994 #define LANG_HOOKS_DESCRIPTIVE_TYPE gnat_descriptive_type
995 #undef LANG_HOOKS_ATTRIBUTE_TABLE
996 #define LANG_HOOKS_ATTRIBUTE_TABLE gnat_internal_attribute_table
997 #undef LANG_HOOKS_BUILTIN_FUNCTION
998 #define LANG_HOOKS_BUILTIN_FUNCTION gnat_builtin_function
999 #undef LANG_HOOKS_EH_PERSONALITY
1000 #define LANG_HOOKS_EH_PERSONALITY gnat_eh_personality
1001 #undef LANG_HOOKS_DEEP_UNSHARING
1002 #define LANG_HOOKS_DEEP_UNSHARING true
1003 #undef LANG_HOOKS_INIT_TS
1004 #define LANG_HOOKS_INIT_TS gnat_init_ts
1005 #undef LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL
1006 #define LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL hook_bool_const_tree_false
1008 struct lang_hooks lang_hooks
= LANG_HOOKS_INITIALIZER
;
1010 #include "gt-ada-misc.h"