1 /* Language-dependent hooks for LTO.
2 Copyright 2009, 2010 Free Software Foundation, Inc.
3 Contributed by CodeSourcery, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
28 #include "langhooks.h"
29 #include "langhooks-def.h"
33 #include "tree-inline.h"
35 #include "diagnostic-core.h"
37 #include "lto-streamer.h"
39 static tree
handle_noreturn_attribute (tree
*, tree
, tree
, int, bool *);
40 static tree
handle_leaf_attribute (tree
*, tree
, tree
, int, bool *);
41 static tree
handle_const_attribute (tree
*, tree
, tree
, int, bool *);
42 static tree
handle_malloc_attribute (tree
*, tree
, tree
, int, bool *);
43 static tree
handle_pure_attribute (tree
*, tree
, tree
, int, bool *);
44 static tree
handle_novops_attribute (tree
*, tree
, tree
, int, bool *);
45 static tree
handle_nonnull_attribute (tree
*, tree
, tree
, int, bool *);
46 static tree
handle_nothrow_attribute (tree
*, tree
, tree
, int, bool *);
47 static tree
handle_sentinel_attribute (tree
*, tree
, tree
, int, bool *);
48 static tree
handle_type_generic_attribute (tree
*, tree
, tree
, int, bool *);
49 static tree
handle_format_attribute (tree
*, tree
, tree
, int, bool *);
50 static tree
handle_format_arg_attribute (tree
*, tree
, tree
, int, bool *);
52 /* Table of machine-independent attributes supported in GIMPLE. */
53 const struct attribute_spec lto_attribute_table
[] =
55 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
57 { "noreturn", 0, 0, true, false, false,
58 handle_noreturn_attribute
, false },
59 { "leaf", 0, 0, true, false, false,
60 handle_leaf_attribute
, false },
61 /* The same comments as for noreturn attributes apply to const ones. */
62 { "const", 0, 0, true, false, false,
63 handle_const_attribute
, false },
64 { "malloc", 0, 0, true, false, false,
65 handle_malloc_attribute
, false },
66 { "pure", 0, 0, true, false, false,
67 handle_pure_attribute
, false },
68 { "no vops", 0, 0, true, false, false,
69 handle_novops_attribute
, false },
70 { "nonnull", 0, -1, false, true, true,
71 handle_nonnull_attribute
, false },
72 { "nothrow", 0, 0, true, false, false,
73 handle_nothrow_attribute
, false },
74 { "sentinel", 0, 1, false, true, true,
75 handle_sentinel_attribute
, false },
76 { "type generic", 0, 0, false, true, true,
77 handle_type_generic_attribute
, false },
78 { NULL
, 0, 0, false, false, false, NULL
, false }
81 /* Give the specifications for the format attributes, used by C and all
84 const struct attribute_spec lto_format_attribute_table
[] =
86 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
87 affects_type_identity } */
88 { "format", 3, 3, false, true, true,
89 handle_format_attribute
, false },
90 { "format_arg", 1, 1, false, true, true,
91 handle_format_arg_attribute
, false },
92 { NULL
, 0, 0, false, false, false, NULL
, false }
95 enum built_in_attribute
97 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
98 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
99 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
100 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
101 #include "builtin-attrs.def"
102 #undef DEF_ATTR_NULL_TREE
104 #undef DEF_ATTR_IDENT
105 #undef DEF_ATTR_TREE_LIST
109 static GTY(()) tree built_in_attributes
[(int) ATTR_LAST
];
113 enum lto_builtin_type
115 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
116 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
117 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
118 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
119 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
120 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
121 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
122 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) NAME,
123 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) NAME,
124 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
125 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
126 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
127 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
128 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
129 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG6) \
131 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
132 #include "builtin-types.def"
133 #undef DEF_PRIMITIVE_TYPE
134 #undef DEF_FUNCTION_TYPE_0
135 #undef DEF_FUNCTION_TYPE_1
136 #undef DEF_FUNCTION_TYPE_2
137 #undef DEF_FUNCTION_TYPE_3
138 #undef DEF_FUNCTION_TYPE_4
139 #undef DEF_FUNCTION_TYPE_5
140 #undef DEF_FUNCTION_TYPE_6
141 #undef DEF_FUNCTION_TYPE_7
142 #undef DEF_FUNCTION_TYPE_VAR_0
143 #undef DEF_FUNCTION_TYPE_VAR_1
144 #undef DEF_FUNCTION_TYPE_VAR_2
145 #undef DEF_FUNCTION_TYPE_VAR_3
146 #undef DEF_FUNCTION_TYPE_VAR_4
147 #undef DEF_FUNCTION_TYPE_VAR_5
148 #undef DEF_POINTER_TYPE
152 typedef enum lto_builtin_type builtin_type
;
154 static GTY(()) tree builtin_types
[(int) BT_LAST
+ 1];
156 static GTY(()) tree string_type_node
;
157 static GTY(()) tree const_string_type_node
;
158 static GTY(()) tree wint_type_node
;
159 static GTY(()) tree intmax_type_node
;
160 static GTY(()) tree uintmax_type_node
;
161 static GTY(()) tree signed_size_type_node
;
163 /* Flags needed to process builtins.def. */
167 /* Attribute handlers. */
169 /* Handle a "noreturn" attribute; arguments as in
170 struct attribute_spec.handler. */
173 handle_noreturn_attribute (tree
*node
, tree
ARG_UNUSED (name
),
174 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
175 bool * ARG_UNUSED (no_add_attrs
))
177 tree type
= TREE_TYPE (*node
);
179 if (TREE_CODE (*node
) == FUNCTION_DECL
)
180 TREE_THIS_VOLATILE (*node
) = 1;
181 else if (TREE_CODE (type
) == POINTER_TYPE
182 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
185 (build_type_variant (TREE_TYPE (type
),
186 TYPE_READONLY (TREE_TYPE (type
)), 1));
193 /* Handle a "leaf" attribute; arguments as in
194 struct attribute_spec.handler. */
197 handle_leaf_attribute (tree
*node
, tree name
,
198 tree
ARG_UNUSED (args
),
199 int ARG_UNUSED (flags
), bool *no_add_attrs
)
201 if (TREE_CODE (*node
) != FUNCTION_DECL
)
203 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
204 *no_add_attrs
= true;
206 if (!TREE_PUBLIC (*node
))
208 warning (OPT_Wattributes
, "%qE attribute has no effect on unit local functions", name
);
209 *no_add_attrs
= true;
215 /* Handle a "const" attribute; arguments as in
216 struct attribute_spec.handler. */
219 handle_const_attribute (tree
*node
, tree
ARG_UNUSED (name
),
220 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
221 bool * ARG_UNUSED (no_add_attrs
))
223 tree type
= TREE_TYPE (*node
);
225 /* See FIXME comment on noreturn in c_common_attribute_table. */
226 if (TREE_CODE (*node
) == FUNCTION_DECL
)
227 TREE_READONLY (*node
) = 1;
228 else if (TREE_CODE (type
) == POINTER_TYPE
229 && TREE_CODE (TREE_TYPE (type
)) == FUNCTION_TYPE
)
232 (build_type_variant (TREE_TYPE (type
), 1,
233 TREE_THIS_VOLATILE (TREE_TYPE (type
))));
241 /* Handle a "malloc" attribute; arguments as in
242 struct attribute_spec.handler. */
245 handle_malloc_attribute (tree
*node
, tree
ARG_UNUSED (name
),
246 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
247 bool * ARG_UNUSED (no_add_attrs
))
249 if (TREE_CODE (*node
) == FUNCTION_DECL
250 && POINTER_TYPE_P (TREE_TYPE (TREE_TYPE (*node
))))
251 DECL_IS_MALLOC (*node
) = 1;
259 /* Handle a "pure" attribute; arguments as in
260 struct attribute_spec.handler. */
263 handle_pure_attribute (tree
*node
, tree
ARG_UNUSED (name
),
264 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
265 bool * ARG_UNUSED (no_add_attrs
))
267 if (TREE_CODE (*node
) == FUNCTION_DECL
)
268 DECL_PURE_P (*node
) = 1;
276 /* Handle a "no vops" attribute; arguments as in
277 struct attribute_spec.handler. */
280 handle_novops_attribute (tree
*node
, tree
ARG_UNUSED (name
),
281 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
282 bool *ARG_UNUSED (no_add_attrs
))
284 gcc_assert (TREE_CODE (*node
) == FUNCTION_DECL
);
285 DECL_IS_NOVOPS (*node
) = 1;
290 /* Helper for nonnull attribute handling; fetch the operand number
291 from the attribute argument list. */
294 get_nonnull_operand (tree arg_num_expr
, unsigned HOST_WIDE_INT
*valp
)
296 /* Verify the arg number is a constant. */
297 if (TREE_CODE (arg_num_expr
) != INTEGER_CST
298 || TREE_INT_CST_HIGH (arg_num_expr
) != 0)
301 *valp
= TREE_INT_CST_LOW (arg_num_expr
);
305 /* Handle the "nonnull" attribute. */
308 handle_nonnull_attribute (tree
*node
, tree
ARG_UNUSED (name
),
309 tree args
, int ARG_UNUSED (flags
),
310 bool * ARG_UNUSED (no_add_attrs
))
314 /* If no arguments are specified, all pointer arguments should be
315 non-null. Verify a full prototype is given so that the arguments
316 will have the correct types when we actually check them later. */
319 gcc_assert (prototype_p (type
));
323 /* Argument list specified. Verify that each argument number references
324 a pointer argument. */
325 for (; args
; args
= TREE_CHAIN (args
))
328 unsigned HOST_WIDE_INT arg_num
= 0, ck_num
;
330 if (!get_nonnull_operand (TREE_VALUE (args
), &arg_num
))
333 argument
= TYPE_ARG_TYPES (type
);
336 for (ck_num
= 1; ; ck_num
++)
338 if (!argument
|| ck_num
== arg_num
)
340 argument
= TREE_CHAIN (argument
);
344 && TREE_CODE (TREE_VALUE (argument
)) == POINTER_TYPE
);
352 /* Handle a "nothrow" attribute; arguments as in
353 struct attribute_spec.handler. */
356 handle_nothrow_attribute (tree
*node
, tree
ARG_UNUSED (name
),
357 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
358 bool * ARG_UNUSED (no_add_attrs
))
360 if (TREE_CODE (*node
) == FUNCTION_DECL
)
361 TREE_NOTHROW (*node
) = 1;
369 /* Handle a "sentinel" attribute. */
372 handle_sentinel_attribute (tree
*node
, tree
ARG_UNUSED (name
), tree args
,
373 int ARG_UNUSED (flags
),
374 bool * ARG_UNUSED (no_add_attrs
))
376 gcc_assert (stdarg_p (*node
));
380 tree position
= TREE_VALUE (args
);
381 gcc_assert (TREE_CODE (position
) == INTEGER_CST
);
382 if (tree_int_cst_lt (position
, integer_zero_node
))
389 /* Handle a "type_generic" attribute. */
392 handle_type_generic_attribute (tree
*node
, tree
ARG_UNUSED (name
),
393 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
394 bool * ARG_UNUSED (no_add_attrs
))
396 /* Ensure we have a function type. */
397 gcc_assert (TREE_CODE (*node
) == FUNCTION_TYPE
);
399 /* Ensure we have a variadic function. */
400 gcc_assert (!prototype_p (*node
) || stdarg_p (*node
));
405 /* Handle a "format" attribute; arguments as in
406 struct attribute_spec.handler. */
409 handle_format_attribute (tree
* ARG_UNUSED (node
), tree
ARG_UNUSED (name
),
410 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
413 *no_add_attrs
= true;
418 /* Handle a "format_arg" attribute; arguments as in
419 struct attribute_spec.handler. */
422 handle_format_arg_attribute (tree
* ARG_UNUSED (node
), tree
ARG_UNUSED (name
),
423 tree
ARG_UNUSED (args
), int ARG_UNUSED (flags
),
426 *no_add_attrs
= true;
431 /* Cribbed from c-common.c. */
434 def_fn_type (builtin_type def
, builtin_type ret
, bool var
, int n
, ...)
437 tree
*args
= XALLOCAVEC (tree
, n
);
442 for (i
= 0; i
< n
; ++i
)
444 builtin_type a
= (builtin_type
) va_arg (list
, int);
445 t
= builtin_types
[a
];
446 if (t
== error_mark_node
)
452 t
= builtin_types
[ret
];
453 if (t
== error_mark_node
)
456 t
= build_varargs_function_type_array (t
, n
, args
);
458 t
= build_function_type_array (t
, n
, args
);
461 builtin_types
[def
] = t
;
465 /* Used to help initialize the builtin-types.def table. When a type of
466 the correct size doesn't exist, use error_mark_node instead of NULL.
467 The later results in segfaults even when a decl using the type doesn't
471 builtin_type_for_size (int size
, bool unsignedp
)
473 tree type
= lang_hooks
.types
.type_for_size (size
, unsignedp
);
474 return type
? type
: error_mark_node
;
477 /* Support for DEF_BUILTIN. */
480 def_builtin_1 (enum built_in_function fncode
, const char *name
,
481 enum built_in_class fnclass
, tree fntype
, tree libtype
,
482 bool both_p
, bool fallback_p
, bool nonansi_p
,
483 tree fnattrs
, bool implicit_p
)
488 if (fntype
== error_mark_node
)
491 libname
= name
+ strlen ("__builtin_");
492 decl
= add_builtin_function (name
, fntype
, fncode
, fnclass
,
493 (fallback_p
? libname
: NULL
),
498 && !(nonansi_p
&& flag_no_nonansi_builtin
))
499 add_builtin_function (libname
, libtype
, fncode
, fnclass
,
502 set_builtin_decl (fncode
, decl
, implicit_p
);
506 /* Initialize the attribute table for all the supported builtins. */
509 lto_init_attributes (void)
511 /* Fill in the built_in_attributes array. */
512 #define DEF_ATTR_NULL_TREE(ENUM) \
513 built_in_attributes[(int) ENUM] = NULL_TREE;
514 #define DEF_ATTR_INT(ENUM, VALUE) \
515 built_in_attributes[(int) ENUM] = build_int_cst (NULL_TREE, VALUE);
516 #define DEF_ATTR_IDENT(ENUM, STRING) \
517 built_in_attributes[(int) ENUM] = get_identifier (STRING);
518 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
519 built_in_attributes[(int) ENUM] \
520 = tree_cons (built_in_attributes[(int) PURPOSE], \
521 built_in_attributes[(int) VALUE], \
522 built_in_attributes[(int) CHAIN]);
523 #include "builtin-attrs.def"
524 #undef DEF_ATTR_NULL_TREE
526 #undef DEF_ATTR_IDENT
527 #undef DEF_ATTR_TREE_LIST
530 /* Create builtin types and functions. VA_LIST_REF_TYPE_NODE and
531 VA_LIST_ARG_TYPE_NODE are used in builtin-types.def. */
534 lto_define_builtins (tree va_list_ref_type_node ATTRIBUTE_UNUSED
,
535 tree va_list_arg_type_node ATTRIBUTE_UNUSED
)
537 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
538 builtin_types[ENUM] = VALUE;
539 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
540 def_fn_type (ENUM, RETURN, 0, 0);
541 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
542 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
543 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
544 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
545 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
546 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
547 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
548 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
549 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
550 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
551 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
553 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
554 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
556 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
557 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
558 def_fn_type (ENUM, RETURN, 1, 0);
559 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
560 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
561 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
562 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
563 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
564 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
565 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
566 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
567 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
568 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
569 #define DEF_POINTER_TYPE(ENUM, TYPE) \
570 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
572 #include "builtin-types.def"
574 #undef DEF_PRIMITIVE_TYPE
575 #undef DEF_FUNCTION_TYPE_1
576 #undef DEF_FUNCTION_TYPE_2
577 #undef DEF_FUNCTION_TYPE_3
578 #undef DEF_FUNCTION_TYPE_4
579 #undef DEF_FUNCTION_TYPE_5
580 #undef DEF_FUNCTION_TYPE_6
581 #undef DEF_FUNCTION_TYPE_VAR_0
582 #undef DEF_FUNCTION_TYPE_VAR_1
583 #undef DEF_FUNCTION_TYPE_VAR_2
584 #undef DEF_FUNCTION_TYPE_VAR_3
585 #undef DEF_FUNCTION_TYPE_VAR_4
586 #undef DEF_FUNCTION_TYPE_VAR_5
587 #undef DEF_POINTER_TYPE
588 builtin_types
[(int) BT_LAST
] = NULL_TREE
;
590 lto_init_attributes ();
592 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P,\
593 NONANSI_P, ATTRS, IMPLICIT, COND) \
595 def_builtin_1 (ENUM, NAME, CLASS, builtin_types[(int) TYPE], \
596 builtin_types[(int) LIBTYPE], BOTH_P, FALLBACK_P, \
597 NONANSI_P, built_in_attributes[(int) ATTRS], IMPLICIT);
598 #include "builtins.def"
602 static GTY(()) tree registered_builtin_types
;
604 /* Language hooks. */
607 lto_option_lang_mask (void)
613 lto_complain_wrong_lang_p (const struct cl_option
*option ATTRIBUTE_UNUSED
)
615 /* The LTO front end inherits all the options from the first front
616 end that was used. However, not all the original front end
617 options make sense in LTO.
619 A real solution would be to filter this in collect2, but collect2
620 does not have access to all the option attributes to know what to
621 filter. So, in lto1 we silently accept inherited flags and do
627 lto_init_options_struct (struct gcc_options
*opts
)
629 /* By default, C99-like requirements for complex multiply and divide.
630 ??? Until the complex method is encoded in the IL this is the only
631 safe choice. This will pessimize Fortran code with LTO unless
632 people specify a complex method manually or use -ffast-math. */
633 opts
->x_flag_complex_method
= 2;
636 /* Handle command-line option SCODE. If the option takes an argument, it is
637 stored in ARG, which is otherwise NULL. VALUE holds either a numerical
638 argument or a binary value indicating whether the positive or negative form
639 of the option was supplied. */
641 const char *resolution_file_name
;
643 lto_handle_option (size_t scode
, const char *arg
,
644 int value ATTRIBUTE_UNUSED
, int kind ATTRIBUTE_UNUSED
,
645 location_t loc ATTRIBUTE_UNUSED
,
646 const struct cl_option_handlers
*handlers ATTRIBUTE_UNUSED
)
648 enum opt_code code
= (enum opt_code
) scode
;
653 case OPT_fresolution_
:
654 resolution_file_name
= arg
;
668 /* Perform post-option processing. Does additional initialization based on
669 command-line options. PFILENAME is the main input filename. Returns false
670 to enable subsequent back-end initialization. */
673 lto_post_options (const char **pfilename ATTRIBUTE_UNUSED
)
675 /* -fltrans and -fwpa are mutually exclusive. Check for that here. */
676 if (flag_wpa
&& flag_ltrans
)
677 error ("-fwpa and -fltrans are mutually exclusive");
681 flag_generate_lto
= 0;
683 /* During LTRANS, we are not looking at the whole program, only
684 a subset of the whole callgraph. */
685 flag_whole_program
= 0;
689 flag_generate_lto
= 1;
691 /* Excess precision other than "fast" requires front-end
693 flag_excess_precision_cmdline
= EXCESS_PRECISION_FAST
;
695 /* Initialize the compiler back end. */
699 /* Return an integer type with PRECISION bits of precision,
700 that is unsigned if UNSIGNEDP is nonzero, otherwise signed. */
703 lto_type_for_size (unsigned precision
, int unsignedp
)
705 if (precision
== TYPE_PRECISION (integer_type_node
))
706 return unsignedp
? unsigned_type_node
: integer_type_node
;
708 if (precision
== TYPE_PRECISION (signed_char_type_node
))
709 return unsignedp
? unsigned_char_type_node
: signed_char_type_node
;
711 if (precision
== TYPE_PRECISION (short_integer_type_node
))
712 return unsignedp
? short_unsigned_type_node
: short_integer_type_node
;
714 if (precision
== TYPE_PRECISION (long_integer_type_node
))
715 return unsignedp
? long_unsigned_type_node
: long_integer_type_node
;
717 if (precision
== TYPE_PRECISION (long_long_integer_type_node
))
719 ? long_long_unsigned_type_node
720 : long_long_integer_type_node
;
722 if (precision
<= TYPE_PRECISION (intQI_type_node
))
723 return unsignedp
? unsigned_intQI_type_node
: intQI_type_node
;
725 if (precision
<= TYPE_PRECISION (intHI_type_node
))
726 return unsignedp
? unsigned_intHI_type_node
: intHI_type_node
;
728 if (precision
<= TYPE_PRECISION (intSI_type_node
))
729 return unsignedp
? unsigned_intSI_type_node
: intSI_type_node
;
731 if (precision
<= TYPE_PRECISION (intDI_type_node
))
732 return unsignedp
? unsigned_intDI_type_node
: intDI_type_node
;
734 if (precision
<= TYPE_PRECISION (intTI_type_node
))
735 return unsignedp
? unsigned_intTI_type_node
: intTI_type_node
;
741 /* Return a data type that has machine mode MODE.
742 If the mode is an integer,
743 then UNSIGNEDP selects between signed and unsigned types.
744 If the mode is a fixed-point mode,
745 then UNSIGNEDP selects between saturating and nonsaturating types. */
748 lto_type_for_mode (enum machine_mode mode
, int unsigned_p
)
752 if (mode
== TYPE_MODE (integer_type_node
))
753 return unsigned_p
? unsigned_type_node
: integer_type_node
;
755 if (mode
== TYPE_MODE (signed_char_type_node
))
756 return unsigned_p
? unsigned_char_type_node
: signed_char_type_node
;
758 if (mode
== TYPE_MODE (short_integer_type_node
))
759 return unsigned_p
? short_unsigned_type_node
: short_integer_type_node
;
761 if (mode
== TYPE_MODE (long_integer_type_node
))
762 return unsigned_p
? long_unsigned_type_node
: long_integer_type_node
;
764 if (mode
== TYPE_MODE (long_long_integer_type_node
))
765 return unsigned_p
? long_long_unsigned_type_node
: long_long_integer_type_node
;
768 return unsigned_p
? unsigned_intQI_type_node
: intQI_type_node
;
771 return unsigned_p
? unsigned_intHI_type_node
: intHI_type_node
;
774 return unsigned_p
? unsigned_intSI_type_node
: intSI_type_node
;
777 return unsigned_p
? unsigned_intDI_type_node
: intDI_type_node
;
779 #if HOST_BITS_PER_WIDE_INT >= 64
780 if (mode
== TYPE_MODE (intTI_type_node
))
781 return unsigned_p
? unsigned_intTI_type_node
: intTI_type_node
;
784 if (mode
== TYPE_MODE (float_type_node
))
785 return float_type_node
;
787 if (mode
== TYPE_MODE (double_type_node
))
788 return double_type_node
;
790 if (mode
== TYPE_MODE (long_double_type_node
))
791 return long_double_type_node
;
793 if (mode
== TYPE_MODE (void_type_node
))
794 return void_type_node
;
796 if (mode
== TYPE_MODE (build_pointer_type (char_type_node
)))
798 ? make_unsigned_type (GET_MODE_PRECISION (mode
))
799 : make_signed_type (GET_MODE_PRECISION (mode
)));
801 if (mode
== TYPE_MODE (build_pointer_type (integer_type_node
)))
803 ? make_unsigned_type (GET_MODE_PRECISION (mode
))
804 : make_signed_type (GET_MODE_PRECISION (mode
)));
806 if (COMPLEX_MODE_P (mode
))
808 enum machine_mode inner_mode
;
811 if (mode
== TYPE_MODE (complex_float_type_node
))
812 return complex_float_type_node
;
813 if (mode
== TYPE_MODE (complex_double_type_node
))
814 return complex_double_type_node
;
815 if (mode
== TYPE_MODE (complex_long_double_type_node
))
816 return complex_long_double_type_node
;
818 if (mode
== TYPE_MODE (complex_integer_type_node
) && !unsigned_p
)
819 return complex_integer_type_node
;
821 inner_mode
= GET_MODE_INNER (mode
);
822 inner_type
= lto_type_for_mode (inner_mode
, unsigned_p
);
823 if (inner_type
!= NULL_TREE
)
824 return build_complex_type (inner_type
);
826 else if (VECTOR_MODE_P (mode
))
828 enum machine_mode inner_mode
= GET_MODE_INNER (mode
);
829 tree inner_type
= lto_type_for_mode (inner_mode
, unsigned_p
);
830 if (inner_type
!= NULL_TREE
)
831 return build_vector_type_for_mode (inner_type
, mode
);
834 if (mode
== TYPE_MODE (dfloat32_type_node
))
835 return dfloat32_type_node
;
836 if (mode
== TYPE_MODE (dfloat64_type_node
))
837 return dfloat64_type_node
;
838 if (mode
== TYPE_MODE (dfloat128_type_node
))
839 return dfloat128_type_node
;
841 if (ALL_SCALAR_FIXED_POINT_MODE_P (mode
))
843 if (mode
== TYPE_MODE (short_fract_type_node
))
844 return unsigned_p
? sat_short_fract_type_node
: short_fract_type_node
;
845 if (mode
== TYPE_MODE (fract_type_node
))
846 return unsigned_p
? sat_fract_type_node
: fract_type_node
;
847 if (mode
== TYPE_MODE (long_fract_type_node
))
848 return unsigned_p
? sat_long_fract_type_node
: long_fract_type_node
;
849 if (mode
== TYPE_MODE (long_long_fract_type_node
))
850 return unsigned_p
? sat_long_long_fract_type_node
851 : long_long_fract_type_node
;
853 if (mode
== TYPE_MODE (unsigned_short_fract_type_node
))
854 return unsigned_p
? sat_unsigned_short_fract_type_node
855 : unsigned_short_fract_type_node
;
856 if (mode
== TYPE_MODE (unsigned_fract_type_node
))
857 return unsigned_p
? sat_unsigned_fract_type_node
858 : unsigned_fract_type_node
;
859 if (mode
== TYPE_MODE (unsigned_long_fract_type_node
))
860 return unsigned_p
? sat_unsigned_long_fract_type_node
861 : unsigned_long_fract_type_node
;
862 if (mode
== TYPE_MODE (unsigned_long_long_fract_type_node
))
863 return unsigned_p
? sat_unsigned_long_long_fract_type_node
864 : unsigned_long_long_fract_type_node
;
866 if (mode
== TYPE_MODE (short_accum_type_node
))
867 return unsigned_p
? sat_short_accum_type_node
: short_accum_type_node
;
868 if (mode
== TYPE_MODE (accum_type_node
))
869 return unsigned_p
? sat_accum_type_node
: accum_type_node
;
870 if (mode
== TYPE_MODE (long_accum_type_node
))
871 return unsigned_p
? sat_long_accum_type_node
: long_accum_type_node
;
872 if (mode
== TYPE_MODE (long_long_accum_type_node
))
873 return unsigned_p
? sat_long_long_accum_type_node
874 : long_long_accum_type_node
;
876 if (mode
== TYPE_MODE (unsigned_short_accum_type_node
))
877 return unsigned_p
? sat_unsigned_short_accum_type_node
878 : unsigned_short_accum_type_node
;
879 if (mode
== TYPE_MODE (unsigned_accum_type_node
))
880 return unsigned_p
? sat_unsigned_accum_type_node
881 : unsigned_accum_type_node
;
882 if (mode
== TYPE_MODE (unsigned_long_accum_type_node
))
883 return unsigned_p
? sat_unsigned_long_accum_type_node
884 : unsigned_long_accum_type_node
;
885 if (mode
== TYPE_MODE (unsigned_long_long_accum_type_node
))
886 return unsigned_p
? sat_unsigned_long_long_accum_type_node
887 : unsigned_long_long_accum_type_node
;
890 return unsigned_p
? sat_qq_type_node
: qq_type_node
;
892 return unsigned_p
? sat_hq_type_node
: hq_type_node
;
894 return unsigned_p
? sat_sq_type_node
: sq_type_node
;
896 return unsigned_p
? sat_dq_type_node
: dq_type_node
;
898 return unsigned_p
? sat_tq_type_node
: tq_type_node
;
901 return unsigned_p
? sat_uqq_type_node
: uqq_type_node
;
903 return unsigned_p
? sat_uhq_type_node
: uhq_type_node
;
905 return unsigned_p
? sat_usq_type_node
: usq_type_node
;
907 return unsigned_p
? sat_udq_type_node
: udq_type_node
;
909 return unsigned_p
? sat_utq_type_node
: utq_type_node
;
912 return unsigned_p
? sat_ha_type_node
: ha_type_node
;
914 return unsigned_p
? sat_sa_type_node
: sa_type_node
;
916 return unsigned_p
? sat_da_type_node
: da_type_node
;
918 return unsigned_p
? sat_ta_type_node
: ta_type_node
;
921 return unsigned_p
? sat_uha_type_node
: uha_type_node
;
923 return unsigned_p
? sat_usa_type_node
: usa_type_node
;
925 return unsigned_p
? sat_uda_type_node
: uda_type_node
;
927 return unsigned_p
? sat_uta_type_node
: uta_type_node
;
930 for (t
= registered_builtin_types
; t
; t
= TREE_CHAIN (t
))
931 if (TYPE_MODE (TREE_VALUE (t
)) == mode
)
932 return TREE_VALUE (t
);
937 /* Return true if we are in the global binding level. */
940 lto_global_bindings_p (void)
946 lto_set_decl_assembler_name (tree decl
)
948 /* This is almost the same as lhd_set_decl_assembler_name, except that
949 we need to uniquify file-scope names, even if they are not
950 TREE_PUBLIC, to avoid conflicts between individual files. */
953 if (TREE_PUBLIC (decl
))
954 id
= targetm
.mangle_decl_assembler_name (decl
, DECL_NAME (decl
));
957 const char *name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
960 ASM_FORMAT_PRIVATE_NAME (label
, name
, DECL_UID (decl
));
961 id
= get_identifier (label
);
964 SET_DECL_ASSEMBLER_NAME (decl
, id
);
968 lto_pushdecl (tree t ATTRIBUTE_UNUSED
)
970 /* Do nothing, since we get all information from DWARF and LTO
978 /* We have our own write_globals langhook, hence the getdecls
979 langhook shouldn't be used, except by dbxout.c, so we can't
985 lto_write_globals (void)
987 tree
*vec
= VEC_address (tree
, lto_global_var_decls
);
988 int len
= VEC_length (tree
, lto_global_var_decls
);
989 wrapup_global_declarations (vec
, len
);
990 emit_debug_global_declarations (vec
, len
);
991 VEC_free (tree
, gc
, lto_global_var_decls
);
995 lto_builtin_function (tree decl
)
1001 lto_register_builtin_type (tree type
, const char *name
)
1005 decl
= build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, get_identifier (name
), type
);
1006 DECL_ARTIFICIAL (decl
) = 1;
1007 if (!TYPE_NAME (type
))
1008 TYPE_NAME (type
) = decl
;
1010 registered_builtin_types
= tree_cons (0, type
, registered_builtin_types
);
1013 /* Build nodes that would have be created by the C front-end; necessary
1014 for including builtin-types.def and ultimately builtins.def. */
1017 lto_build_c_type_nodes (void)
1019 gcc_assert (void_type_node
);
1021 void_list_node
= build_tree_list (NULL_TREE
, void_type_node
);
1022 string_type_node
= build_pointer_type (char_type_node
);
1023 const_string_type_node
1024 = build_pointer_type (build_qualified_type (char_type_node
, TYPE_QUAL_CONST
));
1026 if (strcmp (SIZE_TYPE
, "unsigned int") == 0)
1028 intmax_type_node
= integer_type_node
;
1029 uintmax_type_node
= unsigned_type_node
;
1030 signed_size_type_node
= integer_type_node
;
1032 else if (strcmp (SIZE_TYPE
, "long unsigned int") == 0)
1034 intmax_type_node
= long_integer_type_node
;
1035 uintmax_type_node
= long_unsigned_type_node
;
1036 signed_size_type_node
= long_integer_type_node
;
1038 else if (strcmp (SIZE_TYPE
, "long long unsigned int") == 0)
1040 intmax_type_node
= long_long_integer_type_node
;
1041 uintmax_type_node
= long_long_unsigned_type_node
;
1042 signed_size_type_node
= long_long_integer_type_node
;
1047 wint_type_node
= unsigned_type_node
;
1048 pid_type_node
= integer_type_node
;
1051 /* Re-compute TYPE_CANONICAL for NODE and related types. */
1054 lto_register_canonical_types (tree node
)
1060 TYPE_CANONICAL (node
) = NULL_TREE
;
1061 TYPE_CANONICAL (node
) = gimple_register_canonical_type (node
);
1063 if (POINTER_TYPE_P (node
)
1064 || TREE_CODE (node
) == COMPLEX_TYPE
1065 || TREE_CODE (node
) == ARRAY_TYPE
)
1066 lto_register_canonical_types (TREE_TYPE (node
));
1069 /* Perform LTO-specific initialization. */
1076 /* We need to generate LTO if running in WPA mode. */
1077 flag_generate_lto
= flag_wpa
;
1079 /* Initialize libcpp line maps for gcc_assert to work. */
1080 linemap_add (line_table
, LC_ENTER
, 0, NULL
, 0);
1082 /* Create the basic integer types. */
1083 build_common_tree_nodes (flag_signed_char
, /*short_double=*/false);
1085 /* The global tree for the main identifier is filled in by
1086 language-specific front-end initialization that is not run in the
1087 LTO back-end. It appears that all languages that perform such
1088 initialization currently do so in the same way, so we do it here. */
1089 if (main_identifier_node
== NULL_TREE
)
1090 main_identifier_node
= get_identifier ("main");
1092 /* In the C++ front-end, fileptr_type_node is defined as a variant
1093 copy of of ptr_type_node, rather than ptr_node itself. The
1094 distinction should only be relevant to the front-end, so we
1095 always use the C definition here in lto1. */
1096 gcc_assert (fileptr_type_node
== ptr_type_node
);
1097 gcc_assert (TYPE_MAIN_VARIANT (fileptr_type_node
) == ptr_type_node
);
1099 ptrdiff_type_node
= integer_type_node
;
1101 lto_build_c_type_nodes ();
1102 gcc_assert (va_list_type_node
);
1104 if (TREE_CODE (va_list_type_node
) == ARRAY_TYPE
)
1106 tree x
= build_pointer_type (TREE_TYPE (va_list_type_node
));
1107 lto_define_builtins (x
, x
);
1111 lto_define_builtins (va_list_type_node
,
1112 build_reference_type (va_list_type_node
));
1115 targetm
.init_builtins ();
1116 build_common_builtin_nodes ();
1118 /* Assign names to the builtin types, otherwise they'll end up
1119 as __unknown__ in debug info.
1120 ??? We simply need to stop pre-seeding the streamer cache.
1121 Below is modeled after from c-common.c:c_common_nodes_and_builtins */
1122 #define NAME_TYPE(t,n) \
1124 TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL, \
1125 get_identifier (n), t)
1126 NAME_TYPE (integer_type_node
, "int");
1127 NAME_TYPE (char_type_node
, "char");
1128 NAME_TYPE (long_integer_type_node
, "long int");
1129 NAME_TYPE (unsigned_type_node
, "unsigned int");
1130 NAME_TYPE (long_unsigned_type_node
, "long unsigned int");
1131 NAME_TYPE (long_long_integer_type_node
, "long long int");
1132 NAME_TYPE (long_long_unsigned_type_node
, "long long unsigned int");
1133 NAME_TYPE (short_integer_type_node
, "short int");
1134 NAME_TYPE (short_unsigned_type_node
, "short unsigned int");
1135 if (signed_char_type_node
!= char_type_node
)
1136 NAME_TYPE (signed_char_type_node
, "signed char");
1137 if (unsigned_char_type_node
!= char_type_node
)
1138 NAME_TYPE (unsigned_char_type_node
, "unsigned char");
1139 NAME_TYPE (float_type_node
, "float");
1140 NAME_TYPE (double_type_node
, "double");
1141 NAME_TYPE (long_double_type_node
, "long double");
1142 NAME_TYPE (void_type_node
, "void");
1143 NAME_TYPE (boolean_type_node
, "bool");
1146 /* Register the common node types with the canonical type machinery so
1147 we properly share alias-sets across languages and TUs. Do not
1148 expose the common nodes as type merge target - those that should be
1149 are already exposed so by pre-loading the LTO streamer caches. */
1150 for (i
= 0; i
< itk_none
; ++i
)
1151 lto_register_canonical_types (integer_types
[i
]);
1152 /* The sizetypes are not used to access data so we do not need to
1153 do anything about them. */
1154 for (i
= 0; i
< TI_MAX
; ++i
)
1155 lto_register_canonical_types (global_trees
[i
]);
1157 /* Initialize LTO-specific data structures. */
1158 lto_global_var_decls
= VEC_alloc (tree
, gc
, 256);
1164 /* Initialize tree structures required by the LTO front end. */
1166 static void lto_init_ts (void)
1168 tree_contains_struct
[NAMESPACE_DECL
][TS_DECL_MINIMAL
] = 1;
1171 #undef LANG_HOOKS_NAME
1172 #define LANG_HOOKS_NAME "GNU GIMPLE"
1173 #undef LANG_HOOKS_OPTION_LANG_MASK
1174 #define LANG_HOOKS_OPTION_LANG_MASK lto_option_lang_mask
1175 #undef LANG_HOOKS_COMPLAIN_WRONG_LANG_P
1176 #define LANG_HOOKS_COMPLAIN_WRONG_LANG_P lto_complain_wrong_lang_p
1177 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
1178 #define LANG_HOOKS_INIT_OPTIONS_STRUCT lto_init_options_struct
1179 #undef LANG_HOOKS_HANDLE_OPTION
1180 #define LANG_HOOKS_HANDLE_OPTION lto_handle_option
1181 #undef LANG_HOOKS_POST_OPTIONS
1182 #define LANG_HOOKS_POST_OPTIONS lto_post_options
1183 #undef LANG_HOOKS_GET_ALIAS_SET
1184 #define LANG_HOOKS_GET_ALIAS_SET gimple_get_alias_set
1185 #undef LANG_HOOKS_TYPE_FOR_MODE
1186 #define LANG_HOOKS_TYPE_FOR_MODE lto_type_for_mode
1187 #undef LANG_HOOKS_TYPE_FOR_SIZE
1188 #define LANG_HOOKS_TYPE_FOR_SIZE lto_type_for_size
1189 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
1190 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME lto_set_decl_assembler_name
1191 #undef LANG_HOOKS_GLOBAL_BINDINGS_P
1192 #define LANG_HOOKS_GLOBAL_BINDINGS_P lto_global_bindings_p
1193 #undef LANG_HOOKS_PUSHDECL
1194 #define LANG_HOOKS_PUSHDECL lto_pushdecl
1195 #undef LANG_HOOKS_GETDECLS
1196 #define LANG_HOOKS_GETDECLS lto_getdecls
1197 #undef LANG_HOOKS_WRITE_GLOBALS
1198 #define LANG_HOOKS_WRITE_GLOBALS lto_write_globals
1199 #undef LANG_HOOKS_REGISTER_BUILTIN_TYPE
1200 #define LANG_HOOKS_REGISTER_BUILTIN_TYPE lto_register_builtin_type
1201 #undef LANG_HOOKS_BUILTIN_FUNCTION
1202 #define LANG_HOOKS_BUILTIN_FUNCTION lto_builtin_function
1203 #undef LANG_HOOKS_INIT
1204 #define LANG_HOOKS_INIT lto_init
1205 #undef LANG_HOOKS_PARSE_FILE
1206 #define LANG_HOOKS_PARSE_FILE lto_main
1207 #undef LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION
1208 #define LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION tree_rest_of_compilation
1209 #undef LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS
1210 #define LANG_HOOKS_REDUCE_BIT_FIELD_OPERATIONS true
1211 #undef LANG_HOOKS_TYPES_COMPATIBLE_P
1212 #define LANG_HOOKS_TYPES_COMPATIBLE_P NULL
1213 #undef LANG_HOOKS_EH_PERSONALITY
1214 #define LANG_HOOKS_EH_PERSONALITY lto_eh_personality
1216 /* Attribute hooks. */
1217 #undef LANG_HOOKS_COMMON_ATTRIBUTE_TABLE
1218 #define LANG_HOOKS_COMMON_ATTRIBUTE_TABLE lto_attribute_table
1219 #undef LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE
1220 #define LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE lto_format_attribute_table
1222 #undef LANG_HOOKS_BEGIN_SECTION
1223 #define LANG_HOOKS_BEGIN_SECTION lto_obj_begin_section
1224 #undef LANG_HOOKS_APPEND_DATA
1225 #define LANG_HOOKS_APPEND_DATA lto_obj_append_data
1226 #undef LANG_HOOKS_END_SECTION
1227 #define LANG_HOOKS_END_SECTION lto_obj_end_section
1229 #undef LANG_HOOKS_INIT_TS
1230 #define LANG_HOOKS_INIT_TS lto_init_ts
1232 struct lang_hooks lang_hooks
= LANG_HOOKS_INITIALIZER
;
1234 /* Language hooks that are not part of lang_hooks. */
1237 convert (tree type ATTRIBUTE_UNUSED
, tree expr ATTRIBUTE_UNUSED
)
1242 /* Tree walking support. */
1244 static enum lto_tree_node_structure_enum
1245 lto_tree_node_structure (union lang_tree_node
*t ATTRIBUTE_UNUSED
)
1247 return TS_LTO_GENERIC
;
1251 #include "gtype-lto.h"
1252 #include "gt-lto-lto-lang.h"