Fix bootstrap/PR63632
[official-gcc.git] / gcc / lto-streamer.c
blob34807231bc8e36ab078c59d2a1e41790ad758d95
1 /* Miscellaneous utilities for GIMPLE streaming. Things that are used
2 in both input and output are here.
4 Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 Contributed by Doug Kwan <dougkwan@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 "toplev.h"
28 #include "flags.h"
29 #include "tree.h"
30 #include "basic-block.h"
31 #include "tree-ssa-alias.h"
32 #include "internal-fn.h"
33 #include "gimple-expr.h"
34 #include "is-a.h"
35 #include "gimple.h"
36 #include "bitmap.h"
37 #include "diagnostic-core.h"
38 #include "tree-streamer.h"
39 #include "lto-streamer.h"
40 #include "lto-section-names.h"
41 #include "streamer-hooks.h"
43 /* Statistics gathered during LTO, WPA and LTRANS. */
44 struct lto_stats_d lto_stats;
46 /* LTO uses bitmaps with different life-times. So use a separate
47 obstack for all LTO bitmaps. */
48 static bitmap_obstack lto_obstack;
49 static bool lto_obstack_initialized;
52 /* Return a string representing LTO tag TAG. */
54 const char *
55 lto_tag_name (enum LTO_tags tag)
57 if (lto_tag_is_tree_code_p (tag))
59 /* For tags representing tree nodes, return the name of the
60 associated tree code. */
61 return get_tree_code_name (lto_tag_to_tree_code (tag));
64 if (lto_tag_is_gimple_code_p (tag))
66 /* For tags representing gimple statements, return the name of
67 the associated gimple code. */
68 return gimple_code_name[lto_tag_to_gimple_code (tag)];
71 switch (tag)
73 case LTO_null:
74 return "LTO_null";
75 case LTO_bb0:
76 return "LTO_bb0";
77 case LTO_bb1:
78 return "LTO_bb1";
79 case LTO_eh_region:
80 return "LTO_eh_region";
81 case LTO_function:
82 return "LTO_function";
83 case LTO_eh_table:
84 return "LTO_eh_table";
85 case LTO_ert_cleanup:
86 return "LTO_ert_cleanup";
87 case LTO_ert_try:
88 return "LTO_ert_try";
89 case LTO_ert_allowed_exceptions:
90 return "LTO_ert_allowed_exceptions";
91 case LTO_ert_must_not_throw:
92 return "LTO_ert_must_not_throw";
93 case LTO_tree_pickle_reference:
94 return "LTO_tree_pickle_reference";
95 case LTO_field_decl_ref:
96 return "LTO_field_decl_ref";
97 case LTO_function_decl_ref:
98 return "LTO_function_decl_ref";
99 case LTO_label_decl_ref:
100 return "LTO_label_decl_ref";
101 case LTO_namespace_decl_ref:
102 return "LTO_namespace_decl_ref";
103 case LTO_result_decl_ref:
104 return "LTO_result_decl_ref";
105 case LTO_ssa_name_ref:
106 return "LTO_ssa_name_ref";
107 case LTO_type_decl_ref:
108 return "LTO_type_decl_ref";
109 case LTO_type_ref:
110 return "LTO_type_ref";
111 case LTO_global_decl_ref:
112 return "LTO_global_decl_ref";
113 default:
114 return "LTO_UNKNOWN";
119 /* Allocate a bitmap from heap. Initializes the LTO obstack if necessary. */
121 bitmap
122 lto_bitmap_alloc (void)
124 if (!lto_obstack_initialized)
126 bitmap_obstack_initialize (&lto_obstack);
127 lto_obstack_initialized = true;
129 return BITMAP_ALLOC (&lto_obstack);
132 /* Free bitmap B. */
134 void
135 lto_bitmap_free (bitmap b)
137 BITMAP_FREE (b);
141 /* Get a section name for a particular type or name. The NAME field
142 is only used if SECTION_TYPE is LTO_section_function_body. For all
143 others it is ignored. The callee of this function is responsible
144 to free the returned name. */
146 char *
147 lto_get_section_name (int section_type, const char *name, struct lto_file_decl_data *f)
149 const char *add;
150 char post[32];
151 const char *sep;
153 if (section_type == LTO_section_function_body)
155 gcc_assert (name != NULL);
156 if (name[0] == '*')
157 name++;
158 add = name;
159 sep = "";
161 else if (section_type < LTO_N_SECTION_TYPES)
163 add = lto_section_name[section_type];
164 sep = ".";
166 else
167 internal_error ("bytecode stream: unexpected LTO section %s", name);
169 /* Make the section name unique so that ld -r combining sections
170 doesn't confuse the reader with merged sections.
172 For options don't add a ID, the option reader cannot deal with them
173 and merging should be ok here. */
174 if (section_type == LTO_section_opts)
175 strcpy (post, "");
176 else if (f != NULL)
177 sprintf (post, "." HOST_WIDE_INT_PRINT_HEX_PURE, f->id);
178 else
179 sprintf (post, "." HOST_WIDE_INT_PRINT_HEX_PURE, get_random_seed (false));
180 return concat (LTO_SECTION_NAME_PREFIX, sep, add, post, NULL);
184 /* Show various memory usage statistics related to LTO. */
186 void
187 print_lto_report (const char *s)
189 unsigned i;
191 fprintf (stderr, "[%s] # of input files: "
192 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s, lto_stats.num_input_files);
194 fprintf (stderr, "[%s] # of input cgraph nodes: "
195 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
196 lto_stats.num_input_cgraph_nodes);
198 fprintf (stderr, "[%s] # of function bodies: "
199 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
200 lto_stats.num_function_bodies);
202 for (i = 0; i < NUM_TREE_CODES; i++)
203 if (lto_stats.num_trees[i])
204 fprintf (stderr, "[%s] # of '%s' objects read: "
205 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
206 get_tree_code_name ((enum tree_code) i), lto_stats.num_trees[i]);
208 if (flag_lto)
210 fprintf (stderr, "[%s] Compression: "
211 HOST_WIDE_INT_PRINT_UNSIGNED " output bytes, "
212 HOST_WIDE_INT_PRINT_UNSIGNED " compressed bytes", s,
213 lto_stats.num_output_il_bytes,
214 lto_stats.num_compressed_il_bytes);
215 if (lto_stats.num_output_il_bytes > 0)
217 const float dividend = (float) lto_stats.num_compressed_il_bytes;
218 const float divisor = (float) lto_stats.num_output_il_bytes;
219 fprintf (stderr, " (ratio: %f)", dividend / divisor);
221 fprintf (stderr, "\n");
224 if (flag_wpa)
226 fprintf (stderr, "[%s] # of output files: "
227 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
228 lto_stats.num_output_files);
230 fprintf (stderr, "[%s] # of output symtab nodes: "
231 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
232 lto_stats.num_output_symtab_nodes);
234 fprintf (stderr, "[%s] # of output tree pickle references: "
235 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
236 lto_stats.num_pickle_refs_output);
237 fprintf (stderr, "[%s] # of output tree bodies: "
238 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
239 lto_stats.num_tree_bodies_output);
241 fprintf (stderr, "[%s] # callgraph partitions: "
242 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
243 lto_stats.num_cgraph_partitions);
245 fprintf (stderr, "[%s] Compression: "
246 HOST_WIDE_INT_PRINT_UNSIGNED " input bytes, "
247 HOST_WIDE_INT_PRINT_UNSIGNED " uncompressed bytes", s,
248 lto_stats.num_input_il_bytes,
249 lto_stats.num_uncompressed_il_bytes);
250 if (lto_stats.num_input_il_bytes > 0)
252 const float dividend = (float) lto_stats.num_uncompressed_il_bytes;
253 const float divisor = (float) lto_stats.num_input_il_bytes;
254 fprintf (stderr, " (ratio: %f)", dividend / divisor);
256 fprintf (stderr, "\n");
259 for (i = 0; i < LTO_N_SECTION_TYPES; i++)
260 fprintf (stderr, "[%s] Size of mmap'd section %s: "
261 HOST_WIDE_INT_PRINT_UNSIGNED " bytes\n", s,
262 lto_section_name[i], lto_stats.section_size[i]);
266 #ifdef LTO_STREAMER_DEBUG
267 struct tree_hash_entry
269 tree key;
270 intptr_t value;
273 struct tree_entry_hasher : typed_noop_remove <tree_hash_entry>
275 typedef tree_hash_entry value_type;
276 typedef tree_hash_entry compare_type;
277 static inline hashval_t hash (const value_type *);
278 static inline bool equal (const value_type *, const compare_type *);
281 inline hashval_t
282 tree_entry_hasher::hash (const value_type *e)
284 return htab_hash_pointer (e->key);
287 inline bool
288 tree_entry_hasher::equal (const value_type *e1, const compare_type *e2)
290 return (e1->key == e2->key);
293 static hash_table<tree_hash_entry> *tree_htab;
294 #endif
296 /* Initialization common to the LTO reader and writer. */
298 void
299 lto_streamer_init (void)
301 /* Check that all the TS_* handled by the reader and writer routines
302 match exactly the structures defined in treestruct.def. When a
303 new TS_* astructure is added, the streamer should be updated to
304 handle it. */
305 streamer_check_handled_ts_structures ();
307 #ifdef LTO_STREAMER_DEBUG
308 tree_htab = new hash_table<tree_hash_entry> (31);
309 #endif
313 /* Gate function for all LTO streaming passes. */
315 bool
316 gate_lto_out (void)
318 return ((flag_generate_lto || in_lto_p)
319 /* Don't bother doing anything if the program has errors. */
320 && !seen_error ());
324 #ifdef LTO_STREAMER_DEBUG
325 /* Add a mapping between T and ORIG_T, which is the numeric value of
326 the original address of T as it was seen by the LTO writer. This
327 mapping is useful when debugging streaming problems. A debugging
328 session can be started on both reader and writer using ORIG_T
329 as a breakpoint value in both sessions.
331 Note that this mapping is transient and only valid while T is
332 being reconstructed. Once T is fully built, the mapping is
333 removed. */
335 void
336 lto_orig_address_map (tree t, intptr_t orig_t)
338 struct tree_hash_entry ent;
339 struct tree_hash_entry **slot;
341 ent.key = t;
342 ent.value = orig_t;
343 slot = tree_htab->find_slot (&ent, INSERT);
344 gcc_assert (!*slot);
345 *slot = XNEW (struct tree_hash_entry);
346 **slot = ent;
350 /* Get the original address of T as it was seen by the writer. This
351 is only valid while T is being reconstructed. */
353 intptr_t
354 lto_orig_address_get (tree t)
356 struct tree_hash_entry ent;
357 struct tree_hash_entry **slot;
359 ent.key = t;
360 slot = tree_htab->find_slot (&ent, NO_INSERT);
361 return (slot ? (*slot)->value : 0);
365 /* Clear the mapping of T to its original address. */
367 void
368 lto_orig_address_remove (tree t)
370 struct tree_hash_entry ent;
371 struct tree_hash_entry **slot;
373 ent.key = t;
374 slot = tree_htab->find_slot (&ent, NO_INSERT);
375 gcc_assert (slot);
376 free (*slot);
377 tree_htab->clear_slot (slot);
379 #endif
382 /* Check that the version MAJOR.MINOR is the correct version number. */
384 void
385 lto_check_version (int major, int minor)
387 if (major != LTO_major_version || minor != LTO_minor_version)
388 fatal_error ("bytecode stream generated with LTO version %d.%d instead "
389 "of the expected %d.%d",
390 major, minor,
391 LTO_major_version, LTO_minor_version);
395 /* Initialize all the streamer hooks used for streaming GIMPLE. */
397 void
398 lto_streamer_hooks_init (void)
400 streamer_hooks_init ();
401 streamer_hooks.write_tree = lto_output_tree;
402 streamer_hooks.read_tree = lto_input_tree;
403 streamer_hooks.input_location = lto_input_location;
404 streamer_hooks.output_location = lto_output_location;