1 /* Write and read the cgraph to the memory mapped representation of a
4 Copyright 2009, 2010, 2011 Free Software Foundation, Inc.
5 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
25 #include "coretypes.h"
33 #include "langhooks.h"
34 #include "basic-block.h"
35 #include "tree-flow.h"
39 #include "diagnostic-core.h"
44 #include "pointer-set.h"
45 #include "lto-streamer.h"
48 static void output_varpool (cgraph_node_set
, varpool_node_set
);
49 static void output_cgraph_opt_summary (cgraph_node_set set
);
50 static void input_cgraph_opt_summary (VEC (cgraph_node_ptr
, heap
) * nodes
);
53 /* Cgraph streaming is organized as set of record whose type
54 is indicated by a tag. */
57 /* Must leave 0 for the stopper. */
59 /* Cgraph node without body available. */
60 LTO_cgraph_unavail_node
= 1,
61 /* Cgraph node with function body. */
62 LTO_cgraph_analyzed_node
,
65 LTO_cgraph_indirect_edge
68 /* Create a new cgraph encoder. */
71 lto_cgraph_encoder_new (void)
73 lto_cgraph_encoder_t encoder
= XCNEW (struct lto_cgraph_encoder_d
);
74 encoder
->map
= pointer_map_create ();
75 encoder
->nodes
= NULL
;
76 encoder
->body
= pointer_set_create ();
81 /* Delete ENCODER and its components. */
84 lto_cgraph_encoder_delete (lto_cgraph_encoder_t encoder
)
86 VEC_free (cgraph_node_ptr
, heap
, encoder
->nodes
);
87 pointer_map_destroy (encoder
->map
);
88 pointer_set_destroy (encoder
->body
);
93 /* Return the existing reference number of NODE in the cgraph encoder in
94 output block OB. Assign a new reference if this is the first time
98 lto_cgraph_encoder_encode (lto_cgraph_encoder_t encoder
,
99 struct cgraph_node
*node
)
104 slot
= pointer_map_contains (encoder
->map
, node
);
107 ref
= VEC_length (cgraph_node_ptr
, encoder
->nodes
);
108 slot
= pointer_map_insert (encoder
->map
, node
);
109 *slot
= (void *) (intptr_t) ref
;
110 VEC_safe_push (cgraph_node_ptr
, heap
, encoder
->nodes
, node
);
113 ref
= (int) (intptr_t) *slot
;
118 #define LCC_NOT_FOUND (-1)
120 /* Look up NODE in encoder. Return NODE's reference if it has been encoded
121 or LCC_NOT_FOUND if it is not there. */
124 lto_cgraph_encoder_lookup (lto_cgraph_encoder_t encoder
,
125 struct cgraph_node
*node
)
127 void **slot
= pointer_map_contains (encoder
->map
, node
);
128 return (slot
? (int) (intptr_t) *slot
: LCC_NOT_FOUND
);
132 /* Return the cgraph node corresponding to REF using ENCODER. */
135 lto_cgraph_encoder_deref (lto_cgraph_encoder_t encoder
, int ref
)
137 if (ref
== LCC_NOT_FOUND
)
140 return VEC_index (cgraph_node_ptr
, encoder
->nodes
, ref
);
144 /* Return TRUE if we should encode initializer of NODE (if any). */
147 lto_cgraph_encoder_encode_body_p (lto_cgraph_encoder_t encoder
,
148 struct cgraph_node
*node
)
150 return pointer_set_contains (encoder
->body
, node
);
153 /* Return TRUE if we should encode body of NODE (if any). */
156 lto_set_cgraph_encoder_encode_body (lto_cgraph_encoder_t encoder
,
157 struct cgraph_node
*node
)
159 pointer_set_insert (encoder
->body
, node
);
162 /* Create a new varpool encoder. */
164 lto_varpool_encoder_t
165 lto_varpool_encoder_new (void)
167 lto_varpool_encoder_t encoder
= XCNEW (struct lto_varpool_encoder_d
);
168 encoder
->map
= pointer_map_create ();
169 encoder
->initializer
= pointer_set_create ();
170 encoder
->nodes
= NULL
;
175 /* Delete ENCODER and its components. */
178 lto_varpool_encoder_delete (lto_varpool_encoder_t encoder
)
180 VEC_free (varpool_node_ptr
, heap
, encoder
->nodes
);
181 pointer_map_destroy (encoder
->map
);
182 pointer_set_destroy (encoder
->initializer
);
187 /* Return the existing reference number of NODE in the varpool encoder in
188 output block OB. Assign a new reference if this is the first time
192 lto_varpool_encoder_encode (lto_varpool_encoder_t encoder
,
193 struct varpool_node
*node
)
198 slot
= pointer_map_contains (encoder
->map
, node
);
201 ref
= VEC_length (varpool_node_ptr
, encoder
->nodes
);
202 slot
= pointer_map_insert (encoder
->map
, node
);
203 *slot
= (void *) (intptr_t) ref
;
204 VEC_safe_push (varpool_node_ptr
, heap
, encoder
->nodes
, node
);
207 ref
= (int) (intptr_t) *slot
;
212 /* Look up NODE in encoder. Return NODE's reference if it has been encoded
213 or LCC_NOT_FOUND if it is not there. */
216 lto_varpool_encoder_lookup (lto_varpool_encoder_t encoder
,
217 struct varpool_node
*node
)
219 void **slot
= pointer_map_contains (encoder
->map
, node
);
220 return (slot
? (int) (intptr_t) *slot
: LCC_NOT_FOUND
);
224 /* Return the varpool node corresponding to REF using ENCODER. */
226 struct varpool_node
*
227 lto_varpool_encoder_deref (lto_varpool_encoder_t encoder
, int ref
)
229 if (ref
== LCC_NOT_FOUND
)
232 return VEC_index (varpool_node_ptr
, encoder
->nodes
, ref
);
236 /* Return TRUE if we should encode initializer of NODE (if any). */
239 lto_varpool_encoder_encode_initializer_p (lto_varpool_encoder_t encoder
,
240 struct varpool_node
*node
)
242 return pointer_set_contains (encoder
->initializer
, node
);
245 /* Return TRUE if we should encode initializer of NODE (if any). */
248 lto_set_varpool_encoder_encode_initializer (lto_varpool_encoder_t encoder
,
249 struct varpool_node
*node
)
251 pointer_set_insert (encoder
->initializer
, node
);
254 /* Output the cgraph EDGE to OB using ENCODER. */
257 lto_output_edge (struct lto_simple_output_block
*ob
, struct cgraph_edge
*edge
,
258 lto_cgraph_encoder_t encoder
)
264 if (edge
->indirect_unknown_callee
)
265 lto_output_uleb128_stream (ob
->main_stream
, LTO_cgraph_indirect_edge
);
267 lto_output_uleb128_stream (ob
->main_stream
, LTO_cgraph_edge
);
269 ref
= lto_cgraph_encoder_lookup (encoder
, edge
->caller
);
270 gcc_assert (ref
!= LCC_NOT_FOUND
);
271 lto_output_sleb128_stream (ob
->main_stream
, ref
);
273 if (!edge
->indirect_unknown_callee
)
275 ref
= lto_cgraph_encoder_lookup (encoder
, edge
->callee
);
276 gcc_assert (ref
!= LCC_NOT_FOUND
);
277 lto_output_sleb128_stream (ob
->main_stream
, ref
);
280 lto_output_sleb128_stream (ob
->main_stream
, edge
->count
);
282 bp
= bitpack_create (ob
->main_stream
);
283 uid
= (!gimple_has_body_p (edge
->caller
->decl
)
284 ? edge
->lto_stmt_uid
: gimple_uid (edge
->call_stmt
));
285 bp_pack_value (&bp
, uid
, HOST_BITS_PER_INT
);
286 bp_pack_value (&bp
, edge
->inline_failed
, HOST_BITS_PER_INT
);
287 bp_pack_value (&bp
, edge
->frequency
, HOST_BITS_PER_INT
);
288 bp_pack_value (&bp
, edge
->call_stmt_size
, HOST_BITS_PER_INT
);
289 bp_pack_value (&bp
, edge
->call_stmt_time
, HOST_BITS_PER_INT
);
290 bp_pack_value (&bp
, edge
->loop_nest
, 30);
291 bp_pack_value (&bp
, edge
->indirect_inlining_edge
, 1);
292 bp_pack_value (&bp
, edge
->call_stmt_cannot_inline_p
, 1);
293 bp_pack_value (&bp
, edge
->can_throw_external
, 1);
294 if (edge
->indirect_unknown_callee
)
296 int flags
= edge
->indirect_info
->ecf_flags
;
297 bp_pack_value (&bp
, (flags
& ECF_CONST
) != 0, 1);
298 bp_pack_value (&bp
, (flags
& ECF_PURE
) != 0, 1);
299 bp_pack_value (&bp
, (flags
& ECF_NORETURN
) != 0, 1);
300 bp_pack_value (&bp
, (flags
& ECF_MALLOC
) != 0, 1);
301 bp_pack_value (&bp
, (flags
& ECF_NOTHROW
) != 0, 1);
302 bp_pack_value (&bp
, (flags
& ECF_RETURNS_TWICE
) != 0, 1);
303 /* Flags that should not appear on indirect calls. */
304 gcc_assert (!(flags
& (ECF_LOOPING_CONST_OR_PURE
310 lto_output_bitpack (&bp
);
313 /* Return if LIST contain references from other partitions. */
316 referenced_from_other_partition_p (struct ipa_ref_list
*list
, cgraph_node_set set
,
317 varpool_node_set vset
)
321 for (i
= 0; ipa_ref_list_refering_iterate (list
, i
, ref
); i
++)
323 if (ref
->refering_type
== IPA_REF_CGRAPH
)
325 if (ipa_ref_refering_node (ref
)->in_other_partition
326 || !cgraph_node_in_set_p (ipa_ref_refering_node (ref
), set
))
331 if (ipa_ref_refering_varpool_node (ref
)->in_other_partition
332 || !varpool_node_in_set_p (ipa_ref_refering_varpool_node (ref
),
340 /* Return true when node is reachable from other partition. */
343 reachable_from_other_partition_p (struct cgraph_node
*node
, cgraph_node_set set
)
345 struct cgraph_edge
*e
;
348 if (node
->global
.inlined_to
)
350 for (e
= node
->callers
; e
; e
= e
->next_caller
)
351 if (e
->caller
->in_other_partition
352 || !cgraph_node_in_set_p (e
->caller
, set
))
357 /* Return if LIST contain references from other partitions. */
360 referenced_from_this_partition_p (struct ipa_ref_list
*list
, cgraph_node_set set
,
361 varpool_node_set vset
)
365 for (i
= 0; ipa_ref_list_refering_iterate (list
, i
, ref
); i
++)
367 if (ref
->refering_type
== IPA_REF_CGRAPH
)
369 if (cgraph_node_in_set_p (ipa_ref_refering_node (ref
), set
))
374 if (varpool_node_in_set_p (ipa_ref_refering_varpool_node (ref
),
382 /* Return true when node is reachable from other partition. */
385 reachable_from_this_partition_p (struct cgraph_node
*node
, cgraph_node_set set
)
387 struct cgraph_edge
*e
;
388 for (e
= node
->callers
; e
; e
= e
->next_caller
)
389 if (cgraph_node_in_set_p (e
->caller
, set
))
394 /* Output the cgraph NODE to OB. ENCODER is used to find the
395 reference number of NODE->inlined_to. SET is the set of nodes we
396 are writing to the current file. If NODE is not in SET, then NODE
397 is a boundary of a cgraph_node_set and we pretend NODE just has a
398 decl and no callees. WRITTEN_DECLS is the set of FUNCTION_DECLs
399 that have had their callgraph node written so far. This is used to
400 determine if NODE is a clone of a previously written node. */
403 lto_output_node (struct lto_simple_output_block
*ob
, struct cgraph_node
*node
,
404 lto_cgraph_encoder_t encoder
, cgraph_node_set set
,
405 varpool_node_set vset
)
411 bool in_other_partition
= false;
412 struct cgraph_node
*clone_of
;
414 boundary_p
= !cgraph_node_in_set_p (node
, set
);
416 if (node
->analyzed
&& !boundary_p
)
417 tag
= LTO_cgraph_analyzed_node
;
419 tag
= LTO_cgraph_unavail_node
;
421 lto_output_uleb128_stream (ob
->main_stream
, tag
);
423 /* In WPA mode, we only output part of the call-graph. Also, we
424 fake cgraph node attributes. There are two cases that we care.
426 Boundary nodes: There are nodes that are not part of SET but are
427 called from within SET. We artificially make them look like
428 externally visible nodes with no function body.
430 Cherry-picked nodes: These are nodes we pulled from other
431 translation units into SET during IPA-inlining. We make them as
432 local static nodes to prevent clashes with other local statics. */
433 if (boundary_p
&& node
->analyzed
)
435 /* Inline clones can not be part of boundary.
436 gcc_assert (!node->global.inlined_to);
438 FIXME: At the moment they can be, when partition contains an inline
439 clone that is clone of inline clone from outside partition. We can
440 reshape the clone tree and make other tree to be the root, but it
441 needs a bit extra work and will be promplty done by cgraph_remove_node
442 after reading back. */
443 in_other_partition
= 1;
446 clone_of
= node
->clone_of
;
448 && (ref
= lto_cgraph_encoder_lookup (encoder
, clone_of
)) == LCC_NOT_FOUND
)
449 if (clone_of
->prev_sibling_clone
)
450 clone_of
= clone_of
->prev_sibling_clone
;
452 clone_of
= clone_of
->clone_of
;
454 if (LTO_cgraph_analyzed_node
)
455 gcc_assert (clone_of
|| !node
->clone_of
);
457 lto_output_sleb128_stream (ob
->main_stream
, LCC_NOT_FOUND
);
459 lto_output_sleb128_stream (ob
->main_stream
, ref
);
462 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
, node
->decl
);
463 lto_output_sleb128_stream (ob
->main_stream
, node
->count
);
464 lto_output_sleb128_stream (ob
->main_stream
, node
->count_materialization_scale
);
466 if (tag
== LTO_cgraph_analyzed_node
)
468 if (node
->global
.inlined_to
)
470 ref
= lto_cgraph_encoder_lookup (encoder
, node
->global
.inlined_to
);
471 gcc_assert (ref
!= LCC_NOT_FOUND
);
476 lto_output_sleb128_stream (ob
->main_stream
, ref
);
479 if (node
->same_comdat_group
&& !boundary_p
)
481 ref
= lto_cgraph_encoder_lookup (encoder
, node
->same_comdat_group
);
482 gcc_assert (ref
!= LCC_NOT_FOUND
);
486 lto_output_sleb128_stream (ob
->main_stream
, ref
);
488 bp
= bitpack_create (ob
->main_stream
);
489 bp_pack_value (&bp
, node
->local
.local
, 1);
490 bp_pack_value (&bp
, node
->local
.externally_visible
, 1);
491 bp_pack_value (&bp
, node
->local
.finalized
, 1);
492 bp_pack_value (&bp
, node
->local
.can_change_signature
, 1);
493 bp_pack_value (&bp
, node
->local
.redefined_extern_inline
, 1);
494 bp_pack_value (&bp
, node
->needed
, 1);
495 bp_pack_value (&bp
, node
->address_taken
, 1);
496 bp_pack_value (&bp
, node
->abstract_and_needed
, 1);
497 bp_pack_value (&bp
, tag
== LTO_cgraph_analyzed_node
498 && !DECL_EXTERNAL (node
->decl
)
499 && !DECL_COMDAT (node
->decl
)
500 && (reachable_from_other_partition_p (node
, set
)
501 || referenced_from_other_partition_p (&node
->ref_list
, set
, vset
)), 1);
502 bp_pack_value (&bp
, node
->lowered
, 1);
503 bp_pack_value (&bp
, in_other_partition
, 1);
504 bp_pack_value (&bp
, node
->alias
, 1);
505 bp_pack_value (&bp
, node
->frequency
, 2);
506 bp_pack_value (&bp
, node
->only_called_at_startup
, 1);
507 bp_pack_value (&bp
, node
->only_called_at_exit
, 1);
508 lto_output_bitpack (&bp
);
509 lto_output_uleb128_stream (ob
->main_stream
, node
->resolution
);
513 struct cgraph_node
*alias
;
514 unsigned long alias_count
= 1;
515 for (alias
= node
->same_body
; alias
->next
; alias
= alias
->next
)
517 lto_output_uleb128_stream (ob
->main_stream
, alias_count
);
520 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
,
522 if (alias
->thunk
.thunk_p
)
524 lto_output_uleb128_stream
526 1 + (alias
->thunk
.this_adjusting
!= 0) * 2
527 + (alias
->thunk
.virtual_offset_p
!= 0) * 4);
528 lto_output_uleb128_stream (ob
->main_stream
,
529 alias
->thunk
.fixed_offset
);
530 lto_output_uleb128_stream (ob
->main_stream
,
531 alias
->thunk
.virtual_value
);
532 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
,
537 lto_output_uleb128_stream (ob
->main_stream
, 0);
538 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
,
541 gcc_assert (cgraph_get_node (alias
->thunk
.alias
) == node
);
542 lto_output_uleb128_stream (ob
->main_stream
, alias
->resolution
);
543 alias
= alias
->previous
;
548 lto_output_uleb128_stream (ob
->main_stream
, 0);
551 /* Output the varpool NODE to OB.
552 If NODE is not in SET, then NODE is a boundary. */
555 lto_output_varpool_node (struct lto_simple_output_block
*ob
, struct varpool_node
*node
,
556 lto_varpool_encoder_t varpool_encoder
,
557 cgraph_node_set set
, varpool_node_set vset
)
559 bool boundary_p
= !varpool_node_in_set_p (node
, vset
) && node
->analyzed
;
561 struct varpool_node
*alias
;
565 lto_output_var_decl_index (ob
->decl_state
, ob
->main_stream
, node
->decl
);
566 bp
= bitpack_create (ob
->main_stream
);
567 bp_pack_value (&bp
, node
->externally_visible
, 1);
568 bp_pack_value (&bp
, node
->force_output
, 1);
569 bp_pack_value (&bp
, node
->finalized
, 1);
570 bp_pack_value (&bp
, node
->alias
, 1);
571 gcc_assert (!node
->alias
|| !node
->extra_name
);
572 gcc_assert (node
->finalized
|| !node
->analyzed
);
573 gcc_assert (node
->needed
);
574 /* Constant pool initializers can be de-unified into individual ltrans units.
575 FIXME: Alternatively at -Os we may want to avoid generating for them the local
576 labels and share them across LTRANS partitions. */
577 if (DECL_IN_CONSTANT_POOL (node
->decl
)
578 && !DECL_COMDAT (node
->decl
))
580 bp_pack_value (&bp
, 0, 1); /* used_from_other_parition. */
581 bp_pack_value (&bp
, 0, 1); /* in_other_partition. */
585 bp_pack_value (&bp
, node
->analyzed
586 && referenced_from_other_partition_p (&node
->ref_list
,
588 bp_pack_value (&bp
, boundary_p
, 1); /* in_other_partition. */
590 /* Also emit any extra name aliases. */
591 for (alias
= node
->extra_name
; alias
; alias
= alias
->next
)
593 bp_pack_value (&bp
, count
!= 0, 1);
594 lto_output_bitpack (&bp
);
595 if (node
->same_comdat_group
&& !boundary_p
)
597 ref
= lto_varpool_encoder_lookup (varpool_encoder
, node
->same_comdat_group
);
598 gcc_assert (ref
!= LCC_NOT_FOUND
);
602 lto_output_sleb128_stream (ob
->main_stream
, ref
);
603 lto_output_uleb128_stream (ob
->main_stream
, node
->resolution
);
607 lto_output_uleb128_stream (ob
->main_stream
, count
);
608 for (alias
= node
->extra_name
; alias
; alias
= alias
->next
)
610 lto_output_var_decl_index (ob
->decl_state
, ob
->main_stream
, alias
->decl
);
611 lto_output_uleb128_stream (ob
->main_stream
, alias
->resolution
);
616 /* Output the varpool NODE to OB.
617 If NODE is not in SET, then NODE is a boundary. */
620 lto_output_ref (struct lto_simple_output_block
*ob
, struct ipa_ref
*ref
,
621 lto_cgraph_encoder_t encoder
,
622 lto_varpool_encoder_t varpool_encoder
)
625 bp
= bitpack_create (ob
->main_stream
);
626 bp_pack_value (&bp
, ref
->refered_type
, 1);
627 bp_pack_value (&bp
, ref
->use
, 2);
628 lto_output_bitpack (&bp
);
629 if (ref
->refered_type
== IPA_REF_CGRAPH
)
631 int nref
= lto_cgraph_encoder_lookup (encoder
, ipa_ref_node (ref
));
632 gcc_assert (nref
!= LCC_NOT_FOUND
);
633 lto_output_sleb128_stream (ob
->main_stream
, nref
);
637 int nref
= lto_varpool_encoder_lookup (varpool_encoder
,
638 ipa_ref_varpool_node (ref
));
639 gcc_assert (nref
!= LCC_NOT_FOUND
);
640 lto_output_sleb128_stream (ob
->main_stream
, nref
);
644 /* Stream out profile_summary to OB. */
647 output_profile_summary (struct lto_simple_output_block
*ob
)
651 /* We do not output num, sum_all and run_max, they are not used by
652 GCC profile feedback and they are difficult to merge from multiple
654 gcc_assert (profile_info
->runs
);
655 lto_output_uleb128_stream (ob
->main_stream
, profile_info
->runs
);
656 lto_output_uleb128_stream (ob
->main_stream
, profile_info
->sum_max
);
659 lto_output_uleb128_stream (ob
->main_stream
, 0);
662 /* Add NODE into encoder as well as nodes it is cloned from.
663 Do it in a way so clones appear first. */
666 add_node_to (lto_cgraph_encoder_t encoder
, struct cgraph_node
*node
,
670 add_node_to (encoder
, node
->clone_of
, include_body
);
671 else if (include_body
)
672 lto_set_cgraph_encoder_encode_body (encoder
, node
);
673 lto_cgraph_encoder_encode (encoder
, node
);
676 /* Add all references in LIST to encoders. */
679 add_references (lto_cgraph_encoder_t encoder
,
680 lto_varpool_encoder_t varpool_encoder
,
681 struct ipa_ref_list
*list
)
685 for (i
= 0; ipa_ref_list_reference_iterate (list
, i
, ref
); i
++)
686 if (ref
->refered_type
== IPA_REF_CGRAPH
)
687 add_node_to (encoder
, ipa_ref_node (ref
), false);
690 struct varpool_node
*vnode
= ipa_ref_varpool_node (ref
);
691 lto_varpool_encoder_encode (varpool_encoder
, vnode
);
695 /* Output all callees or indirect outgoing edges. EDGE must be the first such
699 output_outgoing_cgraph_edges (struct cgraph_edge
*edge
,
700 struct lto_simple_output_block
*ob
,
701 lto_cgraph_encoder_t encoder
)
706 /* Output edges in backward direction, so the reconstructed callgraph match
707 and it is easy to associate call sites in the IPA pass summaries. */
708 while (edge
->next_callee
)
709 edge
= edge
->next_callee
;
710 for (; edge
; edge
= edge
->prev_callee
)
711 lto_output_edge (ob
, edge
, encoder
);
714 /* Output the part of the cgraph in SET. */
717 output_refs (cgraph_node_set set
, varpool_node_set vset
,
718 lto_cgraph_encoder_t encoder
,
719 lto_varpool_encoder_t varpool_encoder
)
721 cgraph_node_set_iterator csi
;
722 varpool_node_set_iterator vsi
;
723 struct lto_simple_output_block
*ob
;
728 ob
= lto_create_simple_output_block (LTO_section_refs
);
730 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
732 struct cgraph_node
*node
= csi_node (csi
);
734 count
= ipa_ref_list_nreferences (&node
->ref_list
);
737 lto_output_uleb128_stream (ob
->main_stream
, count
);
738 lto_output_uleb128_stream (ob
->main_stream
,
739 lto_cgraph_encoder_lookup (encoder
, node
));
740 for (i
= 0; ipa_ref_list_reference_iterate (&node
->ref_list
, i
, ref
); i
++)
741 lto_output_ref (ob
, ref
, encoder
, varpool_encoder
);
745 lto_output_uleb128_stream (ob
->main_stream
, 0);
747 for (vsi
= vsi_start (vset
); !vsi_end_p (vsi
); vsi_next (&vsi
))
749 struct varpool_node
*node
= vsi_node (vsi
);
751 count
= ipa_ref_list_nreferences (&node
->ref_list
);
754 lto_output_uleb128_stream (ob
->main_stream
, count
);
755 lto_output_uleb128_stream (ob
->main_stream
,
756 lto_varpool_encoder_lookup (varpool_encoder
,
758 for (i
= 0; ipa_ref_list_reference_iterate (&node
->ref_list
, i
, ref
); i
++)
759 lto_output_ref (ob
, ref
, encoder
, varpool_encoder
);
763 lto_output_uleb128_stream (ob
->main_stream
, 0);
765 lto_destroy_simple_output_block (ob
);
768 /* Find out all cgraph and varpool nodes we want to encode in current unit
769 and insert them to encoders. */
771 compute_ltrans_boundary (struct lto_out_decl_state
*state
,
772 cgraph_node_set set
, varpool_node_set vset
)
774 struct cgraph_node
*node
;
775 cgraph_node_set_iterator csi
;
776 varpool_node_set_iterator vsi
;
777 struct cgraph_edge
*edge
;
779 lto_cgraph_encoder_t encoder
;
780 lto_varpool_encoder_t varpool_encoder
;
782 encoder
= state
->cgraph_node_encoder
= lto_cgraph_encoder_new ();
783 varpool_encoder
= state
->varpool_node_encoder
= lto_varpool_encoder_new ();
785 /* Go over all the nodes in SET and assign references. */
786 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
788 node
= csi_node (csi
);
789 add_node_to (encoder
, node
, true);
790 add_references (encoder
, varpool_encoder
, &node
->ref_list
);
792 for (vsi
= vsi_start (vset
); !vsi_end_p (vsi
); vsi_next (&vsi
))
794 struct varpool_node
*vnode
= vsi_node (vsi
);
795 gcc_assert (!vnode
->alias
);
796 lto_varpool_encoder_encode (varpool_encoder
, vnode
);
797 lto_set_varpool_encoder_encode_initializer (varpool_encoder
, vnode
);
798 add_references (encoder
, varpool_encoder
, &vnode
->ref_list
);
800 /* Pickle in also the initializer of all referenced readonly variables
801 to help folding. Constant pool variables are not shared, so we must
803 for (i
= 0; i
< lto_varpool_encoder_size (varpool_encoder
); i
++)
805 struct varpool_node
*vnode
= lto_varpool_encoder_deref (varpool_encoder
, i
);
806 if (DECL_INITIAL (vnode
->decl
)
807 && !lto_varpool_encoder_encode_initializer_p (varpool_encoder
,
809 && const_value_known_p (vnode
->decl
))
811 lto_set_varpool_encoder_encode_initializer (varpool_encoder
, vnode
);
812 add_references (encoder
, varpool_encoder
, &vnode
->ref_list
);
816 /* Go over all the nodes again to include callees that are not in
818 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
820 node
= csi_node (csi
);
821 for (edge
= node
->callees
; edge
; edge
= edge
->next_callee
)
823 struct cgraph_node
*callee
= edge
->callee
;
824 if (!cgraph_node_in_set_p (callee
, set
))
826 /* We should have moved all the inlines. */
827 gcc_assert (!callee
->global
.inlined_to
);
828 add_node_to (encoder
, callee
, false);
834 /* Output the part of the cgraph in SET. */
837 output_cgraph (cgraph_node_set set
, varpool_node_set vset
)
839 struct cgraph_node
*node
;
840 struct lto_simple_output_block
*ob
;
841 cgraph_node_set_iterator csi
;
843 lto_cgraph_encoder_t encoder
;
844 lto_varpool_encoder_t varpool_encoder
;
845 struct cgraph_asm_node
*can
;
846 static bool asm_nodes_output
= false;
849 output_cgraph_opt_summary (set
);
851 ob
= lto_create_simple_output_block (LTO_section_cgraph
);
853 output_profile_summary (ob
);
855 /* An encoder for cgraph nodes should have been created by
856 ipa_write_summaries_1. */
857 gcc_assert (ob
->decl_state
->cgraph_node_encoder
);
858 gcc_assert (ob
->decl_state
->varpool_node_encoder
);
859 encoder
= ob
->decl_state
->cgraph_node_encoder
;
860 varpool_encoder
= ob
->decl_state
->varpool_node_encoder
;
862 /* Write out the nodes. We must first output a node and then its clones,
863 otherwise at a time reading back the node there would be nothing to clone
865 n_nodes
= lto_cgraph_encoder_size (encoder
);
866 for (i
= 0; i
< n_nodes
; i
++)
868 node
= lto_cgraph_encoder_deref (encoder
, i
);
869 lto_output_node (ob
, node
, encoder
, set
, vset
);
872 /* Go over the nodes in SET again to write edges. */
873 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
875 node
= csi_node (csi
);
876 output_outgoing_cgraph_edges (node
->callees
, ob
, encoder
);
877 output_outgoing_cgraph_edges (node
->indirect_calls
, ob
, encoder
);
880 lto_output_uleb128_stream (ob
->main_stream
, 0);
882 /* Emit toplevel asms.
883 When doing WPA we must output every asm just once. Since we do not partition asm
884 nodes at all, output them to first output. This is kind of hack, but should work
886 if (!asm_nodes_output
)
888 asm_nodes_output
= true;
889 for (can
= cgraph_asm_nodes
; can
; can
= can
->next
)
891 int len
= TREE_STRING_LENGTH (can
->asm_str
);
892 lto_output_uleb128_stream (ob
->main_stream
, len
);
893 for (i
= 0; i
< len
; ++i
)
894 lto_output_1_stream (ob
->main_stream
,
895 TREE_STRING_POINTER (can
->asm_str
)[i
]);
899 lto_output_uleb128_stream (ob
->main_stream
, 0);
901 lto_destroy_simple_output_block (ob
);
902 output_varpool (set
, vset
);
903 output_refs (set
, vset
, encoder
, varpool_encoder
);
906 /* Overwrite the information in NODE based on FILE_DATA, TAG, FLAGS,
907 STACK_SIZE, SELF_TIME and SELF_SIZE. This is called either to initialize
908 NODE or to replace the values in it, for instance because the first
909 time we saw it, the function body was not available but now it
910 is. BP is a bitpack with all the bitflags for NODE read from the
914 input_overwrite_node (struct lto_file_decl_data
*file_data
,
915 struct cgraph_node
*node
,
916 enum LTO_cgraph_tags tag
,
917 struct bitpack_d
*bp
,
918 enum ld_plugin_symbol_resolution resolution
)
920 node
->aux
= (void *) tag
;
921 node
->local
.lto_file_data
= file_data
;
923 node
->local
.local
= bp_unpack_value (bp
, 1);
924 node
->local
.externally_visible
= bp_unpack_value (bp
, 1);
925 node
->local
.finalized
= bp_unpack_value (bp
, 1);
926 node
->local
.can_change_signature
= bp_unpack_value (bp
, 1);
927 node
->local
.redefined_extern_inline
= bp_unpack_value (bp
, 1);
928 node
->needed
= bp_unpack_value (bp
, 1);
929 node
->address_taken
= bp_unpack_value (bp
, 1);
930 node
->abstract_and_needed
= bp_unpack_value (bp
, 1);
931 node
->reachable_from_other_partition
= bp_unpack_value (bp
, 1);
932 node
->lowered
= bp_unpack_value (bp
, 1);
933 node
->analyzed
= tag
== LTO_cgraph_analyzed_node
;
934 node
->in_other_partition
= bp_unpack_value (bp
, 1);
935 if (node
->in_other_partition
936 /* Avoid updating decl when we are seeing just inline clone.
937 When inlining function that has functions already inlined into it,
938 we produce clones of inline clones.
940 WPA partitioning might put each clone into different unit and
941 we might end up streaming inline clone from other partition
942 to support clone we are interested in. */
944 || node
->clone_of
->decl
!= node
->decl
))
946 DECL_EXTERNAL (node
->decl
) = 1;
947 TREE_STATIC (node
->decl
) = 0;
949 node
->alias
= bp_unpack_value (bp
, 1);
950 node
->frequency
= (enum node_frequency
)bp_unpack_value (bp
, 2);
951 node
->only_called_at_startup
= bp_unpack_value (bp
, 1);
952 node
->only_called_at_exit
= bp_unpack_value (bp
, 1);
953 node
->resolution
= resolution
;
956 /* Output the part of the cgraph in SET. */
959 output_varpool (cgraph_node_set set
, varpool_node_set vset
)
961 struct lto_simple_output_block
*ob
= lto_create_simple_output_block (LTO_section_varpool
);
962 lto_varpool_encoder_t varpool_encoder
= ob
->decl_state
->varpool_node_encoder
;
963 int len
= lto_varpool_encoder_size (varpool_encoder
), i
;
965 lto_output_uleb128_stream (ob
->main_stream
, len
);
967 /* Write out the nodes. We must first output a node and then its clones,
968 otherwise at a time reading back the node there would be nothing to clone
970 for (i
= 0; i
< len
; i
++)
972 lto_output_varpool_node (ob
, lto_varpool_encoder_deref (varpool_encoder
, i
),
977 lto_destroy_simple_output_block (ob
);
980 /* Read a node from input_block IB. TAG is the node's tag just read.
981 Return the node read or overwriten. */
983 static struct cgraph_node
*
984 input_node (struct lto_file_decl_data
*file_data
,
985 struct lto_input_block
*ib
,
986 enum LTO_cgraph_tags tag
,
987 VEC(cgraph_node_ptr
, heap
) *nodes
)
990 struct cgraph_node
*node
;
993 int ref
= LCC_NOT_FOUND
, ref2
= LCC_NOT_FOUND
;
994 unsigned long same_body_count
= 0;
996 enum ld_plugin_symbol_resolution resolution
;
998 clone_ref
= lto_input_sleb128 (ib
);
1000 decl_index
= lto_input_uleb128 (ib
);
1001 fn_decl
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1003 if (clone_ref
!= LCC_NOT_FOUND
)
1005 node
= cgraph_clone_node (VEC_index (cgraph_node_ptr
, nodes
, clone_ref
), fn_decl
,
1006 0, CGRAPH_FREQ_BASE
, 0, false, NULL
);
1009 node
= cgraph_get_create_node (fn_decl
);
1011 node
->count
= lto_input_sleb128 (ib
);
1012 node
->count_materialization_scale
= lto_input_sleb128 (ib
);
1014 if (tag
== LTO_cgraph_analyzed_node
)
1015 ref
= lto_input_sleb128 (ib
);
1017 ref2
= lto_input_sleb128 (ib
);
1019 /* Make sure that we have not read this node before. Nodes that
1020 have already been read will have their tag stored in the 'aux'
1021 field. Since built-in functions can be referenced in multiple
1022 functions, they are expected to be read more than once. */
1023 if (node
->aux
&& !DECL_IS_BUILTIN (node
->decl
))
1024 internal_error ("bytecode stream: found multiple instances of cgraph "
1025 "node %d", node
->uid
);
1027 bp
= lto_input_bitpack (ib
);
1028 resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1029 input_overwrite_node (file_data
, node
, tag
, &bp
, resolution
);
1031 /* Store a reference for now, and fix up later to be a pointer. */
1032 node
->global
.inlined_to
= (cgraph_node_ptr
) (intptr_t) ref
;
1034 /* Store a reference for now, and fix up later to be a pointer. */
1035 node
->same_comdat_group
= (cgraph_node_ptr
) (intptr_t) ref2
;
1037 same_body_count
= lto_input_uleb128 (ib
);
1038 while (same_body_count
-- > 0)
1042 struct cgraph_node
*alias
;
1043 decl_index
= lto_input_uleb128 (ib
);
1044 alias_decl
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1045 type
= lto_input_uleb128 (ib
);
1049 decl_index
= lto_input_uleb128 (ib
);
1050 real_alias
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1051 alias
= cgraph_same_body_alias (node
, alias_decl
, real_alias
);
1055 HOST_WIDE_INT fixed_offset
= lto_input_uleb128 (ib
);
1056 HOST_WIDE_INT virtual_value
= lto_input_uleb128 (ib
);
1058 decl_index
= lto_input_uleb128 (ib
);
1059 real_alias
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1060 alias
= cgraph_add_thunk (node
, alias_decl
, fn_decl
, type
& 2, fixed_offset
,
1062 (type
& 4) ? size_int (virtual_value
) : NULL_TREE
,
1066 alias
->resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1071 /* Read a node from input_block IB. TAG is the node's tag just read.
1072 Return the node read or overwriten. */
1074 static struct varpool_node
*
1075 input_varpool_node (struct lto_file_decl_data
*file_data
,
1076 struct lto_input_block
*ib
)
1080 struct varpool_node
*node
;
1081 struct bitpack_d bp
;
1084 int ref
= LCC_NOT_FOUND
;
1086 decl_index
= lto_input_uleb128 (ib
);
1087 var_decl
= lto_file_decl_data_get_var_decl (file_data
, decl_index
);
1088 node
= varpool_node (var_decl
);
1089 node
->lto_file_data
= file_data
;
1091 bp
= lto_input_bitpack (ib
);
1092 node
->externally_visible
= bp_unpack_value (&bp
, 1);
1093 node
->force_output
= bp_unpack_value (&bp
, 1);
1094 node
->finalized
= bp_unpack_value (&bp
, 1);
1095 node
->alias
= bp_unpack_value (&bp
, 1);
1096 node
->analyzed
= node
->finalized
;
1097 node
->used_from_other_partition
= bp_unpack_value (&bp
, 1);
1098 node
->in_other_partition
= bp_unpack_value (&bp
, 1);
1099 if (node
->in_other_partition
)
1101 DECL_EXTERNAL (node
->decl
) = 1;
1102 TREE_STATIC (node
->decl
) = 0;
1104 aliases_p
= bp_unpack_value (&bp
, 1);
1105 if (node
->finalized
)
1106 varpool_mark_needed_node (node
);
1107 ref
= lto_input_sleb128 (ib
);
1108 /* Store a reference for now, and fix up later to be a pointer. */
1109 node
->same_comdat_group
= (struct varpool_node
*) (intptr_t) ref
;
1110 node
->resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1113 count
= lto_input_uleb128 (ib
);
1114 for (; count
> 0; count
--)
1116 tree decl
= lto_file_decl_data_get_var_decl (file_data
,
1117 lto_input_uleb128 (ib
));
1118 struct varpool_node
*alias
;
1119 alias
= varpool_extra_name_alias (decl
, var_decl
);
1120 alias
->resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1126 /* Read a node from input_block IB. TAG is the node's tag just read.
1127 Return the node read or overwriten. */
1130 input_ref (struct lto_input_block
*ib
,
1131 struct cgraph_node
*refering_node
,
1132 struct varpool_node
*refering_varpool_node
,
1133 VEC(cgraph_node_ptr
, heap
) *nodes
,
1134 VEC(varpool_node_ptr
, heap
) *varpool_nodes
)
1136 struct cgraph_node
*node
= NULL
;
1137 struct varpool_node
*varpool_node
= NULL
;
1138 struct bitpack_d bp
;
1139 enum ipa_ref_type type
;
1140 enum ipa_ref_use use
;
1142 bp
= lto_input_bitpack (ib
);
1143 type
= (enum ipa_ref_type
) bp_unpack_value (&bp
, 1);
1144 use
= (enum ipa_ref_use
) bp_unpack_value (&bp
, 2);
1145 if (type
== IPA_REF_CGRAPH
)
1146 node
= VEC_index (cgraph_node_ptr
, nodes
, lto_input_sleb128 (ib
));
1148 varpool_node
= VEC_index (varpool_node_ptr
, varpool_nodes
, lto_input_sleb128 (ib
));
1149 ipa_record_reference (refering_node
, refering_varpool_node
,
1150 node
, varpool_node
, use
, NULL
);
1153 /* Read an edge from IB. NODES points to a vector of previously read nodes for
1154 decoding caller and callee of the edge to be read. If INDIRECT is true, the
1155 edge being read is indirect (in the sense that it has
1156 indirect_unknown_callee set). */
1159 input_edge (struct lto_input_block
*ib
, VEC(cgraph_node_ptr
, heap
) *nodes
,
1162 struct cgraph_node
*caller
, *callee
;
1163 struct cgraph_edge
*edge
;
1164 unsigned int stmt_id
;
1168 cgraph_inline_failed_t inline_failed
;
1169 struct bitpack_d bp
;
1171 int call_stmt_time
, call_stmt_size
;
1173 caller
= VEC_index (cgraph_node_ptr
, nodes
, lto_input_sleb128 (ib
));
1174 if (caller
== NULL
|| caller
->decl
== NULL_TREE
)
1175 internal_error ("bytecode stream: no caller found while reading edge");
1179 callee
= VEC_index (cgraph_node_ptr
, nodes
, lto_input_sleb128 (ib
));
1180 if (callee
== NULL
|| callee
->decl
== NULL_TREE
)
1181 internal_error ("bytecode stream: no callee found while reading edge");
1186 count
= (gcov_type
) lto_input_sleb128 (ib
);
1188 bp
= lto_input_bitpack (ib
);
1189 stmt_id
= (unsigned int) bp_unpack_value (&bp
, HOST_BITS_PER_INT
);
1190 inline_failed
= (cgraph_inline_failed_t
) bp_unpack_value (&bp
,
1192 freq
= (int) bp_unpack_value (&bp
, HOST_BITS_PER_INT
);
1193 call_stmt_size
= (int) bp_unpack_value (&bp
, HOST_BITS_PER_INT
);
1194 call_stmt_time
= (int) bp_unpack_value (&bp
, HOST_BITS_PER_INT
);
1195 nest
= (unsigned) bp_unpack_value (&bp
, 30);
1198 edge
= cgraph_create_indirect_edge (caller
, NULL
, 0, count
, freq
, nest
);
1200 edge
= cgraph_create_edge (caller
, callee
, NULL
, count
, freq
, nest
);
1202 edge
->indirect_inlining_edge
= bp_unpack_value (&bp
, 1);
1203 edge
->lto_stmt_uid
= stmt_id
;
1204 edge
->inline_failed
= inline_failed
;
1205 edge
->call_stmt_cannot_inline_p
= bp_unpack_value (&bp
, 1);
1206 edge
->can_throw_external
= bp_unpack_value (&bp
, 1);
1207 edge
->call_stmt_size
= call_stmt_size
;
1208 edge
->call_stmt_time
= call_stmt_time
;
1211 if (bp_unpack_value (&bp
, 1))
1212 ecf_flags
|= ECF_CONST
;
1213 if (bp_unpack_value (&bp
, 1))
1214 ecf_flags
|= ECF_PURE
;
1215 if (bp_unpack_value (&bp
, 1))
1216 ecf_flags
|= ECF_NORETURN
;
1217 if (bp_unpack_value (&bp
, 1))
1218 ecf_flags
|= ECF_MALLOC
;
1219 if (bp_unpack_value (&bp
, 1))
1220 ecf_flags
|= ECF_NOTHROW
;
1221 if (bp_unpack_value (&bp
, 1))
1222 ecf_flags
|= ECF_RETURNS_TWICE
;
1223 edge
->indirect_info
->ecf_flags
= ecf_flags
;
1228 /* Read a cgraph from IB using the info in FILE_DATA. */
1230 static VEC(cgraph_node_ptr
, heap
) *
1231 input_cgraph_1 (struct lto_file_decl_data
*file_data
,
1232 struct lto_input_block
*ib
)
1234 enum LTO_cgraph_tags tag
;
1235 VEC(cgraph_node_ptr
, heap
) *nodes
= NULL
;
1236 struct cgraph_node
*node
;
1238 unsigned HOST_WIDE_INT len
;
1240 tag
= (enum LTO_cgraph_tags
) lto_input_uleb128 (ib
);
1243 if (tag
== LTO_cgraph_edge
)
1244 input_edge (ib
, nodes
, false);
1245 else if (tag
== LTO_cgraph_indirect_edge
)
1246 input_edge (ib
, nodes
, true);
1249 node
= input_node (file_data
, ib
, tag
,nodes
);
1250 if (node
== NULL
|| node
->decl
== NULL_TREE
)
1251 internal_error ("bytecode stream: found empty cgraph node");
1252 VEC_safe_push (cgraph_node_ptr
, heap
, nodes
, node
);
1253 lto_cgraph_encoder_encode (file_data
->cgraph_node_encoder
, node
);
1256 tag
= (enum LTO_cgraph_tags
) lto_input_uleb128 (ib
);
1259 /* Input toplevel asms. */
1260 len
= lto_input_uleb128 (ib
);
1263 char *str
= (char *)xmalloc (len
+ 1);
1264 for (i
= 0; i
< len
; ++i
)
1265 str
[i
] = lto_input_1_unsigned (ib
);
1266 cgraph_add_asm_node (build_string (len
, str
));
1269 len
= lto_input_uleb128 (ib
);
1271 /* AUX pointers should be all non-zero for nodes read from the stream. */
1272 #ifdef ENABLE_CHECKING
1273 FOR_EACH_VEC_ELT (cgraph_node_ptr
, nodes
, i
, node
)
1274 gcc_assert (node
->aux
);
1276 FOR_EACH_VEC_ELT (cgraph_node_ptr
, nodes
, i
, node
)
1278 int ref
= (int) (intptr_t) node
->global
.inlined_to
;
1280 /* We share declaration of builtins, so we may read same node twice. */
1285 /* Fixup inlined_to from reference to pointer. */
1286 if (ref
!= LCC_NOT_FOUND
)
1287 node
->global
.inlined_to
= VEC_index (cgraph_node_ptr
, nodes
, ref
);
1289 node
->global
.inlined_to
= NULL
;
1291 ref
= (int) (intptr_t) node
->same_comdat_group
;
1293 /* Fixup same_comdat_group from reference to pointer. */
1294 if (ref
!= LCC_NOT_FOUND
)
1295 node
->same_comdat_group
= VEC_index (cgraph_node_ptr
, nodes
, ref
);
1297 node
->same_comdat_group
= NULL
;
1299 FOR_EACH_VEC_ELT (cgraph_node_ptr
, nodes
, i
, node
)
1300 node
->aux
= (void *)1;
1304 /* Read a varpool from IB using the info in FILE_DATA. */
1306 static VEC(varpool_node_ptr
, heap
) *
1307 input_varpool_1 (struct lto_file_decl_data
*file_data
,
1308 struct lto_input_block
*ib
)
1310 unsigned HOST_WIDE_INT len
;
1311 VEC(varpool_node_ptr
, heap
) *varpool
= NULL
;
1313 struct varpool_node
*node
;
1315 len
= lto_input_uleb128 (ib
);
1318 VEC_safe_push (varpool_node_ptr
, heap
, varpool
,
1319 input_varpool_node (file_data
, ib
));
1322 #ifdef ENABLE_CHECKING
1323 FOR_EACH_VEC_ELT (varpool_node_ptr
, varpool
, i
, node
)
1324 gcc_assert (!node
->aux
);
1326 FOR_EACH_VEC_ELT (varpool_node_ptr
, varpool
, i
, node
)
1328 int ref
= (int) (intptr_t) node
->same_comdat_group
;
1329 /* We share declaration of builtins, so we may read same node twice. */
1332 node
->aux
= (void *)1;
1334 /* Fixup same_comdat_group from reference to pointer. */
1335 if (ref
!= LCC_NOT_FOUND
)
1336 node
->same_comdat_group
= VEC_index (varpool_node_ptr
, varpool
, ref
);
1338 node
->same_comdat_group
= NULL
;
1340 FOR_EACH_VEC_ELT (varpool_node_ptr
, varpool
, i
, node
)
1345 /* Input ipa_refs. */
1348 input_refs (struct lto_input_block
*ib
,
1349 VEC(cgraph_node_ptr
, heap
) *nodes
,
1350 VEC(varpool_node_ptr
, heap
) *varpool
)
1356 struct cgraph_node
*node
;
1357 count
= lto_input_uleb128 (ib
);
1360 idx
= lto_input_uleb128 (ib
);
1361 node
= VEC_index (cgraph_node_ptr
, nodes
, idx
);
1364 input_ref (ib
, node
, NULL
, nodes
, varpool
);
1370 struct varpool_node
*node
;
1371 count
= lto_input_uleb128 (ib
);
1374 node
= VEC_index (varpool_node_ptr
, varpool
, lto_input_uleb128 (ib
));
1377 input_ref (ib
, NULL
, node
, nodes
, varpool
);
1384 static struct gcov_ctr_summary lto_gcov_summary
;
1386 /* Input profile_info from IB. */
1388 input_profile_summary (struct lto_input_block
*ib
,
1389 struct lto_file_decl_data
*file_data
)
1391 unsigned int runs
= lto_input_uleb128 (ib
);
1394 file_data
->profile_info
.runs
= runs
;
1395 file_data
->profile_info
.sum_max
= lto_input_uleb128 (ib
);
1400 /* Rescale profile summaries to the same number of runs in the whole unit. */
1403 merge_profile_summaries (struct lto_file_decl_data
**file_data_vec
)
1405 struct lto_file_decl_data
*file_data
;
1407 gcov_unsigned_t max_runs
= 0;
1408 struct cgraph_node
*node
;
1409 struct cgraph_edge
*edge
;
1411 /* Find unit with maximal number of runs. If we ever get serious about
1412 roundoff errors, we might also consider computing smallest common
1414 for (j
= 0; (file_data
= file_data_vec
[j
]) != NULL
; j
++)
1415 if (max_runs
< file_data
->profile_info
.runs
)
1416 max_runs
= file_data
->profile_info
.runs
;
1421 /* Simple overflow check. We probably don't need to support that many train
1422 runs. Such a large value probably imply data corruption anyway. */
1423 if (max_runs
> INT_MAX
/ REG_BR_PROB_BASE
)
1425 sorry ("At most %i profile runs is supported. Perhaps corrupted profile?",
1426 INT_MAX
/ REG_BR_PROB_BASE
);
1430 profile_info
= <o_gcov_summary
;
1431 lto_gcov_summary
.runs
= max_runs
;
1432 lto_gcov_summary
.sum_max
= 0;
1434 /* Rescale all units to the maximal number of runs.
1435 sum_max can not be easily merged, as we have no idea what files come from
1436 the same run. We do not use the info anyway, so leave it 0. */
1437 for (j
= 0; (file_data
= file_data_vec
[j
]) != NULL
; j
++)
1438 if (file_data
->profile_info
.runs
)
1440 int scale
= ((REG_BR_PROB_BASE
* max_runs
1441 + file_data
->profile_info
.runs
/ 2)
1442 / file_data
->profile_info
.runs
);
1443 lto_gcov_summary
.sum_max
= MAX (lto_gcov_summary
.sum_max
,
1444 (file_data
->profile_info
.sum_max
1446 + REG_BR_PROB_BASE
/ 2)
1447 / REG_BR_PROB_BASE
);
1450 /* Watch roundoff errors. */
1451 if (lto_gcov_summary
.sum_max
< max_runs
)
1452 lto_gcov_summary
.sum_max
= max_runs
;
1454 /* If merging already happent at WPA time, we are done. */
1458 /* Now compute count_materialization_scale of each node.
1459 During LTRANS we already have values of count_materialization_scale
1460 computed, so just update them. */
1461 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1462 if (node
->local
.lto_file_data
1463 && node
->local
.lto_file_data
->profile_info
.runs
)
1468 ((node
->count_materialization_scale
* max_runs
1469 + node
->local
.lto_file_data
->profile_info
.runs
/ 2)
1470 / node
->local
.lto_file_data
->profile_info
.runs
);
1471 node
->count_materialization_scale
= scale
;
1473 fatal_error ("Profile information in %s corrupted",
1474 file_data
->file_name
);
1476 if (scale
== REG_BR_PROB_BASE
)
1478 for (edge
= node
->callees
; edge
; edge
= edge
->next_callee
)
1479 edge
->count
= ((edge
->count
* scale
+ REG_BR_PROB_BASE
/ 2)
1480 / REG_BR_PROB_BASE
);
1481 node
->count
= ((node
->count
* scale
+ REG_BR_PROB_BASE
/ 2)
1482 / REG_BR_PROB_BASE
);
1486 /* Input and merge the cgraph from each of the .o files passed to
1492 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
1493 struct lto_file_decl_data
*file_data
;
1495 struct cgraph_node
*node
;
1497 while ((file_data
= file_data_vec
[j
++]))
1501 struct lto_input_block
*ib
;
1502 VEC(cgraph_node_ptr
, heap
) *nodes
;
1503 VEC(varpool_node_ptr
, heap
) *varpool
;
1505 ib
= lto_create_simple_input_block (file_data
, LTO_section_cgraph
,
1508 fatal_error ("cannot find LTO cgraph in %s", file_data
->file_name
);
1509 input_profile_summary (ib
, file_data
);
1510 file_data
->cgraph_node_encoder
= lto_cgraph_encoder_new ();
1511 nodes
= input_cgraph_1 (file_data
, ib
);
1512 lto_destroy_simple_input_block (file_data
, LTO_section_cgraph
,
1515 ib
= lto_create_simple_input_block (file_data
, LTO_section_varpool
,
1518 fatal_error ("cannot find LTO varpool in %s", file_data
->file_name
);
1519 varpool
= input_varpool_1 (file_data
, ib
);
1520 lto_destroy_simple_input_block (file_data
, LTO_section_varpool
,
1523 ib
= lto_create_simple_input_block (file_data
, LTO_section_refs
,
1526 fatal_error("cannot find LTO section refs in %s", file_data
->file_name
);
1527 input_refs (ib
, nodes
, varpool
);
1528 lto_destroy_simple_input_block (file_data
, LTO_section_refs
,
1531 input_cgraph_opt_summary (nodes
);
1532 VEC_free (cgraph_node_ptr
, heap
, nodes
);
1533 VEC_free (varpool_node_ptr
, heap
, varpool
);
1536 merge_profile_summaries (file_data_vec
);
1538 /* Clear out the aux field that was used to store enough state to
1539 tell which nodes should be overwritten. */
1540 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1542 /* Some nodes may have been created by cgraph_node. This
1543 happens when the callgraph contains nested functions. If the
1544 node for the parent function was never emitted to the gimple
1545 file, cgraph_node will create a node for it when setting the
1546 context of the nested function. */
1547 if (node
->local
.lto_file_data
)
1552 /* True when we need optimization summary for NODE. */
1555 output_cgraph_opt_summary_p (struct cgraph_node
*node
, cgraph_node_set set
)
1557 struct cgraph_edge
*e
;
1559 if (cgraph_node_in_set_p (node
, set
))
1561 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1562 if (e
->indirect_info
1563 && e
->indirect_info
->thunk_delta
!= 0)
1566 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
1567 if (e
->indirect_info
->thunk_delta
!= 0)
1571 return (node
->clone_of
1572 && (node
->clone
.tree_map
1573 || node
->clone
.args_to_skip
1574 || node
->clone
.combined_args_to_skip
));
1577 /* Output optimization summary for EDGE to OB. */
1579 output_edge_opt_summary (struct output_block
*ob
,
1580 struct cgraph_edge
*edge
)
1582 if (edge
->indirect_info
)
1583 lto_output_sleb128_stream (ob
->main_stream
,
1584 edge
->indirect_info
->thunk_delta
);
1586 lto_output_sleb128_stream (ob
->main_stream
, 0);
1589 /* Output optimization summary for NODE to OB. */
1592 output_node_opt_summary (struct output_block
*ob
,
1593 struct cgraph_node
*node
,
1594 cgraph_node_set set
)
1598 struct ipa_replace_map
*map
;
1599 struct bitpack_d bp
;
1601 struct cgraph_edge
*e
;
1603 lto_output_uleb128_stream (ob
->main_stream
,
1604 bitmap_count_bits (node
->clone
.args_to_skip
));
1605 EXECUTE_IF_SET_IN_BITMAP (node
->clone
.args_to_skip
, 0, index
, bi
)
1606 lto_output_uleb128_stream (ob
->main_stream
, index
);
1607 lto_output_uleb128_stream (ob
->main_stream
,
1608 bitmap_count_bits (node
->clone
.combined_args_to_skip
));
1609 EXECUTE_IF_SET_IN_BITMAP (node
->clone
.combined_args_to_skip
, 0, index
, bi
)
1610 lto_output_uleb128_stream (ob
->main_stream
, index
);
1611 lto_output_uleb128_stream (ob
->main_stream
,
1612 VEC_length (ipa_replace_map_p
, node
->clone
.tree_map
));
1613 FOR_EACH_VEC_ELT (ipa_replace_map_p
, node
->clone
.tree_map
, i
, map
)
1618 for (parm_num
= 0, parm
= DECL_ARGUMENTS (node
->decl
); parm
;
1619 parm
= DECL_CHAIN (parm
), parm_num
++)
1620 if (map
->old_tree
== parm
)
1622 /* At the moment we assume all old trees to be PARM_DECLs, because we have no
1623 mechanism to store function local declarations into summaries. */
1625 lto_output_uleb128_stream (ob
->main_stream
, parm_num
);
1626 lto_output_tree (ob
, map
->new_tree
, true);
1627 bp
= bitpack_create (ob
->main_stream
);
1628 bp_pack_value (&bp
, map
->replace_p
, 1);
1629 bp_pack_value (&bp
, map
->ref_p
, 1);
1630 lto_output_bitpack (&bp
);
1633 if (cgraph_node_in_set_p (node
, set
))
1635 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1636 output_edge_opt_summary (ob
, e
);
1637 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
1638 output_edge_opt_summary (ob
, e
);
1642 /* Output optimization summaries stored in callgraph.
1643 At the moment it is the clone info structure. */
1646 output_cgraph_opt_summary (cgraph_node_set set
)
1648 struct cgraph_node
*node
;
1650 lto_cgraph_encoder_t encoder
;
1651 struct output_block
*ob
= create_output_block (LTO_section_cgraph_opt_sum
);
1654 ob
->cgraph_node
= NULL
;
1655 encoder
= ob
->decl_state
->cgraph_node_encoder
;
1656 n_nodes
= lto_cgraph_encoder_size (encoder
);
1657 for (i
= 0; i
< n_nodes
; i
++)
1658 if (output_cgraph_opt_summary_p (lto_cgraph_encoder_deref (encoder
, i
),
1661 lto_output_uleb128_stream (ob
->main_stream
, count
);
1662 for (i
= 0; i
< n_nodes
; i
++)
1664 node
= lto_cgraph_encoder_deref (encoder
, i
);
1665 if (output_cgraph_opt_summary_p (node
, set
))
1667 lto_output_uleb128_stream (ob
->main_stream
, i
);
1668 output_node_opt_summary (ob
, node
, set
);
1671 produce_asm (ob
, NULL
);
1672 destroy_output_block (ob
);
1675 /* Input optimisation summary of EDGE. */
1678 input_edge_opt_summary (struct cgraph_edge
*edge
,
1679 struct lto_input_block
*ib_main
)
1681 HOST_WIDE_INT thunk_delta
;
1682 thunk_delta
= lto_input_sleb128 (ib_main
);
1683 if (thunk_delta
!= 0)
1685 gcc_assert (!edge
->indirect_info
);
1686 edge
->indirect_info
= cgraph_allocate_init_indirect_info ();
1687 edge
->indirect_info
->thunk_delta
= thunk_delta
;
1691 /* Input optimisation summary of NODE. */
1694 input_node_opt_summary (struct cgraph_node
*node
,
1695 struct lto_input_block
*ib_main
,
1696 struct data_in
*data_in
)
1701 struct bitpack_d bp
;
1702 struct cgraph_edge
*e
;
1704 count
= lto_input_uleb128 (ib_main
);
1706 node
->clone
.args_to_skip
= BITMAP_GGC_ALLOC ();
1707 for (i
= 0; i
< count
; i
++)
1709 bit
= lto_input_uleb128 (ib_main
);
1710 bitmap_set_bit (node
->clone
.args_to_skip
, bit
);
1712 count
= lto_input_uleb128 (ib_main
);
1714 node
->clone
.combined_args_to_skip
= BITMAP_GGC_ALLOC ();
1715 for (i
= 0; i
< count
; i
++)
1717 bit
= lto_input_uleb128 (ib_main
);
1718 bitmap_set_bit (node
->clone
.combined_args_to_skip
, bit
);
1720 count
= lto_input_uleb128 (ib_main
);
1721 for (i
= 0; i
< count
; i
++)
1725 struct ipa_replace_map
*map
= ggc_alloc_ipa_replace_map ();
1727 VEC_safe_push (ipa_replace_map_p
, gc
, node
->clone
.tree_map
, map
);
1728 for (parm_num
= 0, parm
= DECL_ARGUMENTS (node
->decl
); parm_num
;
1729 parm
= DECL_CHAIN (parm
))
1731 map
->parm_num
= lto_input_uleb128 (ib_main
);
1732 map
->old_tree
= NULL
;
1733 map
->new_tree
= lto_input_tree (ib_main
, data_in
);
1734 bp
= lto_input_bitpack (ib_main
);
1735 map
->replace_p
= bp_unpack_value (&bp
, 1);
1736 map
->ref_p
= bp_unpack_value (&bp
, 1);
1738 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1739 input_edge_opt_summary (e
, ib_main
);
1740 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
1741 input_edge_opt_summary (e
, ib_main
);
1744 /* Read section in file FILE_DATA of length LEN with data DATA. */
1747 input_cgraph_opt_section (struct lto_file_decl_data
*file_data
,
1748 const char *data
, size_t len
, VEC (cgraph_node_ptr
,
1751 const struct lto_function_header
*header
=
1752 (const struct lto_function_header
*) data
;
1753 const int32_t cfg_offset
= sizeof (struct lto_function_header
);
1754 const int32_t main_offset
= cfg_offset
+ header
->cfg_size
;
1755 const int32_t string_offset
= main_offset
+ header
->main_size
;
1756 struct data_in
*data_in
;
1757 struct lto_input_block ib_main
;
1761 LTO_INIT_INPUT_BLOCK (ib_main
, (const char *) data
+ main_offset
, 0,
1765 lto_data_in_create (file_data
, (const char *) data
+ string_offset
,
1766 header
->string_size
, NULL
);
1767 count
= lto_input_uleb128 (&ib_main
);
1769 for (i
= 0; i
< count
; i
++)
1771 int ref
= lto_input_uleb128 (&ib_main
);
1772 input_node_opt_summary (VEC_index (cgraph_node_ptr
, nodes
, ref
),
1775 lto_free_section_data (file_data
, LTO_section_cgraph_opt_sum
, NULL
, data
,
1777 lto_data_in_delete (data_in
);
1780 /* Input optimization summary of cgraph. */
1783 input_cgraph_opt_summary (VEC (cgraph_node_ptr
, heap
) * nodes
)
1785 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
1786 struct lto_file_decl_data
*file_data
;
1789 while ((file_data
= file_data_vec
[j
++]))
1793 lto_get_section_data (file_data
, LTO_section_cgraph_opt_sum
, NULL
,
1797 input_cgraph_opt_section (file_data
, data
, len
, nodes
);