PR ipa/64481
[official-gcc.git] / gcc / lto-streamer-out.c
blob3b581918d6ad1dbcf305e8b27a0dcbac7750a476
1 /* Write the GIMPLE representation to a file stream.
3 Copyright (C) 2009-2015 Free Software Foundation, Inc.
4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 Re-implemented by Diego Novillo <dnovillo@google.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
12 version.
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
17 for more details.
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/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "hash-set.h"
28 #include "machmode.h"
29 #include "vec.h"
30 #include "double-int.h"
31 #include "input.h"
32 #include "alias.h"
33 #include "symtab.h"
34 #include "wide-int.h"
35 #include "inchash.h"
36 #include "tree.h"
37 #include "fold-const.h"
38 #include "stor-layout.h"
39 #include "stringpool.h"
40 #include "expr.h"
41 #include "flags.h"
42 #include "params.h"
43 #include "input.h"
44 #include "predict.h"
45 #include "hard-reg-set.h"
46 #include "function.h"
47 #include "dominance.h"
48 #include "cfg.h"
49 #include "basic-block.h"
50 #include "tree-ssa-alias.h"
51 #include "internal-fn.h"
52 #include "gimple-expr.h"
53 #include "is-a.h"
54 #include "gimple.h"
55 #include "gimple-iterator.h"
56 #include "gimple-ssa.h"
57 #include "tree-ssanames.h"
58 #include "tree-pass.h"
59 #include "diagnostic-core.h"
60 #include "except.h"
61 #include "lto-symtab.h"
62 #include "hash-map.h"
63 #include "plugin-api.h"
64 #include "ipa-ref.h"
65 #include "cgraph.h"
66 #include "lto-streamer.h"
67 #include "data-streamer.h"
68 #include "gimple-streamer.h"
69 #include "tree-streamer.h"
70 #include "streamer-hooks.h"
71 #include "cfgloop.h"
72 #include "builtins.h"
75 static void lto_write_tree (struct output_block*, tree, bool);
77 /* Clear the line info stored in DATA_IN. */
79 static void
80 clear_line_info (struct output_block *ob)
82 ob->current_file = NULL;
83 ob->current_line = 0;
84 ob->current_col = 0;
88 /* Create the output block and return it. SECTION_TYPE is
89 LTO_section_function_body or LTO_static_initializer. */
91 struct output_block *
92 create_output_block (enum lto_section_type section_type)
94 struct output_block *ob = XCNEW (struct output_block);
96 ob->section_type = section_type;
97 ob->decl_state = lto_get_out_decl_state ();
98 ob->main_stream = XCNEW (struct lto_output_stream);
99 ob->string_stream = XCNEW (struct lto_output_stream);
100 ob->writer_cache = streamer_tree_cache_create (!flag_wpa, true, false);
102 if (section_type == LTO_section_function_body)
103 ob->cfg_stream = XCNEW (struct lto_output_stream);
105 clear_line_info (ob);
107 ob->string_hash_table = new hash_table<string_slot_hasher> (37);
108 gcc_obstack_init (&ob->obstack);
110 return ob;
114 /* Destroy the output block OB. */
116 void
117 destroy_output_block (struct output_block *ob)
119 enum lto_section_type section_type = ob->section_type;
121 delete ob->string_hash_table;
122 ob->string_hash_table = NULL;
124 free (ob->main_stream);
125 free (ob->string_stream);
126 if (section_type == LTO_section_function_body)
127 free (ob->cfg_stream);
129 streamer_tree_cache_delete (ob->writer_cache);
130 obstack_free (&ob->obstack, NULL);
132 free (ob);
136 /* Look up NODE in the type table and write the index for it to OB. */
138 static void
139 output_type_ref (struct output_block *ob, tree node)
141 streamer_write_record_start (ob, LTO_type_ref);
142 lto_output_type_ref_index (ob->decl_state, ob->main_stream, node);
146 /* Return true if tree node T is written to various tables. For these
147 nodes, we sometimes want to write their phyiscal representation
148 (via lto_output_tree), and sometimes we need to emit an index
149 reference into a table (via lto_output_tree_ref). */
151 static bool
152 tree_is_indexable (tree t)
154 /* Parameters and return values of functions of variably modified types
155 must go to global stream, because they may be used in the type
156 definition. */
157 if ((TREE_CODE (t) == PARM_DECL || TREE_CODE (t) == RESULT_DECL)
158 && DECL_CONTEXT (t))
159 return variably_modified_type_p (TREE_TYPE (DECL_CONTEXT (t)), NULL_TREE);
160 /* IMPORTED_DECL is put into BLOCK and thus it never can be shared. */
161 else if (TREE_CODE (t) == IMPORTED_DECL)
162 return false;
163 else if (((TREE_CODE (t) == VAR_DECL && !TREE_STATIC (t))
164 || TREE_CODE (t) == TYPE_DECL
165 || TREE_CODE (t) == CONST_DECL
166 || TREE_CODE (t) == NAMELIST_DECL)
167 && decl_function_context (t))
168 return false;
169 else if (TREE_CODE (t) == DEBUG_EXPR_DECL)
170 return false;
171 /* Variably modified types need to be streamed alongside function
172 bodies because they can refer to local entities. Together with
173 them we have to localize their members as well.
174 ??? In theory that includes non-FIELD_DECLs as well. */
175 else if (TYPE_P (t)
176 && variably_modified_type_p (t, NULL_TREE))
177 return false;
178 else if (TREE_CODE (t) == FIELD_DECL
179 && variably_modified_type_p (DECL_CONTEXT (t), NULL_TREE))
180 return false;
181 else
182 return (TYPE_P (t) || DECL_P (t) || TREE_CODE (t) == SSA_NAME);
186 /* Output info about new location into bitpack BP.
187 After outputting bitpack, lto_output_location_data has
188 to be done to output actual data. */
190 void
191 lto_output_location (struct output_block *ob, struct bitpack_d *bp,
192 location_t loc)
194 expanded_location xloc;
196 loc = LOCATION_LOCUS (loc);
197 bp_pack_value (bp, loc == UNKNOWN_LOCATION, 1);
198 if (loc == UNKNOWN_LOCATION)
199 return;
201 xloc = expand_location (loc);
203 bp_pack_value (bp, ob->current_file != xloc.file, 1);
204 bp_pack_value (bp, ob->current_line != xloc.line, 1);
205 bp_pack_value (bp, ob->current_col != xloc.column, 1);
207 if (ob->current_file != xloc.file)
208 bp_pack_string (ob, bp, xloc.file, true);
209 ob->current_file = xloc.file;
211 if (ob->current_line != xloc.line)
212 bp_pack_var_len_unsigned (bp, xloc.line);
213 ob->current_line = xloc.line;
215 if (ob->current_col != xloc.column)
216 bp_pack_var_len_unsigned (bp, xloc.column);
217 ob->current_col = xloc.column;
221 /* If EXPR is an indexable tree node, output a reference to it to
222 output block OB. Otherwise, output the physical representation of
223 EXPR to OB. */
225 static void
226 lto_output_tree_ref (struct output_block *ob, tree expr)
228 enum tree_code code;
230 if (TYPE_P (expr))
232 output_type_ref (ob, expr);
233 return;
236 code = TREE_CODE (expr);
237 switch (code)
239 case SSA_NAME:
240 streamer_write_record_start (ob, LTO_ssa_name_ref);
241 streamer_write_uhwi (ob, SSA_NAME_VERSION (expr));
242 break;
244 case FIELD_DECL:
245 streamer_write_record_start (ob, LTO_field_decl_ref);
246 lto_output_field_decl_index (ob->decl_state, ob->main_stream, expr);
247 break;
249 case FUNCTION_DECL:
250 streamer_write_record_start (ob, LTO_function_decl_ref);
251 lto_output_fn_decl_index (ob->decl_state, ob->main_stream, expr);
252 break;
254 case VAR_DECL:
255 case DEBUG_EXPR_DECL:
256 gcc_assert (decl_function_context (expr) == NULL || TREE_STATIC (expr));
257 case PARM_DECL:
258 streamer_write_record_start (ob, LTO_global_decl_ref);
259 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
260 break;
262 case CONST_DECL:
263 streamer_write_record_start (ob, LTO_const_decl_ref);
264 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
265 break;
267 case IMPORTED_DECL:
268 gcc_assert (decl_function_context (expr) == NULL);
269 streamer_write_record_start (ob, LTO_imported_decl_ref);
270 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
271 break;
273 case TYPE_DECL:
274 streamer_write_record_start (ob, LTO_type_decl_ref);
275 lto_output_type_decl_index (ob->decl_state, ob->main_stream, expr);
276 break;
278 case NAMELIST_DECL:
279 streamer_write_record_start (ob, LTO_namelist_decl_ref);
280 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
281 break;
283 case NAMESPACE_DECL:
284 streamer_write_record_start (ob, LTO_namespace_decl_ref);
285 lto_output_namespace_decl_index (ob->decl_state, ob->main_stream, expr);
286 break;
288 case LABEL_DECL:
289 streamer_write_record_start (ob, LTO_label_decl_ref);
290 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
291 break;
293 case RESULT_DECL:
294 streamer_write_record_start (ob, LTO_result_decl_ref);
295 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
296 break;
298 case TRANSLATION_UNIT_DECL:
299 streamer_write_record_start (ob, LTO_translation_unit_decl_ref);
300 lto_output_var_decl_index (ob->decl_state, ob->main_stream, expr);
301 break;
303 default:
304 /* No other node is indexable, so it should have been handled by
305 lto_output_tree. */
306 gcc_unreachable ();
311 /* Return true if EXPR is a tree node that can be written to disk. */
313 static inline bool
314 lto_is_streamable (tree expr)
316 enum tree_code code = TREE_CODE (expr);
318 /* Notice that we reject SSA_NAMEs as well. We only emit the SSA
319 name version in lto_output_tree_ref (see output_ssa_names). */
320 return !is_lang_specific (expr)
321 && code != SSA_NAME
322 && code != CALL_EXPR
323 && code != LANG_TYPE
324 && code != MODIFY_EXPR
325 && code != INIT_EXPR
326 && code != TARGET_EXPR
327 && code != BIND_EXPR
328 && code != WITH_CLEANUP_EXPR
329 && code != STATEMENT_LIST
330 && (code == CASE_LABEL_EXPR
331 || code == DECL_EXPR
332 || TREE_CODE_CLASS (code) != tcc_statement);
336 /* For EXPR lookup and return what we want to stream to OB as DECL_INITIAL. */
338 static tree
339 get_symbol_initial_value (lto_symtab_encoder_t encoder, tree expr)
341 gcc_checking_assert (DECL_P (expr)
342 && TREE_CODE (expr) != FUNCTION_DECL
343 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL);
345 /* Handle DECL_INITIAL for symbols. */
346 tree initial = DECL_INITIAL (expr);
347 if (TREE_CODE (expr) == VAR_DECL
348 && (TREE_STATIC (expr) || DECL_EXTERNAL (expr))
349 && !DECL_IN_CONSTANT_POOL (expr)
350 && initial)
352 varpool_node *vnode;
353 /* Extra section needs about 30 bytes; do not produce it for simple
354 scalar values. */
355 if (TREE_CODE (DECL_INITIAL (expr)) == CONSTRUCTOR
356 || !(vnode = varpool_node::get (expr))
357 || !lto_symtab_encoder_encode_initializer_p (encoder, vnode))
358 initial = error_mark_node;
361 return initial;
365 /* Write a physical representation of tree node EXPR to output block
366 OB. If REF_P is true, the leaves of EXPR are emitted as references
367 via lto_output_tree_ref. IX is the index into the streamer cache
368 where EXPR is stored. */
370 static void
371 lto_write_tree_1 (struct output_block *ob, tree expr, bool ref_p)
373 /* Pack all the non-pointer fields in EXPR into a bitpack and write
374 the resulting bitpack. */
375 bitpack_d bp = bitpack_create (ob->main_stream);
376 streamer_pack_tree_bitfields (ob, &bp, expr);
377 streamer_write_bitpack (&bp);
379 /* Write all the pointer fields in EXPR. */
380 streamer_write_tree_body (ob, expr, ref_p);
382 /* Write any LTO-specific data to OB. */
383 if (DECL_P (expr)
384 && TREE_CODE (expr) != FUNCTION_DECL
385 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
387 /* Handle DECL_INITIAL for symbols. */
388 tree initial = get_symbol_initial_value
389 (ob->decl_state->symtab_node_encoder, expr);
390 stream_write_tree (ob, initial, ref_p);
394 /* Write a physical representation of tree node EXPR to output block
395 OB. If REF_P is true, the leaves of EXPR are emitted as references
396 via lto_output_tree_ref. IX is the index into the streamer cache
397 where EXPR is stored. */
399 static void
400 lto_write_tree (struct output_block *ob, tree expr, bool ref_p)
402 if (!lto_is_streamable (expr))
403 internal_error ("tree code %qs is not supported in LTO streams",
404 get_tree_code_name (TREE_CODE (expr)));
406 /* Write the header, containing everything needed to materialize
407 EXPR on the reading side. */
408 streamer_write_tree_header (ob, expr);
410 lto_write_tree_1 (ob, expr, ref_p);
412 /* Mark the end of EXPR. */
413 streamer_write_zero (ob);
416 /* Emit the physical representation of tree node EXPR to output block
417 OB. If THIS_REF_P is true, the leaves of EXPR are emitted as references
418 via lto_output_tree_ref. REF_P is used for streaming siblings of EXPR. */
420 static void
421 lto_output_tree_1 (struct output_block *ob, tree expr, hashval_t hash,
422 bool ref_p, bool this_ref_p)
424 unsigned ix;
426 gcc_checking_assert (expr != NULL_TREE
427 && !(this_ref_p && tree_is_indexable (expr)));
429 bool exists_p = streamer_tree_cache_insert (ob->writer_cache,
430 expr, hash, &ix);
431 gcc_assert (!exists_p);
432 if (streamer_handle_as_builtin_p (expr))
434 /* MD and NORMAL builtins do not need to be written out
435 completely as they are always instantiated by the
436 compiler on startup. The only builtins that need to
437 be written out are BUILT_IN_FRONTEND. For all other
438 builtins, we simply write the class and code. */
439 streamer_write_builtin (ob, expr);
441 else if (TREE_CODE (expr) == INTEGER_CST
442 && !TREE_OVERFLOW (expr))
444 /* Shared INTEGER_CST nodes are special because they need their
445 original type to be materialized by the reader (to implement
446 TYPE_CACHED_VALUES). */
447 streamer_write_integer_cst (ob, expr, ref_p);
449 else
451 /* This is the first time we see EXPR, write its fields
452 to OB. */
453 lto_write_tree (ob, expr, ref_p);
457 class DFS
459 public:
460 DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p,
461 bool single_p);
462 ~DFS ();
464 struct scc_entry
466 tree t;
467 hashval_t hash;
469 vec<scc_entry> sccstack;
471 private:
472 struct sccs
474 unsigned int dfsnum;
475 unsigned int low;
478 static int scc_entry_compare (const void *, const void *);
480 void DFS_write_tree_body (struct output_block *ob,
481 tree expr, sccs *expr_state, bool ref_p,
482 bool single_p);
484 void DFS_write_tree (struct output_block *ob, sccs *from_state,
485 tree expr, bool ref_p, bool this_ref_p,
486 bool single_p);
487 hashval_t
488 hash_scc (struct output_block *ob, unsigned first, unsigned size);
490 unsigned int next_dfs_num;
491 hash_map<tree, sccs *> sccstate;
492 struct obstack sccstate_obstack;
495 DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p,
496 bool single_p)
498 sccstack.create (0);
499 gcc_obstack_init (&sccstate_obstack);
500 next_dfs_num = 1;
501 DFS_write_tree (ob, NULL, expr, ref_p, this_ref_p, single_p);
504 DFS::~DFS ()
506 sccstack.release ();
507 obstack_free (&sccstate_obstack, NULL);
510 /* Handle the tree EXPR in the DFS walk with SCC state EXPR_STATE and
511 DFS recurse for all tree edges originating from it. */
513 void
514 DFS::DFS_write_tree_body (struct output_block *ob,
515 tree expr, sccs *expr_state, bool ref_p,
516 bool single_p)
518 #define DFS_follow_tree_edge(DEST) \
519 DFS_write_tree (ob, expr_state, DEST, ref_p, ref_p, single_p)
521 enum tree_code code;
523 code = TREE_CODE (expr);
525 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
527 if (TREE_CODE (expr) != IDENTIFIER_NODE)
528 DFS_follow_tree_edge (TREE_TYPE (expr));
531 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
533 for (unsigned i = 0; i < VECTOR_CST_NELTS (expr); ++i)
534 DFS_follow_tree_edge (VECTOR_CST_ELT (expr, i));
537 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
539 DFS_follow_tree_edge (TREE_REALPART (expr));
540 DFS_follow_tree_edge (TREE_IMAGPART (expr));
543 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
545 /* Drop names that were created for anonymous entities. */
546 if (DECL_NAME (expr)
547 && TREE_CODE (DECL_NAME (expr)) == IDENTIFIER_NODE
548 && ANON_AGGRNAME_P (DECL_NAME (expr)))
550 else
551 DFS_follow_tree_edge (DECL_NAME (expr));
552 DFS_follow_tree_edge (DECL_CONTEXT (expr));
555 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
557 DFS_follow_tree_edge (DECL_SIZE (expr));
558 DFS_follow_tree_edge (DECL_SIZE_UNIT (expr));
560 /* Note, DECL_INITIAL is not handled here. Since DECL_INITIAL needs
561 special handling in LTO, it must be handled by streamer hooks. */
563 DFS_follow_tree_edge (DECL_ATTRIBUTES (expr));
565 /* Do not follow DECL_ABSTRACT_ORIGIN. We cannot handle debug information
566 for early inlining so drop it on the floor instead of ICEing in
567 dwarf2out.c. */
569 if ((TREE_CODE (expr) == VAR_DECL
570 || TREE_CODE (expr) == PARM_DECL)
571 && DECL_HAS_VALUE_EXPR_P (expr))
572 DFS_follow_tree_edge (DECL_VALUE_EXPR (expr));
573 if (TREE_CODE (expr) == VAR_DECL)
574 DFS_follow_tree_edge (DECL_DEBUG_EXPR (expr));
577 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
579 if (TREE_CODE (expr) == TYPE_DECL)
580 DFS_follow_tree_edge (DECL_ORIGINAL_TYPE (expr));
583 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
585 /* Make sure we don't inadvertently set the assembler name. */
586 if (DECL_ASSEMBLER_NAME_SET_P (expr))
587 DFS_follow_tree_edge (DECL_ASSEMBLER_NAME (expr));
590 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
592 DFS_follow_tree_edge (DECL_FIELD_OFFSET (expr));
593 DFS_follow_tree_edge (DECL_BIT_FIELD_TYPE (expr));
594 DFS_follow_tree_edge (DECL_BIT_FIELD_REPRESENTATIVE (expr));
595 DFS_follow_tree_edge (DECL_FIELD_BIT_OFFSET (expr));
596 DFS_follow_tree_edge (DECL_FCONTEXT (expr));
599 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
601 DFS_follow_tree_edge (DECL_VINDEX (expr));
602 DFS_follow_tree_edge (DECL_FUNCTION_PERSONALITY (expr));
603 DFS_follow_tree_edge (DECL_FUNCTION_SPECIFIC_TARGET (expr));
604 DFS_follow_tree_edge (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr));
607 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
609 DFS_follow_tree_edge (TYPE_SIZE (expr));
610 DFS_follow_tree_edge (TYPE_SIZE_UNIT (expr));
611 DFS_follow_tree_edge (TYPE_ATTRIBUTES (expr));
612 DFS_follow_tree_edge (TYPE_NAME (expr));
613 /* Do not follow TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
614 reconstructed during fixup. */
615 /* Do not follow TYPE_NEXT_VARIANT, we reconstruct the variant lists
616 during fixup. */
617 DFS_follow_tree_edge (TYPE_MAIN_VARIANT (expr));
618 DFS_follow_tree_edge (TYPE_CONTEXT (expr));
619 /* TYPE_CANONICAL is re-computed during type merging, so no need
620 to follow it here. */
621 DFS_follow_tree_edge (TYPE_STUB_DECL (expr));
624 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
626 if (TREE_CODE (expr) == ENUMERAL_TYPE)
627 DFS_follow_tree_edge (TYPE_VALUES (expr));
628 else if (TREE_CODE (expr) == ARRAY_TYPE)
629 DFS_follow_tree_edge (TYPE_DOMAIN (expr));
630 else if (RECORD_OR_UNION_TYPE_P (expr))
631 for (tree t = TYPE_FIELDS (expr); t; t = TREE_CHAIN (t))
632 DFS_follow_tree_edge (t);
633 else if (TREE_CODE (expr) == FUNCTION_TYPE
634 || TREE_CODE (expr) == METHOD_TYPE)
635 DFS_follow_tree_edge (TYPE_ARG_TYPES (expr));
637 if (!POINTER_TYPE_P (expr))
638 DFS_follow_tree_edge (TYPE_MINVAL (expr));
639 DFS_follow_tree_edge (TYPE_MAXVAL (expr));
640 if (RECORD_OR_UNION_TYPE_P (expr))
641 DFS_follow_tree_edge (TYPE_BINFO (expr));
644 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
646 DFS_follow_tree_edge (TREE_PURPOSE (expr));
647 DFS_follow_tree_edge (TREE_VALUE (expr));
648 DFS_follow_tree_edge (TREE_CHAIN (expr));
651 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
653 for (int i = 0; i < TREE_VEC_LENGTH (expr); i++)
654 DFS_follow_tree_edge (TREE_VEC_ELT (expr, i));
657 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
659 for (int i = 0; i < TREE_OPERAND_LENGTH (expr); i++)
660 DFS_follow_tree_edge (TREE_OPERAND (expr, i));
661 DFS_follow_tree_edge (TREE_BLOCK (expr));
664 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
666 for (tree t = BLOCK_VARS (expr); t; t = TREE_CHAIN (t))
667 if (VAR_OR_FUNCTION_DECL_P (t)
668 && DECL_EXTERNAL (t))
669 /* We have to stream externals in the block chain as
670 non-references. See also
671 tree-streamer-out.c:streamer_write_chain. */
672 DFS_write_tree (ob, expr_state, t, ref_p, false, single_p);
673 else
674 DFS_follow_tree_edge (t);
676 DFS_follow_tree_edge (BLOCK_SUPERCONTEXT (expr));
678 /* Follow BLOCK_ABSTRACT_ORIGIN for the limited cases we can
679 handle - those that represent inlined function scopes.
680 For the drop rest them on the floor instead of ICEing
681 in dwarf2out.c. */
682 if (inlined_function_outer_scope_p (expr))
684 tree ultimate_origin = block_ultimate_origin (expr);
685 DFS_follow_tree_edge (ultimate_origin);
687 /* Do not follow BLOCK_NONLOCALIZED_VARS. We cannot handle debug
688 information for early inlined BLOCKs so drop it on the floor instead
689 of ICEing in dwarf2out.c. */
691 /* BLOCK_FRAGMENT_ORIGIN and BLOCK_FRAGMENT_CHAIN is not live at LTO
692 streaming time. */
694 /* Do not output BLOCK_SUBBLOCKS. Instead on streaming-in this
695 list is re-constructed from BLOCK_SUPERCONTEXT. */
698 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
700 unsigned i;
701 tree t;
703 /* Note that the number of BINFO slots has already been emitted in
704 EXPR's header (see streamer_write_tree_header) because this length
705 is needed to build the empty BINFO node on the reader side. */
706 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (expr), i, t)
707 DFS_follow_tree_edge (t);
708 DFS_follow_tree_edge (BINFO_OFFSET (expr));
709 DFS_follow_tree_edge (BINFO_VTABLE (expr));
710 DFS_follow_tree_edge (BINFO_VPTR_FIELD (expr));
712 /* The number of BINFO_BASE_ACCESSES has already been emitted in
713 EXPR's bitfield section. */
714 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (expr), i, t)
715 DFS_follow_tree_edge (t);
717 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
718 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
721 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
723 unsigned i;
724 tree index, value;
726 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (expr), i, index, value)
728 DFS_follow_tree_edge (index);
729 DFS_follow_tree_edge (value);
733 if (code == OMP_CLAUSE)
735 int i;
736 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (expr)]; i++)
737 DFS_follow_tree_edge (OMP_CLAUSE_OPERAND (expr, i));
738 DFS_follow_tree_edge (OMP_CLAUSE_CHAIN (expr));
741 #undef DFS_follow_tree_edge
744 /* Return a hash value for the tree T.
745 CACHE holds hash values of trees outside current SCC. MAP, if non-NULL,
746 may hold hash values if trees inside current SCC. */
748 static hashval_t
749 hash_tree (struct streamer_tree_cache_d *cache, hash_map<tree, hashval_t> *map, tree t)
751 inchash::hash hstate;
753 #define visit(SIBLING) \
754 do { \
755 unsigned ix; \
756 if (!SIBLING) \
757 hstate.add_int (0); \
758 else if (streamer_tree_cache_lookup (cache, SIBLING, &ix)) \
759 hstate.add_int (streamer_tree_cache_get_hash (cache, ix)); \
760 else if (map) \
761 hstate.add_int (*map->get (SIBLING)); \
762 else \
763 hstate.add_int (1); \
764 } while (0)
766 /* Hash TS_BASE. */
767 enum tree_code code = TREE_CODE (t);
768 hstate.add_int (code);
769 if (!TYPE_P (t))
771 hstate.add_flag (TREE_SIDE_EFFECTS (t));
772 hstate.add_flag (TREE_CONSTANT (t));
773 hstate.add_flag (TREE_READONLY (t));
774 hstate.add_flag (TREE_PUBLIC (t));
776 hstate.add_flag (TREE_ADDRESSABLE (t));
777 hstate.add_flag (TREE_THIS_VOLATILE (t));
778 if (DECL_P (t))
779 hstate.add_flag (DECL_UNSIGNED (t));
780 else if (TYPE_P (t))
781 hstate.add_flag (TYPE_UNSIGNED (t));
782 if (TYPE_P (t))
783 hstate.add_flag (TYPE_ARTIFICIAL (t));
784 else
785 hstate.add_flag (TREE_NO_WARNING (t));
786 hstate.add_flag (TREE_NOTHROW (t));
787 hstate.add_flag (TREE_STATIC (t));
788 hstate.add_flag (TREE_PROTECTED (t));
789 hstate.add_flag (TREE_DEPRECATED (t));
790 if (code != TREE_BINFO)
791 hstate.add_flag (TREE_PRIVATE (t));
792 if (TYPE_P (t))
794 hstate.add_flag (TYPE_SATURATING (t));
795 hstate.add_flag (TYPE_ADDR_SPACE (t));
797 else if (code == SSA_NAME)
798 hstate.add_flag (SSA_NAME_IS_DEFAULT_DEF (t));
799 hstate.commit_flag ();
801 if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
803 int i;
804 hstate.add_wide_int (TREE_INT_CST_NUNITS (t));
805 hstate.add_wide_int (TREE_INT_CST_EXT_NUNITS (t));
806 for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
807 hstate.add_wide_int (TREE_INT_CST_ELT (t, i));
810 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
812 REAL_VALUE_TYPE r = TREE_REAL_CST (t);
813 hstate.add_flag (r.cl);
814 hstate.add_flag (r.sign);
815 hstate.add_flag (r.signalling);
816 hstate.add_flag (r.canonical);
817 hstate.commit_flag ();
818 hstate.add_int (r.uexp);
819 hstate.add (r.sig, sizeof (r.sig));
822 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
824 FIXED_VALUE_TYPE f = TREE_FIXED_CST (t);
825 hstate.add_int (f.mode);
826 hstate.add_int (f.data.low);
827 hstate.add_int (f.data.high);
830 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
832 hstate.add_wide_int (DECL_MODE (t));
833 hstate.add_flag (DECL_NONLOCAL (t));
834 hstate.add_flag (DECL_VIRTUAL_P (t));
835 hstate.add_flag (DECL_IGNORED_P (t));
836 hstate.add_flag (DECL_ABSTRACT_P (t));
837 hstate.add_flag (DECL_ARTIFICIAL (t));
838 hstate.add_flag (DECL_USER_ALIGN (t));
839 hstate.add_flag (DECL_PRESERVE_P (t));
840 hstate.add_flag (DECL_EXTERNAL (t));
841 hstate.add_flag (DECL_GIMPLE_REG_P (t));
842 hstate.commit_flag ();
843 hstate.add_int (DECL_ALIGN (t));
844 if (code == LABEL_DECL)
846 hstate.add_int (EH_LANDING_PAD_NR (t));
847 hstate.add_int (LABEL_DECL_UID (t));
849 else if (code == FIELD_DECL)
851 hstate.add_flag (DECL_PACKED (t));
852 hstate.add_flag (DECL_NONADDRESSABLE_P (t));
853 hstate.add_int (DECL_OFFSET_ALIGN (t));
855 else if (code == VAR_DECL)
857 hstate.add_flag (DECL_HAS_DEBUG_EXPR_P (t));
858 hstate.add_flag (DECL_NONLOCAL_FRAME (t));
860 if (code == RESULT_DECL
861 || code == PARM_DECL
862 || code == VAR_DECL)
864 hstate.add_flag (DECL_BY_REFERENCE (t));
865 if (code == VAR_DECL
866 || code == PARM_DECL)
867 hstate.add_flag (DECL_HAS_VALUE_EXPR_P (t));
869 hstate.commit_flag ();
872 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
873 hstate.add_int (DECL_REGISTER (t));
875 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
877 hstate.add_flag (DECL_COMMON (t));
878 hstate.add_flag (DECL_DLLIMPORT_P (t));
879 hstate.add_flag (DECL_WEAK (t));
880 hstate.add_flag (DECL_SEEN_IN_BIND_EXPR_P (t));
881 hstate.add_flag (DECL_COMDAT (t));
882 hstate.add_flag (DECL_VISIBILITY_SPECIFIED (t));
883 hstate.add_int (DECL_VISIBILITY (t));
884 if (code == VAR_DECL)
886 /* DECL_IN_TEXT_SECTION is set during final asm output only. */
887 hstate.add_flag (DECL_HARD_REGISTER (t));
888 hstate.add_flag (DECL_IN_CONSTANT_POOL (t));
890 if (TREE_CODE (t) == FUNCTION_DECL)
892 hstate.add_flag (DECL_FINAL_P (t));
893 hstate.add_flag (DECL_CXX_CONSTRUCTOR_P (t));
894 hstate.add_flag (DECL_CXX_DESTRUCTOR_P (t));
896 hstate.commit_flag ();
899 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
901 hstate.add_int (DECL_BUILT_IN_CLASS (t));
902 hstate.add_flag (DECL_STATIC_CONSTRUCTOR (t));
903 hstate.add_flag (DECL_STATIC_DESTRUCTOR (t));
904 hstate.add_flag (DECL_UNINLINABLE (t));
905 hstate.add_flag (DECL_POSSIBLY_INLINED (t));
906 hstate.add_flag (DECL_IS_NOVOPS (t));
907 hstate.add_flag (DECL_IS_RETURNS_TWICE (t));
908 hstate.add_flag (DECL_IS_MALLOC (t));
909 hstate.add_flag (DECL_IS_OPERATOR_NEW (t));
910 hstate.add_flag (DECL_DECLARED_INLINE_P (t));
911 hstate.add_flag (DECL_STATIC_CHAIN (t));
912 hstate.add_flag (DECL_NO_INLINE_WARNING_P (t));
913 hstate.add_flag (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (t));
914 hstate.add_flag (DECL_NO_LIMIT_STACK (t));
915 hstate.add_flag (DECL_DISREGARD_INLINE_LIMITS (t));
916 hstate.add_flag (DECL_PURE_P (t));
917 hstate.add_flag (DECL_LOOPING_CONST_OR_PURE_P (t));
918 hstate.commit_flag ();
919 if (DECL_BUILT_IN_CLASS (t) != NOT_BUILT_IN)
920 hstate.add_int (DECL_FUNCTION_CODE (t));
923 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
925 hstate.add_wide_int (TYPE_MODE (t));
926 hstate.add_flag (TYPE_STRING_FLAG (t));
927 hstate.add_flag (TYPE_NO_FORCE_BLK (t));
928 hstate.add_flag (TYPE_NEEDS_CONSTRUCTING (t));
929 hstate.add_flag (TYPE_PACKED (t));
930 hstate.add_flag (TYPE_RESTRICT (t));
931 hstate.add_flag (TYPE_USER_ALIGN (t));
932 hstate.add_flag (TYPE_READONLY (t));
933 if (RECORD_OR_UNION_TYPE_P (t))
935 hstate.add_flag (TYPE_TRANSPARENT_AGGR (t));
936 hstate.add_flag (TYPE_FINAL_P (t));
938 else if (code == ARRAY_TYPE)
939 hstate.add_flag (TYPE_NONALIASED_COMPONENT (t));
940 hstate.commit_flag ();
941 hstate.add_int (TYPE_PRECISION (t));
942 hstate.add_int (TYPE_ALIGN (t));
943 hstate.add_int ((TYPE_ALIAS_SET (t) == 0
944 || (!in_lto_p
945 && get_alias_set (t) == 0))
946 ? 0 : -1);
949 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
950 hstate.add (TRANSLATION_UNIT_LANGUAGE (t),
951 strlen (TRANSLATION_UNIT_LANGUAGE (t)));
953 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION)
954 /* We don't stream these when passing things to a different target. */
955 && !lto_stream_offload_p)
956 hstate.add_wide_int (cl_target_option_hash (TREE_TARGET_OPTION (t)));
958 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
959 hstate.add_wide_int (cl_optimization_hash (TREE_OPTIMIZATION (t)));
961 if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
962 hstate.merge_hash (IDENTIFIER_HASH_VALUE (t));
964 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
965 hstate.add (TREE_STRING_POINTER (t), TREE_STRING_LENGTH (t));
967 if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
969 if (code != IDENTIFIER_NODE)
970 visit (TREE_TYPE (t));
973 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
974 for (unsigned i = 0; i < VECTOR_CST_NELTS (t); ++i)
975 visit (VECTOR_CST_ELT (t, i));
977 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
979 visit (TREE_REALPART (t));
980 visit (TREE_IMAGPART (t));
983 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
985 /* Drop names that were created for anonymous entities. */
986 if (DECL_NAME (t)
987 && TREE_CODE (DECL_NAME (t)) == IDENTIFIER_NODE
988 && ANON_AGGRNAME_P (DECL_NAME (t)))
990 else
991 visit (DECL_NAME (t));
992 if (DECL_FILE_SCOPE_P (t))
994 else
995 visit (DECL_CONTEXT (t));
998 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1000 visit (DECL_SIZE (t));
1001 visit (DECL_SIZE_UNIT (t));
1002 visit (DECL_ATTRIBUTES (t));
1003 if ((code == VAR_DECL
1004 || code == PARM_DECL)
1005 && DECL_HAS_VALUE_EXPR_P (t))
1006 visit (DECL_VALUE_EXPR (t));
1007 if (code == VAR_DECL
1008 && DECL_HAS_DEBUG_EXPR_P (t))
1009 visit (DECL_DEBUG_EXPR (t));
1010 /* ??? Hash DECL_INITIAL as streamed. Needs the output-block to
1011 be able to call get_symbol_initial_value. */
1014 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
1016 if (code == TYPE_DECL)
1017 visit (DECL_ORIGINAL_TYPE (t));
1020 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1022 if (DECL_ASSEMBLER_NAME_SET_P (t))
1023 visit (DECL_ASSEMBLER_NAME (t));
1026 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1028 visit (DECL_FIELD_OFFSET (t));
1029 visit (DECL_BIT_FIELD_TYPE (t));
1030 visit (DECL_BIT_FIELD_REPRESENTATIVE (t));
1031 visit (DECL_FIELD_BIT_OFFSET (t));
1032 visit (DECL_FCONTEXT (t));
1035 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1037 visit (DECL_VINDEX (t));
1038 visit (DECL_FUNCTION_PERSONALITY (t));
1039 visit (DECL_FUNCTION_SPECIFIC_TARGET (t));
1040 visit (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t));
1043 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1045 visit (TYPE_SIZE (t));
1046 visit (TYPE_SIZE_UNIT (t));
1047 visit (TYPE_ATTRIBUTES (t));
1048 visit (TYPE_NAME (t));
1049 visit (TYPE_MAIN_VARIANT (t));
1050 if (TYPE_FILE_SCOPE_P (t))
1052 else
1053 visit (TYPE_CONTEXT (t));
1054 visit (TYPE_STUB_DECL (t));
1057 if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1059 if (code == ENUMERAL_TYPE)
1060 visit (TYPE_VALUES (t));
1061 else if (code == ARRAY_TYPE)
1062 visit (TYPE_DOMAIN (t));
1063 else if (RECORD_OR_UNION_TYPE_P (t))
1064 for (tree f = TYPE_FIELDS (t); f; f = TREE_CHAIN (f))
1065 visit (f);
1066 else if (code == FUNCTION_TYPE
1067 || code == METHOD_TYPE)
1068 visit (TYPE_ARG_TYPES (t));
1069 if (!POINTER_TYPE_P (t))
1070 visit (TYPE_MINVAL (t));
1071 visit (TYPE_MAXVAL (t));
1072 if (RECORD_OR_UNION_TYPE_P (t))
1073 visit (TYPE_BINFO (t));
1076 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1078 visit (TREE_PURPOSE (t));
1079 visit (TREE_VALUE (t));
1080 visit (TREE_CHAIN (t));
1083 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1084 for (int i = 0; i < TREE_VEC_LENGTH (t); ++i)
1085 visit (TREE_VEC_ELT (t, i));
1087 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1089 hstate.add_wide_int (TREE_OPERAND_LENGTH (t));
1090 for (int i = 0; i < TREE_OPERAND_LENGTH (t); ++i)
1091 visit (TREE_OPERAND (t, i));
1094 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1096 unsigned i;
1097 tree b;
1098 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t), i, b)
1099 visit (b);
1100 visit (BINFO_OFFSET (t));
1101 visit (BINFO_VTABLE (t));
1102 visit (BINFO_VPTR_FIELD (t));
1103 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_ACCESSES (t), i, b)
1104 visit (b);
1105 /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1106 and BINFO_VPTR_INDEX; these are used by C++ FE only. */
1109 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1111 unsigned i;
1112 tree index, value;
1113 hstate.add_wide_int (CONSTRUCTOR_NELTS (t));
1114 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), i, index, value)
1116 visit (index);
1117 visit (value);
1121 if (code == OMP_CLAUSE)
1123 int i;
1124 HOST_WIDE_INT val;
1126 hstate.add_wide_int (OMP_CLAUSE_CODE (t));
1127 switch (OMP_CLAUSE_CODE (t))
1129 case OMP_CLAUSE_DEFAULT:
1130 val = OMP_CLAUSE_DEFAULT_KIND (t);
1131 break;
1132 case OMP_CLAUSE_SCHEDULE:
1133 val = OMP_CLAUSE_SCHEDULE_KIND (t);
1134 break;
1135 case OMP_CLAUSE_DEPEND:
1136 val = OMP_CLAUSE_DEPEND_KIND (t);
1137 break;
1138 case OMP_CLAUSE_MAP:
1139 val = OMP_CLAUSE_MAP_KIND (t);
1140 break;
1141 case OMP_CLAUSE_PROC_BIND:
1142 val = OMP_CLAUSE_PROC_BIND_KIND (t);
1143 break;
1144 case OMP_CLAUSE_REDUCTION:
1145 val = OMP_CLAUSE_REDUCTION_CODE (t);
1146 break;
1147 default:
1148 val = 0;
1149 break;
1151 hstate.add_wide_int (val);
1152 for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t)]; i++)
1153 visit (OMP_CLAUSE_OPERAND (t, i));
1154 visit (OMP_CLAUSE_CHAIN (t));
1157 return hstate.end ();
1159 #undef visit
1162 /* Compare two SCC entries by their hash value for qsorting them. */
1165 DFS::scc_entry_compare (const void *p1_, const void *p2_)
1167 const scc_entry *p1 = (const scc_entry *) p1_;
1168 const scc_entry *p2 = (const scc_entry *) p2_;
1169 if (p1->hash < p2->hash)
1170 return -1;
1171 else if (p1->hash > p2->hash)
1172 return 1;
1173 return 0;
1176 /* Return a hash value for the SCC on the SCC stack from FIRST with
1177 size SIZE. */
1179 hashval_t
1180 DFS::hash_scc (struct output_block *ob,
1181 unsigned first, unsigned size)
1183 unsigned int last_classes = 0, iterations = 0;
1185 /* Compute hash values for the SCC members. */
1186 for (unsigned i = 0; i < size; ++i)
1187 sccstack[first+i].hash = hash_tree (ob->writer_cache, NULL,
1188 sccstack[first+i].t);
1190 if (size == 1)
1191 return sccstack[first].hash;
1193 /* We aim to get unique hash for every tree within SCC and compute hash value
1194 of the whole SCC by combing all values together in an stable (entry point
1195 independent) order. This guarantees that the same SCC regions within
1196 different translation units will get the same hash values and therefore
1197 will be merged at WPA time.
1199 Often the hashes are already unique. In that case we compute scc hash
1200 by combining individual hash values in an increasing order.
1202 If thre are duplicates we seek at least one tree with unique hash (and
1203 pick one with minimal hash and this property). Then we obtain stable
1204 order by DFS walk starting from this unique tree and then use index
1205 within this order to make individual hash values unique.
1207 If there is no tree with unique hash, we iteratively propagate the hash
1208 values across the internal edges of SCC. This usually quickly leads
1209 to unique hashes. Consider, for example, an SCC containing two pointers
1210 that are identical except for type they point and assume that these
1211 types are also part of the SCC.
1212 The propagation will add the points-to type information into their hash
1213 values. */
1216 /* Sort the SCC so we can easily see check for uniqueness. */
1217 qsort (&sccstack[first], size, sizeof (scc_entry), scc_entry_compare);
1219 unsigned int classes = 1;
1220 int firstunique = -1;
1222 /* Find tree with lowest unique hash (if it exists) and compute
1223 number of equivalence classes. */
1224 if (sccstack[first].hash != sccstack[first+1].hash)
1225 firstunique = 0;
1226 for (unsigned i = 1; i < size; ++i)
1227 if (sccstack[first+i-1].hash != sccstack[first+i].hash)
1229 classes++;
1230 if (firstunique == -1
1231 && (i == size - 1
1232 || sccstack[first+i+1].hash != sccstack[first+i].hash))
1233 firstunique = i;
1236 /* If we found tree with unique hash; stop the iteration. */
1237 if (firstunique != -1
1238 /* Also terminate if we run out of iterations or if the number of
1239 equivalence classes is no longer increasing.
1240 For example a cyclic list of trees that are all equivalent will
1241 never have unique entry point; we however do not build such SCCs
1242 in our IL. */
1243 || classes <= last_classes || iterations > 16)
1245 hashval_t scc_hash;
1247 /* If some hashes are not unique (CLASSES != SIZE), use the DFS walk
1248 starting from FIRSTUNIQUE to obstain stable order. */
1249 if (classes != size && firstunique != -1)
1251 hash_map <tree, hashval_t> map(size*2);
1253 /* Store hash values into a map, so we can associate them with
1254 reordered SCC. */
1255 for (unsigned i = 0; i < size; ++i)
1256 map.put (sccstack[first+i].t, sccstack[first+i].hash);
1258 DFS again (ob, sccstack[first+firstunique].t, false, false, true);
1259 gcc_assert (again.sccstack.length () == size);
1261 memcpy (sccstack.address () + first,
1262 again.sccstack.address (),
1263 sizeof (scc_entry) * size);
1265 /* Update hash values of individual members by hashing in the
1266 index within the stable order. This ensures uniqueness.
1267 Also compute the scc_hash by mixing in all hash values in the
1268 stable order we obtained. */
1269 sccstack[first].hash = *map.get (sccstack[first].t);
1270 scc_hash = sccstack[first].hash;
1271 for (unsigned i = 1; i < size; ++i)
1273 sccstack[first+i].hash
1274 = iterative_hash_hashval_t (i,
1275 *map.get (sccstack[first+i].t));
1276 scc_hash = iterative_hash_hashval_t (scc_hash,
1277 sccstack[first+i].hash);
1280 /* If we got unique hash values for each tree, then sort already
1281 ensured entry point independent order. Only compute the final
1282 scc hash.
1284 If we failed to find the unique entry point, we go by the same
1285 route. We will eventually introduce unwanted hash conflicts. */
1286 else
1288 scc_hash = sccstack[first].hash;
1289 for (unsigned i = 1; i < size; ++i)
1290 scc_hash = iterative_hash_hashval_t (scc_hash,
1291 sccstack[first+i].hash);
1292 /* We can not 100% guarantee that the hash will not conflict in
1293 in a way so the unique hash is not found. This however
1294 should be extremely rare situation. ICE for now so possible
1295 issues are found and evaulated. */
1296 gcc_checking_assert (classes == size);
1299 /* To avoid conflicts across SCCs iteratively hash the whole SCC
1300 hash into the hash of each of the elements. */
1301 for (unsigned i = 0; i < size; ++i)
1302 sccstack[first+i].hash
1303 = iterative_hash_hashval_t (sccstack[first+i].hash, scc_hash);
1304 return scc_hash;
1307 last_classes = classes;
1308 iterations++;
1310 /* We failed to identify the entry point; propagate hash values across
1311 the edges. */
1313 hash_map <tree, hashval_t> map(size*2);
1314 for (unsigned i = 0; i < size; ++i)
1315 map.put (sccstack[first+i].t, sccstack[first+i].hash);
1317 for (unsigned i = 0; i < size; i++)
1318 sccstack[first+i].hash = hash_tree (ob->writer_cache, &map,
1319 sccstack[first+i].t);
1322 while (true);
1325 /* DFS walk EXPR and stream SCCs of tree bodies if they are not
1326 already in the streamer cache. Main routine called for
1327 each visit of EXPR. */
1329 void
1330 DFS::DFS_write_tree (struct output_block *ob, sccs *from_state,
1331 tree expr, bool ref_p, bool this_ref_p, bool single_p)
1333 unsigned ix;
1335 /* Handle special cases. */
1336 if (expr == NULL_TREE)
1337 return;
1339 /* Do not DFS walk into indexable trees. */
1340 if (this_ref_p && tree_is_indexable (expr))
1341 return;
1343 /* Check if we already streamed EXPR. */
1344 if (streamer_tree_cache_lookup (ob->writer_cache, expr, &ix))
1345 return;
1347 sccs **slot = &sccstate.get_or_insert (expr);
1348 sccs *cstate = *slot;
1349 if (!cstate)
1351 scc_entry e = { expr, 0 };
1352 /* Not yet visited. DFS recurse and push it onto the stack. */
1353 *slot = cstate = XOBNEW (&sccstate_obstack, struct sccs);
1354 sccstack.safe_push (e);
1355 cstate->dfsnum = next_dfs_num++;
1356 cstate->low = cstate->dfsnum;
1358 if (streamer_handle_as_builtin_p (expr))
1360 else if (TREE_CODE (expr) == INTEGER_CST
1361 && !TREE_OVERFLOW (expr))
1362 DFS_write_tree (ob, cstate, TREE_TYPE (expr), ref_p, ref_p, single_p);
1363 else
1365 DFS_write_tree_body (ob, expr, cstate, ref_p, single_p);
1367 /* Walk any LTO-specific edges. */
1368 if (DECL_P (expr)
1369 && TREE_CODE (expr) != FUNCTION_DECL
1370 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1372 /* Handle DECL_INITIAL for symbols. */
1373 tree initial = get_symbol_initial_value (ob->decl_state->symtab_node_encoder,
1374 expr);
1375 DFS_write_tree (ob, cstate, initial, ref_p, ref_p, single_p);
1379 /* See if we found an SCC. */
1380 if (cstate->low == cstate->dfsnum)
1382 unsigned first, size;
1383 tree x;
1385 /* If we are re-walking a single leaf-SCC just return and
1386 let the caller access the sccstack. */
1387 if (single_p)
1388 return;
1390 /* Pop the SCC and compute its size. */
1391 first = sccstack.length ();
1394 x = sccstack[--first].t;
1396 while (x != expr);
1397 size = sccstack.length () - first;
1399 /* No need to compute hashes for LTRANS units, we don't perform
1400 any merging there. */
1401 hashval_t scc_hash = 0;
1402 unsigned scc_entry_len = 0;
1403 if (!flag_wpa)
1405 scc_hash = hash_scc (ob, first, size);
1407 /* Put the entries with the least number of collisions first. */
1408 unsigned entry_start = 0;
1409 scc_entry_len = size + 1;
1410 for (unsigned i = 0; i < size;)
1412 unsigned from = i;
1413 for (i = i + 1; i < size
1414 && (sccstack[first + i].hash
1415 == sccstack[first + from].hash); ++i)
1417 if (i - from < scc_entry_len)
1419 scc_entry_len = i - from;
1420 entry_start = from;
1423 for (unsigned i = 0; i < scc_entry_len; ++i)
1425 scc_entry tem = sccstack[first + i];
1426 sccstack[first + i] = sccstack[first + entry_start + i];
1427 sccstack[first + entry_start + i] = tem;
1430 if (scc_entry_len == 1)
1431 ; /* We already sorted SCC deterministically in hash_scc. */
1432 else
1433 /* Check that we have only one SCC.
1434 Naturally we may have conflicts if hash function is not
1435 strong enough. Lets see how far this gets. */
1437 #ifdef ENABLE_CHECKING
1438 gcc_unreachable ();
1439 #endif
1443 /* Write LTO_tree_scc. */
1444 streamer_write_record_start (ob, LTO_tree_scc);
1445 streamer_write_uhwi (ob, size);
1446 streamer_write_uhwi (ob, scc_hash);
1448 /* Write size-1 SCCs without wrapping them inside SCC bundles.
1449 All INTEGER_CSTs need to be handled this way as we need
1450 their type to materialize them. Also builtins are handled
1451 this way.
1452 ??? We still wrap these in LTO_tree_scc so at the
1453 input side we can properly identify the tree we want
1454 to ultimatively return. */
1455 if (size == 1)
1456 lto_output_tree_1 (ob, expr, scc_hash, ref_p, this_ref_p);
1457 else
1459 /* Write the size of the SCC entry candidates. */
1460 streamer_write_uhwi (ob, scc_entry_len);
1462 /* Write all headers and populate the streamer cache. */
1463 for (unsigned i = 0; i < size; ++i)
1465 hashval_t hash = sccstack[first+i].hash;
1466 tree t = sccstack[first+i].t;
1467 bool exists_p = streamer_tree_cache_insert (ob->writer_cache,
1468 t, hash, &ix);
1469 gcc_assert (!exists_p);
1471 if (!lto_is_streamable (t))
1472 internal_error ("tree code %qs is not supported "
1473 "in LTO streams",
1474 get_tree_code_name (TREE_CODE (t)));
1476 gcc_checking_assert (!streamer_handle_as_builtin_p (t));
1478 /* Write the header, containing everything needed to
1479 materialize EXPR on the reading side. */
1480 streamer_write_tree_header (ob, t);
1483 /* Write the bitpacks and tree references. */
1484 for (unsigned i = 0; i < size; ++i)
1486 lto_write_tree_1 (ob, sccstack[first+i].t, ref_p);
1488 /* Mark the end of the tree. */
1489 streamer_write_zero (ob);
1493 /* Finally truncate the vector. */
1494 sccstack.truncate (first);
1496 if (from_state)
1497 from_state->low = MIN (from_state->low, cstate->low);
1498 return;
1501 if (from_state)
1502 from_state->low = MIN (from_state->low, cstate->low);
1504 gcc_checking_assert (from_state);
1505 if (cstate->dfsnum < from_state->dfsnum)
1506 from_state->low = MIN (cstate->dfsnum, from_state->low);
1510 /* Emit the physical representation of tree node EXPR to output block
1511 OB. If THIS_REF_P is true, the leaves of EXPR are emitted as references
1512 via lto_output_tree_ref. REF_P is used for streaming siblings of EXPR. */
1514 void
1515 lto_output_tree (struct output_block *ob, tree expr,
1516 bool ref_p, bool this_ref_p)
1518 unsigned ix;
1519 bool existed_p;
1521 if (expr == NULL_TREE)
1523 streamer_write_record_start (ob, LTO_null);
1524 return;
1527 if (this_ref_p && tree_is_indexable (expr))
1529 lto_output_tree_ref (ob, expr);
1530 return;
1533 existed_p = streamer_tree_cache_lookup (ob->writer_cache, expr, &ix);
1534 if (existed_p)
1536 /* If a node has already been streamed out, make sure that
1537 we don't write it more than once. Otherwise, the reader
1538 will instantiate two different nodes for the same object. */
1539 streamer_write_record_start (ob, LTO_tree_pickle_reference);
1540 streamer_write_uhwi (ob, ix);
1541 streamer_write_enum (ob->main_stream, LTO_tags, LTO_NUM_TAGS,
1542 lto_tree_code_to_tag (TREE_CODE (expr)));
1543 lto_stats.num_pickle_refs_output++;
1545 else
1547 /* This is the first time we see EXPR, write all reachable
1548 trees to OB. */
1549 static bool in_dfs_walk;
1551 /* Protect against recursion which means disconnect between
1552 what tree edges we walk in the DFS walk and what edges
1553 we stream out. */
1554 gcc_assert (!in_dfs_walk);
1556 /* Start the DFS walk. */
1557 /* Save ob state ... */
1558 /* let's see ... */
1559 in_dfs_walk = true;
1560 DFS (ob, expr, ref_p, this_ref_p, false);
1561 in_dfs_walk = false;
1563 /* Finally append a reference to the tree we were writing.
1564 ??? If expr ended up as a singleton we could have
1565 inlined it here and avoid outputting a reference. */
1566 existed_p = streamer_tree_cache_lookup (ob->writer_cache, expr, &ix);
1567 gcc_assert (existed_p);
1568 streamer_write_record_start (ob, LTO_tree_pickle_reference);
1569 streamer_write_uhwi (ob, ix);
1570 streamer_write_enum (ob->main_stream, LTO_tags, LTO_NUM_TAGS,
1571 lto_tree_code_to_tag (TREE_CODE (expr)));
1572 lto_stats.num_pickle_refs_output++;
1577 /* Output to OB a list of try/catch handlers starting with FIRST. */
1579 static void
1580 output_eh_try_list (struct output_block *ob, eh_catch first)
1582 eh_catch n;
1584 for (n = first; n; n = n->next_catch)
1586 streamer_write_record_start (ob, LTO_eh_catch);
1587 stream_write_tree (ob, n->type_list, true);
1588 stream_write_tree (ob, n->filter_list, true);
1589 stream_write_tree (ob, n->label, true);
1592 streamer_write_record_start (ob, LTO_null);
1596 /* Output EH region R in function FN to OB. CURR_RN is the slot index
1597 that is being emitted in FN->EH->REGION_ARRAY. This is used to
1598 detect EH region sharing. */
1600 static void
1601 output_eh_region (struct output_block *ob, eh_region r)
1603 enum LTO_tags tag;
1605 if (r == NULL)
1607 streamer_write_record_start (ob, LTO_null);
1608 return;
1611 if (r->type == ERT_CLEANUP)
1612 tag = LTO_ert_cleanup;
1613 else if (r->type == ERT_TRY)
1614 tag = LTO_ert_try;
1615 else if (r->type == ERT_ALLOWED_EXCEPTIONS)
1616 tag = LTO_ert_allowed_exceptions;
1617 else if (r->type == ERT_MUST_NOT_THROW)
1618 tag = LTO_ert_must_not_throw;
1619 else
1620 gcc_unreachable ();
1622 streamer_write_record_start (ob, tag);
1623 streamer_write_hwi (ob, r->index);
1625 if (r->outer)
1626 streamer_write_hwi (ob, r->outer->index);
1627 else
1628 streamer_write_zero (ob);
1630 if (r->inner)
1631 streamer_write_hwi (ob, r->inner->index);
1632 else
1633 streamer_write_zero (ob);
1635 if (r->next_peer)
1636 streamer_write_hwi (ob, r->next_peer->index);
1637 else
1638 streamer_write_zero (ob);
1640 if (r->type == ERT_TRY)
1642 output_eh_try_list (ob, r->u.eh_try.first_catch);
1644 else if (r->type == ERT_ALLOWED_EXCEPTIONS)
1646 stream_write_tree (ob, r->u.allowed.type_list, true);
1647 stream_write_tree (ob, r->u.allowed.label, true);
1648 streamer_write_uhwi (ob, r->u.allowed.filter);
1650 else if (r->type == ERT_MUST_NOT_THROW)
1652 stream_write_tree (ob, r->u.must_not_throw.failure_decl, true);
1653 bitpack_d bp = bitpack_create (ob->main_stream);
1654 stream_output_location (ob, &bp, r->u.must_not_throw.failure_loc);
1655 streamer_write_bitpack (&bp);
1658 if (r->landing_pads)
1659 streamer_write_hwi (ob, r->landing_pads->index);
1660 else
1661 streamer_write_zero (ob);
1665 /* Output landing pad LP to OB. */
1667 static void
1668 output_eh_lp (struct output_block *ob, eh_landing_pad lp)
1670 if (lp == NULL)
1672 streamer_write_record_start (ob, LTO_null);
1673 return;
1676 streamer_write_record_start (ob, LTO_eh_landing_pad);
1677 streamer_write_hwi (ob, lp->index);
1678 if (lp->next_lp)
1679 streamer_write_hwi (ob, lp->next_lp->index);
1680 else
1681 streamer_write_zero (ob);
1683 if (lp->region)
1684 streamer_write_hwi (ob, lp->region->index);
1685 else
1686 streamer_write_zero (ob);
1688 stream_write_tree (ob, lp->post_landing_pad, true);
1692 /* Output the existing eh_table to OB. */
1694 static void
1695 output_eh_regions (struct output_block *ob, struct function *fn)
1697 if (fn->eh && fn->eh->region_tree)
1699 unsigned i;
1700 eh_region eh;
1701 eh_landing_pad lp;
1702 tree ttype;
1704 streamer_write_record_start (ob, LTO_eh_table);
1706 /* Emit the index of the root of the EH region tree. */
1707 streamer_write_hwi (ob, fn->eh->region_tree->index);
1709 /* Emit all the EH regions in the region array. */
1710 streamer_write_hwi (ob, vec_safe_length (fn->eh->region_array));
1711 FOR_EACH_VEC_SAFE_ELT (fn->eh->region_array, i, eh)
1712 output_eh_region (ob, eh);
1714 /* Emit all landing pads. */
1715 streamer_write_hwi (ob, vec_safe_length (fn->eh->lp_array));
1716 FOR_EACH_VEC_SAFE_ELT (fn->eh->lp_array, i, lp)
1717 output_eh_lp (ob, lp);
1719 /* Emit all the runtime type data. */
1720 streamer_write_hwi (ob, vec_safe_length (fn->eh->ttype_data));
1721 FOR_EACH_VEC_SAFE_ELT (fn->eh->ttype_data, i, ttype)
1722 stream_write_tree (ob, ttype, true);
1724 /* Emit the table of action chains. */
1725 if (targetm.arm_eabi_unwinder)
1727 tree t;
1728 streamer_write_hwi (ob, vec_safe_length (fn->eh->ehspec_data.arm_eabi));
1729 FOR_EACH_VEC_SAFE_ELT (fn->eh->ehspec_data.arm_eabi, i, t)
1730 stream_write_tree (ob, t, true);
1732 else
1734 uchar c;
1735 streamer_write_hwi (ob, vec_safe_length (fn->eh->ehspec_data.other));
1736 FOR_EACH_VEC_SAFE_ELT (fn->eh->ehspec_data.other, i, c)
1737 streamer_write_char_stream (ob->main_stream, c);
1741 /* The LTO_null either terminates the record or indicates that there
1742 are no eh_records at all. */
1743 streamer_write_record_start (ob, LTO_null);
1747 /* Output all of the active ssa names to the ssa_names stream. */
1749 static void
1750 output_ssa_names (struct output_block *ob, struct function *fn)
1752 unsigned int i, len;
1754 len = vec_safe_length (SSANAMES (fn));
1755 streamer_write_uhwi (ob, len);
1757 for (i = 1; i < len; i++)
1759 tree ptr = (*SSANAMES (fn))[i];
1761 if (ptr == NULL_TREE
1762 || SSA_NAME_IN_FREE_LIST (ptr)
1763 || virtual_operand_p (ptr))
1764 continue;
1766 streamer_write_uhwi (ob, i);
1767 streamer_write_char_stream (ob->main_stream,
1768 SSA_NAME_IS_DEFAULT_DEF (ptr));
1769 if (SSA_NAME_VAR (ptr))
1770 stream_write_tree (ob, SSA_NAME_VAR (ptr), true);
1771 else
1772 /* ??? This drops SSA_NAME_IDENTIFIER on the floor. */
1773 stream_write_tree (ob, TREE_TYPE (ptr), true);
1776 streamer_write_zero (ob);
1780 /* Output a wide-int. */
1782 static void
1783 streamer_write_wi (struct output_block *ob,
1784 const widest_int &w)
1786 int len = w.get_len ();
1788 streamer_write_uhwi (ob, w.get_precision ());
1789 streamer_write_uhwi (ob, len);
1790 for (int i = 0; i < len; i++)
1791 streamer_write_hwi (ob, w.elt (i));
1795 /* Output the cfg. */
1797 static void
1798 output_cfg (struct output_block *ob, struct function *fn)
1800 struct lto_output_stream *tmp_stream = ob->main_stream;
1801 basic_block bb;
1803 ob->main_stream = ob->cfg_stream;
1805 streamer_write_enum (ob->main_stream, profile_status_d, PROFILE_LAST,
1806 profile_status_for_fn (fn));
1808 /* Output the number of the highest basic block. */
1809 streamer_write_uhwi (ob, last_basic_block_for_fn (fn));
1811 FOR_ALL_BB_FN (bb, fn)
1813 edge_iterator ei;
1814 edge e;
1816 streamer_write_hwi (ob, bb->index);
1818 /* Output the successors and the edge flags. */
1819 streamer_write_uhwi (ob, EDGE_COUNT (bb->succs));
1820 FOR_EACH_EDGE (e, ei, bb->succs)
1822 streamer_write_uhwi (ob, e->dest->index);
1823 streamer_write_hwi (ob, e->probability);
1824 streamer_write_gcov_count (ob, e->count);
1825 streamer_write_uhwi (ob, e->flags);
1829 streamer_write_hwi (ob, -1);
1831 bb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1832 while (bb->next_bb)
1834 streamer_write_hwi (ob, bb->next_bb->index);
1835 bb = bb->next_bb;
1838 streamer_write_hwi (ob, -1);
1840 /* ??? The cfgloop interface is tied to cfun. */
1841 gcc_assert (cfun == fn);
1843 /* Output the number of loops. */
1844 streamer_write_uhwi (ob, number_of_loops (fn));
1846 /* Output each loop, skipping the tree root which has number zero. */
1847 for (unsigned i = 1; i < number_of_loops (fn); ++i)
1849 struct loop *loop = get_loop (fn, i);
1851 /* Write the index of the loop header. That's enough to rebuild
1852 the loop tree on the reader side. Stream -1 for an unused
1853 loop entry. */
1854 if (!loop)
1856 streamer_write_hwi (ob, -1);
1857 continue;
1859 else
1860 streamer_write_hwi (ob, loop->header->index);
1862 /* Write everything copy_loop_info copies. */
1863 streamer_write_enum (ob->main_stream,
1864 loop_estimation, EST_LAST, loop->estimate_state);
1865 streamer_write_hwi (ob, loop->any_upper_bound);
1866 if (loop->any_upper_bound)
1867 streamer_write_wi (ob, loop->nb_iterations_upper_bound);
1868 streamer_write_hwi (ob, loop->any_estimate);
1869 if (loop->any_estimate)
1870 streamer_write_wi (ob, loop->nb_iterations_estimate);
1872 /* Write OMP SIMD related info. */
1873 streamer_write_hwi (ob, loop->safelen);
1874 streamer_write_hwi (ob, loop->dont_vectorize);
1875 streamer_write_hwi (ob, loop->force_vectorize);
1876 stream_write_tree (ob, loop->simduid, true);
1879 ob->main_stream = tmp_stream;
1883 /* Create the header in the file using OB. If the section type is for
1884 a function, set FN to the decl for that function. */
1886 void
1887 produce_asm (struct output_block *ob, tree fn)
1889 enum lto_section_type section_type = ob->section_type;
1890 struct lto_function_header header;
1891 char *section_name;
1893 if (section_type == LTO_section_function_body)
1895 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn));
1896 section_name = lto_get_section_name (section_type, name, NULL);
1898 else
1899 section_name = lto_get_section_name (section_type, NULL, NULL);
1901 lto_begin_section (section_name, !flag_wpa);
1902 free (section_name);
1904 /* The entire header is stream computed here. */
1905 memset (&header, 0, sizeof (struct lto_function_header));
1907 /* Write the header. */
1908 header.major_version = LTO_major_version;
1909 header.minor_version = LTO_minor_version;
1911 if (section_type == LTO_section_function_body)
1912 header.cfg_size = ob->cfg_stream->total_size;
1913 header.main_size = ob->main_stream->total_size;
1914 header.string_size = ob->string_stream->total_size;
1915 lto_write_data (&header, sizeof header);
1917 /* Put all of the gimple and the string table out the asm file as a
1918 block of text. */
1919 if (section_type == LTO_section_function_body)
1920 lto_write_stream (ob->cfg_stream);
1921 lto_write_stream (ob->main_stream);
1922 lto_write_stream (ob->string_stream);
1924 lto_end_section ();
1928 /* Output the base body of struct function FN using output block OB. */
1930 static void
1931 output_struct_function_base (struct output_block *ob, struct function *fn)
1933 struct bitpack_d bp;
1934 unsigned i;
1935 tree t;
1937 /* Output the static chain and non-local goto save area. */
1938 stream_write_tree (ob, fn->static_chain_decl, true);
1939 stream_write_tree (ob, fn->nonlocal_goto_save_area, true);
1941 /* Output all the local variables in the function. */
1942 streamer_write_hwi (ob, vec_safe_length (fn->local_decls));
1943 FOR_EACH_VEC_SAFE_ELT (fn->local_decls, i, t)
1944 stream_write_tree (ob, t, true);
1946 /* Output current IL state of the function. */
1947 streamer_write_uhwi (ob, fn->curr_properties);
1949 /* Write all the attributes for FN. */
1950 bp = bitpack_create (ob->main_stream);
1951 bp_pack_value (&bp, fn->is_thunk, 1);
1952 bp_pack_value (&bp, fn->has_local_explicit_reg_vars, 1);
1953 bp_pack_value (&bp, fn->returns_pcc_struct, 1);
1954 bp_pack_value (&bp, fn->returns_struct, 1);
1955 bp_pack_value (&bp, fn->can_throw_non_call_exceptions, 1);
1956 bp_pack_value (&bp, fn->can_delete_dead_exceptions, 1);
1957 bp_pack_value (&bp, fn->always_inline_functions_inlined, 1);
1958 bp_pack_value (&bp, fn->after_inlining, 1);
1959 bp_pack_value (&bp, fn->stdarg, 1);
1960 bp_pack_value (&bp, fn->has_nonlocal_label, 1);
1961 bp_pack_value (&bp, fn->calls_alloca, 1);
1962 bp_pack_value (&bp, fn->calls_setjmp, 1);
1963 bp_pack_value (&bp, fn->has_force_vectorize_loops, 1);
1964 bp_pack_value (&bp, fn->has_simduid_loops, 1);
1965 bp_pack_value (&bp, fn->va_list_fpr_size, 8);
1966 bp_pack_value (&bp, fn->va_list_gpr_size, 8);
1967 bp_pack_value (&bp, fn->last_clique, sizeof (short) * 8);
1969 /* Output the function start and end loci. */
1970 stream_output_location (ob, &bp, fn->function_start_locus);
1971 stream_output_location (ob, &bp, fn->function_end_locus);
1973 streamer_write_bitpack (&bp);
1977 /* Output the body of function NODE->DECL. */
1979 static void
1980 output_function (struct cgraph_node *node)
1982 tree function;
1983 struct function *fn;
1984 basic_block bb;
1985 struct output_block *ob;
1987 function = node->decl;
1988 fn = DECL_STRUCT_FUNCTION (function);
1989 ob = create_output_block (LTO_section_function_body);
1991 clear_line_info (ob);
1992 ob->symbol = node;
1994 gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
1996 /* Set current_function_decl and cfun. */
1997 push_cfun (fn);
1999 /* Make string 0 be a NULL string. */
2000 streamer_write_char_stream (ob->string_stream, 0);
2002 streamer_write_record_start (ob, LTO_function);
2004 /* Output decls for parameters and args. */
2005 stream_write_tree (ob, DECL_RESULT (function), true);
2006 streamer_write_chain (ob, DECL_ARGUMENTS (function), true);
2008 /* Output DECL_INITIAL for the function, which contains the tree of
2009 lexical scopes. */
2010 stream_write_tree (ob, DECL_INITIAL (function), true);
2012 /* We also stream abstract functions where we stream only stuff needed for
2013 debug info. */
2014 if (gimple_has_body_p (function))
2016 streamer_write_uhwi (ob, 1);
2017 output_struct_function_base (ob, fn);
2019 /* Output all the SSA names used in the function. */
2020 output_ssa_names (ob, fn);
2022 /* Output any exception handling regions. */
2023 output_eh_regions (ob, fn);
2026 /* We will renumber the statements. The code that does this uses
2027 the same ordering that we use for serializing them so we can use
2028 the same code on the other end and not have to write out the
2029 statement numbers. We do not assign UIDs to PHIs here because
2030 virtual PHIs get re-computed on-the-fly which would make numbers
2031 inconsistent. */
2032 set_gimple_stmt_max_uid (cfun, 0);
2033 FOR_ALL_BB_FN (bb, cfun)
2035 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
2036 gsi_next (&gsi))
2038 gphi *stmt = gsi.phi ();
2040 /* Virtual PHIs are not going to be streamed. */
2041 if (!virtual_operand_p (gimple_phi_result (stmt)))
2042 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
2044 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
2045 gsi_next (&gsi))
2047 gimple stmt = gsi_stmt (gsi);
2048 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
2051 /* To avoid keeping duplicate gimple IDs in the statements, renumber
2052 virtual phis now. */
2053 FOR_ALL_BB_FN (bb, cfun)
2055 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
2056 gsi_next (&gsi))
2058 gphi *stmt = gsi.phi ();
2059 if (virtual_operand_p (gimple_phi_result (stmt)))
2060 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
2064 /* Output the code for the function. */
2065 FOR_ALL_BB_FN (bb, fn)
2066 output_bb (ob, bb, fn);
2068 /* The terminator for this function. */
2069 streamer_write_record_start (ob, LTO_null);
2071 output_cfg (ob, fn);
2073 pop_cfun ();
2075 else
2076 streamer_write_uhwi (ob, 0);
2078 /* Create a section to hold the pickled output of this function. */
2079 produce_asm (ob, function);
2081 destroy_output_block (ob);
2084 /* Output the body of function NODE->DECL. */
2086 static void
2087 output_constructor (struct varpool_node *node)
2089 tree var = node->decl;
2090 struct output_block *ob;
2092 ob = create_output_block (LTO_section_function_body);
2094 clear_line_info (ob);
2095 ob->symbol = node;
2097 /* Make string 0 be a NULL string. */
2098 streamer_write_char_stream (ob->string_stream, 0);
2100 /* Output DECL_INITIAL for the function, which contains the tree of
2101 lexical scopes. */
2102 stream_write_tree (ob, DECL_INITIAL (var), true);
2104 /* Create a section to hold the pickled output of this function. */
2105 produce_asm (ob, var);
2107 destroy_output_block (ob);
2111 /* Emit toplevel asms. */
2113 void
2114 lto_output_toplevel_asms (void)
2116 struct output_block *ob;
2117 struct asm_node *can;
2118 char *section_name;
2119 struct lto_simple_header_with_strings header;
2121 if (!symtab->first_asm_symbol ())
2122 return;
2124 ob = create_output_block (LTO_section_asm);
2126 /* Make string 0 be a NULL string. */
2127 streamer_write_char_stream (ob->string_stream, 0);
2129 for (can = symtab->first_asm_symbol (); can; can = can->next)
2131 streamer_write_string_cst (ob, ob->main_stream, can->asm_str);
2132 streamer_write_hwi (ob, can->order);
2135 streamer_write_string_cst (ob, ob->main_stream, NULL_TREE);
2137 section_name = lto_get_section_name (LTO_section_asm, NULL, NULL);
2138 lto_begin_section (section_name, !flag_wpa);
2139 free (section_name);
2141 /* The entire header stream is computed here. */
2142 memset (&header, 0, sizeof (header));
2144 /* Write the header. */
2145 header.major_version = LTO_major_version;
2146 header.minor_version = LTO_minor_version;
2148 header.main_size = ob->main_stream->total_size;
2149 header.string_size = ob->string_stream->total_size;
2150 lto_write_data (&header, sizeof header);
2152 /* Put all of the gimple and the string table out the asm file as a
2153 block of text. */
2154 lto_write_stream (ob->main_stream);
2155 lto_write_stream (ob->string_stream);
2157 lto_end_section ();
2159 destroy_output_block (ob);
2163 /* Copy the function body or variable constructor of NODE without deserializing. */
2165 static void
2166 copy_function_or_variable (struct symtab_node *node)
2168 tree function = node->decl;
2169 struct lto_file_decl_data *file_data = node->lto_file_data;
2170 const char *data;
2171 size_t len;
2172 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (function));
2173 char *section_name =
2174 lto_get_section_name (LTO_section_function_body, name, NULL);
2175 size_t i, j;
2176 struct lto_in_decl_state *in_state;
2177 struct lto_out_decl_state *out_state = lto_get_out_decl_state ();
2179 lto_begin_section (section_name, !flag_wpa);
2180 free (section_name);
2182 /* We may have renamed the declaration, e.g., a static function. */
2183 name = lto_get_decl_name_mapping (file_data, name);
2185 data = lto_get_section_data (file_data, LTO_section_function_body,
2186 name, &len);
2187 gcc_assert (data);
2189 /* Do a bit copy of the function body. */
2190 lto_write_data (data, len);
2192 /* Copy decls. */
2193 in_state =
2194 lto_get_function_in_decl_state (node->lto_file_data, function);
2195 gcc_assert (in_state);
2197 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
2199 size_t n = vec_safe_length (in_state->streams[i]);
2200 vec<tree, va_gc> *trees = in_state->streams[i];
2201 struct lto_tree_ref_encoder *encoder = &(out_state->streams[i]);
2203 /* The out state must have the same indices and the in state.
2204 So just copy the vector. All the encoders in the in state
2205 must be empty where we reach here. */
2206 gcc_assert (lto_tree_ref_encoder_size (encoder) == 0);
2207 encoder->trees.reserve_exact (n);
2208 for (j = 0; j < n; j++)
2209 encoder->trees.safe_push ((*trees)[j]);
2212 lto_free_section_data (file_data, LTO_section_function_body, name,
2213 data, len);
2214 lto_end_section ();
2217 /* Wrap symbol references in *TP inside a type-preserving MEM_REF. */
2219 static tree
2220 wrap_refs (tree *tp, int *ws, void *)
2222 tree t = *tp;
2223 if (handled_component_p (t)
2224 && TREE_CODE (TREE_OPERAND (t, 0)) == VAR_DECL)
2226 tree decl = TREE_OPERAND (t, 0);
2227 tree ptrtype = build_pointer_type (TREE_TYPE (decl));
2228 TREE_OPERAND (t, 0) = build2 (MEM_REF, TREE_TYPE (decl),
2229 build1 (ADDR_EXPR, ptrtype, decl),
2230 build_int_cst (ptrtype, 0));
2231 TREE_THIS_VOLATILE (TREE_OPERAND (t, 0)) = TREE_THIS_VOLATILE (decl);
2232 *ws = 0;
2234 else if (TREE_CODE (t) == CONSTRUCTOR)
2236 else if (!EXPR_P (t))
2237 *ws = 0;
2238 return NULL_TREE;
2241 /* Main entry point from the pass manager. */
2243 void
2244 lto_output (void)
2246 struct lto_out_decl_state *decl_state;
2247 #ifdef ENABLE_CHECKING
2248 bitmap output = lto_bitmap_alloc ();
2249 #endif
2250 int i, n_nodes;
2251 lto_symtab_encoder_t encoder = lto_get_out_decl_state ()->symtab_node_encoder;
2253 /* Initialize the streamer. */
2254 lto_streamer_init ();
2256 n_nodes = lto_symtab_encoder_size (encoder);
2257 /* Process only the functions with bodies. */
2258 for (i = 0; i < n_nodes; i++)
2260 symtab_node *snode = lto_symtab_encoder_deref (encoder, i);
2261 if (cgraph_node *node = dyn_cast <cgraph_node *> (snode))
2263 if (lto_symtab_encoder_encode_body_p (encoder, node)
2264 && !node->alias)
2266 #ifdef ENABLE_CHECKING
2267 gcc_assert (!bitmap_bit_p (output, DECL_UID (node->decl)));
2268 bitmap_set_bit (output, DECL_UID (node->decl));
2269 #endif
2270 decl_state = lto_new_out_decl_state ();
2271 lto_push_out_decl_state (decl_state);
2272 if (gimple_has_body_p (node->decl) || !flag_wpa
2273 /* Thunks have no body but they may be synthetized
2274 at WPA time. */
2275 || DECL_ARGUMENTS (node->decl))
2276 output_function (node);
2277 else
2278 copy_function_or_variable (node);
2279 gcc_assert (lto_get_out_decl_state () == decl_state);
2280 lto_pop_out_decl_state ();
2281 lto_record_function_out_decl_state (node->decl, decl_state);
2284 else if (varpool_node *node = dyn_cast <varpool_node *> (snode))
2286 /* Wrap symbol references inside the ctor in a type
2287 preserving MEM_REF. */
2288 tree ctor = DECL_INITIAL (node->decl);
2289 if (ctor && !in_lto_p)
2290 walk_tree (&ctor, wrap_refs, NULL, NULL);
2291 if (get_symbol_initial_value (encoder, node->decl) == error_mark_node
2292 && lto_symtab_encoder_encode_initializer_p (encoder, node)
2293 && !node->alias)
2295 timevar_push (TV_IPA_LTO_CTORS_OUT);
2296 #ifdef ENABLE_CHECKING
2297 gcc_assert (!bitmap_bit_p (output, DECL_UID (node->decl)));
2298 bitmap_set_bit (output, DECL_UID (node->decl));
2299 #endif
2300 decl_state = lto_new_out_decl_state ();
2301 lto_push_out_decl_state (decl_state);
2302 if (DECL_INITIAL (node->decl) != error_mark_node
2303 || !flag_wpa)
2304 output_constructor (node);
2305 else
2306 copy_function_or_variable (node);
2307 gcc_assert (lto_get_out_decl_state () == decl_state);
2308 lto_pop_out_decl_state ();
2309 lto_record_function_out_decl_state (node->decl, decl_state);
2310 timevar_pop (TV_IPA_LTO_CTORS_OUT);
2315 /* Emit the callgraph after emitting function bodies. This needs to
2316 be done now to make sure that all the statements in every function
2317 have been renumbered so that edges can be associated with call
2318 statements using the statement UIDs. */
2319 output_symtab ();
2321 output_offload_tables ();
2323 #ifdef ENABLE_CHECKING
2324 lto_bitmap_free (output);
2325 #endif
2328 /* Write each node in encoded by ENCODER to OB, as well as those reachable
2329 from it and required for correct representation of its semantics.
2330 Each node in ENCODER must be a global declaration or a type. A node
2331 is written only once, even if it appears multiple times in the
2332 vector. Certain transitively-reachable nodes, such as those
2333 representing expressions, may be duplicated, but such nodes
2334 must not appear in ENCODER itself. */
2336 static void
2337 write_global_stream (struct output_block *ob,
2338 struct lto_tree_ref_encoder *encoder)
2340 tree t;
2341 size_t index;
2342 const size_t size = lto_tree_ref_encoder_size (encoder);
2344 for (index = 0; index < size; index++)
2346 t = lto_tree_ref_encoder_get_tree (encoder, index);
2347 if (!streamer_tree_cache_lookup (ob->writer_cache, t, NULL))
2348 stream_write_tree (ob, t, false);
2353 /* Write a sequence of indices into the globals vector corresponding
2354 to the trees in ENCODER. These are used by the reader to map the
2355 indices used to refer to global entities within function bodies to
2356 their referents. */
2358 static void
2359 write_global_references (struct output_block *ob,
2360 struct lto_tree_ref_encoder *encoder)
2362 tree t;
2363 uint32_t index;
2364 const uint32_t size = lto_tree_ref_encoder_size (encoder);
2366 /* Write size and slot indexes as 32-bit unsigned numbers. */
2367 uint32_t *data = XNEWVEC (uint32_t, size + 1);
2368 data[0] = size;
2370 for (index = 0; index < size; index++)
2372 uint32_t slot_num;
2374 t = lto_tree_ref_encoder_get_tree (encoder, index);
2375 streamer_tree_cache_lookup (ob->writer_cache, t, &slot_num);
2376 gcc_assert (slot_num != (unsigned)-1);
2377 data[index + 1] = slot_num;
2380 lto_write_data (data, sizeof (int32_t) * (size + 1));
2381 free (data);
2385 /* Write all the streams in an lto_out_decl_state STATE using
2386 output block OB and output stream OUT_STREAM. */
2388 void
2389 lto_output_decl_state_streams (struct output_block *ob,
2390 struct lto_out_decl_state *state)
2392 int i;
2394 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
2395 write_global_stream (ob, &state->streams[i]);
2399 /* Write all the references in an lto_out_decl_state STATE using
2400 output block OB and output stream OUT_STREAM. */
2402 void
2403 lto_output_decl_state_refs (struct output_block *ob,
2404 struct lto_out_decl_state *state)
2406 unsigned i;
2407 uint32_t ref;
2408 tree decl;
2410 /* Write reference to FUNCTION_DECL. If there is not function,
2411 write reference to void_type_node. */
2412 decl = (state->fn_decl) ? state->fn_decl : void_type_node;
2413 streamer_tree_cache_lookup (ob->writer_cache, decl, &ref);
2414 gcc_assert (ref != (unsigned)-1);
2415 lto_write_data (&ref, sizeof (uint32_t));
2417 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
2418 write_global_references (ob, &state->streams[i]);
2422 /* Return the written size of STATE. */
2424 static size_t
2425 lto_out_decl_state_written_size (struct lto_out_decl_state *state)
2427 int i;
2428 size_t size;
2430 size = sizeof (int32_t); /* fn_ref. */
2431 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
2433 size += sizeof (int32_t); /* vector size. */
2434 size += (lto_tree_ref_encoder_size (&state->streams[i])
2435 * sizeof (int32_t));
2437 return size;
2441 /* Write symbol T into STREAM in CACHE. SEEN specifies symbols we wrote
2442 so far. */
2444 static void
2445 write_symbol (struct streamer_tree_cache_d *cache,
2446 tree t, hash_set<const char *> *seen, bool alias)
2448 const char *name;
2449 enum gcc_plugin_symbol_kind kind;
2450 enum gcc_plugin_symbol_visibility visibility = GCCPV_DEFAULT;
2451 unsigned slot_num;
2452 uint64_t size;
2453 const char *comdat;
2454 unsigned char c;
2456 /* None of the following kinds of symbols are needed in the
2457 symbol table. */
2458 if (!TREE_PUBLIC (t)
2459 || is_builtin_fn (t)
2460 || DECL_ABSTRACT_P (t)
2461 || (TREE_CODE (t) == VAR_DECL && DECL_HARD_REGISTER (t)))
2462 return;
2463 gcc_assert (TREE_CODE (t) != RESULT_DECL);
2465 gcc_assert (TREE_CODE (t) == VAR_DECL
2466 || TREE_CODE (t) == FUNCTION_DECL);
2468 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (t));
2470 /* This behaves like assemble_name_raw in varasm.c, performing the
2471 same name manipulations that ASM_OUTPUT_LABELREF does. */
2472 name = IDENTIFIER_POINTER ((*targetm.asm_out.mangle_assembler_name) (name));
2474 if (seen->add (name))
2475 return;
2477 streamer_tree_cache_lookup (cache, t, &slot_num);
2478 gcc_assert (slot_num != (unsigned)-1);
2480 if (DECL_EXTERNAL (t))
2482 if (DECL_WEAK (t))
2483 kind = GCCPK_WEAKUNDEF;
2484 else
2485 kind = GCCPK_UNDEF;
2487 else
2489 if (DECL_WEAK (t))
2490 kind = GCCPK_WEAKDEF;
2491 else if (DECL_COMMON (t))
2492 kind = GCCPK_COMMON;
2493 else
2494 kind = GCCPK_DEF;
2496 /* When something is defined, it should have node attached. */
2497 gcc_assert (alias || TREE_CODE (t) != VAR_DECL
2498 || varpool_node::get (t)->definition);
2499 gcc_assert (alias || TREE_CODE (t) != FUNCTION_DECL
2500 || (cgraph_node::get (t)
2501 && cgraph_node::get (t)->definition));
2504 /* Imitate what default_elf_asm_output_external do.
2505 When symbol is external, we need to output it with DEFAULT visibility
2506 when compiling with -fvisibility=default, while with HIDDEN visibility
2507 when symbol has attribute (visibility("hidden")) specified.
2508 targetm.binds_local_p check DECL_VISIBILITY_SPECIFIED and gets this
2509 right. */
2511 if (DECL_EXTERNAL (t)
2512 && !targetm.binds_local_p (t))
2513 visibility = GCCPV_DEFAULT;
2514 else
2515 switch (DECL_VISIBILITY (t))
2517 case VISIBILITY_DEFAULT:
2518 visibility = GCCPV_DEFAULT;
2519 break;
2520 case VISIBILITY_PROTECTED:
2521 visibility = GCCPV_PROTECTED;
2522 break;
2523 case VISIBILITY_HIDDEN:
2524 visibility = GCCPV_HIDDEN;
2525 break;
2526 case VISIBILITY_INTERNAL:
2527 visibility = GCCPV_INTERNAL;
2528 break;
2531 if (kind == GCCPK_COMMON
2532 && DECL_SIZE_UNIT (t)
2533 && TREE_CODE (DECL_SIZE_UNIT (t)) == INTEGER_CST)
2534 size = TREE_INT_CST_LOW (DECL_SIZE_UNIT (t));
2535 else
2536 size = 0;
2538 if (DECL_ONE_ONLY (t))
2539 comdat = IDENTIFIER_POINTER (decl_comdat_group_id (t));
2540 else
2541 comdat = "";
2543 lto_write_data (name, strlen (name) + 1);
2544 lto_write_data (comdat, strlen (comdat) + 1);
2545 c = (unsigned char) kind;
2546 lto_write_data (&c, 1);
2547 c = (unsigned char) visibility;
2548 lto_write_data (&c, 1);
2549 lto_write_data (&size, 8);
2550 lto_write_data (&slot_num, 4);
2553 /* Return true if NODE should appear in the plugin symbol table. */
2555 bool
2556 output_symbol_p (symtab_node *node)
2558 struct cgraph_node *cnode;
2559 if (!node->real_symbol_p ())
2560 return false;
2561 /* We keep external functions in symtab for sake of inlining
2562 and devirtualization. We do not want to see them in symbol table as
2563 references unless they are really used. */
2564 cnode = dyn_cast <cgraph_node *> (node);
2565 if (cnode && (!node->definition || DECL_EXTERNAL (cnode->decl))
2566 && cnode->callers)
2567 return true;
2569 /* Ignore all references from external vars initializers - they are not really
2570 part of the compilation unit until they are used by folding. Some symbols,
2571 like references to external construction vtables can not be referred to at all.
2572 We decide this at can_refer_decl_in_current_unit_p. */
2573 if (!node->definition || DECL_EXTERNAL (node->decl))
2575 int i;
2576 struct ipa_ref *ref;
2577 for (i = 0; node->iterate_referring (i, ref); i++)
2579 if (ref->use == IPA_REF_ALIAS)
2580 continue;
2581 if (is_a <cgraph_node *> (ref->referring))
2582 return true;
2583 if (!DECL_EXTERNAL (ref->referring->decl))
2584 return true;
2586 return false;
2588 return true;
2592 /* Write an IL symbol table to OB.
2593 SET and VSET are cgraph/varpool node sets we are outputting. */
2595 static void
2596 produce_symtab (struct output_block *ob)
2598 struct streamer_tree_cache_d *cache = ob->writer_cache;
2599 char *section_name = lto_get_section_name (LTO_section_symtab, NULL, NULL);
2600 lto_symtab_encoder_t encoder = ob->decl_state->symtab_node_encoder;
2601 lto_symtab_encoder_iterator lsei;
2603 lto_begin_section (section_name, false);
2604 free (section_name);
2606 hash_set<const char *> seen;
2608 /* Write the symbol table.
2609 First write everything defined and then all declarations.
2610 This is necessary to handle cases where we have duplicated symbols. */
2611 for (lsei = lsei_start (encoder);
2612 !lsei_end_p (lsei); lsei_next (&lsei))
2614 symtab_node *node = lsei_node (lsei);
2616 if (!output_symbol_p (node) || DECL_EXTERNAL (node->decl))
2617 continue;
2618 write_symbol (cache, node->decl, &seen, false);
2620 for (lsei = lsei_start (encoder);
2621 !lsei_end_p (lsei); lsei_next (&lsei))
2623 symtab_node *node = lsei_node (lsei);
2625 if (!output_symbol_p (node) || !DECL_EXTERNAL (node->decl))
2626 continue;
2627 write_symbol (cache, node->decl, &seen, false);
2630 lto_end_section ();
2634 /* This pass is run after all of the functions are serialized and all
2635 of the IPA passes have written their serialized forms. This pass
2636 causes the vector of all of the global decls and types used from
2637 this file to be written in to a section that can then be read in to
2638 recover these on other side. */
2640 void
2641 produce_asm_for_decls (void)
2643 struct lto_out_decl_state *out_state;
2644 struct lto_out_decl_state *fn_out_state;
2645 struct lto_decl_header header;
2646 char *section_name;
2647 struct output_block *ob;
2648 unsigned idx, num_fns;
2649 size_t decl_state_size;
2650 int32_t num_decl_states;
2652 ob = create_output_block (LTO_section_decls);
2654 memset (&header, 0, sizeof (struct lto_decl_header));
2656 section_name = lto_get_section_name (LTO_section_decls, NULL, NULL);
2657 lto_begin_section (section_name, !flag_wpa);
2658 free (section_name);
2660 /* Make string 0 be a NULL string. */
2661 streamer_write_char_stream (ob->string_stream, 0);
2663 gcc_assert (!alias_pairs);
2665 /* Get rid of the global decl state hash tables to save some memory. */
2666 out_state = lto_get_out_decl_state ();
2667 for (int i = 0; i < LTO_N_DECL_STREAMS; i++)
2668 if (out_state->streams[i].tree_hash_table)
2670 delete out_state->streams[i].tree_hash_table;
2671 out_state->streams[i].tree_hash_table = NULL;
2674 /* Write the global symbols. */
2675 lto_output_decl_state_streams (ob, out_state);
2676 num_fns = lto_function_decl_states.length ();
2677 for (idx = 0; idx < num_fns; idx++)
2679 fn_out_state =
2680 lto_function_decl_states[idx];
2681 lto_output_decl_state_streams (ob, fn_out_state);
2684 header.major_version = LTO_major_version;
2685 header.minor_version = LTO_minor_version;
2687 /* Currently not used. This field would allow us to preallocate
2688 the globals vector, so that it need not be resized as it is extended. */
2689 header.num_nodes = -1;
2691 /* Compute the total size of all decl out states. */
2692 decl_state_size = sizeof (int32_t);
2693 decl_state_size += lto_out_decl_state_written_size (out_state);
2694 for (idx = 0; idx < num_fns; idx++)
2696 fn_out_state =
2697 lto_function_decl_states[idx];
2698 decl_state_size += lto_out_decl_state_written_size (fn_out_state);
2700 header.decl_state_size = decl_state_size;
2702 header.main_size = ob->main_stream->total_size;
2703 header.string_size = ob->string_stream->total_size;
2705 lto_write_data (&header, sizeof header);
2707 /* Write the main out-decl state, followed by out-decl states of
2708 functions. */
2709 num_decl_states = num_fns + 1;
2710 lto_write_data (&num_decl_states, sizeof (num_decl_states));
2711 lto_output_decl_state_refs (ob, out_state);
2712 for (idx = 0; idx < num_fns; idx++)
2714 fn_out_state = lto_function_decl_states[idx];
2715 lto_output_decl_state_refs (ob, fn_out_state);
2718 lto_write_stream (ob->main_stream);
2719 lto_write_stream (ob->string_stream);
2721 lto_end_section ();
2723 /* Write the symbol table. It is used by linker to determine dependencies
2724 and thus we can skip it for WPA. */
2725 if (!flag_wpa)
2726 produce_symtab (ob);
2728 /* Write command line opts. */
2729 lto_write_options ();
2731 /* Deallocate memory and clean up. */
2732 for (idx = 0; idx < num_fns; idx++)
2734 fn_out_state =
2735 lto_function_decl_states[idx];
2736 lto_delete_out_decl_state (fn_out_state);
2738 lto_symtab_encoder_delete (ob->decl_state->symtab_node_encoder);
2739 lto_function_decl_states.release ();
2740 destroy_output_block (ob);