2014-09-10 Michael Meissner <meissner@linux.vnet.ibm.com>
[official-gcc.git] / gcc / lto / lto.c
blob1ecbbce4c8862fc7009146f3b85126871e922d4a
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"
59 /* Number of parallel tasks to run, -1 if we want to use GNU Make jobserver. */
60 static int lto_parallelism;
62 static GTY(()) tree first_personality_decl;
64 /* Returns a hash code for P. */
66 static hashval_t
67 hash_name (const void *p)
69 const struct lto_section_slot *ds = (const struct lto_section_slot *) p;
70 return (hashval_t) htab_hash_string (ds->name);
74 /* Returns nonzero if P1 and P2 are equal. */
76 static int
77 eq_name (const void *p1, const void *p2)
79 const struct lto_section_slot *s1 =
80 (const struct lto_section_slot *) p1;
81 const struct lto_section_slot *s2 =
82 (const struct lto_section_slot *) p2;
84 return strcmp (s1->name, s2->name) == 0;
87 /* Free lto_section_slot */
89 static void
90 free_with_string (void *arg)
92 struct lto_section_slot *s = (struct lto_section_slot *)arg;
94 free (CONST_CAST (char *, s->name));
95 free (arg);
98 /* Create section hash table */
100 htab_t
101 lto_obj_create_section_hash_table (void)
103 return htab_create (37, hash_name, eq_name, free_with_string);
106 /* Delete an allocated integer KEY in the splay tree. */
108 static void
109 lto_splay_tree_delete_id (splay_tree_key key)
111 free ((void *) key);
114 /* Compare splay tree node ids A and B. */
116 static int
117 lto_splay_tree_compare_ids (splay_tree_key a, splay_tree_key b)
119 unsigned HOST_WIDE_INT ai;
120 unsigned HOST_WIDE_INT bi;
122 ai = *(unsigned HOST_WIDE_INT *) a;
123 bi = *(unsigned HOST_WIDE_INT *) b;
125 if (ai < bi)
126 return -1;
127 else if (ai > bi)
128 return 1;
129 return 0;
132 /* Look up splay tree node by ID in splay tree T. */
134 static splay_tree_node
135 lto_splay_tree_lookup (splay_tree t, unsigned HOST_WIDE_INT id)
137 return splay_tree_lookup (t, (splay_tree_key) &id);
140 /* Check if KEY has ID. */
142 static bool
143 lto_splay_tree_id_equal_p (splay_tree_key key, unsigned HOST_WIDE_INT id)
145 return *(unsigned HOST_WIDE_INT *) key == id;
148 /* Insert a splay tree node into tree T with ID as key and FILE_DATA as value.
149 The ID is allocated separately because we need HOST_WIDE_INTs which may
150 be wider than a splay_tree_key. */
152 static void
153 lto_splay_tree_insert (splay_tree t, unsigned HOST_WIDE_INT id,
154 struct lto_file_decl_data *file_data)
156 unsigned HOST_WIDE_INT *idp = XCNEW (unsigned HOST_WIDE_INT);
157 *idp = id;
158 splay_tree_insert (t, (splay_tree_key) idp, (splay_tree_value) file_data);
161 /* Create a splay tree. */
163 static splay_tree
164 lto_splay_tree_new (void)
166 return splay_tree_new (lto_splay_tree_compare_ids,
167 lto_splay_tree_delete_id,
168 NULL);
171 /* Return true when NODE has a clone that is analyzed (i.e. we need
172 to load its body even if the node itself is not needed). */
174 static bool
175 has_analyzed_clone_p (struct cgraph_node *node)
177 struct cgraph_node *orig = node;
178 node = node->clones;
179 if (node)
180 while (node != orig)
182 if (node->analyzed)
183 return true;
184 if (node->clones)
185 node = node->clones;
186 else if (node->next_sibling_clone)
187 node = node->next_sibling_clone;
188 else
190 while (node != orig && !node->next_sibling_clone)
191 node = node->clone_of;
192 if (node != orig)
193 node = node->next_sibling_clone;
196 return false;
199 /* Read the function body for the function associated with NODE. */
201 static void
202 lto_materialize_function (struct cgraph_node *node)
204 tree decl;
206 decl = node->decl;
207 /* Read in functions with body (analyzed nodes)
208 and also functions that are needed to produce virtual clones. */
209 if ((node->has_gimple_body_p () && node->analyzed)
210 || node->used_as_abstract_origin
211 || has_analyzed_clone_p (node))
213 /* Clones don't need to be read. */
214 if (node->clone_of)
215 return;
216 if (DECL_FUNCTION_PERSONALITY (decl) && !first_personality_decl)
217 first_personality_decl = DECL_FUNCTION_PERSONALITY (decl);
220 /* Let the middle end know about the function. */
221 rest_of_decl_compilation (decl, 1, 0);
225 /* Decode the content of memory pointed to by DATA in the in decl
226 state object STATE. DATA_IN points to a data_in structure for
227 decoding. Return the address after the decoded object in the
228 input. */
230 static const uint32_t *
231 lto_read_in_decl_state (struct data_in *data_in, const uint32_t *data,
232 struct lto_in_decl_state *state)
234 uint32_t ix;
235 tree decl;
236 uint32_t i, j;
238 ix = *data++;
239 decl = streamer_tree_cache_get_tree (data_in->reader_cache, ix);
240 if (!VAR_OR_FUNCTION_DECL_P (decl))
242 gcc_assert (decl == void_type_node);
243 decl = NULL_TREE;
245 state->fn_decl = decl;
247 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
249 uint32_t size = *data++;
250 tree *decls = ggc_vec_alloc<tree> (size);
252 for (j = 0; j < size; j++)
253 decls[j] = streamer_tree_cache_get_tree (data_in->reader_cache, data[j]);
255 state->streams[i].size = size;
256 state->streams[i].trees = decls;
257 data += size;
260 return data;
264 /* Global canonical type table. */
265 static htab_t gimple_canonical_types;
266 static hash_map<const_tree, hashval_t> *canonical_type_hash_cache;
267 static unsigned long num_canonical_type_hash_entries;
268 static unsigned long num_canonical_type_hash_queries;
270 static void iterative_hash_canonical_type (tree type, inchash::hash &hstate);
271 static hashval_t gimple_canonical_type_hash (const void *p);
272 static void gimple_register_canonical_type_1 (tree t, hashval_t hash);
274 /* Returning a hash value for gimple type TYPE.
276 The hash value returned is equal for types considered compatible
277 by gimple_canonical_types_compatible_p. */
279 static hashval_t
280 hash_canonical_type (tree type)
282 inchash::hash hstate;
284 /* Combine a few common features of types so that types are grouped into
285 smaller sets; when searching for existing matching types to merge,
286 only existing types having the same features as the new type will be
287 checked. */
288 hstate.add_int (TREE_CODE (type));
289 hstate.add_int (TYPE_MODE (type));
291 /* Incorporate common features of numerical types. */
292 if (INTEGRAL_TYPE_P (type)
293 || SCALAR_FLOAT_TYPE_P (type)
294 || FIXED_POINT_TYPE_P (type)
295 || TREE_CODE (type) == OFFSET_TYPE
296 || POINTER_TYPE_P (type))
298 hstate.add_int (TYPE_UNSIGNED (type));
299 hstate.add_int (TYPE_PRECISION (type));
302 if (VECTOR_TYPE_P (type))
304 hstate.add_int (TYPE_VECTOR_SUBPARTS (type));
305 hstate.add_int (TYPE_UNSIGNED (type));
308 if (TREE_CODE (type) == COMPLEX_TYPE)
309 hstate.add_int (TYPE_UNSIGNED (type));
311 /* For pointer and reference types, fold in information about the type
312 pointed to but do not recurse to the pointed-to type. */
313 if (POINTER_TYPE_P (type))
315 hstate.add_int (TYPE_ADDR_SPACE (TREE_TYPE (type)));
316 hstate.add_int (TREE_CODE (TREE_TYPE (type)));
319 /* For integer types hash only the string flag. */
320 if (TREE_CODE (type) == INTEGER_TYPE)
321 hstate.add_int (TYPE_STRING_FLAG (type));
323 /* For array types hash the domain bounds and the string flag. */
324 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
326 hstate.add_int (TYPE_STRING_FLAG (type));
327 /* OMP lowering can introduce error_mark_node in place of
328 random local decls in types. */
329 if (TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
330 inchash::add_expr (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), hstate);
331 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
332 inchash::add_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), hstate);
335 /* Recurse for aggregates with a single element type. */
336 if (TREE_CODE (type) == ARRAY_TYPE
337 || TREE_CODE (type) == COMPLEX_TYPE
338 || TREE_CODE (type) == VECTOR_TYPE)
339 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
341 /* Incorporate function return and argument types. */
342 if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
344 unsigned na;
345 tree p;
347 /* For method types also incorporate their parent class. */
348 if (TREE_CODE (type) == METHOD_TYPE)
349 iterative_hash_canonical_type (TYPE_METHOD_BASETYPE (type), hstate);
351 iterative_hash_canonical_type (TREE_TYPE (type), hstate);
353 for (p = TYPE_ARG_TYPES (type), na = 0; p; p = TREE_CHAIN (p))
355 iterative_hash_canonical_type (TREE_VALUE (p), hstate);
356 na++;
359 hstate.add_int (na);
362 if (RECORD_OR_UNION_TYPE_P (type))
364 unsigned nf;
365 tree f;
367 for (f = TYPE_FIELDS (type), nf = 0; f; f = TREE_CHAIN (f))
368 if (TREE_CODE (f) == FIELD_DECL)
370 iterative_hash_canonical_type (TREE_TYPE (f), hstate);
371 nf++;
374 hstate.add_int (nf);
377 return hstate.end();
380 /* Returning a hash value for gimple type TYPE combined with VAL. */
382 static void
383 iterative_hash_canonical_type (tree type, inchash::hash &hstate)
385 hashval_t v;
386 /* An already processed type. */
387 if (TYPE_CANONICAL (type))
389 type = TYPE_CANONICAL (type);
390 v = gimple_canonical_type_hash (type);
392 else
394 /* Canonical types should not be able to form SCCs by design, this
395 recursion is just because we do not register canonical types in
396 optimal order. To avoid quadratic behavior also register the
397 type here. */
398 v = hash_canonical_type (type);
399 gimple_register_canonical_type_1 (type, v);
401 hstate.add_int (v);
404 /* Returns the hash for a canonical type P. */
406 static hashval_t
407 gimple_canonical_type_hash (const void *p)
409 num_canonical_type_hash_queries++;
410 hashval_t *slot = canonical_type_hash_cache->get ((const_tree) p);
411 gcc_assert (slot != NULL);
412 return *slot;
416 /* The TYPE_CANONICAL merging machinery. It should closely resemble
417 the middle-end types_compatible_p function. It needs to avoid
418 claiming types are different for types that should be treated
419 the same with respect to TBAA. Canonical types are also used
420 for IL consistency checks via the useless_type_conversion_p
421 predicate which does not handle all type kinds itself but falls
422 back to pointer-comparison of TYPE_CANONICAL for aggregates
423 for example. */
425 /* Return true iff T1 and T2 are structurally identical for what
426 TBAA is concerned. */
428 static bool
429 gimple_canonical_types_compatible_p (tree t1, tree t2)
431 /* Before starting to set up the SCC machinery handle simple cases. */
433 /* Check first for the obvious case of pointer identity. */
434 if (t1 == t2)
435 return true;
437 /* Check that we have two types to compare. */
438 if (t1 == NULL_TREE || t2 == NULL_TREE)
439 return false;
441 /* If the types have been previously registered and found equal
442 they still are. */
443 if (TYPE_CANONICAL (t1)
444 && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
445 return true;
447 /* Can't be the same type if the types don't have the same code. */
448 if (TREE_CODE (t1) != TREE_CODE (t2))
449 return false;
451 /* Qualifiers do not matter for canonical type comparison purposes. */
453 /* Void types and nullptr types are always the same. */
454 if (TREE_CODE (t1) == VOID_TYPE
455 || TREE_CODE (t1) == NULLPTR_TYPE)
456 return true;
458 /* Can't be the same type if they have different mode. */
459 if (TYPE_MODE (t1) != TYPE_MODE (t2))
460 return false;
462 /* Non-aggregate types can be handled cheaply. */
463 if (INTEGRAL_TYPE_P (t1)
464 || SCALAR_FLOAT_TYPE_P (t1)
465 || FIXED_POINT_TYPE_P (t1)
466 || TREE_CODE (t1) == VECTOR_TYPE
467 || TREE_CODE (t1) == COMPLEX_TYPE
468 || TREE_CODE (t1) == OFFSET_TYPE
469 || POINTER_TYPE_P (t1))
471 /* Can't be the same type if they have different sign or precision. */
472 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2)
473 || TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2))
474 return false;
476 if (TREE_CODE (t1) == INTEGER_TYPE
477 && TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2))
478 return false;
480 /* For canonical type comparisons we do not want to build SCCs
481 so we cannot compare pointed-to types. But we can, for now,
482 require the same pointed-to type kind and match what
483 useless_type_conversion_p would do. */
484 if (POINTER_TYPE_P (t1))
486 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
487 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
488 return false;
490 if (TREE_CODE (TREE_TYPE (t1)) != TREE_CODE (TREE_TYPE (t2)))
491 return false;
494 /* Tail-recurse to components. */
495 if (TREE_CODE (t1) == VECTOR_TYPE
496 || TREE_CODE (t1) == COMPLEX_TYPE)
497 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
498 TREE_TYPE (t2));
500 return true;
503 /* Do type-specific comparisons. */
504 switch (TREE_CODE (t1))
506 case ARRAY_TYPE:
507 /* Array types are the same if the element types are the same and
508 the number of elements are the same. */
509 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2))
510 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
511 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
512 return false;
513 else
515 tree i1 = TYPE_DOMAIN (t1);
516 tree i2 = TYPE_DOMAIN (t2);
518 /* For an incomplete external array, the type domain can be
519 NULL_TREE. Check this condition also. */
520 if (i1 == NULL_TREE && i2 == NULL_TREE)
521 return true;
522 else if (i1 == NULL_TREE || i2 == NULL_TREE)
523 return false;
524 else
526 tree min1 = TYPE_MIN_VALUE (i1);
527 tree min2 = TYPE_MIN_VALUE (i2);
528 tree max1 = TYPE_MAX_VALUE (i1);
529 tree max2 = TYPE_MAX_VALUE (i2);
531 /* The minimum/maximum values have to be the same. */
532 if ((min1 == min2
533 || (min1 && min2
534 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
535 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
536 || operand_equal_p (min1, min2, 0))))
537 && (max1 == max2
538 || (max1 && max2
539 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
540 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
541 || operand_equal_p (max1, max2, 0)))))
542 return true;
543 else
544 return false;
548 case METHOD_TYPE:
549 case FUNCTION_TYPE:
550 /* Function types are the same if the return type and arguments types
551 are the same. */
552 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
553 return false;
555 if (!comp_type_attributes (t1, t2))
556 return false;
558 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
559 return true;
560 else
562 tree parms1, parms2;
564 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
565 parms1 && parms2;
566 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
568 if (!gimple_canonical_types_compatible_p
569 (TREE_VALUE (parms1), TREE_VALUE (parms2)))
570 return false;
573 if (parms1 || parms2)
574 return false;
576 return true;
579 case RECORD_TYPE:
580 case UNION_TYPE:
581 case QUAL_UNION_TYPE:
583 tree f1, f2;
585 /* For aggregate types, all the fields must be the same. */
586 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
587 f1 || f2;
588 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
590 /* Skip non-fields. */
591 while (f1 && TREE_CODE (f1) != FIELD_DECL)
592 f1 = TREE_CHAIN (f1);
593 while (f2 && TREE_CODE (f2) != FIELD_DECL)
594 f2 = TREE_CHAIN (f2);
595 if (!f1 || !f2)
596 break;
597 /* The fields must have the same name, offset and type. */
598 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
599 || !gimple_compare_field_offset (f1, f2)
600 || !gimple_canonical_types_compatible_p
601 (TREE_TYPE (f1), TREE_TYPE (f2)))
602 return false;
605 /* If one aggregate has more fields than the other, they
606 are not the same. */
607 if (f1 || f2)
608 return false;
610 return true;
613 default:
614 gcc_unreachable ();
619 /* Returns nonzero if P1 and P2 are equal. */
621 static int
622 gimple_canonical_type_eq (const void *p1, const void *p2)
624 const_tree t1 = (const_tree) p1;
625 const_tree t2 = (const_tree) p2;
626 return gimple_canonical_types_compatible_p (CONST_CAST_TREE (t1),
627 CONST_CAST_TREE (t2));
630 /* Main worker for gimple_register_canonical_type. */
632 static void
633 gimple_register_canonical_type_1 (tree t, hashval_t hash)
635 void **slot;
637 gcc_checking_assert (TYPE_P (t) && !TYPE_CANONICAL (t));
639 slot = htab_find_slot_with_hash (gimple_canonical_types, t, hash, INSERT);
640 if (*slot)
642 tree new_type = (tree)(*slot);
643 gcc_checking_assert (new_type != t);
644 TYPE_CANONICAL (t) = new_type;
646 else
648 TYPE_CANONICAL (t) = t;
649 *slot = (void *) t;
650 /* Cache the just computed hash value. */
651 num_canonical_type_hash_entries++;
652 bool existed_p = canonical_type_hash_cache->put (t, hash);
653 gcc_assert (!existed_p);
657 /* Register type T in the global type table gimple_types and set
658 TYPE_CANONICAL of T accordingly.
659 This is used by LTO to merge structurally equivalent types for
660 type-based aliasing purposes across different TUs and languages.
662 ??? This merging does not exactly match how the tree.c middle-end
663 functions will assign TYPE_CANONICAL when new types are created
664 during optimization (which at least happens for pointer and array
665 types). */
667 static void
668 gimple_register_canonical_type (tree t)
670 if (TYPE_CANONICAL (t))
671 return;
673 gimple_register_canonical_type_1 (t, hash_canonical_type (t));
676 /* Re-compute TYPE_CANONICAL for NODE and related types. */
678 static void
679 lto_register_canonical_types (tree node, bool first_p)
681 if (!node
682 || !TYPE_P (node))
683 return;
685 if (first_p)
686 TYPE_CANONICAL (node) = NULL_TREE;
688 if (POINTER_TYPE_P (node)
689 || TREE_CODE (node) == COMPLEX_TYPE
690 || TREE_CODE (node) == ARRAY_TYPE)
691 lto_register_canonical_types (TREE_TYPE (node), first_p);
693 if (!first_p)
694 gimple_register_canonical_type (node);
698 /* Remember trees that contains references to declarations. */
699 static GTY(()) vec <tree, va_gc> *tree_with_vars;
701 #define CHECK_VAR(tt) \
702 do \
704 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
705 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
706 return true; \
707 } while (0)
709 #define CHECK_NO_VAR(tt) \
710 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
712 /* Check presence of pointers to decls in fields of a tree_typed T. */
714 static inline bool
715 mentions_vars_p_typed (tree t)
717 CHECK_NO_VAR (TREE_TYPE (t));
718 return false;
721 /* Check presence of pointers to decls in fields of a tree_common T. */
723 static inline bool
724 mentions_vars_p_common (tree t)
726 if (mentions_vars_p_typed (t))
727 return true;
728 CHECK_NO_VAR (TREE_CHAIN (t));
729 return false;
732 /* Check presence of pointers to decls in fields of a decl_minimal T. */
734 static inline bool
735 mentions_vars_p_decl_minimal (tree t)
737 if (mentions_vars_p_common (t))
738 return true;
739 CHECK_NO_VAR (DECL_NAME (t));
740 CHECK_VAR (DECL_CONTEXT (t));
741 return false;
744 /* Check presence of pointers to decls in fields of a decl_common T. */
746 static inline bool
747 mentions_vars_p_decl_common (tree t)
749 if (mentions_vars_p_decl_minimal (t))
750 return true;
751 CHECK_VAR (DECL_SIZE (t));
752 CHECK_VAR (DECL_SIZE_UNIT (t));
753 CHECK_VAR (DECL_INITIAL (t));
754 CHECK_NO_VAR (DECL_ATTRIBUTES (t));
755 CHECK_VAR (DECL_ABSTRACT_ORIGIN (t));
756 return false;
759 /* Check presence of pointers to decls in fields of a decl_with_vis T. */
761 static inline bool
762 mentions_vars_p_decl_with_vis (tree t)
764 if (mentions_vars_p_decl_common (t))
765 return true;
767 /* Accessor macro has side-effects, use field-name here. */
768 CHECK_NO_VAR (t->decl_with_vis.assembler_name);
769 return false;
772 /* Check presence of pointers to decls in fields of a decl_non_common T. */
774 static inline bool
775 mentions_vars_p_decl_non_common (tree t)
777 if (mentions_vars_p_decl_with_vis (t))
778 return true;
779 CHECK_NO_VAR (DECL_RESULT_FLD (t));
780 return false;
783 /* Check presence of pointers to decls in fields of a decl_non_common T. */
785 static bool
786 mentions_vars_p_function (tree t)
788 if (mentions_vars_p_decl_non_common (t))
789 return true;
790 CHECK_NO_VAR (DECL_ARGUMENTS (t));
791 CHECK_NO_VAR (DECL_VINDEX (t));
792 CHECK_VAR (DECL_FUNCTION_PERSONALITY (t));
793 return false;
796 /* Check presence of pointers to decls in fields of a field_decl T. */
798 static bool
799 mentions_vars_p_field_decl (tree t)
801 if (mentions_vars_p_decl_common (t))
802 return true;
803 CHECK_VAR (DECL_FIELD_OFFSET (t));
804 CHECK_NO_VAR (DECL_BIT_FIELD_TYPE (t));
805 CHECK_NO_VAR (DECL_QUALIFIER (t));
806 CHECK_NO_VAR (DECL_FIELD_BIT_OFFSET (t));
807 CHECK_NO_VAR (DECL_FCONTEXT (t));
808 return false;
811 /* Check presence of pointers to decls in fields of a type T. */
813 static bool
814 mentions_vars_p_type (tree t)
816 if (mentions_vars_p_common (t))
817 return true;
818 CHECK_NO_VAR (TYPE_CACHED_VALUES (t));
819 CHECK_VAR (TYPE_SIZE (t));
820 CHECK_VAR (TYPE_SIZE_UNIT (t));
821 CHECK_NO_VAR (TYPE_ATTRIBUTES (t));
822 CHECK_NO_VAR (TYPE_NAME (t));
824 CHECK_VAR (TYPE_MINVAL (t));
825 CHECK_VAR (TYPE_MAXVAL (t));
827 /* Accessor is for derived node types only. */
828 CHECK_NO_VAR (t->type_non_common.binfo);
830 CHECK_VAR (TYPE_CONTEXT (t));
831 CHECK_NO_VAR (TYPE_CANONICAL (t));
832 CHECK_NO_VAR (TYPE_MAIN_VARIANT (t));
833 CHECK_NO_VAR (TYPE_NEXT_VARIANT (t));
834 return false;
837 /* Check presence of pointers to decls in fields of a BINFO T. */
839 static bool
840 mentions_vars_p_binfo (tree t)
842 unsigned HOST_WIDE_INT i, n;
844 if (mentions_vars_p_common (t))
845 return true;
846 CHECK_VAR (BINFO_VTABLE (t));
847 CHECK_NO_VAR (BINFO_OFFSET (t));
848 CHECK_NO_VAR (BINFO_VIRTUALS (t));
849 CHECK_NO_VAR (BINFO_VPTR_FIELD (t));
850 n = vec_safe_length (BINFO_BASE_ACCESSES (t));
851 for (i = 0; i < n; i++)
852 CHECK_NO_VAR (BINFO_BASE_ACCESS (t, i));
853 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
854 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
855 n = BINFO_N_BASE_BINFOS (t);
856 for (i = 0; i < n; i++)
857 CHECK_NO_VAR (BINFO_BASE_BINFO (t, i));
858 return false;
861 /* Check presence of pointers to decls in fields of a CONSTRUCTOR T. */
863 static bool
864 mentions_vars_p_constructor (tree t)
866 unsigned HOST_WIDE_INT idx;
867 constructor_elt *ce;
869 if (mentions_vars_p_typed (t))
870 return true;
872 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (t), idx, &ce); idx++)
874 CHECK_NO_VAR (ce->index);
875 CHECK_VAR (ce->value);
877 return false;
880 /* Check presence of pointers to decls in fields of an expression tree T. */
882 static bool
883 mentions_vars_p_expr (tree t)
885 int i;
886 if (mentions_vars_p_typed (t))
887 return true;
888 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
889 CHECK_VAR (TREE_OPERAND (t, i));
890 return false;
893 /* Check presence of pointers to decls in fields of an OMP_CLAUSE T. */
895 static bool
896 mentions_vars_p_omp_clause (tree t)
898 int i;
899 if (mentions_vars_p_common (t))
900 return true;
901 for (i = omp_clause_num_ops[OMP_CLAUSE_CODE (t)] - 1; i >= 0; --i)
902 CHECK_VAR (OMP_CLAUSE_OPERAND (t, i));
903 return false;
906 /* Check presence of pointers to decls that needs later fixup in T. */
908 static bool
909 mentions_vars_p (tree t)
911 switch (TREE_CODE (t))
913 case IDENTIFIER_NODE:
914 break;
916 case TREE_LIST:
917 CHECK_VAR (TREE_VALUE (t));
918 CHECK_VAR (TREE_PURPOSE (t));
919 CHECK_NO_VAR (TREE_CHAIN (t));
920 break;
922 case FIELD_DECL:
923 return mentions_vars_p_field_decl (t);
925 case LABEL_DECL:
926 case CONST_DECL:
927 case PARM_DECL:
928 case RESULT_DECL:
929 case IMPORTED_DECL:
930 case NAMESPACE_DECL:
931 case NAMELIST_DECL:
932 return mentions_vars_p_decl_common (t);
934 case VAR_DECL:
935 return mentions_vars_p_decl_with_vis (t);
937 case TYPE_DECL:
938 return mentions_vars_p_decl_non_common (t);
940 case FUNCTION_DECL:
941 return mentions_vars_p_function (t);
943 case TREE_BINFO:
944 return mentions_vars_p_binfo (t);
946 case PLACEHOLDER_EXPR:
947 return mentions_vars_p_common (t);
949 case BLOCK:
950 case TRANSLATION_UNIT_DECL:
951 case OPTIMIZATION_NODE:
952 case TARGET_OPTION_NODE:
953 break;
955 case CONSTRUCTOR:
956 return mentions_vars_p_constructor (t);
958 case OMP_CLAUSE:
959 return mentions_vars_p_omp_clause (t);
961 default:
962 if (TYPE_P (t))
964 if (mentions_vars_p_type (t))
965 return true;
967 else if (EXPR_P (t))
969 if (mentions_vars_p_expr (t))
970 return true;
972 else if (CONSTANT_CLASS_P (t))
973 CHECK_NO_VAR (TREE_TYPE (t));
974 else
975 gcc_unreachable ();
977 return false;
981 /* Return the resolution for the decl with index INDEX from DATA_IN. */
983 static enum ld_plugin_symbol_resolution
984 get_resolution (struct data_in *data_in, unsigned index)
986 if (data_in->globals_resolution.exists ())
988 ld_plugin_symbol_resolution_t ret;
989 /* We can have references to not emitted functions in
990 DECL_FUNCTION_PERSONALITY at least. So we can and have
991 to indeed return LDPR_UNKNOWN in some cases. */
992 if (data_in->globals_resolution.length () <= index)
993 return LDPR_UNKNOWN;
994 ret = data_in->globals_resolution[index];
995 return ret;
997 else
998 /* Delay resolution finding until decl merging. */
999 return LDPR_UNKNOWN;
1002 /* We need to record resolutions until symbol table is read. */
1003 static void
1004 register_resolution (struct lto_file_decl_data *file_data, tree decl,
1005 enum ld_plugin_symbol_resolution resolution)
1007 if (resolution == LDPR_UNKNOWN)
1008 return;
1009 if (!file_data->resolution_map)
1010 file_data->resolution_map
1011 = new hash_map<tree, ld_plugin_symbol_resolution>;
1012 file_data->resolution_map->put (decl, resolution);
1015 /* Register DECL with the global symbol table and change its
1016 name if necessary to avoid name clashes for static globals across
1017 different files. */
1019 static void
1020 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl,
1021 unsigned ix)
1023 tree context;
1025 /* Variable has file scope, not local. */
1026 if (!TREE_PUBLIC (decl)
1027 && !((context = decl_function_context (decl))
1028 && auto_var_in_fn_p (decl, context)))
1029 rest_of_decl_compilation (decl, 1, 0);
1031 /* If this variable has already been declared, queue the
1032 declaration for merging. */
1033 if (TREE_PUBLIC (decl))
1034 register_resolution (data_in->file_data,
1035 decl, get_resolution (data_in, ix));
1039 /* Register DECL with the global symbol table and change its
1040 name if necessary to avoid name clashes for static globals across
1041 different files. DATA_IN contains descriptors and tables for the
1042 file being read. */
1044 static void
1045 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl,
1046 unsigned ix)
1048 /* If this variable has already been declared, queue the
1049 declaration for merging. */
1050 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT (decl))
1051 register_resolution (data_in->file_data,
1052 decl, get_resolution (data_in, ix));
1056 /* For the type T re-materialize it in the type variant list and
1057 the pointer/reference-to chains. */
1059 static void
1060 lto_fixup_prevailing_type (tree t)
1062 /* The following re-creates proper variant lists while fixing up
1063 the variant leaders. We do not stream TYPE_NEXT_VARIANT so the
1064 variant list state before fixup is broken. */
1066 /* If we are not our own variant leader link us into our new leaders
1067 variant list. */
1068 if (TYPE_MAIN_VARIANT (t) != t)
1070 tree mv = TYPE_MAIN_VARIANT (t);
1071 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
1072 TYPE_NEXT_VARIANT (mv) = t;
1075 /* The following reconstructs the pointer chains
1076 of the new pointed-to type if we are a main variant. We do
1077 not stream those so they are broken before fixup. */
1078 if (TREE_CODE (t) == POINTER_TYPE
1079 && TYPE_MAIN_VARIANT (t) == t)
1081 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (TREE_TYPE (t));
1082 TYPE_POINTER_TO (TREE_TYPE (t)) = t;
1084 else if (TREE_CODE (t) == REFERENCE_TYPE
1085 && TYPE_MAIN_VARIANT (t) == t)
1087 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (TREE_TYPE (t));
1088 TYPE_REFERENCE_TO (TREE_TYPE (t)) = t;
1093 /* We keep prevailing tree SCCs in a hashtable with manual collision
1094 handling (in case all hashes compare the same) and keep the colliding
1095 entries in the tree_scc->next chain. */
1097 struct tree_scc
1099 tree_scc *next;
1100 /* Hash of the whole SCC. */
1101 hashval_t hash;
1102 /* Number of trees in the SCC. */
1103 unsigned len;
1104 /* Number of possible entries into the SCC (tree nodes [0..entry_len-1]
1105 which share the same individual tree hash). */
1106 unsigned entry_len;
1107 /* The members of the SCC.
1108 We only need to remember the first entry node candidate for prevailing
1109 SCCs (but of course have access to all entries for SCCs we are
1110 processing).
1111 ??? For prevailing SCCs we really only need hash and the first
1112 entry candidate, but that's too awkward to implement. */
1113 tree entries[1];
1116 struct tree_scc_hasher : typed_noop_remove <tree_scc>
1118 typedef tree_scc value_type;
1119 typedef tree_scc compare_type;
1120 static inline hashval_t hash (const value_type *);
1121 static inline bool equal (const value_type *, const compare_type *);
1124 hashval_t
1125 tree_scc_hasher::hash (const value_type *scc)
1127 return scc->hash;
1130 bool
1131 tree_scc_hasher::equal (const value_type *scc1, const compare_type *scc2)
1133 if (scc1->hash != scc2->hash
1134 || scc1->len != scc2->len
1135 || scc1->entry_len != scc2->entry_len)
1136 return false;
1137 return true;
1140 static hash_table<tree_scc_hasher> *tree_scc_hash;
1141 static struct obstack tree_scc_hash_obstack;
1143 static unsigned long num_merged_types;
1144 static unsigned long num_prevailing_types;
1145 static unsigned long num_type_scc_trees;
1146 static unsigned long total_scc_size;
1147 static unsigned long num_sccs_read;
1148 static unsigned long total_scc_size_merged;
1149 static unsigned long num_sccs_merged;
1150 static unsigned long num_scc_compares;
1151 static unsigned long num_scc_compare_collisions;
1154 /* Compare the two entries T1 and T2 of two SCCs that are possibly equal,
1155 recursing through in-SCC tree edges. Returns true if the SCCs entered
1156 through T1 and T2 are equal and fills in *MAP with the pairs of
1157 SCC entries we visited, starting with (*MAP)[0] = T1 and (*MAP)[1] = T2. */
1159 static bool
1160 compare_tree_sccs_1 (tree t1, tree t2, tree **map)
1162 enum tree_code code;
1164 /* Mark already visited nodes. */
1165 TREE_ASM_WRITTEN (t2) = 1;
1167 /* Push the pair onto map. */
1168 (*map)[0] = t1;
1169 (*map)[1] = t2;
1170 *map = *map + 2;
1172 /* Compare value-fields. */
1173 #define compare_values(X) \
1174 do { \
1175 if (X(t1) != X(t2)) \
1176 return false; \
1177 } while (0)
1179 compare_values (TREE_CODE);
1180 code = TREE_CODE (t1);
1182 if (!TYPE_P (t1))
1184 compare_values (TREE_SIDE_EFFECTS);
1185 compare_values (TREE_CONSTANT);
1186 compare_values (TREE_READONLY);
1187 compare_values (TREE_PUBLIC);
1189 compare_values (TREE_ADDRESSABLE);
1190 compare_values (TREE_THIS_VOLATILE);
1191 if (DECL_P (t1))
1192 compare_values (DECL_UNSIGNED);
1193 else if (TYPE_P (t1))
1194 compare_values (TYPE_UNSIGNED);
1195 if (TYPE_P (t1))
1196 compare_values (TYPE_ARTIFICIAL);
1197 else
1198 compare_values (TREE_NO_WARNING);
1199 compare_values (TREE_NOTHROW);
1200 compare_values (TREE_STATIC);
1201 if (code != TREE_BINFO)
1202 compare_values (TREE_PRIVATE);
1203 compare_values (TREE_PROTECTED);
1204 compare_values (TREE_DEPRECATED);
1205 if (TYPE_P (t1))
1207 compare_values (TYPE_SATURATING);
1208 compare_values (TYPE_ADDR_SPACE);
1210 else if (code == SSA_NAME)
1211 compare_values (SSA_NAME_IS_DEFAULT_DEF);
1213 if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
1215 if (!wi::eq_p (t1, t2))
1216 return false;
1219 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1221 /* ??? No suitable compare routine available. */
1222 REAL_VALUE_TYPE r1 = TREE_REAL_CST (t1);
1223 REAL_VALUE_TYPE r2 = TREE_REAL_CST (t2);
1224 if (r1.cl != r2.cl
1225 || r1.decimal != r2.decimal
1226 || r1.sign != r2.sign
1227 || r1.signalling != r2.signalling
1228 || r1.canonical != r2.canonical
1229 || r1.uexp != r2.uexp)
1230 return false;
1231 for (unsigned i = 0; i < SIGSZ; ++i)
1232 if (r1.sig[i] != r2.sig[i])
1233 return false;
1236 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1237 if (!fixed_compare (EQ_EXPR,
1238 TREE_FIXED_CST_PTR (t1), TREE_FIXED_CST_PTR (t2)))
1239 return false;
1242 /* We don't want to compare locations, so there is nothing do compare
1243 for TS_DECL_MINIMAL. */
1245 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1247 compare_values (DECL_MODE);
1248 compare_values (DECL_NONLOCAL);
1249 compare_values (DECL_VIRTUAL_P);
1250 compare_values (DECL_IGNORED_P);
1251 compare_values (DECL_ABSTRACT);
1252 compare_values (DECL_ARTIFICIAL);
1253 compare_values (DECL_USER_ALIGN);
1254 compare_values (DECL_PRESERVE_P);
1255 compare_values (DECL_EXTERNAL);
1256 compare_values (DECL_GIMPLE_REG_P);
1257 compare_values (DECL_ALIGN);
1258 if (code == LABEL_DECL)
1260 compare_values (EH_LANDING_PAD_NR);
1261 compare_values (LABEL_DECL_UID);
1263 else if (code == FIELD_DECL)
1265 compare_values (DECL_PACKED);
1266 compare_values (DECL_NONADDRESSABLE_P);
1267 compare_values (DECL_OFFSET_ALIGN);
1269 else if (code == VAR_DECL)
1271 compare_values (DECL_HAS_DEBUG_EXPR_P);
1272 compare_values (DECL_NONLOCAL_FRAME);
1274 if (code == RESULT_DECL
1275 || code == PARM_DECL
1276 || code == VAR_DECL)
1278 compare_values (DECL_BY_REFERENCE);
1279 if (code == VAR_DECL
1280 || code == PARM_DECL)
1281 compare_values (DECL_HAS_VALUE_EXPR_P);
1285 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1286 compare_values (DECL_REGISTER);
1288 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1290 compare_values (DECL_COMMON);
1291 compare_values (DECL_DLLIMPORT_P);
1292 compare_values (DECL_WEAK);
1293 compare_values (DECL_SEEN_IN_BIND_EXPR_P);
1294 compare_values (DECL_COMDAT);
1295 compare_values (DECL_VISIBILITY);
1296 compare_values (DECL_VISIBILITY_SPECIFIED);
1297 if (code == VAR_DECL)
1299 compare_values (DECL_HARD_REGISTER);
1300 /* DECL_IN_TEXT_SECTION is set during final asm output only. */
1301 compare_values (DECL_IN_CONSTANT_POOL);
1305 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1307 compare_values (DECL_BUILT_IN_CLASS);
1308 compare_values (DECL_STATIC_CONSTRUCTOR);
1309 compare_values (DECL_STATIC_DESTRUCTOR);
1310 compare_values (DECL_UNINLINABLE);
1311 compare_values (DECL_POSSIBLY_INLINED);
1312 compare_values (DECL_IS_NOVOPS);
1313 compare_values (DECL_IS_RETURNS_TWICE);
1314 compare_values (DECL_IS_MALLOC);
1315 compare_values (DECL_IS_OPERATOR_NEW);
1316 compare_values (DECL_DECLARED_INLINE_P);
1317 compare_values (DECL_STATIC_CHAIN);
1318 compare_values (DECL_NO_INLINE_WARNING_P);
1319 compare_values (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT);
1320 compare_values (DECL_NO_LIMIT_STACK);
1321 compare_values (DECL_DISREGARD_INLINE_LIMITS);
1322 compare_values (DECL_PURE_P);
1323 compare_values (DECL_LOOPING_CONST_OR_PURE_P);
1324 compare_values (DECL_FINAL_P);
1325 compare_values (DECL_CXX_CONSTRUCTOR_P);
1326 compare_values (DECL_CXX_DESTRUCTOR_P);
1327 if (DECL_BUILT_IN_CLASS (t1) != NOT_BUILT_IN)
1328 compare_values (DECL_FUNCTION_CODE);
1331 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1333 compare_values (TYPE_MODE);
1334 compare_values (TYPE_STRING_FLAG);
1335 compare_values (TYPE_NO_FORCE_BLK);
1336 compare_values (TYPE_NEEDS_CONSTRUCTING);
1337 if (RECORD_OR_UNION_TYPE_P (t1))
1339 compare_values (TYPE_TRANSPARENT_AGGR);
1340 compare_values (TYPE_FINAL_P);
1342 else if (code == ARRAY_TYPE)
1343 compare_values (TYPE_NONALIASED_COMPONENT);
1344 compare_values (TYPE_PACKED);
1345 compare_values (TYPE_RESTRICT);
1346 compare_values (TYPE_USER_ALIGN);
1347 compare_values (TYPE_READONLY);
1348 compare_values (TYPE_PRECISION);
1349 compare_values (TYPE_ALIGN);
1350 compare_values (TYPE_ALIAS_SET);
1353 /* We don't want to compare locations, so there is nothing do compare
1354 for TS_EXP. */
1356 /* BLOCKs are function local and we don't merge anything there, so
1357 simply refuse to merge. */
1358 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1359 return false;
1361 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1362 if (strcmp (TRANSLATION_UNIT_LANGUAGE (t1),
1363 TRANSLATION_UNIT_LANGUAGE (t2)) != 0)
1364 return false;
1366 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
1367 gcc_unreachable ();
1369 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
1370 if (memcmp (TREE_OPTIMIZATION (t1), TREE_OPTIMIZATION (t2),
1371 sizeof (struct cl_optimization)) != 0)
1372 return false;
1374 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1375 if (vec_safe_length (BINFO_BASE_ACCESSES (t1))
1376 != vec_safe_length (BINFO_BASE_ACCESSES (t2)))
1377 return false;
1379 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1380 compare_values (CONSTRUCTOR_NELTS);
1382 if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1383 if (IDENTIFIER_LENGTH (t1) != IDENTIFIER_LENGTH (t2)
1384 || memcmp (IDENTIFIER_POINTER (t1), IDENTIFIER_POINTER (t2),
1385 IDENTIFIER_LENGTH (t1)) != 0)
1386 return false;
1388 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1389 if (TREE_STRING_LENGTH (t1) != TREE_STRING_LENGTH (t2)
1390 || memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1391 TREE_STRING_LENGTH (t1)) != 0)
1392 return false;
1394 if (code == OMP_CLAUSE)
1396 compare_values (OMP_CLAUSE_CODE);
1397 switch (OMP_CLAUSE_CODE (t1))
1399 case OMP_CLAUSE_DEFAULT:
1400 compare_values (OMP_CLAUSE_DEFAULT_KIND);
1401 break;
1402 case OMP_CLAUSE_SCHEDULE:
1403 compare_values (OMP_CLAUSE_SCHEDULE_KIND);
1404 break;
1405 case OMP_CLAUSE_DEPEND:
1406 compare_values (OMP_CLAUSE_DEPEND_KIND);
1407 break;
1408 case OMP_CLAUSE_MAP:
1409 compare_values (OMP_CLAUSE_MAP_KIND);
1410 break;
1411 case OMP_CLAUSE_PROC_BIND:
1412 compare_values (OMP_CLAUSE_PROC_BIND_KIND);
1413 break;
1414 case OMP_CLAUSE_REDUCTION:
1415 compare_values (OMP_CLAUSE_REDUCTION_CODE);
1416 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_INIT);
1417 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE);
1418 break;
1419 default:
1420 break;
1424 #undef compare_values
1427 /* Compare pointer fields. */
1429 /* Recurse. Search & Replaced from DFS_write_tree_body.
1430 Folding the early checks into the compare_tree_edges recursion
1431 macro makes debugging way quicker as you are able to break on
1432 compare_tree_sccs_1 and simply finish until a call returns false
1433 to spot the SCC members with the difference. */
1434 #define compare_tree_edges(E1, E2) \
1435 do { \
1436 tree t1_ = (E1), t2_ = (E2); \
1437 if (t1_ != t2_ \
1438 && (!t1_ || !t2_ \
1439 || !TREE_VISITED (t2_) \
1440 || (!TREE_ASM_WRITTEN (t2_) \
1441 && !compare_tree_sccs_1 (t1_, t2_, map)))) \
1442 return false; \
1443 /* Only non-NULL trees outside of the SCC may compare equal. */ \
1444 gcc_checking_assert (t1_ != t2_ || (!t2_ || !TREE_VISITED (t2_))); \
1445 } while (0)
1447 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
1449 if (code != IDENTIFIER_NODE)
1450 compare_tree_edges (TREE_TYPE (t1), TREE_TYPE (t2));
1453 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1455 unsigned i;
1456 /* Note that the number of elements for EXPR has already been emitted
1457 in EXPR's header (see streamer_write_tree_header). */
1458 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
1459 compare_tree_edges (VECTOR_CST_ELT (t1, i), VECTOR_CST_ELT (t2, i));
1462 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
1464 compare_tree_edges (TREE_REALPART (t1), TREE_REALPART (t2));
1465 compare_tree_edges (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
1468 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
1470 compare_tree_edges (DECL_NAME (t1), DECL_NAME (t2));
1471 /* ??? Global decls from different TUs have non-matching
1472 TRANSLATION_UNIT_DECLs. Only consider a small set of
1473 decls equivalent, we should not end up merging others. */
1474 if ((code == TYPE_DECL
1475 || code == NAMESPACE_DECL
1476 || code == IMPORTED_DECL
1477 || code == CONST_DECL
1478 || (VAR_OR_FUNCTION_DECL_P (t1)
1479 && (TREE_PUBLIC (t1) || DECL_EXTERNAL (t1))))
1480 && DECL_FILE_SCOPE_P (t1) && DECL_FILE_SCOPE_P (t2))
1482 else
1483 compare_tree_edges (DECL_CONTEXT (t1), DECL_CONTEXT (t2));
1486 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1488 compare_tree_edges (DECL_SIZE (t1), DECL_SIZE (t2));
1489 compare_tree_edges (DECL_SIZE_UNIT (t1), DECL_SIZE_UNIT (t2));
1490 compare_tree_edges (DECL_ATTRIBUTES (t1), DECL_ATTRIBUTES (t2));
1491 if ((code == VAR_DECL
1492 || code == PARM_DECL)
1493 && DECL_HAS_VALUE_EXPR_P (t1))
1494 compare_tree_edges (DECL_VALUE_EXPR (t1), DECL_VALUE_EXPR (t2));
1495 if (code == VAR_DECL
1496 && DECL_HAS_DEBUG_EXPR_P (t1))
1497 compare_tree_edges (DECL_DEBUG_EXPR (t1), DECL_DEBUG_EXPR (t2));
1498 /* LTO specific edges. */
1499 if (code != FUNCTION_DECL
1500 && code != TRANSLATION_UNIT_DECL)
1501 compare_tree_edges (DECL_INITIAL (t1), DECL_INITIAL (t2));
1504 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
1506 if (code == FUNCTION_DECL)
1508 tree a1, a2;
1509 for (a1 = DECL_ARGUMENTS (t1), a2 = DECL_ARGUMENTS (t2);
1510 a1 || a2;
1511 a1 = TREE_CHAIN (a1), a2 = TREE_CHAIN (a2))
1512 compare_tree_edges (a1, a2);
1513 compare_tree_edges (DECL_RESULT (t1), DECL_RESULT (t2));
1515 else if (code == TYPE_DECL)
1516 compare_tree_edges (DECL_ORIGINAL_TYPE (t1), DECL_ORIGINAL_TYPE (t2));
1519 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1521 /* Make sure we don't inadvertently set the assembler name. */
1522 if (DECL_ASSEMBLER_NAME_SET_P (t1))
1523 compare_tree_edges (DECL_ASSEMBLER_NAME (t1),
1524 DECL_ASSEMBLER_NAME (t2));
1527 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1529 compare_tree_edges (DECL_FIELD_OFFSET (t1), DECL_FIELD_OFFSET (t2));
1530 compare_tree_edges (DECL_BIT_FIELD_TYPE (t1), DECL_BIT_FIELD_TYPE (t2));
1531 compare_tree_edges (DECL_BIT_FIELD_REPRESENTATIVE (t1),
1532 DECL_BIT_FIELD_REPRESENTATIVE (t2));
1533 compare_tree_edges (DECL_FIELD_BIT_OFFSET (t1),
1534 DECL_FIELD_BIT_OFFSET (t2));
1535 compare_tree_edges (DECL_FCONTEXT (t1), DECL_FCONTEXT (t2));
1538 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1540 compare_tree_edges (DECL_FUNCTION_PERSONALITY (t1),
1541 DECL_FUNCTION_PERSONALITY (t2));
1542 compare_tree_edges (DECL_VINDEX (t1), DECL_VINDEX (t2));
1543 /* DECL_FUNCTION_SPECIFIC_TARGET is not yet created. We compare
1544 the attribute list instead. */
1545 compare_tree_edges (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t1),
1546 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t2));
1549 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1551 compare_tree_edges (TYPE_SIZE (t1), TYPE_SIZE (t2));
1552 compare_tree_edges (TYPE_SIZE_UNIT (t1), TYPE_SIZE_UNIT (t2));
1553 compare_tree_edges (TYPE_ATTRIBUTES (t1), TYPE_ATTRIBUTES (t2));
1554 compare_tree_edges (TYPE_NAME (t1), TYPE_NAME (t2));
1555 /* Do not compare TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
1556 reconstructed during fixup. */
1557 /* Do not compare TYPE_NEXT_VARIANT, we reconstruct the variant lists
1558 during fixup. */
1559 compare_tree_edges (TYPE_MAIN_VARIANT (t1), TYPE_MAIN_VARIANT (t2));
1560 /* ??? Global types from different TUs have non-matching
1561 TRANSLATION_UNIT_DECLs. Still merge them if they are otherwise
1562 equal. */
1563 if (TYPE_FILE_SCOPE_P (t1) && TYPE_FILE_SCOPE_P (t2))
1565 else
1566 compare_tree_edges (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
1567 /* TYPE_CANONICAL is re-computed during type merging, so do not
1568 compare it here. */
1569 compare_tree_edges (TYPE_STUB_DECL (t1), TYPE_STUB_DECL (t2));
1572 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1574 if (code == ENUMERAL_TYPE)
1575 compare_tree_edges (TYPE_VALUES (t1), TYPE_VALUES (t2));
1576 else if (code == ARRAY_TYPE)
1577 compare_tree_edges (TYPE_DOMAIN (t1), TYPE_DOMAIN (t2));
1578 else if (RECORD_OR_UNION_TYPE_P (t1))
1580 tree f1, f2;
1581 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
1582 f1 || f2;
1583 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
1584 compare_tree_edges (f1, f2);
1585 compare_tree_edges (TYPE_BINFO (t1), TYPE_BINFO (t2));
1587 else if (code == FUNCTION_TYPE
1588 || code == METHOD_TYPE)
1589 compare_tree_edges (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2));
1590 if (!POINTER_TYPE_P (t1))
1591 compare_tree_edges (TYPE_MINVAL (t1), TYPE_MINVAL (t2));
1592 compare_tree_edges (TYPE_MAXVAL (t1), TYPE_MAXVAL (t2));
1595 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1597 compare_tree_edges (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1598 compare_tree_edges (TREE_VALUE (t1), TREE_VALUE (t2));
1599 compare_tree_edges (TREE_CHAIN (t1), TREE_CHAIN (t2));
1602 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1603 for (int i = 0; i < TREE_VEC_LENGTH (t1); i++)
1604 compare_tree_edges (TREE_VEC_ELT (t1, i), TREE_VEC_ELT (t2, i));
1606 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1608 for (int i = 0; i < TREE_OPERAND_LENGTH (t1); i++)
1609 compare_tree_edges (TREE_OPERAND (t1, i),
1610 TREE_OPERAND (t2, i));
1612 /* BLOCKs are function local and we don't merge anything there. */
1613 if (TREE_BLOCK (t1) || TREE_BLOCK (t2))
1614 return false;
1617 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1619 unsigned i;
1620 tree t;
1621 /* Lengths have already been compared above. */
1622 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t1), i, t)
1623 compare_tree_edges (t, BINFO_BASE_BINFO (t2, i));
1624 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (t1), i, t)
1625 compare_tree_edges (t, BINFO_BASE_ACCESS (t2, i));
1626 compare_tree_edges (BINFO_OFFSET (t1), BINFO_OFFSET (t2));
1627 compare_tree_edges (BINFO_VTABLE (t1), BINFO_VTABLE (t2));
1628 compare_tree_edges (BINFO_VPTR_FIELD (t1), BINFO_VPTR_FIELD (t2));
1629 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1630 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
1633 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1635 unsigned i;
1636 tree index, value;
1637 /* Lengths have already been compared above. */
1638 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, index, value)
1640 compare_tree_edges (index, CONSTRUCTOR_ELT (t2, i)->index);
1641 compare_tree_edges (value, CONSTRUCTOR_ELT (t2, i)->value);
1645 if (code == OMP_CLAUSE)
1647 int i;
1649 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t1)]; i++)
1650 compare_tree_edges (OMP_CLAUSE_OPERAND (t1, i),
1651 OMP_CLAUSE_OPERAND (t2, i));
1652 compare_tree_edges (OMP_CLAUSE_CHAIN (t1), OMP_CLAUSE_CHAIN (t2));
1655 #undef compare_tree_edges
1657 return true;
1660 /* Compare the tree scc SCC to the prevailing candidate PSCC, filling
1661 out MAP if they are equal. */
1663 static bool
1664 compare_tree_sccs (tree_scc *pscc, tree_scc *scc,
1665 tree *map)
1667 /* Assume SCC entry hashes are sorted after their cardinality. Which
1668 means we can simply take the first n-tuple of equal hashes
1669 (which is recorded as entry_len) and do n SCC entry candidate
1670 comparisons. */
1671 for (unsigned i = 0; i < pscc->entry_len; ++i)
1673 tree *mapp = map;
1674 num_scc_compare_collisions++;
1675 if (compare_tree_sccs_1 (pscc->entries[0], scc->entries[i], &mapp))
1677 /* Equal - no need to reset TREE_VISITED or TREE_ASM_WRITTEN
1678 on the scc as all trees will be freed. */
1679 return true;
1681 /* Reset TREE_ASM_WRITTEN on scc for the next compare or in case
1682 the SCC prevails. */
1683 for (unsigned j = 0; j < scc->len; ++j)
1684 TREE_ASM_WRITTEN (scc->entries[j]) = 0;
1687 return false;
1690 /* QSort sort function to sort a map of two pointers after the 2nd
1691 pointer. */
1693 static int
1694 cmp_tree (const void *p1_, const void *p2_)
1696 tree *p1 = (tree *)(const_cast<void *>(p1_));
1697 tree *p2 = (tree *)(const_cast<void *>(p2_));
1698 if (p1[1] == p2[1])
1699 return 0;
1700 return ((uintptr_t)p1[1] < (uintptr_t)p2[1]) ? -1 : 1;
1703 /* Try to unify the SCC with nodes FROM to FROM + LEN in CACHE and
1704 hash value SCC_HASH with an already recorded SCC. Return true if
1705 that was successful, otherwise return false. */
1707 static bool
1708 unify_scc (struct streamer_tree_cache_d *cache, unsigned from,
1709 unsigned len, unsigned scc_entry_len, hashval_t scc_hash)
1711 bool unified_p = false;
1712 tree_scc *scc
1713 = (tree_scc *) alloca (sizeof (tree_scc) + (len - 1) * sizeof (tree));
1714 scc->next = NULL;
1715 scc->hash = scc_hash;
1716 scc->len = len;
1717 scc->entry_len = scc_entry_len;
1718 for (unsigned i = 0; i < len; ++i)
1720 tree t = streamer_tree_cache_get_tree (cache, from + i);
1721 scc->entries[i] = t;
1722 /* Do not merge SCCs with local entities inside them. Also do
1723 not merge TRANSLATION_UNIT_DECLs. */
1724 if (TREE_CODE (t) == TRANSLATION_UNIT_DECL
1725 || (VAR_OR_FUNCTION_DECL_P (t)
1726 && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
1727 || TREE_CODE (t) == LABEL_DECL)
1729 /* Avoid doing any work for these cases and do not worry to
1730 record the SCCs for further merging. */
1731 return false;
1735 /* Look for the list of candidate SCCs to compare against. */
1736 tree_scc **slot;
1737 slot = tree_scc_hash->find_slot_with_hash (scc, scc_hash, INSERT);
1738 if (*slot)
1740 /* Try unifying against each candidate. */
1741 num_scc_compares++;
1743 /* Set TREE_VISITED on the scc so we can easily identify tree nodes
1744 outside of the scc when following tree edges. Make sure
1745 that TREE_ASM_WRITTEN is unset so we can use it as 2nd bit
1746 to track whether we visited the SCC member during the compare.
1747 We cannot use TREE_VISITED on the pscc members as the extended
1748 scc and pscc can overlap. */
1749 for (unsigned i = 0; i < scc->len; ++i)
1751 TREE_VISITED (scc->entries[i]) = 1;
1752 gcc_checking_assert (!TREE_ASM_WRITTEN (scc->entries[i]));
1755 tree *map = XALLOCAVEC (tree, 2 * len);
1756 for (tree_scc *pscc = *slot; pscc; pscc = pscc->next)
1758 if (!compare_tree_sccs (pscc, scc, map))
1759 continue;
1761 /* Found an equal SCC. */
1762 unified_p = true;
1763 num_scc_compare_collisions--;
1764 num_sccs_merged++;
1765 total_scc_size_merged += len;
1767 #ifdef ENABLE_CHECKING
1768 for (unsigned i = 0; i < len; ++i)
1770 tree t = map[2*i+1];
1771 enum tree_code code = TREE_CODE (t);
1772 /* IDENTIFIER_NODEs should be singletons and are merged by the
1773 streamer. The others should be singletons, too, and we
1774 should not merge them in any way. */
1775 gcc_assert (code != TRANSLATION_UNIT_DECL
1776 && code != IDENTIFIER_NODE
1777 && !streamer_handle_as_builtin_p (t));
1779 #endif
1781 /* Fixup the streamer cache with the prevailing nodes according
1782 to the tree node mapping computed by compare_tree_sccs. */
1783 if (len == 1)
1784 streamer_tree_cache_replace_tree (cache, pscc->entries[0], from);
1785 else
1787 tree *map2 = XALLOCAVEC (tree, 2 * len);
1788 for (unsigned i = 0; i < len; ++i)
1790 map2[i*2] = (tree)(uintptr_t)(from + i);
1791 map2[i*2+1] = scc->entries[i];
1793 qsort (map2, len, 2 * sizeof (tree), cmp_tree);
1794 qsort (map, len, 2 * sizeof (tree), cmp_tree);
1795 for (unsigned i = 0; i < len; ++i)
1796 streamer_tree_cache_replace_tree (cache, map[2*i],
1797 (uintptr_t)map2[2*i]);
1800 /* Free the tree nodes from the read SCC. */
1801 for (unsigned i = 0; i < len; ++i)
1803 enum tree_code code;
1804 if (TYPE_P (scc->entries[i]))
1805 num_merged_types++;
1806 code = TREE_CODE (scc->entries[i]);
1807 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1808 vec_free (CONSTRUCTOR_ELTS (scc->entries[i]));
1809 ggc_free (scc->entries[i]);
1812 break;
1815 /* Reset TREE_VISITED if we didn't unify the SCC with another. */
1816 if (!unified_p)
1817 for (unsigned i = 0; i < scc->len; ++i)
1818 TREE_VISITED (scc->entries[i]) = 0;
1821 /* If we didn't unify it to any candidate duplicate the relevant
1822 pieces to permanent storage and link it into the chain. */
1823 if (!unified_p)
1825 tree_scc *pscc
1826 = XOBNEWVAR (&tree_scc_hash_obstack, tree_scc, sizeof (tree_scc));
1827 memcpy (pscc, scc, sizeof (tree_scc));
1828 pscc->next = (*slot);
1829 *slot = pscc;
1831 return unified_p;
1835 /* Read all the symbols from buffer DATA, using descriptors in DECL_DATA.
1836 RESOLUTIONS is the set of symbols picked by the linker (read from the
1837 resolution file when the linker plugin is being used). */
1839 static void
1840 lto_read_decls (struct lto_file_decl_data *decl_data, const void *data,
1841 vec<ld_plugin_symbol_resolution_t> resolutions)
1843 const struct lto_decl_header *header = (const struct lto_decl_header *) data;
1844 const int decl_offset = sizeof (struct lto_decl_header);
1845 const int main_offset = decl_offset + header->decl_state_size;
1846 const int string_offset = main_offset + header->main_size;
1847 struct data_in *data_in;
1848 unsigned int i;
1849 const uint32_t *data_ptr, *data_end;
1850 uint32_t num_decl_states;
1852 lto_input_block ib_main ((const char *) data + main_offset,
1853 header->main_size);
1855 data_in = lto_data_in_create (decl_data, (const char *) data + string_offset,
1856 header->string_size, resolutions);
1858 /* We do not uniquify the pre-loaded cache entries, those are middle-end
1859 internal types that should not be merged. */
1861 /* Read the global declarations and types. */
1862 while (ib_main.p < ib_main.len)
1864 tree t;
1865 unsigned from = data_in->reader_cache->nodes.length ();
1866 /* Read and uniquify SCCs as in the input stream. */
1867 enum LTO_tags tag = streamer_read_record_start (&ib_main);
1868 if (tag == LTO_tree_scc)
1870 unsigned len_;
1871 unsigned scc_entry_len;
1872 hashval_t scc_hash = lto_input_scc (&ib_main, data_in, &len_,
1873 &scc_entry_len);
1874 unsigned len = data_in->reader_cache->nodes.length () - from;
1875 gcc_assert (len == len_);
1877 total_scc_size += len;
1878 num_sccs_read++;
1880 /* We have the special case of size-1 SCCs that are pre-merged
1881 by means of identifier and string sharing for example.
1882 ??? Maybe we should avoid streaming those as SCCs. */
1883 tree first = streamer_tree_cache_get_tree (data_in->reader_cache,
1884 from);
1885 if (len == 1
1886 && (TREE_CODE (first) == IDENTIFIER_NODE
1887 || TREE_CODE (first) == INTEGER_CST
1888 || TREE_CODE (first) == TRANSLATION_UNIT_DECL
1889 || streamer_handle_as_builtin_p (first)))
1890 continue;
1892 /* Try to unify the SCC with already existing ones. */
1893 if (!flag_ltrans
1894 && unify_scc (data_in->reader_cache, from,
1895 len, scc_entry_len, scc_hash))
1896 continue;
1898 bool seen_type = false;
1899 for (unsigned i = 0; i < len; ++i)
1901 tree t = streamer_tree_cache_get_tree (data_in->reader_cache,
1902 from + i);
1903 /* Reconstruct the type variant and pointer-to/reference-to
1904 chains. */
1905 if (TYPE_P (t))
1907 seen_type = true;
1908 num_prevailing_types++;
1909 lto_fixup_prevailing_type (t);
1911 /* Compute the canonical type of all types.
1912 ??? Should be able to assert that !TYPE_CANONICAL. */
1913 if (TYPE_P (t) && !TYPE_CANONICAL (t))
1914 gimple_register_canonical_type (t);
1915 /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its
1916 type which is also member of this SCC. */
1917 if (TREE_CODE (t) == INTEGER_CST
1918 && !TREE_OVERFLOW (t))
1919 cache_integer_cst (t);
1920 /* Re-build DECL_FUNCTION_SPECIFIC_TARGET, we need that
1921 for both WPA and LTRANS stage. */
1922 if (TREE_CODE (t) == FUNCTION_DECL)
1924 tree attr = lookup_attribute ("target", DECL_ATTRIBUTES (t));
1925 if (attr)
1926 targetm.target_option.valid_attribute_p
1927 (t, NULL_TREE, TREE_VALUE (attr), 0);
1929 /* Register TYPE_DECLs with the debuginfo machinery. */
1930 if (!flag_wpa
1931 && TREE_CODE (t) == TYPE_DECL)
1932 debug_hooks->type_decl (t, !DECL_FILE_SCOPE_P (t));
1933 if (!flag_ltrans)
1935 /* Register variables and functions with the
1936 symbol table. */
1937 if (TREE_CODE (t) == VAR_DECL)
1938 lto_register_var_decl_in_symtab (data_in, t, from + i);
1939 else if (TREE_CODE (t) == FUNCTION_DECL
1940 && !DECL_BUILT_IN (t))
1941 lto_register_function_decl_in_symtab (data_in, t, from + i);
1942 /* Scan the tree for references to global functions or
1943 variables and record those for later fixup. */
1944 if (mentions_vars_p (t))
1945 vec_safe_push (tree_with_vars, t);
1948 if (seen_type)
1949 num_type_scc_trees += len;
1951 else
1953 /* Pickle stray references. */
1954 t = lto_input_tree_1 (&ib_main, data_in, tag, 0);
1955 gcc_assert (t && data_in->reader_cache->nodes.length () == from);
1959 /* Read in lto_in_decl_state objects. */
1960 data_ptr = (const uint32_t *) ((const char*) data + decl_offset);
1961 data_end =
1962 (const uint32_t *) ((const char*) data_ptr + header->decl_state_size);
1963 num_decl_states = *data_ptr++;
1965 gcc_assert (num_decl_states > 0);
1966 decl_data->global_decl_state = lto_new_in_decl_state ();
1967 data_ptr = lto_read_in_decl_state (data_in, data_ptr,
1968 decl_data->global_decl_state);
1970 /* Read in per-function decl states and enter them in hash table. */
1971 decl_data->function_decl_states =
1972 htab_create_ggc (37, lto_hash_in_decl_state, lto_eq_in_decl_state, NULL);
1974 for (i = 1; i < num_decl_states; i++)
1976 struct lto_in_decl_state *state = lto_new_in_decl_state ();
1977 void **slot;
1979 data_ptr = lto_read_in_decl_state (data_in, data_ptr, state);
1980 slot = htab_find_slot (decl_data->function_decl_states, state, INSERT);
1981 gcc_assert (*slot == NULL);
1982 *slot = state;
1985 if (data_ptr != data_end)
1986 internal_error ("bytecode stream: garbage at the end of symbols section");
1988 /* Set the current decl state to be the global state. */
1989 decl_data->current_decl_state = decl_data->global_decl_state;
1991 lto_data_in_delete (data_in);
1994 /* Custom version of strtoll, which is not portable. */
1996 static int64_t
1997 lto_parse_hex (const char *p)
1999 int64_t ret = 0;
2001 for (; *p != '\0'; ++p)
2003 char c = *p;
2004 unsigned char part;
2005 ret <<= 4;
2006 if (c >= '0' && c <= '9')
2007 part = c - '0';
2008 else if (c >= 'a' && c <= 'f')
2009 part = c - 'a' + 10;
2010 else if (c >= 'A' && c <= 'F')
2011 part = c - 'A' + 10;
2012 else
2013 internal_error ("could not parse hex number");
2014 ret |= part;
2017 return ret;
2020 /* Read resolution for file named FILE_NAME. The resolution is read from
2021 RESOLUTION. */
2023 static void
2024 lto_resolution_read (splay_tree file_ids, FILE *resolution, lto_file *file)
2026 /* We require that objects in the resolution file are in the same
2027 order as the lto1 command line. */
2028 unsigned int name_len;
2029 char *obj_name;
2030 unsigned int num_symbols;
2031 unsigned int i;
2032 struct lto_file_decl_data *file_data;
2033 splay_tree_node nd = NULL;
2035 if (!resolution)
2036 return;
2038 name_len = strlen (file->filename);
2039 obj_name = XNEWVEC (char, name_len + 1);
2040 fscanf (resolution, " "); /* Read white space. */
2042 fread (obj_name, sizeof (char), name_len, resolution);
2043 obj_name[name_len] = '\0';
2044 if (filename_cmp (obj_name, file->filename) != 0)
2045 internal_error ("unexpected file name %s in linker resolution file. "
2046 "Expected %s", obj_name, file->filename);
2047 if (file->offset != 0)
2049 int t;
2050 char offset_p[17];
2051 int64_t offset;
2052 t = fscanf (resolution, "@0x%16s", offset_p);
2053 if (t != 1)
2054 internal_error ("could not parse file offset");
2055 offset = lto_parse_hex (offset_p);
2056 if (offset != file->offset)
2057 internal_error ("unexpected offset");
2060 free (obj_name);
2062 fscanf (resolution, "%u", &num_symbols);
2064 for (i = 0; i < num_symbols; i++)
2066 int t;
2067 unsigned index;
2068 unsigned HOST_WIDE_INT id;
2069 char r_str[27];
2070 enum ld_plugin_symbol_resolution r = (enum ld_plugin_symbol_resolution) 0;
2071 unsigned int j;
2072 unsigned int lto_resolution_str_len =
2073 sizeof (lto_resolution_str) / sizeof (char *);
2074 res_pair rp;
2076 t = fscanf (resolution, "%u " HOST_WIDE_INT_PRINT_HEX_PURE " %26s %*[^\n]\n",
2077 &index, &id, r_str);
2078 if (t != 3)
2079 internal_error ("invalid line in the resolution file");
2081 for (j = 0; j < lto_resolution_str_len; j++)
2083 if (strcmp (lto_resolution_str[j], r_str) == 0)
2085 r = (enum ld_plugin_symbol_resolution) j;
2086 break;
2089 if (j == lto_resolution_str_len)
2090 internal_error ("invalid resolution in the resolution file");
2092 if (!(nd && lto_splay_tree_id_equal_p (nd->key, id)))
2094 nd = lto_splay_tree_lookup (file_ids, id);
2095 if (nd == NULL)
2096 internal_error ("resolution sub id %wx not in object file", id);
2099 file_data = (struct lto_file_decl_data *)nd->value;
2100 /* The indexes are very sparse. To save memory save them in a compact
2101 format that is only unpacked later when the subfile is processed. */
2102 rp.res = r;
2103 rp.index = index;
2104 file_data->respairs.safe_push (rp);
2105 if (file_data->max_index < index)
2106 file_data->max_index = index;
2110 /* List of file_decl_datas */
2111 struct file_data_list
2113 struct lto_file_decl_data *first, *last;
2116 /* Is the name for a id'ed LTO section? */
2118 static int
2119 lto_section_with_id (const char *name, unsigned HOST_WIDE_INT *id)
2121 const char *s;
2123 if (strncmp (name, LTO_SECTION_NAME_PREFIX, strlen (LTO_SECTION_NAME_PREFIX)))
2124 return 0;
2125 s = strrchr (name, '.');
2126 return s && sscanf (s, "." HOST_WIDE_INT_PRINT_HEX_PURE, id) == 1;
2129 /* Create file_data of each sub file id */
2131 static int
2132 create_subid_section_table (struct lto_section_slot *ls, splay_tree file_ids,
2133 struct file_data_list *list)
2135 struct lto_section_slot s_slot, *new_slot;
2136 unsigned HOST_WIDE_INT id;
2137 splay_tree_node nd;
2138 void **hash_slot;
2139 char *new_name;
2140 struct lto_file_decl_data *file_data;
2142 if (!lto_section_with_id (ls->name, &id))
2143 return 1;
2145 /* Find hash table of sub module id */
2146 nd = lto_splay_tree_lookup (file_ids, id);
2147 if (nd != NULL)
2149 file_data = (struct lto_file_decl_data *)nd->value;
2151 else
2153 file_data = ggc_alloc<lto_file_decl_data> ();
2154 memset(file_data, 0, sizeof (struct lto_file_decl_data));
2155 file_data->id = id;
2156 file_data->section_hash_table = lto_obj_create_section_hash_table ();;
2157 lto_splay_tree_insert (file_ids, id, file_data);
2159 /* Maintain list in linker order */
2160 if (!list->first)
2161 list->first = file_data;
2162 if (list->last)
2163 list->last->next = file_data;
2164 list->last = file_data;
2167 /* Copy section into sub module hash table */
2168 new_name = XDUPVEC (char, ls->name, strlen (ls->name) + 1);
2169 s_slot.name = new_name;
2170 hash_slot = htab_find_slot (file_data->section_hash_table, &s_slot, INSERT);
2171 gcc_assert (*hash_slot == NULL);
2173 new_slot = XDUP (struct lto_section_slot, ls);
2174 new_slot->name = new_name;
2175 *hash_slot = new_slot;
2176 return 1;
2179 /* Read declarations and other initializations for a FILE_DATA. */
2181 static void
2182 lto_file_finalize (struct lto_file_decl_data *file_data, lto_file *file)
2184 const char *data;
2185 size_t len;
2186 vec<ld_plugin_symbol_resolution_t>
2187 resolutions = vNULL;
2188 int i;
2189 res_pair *rp;
2191 /* Create vector for fast access of resolution. We do this lazily
2192 to save memory. */
2193 resolutions.safe_grow_cleared (file_data->max_index + 1);
2194 for (i = 0; file_data->respairs.iterate (i, &rp); i++)
2195 resolutions[rp->index] = rp->res;
2196 file_data->respairs.release ();
2198 file_data->renaming_hash_table = lto_create_renaming_table ();
2199 file_data->file_name = file->filename;
2200 data = lto_get_section_data (file_data, LTO_section_decls, NULL, &len);
2201 if (data == NULL)
2203 internal_error ("cannot read LTO decls from %s", file_data->file_name);
2204 return;
2206 /* Frees resolutions */
2207 lto_read_decls (file_data, data, resolutions);
2208 lto_free_section_data (file_data, LTO_section_decls, NULL, data, len);
2211 /* Finalize FILE_DATA in FILE and increase COUNT. */
2213 static int
2214 lto_create_files_from_ids (lto_file *file, struct lto_file_decl_data *file_data,
2215 int *count)
2217 lto_file_finalize (file_data, file);
2218 if (symtab->dump_file)
2219 fprintf (symtab->dump_file,
2220 "Creating file %s with sub id " HOST_WIDE_INT_PRINT_HEX "\n",
2221 file_data->file_name, file_data->id);
2222 (*count)++;
2223 return 0;
2226 /* Generate a TREE representation for all types and external decls
2227 entities in FILE.
2229 Read all of the globals out of the file. Then read the cgraph
2230 and process the .o index into the cgraph nodes so that it can open
2231 the .o file to load the functions and ipa information. */
2233 static struct lto_file_decl_data *
2234 lto_file_read (lto_file *file, FILE *resolution_file, int *count)
2236 struct lto_file_decl_data *file_data = NULL;
2237 splay_tree file_ids;
2238 htab_t section_hash_table;
2239 struct lto_section_slot *section;
2240 struct file_data_list file_list;
2241 struct lto_section_list section_list;
2243 memset (&section_list, 0, sizeof (struct lto_section_list));
2244 section_hash_table = lto_obj_build_section_table (file, &section_list);
2246 /* Find all sub modules in the object and put their sections into new hash
2247 tables in a splay tree. */
2248 file_ids = lto_splay_tree_new ();
2249 memset (&file_list, 0, sizeof (struct file_data_list));
2250 for (section = section_list.first; section != NULL; section = section->next)
2251 create_subid_section_table (section, file_ids, &file_list);
2253 /* Add resolutions to file ids */
2254 lto_resolution_read (file_ids, resolution_file, file);
2256 /* Finalize each lto file for each submodule in the merged object */
2257 for (file_data = file_list.first; file_data != NULL; file_data = file_data->next)
2258 lto_create_files_from_ids (file, file_data, count);
2260 splay_tree_delete (file_ids);
2261 htab_delete (section_hash_table);
2263 return file_list.first;
2266 #if HAVE_MMAP_FILE && HAVE_SYSCONF && defined _SC_PAGE_SIZE
2267 #define LTO_MMAP_IO 1
2268 #endif
2270 #if LTO_MMAP_IO
2271 /* Page size of machine is used for mmap and munmap calls. */
2272 static size_t page_mask;
2273 #endif
2275 /* Get the section data of length LEN from FILENAME starting at
2276 OFFSET. The data segment must be freed by the caller when the
2277 caller is finished. Returns NULL if all was not well. */
2279 static char *
2280 lto_read_section_data (struct lto_file_decl_data *file_data,
2281 intptr_t offset, size_t len)
2283 char *result;
2284 static int fd = -1;
2285 static char *fd_name;
2286 #if LTO_MMAP_IO
2287 intptr_t computed_len;
2288 intptr_t computed_offset;
2289 intptr_t diff;
2290 #endif
2292 /* Keep a single-entry file-descriptor cache. The last file we
2293 touched will get closed at exit.
2294 ??? Eventually we want to add a more sophisticated larger cache
2295 or rather fix function body streaming to not stream them in
2296 practically random order. */
2297 if (fd != -1
2298 && filename_cmp (fd_name, file_data->file_name) != 0)
2300 free (fd_name);
2301 close (fd);
2302 fd = -1;
2304 if (fd == -1)
2306 fd = open (file_data->file_name, O_RDONLY|O_BINARY);
2307 if (fd == -1)
2309 fatal_error ("Cannot open %s", file_data->file_name);
2310 return NULL;
2312 fd_name = xstrdup (file_data->file_name);
2315 #if LTO_MMAP_IO
2316 if (!page_mask)
2318 size_t page_size = sysconf (_SC_PAGE_SIZE);
2319 page_mask = ~(page_size - 1);
2322 computed_offset = offset & page_mask;
2323 diff = offset - computed_offset;
2324 computed_len = len + diff;
2326 result = (char *) mmap (NULL, computed_len, PROT_READ, MAP_PRIVATE,
2327 fd, computed_offset);
2328 if (result == MAP_FAILED)
2330 fatal_error ("Cannot map %s", file_data->file_name);
2331 return NULL;
2334 return result + diff;
2335 #else
2336 result = (char *) xmalloc (len);
2337 if (lseek (fd, offset, SEEK_SET) != offset
2338 || read (fd, result, len) != (ssize_t) len)
2340 free (result);
2341 fatal_error ("Cannot read %s", file_data->file_name);
2342 result = NULL;
2344 #ifdef __MINGW32__
2345 /* Native windows doesn't supports delayed unlink on opened file. So
2346 we close file here again. This produces higher I/O load, but at least
2347 it prevents to have dangling file handles preventing unlink. */
2348 free (fd_name);
2349 fd_name = NULL;
2350 close (fd);
2351 fd = -1;
2352 #endif
2353 return result;
2354 #endif
2358 /* Get the section data from FILE_DATA of SECTION_TYPE with NAME.
2359 NAME will be NULL unless the section type is for a function
2360 body. */
2362 static const char *
2363 get_section_data (struct lto_file_decl_data *file_data,
2364 enum lto_section_type section_type,
2365 const char *name,
2366 size_t *len)
2368 htab_t section_hash_table = file_data->section_hash_table;
2369 struct lto_section_slot *f_slot;
2370 struct lto_section_slot s_slot;
2371 const char *section_name = lto_get_section_name (section_type, name, file_data);
2372 char *data = NULL;
2374 *len = 0;
2375 s_slot.name = section_name;
2376 f_slot = (struct lto_section_slot *) htab_find (section_hash_table, &s_slot);
2377 if (f_slot)
2379 data = lto_read_section_data (file_data, f_slot->start, f_slot->len);
2380 *len = f_slot->len;
2383 free (CONST_CAST (char *, section_name));
2384 return data;
2388 /* Free the section data from FILE_DATA of SECTION_TYPE with NAME that
2389 starts at OFFSET and has LEN bytes. */
2391 static void
2392 free_section_data (struct lto_file_decl_data *file_data ATTRIBUTE_UNUSED,
2393 enum lto_section_type section_type ATTRIBUTE_UNUSED,
2394 const char *name ATTRIBUTE_UNUSED,
2395 const char *offset, size_t len ATTRIBUTE_UNUSED)
2397 #if LTO_MMAP_IO
2398 intptr_t computed_len;
2399 intptr_t computed_offset;
2400 intptr_t diff;
2401 #endif
2403 #if LTO_MMAP_IO
2404 computed_offset = ((intptr_t) offset) & page_mask;
2405 diff = (intptr_t) offset - computed_offset;
2406 computed_len = len + diff;
2408 munmap ((caddr_t) computed_offset, computed_len);
2409 #else
2410 free (CONST_CAST(char *, offset));
2411 #endif
2414 static lto_file *current_lto_file;
2416 /* Helper for qsort; compare partitions and return one with smaller size.
2417 We sort from greatest to smallest so parallel build doesn't stale on the
2418 longest compilation being executed too late. */
2420 static int
2421 cmp_partitions_size (const void *a, const void *b)
2423 const struct ltrans_partition_def *pa
2424 = *(struct ltrans_partition_def *const *)a;
2425 const struct ltrans_partition_def *pb
2426 = *(struct ltrans_partition_def *const *)b;
2427 return pb->insns - pa->insns;
2430 /* Helper for qsort; compare partitions and return one with smaller order. */
2432 static int
2433 cmp_partitions_order (const void *a, const void *b)
2435 const struct ltrans_partition_def *pa
2436 = *(struct ltrans_partition_def *const *)a;
2437 const struct ltrans_partition_def *pb
2438 = *(struct ltrans_partition_def *const *)b;
2439 int ordera = -1, orderb = -1;
2441 if (lto_symtab_encoder_size (pa->encoder))
2442 ordera = lto_symtab_encoder_deref (pa->encoder, 0)->order;
2443 if (lto_symtab_encoder_size (pb->encoder))
2444 orderb = lto_symtab_encoder_deref (pb->encoder, 0)->order;
2445 return orderb - ordera;
2448 /* Actually stream out ENCODER into TEMP_FILENAME. */
2450 static void
2451 do_stream_out (char *temp_filename, lto_symtab_encoder_t encoder)
2453 lto_file *file = lto_obj_file_open (temp_filename, true);
2454 if (!file)
2455 fatal_error ("lto_obj_file_open() failed");
2456 lto_set_current_out_file (file);
2458 ipa_write_optimization_summaries (encoder);
2460 lto_set_current_out_file (NULL);
2461 lto_obj_file_close (file);
2462 free (file);
2465 /* Wait for forked process and signal errors. */
2466 #ifdef HAVE_WORKING_FORK
2467 static void
2468 wait_for_child ()
2470 int status;
2473 #ifndef WCONTINUED
2474 #define WCONTINUED 0
2475 #endif
2476 int w = waitpid (0, &status, WUNTRACED | WCONTINUED);
2477 if (w == -1)
2478 fatal_error ("waitpid failed");
2480 if (WIFEXITED (status) && WEXITSTATUS (status))
2481 fatal_error ("streaming subprocess failed");
2482 else if (WIFSIGNALED (status))
2483 fatal_error ("streaming subprocess was killed by signal");
2485 while (!WIFEXITED (status) && !WIFSIGNALED (status));
2487 #endif
2489 /* Stream out ENCODER into TEMP_FILENAME
2490 Fork if that seems to help. */
2492 static void
2493 stream_out (char *temp_filename, lto_symtab_encoder_t encoder, bool last)
2495 #ifdef HAVE_WORKING_FORK
2496 static int nruns;
2498 if (lto_parallelism <= 1)
2500 do_stream_out (temp_filename, encoder);
2501 return;
2504 /* Do not run more than LTO_PARALLELISM streamings
2505 FIXME: we ignore limits on jobserver. */
2506 if (lto_parallelism > 0 && nruns >= lto_parallelism)
2508 wait_for_child ();
2509 nruns --;
2511 /* If this is not the last parallel partition, execute new
2512 streaming process. */
2513 if (!last)
2515 pid_t cpid = fork ();
2517 if (!cpid)
2519 setproctitle ("lto1-wpa-streaming");
2520 do_stream_out (temp_filename, encoder);
2521 exit (0);
2523 /* Fork failed; lets do the job ourseleves. */
2524 else if (cpid == -1)
2525 do_stream_out (temp_filename, encoder);
2526 else
2527 nruns++;
2529 /* Last partition; stream it and wait for all children to die. */
2530 else
2532 int i;
2533 do_stream_out (temp_filename, encoder);
2534 for (i = 0; i < nruns; i++)
2535 wait_for_child ();
2537 asm_nodes_output = true;
2538 #else
2539 do_stream_out (temp_filename, encoder);
2540 #endif
2543 /* Write all output files in WPA mode and the file with the list of
2544 LTRANS units. */
2546 static void
2547 lto_wpa_write_files (void)
2549 unsigned i, n_sets;
2550 ltrans_partition part;
2551 FILE *ltrans_output_list_stream;
2552 char *temp_filename;
2553 vec <char *>temp_filenames = vNULL;
2554 size_t blen;
2556 /* Open the LTRANS output list. */
2557 if (!ltrans_output_list)
2558 fatal_error ("no LTRANS output list filename provided");
2560 timevar_push (TV_WHOPR_WPA);
2562 FOR_EACH_VEC_ELT (ltrans_partitions, i, part)
2563 lto_stats.num_output_symtab_nodes += lto_symtab_encoder_size (part->encoder);
2565 timevar_pop (TV_WHOPR_WPA);
2567 timevar_push (TV_WHOPR_WPA_IO);
2569 /* Generate a prefix for the LTRANS unit files. */
2570 blen = strlen (ltrans_output_list);
2571 temp_filename = (char *) xmalloc (blen + sizeof ("2147483648.o"));
2572 strcpy (temp_filename, ltrans_output_list);
2573 if (blen > sizeof (".out")
2574 && strcmp (temp_filename + blen - sizeof (".out") + 1,
2575 ".out") == 0)
2576 temp_filename[blen - sizeof (".out") + 1] = '\0';
2577 blen = strlen (temp_filename);
2579 n_sets = ltrans_partitions.length ();
2581 /* Sort partitions by size so small ones are compiled last.
2582 FIXME: Even when not reordering we may want to output one list for parallel make
2583 and other for final link command. */
2585 if (!flag_profile_reorder_functions || !flag_profile_use)
2586 ltrans_partitions.qsort (flag_toplevel_reorder
2587 ? cmp_partitions_size
2588 : cmp_partitions_order);
2590 for (i = 0; i < n_sets; i++)
2592 ltrans_partition part = ltrans_partitions[i];
2594 /* Write all the nodes in SET. */
2595 sprintf (temp_filename + blen, "%u.o", i);
2597 if (!quiet_flag)
2598 fprintf (stderr, " %s (%s %i insns)", temp_filename, part->name, part->insns);
2599 if (symtab->dump_file)
2601 lto_symtab_encoder_iterator lsei;
2603 fprintf (symtab->dump_file, "Writing partition %s to file %s, %i insns\n",
2604 part->name, temp_filename, part->insns);
2605 fprintf (symtab->dump_file, " Symbols in partition: ");
2606 for (lsei = lsei_start_in_partition (part->encoder); !lsei_end_p (lsei);
2607 lsei_next_in_partition (&lsei))
2609 symtab_node *node = lsei_node (lsei);
2610 fprintf (symtab->dump_file, "%s ", node->asm_name ());
2612 fprintf (symtab->dump_file, "\n Symbols in boundary: ");
2613 for (lsei = lsei_start (part->encoder); !lsei_end_p (lsei);
2614 lsei_next (&lsei))
2616 symtab_node *node = lsei_node (lsei);
2617 if (!lto_symtab_encoder_in_partition_p (part->encoder, node))
2619 fprintf (symtab->dump_file, "%s ", node->asm_name ());
2620 cgraph_node *cnode = dyn_cast <cgraph_node *> (node);
2621 if (cnode
2622 && lto_symtab_encoder_encode_body_p (part->encoder, cnode))
2623 fprintf (symtab->dump_file, "(body included)");
2624 else
2626 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2627 if (vnode
2628 && lto_symtab_encoder_encode_initializer_p (part->encoder, vnode))
2629 fprintf (symtab->dump_file, "(initializer included)");
2633 fprintf (symtab->dump_file, "\n");
2635 gcc_checking_assert (lto_symtab_encoder_size (part->encoder) || !i);
2637 stream_out (temp_filename, part->encoder, i == n_sets - 1);
2639 part->encoder = NULL;
2641 temp_filenames.safe_push (xstrdup (temp_filename));
2643 ltrans_output_list_stream = fopen (ltrans_output_list, "w");
2644 if (ltrans_output_list_stream == NULL)
2645 fatal_error ("opening LTRANS output list %s: %m", ltrans_output_list);
2646 for (i = 0; i < n_sets; i++)
2648 unsigned int len = strlen (temp_filenames[i]);
2649 if (fwrite (temp_filenames[i], 1, len, ltrans_output_list_stream) < len
2650 || fwrite ("\n", 1, 1, ltrans_output_list_stream) < 1)
2651 fatal_error ("writing to LTRANS output list %s: %m",
2652 ltrans_output_list);
2653 free (temp_filenames[i]);
2655 temp_filenames.release();
2657 lto_stats.num_output_files += n_sets;
2659 /* Close the LTRANS output list. */
2660 if (fclose (ltrans_output_list_stream))
2661 fatal_error ("closing LTRANS output list %s: %m", ltrans_output_list);
2663 free_ltrans_partitions();
2664 free (temp_filename);
2666 timevar_pop (TV_WHOPR_WPA_IO);
2670 /* If TT is a variable or function decl replace it with its
2671 prevailing variant. */
2672 #define LTO_SET_PREVAIL(tt) \
2673 do {\
2674 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
2675 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
2677 tt = lto_symtab_prevailing_decl (tt); \
2678 fixed = true; \
2680 } while (0)
2682 /* Ensure that TT isn't a replacable var of function decl. */
2683 #define LTO_NO_PREVAIL(tt) \
2684 gcc_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
2686 /* Given a tree T replace all fields referring to variables or functions
2687 with their prevailing variant. */
2688 static void
2689 lto_fixup_prevailing_decls (tree t)
2691 enum tree_code code = TREE_CODE (t);
2692 bool fixed = false;
2694 gcc_checking_assert (code != TREE_BINFO);
2695 LTO_NO_PREVAIL (TREE_TYPE (t));
2696 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2697 LTO_NO_PREVAIL (TREE_CHAIN (t));
2698 if (DECL_P (t))
2700 LTO_NO_PREVAIL (DECL_NAME (t));
2701 LTO_SET_PREVAIL (DECL_CONTEXT (t));
2702 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2704 LTO_SET_PREVAIL (DECL_SIZE (t));
2705 LTO_SET_PREVAIL (DECL_SIZE_UNIT (t));
2706 LTO_SET_PREVAIL (DECL_INITIAL (t));
2707 LTO_NO_PREVAIL (DECL_ATTRIBUTES (t));
2708 LTO_SET_PREVAIL (DECL_ABSTRACT_ORIGIN (t));
2710 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2712 LTO_NO_PREVAIL (t->decl_with_vis.assembler_name);
2714 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2716 LTO_NO_PREVAIL (DECL_RESULT_FLD (t));
2718 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2720 LTO_NO_PREVAIL (DECL_ARGUMENTS (t));
2721 LTO_SET_PREVAIL (DECL_FUNCTION_PERSONALITY (t));
2722 LTO_NO_PREVAIL (DECL_VINDEX (t));
2724 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2726 LTO_SET_PREVAIL (DECL_FIELD_OFFSET (t));
2727 LTO_NO_PREVAIL (DECL_BIT_FIELD_TYPE (t));
2728 LTO_NO_PREVAIL (DECL_QUALIFIER (t));
2729 LTO_NO_PREVAIL (DECL_FIELD_BIT_OFFSET (t));
2730 LTO_NO_PREVAIL (DECL_FCONTEXT (t));
2733 else if (TYPE_P (t))
2735 LTO_NO_PREVAIL (TYPE_CACHED_VALUES (t));
2736 LTO_SET_PREVAIL (TYPE_SIZE (t));
2737 LTO_SET_PREVAIL (TYPE_SIZE_UNIT (t));
2738 LTO_NO_PREVAIL (TYPE_ATTRIBUTES (t));
2739 LTO_NO_PREVAIL (TYPE_NAME (t));
2741 LTO_SET_PREVAIL (TYPE_MINVAL (t));
2742 LTO_SET_PREVAIL (TYPE_MAXVAL (t));
2743 LTO_NO_PREVAIL (t->type_non_common.binfo);
2745 LTO_SET_PREVAIL (TYPE_CONTEXT (t));
2747 LTO_NO_PREVAIL (TYPE_CANONICAL (t));
2748 LTO_NO_PREVAIL (TYPE_MAIN_VARIANT (t));
2749 LTO_NO_PREVAIL (TYPE_NEXT_VARIANT (t));
2751 else if (EXPR_P (t))
2753 int i;
2754 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
2755 LTO_SET_PREVAIL (TREE_OPERAND (t, i));
2757 else if (TREE_CODE (t) == CONSTRUCTOR)
2759 unsigned i;
2760 tree val;
2761 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (t), i, val)
2762 LTO_SET_PREVAIL (val);
2764 else
2766 switch (code)
2768 case TREE_LIST:
2769 LTO_SET_PREVAIL (TREE_VALUE (t));
2770 LTO_SET_PREVAIL (TREE_PURPOSE (t));
2771 LTO_NO_PREVAIL (TREE_PURPOSE (t));
2772 break;
2773 default:
2774 gcc_unreachable ();
2777 /* If we fixed nothing, then we missed something seen by
2778 mentions_vars_p. */
2779 gcc_checking_assert (fixed);
2781 #undef LTO_SET_PREVAIL
2782 #undef LTO_NO_PREVAIL
2784 /* Helper function of lto_fixup_decls. Walks the var and fn streams in STATE,
2785 replaces var and function decls with the corresponding prevailing def. */
2787 static void
2788 lto_fixup_state (struct lto_in_decl_state *state)
2790 unsigned i, si;
2791 struct lto_tree_ref_table *table;
2793 /* Although we only want to replace FUNCTION_DECLs and VAR_DECLs,
2794 we still need to walk from all DECLs to find the reachable
2795 FUNCTION_DECLs and VAR_DECLs. */
2796 for (si = 0; si < LTO_N_DECL_STREAMS; si++)
2798 table = &state->streams[si];
2799 for (i = 0; i < table->size; i++)
2801 tree *tp = table->trees + i;
2802 if (VAR_OR_FUNCTION_DECL_P (*tp)
2803 && (TREE_PUBLIC (*tp) || DECL_EXTERNAL (*tp)))
2804 *tp = lto_symtab_prevailing_decl (*tp);
2809 /* A callback of htab_traverse. Just extracts a state from SLOT
2810 and calls lto_fixup_state. */
2812 static int
2813 lto_fixup_state_aux (void **slot, void *aux ATTRIBUTE_UNUSED)
2815 struct lto_in_decl_state *state = (struct lto_in_decl_state *) *slot;
2816 lto_fixup_state (state);
2817 return 1;
2820 /* Fix the decls from all FILES. Replaces each decl with the corresponding
2821 prevailing one. */
2823 static void
2824 lto_fixup_decls (struct lto_file_decl_data **files)
2826 unsigned int i;
2827 tree t;
2829 if (tree_with_vars)
2830 FOR_EACH_VEC_ELT ((*tree_with_vars), i, t)
2831 lto_fixup_prevailing_decls (t);
2833 for (i = 0; files[i]; i++)
2835 struct lto_file_decl_data *file = files[i];
2836 struct lto_in_decl_state *state = file->global_decl_state;
2837 lto_fixup_state (state);
2839 htab_traverse (file->function_decl_states, lto_fixup_state_aux, NULL);
2843 static GTY((length ("lto_stats.num_input_files + 1"))) struct lto_file_decl_data **all_file_decl_data;
2845 /* Turn file datas for sub files into a single array, so that they look
2846 like separate files for further passes. */
2848 static void
2849 lto_flatten_files (struct lto_file_decl_data **orig, int count, int last_file_ix)
2851 struct lto_file_decl_data *n, *next;
2852 int i, k;
2854 lto_stats.num_input_files = count;
2855 all_file_decl_data
2856 = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (count + 1);
2857 /* Set the hooks so that all of the ipa passes can read in their data. */
2858 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2859 for (i = 0, k = 0; i < last_file_ix; i++)
2861 for (n = orig[i]; n != NULL; n = next)
2863 all_file_decl_data[k++] = n;
2864 next = n->next;
2865 n->next = NULL;
2868 all_file_decl_data[k] = NULL;
2869 gcc_assert (k == count);
2872 /* Input file data before flattening (i.e. splitting them to subfiles to support
2873 incremental linking. */
2874 static int real_file_count;
2875 static GTY((length ("real_file_count + 1"))) struct lto_file_decl_data **real_file_decl_data;
2877 static void print_lto_report_1 (void);
2879 /* Read all the symbols from the input files FNAMES. NFILES is the
2880 number of files requested in the command line. Instantiate a
2881 global call graph by aggregating all the sub-graphs found in each
2882 file. */
2884 static void
2885 read_cgraph_and_symbols (unsigned nfiles, const char **fnames)
2887 unsigned int i, last_file_ix;
2888 FILE *resolution;
2889 int count = 0;
2890 struct lto_file_decl_data **decl_data;
2891 symtab_node *snode;
2893 symtab->initialize ();
2895 timevar_push (TV_IPA_LTO_DECL_IN);
2897 real_file_decl_data
2898 = decl_data = ggc_cleared_vec_alloc<lto_file_decl_data_ptr> (nfiles + 1);
2899 real_file_count = nfiles;
2901 /* Read the resolution file. */
2902 resolution = NULL;
2903 if (resolution_file_name)
2905 int t;
2906 unsigned num_objects;
2908 resolution = fopen (resolution_file_name, "r");
2909 if (resolution == NULL)
2910 fatal_error ("could not open symbol resolution file: %m");
2912 t = fscanf (resolution, "%u", &num_objects);
2913 gcc_assert (t == 1);
2915 /* True, since the plugin splits the archives. */
2916 gcc_assert (num_objects == nfiles);
2918 symtab->state = LTO_STREAMING;
2920 canonical_type_hash_cache = new hash_map<const_tree, hashval_t> (251);
2921 gimple_canonical_types = htab_create_ggc (16381, gimple_canonical_type_hash,
2922 gimple_canonical_type_eq, 0);
2923 gcc_obstack_init (&tree_scc_hash_obstack);
2924 tree_scc_hash = new hash_table<tree_scc_hasher> (4096);
2926 /* Register the common node types with the canonical type machinery so
2927 we properly share alias-sets across languages and TUs. Do not
2928 expose the common nodes as type merge target - those that should be
2929 are already exposed so by pre-loading the LTO streamer caches.
2930 Do two passes - first clear TYPE_CANONICAL and then re-compute it. */
2931 for (i = 0; i < itk_none; ++i)
2932 lto_register_canonical_types (integer_types[i], true);
2933 for (i = 0; i < stk_type_kind_last; ++i)
2934 lto_register_canonical_types (sizetype_tab[i], true);
2935 for (i = 0; i < TI_MAX; ++i)
2936 lto_register_canonical_types (global_trees[i], true);
2937 for (i = 0; i < itk_none; ++i)
2938 lto_register_canonical_types (integer_types[i], false);
2939 for (i = 0; i < stk_type_kind_last; ++i)
2940 lto_register_canonical_types (sizetype_tab[i], false);
2941 for (i = 0; i < TI_MAX; ++i)
2942 lto_register_canonical_types (global_trees[i], false);
2944 if (!quiet_flag)
2945 fprintf (stderr, "Reading object files:");
2947 /* Read all of the object files specified on the command line. */
2948 for (i = 0, last_file_ix = 0; i < nfiles; ++i)
2950 struct lto_file_decl_data *file_data = NULL;
2951 if (!quiet_flag)
2953 fprintf (stderr, " %s", fnames[i]);
2954 fflush (stderr);
2957 current_lto_file = lto_obj_file_open (fnames[i], false);
2958 if (!current_lto_file)
2959 break;
2961 file_data = lto_file_read (current_lto_file, resolution, &count);
2962 if (!file_data)
2964 lto_obj_file_close (current_lto_file);
2965 free (current_lto_file);
2966 current_lto_file = NULL;
2967 break;
2970 decl_data[last_file_ix++] = file_data;
2972 lto_obj_file_close (current_lto_file);
2973 free (current_lto_file);
2974 current_lto_file = NULL;
2977 lto_flatten_files (decl_data, count, last_file_ix);
2978 lto_stats.num_input_files = count;
2979 ggc_free(decl_data);
2980 real_file_decl_data = NULL;
2982 if (resolution_file_name)
2983 fclose (resolution);
2985 /* Show the LTO report before launching LTRANS. */
2986 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
2987 print_lto_report_1 ();
2989 /* Free gimple type merging datastructures. */
2990 delete tree_scc_hash;
2991 tree_scc_hash = NULL;
2992 obstack_free (&tree_scc_hash_obstack, NULL);
2993 htab_delete (gimple_canonical_types);
2994 gimple_canonical_types = NULL;
2995 delete canonical_type_hash_cache;
2996 canonical_type_hash_cache = NULL;
2998 /* At this stage we know that majority of GGC memory is reachable.
2999 Growing the limits prevents unnecesary invocation of GGC. */
3000 ggc_grow ();
3001 ggc_collect ();
3003 /* Set the hooks so that all of the ipa passes can read in their data. */
3004 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
3006 timevar_pop (TV_IPA_LTO_DECL_IN);
3008 if (!quiet_flag)
3009 fprintf (stderr, "\nReading the callgraph\n");
3011 timevar_push (TV_IPA_LTO_CGRAPH_IO);
3012 /* Read the symtab. */
3013 input_symtab ();
3015 /* Store resolutions into the symbol table. */
3017 ld_plugin_symbol_resolution_t *res;
3018 FOR_EACH_SYMBOL (snode)
3019 if (snode->real_symbol_p ()
3020 && snode->lto_file_data
3021 && snode->lto_file_data->resolution_map
3022 && (res = snode->lto_file_data->resolution_map->get (snode->decl)))
3023 snode->resolution = *res;
3024 for (i = 0; all_file_decl_data[i]; i++)
3025 if (all_file_decl_data[i]->resolution_map)
3027 delete all_file_decl_data[i]->resolution_map;
3028 all_file_decl_data[i]->resolution_map = NULL;
3031 timevar_pop (TV_IPA_LTO_CGRAPH_IO);
3033 if (!quiet_flag)
3034 fprintf (stderr, "Merging declarations\n");
3036 timevar_push (TV_IPA_LTO_DECL_MERGE);
3037 /* Merge global decls. In ltrans mode we read merged cgraph, we do not
3038 need to care about resolving symbols again, we only need to replace
3039 duplicated declarations read from the callgraph and from function
3040 sections. */
3041 if (!flag_ltrans)
3043 lto_symtab_merge_decls ();
3045 /* If there were errors during symbol merging bail out, we have no
3046 good way to recover here. */
3047 if (seen_error ())
3048 fatal_error ("errors during merging of translation units");
3050 /* Fixup all decls. */
3051 lto_fixup_decls (all_file_decl_data);
3053 if (tree_with_vars)
3054 ggc_free (tree_with_vars);
3055 tree_with_vars = NULL;
3056 ggc_collect ();
3058 timevar_pop (TV_IPA_LTO_DECL_MERGE);
3059 /* Each pass will set the appropriate timer. */
3061 if (!quiet_flag)
3062 fprintf (stderr, "Reading summaries\n");
3064 /* Read the IPA summary data. */
3065 if (flag_ltrans)
3066 ipa_read_optimization_summaries ();
3067 else
3068 ipa_read_summaries ();
3070 for (i = 0; all_file_decl_data[i]; i++)
3072 gcc_assert (all_file_decl_data[i]->symtab_node_encoder);
3073 lto_symtab_encoder_delete (all_file_decl_data[i]->symtab_node_encoder);
3074 all_file_decl_data[i]->symtab_node_encoder = NULL;
3075 lto_free_function_in_decl_state (all_file_decl_data[i]->global_decl_state);
3076 all_file_decl_data[i]->global_decl_state = NULL;
3077 all_file_decl_data[i]->current_decl_state = NULL;
3080 /* Finally merge the cgraph according to the decl merging decisions. */
3081 timevar_push (TV_IPA_LTO_CGRAPH_MERGE);
3082 if (symtab->dump_file)
3084 fprintf (symtab->dump_file, "Before merging:\n");
3085 symtab_node::dump_table (symtab->dump_file);
3087 lto_symtab_merge_symbols ();
3088 /* Removal of unreachable symbols is needed to make verify_symtab to pass;
3089 we are still having duplicated comdat groups containing local statics.
3090 We could also just remove them while merging. */
3091 symtab->remove_unreachable_nodes (true, dump_file);
3092 ggc_collect ();
3093 symtab->state = IPA_SSA;
3095 timevar_pop (TV_IPA_LTO_CGRAPH_MERGE);
3097 /* Indicate that the cgraph is built and ready. */
3098 symtab->function_flags_ready = true;
3100 ggc_free (all_file_decl_data);
3101 all_file_decl_data = NULL;
3105 /* Materialize all the bodies for all the nodes in the callgraph. */
3107 static void
3108 materialize_cgraph (void)
3110 struct cgraph_node *node;
3111 timevar_id_t lto_timer;
3113 if (!quiet_flag)
3114 fprintf (stderr,
3115 flag_wpa ? "Materializing decls:" : "Reading function bodies:");
3118 FOR_EACH_FUNCTION (node)
3120 if (node->lto_file_data)
3122 lto_materialize_function (node);
3123 lto_stats.num_input_cgraph_nodes++;
3128 /* Start the appropriate timer depending on the mode that we are
3129 operating in. */
3130 lto_timer = (flag_wpa) ? TV_WHOPR_WPA
3131 : (flag_ltrans) ? TV_WHOPR_LTRANS
3132 : TV_LTO;
3133 timevar_push (lto_timer);
3135 current_function_decl = NULL;
3136 set_cfun (NULL);
3138 if (!quiet_flag)
3139 fprintf (stderr, "\n");
3141 timevar_pop (lto_timer);
3145 /* Show various memory usage statistics related to LTO. */
3146 static void
3147 print_lto_report_1 (void)
3149 const char *pfx = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS";
3150 fprintf (stderr, "%s statistics\n", pfx);
3152 fprintf (stderr, "[%s] read %lu SCCs of average size %f\n",
3153 pfx, num_sccs_read, total_scc_size / (double)num_sccs_read);
3154 fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx, total_scc_size);
3155 if (flag_wpa && tree_scc_hash)
3157 fprintf (stderr, "[%s] tree SCC table: size %ld, %ld elements, "
3158 "collision ratio: %f\n", pfx,
3159 (long) tree_scc_hash->size (),
3160 (long) tree_scc_hash->elements (),
3161 tree_scc_hash->collisions ());
3162 hash_table<tree_scc_hasher>::iterator hiter;
3163 tree_scc *scc, *max_scc = NULL;
3164 unsigned max_length = 0;
3165 FOR_EACH_HASH_TABLE_ELEMENT (*tree_scc_hash, scc, x, hiter)
3167 unsigned length = 0;
3168 tree_scc *s = scc;
3169 for (; s; s = s->next)
3170 length++;
3171 if (length > max_length)
3173 max_length = length;
3174 max_scc = scc;
3177 fprintf (stderr, "[%s] tree SCC max chain length %u (size %u)\n",
3178 pfx, max_length, max_scc->len);
3179 fprintf (stderr, "[%s] Compared %lu SCCs, %lu collisions (%f)\n", pfx,
3180 num_scc_compares, num_scc_compare_collisions,
3181 num_scc_compare_collisions / (double) num_scc_compares);
3182 fprintf (stderr, "[%s] Merged %lu SCCs\n", pfx, num_sccs_merged);
3183 fprintf (stderr, "[%s] Merged %lu tree bodies\n", pfx,
3184 total_scc_size_merged);
3185 fprintf (stderr, "[%s] Merged %lu types\n", pfx, num_merged_types);
3186 fprintf (stderr, "[%s] %lu types prevailed (%lu associated trees)\n",
3187 pfx, num_prevailing_types, num_type_scc_trees);
3188 fprintf (stderr, "[%s] GIMPLE canonical type table: size %ld, "
3189 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3190 (long) htab_size (gimple_canonical_types),
3191 (long) htab_elements (gimple_canonical_types),
3192 (long) gimple_canonical_types->searches,
3193 (long) gimple_canonical_types->collisions,
3194 htab_collisions (gimple_canonical_types));
3195 fprintf (stderr, "[%s] GIMPLE canonical type pointer-map: "
3196 "%lu elements, %ld searches\n", pfx,
3197 num_canonical_type_hash_entries,
3198 num_canonical_type_hash_queries);
3201 print_lto_report (pfx);
3204 /* Perform whole program analysis (WPA) on the callgraph and write out the
3205 optimization plan. */
3207 static void
3208 do_whole_program_analysis (void)
3210 symtab_node *node;
3212 lto_parallelism = 1;
3214 /* TODO: jobserver communicatoin is not supported, yet. */
3215 if (!strcmp (flag_wpa, "jobserver"))
3216 lto_parallelism = -1;
3217 else
3219 lto_parallelism = atoi (flag_wpa);
3220 if (lto_parallelism <= 0)
3221 lto_parallelism = 0;
3224 timevar_start (TV_PHASE_OPT_GEN);
3226 /* Note that since we are in WPA mode, materialize_cgraph will not
3227 actually read in all the function bodies. It only materializes
3228 the decls and cgraph nodes so that analysis can be performed. */
3229 materialize_cgraph ();
3231 /* Reading in the cgraph uses different timers, start timing WPA now. */
3232 timevar_push (TV_WHOPR_WPA);
3234 if (pre_ipa_mem_report)
3236 fprintf (stderr, "Memory consumption before IPA\n");
3237 dump_memory_report (false);
3240 symtab->function_flags_ready = true;
3242 if (symtab->dump_file)
3243 symtab_node::dump_table (symtab->dump_file);
3244 bitmap_obstack_initialize (NULL);
3245 symtab->state = IPA_SSA;
3247 execute_ipa_pass_list (g->get_passes ()->all_regular_ipa_passes);
3248 symtab->remove_unreachable_nodes (false, dump_file);
3250 if (symtab->dump_file)
3252 fprintf (symtab->dump_file, "Optimized ");
3253 symtab_node::dump_table (symtab->dump_file);
3255 #ifdef ENABLE_CHECKING
3256 symtab_node::verify_symtab_nodes ();
3257 #endif
3258 bitmap_obstack_release (NULL);
3260 /* We are about to launch the final LTRANS phase, stop the WPA timer. */
3261 timevar_pop (TV_WHOPR_WPA);
3263 timevar_push (TV_WHOPR_PARTITIONING);
3264 if (flag_lto_partition == LTO_PARTITION_1TO1)
3265 lto_1_to_1_map ();
3266 else if (flag_lto_partition == LTO_PARTITION_MAX)
3267 lto_max_map ();
3268 else if (flag_lto_partition == LTO_PARTITION_ONE)
3269 lto_balanced_map (1);
3270 else if (flag_lto_partition == LTO_PARTITION_BALANCED)
3271 lto_balanced_map (PARAM_VALUE (PARAM_LTO_PARTITIONS));
3272 else
3273 gcc_unreachable ();
3275 /* Inline summaries are needed for balanced partitioning. Free them now so
3276 the memory can be used for streamer caches. */
3277 inline_free_summary ();
3279 /* AUX pointers are used by partitioning code to bookkeep number of
3280 partitions symbol is in. This is no longer needed. */
3281 FOR_EACH_SYMBOL (node)
3282 node->aux = NULL;
3284 lto_stats.num_cgraph_partitions += ltrans_partitions.length ();
3286 /* Find out statics that need to be promoted
3287 to globals with hidden visibility because they are accessed from multiple
3288 partitions. */
3289 lto_promote_cross_file_statics ();
3290 timevar_pop (TV_WHOPR_PARTITIONING);
3292 timevar_stop (TV_PHASE_OPT_GEN);
3294 /* Collect a last time - in lto_wpa_write_files we may end up forking
3295 with the idea that this doesn't increase memory usage. So we
3296 absoultely do not want to collect after that. */
3297 ggc_collect ();
3299 timevar_start (TV_PHASE_STREAM_OUT);
3300 if (!quiet_flag)
3302 fprintf (stderr, "\nStreaming out");
3303 fflush (stderr);
3305 lto_wpa_write_files ();
3306 if (!quiet_flag)
3307 fprintf (stderr, "\n");
3308 timevar_stop (TV_PHASE_STREAM_OUT);
3310 if (post_ipa_mem_report)
3312 fprintf (stderr, "Memory consumption after IPA\n");
3313 dump_memory_report (false);
3316 /* Show the LTO report before launching LTRANS. */
3317 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3318 print_lto_report_1 ();
3319 if (mem_report_wpa)
3320 dump_memory_report (true);
3324 static GTY(()) tree lto_eh_personality_decl;
3326 /* Return the LTO personality function decl. */
3328 tree
3329 lto_eh_personality (void)
3331 if (!lto_eh_personality_decl)
3333 /* Use the first personality DECL for our personality if we don't
3334 support multiple ones. This ensures that we don't artificially
3335 create the need for them in a single-language program. */
3336 if (first_personality_decl && !dwarf2out_do_cfi_asm ())
3337 lto_eh_personality_decl = first_personality_decl;
3338 else
3339 lto_eh_personality_decl = lhd_gcc_personality ();
3342 return lto_eh_personality_decl;
3345 /* Set the process name based on the LTO mode. */
3347 static void
3348 lto_process_name (void)
3350 if (flag_lto)
3351 setproctitle ("lto1-lto");
3352 if (flag_wpa)
3353 setproctitle ("lto1-wpa");
3354 if (flag_ltrans)
3355 setproctitle ("lto1-ltrans");
3359 /* Initialize the LTO front end. */
3361 static void
3362 lto_init (void)
3364 lto_process_name ();
3365 lto_streamer_hooks_init ();
3366 lto_reader_init ();
3367 lto_set_in_hooks (NULL, get_section_data, free_section_data);
3368 memset (&lto_stats, 0, sizeof (lto_stats));
3369 bitmap_obstack_initialize (NULL);
3370 gimple_register_cfg_hooks ();
3374 /* Main entry point for the GIMPLE front end. This front end has
3375 three main personalities:
3377 - LTO (-flto). All the object files on the command line are
3378 loaded in memory and processed as a single translation unit.
3379 This is the traditional link-time optimization behavior.
3381 - WPA (-fwpa). Only the callgraph and summary information for
3382 files in the command file are loaded. A single callgraph
3383 (without function bodies) is instantiated for the whole set of
3384 files. IPA passes are only allowed to analyze the call graph
3385 and make transformation decisions. The callgraph is
3386 partitioned, each partition is written to a new object file
3387 together with the transformation decisions.
3389 - LTRANS (-fltrans). Similar to -flto but it prevents the IPA
3390 summary files from running again. Since WPA computed summary
3391 information and decided what transformations to apply, LTRANS
3392 simply applies them. */
3394 void
3395 lto_main (void)
3397 /* LTO is called as a front end, even though it is not a front end.
3398 Because it is called as a front end, TV_PHASE_PARSING and
3399 TV_PARSE_GLOBAL are active, and we need to turn them off while
3400 doing LTO. Later we turn them back on so they are active up in
3401 toplev.c. */
3402 timevar_pop (TV_PARSE_GLOBAL);
3403 timevar_stop (TV_PHASE_PARSING);
3405 timevar_start (TV_PHASE_SETUP);
3407 /* Initialize the LTO front end. */
3408 lto_init ();
3410 timevar_stop (TV_PHASE_SETUP);
3411 timevar_start (TV_PHASE_STREAM_IN);
3413 /* Read all the symbols and call graph from all the files in the
3414 command line. */
3415 read_cgraph_and_symbols (num_in_fnames, in_fnames);
3417 timevar_stop (TV_PHASE_STREAM_IN);
3419 if (!seen_error ())
3421 /* If WPA is enabled analyze the whole call graph and create an
3422 optimization plan. Otherwise, read in all the function
3423 bodies and continue with optimization. */
3424 if (flag_wpa)
3425 do_whole_program_analysis ();
3426 else
3428 timevar_start (TV_PHASE_OPT_GEN);
3430 materialize_cgraph ();
3431 if (!flag_ltrans)
3432 lto_promote_statics_nonwpa ();
3434 /* Let the middle end know that we have read and merged all of
3435 the input files. */
3436 symtab->compile ();
3438 timevar_stop (TV_PHASE_OPT_GEN);
3440 /* FIXME lto, if the processes spawned by WPA fail, we miss
3441 the chance to print WPA's report, so WPA will call
3442 print_lto_report before launching LTRANS. If LTRANS was
3443 launched directly by the driver we would not need to do
3444 this. */
3445 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3446 print_lto_report_1 ();
3450 /* Here we make LTO pretend to be a parser. */
3451 timevar_start (TV_PHASE_PARSING);
3452 timevar_push (TV_PARSE_GLOBAL);
3455 #include "gt-lto-lto.h"