PR rtl-optimization/57003
[official-gcc.git] / gcc / lto / lto.c
blobbc53632e14eb2149c85d506c7a11017a1d80de64
1 /* Top-level LTO routines.
2 Copyright (C) 2009-2014 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 "opts.h"
25 #include "toplev.h"
26 #include "tree.h"
27 #include "stor-layout.h"
28 #include "diagnostic-core.h"
29 #include "tm.h"
30 #include "cgraph.h"
31 #include "tree-ssa-operands.h"
32 #include "tree-pass.h"
33 #include "langhooks.h"
34 #include "bitmap.h"
35 #include "hash-map.h"
36 #include "inchash.h"
37 #include "ipa-prop.h"
38 #include "common.h"
39 #include "debug.h"
40 #include "tree-ssa-alias.h"
41 #include "internal-fn.h"
42 #include "gimple-expr.h"
43 #include "is-a.h"
44 #include "gimple.h"
45 #include "lto.h"
46 #include "lto-tree.h"
47 #include "lto-streamer.h"
48 #include "lto-section-names.h"
49 #include "tree-streamer.h"
50 #include "splay-tree.h"
51 #include "lto-partition.h"
52 #include "data-streamer.h"
53 #include "context.h"
54 #include "pass_manager.h"
55 #include "ipa-inline.h"
56 #include "params.h"
57 #include "ipa-utils.h"
60 /* Number of parallel tasks to run, -1 if we want to use GNU Make jobserver. */
61 static int lto_parallelism;
63 static GTY(()) tree first_personality_decl;
65 /* Returns a hash code for P. */
67 static hashval_t
68 hash_name (const void *p)
70 const struct lto_section_slot *ds = (const struct lto_section_slot *) p;
71 return (hashval_t) htab_hash_string (ds->name);
75 /* Returns nonzero if P1 and P2 are equal. */
77 static int
78 eq_name (const void *p1, const void *p2)
80 const struct lto_section_slot *s1 =
81 (const struct lto_section_slot *) p1;
82 const struct lto_section_slot *s2 =
83 (const struct lto_section_slot *) p2;
85 return strcmp (s1->name, s2->name) == 0;
88 /* Free lto_section_slot */
90 static void
91 free_with_string (void *arg)
93 struct lto_section_slot *s = (struct lto_section_slot *)arg;
95 free (CONST_CAST (char *, s->name));
96 free (arg);
99 /* Create section hash table */
101 htab_t
102 lto_obj_create_section_hash_table (void)
104 return htab_create (37, hash_name, eq_name, free_with_string);
107 /* Delete an allocated integer KEY in the splay tree. */
109 static void
110 lto_splay_tree_delete_id (splay_tree_key key)
112 free ((void *) key);
115 /* Compare splay tree node ids A and B. */
117 static int
118 lto_splay_tree_compare_ids (splay_tree_key a, splay_tree_key b)
120 unsigned HOST_WIDE_INT ai;
121 unsigned HOST_WIDE_INT bi;
123 ai = *(unsigned HOST_WIDE_INT *) a;
124 bi = *(unsigned HOST_WIDE_INT *) b;
126 if (ai < bi)
127 return -1;
128 else if (ai > bi)
129 return 1;
130 return 0;
133 /* Look up splay tree node by ID in splay tree T. */
135 static splay_tree_node
136 lto_splay_tree_lookup (splay_tree t, unsigned HOST_WIDE_INT id)
138 return splay_tree_lookup (t, (splay_tree_key) &id);
141 /* Check if KEY has ID. */
143 static bool
144 lto_splay_tree_id_equal_p (splay_tree_key key, unsigned HOST_WIDE_INT id)
146 return *(unsigned HOST_WIDE_INT *) key == id;
149 /* Insert a splay tree node into tree T with ID as key and FILE_DATA as value.
150 The ID is allocated separately because we need HOST_WIDE_INTs which may
151 be wider than a splay_tree_key. */
153 static void
154 lto_splay_tree_insert (splay_tree t, unsigned HOST_WIDE_INT id,
155 struct lto_file_decl_data *file_data)
157 unsigned HOST_WIDE_INT *idp = XCNEW (unsigned HOST_WIDE_INT);
158 *idp = id;
159 splay_tree_insert (t, (splay_tree_key) idp, (splay_tree_value) file_data);
162 /* Create a splay tree. */
164 static splay_tree
165 lto_splay_tree_new (void)
167 return splay_tree_new (lto_splay_tree_compare_ids,
168 lto_splay_tree_delete_id,
169 NULL);
172 /* Return true when NODE has a clone that is analyzed (i.e. we need
173 to load its body even if the node itself is not needed). */
175 static bool
176 has_analyzed_clone_p (struct cgraph_node *node)
178 struct cgraph_node *orig = node;
179 node = node->clones;
180 if (node)
181 while (node != orig)
183 if (node->analyzed)
184 return true;
185 if (node->clones)
186 node = node->clones;
187 else if (node->next_sibling_clone)
188 node = node->next_sibling_clone;
189 else
191 while (node != orig && !node->next_sibling_clone)
192 node = node->clone_of;
193 if (node != orig)
194 node = node->next_sibling_clone;
197 return false;
200 /* Read the function body for the function associated with NODE. */
202 static void
203 lto_materialize_function (struct cgraph_node *node)
205 tree decl;
207 decl = node->decl;
208 /* Read in functions with body (analyzed nodes)
209 and also functions that are needed to produce virtual clones. */
210 if ((node->has_gimple_body_p () && node->analyzed)
211 || node->used_as_abstract_origin
212 || has_analyzed_clone_p (node))
214 /* Clones don't need to be read. */
215 if (node->clone_of)
216 return;
217 if (DECL_FUNCTION_PERSONALITY (decl) && !first_personality_decl)
218 first_personality_decl = DECL_FUNCTION_PERSONALITY (decl);
221 /* Let the middle end know about the function. */
222 rest_of_decl_compilation (decl, 1, 0);
226 /* Decode the content of memory pointed to by DATA in the in decl
227 state object STATE. DATA_IN points to a data_in structure for
228 decoding. Return the address after the decoded object in the
229 input. */
231 static const uint32_t *
232 lto_read_in_decl_state (struct data_in *data_in, const uint32_t *data,
233 struct lto_in_decl_state *state)
235 uint32_t ix;
236 tree decl;
237 uint32_t i, j;
239 ix = *data++;
240 decl = streamer_tree_cache_get_tree (data_in->reader_cache, ix);
241 if (!VAR_OR_FUNCTION_DECL_P (decl))
243 gcc_assert (decl == void_type_node);
244 decl = NULL_TREE;
246 state->fn_decl = decl;
248 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
250 uint32_t size = *data++;
251 tree *decls = ggc_vec_alloc<tree> (size);
253 for (j = 0; j < size; j++)
254 decls[j] = streamer_tree_cache_get_tree (data_in->reader_cache, data[j]);
256 state->streams[i].size = size;
257 state->streams[i].trees = decls;
258 data += size;
261 return data;
265 /* Global canonical type table. */
266 static htab_t gimple_canonical_types;
267 static hash_map<const_tree, hashval_t> *canonical_type_hash_cache;
268 static unsigned long num_canonical_type_hash_entries;
269 static unsigned long num_canonical_type_hash_queries;
271 static void iterative_hash_canonical_type (tree type, inchash::hash &hstate);
272 static hashval_t gimple_canonical_type_hash (const void *p);
273 static void gimple_register_canonical_type_1 (tree t, hashval_t hash);
275 /* Returning a hash value for gimple type TYPE.
277 The hash value returned is equal for types considered compatible
278 by gimple_canonical_types_compatible_p. */
280 static hashval_t
281 hash_canonical_type (tree type)
283 inchash::hash hstate;
285 /* Combine a few common features of types so that types are grouped into
286 smaller sets; when searching for existing matching types to merge,
287 only existing types having the same features as the new type will be
288 checked. */
289 hstate.add_int (TREE_CODE (type));
290 hstate.add_int (TYPE_MODE (type));
292 /* Incorporate common features of numerical types. */
293 if (INTEGRAL_TYPE_P (type)
294 || SCALAR_FLOAT_TYPE_P (type)
295 || FIXED_POINT_TYPE_P (type)
296 || TREE_CODE (type) == OFFSET_TYPE
297 || POINTER_TYPE_P (type))
299 hstate.add_int (TYPE_UNSIGNED (type));
300 hstate.add_int (TYPE_PRECISION (type));
303 if (VECTOR_TYPE_P (type))
305 hstate.add_int (TYPE_VECTOR_SUBPARTS (type));
306 hstate.add_int (TYPE_UNSIGNED (type));
309 if (TREE_CODE (type) == COMPLEX_TYPE)
310 hstate.add_int (TYPE_UNSIGNED (type));
312 /* For pointer and reference types, fold in information about the type
313 pointed to but do not recurse to the pointed-to type. */
314 if (POINTER_TYPE_P (type))
316 hstate.add_int (TYPE_ADDR_SPACE (TREE_TYPE (type)));
317 hstate.add_int (TREE_CODE (TREE_TYPE (type)));
320 /* For integer types hash only the string flag. */
321 if (TREE_CODE (type) == INTEGER_TYPE)
322 hstate.add_int (TYPE_STRING_FLAG (type));
324 /* For array types hash the domain bounds and the string flag. */
325 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
327 hstate.add_int (TYPE_STRING_FLAG (type));
328 /* OMP lowering can introduce error_mark_node in place of
329 random local decls in types. */
330 if (TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
331 inchash::add_expr (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), hstate);
332 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
333 inchash::add_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), hstate);
336 /* Recurse for aggregates with a single element type. */
337 if (TREE_CODE (type) == ARRAY_TYPE
338 || TREE_CODE (type) == COMPLEX_TYPE
339 || TREE_CODE (type) == VECTOR_TYPE)
340 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
342 /* Incorporate function return and argument types. */
343 if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
345 unsigned na;
346 tree p;
348 /* For method types also incorporate their parent class. */
349 if (TREE_CODE (type) == METHOD_TYPE)
350 iterative_hash_canonical_type (TYPE_METHOD_BASETYPE (type), hstate);
352 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
354 for (p = TYPE_ARG_TYPES (type), na = 0; p; p = TREE_CHAIN (p))
356 iterative_hash_canonical_type (TREE_VALUE (p), hstate);
357 na++;
360 hstate.add_int (na);
363 if (RECORD_OR_UNION_TYPE_P (type))
365 unsigned nf;
366 tree f;
368 for (f = TYPE_FIELDS (type), nf = 0; f; f = TREE_CHAIN (f))
369 if (TREE_CODE (f) == FIELD_DECL)
371 iterative_hash_canonical_type (TREE_TYPE (f), hstate);
372 nf++;
375 hstate.add_int (nf);
378 return hstate.end();
381 /* Returning a hash value for gimple type TYPE combined with VAL. */
383 static void
384 iterative_hash_canonical_type (tree type, inchash::hash &hstate)
386 hashval_t v;
387 /* An already processed type. */
388 if (TYPE_CANONICAL (type))
390 type = TYPE_CANONICAL (type);
391 v = gimple_canonical_type_hash (type);
393 else
395 /* Canonical types should not be able to form SCCs by design, this
396 recursion is just because we do not register canonical types in
397 optimal order. To avoid quadratic behavior also register the
398 type here. */
399 v = hash_canonical_type (type);
400 gimple_register_canonical_type_1 (type, v);
402 hstate.add_int (v);
405 /* Returns the hash for a canonical type P. */
407 static hashval_t
408 gimple_canonical_type_hash (const void *p)
410 num_canonical_type_hash_queries++;
411 hashval_t *slot = canonical_type_hash_cache->get ((const_tree) p);
412 gcc_assert (slot != NULL);
413 return *slot;
417 /* The TYPE_CANONICAL merging machinery. It should closely resemble
418 the middle-end types_compatible_p function. It needs to avoid
419 claiming types are different for types that should be treated
420 the same with respect to TBAA. Canonical types are also used
421 for IL consistency checks via the useless_type_conversion_p
422 predicate which does not handle all type kinds itself but falls
423 back to pointer-comparison of TYPE_CANONICAL for aggregates
424 for example. */
426 /* Return true iff T1 and T2 are structurally identical for what
427 TBAA is concerned. */
429 static bool
430 gimple_canonical_types_compatible_p (tree t1, tree t2)
432 /* Before starting to set up the SCC machinery handle simple cases. */
434 /* Check first for the obvious case of pointer identity. */
435 if (t1 == t2)
436 return true;
438 /* Check that we have two types to compare. */
439 if (t1 == NULL_TREE || t2 == NULL_TREE)
440 return false;
442 /* If the types have been previously registered and found equal
443 they still are. */
444 if (TYPE_CANONICAL (t1)
445 && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
446 return true;
448 /* Can't be the same type if the types don't have the same code. */
449 if (TREE_CODE (t1) != TREE_CODE (t2))
450 return false;
452 /* Qualifiers do not matter for canonical type comparison purposes. */
454 /* Void types and nullptr types are always the same. */
455 if (TREE_CODE (t1) == VOID_TYPE
456 || TREE_CODE (t1) == NULLPTR_TYPE)
457 return true;
459 /* Can't be the same type if they have different mode. */
460 if (TYPE_MODE (t1) != TYPE_MODE (t2))
461 return false;
463 /* Non-aggregate types can be handled cheaply. */
464 if (INTEGRAL_TYPE_P (t1)
465 || SCALAR_FLOAT_TYPE_P (t1)
466 || FIXED_POINT_TYPE_P (t1)
467 || TREE_CODE (t1) == VECTOR_TYPE
468 || TREE_CODE (t1) == COMPLEX_TYPE
469 || TREE_CODE (t1) == OFFSET_TYPE
470 || POINTER_TYPE_P (t1))
472 /* Can't be the same type if they have different sign or precision. */
473 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2)
474 || TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2))
475 return false;
477 if (TREE_CODE (t1) == INTEGER_TYPE
478 && TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2))
479 return false;
481 /* For canonical type comparisons we do not want to build SCCs
482 so we cannot compare pointed-to types. But we can, for now,
483 require the same pointed-to type kind and match what
484 useless_type_conversion_p would do. */
485 if (POINTER_TYPE_P (t1))
487 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
488 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
489 return false;
491 if (TREE_CODE (TREE_TYPE (t1)) != TREE_CODE (TREE_TYPE (t2)))
492 return false;
495 /* Tail-recurse to components. */
496 if (TREE_CODE (t1) == VECTOR_TYPE
497 || TREE_CODE (t1) == COMPLEX_TYPE)
498 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
499 TREE_TYPE (t2));
501 return true;
504 /* Do type-specific comparisons. */
505 switch (TREE_CODE (t1))
507 case ARRAY_TYPE:
508 /* Array types are the same if the element types are the same and
509 the number of elements are the same. */
510 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2))
511 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
512 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
513 return false;
514 else
516 tree i1 = TYPE_DOMAIN (t1);
517 tree i2 = TYPE_DOMAIN (t2);
519 /* For an incomplete external array, the type domain can be
520 NULL_TREE. Check this condition also. */
521 if (i1 == NULL_TREE && i2 == NULL_TREE)
522 return true;
523 else if (i1 == NULL_TREE || i2 == NULL_TREE)
524 return false;
525 else
527 tree min1 = TYPE_MIN_VALUE (i1);
528 tree min2 = TYPE_MIN_VALUE (i2);
529 tree max1 = TYPE_MAX_VALUE (i1);
530 tree max2 = TYPE_MAX_VALUE (i2);
532 /* The minimum/maximum values have to be the same. */
533 if ((min1 == min2
534 || (min1 && min2
535 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
536 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
537 || operand_equal_p (min1, min2, 0))))
538 && (max1 == max2
539 || (max1 && max2
540 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
541 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
542 || operand_equal_p (max1, max2, 0)))))
543 return true;
544 else
545 return false;
549 case METHOD_TYPE:
550 case FUNCTION_TYPE:
551 /* Function types are the same if the return type and arguments types
552 are the same. */
553 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
554 return false;
556 if (!comp_type_attributes (t1, t2))
557 return false;
559 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
560 return true;
561 else
563 tree parms1, parms2;
565 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
566 parms1 && parms2;
567 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
569 if (!gimple_canonical_types_compatible_p
570 (TREE_VALUE (parms1), TREE_VALUE (parms2)))
571 return false;
574 if (parms1 || parms2)
575 return false;
577 return true;
580 case RECORD_TYPE:
581 case UNION_TYPE:
582 case QUAL_UNION_TYPE:
584 tree f1, f2;
586 /* For aggregate types, all the fields must be the same. */
587 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
588 f1 || f2;
589 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
591 /* Skip non-fields. */
592 while (f1 && TREE_CODE (f1) != FIELD_DECL)
593 f1 = TREE_CHAIN (f1);
594 while (f2 && TREE_CODE (f2) != FIELD_DECL)
595 f2 = TREE_CHAIN (f2);
596 if (!f1 || !f2)
597 break;
598 /* The fields must have the same name, offset and type. */
599 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
600 || !gimple_compare_field_offset (f1, f2)
601 || !gimple_canonical_types_compatible_p
602 (TREE_TYPE (f1), TREE_TYPE (f2)))
603 return false;
606 /* If one aggregate has more fields than the other, they
607 are not the same. */
608 if (f1 || f2)
609 return false;
611 return true;
614 default:
615 gcc_unreachable ();
620 /* Returns nonzero if P1 and P2 are equal. */
622 static int
623 gimple_canonical_type_eq (const void *p1, const void *p2)
625 const_tree t1 = (const_tree) p1;
626 const_tree t2 = (const_tree) p2;
627 return gimple_canonical_types_compatible_p (CONST_CAST_TREE (t1),
628 CONST_CAST_TREE (t2));
631 /* Main worker for gimple_register_canonical_type. */
633 static void
634 gimple_register_canonical_type_1 (tree t, hashval_t hash)
636 void **slot;
638 gcc_checking_assert (TYPE_P (t) && !TYPE_CANONICAL (t));
640 slot = htab_find_slot_with_hash (gimple_canonical_types, t, hash, INSERT);
641 if (*slot)
643 tree new_type = (tree)(*slot);
644 gcc_checking_assert (new_type != t);
645 TYPE_CANONICAL (t) = new_type;
647 else
649 TYPE_CANONICAL (t) = t;
650 *slot = (void *) t;
651 /* Cache the just computed hash value. */
652 num_canonical_type_hash_entries++;
653 bool existed_p = canonical_type_hash_cache->put (t, hash);
654 gcc_assert (!existed_p);
658 /* Register type T in the global type table gimple_types and set
659 TYPE_CANONICAL of T accordingly.
660 This is used by LTO to merge structurally equivalent types for
661 type-based aliasing purposes across different TUs and languages.
663 ??? This merging does not exactly match how the tree.c middle-end
664 functions will assign TYPE_CANONICAL when new types are created
665 during optimization (which at least happens for pointer and array
666 types). */
668 static void
669 gimple_register_canonical_type (tree t)
671 if (TYPE_CANONICAL (t))
672 return;
674 gimple_register_canonical_type_1 (t, hash_canonical_type (t));
677 /* Re-compute TYPE_CANONICAL for NODE and related types. */
679 static void
680 lto_register_canonical_types (tree node, bool first_p)
682 if (!node
683 || !TYPE_P (node))
684 return;
686 if (first_p)
687 TYPE_CANONICAL (node) = NULL_TREE;
689 if (POINTER_TYPE_P (node)
690 || TREE_CODE (node) == COMPLEX_TYPE
691 || TREE_CODE (node) == ARRAY_TYPE)
692 lto_register_canonical_types (TREE_TYPE (node), first_p);
694 if (!first_p)
695 gimple_register_canonical_type (node);
699 /* Remember trees that contains references to declarations. */
700 static GTY(()) vec <tree, va_gc> *tree_with_vars;
702 #define CHECK_VAR(tt) \
703 do \
705 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
706 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
707 return true; \
708 } while (0)
710 #define CHECK_NO_VAR(tt) \
711 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
713 /* Check presence of pointers to decls in fields of a tree_typed T. */
715 static inline bool
716 mentions_vars_p_typed (tree t)
718 CHECK_NO_VAR (TREE_TYPE (t));
719 return false;
722 /* Check presence of pointers to decls in fields of a tree_common T. */
724 static inline bool
725 mentions_vars_p_common (tree t)
727 if (mentions_vars_p_typed (t))
728 return true;
729 CHECK_NO_VAR (TREE_CHAIN (t));
730 return false;
733 /* Check presence of pointers to decls in fields of a decl_minimal T. */
735 static inline bool
736 mentions_vars_p_decl_minimal (tree t)
738 if (mentions_vars_p_common (t))
739 return true;
740 CHECK_NO_VAR (DECL_NAME (t));
741 CHECK_VAR (DECL_CONTEXT (t));
742 return false;
745 /* Check presence of pointers to decls in fields of a decl_common T. */
747 static inline bool
748 mentions_vars_p_decl_common (tree t)
750 if (mentions_vars_p_decl_minimal (t))
751 return true;
752 CHECK_VAR (DECL_SIZE (t));
753 CHECK_VAR (DECL_SIZE_UNIT (t));
754 CHECK_VAR (DECL_INITIAL (t));
755 CHECK_NO_VAR (DECL_ATTRIBUTES (t));
756 CHECK_VAR (DECL_ABSTRACT_ORIGIN (t));
757 return false;
760 /* Check presence of pointers to decls in fields of a decl_with_vis T. */
762 static inline bool
763 mentions_vars_p_decl_with_vis (tree t)
765 if (mentions_vars_p_decl_common (t))
766 return true;
768 /* Accessor macro has side-effects, use field-name here. */
769 CHECK_NO_VAR (t->decl_with_vis.assembler_name);
770 return false;
773 /* Check presence of pointers to decls in fields of a decl_non_common T. */
775 static inline bool
776 mentions_vars_p_decl_non_common (tree t)
778 if (mentions_vars_p_decl_with_vis (t))
779 return true;
780 CHECK_NO_VAR (DECL_RESULT_FLD (t));
781 return false;
784 /* Check presence of pointers to decls in fields of a decl_non_common T. */
786 static bool
787 mentions_vars_p_function (tree t)
789 if (mentions_vars_p_decl_non_common (t))
790 return true;
791 CHECK_NO_VAR (DECL_ARGUMENTS (t));
792 CHECK_NO_VAR (DECL_VINDEX (t));
793 CHECK_VAR (DECL_FUNCTION_PERSONALITY (t));
794 return false;
797 /* Check presence of pointers to decls in fields of a field_decl T. */
799 static bool
800 mentions_vars_p_field_decl (tree t)
802 if (mentions_vars_p_decl_common (t))
803 return true;
804 CHECK_VAR (DECL_FIELD_OFFSET (t));
805 CHECK_NO_VAR (DECL_BIT_FIELD_TYPE (t));
806 CHECK_NO_VAR (DECL_QUALIFIER (t));
807 CHECK_NO_VAR (DECL_FIELD_BIT_OFFSET (t));
808 CHECK_NO_VAR (DECL_FCONTEXT (t));
809 return false;
812 /* Check presence of pointers to decls in fields of a type T. */
814 static bool
815 mentions_vars_p_type (tree t)
817 if (mentions_vars_p_common (t))
818 return true;
819 CHECK_NO_VAR (TYPE_CACHED_VALUES (t));
820 CHECK_VAR (TYPE_SIZE (t));
821 CHECK_VAR (TYPE_SIZE_UNIT (t));
822 CHECK_NO_VAR (TYPE_ATTRIBUTES (t));
823 CHECK_NO_VAR (TYPE_NAME (t));
825 CHECK_VAR (TYPE_MINVAL (t));
826 CHECK_VAR (TYPE_MAXVAL (t));
828 /* Accessor is for derived node types only. */
829 CHECK_NO_VAR (t->type_non_common.binfo);
831 CHECK_VAR (TYPE_CONTEXT (t));
832 CHECK_NO_VAR (TYPE_CANONICAL (t));
833 CHECK_NO_VAR (TYPE_MAIN_VARIANT (t));
834 CHECK_NO_VAR (TYPE_NEXT_VARIANT (t));
835 return false;
838 /* Check presence of pointers to decls in fields of a BINFO T. */
840 static bool
841 mentions_vars_p_binfo (tree t)
843 unsigned HOST_WIDE_INT i, n;
845 if (mentions_vars_p_common (t))
846 return true;
847 CHECK_VAR (BINFO_VTABLE (t));
848 CHECK_NO_VAR (BINFO_OFFSET (t));
849 CHECK_NO_VAR (BINFO_VIRTUALS (t));
850 CHECK_NO_VAR (BINFO_VPTR_FIELD (t));
851 n = vec_safe_length (BINFO_BASE_ACCESSES (t));
852 for (i = 0; i < n; i++)
853 CHECK_NO_VAR (BINFO_BASE_ACCESS (t, i));
854 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
855 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
856 n = BINFO_N_BASE_BINFOS (t);
857 for (i = 0; i < n; i++)
858 CHECK_NO_VAR (BINFO_BASE_BINFO (t, i));
859 return false;
862 /* Check presence of pointers to decls in fields of a CONSTRUCTOR T. */
864 static bool
865 mentions_vars_p_constructor (tree t)
867 unsigned HOST_WIDE_INT idx;
868 constructor_elt *ce;
870 if (mentions_vars_p_typed (t))
871 return true;
873 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (t), idx, &ce); idx++)
875 CHECK_NO_VAR (ce->index);
876 CHECK_VAR (ce->value);
878 return false;
881 /* Check presence of pointers to decls in fields of an expression tree T. */
883 static bool
884 mentions_vars_p_expr (tree t)
886 int i;
887 if (mentions_vars_p_typed (t))
888 return true;
889 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
890 CHECK_VAR (TREE_OPERAND (t, i));
891 return false;
894 /* Check presence of pointers to decls in fields of an OMP_CLAUSE T. */
896 static bool
897 mentions_vars_p_omp_clause (tree t)
899 int i;
900 if (mentions_vars_p_common (t))
901 return true;
902 for (i = omp_clause_num_ops[OMP_CLAUSE_CODE (t)] - 1; i >= 0; --i)
903 CHECK_VAR (OMP_CLAUSE_OPERAND (t, i));
904 return false;
907 /* Check presence of pointers to decls that needs later fixup in T. */
909 static bool
910 mentions_vars_p (tree t)
912 switch (TREE_CODE (t))
914 case IDENTIFIER_NODE:
915 break;
917 case TREE_LIST:
918 CHECK_VAR (TREE_VALUE (t));
919 CHECK_VAR (TREE_PURPOSE (t));
920 CHECK_NO_VAR (TREE_CHAIN (t));
921 break;
923 case FIELD_DECL:
924 return mentions_vars_p_field_decl (t);
926 case LABEL_DECL:
927 case CONST_DECL:
928 case PARM_DECL:
929 case RESULT_DECL:
930 case IMPORTED_DECL:
931 case NAMESPACE_DECL:
932 case NAMELIST_DECL:
933 return mentions_vars_p_decl_common (t);
935 case VAR_DECL:
936 return mentions_vars_p_decl_with_vis (t);
938 case TYPE_DECL:
939 return mentions_vars_p_decl_non_common (t);
941 case FUNCTION_DECL:
942 return mentions_vars_p_function (t);
944 case TREE_BINFO:
945 return mentions_vars_p_binfo (t);
947 case PLACEHOLDER_EXPR:
948 return mentions_vars_p_common (t);
950 case BLOCK:
951 case TRANSLATION_UNIT_DECL:
952 case OPTIMIZATION_NODE:
953 case TARGET_OPTION_NODE:
954 break;
956 case CONSTRUCTOR:
957 return mentions_vars_p_constructor (t);
959 case OMP_CLAUSE:
960 return mentions_vars_p_omp_clause (t);
962 default:
963 if (TYPE_P (t))
965 if (mentions_vars_p_type (t))
966 return true;
968 else if (EXPR_P (t))
970 if (mentions_vars_p_expr (t))
971 return true;
973 else if (CONSTANT_CLASS_P (t))
974 CHECK_NO_VAR (TREE_TYPE (t));
975 else
976 gcc_unreachable ();
978 return false;
982 /* Return the resolution for the decl with index INDEX from DATA_IN. */
984 static enum ld_plugin_symbol_resolution
985 get_resolution (struct data_in *data_in, unsigned index)
987 if (data_in->globals_resolution.exists ())
989 ld_plugin_symbol_resolution_t ret;
990 /* We can have references to not emitted functions in
991 DECL_FUNCTION_PERSONALITY at least. So we can and have
992 to indeed return LDPR_UNKNOWN in some cases. */
993 if (data_in->globals_resolution.length () <= index)
994 return LDPR_UNKNOWN;
995 ret = data_in->globals_resolution[index];
996 return ret;
998 else
999 /* Delay resolution finding until decl merging. */
1000 return LDPR_UNKNOWN;
1003 /* We need to record resolutions until symbol table is read. */
1004 static void
1005 register_resolution (struct lto_file_decl_data *file_data, tree decl,
1006 enum ld_plugin_symbol_resolution resolution)
1008 if (resolution == LDPR_UNKNOWN)
1009 return;
1010 if (!file_data->resolution_map)
1011 file_data->resolution_map
1012 = new hash_map<tree, ld_plugin_symbol_resolution>;
1013 file_data->resolution_map->put (decl, resolution);
1016 /* Register DECL with the global symbol table and change its
1017 name if necessary to avoid name clashes for static globals across
1018 different files. */
1020 static void
1021 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl,
1022 unsigned ix)
1024 tree context;
1026 /* Variable has file scope, not local. */
1027 if (!TREE_PUBLIC (decl)
1028 && !((context = decl_function_context (decl))
1029 && auto_var_in_fn_p (decl, context)))
1030 rest_of_decl_compilation (decl, 1, 0);
1032 /* If this variable has already been declared, queue the
1033 declaration for merging. */
1034 if (TREE_PUBLIC (decl))
1035 register_resolution (data_in->file_data,
1036 decl, get_resolution (data_in, ix));
1040 /* Register DECL with the global symbol table and change its
1041 name if necessary to avoid name clashes for static globals across
1042 different files. DATA_IN contains descriptors and tables for the
1043 file being read. */
1045 static void
1046 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl,
1047 unsigned ix)
1049 /* If this variable has already been declared, queue the
1050 declaration for merging. */
1051 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT_P (decl))
1052 register_resolution (data_in->file_data,
1053 decl, get_resolution (data_in, ix));
1057 /* For the type T re-materialize it in the type variant list and
1058 the pointer/reference-to chains. */
1060 static void
1061 lto_fixup_prevailing_type (tree t)
1063 /* The following re-creates proper variant lists while fixing up
1064 the variant leaders. We do not stream TYPE_NEXT_VARIANT so the
1065 variant list state before fixup is broken. */
1067 /* If we are not our own variant leader link us into our new leaders
1068 variant list. */
1069 if (TYPE_MAIN_VARIANT (t) != t)
1071 tree mv = TYPE_MAIN_VARIANT (t);
1072 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
1073 TYPE_NEXT_VARIANT (mv) = t;
1076 /* The following reconstructs the pointer chains
1077 of the new pointed-to type if we are a main variant. We do
1078 not stream those so they are broken before fixup. */
1079 if (TREE_CODE (t) == POINTER_TYPE
1080 && TYPE_MAIN_VARIANT (t) == t)
1082 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (TREE_TYPE (t));
1083 TYPE_POINTER_TO (TREE_TYPE (t)) = t;
1085 else if (TREE_CODE (t) == REFERENCE_TYPE
1086 && TYPE_MAIN_VARIANT (t) == t)
1088 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (TREE_TYPE (t));
1089 TYPE_REFERENCE_TO (TREE_TYPE (t)) = t;
1094 /* We keep prevailing tree SCCs in a hashtable with manual collision
1095 handling (in case all hashes compare the same) and keep the colliding
1096 entries in the tree_scc->next chain. */
1098 struct tree_scc
1100 tree_scc *next;
1101 /* Hash of the whole SCC. */
1102 hashval_t hash;
1103 /* Number of trees in the SCC. */
1104 unsigned len;
1105 /* Number of possible entries into the SCC (tree nodes [0..entry_len-1]
1106 which share the same individual tree hash). */
1107 unsigned entry_len;
1108 /* The members of the SCC.
1109 We only need to remember the first entry node candidate for prevailing
1110 SCCs (but of course have access to all entries for SCCs we are
1111 processing).
1112 ??? For prevailing SCCs we really only need hash and the first
1113 entry candidate, but that's too awkward to implement. */
1114 tree entries[1];
1117 struct tree_scc_hasher : typed_noop_remove <tree_scc>
1119 typedef tree_scc value_type;
1120 typedef tree_scc compare_type;
1121 static inline hashval_t hash (const value_type *);
1122 static inline bool equal (const value_type *, const compare_type *);
1125 hashval_t
1126 tree_scc_hasher::hash (const value_type *scc)
1128 return scc->hash;
1131 bool
1132 tree_scc_hasher::equal (const value_type *scc1, const compare_type *scc2)
1134 if (scc1->hash != scc2->hash
1135 || scc1->len != scc2->len
1136 || scc1->entry_len != scc2->entry_len)
1137 return false;
1138 return true;
1141 static hash_table<tree_scc_hasher> *tree_scc_hash;
1142 static struct obstack tree_scc_hash_obstack;
1144 static unsigned long num_merged_types;
1145 static unsigned long num_prevailing_types;
1146 static unsigned long num_type_scc_trees;
1147 static unsigned long total_scc_size;
1148 static unsigned long num_sccs_read;
1149 static unsigned long total_scc_size_merged;
1150 static unsigned long num_sccs_merged;
1151 static unsigned long num_scc_compares;
1152 static unsigned long num_scc_compare_collisions;
1155 /* Compare the two entries T1 and T2 of two SCCs that are possibly equal,
1156 recursing through in-SCC tree edges. Returns true if the SCCs entered
1157 through T1 and T2 are equal and fills in *MAP with the pairs of
1158 SCC entries we visited, starting with (*MAP)[0] = T1 and (*MAP)[1] = T2. */
1160 static bool
1161 compare_tree_sccs_1 (tree t1, tree t2, tree **map)
1163 enum tree_code code;
1165 /* Mark already visited nodes. */
1166 TREE_ASM_WRITTEN (t2) = 1;
1168 /* Push the pair onto map. */
1169 (*map)[0] = t1;
1170 (*map)[1] = t2;
1171 *map = *map + 2;
1173 /* Compare value-fields. */
1174 #define compare_values(X) \
1175 do { \
1176 if (X(t1) != X(t2)) \
1177 return false; \
1178 } while (0)
1180 compare_values (TREE_CODE);
1181 code = TREE_CODE (t1);
1183 if (!TYPE_P (t1))
1185 compare_values (TREE_SIDE_EFFECTS);
1186 compare_values (TREE_CONSTANT);
1187 compare_values (TREE_READONLY);
1188 compare_values (TREE_PUBLIC);
1190 compare_values (TREE_ADDRESSABLE);
1191 compare_values (TREE_THIS_VOLATILE);
1192 if (DECL_P (t1))
1193 compare_values (DECL_UNSIGNED);
1194 else if (TYPE_P (t1))
1195 compare_values (TYPE_UNSIGNED);
1196 if (TYPE_P (t1))
1197 compare_values (TYPE_ARTIFICIAL);
1198 else
1199 compare_values (TREE_NO_WARNING);
1200 compare_values (TREE_NOTHROW);
1201 compare_values (TREE_STATIC);
1202 if (code != TREE_BINFO)
1203 compare_values (TREE_PRIVATE);
1204 compare_values (TREE_PROTECTED);
1205 compare_values (TREE_DEPRECATED);
1206 if (TYPE_P (t1))
1208 compare_values (TYPE_SATURATING);
1209 compare_values (TYPE_ADDR_SPACE);
1211 else if (code == SSA_NAME)
1212 compare_values (SSA_NAME_IS_DEFAULT_DEF);
1214 if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
1216 if (!wi::eq_p (t1, t2))
1217 return false;
1220 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1222 /* ??? No suitable compare routine available. */
1223 REAL_VALUE_TYPE r1 = TREE_REAL_CST (t1);
1224 REAL_VALUE_TYPE r2 = TREE_REAL_CST (t2);
1225 if (r1.cl != r2.cl
1226 || r1.decimal != r2.decimal
1227 || r1.sign != r2.sign
1228 || r1.signalling != r2.signalling
1229 || r1.canonical != r2.canonical
1230 || r1.uexp != r2.uexp)
1231 return false;
1232 for (unsigned i = 0; i < SIGSZ; ++i)
1233 if (r1.sig[i] != r2.sig[i])
1234 return false;
1237 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1238 if (!fixed_compare (EQ_EXPR,
1239 TREE_FIXED_CST_PTR (t1), TREE_FIXED_CST_PTR (t2)))
1240 return false;
1243 /* We don't want to compare locations, so there is nothing do compare
1244 for TS_DECL_MINIMAL. */
1246 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1248 compare_values (DECL_MODE);
1249 compare_values (DECL_NONLOCAL);
1250 compare_values (DECL_VIRTUAL_P);
1251 compare_values (DECL_IGNORED_P);
1252 compare_values (DECL_ABSTRACT_P);
1253 compare_values (DECL_ARTIFICIAL);
1254 compare_values (DECL_USER_ALIGN);
1255 compare_values (DECL_PRESERVE_P);
1256 compare_values (DECL_EXTERNAL);
1257 compare_values (DECL_GIMPLE_REG_P);
1258 compare_values (DECL_ALIGN);
1259 if (code == LABEL_DECL)
1261 compare_values (EH_LANDING_PAD_NR);
1262 compare_values (LABEL_DECL_UID);
1264 else if (code == FIELD_DECL)
1266 compare_values (DECL_PACKED);
1267 compare_values (DECL_NONADDRESSABLE_P);
1268 compare_values (DECL_OFFSET_ALIGN);
1270 else if (code == VAR_DECL)
1272 compare_values (DECL_HAS_DEBUG_EXPR_P);
1273 compare_values (DECL_NONLOCAL_FRAME);
1275 if (code == RESULT_DECL
1276 || code == PARM_DECL
1277 || code == VAR_DECL)
1279 compare_values (DECL_BY_REFERENCE);
1280 if (code == VAR_DECL
1281 || code == PARM_DECL)
1282 compare_values (DECL_HAS_VALUE_EXPR_P);
1286 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1287 compare_values (DECL_REGISTER);
1289 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1291 compare_values (DECL_COMMON);
1292 compare_values (DECL_DLLIMPORT_P);
1293 compare_values (DECL_WEAK);
1294 compare_values (DECL_SEEN_IN_BIND_EXPR_P);
1295 compare_values (DECL_COMDAT);
1296 compare_values (DECL_VISIBILITY);
1297 compare_values (DECL_VISIBILITY_SPECIFIED);
1298 if (code == VAR_DECL)
1300 compare_values (DECL_HARD_REGISTER);
1301 /* DECL_IN_TEXT_SECTION is set during final asm output only. */
1302 compare_values (DECL_IN_CONSTANT_POOL);
1306 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1308 compare_values (DECL_BUILT_IN_CLASS);
1309 compare_values (DECL_STATIC_CONSTRUCTOR);
1310 compare_values (DECL_STATIC_DESTRUCTOR);
1311 compare_values (DECL_UNINLINABLE);
1312 compare_values (DECL_POSSIBLY_INLINED);
1313 compare_values (DECL_IS_NOVOPS);
1314 compare_values (DECL_IS_RETURNS_TWICE);
1315 compare_values (DECL_IS_MALLOC);
1316 compare_values (DECL_IS_OPERATOR_NEW);
1317 compare_values (DECL_DECLARED_INLINE_P);
1318 compare_values (DECL_STATIC_CHAIN);
1319 compare_values (DECL_NO_INLINE_WARNING_P);
1320 compare_values (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT);
1321 compare_values (DECL_NO_LIMIT_STACK);
1322 compare_values (DECL_DISREGARD_INLINE_LIMITS);
1323 compare_values (DECL_PURE_P);
1324 compare_values (DECL_LOOPING_CONST_OR_PURE_P);
1325 compare_values (DECL_FINAL_P);
1326 compare_values (DECL_CXX_CONSTRUCTOR_P);
1327 compare_values (DECL_CXX_DESTRUCTOR_P);
1328 if (DECL_BUILT_IN_CLASS (t1) != NOT_BUILT_IN)
1329 compare_values (DECL_FUNCTION_CODE);
1332 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1334 compare_values (TYPE_MODE);
1335 compare_values (TYPE_STRING_FLAG);
1336 compare_values (TYPE_NO_FORCE_BLK);
1337 compare_values (TYPE_NEEDS_CONSTRUCTING);
1338 if (RECORD_OR_UNION_TYPE_P (t1))
1340 compare_values (TYPE_TRANSPARENT_AGGR);
1341 compare_values (TYPE_FINAL_P);
1343 else if (code == ARRAY_TYPE)
1344 compare_values (TYPE_NONALIASED_COMPONENT);
1345 compare_values (TYPE_PACKED);
1346 compare_values (TYPE_RESTRICT);
1347 compare_values (TYPE_USER_ALIGN);
1348 compare_values (TYPE_READONLY);
1349 compare_values (TYPE_PRECISION);
1350 compare_values (TYPE_ALIGN);
1351 compare_values (TYPE_ALIAS_SET);
1354 /* We don't want to compare locations, so there is nothing do compare
1355 for TS_EXP. */
1357 /* BLOCKs are function local and we don't merge anything there, so
1358 simply refuse to merge. */
1359 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1360 return false;
1362 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1363 if (strcmp (TRANSLATION_UNIT_LANGUAGE (t1),
1364 TRANSLATION_UNIT_LANGUAGE (t2)) != 0)
1365 return false;
1367 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
1368 gcc_unreachable ();
1370 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
1371 if (memcmp (TREE_OPTIMIZATION (t1), TREE_OPTIMIZATION (t2),
1372 sizeof (struct cl_optimization)) != 0)
1373 return false;
1375 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1376 if (vec_safe_length (BINFO_BASE_ACCESSES (t1))
1377 != vec_safe_length (BINFO_BASE_ACCESSES (t2)))
1378 return false;
1380 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1381 compare_values (CONSTRUCTOR_NELTS);
1383 if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1384 if (IDENTIFIER_LENGTH (t1) != IDENTIFIER_LENGTH (t2)
1385 || memcmp (IDENTIFIER_POINTER (t1), IDENTIFIER_POINTER (t2),
1386 IDENTIFIER_LENGTH (t1)) != 0)
1387 return false;
1389 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1390 if (TREE_STRING_LENGTH (t1) != TREE_STRING_LENGTH (t2)
1391 || memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1392 TREE_STRING_LENGTH (t1)) != 0)
1393 return false;
1395 if (code == OMP_CLAUSE)
1397 compare_values (OMP_CLAUSE_CODE);
1398 switch (OMP_CLAUSE_CODE (t1))
1400 case OMP_CLAUSE_DEFAULT:
1401 compare_values (OMP_CLAUSE_DEFAULT_KIND);
1402 break;
1403 case OMP_CLAUSE_SCHEDULE:
1404 compare_values (OMP_CLAUSE_SCHEDULE_KIND);
1405 break;
1406 case OMP_CLAUSE_DEPEND:
1407 compare_values (OMP_CLAUSE_DEPEND_KIND);
1408 break;
1409 case OMP_CLAUSE_MAP:
1410 compare_values (OMP_CLAUSE_MAP_KIND);
1411 break;
1412 case OMP_CLAUSE_PROC_BIND:
1413 compare_values (OMP_CLAUSE_PROC_BIND_KIND);
1414 break;
1415 case OMP_CLAUSE_REDUCTION:
1416 compare_values (OMP_CLAUSE_REDUCTION_CODE);
1417 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_INIT);
1418 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE);
1419 break;
1420 default:
1421 break;
1425 #undef compare_values
1428 /* Compare pointer fields. */
1430 /* Recurse. Search & Replaced from DFS_write_tree_body.
1431 Folding the early checks into the compare_tree_edges recursion
1432 macro makes debugging way quicker as you are able to break on
1433 compare_tree_sccs_1 and simply finish until a call returns false
1434 to spot the SCC members with the difference. */
1435 #define compare_tree_edges(E1, E2) \
1436 do { \
1437 tree t1_ = (E1), t2_ = (E2); \
1438 if (t1_ != t2_ \
1439 && (!t1_ || !t2_ \
1440 || !TREE_VISITED (t2_) \
1441 || (!TREE_ASM_WRITTEN (t2_) \
1442 && !compare_tree_sccs_1 (t1_, t2_, map)))) \
1443 return false; \
1444 /* Only non-NULL trees outside of the SCC may compare equal. */ \
1445 gcc_checking_assert (t1_ != t2_ || (!t2_ || !TREE_VISITED (t2_))); \
1446 } while (0)
1448 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
1450 if (code != IDENTIFIER_NODE)
1451 compare_tree_edges (TREE_TYPE (t1), TREE_TYPE (t2));
1454 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1456 unsigned i;
1457 /* Note that the number of elements for EXPR has already been emitted
1458 in EXPR's header (see streamer_write_tree_header). */
1459 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
1460 compare_tree_edges (VECTOR_CST_ELT (t1, i), VECTOR_CST_ELT (t2, i));
1463 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
1465 compare_tree_edges (TREE_REALPART (t1), TREE_REALPART (t2));
1466 compare_tree_edges (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
1469 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
1471 compare_tree_edges (DECL_NAME (t1), DECL_NAME (t2));
1472 /* ??? Global decls from different TUs have non-matching
1473 TRANSLATION_UNIT_DECLs. Only consider a small set of
1474 decls equivalent, we should not end up merging others. */
1475 if ((code == TYPE_DECL
1476 || code == NAMESPACE_DECL
1477 || code == IMPORTED_DECL
1478 || code == CONST_DECL
1479 || (VAR_OR_FUNCTION_DECL_P (t1)
1480 && (TREE_PUBLIC (t1) || DECL_EXTERNAL (t1))))
1481 && DECL_FILE_SCOPE_P (t1) && DECL_FILE_SCOPE_P (t2))
1483 else
1484 compare_tree_edges (DECL_CONTEXT (t1), DECL_CONTEXT (t2));
1487 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1489 compare_tree_edges (DECL_SIZE (t1), DECL_SIZE (t2));
1490 compare_tree_edges (DECL_SIZE_UNIT (t1), DECL_SIZE_UNIT (t2));
1491 compare_tree_edges (DECL_ATTRIBUTES (t1), DECL_ATTRIBUTES (t2));
1492 if ((code == VAR_DECL
1493 || code == PARM_DECL)
1494 && DECL_HAS_VALUE_EXPR_P (t1))
1495 compare_tree_edges (DECL_VALUE_EXPR (t1), DECL_VALUE_EXPR (t2));
1496 if (code == VAR_DECL
1497 && DECL_HAS_DEBUG_EXPR_P (t1))
1498 compare_tree_edges (DECL_DEBUG_EXPR (t1), DECL_DEBUG_EXPR (t2));
1499 /* LTO specific edges. */
1500 if (code != FUNCTION_DECL
1501 && code != TRANSLATION_UNIT_DECL)
1502 compare_tree_edges (DECL_INITIAL (t1), DECL_INITIAL (t2));
1505 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
1507 if (code == FUNCTION_DECL)
1509 tree a1, a2;
1510 for (a1 = DECL_ARGUMENTS (t1), a2 = DECL_ARGUMENTS (t2);
1511 a1 || a2;
1512 a1 = TREE_CHAIN (a1), a2 = TREE_CHAIN (a2))
1513 compare_tree_edges (a1, a2);
1514 compare_tree_edges (DECL_RESULT (t1), DECL_RESULT (t2));
1516 else if (code == TYPE_DECL)
1517 compare_tree_edges (DECL_ORIGINAL_TYPE (t1), DECL_ORIGINAL_TYPE (t2));
1520 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1522 /* Make sure we don't inadvertently set the assembler name. */
1523 if (DECL_ASSEMBLER_NAME_SET_P (t1))
1524 compare_tree_edges (DECL_ASSEMBLER_NAME (t1),
1525 DECL_ASSEMBLER_NAME (t2));
1528 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1530 compare_tree_edges (DECL_FIELD_OFFSET (t1), DECL_FIELD_OFFSET (t2));
1531 compare_tree_edges (DECL_BIT_FIELD_TYPE (t1), DECL_BIT_FIELD_TYPE (t2));
1532 compare_tree_edges (DECL_BIT_FIELD_REPRESENTATIVE (t1),
1533 DECL_BIT_FIELD_REPRESENTATIVE (t2));
1534 compare_tree_edges (DECL_FIELD_BIT_OFFSET (t1),
1535 DECL_FIELD_BIT_OFFSET (t2));
1536 compare_tree_edges (DECL_FCONTEXT (t1), DECL_FCONTEXT (t2));
1539 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1541 compare_tree_edges (DECL_FUNCTION_PERSONALITY (t1),
1542 DECL_FUNCTION_PERSONALITY (t2));
1543 compare_tree_edges (DECL_VINDEX (t1), DECL_VINDEX (t2));
1544 /* DECL_FUNCTION_SPECIFIC_TARGET is not yet created. We compare
1545 the attribute list instead. */
1546 compare_tree_edges (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t1),
1547 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t2));
1550 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1552 compare_tree_edges (TYPE_SIZE (t1), TYPE_SIZE (t2));
1553 compare_tree_edges (TYPE_SIZE_UNIT (t1), TYPE_SIZE_UNIT (t2));
1554 compare_tree_edges (TYPE_ATTRIBUTES (t1), TYPE_ATTRIBUTES (t2));
1555 compare_tree_edges (TYPE_NAME (t1), TYPE_NAME (t2));
1556 /* Do not compare TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
1557 reconstructed during fixup. */
1558 /* Do not compare TYPE_NEXT_VARIANT, we reconstruct the variant lists
1559 during fixup. */
1560 compare_tree_edges (TYPE_MAIN_VARIANT (t1), TYPE_MAIN_VARIANT (t2));
1561 /* ??? Global types from different TUs have non-matching
1562 TRANSLATION_UNIT_DECLs. Still merge them if they are otherwise
1563 equal. */
1564 if (TYPE_FILE_SCOPE_P (t1) && TYPE_FILE_SCOPE_P (t2))
1566 else
1567 compare_tree_edges (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
1568 /* TYPE_CANONICAL is re-computed during type merging, so do not
1569 compare it here. */
1570 compare_tree_edges (TYPE_STUB_DECL (t1), TYPE_STUB_DECL (t2));
1573 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1575 if (code == ENUMERAL_TYPE)
1576 compare_tree_edges (TYPE_VALUES (t1), TYPE_VALUES (t2));
1577 else if (code == ARRAY_TYPE)
1578 compare_tree_edges (TYPE_DOMAIN (t1), TYPE_DOMAIN (t2));
1579 else if (RECORD_OR_UNION_TYPE_P (t1))
1581 tree f1, f2;
1582 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
1583 f1 || f2;
1584 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
1585 compare_tree_edges (f1, f2);
1586 compare_tree_edges (TYPE_BINFO (t1), TYPE_BINFO (t2));
1588 else if (code == FUNCTION_TYPE
1589 || code == METHOD_TYPE)
1590 compare_tree_edges (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2));
1591 if (!POINTER_TYPE_P (t1))
1592 compare_tree_edges (TYPE_MINVAL (t1), TYPE_MINVAL (t2));
1593 compare_tree_edges (TYPE_MAXVAL (t1), TYPE_MAXVAL (t2));
1596 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1598 compare_tree_edges (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1599 compare_tree_edges (TREE_VALUE (t1), TREE_VALUE (t2));
1600 compare_tree_edges (TREE_CHAIN (t1), TREE_CHAIN (t2));
1603 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1604 for (int i = 0; i < TREE_VEC_LENGTH (t1); i++)
1605 compare_tree_edges (TREE_VEC_ELT (t1, i), TREE_VEC_ELT (t2, i));
1607 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1609 for (int i = 0; i < TREE_OPERAND_LENGTH (t1); i++)
1610 compare_tree_edges (TREE_OPERAND (t1, i),
1611 TREE_OPERAND (t2, i));
1613 /* BLOCKs are function local and we don't merge anything there. */
1614 if (TREE_BLOCK (t1) || TREE_BLOCK (t2))
1615 return false;
1618 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1620 unsigned i;
1621 tree t;
1622 /* Lengths have already been compared above. */
1623 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t1), i, t)
1624 compare_tree_edges (t, BINFO_BASE_BINFO (t2, i));
1625 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (t1), i, t)
1626 compare_tree_edges (t, BINFO_BASE_ACCESS (t2, i));
1627 compare_tree_edges (BINFO_OFFSET (t1), BINFO_OFFSET (t2));
1628 compare_tree_edges (BINFO_VTABLE (t1), BINFO_VTABLE (t2));
1629 compare_tree_edges (BINFO_VPTR_FIELD (t1), BINFO_VPTR_FIELD (t2));
1630 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1631 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
1634 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1636 unsigned i;
1637 tree index, value;
1638 /* Lengths have already been compared above. */
1639 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, index, value)
1641 compare_tree_edges (index, CONSTRUCTOR_ELT (t2, i)->index);
1642 compare_tree_edges (value, CONSTRUCTOR_ELT (t2, i)->value);
1646 if (code == OMP_CLAUSE)
1648 int i;
1650 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t1)]; i++)
1651 compare_tree_edges (OMP_CLAUSE_OPERAND (t1, i),
1652 OMP_CLAUSE_OPERAND (t2, i));
1653 compare_tree_edges (OMP_CLAUSE_CHAIN (t1), OMP_CLAUSE_CHAIN (t2));
1656 #undef compare_tree_edges
1658 return true;
1661 /* Compare the tree scc SCC to the prevailing candidate PSCC, filling
1662 out MAP if they are equal. */
1664 static bool
1665 compare_tree_sccs (tree_scc *pscc, tree_scc *scc,
1666 tree *map)
1668 /* Assume SCC entry hashes are sorted after their cardinality. Which
1669 means we can simply take the first n-tuple of equal hashes
1670 (which is recorded as entry_len) and do n SCC entry candidate
1671 comparisons. */
1672 for (unsigned i = 0; i < pscc->entry_len; ++i)
1674 tree *mapp = map;
1675 num_scc_compare_collisions++;
1676 if (compare_tree_sccs_1 (pscc->entries[0], scc->entries[i], &mapp))
1678 /* Equal - no need to reset TREE_VISITED or TREE_ASM_WRITTEN
1679 on the scc as all trees will be freed. */
1680 return true;
1682 /* Reset TREE_ASM_WRITTEN on scc for the next compare or in case
1683 the SCC prevails. */
1684 for (unsigned j = 0; j < scc->len; ++j)
1685 TREE_ASM_WRITTEN (scc->entries[j]) = 0;
1688 return false;
1691 /* QSort sort function to sort a map of two pointers after the 2nd
1692 pointer. */
1694 static int
1695 cmp_tree (const void *p1_, const void *p2_)
1697 tree *p1 = (tree *)(const_cast<void *>(p1_));
1698 tree *p2 = (tree *)(const_cast<void *>(p2_));
1699 if (p1[1] == p2[1])
1700 return 0;
1701 return ((uintptr_t)p1[1] < (uintptr_t)p2[1]) ? -1 : 1;
1704 /* Try to unify the SCC with nodes FROM to FROM + LEN in CACHE and
1705 hash value SCC_HASH with an already recorded SCC. Return true if
1706 that was successful, otherwise return false. */
1708 static bool
1709 unify_scc (struct streamer_tree_cache_d *cache, unsigned from,
1710 unsigned len, unsigned scc_entry_len, hashval_t scc_hash)
1712 bool unified_p = false;
1713 tree_scc *scc
1714 = (tree_scc *) alloca (sizeof (tree_scc) + (len - 1) * sizeof (tree));
1715 scc->next = NULL;
1716 scc->hash = scc_hash;
1717 scc->len = len;
1718 scc->entry_len = scc_entry_len;
1719 for (unsigned i = 0; i < len; ++i)
1721 tree t = streamer_tree_cache_get_tree (cache, from + i);
1722 scc->entries[i] = t;
1723 /* Do not merge SCCs with local entities inside them. Also do
1724 not merge TRANSLATION_UNIT_DECLs. */
1725 if (TREE_CODE (t) == TRANSLATION_UNIT_DECL
1726 || (VAR_OR_FUNCTION_DECL_P (t)
1727 && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
1728 || TREE_CODE (t) == LABEL_DECL)
1730 /* Avoid doing any work for these cases and do not worry to
1731 record the SCCs for further merging. */
1732 return false;
1736 /* Look for the list of candidate SCCs to compare against. */
1737 tree_scc **slot;
1738 slot = tree_scc_hash->find_slot_with_hash (scc, scc_hash, INSERT);
1739 if (*slot)
1741 /* Try unifying against each candidate. */
1742 num_scc_compares++;
1744 /* Set TREE_VISITED on the scc so we can easily identify tree nodes
1745 outside of the scc when following tree edges. Make sure
1746 that TREE_ASM_WRITTEN is unset so we can use it as 2nd bit
1747 to track whether we visited the SCC member during the compare.
1748 We cannot use TREE_VISITED on the pscc members as the extended
1749 scc and pscc can overlap. */
1750 for (unsigned i = 0; i < scc->len; ++i)
1752 TREE_VISITED (scc->entries[i]) = 1;
1753 gcc_checking_assert (!TREE_ASM_WRITTEN (scc->entries[i]));
1756 tree *map = XALLOCAVEC (tree, 2 * len);
1757 for (tree_scc *pscc = *slot; pscc; pscc = pscc->next)
1759 if (!compare_tree_sccs (pscc, scc, map))
1760 continue;
1762 /* Found an equal SCC. */
1763 unified_p = true;
1764 num_scc_compare_collisions--;
1765 num_sccs_merged++;
1766 total_scc_size_merged += len;
1768 #ifdef ENABLE_CHECKING
1769 for (unsigned i = 0; i < len; ++i)
1771 tree t = map[2*i+1];
1772 enum tree_code code = TREE_CODE (t);
1773 /* IDENTIFIER_NODEs should be singletons and are merged by the
1774 streamer. The others should be singletons, too, and we
1775 should not merge them in any way. */
1776 gcc_assert (code != TRANSLATION_UNIT_DECL
1777 && code != IDENTIFIER_NODE
1778 && !streamer_handle_as_builtin_p (t));
1780 #endif
1782 /* Fixup the streamer cache with the prevailing nodes according
1783 to the tree node mapping computed by compare_tree_sccs. */
1784 if (len == 1)
1785 streamer_tree_cache_replace_tree (cache, pscc->entries[0], from);
1786 else
1788 tree *map2 = XALLOCAVEC (tree, 2 * len);
1789 for (unsigned i = 0; i < len; ++i)
1791 map2[i*2] = (tree)(uintptr_t)(from + i);
1792 map2[i*2+1] = scc->entries[i];
1794 qsort (map2, len, 2 * sizeof (tree), cmp_tree);
1795 qsort (map, len, 2 * sizeof (tree), cmp_tree);
1796 for (unsigned i = 0; i < len; ++i)
1797 streamer_tree_cache_replace_tree (cache, map[2*i],
1798 (uintptr_t)map2[2*i]);
1801 /* Free the tree nodes from the read SCC. */
1802 for (unsigned i = 0; i < len; ++i)
1804 enum tree_code code;
1805 if (TYPE_P (scc->entries[i]))
1806 num_merged_types++;
1807 code = TREE_CODE (scc->entries[i]);
1808 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1809 vec_free (CONSTRUCTOR_ELTS (scc->entries[i]));
1810 ggc_free (scc->entries[i]);
1813 break;
1816 /* Reset TREE_VISITED if we didn't unify the SCC with another. */
1817 if (!unified_p)
1818 for (unsigned i = 0; i < scc->len; ++i)
1819 TREE_VISITED (scc->entries[i]) = 0;
1822 /* If we didn't unify it to any candidate duplicate the relevant
1823 pieces to permanent storage and link it into the chain. */
1824 if (!unified_p)
1826 tree_scc *pscc
1827 = XOBNEWVAR (&tree_scc_hash_obstack, tree_scc, sizeof (tree_scc));
1828 memcpy (pscc, scc, sizeof (tree_scc));
1829 pscc->next = (*slot);
1830 *slot = pscc;
1832 return unified_p;
1836 /* Read all the symbols from buffer DATA, using descriptors in DECL_DATA.
1837 RESOLUTIONS is the set of symbols picked by the linker (read from the
1838 resolution file when the linker plugin is being used). */
1840 static void
1841 lto_read_decls (struct lto_file_decl_data *decl_data, const void *data,
1842 vec<ld_plugin_symbol_resolution_t> resolutions)
1844 const struct lto_decl_header *header = (const struct lto_decl_header *) data;
1845 const int decl_offset = sizeof (struct lto_decl_header);
1846 const int main_offset = decl_offset + header->decl_state_size;
1847 const int string_offset = main_offset + header->main_size;
1848 struct data_in *data_in;
1849 unsigned int i;
1850 const uint32_t *data_ptr, *data_end;
1851 uint32_t num_decl_states;
1853 lto_input_block ib_main ((const char *) data + main_offset,
1854 header->main_size);
1856 data_in = lto_data_in_create (decl_data, (const char *) data + string_offset,
1857 header->string_size, resolutions);
1859 /* We do not uniquify the pre-loaded cache entries, those are middle-end
1860 internal types that should not be merged. */
1862 /* Read the global declarations and types. */
1863 while (ib_main.p < ib_main.len)
1865 tree t;
1866 unsigned from = data_in->reader_cache->nodes.length ();
1867 /* Read and uniquify SCCs as in the input stream. */
1868 enum LTO_tags tag = streamer_read_record_start (&ib_main);
1869 if (tag == LTO_tree_scc)
1871 unsigned len_;
1872 unsigned scc_entry_len;
1873 hashval_t scc_hash = lto_input_scc (&ib_main, data_in, &len_,
1874 &scc_entry_len);
1875 unsigned len = data_in->reader_cache->nodes.length () - from;
1876 gcc_assert (len == len_);
1878 total_scc_size += len;
1879 num_sccs_read++;
1881 /* We have the special case of size-1 SCCs that are pre-merged
1882 by means of identifier and string sharing for example.
1883 ??? Maybe we should avoid streaming those as SCCs. */
1884 tree first = streamer_tree_cache_get_tree (data_in->reader_cache,
1885 from);
1886 if (len == 1
1887 && (TREE_CODE (first) == IDENTIFIER_NODE
1888 || TREE_CODE (first) == INTEGER_CST
1889 || TREE_CODE (first) == TRANSLATION_UNIT_DECL
1890 || streamer_handle_as_builtin_p (first)))
1891 continue;
1893 /* Try to unify the SCC with already existing ones. */
1894 if (!flag_ltrans
1895 && unify_scc (data_in->reader_cache, from,
1896 len, scc_entry_len, scc_hash))
1897 continue;
1899 bool seen_type = false;
1900 for (unsigned i = 0; i < len; ++i)
1902 tree t = streamer_tree_cache_get_tree (data_in->reader_cache,
1903 from + i);
1904 /* Reconstruct the type variant and pointer-to/reference-to
1905 chains. */
1906 if (TYPE_P (t))
1908 seen_type = true;
1909 num_prevailing_types++;
1910 lto_fixup_prevailing_type (t);
1912 /* Compute the canonical type of all types.
1913 ??? Should be able to assert that !TYPE_CANONICAL. */
1914 if (TYPE_P (t) && !TYPE_CANONICAL (t))
1916 gimple_register_canonical_type (t);
1917 if (odr_type_p (t))
1918 register_odr_type (t);
1920 /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its
1921 type which is also member of this SCC. */
1922 if (TREE_CODE (t) == INTEGER_CST
1923 && !TREE_OVERFLOW (t))
1924 cache_integer_cst (t);
1925 /* Re-build DECL_FUNCTION_SPECIFIC_TARGET, we need that
1926 for both WPA and LTRANS stage. */
1927 if (TREE_CODE (t) == FUNCTION_DECL)
1929 tree attr = lookup_attribute ("target", DECL_ATTRIBUTES (t));
1930 if (attr)
1931 targetm.target_option.valid_attribute_p
1932 (t, NULL_TREE, TREE_VALUE (attr), 0);
1934 /* Register TYPE_DECLs with the debuginfo machinery. */
1935 if (!flag_wpa
1936 && TREE_CODE (t) == TYPE_DECL)
1937 debug_hooks->type_decl (t, !DECL_FILE_SCOPE_P (t));
1938 if (!flag_ltrans)
1940 /* Register variables and functions with the
1941 symbol table. */
1942 if (TREE_CODE (t) == VAR_DECL)
1943 lto_register_var_decl_in_symtab (data_in, t, from + i);
1944 else if (TREE_CODE (t) == FUNCTION_DECL
1945 && !DECL_BUILT_IN (t))
1946 lto_register_function_decl_in_symtab (data_in, t, from + i);
1947 /* Scan the tree for references to global functions or
1948 variables and record those for later fixup. */
1949 if (mentions_vars_p (t))
1950 vec_safe_push (tree_with_vars, t);
1953 if (seen_type)
1954 num_type_scc_trees += len;
1956 else
1958 /* Pickle stray references. */
1959 t = lto_input_tree_1 (&ib_main, data_in, tag, 0);
1960 gcc_assert (t && data_in->reader_cache->nodes.length () == from);
1964 /* Read in lto_in_decl_state objects. */
1965 data_ptr = (const uint32_t *) ((const char*) data + decl_offset);
1966 data_end =
1967 (const uint32_t *) ((const char*) data_ptr + header->decl_state_size);
1968 num_decl_states = *data_ptr++;
1970 gcc_assert (num_decl_states > 0);
1971 decl_data->global_decl_state = lto_new_in_decl_state ();
1972 data_ptr = lto_read_in_decl_state (data_in, data_ptr,
1973 decl_data->global_decl_state);
1975 /* Read in per-function decl states and enter them in hash table. */
1976 decl_data->function_decl_states =
1977 htab_create_ggc (37, lto_hash_in_decl_state, lto_eq_in_decl_state, NULL);
1979 for (i = 1; i < num_decl_states; i++)
1981 struct lto_in_decl_state *state = lto_new_in_decl_state ();
1982 void **slot;
1984 data_ptr = lto_read_in_decl_state (data_in, data_ptr, state);
1985 slot = htab_find_slot (decl_data->function_decl_states, state, INSERT);
1986 gcc_assert (*slot == NULL);
1987 *slot = state;
1990 if (data_ptr != data_end)
1991 internal_error ("bytecode stream: garbage at the end of symbols section");
1993 /* Set the current decl state to be the global state. */
1994 decl_data->current_decl_state = decl_data->global_decl_state;
1996 lto_data_in_delete (data_in);
1999 /* Custom version of strtoll, which is not portable. */
2001 static int64_t
2002 lto_parse_hex (const char *p)
2004 int64_t ret = 0;
2006 for (; *p != '\0'; ++p)
2008 char c = *p;
2009 unsigned char part;
2010 ret <<= 4;
2011 if (c >= '0' && c <= '9')
2012 part = c - '0';
2013 else if (c >= 'a' && c <= 'f')
2014 part = c - 'a' + 10;
2015 else if (c >= 'A' && c <= 'F')
2016 part = c - 'A' + 10;
2017 else
2018 internal_error ("could not parse hex number");
2019 ret |= part;
2022 return ret;
2025 /* Read resolution for file named FILE_NAME. The resolution is read from
2026 RESOLUTION. */
2028 static void
2029 lto_resolution_read (splay_tree file_ids, FILE *resolution, lto_file *file)
2031 /* We require that objects in the resolution file are in the same
2032 order as the lto1 command line. */
2033 unsigned int name_len;
2034 char *obj_name;
2035 unsigned int num_symbols;
2036 unsigned int i;
2037 struct lto_file_decl_data *file_data;
2038 splay_tree_node nd = NULL;
2040 if (!resolution)
2041 return;
2043 name_len = strlen (file->filename);
2044 obj_name = XNEWVEC (char, name_len + 1);
2045 fscanf (resolution, " "); /* Read white space. */
2047 fread (obj_name, sizeof (char), name_len, resolution);
2048 obj_name[name_len] = '\0';
2049 if (filename_cmp (obj_name, file->filename) != 0)
2050 internal_error ("unexpected file name %s in linker resolution file. "
2051 "Expected %s", obj_name, file->filename);
2052 if (file->offset != 0)
2054 int t;
2055 char offset_p[17];
2056 int64_t offset;
2057 t = fscanf (resolution, "@0x%16s", offset_p);
2058 if (t != 1)
2059 internal_error ("could not parse file offset");
2060 offset = lto_parse_hex (offset_p);
2061 if (offset != file->offset)
2062 internal_error ("unexpected offset");
2065 free (obj_name);
2067 fscanf (resolution, "%u", &num_symbols);
2069 for (i = 0; i < num_symbols; i++)
2071 int t;
2072 unsigned index;
2073 unsigned HOST_WIDE_INT id;
2074 char r_str[27];
2075 enum ld_plugin_symbol_resolution r = (enum ld_plugin_symbol_resolution) 0;
2076 unsigned int j;
2077 unsigned int lto_resolution_str_len =
2078 sizeof (lto_resolution_str) / sizeof (char *);
2079 res_pair rp;
2081 t = fscanf (resolution, "%u " HOST_WIDE_INT_PRINT_HEX_PURE " %26s %*[^\n]\n",
2082 &index, &id, r_str);
2083 if (t != 3)
2084 internal_error ("invalid line in the resolution file");
2086 for (j = 0; j < lto_resolution_str_len; j++)
2088 if (strcmp (lto_resolution_str[j], r_str) == 0)
2090 r = (enum ld_plugin_symbol_resolution) j;
2091 break;
2094 if (j == lto_resolution_str_len)
2095 internal_error ("invalid resolution in the resolution file");
2097 if (!(nd && lto_splay_tree_id_equal_p (nd->key, id)))
2099 nd = lto_splay_tree_lookup (file_ids, id);
2100 if (nd == NULL)
2101 internal_error ("resolution sub id %wx not in object file", id);
2104 file_data = (struct lto_file_decl_data *)nd->value;
2105 /* The indexes are very sparse. To save memory save them in a compact
2106 format that is only unpacked later when the subfile is processed. */
2107 rp.res = r;
2108 rp.index = index;
2109 file_data->respairs.safe_push (rp);
2110 if (file_data->max_index < index)
2111 file_data->max_index = index;
2115 /* List of file_decl_datas */
2116 struct file_data_list
2118 struct lto_file_decl_data *first, *last;
2121 /* Is the name for a id'ed LTO section? */
2123 static int
2124 lto_section_with_id (const char *name, unsigned HOST_WIDE_INT *id)
2126 const char *s;
2128 if (strncmp (name, LTO_SECTION_NAME_PREFIX, strlen (LTO_SECTION_NAME_PREFIX)))
2129 return 0;
2130 s = strrchr (name, '.');
2131 return s && sscanf (s, "." HOST_WIDE_INT_PRINT_HEX_PURE, id) == 1;
2134 /* Create file_data of each sub file id */
2136 static int
2137 create_subid_section_table (struct lto_section_slot *ls, splay_tree file_ids,
2138 struct file_data_list *list)
2140 struct lto_section_slot s_slot, *new_slot;
2141 unsigned HOST_WIDE_INT id;
2142 splay_tree_node nd;
2143 void **hash_slot;
2144 char *new_name;
2145 struct lto_file_decl_data *file_data;
2147 if (!lto_section_with_id (ls->name, &id))
2148 return 1;
2150 /* Find hash table of sub module id */
2151 nd = lto_splay_tree_lookup (file_ids, id);
2152 if (nd != NULL)
2154 file_data = (struct lto_file_decl_data *)nd->value;
2156 else
2158 file_data = ggc_alloc<lto_file_decl_data> ();
2159 memset(file_data, 0, sizeof (struct lto_file_decl_data));
2160 file_data->id = id;
2161 file_data->section_hash_table = lto_obj_create_section_hash_table ();;
2162 lto_splay_tree_insert (file_ids, id, file_data);
2164 /* Maintain list in linker order */
2165 if (!list->first)
2166 list->first = file_data;
2167 if (list->last)
2168 list->last->next = file_data;
2169 list->last = file_data;
2172 /* Copy section into sub module hash table */
2173 new_name = XDUPVEC (char, ls->name, strlen (ls->name) + 1);
2174 s_slot.name = new_name;
2175 hash_slot = htab_find_slot (file_data->section_hash_table, &s_slot, INSERT);
2176 gcc_assert (*hash_slot == NULL);
2178 new_slot = XDUP (struct lto_section_slot, ls);
2179 new_slot->name = new_name;
2180 *hash_slot = new_slot;
2181 return 1;
2184 /* Read declarations and other initializations for a FILE_DATA. */
2186 static void
2187 lto_file_finalize (struct lto_file_decl_data *file_data, lto_file *file)
2189 const char *data;
2190 size_t len;
2191 vec<ld_plugin_symbol_resolution_t>
2192 resolutions = vNULL;
2193 int i;
2194 res_pair *rp;
2196 /* Create vector for fast access of resolution. We do this lazily
2197 to save memory. */
2198 resolutions.safe_grow_cleared (file_data->max_index + 1);
2199 for (i = 0; file_data->respairs.iterate (i, &rp); i++)
2200 resolutions[rp->index] = rp->res;
2201 file_data->respairs.release ();
2203 file_data->renaming_hash_table = lto_create_renaming_table ();
2204 file_data->file_name = file->filename;
2205 data = lto_get_section_data (file_data, LTO_section_decls, NULL, &len);
2206 if (data == NULL)
2208 internal_error ("cannot read LTO decls from %s", file_data->file_name);
2209 return;
2211 /* Frees resolutions */
2212 lto_read_decls (file_data, data, resolutions);
2213 lto_free_section_data (file_data, LTO_section_decls, NULL, data, len);
2216 /* Finalize FILE_DATA in FILE and increase COUNT. */
2218 static int
2219 lto_create_files_from_ids (lto_file *file, struct lto_file_decl_data *file_data,
2220 int *count)
2222 lto_file_finalize (file_data, file);
2223 if (symtab->dump_file)
2224 fprintf (symtab->dump_file,
2225 "Creating file %s with sub id " HOST_WIDE_INT_PRINT_HEX "\n",
2226 file_data->file_name, file_data->id);
2227 (*count)++;
2228 return 0;
2231 /* Generate a TREE representation for all types and external decls
2232 entities in FILE.
2234 Read all of the globals out of the file. Then read the cgraph
2235 and process the .o index into the cgraph nodes so that it can open
2236 the .o file to load the functions and ipa information. */
2238 static struct lto_file_decl_data *
2239 lto_file_read (lto_file *file, FILE *resolution_file, int *count)
2241 struct lto_file_decl_data *file_data = NULL;
2242 splay_tree file_ids;
2243 htab_t section_hash_table;
2244 struct lto_section_slot *section;
2245 struct file_data_list file_list;
2246 struct lto_section_list section_list;
2248 memset (&section_list, 0, sizeof (struct lto_section_list));
2249 section_hash_table = lto_obj_build_section_table (file, &section_list);
2251 /* Find all sub modules in the object and put their sections into new hash
2252 tables in a splay tree. */
2253 file_ids = lto_splay_tree_new ();
2254 memset (&file_list, 0, sizeof (struct file_data_list));
2255 for (section = section_list.first; section != NULL; section = section->next)
2256 create_subid_section_table (section, file_ids, &file_list);
2258 /* Add resolutions to file ids */
2259 lto_resolution_read (file_ids, resolution_file, file);
2261 /* Finalize each lto file for each submodule in the merged object */
2262 for (file_data = file_list.first; file_data != NULL; file_data = file_data->next)
2263 lto_create_files_from_ids (file, file_data, count);
2265 splay_tree_delete (file_ids);
2266 htab_delete (section_hash_table);
2268 return file_list.first;
2271 #if HAVE_MMAP_FILE && HAVE_SYSCONF && defined _SC_PAGE_SIZE
2272 #define LTO_MMAP_IO 1
2273 #endif
2275 #if LTO_MMAP_IO
2276 /* Page size of machine is used for mmap and munmap calls. */
2277 static size_t page_mask;
2278 #endif
2280 /* Get the section data of length LEN from FILENAME starting at
2281 OFFSET. The data segment must be freed by the caller when the
2282 caller is finished. Returns NULL if all was not well. */
2284 static char *
2285 lto_read_section_data (struct lto_file_decl_data *file_data,
2286 intptr_t offset, size_t len)
2288 char *result;
2289 static int fd = -1;
2290 static char *fd_name;
2291 #if LTO_MMAP_IO
2292 intptr_t computed_len;
2293 intptr_t computed_offset;
2294 intptr_t diff;
2295 #endif
2297 /* Keep a single-entry file-descriptor cache. The last file we
2298 touched will get closed at exit.
2299 ??? Eventually we want to add a more sophisticated larger cache
2300 or rather fix function body streaming to not stream them in
2301 practically random order. */
2302 if (fd != -1
2303 && filename_cmp (fd_name, file_data->file_name) != 0)
2305 free (fd_name);
2306 close (fd);
2307 fd = -1;
2309 if (fd == -1)
2311 fd = open (file_data->file_name, O_RDONLY|O_BINARY);
2312 if (fd == -1)
2314 fatal_error ("Cannot open %s", file_data->file_name);
2315 return NULL;
2317 fd_name = xstrdup (file_data->file_name);
2320 #if LTO_MMAP_IO
2321 if (!page_mask)
2323 size_t page_size = sysconf (_SC_PAGE_SIZE);
2324 page_mask = ~(page_size - 1);
2327 computed_offset = offset & page_mask;
2328 diff = offset - computed_offset;
2329 computed_len = len + diff;
2331 result = (char *) mmap (NULL, computed_len, PROT_READ, MAP_PRIVATE,
2332 fd, computed_offset);
2333 if (result == MAP_FAILED)
2335 fatal_error ("Cannot map %s", file_data->file_name);
2336 return NULL;
2339 return result + diff;
2340 #else
2341 result = (char *) xmalloc (len);
2342 if (lseek (fd, offset, SEEK_SET) != offset
2343 || read (fd, result, len) != (ssize_t) len)
2345 free (result);
2346 fatal_error ("Cannot read %s", file_data->file_name);
2347 result = NULL;
2349 #ifdef __MINGW32__
2350 /* Native windows doesn't supports delayed unlink on opened file. So
2351 we close file here again. This produces higher I/O load, but at least
2352 it prevents to have dangling file handles preventing unlink. */
2353 free (fd_name);
2354 fd_name = NULL;
2355 close (fd);
2356 fd = -1;
2357 #endif
2358 return result;
2359 #endif
2363 /* Get the section data from FILE_DATA of SECTION_TYPE with NAME.
2364 NAME will be NULL unless the section type is for a function
2365 body. */
2367 static const char *
2368 get_section_data (struct lto_file_decl_data *file_data,
2369 enum lto_section_type section_type,
2370 const char *name,
2371 size_t *len)
2373 htab_t section_hash_table = file_data->section_hash_table;
2374 struct lto_section_slot *f_slot;
2375 struct lto_section_slot s_slot;
2376 const char *section_name = lto_get_section_name (section_type, name, file_data);
2377 char *data = NULL;
2379 *len = 0;
2380 s_slot.name = section_name;
2381 f_slot = (struct lto_section_slot *) htab_find (section_hash_table, &s_slot);
2382 if (f_slot)
2384 data = lto_read_section_data (file_data, f_slot->start, f_slot->len);
2385 *len = f_slot->len;
2388 free (CONST_CAST (char *, section_name));
2389 return data;
2393 /* Free the section data from FILE_DATA of SECTION_TYPE with NAME that
2394 starts at OFFSET and has LEN bytes. */
2396 static void
2397 free_section_data (struct lto_file_decl_data *file_data ATTRIBUTE_UNUSED,
2398 enum lto_section_type section_type ATTRIBUTE_UNUSED,
2399 const char *name ATTRIBUTE_UNUSED,
2400 const char *offset, size_t len ATTRIBUTE_UNUSED)
2402 #if LTO_MMAP_IO
2403 intptr_t computed_len;
2404 intptr_t computed_offset;
2405 intptr_t diff;
2406 #endif
2408 #if LTO_MMAP_IO
2409 computed_offset = ((intptr_t) offset) & page_mask;
2410 diff = (intptr_t) offset - computed_offset;
2411 computed_len = len + diff;
2413 munmap ((caddr_t) computed_offset, computed_len);
2414 #else
2415 free (CONST_CAST(char *, offset));
2416 #endif
2419 static lto_file *current_lto_file;
2421 /* Helper for qsort; compare partitions and return one with smaller size.
2422 We sort from greatest to smallest so parallel build doesn't stale on the
2423 longest compilation being executed too late. */
2425 static int
2426 cmp_partitions_size (const void *a, const void *b)
2428 const struct ltrans_partition_def *pa
2429 = *(struct ltrans_partition_def *const *)a;
2430 const struct ltrans_partition_def *pb
2431 = *(struct ltrans_partition_def *const *)b;
2432 return pb->insns - pa->insns;
2435 /* Helper for qsort; compare partitions and return one with smaller order. */
2437 static int
2438 cmp_partitions_order (const void *a, const void *b)
2440 const struct ltrans_partition_def *pa
2441 = *(struct ltrans_partition_def *const *)a;
2442 const struct ltrans_partition_def *pb
2443 = *(struct ltrans_partition_def *const *)b;
2444 int ordera = -1, orderb = -1;
2446 if (lto_symtab_encoder_size (pa->encoder))
2447 ordera = lto_symtab_encoder_deref (pa->encoder, 0)->order;
2448 if (lto_symtab_encoder_size (pb->encoder))
2449 orderb = lto_symtab_encoder_deref (pb->encoder, 0)->order;
2450 return orderb - ordera;
2453 /* Actually stream out ENCODER into TEMP_FILENAME. */
2455 static void
2456 do_stream_out (char *temp_filename, lto_symtab_encoder_t encoder)
2458 lto_file *file = lto_obj_file_open (temp_filename, true);
2459 if (!file)
2460 fatal_error ("lto_obj_file_open() failed");
2461 lto_set_current_out_file (file);
2463 ipa_write_optimization_summaries (encoder);
2465 lto_set_current_out_file (NULL);
2466 lto_obj_file_close (file);
2467 free (file);
2470 /* Wait for forked process and signal errors. */
2471 #ifdef HAVE_WORKING_FORK
2472 static void
2473 wait_for_child ()
2475 int status;
2478 #ifndef WCONTINUED
2479 #define WCONTINUED 0
2480 #endif
2481 int w = waitpid (0, &status, WUNTRACED | WCONTINUED);
2482 if (w == -1)
2483 fatal_error ("waitpid failed");
2485 if (WIFEXITED (status) && WEXITSTATUS (status))
2486 fatal_error ("streaming subprocess failed");
2487 else if (WIFSIGNALED (status))
2488 fatal_error ("streaming subprocess was killed by signal");
2490 while (!WIFEXITED (status) && !WIFSIGNALED (status));
2492 #endif
2494 /* Stream out ENCODER into TEMP_FILENAME
2495 Fork if that seems to help. */
2497 static void
2498 stream_out (char *temp_filename, lto_symtab_encoder_t encoder,
2499 bool ARG_UNUSED (last))
2501 #ifdef HAVE_WORKING_FORK
2502 static int nruns;
2504 if (lto_parallelism <= 1)
2506 do_stream_out (temp_filename, encoder);
2507 return;
2510 /* Do not run more than LTO_PARALLELISM streamings
2511 FIXME: we ignore limits on jobserver. */
2512 if (lto_parallelism > 0 && nruns >= lto_parallelism)
2514 wait_for_child ();
2515 nruns --;
2517 /* If this is not the last parallel partition, execute new
2518 streaming process. */
2519 if (!last)
2521 pid_t cpid = fork ();
2523 if (!cpid)
2525 setproctitle ("lto1-wpa-streaming");
2526 do_stream_out (temp_filename, encoder);
2527 exit (0);
2529 /* Fork failed; lets do the job ourseleves. */
2530 else if (cpid == -1)
2531 do_stream_out (temp_filename, encoder);
2532 else
2533 nruns++;
2535 /* Last partition; stream it and wait for all children to die. */
2536 else
2538 int i;
2539 do_stream_out (temp_filename, encoder);
2540 for (i = 0; i < nruns; i++)
2541 wait_for_child ();
2543 asm_nodes_output = true;
2544 #else
2545 do_stream_out (temp_filename, encoder);
2546 #endif
2549 /* Write all output files in WPA mode and the file with the list of
2550 LTRANS units. */
2552 static void
2553 lto_wpa_write_files (void)
2555 unsigned i, n_sets;
2556 ltrans_partition part;
2557 FILE *ltrans_output_list_stream;
2558 char *temp_filename;
2559 vec <char *>temp_filenames = vNULL;
2560 size_t blen;
2562 /* Open the LTRANS output list. */
2563 if (!ltrans_output_list)
2564 fatal_error ("no LTRANS output list filename provided");
2566 timevar_push (TV_WHOPR_WPA);
2568 FOR_EACH_VEC_ELT (ltrans_partitions, i, part)
2569 lto_stats.num_output_symtab_nodes += lto_symtab_encoder_size (part->encoder);
2571 timevar_pop (TV_WHOPR_WPA);
2573 timevar_push (TV_WHOPR_WPA_IO);
2575 /* Generate a prefix for the LTRANS unit files. */
2576 blen = strlen (ltrans_output_list);
2577 temp_filename = (char *) xmalloc (blen + sizeof ("2147483648.o"));
2578 strcpy (temp_filename, ltrans_output_list);
2579 if (blen > sizeof (".out")
2580 && strcmp (temp_filename + blen - sizeof (".out") + 1,
2581 ".out") == 0)
2582 temp_filename[blen - sizeof (".out") + 1] = '\0';
2583 blen = strlen (temp_filename);
2585 n_sets = ltrans_partitions.length ();
2587 /* Sort partitions by size so small ones are compiled last.
2588 FIXME: Even when not reordering we may want to output one list for parallel make
2589 and other for final link command. */
2591 if (!flag_profile_reorder_functions || !flag_profile_use)
2592 ltrans_partitions.qsort (flag_toplevel_reorder
2593 ? cmp_partitions_size
2594 : cmp_partitions_order);
2596 for (i = 0; i < n_sets; i++)
2598 ltrans_partition part = ltrans_partitions[i];
2600 /* Write all the nodes in SET. */
2601 sprintf (temp_filename + blen, "%u.o", i);
2603 if (!quiet_flag)
2604 fprintf (stderr, " %s (%s %i insns)", temp_filename, part->name, part->insns);
2605 if (symtab->dump_file)
2607 lto_symtab_encoder_iterator lsei;
2609 fprintf (symtab->dump_file, "Writing partition %s to file %s, %i insns\n",
2610 part->name, temp_filename, part->insns);
2611 fprintf (symtab->dump_file, " Symbols in partition: ");
2612 for (lsei = lsei_start_in_partition (part->encoder); !lsei_end_p (lsei);
2613 lsei_next_in_partition (&lsei))
2615 symtab_node *node = lsei_node (lsei);
2616 fprintf (symtab->dump_file, "%s ", node->asm_name ());
2618 fprintf (symtab->dump_file, "\n Symbols in boundary: ");
2619 for (lsei = lsei_start (part->encoder); !lsei_end_p (lsei);
2620 lsei_next (&lsei))
2622 symtab_node *node = lsei_node (lsei);
2623 if (!lto_symtab_encoder_in_partition_p (part->encoder, node))
2625 fprintf (symtab->dump_file, "%s ", node->asm_name ());
2626 cgraph_node *cnode = dyn_cast <cgraph_node *> (node);
2627 if (cnode
2628 && lto_symtab_encoder_encode_body_p (part->encoder, cnode))
2629 fprintf (symtab->dump_file, "(body included)");
2630 else
2632 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2633 if (vnode
2634 && lto_symtab_encoder_encode_initializer_p (part->encoder, vnode))
2635 fprintf (symtab->dump_file, "(initializer included)");
2639 fprintf (symtab->dump_file, "\n");
2641 gcc_checking_assert (lto_symtab_encoder_size (part->encoder) || !i);
2643 stream_out (temp_filename, part->encoder, i == n_sets - 1);
2645 part->encoder = NULL;
2647 temp_filenames.safe_push (xstrdup (temp_filename));
2649 ltrans_output_list_stream = fopen (ltrans_output_list, "w");
2650 if (ltrans_output_list_stream == NULL)
2651 fatal_error ("opening LTRANS output list %s: %m", ltrans_output_list);
2652 for (i = 0; i < n_sets; i++)
2654 unsigned int len = strlen (temp_filenames[i]);
2655 if (fwrite (temp_filenames[i], 1, len, ltrans_output_list_stream) < len
2656 || fwrite ("\n", 1, 1, ltrans_output_list_stream) < 1)
2657 fatal_error ("writing to LTRANS output list %s: %m",
2658 ltrans_output_list);
2659 free (temp_filenames[i]);
2661 temp_filenames.release();
2663 lto_stats.num_output_files += n_sets;
2665 /* Close the LTRANS output list. */
2666 if (fclose (ltrans_output_list_stream))
2667 fatal_error ("closing LTRANS output list %s: %m", ltrans_output_list);
2669 free_ltrans_partitions();
2670 free (temp_filename);
2672 timevar_pop (TV_WHOPR_WPA_IO);
2676 /* If TT is a variable or function decl replace it with its
2677 prevailing variant. */
2678 #define LTO_SET_PREVAIL(tt) \
2679 do {\
2680 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
2681 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
2683 tt = lto_symtab_prevailing_decl (tt); \
2684 fixed = true; \
2686 } while (0)
2688 /* Ensure that TT isn't a replacable var of function decl. */
2689 #define LTO_NO_PREVAIL(tt) \
2690 gcc_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
2692 /* Given a tree T replace all fields referring to variables or functions
2693 with their prevailing variant. */
2694 static void
2695 lto_fixup_prevailing_decls (tree t)
2697 enum tree_code code = TREE_CODE (t);
2698 bool fixed = false;
2700 gcc_checking_assert (code != TREE_BINFO);
2701 LTO_NO_PREVAIL (TREE_TYPE (t));
2702 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2703 LTO_NO_PREVAIL (TREE_CHAIN (t));
2704 if (DECL_P (t))
2706 LTO_NO_PREVAIL (DECL_NAME (t));
2707 LTO_SET_PREVAIL (DECL_CONTEXT (t));
2708 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2710 LTO_SET_PREVAIL (DECL_SIZE (t));
2711 LTO_SET_PREVAIL (DECL_SIZE_UNIT (t));
2712 LTO_SET_PREVAIL (DECL_INITIAL (t));
2713 LTO_NO_PREVAIL (DECL_ATTRIBUTES (t));
2714 LTO_SET_PREVAIL (DECL_ABSTRACT_ORIGIN (t));
2716 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2718 LTO_NO_PREVAIL (t->decl_with_vis.assembler_name);
2720 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2722 LTO_NO_PREVAIL (DECL_RESULT_FLD (t));
2724 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2726 LTO_NO_PREVAIL (DECL_ARGUMENTS (t));
2727 LTO_SET_PREVAIL (DECL_FUNCTION_PERSONALITY (t));
2728 LTO_NO_PREVAIL (DECL_VINDEX (t));
2730 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2732 LTO_SET_PREVAIL (DECL_FIELD_OFFSET (t));
2733 LTO_NO_PREVAIL (DECL_BIT_FIELD_TYPE (t));
2734 LTO_NO_PREVAIL (DECL_QUALIFIER (t));
2735 LTO_NO_PREVAIL (DECL_FIELD_BIT_OFFSET (t));
2736 LTO_NO_PREVAIL (DECL_FCONTEXT (t));
2739 else if (TYPE_P (t))
2741 LTO_NO_PREVAIL (TYPE_CACHED_VALUES (t));
2742 LTO_SET_PREVAIL (TYPE_SIZE (t));
2743 LTO_SET_PREVAIL (TYPE_SIZE_UNIT (t));
2744 LTO_NO_PREVAIL (TYPE_ATTRIBUTES (t));
2745 LTO_NO_PREVAIL (TYPE_NAME (t));
2747 LTO_SET_PREVAIL (TYPE_MINVAL (t));
2748 LTO_SET_PREVAIL (TYPE_MAXVAL (t));
2749 LTO_NO_PREVAIL (t->type_non_common.binfo);
2751 LTO_SET_PREVAIL (TYPE_CONTEXT (t));
2753 LTO_NO_PREVAIL (TYPE_CANONICAL (t));
2754 LTO_NO_PREVAIL (TYPE_MAIN_VARIANT (t));
2755 LTO_NO_PREVAIL (TYPE_NEXT_VARIANT (t));
2757 else if (EXPR_P (t))
2759 int i;
2760 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
2761 LTO_SET_PREVAIL (TREE_OPERAND (t, i));
2763 else if (TREE_CODE (t) == CONSTRUCTOR)
2765 unsigned i;
2766 tree val;
2767 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, val)
2768 LTO_SET_PREVAIL (val);
2770 else
2772 switch (code)
2774 case TREE_LIST:
2775 LTO_SET_PREVAIL (TREE_VALUE (t));
2776 LTO_SET_PREVAIL (TREE_PURPOSE (t));
2777 LTO_NO_PREVAIL (TREE_PURPOSE (t));
2778 break;
2779 default:
2780 gcc_unreachable ();
2783 /* If we fixed nothing, then we missed something seen by
2784 mentions_vars_p. */
2785 gcc_checking_assert (fixed);
2787 #undef LTO_SET_PREVAIL
2788 #undef LTO_NO_PREVAIL
2790 /* Helper function of lto_fixup_decls. Walks the var and fn streams in STATE,
2791 replaces var and function decls with the corresponding prevailing def. */
2793 static void
2794 lto_fixup_state (struct lto_in_decl_state *state)
2796 unsigned i, si;
2797 struct lto_tree_ref_table *table;
2799 /* Although we only want to replace FUNCTION_DECLs and VAR_DECLs,
2800 we still need to walk from all DECLs to find the reachable
2801 FUNCTION_DECLs and VAR_DECLs. */
2802 for (si = 0; si < LTO_N_DECL_STREAMS; si++)
2804 table = &state->streams[si];
2805 for (i = 0; i < table->size; i++)
2807 tree *tp = table->trees + i;
2808 if (VAR_OR_FUNCTION_DECL_P (*tp)
2809 && (TREE_PUBLIC (*tp) || DECL_EXTERNAL (*tp)))
2810 *tp = lto_symtab_prevailing_decl (*tp);
2815 /* A callback of htab_traverse. Just extracts a state from SLOT
2816 and calls lto_fixup_state. */
2818 static int
2819 lto_fixup_state_aux (void **slot, void *aux ATTRIBUTE_UNUSED)
2821 struct lto_in_decl_state *state = (struct lto_in_decl_state *) *slot;
2822 lto_fixup_state (state);
2823 return 1;
2826 /* Fix the decls from all FILES. Replaces each decl with the corresponding
2827 prevailing one. */
2829 static void
2830 lto_fixup_decls (struct lto_file_decl_data **files)
2832 unsigned int i;
2833 tree t;
2835 if (tree_with_vars)
2836 FOR_EACH_VEC_ELT ((*tree_with_vars), i, t)
2837 lto_fixup_prevailing_decls (t);
2839 for (i = 0; files[i]; i++)
2841 struct lto_file_decl_data *file = files[i];
2842 struct lto_in_decl_state *state = file->global_decl_state;
2843 lto_fixup_state (state);
2845 htab_traverse (file->function_decl_states, lto_fixup_state_aux, NULL);
2849 static GTY((length ("lto_stats.num_input_files + 1"))) struct lto_file_decl_data **all_file_decl_data;
2851 /* Turn file datas for sub files into a single array, so that they look
2852 like separate files for further passes. */
2854 static void
2855 lto_flatten_files (struct lto_file_decl_data **orig, int count, int last_file_ix)
2857 struct lto_file_decl_data *n, *next;
2858 int i, k;
2860 lto_stats.num_input_files = count;
2861 all_file_decl_data
2862 = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (count + 1);
2863 /* Set the hooks so that all of the ipa passes can read in their data. */
2864 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2865 for (i = 0, k = 0; i < last_file_ix; i++)
2867 for (n = orig[i]; n != NULL; n = next)
2869 all_file_decl_data[k++] = n;
2870 next = n->next;
2871 n->next = NULL;
2874 all_file_decl_data[k] = NULL;
2875 gcc_assert (k == count);
2878 /* Input file data before flattening (i.e. splitting them to subfiles to support
2879 incremental linking. */
2880 static int real_file_count;
2881 static GTY((length ("real_file_count + 1"))) struct lto_file_decl_data **real_file_decl_data;
2883 static void print_lto_report_1 (void);
2885 /* Read all the symbols from the input files FNAMES. NFILES is the
2886 number of files requested in the command line. Instantiate a
2887 global call graph by aggregating all the sub-graphs found in each
2888 file. */
2890 static void
2891 read_cgraph_and_symbols (unsigned nfiles, const char **fnames)
2893 unsigned int i, last_file_ix;
2894 FILE *resolution;
2895 int count = 0;
2896 struct lto_file_decl_data **decl_data;
2897 symtab_node *snode;
2899 symtab->initialize ();
2901 timevar_push (TV_IPA_LTO_DECL_IN);
2903 real_file_decl_data
2904 = decl_data = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (nfiles + 1);
2905 real_file_count = nfiles;
2907 /* Read the resolution file. */
2908 resolution = NULL;
2909 if (resolution_file_name)
2911 int t;
2912 unsigned num_objects;
2914 resolution = fopen (resolution_file_name, "r");
2915 if (resolution == NULL)
2916 fatal_error ("could not open symbol resolution file: %m");
2918 t = fscanf (resolution, "%u", &num_objects);
2919 gcc_assert (t == 1);
2921 /* True, since the plugin splits the archives. */
2922 gcc_assert (num_objects == nfiles);
2924 symtab->state = LTO_STREAMING;
2926 canonical_type_hash_cache = new hash_map<const_tree, hashval_t> (251);
2927 gimple_canonical_types = htab_create_ggc (16381, gimple_canonical_type_hash,
2928 gimple_canonical_type_eq, 0);
2929 gcc_obstack_init (&tree_scc_hash_obstack);
2930 tree_scc_hash = new hash_table<tree_scc_hasher> (4096);
2932 /* Register the common node types with the canonical type machinery so
2933 we properly share alias-sets across languages and TUs. Do not
2934 expose the common nodes as type merge target - those that should be
2935 are already exposed so by pre-loading the LTO streamer caches.
2936 Do two passes - first clear TYPE_CANONICAL and then re-compute it. */
2937 for (i = 0; i < itk_none; ++i)
2938 lto_register_canonical_types (integer_types[i], true);
2939 for (i = 0; i < stk_type_kind_last; ++i)
2940 lto_register_canonical_types (sizetype_tab[i], true);
2941 for (i = 0; i < TI_MAX; ++i)
2942 lto_register_canonical_types (global_trees[i], true);
2943 for (i = 0; i < itk_none; ++i)
2944 lto_register_canonical_types (integer_types[i], false);
2945 for (i = 0; i < stk_type_kind_last; ++i)
2946 lto_register_canonical_types (sizetype_tab[i], false);
2947 for (i = 0; i < TI_MAX; ++i)
2948 lto_register_canonical_types (global_trees[i], false);
2950 if (!quiet_flag)
2951 fprintf (stderr, "Reading object files:");
2953 /* Read all of the object files specified on the command line. */
2954 for (i = 0, last_file_ix = 0; i < nfiles; ++i)
2956 struct lto_file_decl_data *file_data = NULL;
2957 if (!quiet_flag)
2959 fprintf (stderr, " %s", fnames[i]);
2960 fflush (stderr);
2963 current_lto_file = lto_obj_file_open (fnames[i], false);
2964 if (!current_lto_file)
2965 break;
2967 file_data = lto_file_read (current_lto_file, resolution, &count);
2968 if (!file_data)
2970 lto_obj_file_close (current_lto_file);
2971 free (current_lto_file);
2972 current_lto_file = NULL;
2973 break;
2976 decl_data[last_file_ix++] = file_data;
2978 lto_obj_file_close (current_lto_file);
2979 free (current_lto_file);
2980 current_lto_file = NULL;
2983 lto_flatten_files (decl_data, count, last_file_ix);
2984 lto_stats.num_input_files = count;
2985 ggc_free(decl_data);
2986 real_file_decl_data = NULL;
2988 if (resolution_file_name)
2989 fclose (resolution);
2991 /* Show the LTO report before launching LTRANS. */
2992 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
2993 print_lto_report_1 ();
2995 /* Free gimple type merging datastructures. */
2996 delete tree_scc_hash;
2997 tree_scc_hash = NULL;
2998 obstack_free (&tree_scc_hash_obstack, NULL);
2999 htab_delete (gimple_canonical_types);
3000 gimple_canonical_types = NULL;
3001 delete canonical_type_hash_cache;
3002 canonical_type_hash_cache = NULL;
3004 /* At this stage we know that majority of GGC memory is reachable.
3005 Growing the limits prevents unnecesary invocation of GGC. */
3006 ggc_grow ();
3007 ggc_collect ();
3009 /* Set the hooks so that all of the ipa passes can read in their data. */
3010 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
3012 timevar_pop (TV_IPA_LTO_DECL_IN);
3014 if (!quiet_flag)
3015 fprintf (stderr, "\nReading the callgraph\n");
3017 timevar_push (TV_IPA_LTO_CGRAPH_IO);
3018 /* Read the symtab. */
3019 input_symtab ();
3021 /* Store resolutions into the symbol table. */
3023 ld_plugin_symbol_resolution_t *res;
3024 FOR_EACH_SYMBOL (snode)
3025 if (snode->real_symbol_p ()
3026 && snode->lto_file_data
3027 && snode->lto_file_data->resolution_map
3028 && (res = snode->lto_file_data->resolution_map->get (snode->decl)))
3029 snode->resolution = *res;
3030 for (i = 0; all_file_decl_data[i]; i++)
3031 if (all_file_decl_data[i]->resolution_map)
3033 delete all_file_decl_data[i]->resolution_map;
3034 all_file_decl_data[i]->resolution_map = NULL;
3037 timevar_pop (TV_IPA_LTO_CGRAPH_IO);
3039 if (!quiet_flag)
3040 fprintf (stderr, "Merging declarations\n");
3042 timevar_push (TV_IPA_LTO_DECL_MERGE);
3043 /* Merge global decls. In ltrans mode we read merged cgraph, we do not
3044 need to care about resolving symbols again, we only need to replace
3045 duplicated declarations read from the callgraph and from function
3046 sections. */
3047 if (!flag_ltrans)
3049 lto_symtab_merge_decls ();
3051 /* If there were errors during symbol merging bail out, we have no
3052 good way to recover here. */
3053 if (seen_error ())
3054 fatal_error ("errors during merging of translation units");
3056 /* Fixup all decls. */
3057 lto_fixup_decls (all_file_decl_data);
3059 if (tree_with_vars)
3060 ggc_free (tree_with_vars);
3061 tree_with_vars = NULL;
3062 ggc_collect ();
3064 timevar_pop (TV_IPA_LTO_DECL_MERGE);
3065 /* Each pass will set the appropriate timer. */
3067 if (!quiet_flag)
3068 fprintf (stderr, "Reading summaries\n");
3070 /* Read the IPA summary data. */
3071 if (flag_ltrans)
3072 ipa_read_optimization_summaries ();
3073 else
3074 ipa_read_summaries ();
3076 for (i = 0; all_file_decl_data[i]; i++)
3078 gcc_assert (all_file_decl_data[i]->symtab_node_encoder);
3079 lto_symtab_encoder_delete (all_file_decl_data[i]->symtab_node_encoder);
3080 all_file_decl_data[i]->symtab_node_encoder = NULL;
3081 lto_free_function_in_decl_state (all_file_decl_data[i]->global_decl_state);
3082 all_file_decl_data[i]->global_decl_state = NULL;
3083 all_file_decl_data[i]->current_decl_state = NULL;
3086 /* Finally merge the cgraph according to the decl merging decisions. */
3087 timevar_push (TV_IPA_LTO_CGRAPH_MERGE);
3088 if (symtab->dump_file)
3090 fprintf (symtab->dump_file, "Before merging:\n");
3091 symtab_node::dump_table (symtab->dump_file);
3093 lto_symtab_merge_symbols ();
3094 /* Removal of unreachable symbols is needed to make verify_symtab to pass;
3095 we are still having duplicated comdat groups containing local statics.
3096 We could also just remove them while merging. */
3097 symtab->remove_unreachable_nodes (true, dump_file);
3098 ggc_collect ();
3099 symtab->state = IPA_SSA;
3101 timevar_pop (TV_IPA_LTO_CGRAPH_MERGE);
3103 /* Indicate that the cgraph is built and ready. */
3104 symtab->function_flags_ready = true;
3106 ggc_free (all_file_decl_data);
3107 all_file_decl_data = NULL;
3111 /* Materialize all the bodies for all the nodes in the callgraph. */
3113 static void
3114 materialize_cgraph (void)
3116 struct cgraph_node *node;
3117 timevar_id_t lto_timer;
3119 if (!quiet_flag)
3120 fprintf (stderr,
3121 flag_wpa ? "Materializing decls:" : "Reading function bodies:");
3124 FOR_EACH_FUNCTION (node)
3126 if (node->lto_file_data)
3128 lto_materialize_function (node);
3129 lto_stats.num_input_cgraph_nodes++;
3134 /* Start the appropriate timer depending on the mode that we are
3135 operating in. */
3136 lto_timer = (flag_wpa) ? TV_WHOPR_WPA
3137 : (flag_ltrans) ? TV_WHOPR_LTRANS
3138 : TV_LTO;
3139 timevar_push (lto_timer);
3141 current_function_decl = NULL;
3142 set_cfun (NULL);
3144 if (!quiet_flag)
3145 fprintf (stderr, "\n");
3147 timevar_pop (lto_timer);
3151 /* Show various memory usage statistics related to LTO. */
3152 static void
3153 print_lto_report_1 (void)
3155 const char *pfx = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS";
3156 fprintf (stderr, "%s statistics\n", pfx);
3158 fprintf (stderr, "[%s] read %lu SCCs of average size %f\n",
3159 pfx, num_sccs_read, total_scc_size / (double)num_sccs_read);
3160 fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx, total_scc_size);
3161 if (flag_wpa && tree_scc_hash)
3163 fprintf (stderr, "[%s] tree SCC table: size %ld, %ld elements, "
3164 "collision ratio: %f\n", pfx,
3165 (long) tree_scc_hash->size (),
3166 (long) tree_scc_hash->elements (),
3167 tree_scc_hash->collisions ());
3168 hash_table<tree_scc_hasher>::iterator hiter;
3169 tree_scc *scc, *max_scc = NULL;
3170 unsigned max_length = 0;
3171 FOR_EACH_HASH_TABLE_ELEMENT (*tree_scc_hash, scc, x, hiter)
3173 unsigned length = 0;
3174 tree_scc *s = scc;
3175 for (; s; s = s->next)
3176 length++;
3177 if (length > max_length)
3179 max_length = length;
3180 max_scc = scc;
3183 fprintf (stderr, "[%s] tree SCC max chain length %u (size %u)\n",
3184 pfx, max_length, max_scc->len);
3185 fprintf (stderr, "[%s] Compared %lu SCCs, %lu collisions (%f)\n", pfx,
3186 num_scc_compares, num_scc_compare_collisions,
3187 num_scc_compare_collisions / (double) num_scc_compares);
3188 fprintf (stderr, "[%s] Merged %lu SCCs\n", pfx, num_sccs_merged);
3189 fprintf (stderr, "[%s] Merged %lu tree bodies\n", pfx,
3190 total_scc_size_merged);
3191 fprintf (stderr, "[%s] Merged %lu types\n", pfx, num_merged_types);
3192 fprintf (stderr, "[%s] %lu types prevailed (%lu associated trees)\n",
3193 pfx, num_prevailing_types, num_type_scc_trees);
3194 fprintf (stderr, "[%s] GIMPLE canonical type table: size %ld, "
3195 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3196 (long) htab_size (gimple_canonical_types),
3197 (long) htab_elements (gimple_canonical_types),
3198 (long) gimple_canonical_types->searches,
3199 (long) gimple_canonical_types->collisions,
3200 htab_collisions (gimple_canonical_types));
3201 fprintf (stderr, "[%s] GIMPLE canonical type pointer-map: "
3202 "%lu elements, %ld searches\n", pfx,
3203 num_canonical_type_hash_entries,
3204 num_canonical_type_hash_queries);
3207 print_lto_report (pfx);
3210 /* Perform whole program analysis (WPA) on the callgraph and write out the
3211 optimization plan. */
3213 static void
3214 do_whole_program_analysis (void)
3216 symtab_node *node;
3218 lto_parallelism = 1;
3220 /* TODO: jobserver communicatoin is not supported, yet. */
3221 if (!strcmp (flag_wpa, "jobserver"))
3222 lto_parallelism = -1;
3223 else
3225 lto_parallelism = atoi (flag_wpa);
3226 if (lto_parallelism <= 0)
3227 lto_parallelism = 0;
3230 timevar_start (TV_PHASE_OPT_GEN);
3232 /* Note that since we are in WPA mode, materialize_cgraph will not
3233 actually read in all the function bodies. It only materializes
3234 the decls and cgraph nodes so that analysis can be performed. */
3235 materialize_cgraph ();
3237 /* Reading in the cgraph uses different timers, start timing WPA now. */
3238 timevar_push (TV_WHOPR_WPA);
3240 if (pre_ipa_mem_report)
3242 fprintf (stderr, "Memory consumption before IPA\n");
3243 dump_memory_report (false);
3246 symtab->function_flags_ready = true;
3248 if (symtab->dump_file)
3249 symtab_node::dump_table (symtab->dump_file);
3250 bitmap_obstack_initialize (NULL);
3251 symtab->state = IPA_SSA;
3253 execute_ipa_pass_list (g->get_passes ()->all_regular_ipa_passes);
3254 symtab->remove_unreachable_nodes (false, dump_file);
3256 if (symtab->dump_file)
3258 fprintf (symtab->dump_file, "Optimized ");
3259 symtab_node::dump_table (symtab->dump_file);
3261 #ifdef ENABLE_CHECKING
3262 symtab_node::verify_symtab_nodes ();
3263 #endif
3264 bitmap_obstack_release (NULL);
3266 /* We are about to launch the final LTRANS phase, stop the WPA timer. */
3267 timevar_pop (TV_WHOPR_WPA);
3269 timevar_push (TV_WHOPR_PARTITIONING);
3270 if (flag_lto_partition == LTO_PARTITION_1TO1)
3271 lto_1_to_1_map ();
3272 else if (flag_lto_partition == LTO_PARTITION_MAX)
3273 lto_max_map ();
3274 else if (flag_lto_partition == LTO_PARTITION_ONE)
3275 lto_balanced_map (1);
3276 else if (flag_lto_partition == LTO_PARTITION_BALANCED)
3277 lto_balanced_map (PARAM_VALUE (PARAM_LTO_PARTITIONS));
3278 else
3279 gcc_unreachable ();
3281 /* Inline summaries are needed for balanced partitioning. Free them now so
3282 the memory can be used for streamer caches. */
3283 inline_free_summary ();
3285 /* AUX pointers are used by partitioning code to bookkeep number of
3286 partitions symbol is in. This is no longer needed. */
3287 FOR_EACH_SYMBOL (node)
3288 node->aux = NULL;
3290 lto_stats.num_cgraph_partitions += ltrans_partitions.length ();
3292 /* Find out statics that need to be promoted
3293 to globals with hidden visibility because they are accessed from multiple
3294 partitions. */
3295 lto_promote_cross_file_statics ();
3296 timevar_pop (TV_WHOPR_PARTITIONING);
3298 timevar_stop (TV_PHASE_OPT_GEN);
3300 /* Collect a last time - in lto_wpa_write_files we may end up forking
3301 with the idea that this doesn't increase memory usage. So we
3302 absoultely do not want to collect after that. */
3303 ggc_collect ();
3305 timevar_start (TV_PHASE_STREAM_OUT);
3306 if (!quiet_flag)
3308 fprintf (stderr, "\nStreaming out");
3309 fflush (stderr);
3311 lto_wpa_write_files ();
3312 if (!quiet_flag)
3313 fprintf (stderr, "\n");
3314 timevar_stop (TV_PHASE_STREAM_OUT);
3316 if (post_ipa_mem_report)
3318 fprintf (stderr, "Memory consumption after IPA\n");
3319 dump_memory_report (false);
3322 /* Show the LTO report before launching LTRANS. */
3323 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3324 print_lto_report_1 ();
3325 if (mem_report_wpa)
3326 dump_memory_report (true);
3330 static GTY(()) tree lto_eh_personality_decl;
3332 /* Return the LTO personality function decl. */
3334 tree
3335 lto_eh_personality (void)
3337 if (!lto_eh_personality_decl)
3339 /* Use the first personality DECL for our personality if we don't
3340 support multiple ones. This ensures that we don't artificially
3341 create the need for them in a single-language program. */
3342 if (first_personality_decl && !dwarf2out_do_cfi_asm ())
3343 lto_eh_personality_decl = first_personality_decl;
3344 else
3345 lto_eh_personality_decl = lhd_gcc_personality ();
3348 return lto_eh_personality_decl;
3351 /* Set the process name based on the LTO mode. */
3353 static void
3354 lto_process_name (void)
3356 if (flag_lto)
3357 setproctitle ("lto1-lto");
3358 if (flag_wpa)
3359 setproctitle ("lto1-wpa");
3360 if (flag_ltrans)
3361 setproctitle ("lto1-ltrans");
3365 /* Initialize the LTO front end. */
3367 static void
3368 lto_init (void)
3370 lto_process_name ();
3371 lto_streamer_hooks_init ();
3372 lto_reader_init ();
3373 lto_set_in_hooks (NULL, get_section_data, free_section_data);
3374 memset (&lto_stats, 0, sizeof (lto_stats));
3375 bitmap_obstack_initialize (NULL);
3376 gimple_register_cfg_hooks ();
3380 /* Main entry point for the GIMPLE front end. This front end has
3381 three main personalities:
3383 - LTO (-flto). All the object files on the command line are
3384 loaded in memory and processed as a single translation unit.
3385 This is the traditional link-time optimization behavior.
3387 - WPA (-fwpa). Only the callgraph and summary information for
3388 files in the command file are loaded. A single callgraph
3389 (without function bodies) is instantiated for the whole set of
3390 files. IPA passes are only allowed to analyze the call graph
3391 and make transformation decisions. The callgraph is
3392 partitioned, each partition is written to a new object file
3393 together with the transformation decisions.
3395 - LTRANS (-fltrans). Similar to -flto but it prevents the IPA
3396 summary files from running again. Since WPA computed summary
3397 information and decided what transformations to apply, LTRANS
3398 simply applies them. */
3400 void
3401 lto_main (void)
3403 /* LTO is called as a front end, even though it is not a front end.
3404 Because it is called as a front end, TV_PHASE_PARSING and
3405 TV_PARSE_GLOBAL are active, and we need to turn them off while
3406 doing LTO. Later we turn them back on so they are active up in
3407 toplev.c. */
3408 timevar_pop (TV_PARSE_GLOBAL);
3409 timevar_stop (TV_PHASE_PARSING);
3411 timevar_start (TV_PHASE_SETUP);
3413 /* Initialize the LTO front end. */
3414 lto_init ();
3416 timevar_stop (TV_PHASE_SETUP);
3417 timevar_start (TV_PHASE_STREAM_IN);
3419 /* Read all the symbols and call graph from all the files in the
3420 command line. */
3421 read_cgraph_and_symbols (num_in_fnames, in_fnames);
3423 timevar_stop (TV_PHASE_STREAM_IN);
3425 if (!seen_error ())
3427 /* If WPA is enabled analyze the whole call graph and create an
3428 optimization plan. Otherwise, read in all the function
3429 bodies and continue with optimization. */
3430 if (flag_wpa)
3431 do_whole_program_analysis ();
3432 else
3434 timevar_start (TV_PHASE_OPT_GEN);
3436 materialize_cgraph ();
3437 if (!flag_ltrans)
3438 lto_promote_statics_nonwpa ();
3440 /* Let the middle end know that we have read and merged all of
3441 the input files. */
3442 symtab->compile ();
3444 timevar_stop (TV_PHASE_OPT_GEN);
3446 /* FIXME lto, if the processes spawned by WPA fail, we miss
3447 the chance to print WPA's report, so WPA will call
3448 print_lto_report before launching LTRANS. If LTRANS was
3449 launched directly by the driver we would not need to do
3450 this. */
3451 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3452 print_lto_report_1 ();
3456 /* Here we make LTO pretend to be a parser. */
3457 timevar_start (TV_PHASE_PARSING);
3458 timevar_push (TV_PARSE_GLOBAL);
3461 #include "gt-lto-lto.h"