* lto-streamer-in.c (input function): Call cgraph_create_node if
[official-gcc.git] / gcc / lto-streamer-in.c
blob4a31b05d52ec5603839da337a26c6af0875b8763
1 /* Read the GIMPLE representation from a file stream.
3 Copyright (C) 2009-2013 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 "expr.h"
30 #include "flags.h"
31 #include "params.h"
32 #include "input.h"
33 #include "hashtab.h"
34 #include "basic-block.h"
35 #include "gimple.h"
36 #include "gimple-iterator.h"
37 #include "gimple-ssa.h"
38 #include "tree-cfg.h"
39 #include "tree-ssanames.h"
40 #include "tree-into-ssa.h"
41 #include "tree-dfa.h"
42 #include "tree-ssa.h"
43 #include "tree-pass.h"
44 #include "function.h"
45 #include "ggc.h"
46 #include "diagnostic.h"
47 #include "except.h"
48 #include "debug.h"
49 #include "vec.h"
50 #include "ipa-utils.h"
51 #include "data-streamer.h"
52 #include "gimple-streamer.h"
53 #include "lto-streamer.h"
54 #include "tree-streamer.h"
55 #include "tree-pass.h"
56 #include "streamer-hooks.h"
57 #include "cfgloop.h"
60 struct freeing_string_slot_hasher : string_slot_hasher
62 static inline void remove (value_type *);
65 inline void
66 freeing_string_slot_hasher::remove (value_type *v)
68 free (v);
71 /* The table to hold the file names. */
72 static hash_table <freeing_string_slot_hasher> file_name_hash_table;
75 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
76 number of valid tag values to check. */
78 void
79 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
81 va_list ap;
82 int i;
84 va_start (ap, ntags);
85 for (i = 0; i < ntags; i++)
86 if ((unsigned) actual == va_arg (ap, unsigned))
88 va_end (ap);
89 return;
92 va_end (ap);
93 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
97 /* Read LENGTH bytes from STREAM to ADDR. */
99 void
100 lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
102 size_t i;
103 unsigned char *const buffer = (unsigned char *const) addr;
105 for (i = 0; i < length; i++)
106 buffer[i] = streamer_read_uchar (ib);
110 /* Lookup STRING in file_name_hash_table. If found, return the existing
111 string, otherwise insert STRING as the canonical version. */
113 static const char *
114 canon_file_name (const char *string)
116 string_slot **slot;
117 struct string_slot s_slot;
118 size_t len = strlen (string);
120 s_slot.s = string;
121 s_slot.len = len;
123 slot = file_name_hash_table.find_slot (&s_slot, INSERT);
124 if (*slot == NULL)
126 char *saved_string;
127 struct string_slot *new_slot;
129 saved_string = (char *) xmalloc (len + 1);
130 new_slot = XCNEW (struct string_slot);
131 memcpy (saved_string, string, len + 1);
132 new_slot->s = saved_string;
133 new_slot->len = len;
134 *slot = new_slot;
135 return saved_string;
137 else
139 struct string_slot *old_slot = *slot;
140 return old_slot->s;
145 /* Read a location bitpack from input block IB. */
147 location_t
148 lto_input_location (struct bitpack_d *bp, struct data_in *data_in)
150 static const char *current_file;
151 static int current_line;
152 static int current_col;
153 bool file_change, line_change, column_change;
154 unsigned len;
155 bool prev_file = current_file != NULL;
157 if (bp_unpack_value (bp, 1))
158 return UNKNOWN_LOCATION;
160 file_change = bp_unpack_value (bp, 1);
161 line_change = bp_unpack_value (bp, 1);
162 column_change = bp_unpack_value (bp, 1);
164 if (file_change)
165 current_file = canon_file_name
166 (string_for_index (data_in,
167 bp_unpack_var_len_unsigned (bp),
168 &len));
170 if (line_change)
171 current_line = bp_unpack_var_len_unsigned (bp);
173 if (column_change)
174 current_col = bp_unpack_var_len_unsigned (bp);
176 if (file_change)
178 if (prev_file)
179 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
181 linemap_add (line_table, LC_ENTER, false, current_file, current_line);
183 else if (line_change)
184 linemap_line_start (line_table, current_line, current_col);
186 return linemap_position_for_column (line_table, current_col);
190 /* Read a reference to a tree node from DATA_IN using input block IB.
191 TAG is the expected node that should be found in IB, if TAG belongs
192 to one of the indexable trees, expect to read a reference index to
193 be looked up in one of the symbol tables, otherwise read the pysical
194 representation of the tree using stream_read_tree. FN is the
195 function scope for the read tree. */
197 tree
198 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
199 struct function *fn, enum LTO_tags tag)
201 unsigned HOST_WIDE_INT ix_u;
202 tree result = NULL_TREE;
204 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_global_decl_ref);
206 switch (tag)
208 case LTO_type_ref:
209 ix_u = streamer_read_uhwi (ib);
210 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
211 break;
213 case LTO_ssa_name_ref:
214 ix_u = streamer_read_uhwi (ib);
215 result = (*SSANAMES (fn))[ix_u];
216 break;
218 case LTO_field_decl_ref:
219 ix_u = streamer_read_uhwi (ib);
220 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
221 break;
223 case LTO_function_decl_ref:
224 ix_u = streamer_read_uhwi (ib);
225 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
226 break;
228 case LTO_type_decl_ref:
229 ix_u = streamer_read_uhwi (ib);
230 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
231 break;
233 case LTO_namespace_decl_ref:
234 ix_u = streamer_read_uhwi (ib);
235 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
236 break;
238 case LTO_global_decl_ref:
239 case LTO_result_decl_ref:
240 case LTO_const_decl_ref:
241 case LTO_imported_decl_ref:
242 case LTO_label_decl_ref:
243 case LTO_translation_unit_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_alloc_cleared_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_alloc_cleared_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_alloc_cleared_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_FUNCTION (fn, index, bb);
590 n_basic_blocks_for_function (fn)++;
591 return bb;
595 /* Read the CFG for function FN from input block IB. */
597 static void
598 input_cfg (struct lto_input_block *ib, struct function *fn,
599 int count_materialization_scale)
601 unsigned int bb_count;
602 basic_block p_bb;
603 unsigned int i;
604 int index;
606 init_empty_tree_cfg_for_function (fn);
607 init_ssa_operands (fn);
609 profile_status_for_function (fn) = streamer_read_enum (ib, profile_status_d,
610 PROFILE_LAST);
612 bb_count = streamer_read_uhwi (ib);
614 last_basic_block_for_function (fn) = bb_count;
615 if (bb_count > basic_block_info_for_function (fn)->length ())
616 vec_safe_grow_cleared (basic_block_info_for_function (fn), bb_count);
618 if (bb_count > label_to_block_map_for_function (fn)->length ())
619 vec_safe_grow_cleared (label_to_block_map_for_function (fn), bb_count);
621 index = streamer_read_hwi (ib);
622 while (index != -1)
624 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
625 unsigned int edge_count;
627 if (bb == NULL)
628 bb = make_new_block (fn, index);
630 edge_count = streamer_read_uhwi (ib);
632 /* Connect up the CFG. */
633 for (i = 0; i < edge_count; i++)
635 unsigned int dest_index;
636 unsigned int edge_flags;
637 basic_block dest;
638 int probability;
639 gcov_type count;
640 edge e;
642 dest_index = streamer_read_uhwi (ib);
643 probability = (int) streamer_read_hwi (ib);
644 count = apply_scale ((gcov_type) streamer_read_gcov_count (ib),
645 count_materialization_scale);
646 edge_flags = streamer_read_uhwi (ib);
648 dest = BASIC_BLOCK_FOR_FUNCTION (fn, dest_index);
650 if (dest == NULL)
651 dest = make_new_block (fn, dest_index);
653 e = make_edge (bb, dest, edge_flags);
654 e->probability = probability;
655 e->count = count;
658 index = streamer_read_hwi (ib);
661 p_bb = ENTRY_BLOCK_PTR_FOR_FUNCTION (fn);
662 index = streamer_read_hwi (ib);
663 while (index != -1)
665 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
666 bb->prev_bb = p_bb;
667 p_bb->next_bb = bb;
668 p_bb = bb;
669 index = streamer_read_hwi (ib);
672 /* ??? The cfgloop interface is tied to cfun. */
673 gcc_assert (cfun == fn);
675 /* Input the loop tree. */
676 unsigned n_loops = streamer_read_uhwi (ib);
677 if (n_loops == 0)
678 return;
680 struct loops *loops = ggc_alloc_cleared_loops ();
681 init_loops_structure (fn, loops, n_loops);
682 set_loops_for_fn (fn, loops);
684 /* Input each loop and associate it with its loop header so
685 flow_loops_find can rebuild the loop tree. */
686 for (unsigned i = 1; i < n_loops; ++i)
688 int header_index = streamer_read_hwi (ib);
689 if (header_index == -1)
691 loops->larray->quick_push (NULL);
692 continue;
695 struct loop *loop = alloc_loop ();
696 loop->header = BASIC_BLOCK_FOR_FUNCTION (fn, header_index);
697 loop->header->loop_father = loop;
699 /* Read everything copy_loop_info copies. */
700 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
701 loop->any_upper_bound = streamer_read_hwi (ib);
702 if (loop->any_upper_bound)
704 loop->nb_iterations_upper_bound.low = streamer_read_uhwi (ib);
705 loop->nb_iterations_upper_bound.high = streamer_read_hwi (ib);
707 loop->any_estimate = streamer_read_hwi (ib);
708 if (loop->any_estimate)
710 loop->nb_iterations_estimate.low = streamer_read_uhwi (ib);
711 loop->nb_iterations_estimate.high = streamer_read_hwi (ib);
714 place_new_loop (fn, loop);
716 /* flow_loops_find doesn't like loops not in the tree, hook them
717 all as siblings of the tree root temporarily. */
718 flow_loop_tree_node_add (loops->tree_root, loop);
721 /* Rebuild the loop tree. */
722 flow_loops_find (loops);
726 /* Read the SSA names array for function FN from DATA_IN using input
727 block IB. */
729 static void
730 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
731 struct function *fn)
733 unsigned int i, size;
735 size = streamer_read_uhwi (ib);
736 init_ssanames (fn, size);
738 i = streamer_read_uhwi (ib);
739 while (i)
741 tree ssa_name, name;
742 bool is_default_def;
744 /* Skip over the elements that had been freed. */
745 while (SSANAMES (fn)->length () < i)
746 SSANAMES (fn)->quick_push (NULL_TREE);
748 is_default_def = (streamer_read_uchar (ib) != 0);
749 name = stream_read_tree (ib, data_in);
750 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
752 if (is_default_def)
753 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
755 i = streamer_read_uhwi (ib);
760 /* Go through all NODE edges and fixup call_stmt pointers
761 so they point to STMTS. */
763 static void
764 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts,
765 struct function *fn)
767 struct cgraph_edge *cedge;
768 struct ipa_ref *ref;
769 unsigned int i;
771 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
773 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
774 fatal_error ("Cgraph edge statement index out of range");
775 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
776 if (!cedge->call_stmt)
777 fatal_error ("Cgraph edge statement index not found");
779 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
781 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
782 fatal_error ("Cgraph edge statement index out of range");
783 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
784 if (!cedge->call_stmt)
785 fatal_error ("Cgraph edge statement index not found");
787 for (i = 0;
788 ipa_ref_list_reference_iterate (&node->ref_list, i, ref);
789 i++)
790 if (ref->lto_stmt_uid)
792 if (gimple_stmt_max_uid (fn) < ref->lto_stmt_uid)
793 fatal_error ("Reference statement index out of range");
794 ref->stmt = stmts[ref->lto_stmt_uid - 1];
795 if (!ref->stmt)
796 fatal_error ("Reference statement index not found");
801 /* Fixup call_stmt pointers in NODE and all clones. */
803 static void
804 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
806 struct cgraph_node *node;
807 struct function *fn;
809 while (orig->clone_of)
810 orig = orig->clone_of;
811 fn = DECL_STRUCT_FUNCTION (orig->decl);
813 fixup_call_stmt_edges_1 (orig, stmts, fn);
814 if (orig->clones)
815 for (node = orig->clones; node != orig;)
817 fixup_call_stmt_edges_1 (node, stmts, fn);
818 if (node->clones)
819 node = node->clones;
820 else if (node->next_sibling_clone)
821 node = node->next_sibling_clone;
822 else
824 while (node != orig && !node->next_sibling_clone)
825 node = node->clone_of;
826 if (node != orig)
827 node = node->next_sibling_clone;
833 /* Input the base body of struct function FN from DATA_IN
834 using input block IB. */
836 static void
837 input_struct_function_base (struct function *fn, struct data_in *data_in,
838 struct lto_input_block *ib)
840 struct bitpack_d bp;
841 int len;
843 /* Read the static chain and non-local goto save area. */
844 fn->static_chain_decl = stream_read_tree (ib, data_in);
845 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
847 /* Read all the local symbols. */
848 len = streamer_read_hwi (ib);
849 if (len > 0)
851 int i;
852 vec_safe_grow_cleared (fn->local_decls, len);
853 for (i = 0; i < len; i++)
855 tree t = stream_read_tree (ib, data_in);
856 (*fn->local_decls)[i] = t;
860 /* Input the current IL state of the function. */
861 fn->curr_properties = streamer_read_uhwi (ib);
863 /* Read all the attributes for FN. */
864 bp = streamer_read_bitpack (ib);
865 fn->is_thunk = bp_unpack_value (&bp, 1);
866 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
867 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
868 fn->returns_struct = bp_unpack_value (&bp, 1);
869 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
870 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
871 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
872 fn->after_inlining = bp_unpack_value (&bp, 1);
873 fn->stdarg = bp_unpack_value (&bp, 1);
874 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
875 fn->calls_alloca = bp_unpack_value (&bp, 1);
876 fn->calls_setjmp = bp_unpack_value (&bp, 1);
877 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
878 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
880 /* Input the function start and end loci. */
881 fn->function_start_locus = stream_input_location (&bp, data_in);
882 fn->function_end_locus = stream_input_location (&bp, data_in);
886 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
888 static void
889 input_function (tree fn_decl, struct data_in *data_in,
890 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
892 struct function *fn;
893 enum LTO_tags tag;
894 gimple *stmts;
895 basic_block bb;
896 struct cgraph_node *node;
898 tag = streamer_read_record_start (ib);
899 lto_tag_check (tag, LTO_function);
901 /* Read decls for parameters and args. */
902 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
903 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
905 /* Read the tree of lexical scopes for the function. */
906 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
908 if (!streamer_read_uhwi (ib))
909 return;
911 push_struct_function (fn_decl);
912 fn = DECL_STRUCT_FUNCTION (fn_decl);
913 init_tree_ssa (fn);
914 /* We input IL in SSA form. */
915 cfun->gimple_df->in_ssa_p = true;
917 gimple_register_cfg_hooks ();
919 node = cgraph_get_node (fn_decl);
920 if (!node)
921 node = cgraph_create_node (fn_decl);
922 input_struct_function_base (fn, data_in, ib);
923 input_cfg (ib_cfg, fn, node->count_materialization_scale);
925 /* Read all the SSA names. */
926 input_ssa_names (ib, data_in, fn);
928 /* Read the exception handling regions in the function. */
929 input_eh_regions (ib, data_in, fn);
931 gcc_assert (DECL_INITIAL (fn_decl));
932 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
934 /* Read all the basic blocks. */
935 tag = streamer_read_record_start (ib);
936 while (tag)
938 input_bb (ib, tag, data_in, fn,
939 node->count_materialization_scale);
940 tag = streamer_read_record_start (ib);
943 /* Fix up the call statements that are mentioned in the callgraph
944 edges. */
945 set_gimple_stmt_max_uid (cfun, 0);
946 FOR_ALL_BB (bb)
948 gimple_stmt_iterator gsi;
949 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
951 gimple stmt = gsi_stmt (gsi);
952 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
954 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
956 gimple stmt = gsi_stmt (gsi);
957 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
960 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
961 FOR_ALL_BB (bb)
963 gimple_stmt_iterator bsi = gsi_start_phis (bb);
964 while (!gsi_end_p (bsi))
966 gimple stmt = gsi_stmt (bsi);
967 gsi_next (&bsi);
968 stmts[gimple_uid (stmt)] = stmt;
970 bsi = gsi_start_bb (bb);
971 while (!gsi_end_p (bsi))
973 gimple stmt = gsi_stmt (bsi);
974 /* If we're recompiling LTO objects with debug stmts but
975 we're not supposed to have debug stmts, remove them now.
976 We can't remove them earlier because this would cause uid
977 mismatches in fixups, but we can do it at this point, as
978 long as debug stmts don't require fixups. */
979 if (!MAY_HAVE_DEBUG_STMTS && is_gimple_debug (stmt))
981 gimple_stmt_iterator gsi = bsi;
982 gsi_next (&bsi);
983 gsi_remove (&gsi, true);
985 else
987 gsi_next (&bsi);
988 stmts[gimple_uid (stmt)] = stmt;
993 /* Set the gimple body to the statement sequence in the entry
994 basic block. FIXME lto, this is fairly hacky. The existence
995 of a gimple body is used by the cgraph routines, but we should
996 really use the presence of the CFG. */
998 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
999 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1002 fixup_call_stmt_edges (node, stmts);
1003 execute_all_ipa_stmt_fixups (node, stmts);
1005 update_ssa (TODO_update_ssa_only_virtuals);
1006 free_dominance_info (CDI_DOMINATORS);
1007 free_dominance_info (CDI_POST_DOMINATORS);
1008 free (stmts);
1009 pop_cfun ();
1013 /* Read the body from DATA for function NODE and fill it in.
1014 FILE_DATA are the global decls and types. SECTION_TYPE is either
1015 LTO_section_function_body or LTO_section_static_initializer. If
1016 section type is LTO_section_function_body, FN must be the decl for
1017 that function. */
1019 static void
1020 lto_read_body (struct lto_file_decl_data *file_data, struct cgraph_node *node,
1021 const char *data, enum lto_section_type section_type)
1023 const struct lto_function_header *header;
1024 struct data_in *data_in;
1025 int cfg_offset;
1026 int main_offset;
1027 int string_offset;
1028 struct lto_input_block ib_cfg;
1029 struct lto_input_block ib_main;
1030 tree fn_decl = node->decl;
1032 header = (const struct lto_function_header *) data;
1033 cfg_offset = sizeof (struct lto_function_header);
1034 main_offset = cfg_offset + header->cfg_size;
1035 string_offset = main_offset + header->main_size;
1037 LTO_INIT_INPUT_BLOCK (ib_cfg,
1038 data + cfg_offset,
1040 header->cfg_size);
1042 LTO_INIT_INPUT_BLOCK (ib_main,
1043 data + main_offset,
1045 header->main_size);
1047 data_in = lto_data_in_create (file_data, data + string_offset,
1048 header->string_size, vNULL);
1050 /* Make sure the file was generated by the exact same compiler. */
1051 lto_check_version (header->lto_header.major_version,
1052 header->lto_header.minor_version);
1054 if (section_type == LTO_section_function_body)
1056 struct lto_in_decl_state *decl_state;
1057 unsigned from;
1059 gcc_checking_assert (node);
1061 /* Use the function's decl state. */
1062 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1063 gcc_assert (decl_state);
1064 file_data->current_decl_state = decl_state;
1067 /* Set up the struct function. */
1068 from = data_in->reader_cache->nodes.length ();
1069 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1070 /* And fixup types we streamed locally. */
1072 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1073 unsigned len = cache->nodes.length ();
1074 unsigned i;
1075 for (i = len; i-- > from;)
1077 tree t = streamer_tree_cache_get_tree (cache, i);
1078 if (t == NULL_TREE)
1079 continue;
1081 if (TYPE_P (t))
1083 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
1084 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
1085 if (TYPE_MAIN_VARIANT (t) != t)
1087 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1088 TYPE_NEXT_VARIANT (t)
1089 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1090 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1096 /* Restore decl state */
1097 file_data->current_decl_state = file_data->global_decl_state;
1100 lto_data_in_delete (data_in);
1104 /* Read the body of NODE using DATA. FILE_DATA holds the global
1105 decls and types. */
1107 void
1108 lto_input_function_body (struct lto_file_decl_data *file_data,
1109 struct cgraph_node *node, const char *data)
1111 lto_read_body (file_data, node, data, LTO_section_function_body);
1115 /* Read the physical representation of a tree node EXPR from
1116 input block IB using the per-file context in DATA_IN. */
1118 static void
1119 lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1121 /* Read all the bitfield values in EXPR. Note that for LTO, we
1122 only write language-independent bitfields, so no more unpacking is
1123 needed. */
1124 streamer_read_tree_bitfields (ib, data_in, expr);
1126 /* Read all the pointer fields in EXPR. */
1127 streamer_read_tree_body (ib, data_in, expr);
1129 /* Read any LTO-specific data not read by the tree streamer. */
1130 if (DECL_P (expr)
1131 && TREE_CODE (expr) != FUNCTION_DECL
1132 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1133 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
1135 /* We should never try to instantiate an MD or NORMAL builtin here. */
1136 if (TREE_CODE (expr) == FUNCTION_DECL)
1137 gcc_assert (!streamer_handle_as_builtin_p (expr));
1139 #ifdef LTO_STREAMER_DEBUG
1140 /* Remove the mapping to RESULT's original address set by
1141 streamer_alloc_tree. */
1142 lto_orig_address_remove (expr);
1143 #endif
1146 /* Read the physical representation of a tree node with tag TAG from
1147 input block IB using the per-file context in DATA_IN. */
1149 static tree
1150 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
1151 enum LTO_tags tag, hashval_t hash)
1153 /* Instantiate a new tree node. */
1154 tree result = streamer_alloc_tree (ib, data_in, tag);
1156 /* Enter RESULT in the reader cache. This will make RESULT
1157 available so that circular references in the rest of the tree
1158 structure can be resolved in subsequent calls to stream_read_tree. */
1159 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1161 lto_read_tree_1 (ib, data_in, result);
1163 /* end_marker = */ streamer_read_uchar (ib);
1165 return result;
1169 /* Populate the reader cache with trees materialized from the SCC
1170 following in the IB, DATA_IN stream. */
1172 hashval_t
1173 lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1174 unsigned *len, unsigned *entry_len)
1176 /* A blob of unnamed tree nodes, fill the cache from it and
1177 recurse. */
1178 unsigned size = streamer_read_uhwi (ib);
1179 hashval_t scc_hash = streamer_read_uhwi (ib);
1180 unsigned scc_entry_len = 1;
1182 if (size == 1)
1184 enum LTO_tags tag = streamer_read_record_start (ib);
1185 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1187 else
1189 unsigned int first = data_in->reader_cache->nodes.length ();
1190 tree result;
1192 scc_entry_len = streamer_read_uhwi (ib);
1194 /* Materialize size trees by reading their headers. */
1195 for (unsigned i = 0; i < size; ++i)
1197 enum LTO_tags tag = streamer_read_record_start (ib);
1198 if (tag == LTO_null
1199 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1200 || tag == LTO_tree_pickle_reference
1201 || tag == LTO_builtin_decl
1202 || tag == LTO_integer_cst
1203 || tag == LTO_tree_scc)
1204 gcc_unreachable ();
1206 result = streamer_alloc_tree (ib, data_in, tag);
1207 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1210 /* Read the tree bitpacks and references. */
1211 for (unsigned i = 0; i < size; ++i)
1213 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1214 first + i);
1215 lto_read_tree_1 (ib, data_in, result);
1216 /* end_marker = */ streamer_read_uchar (ib);
1220 *len = size;
1221 *entry_len = scc_entry_len;
1222 return scc_hash;
1226 /* Read a tree from input block IB using the per-file context in
1227 DATA_IN. This context is used, for example, to resolve references
1228 to previously read nodes. */
1230 tree
1231 lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1232 enum LTO_tags tag, hashval_t hash)
1234 tree result;
1236 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1238 if (tag == LTO_null)
1239 result = NULL_TREE;
1240 else if (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1242 /* If TAG is a reference to an indexable tree, the next value
1243 in IB is the index into the table where we expect to find
1244 that tree. */
1245 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1247 else if (tag == LTO_tree_pickle_reference)
1249 /* If TAG is a reference to a previously read tree, look it up in
1250 the reader cache. */
1251 result = streamer_get_pickled_tree (ib, data_in);
1253 else if (tag == LTO_builtin_decl)
1255 /* If we are going to read a built-in function, all we need is
1256 the code and class. */
1257 result = streamer_get_builtin_tree (ib, data_in);
1259 else if (tag == LTO_integer_cst)
1261 /* For shared integer constants in singletons we can use the existing
1262 tree integer constant merging code. */
1263 tree type = stream_read_tree (ib, data_in);
1264 unsigned HOST_WIDE_INT low = streamer_read_uhwi (ib);
1265 HOST_WIDE_INT high = streamer_read_hwi (ib);
1266 result = build_int_cst_wide (type, low, high);
1267 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1269 else if (tag == LTO_tree_scc)
1271 unsigned len, entry_len;
1273 /* Input and skip the SCC. */
1274 lto_input_scc (ib, data_in, &len, &entry_len);
1276 /* Recurse. */
1277 return lto_input_tree (ib, data_in);
1279 else
1281 /* Otherwise, materialize a new node from IB. */
1282 result = lto_read_tree (ib, data_in, tag, hash);
1285 return result;
1288 tree
1289 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1291 return lto_input_tree_1 (ib, data_in, streamer_read_record_start (ib), 0);
1295 /* Input toplevel asms. */
1297 void
1298 lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
1300 size_t len;
1301 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1302 NULL, &len);
1303 const struct lto_asm_header *header = (const struct lto_asm_header *) data;
1304 int string_offset;
1305 struct data_in *data_in;
1306 struct lto_input_block ib;
1307 tree str;
1309 if (! data)
1310 return;
1312 string_offset = sizeof (*header) + header->main_size;
1314 LTO_INIT_INPUT_BLOCK (ib,
1315 data + sizeof (*header),
1317 header->main_size);
1319 data_in = lto_data_in_create (file_data, data + string_offset,
1320 header->string_size, vNULL);
1322 /* Make sure the file was generated by the exact same compiler. */
1323 lto_check_version (header->lto_header.major_version,
1324 header->lto_header.minor_version);
1326 while ((str = streamer_read_string_cst (data_in, &ib)))
1328 struct asm_node *node = add_asm_node (str);
1329 node->order = streamer_read_hwi (&ib) + order_base;
1330 if (node->order >= symtab_order)
1331 symtab_order = node->order + 1;
1334 lto_data_in_delete (data_in);
1336 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1340 /* Initialization for the LTO reader. */
1342 void
1343 lto_reader_init (void)
1345 lto_streamer_init ();
1346 file_name_hash_table.create (37);
1350 /* Create a new data_in object for FILE_DATA. STRINGS is the string
1351 table to use with LEN strings. RESOLUTIONS is the vector of linker
1352 resolutions (NULL if not using a linker plugin). */
1354 struct data_in *
1355 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1356 unsigned len,
1357 vec<ld_plugin_symbol_resolution_t> resolutions)
1359 struct data_in *data_in = XCNEW (struct data_in);
1360 data_in->file_data = file_data;
1361 data_in->strings = strings;
1362 data_in->strings_len = len;
1363 data_in->globals_resolution = resolutions;
1364 data_in->reader_cache = streamer_tree_cache_create (false, false);
1366 return data_in;
1370 /* Remove DATA_IN. */
1372 void
1373 lto_data_in_delete (struct data_in *data_in)
1375 data_in->globals_resolution.release ();
1376 streamer_tree_cache_delete (data_in->reader_cache);
1377 free (data_in->labels);
1378 free (data_in);