Improve scheduler dumps of ready list
[gcc.git] / gcc / lto-streamer-in.c
1 /* Read the GIMPLE representation from a file stream.
2
3 Copyright (C) 2009-2014 Free Software Foundation, Inc.
4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 Re-implemented by Diego Novillo <dnovillo@google.com>
6
7 This file is part of GCC.
8
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.
13
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.
18
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/>. */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "toplev.h"
28 #include "tree.h"
29 #include "stringpool.h"
30 #include "expr.h"
31 #include "flags.h"
32 #include "params.h"
33 #include "input.h"
34 #include "hashtab.h"
35 #include "basic-block.h"
36 #include "tree-ssa-alias.h"
37 #include "internal-fn.h"
38 #include "gimple-expr.h"
39 #include "is-a.h"
40 #include "gimple.h"
41 #include "gimple-iterator.h"
42 #include "gimple-ssa.h"
43 #include "tree-cfg.h"
44 #include "tree-ssanames.h"
45 #include "tree-into-ssa.h"
46 #include "tree-dfa.h"
47 #include "tree-ssa.h"
48 #include "tree-pass.h"
49 #include "hash-set.h"
50 #include "vec.h"
51 #include "machmode.h"
52 #include "hard-reg-set.h"
53 #include "function.h"
54 #include "diagnostic.h"
55 #include "except.h"
56 #include "debug.h"
57 #include "ipa-utils.h"
58 #include "data-streamer.h"
59 #include "gimple-streamer.h"
60 #include "lto-streamer.h"
61 #include "tree-streamer.h"
62 #include "tree-pass.h"
63 #include "streamer-hooks.h"
64 #include "cfgloop.h"
65
66
67 struct freeing_string_slot_hasher : string_slot_hasher
68 {
69 static inline void remove (value_type *);
70 };
71
72 inline void
73 freeing_string_slot_hasher::remove (value_type *v)
74 {
75 free (v);
76 }
77
78 /* The table to hold the file names. */
79 static hash_table<freeing_string_slot_hasher> *file_name_hash_table;
80
81
82 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
83 number of valid tag values to check. */
84
85 void
86 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
87 {
88 va_list ap;
89 int i;
90
91 va_start (ap, ntags);
92 for (i = 0; i < ntags; i++)
93 if ((unsigned) actual == va_arg (ap, unsigned))
94 {
95 va_end (ap);
96 return;
97 }
98
99 va_end (ap);
100 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
101 }
102
103
104 /* Read LENGTH bytes from STREAM to ADDR. */
105
106 void
107 lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
108 {
109 size_t i;
110 unsigned char *const buffer = (unsigned char *const) addr;
111
112 for (i = 0; i < length; i++)
113 buffer[i] = streamer_read_uchar (ib);
114 }
115
116
117 /* Lookup STRING in file_name_hash_table. If found, return the existing
118 string, otherwise insert STRING as the canonical version. */
119
120 static const char *
121 canon_file_name (const char *string)
122 {
123 string_slot **slot;
124 struct string_slot s_slot;
125 size_t len = strlen (string);
126
127 s_slot.s = string;
128 s_slot.len = len;
129
130 slot = file_name_hash_table->find_slot (&s_slot, INSERT);
131 if (*slot == NULL)
132 {
133 char *saved_string;
134 struct string_slot *new_slot;
135
136 saved_string = (char *) xmalloc (len + 1);
137 new_slot = XCNEW (struct string_slot);
138 memcpy (saved_string, string, len + 1);
139 new_slot->s = saved_string;
140 new_slot->len = len;
141 *slot = new_slot;
142 return saved_string;
143 }
144 else
145 {
146 struct string_slot *old_slot = *slot;
147 return old_slot->s;
148 }
149 }
150
151
152 /* Read a location bitpack from input block IB. */
153
154 location_t
155 lto_input_location (struct bitpack_d *bp, struct data_in *data_in)
156 {
157 static const char *current_file;
158 static int current_line;
159 static int current_col;
160 bool file_change, line_change, column_change;
161 bool prev_file = current_file != NULL;
162
163 if (bp_unpack_value (bp, 1))
164 return UNKNOWN_LOCATION;
165
166 file_change = bp_unpack_value (bp, 1);
167 line_change = bp_unpack_value (bp, 1);
168 column_change = bp_unpack_value (bp, 1);
169
170 if (file_change)
171 current_file = canon_file_name (bp_unpack_string (data_in, bp));
172
173 if (line_change)
174 current_line = bp_unpack_var_len_unsigned (bp);
175
176 if (column_change)
177 current_col = bp_unpack_var_len_unsigned (bp);
178
179 if (file_change)
180 {
181 if (prev_file)
182 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
183
184 linemap_add (line_table, LC_ENTER, false, current_file, current_line);
185 }
186 else if (line_change)
187 linemap_line_start (line_table, current_line, current_col);
188
189 return linemap_position_for_column (line_table, current_col);
190 }
191
192
193 /* Read a reference to a tree node from DATA_IN using input block IB.
194 TAG is the expected node that should be found in IB, if TAG belongs
195 to one of the indexable trees, expect to read a reference index to
196 be looked up in one of the symbol tables, otherwise read the pysical
197 representation of the tree using stream_read_tree. FN is the
198 function scope for the read tree. */
199
200 tree
201 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
202 struct function *fn, enum LTO_tags tag)
203 {
204 unsigned HOST_WIDE_INT ix_u;
205 tree result = NULL_TREE;
206
207 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_namelist_decl_ref);
208
209 switch (tag)
210 {
211 case LTO_type_ref:
212 ix_u = streamer_read_uhwi (ib);
213 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
214 break;
215
216 case LTO_ssa_name_ref:
217 ix_u = streamer_read_uhwi (ib);
218 result = (*SSANAMES (fn))[ix_u];
219 break;
220
221 case LTO_field_decl_ref:
222 ix_u = streamer_read_uhwi (ib);
223 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
224 break;
225
226 case LTO_function_decl_ref:
227 ix_u = streamer_read_uhwi (ib);
228 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
229 break;
230
231 case LTO_type_decl_ref:
232 ix_u = streamer_read_uhwi (ib);
233 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
234 break;
235
236 case LTO_namespace_decl_ref:
237 ix_u = streamer_read_uhwi (ib);
238 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
239 break;
240
241 case LTO_global_decl_ref:
242 case LTO_result_decl_ref:
243 case LTO_const_decl_ref:
244 case LTO_imported_decl_ref:
245 case LTO_label_decl_ref:
246 case LTO_translation_unit_decl_ref:
247 case LTO_namelist_decl_ref:
248 ix_u = streamer_read_uhwi (ib);
249 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
250 break;
251
252 default:
253 gcc_unreachable ();
254 }
255
256 gcc_assert (result);
257
258 return result;
259 }
260
261
262 /* Read and return a double-linked list of catch handlers from input
263 block IB, using descriptors in DATA_IN. */
264
265 static struct eh_catch_d *
266 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
267 eh_catch *last_p)
268 {
269 eh_catch first;
270 enum LTO_tags tag;
271
272 *last_p = first = NULL;
273 tag = streamer_read_record_start (ib);
274 while (tag)
275 {
276 tree list;
277 eh_catch n;
278
279 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
280
281 /* Read the catch node. */
282 n = ggc_cleared_alloc<eh_catch_d> ();
283 n->type_list = stream_read_tree (ib, data_in);
284 n->filter_list = stream_read_tree (ib, data_in);
285 n->label = stream_read_tree (ib, data_in);
286
287 /* Register all the types in N->FILTER_LIST. */
288 for (list = n->filter_list; list; list = TREE_CHAIN (list))
289 add_type_for_runtime (TREE_VALUE (list));
290
291 /* Chain N to the end of the list. */
292 if (*last_p)
293 (*last_p)->next_catch = n;
294 n->prev_catch = *last_p;
295 *last_p = n;
296
297 /* Set the head of the list the first time through the loop. */
298 if (first == NULL)
299 first = n;
300
301 tag = streamer_read_record_start (ib);
302 }
303
304 return first;
305 }
306
307
308 /* Read and return EH region IX from input block IB, using descriptors
309 in DATA_IN. */
310
311 static eh_region
312 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
313 {
314 enum LTO_tags tag;
315 eh_region r;
316
317 /* Read the region header. */
318 tag = streamer_read_record_start (ib);
319 if (tag == LTO_null)
320 return NULL;
321
322 r = ggc_cleared_alloc<eh_region_d> ();
323 r->index = streamer_read_hwi (ib);
324
325 gcc_assert (r->index == ix);
326
327 /* Read all the region pointers as region numbers. We'll fix up
328 the pointers once the whole array has been read. */
329 r->outer = (eh_region) (intptr_t) streamer_read_hwi (ib);
330 r->inner = (eh_region) (intptr_t) streamer_read_hwi (ib);
331 r->next_peer = (eh_region) (intptr_t) streamer_read_hwi (ib);
332
333 switch (tag)
334 {
335 case LTO_ert_cleanup:
336 r->type = ERT_CLEANUP;
337 break;
338
339 case LTO_ert_try:
340 {
341 struct eh_catch_d *last_catch;
342 r->type = ERT_TRY;
343 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
344 &last_catch);
345 r->u.eh_try.last_catch = last_catch;
346 break;
347 }
348
349 case LTO_ert_allowed_exceptions:
350 {
351 tree l;
352
353 r->type = ERT_ALLOWED_EXCEPTIONS;
354 r->u.allowed.type_list = stream_read_tree (ib, data_in);
355 r->u.allowed.label = stream_read_tree (ib, data_in);
356 r->u.allowed.filter = streamer_read_uhwi (ib);
357
358 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
359 add_type_for_runtime (TREE_VALUE (l));
360 }
361 break;
362
363 case LTO_ert_must_not_throw:
364 {
365 r->type = ERT_MUST_NOT_THROW;
366 r->u.must_not_throw.failure_decl = stream_read_tree (ib, data_in);
367 bitpack_d bp = streamer_read_bitpack (ib);
368 r->u.must_not_throw.failure_loc
369 = stream_input_location (&bp, data_in);
370 }
371 break;
372
373 default:
374 gcc_unreachable ();
375 }
376
377 r->landing_pads = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
378
379 return r;
380 }
381
382
383 /* Read and return EH landing pad IX from input block IB, using descriptors
384 in DATA_IN. */
385
386 static eh_landing_pad
387 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
388 {
389 enum LTO_tags tag;
390 eh_landing_pad lp;
391
392 /* Read the landing pad header. */
393 tag = streamer_read_record_start (ib);
394 if (tag == LTO_null)
395 return NULL;
396
397 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
398
399 lp = ggc_cleared_alloc<eh_landing_pad_d> ();
400 lp->index = streamer_read_hwi (ib);
401 gcc_assert (lp->index == ix);
402 lp->next_lp = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
403 lp->region = (eh_region) (intptr_t) streamer_read_hwi (ib);
404 lp->post_landing_pad = stream_read_tree (ib, data_in);
405
406 return lp;
407 }
408
409
410 /* After reading the EH regions, pointers to peer and children regions
411 are region numbers. This converts all these region numbers into
412 real pointers into the rematerialized regions for FN. ROOT_REGION
413 is the region number for the root EH region in FN. */
414
415 static void
416 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
417 {
418 unsigned i;
419 vec<eh_region, va_gc> *eh_array = fn->eh->region_array;
420 vec<eh_landing_pad, va_gc> *lp_array = fn->eh->lp_array;
421 eh_region r;
422 eh_landing_pad lp;
423
424 gcc_assert (eh_array && lp_array);
425
426 gcc_assert (root_region >= 0);
427 fn->eh->region_tree = (*eh_array)[root_region];
428
429 #define FIXUP_EH_REGION(r) (r) = (*eh_array)[(HOST_WIDE_INT) (intptr_t) (r)]
430 #define FIXUP_EH_LP(p) (p) = (*lp_array)[(HOST_WIDE_INT) (intptr_t) (p)]
431
432 /* Convert all the index numbers stored in pointer fields into
433 pointers to the corresponding slots in the EH region array. */
434 FOR_EACH_VEC_ELT (*eh_array, i, r)
435 {
436 /* The array may contain NULL regions. */
437 if (r == NULL)
438 continue;
439
440 gcc_assert (i == (unsigned) r->index);
441 FIXUP_EH_REGION (r->outer);
442 FIXUP_EH_REGION (r->inner);
443 FIXUP_EH_REGION (r->next_peer);
444 FIXUP_EH_LP (r->landing_pads);
445 }
446
447 /* Convert all the index numbers stored in pointer fields into
448 pointers to the corresponding slots in the EH landing pad array. */
449 FOR_EACH_VEC_ELT (*lp_array, i, lp)
450 {
451 /* The array may contain NULL landing pads. */
452 if (lp == NULL)
453 continue;
454
455 gcc_assert (i == (unsigned) lp->index);
456 FIXUP_EH_LP (lp->next_lp);
457 FIXUP_EH_REGION (lp->region);
458 }
459
460 #undef FIXUP_EH_REGION
461 #undef FIXUP_EH_LP
462 }
463
464
465 /* Initialize EH support. */
466
467 void
468 lto_init_eh (void)
469 {
470 static bool eh_initialized_p = false;
471
472 if (eh_initialized_p)
473 return;
474
475 /* Contrary to most other FEs, we only initialize EH support when at
476 least one of the files in the set contains exception regions in
477 it. Since this happens much later than the call to init_eh in
478 lang_dependent_init, we have to set flag_exceptions and call
479 init_eh again to initialize the EH tables. */
480 flag_exceptions = 1;
481 init_eh ();
482
483 eh_initialized_p = true;
484 }
485
486
487 /* Read the exception table for FN from IB using the data descriptors
488 in DATA_IN. */
489
490 static void
491 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
492 struct function *fn)
493 {
494 HOST_WIDE_INT i, root_region, len;
495 enum LTO_tags tag;
496
497 tag = streamer_read_record_start (ib);
498 if (tag == LTO_null)
499 return;
500
501 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
502
503 /* If the file contains EH regions, then it was compiled with
504 -fexceptions. In that case, initialize the backend EH
505 machinery. */
506 lto_init_eh ();
507
508 gcc_assert (fn->eh);
509
510 root_region = streamer_read_hwi (ib);
511 gcc_assert (root_region == (int) root_region);
512
513 /* Read the EH region array. */
514 len = streamer_read_hwi (ib);
515 gcc_assert (len == (int) len);
516 if (len > 0)
517 {
518 vec_safe_grow_cleared (fn->eh->region_array, len);
519 for (i = 0; i < len; i++)
520 {
521 eh_region r = input_eh_region (ib, data_in, i);
522 (*fn->eh->region_array)[i] = r;
523 }
524 }
525
526 /* Read the landing pads. */
527 len = streamer_read_hwi (ib);
528 gcc_assert (len == (int) len);
529 if (len > 0)
530 {
531 vec_safe_grow_cleared (fn->eh->lp_array, len);
532 for (i = 0; i < len; i++)
533 {
534 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
535 (*fn->eh->lp_array)[i] = lp;
536 }
537 }
538
539 /* Read the runtime type data. */
540 len = streamer_read_hwi (ib);
541 gcc_assert (len == (int) len);
542 if (len > 0)
543 {
544 vec_safe_grow_cleared (fn->eh->ttype_data, len);
545 for (i = 0; i < len; i++)
546 {
547 tree ttype = stream_read_tree (ib, data_in);
548 (*fn->eh->ttype_data)[i] = ttype;
549 }
550 }
551
552 /* Read the table of action chains. */
553 len = streamer_read_hwi (ib);
554 gcc_assert (len == (int) len);
555 if (len > 0)
556 {
557 if (targetm.arm_eabi_unwinder)
558 {
559 vec_safe_grow_cleared (fn->eh->ehspec_data.arm_eabi, len);
560 for (i = 0; i < len; i++)
561 {
562 tree t = stream_read_tree (ib, data_in);
563 (*fn->eh->ehspec_data.arm_eabi)[i] = t;
564 }
565 }
566 else
567 {
568 vec_safe_grow_cleared (fn->eh->ehspec_data.other, len);
569 for (i = 0; i < len; i++)
570 {
571 uchar c = streamer_read_uchar (ib);
572 (*fn->eh->ehspec_data.other)[i] = c;
573 }
574 }
575 }
576
577 /* Reconstruct the EH region tree by fixing up the peer/children
578 pointers. */
579 fixup_eh_region_pointers (fn, root_region);
580
581 tag = streamer_read_record_start (ib);
582 lto_tag_check_range (tag, LTO_null, LTO_null);
583 }
584
585
586 /* Make a new basic block with index INDEX in function FN. */
587
588 static basic_block
589 make_new_block (struct function *fn, unsigned int index)
590 {
591 basic_block bb = alloc_block ();
592 bb->index = index;
593 SET_BASIC_BLOCK_FOR_FN (fn, index, bb);
594 n_basic_blocks_for_fn (fn)++;
595 return bb;
596 }
597
598
599 /* Read a wide-int. */
600
601 static widest_int
602 streamer_read_wi (struct lto_input_block *ib)
603 {
604 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
605 int i;
606 int prec ATTRIBUTE_UNUSED = streamer_read_uhwi (ib);
607 int len = streamer_read_uhwi (ib);
608 for (i = 0; i < len; i++)
609 a[i] = streamer_read_hwi (ib);
610 return widest_int::from_array (a, len);
611 }
612
613
614 /* Read the CFG for function FN from input block IB. */
615
616 static void
617 input_cfg (struct lto_input_block *ib, struct data_in *data_in,
618 struct function *fn,
619 int count_materialization_scale)
620 {
621 unsigned int bb_count;
622 basic_block p_bb;
623 unsigned int i;
624 int index;
625
626 init_empty_tree_cfg_for_function (fn);
627 init_ssa_operands (fn);
628
629 profile_status_for_fn (fn) = streamer_read_enum (ib, profile_status_d,
630 PROFILE_LAST);
631
632 bb_count = streamer_read_uhwi (ib);
633
634 last_basic_block_for_fn (fn) = bb_count;
635 if (bb_count > basic_block_info_for_fn (fn)->length ())
636 vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count);
637
638 if (bb_count > label_to_block_map_for_fn (fn)->length ())
639 vec_safe_grow_cleared (label_to_block_map_for_fn (fn), bb_count);
640
641 index = streamer_read_hwi (ib);
642 while (index != -1)
643 {
644 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
645 unsigned int edge_count;
646
647 if (bb == NULL)
648 bb = make_new_block (fn, index);
649
650 edge_count = streamer_read_uhwi (ib);
651
652 /* Connect up the CFG. */
653 for (i = 0; i < edge_count; i++)
654 {
655 unsigned int dest_index;
656 unsigned int edge_flags;
657 basic_block dest;
658 int probability;
659 gcov_type count;
660 edge e;
661
662 dest_index = streamer_read_uhwi (ib);
663 probability = (int) streamer_read_hwi (ib);
664 count = apply_scale ((gcov_type) streamer_read_gcov_count (ib),
665 count_materialization_scale);
666 edge_flags = streamer_read_uhwi (ib);
667
668 dest = BASIC_BLOCK_FOR_FN (fn, dest_index);
669
670 if (dest == NULL)
671 dest = make_new_block (fn, dest_index);
672
673 e = make_edge (bb, dest, edge_flags);
674 e->probability = probability;
675 e->count = count;
676 }
677
678 index = streamer_read_hwi (ib);
679 }
680
681 p_bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
682 index = streamer_read_hwi (ib);
683 while (index != -1)
684 {
685 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
686 bb->prev_bb = p_bb;
687 p_bb->next_bb = bb;
688 p_bb = bb;
689 index = streamer_read_hwi (ib);
690 }
691
692 /* ??? The cfgloop interface is tied to cfun. */
693 gcc_assert (cfun == fn);
694
695 /* Input the loop tree. */
696 unsigned n_loops = streamer_read_uhwi (ib);
697 if (n_loops == 0)
698 return;
699
700 struct loops *loops = ggc_cleared_alloc<struct loops> ();
701 init_loops_structure (fn, loops, n_loops);
702 set_loops_for_fn (fn, loops);
703
704 /* Input each loop and associate it with its loop header so
705 flow_loops_find can rebuild the loop tree. */
706 for (unsigned i = 1; i < n_loops; ++i)
707 {
708 int header_index = streamer_read_hwi (ib);
709 if (header_index == -1)
710 {
711 loops->larray->quick_push (NULL);
712 continue;
713 }
714
715 struct loop *loop = alloc_loop ();
716 loop->header = BASIC_BLOCK_FOR_FN (fn, header_index);
717 loop->header->loop_father = loop;
718
719 /* Read everything copy_loop_info copies. */
720 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
721 loop->any_upper_bound = streamer_read_hwi (ib);
722 if (loop->any_upper_bound)
723 loop->nb_iterations_upper_bound = streamer_read_wi (ib);
724 loop->any_estimate = streamer_read_hwi (ib);
725 if (loop->any_estimate)
726 loop->nb_iterations_estimate = streamer_read_wi (ib);
727
728 /* Read OMP SIMD related info. */
729 loop->safelen = streamer_read_hwi (ib);
730 loop->dont_vectorize = streamer_read_hwi (ib);
731 loop->force_vectorize = streamer_read_hwi (ib);
732 loop->simduid = stream_read_tree (ib, data_in);
733
734 place_new_loop (fn, loop);
735
736 /* flow_loops_find doesn't like loops not in the tree, hook them
737 all as siblings of the tree root temporarily. */
738 flow_loop_tree_node_add (loops->tree_root, loop);
739 }
740
741 /* Rebuild the loop tree. */
742 flow_loops_find (loops);
743 }
744
745
746 /* Read the SSA names array for function FN from DATA_IN using input
747 block IB. */
748
749 static void
750 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
751 struct function *fn)
752 {
753 unsigned int i, size;
754
755 size = streamer_read_uhwi (ib);
756 init_ssanames (fn, size);
757
758 i = streamer_read_uhwi (ib);
759 while (i)
760 {
761 tree ssa_name, name;
762 bool is_default_def;
763
764 /* Skip over the elements that had been freed. */
765 while (SSANAMES (fn)->length () < i)
766 SSANAMES (fn)->quick_push (NULL_TREE);
767
768 is_default_def = (streamer_read_uchar (ib) != 0);
769 name = stream_read_tree (ib, data_in);
770 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
771
772 if (is_default_def)
773 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
774
775 i = streamer_read_uhwi (ib);
776 }
777 }
778
779
780 /* Go through all NODE edges and fixup call_stmt pointers
781 so they point to STMTS. */
782
783 static void
784 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts,
785 struct function *fn)
786 {
787 struct cgraph_edge *cedge;
788 struct ipa_ref *ref = NULL;
789 unsigned int i;
790
791 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
792 {
793 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
794 fatal_error ("Cgraph edge statement index out of range");
795 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
796 if (!cedge->call_stmt)
797 fatal_error ("Cgraph edge statement index not found");
798 }
799 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
800 {
801 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
802 fatal_error ("Cgraph edge statement index out of range");
803 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
804 if (!cedge->call_stmt)
805 fatal_error ("Cgraph edge statement index not found");
806 }
807 for (i = 0; node->iterate_reference (i, ref); i++)
808 if (ref->lto_stmt_uid)
809 {
810 if (gimple_stmt_max_uid (fn) < ref->lto_stmt_uid)
811 fatal_error ("Reference statement index out of range");
812 ref->stmt = stmts[ref->lto_stmt_uid - 1];
813 if (!ref->stmt)
814 fatal_error ("Reference statement index not found");
815 }
816 }
817
818
819 /* Fixup call_stmt pointers in NODE and all clones. */
820
821 static void
822 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
823 {
824 struct cgraph_node *node;
825 struct function *fn;
826
827 while (orig->clone_of)
828 orig = orig->clone_of;
829 fn = DECL_STRUCT_FUNCTION (orig->decl);
830
831 fixup_call_stmt_edges_1 (orig, stmts, fn);
832 if (orig->clones)
833 for (node = orig->clones; node != orig;)
834 {
835 fixup_call_stmt_edges_1 (node, stmts, fn);
836 if (node->clones)
837 node = node->clones;
838 else if (node->next_sibling_clone)
839 node = node->next_sibling_clone;
840 else
841 {
842 while (node != orig && !node->next_sibling_clone)
843 node = node->clone_of;
844 if (node != orig)
845 node = node->next_sibling_clone;
846 }
847 }
848 }
849
850
851 /* Input the base body of struct function FN from DATA_IN
852 using input block IB. */
853
854 static void
855 input_struct_function_base (struct function *fn, struct data_in *data_in,
856 struct lto_input_block *ib)
857 {
858 struct bitpack_d bp;
859 int len;
860
861 /* Read the static chain and non-local goto save area. */
862 fn->static_chain_decl = stream_read_tree (ib, data_in);
863 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
864
865 /* Read all the local symbols. */
866 len = streamer_read_hwi (ib);
867 if (len > 0)
868 {
869 int i;
870 vec_safe_grow_cleared (fn->local_decls, len);
871 for (i = 0; i < len; i++)
872 {
873 tree t = stream_read_tree (ib, data_in);
874 (*fn->local_decls)[i] = t;
875 }
876 }
877
878 /* Input the current IL state of the function. */
879 fn->curr_properties = streamer_read_uhwi (ib);
880
881 /* Read all the attributes for FN. */
882 bp = streamer_read_bitpack (ib);
883 fn->is_thunk = bp_unpack_value (&bp, 1);
884 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
885 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
886 fn->returns_struct = bp_unpack_value (&bp, 1);
887 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
888 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
889 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
890 fn->after_inlining = bp_unpack_value (&bp, 1);
891 fn->stdarg = bp_unpack_value (&bp, 1);
892 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
893 fn->calls_alloca = bp_unpack_value (&bp, 1);
894 fn->calls_setjmp = bp_unpack_value (&bp, 1);
895 fn->has_force_vectorize_loops = bp_unpack_value (&bp, 1);
896 fn->has_simduid_loops = bp_unpack_value (&bp, 1);
897 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
898 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
899
900 /* Input the function start and end loci. */
901 fn->function_start_locus = stream_input_location (&bp, data_in);
902 fn->function_end_locus = stream_input_location (&bp, data_in);
903 }
904
905
906 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
907
908 static void
909 input_function (tree fn_decl, struct data_in *data_in,
910 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
911 {
912 struct function *fn;
913 enum LTO_tags tag;
914 gimple *stmts;
915 basic_block bb;
916 struct cgraph_node *node;
917
918 tag = streamer_read_record_start (ib);
919 lto_tag_check (tag, LTO_function);
920
921 /* Read decls for parameters and args. */
922 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
923 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
924
925 /* Read the tree of lexical scopes for the function. */
926 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
927
928 if (!streamer_read_uhwi (ib))
929 return;
930
931 push_struct_function (fn_decl);
932 fn = DECL_STRUCT_FUNCTION (fn_decl);
933 init_tree_ssa (fn);
934 /* We input IL in SSA form. */
935 cfun->gimple_df->in_ssa_p = true;
936
937 gimple_register_cfg_hooks ();
938
939 node = cgraph_node::get (fn_decl);
940 if (!node)
941 node = cgraph_node::create (fn_decl);
942 input_struct_function_base (fn, data_in, ib);
943 input_cfg (ib_cfg, data_in, fn, node->count_materialization_scale);
944
945 /* Read all the SSA names. */
946 input_ssa_names (ib, data_in, fn);
947
948 /* Read the exception handling regions in the function. */
949 input_eh_regions (ib, data_in, fn);
950
951 gcc_assert (DECL_INITIAL (fn_decl));
952 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
953
954 /* Read all the basic blocks. */
955 tag = streamer_read_record_start (ib);
956 while (tag)
957 {
958 input_bb (ib, tag, data_in, fn,
959 node->count_materialization_scale);
960 tag = streamer_read_record_start (ib);
961 }
962
963 /* Fix up the call statements that are mentioned in the callgraph
964 edges. */
965 set_gimple_stmt_max_uid (cfun, 0);
966 FOR_ALL_BB_FN (bb, cfun)
967 {
968 gimple_stmt_iterator gsi;
969 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
970 {
971 gimple stmt = gsi_stmt (gsi);
972 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
973 }
974 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
975 {
976 gimple stmt = gsi_stmt (gsi);
977 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
978 }
979 }
980 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
981 FOR_ALL_BB_FN (bb, cfun)
982 {
983 gimple_stmt_iterator bsi = gsi_start_phis (bb);
984 while (!gsi_end_p (bsi))
985 {
986 gimple stmt = gsi_stmt (bsi);
987 gsi_next (&bsi);
988 stmts[gimple_uid (stmt)] = stmt;
989 }
990 bsi = gsi_start_bb (bb);
991 while (!gsi_end_p (bsi))
992 {
993 gimple stmt = gsi_stmt (bsi);
994 /* If we're recompiling LTO objects with debug stmts but
995 we're not supposed to have debug stmts, remove them now.
996 We can't remove them earlier because this would cause uid
997 mismatches in fixups, but we can do it at this point, as
998 long as debug stmts don't require fixups. */
999 if (!MAY_HAVE_DEBUG_STMTS && !flag_wpa && is_gimple_debug (stmt))
1000 {
1001 gimple_stmt_iterator gsi = bsi;
1002 gsi_next (&bsi);
1003 gsi_remove (&gsi, true);
1004 }
1005 else
1006 {
1007 gsi_next (&bsi);
1008 stmts[gimple_uid (stmt)] = stmt;
1009 }
1010 }
1011 }
1012
1013 /* Set the gimple body to the statement sequence in the entry
1014 basic block. FIXME lto, this is fairly hacky. The existence
1015 of a gimple body is used by the cgraph routines, but we should
1016 really use the presence of the CFG. */
1017 {
1018 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs);
1019 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1020 }
1021
1022 fixup_call_stmt_edges (node, stmts);
1023 execute_all_ipa_stmt_fixups (node, stmts);
1024
1025 update_ssa (TODO_update_ssa_only_virtuals);
1026 free_dominance_info (CDI_DOMINATORS);
1027 free_dominance_info (CDI_POST_DOMINATORS);
1028 free (stmts);
1029 pop_cfun ();
1030 }
1031
1032 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1033
1034 static void
1035 input_constructor (tree var, struct data_in *data_in,
1036 struct lto_input_block *ib)
1037 {
1038 DECL_INITIAL (var) = stream_read_tree (ib, data_in);
1039 }
1040
1041
1042 /* Read the body from DATA for function NODE and fill it in.
1043 FILE_DATA are the global decls and types. SECTION_TYPE is either
1044 LTO_section_function_body or LTO_section_static_initializer. If
1045 section type is LTO_section_function_body, FN must be the decl for
1046 that function. */
1047
1048 static void
1049 lto_read_body_or_constructor (struct lto_file_decl_data *file_data, struct symtab_node *node,
1050 const char *data, enum lto_section_type section_type)
1051 {
1052 const struct lto_function_header *header;
1053 struct data_in *data_in;
1054 int cfg_offset;
1055 int main_offset;
1056 int string_offset;
1057 tree fn_decl = node->decl;
1058
1059 header = (const struct lto_function_header *) data;
1060 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1061 {
1062 cfg_offset = sizeof (struct lto_function_header);
1063 main_offset = cfg_offset + header->cfg_size;
1064 string_offset = main_offset + header->main_size;
1065 }
1066 else
1067 {
1068 main_offset = sizeof (struct lto_function_header);
1069 string_offset = main_offset + header->main_size;
1070 }
1071
1072 data_in = lto_data_in_create (file_data, data + string_offset,
1073 header->string_size, vNULL);
1074
1075 if (section_type == LTO_section_function_body)
1076 {
1077 struct lto_in_decl_state *decl_state;
1078 unsigned from;
1079
1080 gcc_checking_assert (node);
1081
1082 /* Use the function's decl state. */
1083 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1084 gcc_assert (decl_state);
1085 file_data->current_decl_state = decl_state;
1086
1087
1088 /* Set up the struct function. */
1089 from = data_in->reader_cache->nodes.length ();
1090 lto_input_block ib_main (data + main_offset, header->main_size);
1091 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1092 {
1093 lto_input_block ib_cfg (data + cfg_offset, header->cfg_size);
1094 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1095 }
1096 else
1097 input_constructor (fn_decl, data_in, &ib_main);
1098 /* And fixup types we streamed locally. */
1099 {
1100 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1101 unsigned len = cache->nodes.length ();
1102 unsigned i;
1103 for (i = len; i-- > from;)
1104 {
1105 tree t = streamer_tree_cache_get_tree (cache, i);
1106 if (t == NULL_TREE)
1107 continue;
1108
1109 if (TYPE_P (t))
1110 {
1111 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
1112 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
1113 if (TYPE_MAIN_VARIANT (t) != t)
1114 {
1115 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1116 TYPE_NEXT_VARIANT (t)
1117 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1118 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1119 }
1120 }
1121 }
1122 }
1123
1124 /* Restore decl state */
1125 file_data->current_decl_state = file_data->global_decl_state;
1126 }
1127
1128 lto_data_in_delete (data_in);
1129 }
1130
1131
1132 /* Read the body of NODE using DATA. FILE_DATA holds the global
1133 decls and types. */
1134
1135 void
1136 lto_input_function_body (struct lto_file_decl_data *file_data,
1137 struct cgraph_node *node, const char *data)
1138 {
1139 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1140 }
1141
1142 /* Read the body of NODE using DATA. FILE_DATA holds the global
1143 decls and types. */
1144
1145 void
1146 lto_input_variable_constructor (struct lto_file_decl_data *file_data,
1147 struct varpool_node *node, const char *data)
1148 {
1149 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1150 }
1151
1152
1153 /* Read the physical representation of a tree node EXPR from
1154 input block IB using the per-file context in DATA_IN. */
1155
1156 static void
1157 lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1158 {
1159 /* Read all the bitfield values in EXPR. Note that for LTO, we
1160 only write language-independent bitfields, so no more unpacking is
1161 needed. */
1162 streamer_read_tree_bitfields (ib, data_in, expr);
1163
1164 /* Read all the pointer fields in EXPR. */
1165 streamer_read_tree_body (ib, data_in, expr);
1166
1167 /* Read any LTO-specific data not read by the tree streamer. */
1168 if (DECL_P (expr)
1169 && TREE_CODE (expr) != FUNCTION_DECL
1170 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1171 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
1172
1173 /* We should never try to instantiate an MD or NORMAL builtin here. */
1174 if (TREE_CODE (expr) == FUNCTION_DECL)
1175 gcc_assert (!streamer_handle_as_builtin_p (expr));
1176
1177 #ifdef LTO_STREAMER_DEBUG
1178 /* Remove the mapping to RESULT's original address set by
1179 streamer_alloc_tree. */
1180 lto_orig_address_remove (expr);
1181 #endif
1182 }
1183
1184 /* Read the physical representation of a tree node with tag TAG from
1185 input block IB using the per-file context in DATA_IN. */
1186
1187 static tree
1188 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
1189 enum LTO_tags tag, hashval_t hash)
1190 {
1191 /* Instantiate a new tree node. */
1192 tree result = streamer_alloc_tree (ib, data_in, tag);
1193
1194 /* Enter RESULT in the reader cache. This will make RESULT
1195 available so that circular references in the rest of the tree
1196 structure can be resolved in subsequent calls to stream_read_tree. */
1197 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1198
1199 lto_read_tree_1 (ib, data_in, result);
1200
1201 /* end_marker = */ streamer_read_uchar (ib);
1202
1203 return result;
1204 }
1205
1206
1207 /* Populate the reader cache with trees materialized from the SCC
1208 following in the IB, DATA_IN stream. */
1209
1210 hashval_t
1211 lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1212 unsigned *len, unsigned *entry_len)
1213 {
1214 /* A blob of unnamed tree nodes, fill the cache from it and
1215 recurse. */
1216 unsigned size = streamer_read_uhwi (ib);
1217 hashval_t scc_hash = streamer_read_uhwi (ib);
1218 unsigned scc_entry_len = 1;
1219
1220 if (size == 1)
1221 {
1222 enum LTO_tags tag = streamer_read_record_start (ib);
1223 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1224 }
1225 else
1226 {
1227 unsigned int first = data_in->reader_cache->nodes.length ();
1228 tree result;
1229
1230 scc_entry_len = streamer_read_uhwi (ib);
1231
1232 /* Materialize size trees by reading their headers. */
1233 for (unsigned i = 0; i < size; ++i)
1234 {
1235 enum LTO_tags tag = streamer_read_record_start (ib);
1236 if (tag == LTO_null
1237 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1238 || tag == LTO_tree_pickle_reference
1239 || tag == LTO_builtin_decl
1240 || tag == LTO_integer_cst
1241 || tag == LTO_tree_scc)
1242 gcc_unreachable ();
1243
1244 result = streamer_alloc_tree (ib, data_in, tag);
1245 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1246 }
1247
1248 /* Read the tree bitpacks and references. */
1249 for (unsigned i = 0; i < size; ++i)
1250 {
1251 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1252 first + i);
1253 lto_read_tree_1 (ib, data_in, result);
1254 /* end_marker = */ streamer_read_uchar (ib);
1255 }
1256 }
1257
1258 *len = size;
1259 *entry_len = scc_entry_len;
1260 return scc_hash;
1261 }
1262
1263
1264 /* Read a tree from input block IB using the per-file context in
1265 DATA_IN. This context is used, for example, to resolve references
1266 to previously read nodes. */
1267
1268 tree
1269 lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1270 enum LTO_tags tag, hashval_t hash)
1271 {
1272 tree result;
1273
1274 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1275
1276 if (tag == LTO_null)
1277 result = NULL_TREE;
1278 else if (tag >= LTO_field_decl_ref && tag <= LTO_namelist_decl_ref)
1279 {
1280 /* If TAG is a reference to an indexable tree, the next value
1281 in IB is the index into the table where we expect to find
1282 that tree. */
1283 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1284 }
1285 else if (tag == LTO_tree_pickle_reference)
1286 {
1287 /* If TAG is a reference to a previously read tree, look it up in
1288 the reader cache. */
1289 result = streamer_get_pickled_tree (ib, data_in);
1290 }
1291 else if (tag == LTO_builtin_decl)
1292 {
1293 /* If we are going to read a built-in function, all we need is
1294 the code and class. */
1295 result = streamer_get_builtin_tree (ib, data_in);
1296 }
1297 else if (tag == LTO_integer_cst)
1298 {
1299 /* For shared integer constants in singletons we can use the
1300 existing tree integer constant merging code. */
1301 tree type = stream_read_tree (ib, data_in);
1302 unsigned HOST_WIDE_INT len = streamer_read_uhwi (ib);
1303 unsigned HOST_WIDE_INT i;
1304 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
1305
1306 for (i = 0; i < len; i++)
1307 a[i] = streamer_read_hwi (ib);
1308 gcc_assert (TYPE_PRECISION (type) <= MAX_BITSIZE_MODE_ANY_INT);
1309 result = wide_int_to_tree (type, wide_int::from_array
1310 (a, len, TYPE_PRECISION (type)));
1311 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1312 }
1313 else if (tag == LTO_tree_scc)
1314 gcc_unreachable ();
1315 else
1316 {
1317 /* Otherwise, materialize a new node from IB. */
1318 result = lto_read_tree (ib, data_in, tag, hash);
1319 }
1320
1321 return result;
1322 }
1323
1324 tree
1325 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1326 {
1327 enum LTO_tags tag;
1328
1329 /* Input and skip SCCs. */
1330 while ((tag = streamer_read_record_start (ib)) == LTO_tree_scc)
1331 {
1332 unsigned len, entry_len;
1333 lto_input_scc (ib, data_in, &len, &entry_len);
1334 }
1335 return lto_input_tree_1 (ib, data_in, tag, 0);
1336 }
1337
1338
1339 /* Input toplevel asms. */
1340
1341 void
1342 lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
1343 {
1344 size_t len;
1345 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1346 NULL, &len);
1347 const struct lto_simple_header_with_strings *header
1348 = (const struct lto_simple_header_with_strings *) data;
1349 int string_offset;
1350 struct data_in *data_in;
1351 tree str;
1352
1353 if (! data)
1354 return;
1355
1356 string_offset = sizeof (*header) + header->main_size;
1357
1358 lto_input_block ib (data + sizeof (*header), header->main_size);
1359
1360 data_in = lto_data_in_create (file_data, data + string_offset,
1361 header->string_size, vNULL);
1362
1363 while ((str = streamer_read_string_cst (data_in, &ib)))
1364 {
1365 asm_node *node = symtab->finalize_toplevel_asm (str);
1366 node->order = streamer_read_hwi (&ib) + order_base;
1367 if (node->order >= symtab->order)
1368 symtab->order = node->order + 1;
1369 }
1370
1371 lto_data_in_delete (data_in);
1372
1373 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1374 }
1375
1376
1377 /* Initialization for the LTO reader. */
1378
1379 void
1380 lto_reader_init (void)
1381 {
1382 lto_streamer_init ();
1383 file_name_hash_table
1384 = new hash_table<freeing_string_slot_hasher> (37);
1385 }
1386
1387
1388 /* Create a new data_in object for FILE_DATA. STRINGS is the string
1389 table to use with LEN strings. RESOLUTIONS is the vector of linker
1390 resolutions (NULL if not using a linker plugin). */
1391
1392 struct data_in *
1393 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1394 unsigned len,
1395 vec<ld_plugin_symbol_resolution_t> resolutions)
1396 {
1397 struct data_in *data_in = XCNEW (struct data_in);
1398 data_in->file_data = file_data;
1399 data_in->strings = strings;
1400 data_in->strings_len = len;
1401 data_in->globals_resolution = resolutions;
1402 data_in->reader_cache = streamer_tree_cache_create (false, false, true);
1403 return data_in;
1404 }
1405
1406
1407 /* Remove DATA_IN. */
1408
1409 void
1410 lto_data_in_delete (struct data_in *data_in)
1411 {
1412 data_in->globals_resolution.release ();
1413 streamer_tree_cache_delete (data_in->reader_cache);
1414 free (data_in);
1415 }