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
->loop_nest
, 30);
289 bp_pack_value (&bp
, edge
->indirect_inlining_edge
, 1);
290 bp_pack_value (&bp
, edge
->call_stmt_cannot_inline_p
, 1);
291 bp_pack_value (&bp
, edge
->can_throw_external
, 1);
292 if (edge
->indirect_unknown_callee
)
294 int flags
= edge
->indirect_info
->ecf_flags
;
295 bp_pack_value (&bp
, (flags
& ECF_CONST
) != 0, 1);
296 bp_pack_value (&bp
, (flags
& ECF_PURE
) != 0, 1);
297 bp_pack_value (&bp
, (flags
& ECF_NORETURN
) != 0, 1);
298 bp_pack_value (&bp
, (flags
& ECF_MALLOC
) != 0, 1);
299 bp_pack_value (&bp
, (flags
& ECF_NOTHROW
) != 0, 1);
300 bp_pack_value (&bp
, (flags
& ECF_RETURNS_TWICE
) != 0, 1);
301 /* Flags that should not appear on indirect calls. */
302 gcc_assert (!(flags
& (ECF_LOOPING_CONST_OR_PURE
308 lto_output_bitpack (&bp
);
311 /* Return if LIST contain references from other partitions. */
314 referenced_from_other_partition_p (struct ipa_ref_list
*list
, cgraph_node_set set
,
315 varpool_node_set vset
)
319 for (i
= 0; ipa_ref_list_refering_iterate (list
, i
, ref
); i
++)
321 if (ref
->refering_type
== IPA_REF_CGRAPH
)
323 if (ipa_ref_refering_node (ref
)->in_other_partition
324 || !cgraph_node_in_set_p (ipa_ref_refering_node (ref
), set
))
329 if (ipa_ref_refering_varpool_node (ref
)->in_other_partition
330 || !varpool_node_in_set_p (ipa_ref_refering_varpool_node (ref
),
338 /* Return true when node is reachable from other partition. */
341 reachable_from_other_partition_p (struct cgraph_node
*node
, cgraph_node_set set
)
343 struct cgraph_edge
*e
;
346 if (node
->global
.inlined_to
)
348 for (e
= node
->callers
; e
; e
= e
->next_caller
)
349 if (e
->caller
->in_other_partition
350 || !cgraph_node_in_set_p (e
->caller
, set
))
355 /* Return if LIST contain references from other partitions. */
358 referenced_from_this_partition_p (struct ipa_ref_list
*list
, cgraph_node_set set
,
359 varpool_node_set vset
)
363 for (i
= 0; ipa_ref_list_refering_iterate (list
, i
, ref
); i
++)
365 if (ref
->refering_type
== IPA_REF_CGRAPH
)
367 if (cgraph_node_in_set_p (ipa_ref_refering_node (ref
), set
))
372 if (varpool_node_in_set_p (ipa_ref_refering_varpool_node (ref
),
380 /* Return true when node is reachable from other partition. */
383 reachable_from_this_partition_p (struct cgraph_node
*node
, cgraph_node_set set
)
385 struct cgraph_edge
*e
;
386 for (e
= node
->callers
; e
; e
= e
->next_caller
)
387 if (cgraph_node_in_set_p (e
->caller
, set
))
392 /* Output the cgraph NODE to OB. ENCODER is used to find the
393 reference number of NODE->inlined_to. SET is the set of nodes we
394 are writing to the current file. If NODE is not in SET, then NODE
395 is a boundary of a cgraph_node_set and we pretend NODE just has a
396 decl and no callees. WRITTEN_DECLS is the set of FUNCTION_DECLs
397 that have had their callgraph node written so far. This is used to
398 determine if NODE is a clone of a previously written node. */
401 lto_output_node (struct lto_simple_output_block
*ob
, struct cgraph_node
*node
,
402 lto_cgraph_encoder_t encoder
, cgraph_node_set set
,
403 varpool_node_set vset
)
409 bool in_other_partition
= false;
410 struct cgraph_node
*clone_of
;
412 boundary_p
= !cgraph_node_in_set_p (node
, set
);
414 if (node
->analyzed
&& !boundary_p
)
415 tag
= LTO_cgraph_analyzed_node
;
417 tag
= LTO_cgraph_unavail_node
;
419 lto_output_uleb128_stream (ob
->main_stream
, tag
);
421 /* In WPA mode, we only output part of the call-graph. Also, we
422 fake cgraph node attributes. There are two cases that we care.
424 Boundary nodes: There are nodes that are not part of SET but are
425 called from within SET. We artificially make them look like
426 externally visible nodes with no function body.
428 Cherry-picked nodes: These are nodes we pulled from other
429 translation units into SET during IPA-inlining. We make them as
430 local static nodes to prevent clashes with other local statics. */
431 if (boundary_p
&& node
->analyzed
)
433 /* Inline clones can not be part of boundary.
434 gcc_assert (!node->global.inlined_to);
436 FIXME: At the moment they can be, when partition contains an inline
437 clone that is clone of inline clone from outside partition. We can
438 reshape the clone tree and make other tree to be the root, but it
439 needs a bit extra work and will be promplty done by cgraph_remove_node
440 after reading back. */
441 in_other_partition
= 1;
444 clone_of
= node
->clone_of
;
446 && (ref
= lto_cgraph_encoder_lookup (encoder
, clone_of
)) == LCC_NOT_FOUND
)
447 if (clone_of
->prev_sibling_clone
)
448 clone_of
= clone_of
->prev_sibling_clone
;
450 clone_of
= clone_of
->clone_of
;
452 if (LTO_cgraph_analyzed_node
)
453 gcc_assert (clone_of
|| !node
->clone_of
);
455 lto_output_sleb128_stream (ob
->main_stream
, LCC_NOT_FOUND
);
457 lto_output_sleb128_stream (ob
->main_stream
, ref
);
460 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
, node
->decl
);
461 lto_output_sleb128_stream (ob
->main_stream
, node
->count
);
462 lto_output_sleb128_stream (ob
->main_stream
, node
->count_materialization_scale
);
464 if (tag
== LTO_cgraph_analyzed_node
)
466 lto_output_sleb128_stream (ob
->main_stream
,
467 node
->local
.inline_summary
.estimated_self_stack_size
);
468 lto_output_sleb128_stream (ob
->main_stream
,
469 node
->local
.inline_summary
.self_size
);
470 lto_output_sleb128_stream (ob
->main_stream
,
471 node
->local
.inline_summary
.size_inlining_benefit
);
472 lto_output_sleb128_stream (ob
->main_stream
,
473 node
->local
.inline_summary
.self_time
);
474 lto_output_sleb128_stream (ob
->main_stream
,
475 node
->local
.inline_summary
.time_inlining_benefit
);
476 if (node
->global
.inlined_to
)
478 ref
= lto_cgraph_encoder_lookup (encoder
, node
->global
.inlined_to
);
479 gcc_assert (ref
!= LCC_NOT_FOUND
);
484 lto_output_sleb128_stream (ob
->main_stream
, ref
);
487 if (node
->same_comdat_group
&& !boundary_p
)
489 ref
= lto_cgraph_encoder_lookup (encoder
, node
->same_comdat_group
);
490 gcc_assert (ref
!= LCC_NOT_FOUND
);
494 lto_output_sleb128_stream (ob
->main_stream
, ref
);
496 bp
= bitpack_create (ob
->main_stream
);
497 bp_pack_value (&bp
, node
->local
.local
, 1);
498 bp_pack_value (&bp
, node
->local
.externally_visible
, 1);
499 bp_pack_value (&bp
, node
->local
.finalized
, 1);
500 bp_pack_value (&bp
, node
->local
.inlinable
, 1);
501 bp_pack_value (&bp
, node
->local
.versionable
, 1);
502 bp_pack_value (&bp
, node
->local
.can_change_signature
, 1);
503 bp_pack_value (&bp
, node
->local
.disregard_inline_limits
, 1);
504 bp_pack_value (&bp
, node
->local
.redefined_extern_inline
, 1);
505 bp_pack_value (&bp
, node
->local
.vtable_method
, 1);
506 bp_pack_value (&bp
, node
->needed
, 1);
507 bp_pack_value (&bp
, node
->address_taken
, 1);
508 bp_pack_value (&bp
, node
->abstract_and_needed
, 1);
509 bp_pack_value (&bp
, tag
== LTO_cgraph_analyzed_node
510 && !DECL_EXTERNAL (node
->decl
)
511 && !DECL_COMDAT (node
->decl
)
512 && (reachable_from_other_partition_p (node
, set
)
513 || referenced_from_other_partition_p (&node
->ref_list
, set
, vset
)), 1);
514 bp_pack_value (&bp
, node
->lowered
, 1);
515 bp_pack_value (&bp
, in_other_partition
, 1);
516 bp_pack_value (&bp
, node
->alias
, 1);
517 bp_pack_value (&bp
, node
->finalized_by_frontend
, 1);
518 bp_pack_value (&bp
, node
->frequency
, 2);
519 bp_pack_value (&bp
, node
->only_called_at_startup
, 1);
520 bp_pack_value (&bp
, node
->only_called_at_exit
, 1);
521 lto_output_bitpack (&bp
);
522 lto_output_uleb128_stream (ob
->main_stream
, node
->resolution
);
526 struct cgraph_node
*alias
;
527 unsigned long alias_count
= 1;
528 for (alias
= node
->same_body
; alias
->next
; alias
= alias
->next
)
530 lto_output_uleb128_stream (ob
->main_stream
, alias_count
);
533 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
,
535 if (alias
->thunk
.thunk_p
)
537 lto_output_uleb128_stream
539 1 + (alias
->thunk
.this_adjusting
!= 0) * 2
540 + (alias
->thunk
.virtual_offset_p
!= 0) * 4);
541 lto_output_uleb128_stream (ob
->main_stream
,
542 alias
->thunk
.fixed_offset
);
543 lto_output_uleb128_stream (ob
->main_stream
,
544 alias
->thunk
.virtual_value
);
545 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
,
550 lto_output_uleb128_stream (ob
->main_stream
, 0);
551 lto_output_fn_decl_index (ob
->decl_state
, ob
->main_stream
,
554 gcc_assert (cgraph_get_node (alias
->thunk
.alias
) == node
);
555 lto_output_uleb128_stream (ob
->main_stream
, alias
->resolution
);
556 alias
= alias
->previous
;
561 lto_output_uleb128_stream (ob
->main_stream
, 0);
564 /* Output the varpool NODE to OB.
565 If NODE is not in SET, then NODE is a boundary. */
568 lto_output_varpool_node (struct lto_simple_output_block
*ob
, struct varpool_node
*node
,
569 lto_varpool_encoder_t varpool_encoder
,
570 cgraph_node_set set
, varpool_node_set vset
)
572 bool boundary_p
= !varpool_node_in_set_p (node
, vset
) && node
->analyzed
;
574 struct varpool_node
*alias
;
578 lto_output_var_decl_index (ob
->decl_state
, ob
->main_stream
, node
->decl
);
579 bp
= bitpack_create (ob
->main_stream
);
580 bp_pack_value (&bp
, node
->externally_visible
, 1);
581 bp_pack_value (&bp
, node
->force_output
, 1);
582 bp_pack_value (&bp
, node
->finalized
, 1);
583 bp_pack_value (&bp
, node
->alias
, 1);
584 gcc_assert (!node
->alias
|| !node
->extra_name
);
585 gcc_assert (node
->finalized
|| !node
->analyzed
);
586 gcc_assert (node
->needed
);
587 /* Constant pool initializers can be de-unified into individual ltrans units.
588 FIXME: Alternatively at -Os we may want to avoid generating for them the local
589 labels and share them across LTRANS partitions. */
590 if (DECL_IN_CONSTANT_POOL (node
->decl
)
591 && !DECL_COMDAT (node
->decl
))
593 bp_pack_value (&bp
, 0, 1); /* used_from_other_parition. */
594 bp_pack_value (&bp
, 0, 1); /* in_other_partition. */
598 bp_pack_value (&bp
, node
->analyzed
599 && referenced_from_other_partition_p (&node
->ref_list
,
601 bp_pack_value (&bp
, boundary_p
, 1); /* in_other_partition. */
603 /* Also emit any extra name aliases. */
604 for (alias
= node
->extra_name
; alias
; alias
= alias
->next
)
606 bp_pack_value (&bp
, count
!= 0, 1);
607 lto_output_bitpack (&bp
);
608 if (node
->same_comdat_group
&& !boundary_p
)
610 ref
= lto_varpool_encoder_lookup (varpool_encoder
, node
->same_comdat_group
);
611 gcc_assert (ref
!= LCC_NOT_FOUND
);
615 lto_output_sleb128_stream (ob
->main_stream
, ref
);
616 lto_output_uleb128_stream (ob
->main_stream
, node
->resolution
);
620 lto_output_uleb128_stream (ob
->main_stream
, count
);
621 for (alias
= node
->extra_name
; alias
; alias
= alias
->next
)
623 lto_output_var_decl_index (ob
->decl_state
, ob
->main_stream
, alias
->decl
);
624 lto_output_uleb128_stream (ob
->main_stream
, alias
->resolution
);
629 /* Output the varpool NODE to OB.
630 If NODE is not in SET, then NODE is a boundary. */
633 lto_output_ref (struct lto_simple_output_block
*ob
, struct ipa_ref
*ref
,
634 lto_cgraph_encoder_t encoder
,
635 lto_varpool_encoder_t varpool_encoder
)
638 bp
= bitpack_create (ob
->main_stream
);
639 bp_pack_value (&bp
, ref
->refered_type
, 1);
640 bp_pack_value (&bp
, ref
->use
, 2);
641 lto_output_bitpack (&bp
);
642 if (ref
->refered_type
== IPA_REF_CGRAPH
)
644 int nref
= lto_cgraph_encoder_lookup (encoder
, ipa_ref_node (ref
));
645 gcc_assert (nref
!= LCC_NOT_FOUND
);
646 lto_output_sleb128_stream (ob
->main_stream
, nref
);
650 int nref
= lto_varpool_encoder_lookup (varpool_encoder
,
651 ipa_ref_varpool_node (ref
));
652 gcc_assert (nref
!= LCC_NOT_FOUND
);
653 lto_output_sleb128_stream (ob
->main_stream
, nref
);
657 /* Stream out profile_summary to OB. */
660 output_profile_summary (struct lto_simple_output_block
*ob
)
664 /* We do not output num, sum_all and run_max, they are not used by
665 GCC profile feedback and they are difficult to merge from multiple
667 gcc_assert (profile_info
->runs
);
668 lto_output_uleb128_stream (ob
->main_stream
, profile_info
->runs
);
669 lto_output_uleb128_stream (ob
->main_stream
, profile_info
->sum_max
);
672 lto_output_uleb128_stream (ob
->main_stream
, 0);
675 /* Add NODE into encoder as well as nodes it is cloned from.
676 Do it in a way so clones appear first. */
679 add_node_to (lto_cgraph_encoder_t encoder
, struct cgraph_node
*node
,
683 add_node_to (encoder
, node
->clone_of
, include_body
);
684 else if (include_body
)
685 lto_set_cgraph_encoder_encode_body (encoder
, node
);
686 lto_cgraph_encoder_encode (encoder
, node
);
689 /* Add all references in LIST to encoders. */
692 add_references (lto_cgraph_encoder_t encoder
,
693 lto_varpool_encoder_t varpool_encoder
,
694 struct ipa_ref_list
*list
)
698 for (i
= 0; ipa_ref_list_reference_iterate (list
, i
, ref
); i
++)
699 if (ref
->refered_type
== IPA_REF_CGRAPH
)
700 add_node_to (encoder
, ipa_ref_node (ref
), false);
703 struct varpool_node
*vnode
= ipa_ref_varpool_node (ref
);
704 lto_varpool_encoder_encode (varpool_encoder
, vnode
);
708 /* Output all callees or indirect outgoing edges. EDGE must be the first such
712 output_outgoing_cgraph_edges (struct cgraph_edge
*edge
,
713 struct lto_simple_output_block
*ob
,
714 lto_cgraph_encoder_t encoder
)
719 /* Output edges in backward direction, so the reconstructed callgraph match
720 and it is easy to associate call sites in the IPA pass summaries. */
721 while (edge
->next_callee
)
722 edge
= edge
->next_callee
;
723 for (; edge
; edge
= edge
->prev_callee
)
724 lto_output_edge (ob
, edge
, encoder
);
727 /* Output the part of the cgraph in SET. */
730 output_refs (cgraph_node_set set
, varpool_node_set vset
,
731 lto_cgraph_encoder_t encoder
,
732 lto_varpool_encoder_t varpool_encoder
)
734 cgraph_node_set_iterator csi
;
735 varpool_node_set_iterator vsi
;
736 struct lto_simple_output_block
*ob
;
741 ob
= lto_create_simple_output_block (LTO_section_refs
);
743 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
745 struct cgraph_node
*node
= csi_node (csi
);
747 count
= ipa_ref_list_nreferences (&node
->ref_list
);
750 lto_output_uleb128_stream (ob
->main_stream
, count
);
751 lto_output_uleb128_stream (ob
->main_stream
,
752 lto_cgraph_encoder_lookup (encoder
, node
));
753 for (i
= 0; ipa_ref_list_reference_iterate (&node
->ref_list
, i
, ref
); i
++)
754 lto_output_ref (ob
, ref
, encoder
, varpool_encoder
);
758 lto_output_uleb128_stream (ob
->main_stream
, 0);
760 for (vsi
= vsi_start (vset
); !vsi_end_p (vsi
); vsi_next (&vsi
))
762 struct varpool_node
*node
= vsi_node (vsi
);
764 count
= ipa_ref_list_nreferences (&node
->ref_list
);
767 lto_output_uleb128_stream (ob
->main_stream
, count
);
768 lto_output_uleb128_stream (ob
->main_stream
,
769 lto_varpool_encoder_lookup (varpool_encoder
,
771 for (i
= 0; ipa_ref_list_reference_iterate (&node
->ref_list
, i
, ref
); i
++)
772 lto_output_ref (ob
, ref
, encoder
, varpool_encoder
);
776 lto_output_uleb128_stream (ob
->main_stream
, 0);
778 lto_destroy_simple_output_block (ob
);
781 /* Find out all cgraph and varpool nodes we want to encode in current unit
782 and insert them to encoders. */
784 compute_ltrans_boundary (struct lto_out_decl_state
*state
,
785 cgraph_node_set set
, varpool_node_set vset
)
787 struct cgraph_node
*node
;
788 cgraph_node_set_iterator csi
;
789 varpool_node_set_iterator vsi
;
790 struct cgraph_edge
*edge
;
792 lto_cgraph_encoder_t encoder
;
793 lto_varpool_encoder_t varpool_encoder
;
795 encoder
= state
->cgraph_node_encoder
= lto_cgraph_encoder_new ();
796 varpool_encoder
= state
->varpool_node_encoder
= lto_varpool_encoder_new ();
798 /* Go over all the nodes in SET and assign references. */
799 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
801 node
= csi_node (csi
);
802 add_node_to (encoder
, node
, true);
803 add_references (encoder
, varpool_encoder
, &node
->ref_list
);
805 for (vsi
= vsi_start (vset
); !vsi_end_p (vsi
); vsi_next (&vsi
))
807 struct varpool_node
*vnode
= vsi_node (vsi
);
808 gcc_assert (!vnode
->alias
);
809 lto_varpool_encoder_encode (varpool_encoder
, vnode
);
810 lto_set_varpool_encoder_encode_initializer (varpool_encoder
, vnode
);
811 add_references (encoder
, varpool_encoder
, &vnode
->ref_list
);
813 /* Pickle in also the initializer of all referenced readonly variables
814 to help folding. Constant pool variables are not shared, so we must
816 for (i
= 0; i
< lto_varpool_encoder_size (varpool_encoder
); i
++)
818 struct varpool_node
*vnode
= lto_varpool_encoder_deref (varpool_encoder
, i
);
819 if (DECL_INITIAL (vnode
->decl
)
820 && !lto_varpool_encoder_encode_initializer_p (varpool_encoder
,
822 && const_value_known_p (vnode
->decl
))
824 lto_set_varpool_encoder_encode_initializer (varpool_encoder
, vnode
);
825 add_references (encoder
, varpool_encoder
, &vnode
->ref_list
);
829 /* Go over all the nodes again to include callees that are not in
831 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
833 node
= csi_node (csi
);
834 for (edge
= node
->callees
; edge
; edge
= edge
->next_callee
)
836 struct cgraph_node
*callee
= edge
->callee
;
837 if (!cgraph_node_in_set_p (callee
, set
))
839 /* We should have moved all the inlines. */
840 gcc_assert (!callee
->global
.inlined_to
);
841 add_node_to (encoder
, callee
, false);
847 /* Output the part of the cgraph in SET. */
850 output_cgraph (cgraph_node_set set
, varpool_node_set vset
)
852 struct cgraph_node
*node
;
853 struct lto_simple_output_block
*ob
;
854 cgraph_node_set_iterator csi
;
856 lto_cgraph_encoder_t encoder
;
857 lto_varpool_encoder_t varpool_encoder
;
858 struct cgraph_asm_node
*can
;
859 static bool asm_nodes_output
= false;
862 output_cgraph_opt_summary (set
);
864 ob
= lto_create_simple_output_block (LTO_section_cgraph
);
866 output_profile_summary (ob
);
868 /* An encoder for cgraph nodes should have been created by
869 ipa_write_summaries_1. */
870 gcc_assert (ob
->decl_state
->cgraph_node_encoder
);
871 gcc_assert (ob
->decl_state
->varpool_node_encoder
);
872 encoder
= ob
->decl_state
->cgraph_node_encoder
;
873 varpool_encoder
= ob
->decl_state
->varpool_node_encoder
;
875 /* Write out the nodes. We must first output a node and then its clones,
876 otherwise at a time reading back the node there would be nothing to clone
878 n_nodes
= lto_cgraph_encoder_size (encoder
);
879 for (i
= 0; i
< n_nodes
; i
++)
881 node
= lto_cgraph_encoder_deref (encoder
, i
);
882 lto_output_node (ob
, node
, encoder
, set
, vset
);
885 /* Go over the nodes in SET again to write edges. */
886 for (csi
= csi_start (set
); !csi_end_p (csi
); csi_next (&csi
))
888 node
= csi_node (csi
);
889 output_outgoing_cgraph_edges (node
->callees
, ob
, encoder
);
890 output_outgoing_cgraph_edges (node
->indirect_calls
, ob
, encoder
);
893 lto_output_uleb128_stream (ob
->main_stream
, 0);
895 /* Emit toplevel asms.
896 When doing WPA we must output every asm just once. Since we do not partition asm
897 nodes at all, output them to first output. This is kind of hack, but should work
899 if (!asm_nodes_output
)
901 asm_nodes_output
= true;
902 for (can
= cgraph_asm_nodes
; can
; can
= can
->next
)
904 int len
= TREE_STRING_LENGTH (can
->asm_str
);
905 lto_output_uleb128_stream (ob
->main_stream
, len
);
906 for (i
= 0; i
< len
; ++i
)
907 lto_output_1_stream (ob
->main_stream
,
908 TREE_STRING_POINTER (can
->asm_str
)[i
]);
912 lto_output_uleb128_stream (ob
->main_stream
, 0);
914 lto_destroy_simple_output_block (ob
);
915 output_varpool (set
, vset
);
916 output_refs (set
, vset
, encoder
, varpool_encoder
);
919 /* Overwrite the information in NODE based on FILE_DATA, TAG, FLAGS,
920 STACK_SIZE, SELF_TIME and SELF_SIZE. This is called either to initialize
921 NODE or to replace the values in it, for instance because the first
922 time we saw it, the function body was not available but now it
923 is. BP is a bitpack with all the bitflags for NODE read from the
927 input_overwrite_node (struct lto_file_decl_data
*file_data
,
928 struct cgraph_node
*node
,
929 enum LTO_cgraph_tags tag
,
930 struct bitpack_d
*bp
,
931 unsigned int stack_size
,
932 unsigned int self_time
,
933 unsigned int time_inlining_benefit
,
934 unsigned int self_size
,
935 unsigned int size_inlining_benefit
,
936 enum ld_plugin_symbol_resolution resolution
)
938 node
->aux
= (void *) tag
;
939 node
->local
.inline_summary
.estimated_self_stack_size
= stack_size
;
940 node
->local
.inline_summary
.self_time
= self_time
;
941 node
->local
.inline_summary
.time_inlining_benefit
= time_inlining_benefit
;
942 node
->local
.inline_summary
.self_size
= self_size
;
943 node
->local
.inline_summary
.size_inlining_benefit
= size_inlining_benefit
;
944 node
->global
.time
= self_time
;
945 node
->global
.size
= self_size
;
946 node
->global
.estimated_stack_size
= stack_size
;
947 node
->global
.estimated_growth
= INT_MIN
;
948 node
->local
.lto_file_data
= file_data
;
950 node
->local
.local
= bp_unpack_value (bp
, 1);
951 node
->local
.externally_visible
= bp_unpack_value (bp
, 1);
952 node
->local
.finalized
= bp_unpack_value (bp
, 1);
953 node
->local
.inlinable
= bp_unpack_value (bp
, 1);
954 node
->local
.versionable
= bp_unpack_value (bp
, 1);
955 node
->local
.can_change_signature
= bp_unpack_value (bp
, 1);
956 node
->local
.disregard_inline_limits
= bp_unpack_value (bp
, 1);
957 node
->local
.redefined_extern_inline
= bp_unpack_value (bp
, 1);
958 node
->local
.vtable_method
= bp_unpack_value (bp
, 1);
959 node
->needed
= bp_unpack_value (bp
, 1);
960 node
->address_taken
= bp_unpack_value (bp
, 1);
961 node
->abstract_and_needed
= bp_unpack_value (bp
, 1);
962 node
->reachable_from_other_partition
= bp_unpack_value (bp
, 1);
963 node
->lowered
= bp_unpack_value (bp
, 1);
964 node
->analyzed
= tag
== LTO_cgraph_analyzed_node
;
965 node
->in_other_partition
= bp_unpack_value (bp
, 1);
966 if (node
->in_other_partition
967 /* Avoid updating decl when we are seeing just inline clone.
968 When inlining function that has functions already inlined into it,
969 we produce clones of inline clones.
971 WPA partitioning might put each clone into different unit and
972 we might end up streaming inline clone from other partition
973 to support clone we are interested in. */
975 || node
->clone_of
->decl
!= node
->decl
))
977 DECL_EXTERNAL (node
->decl
) = 1;
978 TREE_STATIC (node
->decl
) = 0;
980 node
->alias
= bp_unpack_value (bp
, 1);
981 node
->finalized_by_frontend
= bp_unpack_value (bp
, 1);
982 node
->frequency
= (enum node_frequency
)bp_unpack_value (bp
, 2);
983 node
->only_called_at_startup
= bp_unpack_value (bp
, 1);
984 node
->only_called_at_exit
= bp_unpack_value (bp
, 1);
985 node
->resolution
= resolution
;
988 /* Output the part of the cgraph in SET. */
991 output_varpool (cgraph_node_set set
, varpool_node_set vset
)
993 struct lto_simple_output_block
*ob
= lto_create_simple_output_block (LTO_section_varpool
);
994 lto_varpool_encoder_t varpool_encoder
= ob
->decl_state
->varpool_node_encoder
;
995 int len
= lto_varpool_encoder_size (varpool_encoder
), i
;
997 lto_output_uleb128_stream (ob
->main_stream
, len
);
999 /* Write out the nodes. We must first output a node and then its clones,
1000 otherwise at a time reading back the node there would be nothing to clone
1002 for (i
= 0; i
< len
; i
++)
1004 lto_output_varpool_node (ob
, lto_varpool_encoder_deref (varpool_encoder
, i
),
1009 lto_destroy_simple_output_block (ob
);
1012 /* Read a node from input_block IB. TAG is the node's tag just read.
1013 Return the node read or overwriten. */
1015 static struct cgraph_node
*
1016 input_node (struct lto_file_decl_data
*file_data
,
1017 struct lto_input_block
*ib
,
1018 enum LTO_cgraph_tags tag
,
1019 VEC(cgraph_node_ptr
, heap
) *nodes
)
1022 struct cgraph_node
*node
;
1023 struct bitpack_d bp
;
1025 unsigned decl_index
;
1026 int ref
= LCC_NOT_FOUND
, ref2
= LCC_NOT_FOUND
;
1029 int time_inlining_benefit
= 0;
1030 int size_inlining_benefit
= 0;
1031 unsigned long same_body_count
= 0;
1033 enum ld_plugin_symbol_resolution resolution
;
1035 clone_ref
= lto_input_sleb128 (ib
);
1037 decl_index
= lto_input_uleb128 (ib
);
1038 fn_decl
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1040 if (clone_ref
!= LCC_NOT_FOUND
)
1042 node
= cgraph_clone_node (VEC_index (cgraph_node_ptr
, nodes
, clone_ref
), fn_decl
,
1043 0, CGRAPH_FREQ_BASE
, 0, false, NULL
);
1046 node
= cgraph_node (fn_decl
);
1048 node
->count
= lto_input_sleb128 (ib
);
1049 node
->count_materialization_scale
= lto_input_sleb128 (ib
);
1051 if (tag
== LTO_cgraph_analyzed_node
)
1053 stack_size
= lto_input_sleb128 (ib
);
1054 self_size
= lto_input_sleb128 (ib
);
1055 size_inlining_benefit
= lto_input_sleb128 (ib
);
1056 self_time
= lto_input_sleb128 (ib
);
1057 time_inlining_benefit
= lto_input_sleb128 (ib
);
1059 ref
= lto_input_sleb128 (ib
);
1062 ref2
= lto_input_sleb128 (ib
);
1064 /* Make sure that we have not read this node before. Nodes that
1065 have already been read will have their tag stored in the 'aux'
1066 field. Since built-in functions can be referenced in multiple
1067 functions, they are expected to be read more than once. */
1068 if (node
->aux
&& !DECL_IS_BUILTIN (node
->decl
))
1069 internal_error ("bytecode stream: found multiple instances of cgraph "
1070 "node %d", node
->uid
);
1072 bp
= lto_input_bitpack (ib
);
1073 resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1074 input_overwrite_node (file_data
, node
, tag
, &bp
, stack_size
, self_time
,
1075 time_inlining_benefit
, self_size
,
1076 size_inlining_benefit
, resolution
);
1078 /* Store a reference for now, and fix up later to be a pointer. */
1079 node
->global
.inlined_to
= (cgraph_node_ptr
) (intptr_t) ref
;
1081 /* Store a reference for now, and fix up later to be a pointer. */
1082 node
->same_comdat_group
= (cgraph_node_ptr
) (intptr_t) ref2
;
1084 same_body_count
= lto_input_uleb128 (ib
);
1085 while (same_body_count
-- > 0)
1089 struct cgraph_node
*alias
;
1090 decl_index
= lto_input_uleb128 (ib
);
1091 alias_decl
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1092 type
= lto_input_uleb128 (ib
);
1096 decl_index
= lto_input_uleb128 (ib
);
1097 real_alias
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1098 alias
= cgraph_same_body_alias (node
, alias_decl
, real_alias
);
1102 HOST_WIDE_INT fixed_offset
= lto_input_uleb128 (ib
);
1103 HOST_WIDE_INT virtual_value
= lto_input_uleb128 (ib
);
1105 decl_index
= lto_input_uleb128 (ib
);
1106 real_alias
= lto_file_decl_data_get_fn_decl (file_data
, decl_index
);
1107 alias
= cgraph_add_thunk (node
, alias_decl
, fn_decl
, type
& 2, fixed_offset
,
1109 (type
& 4) ? size_int (virtual_value
) : NULL_TREE
,
1113 alias
->resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1118 /* Read a node from input_block IB. TAG is the node's tag just read.
1119 Return the node read or overwriten. */
1121 static struct varpool_node
*
1122 input_varpool_node (struct lto_file_decl_data
*file_data
,
1123 struct lto_input_block
*ib
)
1127 struct varpool_node
*node
;
1128 struct bitpack_d bp
;
1131 int ref
= LCC_NOT_FOUND
;
1133 decl_index
= lto_input_uleb128 (ib
);
1134 var_decl
= lto_file_decl_data_get_var_decl (file_data
, decl_index
);
1135 node
= varpool_node (var_decl
);
1136 node
->lto_file_data
= file_data
;
1138 bp
= lto_input_bitpack (ib
);
1139 node
->externally_visible
= bp_unpack_value (&bp
, 1);
1140 node
->force_output
= bp_unpack_value (&bp
, 1);
1141 node
->finalized
= bp_unpack_value (&bp
, 1);
1142 node
->alias
= bp_unpack_value (&bp
, 1);
1143 node
->analyzed
= node
->finalized
;
1144 node
->used_from_other_partition
= bp_unpack_value (&bp
, 1);
1145 node
->in_other_partition
= bp_unpack_value (&bp
, 1);
1146 if (node
->in_other_partition
)
1148 DECL_EXTERNAL (node
->decl
) = 1;
1149 TREE_STATIC (node
->decl
) = 0;
1151 aliases_p
= bp_unpack_value (&bp
, 1);
1152 if (node
->finalized
)
1153 varpool_mark_needed_node (node
);
1154 ref
= lto_input_sleb128 (ib
);
1155 /* Store a reference for now, and fix up later to be a pointer. */
1156 node
->same_comdat_group
= (struct varpool_node
*) (intptr_t) ref
;
1157 node
->resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1160 count
= lto_input_uleb128 (ib
);
1161 for (; count
> 0; count
--)
1163 tree decl
= lto_file_decl_data_get_var_decl (file_data
,
1164 lto_input_uleb128 (ib
));
1165 struct varpool_node
*alias
;
1166 alias
= varpool_extra_name_alias (decl
, var_decl
);
1167 alias
->resolution
= (enum ld_plugin_symbol_resolution
)lto_input_uleb128 (ib
);
1173 /* Read a node from input_block IB. TAG is the node's tag just read.
1174 Return the node read or overwriten. */
1177 input_ref (struct lto_input_block
*ib
,
1178 struct cgraph_node
*refering_node
,
1179 struct varpool_node
*refering_varpool_node
,
1180 VEC(cgraph_node_ptr
, heap
) *nodes
,
1181 VEC(varpool_node_ptr
, heap
) *varpool_nodes
)
1183 struct cgraph_node
*node
= NULL
;
1184 struct varpool_node
*varpool_node
= NULL
;
1185 struct bitpack_d bp
;
1186 enum ipa_ref_type type
;
1187 enum ipa_ref_use use
;
1189 bp
= lto_input_bitpack (ib
);
1190 type
= (enum ipa_ref_type
) bp_unpack_value (&bp
, 1);
1191 use
= (enum ipa_ref_use
) bp_unpack_value (&bp
, 2);
1192 if (type
== IPA_REF_CGRAPH
)
1193 node
= VEC_index (cgraph_node_ptr
, nodes
, lto_input_sleb128 (ib
));
1195 varpool_node
= VEC_index (varpool_node_ptr
, varpool_nodes
, lto_input_sleb128 (ib
));
1196 ipa_record_reference (refering_node
, refering_varpool_node
,
1197 node
, varpool_node
, use
, NULL
);
1200 /* Read an edge from IB. NODES points to a vector of previously read nodes for
1201 decoding caller and callee of the edge to be read. If INDIRECT is true, the
1202 edge being read is indirect (in the sense that it has
1203 indirect_unknown_callee set). */
1206 input_edge (struct lto_input_block
*ib
, VEC(cgraph_node_ptr
, heap
) *nodes
,
1209 struct cgraph_node
*caller
, *callee
;
1210 struct cgraph_edge
*edge
;
1211 unsigned int stmt_id
;
1215 cgraph_inline_failed_t inline_failed
;
1216 struct bitpack_d bp
;
1219 caller
= VEC_index (cgraph_node_ptr
, nodes
, lto_input_sleb128 (ib
));
1220 if (caller
== NULL
|| caller
->decl
== NULL_TREE
)
1221 internal_error ("bytecode stream: no caller found while reading edge");
1225 callee
= VEC_index (cgraph_node_ptr
, nodes
, lto_input_sleb128 (ib
));
1226 if (callee
== NULL
|| callee
->decl
== NULL_TREE
)
1227 internal_error ("bytecode stream: no callee found while reading edge");
1232 count
= (gcov_type
) lto_input_sleb128 (ib
);
1234 bp
= lto_input_bitpack (ib
);
1235 stmt_id
= (unsigned int) bp_unpack_value (&bp
, HOST_BITS_PER_INT
);
1236 inline_failed
= (cgraph_inline_failed_t
) bp_unpack_value (&bp
,
1238 freq
= (int) bp_unpack_value (&bp
, HOST_BITS_PER_INT
);
1239 nest
= (unsigned) bp_unpack_value (&bp
, 30);
1242 edge
= cgraph_create_indirect_edge (caller
, NULL
, 0, count
, freq
, nest
);
1244 edge
= cgraph_create_edge (caller
, callee
, NULL
, count
, freq
, nest
);
1246 edge
->indirect_inlining_edge
= bp_unpack_value (&bp
, 1);
1247 edge
->lto_stmt_uid
= stmt_id
;
1248 edge
->inline_failed
= inline_failed
;
1249 edge
->call_stmt_cannot_inline_p
= bp_unpack_value (&bp
, 1);
1250 edge
->can_throw_external
= bp_unpack_value (&bp
, 1);
1253 if (bp_unpack_value (&bp
, 1))
1254 ecf_flags
|= ECF_CONST
;
1255 if (bp_unpack_value (&bp
, 1))
1256 ecf_flags
|= ECF_PURE
;
1257 if (bp_unpack_value (&bp
, 1))
1258 ecf_flags
|= ECF_NORETURN
;
1259 if (bp_unpack_value (&bp
, 1))
1260 ecf_flags
|= ECF_MALLOC
;
1261 if (bp_unpack_value (&bp
, 1))
1262 ecf_flags
|= ECF_NOTHROW
;
1263 if (bp_unpack_value (&bp
, 1))
1264 ecf_flags
|= ECF_RETURNS_TWICE
;
1265 edge
->indirect_info
->ecf_flags
= ecf_flags
;
1270 /* Read a cgraph from IB using the info in FILE_DATA. */
1272 static VEC(cgraph_node_ptr
, heap
) *
1273 input_cgraph_1 (struct lto_file_decl_data
*file_data
,
1274 struct lto_input_block
*ib
)
1276 enum LTO_cgraph_tags tag
;
1277 VEC(cgraph_node_ptr
, heap
) *nodes
= NULL
;
1278 struct cgraph_node
*node
;
1280 unsigned HOST_WIDE_INT len
;
1282 tag
= (enum LTO_cgraph_tags
) lto_input_uleb128 (ib
);
1285 if (tag
== LTO_cgraph_edge
)
1286 input_edge (ib
, nodes
, false);
1287 else if (tag
== LTO_cgraph_indirect_edge
)
1288 input_edge (ib
, nodes
, true);
1291 node
= input_node (file_data
, ib
, tag
,nodes
);
1292 if (node
== NULL
|| node
->decl
== NULL_TREE
)
1293 internal_error ("bytecode stream: found empty cgraph node");
1294 VEC_safe_push (cgraph_node_ptr
, heap
, nodes
, node
);
1295 lto_cgraph_encoder_encode (file_data
->cgraph_node_encoder
, node
);
1298 tag
= (enum LTO_cgraph_tags
) lto_input_uleb128 (ib
);
1301 /* Input toplevel asms. */
1302 len
= lto_input_uleb128 (ib
);
1305 char *str
= (char *)xmalloc (len
+ 1);
1306 for (i
= 0; i
< len
; ++i
)
1307 str
[i
] = lto_input_1_unsigned (ib
);
1308 cgraph_add_asm_node (build_string (len
, str
));
1311 len
= lto_input_uleb128 (ib
);
1313 /* AUX pointers should be all non-zero for nodes read from the stream. */
1314 #ifdef ENABLE_CHECKING
1315 FOR_EACH_VEC_ELT (cgraph_node_ptr
, nodes
, i
, node
)
1316 gcc_assert (node
->aux
);
1318 FOR_EACH_VEC_ELT (cgraph_node_ptr
, nodes
, i
, node
)
1320 int ref
= (int) (intptr_t) node
->global
.inlined_to
;
1322 /* We share declaration of builtins, so we may read same node twice. */
1327 /* Fixup inlined_to from reference to pointer. */
1328 if (ref
!= LCC_NOT_FOUND
)
1329 node
->global
.inlined_to
= VEC_index (cgraph_node_ptr
, nodes
, ref
);
1331 node
->global
.inlined_to
= NULL
;
1333 ref
= (int) (intptr_t) node
->same_comdat_group
;
1335 /* Fixup same_comdat_group from reference to pointer. */
1336 if (ref
!= LCC_NOT_FOUND
)
1337 node
->same_comdat_group
= VEC_index (cgraph_node_ptr
, nodes
, ref
);
1339 node
->same_comdat_group
= NULL
;
1341 FOR_EACH_VEC_ELT (cgraph_node_ptr
, nodes
, i
, node
)
1342 node
->aux
= (void *)1;
1346 /* Read a varpool from IB using the info in FILE_DATA. */
1348 static VEC(varpool_node_ptr
, heap
) *
1349 input_varpool_1 (struct lto_file_decl_data
*file_data
,
1350 struct lto_input_block
*ib
)
1352 unsigned HOST_WIDE_INT len
;
1353 VEC(varpool_node_ptr
, heap
) *varpool
= NULL
;
1355 struct varpool_node
*node
;
1357 len
= lto_input_uleb128 (ib
);
1360 VEC_safe_push (varpool_node_ptr
, heap
, varpool
,
1361 input_varpool_node (file_data
, ib
));
1364 #ifdef ENABLE_CHECKING
1365 FOR_EACH_VEC_ELT (varpool_node_ptr
, varpool
, i
, node
)
1366 gcc_assert (!node
->aux
);
1368 FOR_EACH_VEC_ELT (varpool_node_ptr
, varpool
, i
, node
)
1370 int ref
= (int) (intptr_t) node
->same_comdat_group
;
1371 /* We share declaration of builtins, so we may read same node twice. */
1374 node
->aux
= (void *)1;
1376 /* Fixup same_comdat_group from reference to pointer. */
1377 if (ref
!= LCC_NOT_FOUND
)
1378 node
->same_comdat_group
= VEC_index (varpool_node_ptr
, varpool
, ref
);
1380 node
->same_comdat_group
= NULL
;
1382 FOR_EACH_VEC_ELT (varpool_node_ptr
, varpool
, i
, node
)
1387 /* Input ipa_refs. */
1390 input_refs (struct lto_input_block
*ib
,
1391 VEC(cgraph_node_ptr
, heap
) *nodes
,
1392 VEC(varpool_node_ptr
, heap
) *varpool
)
1398 struct cgraph_node
*node
;
1399 count
= lto_input_uleb128 (ib
);
1402 idx
= lto_input_uleb128 (ib
);
1403 node
= VEC_index (cgraph_node_ptr
, nodes
, idx
);
1406 input_ref (ib
, node
, NULL
, nodes
, varpool
);
1412 struct varpool_node
*node
;
1413 count
= lto_input_uleb128 (ib
);
1416 node
= VEC_index (varpool_node_ptr
, varpool
, lto_input_uleb128 (ib
));
1419 input_ref (ib
, NULL
, node
, nodes
, varpool
);
1426 static struct gcov_ctr_summary lto_gcov_summary
;
1428 /* Input profile_info from IB. */
1430 input_profile_summary (struct lto_input_block
*ib
,
1431 struct lto_file_decl_data
*file_data
)
1433 unsigned int runs
= lto_input_uleb128 (ib
);
1436 file_data
->profile_info
.runs
= runs
;
1437 file_data
->profile_info
.sum_max
= lto_input_uleb128 (ib
);
1442 /* Rescale profile summaries to the same number of runs in the whole unit. */
1445 merge_profile_summaries (struct lto_file_decl_data
**file_data_vec
)
1447 struct lto_file_decl_data
*file_data
;
1449 gcov_unsigned_t max_runs
= 0;
1450 struct cgraph_node
*node
;
1451 struct cgraph_edge
*edge
;
1453 /* Find unit with maximal number of runs. If we ever get serious about
1454 roundoff errors, we might also consider computing smallest common
1456 for (j
= 0; (file_data
= file_data_vec
[j
]) != NULL
; j
++)
1457 if (max_runs
< file_data
->profile_info
.runs
)
1458 max_runs
= file_data
->profile_info
.runs
;
1463 /* Simple overflow check. We probably don't need to support that many train
1464 runs. Such a large value probably imply data corruption anyway. */
1465 if (max_runs
> INT_MAX
/ REG_BR_PROB_BASE
)
1467 sorry ("At most %i profile runs is supported. Perhaps corrupted profile?",
1468 INT_MAX
/ REG_BR_PROB_BASE
);
1472 profile_info
= <o_gcov_summary
;
1473 lto_gcov_summary
.runs
= max_runs
;
1474 lto_gcov_summary
.sum_max
= 0;
1476 /* Rescale all units to the maximal number of runs.
1477 sum_max can not be easily merged, as we have no idea what files come from
1478 the same run. We do not use the info anyway, so leave it 0. */
1479 for (j
= 0; (file_data
= file_data_vec
[j
]) != NULL
; j
++)
1480 if (file_data
->profile_info
.runs
)
1482 int scale
= ((REG_BR_PROB_BASE
* max_runs
1483 + file_data
->profile_info
.runs
/ 2)
1484 / file_data
->profile_info
.runs
);
1485 lto_gcov_summary
.sum_max
= MAX (lto_gcov_summary
.sum_max
,
1486 (file_data
->profile_info
.sum_max
1488 + REG_BR_PROB_BASE
/ 2)
1489 / REG_BR_PROB_BASE
);
1492 /* Watch roundoff errors. */
1493 if (lto_gcov_summary
.sum_max
< max_runs
)
1494 lto_gcov_summary
.sum_max
= max_runs
;
1496 /* If merging already happent at WPA time, we are done. */
1500 /* Now compute count_materialization_scale of each node.
1501 During LTRANS we already have values of count_materialization_scale
1502 computed, so just update them. */
1503 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1504 if (node
->local
.lto_file_data
->profile_info
.runs
)
1509 ((node
->count_materialization_scale
* max_runs
1510 + node
->local
.lto_file_data
->profile_info
.runs
/ 2)
1511 / node
->local
.lto_file_data
->profile_info
.runs
);
1512 node
->count_materialization_scale
= scale
;
1514 fatal_error ("Profile information in %s corrupted",
1515 file_data
->file_name
);
1517 if (scale
== REG_BR_PROB_BASE
)
1519 for (edge
= node
->callees
; edge
; edge
= edge
->next_callee
)
1520 edge
->count
= ((edge
->count
* scale
+ REG_BR_PROB_BASE
/ 2)
1521 / REG_BR_PROB_BASE
);
1522 node
->count
= ((node
->count
* scale
+ REG_BR_PROB_BASE
/ 2)
1523 / REG_BR_PROB_BASE
);
1527 /* Input and merge the cgraph from each of the .o files passed to
1533 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
1534 struct lto_file_decl_data
*file_data
;
1536 struct cgraph_node
*node
;
1538 while ((file_data
= file_data_vec
[j
++]))
1542 struct lto_input_block
*ib
;
1543 VEC(cgraph_node_ptr
, heap
) *nodes
;
1544 VEC(varpool_node_ptr
, heap
) *varpool
;
1546 ib
= lto_create_simple_input_block (file_data
, LTO_section_cgraph
,
1549 fatal_error ("cannot find LTO cgraph in %s", file_data
->file_name
);
1550 input_profile_summary (ib
, file_data
);
1551 file_data
->cgraph_node_encoder
= lto_cgraph_encoder_new ();
1552 nodes
= input_cgraph_1 (file_data
, ib
);
1553 lto_destroy_simple_input_block (file_data
, LTO_section_cgraph
,
1556 ib
= lto_create_simple_input_block (file_data
, LTO_section_varpool
,
1559 fatal_error ("cannot find LTO varpool in %s", file_data
->file_name
);
1560 varpool
= input_varpool_1 (file_data
, ib
);
1561 lto_destroy_simple_input_block (file_data
, LTO_section_varpool
,
1564 ib
= lto_create_simple_input_block (file_data
, LTO_section_refs
,
1567 fatal_error("cannot find LTO section refs in %s", file_data
->file_name
);
1568 input_refs (ib
, nodes
, varpool
);
1569 lto_destroy_simple_input_block (file_data
, LTO_section_refs
,
1572 input_cgraph_opt_summary (nodes
);
1573 VEC_free (cgraph_node_ptr
, heap
, nodes
);
1574 VEC_free (varpool_node_ptr
, heap
, varpool
);
1576 merge_profile_summaries (file_data_vec
);
1579 /* Clear out the aux field that was used to store enough state to
1580 tell which nodes should be overwritten. */
1581 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1583 /* Some nodes may have been created by cgraph_node. This
1584 happens when the callgraph contains nested functions. If the
1585 node for the parent function was never emitted to the gimple
1586 file, cgraph_node will create a node for it when setting the
1587 context of the nested function. */
1588 if (node
->local
.lto_file_data
)
1593 /* True when we need optimization summary for NODE. */
1596 output_cgraph_opt_summary_p (struct cgraph_node
*node
, cgraph_node_set set
)
1598 struct cgraph_edge
*e
;
1600 if (cgraph_node_in_set_p (node
, set
))
1602 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1603 if (e
->indirect_info
1604 && e
->indirect_info
->thunk_delta
!= 0)
1607 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
1608 if (e
->indirect_info
->thunk_delta
!= 0)
1612 return (node
->clone_of
1613 && (node
->clone
.tree_map
1614 || node
->clone
.args_to_skip
1615 || node
->clone
.combined_args_to_skip
));
1618 /* Output optimization summary for EDGE to OB. */
1620 output_edge_opt_summary (struct output_block
*ob
,
1621 struct cgraph_edge
*edge
)
1623 if (edge
->indirect_info
)
1624 lto_output_sleb128_stream (ob
->main_stream
,
1625 edge
->indirect_info
->thunk_delta
);
1627 lto_output_sleb128_stream (ob
->main_stream
, 0);
1630 /* Output optimization summary for NODE to OB. */
1633 output_node_opt_summary (struct output_block
*ob
,
1634 struct cgraph_node
*node
,
1635 cgraph_node_set set
)
1639 struct ipa_replace_map
*map
;
1640 struct bitpack_d bp
;
1642 struct cgraph_edge
*e
;
1644 lto_output_uleb128_stream (ob
->main_stream
,
1645 bitmap_count_bits (node
->clone
.args_to_skip
));
1646 EXECUTE_IF_SET_IN_BITMAP (node
->clone
.args_to_skip
, 0, index
, bi
)
1647 lto_output_uleb128_stream (ob
->main_stream
, index
);
1648 lto_output_uleb128_stream (ob
->main_stream
,
1649 bitmap_count_bits (node
->clone
.combined_args_to_skip
));
1650 EXECUTE_IF_SET_IN_BITMAP (node
->clone
.combined_args_to_skip
, 0, index
, bi
)
1651 lto_output_uleb128_stream (ob
->main_stream
, index
);
1652 lto_output_uleb128_stream (ob
->main_stream
,
1653 VEC_length (ipa_replace_map_p
, node
->clone
.tree_map
));
1654 FOR_EACH_VEC_ELT (ipa_replace_map_p
, node
->clone
.tree_map
, i
, map
)
1659 for (parm_num
= 0, parm
= DECL_ARGUMENTS (node
->decl
); parm
;
1660 parm
= DECL_CHAIN (parm
), parm_num
++)
1661 if (map
->old_tree
== parm
)
1663 /* At the moment we assume all old trees to be PARM_DECLs, because we have no
1664 mechanism to store function local declarations into summaries. */
1666 lto_output_uleb128_stream (ob
->main_stream
, parm_num
);
1667 lto_output_tree (ob
, map
->new_tree
, true);
1668 bp
= bitpack_create (ob
->main_stream
);
1669 bp_pack_value (&bp
, map
->replace_p
, 1);
1670 bp_pack_value (&bp
, map
->ref_p
, 1);
1671 lto_output_bitpack (&bp
);
1674 if (cgraph_node_in_set_p (node
, set
))
1676 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1677 output_edge_opt_summary (ob
, e
);
1678 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
1679 output_edge_opt_summary (ob
, e
);
1683 /* Output optimization summaries stored in callgraph.
1684 At the moment it is the clone info structure. */
1687 output_cgraph_opt_summary (cgraph_node_set set
)
1689 struct cgraph_node
*node
;
1691 lto_cgraph_encoder_t encoder
;
1692 struct output_block
*ob
= create_output_block (LTO_section_cgraph_opt_sum
);
1695 ob
->cgraph_node
= NULL
;
1696 encoder
= ob
->decl_state
->cgraph_node_encoder
;
1697 n_nodes
= lto_cgraph_encoder_size (encoder
);
1698 for (i
= 0; i
< n_nodes
; i
++)
1699 if (output_cgraph_opt_summary_p (lto_cgraph_encoder_deref (encoder
, i
),
1702 lto_output_uleb128_stream (ob
->main_stream
, count
);
1703 for (i
= 0; i
< n_nodes
; i
++)
1705 node
= lto_cgraph_encoder_deref (encoder
, i
);
1706 if (output_cgraph_opt_summary_p (node
, set
))
1708 lto_output_uleb128_stream (ob
->main_stream
, i
);
1709 output_node_opt_summary (ob
, node
, set
);
1712 produce_asm (ob
, NULL
);
1713 destroy_output_block (ob
);
1716 /* Input optimisation summary of EDGE. */
1719 input_edge_opt_summary (struct cgraph_edge
*edge
,
1720 struct lto_input_block
*ib_main
)
1722 HOST_WIDE_INT thunk_delta
;
1723 thunk_delta
= lto_input_sleb128 (ib_main
);
1724 if (thunk_delta
!= 0)
1726 gcc_assert (!edge
->indirect_info
);
1727 edge
->indirect_info
= cgraph_allocate_init_indirect_info ();
1728 edge
->indirect_info
->thunk_delta
= thunk_delta
;
1732 /* Input optimisation summary of NODE. */
1735 input_node_opt_summary (struct cgraph_node
*node
,
1736 struct lto_input_block
*ib_main
,
1737 struct data_in
*data_in
)
1742 struct bitpack_d bp
;
1743 struct cgraph_edge
*e
;
1745 count
= lto_input_uleb128 (ib_main
);
1747 node
->clone
.args_to_skip
= BITMAP_GGC_ALLOC ();
1748 for (i
= 0; i
< count
; i
++)
1750 bit
= lto_input_uleb128 (ib_main
);
1751 bitmap_set_bit (node
->clone
.args_to_skip
, bit
);
1753 count
= lto_input_uleb128 (ib_main
);
1755 node
->clone
.combined_args_to_skip
= BITMAP_GGC_ALLOC ();
1756 for (i
= 0; i
< count
; i
++)
1758 bit
= lto_input_uleb128 (ib_main
);
1759 bitmap_set_bit (node
->clone
.combined_args_to_skip
, bit
);
1761 count
= lto_input_uleb128 (ib_main
);
1762 for (i
= 0; i
< count
; i
++)
1766 struct ipa_replace_map
*map
= ggc_alloc_ipa_replace_map ();
1768 VEC_safe_push (ipa_replace_map_p
, gc
, node
->clone
.tree_map
, map
);
1769 for (parm_num
= 0, parm
= DECL_ARGUMENTS (node
->decl
); parm_num
;
1770 parm
= DECL_CHAIN (parm
))
1772 map
->parm_num
= lto_input_uleb128 (ib_main
);
1773 map
->old_tree
= NULL
;
1774 map
->new_tree
= lto_input_tree (ib_main
, data_in
);
1775 bp
= lto_input_bitpack (ib_main
);
1776 map
->replace_p
= bp_unpack_value (&bp
, 1);
1777 map
->ref_p
= bp_unpack_value (&bp
, 1);
1779 for (e
= node
->callees
; e
; e
= e
->next_callee
)
1780 input_edge_opt_summary (e
, ib_main
);
1781 for (e
= node
->indirect_calls
; e
; e
= e
->next_callee
)
1782 input_edge_opt_summary (e
, ib_main
);
1785 /* Read section in file FILE_DATA of length LEN with data DATA. */
1788 input_cgraph_opt_section (struct lto_file_decl_data
*file_data
,
1789 const char *data
, size_t len
, VEC (cgraph_node_ptr
,
1792 const struct lto_function_header
*header
=
1793 (const struct lto_function_header
*) data
;
1794 const int32_t cfg_offset
= sizeof (struct lto_function_header
);
1795 const int32_t main_offset
= cfg_offset
+ header
->cfg_size
;
1796 const int32_t string_offset
= main_offset
+ header
->main_size
;
1797 struct data_in
*data_in
;
1798 struct lto_input_block ib_main
;
1802 LTO_INIT_INPUT_BLOCK (ib_main
, (const char *) data
+ main_offset
, 0,
1806 lto_data_in_create (file_data
, (const char *) data
+ string_offset
,
1807 header
->string_size
, NULL
);
1808 count
= lto_input_uleb128 (&ib_main
);
1810 for (i
= 0; i
< count
; i
++)
1812 int ref
= lto_input_uleb128 (&ib_main
);
1813 input_node_opt_summary (VEC_index (cgraph_node_ptr
, nodes
, ref
),
1816 lto_free_section_data (file_data
, LTO_section_cgraph_opt_sum
, NULL
, data
,
1818 lto_data_in_delete (data_in
);
1821 /* Input optimization summary of cgraph. */
1824 input_cgraph_opt_summary (VEC (cgraph_node_ptr
, heap
) * nodes
)
1826 struct lto_file_decl_data
**file_data_vec
= lto_get_file_decl_data ();
1827 struct lto_file_decl_data
*file_data
;
1830 while ((file_data
= file_data_vec
[j
++]))
1834 lto_get_section_data (file_data
, LTO_section_cgraph_opt_sum
, NULL
,
1838 input_cgraph_opt_section (file_data
, data
, len
, nodes
);