In gcc/objc/: 2011-06-01 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / gcc / lto-streamer.c
blob763ecc5e903e0f688e927618818af2059b934c00
1 /* Miscellaneous utilities for GIMPLE streaming. Things that are used
2 in both input and output are here.
4 Copyright 2009, 2010 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 "gimple.h"
31 #include "tree-flow.h"
32 #include "diagnostic-core.h"
33 #include "bitmap.h"
34 #include "vec.h"
35 #include "lto-streamer.h"
37 /* Statistics gathered during LTO, WPA and LTRANS. */
38 struct lto_stats_d lto_stats;
40 /* LTO uses bitmaps with different life-times. So use a seperate
41 obstack for all LTO bitmaps. */
42 static bitmap_obstack lto_obstack;
43 static bool lto_obstack_initialized;
46 /* Return a string representing LTO tag TAG. */
48 const char *
49 lto_tag_name (enum LTO_tags tag)
51 if (lto_tag_is_tree_code_p (tag))
53 /* For tags representing tree nodes, return the name of the
54 associated tree code. */
55 return tree_code_name[lto_tag_to_tree_code (tag)];
58 if (lto_tag_is_gimple_code_p (tag))
60 /* For tags representing gimple statements, return the name of
61 the associated gimple code. */
62 return gimple_code_name[lto_tag_to_gimple_code (tag)];
65 switch (tag)
67 case LTO_null:
68 return "LTO_null";
69 case LTO_bb0:
70 return "LTO_bb0";
71 case LTO_bb1:
72 return "LTO_bb1";
73 case LTO_eh_region:
74 return "LTO_eh_region";
75 case LTO_function:
76 return "LTO_function";
77 case LTO_eh_table:
78 return "LTO_eh_table";
79 case LTO_ert_cleanup:
80 return "LTO_ert_cleanup";
81 case LTO_ert_try:
82 return "LTO_ert_try";
83 case LTO_ert_allowed_exceptions:
84 return "LTO_ert_allowed_exceptions";
85 case LTO_ert_must_not_throw:
86 return "LTO_ert_must_not_throw";
87 case LTO_tree_pickle_reference:
88 return "LTO_tree_pickle_reference";
89 case LTO_field_decl_ref:
90 return "LTO_field_decl_ref";
91 case LTO_function_decl_ref:
92 return "LTO_function_decl_ref";
93 case LTO_label_decl_ref:
94 return "LTO_label_decl_ref";
95 case LTO_namespace_decl_ref:
96 return "LTO_namespace_decl_ref";
97 case LTO_result_decl_ref:
98 return "LTO_result_decl_ref";
99 case LTO_ssa_name_ref:
100 return "LTO_ssa_name_ref";
101 case LTO_type_decl_ref:
102 return "LTO_type_decl_ref";
103 case LTO_type_ref:
104 return "LTO_type_ref";
105 case LTO_global_decl_ref:
106 return "LTO_global_decl_ref";
107 default:
108 return "LTO_UNKNOWN";
113 /* Allocate a bitmap from heap. Initializes the LTO obstack if necessary. */
115 bitmap
116 lto_bitmap_alloc (void)
118 if (!lto_obstack_initialized)
120 bitmap_obstack_initialize (&lto_obstack);
121 lto_obstack_initialized = true;
123 return BITMAP_ALLOC (&lto_obstack);
126 /* Free bitmap B. */
128 void
129 lto_bitmap_free (bitmap b)
131 BITMAP_FREE (b);
135 /* Get a section name for a particular type or name. The NAME field
136 is only used if SECTION_TYPE is LTO_section_function_body. For all
137 others it is ignored. The callee of this function is responsible
138 to free the returned name. */
140 char *
141 lto_get_section_name (int section_type, const char *name, struct lto_file_decl_data *f)
143 const char *add;
144 char post[32];
145 const char *sep;
147 if (section_type == LTO_section_function_body)
149 gcc_assert (name != NULL);
150 if (name[0] == '*')
151 name++;
152 add = name;
153 sep = "";
155 else if (section_type < LTO_N_SECTION_TYPES)
157 add = lto_section_name[section_type];
158 sep = ".";
160 else
161 internal_error ("bytecode stream: unexpected LTO section %s", name);
163 /* Make the section name unique so that ld -r combining sections
164 doesn't confuse the reader with merged sections.
166 For options don't add a ID, the option reader cannot deal with them
167 and merging should be ok here.
169 XXX: use crc64 to minimize collisions? */
170 if (section_type == LTO_section_opts)
171 strcpy (post, "");
172 else
173 sprintf (post, ".%x", f ? f->id : crc32_string(0, get_random_seed (false)));
174 return concat (LTO_SECTION_NAME_PREFIX, sep, add, post, NULL);
178 /* Show various memory usage statistics related to LTO. */
180 void
181 print_lto_report (void)
183 const char *s = (flag_lto) ? "LTO" : (flag_wpa) ? "WPA" : "LTRANS";
184 unsigned i;
186 fprintf (stderr, "%s statistics\n", s);
187 fprintf (stderr, "[%s] # of input files: "
188 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s, lto_stats.num_input_files);
190 fprintf (stderr, "[%s] # of input cgraph nodes: "
191 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
192 lto_stats.num_input_cgraph_nodes);
194 fprintf (stderr, "[%s] # of function bodies: "
195 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
196 lto_stats.num_function_bodies);
198 fprintf (stderr, "[%s] ", s);
199 print_gimple_types_stats ();
201 for (i = 0; i < NUM_TREE_CODES; i++)
202 if (lto_stats.num_trees[i])
203 fprintf (stderr, "[%s] # of '%s' objects read: "
204 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
205 tree_code_name[i], lto_stats.num_trees[i]);
207 if (flag_lto)
209 fprintf (stderr, "[%s] Compression: "
210 HOST_WIDE_INT_PRINT_UNSIGNED " output bytes, "
211 HOST_WIDE_INT_PRINT_UNSIGNED " compressed bytes", s,
212 lto_stats.num_output_il_bytes,
213 lto_stats.num_compressed_il_bytes);
214 if (lto_stats.num_output_il_bytes > 0)
216 const float dividend = (float) lto_stats.num_compressed_il_bytes;
217 const float divisor = (float) lto_stats.num_output_il_bytes;
218 fprintf (stderr, " (ratio: %f)", dividend / divisor);
220 fprintf (stderr, "\n");
223 if (flag_wpa)
225 fprintf (stderr, "[%s] # of output files: "
226 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
227 lto_stats.num_output_files);
229 fprintf (stderr, "[%s] # of output cgraph nodes: "
230 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
231 lto_stats.num_output_cgraph_nodes);
233 fprintf (stderr, "[%s] # callgraph partitions: "
234 HOST_WIDE_INT_PRINT_UNSIGNED "\n", s,
235 lto_stats.num_cgraph_partitions);
237 fprintf (stderr, "[%s] Compression: "
238 HOST_WIDE_INT_PRINT_UNSIGNED " input bytes, "
239 HOST_WIDE_INT_PRINT_UNSIGNED " uncompressed bytes", s,
240 lto_stats.num_input_il_bytes,
241 lto_stats.num_uncompressed_il_bytes);
242 if (lto_stats.num_input_il_bytes > 0)
244 const float dividend = (float) lto_stats.num_uncompressed_il_bytes;
245 const float divisor = (float) lto_stats.num_input_il_bytes;
246 fprintf (stderr, " (ratio: %f)", dividend / divisor);
248 fprintf (stderr, "\n");
251 for (i = 0; i < LTO_N_SECTION_TYPES; i++)
252 fprintf (stderr, "[%s] Size of mmap'd section %s: "
253 HOST_WIDE_INT_PRINT_UNSIGNED " bytes\n", s,
254 lto_section_name[i], lto_stats.section_size[i]);
258 /* Check that all the TS_* structures handled by the lto_output_* and
259 lto_input_* routines are exactly ALL the structures defined in
260 treestruct.def. */
262 static void
263 check_handled_ts_structures (void)
265 bool handled_p[LAST_TS_ENUM];
266 unsigned i;
268 memset (&handled_p, 0, sizeof (handled_p));
270 /* These are the TS_* structures that are either handled or
271 explicitly ignored by the streamer routines. */
272 handled_p[TS_BASE] = true;
273 handled_p[TS_TYPED] = true;
274 handled_p[TS_COMMON] = true;
275 handled_p[TS_INT_CST] = true;
276 handled_p[TS_REAL_CST] = true;
277 handled_p[TS_FIXED_CST] = true;
278 handled_p[TS_VECTOR] = true;
279 handled_p[TS_STRING] = true;
280 handled_p[TS_COMPLEX] = true;
281 handled_p[TS_IDENTIFIER] = true;
282 handled_p[TS_DECL_MINIMAL] = true;
283 handled_p[TS_DECL_COMMON] = true;
284 handled_p[TS_DECL_WRTL] = true;
285 handled_p[TS_DECL_NON_COMMON] = true;
286 handled_p[TS_DECL_WITH_VIS] = true;
287 handled_p[TS_FIELD_DECL] = true;
288 handled_p[TS_VAR_DECL] = true;
289 handled_p[TS_PARM_DECL] = true;
290 handled_p[TS_LABEL_DECL] = true;
291 handled_p[TS_RESULT_DECL] = true;
292 handled_p[TS_CONST_DECL] = true;
293 handled_p[TS_TYPE_DECL] = true;
294 handled_p[TS_FUNCTION_DECL] = true;
295 handled_p[TS_TYPE_COMMON] = true;
296 handled_p[TS_TYPE_WITH_LANG_SPECIFIC] = true;
297 handled_p[TS_TYPE_NON_COMMON] = true;
298 handled_p[TS_LIST] = true;
299 handled_p[TS_VEC] = true;
300 handled_p[TS_EXP] = true;
301 handled_p[TS_SSA_NAME] = true;
302 handled_p[TS_BLOCK] = true;
303 handled_p[TS_BINFO] = true;
304 handled_p[TS_STATEMENT_LIST] = true;
305 handled_p[TS_CONSTRUCTOR] = true;
306 handled_p[TS_OMP_CLAUSE] = true;
307 handled_p[TS_OPTIMIZATION] = true;
308 handled_p[TS_TARGET_OPTION] = true;
309 handled_p[TS_TRANSLATION_UNIT_DECL] = true;
311 /* Anything not marked above will trigger the following assertion.
312 If this assertion triggers, it means that there is a new TS_*
313 structure that should be handled by the streamer. */
314 for (i = 0; i < LAST_TS_ENUM; i++)
315 gcc_assert (handled_p[i]);
319 /* Helper for lto_streamer_cache_insert_1. Add T to CACHE->NODES at
320 slot IX. */
322 static void
323 lto_streamer_cache_add_to_node_array (struct lto_streamer_cache_d *cache,
324 unsigned ix, tree t)
326 /* Make sure we're either replacing an old element or
327 appending consecutively. */
328 gcc_assert (ix <= VEC_length (tree, cache->nodes));
330 if (ix == VEC_length (tree, cache->nodes))
331 VEC_safe_push (tree, heap, cache->nodes, t);
332 else
333 VEC_replace (tree, cache->nodes, ix, t);
337 /* Helper for lto_streamer_cache_insert and lto_streamer_cache_insert_at.
338 CACHE, T, and IX_P are as in lto_streamer_cache_insert.
340 If INSERT_AT_NEXT_SLOT_P is true, T is inserted at the next available
341 slot in the cache. Otherwise, T is inserted at the position indicated
342 in *IX_P.
344 If T already existed in CACHE, return true. Otherwise,
345 return false. */
347 static bool
348 lto_streamer_cache_insert_1 (struct lto_streamer_cache_d *cache,
349 tree t, unsigned *ix_p,
350 bool insert_at_next_slot_p)
352 void **slot;
353 unsigned ix;
354 bool existed_p;
356 gcc_assert (t);
358 slot = pointer_map_insert (cache->node_map, t);
359 if (!*slot)
361 /* Determine the next slot to use in the cache. */
362 if (insert_at_next_slot_p)
363 ix = VEC_length (tree, cache->nodes);
364 else
365 ix = *ix_p;
366 *slot = (void *)(size_t) (ix + 1);
368 lto_streamer_cache_add_to_node_array (cache, ix, t);
370 /* Indicate that the item was not present in the cache. */
371 existed_p = false;
373 else
375 ix = (size_t) *slot - 1;
377 if (!insert_at_next_slot_p && ix != *ix_p)
379 /* If the caller wants to insert T at a specific slot
380 location, and ENTRY->TO does not match *IX_P, add T to
381 the requested location slot. */
382 ix = *ix_p;
383 lto_streamer_cache_add_to_node_array (cache, ix, t);
386 /* Indicate that T was already in the cache. */
387 existed_p = true;
390 if (ix_p)
391 *ix_p = ix;
393 return existed_p;
397 /* Insert tree node T in CACHE. If T already existed in the cache
398 return true. Otherwise, return false.
400 If IX_P is non-null, update it with the index into the cache where
401 T has been stored. */
403 bool
404 lto_streamer_cache_insert (struct lto_streamer_cache_d *cache, tree t,
405 unsigned *ix_p)
407 return lto_streamer_cache_insert_1 (cache, t, ix_p, true);
411 /* Insert tree node T in CACHE at slot IX. If T already
412 existed in the cache return true. Otherwise, return false. */
414 bool
415 lto_streamer_cache_insert_at (struct lto_streamer_cache_d *cache,
416 tree t, unsigned ix)
418 return lto_streamer_cache_insert_1 (cache, t, &ix, false);
422 /* Appends tree node T to CACHE, even if T already existed in it. */
424 void
425 lto_streamer_cache_append (struct lto_streamer_cache_d *cache, tree t)
427 unsigned ix = VEC_length (tree, cache->nodes);
428 lto_streamer_cache_insert_1 (cache, t, &ix, false);
431 /* Return true if tree node T exists in CACHE, otherwise false. If IX_P is
432 not NULL, write to *IX_P the index into the cache where T is stored
433 ((unsigned)-1 if T is not found). */
435 bool
436 lto_streamer_cache_lookup (struct lto_streamer_cache_d *cache, tree t,
437 unsigned *ix_p)
439 void **slot;
440 bool retval;
441 unsigned ix;
443 gcc_assert (t);
445 slot = pointer_map_contains (cache->node_map, t);
446 if (slot == NULL)
448 retval = false;
449 ix = -1;
451 else
453 retval = true;
454 ix = (size_t) *slot - 1;
457 if (ix_p)
458 *ix_p = ix;
460 return retval;
464 /* Return the tree node at slot IX in CACHE. */
466 tree
467 lto_streamer_cache_get (struct lto_streamer_cache_d *cache, unsigned ix)
469 gcc_assert (cache);
471 /* Make sure we're not requesting something we don't have. */
472 gcc_assert (ix < VEC_length (tree, cache->nodes));
474 return VEC_index (tree, cache->nodes, ix);
478 /* Record NODE in CACHE. */
480 static void
481 lto_record_common_node (struct lto_streamer_cache_d *cache, tree node)
483 /* We have to make sure to fill exactly the same number of
484 elements for all frontends. That can include NULL trees.
485 As our hash table can't deal with zero entries we'll simply stream
486 a random other tree. A NULL tree never will be looked up so it
487 doesn't matter which tree we replace it with, just to be sure
488 use error_mark_node. */
489 if (!node)
490 node = error_mark_node;
492 lto_streamer_cache_append (cache, node);
494 if (POINTER_TYPE_P (node)
495 || TREE_CODE (node) == COMPLEX_TYPE
496 || TREE_CODE (node) == ARRAY_TYPE)
497 lto_record_common_node (cache, TREE_TYPE (node));
498 else if (TREE_CODE (node) == RECORD_TYPE)
500 /* The FIELD_DECLs of structures should be shared, so that every
501 COMPONENT_REF uses the same tree node when referencing a field.
502 Pointer equality between FIELD_DECLs is used by the alias
503 machinery to compute overlapping memory references (See
504 nonoverlapping_component_refs_p). */
505 tree f;
506 for (f = TYPE_FIELDS (node); f; f = TREE_CHAIN (f))
507 lto_record_common_node (cache, f);
511 /* Preload common nodes into CACHE and make sure they are merged
512 properly according to the gimple type table. */
514 static void
515 lto_preload_common_nodes (struct lto_streamer_cache_d *cache)
517 unsigned i;
519 /* The MAIN_IDENTIFIER_NODE is normally set up by the front-end, but the
520 LTO back-end must agree. Currently, the only languages that set this
521 use the name "main". */
522 if (main_identifier_node)
524 const char *main_name = IDENTIFIER_POINTER (main_identifier_node);
525 gcc_assert (strcmp (main_name, "main") == 0);
527 else
528 main_identifier_node = get_identifier ("main");
530 gcc_assert (ptrdiff_type_node == integer_type_node);
532 /* FIXME lto. In the C++ front-end, fileptr_type_node is defined as a
533 variant copy of of ptr_type_node, rather than ptr_node itself. The
534 distinction should only be relevant to the front-end, so we always
535 use the C definition here in lto1.
537 These should be assured in pass_ipa_free_lang_data. */
538 gcc_assert (fileptr_type_node == ptr_type_node);
539 gcc_assert (TYPE_MAIN_VARIANT (fileptr_type_node) == ptr_type_node);
541 for (i = 0; i < itk_none; i++)
542 /* Skip itk_char. char_type_node is dependent on -f[un]signed-char. */
543 if (i != itk_char)
544 lto_record_common_node (cache, integer_types[i]);
546 for (i = 0; i < TYPE_KIND_LAST; i++)
547 lto_record_common_node (cache, sizetype_tab[i]);
549 for (i = 0; i < TI_MAX; i++)
550 /* Skip boolean type and constants, they are frontend dependent. */
551 if (i != TI_BOOLEAN_TYPE
552 && i != TI_BOOLEAN_FALSE
553 && i != TI_BOOLEAN_TRUE)
554 lto_record_common_node (cache, global_trees[i]);
557 /* Create a cache of pickled nodes. */
559 struct lto_streamer_cache_d *
560 lto_streamer_cache_create (void)
562 struct lto_streamer_cache_d *cache;
564 cache = XCNEW (struct lto_streamer_cache_d);
566 cache->node_map = pointer_map_create ();
568 /* Load all the well-known tree nodes that are always created by
569 the compiler on startup. This prevents writing them out
570 unnecessarily. */
571 lto_preload_common_nodes (cache);
573 return cache;
577 /* Delete the streamer cache C. */
579 void
580 lto_streamer_cache_delete (struct lto_streamer_cache_d *c)
582 if (c == NULL)
583 return;
585 pointer_map_destroy (c->node_map);
586 VEC_free (tree, heap, c->nodes);
587 free (c);
591 #ifdef LTO_STREAMER_DEBUG
592 static htab_t tree_htab;
594 struct tree_hash_entry
596 tree key;
597 intptr_t value;
600 static hashval_t
601 hash_tree (const void *p)
603 const struct tree_hash_entry *e = (const struct tree_hash_entry *) p;
604 return htab_hash_pointer (e->key);
607 static int
608 eq_tree (const void *p1, const void *p2)
610 const struct tree_hash_entry *e1 = (const struct tree_hash_entry *) p1;
611 const struct tree_hash_entry *e2 = (const struct tree_hash_entry *) p2;
612 return (e1->key == e2->key);
614 #endif
616 /* Initialization common to the LTO reader and writer. */
618 void
619 lto_streamer_init (void)
621 /* Check that all the TS_* handled by the reader and writer routines
622 match exactly the structures defined in treestruct.def. When a
623 new TS_* astructure is added, the streamer should be updated to
624 handle it. */
625 check_handled_ts_structures ();
627 #ifdef LTO_STREAMER_DEBUG
628 tree_htab = htab_create (31, hash_tree, eq_tree, NULL);
629 #endif
633 /* Gate function for all LTO streaming passes. */
635 bool
636 gate_lto_out (void)
638 return ((flag_generate_lto || in_lto_p)
639 /* Don't bother doing anything if the program has errors. */
640 && !seen_error ());
644 #ifdef LTO_STREAMER_DEBUG
645 /* Add a mapping between T and ORIG_T, which is the numeric value of
646 the original address of T as it was seen by the LTO writer. This
647 mapping is useful when debugging streaming problems. A debugging
648 session can be started on both reader and writer using ORIG_T
649 as a breakpoint value in both sessions.
651 Note that this mapping is transient and only valid while T is
652 being reconstructed. Once T is fully built, the mapping is
653 removed. */
655 void
656 lto_orig_address_map (tree t, intptr_t orig_t)
658 struct tree_hash_entry ent;
659 struct tree_hash_entry **slot;
661 ent.key = t;
662 ent.value = orig_t;
663 slot
664 = (struct tree_hash_entry **) htab_find_slot (tree_htab, &ent, INSERT);
665 gcc_assert (!*slot);
666 *slot = XNEW (struct tree_hash_entry);
667 **slot = ent;
671 /* Get the original address of T as it was seen by the writer. This
672 is only valid while T is being reconstructed. */
674 intptr_t
675 lto_orig_address_get (tree t)
677 struct tree_hash_entry ent;
678 struct tree_hash_entry **slot;
680 ent.key = t;
681 slot
682 = (struct tree_hash_entry **) htab_find_slot (tree_htab, &ent, NO_INSERT);
683 return (slot ? (*slot)->value : 0);
687 /* Clear the mapping of T to its original address. */
689 void
690 lto_orig_address_remove (tree t)
692 struct tree_hash_entry ent;
693 struct tree_hash_entry **slot;
695 ent.key = t;
696 slot
697 = (struct tree_hash_entry **) htab_find_slot (tree_htab, &ent, NO_INSERT);
698 gcc_assert (slot);
699 free (*slot);
700 htab_clear_slot (tree_htab, (PTR *)slot);
702 #endif
705 /* Check that the version MAJOR.MINOR is the correct version number. */
707 void
708 lto_check_version (int major, int minor)
710 if (major != LTO_major_version || minor != LTO_minor_version)
711 fatal_error ("bytecode stream generated with LTO version %d.%d instead "
712 "of the expected %d.%d",
713 major, minor,
714 LTO_major_version, LTO_minor_version);