]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/lto/lto.c
Merge with trunk.
[thirdparty/gcc.git] / gcc / lto / lto.c
1 /* Top-level LTO routines.
2 Copyright (C) 2009-2013 Free Software Foundation, Inc.
3 Contributed by CodeSourcery, Inc.
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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 "ipa-prop.h"
36 #include "common.h"
37 #include "debug.h"
38 #include "tree-ssa-alias.h"
39 #include "internal-fn.h"
40 #include "gimple-expr.h"
41 #include "is-a.h"
42 #include "gimple.h"
43 #include "lto.h"
44 #include "lto-tree.h"
45 #include "lto-streamer.h"
46 #include "tree-streamer.h"
47 #include "splay-tree.h"
48 #include "lto-partition.h"
49 #include "data-streamer.h"
50 #include "context.h"
51 #include "pass_manager.h"
52
53 /* Vector to keep track of external variables we've seen so far. */
54 vec<tree, va_gc> *lto_global_var_decls;
55
56 static GTY(()) tree first_personality_decl;
57
58 /* Returns a hash code for P. */
59
60 static hashval_t
61 hash_name (const void *p)
62 {
63 const struct lto_section_slot *ds = (const struct lto_section_slot *) p;
64 return (hashval_t) htab_hash_string (ds->name);
65 }
66
67
68 /* Returns nonzero if P1 and P2 are equal. */
69
70 static int
71 eq_name (const void *p1, const void *p2)
72 {
73 const struct lto_section_slot *s1 =
74 (const struct lto_section_slot *) p1;
75 const struct lto_section_slot *s2 =
76 (const struct lto_section_slot *) p2;
77
78 return strcmp (s1->name, s2->name) == 0;
79 }
80
81 /* Free lto_section_slot */
82
83 static void
84 free_with_string (void *arg)
85 {
86 struct lto_section_slot *s = (struct lto_section_slot *)arg;
87
88 free (CONST_CAST (char *, s->name));
89 free (arg);
90 }
91
92 /* Create section hash table */
93
94 htab_t
95 lto_obj_create_section_hash_table (void)
96 {
97 return htab_create (37, hash_name, eq_name, free_with_string);
98 }
99
100 /* Delete an allocated integer KEY in the splay tree. */
101
102 static void
103 lto_splay_tree_delete_id (splay_tree_key key)
104 {
105 free ((void *) key);
106 }
107
108 /* Compare splay tree node ids A and B. */
109
110 static int
111 lto_splay_tree_compare_ids (splay_tree_key a, splay_tree_key b)
112 {
113 unsigned HOST_WIDE_INT ai;
114 unsigned HOST_WIDE_INT bi;
115
116 ai = *(unsigned HOST_WIDE_INT *) a;
117 bi = *(unsigned HOST_WIDE_INT *) b;
118
119 if (ai < bi)
120 return -1;
121 else if (ai > bi)
122 return 1;
123 return 0;
124 }
125
126 /* Look up splay tree node by ID in splay tree T. */
127
128 static splay_tree_node
129 lto_splay_tree_lookup (splay_tree t, unsigned HOST_WIDE_INT id)
130 {
131 return splay_tree_lookup (t, (splay_tree_key) &id);
132 }
133
134 /* Check if KEY has ID. */
135
136 static bool
137 lto_splay_tree_id_equal_p (splay_tree_key key, unsigned HOST_WIDE_INT id)
138 {
139 return *(unsigned HOST_WIDE_INT *) key == id;
140 }
141
142 /* Insert a splay tree node into tree T with ID as key and FILE_DATA as value.
143 The ID is allocated separately because we need HOST_WIDE_INTs which may
144 be wider than a splay_tree_key. */
145
146 static void
147 lto_splay_tree_insert (splay_tree t, unsigned HOST_WIDE_INT id,
148 struct lto_file_decl_data *file_data)
149 {
150 unsigned HOST_WIDE_INT *idp = XCNEW (unsigned HOST_WIDE_INT);
151 *idp = id;
152 splay_tree_insert (t, (splay_tree_key) idp, (splay_tree_value) file_data);
153 }
154
155 /* Create a splay tree. */
156
157 static splay_tree
158 lto_splay_tree_new (void)
159 {
160 return splay_tree_new (lto_splay_tree_compare_ids,
161 lto_splay_tree_delete_id,
162 NULL);
163 }
164
165 /* Return true when NODE has a clone that is analyzed (i.e. we need
166 to load its body even if the node itself is not needed). */
167
168 static bool
169 has_analyzed_clone_p (struct cgraph_node *node)
170 {
171 struct cgraph_node *orig = node;
172 node = node->clones;
173 if (node)
174 while (node != orig)
175 {
176 if (node->analyzed)
177 return true;
178 if (node->clones)
179 node = node->clones;
180 else if (node->next_sibling_clone)
181 node = node->next_sibling_clone;
182 else
183 {
184 while (node != orig && !node->next_sibling_clone)
185 node = node->clone_of;
186 if (node != orig)
187 node = node->next_sibling_clone;
188 }
189 }
190 return false;
191 }
192
193 /* Read the function body for the function associated with NODE. */
194
195 static void
196 lto_materialize_function (struct cgraph_node *node)
197 {
198 tree decl;
199
200 decl = node->decl;
201 /* Read in functions with body (analyzed nodes)
202 and also functions that are needed to produce virtual clones. */
203 if ((cgraph_function_with_gimple_body_p (node) && node->analyzed)
204 || node->used_as_abstract_origin
205 || has_analyzed_clone_p (node))
206 {
207 /* Clones don't need to be read. */
208 if (node->clone_of)
209 return;
210 if (DECL_FUNCTION_PERSONALITY (decl) && !first_personality_decl)
211 first_personality_decl = DECL_FUNCTION_PERSONALITY (decl);
212 }
213
214 /* Let the middle end know about the function. */
215 rest_of_decl_compilation (decl, 1, 0);
216 }
217
218
219 /* Decode the content of memory pointed to by DATA in the in decl
220 state object STATE. DATA_IN points to a data_in structure for
221 decoding. Return the address after the decoded object in the
222 input. */
223
224 static const uint32_t *
225 lto_read_in_decl_state (struct data_in *data_in, const uint32_t *data,
226 struct lto_in_decl_state *state)
227 {
228 uint32_t ix;
229 tree decl;
230 uint32_t i, j;
231
232 ix = *data++;
233 decl = streamer_tree_cache_get_tree (data_in->reader_cache, ix);
234 if (TREE_CODE (decl) != FUNCTION_DECL)
235 {
236 gcc_assert (decl == void_type_node);
237 decl = NULL_TREE;
238 }
239 state->fn_decl = decl;
240
241 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
242 {
243 uint32_t size = *data++;
244 tree *decls = ggc_alloc_vec_tree (size);
245
246 for (j = 0; j < size; j++)
247 decls[j] = streamer_tree_cache_get_tree (data_in->reader_cache, data[j]);
248
249 state->streams[i].size = size;
250 state->streams[i].trees = decls;
251 data += size;
252 }
253
254 return data;
255 }
256
257
258 /* Global canonical type table. */
259 static htab_t gimple_canonical_types;
260 static pointer_map <hashval_t> *canonical_type_hash_cache;
261 static unsigned long num_canonical_type_hash_entries;
262 static unsigned long num_canonical_type_hash_queries;
263
264 static hashval_t iterative_hash_canonical_type (tree type, hashval_t val);
265 static hashval_t gimple_canonical_type_hash (const void *p);
266 static void gimple_register_canonical_type_1 (tree t, hashval_t hash);
267
268 /* Returning a hash value for gimple type TYPE.
269
270 The hash value returned is equal for types considered compatible
271 by gimple_canonical_types_compatible_p. */
272
273 static hashval_t
274 hash_canonical_type (tree type)
275 {
276 hashval_t v;
277
278 /* Combine a few common features of types so that types are grouped into
279 smaller sets; when searching for existing matching types to merge,
280 only existing types having the same features as the new type will be
281 checked. */
282 v = iterative_hash_hashval_t (TREE_CODE (type), 0);
283 v = iterative_hash_hashval_t (TREE_ADDRESSABLE (type), v);
284 v = iterative_hash_hashval_t (TYPE_ALIGN (type), v);
285 v = iterative_hash_hashval_t (TYPE_MODE (type), v);
286
287 /* Incorporate common features of numerical types. */
288 if (INTEGRAL_TYPE_P (type)
289 || SCALAR_FLOAT_TYPE_P (type)
290 || FIXED_POINT_TYPE_P (type)
291 || TREE_CODE (type) == OFFSET_TYPE
292 || POINTER_TYPE_P (type))
293 {
294 v = iterative_hash_hashval_t (TYPE_PRECISION (type), v);
295 v = iterative_hash_hashval_t (TYPE_UNSIGNED (type), v);
296 }
297
298 if (VECTOR_TYPE_P (type))
299 {
300 v = iterative_hash_hashval_t (TYPE_VECTOR_SUBPARTS (type), v);
301 v = iterative_hash_hashval_t (TYPE_UNSIGNED (type), v);
302 }
303
304 if (TREE_CODE (type) == COMPLEX_TYPE)
305 v = iterative_hash_hashval_t (TYPE_UNSIGNED (type), v);
306
307 /* For pointer and reference types, fold in information about the type
308 pointed to but do not recurse to the pointed-to type. */
309 if (POINTER_TYPE_P (type))
310 {
311 v = iterative_hash_hashval_t (TYPE_REF_CAN_ALIAS_ALL (type), v);
312 v = iterative_hash_hashval_t (TYPE_ADDR_SPACE (TREE_TYPE (type)), v);
313 v = iterative_hash_hashval_t (TYPE_RESTRICT (type), v);
314 v = iterative_hash_hashval_t (TREE_CODE (TREE_TYPE (type)), v);
315 }
316
317 /* For integer types hash only the string flag. */
318 if (TREE_CODE (type) == INTEGER_TYPE)
319 v = iterative_hash_hashval_t (TYPE_STRING_FLAG (type), v);
320
321 /* For array types hash the domain bounds and the string flag. */
322 if (TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type))
323 {
324 v = iterative_hash_hashval_t (TYPE_STRING_FLAG (type), v);
325 /* OMP lowering can introduce error_mark_node in place of
326 random local decls in types. */
327 if (TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
328 v = iterative_hash_expr (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), v);
329 if (TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != error_mark_node)
330 v = iterative_hash_expr (TYPE_MAX_VALUE (TYPE_DOMAIN (type)), v);
331 }
332
333 /* Recurse for aggregates with a single element type. */
334 if (TREE_CODE (type) == ARRAY_TYPE
335 || TREE_CODE (type) == COMPLEX_TYPE
336 || TREE_CODE (type) == VECTOR_TYPE)
337 v = iterative_hash_canonical_type (TREE_TYPE (type), v);
338
339 /* Incorporate function return and argument types. */
340 if (TREE_CODE (type) == FUNCTION_TYPE || TREE_CODE (type) == METHOD_TYPE)
341 {
342 unsigned na;
343 tree p;
344
345 /* For method types also incorporate their parent class. */
346 if (TREE_CODE (type) == METHOD_TYPE)
347 v = iterative_hash_canonical_type (TYPE_METHOD_BASETYPE (type), v);
348
349 v = iterative_hash_canonical_type (TREE_TYPE (type), v);
350
351 for (p = TYPE_ARG_TYPES (type), na = 0; p; p = TREE_CHAIN (p))
352 {
353 v = iterative_hash_canonical_type (TREE_VALUE (p), v);
354 na++;
355 }
356
357 v = iterative_hash_hashval_t (na, v);
358 }
359
360 if (RECORD_OR_UNION_TYPE_P (type))
361 {
362 unsigned nf;
363 tree f;
364
365 for (f = TYPE_FIELDS (type), nf = 0; f; f = TREE_CHAIN (f))
366 if (TREE_CODE (f) == FIELD_DECL)
367 {
368 v = iterative_hash_canonical_type (TREE_TYPE (f), v);
369 nf++;
370 }
371
372 v = iterative_hash_hashval_t (nf, v);
373 }
374
375 return v;
376 }
377
378 /* Returning a hash value for gimple type TYPE combined with VAL. */
379
380 static hashval_t
381 iterative_hash_canonical_type (tree type, hashval_t val)
382 {
383 hashval_t v;
384 /* An already processed type. */
385 if (TYPE_CANONICAL (type))
386 {
387 type = TYPE_CANONICAL (type);
388 v = gimple_canonical_type_hash (type);
389 }
390 else
391 {
392 /* Canonical types should not be able to form SCCs by design, this
393 recursion is just because we do not register canonical types in
394 optimal order. To avoid quadratic behavior also register the
395 type here. */
396 v = hash_canonical_type (type);
397 gimple_register_canonical_type_1 (type, v);
398 }
399 return iterative_hash_hashval_t (v, val);
400 }
401
402 /* Returns the hash for a canonical type P. */
403
404 static hashval_t
405 gimple_canonical_type_hash (const void *p)
406 {
407 num_canonical_type_hash_queries++;
408 hashval_t *slot
409 = canonical_type_hash_cache->contains (CONST_CAST_TREE ((const_tree) p));
410 gcc_assert (slot != NULL);
411 return *slot;
412 }
413
414
415 /* The TYPE_CANONICAL merging machinery. It should closely resemble
416 the middle-end types_compatible_p function. It needs to avoid
417 claiming types are different for types that should be treated
418 the same with respect to TBAA. Canonical types are also used
419 for IL consistency checks via the useless_type_conversion_p
420 predicate which does not handle all type kinds itself but falls
421 back to pointer-comparison of TYPE_CANONICAL for aggregates
422 for example. */
423
424 /* Return true iff T1 and T2 are structurally identical for what
425 TBAA is concerned. */
426
427 static bool
428 gimple_canonical_types_compatible_p (tree t1, tree t2)
429 {
430 /* Before starting to set up the SCC machinery handle simple cases. */
431
432 /* Check first for the obvious case of pointer identity. */
433 if (t1 == t2)
434 return true;
435
436 /* Check that we have two types to compare. */
437 if (t1 == NULL_TREE || t2 == NULL_TREE)
438 return false;
439
440 /* If the types have been previously registered and found equal
441 they still are. */
442 if (TYPE_CANONICAL (t1)
443 && TYPE_CANONICAL (t1) == TYPE_CANONICAL (t2))
444 return true;
445
446 /* Can't be the same type if the types don't have the same code. */
447 if (TREE_CODE (t1) != TREE_CODE (t2))
448 return false;
449
450 if (TREE_ADDRESSABLE (t1) != TREE_ADDRESSABLE (t2))
451 return false;
452
453 /* Qualifiers do not matter for canonical type comparison purposes. */
454
455 /* Void types and nullptr types are always the same. */
456 if (TREE_CODE (t1) == VOID_TYPE
457 || TREE_CODE (t1) == NULLPTR_TYPE)
458 return true;
459
460 /* Can't be the same type if they have different alignment, or mode. */
461 if (TYPE_ALIGN (t1) != TYPE_ALIGN (t2)
462 || TYPE_MODE (t1) != TYPE_MODE (t2))
463 return false;
464
465 /* Non-aggregate types can be handled cheaply. */
466 if (INTEGRAL_TYPE_P (t1)
467 || SCALAR_FLOAT_TYPE_P (t1)
468 || FIXED_POINT_TYPE_P (t1)
469 || TREE_CODE (t1) == VECTOR_TYPE
470 || TREE_CODE (t1) == COMPLEX_TYPE
471 || TREE_CODE (t1) == OFFSET_TYPE
472 || POINTER_TYPE_P (t1))
473 {
474 /* Can't be the same type if they have different sign or precision. */
475 if (TYPE_PRECISION (t1) != TYPE_PRECISION (t2)
476 || TYPE_UNSIGNED (t1) != TYPE_UNSIGNED (t2))
477 return false;
478
479 if (TREE_CODE (t1) == INTEGER_TYPE
480 && TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2))
481 return false;
482
483 /* For canonical type comparisons we do not want to build SCCs
484 so we cannot compare pointed-to types. But we can, for now,
485 require the same pointed-to type kind and match what
486 useless_type_conversion_p would do. */
487 if (POINTER_TYPE_P (t1))
488 {
489 /* If the two pointers have different ref-all attributes,
490 they can't be the same type. */
491 if (TYPE_REF_CAN_ALIAS_ALL (t1) != TYPE_REF_CAN_ALIAS_ALL (t2))
492 return false;
493
494 if (TYPE_ADDR_SPACE (TREE_TYPE (t1))
495 != TYPE_ADDR_SPACE (TREE_TYPE (t2)))
496 return false;
497
498 if (TYPE_RESTRICT (t1) != TYPE_RESTRICT (t2))
499 return false;
500
501 if (TREE_CODE (TREE_TYPE (t1)) != TREE_CODE (TREE_TYPE (t2)))
502 return false;
503 }
504
505 /* Tail-recurse to components. */
506 if (TREE_CODE (t1) == VECTOR_TYPE
507 || TREE_CODE (t1) == COMPLEX_TYPE)
508 return gimple_canonical_types_compatible_p (TREE_TYPE (t1),
509 TREE_TYPE (t2));
510
511 return true;
512 }
513
514 /* Do type-specific comparisons. */
515 switch (TREE_CODE (t1))
516 {
517 case ARRAY_TYPE:
518 /* Array types are the same if the element types are the same and
519 the number of elements are the same. */
520 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2))
521 || TYPE_STRING_FLAG (t1) != TYPE_STRING_FLAG (t2)
522 || TYPE_NONALIASED_COMPONENT (t1) != TYPE_NONALIASED_COMPONENT (t2))
523 return false;
524 else
525 {
526 tree i1 = TYPE_DOMAIN (t1);
527 tree i2 = TYPE_DOMAIN (t2);
528
529 /* For an incomplete external array, the type domain can be
530 NULL_TREE. Check this condition also. */
531 if (i1 == NULL_TREE && i2 == NULL_TREE)
532 return true;
533 else if (i1 == NULL_TREE || i2 == NULL_TREE)
534 return false;
535 else
536 {
537 tree min1 = TYPE_MIN_VALUE (i1);
538 tree min2 = TYPE_MIN_VALUE (i2);
539 tree max1 = TYPE_MAX_VALUE (i1);
540 tree max2 = TYPE_MAX_VALUE (i2);
541
542 /* The minimum/maximum values have to be the same. */
543 if ((min1 == min2
544 || (min1 && min2
545 && ((TREE_CODE (min1) == PLACEHOLDER_EXPR
546 && TREE_CODE (min2) == PLACEHOLDER_EXPR)
547 || operand_equal_p (min1, min2, 0))))
548 && (max1 == max2
549 || (max1 && max2
550 && ((TREE_CODE (max1) == PLACEHOLDER_EXPR
551 && TREE_CODE (max2) == PLACEHOLDER_EXPR)
552 || operand_equal_p (max1, max2, 0)))))
553 return true;
554 else
555 return false;
556 }
557 }
558
559 case METHOD_TYPE:
560 case FUNCTION_TYPE:
561 /* Function types are the same if the return type and arguments types
562 are the same. */
563 if (!gimple_canonical_types_compatible_p (TREE_TYPE (t1), TREE_TYPE (t2)))
564 return false;
565
566 if (!comp_type_attributes (t1, t2))
567 return false;
568
569 if (TYPE_ARG_TYPES (t1) == TYPE_ARG_TYPES (t2))
570 return true;
571 else
572 {
573 tree parms1, parms2;
574
575 for (parms1 = TYPE_ARG_TYPES (t1), parms2 = TYPE_ARG_TYPES (t2);
576 parms1 && parms2;
577 parms1 = TREE_CHAIN (parms1), parms2 = TREE_CHAIN (parms2))
578 {
579 if (!gimple_canonical_types_compatible_p
580 (TREE_VALUE (parms1), TREE_VALUE (parms2)))
581 return false;
582 }
583
584 if (parms1 || parms2)
585 return false;
586
587 return true;
588 }
589
590 case RECORD_TYPE:
591 case UNION_TYPE:
592 case QUAL_UNION_TYPE:
593 {
594 tree f1, f2;
595
596 /* For aggregate types, all the fields must be the same. */
597 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
598 f1 || f2;
599 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
600 {
601 /* Skip non-fields. */
602 while (f1 && TREE_CODE (f1) != FIELD_DECL)
603 f1 = TREE_CHAIN (f1);
604 while (f2 && TREE_CODE (f2) != FIELD_DECL)
605 f2 = TREE_CHAIN (f2);
606 if (!f1 || !f2)
607 break;
608 /* The fields must have the same name, offset and type. */
609 if (DECL_NONADDRESSABLE_P (f1) != DECL_NONADDRESSABLE_P (f2)
610 || !gimple_compare_field_offset (f1, f2)
611 || !gimple_canonical_types_compatible_p
612 (TREE_TYPE (f1), TREE_TYPE (f2)))
613 return false;
614 }
615
616 /* If one aggregate has more fields than the other, they
617 are not the same. */
618 if (f1 || f2)
619 return false;
620
621 return true;
622 }
623
624 default:
625 gcc_unreachable ();
626 }
627 }
628
629
630 /* Returns nonzero if P1 and P2 are equal. */
631
632 static int
633 gimple_canonical_type_eq (const void *p1, const void *p2)
634 {
635 const_tree t1 = (const_tree) p1;
636 const_tree t2 = (const_tree) p2;
637 return gimple_canonical_types_compatible_p (CONST_CAST_TREE (t1),
638 CONST_CAST_TREE (t2));
639 }
640
641 /* Main worker for gimple_register_canonical_type. */
642
643 static void
644 gimple_register_canonical_type_1 (tree t, hashval_t hash)
645 {
646 void **slot;
647
648 gcc_checking_assert (TYPE_P (t) && !TYPE_CANONICAL (t));
649
650 slot = htab_find_slot_with_hash (gimple_canonical_types, t, hash, INSERT);
651 if (*slot)
652 {
653 tree new_type = (tree)(*slot);
654 gcc_checking_assert (new_type != t);
655 TYPE_CANONICAL (t) = new_type;
656 }
657 else
658 {
659 TYPE_CANONICAL (t) = t;
660 *slot = (void *) t;
661 /* Cache the just computed hash value. */
662 num_canonical_type_hash_entries++;
663 bool existed_p;
664 hashval_t *hslot = canonical_type_hash_cache->insert (t, &existed_p);
665 gcc_assert (!existed_p);
666 *hslot = hash;
667 }
668 }
669
670 /* Register type T in the global type table gimple_types and set
671 TYPE_CANONICAL of T accordingly.
672 This is used by LTO to merge structurally equivalent types for
673 type-based aliasing purposes across different TUs and languages.
674
675 ??? This merging does not exactly match how the tree.c middle-end
676 functions will assign TYPE_CANONICAL when new types are created
677 during optimization (which at least happens for pointer and array
678 types). */
679
680 static void
681 gimple_register_canonical_type (tree t)
682 {
683 if (TYPE_CANONICAL (t))
684 return;
685
686 gimple_register_canonical_type_1 (t, hash_canonical_type (t));
687 }
688
689 /* Re-compute TYPE_CANONICAL for NODE and related types. */
690
691 static void
692 lto_register_canonical_types (tree node, bool first_p)
693 {
694 if (!node
695 || !TYPE_P (node))
696 return;
697
698 if (first_p)
699 TYPE_CANONICAL (node) = NULL_TREE;
700
701 if (POINTER_TYPE_P (node)
702 || TREE_CODE (node) == COMPLEX_TYPE
703 || TREE_CODE (node) == ARRAY_TYPE)
704 lto_register_canonical_types (TREE_TYPE (node), first_p);
705
706 if (!first_p)
707 gimple_register_canonical_type (node);
708 }
709
710
711 /* Remember trees that contains references to declarations. */
712 static GTY(()) vec <tree, va_gc> *tree_with_vars;
713
714 #define CHECK_VAR(tt) \
715 do \
716 { \
717 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
718 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
719 return true; \
720 } while (0)
721
722 #define CHECK_NO_VAR(tt) \
723 gcc_checking_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
724
725 /* Check presence of pointers to decls in fields of a tree_typed T. */
726
727 static inline bool
728 mentions_vars_p_typed (tree t)
729 {
730 CHECK_NO_VAR (TREE_TYPE (t));
731 return false;
732 }
733
734 /* Check presence of pointers to decls in fields of a tree_common T. */
735
736 static inline bool
737 mentions_vars_p_common (tree t)
738 {
739 if (mentions_vars_p_typed (t))
740 return true;
741 CHECK_NO_VAR (TREE_CHAIN (t));
742 return false;
743 }
744
745 /* Check presence of pointers to decls in fields of a decl_minimal T. */
746
747 static inline bool
748 mentions_vars_p_decl_minimal (tree t)
749 {
750 if (mentions_vars_p_common (t))
751 return true;
752 CHECK_NO_VAR (DECL_NAME (t));
753 CHECK_VAR (DECL_CONTEXT (t));
754 return false;
755 }
756
757 /* Check presence of pointers to decls in fields of a decl_common T. */
758
759 static inline bool
760 mentions_vars_p_decl_common (tree t)
761 {
762 if (mentions_vars_p_decl_minimal (t))
763 return true;
764 CHECK_VAR (DECL_SIZE (t));
765 CHECK_VAR (DECL_SIZE_UNIT (t));
766 CHECK_VAR (DECL_INITIAL (t));
767 CHECK_NO_VAR (DECL_ATTRIBUTES (t));
768 CHECK_VAR (DECL_ABSTRACT_ORIGIN (t));
769 return false;
770 }
771
772 /* Check presence of pointers to decls in fields of a decl_with_vis T. */
773
774 static inline bool
775 mentions_vars_p_decl_with_vis (tree t)
776 {
777 if (mentions_vars_p_decl_common (t))
778 return true;
779
780 /* Accessor macro has side-effects, use field-name here. */
781 CHECK_NO_VAR (t->decl_with_vis.assembler_name);
782 CHECK_NO_VAR (DECL_SECTION_NAME (t));
783 return false;
784 }
785
786 /* Check presence of pointers to decls in fields of a decl_non_common T. */
787
788 static inline bool
789 mentions_vars_p_decl_non_common (tree t)
790 {
791 if (mentions_vars_p_decl_with_vis (t))
792 return true;
793 CHECK_NO_VAR (DECL_ARGUMENT_FLD (t));
794 CHECK_NO_VAR (DECL_RESULT_FLD (t));
795 CHECK_NO_VAR (DECL_VINDEX (t));
796 return false;
797 }
798
799 /* Check presence of pointers to decls in fields of a decl_non_common T. */
800
801 static bool
802 mentions_vars_p_function (tree t)
803 {
804 if (mentions_vars_p_decl_non_common (t))
805 return true;
806 CHECK_VAR (DECL_FUNCTION_PERSONALITY (t));
807 return false;
808 }
809
810 /* Check presence of pointers to decls in fields of a field_decl T. */
811
812 static bool
813 mentions_vars_p_field_decl (tree t)
814 {
815 if (mentions_vars_p_decl_common (t))
816 return true;
817 CHECK_VAR (DECL_FIELD_OFFSET (t));
818 CHECK_NO_VAR (DECL_BIT_FIELD_TYPE (t));
819 CHECK_NO_VAR (DECL_QUALIFIER (t));
820 CHECK_NO_VAR (DECL_FIELD_BIT_OFFSET (t));
821 CHECK_NO_VAR (DECL_FCONTEXT (t));
822 return false;
823 }
824
825 /* Check presence of pointers to decls in fields of a type T. */
826
827 static bool
828 mentions_vars_p_type (tree t)
829 {
830 if (mentions_vars_p_common (t))
831 return true;
832 CHECK_NO_VAR (TYPE_CACHED_VALUES (t));
833 CHECK_VAR (TYPE_SIZE (t));
834 CHECK_VAR (TYPE_SIZE_UNIT (t));
835 CHECK_NO_VAR (TYPE_ATTRIBUTES (t));
836 CHECK_NO_VAR (TYPE_NAME (t));
837
838 CHECK_VAR (TYPE_MINVAL (t));
839 CHECK_VAR (TYPE_MAXVAL (t));
840
841 /* Accessor is for derived node types only. */
842 CHECK_NO_VAR (t->type_non_common.binfo);
843
844 CHECK_VAR (TYPE_CONTEXT (t));
845 CHECK_NO_VAR (TYPE_CANONICAL (t));
846 CHECK_NO_VAR (TYPE_MAIN_VARIANT (t));
847 CHECK_NO_VAR (TYPE_NEXT_VARIANT (t));
848 return false;
849 }
850
851 /* Check presence of pointers to decls in fields of a BINFO T. */
852
853 static bool
854 mentions_vars_p_binfo (tree t)
855 {
856 unsigned HOST_WIDE_INT i, n;
857
858 if (mentions_vars_p_common (t))
859 return true;
860 CHECK_VAR (BINFO_VTABLE (t));
861 CHECK_NO_VAR (BINFO_OFFSET (t));
862 CHECK_NO_VAR (BINFO_VIRTUALS (t));
863 CHECK_NO_VAR (BINFO_VPTR_FIELD (t));
864 n = vec_safe_length (BINFO_BASE_ACCESSES (t));
865 for (i = 0; i < n; i++)
866 CHECK_NO_VAR (BINFO_BASE_ACCESS (t, i));
867 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
868 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
869 n = BINFO_N_BASE_BINFOS (t);
870 for (i = 0; i < n; i++)
871 CHECK_NO_VAR (BINFO_BASE_BINFO (t, i));
872 return false;
873 }
874
875 /* Check presence of pointers to decls in fields of a CONSTRUCTOR T. */
876
877 static bool
878 mentions_vars_p_constructor (tree t)
879 {
880 unsigned HOST_WIDE_INT idx;
881 constructor_elt *ce;
882
883 if (mentions_vars_p_typed (t))
884 return true;
885
886 for (idx = 0; vec_safe_iterate (CONSTRUCTOR_ELTS (t), idx, &ce); idx++)
887 {
888 CHECK_NO_VAR (ce->index);
889 CHECK_VAR (ce->value);
890 }
891 return false;
892 }
893
894 /* Check presence of pointers to decls in fields of an expression tree T. */
895
896 static bool
897 mentions_vars_p_expr (tree t)
898 {
899 int i;
900 if (mentions_vars_p_typed (t))
901 return true;
902 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
903 CHECK_VAR (TREE_OPERAND (t, i));
904 return false;
905 }
906
907 /* Check presence of pointers to decls in fields of an OMP_CLAUSE T. */
908
909 static bool
910 mentions_vars_p_omp_clause (tree t)
911 {
912 int i;
913 if (mentions_vars_p_common (t))
914 return true;
915 for (i = omp_clause_num_ops[OMP_CLAUSE_CODE (t)] - 1; i >= 0; --i)
916 CHECK_VAR (OMP_CLAUSE_OPERAND (t, i));
917 return false;
918 }
919
920 /* Check presence of pointers to decls that needs later fixup in T. */
921
922 static bool
923 mentions_vars_p (tree t)
924 {
925 switch (TREE_CODE (t))
926 {
927 case IDENTIFIER_NODE:
928 break;
929
930 case TREE_LIST:
931 CHECK_VAR (TREE_VALUE (t));
932 CHECK_VAR (TREE_PURPOSE (t));
933 CHECK_NO_VAR (TREE_CHAIN (t));
934 break;
935
936 case FIELD_DECL:
937 return mentions_vars_p_field_decl (t);
938
939 case LABEL_DECL:
940 case CONST_DECL:
941 case PARM_DECL:
942 case RESULT_DECL:
943 case IMPORTED_DECL:
944 case NAMESPACE_DECL:
945 return mentions_vars_p_decl_common (t);
946
947 case VAR_DECL:
948 return mentions_vars_p_decl_with_vis (t);
949
950 case TYPE_DECL:
951 return mentions_vars_p_decl_non_common (t);
952
953 case FUNCTION_DECL:
954 return mentions_vars_p_function (t);
955
956 case TREE_BINFO:
957 return mentions_vars_p_binfo (t);
958
959 case PLACEHOLDER_EXPR:
960 return mentions_vars_p_common (t);
961
962 case BLOCK:
963 case TRANSLATION_UNIT_DECL:
964 case OPTIMIZATION_NODE:
965 case TARGET_OPTION_NODE:
966 break;
967
968 case CONSTRUCTOR:
969 return mentions_vars_p_constructor (t);
970
971 case OMP_CLAUSE:
972 return mentions_vars_p_omp_clause (t);
973
974 default:
975 if (TYPE_P (t))
976 {
977 if (mentions_vars_p_type (t))
978 return true;
979 }
980 else if (EXPR_P (t))
981 {
982 if (mentions_vars_p_expr (t))
983 return true;
984 }
985 else if (CONSTANT_CLASS_P (t))
986 CHECK_NO_VAR (TREE_TYPE (t));
987 else
988 gcc_unreachable ();
989 }
990 return false;
991 }
992
993
994 /* Return the resolution for the decl with index INDEX from DATA_IN. */
995
996 static enum ld_plugin_symbol_resolution
997 get_resolution (struct data_in *data_in, unsigned index)
998 {
999 if (data_in->globals_resolution.exists ())
1000 {
1001 ld_plugin_symbol_resolution_t ret;
1002 /* We can have references to not emitted functions in
1003 DECL_FUNCTION_PERSONALITY at least. So we can and have
1004 to indeed return LDPR_UNKNOWN in some cases. */
1005 if (data_in->globals_resolution.length () <= index)
1006 return LDPR_UNKNOWN;
1007 ret = data_in->globals_resolution[index];
1008 return ret;
1009 }
1010 else
1011 /* Delay resolution finding until decl merging. */
1012 return LDPR_UNKNOWN;
1013 }
1014
1015 /* We need to record resolutions until symbol table is read. */
1016 static void
1017 register_resolution (struct lto_file_decl_data *file_data, tree decl,
1018 enum ld_plugin_symbol_resolution resolution)
1019 {
1020 if (resolution == LDPR_UNKNOWN)
1021 return;
1022 if (!file_data->resolution_map)
1023 file_data->resolution_map = pointer_map_create ();
1024 *pointer_map_insert (file_data->resolution_map, decl) = (void *)(size_t)resolution;
1025 }
1026
1027 /* Register DECL with the global symbol table and change its
1028 name if necessary to avoid name clashes for static globals across
1029 different files. */
1030
1031 static void
1032 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl,
1033 unsigned ix)
1034 {
1035 tree context;
1036
1037 /* Variable has file scope, not local. */
1038 if (!TREE_PUBLIC (decl)
1039 && !((context = decl_function_context (decl))
1040 && auto_var_in_fn_p (decl, context)))
1041 rest_of_decl_compilation (decl, 1, 0);
1042
1043 /* If this variable has already been declared, queue the
1044 declaration for merging. */
1045 if (TREE_PUBLIC (decl))
1046 register_resolution (data_in->file_data,
1047 decl, get_resolution (data_in, ix));
1048 }
1049
1050
1051 /* Register DECL with the global symbol table and change its
1052 name if necessary to avoid name clashes for static globals across
1053 different files. DATA_IN contains descriptors and tables for the
1054 file being read. */
1055
1056 static void
1057 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl,
1058 unsigned ix)
1059 {
1060 /* If this variable has already been declared, queue the
1061 declaration for merging. */
1062 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT (decl))
1063 register_resolution (data_in->file_data,
1064 decl, get_resolution (data_in, ix));
1065 }
1066
1067
1068 /* For the type T re-materialize it in the type variant list and
1069 the pointer/reference-to chains. */
1070
1071 static void
1072 lto_fixup_prevailing_type (tree t)
1073 {
1074 /* The following re-creates proper variant lists while fixing up
1075 the variant leaders. We do not stream TYPE_NEXT_VARIANT so the
1076 variant list state before fixup is broken. */
1077
1078 /* If we are not our own variant leader link us into our new leaders
1079 variant list. */
1080 if (TYPE_MAIN_VARIANT (t) != t)
1081 {
1082 tree mv = TYPE_MAIN_VARIANT (t);
1083 TYPE_NEXT_VARIANT (t) = TYPE_NEXT_VARIANT (mv);
1084 TYPE_NEXT_VARIANT (mv) = t;
1085 }
1086
1087 /* The following reconstructs the pointer chains
1088 of the new pointed-to type if we are a main variant. We do
1089 not stream those so they are broken before fixup. */
1090 if (TREE_CODE (t) == POINTER_TYPE
1091 && TYPE_MAIN_VARIANT (t) == t)
1092 {
1093 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (TREE_TYPE (t));
1094 TYPE_POINTER_TO (TREE_TYPE (t)) = t;
1095 }
1096 else if (TREE_CODE (t) == REFERENCE_TYPE
1097 && TYPE_MAIN_VARIANT (t) == t)
1098 {
1099 TYPE_NEXT_REF_TO (t) = TYPE_REFERENCE_TO (TREE_TYPE (t));
1100 TYPE_REFERENCE_TO (TREE_TYPE (t)) = t;
1101 }
1102 }
1103
1104
1105 /* We keep prevailing tree SCCs in a hashtable with manual collision
1106 handling (in case all hashes compare the same) and keep the colliding
1107 entries in the tree_scc->next chain. */
1108
1109 struct tree_scc
1110 {
1111 tree_scc *next;
1112 /* Hash of the whole SCC. */
1113 hashval_t hash;
1114 /* Number of trees in the SCC. */
1115 unsigned len;
1116 /* Number of possible entries into the SCC (tree nodes [0..entry_len-1]
1117 which share the same individual tree hash). */
1118 unsigned entry_len;
1119 /* The members of the SCC.
1120 We only need to remember the first entry node candidate for prevailing
1121 SCCs (but of course have access to all entries for SCCs we are
1122 processing).
1123 ??? For prevailing SCCs we really only need hash and the first
1124 entry candidate, but that's too awkward to implement. */
1125 tree entries[1];
1126 };
1127
1128 struct tree_scc_hasher : typed_noop_remove <tree_scc>
1129 {
1130 typedef tree_scc value_type;
1131 typedef tree_scc compare_type;
1132 static inline hashval_t hash (const value_type *);
1133 static inline bool equal (const value_type *, const compare_type *);
1134 };
1135
1136 hashval_t
1137 tree_scc_hasher::hash (const value_type *scc)
1138 {
1139 return scc->hash;
1140 }
1141
1142 bool
1143 tree_scc_hasher::equal (const value_type *scc1, const compare_type *scc2)
1144 {
1145 if (scc1->hash != scc2->hash
1146 || scc1->len != scc2->len
1147 || scc1->entry_len != scc2->entry_len)
1148 return false;
1149 return true;
1150 }
1151
1152 static hash_table <tree_scc_hasher> tree_scc_hash;
1153 static struct obstack tree_scc_hash_obstack;
1154
1155 static unsigned long num_merged_types;
1156 static unsigned long num_prevailing_types;
1157 static unsigned long num_type_scc_trees;
1158 static unsigned long total_scc_size;
1159 static unsigned long num_sccs_read;
1160 static unsigned long total_scc_size_merged;
1161 static unsigned long num_sccs_merged;
1162 static unsigned long num_scc_compares;
1163 static unsigned long num_scc_compare_collisions;
1164
1165
1166 /* Compare the two entries T1 and T2 of two SCCs that are possibly equal,
1167 recursing through in-SCC tree edges. Returns true if the SCCs entered
1168 through T1 and T2 are equal and fills in *MAP with the pairs of
1169 SCC entries we visited, starting with (*MAP)[0] = T1 and (*MAP)[1] = T2. */
1170
1171 static bool
1172 compare_tree_sccs_1 (tree t1, tree t2, tree **map)
1173 {
1174 enum tree_code code;
1175
1176 /* Mark already visited nodes. */
1177 TREE_ASM_WRITTEN (t2) = 1;
1178
1179 /* Push the pair onto map. */
1180 (*map)[0] = t1;
1181 (*map)[1] = t2;
1182 *map = *map + 2;
1183
1184 /* Compare value-fields. */
1185 #define compare_values(X) \
1186 do { \
1187 if (X(t1) != X(t2)) \
1188 return false; \
1189 } while (0)
1190
1191 compare_values (TREE_CODE);
1192 code = TREE_CODE (t1);
1193
1194 if (!TYPE_P (t1))
1195 {
1196 compare_values (TREE_SIDE_EFFECTS);
1197 compare_values (TREE_CONSTANT);
1198 compare_values (TREE_READONLY);
1199 compare_values (TREE_PUBLIC);
1200 }
1201 compare_values (TREE_ADDRESSABLE);
1202 compare_values (TREE_THIS_VOLATILE);
1203 if (DECL_P (t1))
1204 compare_values (DECL_UNSIGNED);
1205 else if (TYPE_P (t1))
1206 compare_values (TYPE_UNSIGNED);
1207 if (TYPE_P (t1))
1208 compare_values (TYPE_ARTIFICIAL);
1209 else
1210 compare_values (TREE_NO_WARNING);
1211 compare_values (TREE_NOTHROW);
1212 compare_values (TREE_STATIC);
1213 if (code != TREE_BINFO)
1214 compare_values (TREE_PRIVATE);
1215 compare_values (TREE_PROTECTED);
1216 compare_values (TREE_DEPRECATED);
1217 if (TYPE_P (t1))
1218 {
1219 compare_values (TYPE_SATURATING);
1220 compare_values (TYPE_ADDR_SPACE);
1221 }
1222 else if (code == SSA_NAME)
1223 compare_values (SSA_NAME_IS_DEFAULT_DEF);
1224
1225 if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
1226 {
1227 if (!wi::eq_p (t1, t2))
1228 return false;
1229 }
1230
1231 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1232 {
1233 /* ??? No suitable compare routine available. */
1234 REAL_VALUE_TYPE r1 = TREE_REAL_CST (t1);
1235 REAL_VALUE_TYPE r2 = TREE_REAL_CST (t2);
1236 if (r1.cl != r2.cl
1237 || r1.decimal != r2.decimal
1238 || r1.sign != r2.sign
1239 || r1.signalling != r2.signalling
1240 || r1.canonical != r2.canonical
1241 || r1.uexp != r2.uexp)
1242 return false;
1243 for (unsigned i = 0; i < SIGSZ; ++i)
1244 if (r1.sig[i] != r2.sig[i])
1245 return false;
1246 }
1247
1248 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1249 if (!fixed_compare (EQ_EXPR,
1250 TREE_FIXED_CST_PTR (t1), TREE_FIXED_CST_PTR (t2)))
1251 return false;
1252
1253
1254 /* We don't want to compare locations, so there is nothing do compare
1255 for TS_DECL_MINIMAL. */
1256
1257 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1258 {
1259 compare_values (DECL_MODE);
1260 compare_values (DECL_NONLOCAL);
1261 compare_values (DECL_VIRTUAL_P);
1262 compare_values (DECL_IGNORED_P);
1263 compare_values (DECL_ABSTRACT);
1264 compare_values (DECL_ARTIFICIAL);
1265 compare_values (DECL_USER_ALIGN);
1266 compare_values (DECL_PRESERVE_P);
1267 compare_values (DECL_EXTERNAL);
1268 compare_values (DECL_GIMPLE_REG_P);
1269 compare_values (DECL_ALIGN);
1270 if (code == LABEL_DECL)
1271 {
1272 compare_values (EH_LANDING_PAD_NR);
1273 compare_values (LABEL_DECL_UID);
1274 }
1275 else if (code == FIELD_DECL)
1276 {
1277 compare_values (DECL_PACKED);
1278 compare_values (DECL_NONADDRESSABLE_P);
1279 compare_values (DECL_OFFSET_ALIGN);
1280 }
1281 else if (code == VAR_DECL)
1282 {
1283 compare_values (DECL_HAS_DEBUG_EXPR_P);
1284 compare_values (DECL_NONLOCAL_FRAME);
1285 }
1286 if (code == RESULT_DECL
1287 || code == PARM_DECL
1288 || code == VAR_DECL)
1289 {
1290 compare_values (DECL_BY_REFERENCE);
1291 if (code == VAR_DECL
1292 || code == PARM_DECL)
1293 compare_values (DECL_HAS_VALUE_EXPR_P);
1294 }
1295 }
1296
1297 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1298 compare_values (DECL_REGISTER);
1299
1300 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1301 {
1302 compare_values (DECL_COMMON);
1303 compare_values (DECL_DLLIMPORT_P);
1304 compare_values (DECL_WEAK);
1305 compare_values (DECL_SEEN_IN_BIND_EXPR_P);
1306 compare_values (DECL_COMDAT);
1307 compare_values (DECL_VISIBILITY);
1308 compare_values (DECL_VISIBILITY_SPECIFIED);
1309 if (code == VAR_DECL)
1310 {
1311 compare_values (DECL_HARD_REGISTER);
1312 /* DECL_IN_TEXT_SECTION is set during final asm output only. */
1313 compare_values (DECL_IN_CONSTANT_POOL);
1314 compare_values (DECL_TLS_MODEL);
1315 }
1316 if (VAR_OR_FUNCTION_DECL_P (t1))
1317 compare_values (DECL_INIT_PRIORITY);
1318 }
1319
1320 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1321 {
1322 compare_values (DECL_BUILT_IN_CLASS);
1323 compare_values (DECL_STATIC_CONSTRUCTOR);
1324 compare_values (DECL_STATIC_DESTRUCTOR);
1325 compare_values (DECL_UNINLINABLE);
1326 compare_values (DECL_POSSIBLY_INLINED);
1327 compare_values (DECL_IS_NOVOPS);
1328 compare_values (DECL_IS_RETURNS_TWICE);
1329 compare_values (DECL_IS_MALLOC);
1330 compare_values (DECL_IS_OPERATOR_NEW);
1331 compare_values (DECL_DECLARED_INLINE_P);
1332 compare_values (DECL_STATIC_CHAIN);
1333 compare_values (DECL_NO_INLINE_WARNING_P);
1334 compare_values (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT);
1335 compare_values (DECL_NO_LIMIT_STACK);
1336 compare_values (DECL_DISREGARD_INLINE_LIMITS);
1337 compare_values (DECL_PURE_P);
1338 compare_values (DECL_LOOPING_CONST_OR_PURE_P);
1339 compare_values (DECL_FINAL_P);
1340 compare_values (DECL_CXX_CONSTRUCTOR_P);
1341 compare_values (DECL_CXX_DESTRUCTOR_P);
1342 if (DECL_BUILT_IN_CLASS (t1) != NOT_BUILT_IN)
1343 compare_values (DECL_FUNCTION_CODE);
1344 if (DECL_STATIC_DESTRUCTOR (t1))
1345 compare_values (DECL_FINI_PRIORITY);
1346 }
1347
1348 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1349 {
1350 compare_values (TYPE_MODE);
1351 compare_values (TYPE_STRING_FLAG);
1352 compare_values (TYPE_NO_FORCE_BLK);
1353 compare_values (TYPE_NEEDS_CONSTRUCTING);
1354 if (RECORD_OR_UNION_TYPE_P (t1))
1355 {
1356 compare_values (TYPE_TRANSPARENT_AGGR);
1357 compare_values (TYPE_FINAL_P);
1358 }
1359 else if (code == ARRAY_TYPE)
1360 compare_values (TYPE_NONALIASED_COMPONENT);
1361 compare_values (TYPE_PACKED);
1362 compare_values (TYPE_RESTRICT);
1363 compare_values (TYPE_USER_ALIGN);
1364 compare_values (TYPE_READONLY);
1365 compare_values (TYPE_PRECISION);
1366 compare_values (TYPE_ALIGN);
1367 compare_values (TYPE_ALIAS_SET);
1368 }
1369
1370 /* We don't want to compare locations, so there is nothing do compare
1371 for TS_EXP. */
1372
1373 /* BLOCKs are function local and we don't merge anything there, so
1374 simply refuse to merge. */
1375 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1376 return false;
1377
1378 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1379 if (strcmp (TRANSLATION_UNIT_LANGUAGE (t1),
1380 TRANSLATION_UNIT_LANGUAGE (t2)) != 0)
1381 return false;
1382
1383 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
1384 if (memcmp (TREE_TARGET_OPTION (t1), TREE_TARGET_OPTION (t2),
1385 sizeof (struct cl_target_option)) != 0)
1386 return false;
1387
1388 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
1389 if (memcmp (TREE_OPTIMIZATION (t1), TREE_OPTIMIZATION (t2),
1390 sizeof (struct cl_optimization)) != 0)
1391 return false;
1392
1393 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1394 if (vec_safe_length (BINFO_BASE_ACCESSES (t1))
1395 != vec_safe_length (BINFO_BASE_ACCESSES (t2)))
1396 return false;
1397
1398 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1399 compare_values (CONSTRUCTOR_NELTS);
1400
1401 if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1402 if (IDENTIFIER_LENGTH (t1) != IDENTIFIER_LENGTH (t2)
1403 || memcmp (IDENTIFIER_POINTER (t1), IDENTIFIER_POINTER (t2),
1404 IDENTIFIER_LENGTH (t1)) != 0)
1405 return false;
1406
1407 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1408 if (TREE_STRING_LENGTH (t1) != TREE_STRING_LENGTH (t2)
1409 || memcmp (TREE_STRING_POINTER (t1), TREE_STRING_POINTER (t2),
1410 TREE_STRING_LENGTH (t1)) != 0)
1411 return false;
1412
1413 if (code == OMP_CLAUSE)
1414 {
1415 compare_values (OMP_CLAUSE_CODE);
1416 switch (OMP_CLAUSE_CODE (t1))
1417 {
1418 case OMP_CLAUSE_DEFAULT:
1419 compare_values (OMP_CLAUSE_DEFAULT_KIND);
1420 break;
1421 case OMP_CLAUSE_SCHEDULE:
1422 compare_values (OMP_CLAUSE_SCHEDULE_KIND);
1423 break;
1424 case OMP_CLAUSE_DEPEND:
1425 compare_values (OMP_CLAUSE_DEPEND_KIND);
1426 break;
1427 case OMP_CLAUSE_MAP:
1428 compare_values (OMP_CLAUSE_MAP_KIND);
1429 break;
1430 case OMP_CLAUSE_PROC_BIND:
1431 compare_values (OMP_CLAUSE_PROC_BIND_KIND);
1432 break;
1433 case OMP_CLAUSE_REDUCTION:
1434 compare_values (OMP_CLAUSE_REDUCTION_CODE);
1435 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_INIT);
1436 compare_values (OMP_CLAUSE_REDUCTION_GIMPLE_MERGE);
1437 break;
1438 default:
1439 break;
1440 }
1441 }
1442
1443 #undef compare_values
1444
1445
1446 /* Compare pointer fields. */
1447
1448 /* Recurse. Search & Replaced from DFS_write_tree_body.
1449 Folding the early checks into the compare_tree_edges recursion
1450 macro makes debugging way quicker as you are able to break on
1451 compare_tree_sccs_1 and simply finish until a call returns false
1452 to spot the SCC members with the difference. */
1453 #define compare_tree_edges(E1, E2) \
1454 do { \
1455 tree t1_ = (E1), t2_ = (E2); \
1456 if (t1_ != t2_ \
1457 && (!t1_ || !t2_ \
1458 || !TREE_VISITED (t2_) \
1459 || (!TREE_ASM_WRITTEN (t2_) \
1460 && !compare_tree_sccs_1 (t1_, t2_, map)))) \
1461 return false; \
1462 /* Only non-NULL trees outside of the SCC may compare equal. */ \
1463 gcc_checking_assert (t1_ != t2_ || (!t2_ || !TREE_VISITED (t2_))); \
1464 } while (0)
1465
1466 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
1467 {
1468 if (code != IDENTIFIER_NODE)
1469 compare_tree_edges (TREE_TYPE (t1), TREE_TYPE (t2));
1470 }
1471
1472 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1473 {
1474 unsigned i;
1475 /* Note that the number of elements for EXPR has already been emitted
1476 in EXPR's header (see streamer_write_tree_header). */
1477 for (i = 0; i < VECTOR_CST_NELTS (t1); ++i)
1478 compare_tree_edges (VECTOR_CST_ELT (t1, i), VECTOR_CST_ELT (t2, i));
1479 }
1480
1481 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
1482 {
1483 compare_tree_edges (TREE_REALPART (t1), TREE_REALPART (t2));
1484 compare_tree_edges (TREE_IMAGPART (t1), TREE_IMAGPART (t2));
1485 }
1486
1487 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
1488 {
1489 compare_tree_edges (DECL_NAME (t1), DECL_NAME (t2));
1490 /* ??? Global decls from different TUs have non-matching
1491 TRANSLATION_UNIT_DECLs. Only consider a small set of
1492 decls equivalent, we should not end up merging others. */
1493 if ((code == TYPE_DECL
1494 || code == NAMESPACE_DECL
1495 || code == IMPORTED_DECL
1496 || code == CONST_DECL
1497 || (VAR_OR_FUNCTION_DECL_P (t1)
1498 && (TREE_PUBLIC (t1) || DECL_EXTERNAL (t1))))
1499 && DECL_FILE_SCOPE_P (t1) && DECL_FILE_SCOPE_P (t2))
1500 ;
1501 else
1502 compare_tree_edges (DECL_CONTEXT (t1), DECL_CONTEXT (t2));
1503 }
1504
1505 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1506 {
1507 compare_tree_edges (DECL_SIZE (t1), DECL_SIZE (t2));
1508 compare_tree_edges (DECL_SIZE_UNIT (t1), DECL_SIZE_UNIT (t2));
1509 compare_tree_edges (DECL_ATTRIBUTES (t1), DECL_ATTRIBUTES (t2));
1510 if ((code == VAR_DECL
1511 || code == PARM_DECL)
1512 && DECL_HAS_VALUE_EXPR_P (t1))
1513 compare_tree_edges (DECL_VALUE_EXPR (t1), DECL_VALUE_EXPR (t2));
1514 if (code == VAR_DECL
1515 && DECL_HAS_DEBUG_EXPR_P (t1))
1516 compare_tree_edges (DECL_DEBUG_EXPR (t1), DECL_DEBUG_EXPR (t2));
1517 /* LTO specific edges. */
1518 if (code != FUNCTION_DECL
1519 && code != TRANSLATION_UNIT_DECL)
1520 compare_tree_edges (DECL_INITIAL (t1), DECL_INITIAL (t2));
1521 }
1522
1523 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
1524 {
1525 if (code == FUNCTION_DECL)
1526 {
1527 tree a1, a2;
1528 for (a1 = DECL_ARGUMENTS (t1), a2 = DECL_ARGUMENTS (t2);
1529 a1 || a2;
1530 a1 = TREE_CHAIN (a1), a2 = TREE_CHAIN (a2))
1531 compare_tree_edges (a1, a2);
1532 compare_tree_edges (DECL_RESULT (t1), DECL_RESULT (t2));
1533 }
1534 else if (code == TYPE_DECL)
1535 compare_tree_edges (DECL_ORIGINAL_TYPE (t1), DECL_ORIGINAL_TYPE (t2));
1536 compare_tree_edges (DECL_VINDEX (t1), DECL_VINDEX (t2));
1537 }
1538
1539 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1540 {
1541 /* Make sure we don't inadvertently set the assembler name. */
1542 if (DECL_ASSEMBLER_NAME_SET_P (t1))
1543 compare_tree_edges (DECL_ASSEMBLER_NAME (t1),
1544 DECL_ASSEMBLER_NAME (t2));
1545 compare_tree_edges (DECL_SECTION_NAME (t1), DECL_SECTION_NAME (t2));
1546 compare_tree_edges (DECL_COMDAT_GROUP (t1), DECL_COMDAT_GROUP (t2));
1547 }
1548
1549 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1550 {
1551 compare_tree_edges (DECL_FIELD_OFFSET (t1), DECL_FIELD_OFFSET (t2));
1552 compare_tree_edges (DECL_BIT_FIELD_TYPE (t1), DECL_BIT_FIELD_TYPE (t2));
1553 compare_tree_edges (DECL_BIT_FIELD_REPRESENTATIVE (t1),
1554 DECL_BIT_FIELD_REPRESENTATIVE (t2));
1555 compare_tree_edges (DECL_FIELD_BIT_OFFSET (t1),
1556 DECL_FIELD_BIT_OFFSET (t2));
1557 compare_tree_edges (DECL_FCONTEXT (t1), DECL_FCONTEXT (t2));
1558 }
1559
1560 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1561 {
1562 compare_tree_edges (DECL_FUNCTION_PERSONALITY (t1),
1563 DECL_FUNCTION_PERSONALITY (t2));
1564 compare_tree_edges (DECL_FUNCTION_SPECIFIC_TARGET (t1),
1565 DECL_FUNCTION_SPECIFIC_TARGET (t2));
1566 compare_tree_edges (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t1),
1567 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t2));
1568 }
1569
1570 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1571 {
1572 compare_tree_edges (TYPE_SIZE (t1), TYPE_SIZE (t2));
1573 compare_tree_edges (TYPE_SIZE_UNIT (t1), TYPE_SIZE_UNIT (t2));
1574 compare_tree_edges (TYPE_ATTRIBUTES (t1), TYPE_ATTRIBUTES (t2));
1575 compare_tree_edges (TYPE_NAME (t1), TYPE_NAME (t2));
1576 /* Do not compare TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
1577 reconstructed during fixup. */
1578 /* Do not compare TYPE_NEXT_VARIANT, we reconstruct the variant lists
1579 during fixup. */
1580 compare_tree_edges (TYPE_MAIN_VARIANT (t1), TYPE_MAIN_VARIANT (t2));
1581 /* ??? Global types from different TUs have non-matching
1582 TRANSLATION_UNIT_DECLs. Still merge them if they are otherwise
1583 equal. */
1584 if (TYPE_FILE_SCOPE_P (t1) && TYPE_FILE_SCOPE_P (t2))
1585 ;
1586 else
1587 compare_tree_edges (TYPE_CONTEXT (t1), TYPE_CONTEXT (t2));
1588 /* TYPE_CANONICAL is re-computed during type merging, so do not
1589 compare it here. */
1590 compare_tree_edges (TYPE_STUB_DECL (t1), TYPE_STUB_DECL (t2));
1591 }
1592
1593 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1594 {
1595 if (code == ENUMERAL_TYPE)
1596 compare_tree_edges (TYPE_VALUES (t1), TYPE_VALUES (t2));
1597 else if (code == ARRAY_TYPE)
1598 compare_tree_edges (TYPE_DOMAIN (t1), TYPE_DOMAIN (t2));
1599 else if (RECORD_OR_UNION_TYPE_P (t1))
1600 {
1601 tree f1, f2;
1602 for (f1 = TYPE_FIELDS (t1), f2 = TYPE_FIELDS (t2);
1603 f1 || f2;
1604 f1 = TREE_CHAIN (f1), f2 = TREE_CHAIN (f2))
1605 compare_tree_edges (f1, f2);
1606 compare_tree_edges (TYPE_BINFO (t1), TYPE_BINFO (t2));
1607 }
1608 else if (code == FUNCTION_TYPE
1609 || code == METHOD_TYPE)
1610 compare_tree_edges (TYPE_ARG_TYPES (t1), TYPE_ARG_TYPES (t2));
1611 if (!POINTER_TYPE_P (t1))
1612 compare_tree_edges (TYPE_MINVAL (t1), TYPE_MINVAL (t2));
1613 compare_tree_edges (TYPE_MAXVAL (t1), TYPE_MAXVAL (t2));
1614 }
1615
1616 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1617 {
1618 compare_tree_edges (TREE_PURPOSE (t1), TREE_PURPOSE (t2));
1619 compare_tree_edges (TREE_VALUE (t1), TREE_VALUE (t2));
1620 compare_tree_edges (TREE_CHAIN (t1), TREE_CHAIN (t2));
1621 }
1622
1623 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1624 for (int i = 0; i < TREE_VEC_LENGTH (t1); i++)
1625 compare_tree_edges (TREE_VEC_ELT (t1, i), TREE_VEC_ELT (t2, i));
1626
1627 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1628 {
1629 for (int i = 0; i < TREE_OPERAND_LENGTH (t1); i++)
1630 compare_tree_edges (TREE_OPERAND (t1, i),
1631 TREE_OPERAND (t2, i));
1632
1633 /* BLOCKs are function local and we don't merge anything there. */
1634 if (TREE_BLOCK (t1) || TREE_BLOCK (t2))
1635 return false;
1636 }
1637
1638 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1639 {
1640 unsigned i;
1641 tree t;
1642 /* Lengths have already been compared above. */
1643 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t1), i, t)
1644 compare_tree_edges (t, BINFO_BASE_BINFO (t2, i));
1645 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (t1), i, t)
1646 compare_tree_edges (t, BINFO_BASE_ACCESS (t2, i));
1647 compare_tree_edges (BINFO_OFFSET (t1), BINFO_OFFSET (t2));
1648 compare_tree_edges (BINFO_VTABLE (t1), BINFO_VTABLE (t2));
1649 compare_tree_edges (BINFO_VPTR_FIELD (t1), BINFO_VPTR_FIELD (t2));
1650 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1651 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
1652 }
1653
1654 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1655 {
1656 unsigned i;
1657 tree index, value;
1658 /* Lengths have already been compared above. */
1659 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t1), i, index, value)
1660 {
1661 compare_tree_edges (index, CONSTRUCTOR_ELT (t2, i)->index);
1662 compare_tree_edges (value, CONSTRUCTOR_ELT (t2, i)->value);
1663 }
1664 }
1665
1666 if (code == OMP_CLAUSE)
1667 {
1668 int i;
1669
1670 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t1)]; i++)
1671 compare_tree_edges (OMP_CLAUSE_OPERAND (t1, i),
1672 OMP_CLAUSE_OPERAND (t2, i));
1673 compare_tree_edges (OMP_CLAUSE_CHAIN (t1), OMP_CLAUSE_CHAIN (t2));
1674 }
1675
1676 #undef compare_tree_edges
1677
1678 return true;
1679 }
1680
1681 /* Compare the tree scc SCC to the prevailing candidate PSCC, filling
1682 out MAP if they are equal. */
1683
1684 static bool
1685 compare_tree_sccs (tree_scc *pscc, tree_scc *scc,
1686 tree *map)
1687 {
1688 /* Assume SCC entry hashes are sorted after their cardinality. Which
1689 means we can simply take the first n-tuple of equal hashes
1690 (which is recorded as entry_len) and do n SCC entry candidate
1691 comparisons. */
1692 for (unsigned i = 0; i < pscc->entry_len; ++i)
1693 {
1694 tree *mapp = map;
1695 num_scc_compare_collisions++;
1696 if (compare_tree_sccs_1 (pscc->entries[0], scc->entries[i], &mapp))
1697 {
1698 /* Equal - no need to reset TREE_VISITED or TREE_ASM_WRITTEN
1699 on the scc as all trees will be freed. */
1700 return true;
1701 }
1702 /* Reset TREE_ASM_WRITTEN on scc for the next compare or in case
1703 the SCC prevails. */
1704 for (unsigned j = 0; j < scc->len; ++j)
1705 TREE_ASM_WRITTEN (scc->entries[j]) = 0;
1706 }
1707
1708 return false;
1709 }
1710
1711 /* QSort sort function to sort a map of two pointers after the 2nd
1712 pointer. */
1713
1714 static int
1715 cmp_tree (const void *p1_, const void *p2_)
1716 {
1717 tree *p1 = (tree *)(const_cast<void *>(p1_));
1718 tree *p2 = (tree *)(const_cast<void *>(p2_));
1719 if (p1[1] == p2[1])
1720 return 0;
1721 return ((uintptr_t)p1[1] < (uintptr_t)p2[1]) ? -1 : 1;
1722 }
1723
1724 /* Try to unify the SCC with nodes FROM to FROM + LEN in CACHE and
1725 hash value SCC_HASH with an already recorded SCC. Return true if
1726 that was successful, otherwise return false. */
1727
1728 static bool
1729 unify_scc (struct streamer_tree_cache_d *cache, unsigned from,
1730 unsigned len, unsigned scc_entry_len, hashval_t scc_hash)
1731 {
1732 bool unified_p = false;
1733 tree_scc *scc
1734 = (tree_scc *) alloca (sizeof (tree_scc) + (len - 1) * sizeof (tree));
1735 scc->next = NULL;
1736 scc->hash = scc_hash;
1737 scc->len = len;
1738 scc->entry_len = scc_entry_len;
1739 for (unsigned i = 0; i < len; ++i)
1740 {
1741 tree t = streamer_tree_cache_get_tree (cache, from + i);
1742 scc->entries[i] = t;
1743 /* Do not merge SCCs with local entities inside them. Also do
1744 not merge TRANSLATION_UNIT_DECLs. */
1745 if (TREE_CODE (t) == TRANSLATION_UNIT_DECL
1746 || (VAR_OR_FUNCTION_DECL_P (t)
1747 && !(TREE_PUBLIC (t) || DECL_EXTERNAL (t)))
1748 || TREE_CODE (t) == LABEL_DECL)
1749 {
1750 /* Avoid doing any work for these cases and do not worry to
1751 record the SCCs for further merging. */
1752 return false;
1753 }
1754 }
1755
1756 /* Look for the list of candidate SCCs to compare against. */
1757 tree_scc **slot;
1758 slot = tree_scc_hash.find_slot_with_hash (scc, scc_hash, INSERT);
1759 if (*slot)
1760 {
1761 /* Try unifying against each candidate. */
1762 num_scc_compares++;
1763
1764 /* Set TREE_VISITED on the scc so we can easily identify tree nodes
1765 outside of the scc when following tree edges. Make sure
1766 that TREE_ASM_WRITTEN is unset so we can use it as 2nd bit
1767 to track whether we visited the SCC member during the compare.
1768 We cannot use TREE_VISITED on the pscc members as the extended
1769 scc and pscc can overlap. */
1770 for (unsigned i = 0; i < scc->len; ++i)
1771 {
1772 TREE_VISITED (scc->entries[i]) = 1;
1773 gcc_checking_assert (!TREE_ASM_WRITTEN (scc->entries[i]));
1774 }
1775
1776 tree *map = XALLOCAVEC (tree, 2 * len);
1777 for (tree_scc *pscc = *slot; pscc; pscc = pscc->next)
1778 {
1779 if (!compare_tree_sccs (pscc, scc, map))
1780 continue;
1781
1782 /* Found an equal SCC. */
1783 unified_p = true;
1784 num_scc_compare_collisions--;
1785 num_sccs_merged++;
1786 total_scc_size_merged += len;
1787
1788 #ifdef ENABLE_CHECKING
1789 for (unsigned i = 0; i < len; ++i)
1790 {
1791 tree t = map[2*i+1];
1792 enum tree_code code = TREE_CODE (t);
1793 /* IDENTIFIER_NODEs should be singletons and are merged by the
1794 streamer. The others should be singletons, too, and we
1795 should not merge them in any way. */
1796 gcc_assert (code != TRANSLATION_UNIT_DECL
1797 && code != IDENTIFIER_NODE
1798 && !streamer_handle_as_builtin_p (t));
1799 }
1800 #endif
1801
1802 /* Fixup the streamer cache with the prevailing nodes according
1803 to the tree node mapping computed by compare_tree_sccs. */
1804 if (len == 1)
1805 streamer_tree_cache_replace_tree (cache, pscc->entries[0], from);
1806 else
1807 {
1808 tree *map2 = XALLOCAVEC (tree, 2 * len);
1809 for (unsigned i = 0; i < len; ++i)
1810 {
1811 map2[i*2] = (tree)(uintptr_t)(from + i);
1812 map2[i*2+1] = scc->entries[i];
1813 }
1814 qsort (map2, len, 2 * sizeof (tree), cmp_tree);
1815 qsort (map, len, 2 * sizeof (tree), cmp_tree);
1816 for (unsigned i = 0; i < len; ++i)
1817 streamer_tree_cache_replace_tree (cache, map[2*i],
1818 (uintptr_t)map2[2*i]);
1819 }
1820
1821 /* Free the tree nodes from the read SCC. */
1822 for (unsigned i = 0; i < len; ++i)
1823 {
1824 if (TYPE_P (scc->entries[i]))
1825 num_merged_types++;
1826 ggc_free (scc->entries[i]);
1827 }
1828
1829 break;
1830 }
1831
1832 /* Reset TREE_VISITED if we didn't unify the SCC with another. */
1833 if (!unified_p)
1834 for (unsigned i = 0; i < scc->len; ++i)
1835 TREE_VISITED (scc->entries[i]) = 0;
1836 }
1837
1838 /* If we didn't unify it to any candidate duplicate the relevant
1839 pieces to permanent storage and link it into the chain. */
1840 if (!unified_p)
1841 {
1842 tree_scc *pscc
1843 = XOBNEWVAR (&tree_scc_hash_obstack, tree_scc, sizeof (tree_scc));
1844 memcpy (pscc, scc, sizeof (tree_scc));
1845 pscc->next = (*slot);
1846 *slot = pscc;
1847 }
1848 return unified_p;
1849 }
1850
1851
1852 /* Read all the symbols from buffer DATA, using descriptors in DECL_DATA.
1853 RESOLUTIONS is the set of symbols picked by the linker (read from the
1854 resolution file when the linker plugin is being used). */
1855
1856 static void
1857 lto_read_decls (struct lto_file_decl_data *decl_data, const void *data,
1858 vec<ld_plugin_symbol_resolution_t> resolutions)
1859 {
1860 const struct lto_decl_header *header = (const struct lto_decl_header *) data;
1861 const int decl_offset = sizeof (struct lto_decl_header);
1862 const int main_offset = decl_offset + header->decl_state_size;
1863 const int string_offset = main_offset + header->main_size;
1864 struct lto_input_block ib_main;
1865 struct data_in *data_in;
1866 unsigned int i;
1867 const uint32_t *data_ptr, *data_end;
1868 uint32_t num_decl_states;
1869
1870 LTO_INIT_INPUT_BLOCK (ib_main, (const char *) data + main_offset, 0,
1871 header->main_size);
1872
1873 data_in = lto_data_in_create (decl_data, (const char *) data + string_offset,
1874 header->string_size, resolutions);
1875
1876 /* We do not uniquify the pre-loaded cache entries, those are middle-end
1877 internal types that should not be merged. */
1878
1879 /* Read the global declarations and types. */
1880 while (ib_main.p < ib_main.len)
1881 {
1882 tree t;
1883 unsigned from = data_in->reader_cache->nodes.length ();
1884 /* Read and uniquify SCCs as in the input stream. */
1885 enum LTO_tags tag = streamer_read_record_start (&ib_main);
1886 if (tag == LTO_tree_scc)
1887 {
1888 unsigned len_;
1889 unsigned scc_entry_len;
1890 hashval_t scc_hash = lto_input_scc (&ib_main, data_in, &len_,
1891 &scc_entry_len);
1892 unsigned len = data_in->reader_cache->nodes.length () - from;
1893 gcc_assert (len == len_);
1894
1895 total_scc_size += len;
1896 num_sccs_read++;
1897
1898 /* We have the special case of size-1 SCCs that are pre-merged
1899 by means of identifier and string sharing for example.
1900 ??? Maybe we should avoid streaming those as SCCs. */
1901 tree first = streamer_tree_cache_get_tree (data_in->reader_cache,
1902 from);
1903 if (len == 1
1904 && (TREE_CODE (first) == IDENTIFIER_NODE
1905 || TREE_CODE (first) == INTEGER_CST
1906 || TREE_CODE (first) == TRANSLATION_UNIT_DECL
1907 || streamer_handle_as_builtin_p (first)))
1908 continue;
1909
1910 /* Try to unify the SCC with already existing ones. */
1911 if (!flag_ltrans
1912 && unify_scc (data_in->reader_cache, from,
1913 len, scc_entry_len, scc_hash))
1914 continue;
1915
1916 /* Do remaining fixup tasks for prevailing nodes. */
1917 bool seen_type = false;
1918 for (unsigned i = 0; i < len; ++i)
1919 {
1920 tree t = streamer_tree_cache_get_tree (data_in->reader_cache,
1921 from + i);
1922 /* Reconstruct the type variant and pointer-to/reference-to
1923 chains. */
1924 if (TYPE_P (t))
1925 {
1926 seen_type = true;
1927 num_prevailing_types++;
1928 lto_fixup_prevailing_type (t);
1929 }
1930 /* Compute the canonical type of all types.
1931 ??? Should be able to assert that !TYPE_CANONICAL. */
1932 if (TYPE_P (t) && !TYPE_CANONICAL (t))
1933 gimple_register_canonical_type (t);
1934 /* Link shared INTEGER_CSTs into TYPE_CACHED_VALUEs of its
1935 type which is also member of this SCC. */
1936 if (TREE_CODE (t) == INTEGER_CST
1937 && !TREE_OVERFLOW (t))
1938 cache_integer_cst (t);
1939 /* Register TYPE_DECLs with the debuginfo machinery. */
1940 if (!flag_wpa
1941 && TREE_CODE (t) == TYPE_DECL)
1942 debug_hooks->type_decl (t, !DECL_FILE_SCOPE_P (t));
1943 if (!flag_ltrans)
1944 {
1945 /* Register variables and functions with the
1946 symbol table. */
1947 if (TREE_CODE (t) == VAR_DECL)
1948 lto_register_var_decl_in_symtab (data_in, t, from + i);
1949 else if (TREE_CODE (t) == FUNCTION_DECL
1950 && !DECL_BUILT_IN (t))
1951 lto_register_function_decl_in_symtab (data_in, t, from + i);
1952 /* Scan the tree for references to global functions or
1953 variables and record those for later fixup. */
1954 if (mentions_vars_p (t))
1955 vec_safe_push (tree_with_vars, t);
1956 }
1957 }
1958 if (seen_type)
1959 num_type_scc_trees += len;
1960 }
1961 else
1962 {
1963 /* Pickle stray references. */
1964 t = lto_input_tree_1 (&ib_main, data_in, tag, 0);
1965 gcc_assert (t && data_in->reader_cache->nodes.length () == from);
1966 }
1967 }
1968
1969 /* Read in lto_in_decl_state objects. */
1970 data_ptr = (const uint32_t *) ((const char*) data + decl_offset);
1971 data_end =
1972 (const uint32_t *) ((const char*) data_ptr + header->decl_state_size);
1973 num_decl_states = *data_ptr++;
1974
1975 gcc_assert (num_decl_states > 0);
1976 decl_data->global_decl_state = lto_new_in_decl_state ();
1977 data_ptr = lto_read_in_decl_state (data_in, data_ptr,
1978 decl_data->global_decl_state);
1979
1980 /* Read in per-function decl states and enter them in hash table. */
1981 decl_data->function_decl_states =
1982 htab_create_ggc (37, lto_hash_in_decl_state, lto_eq_in_decl_state, NULL);
1983
1984 for (i = 1; i < num_decl_states; i++)
1985 {
1986 struct lto_in_decl_state *state = lto_new_in_decl_state ();
1987 void **slot;
1988
1989 data_ptr = lto_read_in_decl_state (data_in, data_ptr, state);
1990 slot = htab_find_slot (decl_data->function_decl_states, state, INSERT);
1991 gcc_assert (*slot == NULL);
1992 *slot = state;
1993 }
1994
1995 if (data_ptr != data_end)
1996 internal_error ("bytecode stream: garbage at the end of symbols section");
1997
1998 /* Set the current decl state to be the global state. */
1999 decl_data->current_decl_state = decl_data->global_decl_state;
2000
2001 lto_data_in_delete (data_in);
2002 }
2003
2004 /* Custom version of strtoll, which is not portable. */
2005
2006 static HOST_WIDEST_INT
2007 lto_parse_hex (const char *p)
2008 {
2009 HOST_WIDEST_INT ret = 0;
2010
2011 for (; *p != '\0'; ++p)
2012 {
2013 char c = *p;
2014 unsigned char part;
2015 ret <<= 4;
2016 if (c >= '0' && c <= '9')
2017 part = c - '0';
2018 else if (c >= 'a' && c <= 'f')
2019 part = c - 'a' + 10;
2020 else if (c >= 'A' && c <= 'F')
2021 part = c - 'A' + 10;
2022 else
2023 internal_error ("could not parse hex number");
2024 ret |= part;
2025 }
2026
2027 return ret;
2028 }
2029
2030 /* Read resolution for file named FILE_NAME. The resolution is read from
2031 RESOLUTION. */
2032
2033 static void
2034 lto_resolution_read (splay_tree file_ids, FILE *resolution, lto_file *file)
2035 {
2036 /* We require that objects in the resolution file are in the same
2037 order as the lto1 command line. */
2038 unsigned int name_len;
2039 char *obj_name;
2040 unsigned int num_symbols;
2041 unsigned int i;
2042 struct lto_file_decl_data *file_data;
2043 splay_tree_node nd = NULL;
2044
2045 if (!resolution)
2046 return;
2047
2048 name_len = strlen (file->filename);
2049 obj_name = XNEWVEC (char, name_len + 1);
2050 fscanf (resolution, " "); /* Read white space. */
2051
2052 fread (obj_name, sizeof (char), name_len, resolution);
2053 obj_name[name_len] = '\0';
2054 if (filename_cmp (obj_name, file->filename) != 0)
2055 internal_error ("unexpected file name %s in linker resolution file. "
2056 "Expected %s", obj_name, file->filename);
2057 if (file->offset != 0)
2058 {
2059 int t;
2060 char offset_p[17];
2061 HOST_WIDEST_INT offset;
2062 t = fscanf (resolution, "@0x%16s", offset_p);
2063 if (t != 1)
2064 internal_error ("could not parse file offset");
2065 offset = lto_parse_hex (offset_p);
2066 if (offset != file->offset)
2067 internal_error ("unexpected offset");
2068 }
2069
2070 free (obj_name);
2071
2072 fscanf (resolution, "%u", &num_symbols);
2073
2074 for (i = 0; i < num_symbols; i++)
2075 {
2076 int t;
2077 unsigned index;
2078 unsigned HOST_WIDE_INT id;
2079 char r_str[27];
2080 enum ld_plugin_symbol_resolution r = (enum ld_plugin_symbol_resolution) 0;
2081 unsigned int j;
2082 unsigned int lto_resolution_str_len =
2083 sizeof (lto_resolution_str) / sizeof (char *);
2084 res_pair rp;
2085
2086 t = fscanf (resolution, "%u " HOST_WIDE_INT_PRINT_HEX_PURE " %26s %*[^\n]\n",
2087 &index, &id, r_str);
2088 if (t != 3)
2089 internal_error ("invalid line in the resolution file");
2090
2091 for (j = 0; j < lto_resolution_str_len; j++)
2092 {
2093 if (strcmp (lto_resolution_str[j], r_str) == 0)
2094 {
2095 r = (enum ld_plugin_symbol_resolution) j;
2096 break;
2097 }
2098 }
2099 if (j == lto_resolution_str_len)
2100 internal_error ("invalid resolution in the resolution file");
2101
2102 if (!(nd && lto_splay_tree_id_equal_p (nd->key, id)))
2103 {
2104 nd = lto_splay_tree_lookup (file_ids, id);
2105 if (nd == NULL)
2106 internal_error ("resolution sub id %wx not in object file", id);
2107 }
2108
2109 file_data = (struct lto_file_decl_data *)nd->value;
2110 /* The indexes are very sparse. To save memory save them in a compact
2111 format that is only unpacked later when the subfile is processed. */
2112 rp.res = r;
2113 rp.index = index;
2114 file_data->respairs.safe_push (rp);
2115 if (file_data->max_index < index)
2116 file_data->max_index = index;
2117 }
2118 }
2119
2120 /* List of file_decl_datas */
2121 struct file_data_list
2122 {
2123 struct lto_file_decl_data *first, *last;
2124 };
2125
2126 /* Is the name for a id'ed LTO section? */
2127
2128 static int
2129 lto_section_with_id (const char *name, unsigned HOST_WIDE_INT *id)
2130 {
2131 const char *s;
2132
2133 if (strncmp (name, LTO_SECTION_NAME_PREFIX, strlen (LTO_SECTION_NAME_PREFIX)))
2134 return 0;
2135 s = strrchr (name, '.');
2136 return s && sscanf (s, "." HOST_WIDE_INT_PRINT_HEX_PURE, id) == 1;
2137 }
2138
2139 /* Create file_data of each sub file id */
2140
2141 static int
2142 create_subid_section_table (struct lto_section_slot *ls, splay_tree file_ids,
2143 struct file_data_list *list)
2144 {
2145 struct lto_section_slot s_slot, *new_slot;
2146 unsigned HOST_WIDE_INT id;
2147 splay_tree_node nd;
2148 void **hash_slot;
2149 char *new_name;
2150 struct lto_file_decl_data *file_data;
2151
2152 if (!lto_section_with_id (ls->name, &id))
2153 return 1;
2154
2155 /* Find hash table of sub module id */
2156 nd = lto_splay_tree_lookup (file_ids, id);
2157 if (nd != NULL)
2158 {
2159 file_data = (struct lto_file_decl_data *)nd->value;
2160 }
2161 else
2162 {
2163 file_data = ggc_alloc_lto_file_decl_data ();
2164 memset(file_data, 0, sizeof (struct lto_file_decl_data));
2165 file_data->id = id;
2166 file_data->section_hash_table = lto_obj_create_section_hash_table ();;
2167 lto_splay_tree_insert (file_ids, id, file_data);
2168
2169 /* Maintain list in linker order */
2170 if (!list->first)
2171 list->first = file_data;
2172 if (list->last)
2173 list->last->next = file_data;
2174 list->last = file_data;
2175 }
2176
2177 /* Copy section into sub module hash table */
2178 new_name = XDUPVEC (char, ls->name, strlen (ls->name) + 1);
2179 s_slot.name = new_name;
2180 hash_slot = htab_find_slot (file_data->section_hash_table, &s_slot, INSERT);
2181 gcc_assert (*hash_slot == NULL);
2182
2183 new_slot = XDUP (struct lto_section_slot, ls);
2184 new_slot->name = new_name;
2185 *hash_slot = new_slot;
2186 return 1;
2187 }
2188
2189 /* Read declarations and other initializations for a FILE_DATA. */
2190
2191 static void
2192 lto_file_finalize (struct lto_file_decl_data *file_data, lto_file *file)
2193 {
2194 const char *data;
2195 size_t len;
2196 vec<ld_plugin_symbol_resolution_t>
2197 resolutions = vNULL;
2198 int i;
2199 res_pair *rp;
2200
2201 /* Create vector for fast access of resolution. We do this lazily
2202 to save memory. */
2203 resolutions.safe_grow_cleared (file_data->max_index + 1);
2204 for (i = 0; file_data->respairs.iterate (i, &rp); i++)
2205 resolutions[rp->index] = rp->res;
2206 file_data->respairs.release ();
2207
2208 file_data->renaming_hash_table = lto_create_renaming_table ();
2209 file_data->file_name = file->filename;
2210 data = lto_get_section_data (file_data, LTO_section_decls, NULL, &len);
2211 if (data == NULL)
2212 {
2213 internal_error ("cannot read LTO decls from %s", file_data->file_name);
2214 return;
2215 }
2216 /* Frees resolutions */
2217 lto_read_decls (file_data, data, resolutions);
2218 lto_free_section_data (file_data, LTO_section_decls, NULL, data, len);
2219 }
2220
2221 /* Finalize FILE_DATA in FILE and increase COUNT. */
2222
2223 static int
2224 lto_create_files_from_ids (lto_file *file, struct lto_file_decl_data *file_data,
2225 int *count)
2226 {
2227 lto_file_finalize (file_data, file);
2228 if (cgraph_dump_file)
2229 fprintf (cgraph_dump_file, "Creating file %s with sub id " HOST_WIDE_INT_PRINT_HEX "\n",
2230 file_data->file_name, file_data->id);
2231 (*count)++;
2232 return 0;
2233 }
2234
2235 /* Generate a TREE representation for all types and external decls
2236 entities in FILE.
2237
2238 Read all of the globals out of the file. Then read the cgraph
2239 and process the .o index into the cgraph nodes so that it can open
2240 the .o file to load the functions and ipa information. */
2241
2242 static struct lto_file_decl_data *
2243 lto_file_read (lto_file *file, FILE *resolution_file, int *count)
2244 {
2245 struct lto_file_decl_data *file_data = NULL;
2246 splay_tree file_ids;
2247 htab_t section_hash_table;
2248 struct lto_section_slot *section;
2249 struct file_data_list file_list;
2250 struct lto_section_list section_list;
2251
2252 memset (&section_list, 0, sizeof (struct lto_section_list));
2253 section_hash_table = lto_obj_build_section_table (file, &section_list);
2254
2255 /* Find all sub modules in the object and put their sections into new hash
2256 tables in a splay tree. */
2257 file_ids = lto_splay_tree_new ();
2258 memset (&file_list, 0, sizeof (struct file_data_list));
2259 for (section = section_list.first; section != NULL; section = section->next)
2260 create_subid_section_table (section, file_ids, &file_list);
2261
2262 /* Add resolutions to file ids */
2263 lto_resolution_read (file_ids, resolution_file, file);
2264
2265 /* Finalize each lto file for each submodule in the merged object */
2266 for (file_data = file_list.first; file_data != NULL; file_data = file_data->next)
2267 lto_create_files_from_ids (file, file_data, count);
2268
2269 splay_tree_delete (file_ids);
2270 htab_delete (section_hash_table);
2271
2272 return file_list.first;
2273 }
2274
2275 #if HAVE_MMAP_FILE && HAVE_SYSCONF && defined _SC_PAGE_SIZE
2276 #define LTO_MMAP_IO 1
2277 #endif
2278
2279 #if LTO_MMAP_IO
2280 /* Page size of machine is used for mmap and munmap calls. */
2281 static size_t page_mask;
2282 #endif
2283
2284 /* Get the section data of length LEN from FILENAME starting at
2285 OFFSET. The data segment must be freed by the caller when the
2286 caller is finished. Returns NULL if all was not well. */
2287
2288 static char *
2289 lto_read_section_data (struct lto_file_decl_data *file_data,
2290 intptr_t offset, size_t len)
2291 {
2292 char *result;
2293 static int fd = -1;
2294 static char *fd_name;
2295 #if LTO_MMAP_IO
2296 intptr_t computed_len;
2297 intptr_t computed_offset;
2298 intptr_t diff;
2299 #endif
2300
2301 /* Keep a single-entry file-descriptor cache. The last file we
2302 touched will get closed at exit.
2303 ??? Eventually we want to add a more sophisticated larger cache
2304 or rather fix function body streaming to not stream them in
2305 practically random order. */
2306 if (fd != -1
2307 && filename_cmp (fd_name, file_data->file_name) != 0)
2308 {
2309 free (fd_name);
2310 close (fd);
2311 fd = -1;
2312 }
2313 if (fd == -1)
2314 {
2315 fd = open (file_data->file_name, O_RDONLY|O_BINARY);
2316 if (fd == -1)
2317 {
2318 fatal_error ("Cannot open %s", file_data->file_name);
2319 return NULL;
2320 }
2321 fd_name = xstrdup (file_data->file_name);
2322 }
2323
2324 #if LTO_MMAP_IO
2325 if (!page_mask)
2326 {
2327 size_t page_size = sysconf (_SC_PAGE_SIZE);
2328 page_mask = ~(page_size - 1);
2329 }
2330
2331 computed_offset = offset & page_mask;
2332 diff = offset - computed_offset;
2333 computed_len = len + diff;
2334
2335 result = (char *) mmap (NULL, computed_len, PROT_READ, MAP_PRIVATE,
2336 fd, computed_offset);
2337 if (result == MAP_FAILED)
2338 {
2339 fatal_error ("Cannot map %s", file_data->file_name);
2340 return NULL;
2341 }
2342
2343 return result + diff;
2344 #else
2345 result = (char *) xmalloc (len);
2346 if (lseek (fd, offset, SEEK_SET) != offset
2347 || read (fd, result, len) != (ssize_t) len)
2348 {
2349 free (result);
2350 fatal_error ("Cannot read %s", file_data->file_name);
2351 result = NULL;
2352 }
2353 #ifdef __MINGW32__
2354 /* Native windows doesn't supports delayed unlink on opened file. So
2355 we close file here again. This produces higher I/O load, but at least
2356 it prevents to have dangling file handles preventing unlink. */
2357 free (fd_name);
2358 fd_name = NULL;
2359 close (fd);
2360 fd = -1;
2361 #endif
2362 return result;
2363 #endif
2364 }
2365
2366
2367 /* Get the section data from FILE_DATA of SECTION_TYPE with NAME.
2368 NAME will be NULL unless the section type is for a function
2369 body. */
2370
2371 static const char *
2372 get_section_data (struct lto_file_decl_data *file_data,
2373 enum lto_section_type section_type,
2374 const char *name,
2375 size_t *len)
2376 {
2377 htab_t section_hash_table = file_data->section_hash_table;
2378 struct lto_section_slot *f_slot;
2379 struct lto_section_slot s_slot;
2380 const char *section_name = lto_get_section_name (section_type, name, file_data);
2381 char *data = NULL;
2382
2383 *len = 0;
2384 s_slot.name = section_name;
2385 f_slot = (struct lto_section_slot *) htab_find (section_hash_table, &s_slot);
2386 if (f_slot)
2387 {
2388 data = lto_read_section_data (file_data, f_slot->start, f_slot->len);
2389 *len = f_slot->len;
2390 }
2391
2392 free (CONST_CAST (char *, section_name));
2393 return data;
2394 }
2395
2396
2397 /* Free the section data from FILE_DATA of SECTION_TYPE with NAME that
2398 starts at OFFSET and has LEN bytes. */
2399
2400 static void
2401 free_section_data (struct lto_file_decl_data *file_data ATTRIBUTE_UNUSED,
2402 enum lto_section_type section_type ATTRIBUTE_UNUSED,
2403 const char *name ATTRIBUTE_UNUSED,
2404 const char *offset, size_t len ATTRIBUTE_UNUSED)
2405 {
2406 #if LTO_MMAP_IO
2407 intptr_t computed_len;
2408 intptr_t computed_offset;
2409 intptr_t diff;
2410 #endif
2411
2412 #if LTO_MMAP_IO
2413 computed_offset = ((intptr_t) offset) & page_mask;
2414 diff = (intptr_t) offset - computed_offset;
2415 computed_len = len + diff;
2416
2417 munmap ((caddr_t) computed_offset, computed_len);
2418 #else
2419 free (CONST_CAST(char *, offset));
2420 #endif
2421 }
2422
2423 static lto_file *current_lto_file;
2424
2425 /* Helper for qsort; compare partitions and return one with smaller size.
2426 We sort from greatest to smallest so parallel build doesn't stale on the
2427 longest compilation being executed too late. */
2428
2429 static int
2430 cmp_partitions_size (const void *a, const void *b)
2431 {
2432 const struct ltrans_partition_def *pa
2433 = *(struct ltrans_partition_def *const *)a;
2434 const struct ltrans_partition_def *pb
2435 = *(struct ltrans_partition_def *const *)b;
2436 return pb->insns - pa->insns;
2437 }
2438
2439 /* Helper for qsort; compare partitions and return one with smaller order. */
2440
2441 static int
2442 cmp_partitions_order (const void *a, const void *b)
2443 {
2444 const struct ltrans_partition_def *pa
2445 = *(struct ltrans_partition_def *const *)a;
2446 const struct ltrans_partition_def *pb
2447 = *(struct ltrans_partition_def *const *)b;
2448 int ordera = -1, orderb = -1;
2449
2450 if (lto_symtab_encoder_size (pa->encoder))
2451 ordera = lto_symtab_encoder_deref (pa->encoder, 0)->order;
2452 if (lto_symtab_encoder_size (pb->encoder))
2453 orderb = lto_symtab_encoder_deref (pb->encoder, 0)->order;
2454 return orderb - ordera;
2455 }
2456
2457 /* Write all output files in WPA mode and the file with the list of
2458 LTRANS units. */
2459
2460 static void
2461 lto_wpa_write_files (void)
2462 {
2463 unsigned i, n_sets;
2464 lto_file *file;
2465 ltrans_partition part;
2466 FILE *ltrans_output_list_stream;
2467 char *temp_filename;
2468 size_t blen;
2469
2470 /* Open the LTRANS output list. */
2471 if (!ltrans_output_list)
2472 fatal_error ("no LTRANS output list filename provided");
2473 ltrans_output_list_stream = fopen (ltrans_output_list, "w");
2474 if (ltrans_output_list_stream == NULL)
2475 fatal_error ("opening LTRANS output list %s: %m", ltrans_output_list);
2476
2477 timevar_push (TV_WHOPR_WPA);
2478
2479 FOR_EACH_VEC_ELT (ltrans_partitions, i, part)
2480 lto_stats.num_output_symtab_nodes += lto_symtab_encoder_size (part->encoder);
2481
2482 /* Find out statics that need to be promoted
2483 to globals with hidden visibility because they are accessed from multiple
2484 partitions. */
2485 lto_promote_cross_file_statics ();
2486
2487 timevar_pop (TV_WHOPR_WPA);
2488
2489 timevar_push (TV_WHOPR_WPA_IO);
2490
2491 /* Generate a prefix for the LTRANS unit files. */
2492 blen = strlen (ltrans_output_list);
2493 temp_filename = (char *) xmalloc (blen + sizeof ("2147483648.o"));
2494 strcpy (temp_filename, ltrans_output_list);
2495 if (blen > sizeof (".out")
2496 && strcmp (temp_filename + blen - sizeof (".out") + 1,
2497 ".out") == 0)
2498 temp_filename[blen - sizeof (".out") + 1] = '\0';
2499 blen = strlen (temp_filename);
2500
2501 n_sets = ltrans_partitions.length ();
2502
2503 /* Sort partitions by size so small ones are compiled last.
2504 FIXME: Even when not reordering we may want to output one list for parallel make
2505 and other for final link command. */
2506 ltrans_partitions.qsort (flag_toplevel_reorder
2507 ? cmp_partitions_size
2508 : cmp_partitions_order);
2509 for (i = 0; i < n_sets; i++)
2510 {
2511 size_t len;
2512 ltrans_partition part = ltrans_partitions[i];
2513
2514 /* Write all the nodes in SET. */
2515 sprintf (temp_filename + blen, "%u.o", i);
2516 file = lto_obj_file_open (temp_filename, true);
2517 if (!file)
2518 fatal_error ("lto_obj_file_open() failed");
2519
2520 if (!quiet_flag)
2521 fprintf (stderr, " %s (%s %i insns)", temp_filename, part->name, part->insns);
2522 if (cgraph_dump_file)
2523 {
2524 lto_symtab_encoder_iterator lsei;
2525
2526 fprintf (cgraph_dump_file, "Writing partition %s to file %s, %i insns\n",
2527 part->name, temp_filename, part->insns);
2528 fprintf (cgraph_dump_file, " Symbols in partition: ");
2529 for (lsei = lsei_start_in_partition (part->encoder); !lsei_end_p (lsei);
2530 lsei_next_in_partition (&lsei))
2531 {
2532 symtab_node *node = lsei_node (lsei);
2533 fprintf (cgraph_dump_file, "%s ", node->asm_name ());
2534 }
2535 fprintf (cgraph_dump_file, "\n Symbols in boundary: ");
2536 for (lsei = lsei_start (part->encoder); !lsei_end_p (lsei);
2537 lsei_next (&lsei))
2538 {
2539 symtab_node *node = lsei_node (lsei);
2540 if (!lto_symtab_encoder_in_partition_p (part->encoder, node))
2541 {
2542 fprintf (cgraph_dump_file, "%s ", node->asm_name ());
2543 cgraph_node *cnode = dyn_cast <cgraph_node> (node);
2544 if (cnode
2545 && lto_symtab_encoder_encode_body_p (part->encoder, cnode))
2546 fprintf (cgraph_dump_file, "(body included)");
2547 else
2548 {
2549 varpool_node *vnode = dyn_cast <varpool_node> (node);
2550 if (vnode
2551 && lto_symtab_encoder_encode_initializer_p (part->encoder, vnode))
2552 fprintf (cgraph_dump_file, "(initializer included)");
2553 }
2554 }
2555 }
2556 fprintf (cgraph_dump_file, "\n");
2557 }
2558 gcc_checking_assert (lto_symtab_encoder_size (part->encoder) || !i);
2559
2560 lto_set_current_out_file (file);
2561
2562 ipa_write_optimization_summaries (part->encoder);
2563
2564 lto_set_current_out_file (NULL);
2565 lto_obj_file_close (file);
2566 free (file);
2567 part->encoder = NULL;
2568
2569 len = strlen (temp_filename);
2570 if (fwrite (temp_filename, 1, len, ltrans_output_list_stream) < len
2571 || fwrite ("\n", 1, 1, ltrans_output_list_stream) < 1)
2572 fatal_error ("writing to LTRANS output list %s: %m",
2573 ltrans_output_list);
2574 }
2575
2576 lto_stats.num_output_files += n_sets;
2577
2578 /* Close the LTRANS output list. */
2579 if (fclose (ltrans_output_list_stream))
2580 fatal_error ("closing LTRANS output list %s: %m", ltrans_output_list);
2581
2582 free_ltrans_partitions();
2583 free (temp_filename);
2584
2585 timevar_pop (TV_WHOPR_WPA_IO);
2586 }
2587
2588
2589 /* If TT is a variable or function decl replace it with its
2590 prevailing variant. */
2591 #define LTO_SET_PREVAIL(tt) \
2592 do {\
2593 if ((tt) && VAR_OR_FUNCTION_DECL_P (tt) \
2594 && (TREE_PUBLIC (tt) || DECL_EXTERNAL (tt))) \
2595 { \
2596 tt = lto_symtab_prevailing_decl (tt); \
2597 fixed = true; \
2598 } \
2599 } while (0)
2600
2601 /* Ensure that TT isn't a replacable var of function decl. */
2602 #define LTO_NO_PREVAIL(tt) \
2603 gcc_assert (!(tt) || !VAR_OR_FUNCTION_DECL_P (tt))
2604
2605 /* Given a tree T replace all fields referring to variables or functions
2606 with their prevailing variant. */
2607 static void
2608 lto_fixup_prevailing_decls (tree t)
2609 {
2610 enum tree_code code = TREE_CODE (t);
2611 bool fixed = false;
2612
2613 gcc_checking_assert (code != CONSTRUCTOR && code != TREE_BINFO);
2614 LTO_NO_PREVAIL (TREE_TYPE (t));
2615 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2616 LTO_NO_PREVAIL (TREE_CHAIN (t));
2617 if (DECL_P (t))
2618 {
2619 LTO_NO_PREVAIL (DECL_NAME (t));
2620 LTO_SET_PREVAIL (DECL_CONTEXT (t));
2621 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2622 {
2623 LTO_SET_PREVAIL (DECL_SIZE (t));
2624 LTO_SET_PREVAIL (DECL_SIZE_UNIT (t));
2625 LTO_SET_PREVAIL (DECL_INITIAL (t));
2626 LTO_NO_PREVAIL (DECL_ATTRIBUTES (t));
2627 LTO_SET_PREVAIL (DECL_ABSTRACT_ORIGIN (t));
2628 }
2629 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2630 {
2631 LTO_NO_PREVAIL (t->decl_with_vis.assembler_name);
2632 LTO_NO_PREVAIL (DECL_SECTION_NAME (t));
2633 }
2634 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2635 {
2636 LTO_NO_PREVAIL (DECL_ARGUMENT_FLD (t));
2637 LTO_NO_PREVAIL (DECL_RESULT_FLD (t));
2638 LTO_NO_PREVAIL (DECL_VINDEX (t));
2639 }
2640 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2641 LTO_SET_PREVAIL (DECL_FUNCTION_PERSONALITY (t));
2642 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2643 {
2644 LTO_SET_PREVAIL (DECL_FIELD_OFFSET (t));
2645 LTO_NO_PREVAIL (DECL_BIT_FIELD_TYPE (t));
2646 LTO_NO_PREVAIL (DECL_QUALIFIER (t));
2647 LTO_NO_PREVAIL (DECL_FIELD_BIT_OFFSET (t));
2648 LTO_NO_PREVAIL (DECL_FCONTEXT (t));
2649 }
2650 }
2651 else if (TYPE_P (t))
2652 {
2653 LTO_NO_PREVAIL (TYPE_CACHED_VALUES (t));
2654 LTO_SET_PREVAIL (TYPE_SIZE (t));
2655 LTO_SET_PREVAIL (TYPE_SIZE_UNIT (t));
2656 LTO_NO_PREVAIL (TYPE_ATTRIBUTES (t));
2657 LTO_NO_PREVAIL (TYPE_NAME (t));
2658
2659 LTO_SET_PREVAIL (TYPE_MINVAL (t));
2660 LTO_SET_PREVAIL (TYPE_MAXVAL (t));
2661 LTO_NO_PREVAIL (t->type_non_common.binfo);
2662
2663 LTO_SET_PREVAIL (TYPE_CONTEXT (t));
2664
2665 LTO_NO_PREVAIL (TYPE_CANONICAL (t));
2666 LTO_NO_PREVAIL (TYPE_MAIN_VARIANT (t));
2667 LTO_NO_PREVAIL (TYPE_NEXT_VARIANT (t));
2668 }
2669 else if (EXPR_P (t))
2670 {
2671 int i;
2672 for (i = TREE_OPERAND_LENGTH (t) - 1; i >= 0; --i)
2673 LTO_SET_PREVAIL (TREE_OPERAND (t, i));
2674 }
2675 else
2676 {
2677 switch (code)
2678 {
2679 case TREE_LIST:
2680 LTO_SET_PREVAIL (TREE_VALUE (t));
2681 LTO_SET_PREVAIL (TREE_PURPOSE (t));
2682 LTO_NO_PREVAIL (TREE_PURPOSE (t));
2683 break;
2684 default:
2685 gcc_unreachable ();
2686 }
2687 }
2688 /* If we fixed nothing, then we missed something seen by
2689 mentions_vars_p. */
2690 gcc_checking_assert (fixed);
2691 }
2692 #undef LTO_SET_PREVAIL
2693 #undef LTO_NO_PREVAIL
2694
2695 /* Helper function of lto_fixup_decls. Walks the var and fn streams in STATE,
2696 replaces var and function decls with the corresponding prevailing def. */
2697
2698 static void
2699 lto_fixup_state (struct lto_in_decl_state *state)
2700 {
2701 unsigned i, si;
2702 struct lto_tree_ref_table *table;
2703
2704 /* Although we only want to replace FUNCTION_DECLs and VAR_DECLs,
2705 we still need to walk from all DECLs to find the reachable
2706 FUNCTION_DECLs and VAR_DECLs. */
2707 for (si = 0; si < LTO_N_DECL_STREAMS; si++)
2708 {
2709 table = &state->streams[si];
2710 for (i = 0; i < table->size; i++)
2711 {
2712 tree *tp = table->trees + i;
2713 if (VAR_OR_FUNCTION_DECL_P (*tp)
2714 && (TREE_PUBLIC (*tp) || DECL_EXTERNAL (*tp)))
2715 *tp = lto_symtab_prevailing_decl (*tp);
2716 }
2717 }
2718 }
2719
2720 /* A callback of htab_traverse. Just extracts a state from SLOT
2721 and calls lto_fixup_state. */
2722
2723 static int
2724 lto_fixup_state_aux (void **slot, void *aux ATTRIBUTE_UNUSED)
2725 {
2726 struct lto_in_decl_state *state = (struct lto_in_decl_state *) *slot;
2727 lto_fixup_state (state);
2728 return 1;
2729 }
2730
2731 /* Fix the decls from all FILES. Replaces each decl with the corresponding
2732 prevailing one. */
2733
2734 static void
2735 lto_fixup_decls (struct lto_file_decl_data **files)
2736 {
2737 unsigned int i;
2738 tree t;
2739
2740 if (tree_with_vars)
2741 FOR_EACH_VEC_ELT ((*tree_with_vars), i, t)
2742 lto_fixup_prevailing_decls (t);
2743
2744 for (i = 0; files[i]; i++)
2745 {
2746 struct lto_file_decl_data *file = files[i];
2747 struct lto_in_decl_state *state = file->global_decl_state;
2748 lto_fixup_state (state);
2749
2750 htab_traverse (file->function_decl_states, lto_fixup_state_aux, NULL);
2751 }
2752 }
2753
2754 static GTY((length ("lto_stats.num_input_files + 1"))) struct lto_file_decl_data **all_file_decl_data;
2755
2756 /* Turn file datas for sub files into a single array, so that they look
2757 like separate files for further passes. */
2758
2759 static void
2760 lto_flatten_files (struct lto_file_decl_data **orig, int count, int last_file_ix)
2761 {
2762 struct lto_file_decl_data *n, *next;
2763 int i, k;
2764
2765 lto_stats.num_input_files = count;
2766 all_file_decl_data
2767 = ggc_alloc_cleared_vec_lto_file_decl_data_ptr (count + 1);
2768 /* Set the hooks so that all of the ipa passes can read in their data. */
2769 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2770 for (i = 0, k = 0; i < last_file_ix; i++)
2771 {
2772 for (n = orig[i]; n != NULL; n = next)
2773 {
2774 all_file_decl_data[k++] = n;
2775 next = n->next;
2776 n->next = NULL;
2777 }
2778 }
2779 all_file_decl_data[k] = NULL;
2780 gcc_assert (k == count);
2781 }
2782
2783 /* Input file data before flattening (i.e. splitting them to subfiles to support
2784 incremental linking. */
2785 static int real_file_count;
2786 static GTY((length ("real_file_count + 1"))) struct lto_file_decl_data **real_file_decl_data;
2787
2788 static void print_lto_report_1 (void);
2789
2790 /* Read all the symbols from the input files FNAMES. NFILES is the
2791 number of files requested in the command line. Instantiate a
2792 global call graph by aggregating all the sub-graphs found in each
2793 file. */
2794
2795 static void
2796 read_cgraph_and_symbols (unsigned nfiles, const char **fnames)
2797 {
2798 unsigned int i, last_file_ix;
2799 FILE *resolution;
2800 int count = 0;
2801 struct lto_file_decl_data **decl_data;
2802 void **res;
2803 symtab_node *snode;
2804
2805 init_cgraph ();
2806
2807 timevar_push (TV_IPA_LTO_DECL_IN);
2808
2809 real_file_decl_data
2810 = decl_data = ggc_alloc_cleared_vec_lto_file_decl_data_ptr (nfiles + 1);
2811 real_file_count = nfiles;
2812
2813 /* Read the resolution file. */
2814 resolution = NULL;
2815 if (resolution_file_name)
2816 {
2817 int t;
2818 unsigned num_objects;
2819
2820 resolution = fopen (resolution_file_name, "r");
2821 if (resolution == NULL)
2822 fatal_error ("could not open symbol resolution file: %m");
2823
2824 t = fscanf (resolution, "%u", &num_objects);
2825 gcc_assert (t == 1);
2826
2827 /* True, since the plugin splits the archives. */
2828 gcc_assert (num_objects == nfiles);
2829 }
2830 cgraph_state = CGRAPH_LTO_STREAMING;
2831
2832 canonical_type_hash_cache = new pointer_map <hashval_t>;
2833 gimple_canonical_types = htab_create_ggc (16381, gimple_canonical_type_hash,
2834 gimple_canonical_type_eq, 0);
2835 gcc_obstack_init (&tree_scc_hash_obstack);
2836 tree_scc_hash.create (4096);
2837
2838 /* Register the common node types with the canonical type machinery so
2839 we properly share alias-sets across languages and TUs. Do not
2840 expose the common nodes as type merge target - those that should be
2841 are already exposed so by pre-loading the LTO streamer caches.
2842 Do two passes - first clear TYPE_CANONICAL and then re-compute it. */
2843 for (i = 0; i < itk_none; ++i)
2844 lto_register_canonical_types (integer_types[i], true);
2845 for (i = 0; i < stk_type_kind_last; ++i)
2846 lto_register_canonical_types (sizetype_tab[i], true);
2847 for (i = 0; i < TI_MAX; ++i)
2848 lto_register_canonical_types (global_trees[i], true);
2849 for (i = 0; i < itk_none; ++i)
2850 lto_register_canonical_types (integer_types[i], false);
2851 for (i = 0; i < stk_type_kind_last; ++i)
2852 lto_register_canonical_types (sizetype_tab[i], false);
2853 for (i = 0; i < TI_MAX; ++i)
2854 lto_register_canonical_types (global_trees[i], false);
2855
2856 if (!quiet_flag)
2857 fprintf (stderr, "Reading object files:");
2858
2859 /* Read all of the object files specified on the command line. */
2860 for (i = 0, last_file_ix = 0; i < nfiles; ++i)
2861 {
2862 struct lto_file_decl_data *file_data = NULL;
2863 if (!quiet_flag)
2864 {
2865 fprintf (stderr, " %s", fnames[i]);
2866 fflush (stderr);
2867 }
2868
2869 current_lto_file = lto_obj_file_open (fnames[i], false);
2870 if (!current_lto_file)
2871 break;
2872
2873 file_data = lto_file_read (current_lto_file, resolution, &count);
2874 if (!file_data)
2875 {
2876 lto_obj_file_close (current_lto_file);
2877 free (current_lto_file);
2878 current_lto_file = NULL;
2879 break;
2880 }
2881
2882 decl_data[last_file_ix++] = file_data;
2883
2884 lto_obj_file_close (current_lto_file);
2885 free (current_lto_file);
2886 current_lto_file = NULL;
2887 }
2888
2889 lto_flatten_files (decl_data, count, last_file_ix);
2890 lto_stats.num_input_files = count;
2891 ggc_free(decl_data);
2892 real_file_decl_data = NULL;
2893
2894 if (resolution_file_name)
2895 fclose (resolution);
2896
2897 /* Show the LTO report before launching LTRANS. */
2898 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
2899 print_lto_report_1 ();
2900
2901 /* Free gimple type merging datastructures. */
2902 tree_scc_hash.dispose ();
2903 obstack_free (&tree_scc_hash_obstack, NULL);
2904 htab_delete (gimple_canonical_types);
2905 gimple_canonical_types = NULL;
2906 delete canonical_type_hash_cache;
2907 canonical_type_hash_cache = NULL;
2908 ggc_collect ();
2909
2910 /* Set the hooks so that all of the ipa passes can read in their data. */
2911 lto_set_in_hooks (all_file_decl_data, get_section_data, free_section_data);
2912
2913 timevar_pop (TV_IPA_LTO_DECL_IN);
2914
2915 if (!quiet_flag)
2916 fprintf (stderr, "\nReading the callgraph\n");
2917
2918 timevar_push (TV_IPA_LTO_CGRAPH_IO);
2919 /* Read the symtab. */
2920 input_symtab ();
2921
2922 /* Store resolutions into the symbol table. */
2923
2924 FOR_EACH_SYMBOL (snode)
2925 if (symtab_real_symbol_p (snode)
2926 && snode->lto_file_data
2927 && snode->lto_file_data->resolution_map
2928 && (res = pointer_map_contains (snode->lto_file_data->resolution_map,
2929 snode->decl)))
2930 snode->resolution
2931 = (enum ld_plugin_symbol_resolution)(size_t)*res;
2932 for (i = 0; all_file_decl_data[i]; i++)
2933 if (all_file_decl_data[i]->resolution_map)
2934 {
2935 pointer_map_destroy (all_file_decl_data[i]->resolution_map);
2936 all_file_decl_data[i]->resolution_map = NULL;
2937 }
2938
2939 timevar_pop (TV_IPA_LTO_CGRAPH_IO);
2940
2941 if (!quiet_flag)
2942 fprintf (stderr, "Merging declarations\n");
2943
2944 timevar_push (TV_IPA_LTO_DECL_MERGE);
2945 /* Merge global decls. In ltrans mode we read merged cgraph, we do not
2946 need to care about resolving symbols again, we only need to replace
2947 duplicated declarations read from the callgraph and from function
2948 sections. */
2949 if (!flag_ltrans)
2950 {
2951 lto_symtab_merge_decls ();
2952
2953 /* If there were errors during symbol merging bail out, we have no
2954 good way to recover here. */
2955 if (seen_error ())
2956 fatal_error ("errors during merging of translation units");
2957
2958 /* Fixup all decls. */
2959 lto_fixup_decls (all_file_decl_data);
2960 }
2961 if (tree_with_vars)
2962 ggc_free (tree_with_vars);
2963 tree_with_vars = NULL;
2964 ggc_collect ();
2965
2966 timevar_pop (TV_IPA_LTO_DECL_MERGE);
2967 /* Each pass will set the appropriate timer. */
2968
2969 if (!quiet_flag)
2970 fprintf (stderr, "Reading summaries\n");
2971
2972 /* Read the IPA summary data. */
2973 if (flag_ltrans)
2974 ipa_read_optimization_summaries ();
2975 else
2976 ipa_read_summaries ();
2977
2978 for (i = 0; all_file_decl_data[i]; i++)
2979 {
2980 gcc_assert (all_file_decl_data[i]->symtab_node_encoder);
2981 lto_symtab_encoder_delete (all_file_decl_data[i]->symtab_node_encoder);
2982 all_file_decl_data[i]->symtab_node_encoder = NULL;
2983 lto_free_function_in_decl_state (all_file_decl_data[i]->global_decl_state);
2984 all_file_decl_data[i]->global_decl_state = NULL;
2985 all_file_decl_data[i]->current_decl_state = NULL;
2986 }
2987
2988 /* Finally merge the cgraph according to the decl merging decisions. */
2989 timevar_push (TV_IPA_LTO_CGRAPH_MERGE);
2990 if (cgraph_dump_file)
2991 {
2992 fprintf (cgraph_dump_file, "Before merging:\n");
2993 dump_symtab (cgraph_dump_file);
2994 }
2995 lto_symtab_merge_symbols ();
2996 ggc_collect ();
2997 cgraph_state = CGRAPH_STATE_IPA_SSA;
2998
2999 timevar_pop (TV_IPA_LTO_CGRAPH_MERGE);
3000
3001 timevar_push (TV_IPA_LTO_DECL_INIT_IO);
3002
3003 /* Indicate that the cgraph is built and ready. */
3004 cgraph_function_flags_ready = true;
3005
3006 timevar_pop (TV_IPA_LTO_DECL_INIT_IO);
3007 ggc_free (all_file_decl_data);
3008 all_file_decl_data = NULL;
3009 }
3010
3011
3012 /* Materialize all the bodies for all the nodes in the callgraph. */
3013
3014 static void
3015 materialize_cgraph (void)
3016 {
3017 tree decl;
3018 struct cgraph_node *node;
3019 unsigned i;
3020 timevar_id_t lto_timer;
3021
3022 if (!quiet_flag)
3023 fprintf (stderr,
3024 flag_wpa ? "Materializing decls:" : "Reading function bodies:");
3025
3026 /* Now that we have input the cgraph, we need to clear all of the aux
3027 nodes and read the functions if we are not running in WPA mode. */
3028 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3029
3030 FOR_EACH_FUNCTION (node)
3031 {
3032 if (node->lto_file_data)
3033 {
3034 lto_materialize_function (node);
3035 lto_stats.num_input_cgraph_nodes++;
3036 }
3037 }
3038
3039 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3040
3041 /* Start the appropriate timer depending on the mode that we are
3042 operating in. */
3043 lto_timer = (flag_wpa) ? TV_WHOPR_WPA
3044 : (flag_ltrans) ? TV_WHOPR_LTRANS
3045 : TV_LTO;
3046 timevar_push (lto_timer);
3047
3048 current_function_decl = NULL;
3049 set_cfun (NULL);
3050
3051 /* Inform the middle end about the global variables we have seen. */
3052 FOR_EACH_VEC_ELT (*lto_global_var_decls, i, decl)
3053 rest_of_decl_compilation (decl, 1, 0);
3054
3055 if (!quiet_flag)
3056 fprintf (stderr, "\n");
3057
3058 timevar_pop (lto_timer);
3059 }
3060
3061
3062 /* Show various memory usage statistics related to LTO. */
3063 static void
3064 print_lto_report_1 (void)
3065 {
3066 const char *pfx = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS";
3067 fprintf (stderr, "%s statistics\n", pfx);
3068
3069 fprintf (stderr, "[%s] read %lu SCCs of average size %f\n",
3070 pfx, num_sccs_read, total_scc_size / (double)num_sccs_read);
3071 fprintf (stderr, "[%s] %lu tree bodies read in total\n", pfx, total_scc_size);
3072 if (flag_wpa && tree_scc_hash.is_created ())
3073 {
3074 fprintf (stderr, "[%s] tree SCC table: size %ld, %ld elements, "
3075 "collision ratio: %f\n", pfx,
3076 (long) tree_scc_hash.size (),
3077 (long) tree_scc_hash.elements (),
3078 tree_scc_hash.collisions ());
3079 hash_table<tree_scc_hasher>::iterator hiter;
3080 tree_scc *scc, *max_scc = NULL;
3081 unsigned max_length = 0;
3082 FOR_EACH_HASH_TABLE_ELEMENT (tree_scc_hash, scc, x, hiter)
3083 {
3084 unsigned length = 0;
3085 tree_scc *s = scc;
3086 for (; s; s = s->next)
3087 length++;
3088 if (length > max_length)
3089 {
3090 max_length = length;
3091 max_scc = scc;
3092 }
3093 }
3094 fprintf (stderr, "[%s] tree SCC max chain length %u (size %u)\n",
3095 pfx, max_length, max_scc->len);
3096 fprintf (stderr, "[%s] Compared %lu SCCs, %lu collisions (%f)\n", pfx,
3097 num_scc_compares, num_scc_compare_collisions,
3098 num_scc_compare_collisions / (double) num_scc_compares);
3099 fprintf (stderr, "[%s] Merged %lu SCCs\n", pfx, num_sccs_merged);
3100 fprintf (stderr, "[%s] Merged %lu tree bodies\n", pfx,
3101 total_scc_size_merged);
3102 fprintf (stderr, "[%s] Merged %lu types\n", pfx, num_merged_types);
3103 fprintf (stderr, "[%s] %lu types prevailed (%lu associated trees)\n",
3104 pfx, num_prevailing_types, num_type_scc_trees);
3105 fprintf (stderr, "[%s] GIMPLE canonical type table: size %ld, "
3106 "%ld elements, %ld searches, %ld collisions (ratio: %f)\n", pfx,
3107 (long) htab_size (gimple_canonical_types),
3108 (long) htab_elements (gimple_canonical_types),
3109 (long) gimple_canonical_types->searches,
3110 (long) gimple_canonical_types->collisions,
3111 htab_collisions (gimple_canonical_types));
3112 fprintf (stderr, "[%s] GIMPLE canonical type pointer-map: "
3113 "%lu elements, %ld searches\n", pfx,
3114 num_canonical_type_hash_entries,
3115 num_canonical_type_hash_queries);
3116 }
3117
3118 print_lto_report (pfx);
3119 }
3120
3121 /* Perform whole program analysis (WPA) on the callgraph and write out the
3122 optimization plan. */
3123
3124 static void
3125 do_whole_program_analysis (void)
3126 {
3127 symtab_node *node;
3128
3129 timevar_start (TV_PHASE_OPT_GEN);
3130
3131 /* Note that since we are in WPA mode, materialize_cgraph will not
3132 actually read in all the function bodies. It only materializes
3133 the decls and cgraph nodes so that analysis can be performed. */
3134 materialize_cgraph ();
3135
3136 /* Reading in the cgraph uses different timers, start timing WPA now. */
3137 timevar_push (TV_WHOPR_WPA);
3138
3139 if (pre_ipa_mem_report)
3140 {
3141 fprintf (stderr, "Memory consumption before IPA\n");
3142 dump_memory_report (false);
3143 }
3144
3145 cgraph_function_flags_ready = true;
3146
3147 if (cgraph_dump_file)
3148 dump_symtab (cgraph_dump_file);
3149 bitmap_obstack_initialize (NULL);
3150 cgraph_state = CGRAPH_STATE_IPA_SSA;
3151
3152 execute_ipa_pass_list (g->get_passes ()->all_regular_ipa_passes);
3153 symtab_remove_unreachable_nodes (false, dump_file);
3154
3155 if (cgraph_dump_file)
3156 {
3157 fprintf (cgraph_dump_file, "Optimized ");
3158 dump_symtab (cgraph_dump_file);
3159 }
3160 #ifdef ENABLE_CHECKING
3161 verify_cgraph ();
3162 #endif
3163 bitmap_obstack_release (NULL);
3164
3165 /* We are about to launch the final LTRANS phase, stop the WPA timer. */
3166 timevar_pop (TV_WHOPR_WPA);
3167
3168 timevar_push (TV_WHOPR_PARTITIONING);
3169 if (flag_lto_partition_1to1)
3170 lto_1_to_1_map ();
3171 else if (flag_lto_partition_max)
3172 lto_max_map ();
3173 else
3174 lto_balanced_map ();
3175
3176 /* AUX pointers are used by partitioning code to bookkeep number of
3177 partitions symbol is in. This is no longer needed. */
3178 FOR_EACH_SYMBOL (node)
3179 node->aux = NULL;
3180
3181 lto_stats.num_cgraph_partitions += ltrans_partitions.length ();
3182 timevar_pop (TV_WHOPR_PARTITIONING);
3183
3184 timevar_stop (TV_PHASE_OPT_GEN);
3185 timevar_start (TV_PHASE_STREAM_OUT);
3186
3187 if (!quiet_flag)
3188 {
3189 fprintf (stderr, "\nStreaming out");
3190 fflush (stderr);
3191 }
3192 lto_wpa_write_files ();
3193 if (!quiet_flag)
3194 fprintf (stderr, "\n");
3195
3196 timevar_stop (TV_PHASE_STREAM_OUT);
3197
3198 ggc_collect ();
3199 if (post_ipa_mem_report)
3200 {
3201 fprintf (stderr, "Memory consumption after IPA\n");
3202 dump_memory_report (false);
3203 }
3204
3205 /* Show the LTO report before launching LTRANS. */
3206 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3207 print_lto_report_1 ();
3208 if (mem_report_wpa)
3209 dump_memory_report (true);
3210 }
3211
3212
3213 static GTY(()) tree lto_eh_personality_decl;
3214
3215 /* Return the LTO personality function decl. */
3216
3217 tree
3218 lto_eh_personality (void)
3219 {
3220 if (!lto_eh_personality_decl)
3221 {
3222 /* Use the first personality DECL for our personality if we don't
3223 support multiple ones. This ensures that we don't artificially
3224 create the need for them in a single-language program. */
3225 if (first_personality_decl && !dwarf2out_do_cfi_asm ())
3226 lto_eh_personality_decl = first_personality_decl;
3227 else
3228 lto_eh_personality_decl = lhd_gcc_personality ();
3229 }
3230
3231 return lto_eh_personality_decl;
3232 }
3233
3234 /* Set the process name based on the LTO mode. */
3235
3236 static void
3237 lto_process_name (void)
3238 {
3239 if (flag_lto)
3240 setproctitle ("lto1-lto");
3241 if (flag_wpa)
3242 setproctitle ("lto1-wpa");
3243 if (flag_ltrans)
3244 setproctitle ("lto1-ltrans");
3245 }
3246
3247
3248 /* Initialize the LTO front end. */
3249
3250 static void
3251 lto_init (void)
3252 {
3253 lto_process_name ();
3254 lto_streamer_hooks_init ();
3255 lto_reader_init ();
3256 lto_set_in_hooks (NULL, get_section_data, free_section_data);
3257 memset (&lto_stats, 0, sizeof (lto_stats));
3258 bitmap_obstack_initialize (NULL);
3259 gimple_register_cfg_hooks ();
3260 }
3261
3262
3263 /* Main entry point for the GIMPLE front end. This front end has
3264 three main personalities:
3265
3266 - LTO (-flto). All the object files on the command line are
3267 loaded in memory and processed as a single translation unit.
3268 This is the traditional link-time optimization behavior.
3269
3270 - WPA (-fwpa). Only the callgraph and summary information for
3271 files in the command file are loaded. A single callgraph
3272 (without function bodies) is instantiated for the whole set of
3273 files. IPA passes are only allowed to analyze the call graph
3274 and make transformation decisions. The callgraph is
3275 partitioned, each partition is written to a new object file
3276 together with the transformation decisions.
3277
3278 - LTRANS (-fltrans). Similar to -flto but it prevents the IPA
3279 summary files from running again. Since WPA computed summary
3280 information and decided what transformations to apply, LTRANS
3281 simply applies them. */
3282
3283 void
3284 lto_main (void)
3285 {
3286 /* LTO is called as a front end, even though it is not a front end.
3287 Because it is called as a front end, TV_PHASE_PARSING and
3288 TV_PARSE_GLOBAL are active, and we need to turn them off while
3289 doing LTO. Later we turn them back on so they are active up in
3290 toplev.c. */
3291 timevar_pop (TV_PARSE_GLOBAL);
3292 timevar_stop (TV_PHASE_PARSING);
3293
3294 timevar_start (TV_PHASE_SETUP);
3295
3296 /* Initialize the LTO front end. */
3297 lto_init ();
3298
3299 timevar_stop (TV_PHASE_SETUP);
3300 timevar_start (TV_PHASE_STREAM_IN);
3301
3302 /* Read all the symbols and call graph from all the files in the
3303 command line. */
3304 read_cgraph_and_symbols (num_in_fnames, in_fnames);
3305
3306 timevar_stop (TV_PHASE_STREAM_IN);
3307
3308 if (!seen_error ())
3309 {
3310 /* If WPA is enabled analyze the whole call graph and create an
3311 optimization plan. Otherwise, read in all the function
3312 bodies and continue with optimization. */
3313 if (flag_wpa)
3314 do_whole_program_analysis ();
3315 else
3316 {
3317 struct varpool_node *vnode;
3318
3319 timevar_start (TV_PHASE_OPT_GEN);
3320
3321 materialize_cgraph ();
3322 if (!flag_ltrans)
3323 lto_promote_statics_nonwpa ();
3324
3325 /* Let the middle end know that we have read and merged all of
3326 the input files. */
3327 compile ();
3328
3329 timevar_stop (TV_PHASE_OPT_GEN);
3330
3331 /* FIXME lto, if the processes spawned by WPA fail, we miss
3332 the chance to print WPA's report, so WPA will call
3333 print_lto_report before launching LTRANS. If LTRANS was
3334 launched directly by the driver we would not need to do
3335 this. */
3336 if (flag_lto_report || (flag_wpa && flag_lto_report_wpa))
3337 print_lto_report_1 ();
3338
3339 /* Record the global variables. */
3340 FOR_EACH_DEFINED_VARIABLE (vnode)
3341 vec_safe_push (lto_global_var_decls, vnode->decl);
3342 }
3343 }
3344
3345 /* Here we make LTO pretend to be a parser. */
3346 timevar_start (TV_PHASE_PARSING);
3347 timevar_push (TV_PARSE_GLOBAL);
3348 }
3349
3350 #include "gt-lto-lto.h"