* pt.c (lookup_template_class_1): Splice out abi_tag attribute if
[official-gcc.git] / gcc / lto-streamer-in.c
blob271b51ca4cc39bced2560187a5a417ec06ada40c
1 /* Read the GIMPLE representation from a file stream.
3 Copyright (C) 2009-2014 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 "toplev.h"
28 #include "tree.h"
29 #include "stringpool.h"
30 #include "expr.h"
31 #include "flags.h"
32 #include "params.h"
33 #include "input.h"
34 #include "hashtab.h"
35 #include "basic-block.h"
36 #include "tree-ssa-alias.h"
37 #include "internal-fn.h"
38 #include "gimple-expr.h"
39 #include "is-a.h"
40 #include "gimple.h"
41 #include "gimple-iterator.h"
42 #include "gimple-ssa.h"
43 #include "tree-cfg.h"
44 #include "tree-ssanames.h"
45 #include "tree-into-ssa.h"
46 #include "tree-dfa.h"
47 #include "tree-ssa.h"
48 #include "tree-pass.h"
49 #include "function.h"
50 #include "diagnostic.h"
51 #include "except.h"
52 #include "debug.h"
53 #include "ipa-utils.h"
54 #include "data-streamer.h"
55 #include "gimple-streamer.h"
56 #include "lto-streamer.h"
57 #include "tree-streamer.h"
58 #include "tree-pass.h"
59 #include "streamer-hooks.h"
60 #include "cfgloop.h"
63 struct freeing_string_slot_hasher : string_slot_hasher
65 static inline void remove (value_type *);
68 inline void
69 freeing_string_slot_hasher::remove (value_type *v)
71 free (v);
74 /* The table to hold the file names. */
75 static hash_table<freeing_string_slot_hasher> *file_name_hash_table;
78 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
79 number of valid tag values to check. */
81 void
82 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
84 va_list ap;
85 int i;
87 va_start (ap, ntags);
88 for (i = 0; i < ntags; i++)
89 if ((unsigned) actual == va_arg (ap, unsigned))
91 va_end (ap);
92 return;
95 va_end (ap);
96 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
100 /* Read LENGTH bytes from STREAM to ADDR. */
102 void
103 lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
105 size_t i;
106 unsigned char *const buffer = (unsigned char *const) addr;
108 for (i = 0; i < length; i++)
109 buffer[i] = streamer_read_uchar (ib);
113 /* Lookup STRING in file_name_hash_table. If found, return the existing
114 string, otherwise insert STRING as the canonical version. */
116 static const char *
117 canon_file_name (const char *string)
119 string_slot **slot;
120 struct string_slot s_slot;
121 size_t len = strlen (string);
123 s_slot.s = string;
124 s_slot.len = len;
126 slot = file_name_hash_table->find_slot (&s_slot, INSERT);
127 if (*slot == NULL)
129 char *saved_string;
130 struct string_slot *new_slot;
132 saved_string = (char *) xmalloc (len + 1);
133 new_slot = XCNEW (struct string_slot);
134 memcpy (saved_string, string, len + 1);
135 new_slot->s = saved_string;
136 new_slot->len = len;
137 *slot = new_slot;
138 return saved_string;
140 else
142 struct string_slot *old_slot = *slot;
143 return old_slot->s;
148 /* Read a location bitpack from input block IB. */
150 location_t
151 lto_input_location (struct bitpack_d *bp, struct data_in *data_in)
153 static const char *current_file;
154 static int current_line;
155 static int current_col;
156 bool file_change, line_change, column_change;
157 bool prev_file = current_file != NULL;
159 if (bp_unpack_value (bp, 1))
160 return UNKNOWN_LOCATION;
162 file_change = bp_unpack_value (bp, 1);
163 line_change = bp_unpack_value (bp, 1);
164 column_change = bp_unpack_value (bp, 1);
166 if (file_change)
167 current_file = canon_file_name (bp_unpack_string (data_in, bp));
169 if (line_change)
170 current_line = bp_unpack_var_len_unsigned (bp);
172 if (column_change)
173 current_col = bp_unpack_var_len_unsigned (bp);
175 if (file_change)
177 if (prev_file)
178 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
180 linemap_add (line_table, LC_ENTER, false, current_file, current_line);
182 else if (line_change)
183 linemap_line_start (line_table, current_line, current_col);
185 return linemap_position_for_column (line_table, current_col);
189 /* Read a reference to a tree node from DATA_IN using input block IB.
190 TAG is the expected node that should be found in IB, if TAG belongs
191 to one of the indexable trees, expect to read a reference index to
192 be looked up in one of the symbol tables, otherwise read the pysical
193 representation of the tree using stream_read_tree. FN is the
194 function scope for the read tree. */
196 tree
197 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
198 struct function *fn, enum LTO_tags tag)
200 unsigned HOST_WIDE_INT ix_u;
201 tree result = NULL_TREE;
203 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_namelist_decl_ref);
205 switch (tag)
207 case LTO_type_ref:
208 ix_u = streamer_read_uhwi (ib);
209 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
210 break;
212 case LTO_ssa_name_ref:
213 ix_u = streamer_read_uhwi (ib);
214 result = (*SSANAMES (fn))[ix_u];
215 break;
217 case LTO_field_decl_ref:
218 ix_u = streamer_read_uhwi (ib);
219 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
220 break;
222 case LTO_function_decl_ref:
223 ix_u = streamer_read_uhwi (ib);
224 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
225 break;
227 case LTO_type_decl_ref:
228 ix_u = streamer_read_uhwi (ib);
229 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
230 break;
232 case LTO_namespace_decl_ref:
233 ix_u = streamer_read_uhwi (ib);
234 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
235 break;
237 case LTO_global_decl_ref:
238 case LTO_result_decl_ref:
239 case LTO_const_decl_ref:
240 case LTO_imported_decl_ref:
241 case LTO_label_decl_ref:
242 case LTO_translation_unit_decl_ref:
243 case LTO_namelist_decl_ref:
244 ix_u = streamer_read_uhwi (ib);
245 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
246 break;
248 default:
249 gcc_unreachable ();
252 gcc_assert (result);
254 return result;
258 /* Read and return a double-linked list of catch handlers from input
259 block IB, using descriptors in DATA_IN. */
261 static struct eh_catch_d *
262 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
263 eh_catch *last_p)
265 eh_catch first;
266 enum LTO_tags tag;
268 *last_p = first = NULL;
269 tag = streamer_read_record_start (ib);
270 while (tag)
272 tree list;
273 eh_catch n;
275 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
277 /* Read the catch node. */
278 n = ggc_cleared_alloc<eh_catch_d> ();
279 n->type_list = stream_read_tree (ib, data_in);
280 n->filter_list = stream_read_tree (ib, data_in);
281 n->label = stream_read_tree (ib, data_in);
283 /* Register all the types in N->FILTER_LIST. */
284 for (list = n->filter_list; list; list = TREE_CHAIN (list))
285 add_type_for_runtime (TREE_VALUE (list));
287 /* Chain N to the end of the list. */
288 if (*last_p)
289 (*last_p)->next_catch = n;
290 n->prev_catch = *last_p;
291 *last_p = n;
293 /* Set the head of the list the first time through the loop. */
294 if (first == NULL)
295 first = n;
297 tag = streamer_read_record_start (ib);
300 return first;
304 /* Read and return EH region IX from input block IB, using descriptors
305 in DATA_IN. */
307 static eh_region
308 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
310 enum LTO_tags tag;
311 eh_region r;
313 /* Read the region header. */
314 tag = streamer_read_record_start (ib);
315 if (tag == LTO_null)
316 return NULL;
318 r = ggc_cleared_alloc<eh_region_d> ();
319 r->index = streamer_read_hwi (ib);
321 gcc_assert (r->index == ix);
323 /* Read all the region pointers as region numbers. We'll fix up
324 the pointers once the whole array has been read. */
325 r->outer = (eh_region) (intptr_t) streamer_read_hwi (ib);
326 r->inner = (eh_region) (intptr_t) streamer_read_hwi (ib);
327 r->next_peer = (eh_region) (intptr_t) streamer_read_hwi (ib);
329 switch (tag)
331 case LTO_ert_cleanup:
332 r->type = ERT_CLEANUP;
333 break;
335 case LTO_ert_try:
337 struct eh_catch_d *last_catch;
338 r->type = ERT_TRY;
339 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
340 &last_catch);
341 r->u.eh_try.last_catch = last_catch;
342 break;
345 case LTO_ert_allowed_exceptions:
347 tree l;
349 r->type = ERT_ALLOWED_EXCEPTIONS;
350 r->u.allowed.type_list = stream_read_tree (ib, data_in);
351 r->u.allowed.label = stream_read_tree (ib, data_in);
352 r->u.allowed.filter = streamer_read_uhwi (ib);
354 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
355 add_type_for_runtime (TREE_VALUE (l));
357 break;
359 case LTO_ert_must_not_throw:
361 r->type = ERT_MUST_NOT_THROW;
362 r->u.must_not_throw.failure_decl = stream_read_tree (ib, data_in);
363 bitpack_d bp = streamer_read_bitpack (ib);
364 r->u.must_not_throw.failure_loc
365 = stream_input_location (&bp, data_in);
367 break;
369 default:
370 gcc_unreachable ();
373 r->landing_pads = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
375 return r;
379 /* Read and return EH landing pad IX from input block IB, using descriptors
380 in DATA_IN. */
382 static eh_landing_pad
383 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
385 enum LTO_tags tag;
386 eh_landing_pad lp;
388 /* Read the landing pad header. */
389 tag = streamer_read_record_start (ib);
390 if (tag == LTO_null)
391 return NULL;
393 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
395 lp = ggc_cleared_alloc<eh_landing_pad_d> ();
396 lp->index = streamer_read_hwi (ib);
397 gcc_assert (lp->index == ix);
398 lp->next_lp = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
399 lp->region = (eh_region) (intptr_t) streamer_read_hwi (ib);
400 lp->post_landing_pad = stream_read_tree (ib, data_in);
402 return lp;
406 /* After reading the EH regions, pointers to peer and children regions
407 are region numbers. This converts all these region numbers into
408 real pointers into the rematerialized regions for FN. ROOT_REGION
409 is the region number for the root EH region in FN. */
411 static void
412 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
414 unsigned i;
415 vec<eh_region, va_gc> *eh_array = fn->eh->region_array;
416 vec<eh_landing_pad, va_gc> *lp_array = fn->eh->lp_array;
417 eh_region r;
418 eh_landing_pad lp;
420 gcc_assert (eh_array && lp_array);
422 gcc_assert (root_region >= 0);
423 fn->eh->region_tree = (*eh_array)[root_region];
425 #define FIXUP_EH_REGION(r) (r) = (*eh_array)[(HOST_WIDE_INT) (intptr_t) (r)]
426 #define FIXUP_EH_LP(p) (p) = (*lp_array)[(HOST_WIDE_INT) (intptr_t) (p)]
428 /* Convert all the index numbers stored in pointer fields into
429 pointers to the corresponding slots in the EH region array. */
430 FOR_EACH_VEC_ELT (*eh_array, i, r)
432 /* The array may contain NULL regions. */
433 if (r == NULL)
434 continue;
436 gcc_assert (i == (unsigned) r->index);
437 FIXUP_EH_REGION (r->outer);
438 FIXUP_EH_REGION (r->inner);
439 FIXUP_EH_REGION (r->next_peer);
440 FIXUP_EH_LP (r->landing_pads);
443 /* Convert all the index numbers stored in pointer fields into
444 pointers to the corresponding slots in the EH landing pad array. */
445 FOR_EACH_VEC_ELT (*lp_array, i, lp)
447 /* The array may contain NULL landing pads. */
448 if (lp == NULL)
449 continue;
451 gcc_assert (i == (unsigned) lp->index);
452 FIXUP_EH_LP (lp->next_lp);
453 FIXUP_EH_REGION (lp->region);
456 #undef FIXUP_EH_REGION
457 #undef FIXUP_EH_LP
461 /* Initialize EH support. */
463 void
464 lto_init_eh (void)
466 static bool eh_initialized_p = false;
468 if (eh_initialized_p)
469 return;
471 /* Contrary to most other FEs, we only initialize EH support when at
472 least one of the files in the set contains exception regions in
473 it. Since this happens much later than the call to init_eh in
474 lang_dependent_init, we have to set flag_exceptions and call
475 init_eh again to initialize the EH tables. */
476 flag_exceptions = 1;
477 init_eh ();
479 eh_initialized_p = true;
483 /* Read the exception table for FN from IB using the data descriptors
484 in DATA_IN. */
486 static void
487 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
488 struct function *fn)
490 HOST_WIDE_INT i, root_region, len;
491 enum LTO_tags tag;
493 tag = streamer_read_record_start (ib);
494 if (tag == LTO_null)
495 return;
497 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
499 /* If the file contains EH regions, then it was compiled with
500 -fexceptions. In that case, initialize the backend EH
501 machinery. */
502 lto_init_eh ();
504 gcc_assert (fn->eh);
506 root_region = streamer_read_hwi (ib);
507 gcc_assert (root_region == (int) root_region);
509 /* Read the EH region array. */
510 len = streamer_read_hwi (ib);
511 gcc_assert (len == (int) len);
512 if (len > 0)
514 vec_safe_grow_cleared (fn->eh->region_array, len);
515 for (i = 0; i < len; i++)
517 eh_region r = input_eh_region (ib, data_in, i);
518 (*fn->eh->region_array)[i] = r;
522 /* Read the landing pads. */
523 len = streamer_read_hwi (ib);
524 gcc_assert (len == (int) len);
525 if (len > 0)
527 vec_safe_grow_cleared (fn->eh->lp_array, len);
528 for (i = 0; i < len; i++)
530 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
531 (*fn->eh->lp_array)[i] = lp;
535 /* Read the runtime type data. */
536 len = streamer_read_hwi (ib);
537 gcc_assert (len == (int) len);
538 if (len > 0)
540 vec_safe_grow_cleared (fn->eh->ttype_data, len);
541 for (i = 0; i < len; i++)
543 tree ttype = stream_read_tree (ib, data_in);
544 (*fn->eh->ttype_data)[i] = ttype;
548 /* Read the table of action chains. */
549 len = streamer_read_hwi (ib);
550 gcc_assert (len == (int) len);
551 if (len > 0)
553 if (targetm.arm_eabi_unwinder)
555 vec_safe_grow_cleared (fn->eh->ehspec_data.arm_eabi, len);
556 for (i = 0; i < len; i++)
558 tree t = stream_read_tree (ib, data_in);
559 (*fn->eh->ehspec_data.arm_eabi)[i] = t;
562 else
564 vec_safe_grow_cleared (fn->eh->ehspec_data.other, len);
565 for (i = 0; i < len; i++)
567 uchar c = streamer_read_uchar (ib);
568 (*fn->eh->ehspec_data.other)[i] = c;
573 /* Reconstruct the EH region tree by fixing up the peer/children
574 pointers. */
575 fixup_eh_region_pointers (fn, root_region);
577 tag = streamer_read_record_start (ib);
578 lto_tag_check_range (tag, LTO_null, LTO_null);
582 /* Make a new basic block with index INDEX in function FN. */
584 static basic_block
585 make_new_block (struct function *fn, unsigned int index)
587 basic_block bb = alloc_block ();
588 bb->index = index;
589 SET_BASIC_BLOCK_FOR_FN (fn, index, bb);
590 n_basic_blocks_for_fn (fn)++;
591 return bb;
595 /* Read a wide-int. */
597 static widest_int
598 streamer_read_wi (struct lto_input_block *ib)
600 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
601 int i;
602 int prec ATTRIBUTE_UNUSED = streamer_read_uhwi (ib);
603 int len = streamer_read_uhwi (ib);
604 for (i = 0; i < len; i++)
605 a[i] = streamer_read_hwi (ib);
606 return widest_int::from_array (a, len);
610 /* Read the CFG for function FN from input block IB. */
612 static void
613 input_cfg (struct lto_input_block *ib, struct data_in *data_in,
614 struct function *fn,
615 int count_materialization_scale)
617 unsigned int bb_count;
618 basic_block p_bb;
619 unsigned int i;
620 int index;
622 init_empty_tree_cfg_for_function (fn);
623 init_ssa_operands (fn);
625 profile_status_for_fn (fn) = streamer_read_enum (ib, profile_status_d,
626 PROFILE_LAST);
628 bb_count = streamer_read_uhwi (ib);
630 last_basic_block_for_fn (fn) = bb_count;
631 if (bb_count > basic_block_info_for_fn (fn)->length ())
632 vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count);
634 if (bb_count > label_to_block_map_for_fn (fn)->length ())
635 vec_safe_grow_cleared (label_to_block_map_for_fn (fn), bb_count);
637 index = streamer_read_hwi (ib);
638 while (index != -1)
640 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
641 unsigned int edge_count;
643 if (bb == NULL)
644 bb = make_new_block (fn, index);
646 edge_count = streamer_read_uhwi (ib);
648 /* Connect up the CFG. */
649 for (i = 0; i < edge_count; i++)
651 unsigned int dest_index;
652 unsigned int edge_flags;
653 basic_block dest;
654 int probability;
655 gcov_type count;
656 edge e;
658 dest_index = streamer_read_uhwi (ib);
659 probability = (int) streamer_read_hwi (ib);
660 count = apply_scale ((gcov_type) streamer_read_gcov_count (ib),
661 count_materialization_scale);
662 edge_flags = streamer_read_uhwi (ib);
664 dest = BASIC_BLOCK_FOR_FN (fn, dest_index);
666 if (dest == NULL)
667 dest = make_new_block (fn, dest_index);
669 e = make_edge (bb, dest, edge_flags);
670 e->probability = probability;
671 e->count = count;
674 index = streamer_read_hwi (ib);
677 p_bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
678 index = streamer_read_hwi (ib);
679 while (index != -1)
681 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
682 bb->prev_bb = p_bb;
683 p_bb->next_bb = bb;
684 p_bb = bb;
685 index = streamer_read_hwi (ib);
688 /* ??? The cfgloop interface is tied to cfun. */
689 gcc_assert (cfun == fn);
691 /* Input the loop tree. */
692 unsigned n_loops = streamer_read_uhwi (ib);
693 if (n_loops == 0)
694 return;
696 struct loops *loops = ggc_cleared_alloc<struct loops> ();
697 init_loops_structure (fn, loops, n_loops);
698 set_loops_for_fn (fn, loops);
700 /* Input each loop and associate it with its loop header so
701 flow_loops_find can rebuild the loop tree. */
702 for (unsigned i = 1; i < n_loops; ++i)
704 int header_index = streamer_read_hwi (ib);
705 if (header_index == -1)
707 loops->larray->quick_push (NULL);
708 continue;
711 struct loop *loop = alloc_loop ();
712 loop->header = BASIC_BLOCK_FOR_FN (fn, header_index);
713 loop->header->loop_father = loop;
715 /* Read everything copy_loop_info copies. */
716 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
717 loop->any_upper_bound = streamer_read_hwi (ib);
718 if (loop->any_upper_bound)
719 loop->nb_iterations_upper_bound = streamer_read_wi (ib);
720 loop->any_estimate = streamer_read_hwi (ib);
721 if (loop->any_estimate)
722 loop->nb_iterations_estimate = streamer_read_wi (ib);
724 /* Read OMP SIMD related info. */
725 loop->safelen = streamer_read_hwi (ib);
726 loop->dont_vectorize = streamer_read_hwi (ib);
727 loop->force_vectorize = streamer_read_hwi (ib);
728 loop->simduid = stream_read_tree (ib, data_in);
730 place_new_loop (fn, loop);
732 /* flow_loops_find doesn't like loops not in the tree, hook them
733 all as siblings of the tree root temporarily. */
734 flow_loop_tree_node_add (loops->tree_root, loop);
737 /* Rebuild the loop tree. */
738 flow_loops_find (loops);
742 /* Read the SSA names array for function FN from DATA_IN using input
743 block IB. */
745 static void
746 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
747 struct function *fn)
749 unsigned int i, size;
751 size = streamer_read_uhwi (ib);
752 init_ssanames (fn, size);
754 i = streamer_read_uhwi (ib);
755 while (i)
757 tree ssa_name, name;
758 bool is_default_def;
760 /* Skip over the elements that had been freed. */
761 while (SSANAMES (fn)->length () < i)
762 SSANAMES (fn)->quick_push (NULL_TREE);
764 is_default_def = (streamer_read_uchar (ib) != 0);
765 name = stream_read_tree (ib, data_in);
766 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
768 if (is_default_def)
769 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
771 i = streamer_read_uhwi (ib);
776 /* Go through all NODE edges and fixup call_stmt pointers
777 so they point to STMTS. */
779 static void
780 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts,
781 struct function *fn)
783 struct cgraph_edge *cedge;
784 struct ipa_ref *ref = NULL;
785 unsigned int i;
787 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
789 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
790 fatal_error ("Cgraph edge statement index out of range");
791 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
792 if (!cedge->call_stmt)
793 fatal_error ("Cgraph edge statement index not found");
795 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
797 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
798 fatal_error ("Cgraph edge statement index out of range");
799 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
800 if (!cedge->call_stmt)
801 fatal_error ("Cgraph edge statement index not found");
803 for (i = 0; node->iterate_reference (i, ref); i++)
804 if (ref->lto_stmt_uid)
806 if (gimple_stmt_max_uid (fn) < ref->lto_stmt_uid)
807 fatal_error ("Reference statement index out of range");
808 ref->stmt = stmts[ref->lto_stmt_uid - 1];
809 if (!ref->stmt)
810 fatal_error ("Reference statement index not found");
815 /* Fixup call_stmt pointers in NODE and all clones. */
817 static void
818 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
820 struct cgraph_node *node;
821 struct function *fn;
823 while (orig->clone_of)
824 orig = orig->clone_of;
825 fn = DECL_STRUCT_FUNCTION (orig->decl);
827 fixup_call_stmt_edges_1 (orig, stmts, fn);
828 if (orig->clones)
829 for (node = orig->clones; node != orig;)
831 fixup_call_stmt_edges_1 (node, stmts, fn);
832 if (node->clones)
833 node = node->clones;
834 else if (node->next_sibling_clone)
835 node = node->next_sibling_clone;
836 else
838 while (node != orig && !node->next_sibling_clone)
839 node = node->clone_of;
840 if (node != orig)
841 node = node->next_sibling_clone;
847 /* Input the base body of struct function FN from DATA_IN
848 using input block IB. */
850 static void
851 input_struct_function_base (struct function *fn, struct data_in *data_in,
852 struct lto_input_block *ib)
854 struct bitpack_d bp;
855 int len;
857 /* Read the static chain and non-local goto save area. */
858 fn->static_chain_decl = stream_read_tree (ib, data_in);
859 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
861 /* Read all the local symbols. */
862 len = streamer_read_hwi (ib);
863 if (len > 0)
865 int i;
866 vec_safe_grow_cleared (fn->local_decls, len);
867 for (i = 0; i < len; i++)
869 tree t = stream_read_tree (ib, data_in);
870 (*fn->local_decls)[i] = t;
874 /* Input the current IL state of the function. */
875 fn->curr_properties = streamer_read_uhwi (ib);
877 /* Read all the attributes for FN. */
878 bp = streamer_read_bitpack (ib);
879 fn->is_thunk = bp_unpack_value (&bp, 1);
880 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
881 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
882 fn->returns_struct = bp_unpack_value (&bp, 1);
883 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
884 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
885 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
886 fn->after_inlining = bp_unpack_value (&bp, 1);
887 fn->stdarg = bp_unpack_value (&bp, 1);
888 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
889 fn->calls_alloca = bp_unpack_value (&bp, 1);
890 fn->calls_setjmp = bp_unpack_value (&bp, 1);
891 fn->has_force_vectorize_loops = bp_unpack_value (&bp, 1);
892 fn->has_simduid_loops = bp_unpack_value (&bp, 1);
893 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
894 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
896 /* Input the function start and end loci. */
897 fn->function_start_locus = stream_input_location (&bp, data_in);
898 fn->function_end_locus = stream_input_location (&bp, data_in);
902 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
904 static void
905 input_function (tree fn_decl, struct data_in *data_in,
906 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
908 struct function *fn;
909 enum LTO_tags tag;
910 gimple *stmts;
911 basic_block bb;
912 struct cgraph_node *node;
914 tag = streamer_read_record_start (ib);
915 lto_tag_check (tag, LTO_function);
917 /* Read decls for parameters and args. */
918 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
919 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
921 /* Read the tree of lexical scopes for the function. */
922 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
924 if (!streamer_read_uhwi (ib))
925 return;
927 push_struct_function (fn_decl);
928 fn = DECL_STRUCT_FUNCTION (fn_decl);
929 init_tree_ssa (fn);
930 /* We input IL in SSA form. */
931 cfun->gimple_df->in_ssa_p = true;
933 gimple_register_cfg_hooks ();
935 node = cgraph_node::get (fn_decl);
936 if (!node)
937 node = cgraph_node::create (fn_decl);
938 input_struct_function_base (fn, data_in, ib);
939 input_cfg (ib_cfg, data_in, fn, node->count_materialization_scale);
941 /* Read all the SSA names. */
942 input_ssa_names (ib, data_in, fn);
944 /* Read the exception handling regions in the function. */
945 input_eh_regions (ib, data_in, fn);
947 gcc_assert (DECL_INITIAL (fn_decl));
948 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
950 /* Read all the basic blocks. */
951 tag = streamer_read_record_start (ib);
952 while (tag)
954 input_bb (ib, tag, data_in, fn,
955 node->count_materialization_scale);
956 tag = streamer_read_record_start (ib);
959 /* Fix up the call statements that are mentioned in the callgraph
960 edges. */
961 set_gimple_stmt_max_uid (cfun, 0);
962 FOR_ALL_BB_FN (bb, cfun)
964 gimple_stmt_iterator gsi;
965 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
967 gimple stmt = gsi_stmt (gsi);
968 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
970 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
972 gimple stmt = gsi_stmt (gsi);
973 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
976 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
977 FOR_ALL_BB_FN (bb, cfun)
979 gimple_stmt_iterator bsi = gsi_start_phis (bb);
980 while (!gsi_end_p (bsi))
982 gimple stmt = gsi_stmt (bsi);
983 gsi_next (&bsi);
984 stmts[gimple_uid (stmt)] = stmt;
986 bsi = gsi_start_bb (bb);
987 while (!gsi_end_p (bsi))
989 gimple stmt = gsi_stmt (bsi);
990 /* If we're recompiling LTO objects with debug stmts but
991 we're not supposed to have debug stmts, remove them now.
992 We can't remove them earlier because this would cause uid
993 mismatches in fixups, but we can do it at this point, as
994 long as debug stmts don't require fixups. */
995 if (!MAY_HAVE_DEBUG_STMTS && !flag_wpa && is_gimple_debug (stmt))
997 gimple_stmt_iterator gsi = bsi;
998 gsi_next (&bsi);
999 gsi_remove (&gsi, true);
1001 else
1003 gsi_next (&bsi);
1004 stmts[gimple_uid (stmt)] = stmt;
1009 /* Set the gimple body to the statement sequence in the entry
1010 basic block. FIXME lto, this is fairly hacky. The existence
1011 of a gimple body is used by the cgraph routines, but we should
1012 really use the presence of the CFG. */
1014 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs);
1015 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1018 fixup_call_stmt_edges (node, stmts);
1019 execute_all_ipa_stmt_fixups (node, stmts);
1021 update_ssa (TODO_update_ssa_only_virtuals);
1022 free_dominance_info (CDI_DOMINATORS);
1023 free_dominance_info (CDI_POST_DOMINATORS);
1024 free (stmts);
1025 pop_cfun ();
1028 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1030 static void
1031 input_constructor (tree var, struct data_in *data_in,
1032 struct lto_input_block *ib)
1034 DECL_INITIAL (var) = stream_read_tree (ib, data_in);
1038 /* Read the body from DATA for function NODE and fill it in.
1039 FILE_DATA are the global decls and types. SECTION_TYPE is either
1040 LTO_section_function_body or LTO_section_static_initializer. If
1041 section type is LTO_section_function_body, FN must be the decl for
1042 that function. */
1044 static void
1045 lto_read_body_or_constructor (struct lto_file_decl_data *file_data, struct symtab_node *node,
1046 const char *data, enum lto_section_type section_type)
1048 const struct lto_function_header *header;
1049 struct data_in *data_in;
1050 int cfg_offset;
1051 int main_offset;
1052 int string_offset;
1053 tree fn_decl = node->decl;
1055 header = (const struct lto_function_header *) data;
1056 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1058 cfg_offset = sizeof (struct lto_function_header);
1059 main_offset = cfg_offset + header->cfg_size;
1060 string_offset = main_offset + header->main_size;
1062 else
1064 main_offset = sizeof (struct lto_function_header);
1065 string_offset = main_offset + header->main_size;
1068 data_in = lto_data_in_create (file_data, data + string_offset,
1069 header->string_size, vNULL);
1071 if (section_type == LTO_section_function_body)
1073 struct lto_in_decl_state *decl_state;
1074 unsigned from;
1076 gcc_checking_assert (node);
1078 /* Use the function's decl state. */
1079 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1080 gcc_assert (decl_state);
1081 file_data->current_decl_state = decl_state;
1084 /* Set up the struct function. */
1085 from = data_in->reader_cache->nodes.length ();
1086 lto_input_block ib_main (data + main_offset, header->main_size);
1087 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1089 lto_input_block ib_cfg (data + cfg_offset, header->cfg_size);
1090 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1092 else
1093 input_constructor (fn_decl, data_in, &ib_main);
1094 /* And fixup types we streamed locally. */
1096 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1097 unsigned len = cache->nodes.length ();
1098 unsigned i;
1099 for (i = len; i-- > from;)
1101 tree t = streamer_tree_cache_get_tree (cache, i);
1102 if (t == NULL_TREE)
1103 continue;
1105 if (TYPE_P (t))
1107 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
1108 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
1109 if (TYPE_MAIN_VARIANT (t) != t)
1111 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1112 TYPE_NEXT_VARIANT (t)
1113 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1114 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1120 /* Restore decl state */
1121 file_data->current_decl_state = file_data->global_decl_state;
1124 lto_data_in_delete (data_in);
1128 /* Read the body of NODE using DATA. FILE_DATA holds the global
1129 decls and types. */
1131 void
1132 lto_input_function_body (struct lto_file_decl_data *file_data,
1133 struct cgraph_node *node, const char *data)
1135 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1138 /* Read the body of NODE using DATA. FILE_DATA holds the global
1139 decls and types. */
1141 void
1142 lto_input_variable_constructor (struct lto_file_decl_data *file_data,
1143 struct varpool_node *node, const char *data)
1145 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1149 /* Read the physical representation of a tree node EXPR from
1150 input block IB using the per-file context in DATA_IN. */
1152 static void
1153 lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1155 /* Read all the bitfield values in EXPR. Note that for LTO, we
1156 only write language-independent bitfields, so no more unpacking is
1157 needed. */
1158 streamer_read_tree_bitfields (ib, data_in, expr);
1160 /* Read all the pointer fields in EXPR. */
1161 streamer_read_tree_body (ib, data_in, expr);
1163 /* Read any LTO-specific data not read by the tree streamer. */
1164 if (DECL_P (expr)
1165 && TREE_CODE (expr) != FUNCTION_DECL
1166 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1167 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
1169 /* We should never try to instantiate an MD or NORMAL builtin here. */
1170 if (TREE_CODE (expr) == FUNCTION_DECL)
1171 gcc_assert (!streamer_handle_as_builtin_p (expr));
1173 #ifdef LTO_STREAMER_DEBUG
1174 /* Remove the mapping to RESULT's original address set by
1175 streamer_alloc_tree. */
1176 lto_orig_address_remove (expr);
1177 #endif
1180 /* Read the physical representation of a tree node with tag TAG from
1181 input block IB using the per-file context in DATA_IN. */
1183 static tree
1184 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
1185 enum LTO_tags tag, hashval_t hash)
1187 /* Instantiate a new tree node. */
1188 tree result = streamer_alloc_tree (ib, data_in, tag);
1190 /* Enter RESULT in the reader cache. This will make RESULT
1191 available so that circular references in the rest of the tree
1192 structure can be resolved in subsequent calls to stream_read_tree. */
1193 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1195 lto_read_tree_1 (ib, data_in, result);
1197 /* end_marker = */ streamer_read_uchar (ib);
1199 return result;
1203 /* Populate the reader cache with trees materialized from the SCC
1204 following in the IB, DATA_IN stream. */
1206 hashval_t
1207 lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1208 unsigned *len, unsigned *entry_len)
1210 /* A blob of unnamed tree nodes, fill the cache from it and
1211 recurse. */
1212 unsigned size = streamer_read_uhwi (ib);
1213 hashval_t scc_hash = streamer_read_uhwi (ib);
1214 unsigned scc_entry_len = 1;
1216 if (size == 1)
1218 enum LTO_tags tag = streamer_read_record_start (ib);
1219 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1221 else
1223 unsigned int first = data_in->reader_cache->nodes.length ();
1224 tree result;
1226 scc_entry_len = streamer_read_uhwi (ib);
1228 /* Materialize size trees by reading their headers. */
1229 for (unsigned i = 0; i < size; ++i)
1231 enum LTO_tags tag = streamer_read_record_start (ib);
1232 if (tag == LTO_null
1233 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1234 || tag == LTO_tree_pickle_reference
1235 || tag == LTO_builtin_decl
1236 || tag == LTO_integer_cst
1237 || tag == LTO_tree_scc)
1238 gcc_unreachable ();
1240 result = streamer_alloc_tree (ib, data_in, tag);
1241 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1244 /* Read the tree bitpacks and references. */
1245 for (unsigned i = 0; i < size; ++i)
1247 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1248 first + i);
1249 lto_read_tree_1 (ib, data_in, result);
1250 /* end_marker = */ streamer_read_uchar (ib);
1254 *len = size;
1255 *entry_len = scc_entry_len;
1256 return scc_hash;
1260 /* Read a tree from input block IB using the per-file context in
1261 DATA_IN. This context is used, for example, to resolve references
1262 to previously read nodes. */
1264 tree
1265 lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1266 enum LTO_tags tag, hashval_t hash)
1268 tree result;
1270 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1272 if (tag == LTO_null)
1273 result = NULL_TREE;
1274 else if (tag >= LTO_field_decl_ref && tag <= LTO_namelist_decl_ref)
1276 /* If TAG is a reference to an indexable tree, the next value
1277 in IB is the index into the table where we expect to find
1278 that tree. */
1279 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1281 else if (tag == LTO_tree_pickle_reference)
1283 /* If TAG is a reference to a previously read tree, look it up in
1284 the reader cache. */
1285 result = streamer_get_pickled_tree (ib, data_in);
1287 else if (tag == LTO_builtin_decl)
1289 /* If we are going to read a built-in function, all we need is
1290 the code and class. */
1291 result = streamer_get_builtin_tree (ib, data_in);
1293 else if (tag == LTO_integer_cst)
1295 /* For shared integer constants in singletons we can use the
1296 existing tree integer constant merging code. */
1297 tree type = stream_read_tree (ib, data_in);
1298 unsigned HOST_WIDE_INT len = streamer_read_uhwi (ib);
1299 unsigned HOST_WIDE_INT i;
1300 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
1302 for (i = 0; i < len; i++)
1303 a[i] = streamer_read_hwi (ib);
1304 gcc_assert (TYPE_PRECISION (type) <= MAX_BITSIZE_MODE_ANY_INT);
1305 result = wide_int_to_tree (type, wide_int::from_array
1306 (a, len, TYPE_PRECISION (type)));
1307 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1309 else if (tag == LTO_tree_scc)
1310 gcc_unreachable ();
1311 else
1313 /* Otherwise, materialize a new node from IB. */
1314 result = lto_read_tree (ib, data_in, tag, hash);
1317 return result;
1320 tree
1321 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1323 enum LTO_tags tag;
1325 /* Input and skip SCCs. */
1326 while ((tag = streamer_read_record_start (ib)) == LTO_tree_scc)
1328 unsigned len, entry_len;
1329 lto_input_scc (ib, data_in, &len, &entry_len);
1331 return lto_input_tree_1 (ib, data_in, tag, 0);
1335 /* Input toplevel asms. */
1337 void
1338 lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
1340 size_t len;
1341 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1342 NULL, &len);
1343 const struct lto_simple_header_with_strings *header
1344 = (const struct lto_simple_header_with_strings *) data;
1345 int string_offset;
1346 struct data_in *data_in;
1347 tree str;
1349 if (! data)
1350 return;
1352 string_offset = sizeof (*header) + header->main_size;
1354 lto_input_block ib (data + sizeof (*header), header->main_size);
1356 data_in = lto_data_in_create (file_data, data + string_offset,
1357 header->string_size, vNULL);
1359 while ((str = streamer_read_string_cst (data_in, &ib)))
1361 asm_node *node = symtab->finalize_toplevel_asm (str);
1362 node->order = streamer_read_hwi (&ib) + order_base;
1363 if (node->order >= symtab->order)
1364 symtab->order = node->order + 1;
1367 lto_data_in_delete (data_in);
1369 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1373 /* Initialization for the LTO reader. */
1375 void
1376 lto_reader_init (void)
1378 lto_streamer_init ();
1379 file_name_hash_table
1380 = new hash_table<freeing_string_slot_hasher> (37);
1384 /* Create a new data_in object for FILE_DATA. STRINGS is the string
1385 table to use with LEN strings. RESOLUTIONS is the vector of linker
1386 resolutions (NULL if not using a linker plugin). */
1388 struct data_in *
1389 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1390 unsigned len,
1391 vec<ld_plugin_symbol_resolution_t> resolutions)
1393 struct data_in *data_in = XCNEW (struct data_in);
1394 data_in->file_data = file_data;
1395 data_in->strings = strings;
1396 data_in->strings_len = len;
1397 data_in->globals_resolution = resolutions;
1398 data_in->reader_cache = streamer_tree_cache_create (false, false, true);
1399 return data_in;
1403 /* Remove DATA_IN. */
1405 void
1406 lto_data_in_delete (struct data_in *data_in)
1408 data_in->globals_resolution.release ();
1409 streamer_tree_cache_delete (data_in->reader_cache);
1410 free (data_in);