* gcc-plugin.h (enum plugin_event): Add PLUGIN_ALL_IPA_PASSES_START,
[official-gcc.git] / gcc / lto-streamer-in.c
blobf7c793647bcbec59e4fe30885c1f79b3044f8bb2
1 /* Read the GIMPLE representation from a file stream.
3 Copyright 2009 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 "varray.h"
34 #include "hashtab.h"
35 #include "basic-block.h"
36 #include "tree-flow.h"
37 #include "tree-pass.h"
38 #include "cgraph.h"
39 #include "function.h"
40 #include "ggc.h"
41 #include "diagnostic.h"
42 #include "libfuncs.h"
43 #include "except.h"
44 #include "debug.h"
45 #include "vec.h"
46 #include "timevar.h"
47 #include "output.h"
48 #include "ipa-utils.h"
49 #include "lto-streamer.h"
50 #include "tree-pass.h"
52 /* Data structure used to hash file names in the source_location field. */
53 struct string_slot
55 const char *s;
56 unsigned int slot_num;
59 /* The table to hold the file names. */
60 static htab_t file_name_hash_table;
63 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
64 number of valid tag values to check. */
66 static void
67 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
69 va_list ap;
70 int i;
72 va_start (ap, ntags);
73 for (i = 0; i < ntags; i++)
74 if ((unsigned) actual == va_arg (ap, unsigned))
76 va_end (ap);
77 return;
80 va_end (ap);
81 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
85 /* Check that tag ACTUAL is in the range [TAG1, TAG2]. */
87 static void
88 lto_tag_check_range (enum LTO_tags actual, enum LTO_tags tag1,
89 enum LTO_tags tag2)
91 if (actual < tag1 || actual > tag2)
92 internal_error ("bytecode stream: tag %s is not in the expected range "
93 "[%s, %s]",
94 lto_tag_name (actual),
95 lto_tag_name (tag1),
96 lto_tag_name (tag2));
100 /* Check that tag ACTUAL == EXPECTED. */
102 static void
103 lto_tag_check (enum LTO_tags actual, enum LTO_tags expected)
105 if (actual != expected)
106 internal_error ("bytecode stream: expected tag %s instead of %s",
107 lto_tag_name (expected), lto_tag_name (actual));
111 /* Return a hash code for P. */
113 static hashval_t
114 hash_string_slot_node (const void *p)
116 const struct string_slot *ds = (const struct string_slot *) p;
117 return (hashval_t) htab_hash_string (ds->s);
121 /* Returns nonzero if P1 and P2 are equal. */
123 static int
124 eq_string_slot_node (const void *p1, const void *p2)
126 const struct string_slot *ds1 = (const struct string_slot *) p1;
127 const struct string_slot *ds2 = (const struct string_slot *) p2;
128 return strcmp (ds1->s, ds2->s) == 0;
132 /* Read a string from the string table in DATA_IN using input block
133 IB. Write the length to RLEN. */
135 static const char *
136 input_string_internal (struct data_in *data_in, struct lto_input_block *ib,
137 unsigned int *rlen)
139 struct lto_input_block str_tab;
140 unsigned int len;
141 unsigned int loc;
142 const char *result;
144 loc = lto_input_uleb128 (ib);
145 LTO_INIT_INPUT_BLOCK (str_tab, data_in->strings, loc, data_in->strings_len);
146 len = lto_input_uleb128 (&str_tab);
147 *rlen = len;
149 if (str_tab.p + len > data_in->strings_len)
150 internal_error ("bytecode stream: string too long for the string table");
152 result = (const char *)(data_in->strings + str_tab.p);
154 return result;
158 /* Read a STRING_CST from the string table in DATA_IN using input
159 block IB. */
161 static tree
162 input_string_cst (struct data_in *data_in, struct lto_input_block *ib)
164 unsigned int len;
165 const char * ptr;
166 unsigned int is_null;
168 is_null = lto_input_uleb128 (ib);
169 if (is_null)
170 return NULL;
172 ptr = input_string_internal (data_in, ib, &len);
173 return build_string (len, ptr);
177 /* Read an IDENTIFIER from the string table in DATA_IN using input
178 block IB. */
180 static tree
181 input_identifier (struct data_in *data_in, struct lto_input_block *ib)
183 unsigned int len;
184 const char *ptr;
185 unsigned int is_null;
187 is_null = lto_input_uleb128 (ib);
188 if (is_null)
189 return NULL;
191 ptr = input_string_internal (data_in, ib, &len);
192 return get_identifier_with_length (ptr, len);
195 /* Read a NULL terminated string from the string table in DATA_IN. */
197 static const char *
198 input_string (struct data_in *data_in, struct lto_input_block *ib)
200 unsigned int len;
201 const char *ptr;
202 unsigned int is_null;
204 is_null = lto_input_uleb128 (ib);
205 if (is_null)
206 return NULL;
208 ptr = input_string_internal (data_in, ib, &len);
209 if (ptr[len - 1] != '\0')
210 internal_error ("bytecode stream: found non-null terminated string");
212 return ptr;
216 /* Return the next tag in the input block IB. */
218 static enum LTO_tags
219 input_record_start (struct lto_input_block *ib)
221 enum LTO_tags tag = (enum LTO_tags) lto_input_uleb128 (ib);
222 return tag;
226 /* Lookup STRING in file_name_hash_table. If found, return the existing
227 string, otherwise insert STRING as the canonical version. */
229 static const char *
230 canon_file_name (const char *string)
232 void **slot;
233 struct string_slot s_slot;
234 s_slot.s = string;
236 slot = htab_find_slot (file_name_hash_table, &s_slot, INSERT);
237 if (*slot == NULL)
239 size_t len;
240 char *saved_string;
241 struct string_slot *new_slot;
243 len = strlen (string);
244 saved_string = (char *) xmalloc (len + 1);
245 new_slot = XCNEW (struct string_slot);
246 strcpy (saved_string, string);
247 new_slot->s = saved_string;
248 *slot = new_slot;
249 return saved_string;
251 else
253 struct string_slot *old_slot = (struct string_slot *) *slot;
254 return old_slot->s;
259 /* Clear the line info stored in DATA_IN. */
261 static void
262 clear_line_info (struct data_in *data_in)
264 if (data_in->current_file)
265 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
266 data_in->current_file = NULL;
267 data_in->current_line = 0;
268 data_in->current_col = 0;
272 /* Read a location from input block IB. */
274 static location_t
275 lto_input_location (struct lto_input_block *ib, struct data_in *data_in)
277 expanded_location xloc;
279 xloc.file = input_string (data_in, ib);
280 if (xloc.file == NULL)
281 return UNKNOWN_LOCATION;
283 xloc.file = canon_file_name (xloc.file);
284 xloc.line = lto_input_sleb128 (ib);
285 xloc.column = lto_input_sleb128 (ib);
286 xloc.sysp = lto_input_sleb128 (ib);
288 if (data_in->current_file != xloc.file)
290 if (data_in->current_file)
291 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
293 linemap_add (line_table, LC_ENTER, xloc.sysp, xloc.file, xloc.line);
295 else if (data_in->current_line != xloc.line)
296 linemap_line_start (line_table, xloc.line, xloc.column);
298 data_in->current_file = xloc.file;
299 data_in->current_line = xloc.line;
300 data_in->current_col = xloc.column;
302 return linemap_position_for_column (line_table, xloc.column);
306 /* Read a reference to a tree node from DATA_IN using input block IB.
307 TAG is the expected node that should be found in IB, if TAG belongs
308 to one of the indexable trees, expect to read a reference index to
309 be looked up in one of the symbol tables, otherwise read the pysical
310 representation of the tree using lto_input_tree. FN is the
311 function scope for the read tree. */
313 static tree
314 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
315 struct function *fn, enum LTO_tags tag)
317 unsigned HOST_WIDE_INT ix_u;
318 tree result = NULL_TREE;
320 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_global_decl_ref);
322 switch (tag)
324 case LTO_type_ref:
325 ix_u = lto_input_uleb128 (ib);
326 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
327 break;
329 case LTO_ssa_name_ref:
330 ix_u = lto_input_uleb128 (ib);
331 result = VEC_index (tree, SSANAMES (fn), ix_u);
332 break;
334 case LTO_field_decl_ref:
335 ix_u = lto_input_uleb128 (ib);
336 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
337 break;
339 case LTO_function_decl_ref:
340 ix_u = lto_input_uleb128 (ib);
341 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
342 break;
344 case LTO_type_decl_ref:
345 ix_u = lto_input_uleb128 (ib);
346 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
347 break;
349 case LTO_namespace_decl_ref:
350 ix_u = lto_input_uleb128 (ib);
351 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
352 break;
354 case LTO_global_decl_ref:
355 case LTO_result_decl_ref:
356 case LTO_const_decl_ref:
357 case LTO_imported_decl_ref:
358 case LTO_label_decl_ref:
359 ix_u = lto_input_uleb128 (ib);
360 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
361 if (tag == LTO_global_decl_ref)
362 varpool_mark_needed_node (varpool_node (result));
363 break;
365 default:
366 gcc_unreachable ();
369 gcc_assert (result);
371 return result;
375 /* Read and return a double-linked list of catch handlers from input
376 block IB, using descriptors in DATA_IN. */
378 static struct eh_catch_d *
379 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
380 eh_catch *last_p)
382 eh_catch first;
383 enum LTO_tags tag;
385 *last_p = first = NULL;
386 tag = input_record_start (ib);
387 while (tag)
389 tree list;
390 eh_catch n;
392 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
394 /* Read the catch node. */
395 n = GGC_CNEW (struct eh_catch_d);
396 n->type_list = lto_input_tree (ib, data_in);
397 n->filter_list = lto_input_tree (ib, data_in);
398 n->label = lto_input_tree (ib, data_in);
400 /* Register all the types in N->FILTER_LIST. */
401 for (list = n->filter_list; list; list = TREE_CHAIN (list))
402 add_type_for_runtime (TREE_VALUE (list));
404 /* Chain N to the end of the list. */
405 if (*last_p)
406 (*last_p)->next_catch = n;
407 n->prev_catch = *last_p;
408 *last_p = n;
410 /* Set the head of the list the first time through the loop. */
411 if (first == NULL)
412 first = n;
414 tag = input_record_start (ib);
417 return first;
421 /* Read and return EH region IX from input block IB, using descriptors
422 in DATA_IN. */
424 static eh_region
425 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
427 enum LTO_tags tag;
428 eh_region r;
430 /* Read the region header. */
431 tag = input_record_start (ib);
432 if (tag == LTO_null)
433 return NULL;
435 r = GGC_CNEW (struct eh_region_d);
436 r->index = lto_input_sleb128 (ib);
438 gcc_assert (r->index == ix);
440 /* Read all the region pointers as region numbers. We'll fix up
441 the pointers once the whole array has been read. */
442 r->outer = (eh_region) (intptr_t) lto_input_sleb128 (ib);
443 r->inner = (eh_region) (intptr_t) lto_input_sleb128 (ib);
444 r->next_peer = (eh_region) (intptr_t) lto_input_sleb128 (ib);
446 switch (tag)
448 case LTO_ert_cleanup:
449 r->type = ERT_CLEANUP;
450 break;
452 case LTO_ert_try:
454 struct eh_catch_d *last_catch;
455 r->type = ERT_TRY;
456 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
457 &last_catch);
458 r->u.eh_try.last_catch = last_catch;
459 break;
462 case LTO_ert_allowed_exceptions:
464 tree l;
466 r->type = ERT_ALLOWED_EXCEPTIONS;
467 r->u.allowed.type_list = lto_input_tree (ib, data_in);
468 r->u.allowed.label = lto_input_tree (ib, data_in);
469 r->u.allowed.filter = lto_input_uleb128 (ib);
471 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
472 add_type_for_runtime (TREE_VALUE (l));
474 break;
476 case LTO_ert_must_not_throw:
477 r->type = ERT_MUST_NOT_THROW;
478 r->u.must_not_throw.failure_decl = lto_input_tree (ib, data_in);
479 r->u.must_not_throw.failure_loc = lto_input_location (ib, data_in);
480 break;
482 default:
483 gcc_unreachable ();
486 r->landing_pads = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
488 return r;
492 /* Read and return EH landing pad IX from input block IB, using descriptors
493 in DATA_IN. */
495 static eh_landing_pad
496 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
498 enum LTO_tags tag;
499 eh_landing_pad lp;
501 /* Read the landing pad header. */
502 tag = input_record_start (ib);
503 if (tag == LTO_null)
504 return NULL;
506 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
508 lp = GGC_CNEW (struct eh_landing_pad_d);
509 lp->index = lto_input_sleb128 (ib);
510 gcc_assert (lp->index == ix);
511 lp->next_lp = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
512 lp->region = (eh_region) (intptr_t) lto_input_sleb128 (ib);
513 lp->post_landing_pad = lto_input_tree (ib, data_in);
515 return lp;
519 /* After reading the EH regions, pointers to peer and children regions
520 are region numbers. This converts all these region numbers into
521 real pointers into the rematerialized regions for FN. ROOT_REGION
522 is the region number for the root EH region in FN. */
524 static void
525 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
527 unsigned i;
528 VEC(eh_region,gc) *eh_array = fn->eh->region_array;
529 VEC(eh_landing_pad,gc) *lp_array = fn->eh->lp_array;
530 eh_region r;
531 eh_landing_pad lp;
533 gcc_assert (eh_array && lp_array);
535 gcc_assert (root_region >= 0);
536 fn->eh->region_tree = VEC_index (eh_region, eh_array, root_region);
538 #define FIXUP_EH_REGION(r) (r) = VEC_index (eh_region, eh_array, \
539 (HOST_WIDE_INT) (intptr_t) (r))
540 #define FIXUP_EH_LP(p) (p) = VEC_index (eh_landing_pad, lp_array, \
541 (HOST_WIDE_INT) (intptr_t) (p))
543 /* Convert all the index numbers stored in pointer fields into
544 pointers to the corresponding slots in the EH region array. */
545 for (i = 0; VEC_iterate (eh_region, eh_array, i, r); i++)
547 /* The array may contain NULL regions. */
548 if (r == NULL)
549 continue;
551 gcc_assert (i == (unsigned) r->index);
552 FIXUP_EH_REGION (r->outer);
553 FIXUP_EH_REGION (r->inner);
554 FIXUP_EH_REGION (r->next_peer);
555 FIXUP_EH_LP (r->landing_pads);
558 /* Convert all the index numbers stored in pointer fields into
559 pointers to the corresponding slots in the EH landing pad array. */
560 for (i = 0; VEC_iterate (eh_landing_pad, lp_array, i, lp); i++)
562 /* The array may contain NULL landing pads. */
563 if (lp == NULL)
564 continue;
566 gcc_assert (i == (unsigned) lp->index);
567 FIXUP_EH_LP (lp->next_lp);
568 FIXUP_EH_REGION (lp->region);
571 #undef FIXUP_EH_REGION
572 #undef FIXUP_EH_LP
576 /* Initialize EH support. */
578 static void
579 lto_init_eh (void)
581 /* Contrary to most other FEs, we only initialize EH support when at
582 least one of the files in the set contains exception regions in
583 it. Since this happens much later than the call to init_eh in
584 lang_dependent_init, we have to set flag_exceptions and call
585 init_eh again to initialize the EH tables. */
586 flag_exceptions = 1;
587 init_eh ();
589 /* Initialize dwarf2 tables. Since dwarf2out_do_frame() returns
590 true only when exceptions are enabled, this initialization is
591 never done during lang_dependent_init. */
592 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
593 if (dwarf2out_do_frame ())
594 dwarf2out_frame_init ();
595 #endif
599 /* Read the exception table for FN from IB using the data descriptors
600 in DATA_IN. */
602 static void
603 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
604 struct function *fn)
606 HOST_WIDE_INT i, root_region, len;
607 enum LTO_tags tag;
608 static bool eh_initialized_p = false;
610 tag = input_record_start (ib);
611 if (tag == LTO_null)
612 return;
614 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
616 /* If the file contains EH regions, then it was compiled with
617 -fexceptions. In that case, initialize the backend EH
618 machinery. */
619 if (!eh_initialized_p)
621 lto_init_eh ();
622 eh_initialized_p = true;
625 gcc_assert (fn->eh);
627 root_region = lto_input_sleb128 (ib);
628 gcc_assert (root_region == (int) root_region);
630 /* Read the EH region array. */
631 len = lto_input_sleb128 (ib);
632 gcc_assert (len == (int) len);
633 if (len > 0)
635 VEC_safe_grow (eh_region, gc, fn->eh->region_array, len);
636 for (i = 0; i < len; i++)
638 eh_region r = input_eh_region (ib, data_in, i);
639 VEC_replace (eh_region, fn->eh->region_array, i, r);
643 /* Read the landing pads. */
644 len = lto_input_sleb128 (ib);
645 gcc_assert (len == (int) len);
646 if (len > 0)
648 VEC_safe_grow (eh_landing_pad, gc, fn->eh->lp_array, len);
649 for (i = 0; i < len; i++)
651 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
652 VEC_replace (eh_landing_pad, fn->eh->lp_array, i, lp);
656 /* Read the runtime type data. */
657 len = lto_input_sleb128 (ib);
658 gcc_assert (len == (int) len);
659 if (len > 0)
661 VEC_safe_grow (tree, gc, fn->eh->ttype_data, len);
662 for (i = 0; i < len; i++)
664 tree ttype = lto_input_tree (ib, data_in);
665 VEC_replace (tree, fn->eh->ttype_data, i, ttype);
669 /* Read the table of action chains. */
670 len = lto_input_sleb128 (ib);
671 gcc_assert (len == (int) len);
672 if (len > 0)
674 if (targetm.arm_eabi_unwinder)
676 VEC_safe_grow (tree, gc, fn->eh->ehspec_data.arm_eabi, len);
677 for (i = 0; i < len; i++)
679 tree t = lto_input_tree (ib, data_in);
680 VEC_replace (tree, fn->eh->ehspec_data.arm_eabi, i, t);
683 else
685 VEC_safe_grow (uchar, gc, fn->eh->ehspec_data.other, len);
686 for (i = 0; i < len; i++)
688 uchar c = lto_input_1_unsigned (ib);
689 VEC_replace (uchar, fn->eh->ehspec_data.other, i, c);
694 /* Reconstruct the EH region tree by fixing up the peer/children
695 pointers. */
696 fixup_eh_region_pointers (fn, root_region);
698 tag = input_record_start (ib);
699 lto_tag_check_range (tag, LTO_null, LTO_null);
703 /* Make a new basic block with index INDEX in function FN. */
705 static basic_block
706 make_new_block (struct function *fn, unsigned int index)
708 basic_block bb = alloc_block ();
709 bb->index = index;
710 SET_BASIC_BLOCK_FOR_FUNCTION (fn, index, bb);
711 bb->il.gimple = GGC_CNEW (struct gimple_bb_info);
712 n_basic_blocks_for_function (fn)++;
713 bb->flags = 0;
714 set_bb_seq (bb, gimple_seq_alloc ());
715 return bb;
719 /* Read the CFG for function FN from input block IB. */
721 static void
722 input_cfg (struct lto_input_block *ib, struct function *fn)
724 unsigned int bb_count;
725 basic_block p_bb;
726 unsigned int i;
727 int index;
729 init_empty_tree_cfg_for_function (fn);
730 init_ssa_operands ();
732 profile_status_for_function (fn) =
733 (enum profile_status_d) lto_input_uleb128 (ib);
735 bb_count = lto_input_uleb128 (ib);
737 last_basic_block_for_function (fn) = bb_count;
738 if (bb_count > VEC_length (basic_block, basic_block_info_for_function (fn)))
739 VEC_safe_grow_cleared (basic_block, gc,
740 basic_block_info_for_function (fn), bb_count);
742 if (bb_count > VEC_length (basic_block, label_to_block_map_for_function (fn)))
743 VEC_safe_grow_cleared (basic_block, gc,
744 label_to_block_map_for_function (fn), bb_count);
746 index = lto_input_sleb128 (ib);
747 while (index != -1)
749 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
750 unsigned int edge_count;
752 if (bb == NULL)
753 bb = make_new_block (fn, index);
755 edge_count = lto_input_uleb128 (ib);
757 /* Connect up the CFG. */
758 for (i = 0; i < edge_count; i++)
760 unsigned int dest_index;
761 unsigned int edge_flags;
762 basic_block dest;
763 int probability;
764 gcov_type count;
765 edge e;
767 dest_index = lto_input_uleb128 (ib);
768 probability = (int) lto_input_sleb128 (ib);
769 count = (gcov_type) lto_input_sleb128 (ib);
770 edge_flags = lto_input_uleb128 (ib);
772 dest = BASIC_BLOCK_FOR_FUNCTION (fn, dest_index);
774 if (dest == NULL)
775 dest = make_new_block (fn, dest_index);
777 e = make_edge (bb, dest, edge_flags);
778 e->probability = probability;
779 e->count = count;
782 index = lto_input_sleb128 (ib);
785 p_bb = ENTRY_BLOCK_PTR_FOR_FUNCTION(fn);
786 index = lto_input_sleb128 (ib);
787 while (index != -1)
789 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
790 bb->prev_bb = p_bb;
791 p_bb->next_bb = bb;
792 p_bb = bb;
793 index = lto_input_sleb128 (ib);
798 /* Read a PHI function for basic block BB in function FN. DATA_IN is
799 the file being read. IB is the input block to use for reading. */
801 static gimple
802 input_phi (struct lto_input_block *ib, basic_block bb, struct data_in *data_in,
803 struct function *fn)
805 unsigned HOST_WIDE_INT ix;
806 tree phi_result;
807 int i, len;
808 gimple result;
810 ix = lto_input_uleb128 (ib);
811 phi_result = VEC_index (tree, SSANAMES (fn), ix);
812 len = EDGE_COUNT (bb->preds);
813 result = create_phi_node (phi_result, bb);
814 SSA_NAME_DEF_STMT (phi_result) = result;
816 /* We have to go through a lookup process here because the preds in the
817 reconstructed graph are generally in a different order than they
818 were in the original program. */
819 for (i = 0; i < len; i++)
821 tree def = lto_input_tree (ib, data_in);
822 int src_index = lto_input_uleb128 (ib);
823 location_t arg_loc = lto_input_location (ib, data_in);
824 basic_block sbb = BASIC_BLOCK_FOR_FUNCTION (fn, src_index);
826 edge e = NULL;
827 int j;
829 for (j = 0; j < len; j++)
830 if (EDGE_PRED (bb, j)->src == sbb)
832 e = EDGE_PRED (bb, j);
833 break;
836 add_phi_arg (result, def, e, arg_loc);
839 return result;
843 /* Read the SSA names array for function FN from DATA_IN using input
844 block IB. */
846 static void
847 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
848 struct function *fn)
850 unsigned int i, size;
852 size = lto_input_uleb128 (ib);
853 init_ssanames (fn, size);
855 i = lto_input_uleb128 (ib);
856 while (i)
858 tree ssa_name, name;
859 bool is_default_def;
861 /* Skip over the elements that had been freed. */
862 while (VEC_length (tree, SSANAMES (fn)) < i)
863 VEC_quick_push (tree, SSANAMES (fn), NULL_TREE);
865 is_default_def = (lto_input_1_unsigned (ib) != 0);
866 name = lto_input_tree (ib, data_in);
867 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
869 if (is_default_def)
870 set_default_def (SSA_NAME_VAR (ssa_name), ssa_name);
872 i = lto_input_uleb128 (ib);
877 /* Fixup the reference tree OP for replaced VAR_DECLs with mismatched
878 types. */
880 static void
881 maybe_fixup_handled_component (tree op)
883 tree decl_type;
884 tree wanted_type;
886 while (handled_component_p (TREE_OPERAND (op, 0)))
887 op = TREE_OPERAND (op, 0);
888 if (TREE_CODE (TREE_OPERAND (op, 0)) != VAR_DECL)
889 return;
891 decl_type = TREE_TYPE (TREE_OPERAND (op, 0));
893 switch (TREE_CODE (op))
895 case COMPONENT_REF:
896 /* The DECL_CONTEXT of the field-decl is the record type we look for. */
897 wanted_type = DECL_CONTEXT (TREE_OPERAND (op, 1));
898 break;
900 case ARRAY_REF:
901 if (TREE_CODE (decl_type) == ARRAY_TYPE
902 && (TREE_TYPE (decl_type) == TREE_TYPE (op)
903 || useless_type_conversion_p (TREE_TYPE (op),
904 TREE_TYPE (decl_type))))
905 return;
906 /* An unknown size array type should be ok. But we do not
907 lower the lower bound in all cases - ugh. */
908 wanted_type = build_array_type (TREE_TYPE (op), NULL_TREE);
909 break;
911 case ARRAY_RANGE_REF:
912 if (TREE_CODE (decl_type) == ARRAY_TYPE
913 && (TREE_TYPE (decl_type) == TREE_TYPE (TREE_TYPE (op))
914 || useless_type_conversion_p (TREE_TYPE (TREE_TYPE (op)),
915 TREE_TYPE (decl_type))))
916 return;
917 /* An unknown size array type should be ok. But we do not
918 lower the lower bound in all cases - ugh. */
919 wanted_type = build_array_type (TREE_TYPE (TREE_TYPE (op)), NULL_TREE);
920 break;
922 case BIT_FIELD_REF:
923 case VIEW_CONVERT_EXPR:
924 /* Very nice - nothing to do. */
925 return;
927 case REALPART_EXPR:
928 case IMAGPART_EXPR:
929 if (TREE_CODE (decl_type) == COMPLEX_TYPE
930 && (TREE_TYPE (decl_type) == TREE_TYPE (op)
931 || useless_type_conversion_p (TREE_TYPE (op),
932 TREE_TYPE (decl_type))))
933 return;
934 wanted_type = build_complex_type (TREE_TYPE (op));
935 break;
937 default:
938 gcc_unreachable ();
941 if (!useless_type_conversion_p (wanted_type, decl_type))
942 TREE_OPERAND (op, 0) = build1 (VIEW_CONVERT_EXPR, wanted_type,
943 TREE_OPERAND (op, 0));
946 /* Fixup reference tree operands for substituted prevailing decls
947 with mismatched types in STMT. */
949 static void
950 maybe_fixup_decls (gimple stmt)
952 /* We have to fixup replaced decls here in case there were
953 inter-TU type mismatches. Catch the most common cases
954 for now - this way we'll get testcases for the rest as
955 the type verifier will complain. */
956 if (gimple_assign_single_p (stmt))
958 tree lhs = gimple_assign_lhs (stmt);
959 tree rhs = gimple_assign_rhs1 (stmt);
961 /* First catch loads and aggregate copies by adjusting the rhs. */
962 if (TREE_CODE (rhs) == VAR_DECL)
964 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
965 gimple_assign_set_rhs1 (stmt, build1 (VIEW_CONVERT_EXPR,
966 TREE_TYPE (lhs), rhs));
968 else if (handled_component_p (rhs))
969 maybe_fixup_handled_component (rhs);
970 /* Then catch scalar stores. */
971 else if (TREE_CODE (lhs) == VAR_DECL)
973 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
974 gimple_assign_set_lhs (stmt, build1 (VIEW_CONVERT_EXPR,
975 TREE_TYPE (rhs), lhs));
977 else if (handled_component_p (lhs))
978 maybe_fixup_handled_component (lhs);
980 else if (is_gimple_call (stmt))
982 tree lhs = gimple_call_lhs (stmt);
984 if (lhs && TREE_CODE (lhs) == VAR_DECL)
986 if (!useless_type_conversion_p (TREE_TYPE (lhs),
987 gimple_call_return_type (stmt)))
988 gimple_call_set_lhs (stmt, build1 (VIEW_CONVERT_EXPR,
989 gimple_call_return_type (stmt),
990 lhs));
992 else if (lhs && handled_component_p (lhs))
993 maybe_fixup_handled_component (lhs);
995 /* Arguments, especially for varargs functions will be funny... */
999 /* Read a statement with tag TAG in function FN from block IB using
1000 descriptors in DATA_IN. */
1002 static gimple
1003 input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in,
1004 struct function *fn, enum LTO_tags tag)
1006 gimple stmt;
1007 enum gimple_code code;
1008 unsigned HOST_WIDE_INT num_ops;
1009 size_t i;
1010 struct bitpack_d *bp;
1012 code = lto_tag_to_gimple_code (tag);
1014 /* Read the tuple header. */
1015 bp = lto_input_bitpack (ib);
1016 num_ops = bp_unpack_value (bp, sizeof (unsigned) * 8);
1017 stmt = gimple_alloc (code, num_ops);
1018 stmt->gsbase.no_warning = bp_unpack_value (bp, 1);
1019 if (is_gimple_assign (stmt))
1020 stmt->gsbase.nontemporal_move = bp_unpack_value (bp, 1);
1021 stmt->gsbase.has_volatile_ops = bp_unpack_value (bp, 1);
1022 stmt->gsbase.subcode = bp_unpack_value (bp, 16);
1023 bitpack_delete (bp);
1025 /* Read location information. */
1026 gimple_set_location (stmt, lto_input_location (ib, data_in));
1028 /* Read lexical block reference. */
1029 gimple_set_block (stmt, lto_input_tree (ib, data_in));
1031 /* Read in all the operands. */
1032 switch (code)
1034 case GIMPLE_RESX:
1035 gimple_resx_set_region (stmt, lto_input_sleb128 (ib));
1036 break;
1038 case GIMPLE_EH_MUST_NOT_THROW:
1039 gimple_eh_must_not_throw_set_fndecl (stmt, lto_input_tree (ib, data_in));
1040 break;
1042 case GIMPLE_EH_DISPATCH:
1043 gimple_eh_dispatch_set_region (stmt, lto_input_sleb128 (ib));
1044 break;
1046 case GIMPLE_ASM:
1048 /* FIXME lto. Move most of this into a new gimple_asm_set_string(). */
1049 tree str;
1050 stmt->gimple_asm.ni = lto_input_uleb128 (ib);
1051 stmt->gimple_asm.no = lto_input_uleb128 (ib);
1052 stmt->gimple_asm.nc = lto_input_uleb128 (ib);
1053 str = input_string_cst (data_in, ib);
1054 stmt->gimple_asm.string = TREE_STRING_POINTER (str);
1056 /* Fallthru */
1058 case GIMPLE_ASSIGN:
1059 case GIMPLE_CALL:
1060 case GIMPLE_RETURN:
1061 case GIMPLE_SWITCH:
1062 case GIMPLE_LABEL:
1063 case GIMPLE_COND:
1064 case GIMPLE_GOTO:
1065 case GIMPLE_DEBUG:
1066 for (i = 0; i < num_ops; i++)
1068 tree op = lto_input_tree (ib, data_in);
1069 gimple_set_op (stmt, i, op);
1071 /* Fixup FIELD_DECLs. */
1072 while (op && handled_component_p (op))
1074 if (TREE_CODE (op) == COMPONENT_REF)
1076 tree field, type, tem;
1077 field = TREE_OPERAND (op, 1);
1078 type = DECL_CONTEXT (field);
1079 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
1081 if (tem == field
1082 || (TREE_TYPE (tem) == TREE_TYPE (field)
1083 && (DECL_FIELD_OFFSET (tem)
1084 == DECL_FIELD_OFFSET (field))
1085 && (DECL_FIELD_BIT_OFFSET (tem)
1086 == DECL_FIELD_BIT_OFFSET (field))
1087 && (DECL_OFFSET_ALIGN (tem)
1088 == DECL_OFFSET_ALIGN (field))))
1089 break;
1091 /* In case of type mismatches across units we can fail
1092 to unify some types and thus not find a proper
1093 field-decl here. Just do nothing in this case. */
1094 if (tem != NULL_TREE)
1095 TREE_OPERAND (op, 1) = tem;
1098 op = TREE_OPERAND (op, 0);
1101 break;
1103 case GIMPLE_NOP:
1104 case GIMPLE_PREDICT:
1105 break;
1107 default:
1108 internal_error ("bytecode stream: unknown GIMPLE statement tag %s",
1109 lto_tag_name (tag));
1112 /* Update the properties of symbols, SSA names and labels associated
1113 with STMT. */
1114 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1116 tree lhs = gimple_get_lhs (stmt);
1117 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1118 SSA_NAME_DEF_STMT (lhs) = stmt;
1120 else if (code == GIMPLE_LABEL)
1121 gcc_assert (emit_label_in_global_context_p (gimple_label_label (stmt))
1122 || DECL_CONTEXT (gimple_label_label (stmt)) == fn->decl);
1123 else if (code == GIMPLE_ASM)
1125 unsigned i;
1127 for (i = 0; i < gimple_asm_noutputs (stmt); i++)
1129 tree op = TREE_VALUE (gimple_asm_output_op (stmt, i));
1130 if (TREE_CODE (op) == SSA_NAME)
1131 SSA_NAME_DEF_STMT (op) = stmt;
1135 /* Fixup reference tree operands for substituted prevailing decls
1136 with mismatched types. */
1137 maybe_fixup_decls (stmt);
1139 /* Mark the statement modified so its operand vectors can be filled in. */
1140 gimple_set_modified (stmt, true);
1142 return stmt;
1146 /* Read a basic block with tag TAG from DATA_IN using input block IB.
1147 FN is the function being processed. */
1149 static void
1150 input_bb (struct lto_input_block *ib, enum LTO_tags tag,
1151 struct data_in *data_in, struct function *fn)
1153 unsigned int index;
1154 basic_block bb;
1155 gimple_stmt_iterator bsi;
1157 /* This routine assumes that CFUN is set to FN, as it needs to call
1158 basic GIMPLE routines that use CFUN. */
1159 gcc_assert (cfun == fn);
1161 index = lto_input_uleb128 (ib);
1162 bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
1164 bb->count = lto_input_sleb128 (ib);
1165 bb->loop_depth = lto_input_sleb128 (ib);
1166 bb->frequency = lto_input_sleb128 (ib);
1167 bb->flags = lto_input_sleb128 (ib);
1169 /* LTO_bb1 has statements. LTO_bb0 does not. */
1170 if (tag == LTO_bb0)
1171 return;
1173 bsi = gsi_start_bb (bb);
1174 tag = input_record_start (ib);
1175 while (tag)
1177 gimple stmt = input_gimple_stmt (ib, data_in, fn, tag);
1179 /* Change debug stmts to nops on-the-fly if we do not have VTA enabled.
1180 This allows us to build for example static libs with debugging
1181 enabled and do the final link without. */
1182 if (!MAY_HAVE_DEBUG_STMTS
1183 && is_gimple_debug (stmt))
1184 stmt = gimple_build_nop ();
1186 find_referenced_vars_in (stmt);
1187 gsi_insert_after (&bsi, stmt, GSI_NEW_STMT);
1189 /* After the statement, expect a 0 delimiter or the EH region
1190 that the previous statement belongs to. */
1191 tag = input_record_start (ib);
1192 lto_tag_check_set (tag, 2, LTO_eh_region, LTO_null);
1194 if (tag == LTO_eh_region)
1196 HOST_WIDE_INT region = lto_input_sleb128 (ib);
1197 gcc_assert (region == (int) region);
1198 add_stmt_to_eh_lp (stmt, region);
1201 tag = input_record_start (ib);
1204 tag = input_record_start (ib);
1205 while (tag)
1207 gimple phi = input_phi (ib, bb, data_in, fn);
1208 find_referenced_vars_in (phi);
1209 tag = input_record_start (ib);
1213 /* Go through all NODE edges and fixup call_stmt pointers
1214 so they point to STMTS. */
1216 static void
1217 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts)
1219 struct cgraph_edge *cedge;
1220 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
1221 cedge->call_stmt = stmts[cedge->lto_stmt_uid];
1224 /* Fixup call_stmt pointers in NODE and all clones. */
1226 static void
1227 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
1229 struct cgraph_node *node;
1231 while (orig->clone_of)
1232 orig = orig->clone_of;
1234 fixup_call_stmt_edges_1 (orig, stmts);
1235 if (orig->clones)
1236 for (node = orig->clones; node != orig;)
1238 fixup_call_stmt_edges_1 (node, stmts);
1239 if (node->clones)
1240 node = node->clones;
1241 else if (node->next_sibling_clone)
1242 node = node->next_sibling_clone;
1243 else
1245 while (node != orig && !node->next_sibling_clone)
1246 node = node->clone_of;
1247 if (node != orig)
1248 node = node->next_sibling_clone;
1253 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1255 static void
1256 input_function (tree fn_decl, struct data_in *data_in,
1257 struct lto_input_block *ib)
1259 struct function *fn;
1260 enum LTO_tags tag;
1261 gimple *stmts;
1262 basic_block bb;
1263 struct bitpack_d *bp;
1265 fn = DECL_STRUCT_FUNCTION (fn_decl);
1266 tag = input_record_start (ib);
1267 clear_line_info (data_in);
1269 gimple_register_cfg_hooks ();
1270 lto_tag_check (tag, LTO_function);
1272 /* Read all the attributes for FN. */
1273 bp = lto_input_bitpack (ib);
1274 fn->is_thunk = bp_unpack_value (bp, 1);
1275 fn->has_local_explicit_reg_vars = bp_unpack_value (bp, 1);
1276 fn->after_tree_profile = bp_unpack_value (bp, 1);
1277 fn->returns_pcc_struct = bp_unpack_value (bp, 1);
1278 fn->returns_struct = bp_unpack_value (bp, 1);
1279 fn->always_inline_functions_inlined = bp_unpack_value (bp, 1);
1280 fn->after_inlining = bp_unpack_value (bp, 1);
1281 fn->dont_save_pending_sizes_p = bp_unpack_value (bp, 1);
1282 fn->stdarg = bp_unpack_value (bp, 1);
1283 fn->has_nonlocal_label = bp_unpack_value (bp, 1);
1284 fn->calls_alloca = bp_unpack_value (bp, 1);
1285 fn->calls_setjmp = bp_unpack_value (bp, 1);
1286 fn->function_frequency = (enum function_frequency) bp_unpack_value (bp, 2);
1287 fn->va_list_fpr_size = bp_unpack_value (bp, 8);
1288 fn->va_list_gpr_size = bp_unpack_value (bp, 8);
1289 bitpack_delete (bp);
1291 /* Read the static chain and non-local goto save area. */
1292 fn->static_chain_decl = lto_input_tree (ib, data_in);
1293 fn->nonlocal_goto_save_area = lto_input_tree (ib, data_in);
1295 /* Read all the local symbols. */
1296 fn->local_decls = lto_input_tree (ib, data_in);
1298 /* Read all the SSA names. */
1299 input_ssa_names (ib, data_in, fn);
1301 /* Read the exception handling regions in the function. */
1302 input_eh_regions (ib, data_in, fn);
1304 /* Read the tree of lexical scopes for the function. */
1305 DECL_INITIAL (fn_decl) = lto_input_tree (ib, data_in);
1306 gcc_assert (DECL_INITIAL (fn_decl));
1307 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
1309 /* Read all function arguments. */
1310 DECL_ARGUMENTS (fn_decl) = lto_input_tree (ib, data_in);
1312 /* Read all the basic blocks. */
1313 tag = input_record_start (ib);
1314 while (tag)
1316 input_bb (ib, tag, data_in, fn);
1317 tag = input_record_start (ib);
1320 /* Fix up the call statements that are mentioned in the callgraph
1321 edges. */
1322 renumber_gimple_stmt_uids ();
1323 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
1324 FOR_ALL_BB (bb)
1326 gimple_stmt_iterator bsi;
1327 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
1329 gimple stmt = gsi_stmt (bsi);
1330 stmts[gimple_uid (stmt)] = stmt;
1334 /* Set the gimple body to the statement sequence in the entry
1335 basic block. FIXME lto, this is fairly hacky. The existence
1336 of a gimple body is used by the cgraph routines, but we should
1337 really use the presence of the CFG. */
1339 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
1340 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1343 fixup_call_stmt_edges (cgraph_node (fn_decl), stmts);
1345 update_ssa (TODO_update_ssa_only_virtuals);
1346 free_dominance_info (CDI_DOMINATORS);
1347 free_dominance_info (CDI_POST_DOMINATORS);
1348 free (stmts);
1352 /* Read initializer expressions for public statics. DATA_IN is the
1353 file being read. IB is the input block used for reading. */
1355 static void
1356 input_alias_pairs (struct lto_input_block *ib, struct data_in *data_in)
1358 tree var;
1360 clear_line_info (data_in);
1362 /* Skip over all the unreferenced globals. */
1364 var = lto_input_tree (ib, data_in);
1365 while (var);
1367 var = lto_input_tree (ib, data_in);
1368 while (var)
1370 const char *orig_name, *new_name;
1371 alias_pair *p;
1373 p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
1374 p->decl = var;
1375 p->target = lto_input_tree (ib, data_in);
1377 /* If the target is a static object, we may have registered a
1378 new name for it to avoid clashes between statics coming from
1379 different files. In that case, use the new name. */
1380 orig_name = IDENTIFIER_POINTER (p->target);
1381 new_name = lto_get_decl_name_mapping (data_in->file_data, orig_name);
1382 if (strcmp (orig_name, new_name) != 0)
1383 p->target = get_identifier (new_name);
1385 var = lto_input_tree (ib, data_in);
1390 /* Read the body from DATA for function FN_DECL and fill it in.
1391 FILE_DATA are the global decls and types. SECTION_TYPE is either
1392 LTO_section_function_body or LTO_section_static_initializer. If
1393 section type is LTO_section_function_body, FN must be the decl for
1394 that function. */
1396 static void
1397 lto_read_body (struct lto_file_decl_data *file_data, tree fn_decl,
1398 const char *data, enum lto_section_type section_type)
1400 const struct lto_function_header *header;
1401 struct data_in *data_in;
1402 int32_t cfg_offset;
1403 int32_t main_offset;
1404 int32_t string_offset;
1405 struct lto_input_block ib_cfg;
1406 struct lto_input_block ib_main;
1408 header = (const struct lto_function_header *) data;
1409 cfg_offset = sizeof (struct lto_function_header);
1410 main_offset = cfg_offset + header->cfg_size;
1411 string_offset = main_offset + header->main_size;
1413 LTO_INIT_INPUT_BLOCK (ib_cfg,
1414 data + cfg_offset,
1416 header->cfg_size);
1418 LTO_INIT_INPUT_BLOCK (ib_main,
1419 data + main_offset,
1421 header->main_size);
1423 data_in = lto_data_in_create (file_data, data + string_offset,
1424 header->string_size, NULL);
1426 /* Make sure the file was generated by the exact same compiler. */
1427 lto_check_version (header->lto_header.major_version,
1428 header->lto_header.minor_version);
1430 if (section_type == LTO_section_function_body)
1432 struct function *fn = DECL_STRUCT_FUNCTION (fn_decl);
1433 struct lto_in_decl_state *decl_state;
1435 push_cfun (fn);
1436 init_tree_ssa (fn);
1438 /* Use the function's decl state. */
1439 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1440 gcc_assert (decl_state);
1441 file_data->current_decl_state = decl_state;
1443 input_cfg (&ib_cfg, fn);
1445 /* Set up the struct function. */
1446 input_function (fn_decl, data_in, &ib_main);
1448 /* We should now be in SSA. */
1449 cfun->gimple_df->in_ssa_p = true;
1451 /* Fill in properties we know hold for the rebuilt CFG. */
1452 cfun->curr_properties = PROP_ssa
1453 | PROP_cfg
1454 | PROP_gimple_any
1455 | PROP_gimple_lcf
1456 | PROP_gimple_leh
1457 | PROP_referenced_vars;
1459 /* Restore decl state */
1460 file_data->current_decl_state = file_data->global_decl_state;
1462 /* FIXME: ipa_transforms_to_apply holds list of passes that have optimization
1463 summaries computed and needs to apply changes. At the moment WHOPR only
1464 supports inlining, so we can push it here by hand. In future we need to stream
1465 this field into ltrans compilation. This will also need to move the field
1466 from struct function into cgraph node where it belongs. */
1467 if (flag_ltrans && !cgraph_node (fn_decl)->global.inlined_to)
1468 VEC_safe_push (ipa_opt_pass, heap,
1469 cfun->ipa_transforms_to_apply,
1470 (ipa_opt_pass)&pass_ipa_inline);
1471 pop_cfun ();
1473 else
1475 input_alias_pairs (&ib_main, data_in);
1478 clear_line_info (data_in);
1479 lto_data_in_delete (data_in);
1483 /* Read the body of FN_DECL using DATA. FILE_DATA holds the global
1484 decls and types. */
1486 void
1487 lto_input_function_body (struct lto_file_decl_data *file_data,
1488 tree fn_decl, const char *data)
1490 current_function_decl = fn_decl;
1491 lto_read_body (file_data, fn_decl, data, LTO_section_function_body);
1495 /* Read in VAR_DECL using DATA. FILE_DATA holds the global decls and
1496 types. */
1498 void
1499 lto_input_constructors_and_inits (struct lto_file_decl_data *file_data,
1500 const char *data)
1502 lto_read_body (file_data, NULL, data, LTO_section_static_initializer);
1506 /* Return the resolution for the decl with index INDEX from DATA_IN. */
1508 static enum ld_plugin_symbol_resolution
1509 get_resolution (struct data_in *data_in, unsigned index)
1511 if (data_in->globals_resolution)
1513 ld_plugin_symbol_resolution_t ret;
1514 gcc_assert (index < VEC_length (ld_plugin_symbol_resolution_t,
1515 data_in->globals_resolution));
1516 ret = VEC_index (ld_plugin_symbol_resolution_t,
1517 data_in->globals_resolution,
1518 index);
1519 gcc_assert (ret != LDPR_UNKNOWN);
1520 return ret;
1522 else
1523 /* Delay resolution finding until decl merging. */
1524 return LDPR_UNKNOWN;
1528 /* Unpack all the non-pointer fields of the TS_BASE structure of
1529 expression EXPR from bitpack BP. */
1531 static void
1532 unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
1534 /* Note that the code for EXPR has already been unpacked to create EXPR in
1535 lto_materialize_tree. */
1536 if (!TYPE_P (expr))
1538 TREE_SIDE_EFFECTS (expr) = (unsigned) bp_unpack_value (bp, 1);
1539 TREE_CONSTANT (expr) = (unsigned) bp_unpack_value (bp, 1);
1540 TREE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1542 /* TREE_PUBLIC is used on types to indicate that the type
1543 has a TYPE_CACHED_VALUES vector. This is not streamed out,
1544 so we skip it here. */
1545 TREE_PUBLIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1547 TREE_ADDRESSABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1548 TREE_THIS_VOLATILE (expr) = (unsigned) bp_unpack_value (bp, 1);
1549 if (DECL_P (expr))
1550 DECL_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1551 else if (TYPE_P (expr))
1552 TYPE_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1553 TREE_ASM_WRITTEN (expr) = (unsigned) bp_unpack_value (bp, 1);
1554 TREE_NO_WARNING (expr) = (unsigned) bp_unpack_value (bp, 1);
1555 TREE_USED (expr) = (unsigned) bp_unpack_value (bp, 1);
1556 TREE_NOTHROW (expr) = (unsigned) bp_unpack_value (bp, 1);
1557 TREE_STATIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1558 TREE_PRIVATE (expr) = (unsigned) bp_unpack_value (bp, 1);
1559 TREE_PROTECTED (expr) = (unsigned) bp_unpack_value (bp, 1);
1560 TREE_DEPRECATED (expr) = (unsigned) bp_unpack_value (bp, 1);
1561 if (TYPE_P (expr))
1562 TYPE_SATURATING (expr) = (unsigned) bp_unpack_value (bp, 1);
1563 if (TREE_CODE (expr) == SSA_NAME)
1564 SSA_NAME_IS_DEFAULT_DEF (expr) = (unsigned) bp_unpack_value (bp, 1);
1568 /* Unpack all the non-pointer fields of the TS_REAL_CST structure of
1569 expression EXPR from bitpack BP. */
1571 static void
1572 unpack_ts_real_cst_value_fields (struct bitpack_d *bp, tree expr)
1574 unsigned i;
1575 REAL_VALUE_TYPE r;
1576 REAL_VALUE_TYPE *rp;
1578 r.cl = (unsigned) bp_unpack_value (bp, 2);
1579 r.decimal = (unsigned) bp_unpack_value (bp, 1);
1580 r.sign = (unsigned) bp_unpack_value (bp, 1);
1581 r.signalling = (unsigned) bp_unpack_value (bp, 1);
1582 r.canonical = (unsigned) bp_unpack_value (bp, 1);
1583 r.uexp = (unsigned) bp_unpack_value (bp, EXP_BITS);
1584 for (i = 0; i < SIGSZ; i++)
1585 r.sig[i] = (unsigned long) bp_unpack_value (bp, HOST_BITS_PER_LONG);
1587 rp = GGC_NEW (REAL_VALUE_TYPE);
1588 memcpy (rp, &r, sizeof (REAL_VALUE_TYPE));
1589 TREE_REAL_CST_PTR (expr) = rp;
1593 /* Unpack all the non-pointer fields of the TS_FIXED_CST structure of
1594 expression EXPR from bitpack BP. */
1596 static void
1597 unpack_ts_fixed_cst_value_fields (struct bitpack_d *bp, tree expr)
1599 struct fixed_value fv;
1601 fv.data.low = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1602 fv.data.high = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1603 TREE_FIXED_CST (expr) = fv;
1607 /* Unpack all the non-pointer fields of the TS_DECL_COMMON structure
1608 of expression EXPR from bitpack BP. */
1610 static void
1611 unpack_ts_decl_common_value_fields (struct bitpack_d *bp, tree expr)
1613 DECL_MODE (expr) = (enum machine_mode) bp_unpack_value (bp, 8);
1614 DECL_NONLOCAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1615 DECL_VIRTUAL_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1616 DECL_IGNORED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1617 DECL_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1618 DECL_ARTIFICIAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1619 DECL_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1620 DECL_PRESERVE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1621 DECL_DEBUG_EXPR_IS_FROM (expr) = (unsigned) bp_unpack_value (bp, 1);
1622 DECL_EXTERNAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1623 DECL_GIMPLE_REG_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1624 DECL_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1626 if (TREE_CODE (expr) == LABEL_DECL)
1628 DECL_ERROR_ISSUED (expr) = (unsigned) bp_unpack_value (bp, 1);
1629 EH_LANDING_PAD_NR (expr) = (int) bp_unpack_value (bp, HOST_BITS_PER_INT);
1631 /* Always assume an initial value of -1 for LABEL_DECL_UID to
1632 force gimple_set_bb to recreate label_to_block_map. */
1633 LABEL_DECL_UID (expr) = -1;
1636 if (TREE_CODE (expr) == FIELD_DECL)
1638 unsigned HOST_WIDE_INT off_align;
1639 DECL_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1640 DECL_NONADDRESSABLE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1641 off_align = (unsigned HOST_WIDE_INT) bp_unpack_value (bp, 8);
1642 SET_DECL_OFFSET_ALIGN (expr, off_align);
1645 if (TREE_CODE (expr) == RESULT_DECL
1646 || TREE_CODE (expr) == PARM_DECL
1647 || TREE_CODE (expr) == VAR_DECL)
1649 DECL_BY_REFERENCE (expr) = (unsigned) bp_unpack_value (bp, 1);
1650 if (TREE_CODE (expr) == VAR_DECL
1651 || TREE_CODE (expr) == PARM_DECL)
1652 DECL_HAS_VALUE_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1653 DECL_RESTRICTED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1658 /* Unpack all the non-pointer fields of the TS_DECL_WRTL structure
1659 of expression EXPR from bitpack BP. */
1661 static void
1662 unpack_ts_decl_wrtl_value_fields (struct bitpack_d *bp, tree expr)
1664 DECL_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1668 /* Unpack all the non-pointer fields of the TS_DECL_WITH_VIS structure
1669 of expression EXPR from bitpack BP. */
1671 static void
1672 unpack_ts_decl_with_vis_value_fields (struct bitpack_d *bp, tree expr)
1674 DECL_DEFER_OUTPUT (expr) = (unsigned) bp_unpack_value (bp, 1);
1675 DECL_COMMON (expr) = (unsigned) bp_unpack_value (bp, 1);
1676 DECL_DLLIMPORT_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1677 DECL_WEAK (expr) = (unsigned) bp_unpack_value (bp, 1);
1678 DECL_SEEN_IN_BIND_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1679 DECL_COMDAT (expr) = (unsigned) bp_unpack_value (bp, 1);
1680 DECL_VISIBILITY (expr) = (enum symbol_visibility) bp_unpack_value (bp, 2);
1681 DECL_VISIBILITY_SPECIFIED (expr) = (unsigned) bp_unpack_value (bp, 1);
1683 if (TREE_CODE (expr) == VAR_DECL)
1685 DECL_HARD_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1686 DECL_IN_TEXT_SECTION (expr) = (unsigned) bp_unpack_value (bp, 1);
1687 DECL_TLS_MODEL (expr) = (enum tls_model) bp_unpack_value (bp, 3);
1690 if (VAR_OR_FUNCTION_DECL_P (expr))
1692 priority_type p;
1693 p = (priority_type) bp_unpack_value (bp, HOST_BITS_PER_SHORT);
1694 SET_DECL_INIT_PRIORITY (expr, p);
1699 /* Unpack all the non-pointer fields of the TS_FUNCTION_DECL structure
1700 of expression EXPR from bitpack BP. */
1702 static void
1703 unpack_ts_function_decl_value_fields (struct bitpack_d *bp, tree expr)
1705 DECL_FUNCTION_CODE (expr) = (enum built_in_function) bp_unpack_value (bp, 11);
1706 DECL_BUILT_IN_CLASS (expr) = (enum built_in_class) bp_unpack_value (bp, 2);
1707 DECL_STATIC_CONSTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1708 DECL_STATIC_DESTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1709 DECL_UNINLINABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1710 DECL_POSSIBLY_INLINED (expr) = (unsigned) bp_unpack_value (bp, 1);
1711 DECL_IS_NOVOPS (expr) = (unsigned) bp_unpack_value (bp, 1);
1712 DECL_IS_RETURNS_TWICE (expr) = (unsigned) bp_unpack_value (bp, 1);
1713 DECL_IS_MALLOC (expr) = (unsigned) bp_unpack_value (bp, 1);
1714 DECL_IS_OPERATOR_NEW (expr) = (unsigned) bp_unpack_value (bp, 1);
1715 DECL_DECLARED_INLINE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1716 DECL_STATIC_CHAIN (expr) = (unsigned) bp_unpack_value (bp, 1);
1717 DECL_NO_INLINE_WARNING_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1718 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (expr)
1719 = (unsigned) bp_unpack_value (bp, 1);
1720 DECL_NO_LIMIT_STACK (expr) = (unsigned) bp_unpack_value (bp, 1);
1721 DECL_DISREGARD_INLINE_LIMITS (expr) = (unsigned) bp_unpack_value (bp, 1);
1722 DECL_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1723 DECL_LOOPING_CONST_OR_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1727 /* Unpack all the non-pointer fields of the TS_TYPE structure
1728 of expression EXPR from bitpack BP. */
1730 static void
1731 unpack_ts_type_value_fields (struct bitpack_d *bp, tree expr)
1733 enum machine_mode mode;
1735 TYPE_PRECISION (expr) = (unsigned) bp_unpack_value (bp, 9);
1736 mode = (enum machine_mode) bp_unpack_value (bp, 7);
1737 SET_TYPE_MODE (expr, mode);
1738 TYPE_STRING_FLAG (expr) = (unsigned) bp_unpack_value (bp, 1);
1739 TYPE_NO_FORCE_BLK (expr) = (unsigned) bp_unpack_value (bp, 1);
1740 TYPE_NEEDS_CONSTRUCTING(expr) = (unsigned) bp_unpack_value (bp, 1);
1741 if (TREE_CODE (expr) == UNION_TYPE)
1742 TYPE_TRANSPARENT_UNION (expr) = (unsigned) bp_unpack_value (bp, 1);
1743 TYPE_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1744 TYPE_RESTRICT (expr) = (unsigned) bp_unpack_value (bp, 1);
1745 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)
1746 = (unsigned) bp_unpack_value (bp, 2);
1747 TYPE_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1748 TYPE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1749 TYPE_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1750 TYPE_ALIAS_SET (expr) = bp_unpack_value (bp, HOST_BITS_PER_INT);
1754 /* Unpack all the non-pointer fields of the TS_BLOCK structure
1755 of expression EXPR from bitpack BP. */
1757 static void
1758 unpack_ts_block_value_fields (struct bitpack_d *bp, tree expr)
1760 BLOCK_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1761 BLOCK_NUMBER (expr) = (unsigned) bp_unpack_value (bp, 31);
1765 /* Unpack all the non-pointer fields in EXPR into a bit pack. */
1767 static void
1768 unpack_value_fields (struct bitpack_d *bp, tree expr)
1770 enum tree_code code;
1772 code = TREE_CODE (expr);
1774 /* Note that all these functions are highly sensitive to changes in
1775 the types and sizes of each of the fields being packed. */
1776 unpack_ts_base_value_fields (bp, expr);
1778 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1779 unpack_ts_real_cst_value_fields (bp, expr);
1781 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1782 unpack_ts_fixed_cst_value_fields (bp, expr);
1784 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1785 unpack_ts_decl_common_value_fields (bp, expr);
1787 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1788 unpack_ts_decl_wrtl_value_fields (bp, expr);
1790 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1791 unpack_ts_decl_with_vis_value_fields (bp, expr);
1793 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1794 unpack_ts_function_decl_value_fields (bp, expr);
1796 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
1797 unpack_ts_type_value_fields (bp, expr);
1799 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1800 unpack_ts_block_value_fields (bp, expr);
1802 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
1804 /* We only stream the version number of SSA names. */
1805 gcc_unreachable ();
1808 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
1810 /* This is only used by GENERIC. */
1811 gcc_unreachable ();
1814 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
1816 /* This is only used by High GIMPLE. */
1817 gcc_unreachable ();
1822 /* Read a bitpack from input block IB. */
1824 struct bitpack_d *
1825 lto_input_bitpack (struct lto_input_block *ib)
1827 unsigned i, num_words;
1828 struct bitpack_d *bp;
1830 bp = bitpack_create ();
1832 /* If we are about to read more than a handful of words, something
1833 is wrong. This check is overly strict, but it acts as an early
1834 warning. No streamed object has hundreds of bits in its fields. */
1835 num_words = lto_input_uleb128 (ib);
1836 gcc_assert (num_words < 20);
1838 for (i = 0; i < num_words; i++)
1840 bitpack_word_t w = lto_input_uleb128 (ib);
1841 VEC_safe_push (bitpack_word_t, heap, bp->values, w);
1844 return bp;
1848 /* Materialize a new tree from input block IB using descriptors in
1849 DATA_IN. The code for the new tree should match TAG. Store in
1850 *IX_P the index into the reader cache where the new tree is stored. */
1852 static tree
1853 lto_materialize_tree (struct lto_input_block *ib, struct data_in *data_in,
1854 enum LTO_tags tag, int *ix_p)
1856 struct bitpack_d *bp;
1857 enum tree_code code;
1858 tree result;
1859 #ifdef LTO_STREAMER_DEBUG
1860 HOST_WIDEST_INT orig_address_in_writer;
1861 #endif
1862 HOST_WIDE_INT ix;
1864 result = NULL_TREE;
1866 /* Read the header of the node we are about to create. */
1867 ix = lto_input_sleb128 (ib);
1868 gcc_assert ((int) ix == ix);
1869 *ix_p = (int) ix;
1871 #ifdef LTO_STREAMER_DEBUG
1872 /* Read the word representing the memory address for the tree
1873 as it was written by the writer. This is useful when
1874 debugging differences between the writer and reader. */
1875 orig_address_in_writer = lto_input_sleb128 (ib);
1876 gcc_assert ((intptr_t) orig_address_in_writer == orig_address_in_writer);
1877 #endif
1879 code = lto_tag_to_tree_code (tag);
1881 /* We should never see an SSA_NAME tree. Only the version numbers of
1882 SSA names are ever written out. See input_ssa_names. */
1883 gcc_assert (code != SSA_NAME);
1885 /* Instantiate a new tree using the header data. */
1886 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1887 result = input_string_cst (data_in, ib);
1888 else if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1889 result = input_identifier (data_in, ib);
1890 else if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1892 HOST_WIDE_INT len = lto_input_sleb128 (ib);
1893 result = make_tree_vec (len);
1895 else if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1897 unsigned HOST_WIDE_INT len = lto_input_uleb128 (ib);
1898 result = make_tree_binfo (len);
1900 else
1902 /* All other nodes can be materialized with a raw make_node
1903 call. */
1904 result = make_node (code);
1907 #ifdef LTO_STREAMER_DEBUG
1908 /* Store the original address of the tree as seen by the writer
1909 in RESULT's aux field. This is useful when debugging streaming
1910 problems. This way, a debugging session can be started on
1911 both writer and reader with a breakpoint using this address
1912 value in both. */
1913 lto_orig_address_map (result, (intptr_t) orig_address_in_writer);
1914 #endif
1916 /* Read the bitpack of non-pointer values from IB. */
1917 bp = lto_input_bitpack (ib);
1919 /* The first word in BP contains the code of the tree that we
1920 are about to read. */
1921 code = (enum tree_code) bp_unpack_value (bp, 16);
1922 lto_tag_check (lto_tree_code_to_tag (code), tag);
1924 /* Unpack all the value fields from BP. */
1925 unpack_value_fields (bp, result);
1926 bitpack_delete (bp);
1928 /* Enter RESULT in the reader cache. This will make RESULT
1929 available so that circular references in the rest of the tree
1930 structure can be resolved in subsequent calls to lto_input_tree. */
1931 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
1933 return result;
1937 /* Read a chain of tree nodes from input block IB. DATA_IN contains
1938 tables and descriptors for the file being read. */
1940 static tree
1941 lto_input_chain (struct lto_input_block *ib, struct data_in *data_in)
1943 int i, count;
1944 tree first, prev, curr;
1946 first = prev = NULL_TREE;
1947 count = lto_input_sleb128 (ib);
1948 for (i = 0; i < count; i++)
1950 curr = lto_input_tree (ib, data_in);
1951 if (prev)
1952 TREE_CHAIN (prev) = curr;
1953 else
1954 first = curr;
1956 TREE_CHAIN (curr) = NULL_TREE;
1957 prev = curr;
1960 return first;
1964 /* Read all pointer fields in the TS_COMMON structure of EXPR from input
1965 block IB. DATA_IN contains tables and descriptors for the
1966 file being read. */
1969 static void
1970 lto_input_ts_common_tree_pointers (struct lto_input_block *ib,
1971 struct data_in *data_in, tree expr)
1973 TREE_TYPE (expr) = lto_input_tree (ib, data_in);
1977 /* Read all pointer fields in the TS_VECTOR structure of EXPR from input
1978 block IB. DATA_IN contains tables and descriptors for the
1979 file being read. */
1981 static void
1982 lto_input_ts_vector_tree_pointers (struct lto_input_block *ib,
1983 struct data_in *data_in, tree expr)
1985 TREE_VECTOR_CST_ELTS (expr) = lto_input_chain (ib, data_in);
1989 /* Read all pointer fields in the TS_COMPLEX structure of EXPR from input
1990 block IB. DATA_IN contains tables and descriptors for the
1991 file being read. */
1993 static void
1994 lto_input_ts_complex_tree_pointers (struct lto_input_block *ib,
1995 struct data_in *data_in, tree expr)
1997 TREE_REALPART (expr) = lto_input_tree (ib, data_in);
1998 TREE_IMAGPART (expr) = lto_input_tree (ib, data_in);
2002 /* Read all pointer fields in the TS_DECL_MINIMAL structure of EXPR
2003 from input block IB. DATA_IN contains tables and descriptors for the
2004 file being read. */
2006 static void
2007 lto_input_ts_decl_minimal_tree_pointers (struct lto_input_block *ib,
2008 struct data_in *data_in, tree expr)
2010 DECL_NAME (expr) = lto_input_tree (ib, data_in);
2011 DECL_CONTEXT (expr) = lto_input_tree (ib, data_in);
2012 DECL_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2016 /* Read all pointer fields in the TS_DECL_COMMON structure of EXPR from
2017 input block IB. DATA_IN contains tables and descriptors for the
2018 file being read. */
2020 static void
2021 lto_input_ts_decl_common_tree_pointers (struct lto_input_block *ib,
2022 struct data_in *data_in, tree expr)
2024 DECL_SIZE (expr) = lto_input_tree (ib, data_in);
2025 DECL_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2027 if (TREE_CODE (expr) != FUNCTION_DECL)
2028 DECL_INITIAL (expr) = lto_input_tree (ib, data_in);
2030 DECL_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2031 DECL_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2033 if (TREE_CODE (expr) == PARM_DECL)
2034 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2038 /* Read all pointer fields in the TS_DECL_NON_COMMON structure of
2039 EXPR from input block IB. DATA_IN contains tables and descriptors for the
2040 file being read. */
2042 static void
2043 lto_input_ts_decl_non_common_tree_pointers (struct lto_input_block *ib,
2044 struct data_in *data_in, tree expr)
2046 if (TREE_CODE (expr) == FUNCTION_DECL)
2048 DECL_ARGUMENTS (expr) = lto_input_tree (ib, data_in);
2049 DECL_RESULT (expr) = lto_input_tree (ib, data_in);
2051 DECL_VINDEX (expr) = lto_input_tree (ib, data_in);
2055 /* Read all pointer fields in the TS_DECL_WITH_VIS structure of EXPR
2056 from input block IB. DATA_IN contains tables and descriptors for the
2057 file being read. */
2059 static void
2060 lto_input_ts_decl_with_vis_tree_pointers (struct lto_input_block *ib,
2061 struct data_in *data_in, tree expr)
2063 tree id;
2065 id = lto_input_tree (ib, data_in);
2066 if (id)
2068 gcc_assert (TREE_CODE (id) == IDENTIFIER_NODE);
2069 SET_DECL_ASSEMBLER_NAME (expr, id);
2072 DECL_SECTION_NAME (expr) = lto_input_tree (ib, data_in);
2073 DECL_COMDAT_GROUP (expr) = lto_input_tree (ib, data_in);
2077 /* Read all pointer fields in the TS_FIELD_DECL structure of EXPR from
2078 input block IB. DATA_IN contains tables and descriptors for the
2079 file being read. */
2081 static void
2082 lto_input_ts_field_decl_tree_pointers (struct lto_input_block *ib,
2083 struct data_in *data_in, tree expr)
2085 DECL_FIELD_OFFSET (expr) = lto_input_tree (ib, data_in);
2086 DECL_BIT_FIELD_TYPE (expr) = lto_input_tree (ib, data_in);
2087 DECL_QUALIFIER (expr) = lto_input_tree (ib, data_in);
2088 DECL_FIELD_BIT_OFFSET (expr) = lto_input_tree (ib, data_in);
2089 DECL_FCONTEXT (expr) = lto_input_tree (ib, data_in);
2090 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2094 /* Read all pointer fields in the TS_FUNCTION_DECL structure of EXPR
2095 from input block IB. DATA_IN contains tables and descriptors for the
2096 file being read. */
2098 static void
2099 lto_input_ts_function_decl_tree_pointers (struct lto_input_block *ib,
2100 struct data_in *data_in, tree expr)
2102 /* DECL_STRUCT_FUNCTION is handled by lto_input_function. FIXME lto,
2103 maybe it should be handled here? */
2104 DECL_FUNCTION_PERSONALITY (expr) = lto_input_tree (ib, data_in);
2105 DECL_FUNCTION_SPECIFIC_TARGET (expr) = lto_input_tree (ib, data_in);
2106 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr) = lto_input_tree (ib, data_in);
2110 /* Read all pointer fields in the TS_TYPE structure of EXPR from input
2111 block IB. DATA_IN contains tables and descriptors for the
2112 file being read. */
2114 static void
2115 lto_input_ts_type_tree_pointers (struct lto_input_block *ib,
2116 struct data_in *data_in, tree expr)
2118 if (TREE_CODE (expr) == ENUMERAL_TYPE)
2119 TYPE_VALUES (expr) = lto_input_tree (ib, data_in);
2120 else if (TREE_CODE (expr) == ARRAY_TYPE)
2121 TYPE_DOMAIN (expr) = lto_input_tree (ib, data_in);
2122 else if (TREE_CODE (expr) == RECORD_TYPE || TREE_CODE (expr) == UNION_TYPE)
2123 TYPE_FIELDS (expr) = lto_input_tree (ib, data_in);
2124 else if (TREE_CODE (expr) == FUNCTION_TYPE || TREE_CODE (expr) == METHOD_TYPE)
2125 TYPE_ARG_TYPES (expr) = lto_input_tree (ib, data_in);
2126 else if (TREE_CODE (expr) == VECTOR_TYPE)
2127 TYPE_DEBUG_REPRESENTATION_TYPE (expr) = lto_input_tree (ib, data_in);
2129 TYPE_SIZE (expr) = lto_input_tree (ib, data_in);
2130 TYPE_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2131 TYPE_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2132 TYPE_NAME (expr) = lto_input_tree (ib, data_in);
2133 /* Do not stream TYPE_POINTER_TO or TYPE_REFERENCE_TO nor
2134 TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. */
2135 if (!POINTER_TYPE_P (expr))
2136 TYPE_MINVAL (expr) = lto_input_tree (ib, data_in);
2137 TYPE_MAXVAL (expr) = lto_input_tree (ib, data_in);
2138 TYPE_MAIN_VARIANT (expr) = lto_input_tree (ib, data_in);
2139 /* Do not stream TYPE_NEXT_VARIANT, we reconstruct the variant lists
2140 during fixup. */
2141 if (RECORD_OR_UNION_TYPE_P (expr))
2142 TYPE_BINFO (expr) = lto_input_tree (ib, data_in);
2143 TYPE_CONTEXT (expr) = lto_input_tree (ib, data_in);
2144 TYPE_CANONICAL (expr) = lto_input_tree (ib, data_in);
2148 /* Read all pointer fields in the TS_LIST structure of EXPR from input
2149 block IB. DATA_IN contains tables and descriptors for the
2150 file being read. */
2152 static void
2153 lto_input_ts_list_tree_pointers (struct lto_input_block *ib,
2154 struct data_in *data_in, tree expr)
2156 TREE_PURPOSE (expr) = lto_input_tree (ib, data_in);
2157 TREE_VALUE (expr) = lto_input_tree (ib, data_in);
2158 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2162 /* Read all pointer fields in the TS_VEC structure of EXPR from input
2163 block IB. DATA_IN contains tables and descriptors for the
2164 file being read. */
2166 static void
2167 lto_input_ts_vec_tree_pointers (struct lto_input_block *ib,
2168 struct data_in *data_in, tree expr)
2170 int i;
2172 /* Note that TREE_VEC_LENGTH was read by lto_materialize_tree to
2173 instantiate EXPR. */
2174 for (i = 0; i < TREE_VEC_LENGTH (expr); i++)
2175 TREE_VEC_ELT (expr, i) = lto_input_tree (ib, data_in);
2179 /* Read all pointer fields in the TS_EXP structure of EXPR from input
2180 block IB. DATA_IN contains tables and descriptors for the
2181 file being read. */
2184 static void
2185 lto_input_ts_exp_tree_pointers (struct lto_input_block *ib,
2186 struct data_in *data_in, tree expr)
2188 int i, length;
2189 location_t loc;
2191 length = lto_input_sleb128 (ib);
2192 gcc_assert (length == TREE_OPERAND_LENGTH (expr));
2194 for (i = 0; i < length; i++)
2195 TREE_OPERAND (expr, i) = lto_input_tree (ib, data_in);
2197 loc = lto_input_location (ib, data_in);
2198 SET_EXPR_LOCATION (expr, loc);
2199 TREE_BLOCK (expr) = lto_input_tree (ib, data_in);
2203 /* Read all pointer fields in the TS_BLOCK structure of EXPR from input
2204 block IB. DATA_IN contains tables and descriptors for the
2205 file being read. */
2207 static void
2208 lto_input_ts_block_tree_pointers (struct lto_input_block *ib,
2209 struct data_in *data_in, tree expr)
2211 unsigned i, len;
2213 BLOCK_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2214 BLOCK_VARS (expr) = lto_input_chain (ib, data_in);
2216 len = lto_input_uleb128 (ib);
2217 for (i = 0; i < len; i++)
2219 tree t = lto_input_tree (ib, data_in);
2220 VEC_safe_push (tree, gc, BLOCK_NONLOCALIZED_VARS (expr), t);
2223 BLOCK_SUPERCONTEXT (expr) = lto_input_tree (ib, data_in);
2224 BLOCK_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2225 BLOCK_FRAGMENT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2226 BLOCK_FRAGMENT_CHAIN (expr) = lto_input_tree (ib, data_in);
2227 BLOCK_SUBBLOCKS (expr) = lto_input_chain (ib, data_in);
2231 /* Read all pointer fields in the TS_BINFO structure of EXPR from input
2232 block IB. DATA_IN contains tables and descriptors for the
2233 file being read. */
2235 static void
2236 lto_input_ts_binfo_tree_pointers (struct lto_input_block *ib,
2237 struct data_in *data_in, tree expr)
2239 unsigned i, len;
2240 tree t;
2242 /* Note that the number of slots in EXPR was read in
2243 lto_materialize_tree when instantiating EXPR. However, the
2244 vector is empty so we cannot rely on VEC_length to know how many
2245 elements to read. So, this list is emitted as a 0-terminated
2246 list on the writer side. */
2249 t = lto_input_tree (ib, data_in);
2250 if (t)
2251 VEC_quick_push (tree, BINFO_BASE_BINFOS (expr), t);
2253 while (t);
2255 BINFO_OFFSET (expr) = lto_input_tree (ib, data_in);
2256 BINFO_VTABLE (expr) = lto_input_tree (ib, data_in);
2257 BINFO_VIRTUALS (expr) = lto_input_tree (ib, data_in);
2258 BINFO_VPTR_FIELD (expr) = lto_input_tree (ib, data_in);
2260 len = lto_input_uleb128 (ib);
2261 for (i = 0; i < len; i++)
2263 tree a = lto_input_tree (ib, data_in);
2264 VEC_safe_push (tree, gc, BINFO_BASE_ACCESSES (expr), a);
2267 BINFO_INHERITANCE_CHAIN (expr) = lto_input_tree (ib, data_in);
2268 BINFO_SUBVTT_INDEX (expr) = lto_input_tree (ib, data_in);
2269 BINFO_VPTR_INDEX (expr) = lto_input_tree (ib, data_in);
2273 /* Read all pointer fields in the TS_CONSTRUCTOR structure of EXPR from
2274 input block IB. DATA_IN contains tables and descriptors for the
2275 file being read. */
2277 static void
2278 lto_input_ts_constructor_tree_pointers (struct lto_input_block *ib,
2279 struct data_in *data_in, tree expr)
2281 unsigned i, len;
2283 len = lto_input_uleb128 (ib);
2284 for (i = 0; i < len; i++)
2286 tree index, value;
2288 index = lto_input_tree (ib, data_in);
2289 value = lto_input_tree (ib, data_in);
2290 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (expr), index, value);
2295 /* Helper for lto_input_tree. Read all pointer fields in EXPR from
2296 input block IB. DATA_IN contains tables and descriptors for the
2297 file being read. */
2299 static void
2300 lto_input_tree_pointers (struct lto_input_block *ib, struct data_in *data_in,
2301 tree expr)
2303 enum tree_code code;
2305 code = TREE_CODE (expr);
2307 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2308 lto_input_ts_common_tree_pointers (ib, data_in, expr);
2310 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
2311 lto_input_ts_vector_tree_pointers (ib, data_in, expr);
2313 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
2314 lto_input_ts_complex_tree_pointers (ib, data_in, expr);
2316 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
2317 lto_input_ts_decl_minimal_tree_pointers (ib, data_in, expr);
2319 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2320 lto_input_ts_decl_common_tree_pointers (ib, data_in, expr);
2322 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2323 lto_input_ts_decl_non_common_tree_pointers (ib, data_in, expr);
2325 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2326 lto_input_ts_decl_with_vis_tree_pointers (ib, data_in, expr);
2328 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2329 lto_input_ts_field_decl_tree_pointers (ib, data_in, expr);
2331 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2332 lto_input_ts_function_decl_tree_pointers (ib, data_in, expr);
2334 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
2335 lto_input_ts_type_tree_pointers (ib, data_in, expr);
2337 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
2338 lto_input_ts_list_tree_pointers (ib, data_in, expr);
2340 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
2341 lto_input_ts_vec_tree_pointers (ib, data_in, expr);
2343 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
2344 lto_input_ts_exp_tree_pointers (ib, data_in, expr);
2346 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
2348 /* We only stream the version number of SSA names. */
2349 gcc_unreachable ();
2352 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
2353 lto_input_ts_block_tree_pointers (ib, data_in, expr);
2355 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
2356 lto_input_ts_binfo_tree_pointers (ib, data_in, expr);
2358 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
2360 /* This should only appear in GENERIC. */
2361 gcc_unreachable ();
2364 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
2365 lto_input_ts_constructor_tree_pointers (ib, data_in, expr);
2367 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
2369 /* This should only appear in High GIMPLE. */
2370 gcc_unreachable ();
2373 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
2375 sorry ("optimization options not supported yet");
2378 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
2380 sorry ("target optimization options not supported yet");
2385 /* Register DECL with the global symbol table and change its
2386 name if necessary to avoid name clashes for static globals across
2387 different files. */
2389 static void
2390 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl)
2392 /* Register symbols with file or global scope to mark what input
2393 file has their definition. */
2394 if (decl_function_context (decl) == NULL_TREE)
2396 /* Variable has file scope, not local. Need to ensure static variables
2397 between different files don't clash unexpectedly. */
2398 if (!TREE_PUBLIC (decl))
2400 /* ??? We normally pre-mangle names before we serialize them
2401 out. Here, in lto1, we do not know the language, and
2402 thus cannot do the mangling again. Instead, we just
2403 append a suffix to the mangled name. The resulting name,
2404 however, is not a properly-formed mangled name, and will
2405 confuse any attempt to unmangle it. */
2406 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2407 char *label;
2409 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2410 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2411 rest_of_decl_compilation (decl, 1, 0);
2415 /* If this variable has already been declared, queue the
2416 declaration for merging. */
2417 if (TREE_PUBLIC (decl))
2419 int ix;
2420 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2421 gcc_unreachable ();
2422 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2423 data_in->file_data);
2429 /* Register DECL with the global symbol table and change its
2430 name if necessary to avoid name clashes for static globals across
2431 different files. DATA_IN contains descriptors and tables for the
2432 file being read. */
2434 static void
2435 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl)
2437 /* Need to ensure static entities between different files
2438 don't clash unexpectedly. */
2439 if (!TREE_PUBLIC (decl))
2441 /* We must not use the DECL_ASSEMBLER_NAME macro here, as it
2442 may set the assembler name where it was previously empty. */
2443 tree old_assembler_name = decl->decl_with_vis.assembler_name;
2445 /* FIXME lto: We normally pre-mangle names before we serialize
2446 them out. Here, in lto1, we do not know the language, and
2447 thus cannot do the mangling again. Instead, we just append a
2448 suffix to the mangled name. The resulting name, however, is
2449 not a properly-formed mangled name, and will confuse any
2450 attempt to unmangle it. */
2451 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2452 char *label;
2454 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2455 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2457 /* We may arrive here with the old assembler name not set
2458 if the function body is not needed, e.g., it has been
2459 inlined away and does not appear in the cgraph. */
2460 if (old_assembler_name)
2462 tree new_assembler_name = DECL_ASSEMBLER_NAME (decl);
2464 /* Make the original assembler name available for later use.
2465 We may have used it to indicate the section within its
2466 object file where the function body may be found.
2467 FIXME lto: Find a better way to maintain the function decl
2468 to body section mapping so we don't need this hack. */
2469 lto_record_renamed_decl (data_in->file_data,
2470 IDENTIFIER_POINTER (old_assembler_name),
2471 IDENTIFIER_POINTER (new_assembler_name));
2473 /* Also register the reverse mapping so that we can find the
2474 new name given to an existing assembler name (used when
2475 restoring alias pairs in input_constructors_or_inits. */
2476 lto_record_renamed_decl (data_in->file_data,
2477 IDENTIFIER_POINTER (new_assembler_name),
2478 IDENTIFIER_POINTER (old_assembler_name));
2482 /* If this variable has already been declared, queue the
2483 declaration for merging. */
2484 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT (decl))
2486 int ix;
2487 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2488 gcc_unreachable ();
2489 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2490 data_in->file_data);
2495 /* Read an index IX from input block IB and return the tree node at
2496 DATA_IN->FILE_DATA->GLOBALS_INDEX[IX]. */
2498 static tree
2499 lto_get_pickled_tree (struct lto_input_block *ib, struct data_in *data_in)
2501 HOST_WIDE_INT ix;
2502 tree result;
2503 enum LTO_tags expected_tag;
2504 unsigned HOST_WIDE_INT orig_offset;
2506 ix = lto_input_sleb128 (ib);
2507 expected_tag = (enum LTO_tags) lto_input_uleb128 (ib);
2509 orig_offset = lto_input_uleb128 (ib);
2510 gcc_assert (orig_offset == (unsigned) orig_offset);
2512 result = lto_streamer_cache_get (data_in->reader_cache, ix);
2513 if (result == NULL_TREE)
2515 /* We have not yet read the cache slot IX. Go to the offset
2516 in the stream where the physical tree node is, and materialize
2517 it from there. */
2518 struct lto_input_block fwd_ib;
2520 /* If we are trying to go back in the stream, something is wrong.
2521 We should've read the node at the earlier position already. */
2522 if (ib->p >= orig_offset)
2523 internal_error ("bytecode stream: tried to jump backwards in the "
2524 "stream");
2526 LTO_INIT_INPUT_BLOCK (fwd_ib, ib->data, orig_offset, ib->len);
2527 result = lto_input_tree (&fwd_ib, data_in);
2530 gcc_assert (result
2531 && TREE_CODE (result) == lto_tag_to_tree_code (expected_tag));
2533 return result;
2537 /* Read a code and class from input block IB and return the
2538 corresponding builtin. DATA_IN is as in lto_input_tree. */
2540 static tree
2541 lto_get_builtin_tree (struct lto_input_block *ib, struct data_in *data_in)
2543 enum built_in_class fclass;
2544 enum built_in_function fcode;
2545 const char *asmname;
2546 tree result;
2547 int ix;
2549 fclass = (enum built_in_class) lto_input_uleb128 (ib);
2550 gcc_assert (fclass == BUILT_IN_NORMAL || fclass == BUILT_IN_MD);
2552 fcode = (enum built_in_function) lto_input_uleb128 (ib);
2554 ix = lto_input_sleb128 (ib);
2555 gcc_assert (ix == (int) ix);
2557 if (fclass == BUILT_IN_NORMAL)
2559 gcc_assert (fcode < END_BUILTINS);
2560 result = built_in_decls[fcode];
2561 gcc_assert (result);
2563 else if (fclass == BUILT_IN_MD)
2565 result = targetm.builtin_decl (fcode, true);
2566 if (!result || result == error_mark_node)
2567 fatal_error ("target specific builtin not available");
2570 asmname = input_string (data_in, ib);
2571 if (asmname)
2572 set_builtin_user_assembler_name (result, asmname);
2574 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
2576 return result;
2580 /* Read the physical representation of a tree node with tag TAG from
2581 input block IB using the per-file context in DATA_IN. */
2583 static tree
2584 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
2585 enum LTO_tags tag)
2587 tree result;
2588 char end_marker;
2589 int ix;
2591 result = lto_materialize_tree (ib, data_in, tag, &ix);
2593 /* Read all the pointer fields in RESULT. */
2594 lto_input_tree_pointers (ib, data_in, result);
2596 /* We should never try to instantiate an MD or NORMAL builtin here. */
2597 if (TREE_CODE (result) == FUNCTION_DECL)
2598 gcc_assert (!lto_stream_as_builtin_p (result));
2600 if (TREE_CODE (result) == VAR_DECL)
2601 lto_register_var_decl_in_symtab (data_in, result);
2602 else if (TREE_CODE (result) == FUNCTION_DECL && !DECL_BUILT_IN (result))
2603 lto_register_function_decl_in_symtab (data_in, result);
2605 end_marker = lto_input_1_unsigned (ib);
2607 #ifdef LTO_STREAMER_DEBUG
2608 /* Remove the mapping to RESULT's original address set by
2609 lto_materialize_tree. */
2610 lto_orig_address_remove (result);
2611 #endif
2613 return result;
2617 /* Read and INTEGER_CST node from input block IB using the per-file
2618 context in DATA_IN. */
2620 static tree
2621 lto_input_integer_cst (struct lto_input_block *ib, struct data_in *data_in)
2623 tree result, type;
2624 HOST_WIDE_INT low, high;
2625 bool overflow_p;
2627 type = lto_input_tree (ib, data_in);
2628 overflow_p = (lto_input_1_unsigned (ib) != 0);
2629 low = lto_input_uleb128 (ib);
2630 high = lto_input_uleb128 (ib);
2631 result = build_int_cst_wide (type, low, high);
2633 /* If the original constant had overflown, build a replica of RESULT to
2634 avoid modifying the shared constant returned by build_int_cst_wide. */
2635 if (overflow_p)
2637 result = copy_node (result);
2638 TREE_OVERFLOW (result) = 1;
2641 return result;
2645 /* Read a tree from input block IB using the per-file context in
2646 DATA_IN. This context is used, for example, to resolve references
2647 to previously read nodes. */
2649 tree
2650 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
2652 enum LTO_tags tag;
2653 tree result;
2655 tag = input_record_start (ib);
2656 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
2658 if (tag == LTO_null)
2659 result = NULL_TREE;
2660 else if (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
2662 /* If TAG is a reference to an indexable tree, the next value
2663 in IB is the index into the table where we expect to find
2664 that tree. */
2665 result = lto_input_tree_ref (ib, data_in, cfun, tag);
2667 else if (tag == LTO_tree_pickle_reference)
2669 /* If TAG is a reference to a previously read tree, look it up in
2670 the reader cache. */
2671 result = lto_get_pickled_tree (ib, data_in);
2673 else if (tag == LTO_builtin_decl)
2675 /* If we are going to read a built-in function, all we need is
2676 the code and class. */
2677 result = lto_get_builtin_tree (ib, data_in);
2679 else if (tag == lto_tree_code_to_tag (INTEGER_CST))
2681 /* For integer constants we only need the type and its hi/low
2682 words. */
2683 result = lto_input_integer_cst (ib, data_in);
2685 else
2687 /* Otherwise, materialize a new node from IB. */
2688 result = lto_read_tree (ib, data_in, tag);
2691 return result;
2695 /* Initialization for the LTO reader. */
2697 void
2698 lto_init_reader (void)
2700 lto_streamer_init ();
2702 memset (&lto_stats, 0, sizeof (lto_stats));
2703 bitmap_obstack_initialize (NULL);
2705 file_name_hash_table = htab_create (37, hash_string_slot_node,
2706 eq_string_slot_node, free);
2708 gimple_register_cfg_hooks ();
2712 /* Create a new data_in object for FILE_DATA. STRINGS is the string
2713 table to use with LEN strings. RESOLUTIONS is the vector of linker
2714 resolutions (NULL if not using a linker plugin). */
2716 struct data_in *
2717 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
2718 unsigned len,
2719 VEC(ld_plugin_symbol_resolution_t,heap) *resolutions)
2721 struct data_in *data_in = XCNEW (struct data_in);
2722 data_in->file_data = file_data;
2723 data_in->strings = strings;
2724 data_in->strings_len = len;
2725 data_in->globals_resolution = resolutions;
2726 data_in->reader_cache = lto_streamer_cache_create ();
2728 return data_in;
2732 /* Remove DATA_IN. */
2734 void
2735 lto_data_in_delete (struct data_in *data_in)
2737 VEC_free (ld_plugin_symbol_resolution_t, heap, data_in->globals_resolution);
2738 lto_streamer_cache_delete (data_in->reader_cache);
2739 free (data_in->labels);
2740 free (data_in);