d: Merge upstream dmd d579c467c1, phobos 88aa69b14.
[official-gcc.git] / gcc / lto / lto-common.cc
blobd8d0404c54e4f096b48e55bd6e4e948ffee7fa42
1 /* Top-level LTO routines.
2 Copyright (C) 2009-2022 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-fnsummary.h"
50 #include "ipa-utils.h"
51 #include "gomp-constants.h"
52 #include "lto-symtab.h"
53 #include "stringpool.h"
54 #include "fold-const.h"
55 #include "attribs.h"
56 #include "builtins.h"
57 #include "lto-common.h"
58 #include "tree-pretty-print.h"
59 #include "print-tree.h"
61 /* True when no new types are going to be streamd from the global stream. */
63 static bool type_streaming_finished = false;
65 GTY(()) tree first_personality_decl;
67 GTY(()) const unsigned char *lto_mode_identity_table;
69 /* Returns a hash code for P. */
71 static hashval_t
72 hash_name (const void *p)
74 const struct lto_section_slot *ds = (const struct lto_section_slot *) p;
75 return (hashval_t) htab_hash_string (ds->name);
79 /* Returns nonzero if P1 and P2 are equal. */
81 static int
82 eq_name (const void *p1, const void *p2)
84 const struct lto_section_slot *s1
85 = (const struct lto_section_slot *) p1;
86 const struct lto_section_slot *s2
87 = (const struct lto_section_slot *) p2;
89 return strcmp (s1->name, s2->name) == 0;
92 /* Free lto_section_slot. */
94 static void
95 free_with_string (void *arg)
97 struct lto_section_slot *s = (struct lto_section_slot *)arg;
99 free (CONST_CAST (char *, s->name));
100 free (arg);
103 /* Create section hash table. */
105 htab_t
106 lto_obj_create_section_hash_table (void)
108 return htab_create (37, hash_name, eq_name, free_with_string);
111 /* Delete an allocated integer KEY in the splay tree. */
113 static void
114 lto_splay_tree_delete_id (splay_tree_key key)
116 free ((void *) key);
119 /* Compare splay tree node ids A and B. */
121 static int
122 lto_splay_tree_compare_ids (splay_tree_key a, splay_tree_key b)
124 unsigned HOST_WIDE_INT ai;
125 unsigned HOST_WIDE_INT bi;
127 ai = *(unsigned HOST_WIDE_INT *) a;
128 bi = *(unsigned HOST_WIDE_INT *) b;
130 if (ai < bi)
131 return -1;
132 else if (ai > bi)
133 return 1;
134 return 0;
137 /* Look up splay tree node by ID in splay tree T. */
139 static splay_tree_node
140 lto_splay_tree_lookup (splay_tree t, unsigned HOST_WIDE_INT id)
142 return splay_tree_lookup (t, (splay_tree_key) &id);
145 /* Check if KEY has ID. */
147 static bool
148 lto_splay_tree_id_equal_p (splay_tree_key key, unsigned HOST_WIDE_INT id)
150 return *(unsigned HOST_WIDE_INT *) key == id;
153 /* Insert a splay tree node into tree T with ID as key and FILE_DATA as value.
154 The ID is allocated separately because we need HOST_WIDE_INTs which may
155 be wider than a splay_tree_key. */
157 static void
158 lto_splay_tree_insert (splay_tree t, unsigned HOST_WIDE_INT id,
159 struct lto_file_decl_data *file_data)
161 unsigned HOST_WIDE_INT *idp = XCNEW (unsigned HOST_WIDE_INT);
162 *idp = id;
163 splay_tree_insert (t, (splay_tree_key) idp, (splay_tree_value) file_data);
166 /* Create a splay tree. */
168 static splay_tree
169 lto_splay_tree_new (void)
171 return splay_tree_new (lto_splay_tree_compare_ids,
172 lto_splay_tree_delete_id,
173 NULL);
176 /* Decode the content of memory pointed to by DATA in the in decl
177 state object STATE. DATA_IN points to a data_in structure for
178 decoding. Return the address after the decoded object in the
179 input. */
181 static const uint32_t *
182 lto_read_in_decl_state (class data_in *data_in, const uint32_t *data,
183 struct lto_in_decl_state *state)
185 uint32_t ix;
186 tree decl;
187 uint32_t i, j;
189 ix = *data++;
190 state->compressed = ix & 1;
191 ix /= 2;
192 decl = streamer_tree_cache_get_tree (data_in->reader_cache, ix);
193 if (!VAR_OR_FUNCTION_DECL_P (decl))
195 gcc_assert (decl == void_type_node);
196 decl = NULL_TREE;
198 state->fn_decl = decl;
200 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
202 uint32_t size = *data++;
203 vec<tree, va_gc> *decls = NULL;
204 vec_alloc (decls, size);
206 for (j = 0; j < size; j++)
207 vec_safe_push (decls,
208 streamer_tree_cache_get_tree (data_in->reader_cache,
209 data[j]));
211 state->streams[i] = decls;
212 data += size;
215 return data;
219 /* Global canonical type table. */
220 static htab_t gimple_canonical_types;
221 static hash_map<const_tree, hashval_t> *canonical_type_hash_cache;
222 static unsigned long num_canonical_type_hash_entries;
223 static unsigned long num_canonical_type_hash_queries;
225 /* Types postponed for registration to the canonical type table.
226 During streaming we postpone all TYPE_CXX_ODR_P types so we can alter
227 decide whether there is conflict with non-ODR type or not. */
228 static GTY(()) vec<tree, va_gc> *types_to_register = NULL;
230 static void iterative_hash_canonical_type (tree type, inchash::hash &hstate);
231 static hashval_t gimple_canonical_type_hash (const void *p);
232 static hashval_t gimple_register_canonical_type_1 (tree t, hashval_t hash);
234 /* Returning a hash value for gimple type TYPE.
236 The hash value returned is equal for types considered compatible
237 by gimple_canonical_types_compatible_p. */
239 static hashval_t
240 hash_canonical_type (tree type)
242 inchash::hash hstate;
243 enum tree_code code;
245 /* We compute alias sets only for types that needs them.
246 Be sure we do not recurse to something else as we cannot hash incomplete
247 types in a way they would have same hash value as compatible complete
248 types. */
249 gcc_checking_assert (type_with_alias_set_p (type));
251 /* Combine a few common features of types so that types are grouped into
252 smaller sets; when searching for existing matching types to merge,
253 only existing types having the same features as the new type will be
254 checked. */
255 code = tree_code_for_canonical_type_merging (TREE_CODE (type));
256 hstate.add_int (code);
257 hstate.add_int (TYPE_MODE (type));
259 /* Incorporate common features of numerical types. */
260 if (INTEGRAL_TYPE_P (type)
261 || SCALAR_FLOAT_TYPE_P (type)
262 || FIXED_POINT_TYPE_P (type)
263 || TREE_CODE (type) == OFFSET_TYPE
264 || POINTER_TYPE_P (type))
266 hstate.add_int (TYPE_PRECISION (type));
267 if (!type_with_interoperable_signedness (type))
268 hstate.add_int (TYPE_UNSIGNED (type));
271 if (VECTOR_TYPE_P (type))
273 hstate.add_poly_int (TYPE_VECTOR_SUBPARTS (type));
274 hstate.add_int (TYPE_UNSIGNED (type));
277 if (TREE_CODE (type) == COMPLEX_TYPE)
278 hstate.add_int (TYPE_UNSIGNED (type));
280 /* Fortran's C_SIGNED_CHAR is !TYPE_STRING_FLAG but needs to be
281 interoperable with "signed char". Unless all frontends are revisited to
282 agree on these types, we must ignore the flag completely. */
284 /* Fortran standard define C_PTR type that is compatible with every
285 C pointer. For this reason we need to glob all pointers into one.
286 Still pointers in different address spaces are not compatible. */
287 if (POINTER_TYPE_P (type))
288 hstate.add_int (TYPE_ADDR_SPACE (TREE_TYPE (type)));
290 /* For array types hash the domain bounds and the string flag. */
291 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
293 hstate.add_int (TYPE_STRING_FLAG (type));
294 /* OMP lowering can introduce error_mark_node in place of
295 random local decls in types. */
296 if (TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
297 inchash::add_expr (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), hstate);
298 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
299 inchash::add_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), hstate);
302 /* Recurse for aggregates with a single element type. */
303 if (TREE_CODE (type) == ARRAY_TYPE
304 || TREE_CODE (type) == COMPLEX_TYPE
305 || TREE_CODE (type) == VECTOR_TYPE)
306 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
308 /* Incorporate function return and argument types. */
309 if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
311 unsigned na;
312 tree p;
314 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
316 for (p = TYPE_ARG_TYPES (type), na = 0; p; p = TREE_CHAIN (p))
318 iterative_hash_canonical_type (TREE_VALUE (p), hstate);
319 na++;
322 hstate.add_int (na);
325 if (RECORD_OR_UNION_TYPE_P (type))
327 unsigned nf;
328 tree f;
330 for (f = TYPE_FIELDS (type), nf = 0; f; f = TREE_CHAIN (f))
331 if (TREE_CODE (f) == FIELD_DECL
332 && (! DECL_SIZE (f)
333 || ! integer_zerop (DECL_SIZE (f))))
335 iterative_hash_canonical_type (TREE_TYPE (f), hstate);
336 nf++;
339 hstate.add_int (nf);
342 return hstate.end();
345 /* Returning a hash value for gimple type TYPE combined with VAL. */
347 static void
348 iterative_hash_canonical_type (tree type, inchash::hash &hstate)
350 hashval_t v;
352 /* All type variants have same TYPE_CANONICAL. */
353 type = TYPE_MAIN_VARIANT (type);
355 if (!canonical_type_used_p (type))
356 v = hash_canonical_type (type);
357 /* An already processed type. */
358 else if (TYPE_CANONICAL (type))
360 type = TYPE_CANONICAL (type);
361 v = gimple_canonical_type_hash (type);
363 else
365 /* Canonical types should not be able to form SCCs by design, this
366 recursion is just because we do not register canonical types in
367 optimal order. To avoid quadratic behavior also register the
368 type here. */
369 v = hash_canonical_type (type);
370 v = gimple_register_canonical_type_1 (type, v);
372 hstate.merge_hash (v);
375 /* Returns the hash for a canonical type P. */
377 static hashval_t
378 gimple_canonical_type_hash (const void *p)
380 num_canonical_type_hash_queries++;
381 hashval_t *slot = canonical_type_hash_cache->get ((const_tree) p);
382 gcc_assert (slot != NULL);
383 return *slot;
388 /* Returns nonzero if P1 and P2 are equal. */
390 static int
391 gimple_canonical_type_eq (const void *p1, const void *p2)
393 const_tree t1 = (const_tree) p1;
394 const_tree t2 = (const_tree) p2;
395 return gimple_canonical_types_compatible_p (CONST_CAST_TREE (t1),
396 CONST_CAST_TREE (t2));
399 /* Main worker for gimple_register_canonical_type. */
401 static hashval_t
402 gimple_register_canonical_type_1 (tree t, hashval_t hash)
404 void **slot;
406 gcc_checking_assert (TYPE_P (t) && !TYPE_CANONICAL (t)
407 && type_with_alias_set_p (t)
408 && canonical_type_used_p (t));
410 /* ODR types for which there is no ODR violation and we did not record
411 structurally equivalent non-ODR type can be treated as unique by their
412 name.
414 hash passed to gimple_register_canonical_type_1 is a structural hash
415 that we can use to lookup structurally equivalent non-ODR type.
416 In case we decide to treat type as unique ODR type we recompute hash based
417 on name and let TBAA machinery know about our decision. */
418 if (RECORD_OR_UNION_TYPE_P (t) && odr_type_p (t)
419 && TYPE_CXX_ODR_P (t) && !odr_type_violation_reported_p (t))
421 /* Anonymous namespace types never conflict with non-C++ types. */
422 if (type_with_linkage_p (t) && type_in_anonymous_namespace_p (t))
423 slot = NULL;
424 else
426 /* Here we rely on fact that all non-ODR types was inserted into
427 canonical type hash and thus we can safely detect conflicts between
428 ODR types and interoperable non-ODR types. */
429 gcc_checking_assert (type_streaming_finished
430 && TYPE_MAIN_VARIANT (t) == t);
431 slot = htab_find_slot_with_hash (gimple_canonical_types, t, hash,
432 NO_INSERT);
434 if (slot && !TYPE_CXX_ODR_P (*(tree *)slot))
436 tree nonodr = *(tree *)slot;
437 gcc_checking_assert (!flag_ltrans);
438 if (symtab->dump_file)
440 fprintf (symtab->dump_file,
441 "ODR and non-ODR type conflict: ");
442 print_generic_expr (symtab->dump_file, t);
443 fprintf (symtab->dump_file, " and ");
444 print_generic_expr (symtab->dump_file, nonodr);
445 fprintf (symtab->dump_file, " mangled:%s\n",
446 IDENTIFIER_POINTER
447 (DECL_ASSEMBLER_NAME (TYPE_NAME (t))));
449 /* Set canonical for T and all other ODR equivalent duplicates
450 including incomplete structures. */
451 set_type_canonical_for_odr_type (t, nonodr);
453 else
455 tree prevail = prevailing_odr_type (t);
457 if (symtab->dump_file)
459 fprintf (symtab->dump_file,
460 "New canonical ODR type: ");
461 print_generic_expr (symtab->dump_file, t);
462 fprintf (symtab->dump_file, " mangled:%s\n",
463 IDENTIFIER_POINTER
464 (DECL_ASSEMBLER_NAME (TYPE_NAME (t))));
466 /* Set canonical for T and all other ODR equivalent duplicates
467 including incomplete structures. */
468 set_type_canonical_for_odr_type (t, prevail);
469 enable_odr_based_tbaa (t);
470 if (!type_in_anonymous_namespace_p (t))
471 hash = htab_hash_string (IDENTIFIER_POINTER
472 (DECL_ASSEMBLER_NAME
473 (TYPE_NAME (t))));
474 else
475 hash = TYPE_UID (t);
477 /* All variants of t now have TYPE_CANONICAL set to prevail.
478 Update canonical type hash cache accordingly. */
479 num_canonical_type_hash_entries++;
480 bool existed_p = canonical_type_hash_cache->put (prevail, hash);
481 gcc_checking_assert (!existed_p);
483 return hash;
486 slot = htab_find_slot_with_hash (gimple_canonical_types, t, hash, INSERT);
487 if (*slot)
489 tree new_type = (tree)(*slot);
490 gcc_checking_assert (new_type != t);
491 TYPE_CANONICAL (t) = new_type;
493 else
495 TYPE_CANONICAL (t) = t;
496 *slot = (void *) t;
497 /* Cache the just computed hash value. */
498 num_canonical_type_hash_entries++;
499 bool existed_p = canonical_type_hash_cache->put (t, hash);
500 gcc_assert (!existed_p);
502 return hash;
505 /* Register type T in the global type table gimple_types and set
506 TYPE_CANONICAL of T accordingly.
507 This is used by LTO to merge structurally equivalent types for
508 type-based aliasing purposes across different TUs and languages.
510 ??? This merging does not exactly match how the tree.cc middle-end
511 functions will assign TYPE_CANONICAL when new types are created
512 during optimization (which at least happens for pointer and array
513 types). */
515 static void
516 gimple_register_canonical_type (tree t)
518 if (TYPE_CANONICAL (t) || !type_with_alias_set_p (t)
519 || !canonical_type_used_p (t))
520 return;
522 /* Canonical types are same among all complete variants. */
523 if (TYPE_CANONICAL (TYPE_MAIN_VARIANT (t)))
524 TYPE_CANONICAL (t) = TYPE_CANONICAL (TYPE_MAIN_VARIANT (t));
525 else
527 hashval_t h = hash_canonical_type (TYPE_MAIN_VARIANT (t));
528 gimple_register_canonical_type_1 (TYPE_MAIN_VARIANT (t), h);
529 TYPE_CANONICAL (t) = TYPE_CANONICAL (TYPE_MAIN_VARIANT (t));
533 /* Re-compute TYPE_CANONICAL for NODE and related types. */
535 static void
536 lto_register_canonical_types (tree node, bool first_p)
538 if (!node
539 || !TYPE_P (node))
540 return;
542 if (first_p)
543 TYPE_CANONICAL (node) = NULL_TREE;
545 if (POINTER_TYPE_P (node)
546 || TREE_CODE (node) == COMPLEX_TYPE
547 || TREE_CODE (node) == ARRAY_TYPE)
548 lto_register_canonical_types (TREE_TYPE (node), first_p);
550 if (!first_p)
551 gimple_register_canonical_type (node);
554 /* Finish canonical type calculation: after all units has been streamed in we
555 can check if given ODR type structurally conflicts with a non-ODR type. In
556 the first case we set type canonical according to the canonical type hash.
557 In the second case we use type names. */
559 static void
560 lto_register_canonical_types_for_odr_types ()
562 tree t;
563 unsigned int i;
565 if (!types_to_register)
566 return;
568 type_streaming_finished = true;
570 /* Be sure that no types derived from ODR types was
571 not inserted into the hash table. */
572 if (flag_checking)
573 FOR_EACH_VEC_ELT (*types_to_register, i, t)
574 gcc_assert (!TYPE_CANONICAL (t));
576 /* Register all remaining types. */
577 FOR_EACH_VEC_ELT (*types_to_register, i, t)
579 /* For pre-streamed types like va-arg it is possible that main variant
580 is !CXX_ODR_P while the variant (which is streamed) is.
581 Copy CXX_ODR_P to make type verifier happy. This is safe because
582 in canonical type calculation we only consider main variants.
583 However we can not change this flag before streaming is finished
584 to not affect tree merging. */
585 TYPE_CXX_ODR_P (t) = TYPE_CXX_ODR_P (TYPE_MAIN_VARIANT (t));
586 if (!TYPE_CANONICAL (t))
587 gimple_register_canonical_type (t);
592 /* Remember trees that contains references to declarations. */
593 vec <tree, va_gc> *tree_with_vars;
595 #define CHECK_VAR(tt) \
596 do \
598 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
599 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
600 return true; \
601 } while (0)
603 #define CHECK_NO_VAR(tt) \
604 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
606 /* Check presence of pointers to decls in fields of a tree_typed T. */
608 static inline bool
609 mentions_vars_p_typed (tree t)
611 CHECK_NO_VAR (TREE_TYPE (t));
612 return false;
615 /* Check presence of pointers to decls in fields of a tree_common T. */
617 static inline bool
618 mentions_vars_p_common (tree t)
620 if (mentions_vars_p_typed (t))
621 return true;
622 CHECK_NO_VAR (TREE_CHAIN (t));
623 return false;
626 /* Check presence of pointers to decls in fields of a decl_minimal T. */
628 static inline bool
629 mentions_vars_p_decl_minimal (tree t)
631 if (mentions_vars_p_common (t))
632 return true;
633 CHECK_NO_VAR (DECL_NAME (t));
634 CHECK_VAR (DECL_CONTEXT (t));
635 return false;
638 /* Check presence of pointers to decls in fields of a decl_common T. */
640 static inline bool
641 mentions_vars_p_decl_common (tree t)
643 if (mentions_vars_p_decl_minimal (t))
644 return true;
645 CHECK_VAR (DECL_SIZE (t));
646 CHECK_VAR (DECL_SIZE_UNIT (t));
647 CHECK_VAR (DECL_INITIAL (t));
648 CHECK_NO_VAR (DECL_ATTRIBUTES (t));
649 CHECK_VAR (DECL_ABSTRACT_ORIGIN (t));
650 return false;
653 /* Check presence of pointers to decls in fields of a decl_with_vis T. */
655 static inline bool
656 mentions_vars_p_decl_with_vis (tree t)
658 if (mentions_vars_p_decl_common (t))
659 return true;
661 /* Accessor macro has side-effects, use field-name here. */
662 CHECK_NO_VAR (DECL_ASSEMBLER_NAME_RAW (t));
663 return false;
666 /* Check presence of pointers to decls in fields of a decl_non_common T. */
668 static inline bool
669 mentions_vars_p_decl_non_common (tree t)
671 if (mentions_vars_p_decl_with_vis (t))
672 return true;
673 CHECK_NO_VAR (DECL_RESULT_FLD (t));
674 return false;
677 /* Check presence of pointers to decls in fields of a decl_non_common T. */
679 static bool
680 mentions_vars_p_function (tree t)
682 if (mentions_vars_p_decl_non_common (t))
683 return true;
684 CHECK_NO_VAR (DECL_ARGUMENTS (t));
685 CHECK_NO_VAR (DECL_VINDEX (t));
686 CHECK_VAR (DECL_FUNCTION_PERSONALITY (t));
687 return false;
690 /* Check presence of pointers to decls in fields of a field_decl T. */
692 static bool
693 mentions_vars_p_field_decl (tree t)
695 if (mentions_vars_p_decl_common (t))
696 return true;
697 CHECK_VAR (DECL_FIELD_OFFSET (t));
698 CHECK_NO_VAR (DECL_BIT_FIELD_TYPE (t));
699 CHECK_NO_VAR (DECL_QUALIFIER (t));
700 CHECK_NO_VAR (DECL_FIELD_BIT_OFFSET (t));
701 CHECK_NO_VAR (DECL_FCONTEXT (t));
702 return false;
705 /* Check presence of pointers to decls in fields of a type T. */
707 static bool
708 mentions_vars_p_type (tree t)
710 if (mentions_vars_p_common (t))
711 return true;
712 CHECK_NO_VAR (TYPE_CACHED_VALUES (t));
713 CHECK_VAR (TYPE_SIZE (t));
714 CHECK_VAR (TYPE_SIZE_UNIT (t));
715 CHECK_NO_VAR (TYPE_ATTRIBUTES (t));
716 CHECK_NO_VAR (TYPE_NAME (t));
718 CHECK_VAR (TYPE_MIN_VALUE_RAW (t));
719 CHECK_VAR (TYPE_MAX_VALUE_RAW (t));
721 /* Accessor is for derived node types only. */
722 CHECK_NO_VAR (TYPE_LANG_SLOT_1 (t));
724 CHECK_VAR (TYPE_CONTEXT (t));
725 CHECK_NO_VAR (TYPE_CANONICAL (t));
726 CHECK_NO_VAR (TYPE_MAIN_VARIANT (t));
727 CHECK_NO_VAR (TYPE_NEXT_VARIANT (t));
728 return false;
731 /* Check presence of pointers to decls in fields of a BINFO T. */
733 static bool
734 mentions_vars_p_binfo (tree t)
736 unsigned HOST_WIDE_INT i, n;
738 if (mentions_vars_p_common (t))
739 return true;
740 CHECK_VAR (BINFO_VTABLE (t));
741 CHECK_NO_VAR (BINFO_OFFSET (t));
742 CHECK_NO_VAR (BINFO_VIRTUALS (t));
743 CHECK_NO_VAR (BINFO_VPTR_FIELD (t));
744 n = vec_safe_length (BINFO_BASE_ACCESSES (t));
745 for (i = 0; i < n; i++)
746 CHECK_NO_VAR (BINFO_BASE_ACCESS (t, i));
747 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
748 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
749 n = BINFO_N_BASE_BINFOS (t);
750 for (i = 0; i < n; i++)
751 CHECK_NO_VAR (BINFO_BASE_BINFO (t, i));
752 return false;
755 /* Check presence of pointers to decls in fields of a CONSTRUCTOR T. */
757 static bool
758 mentions_vars_p_constructor (tree t)
760 unsigned HOST_WIDE_INT idx;
761 constructor_elt *ce;
763 if (mentions_vars_p_typed (t))
764 return true;
766 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (t), idx, &ce); idx++)
768 CHECK_NO_VAR (ce->index);
769 CHECK_VAR (ce->value);
771 return false;
774 /* Check presence of pointers to decls in fields of an expression tree T. */
776 static bool
777 mentions_vars_p_expr (tree t)
779 int i;
780 if (mentions_vars_p_typed (t))
781 return true;
782 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
783 CHECK_VAR (TREE_OPERAND (t, i));
784 return false;
787 /* Check presence of pointers to decls in fields of an OMP_CLAUSE T. */
789 static bool
790 mentions_vars_p_omp_clause (tree t)
792 int i;
793 if (mentions_vars_p_common (t))
794 return true;
795 for (i = omp_clause_num_ops[OMP_CLAUSE_CODE (t)] - 1; i >= 0; --i)
796 CHECK_VAR (OMP_CLAUSE_OPERAND (t, i));
797 return false;
800 /* Check presence of pointers to decls that needs later fixup in T. */
802 static bool
803 mentions_vars_p (tree t)
805 switch (TREE_CODE (t))
807 case IDENTIFIER_NODE:
808 break;
810 case TREE_LIST:
811 CHECK_VAR (TREE_VALUE (t));
812 CHECK_VAR (TREE_PURPOSE (t));
813 CHECK_NO_VAR (TREE_CHAIN (t));
814 break;
816 case FIELD_DECL:
817 return mentions_vars_p_field_decl (t);
819 case LABEL_DECL:
820 case CONST_DECL:
821 case PARM_DECL:
822 case RESULT_DECL:
823 case IMPORTED_DECL:
824 case NAMESPACE_DECL:
825 case NAMELIST_DECL:
826 return mentions_vars_p_decl_common (t);
828 case VAR_DECL:
829 return mentions_vars_p_decl_with_vis (t);
831 case TYPE_DECL:
832 return mentions_vars_p_decl_non_common (t);
834 case FUNCTION_DECL:
835 return mentions_vars_p_function (t);
837 case TREE_BINFO:
838 return mentions_vars_p_binfo (t);
840 case PLACEHOLDER_EXPR:
841 return mentions_vars_p_common (t);
843 case BLOCK:
844 case TRANSLATION_UNIT_DECL:
845 case OPTIMIZATION_NODE:
846 case TARGET_OPTION_NODE:
847 break;
849 case CONSTRUCTOR:
850 return mentions_vars_p_constructor (t);
852 case OMP_CLAUSE:
853 return mentions_vars_p_omp_clause (t);
855 default:
856 if (TYPE_P (t))
858 if (mentions_vars_p_type (t))
859 return true;
861 else if (EXPR_P (t))
863 if (mentions_vars_p_expr (t))
864 return true;
866 else if (CONSTANT_CLASS_P (t))
867 CHECK_NO_VAR (TREE_TYPE (t));
868 else
869 gcc_unreachable ();
871 return false;
875 /* Return the resolution for the decl with index INDEX from DATA_IN. */
877 static enum ld_plugin_symbol_resolution
878 get_resolution (class data_in *data_in, unsigned index)
880 if (data_in->globals_resolution.exists ())
882 ld_plugin_symbol_resolution_t ret;
883 /* We can have references to not emitted functions in
884 DECL_FUNCTION_PERSONALITY at least. So we can and have
885 to indeed return LDPR_UNKNOWN in some cases. */
886 if (data_in->globals_resolution.length () <= index)
887 return LDPR_UNKNOWN;
888 ret = data_in->globals_resolution[index];
889 return ret;
891 else
892 /* Delay resolution finding until decl merging. */
893 return LDPR_UNKNOWN;
896 /* We need to record resolutions until symbol table is read. */
897 static void
898 register_resolution (struct lto_file_decl_data *file_data, tree decl,
899 enum ld_plugin_symbol_resolution resolution)
901 bool existed;
902 if (resolution == LDPR_UNKNOWN)
903 return;
904 if (!file_data->resolution_map)
905 file_data->resolution_map
906 = new hash_map<tree, ld_plugin_symbol_resolution>;
907 ld_plugin_symbol_resolution_t &res
908 = file_data->resolution_map->get_or_insert (decl, &existed);
909 if (!existed
910 || resolution == LDPR_PREVAILING_DEF_IRONLY
911 || resolution == LDPR_PREVAILING_DEF
912 || resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
913 res = resolution;
916 /* Register DECL with the global symbol table and change its
917 name if necessary to avoid name clashes for static globals across
918 different files. */
920 static void
921 lto_register_var_decl_in_symtab (class data_in *data_in, tree decl,
922 unsigned ix)
924 tree context;
926 /* Variable has file scope, not local. */
927 if (!TREE_PUBLIC (decl)
928 && !((context = decl_function_context (decl))
929 && auto_var_in_fn_p (decl, context)))
930 rest_of_decl_compilation (decl, 1, 0);
932 /* If this variable has already been declared, queue the
933 declaration for merging. */
934 if (TREE_PUBLIC (decl))
935 register_resolution (data_in->file_data,
936 decl, get_resolution (data_in, ix));
940 /* Register DECL with the global symbol table and change its
941 name if necessary to avoid name clashes for static globals across
942 different files. DATA_IN contains descriptors and tables for the
943 file being read. */
945 static void
946 lto_register_function_decl_in_symtab (class data_in *data_in, tree decl,
947 unsigned ix)
949 /* If this variable has already been declared, queue the
950 declaration for merging. */
951 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT_P (decl))
952 register_resolution (data_in->file_data,
953 decl, get_resolution (data_in, ix));
956 /* Check if T is a decl and needs register its resolution info. */
958 static void
959 lto_maybe_register_decl (class data_in *data_in, tree t, unsigned ix)
961 if (TREE_CODE (t) == VAR_DECL)
962 lto_register_var_decl_in_symtab (data_in, t, ix);
963 else if (TREE_CODE (t) == FUNCTION_DECL
964 && !fndecl_built_in_p (t))
965 lto_register_function_decl_in_symtab (data_in, t, ix);
969 /* For the type T re-materialize it in the type variant list and
970 the pointer/reference-to chains. */
972 static void
973 lto_fixup_prevailing_type (tree t)
975 /* The following re-creates proper variant lists while fixing up
976 the variant leaders. We do not stream TYPE_NEXT_VARIANT so the
977 variant list state before fixup is broken. */
979 /* If we are not our own variant leader link us into our new leaders
980 variant list. */
981 if (TYPE_MAIN_VARIANT (t) != t)
983 tree mv = TYPE_MAIN_VARIANT (t);
984 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
985 TYPE_NEXT_VARIANT (mv) = t;
988 /* The following reconstructs the pointer chains
989 of the new pointed-to type if we are a main variant. We do
990 not stream those so they are broken before fixup. */
991 if (TREE_CODE (t) == POINTER_TYPE
992 && TYPE_MAIN_VARIANT (t) == t)
994 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (TREE_TYPE (t));
995 TYPE_POINTER_TO (TREE_TYPE (t)) = t;
997 else if (TREE_CODE (t) == REFERENCE_TYPE
998 && TYPE_MAIN_VARIANT (t) == t)
1000 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (TREE_TYPE (t));
1001 TYPE_REFERENCE_TO (TREE_TYPE (t)) = t;
1006 /* We keep prevailing tree SCCs in a hashtable with manual collision
1007 handling (in case all hashes compare the same) and keep the colliding
1008 entries in the tree_scc->next chain. */
1010 struct tree_scc
1012 tree_scc *next;
1013 /* Hash of the whole SCC. */
1014 hashval_t hash;
1015 /* Number of trees in the SCC. */
1016 unsigned len;
1017 /* Number of possible entries into the SCC (tree nodes [0..entry_len-1]
1018 which share the same individual tree hash). */
1019 unsigned entry_len;
1020 /* The members of the SCC.
1021 We only need to remember the first entry node candidate for prevailing
1022 SCCs (but of course have access to all entries for SCCs we are
1023 processing).
1024 ??? For prevailing SCCs we really only need hash and the first
1025 entry candidate, but that's too awkward to implement. */
1026 tree entries[1];
1029 struct tree_scc_hasher : nofree_ptr_hash <tree_scc>
1031 static inline hashval_t hash (const tree_scc *);
1032 static inline bool equal (const tree_scc *, const tree_scc *);
1035 hashval_t
1036 tree_scc_hasher::hash (const tree_scc *scc)
1038 return scc->hash;
1041 bool
1042 tree_scc_hasher::equal (const tree_scc *scc1, const tree_scc *scc2)
1044 if (scc1->hash != scc2->hash
1045 || scc1->len != scc2->len
1046 || scc1->entry_len != scc2->entry_len)
1047 return false;
1048 return true;
1051 static hash_table<tree_scc_hasher> *tree_scc_hash;
1052 static struct obstack tree_scc_hash_obstack;
1054 static unsigned long num_merged_types;
1055 static unsigned long num_prevailing_types;
1056 static unsigned long num_type_scc_trees;
1057 static unsigned long total_scc_size;
1058 static unsigned long num_sccs_read;
1059 static unsigned long num_unshared_trees_read;
1060 static unsigned long total_scc_size_merged;
1061 static unsigned long num_sccs_merged;
1062 static unsigned long num_scc_compares;
1063 static unsigned long num_scc_compare_collisions;
1066 /* Compare the two entries T1 and T2 of two SCCs that are possibly equal,
1067 recursing through in-SCC tree edges. Returns true if the SCCs entered
1068 through T1 and T2 are equal and fills in *MAP with the pairs of
1069 SCC entries we visited, starting with (*MAP)[0] = T1 and (*MAP)[1] = T2. */
1071 static bool
1072 compare_tree_sccs_1 (tree t1, tree t2, tree **map)
1074 enum tree_code code;
1076 /* Mark already visited nodes. */
1077 TREE_ASM_WRITTEN (t2) = 1;
1079 /* Push the pair onto map. */
1080 (*map)[0] = t1;
1081 (*map)[1] = t2;
1082 *map = *map + 2;
1084 /* Compare value-fields. */
1085 #define compare_values(X) \
1086 do { \
1087 if (X(t1) != X(t2)) \
1088 return false; \
1089 } while (0)
1091 compare_values (TREE_CODE);
1092 code = TREE_CODE (t1);
1094 /* If we end up comparing translation unit decls we either forgot to mark
1095 some SCC as local or we compare too much. */
1096 gcc_checking_assert (code != TRANSLATION_UNIT_DECL);
1098 if (!TYPE_P (t1))
1100 compare_values (TREE_SIDE_EFFECTS);
1101 compare_values (TREE_CONSTANT);
1102 compare_values (TREE_READONLY);
1103 compare_values (TREE_PUBLIC);
1105 compare_values (TREE_ADDRESSABLE);
1106 compare_values (TREE_THIS_VOLATILE);
1107 if (DECL_P (t1))
1108 compare_values (DECL_UNSIGNED);
1109 else if (TYPE_P (t1))
1110 compare_values (TYPE_UNSIGNED);
1111 if (TYPE_P (t1))
1112 compare_values (TYPE_ARTIFICIAL);
1113 else
1114 compare_values (TREE_NO_WARNING);
1115 compare_values (TREE_NOTHROW);
1116 compare_values (TREE_STATIC);
1117 if (code != TREE_BINFO)
1118 compare_values (TREE_PRIVATE);
1119 compare_values (TREE_PROTECTED);
1120 compare_values (TREE_DEPRECATED);
1121 if (TYPE_P (t1))
1123 if (AGGREGATE_TYPE_P (t1))
1124 compare_values (TYPE_REVERSE_STORAGE_ORDER);
1125 else
1126 compare_values (TYPE_SATURATING);
1127 compare_values (TYPE_ADDR_SPACE);
1129 else if (code == SSA_NAME)
1130 compare_values (SSA_NAME_IS_DEFAULT_DEF);
1132 if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
1134 if (wi::to_wide (t1) != wi::to_wide (t2))
1135 return false;
1138 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1140 /* ??? No suitable compare routine available. */
1141 REAL_VALUE_TYPE r1 = TREE_REAL_CST (t1);
1142 REAL_VALUE_TYPE r2 = TREE_REAL_CST (t2);
1143 if (r1.cl != r2.cl
1144 || r1.decimal != r2.decimal
1145 || r1.sign != r2.sign
1146 || r1.signalling != r2.signalling
1147 || r1.canonical != r2.canonical
1148 || r1.uexp != r2.uexp)
1149 return false;
1150 for (unsigned i = 0; i < SIGSZ; ++i)
1151 if (r1.sig[i] != r2.sig[i])
1152 return false;
1155 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1156 if (!fixed_compare (EQ_EXPR,
1157 TREE_FIXED_CST_PTR (t1), TREE_FIXED_CST_PTR (t2)))
1158 return false;
1160 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1162 compare_values (VECTOR_CST_LOG2_NPATTERNS);
1163 compare_values (VECTOR_CST_NELTS_PER_PATTERN);
1166 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1168 compare_values (DECL_MODE);
1169 compare_values (DECL_NONLOCAL);
1170 compare_values (DECL_VIRTUAL_P);
1171 compare_values (DECL_IGNORED_P);
1172 compare_values (DECL_ABSTRACT_P);
1173 compare_values (DECL_ARTIFICIAL);
1174 compare_values (DECL_USER_ALIGN);
1175 compare_values (DECL_PRESERVE_P);
1176 compare_values (DECL_EXTERNAL);
1177 compare_values (DECL_NOT_GIMPLE_REG_P);
1178 compare_values (DECL_ALIGN);
1179 if (code == LABEL_DECL)
1181 compare_values (EH_LANDING_PAD_NR);
1182 compare_values (LABEL_DECL_UID);
1184 else if (code == FIELD_DECL)
1186 compare_values (DECL_PACKED);
1187 compare_values (DECL_NONADDRESSABLE_P);
1188 compare_values (DECL_PADDING_P);
1189 compare_values (DECL_FIELD_ABI_IGNORED);
1190 compare_values (DECL_FIELD_CXX_ZERO_WIDTH_BIT_FIELD);
1191 compare_values (DECL_OFFSET_ALIGN);
1193 else if (code == VAR_DECL)
1195 compare_values (DECL_HAS_DEBUG_EXPR_P);
1196 compare_values (DECL_NONLOCAL_FRAME);
1198 if (code == RESULT_DECL
1199 || code == PARM_DECL
1200 || code == VAR_DECL)
1202 compare_values (DECL_BY_REFERENCE);
1203 if (code == VAR_DECL
1204 || code == PARM_DECL)
1205 compare_values (DECL_HAS_VALUE_EXPR_P);
1209 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1210 compare_values (DECL_REGISTER);
1212 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1214 compare_values (DECL_COMMON);
1215 compare_values (DECL_DLLIMPORT_P);
1216 compare_values (DECL_WEAK);
1217 compare_values (DECL_SEEN_IN_BIND_EXPR_P);
1218 compare_values (DECL_COMDAT);
1219 compare_values (DECL_VISIBILITY);
1220 compare_values (DECL_VISIBILITY_SPECIFIED);
1221 if (code == VAR_DECL)
1223 compare_values (DECL_HARD_REGISTER);
1224 /* DECL_IN_TEXT_SECTION is set during final asm output only. */
1225 compare_values (DECL_IN_CONSTANT_POOL);
1229 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1231 compare_values (DECL_BUILT_IN_CLASS);
1232 compare_values (DECL_STATIC_CONSTRUCTOR);
1233 compare_values (DECL_STATIC_DESTRUCTOR);
1234 compare_values (DECL_UNINLINABLE);
1235 compare_values (DECL_POSSIBLY_INLINED);
1236 compare_values (DECL_IS_NOVOPS);
1237 compare_values (DECL_IS_RETURNS_TWICE);
1238 compare_values (DECL_IS_MALLOC);
1239 compare_values (FUNCTION_DECL_DECL_TYPE);
1240 compare_values (DECL_DECLARED_INLINE_P);
1241 compare_values (DECL_STATIC_CHAIN);
1242 compare_values (DECL_NO_INLINE_WARNING_P);
1243 compare_values (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT);
1244 compare_values (DECL_NO_LIMIT_STACK);
1245 compare_values (DECL_DISREGARD_INLINE_LIMITS);
1246 compare_values (DECL_PURE_P);
1247 compare_values (DECL_LOOPING_CONST_OR_PURE_P);
1248 compare_values (DECL_IS_REPLACEABLE_OPERATOR);
1249 compare_values (DECL_FINAL_P);
1250 compare_values (DECL_CXX_CONSTRUCTOR_P);
1251 compare_values (DECL_CXX_DESTRUCTOR_P);
1252 if (DECL_BUILT_IN_CLASS (t1) != NOT_BUILT_IN)
1253 compare_values (DECL_UNCHECKED_FUNCTION_CODE);
1256 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1258 compare_values (TYPE_MODE);
1259 compare_values (TYPE_NEEDS_CONSTRUCTING);
1260 if (RECORD_OR_UNION_TYPE_P (t1))
1262 compare_values (TYPE_TRANSPARENT_AGGR);
1263 compare_values (TYPE_FINAL_P);
1264 compare_values (TYPE_CXX_ODR_P);
1266 else if (code == ARRAY_TYPE)
1267 compare_values (TYPE_NONALIASED_COMPONENT);
1268 if (code == ARRAY_TYPE || code == INTEGER_TYPE)
1269 compare_values (TYPE_STRING_FLAG);
1270 if (AGGREGATE_TYPE_P (t1))
1271 compare_values (TYPE_TYPELESS_STORAGE);
1272 compare_values (TYPE_EMPTY_P);
1273 compare_values (TYPE_PACKED);
1274 compare_values (TYPE_RESTRICT);
1275 compare_values (TYPE_USER_ALIGN);
1276 compare_values (TYPE_READONLY);
1277 compare_values (TYPE_PRECISION);
1278 compare_values (TYPE_ALIGN);
1279 /* Do not compare TYPE_ALIAS_SET. Doing so introduce ordering issues
1280 with calls to get_alias_set which may initialize it for streamed
1281 in types. */
1284 /* We don't want to compare locations, so there is nothing do compare
1285 for TS_EXP. */
1287 /* BLOCKs are function local and we don't merge anything there, so
1288 simply refuse to merge. */
1289 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1290 return false;
1292 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1293 if (strcmp (TRANSLATION_UNIT_LANGUAGE (t1),
1294 TRANSLATION_UNIT_LANGUAGE (t2)) != 0)
1295 return false;
1297 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
1298 if (!cl_target_option_eq (TREE_TARGET_OPTION (t1), TREE_TARGET_OPTION (t2)))
1299 return false;
1301 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
1302 if (!cl_optimization_option_eq (TREE_OPTIMIZATION (t1),
1303 TREE_OPTIMIZATION (t2)))
1304 return false;
1306 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1307 if (vec_safe_length (BINFO_BASE_ACCESSES (t1))
1308 != vec_safe_length (BINFO_BASE_ACCESSES (t2)))
1309 return false;
1311 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1313 compare_values (CLOBBER_KIND);
1314 compare_values (CONSTRUCTOR_NELTS);
1317 if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1318 if (IDENTIFIER_LENGTH (t1) != IDENTIFIER_LENGTH (t2)
1319 || memcmp (IDENTIFIER_POINTER (t1), IDENTIFIER_POINTER (t2),
1320 IDENTIFIER_LENGTH (t1)) != 0)
1321 return false;
1323 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1324 if (TREE_STRING_LENGTH (t1) != TREE_STRING_LENGTH (t2)
1325 || memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1326 TREE_STRING_LENGTH (t1)) != 0)
1327 return false;
1329 if (code == OMP_CLAUSE)
1331 compare_values (OMP_CLAUSE_CODE);
1332 switch (OMP_CLAUSE_CODE (t1))
1334 case OMP_CLAUSE_DEFAULT:
1335 compare_values (OMP_CLAUSE_DEFAULT_KIND);
1336 break;
1337 case OMP_CLAUSE_SCHEDULE:
1338 compare_values (OMP_CLAUSE_SCHEDULE_KIND);
1339 break;
1340 case OMP_CLAUSE_DEPEND:
1341 compare_values (OMP_CLAUSE_DEPEND_KIND);
1342 break;
1343 case OMP_CLAUSE_MAP:
1344 compare_values (OMP_CLAUSE_MAP_KIND);
1345 break;
1346 case OMP_CLAUSE_PROC_BIND:
1347 compare_values (OMP_CLAUSE_PROC_BIND_KIND);
1348 break;
1349 case OMP_CLAUSE_REDUCTION:
1350 compare_values (OMP_CLAUSE_REDUCTION_CODE);
1351 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_INIT);
1352 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE);
1353 break;
1354 default:
1355 break;
1359 #undef compare_values
1362 /* Compare pointer fields. */
1364 /* Recurse. Search & Replaced from DFS_write_tree_body.
1365 Folding the early checks into the compare_tree_edges recursion
1366 macro makes debugging way quicker as you are able to break on
1367 compare_tree_sccs_1 and simply finish until a call returns false
1368 to spot the SCC members with the difference. */
1369 #define compare_tree_edges(E1, E2) \
1370 do { \
1371 tree t1_ = (E1), t2_ = (E2); \
1372 if (t1_ != t2_ \
1373 && (!t1_ || !t2_ \
1374 || !TREE_VISITED (t2_) \
1375 || (!TREE_ASM_WRITTEN (t2_) \
1376 && !compare_tree_sccs_1 (t1_, t2_, map)))) \
1377 return false; \
1378 /* Only non-NULL trees outside of the SCC may compare equal. */ \
1379 gcc_checking_assert (t1_ != t2_ || (!t2_ || !TREE_VISITED (t2_))); \
1380 } while (0)
1382 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
1384 if (code != IDENTIFIER_NODE)
1385 compare_tree_edges (TREE_TYPE (t1), TREE_TYPE (t2));
1388 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1390 /* Note that the number of elements for EXPR has already been emitted
1391 in EXPR's header (see streamer_write_tree_header). */
1392 unsigned int count = vector_cst_encoded_nelts (t1);
1393 for (unsigned int i = 0; i < count; ++i)
1394 compare_tree_edges (VECTOR_CST_ENCODED_ELT (t1, i),
1395 VECTOR_CST_ENCODED_ELT (t2, i));
1398 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
1400 compare_tree_edges (TREE_REALPART (t1), TREE_REALPART (t2));
1401 compare_tree_edges (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
1404 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
1406 compare_tree_edges (DECL_NAME (t1), DECL_NAME (t2));
1407 /* ??? Global decls from different TUs have non-matching
1408 TRANSLATION_UNIT_DECLs. Only consider a small set of
1409 decls equivalent, we should not end up merging others. */
1410 if ((code == TYPE_DECL
1411 || code == NAMESPACE_DECL
1412 || code == IMPORTED_DECL
1413 || code == CONST_DECL
1414 || (VAR_OR_FUNCTION_DECL_P (t1)
1415 && (TREE_PUBLIC (t1) || DECL_EXTERNAL (t1))))
1416 && DECL_FILE_SCOPE_P (t1) && DECL_FILE_SCOPE_P (t2))
1418 else
1419 compare_tree_edges (DECL_CONTEXT (t1), DECL_CONTEXT (t2));
1422 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1424 compare_tree_edges (DECL_SIZE (t1), DECL_SIZE (t2));
1425 compare_tree_edges (DECL_SIZE_UNIT (t1), DECL_SIZE_UNIT (t2));
1426 compare_tree_edges (DECL_ATTRIBUTES (t1), DECL_ATTRIBUTES (t2));
1427 compare_tree_edges (DECL_ABSTRACT_ORIGIN (t1), DECL_ABSTRACT_ORIGIN (t2));
1428 if ((code == VAR_DECL
1429 || code == PARM_DECL)
1430 && DECL_HAS_VALUE_EXPR_P (t1))
1431 compare_tree_edges (DECL_VALUE_EXPR (t1), DECL_VALUE_EXPR (t2));
1432 if (code == VAR_DECL
1433 && DECL_HAS_DEBUG_EXPR_P (t1))
1434 compare_tree_edges (DECL_DEBUG_EXPR (t1), DECL_DEBUG_EXPR (t2));
1435 /* LTO specific edges. */
1436 if (code != FUNCTION_DECL
1437 && code != TRANSLATION_UNIT_DECL)
1438 compare_tree_edges (DECL_INITIAL (t1), DECL_INITIAL (t2));
1441 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
1443 if (code == FUNCTION_DECL)
1445 tree a1, a2;
1446 for (a1 = DECL_ARGUMENTS (t1), a2 = DECL_ARGUMENTS (t2);
1447 a1 || a2;
1448 a1 = TREE_CHAIN (a1), a2 = TREE_CHAIN (a2))
1449 compare_tree_edges (a1, a2);
1450 compare_tree_edges (DECL_RESULT (t1), DECL_RESULT (t2));
1452 else if (code == TYPE_DECL)
1453 compare_tree_edges (DECL_ORIGINAL_TYPE (t1), DECL_ORIGINAL_TYPE (t2));
1456 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1458 /* Make sure we don't inadvertently set the assembler name. */
1459 if (DECL_ASSEMBLER_NAME_SET_P (t1))
1460 compare_tree_edges (DECL_ASSEMBLER_NAME (t1),
1461 DECL_ASSEMBLER_NAME (t2));
1464 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1466 compare_tree_edges (DECL_FIELD_OFFSET (t1), DECL_FIELD_OFFSET (t2));
1467 compare_tree_edges (DECL_BIT_FIELD_TYPE (t1), DECL_BIT_FIELD_TYPE (t2));
1468 compare_tree_edges (DECL_BIT_FIELD_REPRESENTATIVE (t1),
1469 DECL_BIT_FIELD_REPRESENTATIVE (t2));
1470 compare_tree_edges (DECL_FIELD_BIT_OFFSET (t1),
1471 DECL_FIELD_BIT_OFFSET (t2));
1472 compare_tree_edges (DECL_FCONTEXT (t1), DECL_FCONTEXT (t2));
1475 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1477 compare_tree_edges (DECL_FUNCTION_PERSONALITY (t1),
1478 DECL_FUNCTION_PERSONALITY (t2));
1479 compare_tree_edges (DECL_VINDEX (t1), DECL_VINDEX (t2));
1480 compare_tree_edges (DECL_FUNCTION_SPECIFIC_TARGET (t1),
1481 DECL_FUNCTION_SPECIFIC_TARGET (t2));
1482 compare_tree_edges (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t1),
1483 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t2));
1486 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1488 compare_tree_edges (TYPE_SIZE (t1), TYPE_SIZE (t2));
1489 compare_tree_edges (TYPE_SIZE_UNIT (t1), TYPE_SIZE_UNIT (t2));
1490 compare_tree_edges (TYPE_ATTRIBUTES (t1), TYPE_ATTRIBUTES (t2));
1491 compare_tree_edges (TYPE_NAME (t1), TYPE_NAME (t2));
1492 /* Do not compare TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
1493 reconstructed during fixup. */
1494 /* Do not compare TYPE_NEXT_VARIANT, we reconstruct the variant lists
1495 during fixup. */
1496 compare_tree_edges (TYPE_MAIN_VARIANT (t1), TYPE_MAIN_VARIANT (t2));
1497 /* ??? Global types from different TUs have non-matching
1498 TRANSLATION_UNIT_DECLs. Still merge them if they are otherwise
1499 equal. */
1500 if (TYPE_FILE_SCOPE_P (t1) && TYPE_FILE_SCOPE_P (t2))
1502 else
1503 compare_tree_edges (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
1504 /* TYPE_CANONICAL is re-computed during type merging, so do not
1505 compare it here. */
1506 compare_tree_edges (TYPE_STUB_DECL (t1), TYPE_STUB_DECL (t2));
1509 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1511 if (code == ARRAY_TYPE)
1512 compare_tree_edges (TYPE_DOMAIN (t1), TYPE_DOMAIN (t2));
1513 else if (RECORD_OR_UNION_TYPE_P (t1))
1515 tree f1, f2;
1516 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
1517 f1 || f2;
1518 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
1519 compare_tree_edges (f1, f2);
1521 else if (code == FUNCTION_TYPE
1522 || code == METHOD_TYPE)
1523 compare_tree_edges (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2));
1525 if (!POINTER_TYPE_P (t1))
1526 compare_tree_edges (TYPE_MIN_VALUE_RAW (t1), TYPE_MIN_VALUE_RAW (t2));
1527 compare_tree_edges (TYPE_MAX_VALUE_RAW (t1), TYPE_MAX_VALUE_RAW (t2));
1530 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1532 compare_tree_edges (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1533 compare_tree_edges (TREE_VALUE (t1), TREE_VALUE (t2));
1534 compare_tree_edges (TREE_CHAIN (t1), TREE_CHAIN (t2));
1537 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1538 for (int i = 0; i < TREE_VEC_LENGTH (t1); i++)
1539 compare_tree_edges (TREE_VEC_ELT (t1, i), TREE_VEC_ELT (t2, i));
1541 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1543 for (int i = 0; i < TREE_OPERAND_LENGTH (t1); i++)
1544 compare_tree_edges (TREE_OPERAND (t1, i),
1545 TREE_OPERAND (t2, i));
1547 /* BLOCKs are function local and we don't merge anything there. */
1548 if (TREE_BLOCK (t1) || TREE_BLOCK (t2))
1549 return false;
1552 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1554 unsigned i;
1555 tree t;
1556 /* Lengths have already been compared above. */
1557 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t1), i, t)
1558 compare_tree_edges (t, BINFO_BASE_BINFO (t2, i));
1559 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (t1), i, t)
1560 compare_tree_edges (t, BINFO_BASE_ACCESS (t2, i));
1561 compare_tree_edges (BINFO_OFFSET (t1), BINFO_OFFSET (t2));
1562 compare_tree_edges (BINFO_VTABLE (t1), BINFO_VTABLE (t2));
1563 compare_tree_edges (BINFO_VPTR_FIELD (t1), BINFO_VPTR_FIELD (t2));
1564 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1565 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
1568 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1570 unsigned i;
1571 tree index, value;
1572 /* Lengths have already been compared above. */
1573 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, index, value)
1575 compare_tree_edges (index, CONSTRUCTOR_ELT (t2, i)->index);
1576 compare_tree_edges (value, CONSTRUCTOR_ELT (t2, i)->value);
1580 if (code == OMP_CLAUSE)
1582 int i;
1584 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t1)]; i++)
1585 compare_tree_edges (OMP_CLAUSE_OPERAND (t1, i),
1586 OMP_CLAUSE_OPERAND (t2, i));
1587 compare_tree_edges (OMP_CLAUSE_CHAIN (t1), OMP_CLAUSE_CHAIN (t2));
1590 #undef compare_tree_edges
1592 return true;
1595 /* Compare the tree scc SCC to the prevailing candidate PSCC, filling
1596 out MAP if they are equal. */
1598 static bool
1599 compare_tree_sccs (tree_scc *pscc, tree_scc *scc,
1600 tree *map)
1602 /* Assume SCC entry hashes are sorted after their cardinality. Which
1603 means we can simply take the first n-tuple of equal hashes
1604 (which is recorded as entry_len) and do n SCC entry candidate
1605 comparisons. */
1606 for (unsigned i = 0; i < pscc->entry_len; ++i)
1608 tree *mapp = map;
1609 num_scc_compare_collisions++;
1610 if (compare_tree_sccs_1 (pscc->entries[0], scc->entries[i], &mapp))
1612 /* Equal - no need to reset TREE_VISITED or TREE_ASM_WRITTEN
1613 on the scc as all trees will be freed. */
1614 return true;
1616 /* Reset TREE_ASM_WRITTEN on scc for the next compare or in case
1617 the SCC prevails. */
1618 for (unsigned j = 0; j < scc->len; ++j)
1619 TREE_ASM_WRITTEN (scc->entries[j]) = 0;
1622 return false;
1625 /* QSort sort function to sort a map of two pointers after the 2nd
1626 pointer. */
1628 static int
1629 cmp_tree (const void *p1_, const void *p2_)
1631 tree *p1 = (tree *)(const_cast<void *>(p1_));
1632 tree *p2 = (tree *)(const_cast<void *>(p2_));
1633 if (p1[1] == p2[1])
1634 return 0;
1635 return ((uintptr_t)p1[1] < (uintptr_t)p2[1]) ? -1 : 1;
1638 /* New scc of size 1 containing T was streamed in from DATA_IN and not merged.
1639 Register it to reader cache at index FROM. */
1641 static void
1642 process_dref (class data_in *data_in, tree t, unsigned from)
1644 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1645 /* If we got a debug reference queued, see if the prevailing
1646 tree has a debug reference and if not, register the one
1647 for the tree we are about to throw away. */
1648 if (dref_queue.length () == 1)
1650 dref_entry e = dref_queue.pop ();
1651 gcc_assert (e.decl
1652 == streamer_tree_cache_get_tree (cache, from));
1653 const char *sym;
1654 unsigned HOST_WIDE_INT off;
1655 if (!debug_hooks->die_ref_for_decl (t, &sym, &off))
1656 debug_hooks->register_external_die (t, e.sym, e.off);
1660 /* Try to unify the SCC with nodes FROM to FROM + LEN in CACHE and
1661 hash value SCC_HASH with an already recorded SCC. Return true if
1662 that was successful, otherwise return false. */
1664 static bool
1665 unify_scc (class data_in *data_in, unsigned from,
1666 unsigned len, unsigned scc_entry_len, hashval_t scc_hash)
1668 bool unified_p = false;
1669 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1670 tree_scc *scc
1671 = (tree_scc *) alloca (sizeof (tree_scc) + (len - 1) * sizeof (tree));
1672 scc->next = NULL;
1673 scc->hash = scc_hash;
1674 scc->len = len;
1675 scc->entry_len = scc_entry_len;
1676 for (unsigned i = 0; i < len; ++i)
1678 tree t = streamer_tree_cache_get_tree (cache, from + i);
1679 scc->entries[i] = t;
1680 /* These types should be streamed as unshared. */
1681 gcc_checking_assert
1682 (!(TREE_CODE (t) == TRANSLATION_UNIT_DECL
1683 || (VAR_OR_FUNCTION_DECL_P (t)
1684 && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
1685 || TREE_CODE (t) == LABEL_DECL
1686 || (TREE_CODE (t) == NAMESPACE_DECL && !DECL_NAME (t))
1687 || (TYPE_P (t)
1688 && type_with_linkage_p (TYPE_MAIN_VARIANT (t))
1689 && type_in_anonymous_namespace_p (TYPE_MAIN_VARIANT (t)))));
1692 /* Look for the list of candidate SCCs to compare against. */
1693 tree_scc **slot;
1694 slot = tree_scc_hash->find_slot_with_hash (scc, scc_hash, INSERT);
1695 if (*slot)
1697 /* Try unifying against each candidate. */
1698 num_scc_compares++;
1700 /* Set TREE_VISITED on the scc so we can easily identify tree nodes
1701 outside of the scc when following tree edges. Make sure
1702 that TREE_ASM_WRITTEN is unset so we can use it as 2nd bit
1703 to track whether we visited the SCC member during the compare.
1704 We cannot use TREE_VISITED on the pscc members as the extended
1705 scc and pscc can overlap. */
1706 for (unsigned i = 0; i < scc->len; ++i)
1708 TREE_VISITED (scc->entries[i]) = 1;
1709 gcc_checking_assert (!TREE_ASM_WRITTEN (scc->entries[i]));
1712 tree *map = XALLOCAVEC (tree, 2 * len);
1713 for (tree_scc *pscc = *slot; pscc; pscc = pscc->next)
1715 if (!compare_tree_sccs (pscc, scc, map))
1716 continue;
1718 /* Found an equal SCC. */
1719 unified_p = true;
1720 num_scc_compare_collisions--;
1721 num_sccs_merged++;
1722 total_scc_size_merged += len;
1724 if (flag_checking)
1725 for (unsigned i = 0; i < len; ++i)
1727 tree t = map[2*i+1];
1728 enum tree_code code = TREE_CODE (t);
1729 /* IDENTIFIER_NODEs should be singletons and are merged by the
1730 streamer. The others should be singletons, too, and we
1731 should not merge them in any way. */
1732 gcc_assert (code != TRANSLATION_UNIT_DECL
1733 && code != IDENTIFIER_NODE);
1736 /* Fixup the streamer cache with the prevailing nodes according
1737 to the tree node mapping computed by compare_tree_sccs. */
1738 if (len == 1)
1740 process_dref (data_in, pscc->entries[0], from);
1741 lto_maybe_register_decl (data_in, pscc->entries[0], from);
1742 streamer_tree_cache_replace_tree (cache, pscc->entries[0], from);
1744 else
1746 tree *map2 = XALLOCAVEC (tree, 2 * len);
1747 for (unsigned i = 0; i < len; ++i)
1749 map2[i*2] = (tree)(uintptr_t)(from + i);
1750 map2[i*2+1] = scc->entries[i];
1752 qsort (map2, len, 2 * sizeof (tree), cmp_tree);
1753 qsort (map, len, 2 * sizeof (tree), cmp_tree);
1754 for (unsigned i = 0; i < len; ++i)
1756 lto_maybe_register_decl (data_in, map[2*i],
1757 (uintptr_t)map2[2*i]);
1758 streamer_tree_cache_replace_tree (cache, map[2*i],
1759 (uintptr_t)map2[2*i]);
1763 /* Free the tree nodes from the read SCC. */
1764 data_in->location_cache.revert_location_cache ();
1765 for (unsigned i = 0; i < len; ++i)
1767 if (TYPE_P (scc->entries[i]))
1768 num_merged_types++;
1769 free_node (scc->entries[i]);
1772 /* Drop DIE references.
1773 ??? Do as in the size-one SCC case which involves sorting
1774 the queue. */
1775 dref_queue.truncate (0);
1777 break;
1780 /* Reset TREE_VISITED if we didn't unify the SCC with another. */
1781 if (!unified_p)
1782 for (unsigned i = 0; i < scc->len; ++i)
1783 TREE_VISITED (scc->entries[i]) = 0;
1786 /* If we didn't unify it to any candidate duplicate the relevant
1787 pieces to permanent storage and link it into the chain. */
1788 if (!unified_p)
1790 tree_scc *pscc
1791 = XOBNEWVAR (&tree_scc_hash_obstack, tree_scc, sizeof (tree_scc));
1792 memcpy (pscc, scc, sizeof (tree_scc));
1793 pscc->next = (*slot);
1794 *slot = pscc;
1796 return unified_p;
1799 typedef int_hash<unsigned, 0, UINT_MAX> code_id_hash;
1801 /* Do registering necessary once new tree fully streamed in (including all
1802 trees it reffers to). */
1804 static void
1805 process_new_tree (tree t, hash_map <code_id_hash, unsigned> *hm,
1806 unsigned index, unsigned *total, class data_in *data_in)
1808 /* Reconstruct the type variant and pointer-to/reference-to
1809 chains. */
1810 if (TYPE_P (t))
1812 /* Map the tree types to their frequencies. */
1813 if (flag_lto_dump_type_stats)
1815 unsigned key = (unsigned) TREE_CODE (t);
1816 unsigned *countp = hm->get (key);
1817 hm->put (key, countp ? (*countp) + 1 : 1);
1818 (*total)++;
1821 num_prevailing_types++;
1822 lto_fixup_prevailing_type (t);
1824 /* Compute the canonical type of all non-ODR types.
1825 Delay ODR types for the end of merging process - the canonical
1826 type for those can be computed using the (unique) name however
1827 we want to do this only if units in other languages do not
1828 contain structurally equivalent type.
1830 Because SCC components are streamed in random (hash) order
1831 we may have encountered the type before while registering
1832 type canonical of a derived type in the same SCC. */
1833 if (!TYPE_CANONICAL (t))
1835 if (!RECORD_OR_UNION_TYPE_P (t)
1836 || !TYPE_CXX_ODR_P (t))
1837 gimple_register_canonical_type (t);
1838 else if (COMPLETE_TYPE_P (t))
1839 vec_safe_push (types_to_register, t);
1841 if (TYPE_MAIN_VARIANT (t) == t && odr_type_p (t))
1842 register_odr_type (t);
1844 /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its
1845 type which is also member of this SCC. */
1846 if (TREE_CODE (t) == INTEGER_CST
1847 && !TREE_OVERFLOW (t))
1848 cache_integer_cst (t);
1849 if (!flag_ltrans)
1851 lto_maybe_register_decl (data_in, t, index);
1852 /* Scan the tree for references to global functions or
1853 variables and record those for later fixup. */
1854 if (mentions_vars_p (t))
1855 vec_safe_push (tree_with_vars, t);
1859 /* Read all the symbols from buffer DATA, using descriptors in DECL_DATA.
1860 RESOLUTIONS is the set of symbols picked by the linker (read from the
1861 resolution file when the linker plugin is being used). */
1863 static void
1864 lto_read_decls (struct lto_file_decl_data *decl_data, const void *data,
1865 vec<ld_plugin_symbol_resolution_t> resolutions)
1867 const struct lto_decl_header *header = (const struct lto_decl_header *) data;
1868 const int decl_offset = sizeof (struct lto_decl_header);
1869 const int main_offset = decl_offset + header->decl_state_size;
1870 const int string_offset = main_offset + header->main_size;
1871 class data_in *data_in;
1872 unsigned int i;
1873 const uint32_t *data_ptr, *data_end;
1874 uint32_t num_decl_states;
1876 lto_input_block ib_main ((const char *) data + main_offset,
1877 header->main_size, decl_data->mode_table);
1879 data_in = lto_data_in_create (decl_data, (const char *) data + string_offset,
1880 header->string_size, resolutions);
1882 /* We do not uniquify the pre-loaded cache entries, those are middle-end
1883 internal types that should not be merged. */
1885 hash_map <code_id_hash, unsigned> hm;
1886 unsigned total = 0;
1888 /* Read the global declarations and types. */
1889 while (ib_main.p < ib_main.len)
1891 tree t;
1892 unsigned from = data_in->reader_cache->nodes.length ();
1893 /* Read and uniquify SCCs as in the input stream. */
1894 enum LTO_tags tag = streamer_read_record_start (&ib_main);
1895 if (tag == LTO_tree_scc || tag == LTO_trees)
1897 unsigned len_;
1898 unsigned scc_entry_len;
1900 /* Because we stream in SCC order we know that all unshared trees
1901 are now fully streamed. Process them. */
1902 hashval_t scc_hash = lto_input_scc (&ib_main, data_in, &len_,
1903 &scc_entry_len,
1904 tag == LTO_tree_scc);
1905 unsigned len = data_in->reader_cache->nodes.length () - from;
1906 gcc_assert (len == len_);
1908 if (tag == LTO_tree_scc)
1910 total_scc_size += len;
1911 num_sccs_read++;
1913 else
1914 num_unshared_trees_read += len;
1916 /* We have the special case of size-1 SCCs that are pre-merged
1917 by means of identifier and string sharing for example.
1918 ??? Maybe we should avoid streaming those as SCCs. */
1919 tree first = streamer_tree_cache_get_tree (data_in->reader_cache,
1920 from);
1921 /* Identifier and integers are shared specially, they should never
1922 go by the tree merging path. */
1923 gcc_checking_assert ((TREE_CODE (first) != IDENTIFIER_NODE
1924 && (TREE_CODE (first) != INTEGER_CST
1925 || TREE_OVERFLOW (first)))
1926 || len != 1);
1928 /* Try to unify the SCC with already existing ones. */
1929 if (!flag_ltrans && tag != LTO_trees
1930 && unify_scc (data_in, from,
1931 len, scc_entry_len, scc_hash))
1932 continue;
1934 /* Tree merging failed, mark entries in location cache as
1935 permanent. */
1936 data_in->location_cache.accept_location_cache ();
1938 bool seen_type = false;
1939 for (unsigned i = 0; i < len; ++i)
1941 tree t = streamer_tree_cache_get_tree (data_in->reader_cache,
1942 from + i);
1943 process_new_tree (t, &hm, from + i, &total, data_in);
1944 if (TYPE_P (t))
1945 seen_type = true;
1948 /* Register DECLs with the debuginfo machinery. */
1949 while (!dref_queue.is_empty ())
1951 dref_entry e = dref_queue.pop ();
1952 debug_hooks->register_external_die (e.decl, e.sym, e.off);
1955 if (seen_type)
1956 num_type_scc_trees += len;
1958 else
1960 t = lto_input_tree_1 (&ib_main, data_in, tag, 0);
1961 gcc_assert (data_in->reader_cache->nodes.length () == from + 1);
1962 num_unshared_trees_read++;
1963 data_in->location_cache.accept_location_cache ();
1964 process_dref (data_in, t, from);
1965 if (TREE_CODE (t) == IDENTIFIER_NODE
1966 || (TREE_CODE (t) == INTEGER_CST
1967 && !TREE_OVERFLOW (t)))
1969 else
1971 lto_maybe_register_decl (data_in, t, from);
1972 process_new_tree (t, &hm, from, &total, data_in);
1977 /* Dump type statistics. */
1978 if (flag_lto_dump_type_stats)
1980 fprintf (stdout, " Type Frequency Percentage\n\n");
1981 for (hash_map<code_id_hash, unsigned>::iterator itr = hm.begin ();
1982 itr != hm.end ();
1983 ++itr)
1985 std::pair<unsigned, unsigned> p = *itr;
1986 enum tree_code code = (enum tree_code) p.first;
1987 fprintf (stdout, "%14s %6d %12.2f\n", get_tree_code_name (code),
1988 p.second, float (p.second)/total*100);
1992 data_in->location_cache.apply_location_cache ();
1994 /* Read in lto_in_decl_state objects. */
1995 data_ptr = (const uint32_t *) ((const char*) data + decl_offset);
1996 data_end
1997 = (const uint32_t *) ((const char*) data_ptr + header->decl_state_size);
1998 num_decl_states = *data_ptr++;
2000 gcc_assert (num_decl_states > 0);
2001 decl_data->global_decl_state = lto_new_in_decl_state ();
2002 data_ptr = lto_read_in_decl_state (data_in, data_ptr,
2003 decl_data->global_decl_state);
2005 /* Read in per-function decl states and enter them in hash table. */
2006 decl_data->function_decl_states
2007 = hash_table<decl_state_hasher>::create_ggc (37);
2009 for (i = 1; i < num_decl_states; i++)
2011 struct lto_in_decl_state *state = lto_new_in_decl_state ();
2013 data_ptr = lto_read_in_decl_state (data_in, data_ptr, state);
2014 lto_in_decl_state **slot
2015 = decl_data->function_decl_states->find_slot (state, INSERT);
2016 gcc_assert (*slot == NULL);
2017 *slot = state;
2020 if (data_ptr != data_end)
2021 internal_error ("bytecode stream: garbage at the end of symbols section");
2023 /* Set the current decl state to be the global state. */
2024 decl_data->current_decl_state = decl_data->global_decl_state;
2026 lto_data_in_delete (data_in);
2029 /* Custom version of strtoll, which is not portable. */
2031 static int64_t
2032 lto_parse_hex (const char *p)
2034 int64_t ret = 0;
2036 for (; *p != '\0'; ++p)
2038 char c = *p;
2039 unsigned char part;
2040 ret <<= 4;
2041 if (c >= '0' && c <= '9')
2042 part = c - '0';
2043 else if (c >= 'a' && c <= 'f')
2044 part = c - 'a' + 10;
2045 else if (c >= 'A' && c <= 'F')
2046 part = c - 'A' + 10;
2047 else
2048 internal_error ("could not parse hex number");
2049 ret |= part;
2052 return ret;
2055 /* Read resolution for file named FILE_NAME. The resolution is read from
2056 RESOLUTION. */
2058 static void
2059 lto_resolution_read (splay_tree file_ids, FILE *resolution, lto_file *file)
2061 /* We require that objects in the resolution file are in the same
2062 order as the lto1 command line. */
2063 unsigned int name_len;
2064 char *obj_name;
2065 unsigned int num_symbols;
2066 unsigned int i;
2067 struct lto_file_decl_data *file_data;
2068 splay_tree_node nd = NULL;
2070 if (!resolution)
2071 return;
2073 name_len = strlen (file->filename);
2074 obj_name = XNEWVEC (char, name_len + 1);
2075 fscanf (resolution, " "); /* Read white space. */
2077 fread (obj_name, sizeof (char), name_len, resolution);
2078 obj_name[name_len] = '\0';
2079 if (filename_cmp (obj_name, file->filename) != 0)
2080 internal_error ("unexpected file name %s in linker resolution file. "
2081 "Expected %s", obj_name, file->filename);
2082 if (file->offset != 0)
2084 int t;
2085 char offset_p[17];
2086 int64_t offset;
2087 t = fscanf (resolution, "@0x%16s", offset_p);
2088 if (t != 1)
2089 internal_error ("could not parse file offset");
2090 offset = lto_parse_hex (offset_p);
2091 if (offset != file->offset)
2092 internal_error ("unexpected offset");
2095 free (obj_name);
2097 fscanf (resolution, "%u", &num_symbols);
2099 for (i = 0; i < num_symbols; i++)
2101 int t;
2102 unsigned index;
2103 unsigned HOST_WIDE_INT id;
2104 char r_str[27];
2105 enum ld_plugin_symbol_resolution r = (enum ld_plugin_symbol_resolution) 0;
2106 unsigned int j;
2107 unsigned int lto_resolution_str_len = ARRAY_SIZE (lto_resolution_str);
2108 res_pair rp;
2110 t = fscanf (resolution, "%u " HOST_WIDE_INT_PRINT_HEX_PURE
2111 " %26s %*[^\n]\n", &index, &id, r_str);
2112 if (t != 3)
2113 internal_error ("invalid line in the resolution file");
2115 for (j = 0; j < lto_resolution_str_len; j++)
2117 if (strcmp (lto_resolution_str[j], r_str) == 0)
2119 r = (enum ld_plugin_symbol_resolution) j;
2120 break;
2123 if (j == lto_resolution_str_len)
2124 internal_error ("invalid resolution in the resolution file");
2126 if (!(nd && lto_splay_tree_id_equal_p (nd->key, id)))
2128 nd = lto_splay_tree_lookup (file_ids, id);
2129 if (nd == NULL)
2130 internal_error ("resolution sub id %wx not in object file", id);
2133 file_data = (struct lto_file_decl_data *)nd->value;
2134 /* The indexes are very sparse. To save memory save them in a compact
2135 format that is only unpacked later when the subfile is processed. */
2136 rp.res = r;
2137 rp.index = index;
2138 file_data->respairs.safe_push (rp);
2139 if (file_data->max_index < index)
2140 file_data->max_index = index;
2144 /* List of file_decl_datas. */
2145 struct file_data_list
2147 struct lto_file_decl_data *first, *last;
2150 /* Is the name for a id'ed LTO section? */
2152 static int
2153 lto_section_with_id (const char *name, unsigned HOST_WIDE_INT *id)
2155 const char *s;
2157 if (strncmp (name, section_name_prefix, strlen (section_name_prefix)))
2158 return 0;
2159 s = strrchr (name, '.');
2160 if (!s)
2161 return 0;
2162 /* If the section is not suffixed with an ID return. */
2163 if ((size_t)(s - name) == strlen (section_name_prefix))
2164 return 0;
2165 return sscanf (s, "." HOST_WIDE_INT_PRINT_HEX_PURE, id) == 1;
2168 /* Create file_data of each sub file id. */
2170 static int
2171 create_subid_section_table (struct lto_section_slot *ls, splay_tree file_ids,
2172 struct file_data_list *list)
2174 struct lto_section_slot s_slot, *new_slot;
2175 unsigned HOST_WIDE_INT id;
2176 splay_tree_node nd;
2177 void **hash_slot;
2178 char *new_name;
2179 struct lto_file_decl_data *file_data;
2181 if (!lto_section_with_id (ls->name, &id))
2182 return 1;
2184 /* Find hash table of sub module id. */
2185 nd = lto_splay_tree_lookup (file_ids, id);
2186 if (nd != NULL)
2188 file_data = (struct lto_file_decl_data *)nd->value;
2190 else
2192 file_data = ggc_alloc<lto_file_decl_data> ();
2193 memset(file_data, 0, sizeof (struct lto_file_decl_data));
2194 file_data->id = id;
2195 file_data->section_hash_table = lto_obj_create_section_hash_table ();
2196 lto_splay_tree_insert (file_ids, id, file_data);
2198 /* Maintain list in linker order. */
2199 if (!list->first)
2200 list->first = file_data;
2201 if (list->last)
2202 list->last->next = file_data;
2204 list->last = file_data;
2207 /* Copy section into sub module hash table. */
2208 new_name = XDUPVEC (char, ls->name, strlen (ls->name) + 1);
2209 s_slot.name = new_name;
2210 hash_slot = htab_find_slot (file_data->section_hash_table, &s_slot, INSERT);
2211 gcc_assert (*hash_slot == NULL);
2213 new_slot = XDUP (struct lto_section_slot, ls);
2214 new_slot->name = new_name;
2215 *hash_slot = new_slot;
2216 return 1;
2219 /* Read declarations and other initializations for a FILE_DATA. */
2221 static void
2222 lto_file_finalize (struct lto_file_decl_data *file_data, lto_file *file,
2223 int order)
2225 const char *data;
2226 size_t len;
2227 vec<ld_plugin_symbol_resolution_t>
2228 resolutions = vNULL;
2229 int i;
2230 res_pair *rp;
2232 /* Create vector for fast access of resolution. We do this lazily
2233 to save memory. */
2234 resolutions.safe_grow_cleared (file_data->max_index + 1, true);
2235 for (i = 0; file_data->respairs.iterate (i, &rp); i++)
2236 resolutions[rp->index] = rp->res;
2237 file_data->respairs.release ();
2239 file_data->renaming_hash_table = lto_create_renaming_table ();
2240 file_data->file_name = file->filename;
2241 file_data->order = order;
2243 /* Read and verify LTO section. */
2244 data = lto_get_summary_section_data (file_data, LTO_section_lto, &len);
2245 if (data == NULL)
2247 fatal_error (input_location, "bytecode stream in file %qs generated "
2248 "with GCC compiler older than 10.0", file_data->file_name);
2249 return;
2252 memcpy (&file_data->lto_section_header, data, sizeof (lto_section));
2253 lto_check_version (file_data->lto_section_header.major_version,
2254 file_data->lto_section_header.minor_version,
2255 file_data->file_name);
2257 #ifdef ACCEL_COMPILER
2258 lto_input_mode_table (file_data);
2259 #else
2260 file_data->mode_table = lto_mode_identity_table;
2261 #endif
2263 data = lto_get_summary_section_data (file_data, LTO_section_decls, &len);
2264 if (data == NULL)
2266 internal_error ("cannot read %<LTO_section_decls%> from %s",
2267 file_data->file_name);
2268 return;
2270 /* Frees resolutions. */
2271 lto_read_decls (file_data, data, resolutions);
2272 lto_free_section_data (file_data, LTO_section_decls, NULL, data, len);
2275 /* Finalize FILE_DATA in FILE and increase COUNT. */
2277 static int
2278 lto_create_files_from_ids (lto_file *file, struct lto_file_decl_data *file_data,
2279 int *count, int order)
2281 lto_file_finalize (file_data, file, order);
2282 if (symtab->dump_file)
2283 fprintf (symtab->dump_file,
2284 "Creating file %s with sub id " HOST_WIDE_INT_PRINT_HEX "\n",
2285 file_data->file_name, file_data->id);
2286 (*count)++;
2287 return 0;
2290 /* Generate a TREE representation for all types and external decls
2291 entities in FILE.
2293 Read all of the globals out of the file. Then read the cgraph
2294 and process the .o index into the cgraph nodes so that it can open
2295 the .o file to load the functions and ipa information. */
2297 static struct lto_file_decl_data *
2298 lto_file_read (lto_file *file, FILE *resolution_file, int *count)
2300 struct lto_file_decl_data *file_data = NULL;
2301 splay_tree file_ids;
2302 htab_t section_hash_table;
2303 struct lto_section_slot *section;
2304 struct file_data_list file_list;
2305 struct lto_section_list section_list;
2307 memset (&section_list, 0, sizeof (struct lto_section_list));
2308 section_hash_table = lto_obj_build_section_table (file, &section_list);
2310 /* Dump the details of LTO objects. */
2311 if (flag_lto_dump_objects)
2313 int i=0;
2314 fprintf (stdout, "\n LTO Object Name: %s\n", file->filename);
2315 fprintf (stdout, "\nNo. Offset Size Section Name\n\n");
2316 for (section = section_list.first; section != NULL; section = section->next)
2317 fprintf (stdout, "%2d %8" PRId64 " %8" PRIu64 " %s\n",
2318 ++i, (int64_t) section->start, (uint64_t) section->len,
2319 section->name);
2322 /* Find all sub modules in the object and put their sections into new hash
2323 tables in a splay tree. */
2324 file_ids = lto_splay_tree_new ();
2325 memset (&file_list, 0, sizeof (struct file_data_list));
2326 for (section = section_list.first; section != NULL; section = section->next)
2327 create_subid_section_table (section, file_ids, &file_list);
2329 /* Add resolutions to file ids. */
2330 lto_resolution_read (file_ids, resolution_file, file);
2332 /* Finalize each lto file for each submodule in the merged object. */
2333 int order = 0;
2334 for (file_data = file_list.first; file_data != NULL;
2335 file_data = file_data->next)
2336 lto_create_files_from_ids (file, file_data, count, order++);
2338 splay_tree_delete (file_ids);
2339 htab_delete (section_hash_table);
2341 return file_list.first;
2344 #if HAVE_MMAP_FILE && HAVE_SYSCONF && defined _SC_PAGE_SIZE
2345 #define LTO_MMAP_IO 1
2346 #endif
2348 #if LTO_MMAP_IO
2349 /* Page size of machine is used for mmap and munmap calls. */
2350 static size_t page_mask;
2351 #endif
2353 /* Get the section data of length LEN from FILENAME starting at
2354 OFFSET. The data segment must be freed by the caller when the
2355 caller is finished. Returns NULL if all was not well. */
2357 static char *
2358 lto_read_section_data (struct lto_file_decl_data *file_data,
2359 intptr_t offset, size_t len)
2361 char *result;
2362 static int fd = -1;
2363 static char *fd_name;
2364 #if LTO_MMAP_IO
2365 intptr_t computed_len;
2366 intptr_t computed_offset;
2367 intptr_t diff;
2368 #endif
2370 /* Keep a single-entry file-descriptor cache. The last file we
2371 touched will get closed at exit.
2372 ??? Eventually we want to add a more sophisticated larger cache
2373 or rather fix function body streaming to not stream them in
2374 practically random order. */
2375 if (fd != -1
2376 && filename_cmp (fd_name, file_data->file_name) != 0)
2378 free (fd_name);
2379 close (fd);
2380 fd = -1;
2382 if (fd == -1)
2384 fd = open (file_data->file_name, O_RDONLY|O_BINARY);
2385 if (fd == -1)
2387 fatal_error (input_location, "Cannot open %s", file_data->file_name);
2388 return NULL;
2390 fd_name = xstrdup (file_data->file_name);
2393 #if LTO_MMAP_IO
2394 if (!page_mask)
2396 size_t page_size = sysconf (_SC_PAGE_SIZE);
2397 page_mask = ~(page_size - 1);
2400 computed_offset = offset & page_mask;
2401 diff = offset - computed_offset;
2402 computed_len = len + diff;
2404 result = (char *) mmap (NULL, computed_len, PROT_READ, MAP_PRIVATE,
2405 fd, computed_offset);
2406 if (result == MAP_FAILED)
2408 fatal_error (input_location, "Cannot map %s", file_data->file_name);
2409 return NULL;
2412 return result + diff;
2413 #else
2414 result = (char *) xmalloc (len);
2415 if (lseek (fd, offset, SEEK_SET) != offset
2416 || read (fd, result, len) != (ssize_t) len)
2418 free (result);
2419 fatal_error (input_location, "Cannot read %s", file_data->file_name);
2420 result = NULL;
2422 #ifdef __MINGW32__
2423 /* Native windows doesn't supports delayed unlink on opened file. So
2424 we close file here again. This produces higher I/O load, but at least
2425 it prevents to have dangling file handles preventing unlink. */
2426 free (fd_name);
2427 fd_name = NULL;
2428 close (fd);
2429 fd = -1;
2430 #endif
2431 return result;
2432 #endif
2436 /* Get the section data from FILE_DATA of SECTION_TYPE with NAME.
2437 NAME will be NULL unless the section type is for a function
2438 body. */
2440 static const char *
2441 get_section_data (struct lto_file_decl_data *file_data,
2442 enum lto_section_type section_type,
2443 const char *name, int order,
2444 size_t *len)
2446 htab_t section_hash_table = file_data->section_hash_table;
2447 struct lto_section_slot *f_slot;
2448 struct lto_section_slot s_slot;
2449 const char *section_name = lto_get_section_name (section_type, name,
2450 order, file_data);
2451 char *data = NULL;
2453 *len = 0;
2454 s_slot.name = section_name;
2455 f_slot = (struct lto_section_slot *) htab_find (section_hash_table, &s_slot);
2456 if (f_slot)
2458 data = lto_read_section_data (file_data, f_slot->start, f_slot->len);
2459 *len = f_slot->len;
2462 free (CONST_CAST (char *, section_name));
2463 return data;
2467 /* Free the section data from FILE_DATA of SECTION_TYPE with NAME that
2468 starts at OFFSET and has LEN bytes. */
2470 static void
2471 free_section_data (struct lto_file_decl_data *file_data ATTRIBUTE_UNUSED,
2472 enum lto_section_type section_type ATTRIBUTE_UNUSED,
2473 const char *name ATTRIBUTE_UNUSED,
2474 const char *offset, size_t len ATTRIBUTE_UNUSED)
2476 #if LTO_MMAP_IO
2477 intptr_t computed_len;
2478 intptr_t computed_offset;
2479 intptr_t diff;
2480 #endif
2482 #if LTO_MMAP_IO
2483 computed_offset = ((intptr_t) offset) & page_mask;
2484 diff = (intptr_t) offset - computed_offset;
2485 computed_len = len + diff;
2487 munmap ((caddr_t) computed_offset, computed_len);
2488 #else
2489 free (CONST_CAST(char *, offset));
2490 #endif
2493 static lto_file *current_lto_file;
2495 /* If TT is a variable or function decl replace it with its
2496 prevailing variant. */
2497 #define LTO_SET_PREVAIL(tt) \
2498 do {\
2499 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
2500 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
2502 tt = lto_symtab_prevailing_decl (tt); \
2503 fixed = true; \
2505 } while (0)
2507 /* Ensure that TT isn't a replacable var of function decl. */
2508 #define LTO_NO_PREVAIL(tt) \
2509 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
2511 /* Given a tree T replace all fields referring to variables or functions
2512 with their prevailing variant. */
2513 static void
2514 lto_fixup_prevailing_decls (tree t)
2516 enum tree_code code = TREE_CODE (t);
2517 bool fixed = false;
2519 gcc_checking_assert (code != TREE_BINFO);
2520 LTO_NO_PREVAIL (TREE_TYPE (t));
2521 if (CODE_CONTAINS_STRUCT (code, TS_COMMON)
2522 /* lto_symtab_prevail_decl use TREE_CHAIN to link to the prevailing decl.
2523 in the case T is a prevailed declaration we would ICE here. */
2524 && !VAR_OR_FUNCTION_DECL_P (t))
2525 LTO_NO_PREVAIL (TREE_CHAIN (t));
2526 if (DECL_P (t))
2528 LTO_NO_PREVAIL (DECL_NAME (t));
2529 LTO_SET_PREVAIL (DECL_CONTEXT (t));
2530 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2532 LTO_SET_PREVAIL (DECL_SIZE (t));
2533 LTO_SET_PREVAIL (DECL_SIZE_UNIT (t));
2534 LTO_SET_PREVAIL (DECL_INITIAL (t));
2535 LTO_NO_PREVAIL (DECL_ATTRIBUTES (t));
2536 LTO_SET_PREVAIL (DECL_ABSTRACT_ORIGIN (t));
2538 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2540 LTO_NO_PREVAIL (DECL_ASSEMBLER_NAME_RAW (t));
2542 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2544 LTO_NO_PREVAIL (DECL_RESULT_FLD (t));
2546 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2548 LTO_NO_PREVAIL (DECL_ARGUMENTS (t));
2549 LTO_SET_PREVAIL (DECL_FUNCTION_PERSONALITY (t));
2550 LTO_NO_PREVAIL (DECL_VINDEX (t));
2552 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2554 LTO_SET_PREVAIL (DECL_FIELD_OFFSET (t));
2555 LTO_NO_PREVAIL (DECL_BIT_FIELD_TYPE (t));
2556 LTO_NO_PREVAIL (DECL_QUALIFIER (t));
2557 LTO_NO_PREVAIL (DECL_FIELD_BIT_OFFSET (t));
2558 LTO_NO_PREVAIL (DECL_FCONTEXT (t));
2561 else if (TYPE_P (t))
2563 LTO_NO_PREVAIL (TYPE_CACHED_VALUES (t));
2564 LTO_SET_PREVAIL (TYPE_SIZE (t));
2565 LTO_SET_PREVAIL (TYPE_SIZE_UNIT (t));
2566 LTO_NO_PREVAIL (TYPE_ATTRIBUTES (t));
2567 LTO_NO_PREVAIL (TYPE_NAME (t));
2569 LTO_SET_PREVAIL (TYPE_MIN_VALUE_RAW (t));
2570 LTO_SET_PREVAIL (TYPE_MAX_VALUE_RAW (t));
2571 LTO_NO_PREVAIL (TYPE_LANG_SLOT_1 (t));
2573 LTO_SET_PREVAIL (TYPE_CONTEXT (t));
2575 LTO_NO_PREVAIL (TYPE_CANONICAL (t));
2576 LTO_NO_PREVAIL (TYPE_MAIN_VARIANT (t));
2577 LTO_NO_PREVAIL (TYPE_NEXT_VARIANT (t));
2579 else if (EXPR_P (t))
2581 int i;
2582 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
2583 LTO_SET_PREVAIL (TREE_OPERAND (t, i));
2585 else if (TREE_CODE (t) == CONSTRUCTOR)
2587 unsigned i;
2588 tree val;
2589 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, val)
2590 LTO_SET_PREVAIL (val);
2592 else
2594 switch (code)
2596 case TREE_LIST:
2597 LTO_SET_PREVAIL (TREE_VALUE (t));
2598 LTO_SET_PREVAIL (TREE_PURPOSE (t));
2599 break;
2600 default:
2601 gcc_unreachable ();
2604 /* If we fixed nothing, then we missed something seen by
2605 mentions_vars_p. */
2606 gcc_checking_assert (fixed);
2608 #undef LTO_SET_PREVAIL
2609 #undef LTO_NO_PREVAIL
2611 /* Helper function of lto_fixup_decls. Walks the var and fn streams in STATE,
2612 replaces var and function decls with the corresponding prevailing def. */
2614 static void
2615 lto_fixup_state (struct lto_in_decl_state *state)
2617 unsigned i, si;
2619 /* Although we only want to replace FUNCTION_DECLs and VAR_DECLs,
2620 we still need to walk from all DECLs to find the reachable
2621 FUNCTION_DECLs and VAR_DECLs. */
2622 for (si = 0; si < LTO_N_DECL_STREAMS; si++)
2624 vec<tree, va_gc> *trees = state->streams[si];
2625 for (i = 0; i < vec_safe_length (trees); i++)
2627 tree t = (*trees)[i];
2628 if (flag_checking && TYPE_P (t))
2629 verify_type (t);
2630 if (VAR_OR_FUNCTION_DECL_P (t)
2631 && (TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
2632 (*trees)[i] = lto_symtab_prevailing_decl (t);
2637 /* Fix the decls from all FILES. Replaces each decl with the corresponding
2638 prevailing one. */
2640 static void
2641 lto_fixup_decls (struct lto_file_decl_data **files)
2643 unsigned int i;
2644 tree t;
2646 if (tree_with_vars)
2647 FOR_EACH_VEC_ELT ((*tree_with_vars), i, t)
2648 lto_fixup_prevailing_decls (t);
2650 for (i = 0; files[i]; i++)
2652 struct lto_file_decl_data *file = files[i];
2653 struct lto_in_decl_state *state = file->global_decl_state;
2654 lto_fixup_state (state);
2656 hash_table<decl_state_hasher>::iterator iter;
2657 lto_in_decl_state *elt;
2658 FOR_EACH_HASH_TABLE_ELEMENT (*file->function_decl_states, elt,
2659 lto_in_decl_state *, iter)
2660 lto_fixup_state (elt);
2664 static GTY((length ("lto_stats.num_input_files + 1"))) struct lto_file_decl_data **all_file_decl_data;
2666 /* Turn file datas for sub files into a single array, so that they look
2667 like separate files for further passes. */
2669 static void
2670 lto_flatten_files (struct lto_file_decl_data **orig, int count,
2671 int last_file_ix)
2673 struct lto_file_decl_data *n, *next;
2674 int i, k;
2676 lto_stats.num_input_files = count;
2677 all_file_decl_data
2678 = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (count + 1);
2679 /* Set the hooks so that all of the ipa passes can read in their data. */
2680 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2681 for (i = 0, k = 0; i < last_file_ix; i++)
2683 for (n = orig[i]; n != NULL; n = next)
2685 all_file_decl_data[k++] = n;
2686 next = n->next;
2687 n->next = NULL;
2690 all_file_decl_data[k] = NULL;
2691 gcc_assert (k == count);
2694 /* Input file data before flattening (i.e. splitting them to subfiles to support
2695 incremental linking. */
2696 static int real_file_count;
2697 static GTY((length ("real_file_count + 1"))) struct lto_file_decl_data **real_file_decl_data;
2699 /* Read all the symbols from the input files FNAMES. NFILES is the
2700 number of files requested in the command line. Instantiate a
2701 global call graph by aggregating all the sub-graphs found in each
2702 file. */
2704 void
2705 read_cgraph_and_symbols (unsigned nfiles, const char **fnames)
2707 unsigned int i, last_file_ix;
2708 FILE *resolution;
2709 unsigned resolution_objects = 0;
2710 int count = 0;
2711 struct lto_file_decl_data **decl_data;
2712 symtab_node *snode;
2714 symtab->initialize ();
2716 timevar_push (TV_IPA_LTO_DECL_IN);
2718 #ifdef ACCEL_COMPILER
2719 section_name_prefix = OFFLOAD_SECTION_NAME_PREFIX;
2720 lto_stream_offload_p = true;
2721 #endif
2723 real_file_decl_data
2724 = decl_data = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (nfiles + 1);
2725 real_file_count = nfiles;
2727 /* Read the resolution file. */
2728 resolution = NULL;
2729 if (resolution_file_name)
2731 int t;
2733 resolution = fopen (resolution_file_name, "r");
2734 if (resolution == NULL)
2735 fatal_error (input_location,
2736 "could not open symbol resolution file: %m");
2738 t = fscanf (resolution, "%u", &resolution_objects);
2739 gcc_assert (t == 1);
2741 symtab->state = LTO_STREAMING;
2743 canonical_type_hash_cache = new hash_map<const_tree, hashval_t> (251);
2744 gimple_canonical_types = htab_create (16381, gimple_canonical_type_hash,
2745 gimple_canonical_type_eq, NULL);
2746 gcc_obstack_init (&tree_scc_hash_obstack);
2747 tree_scc_hash = new hash_table<tree_scc_hasher> (4096);
2749 /* Register the common node types with the canonical type machinery so
2750 we properly share alias-sets across languages and TUs. Do not
2751 expose the common nodes as type merge target - those that should be
2752 are already exposed so by pre-loading the LTO streamer caches.
2753 Do two passes - first clear TYPE_CANONICAL and then re-compute it. */
2754 for (i = 0; i < itk_none; ++i)
2755 lto_register_canonical_types (integer_types[i], true);
2756 for (i = 0; i < stk_type_kind_last; ++i)
2757 lto_register_canonical_types (sizetype_tab[i], true);
2758 for (i = 0; i < TI_MAX; ++i)
2759 lto_register_canonical_types (global_trees[i], true);
2760 for (i = 0; i < itk_none; ++i)
2761 lto_register_canonical_types (integer_types[i], false);
2762 for (i = 0; i < stk_type_kind_last; ++i)
2763 lto_register_canonical_types (sizetype_tab[i], false);
2764 for (i = 0; i < TI_MAX; ++i)
2765 lto_register_canonical_types (global_trees[i], false);
2767 if (!quiet_flag)
2768 fprintf (stderr, "Reading object files:");
2770 /* Read all of the object files specified on the command line. */
2771 for (i = 0, last_file_ix = 0; i < nfiles; ++i)
2773 struct lto_file_decl_data *file_data = NULL;
2774 if (!quiet_flag)
2776 fprintf (stderr, " %s", fnames[i]);
2777 fflush (stderr);
2780 current_lto_file = lto_obj_file_open (fnames[i], false);
2781 if (!current_lto_file)
2782 break;
2784 file_data = lto_file_read (current_lto_file, resolution, &count);
2785 if (!file_data)
2787 lto_obj_file_close (current_lto_file);
2788 free (current_lto_file);
2789 current_lto_file = NULL;
2790 break;
2793 decl_data[last_file_ix++] = file_data;
2795 lto_obj_file_close (current_lto_file);
2796 free (current_lto_file);
2797 current_lto_file = NULL;
2800 lto_flatten_files (decl_data, count, last_file_ix);
2801 lto_stats.num_input_files = count;
2802 ggc_free(decl_data);
2803 real_file_decl_data = NULL;
2805 lto_register_canonical_types_for_odr_types ();
2807 if (resolution_file_name)
2809 /* True, since the plugin splits the archives. */
2810 gcc_assert (resolution_objects == nfiles);
2811 fclose (resolution);
2814 /* Show the LTO report before launching LTRANS. */
2815 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
2816 print_lto_report_1 ();
2818 /* Free gimple type merging datastructures. */
2819 delete tree_scc_hash;
2820 tree_scc_hash = NULL;
2821 obstack_free (&tree_scc_hash_obstack, NULL);
2822 htab_delete (gimple_canonical_types);
2823 gimple_canonical_types = NULL;
2824 delete canonical_type_hash_cache;
2825 canonical_type_hash_cache = NULL;
2827 /* At this stage we know that majority of GGC memory is reachable.
2828 Growing the limits prevents unnecesary invocation of GGC. */
2829 ggc_grow ();
2830 report_heap_memory_use ();
2832 /* Set the hooks so that all of the ipa passes can read in their data. */
2833 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2835 timevar_pop (TV_IPA_LTO_DECL_IN);
2837 if (!quiet_flag)
2838 fprintf (stderr, "\nReading the symbol table:");
2840 timevar_push (TV_IPA_LTO_CGRAPH_IO);
2841 /* Read the symtab. */
2842 input_symtab ();
2844 input_offload_tables (!flag_ltrans);
2846 /* Store resolutions into the symbol table. */
2848 FOR_EACH_SYMBOL (snode)
2849 if (snode->externally_visible && snode->real_symbol_p ()
2850 && snode->lto_file_data && snode->lto_file_data->resolution_map
2851 && !(TREE_CODE (snode->decl) == FUNCTION_DECL
2852 && fndecl_built_in_p (snode->decl))
2853 && !(VAR_P (snode->decl) && DECL_HARD_REGISTER (snode->decl)))
2855 ld_plugin_symbol_resolution_t *res;
2857 res = snode->lto_file_data->resolution_map->get (snode->decl);
2858 if (!res || *res == LDPR_UNKNOWN)
2860 if (snode->output_to_lto_symbol_table_p ())
2861 fatal_error (input_location, "missing resolution data for %s",
2862 IDENTIFIER_POINTER
2863 (DECL_ASSEMBLER_NAME (snode->decl)));
2865 /* Symbol versions are always used externally, but linker does not
2866 report that correctly.
2867 This is binutils PR25924. */
2868 else if (snode->symver && *res == LDPR_PREVAILING_DEF_IRONLY)
2869 snode->resolution = LDPR_PREVAILING_DEF_IRONLY_EXP;
2870 else
2871 snode->resolution = *res;
2873 for (i = 0; all_file_decl_data[i]; i++)
2874 if (all_file_decl_data[i]->resolution_map)
2876 delete all_file_decl_data[i]->resolution_map;
2877 all_file_decl_data[i]->resolution_map = NULL;
2880 timevar_pop (TV_IPA_LTO_CGRAPH_IO);
2882 if (!quiet_flag)
2883 fprintf (stderr, "\nMerging declarations:");
2885 timevar_push (TV_IPA_LTO_DECL_MERGE);
2886 /* Merge global decls. In ltrans mode we read merged cgraph, we do not
2887 need to care about resolving symbols again, we only need to replace
2888 duplicated declarations read from the callgraph and from function
2889 sections. */
2890 if (!flag_ltrans)
2892 lto_symtab_merge_decls ();
2894 /* If there were errors during symbol merging bail out, we have no
2895 good way to recover here. */
2896 if (seen_error ())
2897 fatal_error (input_location,
2898 "errors during merging of translation units");
2900 /* Fixup all decls. */
2901 lto_fixup_decls (all_file_decl_data);
2903 if (tree_with_vars)
2904 ggc_free (tree_with_vars);
2905 tree_with_vars = NULL;
2906 /* During WPA we want to prevent ggc collecting by default. Grow limits
2907 until after the IPA summaries are streamed in. Basically all IPA memory
2908 is explcitly managed by ggc_free and ggc collect is not useful.
2909 Exception are the merged declarations. */
2910 ggc_grow ();
2911 report_heap_memory_use ();
2913 timevar_pop (TV_IPA_LTO_DECL_MERGE);
2914 /* Each pass will set the appropriate timer. */
2916 if (!quiet_flag)
2917 fprintf (stderr, "\nReading summaries:");
2919 /* Read the IPA summary data. */
2920 if (flag_ltrans)
2921 ipa_read_optimization_summaries ();
2922 else
2923 ipa_read_summaries ();
2925 ggc_grow ();
2927 for (i = 0; all_file_decl_data[i]; i++)
2929 gcc_assert (all_file_decl_data[i]->symtab_node_encoder);
2930 lto_symtab_encoder_delete (all_file_decl_data[i]->symtab_node_encoder);
2931 all_file_decl_data[i]->symtab_node_encoder = NULL;
2932 lto_in_decl_state *global_decl_state
2933 = all_file_decl_data[i]->global_decl_state;
2934 lto_free_function_in_decl_state (global_decl_state);
2935 all_file_decl_data[i]->global_decl_state = NULL;
2936 all_file_decl_data[i]->current_decl_state = NULL;
2939 if (!flag_ltrans)
2941 /* Finally merge the cgraph according to the decl merging decisions. */
2942 timevar_push (TV_IPA_LTO_CGRAPH_MERGE);
2944 if (!quiet_flag)
2945 fprintf (stderr, "\nMerging symbols:");
2947 gcc_assert (!dump_file);
2948 dump_file = dump_begin (lto_link_dump_id, NULL);
2950 if (dump_file)
2952 fprintf (dump_file, "Before merging:\n");
2953 symtab->dump (dump_file);
2955 lto_symtab_merge_symbols ();
2956 /* Removal of unreachable symbols is needed to make verify_symtab to pass;
2957 we are still having duplicated comdat groups containing local statics.
2958 We could also just remove them while merging. */
2959 symtab->remove_unreachable_nodes (dump_file);
2960 ggc_collect ();
2961 report_heap_memory_use ();
2963 if (dump_file)
2964 dump_end (lto_link_dump_id, dump_file);
2965 dump_file = NULL;
2966 timevar_pop (TV_IPA_LTO_CGRAPH_MERGE);
2968 symtab->state = IPA_SSA;
2969 /* All node removals happening here are useless, because
2970 WPA should not stream them. Still always perform remove_unreachable_nodes
2971 because we may reshape clone tree, get rid of dead masters of inline
2972 clones and remove symbol entries for read-only variables we keep around
2973 only to be able to constant fold them. */
2974 if (flag_ltrans)
2976 if (symtab->dump_file)
2977 symtab->dump (symtab->dump_file);
2978 symtab->remove_unreachable_nodes (symtab->dump_file);
2981 /* Indicate that the cgraph is built and ready. */
2982 symtab->function_flags_ready = true;
2984 ggc_free (all_file_decl_data);
2985 all_file_decl_data = NULL;
2990 /* Show various memory usage statistics related to LTO. */
2991 void
2992 print_lto_report_1 (void)
2994 const char *pfx = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS";
2995 fprintf (stderr, "%s statistics\n", pfx);
2997 fprintf (stderr, "[%s] read %lu unshared trees\n",
2998 pfx, num_unshared_trees_read);
2999 fprintf (stderr, "[%s] read %lu mergeable SCCs of average size %f\n",
3000 pfx, num_sccs_read, total_scc_size / (double)num_sccs_read);
3001 fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx,
3002 total_scc_size + num_unshared_trees_read);
3003 if (flag_wpa && tree_scc_hash && num_sccs_read)
3005 fprintf (stderr, "[%s] tree SCC table: size %ld, %ld elements, "
3006 "collision ratio: %f\n", pfx,
3007 (long) tree_scc_hash->size (),
3008 (long) tree_scc_hash->elements (),
3009 tree_scc_hash->collisions ());
3010 hash_table<tree_scc_hasher>::iterator hiter;
3011 tree_scc *scc, *max_scc = NULL;
3012 unsigned max_length = 0;
3013 FOR_EACH_HASH_TABLE_ELEMENT (*tree_scc_hash, scc, x, hiter)
3015 unsigned length = 0;
3016 tree_scc *s = scc;
3017 for (; s; s = s->next)
3018 length++;
3019 if (length > max_length)
3021 max_length = length;
3022 max_scc = scc;
3025 fprintf (stderr, "[%s] tree SCC max chain length %u (size %u)\n",
3026 pfx, max_length, max_scc->len);
3027 fprintf (stderr, "[%s] Compared %lu SCCs, %lu collisions (%f)\n", pfx,
3028 num_scc_compares, num_scc_compare_collisions,
3029 num_scc_compare_collisions / (double) num_scc_compares);
3030 fprintf (stderr, "[%s] Merged %lu SCCs\n", pfx, num_sccs_merged);
3031 fprintf (stderr, "[%s] Merged %lu tree bodies\n", pfx,
3032 total_scc_size_merged);
3033 fprintf (stderr, "[%s] Merged %lu types\n", pfx, num_merged_types);
3034 fprintf (stderr, "[%s] %lu types prevailed (%lu associated trees)\n",
3035 pfx, num_prevailing_types, num_type_scc_trees);
3036 fprintf (stderr, "[%s] GIMPLE canonical type table: size %ld, "
3037 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3038 (long) htab_size (gimple_canonical_types),
3039 (long) htab_elements (gimple_canonical_types),
3040 (long) gimple_canonical_types->searches,
3041 (long) gimple_canonical_types->collisions,
3042 htab_collisions (gimple_canonical_types));
3043 fprintf (stderr, "[%s] GIMPLE canonical type pointer-map: "
3044 "%lu elements, %ld searches\n", pfx,
3045 num_canonical_type_hash_entries,
3046 num_canonical_type_hash_queries);
3049 print_lto_report (pfx);
3052 GTY(()) tree lto_eh_personality_decl;
3054 /* Return the LTO personality function decl. */
3056 tree
3057 lto_eh_personality (void)
3059 if (!lto_eh_personality_decl)
3061 /* Use the first personality DECL for our personality if we don't
3062 support multiple ones. This ensures that we don't artificially
3063 create the need for them in a single-language program. */
3064 if (first_personality_decl && !dwarf2out_do_cfi_asm ())
3065 lto_eh_personality_decl = first_personality_decl;
3066 else
3067 lto_eh_personality_decl = lhd_gcc_personality ();
3070 return lto_eh_personality_decl;
3073 /* Set the process name based on the LTO mode. */
3075 static void
3076 lto_process_name (void)
3078 if (flag_lto)
3079 setproctitle (flag_incremental_link == INCREMENTAL_LINK_LTO
3080 ? "lto1-inclink" : "lto1-lto");
3081 if (flag_wpa)
3082 setproctitle ("lto1-wpa");
3083 if (flag_ltrans)
3084 setproctitle ("lto1-ltrans");
3088 /* Initialize the LTO front end. */
3090 void
3091 lto_fe_init (void)
3093 lto_process_name ();
3094 lto_streamer_hooks_init ();
3095 lto_reader_init ();
3096 lto_set_in_hooks (NULL, get_section_data, free_section_data);
3097 memset (&lto_stats, 0, sizeof (lto_stats));
3098 bitmap_obstack_initialize (NULL);
3099 gimple_register_cfg_hooks ();
3100 #ifndef ACCEL_COMPILER
3101 unsigned char *table
3102 = ggc_vec_alloc<unsigned char> (MAX_MACHINE_MODE);
3103 for (int m = 0; m < MAX_MACHINE_MODE; m++)
3104 table[m] = m;
3105 lto_mode_identity_table = table;
3106 #endif
3109 #include "gt-lto-lto-common.h"