Patch for RTL expand bug affecting aarch64 vector code.
[official-gcc.git] / gcc / lto / lto.c
bloba7d5e450ea0b0ae025dca03a660210a1b1fd0f45
1 /* Top-level LTO routines.
2 Copyright (C) 2009-2017 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
10 version.
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
15 for more details.
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/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "function.h"
26 #include "bitmap.h"
27 #include "basic-block.h"
28 #include "tree.h"
29 #include "gimple.h"
30 #include "cfghooks.h"
31 #include "alloc-pool.h"
32 #include "tree-pass.h"
33 #include "tree-streamer.h"
34 #include "cgraph.h"
35 #include "opts.h"
36 #include "toplev.h"
37 #include "stor-layout.h"
38 #include "symbol-summary.h"
39 #include "tree-vrp.h"
40 #include "ipa-prop.h"
41 #include "common.h"
42 #include "debug.h"
43 #include "lto.h"
44 #include "lto-section-names.h"
45 #include "splay-tree.h"
46 #include "lto-partition.h"
47 #include "context.h"
48 #include "pass_manager.h"
49 #include "ipa-inline.h"
50 #include "params.h"
51 #include "ipa-utils.h"
52 #include "gomp-constants.h"
53 #include "lto-symtab.h"
54 #include "stringpool.h"
55 #include "fold-const.h"
58 /* Number of parallel tasks to run, -1 if we want to use GNU Make jobserver. */
59 static int lto_parallelism;
61 static GTY(()) tree first_personality_decl;
63 static GTY(()) const unsigned char *lto_mode_identity_table;
65 /* Returns a hash code for P. */
67 static hashval_t
68 hash_name (const void *p)
70 const struct lto_section_slot *ds = (const struct lto_section_slot *) p;
71 return (hashval_t) htab_hash_string (ds->name);
75 /* Returns nonzero if P1 and P2 are equal. */
77 static int
78 eq_name (const void *p1, const void *p2)
80 const struct lto_section_slot *s1 =
81 (const struct lto_section_slot *) p1;
82 const struct lto_section_slot *s2 =
83 (const struct lto_section_slot *) p2;
85 return strcmp (s1->name, s2->name) == 0;
88 /* Free lto_section_slot */
90 static void
91 free_with_string (void *arg)
93 struct lto_section_slot *s = (struct lto_section_slot *)arg;
95 free (CONST_CAST (char *, s->name));
96 free (arg);
99 /* Create section hash table */
101 htab_t
102 lto_obj_create_section_hash_table (void)
104 return htab_create (37, hash_name, eq_name, free_with_string);
107 /* Delete an allocated integer KEY in the splay tree. */
109 static void
110 lto_splay_tree_delete_id (splay_tree_key key)
112 free ((void *) key);
115 /* Compare splay tree node ids A and B. */
117 static int
118 lto_splay_tree_compare_ids (splay_tree_key a, splay_tree_key b)
120 unsigned HOST_WIDE_INT ai;
121 unsigned HOST_WIDE_INT bi;
123 ai = *(unsigned HOST_WIDE_INT *) a;
124 bi = *(unsigned HOST_WIDE_INT *) b;
126 if (ai < bi)
127 return -1;
128 else if (ai > bi)
129 return 1;
130 return 0;
133 /* Look up splay tree node by ID in splay tree T. */
135 static splay_tree_node
136 lto_splay_tree_lookup (splay_tree t, unsigned HOST_WIDE_INT id)
138 return splay_tree_lookup (t, (splay_tree_key) &id);
141 /* Check if KEY has ID. */
143 static bool
144 lto_splay_tree_id_equal_p (splay_tree_key key, unsigned HOST_WIDE_INT id)
146 return *(unsigned HOST_WIDE_INT *) key == id;
149 /* Insert a splay tree node into tree T with ID as key and FILE_DATA as value.
150 The ID is allocated separately because we need HOST_WIDE_INTs which may
151 be wider than a splay_tree_key. */
153 static void
154 lto_splay_tree_insert (splay_tree t, unsigned HOST_WIDE_INT id,
155 struct lto_file_decl_data *file_data)
157 unsigned HOST_WIDE_INT *idp = XCNEW (unsigned HOST_WIDE_INT);
158 *idp = id;
159 splay_tree_insert (t, (splay_tree_key) idp, (splay_tree_value) file_data);
162 /* Create a splay tree. */
164 static splay_tree
165 lto_splay_tree_new (void)
167 return splay_tree_new (lto_splay_tree_compare_ids,
168 lto_splay_tree_delete_id,
169 NULL);
172 /* Return true when NODE has a clone that is analyzed (i.e. we need
173 to load its body even if the node itself is not needed). */
175 static bool
176 has_analyzed_clone_p (struct cgraph_node *node)
178 struct cgraph_node *orig = node;
179 node = node->clones;
180 if (node)
181 while (node != orig)
183 if (node->analyzed)
184 return true;
185 if (node->clones)
186 node = node->clones;
187 else if (node->next_sibling_clone)
188 node = node->next_sibling_clone;
189 else
191 while (node != orig && !node->next_sibling_clone)
192 node = node->clone_of;
193 if (node != orig)
194 node = node->next_sibling_clone;
197 return false;
200 /* Read the function body for the function associated with NODE. */
202 static void
203 lto_materialize_function (struct cgraph_node *node)
205 tree decl;
207 decl = node->decl;
208 /* Read in functions with body (analyzed nodes)
209 and also functions that are needed to produce virtual clones. */
210 if ((node->has_gimple_body_p () && node->analyzed)
211 || node->used_as_abstract_origin
212 || has_analyzed_clone_p (node))
214 /* Clones don't need to be read. */
215 if (node->clone_of)
216 return;
217 if (DECL_FUNCTION_PERSONALITY (decl) && !first_personality_decl)
218 first_personality_decl = DECL_FUNCTION_PERSONALITY (decl);
221 /* Let the middle end know about the function. */
222 rest_of_decl_compilation (decl, 1, 0);
226 /* Decode the content of memory pointed to by DATA in the in decl
227 state object STATE. DATA_IN points to a data_in structure for
228 decoding. Return the address after the decoded object in the
229 input. */
231 static const uint32_t *
232 lto_read_in_decl_state (struct data_in *data_in, const uint32_t *data,
233 struct lto_in_decl_state *state)
235 uint32_t ix;
236 tree decl;
237 uint32_t i, j;
239 ix = *data++;
240 state->compressed = ix & 1;
241 ix /= 2;
242 decl = streamer_tree_cache_get_tree (data_in->reader_cache, ix);
243 if (!VAR_OR_FUNCTION_DECL_P (decl))
245 gcc_assert (decl == void_type_node);
246 decl = NULL_TREE;
248 state->fn_decl = decl;
250 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
252 uint32_t size = *data++;
253 vec<tree, va_gc> *decls = NULL;
254 vec_alloc (decls, size);
256 for (j = 0; j < size; j++)
257 vec_safe_push (decls,
258 streamer_tree_cache_get_tree (data_in->reader_cache,
259 data[j]));
261 state->streams[i] = decls;
262 data += size;
265 return data;
269 /* Global canonical type table. */
270 static htab_t gimple_canonical_types;
271 static hash_map<const_tree, hashval_t> *canonical_type_hash_cache;
272 static unsigned long num_canonical_type_hash_entries;
273 static unsigned long num_canonical_type_hash_queries;
275 static void iterative_hash_canonical_type (tree type, inchash::hash &hstate);
276 static hashval_t gimple_canonical_type_hash (const void *p);
277 static void gimple_register_canonical_type_1 (tree t, hashval_t hash);
279 /* Returning a hash value for gimple type TYPE.
281 The hash value returned is equal for types considered compatible
282 by gimple_canonical_types_compatible_p. */
284 static hashval_t
285 hash_canonical_type (tree type)
287 inchash::hash hstate;
288 enum tree_code code;
290 /* We compute alias sets only for types that needs them.
291 Be sure we do not recurse to something else as we can not hash incomplete
292 types in a way they would have same hash value as compatible complete
293 types. */
294 gcc_checking_assert (type_with_alias_set_p (type));
296 /* Combine a few common features of types so that types are grouped into
297 smaller sets; when searching for existing matching types to merge,
298 only existing types having the same features as the new type will be
299 checked. */
300 code = tree_code_for_canonical_type_merging (TREE_CODE (type));
301 hstate.add_int (code);
302 hstate.add_int (TYPE_MODE (type));
304 /* Incorporate common features of numerical types. */
305 if (INTEGRAL_TYPE_P (type)
306 || SCALAR_FLOAT_TYPE_P (type)
307 || FIXED_POINT_TYPE_P (type)
308 || TREE_CODE (type) == OFFSET_TYPE
309 || POINTER_TYPE_P (type))
311 hstate.add_int (TYPE_PRECISION (type));
312 if (!type_with_interoperable_signedness (type))
313 hstate.add_int (TYPE_UNSIGNED (type));
316 if (VECTOR_TYPE_P (type))
318 hstate.add_int (TYPE_VECTOR_SUBPARTS (type));
319 hstate.add_int (TYPE_UNSIGNED (type));
322 if (TREE_CODE (type) == COMPLEX_TYPE)
323 hstate.add_int (TYPE_UNSIGNED (type));
325 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
326 interoperable with "signed char". Unless all frontends are revisited to
327 agree on these types, we must ignore the flag completely. */
329 /* Fortran standard define C_PTR type that is compatible with every
330 C pointer. For this reason we need to glob all pointers into one.
331 Still pointers in different address spaces are not compatible. */
332 if (POINTER_TYPE_P (type))
333 hstate.add_int (TYPE_ADDR_SPACE (TREE_TYPE (type)));
335 /* For array types hash the domain bounds and the string flag. */
336 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
338 hstate.add_int (TYPE_STRING_FLAG (type));
339 /* OMP lowering can introduce error_mark_node in place of
340 random local decls in types. */
341 if (TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
342 inchash::add_expr (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), hstate);
343 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
344 inchash::add_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), hstate);
347 /* Recurse for aggregates with a single element type. */
348 if (TREE_CODE (type) == ARRAY_TYPE
349 || TREE_CODE (type) == COMPLEX_TYPE
350 || TREE_CODE (type) == VECTOR_TYPE)
351 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
353 /* Incorporate function return and argument types. */
354 if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
356 unsigned na;
357 tree p;
359 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
361 for (p = TYPE_ARG_TYPES (type), na = 0; p; p = TREE_CHAIN (p))
363 iterative_hash_canonical_type (TREE_VALUE (p), hstate);
364 na++;
367 hstate.add_int (na);
370 if (RECORD_OR_UNION_TYPE_P (type))
372 unsigned nf;
373 tree f;
375 for (f = TYPE_FIELDS (type), nf = 0; f; f = TREE_CHAIN (f))
376 if (TREE_CODE (f) == FIELD_DECL
377 && (! DECL_SIZE (f)
378 || ! integer_zerop (DECL_SIZE (f))))
380 iterative_hash_canonical_type (TREE_TYPE (f), hstate);
381 nf++;
384 hstate.add_int (nf);
387 return hstate.end();
390 /* Returning a hash value for gimple type TYPE combined with VAL. */
392 static void
393 iterative_hash_canonical_type (tree type, inchash::hash &hstate)
395 hashval_t v;
397 /* All type variants have same TYPE_CANONICAL. */
398 type = TYPE_MAIN_VARIANT (type);
400 if (!canonical_type_used_p (type))
401 v = hash_canonical_type (type);
402 /* An already processed type. */
403 else if (TYPE_CANONICAL (type))
405 type = TYPE_CANONICAL (type);
406 v = gimple_canonical_type_hash (type);
408 else
410 /* Canonical types should not be able to form SCCs by design, this
411 recursion is just because we do not register canonical types in
412 optimal order. To avoid quadratic behavior also register the
413 type here. */
414 v = hash_canonical_type (type);
415 gimple_register_canonical_type_1 (type, v);
417 hstate.add_int (v);
420 /* Returns the hash for a canonical type P. */
422 static hashval_t
423 gimple_canonical_type_hash (const void *p)
425 num_canonical_type_hash_queries++;
426 hashval_t *slot = canonical_type_hash_cache->get ((const_tree) p);
427 gcc_assert (slot != NULL);
428 return *slot;
433 /* Returns nonzero if P1 and P2 are equal. */
435 static int
436 gimple_canonical_type_eq (const void *p1, const void *p2)
438 const_tree t1 = (const_tree) p1;
439 const_tree t2 = (const_tree) p2;
440 return gimple_canonical_types_compatible_p (CONST_CAST_TREE (t1),
441 CONST_CAST_TREE (t2));
444 /* Main worker for gimple_register_canonical_type. */
446 static void
447 gimple_register_canonical_type_1 (tree t, hashval_t hash)
449 void **slot;
451 gcc_checking_assert (TYPE_P (t) && !TYPE_CANONICAL (t)
452 && type_with_alias_set_p (t)
453 && canonical_type_used_p (t));
455 slot = htab_find_slot_with_hash (gimple_canonical_types, t, hash, INSERT);
456 if (*slot)
458 tree new_type = (tree)(*slot);
459 gcc_checking_assert (new_type != t);
460 TYPE_CANONICAL (t) = new_type;
462 else
464 TYPE_CANONICAL (t) = t;
465 *slot = (void *) t;
466 /* Cache the just computed hash value. */
467 num_canonical_type_hash_entries++;
468 bool existed_p = canonical_type_hash_cache->put (t, hash);
469 gcc_assert (!existed_p);
473 /* Register type T in the global type table gimple_types and set
474 TYPE_CANONICAL of T accordingly.
475 This is used by LTO to merge structurally equivalent types for
476 type-based aliasing purposes across different TUs and languages.
478 ??? This merging does not exactly match how the tree.c middle-end
479 functions will assign TYPE_CANONICAL when new types are created
480 during optimization (which at least happens for pointer and array
481 types). */
483 static void
484 gimple_register_canonical_type (tree t)
486 if (TYPE_CANONICAL (t) || !type_with_alias_set_p (t)
487 || !canonical_type_used_p (t))
488 return;
490 /* Canonical types are same among all complete variants. */
491 if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (t)))
492 TYPE_CANONICAL (t) = TYPE_CANONICAL (TYPE_MAIN_VARIANT (t));
493 else
495 gimple_register_canonical_type_1 (TYPE_MAIN_VARIANT (t),
496 hash_canonical_type (TYPE_MAIN_VARIANT (t)));
497 TYPE_CANONICAL (t) = TYPE_CANONICAL (TYPE_MAIN_VARIANT (t));
501 /* Re-compute TYPE_CANONICAL for NODE and related types. */
503 static void
504 lto_register_canonical_types (tree node, bool first_p)
506 if (!node
507 || !TYPE_P (node))
508 return;
510 if (first_p)
511 TYPE_CANONICAL (node) = NULL_TREE;
513 if (POINTER_TYPE_P (node)
514 || TREE_CODE (node) == COMPLEX_TYPE
515 || TREE_CODE (node) == ARRAY_TYPE)
516 lto_register_canonical_types (TREE_TYPE (node), first_p);
518 if (!first_p)
519 gimple_register_canonical_type (node);
523 /* Remember trees that contains references to declarations. */
524 static GTY(()) vec <tree, va_gc> *tree_with_vars;
526 #define CHECK_VAR(tt) \
527 do \
529 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
530 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
531 return true; \
532 } while (0)
534 #define CHECK_NO_VAR(tt) \
535 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
537 /* Check presence of pointers to decls in fields of a tree_typed T. */
539 static inline bool
540 mentions_vars_p_typed (tree t)
542 CHECK_NO_VAR (TREE_TYPE (t));
543 return false;
546 /* Check presence of pointers to decls in fields of a tree_common T. */
548 static inline bool
549 mentions_vars_p_common (tree t)
551 if (mentions_vars_p_typed (t))
552 return true;
553 CHECK_NO_VAR (TREE_CHAIN (t));
554 return false;
557 /* Check presence of pointers to decls in fields of a decl_minimal T. */
559 static inline bool
560 mentions_vars_p_decl_minimal (tree t)
562 if (mentions_vars_p_common (t))
563 return true;
564 CHECK_NO_VAR (DECL_NAME (t));
565 CHECK_VAR (DECL_CONTEXT (t));
566 return false;
569 /* Check presence of pointers to decls in fields of a decl_common T. */
571 static inline bool
572 mentions_vars_p_decl_common (tree t)
574 if (mentions_vars_p_decl_minimal (t))
575 return true;
576 CHECK_VAR (DECL_SIZE (t));
577 CHECK_VAR (DECL_SIZE_UNIT (t));
578 CHECK_VAR (DECL_INITIAL (t));
579 CHECK_NO_VAR (DECL_ATTRIBUTES (t));
580 CHECK_VAR (DECL_ABSTRACT_ORIGIN (t));
581 return false;
584 /* Check presence of pointers to decls in fields of a decl_with_vis T. */
586 static inline bool
587 mentions_vars_p_decl_with_vis (tree t)
589 if (mentions_vars_p_decl_common (t))
590 return true;
592 /* Accessor macro has side-effects, use field-name here. */
593 CHECK_NO_VAR (t->decl_with_vis.assembler_name);
594 return false;
597 /* Check presence of pointers to decls in fields of a decl_non_common T. */
599 static inline bool
600 mentions_vars_p_decl_non_common (tree t)
602 if (mentions_vars_p_decl_with_vis (t))
603 return true;
604 CHECK_NO_VAR (DECL_RESULT_FLD (t));
605 return false;
608 /* Check presence of pointers to decls in fields of a decl_non_common T. */
610 static bool
611 mentions_vars_p_function (tree t)
613 if (mentions_vars_p_decl_non_common (t))
614 return true;
615 CHECK_NO_VAR (DECL_ARGUMENTS (t));
616 CHECK_NO_VAR (DECL_VINDEX (t));
617 CHECK_VAR (DECL_FUNCTION_PERSONALITY (t));
618 return false;
621 /* Check presence of pointers to decls in fields of a field_decl T. */
623 static bool
624 mentions_vars_p_field_decl (tree t)
626 if (mentions_vars_p_decl_common (t))
627 return true;
628 CHECK_VAR (DECL_FIELD_OFFSET (t));
629 CHECK_NO_VAR (DECL_BIT_FIELD_TYPE (t));
630 CHECK_NO_VAR (DECL_QUALIFIER (t));
631 CHECK_NO_VAR (DECL_FIELD_BIT_OFFSET (t));
632 CHECK_NO_VAR (DECL_FCONTEXT (t));
633 return false;
636 /* Check presence of pointers to decls in fields of a type T. */
638 static bool
639 mentions_vars_p_type (tree t)
641 if (mentions_vars_p_common (t))
642 return true;
643 CHECK_NO_VAR (TYPE_CACHED_VALUES (t));
644 CHECK_VAR (TYPE_SIZE (t));
645 CHECK_VAR (TYPE_SIZE_UNIT (t));
646 CHECK_NO_VAR (TYPE_ATTRIBUTES (t));
647 CHECK_NO_VAR (TYPE_NAME (t));
649 CHECK_VAR (TYPE_MINVAL (t));
650 CHECK_VAR (TYPE_MAXVAL (t));
652 /* Accessor is for derived node types only. */
653 CHECK_NO_VAR (t->type_non_common.binfo);
655 CHECK_VAR (TYPE_CONTEXT (t));
656 CHECK_NO_VAR (TYPE_CANONICAL (t));
657 CHECK_NO_VAR (TYPE_MAIN_VARIANT (t));
658 CHECK_NO_VAR (TYPE_NEXT_VARIANT (t));
659 return false;
662 /* Check presence of pointers to decls in fields of a BINFO T. */
664 static bool
665 mentions_vars_p_binfo (tree t)
667 unsigned HOST_WIDE_INT i, n;
669 if (mentions_vars_p_common (t))
670 return true;
671 CHECK_VAR (BINFO_VTABLE (t));
672 CHECK_NO_VAR (BINFO_OFFSET (t));
673 CHECK_NO_VAR (BINFO_VIRTUALS (t));
674 CHECK_NO_VAR (BINFO_VPTR_FIELD (t));
675 n = vec_safe_length (BINFO_BASE_ACCESSES (t));
676 for (i = 0; i < n; i++)
677 CHECK_NO_VAR (BINFO_BASE_ACCESS (t, i));
678 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
679 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
680 n = BINFO_N_BASE_BINFOS (t);
681 for (i = 0; i < n; i++)
682 CHECK_NO_VAR (BINFO_BASE_BINFO (t, i));
683 return false;
686 /* Check presence of pointers to decls in fields of a CONSTRUCTOR T. */
688 static bool
689 mentions_vars_p_constructor (tree t)
691 unsigned HOST_WIDE_INT idx;
692 constructor_elt *ce;
694 if (mentions_vars_p_typed (t))
695 return true;
697 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (t), idx, &ce); idx++)
699 CHECK_NO_VAR (ce->index);
700 CHECK_VAR (ce->value);
702 return false;
705 /* Check presence of pointers to decls in fields of an expression tree T. */
707 static bool
708 mentions_vars_p_expr (tree t)
710 int i;
711 if (mentions_vars_p_typed (t))
712 return true;
713 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
714 CHECK_VAR (TREE_OPERAND (t, i));
715 return false;
718 /* Check presence of pointers to decls in fields of an OMP_CLAUSE T. */
720 static bool
721 mentions_vars_p_omp_clause (tree t)
723 int i;
724 if (mentions_vars_p_common (t))
725 return true;
726 for (i = omp_clause_num_ops[OMP_CLAUSE_CODE (t)] - 1; i >= 0; --i)
727 CHECK_VAR (OMP_CLAUSE_OPERAND (t, i));
728 return false;
731 /* Check presence of pointers to decls that needs later fixup in T. */
733 static bool
734 mentions_vars_p (tree t)
736 switch (TREE_CODE (t))
738 case IDENTIFIER_NODE:
739 break;
741 case TREE_LIST:
742 CHECK_VAR (TREE_VALUE (t));
743 CHECK_VAR (TREE_PURPOSE (t));
744 CHECK_NO_VAR (TREE_CHAIN (t));
745 break;
747 case FIELD_DECL:
748 return mentions_vars_p_field_decl (t);
750 case LABEL_DECL:
751 case CONST_DECL:
752 case PARM_DECL:
753 case RESULT_DECL:
754 case IMPORTED_DECL:
755 case NAMESPACE_DECL:
756 case NAMELIST_DECL:
757 return mentions_vars_p_decl_common (t);
759 case VAR_DECL:
760 return mentions_vars_p_decl_with_vis (t);
762 case TYPE_DECL:
763 return mentions_vars_p_decl_non_common (t);
765 case FUNCTION_DECL:
766 return mentions_vars_p_function (t);
768 case TREE_BINFO:
769 return mentions_vars_p_binfo (t);
771 case PLACEHOLDER_EXPR:
772 return mentions_vars_p_common (t);
774 case BLOCK:
775 case TRANSLATION_UNIT_DECL:
776 case OPTIMIZATION_NODE:
777 case TARGET_OPTION_NODE:
778 break;
780 case CONSTRUCTOR:
781 return mentions_vars_p_constructor (t);
783 case OMP_CLAUSE:
784 return mentions_vars_p_omp_clause (t);
786 default:
787 if (TYPE_P (t))
789 if (mentions_vars_p_type (t))
790 return true;
792 else if (EXPR_P (t))
794 if (mentions_vars_p_expr (t))
795 return true;
797 else if (CONSTANT_CLASS_P (t))
798 CHECK_NO_VAR (TREE_TYPE (t));
799 else
800 gcc_unreachable ();
802 return false;
806 /* Return the resolution for the decl with index INDEX from DATA_IN. */
808 static enum ld_plugin_symbol_resolution
809 get_resolution (struct data_in *data_in, unsigned index)
811 if (data_in->globals_resolution.exists ())
813 ld_plugin_symbol_resolution_t ret;
814 /* We can have references to not emitted functions in
815 DECL_FUNCTION_PERSONALITY at least. So we can and have
816 to indeed return LDPR_UNKNOWN in some cases. */
817 if (data_in->globals_resolution.length () <= index)
818 return LDPR_UNKNOWN;
819 ret = data_in->globals_resolution[index];
820 return ret;
822 else
823 /* Delay resolution finding until decl merging. */
824 return LDPR_UNKNOWN;
827 /* We need to record resolutions until symbol table is read. */
828 static void
829 register_resolution (struct lto_file_decl_data *file_data, tree decl,
830 enum ld_plugin_symbol_resolution resolution)
832 if (resolution == LDPR_UNKNOWN)
833 return;
834 if (!file_data->resolution_map)
835 file_data->resolution_map
836 = new hash_map<tree, ld_plugin_symbol_resolution>;
837 file_data->resolution_map->put (decl, resolution);
840 /* Register DECL with the global symbol table and change its
841 name if necessary to avoid name clashes for static globals across
842 different files. */
844 static void
845 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl,
846 unsigned ix)
848 tree context;
850 /* Variable has file scope, not local. */
851 if (!TREE_PUBLIC (decl)
852 && !((context = decl_function_context (decl))
853 && auto_var_in_fn_p (decl, context)))
854 rest_of_decl_compilation (decl, 1, 0);
856 /* If this variable has already been declared, queue the
857 declaration for merging. */
858 if (TREE_PUBLIC (decl))
859 register_resolution (data_in->file_data,
860 decl, get_resolution (data_in, ix));
864 /* Register DECL with the global symbol table and change its
865 name if necessary to avoid name clashes for static globals across
866 different files. DATA_IN contains descriptors and tables for the
867 file being read. */
869 static void
870 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl,
871 unsigned ix)
873 /* If this variable has already been declared, queue the
874 declaration for merging. */
875 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT_P (decl))
876 register_resolution (data_in->file_data,
877 decl, get_resolution (data_in, ix));
881 /* For the type T re-materialize it in the type variant list and
882 the pointer/reference-to chains. */
884 static void
885 lto_fixup_prevailing_type (tree t)
887 /* The following re-creates proper variant lists while fixing up
888 the variant leaders. We do not stream TYPE_NEXT_VARIANT so the
889 variant list state before fixup is broken. */
891 /* If we are not our own variant leader link us into our new leaders
892 variant list. */
893 if (TYPE_MAIN_VARIANT (t) != t)
895 tree mv = TYPE_MAIN_VARIANT (t);
896 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
897 TYPE_NEXT_VARIANT (mv) = t;
900 /* The following reconstructs the pointer chains
901 of the new pointed-to type if we are a main variant. We do
902 not stream those so they are broken before fixup. */
903 if (TREE_CODE (t) == POINTER_TYPE
904 && TYPE_MAIN_VARIANT (t) == t)
906 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (TREE_TYPE (t));
907 TYPE_POINTER_TO (TREE_TYPE (t)) = t;
909 else if (TREE_CODE (t) == REFERENCE_TYPE
910 && TYPE_MAIN_VARIANT (t) == t)
912 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (TREE_TYPE (t));
913 TYPE_REFERENCE_TO (TREE_TYPE (t)) = t;
918 /* We keep prevailing tree SCCs in a hashtable with manual collision
919 handling (in case all hashes compare the same) and keep the colliding
920 entries in the tree_scc->next chain. */
922 struct tree_scc
924 tree_scc *next;
925 /* Hash of the whole SCC. */
926 hashval_t hash;
927 /* Number of trees in the SCC. */
928 unsigned len;
929 /* Number of possible entries into the SCC (tree nodes [0..entry_len-1]
930 which share the same individual tree hash). */
931 unsigned entry_len;
932 /* The members of the SCC.
933 We only need to remember the first entry node candidate for prevailing
934 SCCs (but of course have access to all entries for SCCs we are
935 processing).
936 ??? For prevailing SCCs we really only need hash and the first
937 entry candidate, but that's too awkward to implement. */
938 tree entries[1];
941 struct tree_scc_hasher : nofree_ptr_hash <tree_scc>
943 static inline hashval_t hash (const tree_scc *);
944 static inline bool equal (const tree_scc *, const tree_scc *);
947 hashval_t
948 tree_scc_hasher::hash (const tree_scc *scc)
950 return scc->hash;
953 bool
954 tree_scc_hasher::equal (const tree_scc *scc1, const tree_scc *scc2)
956 if (scc1->hash != scc2->hash
957 || scc1->len != scc2->len
958 || scc1->entry_len != scc2->entry_len)
959 return false;
960 return true;
963 static hash_table<tree_scc_hasher> *tree_scc_hash;
964 static struct obstack tree_scc_hash_obstack;
966 static unsigned long num_merged_types;
967 static unsigned long num_prevailing_types;
968 static unsigned long num_type_scc_trees;
969 static unsigned long total_scc_size;
970 static unsigned long num_sccs_read;
971 static unsigned long total_scc_size_merged;
972 static unsigned long num_sccs_merged;
973 static unsigned long num_scc_compares;
974 static unsigned long num_scc_compare_collisions;
977 /* Compare the two entries T1 and T2 of two SCCs that are possibly equal,
978 recursing through in-SCC tree edges. Returns true if the SCCs entered
979 through T1 and T2 are equal and fills in *MAP with the pairs of
980 SCC entries we visited, starting with (*MAP)[0] = T1 and (*MAP)[1] = T2. */
982 static bool
983 compare_tree_sccs_1 (tree t1, tree t2, tree **map)
985 enum tree_code code;
987 /* Mark already visited nodes. */
988 TREE_ASM_WRITTEN (t2) = 1;
990 /* Push the pair onto map. */
991 (*map)[0] = t1;
992 (*map)[1] = t2;
993 *map = *map + 2;
995 /* Compare value-fields. */
996 #define compare_values(X) \
997 do { \
998 if (X(t1) != X(t2)) \
999 return false; \
1000 } while (0)
1002 compare_values (TREE_CODE);
1003 code = TREE_CODE (t1);
1005 if (!TYPE_P (t1))
1007 compare_values (TREE_SIDE_EFFECTS);
1008 compare_values (TREE_CONSTANT);
1009 compare_values (TREE_READONLY);
1010 compare_values (TREE_PUBLIC);
1012 compare_values (TREE_ADDRESSABLE);
1013 compare_values (TREE_THIS_VOLATILE);
1014 if (DECL_P (t1))
1015 compare_values (DECL_UNSIGNED);
1016 else if (TYPE_P (t1))
1017 compare_values (TYPE_UNSIGNED);
1018 if (TYPE_P (t1))
1019 compare_values (TYPE_ARTIFICIAL);
1020 else
1021 compare_values (TREE_NO_WARNING);
1022 compare_values (TREE_NOTHROW);
1023 compare_values (TREE_STATIC);
1024 if (code != TREE_BINFO)
1025 compare_values (TREE_PRIVATE);
1026 compare_values (TREE_PROTECTED);
1027 compare_values (TREE_DEPRECATED);
1028 if (TYPE_P (t1))
1030 if (AGGREGATE_TYPE_P (t1))
1031 compare_values (TYPE_REVERSE_STORAGE_ORDER);
1032 else
1033 compare_values (TYPE_SATURATING);
1034 compare_values (TYPE_ADDR_SPACE);
1036 else if (code == SSA_NAME)
1037 compare_values (SSA_NAME_IS_DEFAULT_DEF);
1039 if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
1041 if (!wi::eq_p (t1, t2))
1042 return false;
1045 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1047 /* ??? No suitable compare routine available. */
1048 REAL_VALUE_TYPE r1 = TREE_REAL_CST (t1);
1049 REAL_VALUE_TYPE r2 = TREE_REAL_CST (t2);
1050 if (r1.cl != r2.cl
1051 || r1.decimal != r2.decimal
1052 || r1.sign != r2.sign
1053 || r1.signalling != r2.signalling
1054 || r1.canonical != r2.canonical
1055 || r1.uexp != r2.uexp)
1056 return false;
1057 for (unsigned i = 0; i < SIGSZ; ++i)
1058 if (r1.sig[i] != r2.sig[i])
1059 return false;
1062 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1063 if (!fixed_compare (EQ_EXPR,
1064 TREE_FIXED_CST_PTR (t1), TREE_FIXED_CST_PTR (t2)))
1065 return false;
1067 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1069 compare_values (DECL_MODE);
1070 compare_values (DECL_NONLOCAL);
1071 compare_values (DECL_VIRTUAL_P);
1072 compare_values (DECL_IGNORED_P);
1073 compare_values (DECL_ABSTRACT_P);
1074 compare_values (DECL_ARTIFICIAL);
1075 compare_values (DECL_USER_ALIGN);
1076 compare_values (DECL_PRESERVE_P);
1077 compare_values (DECL_EXTERNAL);
1078 compare_values (DECL_GIMPLE_REG_P);
1079 compare_values (DECL_ALIGN);
1080 if (code == LABEL_DECL)
1082 compare_values (EH_LANDING_PAD_NR);
1083 compare_values (LABEL_DECL_UID);
1085 else if (code == FIELD_DECL)
1087 compare_values (DECL_PACKED);
1088 compare_values (DECL_NONADDRESSABLE_P);
1089 compare_values (DECL_OFFSET_ALIGN);
1091 else if (code == VAR_DECL)
1093 compare_values (DECL_HAS_DEBUG_EXPR_P);
1094 compare_values (DECL_NONLOCAL_FRAME);
1096 if (code == RESULT_DECL
1097 || code == PARM_DECL
1098 || code == VAR_DECL)
1100 compare_values (DECL_BY_REFERENCE);
1101 if (code == VAR_DECL
1102 || code == PARM_DECL)
1103 compare_values (DECL_HAS_VALUE_EXPR_P);
1107 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1108 compare_values (DECL_REGISTER);
1110 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1112 compare_values (DECL_COMMON);
1113 compare_values (DECL_DLLIMPORT_P);
1114 compare_values (DECL_WEAK);
1115 compare_values (DECL_SEEN_IN_BIND_EXPR_P);
1116 compare_values (DECL_COMDAT);
1117 compare_values (DECL_VISIBILITY);
1118 compare_values (DECL_VISIBILITY_SPECIFIED);
1119 if (code == VAR_DECL)
1121 compare_values (DECL_HARD_REGISTER);
1122 /* DECL_IN_TEXT_SECTION is set during final asm output only. */
1123 compare_values (DECL_IN_CONSTANT_POOL);
1127 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1129 compare_values (DECL_BUILT_IN_CLASS);
1130 compare_values (DECL_STATIC_CONSTRUCTOR);
1131 compare_values (DECL_STATIC_DESTRUCTOR);
1132 compare_values (DECL_UNINLINABLE);
1133 compare_values (DECL_POSSIBLY_INLINED);
1134 compare_values (DECL_IS_NOVOPS);
1135 compare_values (DECL_IS_RETURNS_TWICE);
1136 compare_values (DECL_IS_MALLOC);
1137 compare_values (DECL_IS_OPERATOR_NEW);
1138 compare_values (DECL_DECLARED_INLINE_P);
1139 compare_values (DECL_STATIC_CHAIN);
1140 compare_values (DECL_NO_INLINE_WARNING_P);
1141 compare_values (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT);
1142 compare_values (DECL_NO_LIMIT_STACK);
1143 compare_values (DECL_DISREGARD_INLINE_LIMITS);
1144 compare_values (DECL_PURE_P);
1145 compare_values (DECL_LOOPING_CONST_OR_PURE_P);
1146 compare_values (DECL_FINAL_P);
1147 compare_values (DECL_CXX_CONSTRUCTOR_P);
1148 compare_values (DECL_CXX_DESTRUCTOR_P);
1149 if (DECL_BUILT_IN_CLASS (t1) != NOT_BUILT_IN)
1150 compare_values (DECL_FUNCTION_CODE);
1153 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1155 compare_values (TYPE_MODE);
1156 compare_values (TYPE_STRING_FLAG);
1157 compare_values (TYPE_NEEDS_CONSTRUCTING);
1158 if (RECORD_OR_UNION_TYPE_P (t1))
1160 compare_values (TYPE_TRANSPARENT_AGGR);
1161 compare_values (TYPE_FINAL_P);
1163 else if (code == ARRAY_TYPE)
1164 compare_values (TYPE_NONALIASED_COMPONENT);
1165 if (AGGREGATE_TYPE_P (t1))
1166 compare_values (TYPE_TYPELESS_STORAGE);
1167 compare_values (TYPE_PACKED);
1168 compare_values (TYPE_RESTRICT);
1169 compare_values (TYPE_USER_ALIGN);
1170 compare_values (TYPE_READONLY);
1171 compare_values (TYPE_PRECISION);
1172 compare_values (TYPE_ALIGN);
1173 /* Do not compare TYPE_ALIAS_SET. Doing so introduce ordering issues
1174 with calls to get_alias_set which may initialize it for streamed
1175 in types. */
1178 /* We don't want to compare locations, so there is nothing do compare
1179 for TS_EXP. */
1181 /* BLOCKs are function local and we don't merge anything there, so
1182 simply refuse to merge. */
1183 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1184 return false;
1186 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1187 if (strcmp (TRANSLATION_UNIT_LANGUAGE (t1),
1188 TRANSLATION_UNIT_LANGUAGE (t2)) != 0)
1189 return false;
1191 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
1192 if (!cl_target_option_eq (TREE_TARGET_OPTION (t1), TREE_TARGET_OPTION (t2)))
1193 return false;
1195 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
1196 if (memcmp (TREE_OPTIMIZATION (t1), TREE_OPTIMIZATION (t2),
1197 sizeof (struct cl_optimization)) != 0)
1198 return false;
1200 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1201 if (vec_safe_length (BINFO_BASE_ACCESSES (t1))
1202 != vec_safe_length (BINFO_BASE_ACCESSES (t2)))
1203 return false;
1205 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1206 compare_values (CONSTRUCTOR_NELTS);
1208 if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1209 if (IDENTIFIER_LENGTH (t1) != IDENTIFIER_LENGTH (t2)
1210 || memcmp (IDENTIFIER_POINTER (t1), IDENTIFIER_POINTER (t2),
1211 IDENTIFIER_LENGTH (t1)) != 0)
1212 return false;
1214 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1215 if (TREE_STRING_LENGTH (t1) != TREE_STRING_LENGTH (t2)
1216 || memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1217 TREE_STRING_LENGTH (t1)) != 0)
1218 return false;
1220 if (code == OMP_CLAUSE)
1222 compare_values (OMP_CLAUSE_CODE);
1223 switch (OMP_CLAUSE_CODE (t1))
1225 case OMP_CLAUSE_DEFAULT:
1226 compare_values (OMP_CLAUSE_DEFAULT_KIND);
1227 break;
1228 case OMP_CLAUSE_SCHEDULE:
1229 compare_values (OMP_CLAUSE_SCHEDULE_KIND);
1230 break;
1231 case OMP_CLAUSE_DEPEND:
1232 compare_values (OMP_CLAUSE_DEPEND_KIND);
1233 break;
1234 case OMP_CLAUSE_MAP:
1235 compare_values (OMP_CLAUSE_MAP_KIND);
1236 break;
1237 case OMP_CLAUSE_PROC_BIND:
1238 compare_values (OMP_CLAUSE_PROC_BIND_KIND);
1239 break;
1240 case OMP_CLAUSE_REDUCTION:
1241 compare_values (OMP_CLAUSE_REDUCTION_CODE);
1242 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_INIT);
1243 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE);
1244 break;
1245 default:
1246 break;
1250 #undef compare_values
1253 /* Compare pointer fields. */
1255 /* Recurse. Search & Replaced from DFS_write_tree_body.
1256 Folding the early checks into the compare_tree_edges recursion
1257 macro makes debugging way quicker as you are able to break on
1258 compare_tree_sccs_1 and simply finish until a call returns false
1259 to spot the SCC members with the difference. */
1260 #define compare_tree_edges(E1, E2) \
1261 do { \
1262 tree t1_ = (E1), t2_ = (E2); \
1263 if (t1_ != t2_ \
1264 && (!t1_ || !t2_ \
1265 || !TREE_VISITED (t2_) \
1266 || (!TREE_ASM_WRITTEN (t2_) \
1267 && !compare_tree_sccs_1 (t1_, t2_, map)))) \
1268 return false; \
1269 /* Only non-NULL trees outside of the SCC may compare equal. */ \
1270 gcc_checking_assert (t1_ != t2_ || (!t2_ || !TREE_VISITED (t2_))); \
1271 } while (0)
1273 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
1275 if (code != IDENTIFIER_NODE)
1276 compare_tree_edges (TREE_TYPE (t1), TREE_TYPE (t2));
1279 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1281 unsigned i;
1282 /* Note that the number of elements for EXPR has already been emitted
1283 in EXPR's header (see streamer_write_tree_header). */
1284 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
1285 compare_tree_edges (VECTOR_CST_ELT (t1, i), VECTOR_CST_ELT (t2, i));
1288 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
1290 compare_tree_edges (TREE_REALPART (t1), TREE_REALPART (t2));
1291 compare_tree_edges (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
1294 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
1296 compare_tree_edges (DECL_NAME (t1), DECL_NAME (t2));
1297 /* ??? Global decls from different TUs have non-matching
1298 TRANSLATION_UNIT_DECLs. Only consider a small set of
1299 decls equivalent, we should not end up merging others. */
1300 if ((code == TYPE_DECL
1301 || code == NAMESPACE_DECL
1302 || code == IMPORTED_DECL
1303 || code == CONST_DECL
1304 || (VAR_OR_FUNCTION_DECL_P (t1)
1305 && (TREE_PUBLIC (t1) || DECL_EXTERNAL (t1))))
1306 && DECL_FILE_SCOPE_P (t1) && DECL_FILE_SCOPE_P (t2))
1308 else
1309 compare_tree_edges (DECL_CONTEXT (t1), DECL_CONTEXT (t2));
1312 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1314 compare_tree_edges (DECL_SIZE (t1), DECL_SIZE (t2));
1315 compare_tree_edges (DECL_SIZE_UNIT (t1), DECL_SIZE_UNIT (t2));
1316 compare_tree_edges (DECL_ATTRIBUTES (t1), DECL_ATTRIBUTES (t2));
1317 compare_tree_edges (DECL_ABSTRACT_ORIGIN (t1), DECL_ABSTRACT_ORIGIN (t2));
1318 if ((code == VAR_DECL
1319 || code == PARM_DECL)
1320 && DECL_HAS_VALUE_EXPR_P (t1))
1321 compare_tree_edges (DECL_VALUE_EXPR (t1), DECL_VALUE_EXPR (t2));
1322 if (code == VAR_DECL
1323 && DECL_HAS_DEBUG_EXPR_P (t1))
1324 compare_tree_edges (DECL_DEBUG_EXPR (t1), DECL_DEBUG_EXPR (t2));
1325 /* LTO specific edges. */
1326 if (code != FUNCTION_DECL
1327 && code != TRANSLATION_UNIT_DECL)
1328 compare_tree_edges (DECL_INITIAL (t1), DECL_INITIAL (t2));
1331 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
1333 if (code == FUNCTION_DECL)
1335 tree a1, a2;
1336 for (a1 = DECL_ARGUMENTS (t1), a2 = DECL_ARGUMENTS (t2);
1337 a1 || a2;
1338 a1 = TREE_CHAIN (a1), a2 = TREE_CHAIN (a2))
1339 compare_tree_edges (a1, a2);
1340 compare_tree_edges (DECL_RESULT (t1), DECL_RESULT (t2));
1342 else if (code == TYPE_DECL)
1343 compare_tree_edges (DECL_ORIGINAL_TYPE (t1), DECL_ORIGINAL_TYPE (t2));
1346 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1348 /* Make sure we don't inadvertently set the assembler name. */
1349 if (DECL_ASSEMBLER_NAME_SET_P (t1))
1350 compare_tree_edges (DECL_ASSEMBLER_NAME (t1),
1351 DECL_ASSEMBLER_NAME (t2));
1354 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1356 compare_tree_edges (DECL_FIELD_OFFSET (t1), DECL_FIELD_OFFSET (t2));
1357 compare_tree_edges (DECL_BIT_FIELD_TYPE (t1), DECL_BIT_FIELD_TYPE (t2));
1358 compare_tree_edges (DECL_BIT_FIELD_REPRESENTATIVE (t1),
1359 DECL_BIT_FIELD_REPRESENTATIVE (t2));
1360 compare_tree_edges (DECL_FIELD_BIT_OFFSET (t1),
1361 DECL_FIELD_BIT_OFFSET (t2));
1362 compare_tree_edges (DECL_FCONTEXT (t1), DECL_FCONTEXT (t2));
1365 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1367 compare_tree_edges (DECL_FUNCTION_PERSONALITY (t1),
1368 DECL_FUNCTION_PERSONALITY (t2));
1369 compare_tree_edges (DECL_VINDEX (t1), DECL_VINDEX (t2));
1370 compare_tree_edges (DECL_FUNCTION_SPECIFIC_TARGET (t1),
1371 DECL_FUNCTION_SPECIFIC_TARGET (t2));
1372 compare_tree_edges (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t1),
1373 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t2));
1376 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1378 compare_tree_edges (TYPE_SIZE (t1), TYPE_SIZE (t2));
1379 compare_tree_edges (TYPE_SIZE_UNIT (t1), TYPE_SIZE_UNIT (t2));
1380 compare_tree_edges (TYPE_ATTRIBUTES (t1), TYPE_ATTRIBUTES (t2));
1381 compare_tree_edges (TYPE_NAME (t1), TYPE_NAME (t2));
1382 /* Do not compare TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
1383 reconstructed during fixup. */
1384 /* Do not compare TYPE_NEXT_VARIANT, we reconstruct the variant lists
1385 during fixup. */
1386 compare_tree_edges (TYPE_MAIN_VARIANT (t1), TYPE_MAIN_VARIANT (t2));
1387 /* ??? Global types from different TUs have non-matching
1388 TRANSLATION_UNIT_DECLs. Still merge them if they are otherwise
1389 equal. */
1390 if (TYPE_FILE_SCOPE_P (t1) && TYPE_FILE_SCOPE_P (t2))
1392 else
1393 compare_tree_edges (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
1394 /* TYPE_CANONICAL is re-computed during type merging, so do not
1395 compare it here. */
1396 compare_tree_edges (TYPE_STUB_DECL (t1), TYPE_STUB_DECL (t2));
1399 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1401 if (code == ENUMERAL_TYPE)
1402 compare_tree_edges (TYPE_VALUES (t1), TYPE_VALUES (t2));
1403 else if (code == ARRAY_TYPE)
1404 compare_tree_edges (TYPE_DOMAIN (t1), TYPE_DOMAIN (t2));
1405 else if (RECORD_OR_UNION_TYPE_P (t1))
1407 tree f1, f2;
1408 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
1409 f1 || f2;
1410 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
1411 compare_tree_edges (f1, f2);
1412 compare_tree_edges (TYPE_BINFO (t1), TYPE_BINFO (t2));
1414 else if (code == FUNCTION_TYPE
1415 || code == METHOD_TYPE)
1416 compare_tree_edges (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2));
1417 if (!POINTER_TYPE_P (t1))
1418 compare_tree_edges (TYPE_MINVAL (t1), TYPE_MINVAL (t2));
1419 compare_tree_edges (TYPE_MAXVAL (t1), TYPE_MAXVAL (t2));
1422 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1424 compare_tree_edges (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1425 compare_tree_edges (TREE_VALUE (t1), TREE_VALUE (t2));
1426 compare_tree_edges (TREE_CHAIN (t1), TREE_CHAIN (t2));
1429 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1430 for (int i = 0; i < TREE_VEC_LENGTH (t1); i++)
1431 compare_tree_edges (TREE_VEC_ELT (t1, i), TREE_VEC_ELT (t2, i));
1433 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1435 for (int i = 0; i < TREE_OPERAND_LENGTH (t1); i++)
1436 compare_tree_edges (TREE_OPERAND (t1, i),
1437 TREE_OPERAND (t2, i));
1439 /* BLOCKs are function local and we don't merge anything there. */
1440 if (TREE_BLOCK (t1) || TREE_BLOCK (t2))
1441 return false;
1444 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1446 unsigned i;
1447 tree t;
1448 /* Lengths have already been compared above. */
1449 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t1), i, t)
1450 compare_tree_edges (t, BINFO_BASE_BINFO (t2, i));
1451 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (t1), i, t)
1452 compare_tree_edges (t, BINFO_BASE_ACCESS (t2, i));
1453 compare_tree_edges (BINFO_OFFSET (t1), BINFO_OFFSET (t2));
1454 compare_tree_edges (BINFO_VTABLE (t1), BINFO_VTABLE (t2));
1455 compare_tree_edges (BINFO_VPTR_FIELD (t1), BINFO_VPTR_FIELD (t2));
1456 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1457 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
1460 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1462 unsigned i;
1463 tree index, value;
1464 /* Lengths have already been compared above. */
1465 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, index, value)
1467 compare_tree_edges (index, CONSTRUCTOR_ELT (t2, i)->index);
1468 compare_tree_edges (value, CONSTRUCTOR_ELT (t2, i)->value);
1472 if (code == OMP_CLAUSE)
1474 int i;
1476 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t1)]; i++)
1477 compare_tree_edges (OMP_CLAUSE_OPERAND (t1, i),
1478 OMP_CLAUSE_OPERAND (t2, i));
1479 compare_tree_edges (OMP_CLAUSE_CHAIN (t1), OMP_CLAUSE_CHAIN (t2));
1482 #undef compare_tree_edges
1484 return true;
1487 /* Compare the tree scc SCC to the prevailing candidate PSCC, filling
1488 out MAP if they are equal. */
1490 static bool
1491 compare_tree_sccs (tree_scc *pscc, tree_scc *scc,
1492 tree *map)
1494 /* Assume SCC entry hashes are sorted after their cardinality. Which
1495 means we can simply take the first n-tuple of equal hashes
1496 (which is recorded as entry_len) and do n SCC entry candidate
1497 comparisons. */
1498 for (unsigned i = 0; i < pscc->entry_len; ++i)
1500 tree *mapp = map;
1501 num_scc_compare_collisions++;
1502 if (compare_tree_sccs_1 (pscc->entries[0], scc->entries[i], &mapp))
1504 /* Equal - no need to reset TREE_VISITED or TREE_ASM_WRITTEN
1505 on the scc as all trees will be freed. */
1506 return true;
1508 /* Reset TREE_ASM_WRITTEN on scc for the next compare or in case
1509 the SCC prevails. */
1510 for (unsigned j = 0; j < scc->len; ++j)
1511 TREE_ASM_WRITTEN (scc->entries[j]) = 0;
1514 return false;
1517 /* QSort sort function to sort a map of two pointers after the 2nd
1518 pointer. */
1520 static int
1521 cmp_tree (const void *p1_, const void *p2_)
1523 tree *p1 = (tree *)(const_cast<void *>(p1_));
1524 tree *p2 = (tree *)(const_cast<void *>(p2_));
1525 if (p1[1] == p2[1])
1526 return 0;
1527 return ((uintptr_t)p1[1] < (uintptr_t)p2[1]) ? -1 : 1;
1530 /* Try to unify the SCC with nodes FROM to FROM + LEN in CACHE and
1531 hash value SCC_HASH with an already recorded SCC. Return true if
1532 that was successful, otherwise return false. */
1534 static bool
1535 unify_scc (struct data_in *data_in, unsigned from,
1536 unsigned len, unsigned scc_entry_len, hashval_t scc_hash)
1538 bool unified_p = false;
1539 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1540 tree_scc *scc
1541 = (tree_scc *) alloca (sizeof (tree_scc) + (len - 1) * sizeof (tree));
1542 scc->next = NULL;
1543 scc->hash = scc_hash;
1544 scc->len = len;
1545 scc->entry_len = scc_entry_len;
1546 for (unsigned i = 0; i < len; ++i)
1548 tree t = streamer_tree_cache_get_tree (cache, from + i);
1549 scc->entries[i] = t;
1550 /* Do not merge SCCs with local entities inside them. Also do
1551 not merge TRANSLATION_UNIT_DECLs. */
1552 if (TREE_CODE (t) == TRANSLATION_UNIT_DECL
1553 || (VAR_OR_FUNCTION_DECL_P (t)
1554 && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
1555 || TREE_CODE (t) == LABEL_DECL)
1557 /* Avoid doing any work for these cases and do not worry to
1558 record the SCCs for further merging. */
1559 return false;
1563 /* Look for the list of candidate SCCs to compare against. */
1564 tree_scc **slot;
1565 slot = tree_scc_hash->find_slot_with_hash (scc, scc_hash, INSERT);
1566 if (*slot)
1568 /* Try unifying against each candidate. */
1569 num_scc_compares++;
1571 /* Set TREE_VISITED on the scc so we can easily identify tree nodes
1572 outside of the scc when following tree edges. Make sure
1573 that TREE_ASM_WRITTEN is unset so we can use it as 2nd bit
1574 to track whether we visited the SCC member during the compare.
1575 We cannot use TREE_VISITED on the pscc members as the extended
1576 scc and pscc can overlap. */
1577 for (unsigned i = 0; i < scc->len; ++i)
1579 TREE_VISITED (scc->entries[i]) = 1;
1580 gcc_checking_assert (!TREE_ASM_WRITTEN (scc->entries[i]));
1583 tree *map = XALLOCAVEC (tree, 2 * len);
1584 for (tree_scc *pscc = *slot; pscc; pscc = pscc->next)
1586 if (!compare_tree_sccs (pscc, scc, map))
1587 continue;
1589 /* Found an equal SCC. */
1590 unified_p = true;
1591 num_scc_compare_collisions--;
1592 num_sccs_merged++;
1593 total_scc_size_merged += len;
1595 if (flag_checking)
1596 for (unsigned i = 0; i < len; ++i)
1598 tree t = map[2*i+1];
1599 enum tree_code code = TREE_CODE (t);
1600 /* IDENTIFIER_NODEs should be singletons and are merged by the
1601 streamer. The others should be singletons, too, and we
1602 should not merge them in any way. */
1603 gcc_assert (code != TRANSLATION_UNIT_DECL
1604 && code != IDENTIFIER_NODE);
1607 /* Fixup the streamer cache with the prevailing nodes according
1608 to the tree node mapping computed by compare_tree_sccs. */
1609 if (len == 1)
1610 streamer_tree_cache_replace_tree (cache, pscc->entries[0], from);
1611 else
1613 tree *map2 = XALLOCAVEC (tree, 2 * len);
1614 for (unsigned i = 0; i < len; ++i)
1616 map2[i*2] = (tree)(uintptr_t)(from + i);
1617 map2[i*2+1] = scc->entries[i];
1619 qsort (map2, len, 2 * sizeof (tree), cmp_tree);
1620 qsort (map, len, 2 * sizeof (tree), cmp_tree);
1621 for (unsigned i = 0; i < len; ++i)
1622 streamer_tree_cache_replace_tree (cache, map[2*i],
1623 (uintptr_t)map2[2*i]);
1626 /* Free the tree nodes from the read SCC. */
1627 data_in->location_cache.revert_location_cache ();
1628 for (unsigned i = 0; i < len; ++i)
1630 if (TYPE_P (scc->entries[i]))
1631 num_merged_types++;
1632 free_node (scc->entries[i]);
1635 break;
1638 /* Reset TREE_VISITED if we didn't unify the SCC with another. */
1639 if (!unified_p)
1640 for (unsigned i = 0; i < scc->len; ++i)
1641 TREE_VISITED (scc->entries[i]) = 0;
1644 /* If we didn't unify it to any candidate duplicate the relevant
1645 pieces to permanent storage and link it into the chain. */
1646 if (!unified_p)
1648 tree_scc *pscc
1649 = XOBNEWVAR (&tree_scc_hash_obstack, tree_scc, sizeof (tree_scc));
1650 memcpy (pscc, scc, sizeof (tree_scc));
1651 pscc->next = (*slot);
1652 *slot = pscc;
1654 return unified_p;
1658 /* Read all the symbols from buffer DATA, using descriptors in DECL_DATA.
1659 RESOLUTIONS is the set of symbols picked by the linker (read from the
1660 resolution file when the linker plugin is being used). */
1662 static void
1663 lto_read_decls (struct lto_file_decl_data *decl_data, const void *data,
1664 vec<ld_plugin_symbol_resolution_t> resolutions)
1666 const struct lto_decl_header *header = (const struct lto_decl_header *) data;
1667 const int decl_offset = sizeof (struct lto_decl_header);
1668 const int main_offset = decl_offset + header->decl_state_size;
1669 const int string_offset = main_offset + header->main_size;
1670 struct data_in *data_in;
1671 unsigned int i;
1672 const uint32_t *data_ptr, *data_end;
1673 uint32_t num_decl_states;
1675 lto_input_block ib_main ((const char *) data + main_offset,
1676 header->main_size, decl_data->mode_table);
1678 data_in = lto_data_in_create (decl_data, (const char *) data + string_offset,
1679 header->string_size, resolutions);
1681 /* We do not uniquify the pre-loaded cache entries, those are middle-end
1682 internal types that should not be merged. */
1684 /* Read the global declarations and types. */
1685 while (ib_main.p < ib_main.len)
1687 tree t;
1688 unsigned from = data_in->reader_cache->nodes.length ();
1689 /* Read and uniquify SCCs as in the input stream. */
1690 enum LTO_tags tag = streamer_read_record_start (&ib_main);
1691 if (tag == LTO_tree_scc)
1693 unsigned len_;
1694 unsigned scc_entry_len;
1695 hashval_t scc_hash = lto_input_scc (&ib_main, data_in, &len_,
1696 &scc_entry_len);
1697 unsigned len = data_in->reader_cache->nodes.length () - from;
1698 gcc_assert (len == len_);
1700 total_scc_size += len;
1701 num_sccs_read++;
1703 /* We have the special case of size-1 SCCs that are pre-merged
1704 by means of identifier and string sharing for example.
1705 ??? Maybe we should avoid streaming those as SCCs. */
1706 tree first = streamer_tree_cache_get_tree (data_in->reader_cache,
1707 from);
1708 if (len == 1
1709 && (TREE_CODE (first) == IDENTIFIER_NODE
1710 || TREE_CODE (first) == INTEGER_CST
1711 || TREE_CODE (first) == TRANSLATION_UNIT_DECL))
1712 continue;
1714 /* Try to unify the SCC with already existing ones. */
1715 if (!flag_ltrans
1716 && unify_scc (data_in, from,
1717 len, scc_entry_len, scc_hash))
1718 continue;
1720 /* Tree merging failed, mark entries in location cache as
1721 permanent. */
1722 data_in->location_cache.accept_location_cache ();
1724 bool seen_type = false;
1725 for (unsigned i = 0; i < len; ++i)
1727 tree t = streamer_tree_cache_get_tree (data_in->reader_cache,
1728 from + i);
1729 /* Reconstruct the type variant and pointer-to/reference-to
1730 chains. */
1731 if (TYPE_P (t))
1733 seen_type = true;
1734 num_prevailing_types++;
1735 lto_fixup_prevailing_type (t);
1737 /* Compute the canonical type of all types.
1738 ??? Should be able to assert that !TYPE_CANONICAL. */
1739 if (TYPE_P (t) && !TYPE_CANONICAL (t))
1741 gimple_register_canonical_type (t);
1742 if (odr_type_p (t))
1743 register_odr_type (t);
1745 /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its
1746 type which is also member of this SCC. */
1747 if (TREE_CODE (t) == INTEGER_CST
1748 && !TREE_OVERFLOW (t))
1749 cache_integer_cst (t);
1750 /* Register TYPE_DECLs with the debuginfo machinery. */
1751 if (!flag_wpa
1752 && TREE_CODE (t) == TYPE_DECL)
1754 /* Dwarf2out needs location information.
1755 TODO: Moving this out of the streamer loop may noticealy
1756 improve ltrans linemap memory use. */
1757 data_in->location_cache.apply_location_cache ();
1758 debug_hooks->type_decl (t, !DECL_FILE_SCOPE_P (t));
1760 if (!flag_ltrans)
1762 /* Register variables and functions with the
1763 symbol table. */
1764 if (TREE_CODE (t) == VAR_DECL)
1765 lto_register_var_decl_in_symtab (data_in, t, from + i);
1766 else if (TREE_CODE (t) == FUNCTION_DECL
1767 && !DECL_BUILT_IN (t))
1768 lto_register_function_decl_in_symtab (data_in, t, from + i);
1769 /* Scan the tree for references to global functions or
1770 variables and record those for later fixup. */
1771 if (mentions_vars_p (t))
1772 vec_safe_push (tree_with_vars, t);
1775 if (seen_type)
1776 num_type_scc_trees += len;
1778 else
1780 /* Pickle stray references. */
1781 t = lto_input_tree_1 (&ib_main, data_in, tag, 0);
1782 gcc_assert (t && data_in->reader_cache->nodes.length () == from);
1785 data_in->location_cache.apply_location_cache ();
1787 /* Read in lto_in_decl_state objects. */
1788 data_ptr = (const uint32_t *) ((const char*) data + decl_offset);
1789 data_end =
1790 (const uint32_t *) ((const char*) data_ptr + header->decl_state_size);
1791 num_decl_states = *data_ptr++;
1793 gcc_assert (num_decl_states > 0);
1794 decl_data->global_decl_state = lto_new_in_decl_state ();
1795 data_ptr = lto_read_in_decl_state (data_in, data_ptr,
1796 decl_data->global_decl_state);
1798 /* Read in per-function decl states and enter them in hash table. */
1799 decl_data->function_decl_states =
1800 hash_table<decl_state_hasher>::create_ggc (37);
1802 for (i = 1; i < num_decl_states; i++)
1804 struct lto_in_decl_state *state = lto_new_in_decl_state ();
1806 data_ptr = lto_read_in_decl_state (data_in, data_ptr, state);
1807 lto_in_decl_state **slot
1808 = decl_data->function_decl_states->find_slot (state, INSERT);
1809 gcc_assert (*slot == NULL);
1810 *slot = state;
1813 if (data_ptr != data_end)
1814 internal_error ("bytecode stream: garbage at the end of symbols section");
1816 /* Set the current decl state to be the global state. */
1817 decl_data->current_decl_state = decl_data->global_decl_state;
1819 lto_data_in_delete (data_in);
1822 /* Custom version of strtoll, which is not portable. */
1824 static int64_t
1825 lto_parse_hex (const char *p)
1827 int64_t ret = 0;
1829 for (; *p != '\0'; ++p)
1831 char c = *p;
1832 unsigned char part;
1833 ret <<= 4;
1834 if (c >= '0' && c <= '9')
1835 part = c - '0';
1836 else if (c >= 'a' && c <= 'f')
1837 part = c - 'a' + 10;
1838 else if (c >= 'A' && c <= 'F')
1839 part = c - 'A' + 10;
1840 else
1841 internal_error ("could not parse hex number");
1842 ret |= part;
1845 return ret;
1848 /* Read resolution for file named FILE_NAME. The resolution is read from
1849 RESOLUTION. */
1851 static void
1852 lto_resolution_read (splay_tree file_ids, FILE *resolution, lto_file *file)
1854 /* We require that objects in the resolution file are in the same
1855 order as the lto1 command line. */
1856 unsigned int name_len;
1857 char *obj_name;
1858 unsigned int num_symbols;
1859 unsigned int i;
1860 struct lto_file_decl_data *file_data;
1861 splay_tree_node nd = NULL;
1863 if (!resolution)
1864 return;
1866 name_len = strlen (file->filename);
1867 obj_name = XNEWVEC (char, name_len + 1);
1868 fscanf (resolution, " "); /* Read white space. */
1870 fread (obj_name, sizeof (char), name_len, resolution);
1871 obj_name[name_len] = '\0';
1872 if (filename_cmp (obj_name, file->filename) != 0)
1873 internal_error ("unexpected file name %s in linker resolution file. "
1874 "Expected %s", obj_name, file->filename);
1875 if (file->offset != 0)
1877 int t;
1878 char offset_p[17];
1879 int64_t offset;
1880 t = fscanf (resolution, "@0x%16s", offset_p);
1881 if (t != 1)
1882 internal_error ("could not parse file offset");
1883 offset = lto_parse_hex (offset_p);
1884 if (offset != file->offset)
1885 internal_error ("unexpected offset");
1888 free (obj_name);
1890 fscanf (resolution, "%u", &num_symbols);
1892 for (i = 0; i < num_symbols; i++)
1894 int t;
1895 unsigned index;
1896 unsigned HOST_WIDE_INT id;
1897 char r_str[27];
1898 enum ld_plugin_symbol_resolution r = (enum ld_plugin_symbol_resolution) 0;
1899 unsigned int j;
1900 unsigned int lto_resolution_str_len =
1901 sizeof (lto_resolution_str) / sizeof (char *);
1902 res_pair rp;
1904 t = fscanf (resolution, "%u " HOST_WIDE_INT_PRINT_HEX_PURE " %26s %*[^\n]\n",
1905 &index, &id, r_str);
1906 if (t != 3)
1907 internal_error ("invalid line in the resolution file");
1909 for (j = 0; j < lto_resolution_str_len; j++)
1911 if (strcmp (lto_resolution_str[j], r_str) == 0)
1913 r = (enum ld_plugin_symbol_resolution) j;
1914 break;
1917 if (j == lto_resolution_str_len)
1918 internal_error ("invalid resolution in the resolution file");
1920 if (!(nd && lto_splay_tree_id_equal_p (nd->key, id)))
1922 nd = lto_splay_tree_lookup (file_ids, id);
1923 if (nd == NULL)
1924 internal_error ("resolution sub id %wx not in object file", id);
1927 file_data = (struct lto_file_decl_data *)nd->value;
1928 /* The indexes are very sparse. To save memory save them in a compact
1929 format that is only unpacked later when the subfile is processed. */
1930 rp.res = r;
1931 rp.index = index;
1932 file_data->respairs.safe_push (rp);
1933 if (file_data->max_index < index)
1934 file_data->max_index = index;
1938 /* List of file_decl_datas */
1939 struct file_data_list
1941 struct lto_file_decl_data *first, *last;
1944 /* Is the name for a id'ed LTO section? */
1946 static int
1947 lto_section_with_id (const char *name, unsigned HOST_WIDE_INT *id)
1949 const char *s;
1951 if (strncmp (name, section_name_prefix, strlen (section_name_prefix)))
1952 return 0;
1953 s = strrchr (name, '.');
1954 return s && sscanf (s, "." HOST_WIDE_INT_PRINT_HEX_PURE, id) == 1;
1957 /* Create file_data of each sub file id */
1959 static int
1960 create_subid_section_table (struct lto_section_slot *ls, splay_tree file_ids,
1961 struct file_data_list *list)
1963 struct lto_section_slot s_slot, *new_slot;
1964 unsigned HOST_WIDE_INT id;
1965 splay_tree_node nd;
1966 void **hash_slot;
1967 char *new_name;
1968 struct lto_file_decl_data *file_data;
1970 if (!lto_section_with_id (ls->name, &id))
1971 return 1;
1973 /* Find hash table of sub module id */
1974 nd = lto_splay_tree_lookup (file_ids, id);
1975 if (nd != NULL)
1977 file_data = (struct lto_file_decl_data *)nd->value;
1979 else
1981 file_data = ggc_alloc<lto_file_decl_data> ();
1982 memset(file_data, 0, sizeof (struct lto_file_decl_data));
1983 file_data->id = id;
1984 file_data->section_hash_table = lto_obj_create_section_hash_table ();;
1985 lto_splay_tree_insert (file_ids, id, file_data);
1987 /* Maintain list in linker order */
1988 if (!list->first)
1989 list->first = file_data;
1990 if (list->last)
1991 list->last->next = file_data;
1992 list->last = file_data;
1995 /* Copy section into sub module hash table */
1996 new_name = XDUPVEC (char, ls->name, strlen (ls->name) + 1);
1997 s_slot.name = new_name;
1998 hash_slot = htab_find_slot (file_data->section_hash_table, &s_slot, INSERT);
1999 gcc_assert (*hash_slot == NULL);
2001 new_slot = XDUP (struct lto_section_slot, ls);
2002 new_slot->name = new_name;
2003 *hash_slot = new_slot;
2004 return 1;
2007 /* Read declarations and other initializations for a FILE_DATA. */
2009 static void
2010 lto_file_finalize (struct lto_file_decl_data *file_data, lto_file *file)
2012 const char *data;
2013 size_t len;
2014 vec<ld_plugin_symbol_resolution_t>
2015 resolutions = vNULL;
2016 int i;
2017 res_pair *rp;
2019 /* Create vector for fast access of resolution. We do this lazily
2020 to save memory. */
2021 resolutions.safe_grow_cleared (file_data->max_index + 1);
2022 for (i = 0; file_data->respairs.iterate (i, &rp); i++)
2023 resolutions[rp->index] = rp->res;
2024 file_data->respairs.release ();
2026 file_data->renaming_hash_table = lto_create_renaming_table ();
2027 file_data->file_name = file->filename;
2028 #ifdef ACCEL_COMPILER
2029 lto_input_mode_table (file_data);
2030 #else
2031 file_data->mode_table = lto_mode_identity_table;
2032 #endif
2033 data = lto_get_section_data (file_data, LTO_section_decls, NULL, &len);
2034 if (data == NULL)
2036 internal_error ("cannot read LTO decls from %s", file_data->file_name);
2037 return;
2039 /* Frees resolutions */
2040 lto_read_decls (file_data, data, resolutions);
2041 lto_free_section_data (file_data, LTO_section_decls, NULL, data, len);
2044 /* Finalize FILE_DATA in FILE and increase COUNT. */
2046 static int
2047 lto_create_files_from_ids (lto_file *file, struct lto_file_decl_data *file_data,
2048 int *count)
2050 lto_file_finalize (file_data, file);
2051 if (symtab->dump_file)
2052 fprintf (symtab->dump_file,
2053 "Creating file %s with sub id " HOST_WIDE_INT_PRINT_HEX "\n",
2054 file_data->file_name, file_data->id);
2055 (*count)++;
2056 return 0;
2059 /* Generate a TREE representation for all types and external decls
2060 entities in FILE.
2062 Read all of the globals out of the file. Then read the cgraph
2063 and process the .o index into the cgraph nodes so that it can open
2064 the .o file to load the functions and ipa information. */
2066 static struct lto_file_decl_data *
2067 lto_file_read (lto_file *file, FILE *resolution_file, int *count)
2069 struct lto_file_decl_data *file_data = NULL;
2070 splay_tree file_ids;
2071 htab_t section_hash_table;
2072 struct lto_section_slot *section;
2073 struct file_data_list file_list;
2074 struct lto_section_list section_list;
2076 memset (&section_list, 0, sizeof (struct lto_section_list));
2077 section_hash_table = lto_obj_build_section_table (file, &section_list);
2079 /* Find all sub modules in the object and put their sections into new hash
2080 tables in a splay tree. */
2081 file_ids = lto_splay_tree_new ();
2082 memset (&file_list, 0, sizeof (struct file_data_list));
2083 for (section = section_list.first; section != NULL; section = section->next)
2084 create_subid_section_table (section, file_ids, &file_list);
2086 /* Add resolutions to file ids */
2087 lto_resolution_read (file_ids, resolution_file, file);
2089 /* Finalize each lto file for each submodule in the merged object */
2090 for (file_data = file_list.first; file_data != NULL; file_data = file_data->next)
2091 lto_create_files_from_ids (file, file_data, count);
2093 splay_tree_delete (file_ids);
2094 htab_delete (section_hash_table);
2096 return file_list.first;
2099 #if HAVE_MMAP_FILE && HAVE_SYSCONF && defined _SC_PAGE_SIZE
2100 #define LTO_MMAP_IO 1
2101 #endif
2103 #if LTO_MMAP_IO
2104 /* Page size of machine is used for mmap and munmap calls. */
2105 static size_t page_mask;
2106 #endif
2108 /* Get the section data of length LEN from FILENAME starting at
2109 OFFSET. The data segment must be freed by the caller when the
2110 caller is finished. Returns NULL if all was not well. */
2112 static char *
2113 lto_read_section_data (struct lto_file_decl_data *file_data,
2114 intptr_t offset, size_t len)
2116 char *result;
2117 static int fd = -1;
2118 static char *fd_name;
2119 #if LTO_MMAP_IO
2120 intptr_t computed_len;
2121 intptr_t computed_offset;
2122 intptr_t diff;
2123 #endif
2125 /* Keep a single-entry file-descriptor cache. The last file we
2126 touched will get closed at exit.
2127 ??? Eventually we want to add a more sophisticated larger cache
2128 or rather fix function body streaming to not stream them in
2129 practically random order. */
2130 if (fd != -1
2131 && filename_cmp (fd_name, file_data->file_name) != 0)
2133 free (fd_name);
2134 close (fd);
2135 fd = -1;
2137 if (fd == -1)
2139 fd = open (file_data->file_name, O_RDONLY|O_BINARY);
2140 if (fd == -1)
2142 fatal_error (input_location, "Cannot open %s", file_data->file_name);
2143 return NULL;
2145 fd_name = xstrdup (file_data->file_name);
2148 #if LTO_MMAP_IO
2149 if (!page_mask)
2151 size_t page_size = sysconf (_SC_PAGE_SIZE);
2152 page_mask = ~(page_size - 1);
2155 computed_offset = offset & page_mask;
2156 diff = offset - computed_offset;
2157 computed_len = len + diff;
2159 result = (char *) mmap (NULL, computed_len, PROT_READ, MAP_PRIVATE,
2160 fd, computed_offset);
2161 if (result == MAP_FAILED)
2163 fatal_error (input_location, "Cannot map %s", file_data->file_name);
2164 return NULL;
2167 return result + diff;
2168 #else
2169 result = (char *) xmalloc (len);
2170 if (lseek (fd, offset, SEEK_SET) != offset
2171 || read (fd, result, len) != (ssize_t) len)
2173 free (result);
2174 fatal_error (input_location, "Cannot read %s", file_data->file_name);
2175 result = NULL;
2177 #ifdef __MINGW32__
2178 /* Native windows doesn't supports delayed unlink on opened file. So
2179 we close file here again. This produces higher I/O load, but at least
2180 it prevents to have dangling file handles preventing unlink. */
2181 free (fd_name);
2182 fd_name = NULL;
2183 close (fd);
2184 fd = -1;
2185 #endif
2186 return result;
2187 #endif
2191 /* Get the section data from FILE_DATA of SECTION_TYPE with NAME.
2192 NAME will be NULL unless the section type is for a function
2193 body. */
2195 static const char *
2196 get_section_data (struct lto_file_decl_data *file_data,
2197 enum lto_section_type section_type,
2198 const char *name,
2199 size_t *len)
2201 htab_t section_hash_table = file_data->section_hash_table;
2202 struct lto_section_slot *f_slot;
2203 struct lto_section_slot s_slot;
2204 const char *section_name = lto_get_section_name (section_type, name, file_data);
2205 char *data = NULL;
2207 *len = 0;
2208 s_slot.name = section_name;
2209 f_slot = (struct lto_section_slot *) htab_find (section_hash_table, &s_slot);
2210 if (f_slot)
2212 data = lto_read_section_data (file_data, f_slot->start, f_slot->len);
2213 *len = f_slot->len;
2216 free (CONST_CAST (char *, section_name));
2217 return data;
2221 /* Free the section data from FILE_DATA of SECTION_TYPE with NAME that
2222 starts at OFFSET and has LEN bytes. */
2224 static void
2225 free_section_data (struct lto_file_decl_data *file_data ATTRIBUTE_UNUSED,
2226 enum lto_section_type section_type ATTRIBUTE_UNUSED,
2227 const char *name ATTRIBUTE_UNUSED,
2228 const char *offset, size_t len ATTRIBUTE_UNUSED)
2230 #if LTO_MMAP_IO
2231 intptr_t computed_len;
2232 intptr_t computed_offset;
2233 intptr_t diff;
2234 #endif
2236 #if LTO_MMAP_IO
2237 computed_offset = ((intptr_t) offset) & page_mask;
2238 diff = (intptr_t) offset - computed_offset;
2239 computed_len = len + diff;
2241 munmap ((caddr_t) computed_offset, computed_len);
2242 #else
2243 free (CONST_CAST(char *, offset));
2244 #endif
2247 static lto_file *current_lto_file;
2249 /* Helper for qsort; compare partitions and return one with smaller size.
2250 We sort from greatest to smallest so parallel build doesn't stale on the
2251 longest compilation being executed too late. */
2253 static int
2254 cmp_partitions_size (const void *a, const void *b)
2256 const struct ltrans_partition_def *pa
2257 = *(struct ltrans_partition_def *const *)a;
2258 const struct ltrans_partition_def *pb
2259 = *(struct ltrans_partition_def *const *)b;
2260 return pb->insns - pa->insns;
2263 /* Helper for qsort; compare partitions and return one with smaller order. */
2265 static int
2266 cmp_partitions_order (const void *a, const void *b)
2268 const struct ltrans_partition_def *pa
2269 = *(struct ltrans_partition_def *const *)a;
2270 const struct ltrans_partition_def *pb
2271 = *(struct ltrans_partition_def *const *)b;
2272 int ordera = -1, orderb = -1;
2274 if (lto_symtab_encoder_size (pa->encoder))
2275 ordera = lto_symtab_encoder_deref (pa->encoder, 0)->order;
2276 if (lto_symtab_encoder_size (pb->encoder))
2277 orderb = lto_symtab_encoder_deref (pb->encoder, 0)->order;
2278 return orderb - ordera;
2281 /* Actually stream out ENCODER into TEMP_FILENAME. */
2283 static void
2284 do_stream_out (char *temp_filename, lto_symtab_encoder_t encoder)
2286 lto_file *file = lto_obj_file_open (temp_filename, true);
2287 if (!file)
2288 fatal_error (input_location, "lto_obj_file_open() failed");
2289 lto_set_current_out_file (file);
2291 ipa_write_optimization_summaries (encoder);
2293 free (CONST_CAST (char *, file->filename));
2295 lto_set_current_out_file (NULL);
2296 lto_obj_file_close (file);
2297 free (file);
2300 /* Wait for forked process and signal errors. */
2301 #ifdef HAVE_WORKING_FORK
2302 static void
2303 wait_for_child ()
2305 int status;
2308 #ifndef WCONTINUED
2309 #define WCONTINUED 0
2310 #endif
2311 int w = waitpid (0, &status, WUNTRACED | WCONTINUED);
2312 if (w == -1)
2313 fatal_error (input_location, "waitpid failed");
2315 if (WIFEXITED (status) && WEXITSTATUS (status))
2316 fatal_error (input_location, "streaming subprocess failed");
2317 else if (WIFSIGNALED (status))
2318 fatal_error (input_location,
2319 "streaming subprocess was killed by signal");
2321 while (!WIFEXITED (status) && !WIFSIGNALED (status));
2323 #endif
2325 /* Stream out ENCODER into TEMP_FILENAME
2326 Fork if that seems to help. */
2328 static void
2329 stream_out (char *temp_filename, lto_symtab_encoder_t encoder,
2330 bool ARG_UNUSED (last))
2332 #ifdef HAVE_WORKING_FORK
2333 static int nruns;
2335 if (lto_parallelism <= 1)
2337 do_stream_out (temp_filename, encoder);
2338 return;
2341 /* Do not run more than LTO_PARALLELISM streamings
2342 FIXME: we ignore limits on jobserver. */
2343 if (lto_parallelism > 0 && nruns >= lto_parallelism)
2345 wait_for_child ();
2346 nruns --;
2348 /* If this is not the last parallel partition, execute new
2349 streaming process. */
2350 if (!last)
2352 pid_t cpid = fork ();
2354 if (!cpid)
2356 setproctitle ("lto1-wpa-streaming");
2357 do_stream_out (temp_filename, encoder);
2358 exit (0);
2360 /* Fork failed; lets do the job ourseleves. */
2361 else if (cpid == -1)
2362 do_stream_out (temp_filename, encoder);
2363 else
2364 nruns++;
2366 /* Last partition; stream it and wait for all children to die. */
2367 else
2369 int i;
2370 do_stream_out (temp_filename, encoder);
2371 for (i = 0; i < nruns; i++)
2372 wait_for_child ();
2374 asm_nodes_output = true;
2375 #else
2376 do_stream_out (temp_filename, encoder);
2377 #endif
2380 /* Write all output files in WPA mode and the file with the list of
2381 LTRANS units. */
2383 static void
2384 lto_wpa_write_files (void)
2386 unsigned i, n_sets;
2387 ltrans_partition part;
2388 FILE *ltrans_output_list_stream;
2389 char *temp_filename;
2390 vec <char *>temp_filenames = vNULL;
2391 size_t blen;
2393 /* Open the LTRANS output list. */
2394 if (!ltrans_output_list)
2395 fatal_error (input_location, "no LTRANS output list filename provided");
2397 timevar_push (TV_WHOPR_WPA);
2399 FOR_EACH_VEC_ELT (ltrans_partitions, i, part)
2400 lto_stats.num_output_symtab_nodes += lto_symtab_encoder_size (part->encoder);
2402 timevar_pop (TV_WHOPR_WPA);
2404 timevar_push (TV_WHOPR_WPA_IO);
2406 /* Generate a prefix for the LTRANS unit files. */
2407 blen = strlen (ltrans_output_list);
2408 temp_filename = (char *) xmalloc (blen + sizeof ("2147483648.o"));
2409 strcpy (temp_filename, ltrans_output_list);
2410 if (blen > sizeof (".out")
2411 && strcmp (temp_filename + blen - sizeof (".out") + 1,
2412 ".out") == 0)
2413 temp_filename[blen - sizeof (".out") + 1] = '\0';
2414 blen = strlen (temp_filename);
2416 n_sets = ltrans_partitions.length ();
2418 /* Sort partitions by size so small ones are compiled last.
2419 FIXME: Even when not reordering we may want to output one list for parallel make
2420 and other for final link command. */
2422 if (!flag_profile_reorder_functions || !flag_profile_use)
2423 ltrans_partitions.qsort (flag_toplevel_reorder
2424 ? cmp_partitions_size
2425 : cmp_partitions_order);
2427 for (i = 0; i < n_sets; i++)
2429 ltrans_partition part = ltrans_partitions[i];
2431 /* Write all the nodes in SET. */
2432 sprintf (temp_filename + blen, "%u.o", i);
2434 if (!quiet_flag)
2435 fprintf (stderr, " %s (%s %i insns)", temp_filename, part->name, part->insns);
2436 if (symtab->dump_file)
2438 lto_symtab_encoder_iterator lsei;
2440 fprintf (symtab->dump_file, "Writing partition %s to file %s, %i insns\n",
2441 part->name, temp_filename, part->insns);
2442 fprintf (symtab->dump_file, " Symbols in partition: ");
2443 for (lsei = lsei_start_in_partition (part->encoder); !lsei_end_p (lsei);
2444 lsei_next_in_partition (&lsei))
2446 symtab_node *node = lsei_node (lsei);
2447 fprintf (symtab->dump_file, "%s ", node->asm_name ());
2449 fprintf (symtab->dump_file, "\n Symbols in boundary: ");
2450 for (lsei = lsei_start (part->encoder); !lsei_end_p (lsei);
2451 lsei_next (&lsei))
2453 symtab_node *node = lsei_node (lsei);
2454 if (!lto_symtab_encoder_in_partition_p (part->encoder, node))
2456 fprintf (symtab->dump_file, "%s ", node->asm_name ());
2457 cgraph_node *cnode = dyn_cast <cgraph_node *> (node);
2458 if (cnode
2459 && lto_symtab_encoder_encode_body_p (part->encoder, cnode))
2460 fprintf (symtab->dump_file, "(body included)");
2461 else
2463 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2464 if (vnode
2465 && lto_symtab_encoder_encode_initializer_p (part->encoder, vnode))
2466 fprintf (symtab->dump_file, "(initializer included)");
2470 fprintf (symtab->dump_file, "\n");
2472 gcc_checking_assert (lto_symtab_encoder_size (part->encoder) || !i);
2474 stream_out (temp_filename, part->encoder, i == n_sets - 1);
2476 part->encoder = NULL;
2478 temp_filenames.safe_push (xstrdup (temp_filename));
2480 ltrans_output_list_stream = fopen (ltrans_output_list, "w");
2481 if (ltrans_output_list_stream == NULL)
2482 fatal_error (input_location,
2483 "opening LTRANS output list %s: %m", ltrans_output_list);
2484 for (i = 0; i < n_sets; i++)
2486 unsigned int len = strlen (temp_filenames[i]);
2487 if (fwrite (temp_filenames[i], 1, len, ltrans_output_list_stream) < len
2488 || fwrite ("\n", 1, 1, ltrans_output_list_stream) < 1)
2489 fatal_error (input_location, "writing to LTRANS output list %s: %m",
2490 ltrans_output_list);
2491 free (temp_filenames[i]);
2493 temp_filenames.release();
2495 lto_stats.num_output_files += n_sets;
2497 /* Close the LTRANS output list. */
2498 if (fclose (ltrans_output_list_stream))
2499 fatal_error (input_location,
2500 "closing LTRANS output list %s: %m", ltrans_output_list);
2502 free_ltrans_partitions();
2503 free (temp_filename);
2505 timevar_pop (TV_WHOPR_WPA_IO);
2509 /* If TT is a variable or function decl replace it with its
2510 prevailing variant. */
2511 #define LTO_SET_PREVAIL(tt) \
2512 do {\
2513 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
2514 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
2516 tt = lto_symtab_prevailing_decl (tt); \
2517 fixed = true; \
2519 } while (0)
2521 /* Ensure that TT isn't a replacable var of function decl. */
2522 #define LTO_NO_PREVAIL(tt) \
2523 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
2525 /* Given a tree T replace all fields referring to variables or functions
2526 with their prevailing variant. */
2527 static void
2528 lto_fixup_prevailing_decls (tree t)
2530 enum tree_code code = TREE_CODE (t);
2531 bool fixed = false;
2533 gcc_checking_assert (code != TREE_BINFO);
2534 LTO_NO_PREVAIL (TREE_TYPE (t));
2535 if (CODE_CONTAINS_STRUCT (code, TS_COMMON)
2536 /* lto_symtab_prevail_decl use TREE_CHAIN to link to the prevailing decl.
2537 in the case T is a prevailed declaration we would ICE here. */
2538 && !VAR_OR_FUNCTION_DECL_P (t))
2539 LTO_NO_PREVAIL (TREE_CHAIN (t));
2540 if (DECL_P (t))
2542 LTO_NO_PREVAIL (DECL_NAME (t));
2543 LTO_SET_PREVAIL (DECL_CONTEXT (t));
2544 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2546 LTO_SET_PREVAIL (DECL_SIZE (t));
2547 LTO_SET_PREVAIL (DECL_SIZE_UNIT (t));
2548 LTO_SET_PREVAIL (DECL_INITIAL (t));
2549 LTO_NO_PREVAIL (DECL_ATTRIBUTES (t));
2550 LTO_SET_PREVAIL (DECL_ABSTRACT_ORIGIN (t));
2552 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2554 LTO_NO_PREVAIL (t->decl_with_vis.assembler_name);
2556 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2558 LTO_NO_PREVAIL (DECL_RESULT_FLD (t));
2560 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2562 LTO_NO_PREVAIL (DECL_ARGUMENTS (t));
2563 LTO_SET_PREVAIL (DECL_FUNCTION_PERSONALITY (t));
2564 LTO_NO_PREVAIL (DECL_VINDEX (t));
2566 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2568 LTO_SET_PREVAIL (DECL_FIELD_OFFSET (t));
2569 LTO_NO_PREVAIL (DECL_BIT_FIELD_TYPE (t));
2570 LTO_NO_PREVAIL (DECL_QUALIFIER (t));
2571 LTO_NO_PREVAIL (DECL_FIELD_BIT_OFFSET (t));
2572 LTO_NO_PREVAIL (DECL_FCONTEXT (t));
2575 else if (TYPE_P (t))
2577 LTO_NO_PREVAIL (TYPE_CACHED_VALUES (t));
2578 LTO_SET_PREVAIL (TYPE_SIZE (t));
2579 LTO_SET_PREVAIL (TYPE_SIZE_UNIT (t));
2580 LTO_NO_PREVAIL (TYPE_ATTRIBUTES (t));
2581 LTO_NO_PREVAIL (TYPE_NAME (t));
2583 LTO_SET_PREVAIL (TYPE_MINVAL (t));
2584 LTO_SET_PREVAIL (TYPE_MAXVAL (t));
2585 LTO_NO_PREVAIL (t->type_non_common.binfo);
2587 LTO_SET_PREVAIL (TYPE_CONTEXT (t));
2589 LTO_NO_PREVAIL (TYPE_CANONICAL (t));
2590 LTO_NO_PREVAIL (TYPE_MAIN_VARIANT (t));
2591 LTO_NO_PREVAIL (TYPE_NEXT_VARIANT (t));
2593 else if (EXPR_P (t))
2595 int i;
2596 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
2597 LTO_SET_PREVAIL (TREE_OPERAND (t, i));
2599 else if (TREE_CODE (t) == CONSTRUCTOR)
2601 unsigned i;
2602 tree val;
2603 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, val)
2604 LTO_SET_PREVAIL (val);
2606 else
2608 switch (code)
2610 case TREE_LIST:
2611 LTO_SET_PREVAIL (TREE_VALUE (t));
2612 LTO_SET_PREVAIL (TREE_PURPOSE (t));
2613 LTO_NO_PREVAIL (TREE_PURPOSE (t));
2614 break;
2615 default:
2616 gcc_unreachable ();
2619 /* If we fixed nothing, then we missed something seen by
2620 mentions_vars_p. */
2621 gcc_checking_assert (fixed);
2623 #undef LTO_SET_PREVAIL
2624 #undef LTO_NO_PREVAIL
2626 /* Helper function of lto_fixup_decls. Walks the var and fn streams in STATE,
2627 replaces var and function decls with the corresponding prevailing def. */
2629 static void
2630 lto_fixup_state (struct lto_in_decl_state *state)
2632 unsigned i, si;
2634 /* Although we only want to replace FUNCTION_DECLs and VAR_DECLs,
2635 we still need to walk from all DECLs to find the reachable
2636 FUNCTION_DECLs and VAR_DECLs. */
2637 for (si = 0; si < LTO_N_DECL_STREAMS; si++)
2639 vec<tree, va_gc> *trees = state->streams[si];
2640 for (i = 0; i < vec_safe_length (trees); i++)
2642 tree t = (*trees)[i];
2643 if (flag_checking && TYPE_P (t))
2644 verify_type (t);
2645 if (VAR_OR_FUNCTION_DECL_P (t)
2646 && (TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
2647 (*trees)[i] = lto_symtab_prevailing_decl (t);
2652 /* Fix the decls from all FILES. Replaces each decl with the corresponding
2653 prevailing one. */
2655 static void
2656 lto_fixup_decls (struct lto_file_decl_data **files)
2658 unsigned int i;
2659 tree t;
2661 if (tree_with_vars)
2662 FOR_EACH_VEC_ELT ((*tree_with_vars), i, t)
2663 lto_fixup_prevailing_decls (t);
2665 for (i = 0; files[i]; i++)
2667 struct lto_file_decl_data *file = files[i];
2668 struct lto_in_decl_state *state = file->global_decl_state;
2669 lto_fixup_state (state);
2671 hash_table<decl_state_hasher>::iterator iter;
2672 lto_in_decl_state *elt;
2673 FOR_EACH_HASH_TABLE_ELEMENT (*file->function_decl_states, elt,
2674 lto_in_decl_state *, iter)
2675 lto_fixup_state (elt);
2679 static GTY((length ("lto_stats.num_input_files + 1"))) struct lto_file_decl_data **all_file_decl_data;
2681 /* Turn file datas for sub files into a single array, so that they look
2682 like separate files for further passes. */
2684 static void
2685 lto_flatten_files (struct lto_file_decl_data **orig, int count, int last_file_ix)
2687 struct lto_file_decl_data *n, *next;
2688 int i, k;
2690 lto_stats.num_input_files = count;
2691 all_file_decl_data
2692 = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (count + 1);
2693 /* Set the hooks so that all of the ipa passes can read in their data. */
2694 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2695 for (i = 0, k = 0; i < last_file_ix; i++)
2697 for (n = orig[i]; n != NULL; n = next)
2699 all_file_decl_data[k++] = n;
2700 next = n->next;
2701 n->next = NULL;
2704 all_file_decl_data[k] = NULL;
2705 gcc_assert (k == count);
2708 /* Input file data before flattening (i.e. splitting them to subfiles to support
2709 incremental linking. */
2710 static int real_file_count;
2711 static GTY((length ("real_file_count + 1"))) struct lto_file_decl_data **real_file_decl_data;
2713 static void print_lto_report_1 (void);
2715 /* Read all the symbols from the input files FNAMES. NFILES is the
2716 number of files requested in the command line. Instantiate a
2717 global call graph by aggregating all the sub-graphs found in each
2718 file. */
2720 static void
2721 read_cgraph_and_symbols (unsigned nfiles, const char **fnames)
2723 unsigned int i, last_file_ix;
2724 FILE *resolution;
2725 int count = 0;
2726 struct lto_file_decl_data **decl_data;
2727 symtab_node *snode;
2729 symtab->initialize ();
2731 timevar_push (TV_IPA_LTO_DECL_IN);
2733 #ifdef ACCEL_COMPILER
2734 section_name_prefix = OFFLOAD_SECTION_NAME_PREFIX;
2735 lto_stream_offload_p = true;
2736 #endif
2738 real_file_decl_data
2739 = decl_data = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (nfiles + 1);
2740 real_file_count = nfiles;
2742 /* Read the resolution file. */
2743 resolution = NULL;
2744 if (resolution_file_name)
2746 int t;
2747 unsigned num_objects;
2749 resolution = fopen (resolution_file_name, "r");
2750 if (resolution == NULL)
2751 fatal_error (input_location,
2752 "could not open symbol resolution file: %m");
2754 t = fscanf (resolution, "%u", &num_objects);
2755 gcc_assert (t == 1);
2757 /* True, since the plugin splits the archives. */
2758 gcc_assert (num_objects == nfiles);
2760 symtab->state = LTO_STREAMING;
2762 canonical_type_hash_cache = new hash_map<const_tree, hashval_t> (251);
2763 gimple_canonical_types = htab_create (16381, gimple_canonical_type_hash,
2764 gimple_canonical_type_eq, NULL);
2765 gcc_obstack_init (&tree_scc_hash_obstack);
2766 tree_scc_hash = new hash_table<tree_scc_hasher> (4096);
2768 /* Register the common node types with the canonical type machinery so
2769 we properly share alias-sets across languages and TUs. Do not
2770 expose the common nodes as type merge target - those that should be
2771 are already exposed so by pre-loading the LTO streamer caches.
2772 Do two passes - first clear TYPE_CANONICAL and then re-compute it. */
2773 for (i = 0; i < itk_none; ++i)
2774 lto_register_canonical_types (integer_types[i], true);
2775 for (i = 0; i < stk_type_kind_last; ++i)
2776 lto_register_canonical_types (sizetype_tab[i], true);
2777 for (i = 0; i < TI_MAX; ++i)
2778 lto_register_canonical_types (global_trees[i], true);
2779 for (i = 0; i < itk_none; ++i)
2780 lto_register_canonical_types (integer_types[i], false);
2781 for (i = 0; i < stk_type_kind_last; ++i)
2782 lto_register_canonical_types (sizetype_tab[i], false);
2783 for (i = 0; i < TI_MAX; ++i)
2784 lto_register_canonical_types (global_trees[i], false);
2786 if (!quiet_flag)
2787 fprintf (stderr, "Reading object files:");
2789 /* Read all of the object files specified on the command line. */
2790 for (i = 0, last_file_ix = 0; i < nfiles; ++i)
2792 struct lto_file_decl_data *file_data = NULL;
2793 if (!quiet_flag)
2795 fprintf (stderr, " %s", fnames[i]);
2796 fflush (stderr);
2799 current_lto_file = lto_obj_file_open (fnames[i], false);
2800 if (!current_lto_file)
2801 break;
2803 file_data = lto_file_read (current_lto_file, resolution, &count);
2804 if (!file_data)
2806 lto_obj_file_close (current_lto_file);
2807 free (current_lto_file);
2808 current_lto_file = NULL;
2809 break;
2812 decl_data[last_file_ix++] = file_data;
2814 lto_obj_file_close (current_lto_file);
2815 free (current_lto_file);
2816 current_lto_file = NULL;
2819 lto_flatten_files (decl_data, count, last_file_ix);
2820 lto_stats.num_input_files = count;
2821 ggc_free(decl_data);
2822 real_file_decl_data = NULL;
2824 if (resolution_file_name)
2825 fclose (resolution);
2827 /* Show the LTO report before launching LTRANS. */
2828 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
2829 print_lto_report_1 ();
2831 /* Free gimple type merging datastructures. */
2832 delete tree_scc_hash;
2833 tree_scc_hash = NULL;
2834 obstack_free (&tree_scc_hash_obstack, NULL);
2835 htab_delete (gimple_canonical_types);
2836 gimple_canonical_types = NULL;
2837 delete canonical_type_hash_cache;
2838 canonical_type_hash_cache = NULL;
2840 /* At this stage we know that majority of GGC memory is reachable.
2841 Growing the limits prevents unnecesary invocation of GGC. */
2842 ggc_grow ();
2843 ggc_collect ();
2845 /* Set the hooks so that all of the ipa passes can read in their data. */
2846 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2848 timevar_pop (TV_IPA_LTO_DECL_IN);
2850 if (!quiet_flag)
2851 fprintf (stderr, "\nReading the callgraph\n");
2853 timevar_push (TV_IPA_LTO_CGRAPH_IO);
2854 /* Read the symtab. */
2855 input_symtab ();
2857 input_offload_tables (!flag_ltrans);
2859 /* Store resolutions into the symbol table. */
2861 ld_plugin_symbol_resolution_t *res;
2862 FOR_EACH_SYMBOL (snode)
2863 if (snode->real_symbol_p ()
2864 && snode->lto_file_data
2865 && snode->lto_file_data->resolution_map
2866 && (res = snode->lto_file_data->resolution_map->get (snode->decl)))
2867 snode->resolution = *res;
2868 for (i = 0; all_file_decl_data[i]; i++)
2869 if (all_file_decl_data[i]->resolution_map)
2871 delete all_file_decl_data[i]->resolution_map;
2872 all_file_decl_data[i]->resolution_map = NULL;
2875 timevar_pop (TV_IPA_LTO_CGRAPH_IO);
2877 if (!quiet_flag)
2878 fprintf (stderr, "Merging declarations\n");
2880 timevar_push (TV_IPA_LTO_DECL_MERGE);
2881 /* Merge global decls. In ltrans mode we read merged cgraph, we do not
2882 need to care about resolving symbols again, we only need to replace
2883 duplicated declarations read from the callgraph and from function
2884 sections. */
2885 if (!flag_ltrans)
2887 lto_symtab_merge_decls ();
2889 /* If there were errors during symbol merging bail out, we have no
2890 good way to recover here. */
2891 if (seen_error ())
2892 fatal_error (input_location,
2893 "errors during merging of translation units");
2895 /* Fixup all decls. */
2896 lto_fixup_decls (all_file_decl_data);
2898 if (tree_with_vars)
2899 ggc_free (tree_with_vars);
2900 tree_with_vars = NULL;
2901 ggc_collect ();
2903 timevar_pop (TV_IPA_LTO_DECL_MERGE);
2904 /* Each pass will set the appropriate timer. */
2906 if (!quiet_flag)
2907 fprintf (stderr, "Reading summaries\n");
2909 /* Read the IPA summary data. */
2910 if (flag_ltrans)
2911 ipa_read_optimization_summaries ();
2912 else
2913 ipa_read_summaries ();
2915 for (i = 0; all_file_decl_data[i]; i++)
2917 gcc_assert (all_file_decl_data[i]->symtab_node_encoder);
2918 lto_symtab_encoder_delete (all_file_decl_data[i]->symtab_node_encoder);
2919 all_file_decl_data[i]->symtab_node_encoder = NULL;
2920 lto_free_function_in_decl_state (all_file_decl_data[i]->global_decl_state);
2921 all_file_decl_data[i]->global_decl_state = NULL;
2922 all_file_decl_data[i]->current_decl_state = NULL;
2925 /* Finally merge the cgraph according to the decl merging decisions. */
2926 timevar_push (TV_IPA_LTO_CGRAPH_MERGE);
2927 if (symtab->dump_file)
2929 fprintf (symtab->dump_file, "Before merging:\n");
2930 symtab_node::dump_table (symtab->dump_file);
2932 if (!flag_ltrans)
2934 lto_symtab_merge_symbols ();
2935 /* Removal of unreachable symbols is needed to make verify_symtab to pass;
2936 we are still having duplicated comdat groups containing local statics.
2937 We could also just remove them while merging. */
2938 symtab->remove_unreachable_nodes (dump_file);
2940 ggc_collect ();
2941 symtab->state = IPA_SSA;
2942 /* FIXME: Technically all node removals happening here are useless, because
2943 WPA should not stream them. */
2944 if (flag_ltrans)
2945 symtab->remove_unreachable_nodes (dump_file);
2947 timevar_pop (TV_IPA_LTO_CGRAPH_MERGE);
2949 /* Indicate that the cgraph is built and ready. */
2950 symtab->function_flags_ready = true;
2952 ggc_free (all_file_decl_data);
2953 all_file_decl_data = NULL;
2957 /* Materialize all the bodies for all the nodes in the callgraph. */
2959 static void
2960 materialize_cgraph (void)
2962 struct cgraph_node *node;
2963 timevar_id_t lto_timer;
2965 if (!quiet_flag)
2966 fprintf (stderr,
2967 flag_wpa ? "Materializing decls:" : "Reading function bodies:");
2970 FOR_EACH_FUNCTION (node)
2972 if (node->lto_file_data)
2974 lto_materialize_function (node);
2975 lto_stats.num_input_cgraph_nodes++;
2980 /* Start the appropriate timer depending on the mode that we are
2981 operating in. */
2982 lto_timer = (flag_wpa) ? TV_WHOPR_WPA
2983 : (flag_ltrans) ? TV_WHOPR_LTRANS
2984 : TV_LTO;
2985 timevar_push (lto_timer);
2987 current_function_decl = NULL;
2988 set_cfun (NULL);
2990 if (!quiet_flag)
2991 fprintf (stderr, "\n");
2993 timevar_pop (lto_timer);
2997 /* Show various memory usage statistics related to LTO. */
2998 static void
2999 print_lto_report_1 (void)
3001 const char *pfx = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS";
3002 fprintf (stderr, "%s statistics\n", pfx);
3004 fprintf (stderr, "[%s] read %lu SCCs of average size %f\n",
3005 pfx, num_sccs_read, total_scc_size / (double)num_sccs_read);
3006 fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx, total_scc_size);
3007 if (flag_wpa && tree_scc_hash)
3009 fprintf (stderr, "[%s] tree SCC table: size %ld, %ld elements, "
3010 "collision ratio: %f\n", pfx,
3011 (long) tree_scc_hash->size (),
3012 (long) tree_scc_hash->elements (),
3013 tree_scc_hash->collisions ());
3014 hash_table<tree_scc_hasher>::iterator hiter;
3015 tree_scc *scc, *max_scc = NULL;
3016 unsigned max_length = 0;
3017 FOR_EACH_HASH_TABLE_ELEMENT (*tree_scc_hash, scc, x, hiter)
3019 unsigned length = 0;
3020 tree_scc *s = scc;
3021 for (; s; s = s->next)
3022 length++;
3023 if (length > max_length)
3025 max_length = length;
3026 max_scc = scc;
3029 fprintf (stderr, "[%s] tree SCC max chain length %u (size %u)\n",
3030 pfx, max_length, max_scc->len);
3031 fprintf (stderr, "[%s] Compared %lu SCCs, %lu collisions (%f)\n", pfx,
3032 num_scc_compares, num_scc_compare_collisions,
3033 num_scc_compare_collisions / (double) num_scc_compares);
3034 fprintf (stderr, "[%s] Merged %lu SCCs\n", pfx, num_sccs_merged);
3035 fprintf (stderr, "[%s] Merged %lu tree bodies\n", pfx,
3036 total_scc_size_merged);
3037 fprintf (stderr, "[%s] Merged %lu types\n", pfx, num_merged_types);
3038 fprintf (stderr, "[%s] %lu types prevailed (%lu associated trees)\n",
3039 pfx, num_prevailing_types, num_type_scc_trees);
3040 fprintf (stderr, "[%s] GIMPLE canonical type table: size %ld, "
3041 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3042 (long) htab_size (gimple_canonical_types),
3043 (long) htab_elements (gimple_canonical_types),
3044 (long) gimple_canonical_types->searches,
3045 (long) gimple_canonical_types->collisions,
3046 htab_collisions (gimple_canonical_types));
3047 fprintf (stderr, "[%s] GIMPLE canonical type pointer-map: "
3048 "%lu elements, %ld searches\n", pfx,
3049 num_canonical_type_hash_entries,
3050 num_canonical_type_hash_queries);
3053 print_lto_report (pfx);
3056 /* Perform whole program analysis (WPA) on the callgraph and write out the
3057 optimization plan. */
3059 static void
3060 do_whole_program_analysis (void)
3062 symtab_node *node;
3064 lto_parallelism = 1;
3066 /* TODO: jobserver communicatoin is not supported, yet. */
3067 if (!strcmp (flag_wpa, "jobserver"))
3068 lto_parallelism = -1;
3069 else
3071 lto_parallelism = atoi (flag_wpa);
3072 if (lto_parallelism <= 0)
3073 lto_parallelism = 0;
3076 timevar_start (TV_PHASE_OPT_GEN);
3078 /* Note that since we are in WPA mode, materialize_cgraph will not
3079 actually read in all the function bodies. It only materializes
3080 the decls and cgraph nodes so that analysis can be performed. */
3081 materialize_cgraph ();
3083 /* Reading in the cgraph uses different timers, start timing WPA now. */
3084 timevar_push (TV_WHOPR_WPA);
3086 if (pre_ipa_mem_report)
3088 fprintf (stderr, "Memory consumption before IPA\n");
3089 dump_memory_report (false);
3092 symtab->function_flags_ready = true;
3094 if (symtab->dump_file)
3095 symtab_node::dump_table (symtab->dump_file);
3096 bitmap_obstack_initialize (NULL);
3097 symtab->state = IPA_SSA;
3099 execute_ipa_pass_list (g->get_passes ()->all_regular_ipa_passes);
3101 /* When WPA analysis raises errors, do not bother to output anything. */
3102 if (seen_error ())
3103 return;
3105 if (symtab->dump_file)
3107 fprintf (symtab->dump_file, "Optimized ");
3108 symtab_node::dump_table (symtab->dump_file);
3111 symtab_node::checking_verify_symtab_nodes ();
3112 bitmap_obstack_release (NULL);
3114 /* We are about to launch the final LTRANS phase, stop the WPA timer. */
3115 timevar_pop (TV_WHOPR_WPA);
3117 timevar_push (TV_WHOPR_PARTITIONING);
3118 if (flag_lto_partition == LTO_PARTITION_1TO1)
3119 lto_1_to_1_map ();
3120 else if (flag_lto_partition == LTO_PARTITION_MAX)
3121 lto_max_map ();
3122 else if (flag_lto_partition == LTO_PARTITION_ONE)
3123 lto_balanced_map (1, INT_MAX);
3124 else if (flag_lto_partition == LTO_PARTITION_BALANCED)
3125 lto_balanced_map (PARAM_VALUE (PARAM_LTO_PARTITIONS),
3126 PARAM_VALUE (MAX_PARTITION_SIZE));
3127 else
3128 gcc_unreachable ();
3130 /* Inline summaries are needed for balanced partitioning. Free them now so
3131 the memory can be used for streamer caches. */
3132 inline_free_summary ();
3134 /* AUX pointers are used by partitioning code to bookkeep number of
3135 partitions symbol is in. This is no longer needed. */
3136 FOR_EACH_SYMBOL (node)
3137 node->aux = NULL;
3139 lto_stats.num_cgraph_partitions += ltrans_partitions.length ();
3141 /* Find out statics that need to be promoted
3142 to globals with hidden visibility because they are accessed from multiple
3143 partitions. */
3144 lto_promote_cross_file_statics ();
3145 timevar_pop (TV_WHOPR_PARTITIONING);
3147 timevar_stop (TV_PHASE_OPT_GEN);
3149 /* Collect a last time - in lto_wpa_write_files we may end up forking
3150 with the idea that this doesn't increase memory usage. So we
3151 absoultely do not want to collect after that. */
3152 ggc_collect ();
3154 timevar_start (TV_PHASE_STREAM_OUT);
3155 if (!quiet_flag)
3157 fprintf (stderr, "\nStreaming out");
3158 fflush (stderr);
3160 lto_wpa_write_files ();
3161 if (!quiet_flag)
3162 fprintf (stderr, "\n");
3163 timevar_stop (TV_PHASE_STREAM_OUT);
3165 if (post_ipa_mem_report)
3167 fprintf (stderr, "Memory consumption after IPA\n");
3168 dump_memory_report (false);
3171 /* Show the LTO report before launching LTRANS. */
3172 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3173 print_lto_report_1 ();
3174 if (mem_report_wpa)
3175 dump_memory_report (true);
3179 static GTY(()) tree lto_eh_personality_decl;
3181 /* Return the LTO personality function decl. */
3183 tree
3184 lto_eh_personality (void)
3186 if (!lto_eh_personality_decl)
3188 /* Use the first personality DECL for our personality if we don't
3189 support multiple ones. This ensures that we don't artificially
3190 create the need for them in a single-language program. */
3191 if (first_personality_decl && !dwarf2out_do_cfi_asm ())
3192 lto_eh_personality_decl = first_personality_decl;
3193 else
3194 lto_eh_personality_decl = lhd_gcc_personality ();
3197 return lto_eh_personality_decl;
3200 /* Set the process name based on the LTO mode. */
3202 static void
3203 lto_process_name (void)
3205 if (flag_lto)
3206 setproctitle ("lto1-lto");
3207 if (flag_wpa)
3208 setproctitle ("lto1-wpa");
3209 if (flag_ltrans)
3210 setproctitle ("lto1-ltrans");
3214 /* Initialize the LTO front end. */
3216 static void
3217 lto_init (void)
3219 lto_process_name ();
3220 lto_streamer_hooks_init ();
3221 lto_reader_init ();
3222 lto_set_in_hooks (NULL, get_section_data, free_section_data);
3223 memset (&lto_stats, 0, sizeof (lto_stats));
3224 bitmap_obstack_initialize (NULL);
3225 gimple_register_cfg_hooks ();
3226 #ifndef ACCEL_COMPILER
3227 unsigned char *table
3228 = ggc_vec_alloc<unsigned char> (MAX_MACHINE_MODE);
3229 for (int m = 0; m < MAX_MACHINE_MODE; m++)
3230 table[m] = m;
3231 lto_mode_identity_table = table;
3232 #endif
3235 /* Create artificial pointers for "omp declare target link" vars. */
3237 static void
3238 offload_handle_link_vars (void)
3240 #ifdef ACCEL_COMPILER
3241 varpool_node *var;
3242 FOR_EACH_VARIABLE (var)
3243 if (lookup_attribute ("omp declare target link",
3244 DECL_ATTRIBUTES (var->decl)))
3246 tree type = build_pointer_type (TREE_TYPE (var->decl));
3247 tree link_ptr_var = make_node (VAR_DECL);
3248 TREE_TYPE (link_ptr_var) = type;
3249 TREE_USED (link_ptr_var) = 1;
3250 TREE_STATIC (link_ptr_var) = 1;
3251 SET_DECL_MODE (link_ptr_var, TYPE_MODE (type));
3252 DECL_SIZE (link_ptr_var) = TYPE_SIZE (type);
3253 DECL_SIZE_UNIT (link_ptr_var) = TYPE_SIZE_UNIT (type);
3254 DECL_ARTIFICIAL (link_ptr_var) = 1;
3255 tree var_name = DECL_ASSEMBLER_NAME (var->decl);
3256 char *new_name
3257 = ACONCAT ((IDENTIFIER_POINTER (var_name), "_linkptr", NULL));
3258 DECL_NAME (link_ptr_var) = get_identifier (new_name);
3259 SET_DECL_ASSEMBLER_NAME (link_ptr_var, DECL_NAME (link_ptr_var));
3260 SET_DECL_VALUE_EXPR (var->decl, build_simple_mem_ref (link_ptr_var));
3261 DECL_HAS_VALUE_EXPR_P (var->decl) = 1;
3263 #endif
3267 /* Main entry point for the GIMPLE front end. This front end has
3268 three main personalities:
3270 - LTO (-flto). All the object files on the command line are
3271 loaded in memory and processed as a single translation unit.
3272 This is the traditional link-time optimization behavior.
3274 - WPA (-fwpa). Only the callgraph and summary information for
3275 files in the command file are loaded. A single callgraph
3276 (without function bodies) is instantiated for the whole set of
3277 files. IPA passes are only allowed to analyze the call graph
3278 and make transformation decisions. The callgraph is
3279 partitioned, each partition is written to a new object file
3280 together with the transformation decisions.
3282 - LTRANS (-fltrans). Similar to -flto but it prevents the IPA
3283 summary files from running again. Since WPA computed summary
3284 information and decided what transformations to apply, LTRANS
3285 simply applies them. */
3287 void
3288 lto_main (void)
3290 /* LTO is called as a front end, even though it is not a front end.
3291 Because it is called as a front end, TV_PHASE_PARSING and
3292 TV_PARSE_GLOBAL are active, and we need to turn them off while
3293 doing LTO. Later we turn them back on so they are active up in
3294 toplev.c. */
3295 timevar_pop (TV_PARSE_GLOBAL);
3296 timevar_stop (TV_PHASE_PARSING);
3298 timevar_start (TV_PHASE_SETUP);
3300 /* Initialize the LTO front end. */
3301 lto_init ();
3303 timevar_stop (TV_PHASE_SETUP);
3304 timevar_start (TV_PHASE_STREAM_IN);
3306 /* Read all the symbols and call graph from all the files in the
3307 command line. */
3308 read_cgraph_and_symbols (num_in_fnames, in_fnames);
3310 timevar_stop (TV_PHASE_STREAM_IN);
3312 if (!seen_error ())
3314 offload_handle_link_vars ();
3316 /* If WPA is enabled analyze the whole call graph and create an
3317 optimization plan. Otherwise, read in all the function
3318 bodies and continue with optimization. */
3319 if (flag_wpa)
3320 do_whole_program_analysis ();
3321 else
3323 timevar_start (TV_PHASE_OPT_GEN);
3325 materialize_cgraph ();
3326 if (!flag_ltrans)
3327 lto_promote_statics_nonwpa ();
3329 /* Annotate the CU DIE and mark the early debug phase as finished. */
3330 debug_hooks->early_finish ("<artificial>");
3332 /* Let the middle end know that we have read and merged all of
3333 the input files. */
3334 symtab->compile ();
3336 timevar_stop (TV_PHASE_OPT_GEN);
3338 /* FIXME lto, if the processes spawned by WPA fail, we miss
3339 the chance to print WPA's report, so WPA will call
3340 print_lto_report before launching LTRANS. If LTRANS was
3341 launched directly by the driver we would not need to do
3342 this. */
3343 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3344 print_lto_report_1 ();
3348 /* Here we make LTO pretend to be a parser. */
3349 timevar_start (TV_PHASE_PARSING);
3350 timevar_push (TV_PARSE_GLOBAL);
3353 #include "gt-lto-lto.h"