]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/lto-streamer.h
2010-06-07 Tobias Burnus <burnus@net-b.de>
[thirdparty/gcc.git] / gcc / lto-streamer.h
CommitLineData
7bfefa9d 1/* Data structures and declarations used for reading and writing
2 GIMPLE to a file stream.
3
7cf0dbf3 4 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
7bfefa9d 5 Contributed by Doug Kwan <dougkwan@google.com>
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation; either version 3, or (at your option) any later
12version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
22
23#ifndef GCC_LTO_STREAMER_H
24#define GCC_LTO_STREAMER_H
25
26#include "plugin-api.h"
27#include "tree.h"
28#include "gimple.h"
29#include "target.h"
30#include "cgraph.h"
31#include "vec.h"
32#include "vecprim.h"
a33890d0 33#include "alloc-pool.h"
7bfefa9d 34
35/* Define when debugging the LTO streamer. This causes the writer
36 to output the numeric value for the memory address of the tree node
37 being emitted. When debugging a problem in the reader, check the
38 original address that the writer was emitting using lto_orig_address_get.
39 With this value, set a breakpoint in the writer (e.g., lto_output_tree)
40 to trace how the faulty node is being emitted. */
41/* #define LTO_STREAMER_DEBUG 1 */
42
43/* The encoding for a function consists of the following sections:
44
45 1) The header.
46 2) FIELD_DECLS.
47 3) FUNCTION_DECLS.
48 4) global VAR_DECLS.
49 5) type_decls
50 6) types.
51 7) Names for the labels that have names
52 8) The SSA names.
53 9) The control flow graph.
54 10-11)Gimple for local decls.
55 12) Gimple for the function.
56 13) Strings.
57
58 1) THE HEADER.
59 2-6) THE GLOBAL DECLS AND TYPES.
60
61 The global decls and types are encoded in the same way. For each
62 entry, there is word with the offset within the section to the
63 entry.
64
48e1416a 65 7) THE LABEL NAMES.
7bfefa9d 66
67 Since most labels do not have names, this section my be of zero
68 length. It consists of an array of string table references, one
69 per label. In the lto code, the labels are given either
70 positive or negative indexes. the positive ones have names and
71 the negative ones do not. The positive index can be used to
72 find the name in this array.
73
48e1416a 74 9) THE CFG.
7bfefa9d 75
76 10) Index into the local decls. Since local decls can have local
77 decls inside them, they must be read in randomly in order to
48e1416a 78 properly restore them.
7bfefa9d 79
80 11-12) GIMPLE FOR THE LOCAL DECLS AND THE FUNCTION BODY.
81
82 The gimple consists of a set of records.
83
84 THE FUNCTION
48e1416a 85
7bfefa9d 86 At the top level of (8) is the function. It consists of five
87 pieces:
88
89 LTO_function - The tag.
90 eh tree - This is all of the exception handling regions
91 put out in a post order traversial of the
92 tree. Siblings are output as lists terminated
93 by a 0. The set of fields matches the fields
94 defined in except.c.
95
96 last_basic_block - in uleb128 form.
97
98 basic blocks - This is the set of basic blocks.
99
100 zero - The termination of the basic blocks.
101
102 BASIC BLOCKS
103
104 There are two forms of basic blocks depending on if they are
105 empty or not.
106
107 The basic block consists of:
108
109 LTO_bb1 or LTO_bb0 - The tag.
110
111 bb->index - the index in uleb128 form.
112
113 #succs - The number of successors un uleb128 form.
114
115 the successors - For each edge, a pair. The first of the
116 pair is the index of the successor in
117 uleb128 form and the second are the flags in
118 uleb128 form.
119
120 the statements - A gimple tree, as described above.
121 These are only present for LTO_BB1.
122 Following each statement is an optional
123 exception handling record LTO_eh_region
124 which contains the region number (for
125 regions >= 0).
126
127 zero - This is only present for LTO_BB1 and is used
128 to terminate the statements and exception
129 regions within this block.
130
131 12) STRINGS
132
133 String are represented in the table as pairs, a length in ULEB128
134 form followed by the data for the string. */
135
136/* The string that is the prefix on the section names we make for lto.
137 For decls the DECL_ASSEMBLER_NAME is appended to make the section
138 name for the functions and static_initializers. For other types of
139 sections a '.' and the section type are appended. */
140#define LTO_SECTION_NAME_PREFIX ".gnu.lto_"
141
142#define LTO_major_version 1
143#define LTO_minor_version 0
144
145typedef unsigned char lto_decl_flags_t;
146
147
148/* Data structures used to pack values and bitflags into a vector of
149 words. Used to stream values of a fixed number of bits in a space
150 efficient way. */
151static unsigned const BITS_PER_BITPACK_WORD = HOST_BITS_PER_WIDE_INT;
152
153typedef unsigned HOST_WIDE_INT bitpack_word_t;
154DEF_VEC_I(bitpack_word_t);
155DEF_VEC_ALLOC_I(bitpack_word_t, heap);
156
157struct bitpack_d
158{
159 /* Total number of bits packed/unpacked so far. */
160 size_t num_bits;
161
162 /* Values are stored contiguously, so there may be internal
163 fragmentation (words with unused bits). Therefore, we need to
164 keep track of the first available bit in the last word of the
165 bitpack. */
166 size_t first_unused_bit;
167
168 /* Vector of words holding the packed values. */
169 VEC(bitpack_word_t, heap) *values;
170};
171
172/* Tags representing the various IL objects written to the bytecode file
173 (GIMPLE statements, basic blocks, EH regions, tree nodes, etc).
174
175 NOTE, when adding new LTO tags, also update lto_tag_name. */
48e1416a 176enum LTO_tags
7bfefa9d 177{
178 LTO_null = 0,
179
180 /* Reserve enough entries to fit all the tree and gimple codes handled
181 by the streamer. This guarantees that:
182
183 1- Given a tree code C:
184 enum LTO_tags tag == C + 1
185
186 2- Given a gimple code C:
187 enum LTO_tags tag == C + NUM_TREE_CODES + 1
188
189 Conversely, to map between LTO tags and tree/gimple codes, the
190 reverse operation must be applied. */
191 LTO_bb0 = 1 + NUM_TREE_CODES + LAST_AND_UNUSED_GIMPLE_CODE,
192 LTO_bb1,
193
194 /* EH region holding the previous statement. */
195 LTO_eh_region,
196
197 /* An MD or NORMAL builtin. Only the code and class are streamed out. */
198 LTO_builtin_decl,
199
200 /* Function body. */
201 LTO_function,
202
203 /* EH table. */
204 LTO_eh_table,
205
206 /* EH region types. These mirror enum eh_region_type. */
207 LTO_ert_cleanup,
208 LTO_ert_try,
209 LTO_ert_allowed_exceptions,
210 LTO_ert_must_not_throw,
211
212 /* EH landing pad. */
213 LTO_eh_landing_pad,
214
215 /* EH try/catch node. */
216 LTO_eh_catch,
217
218 /* Special for global streamer. Reference to previously-streamed node. */
219 LTO_tree_pickle_reference,
220
221 /* References to indexable tree nodes. These objects are stored in
222 tables that are written separately from the function bodies that
223 reference them. This way they can be instantiated even when the
224 referencing functions aren't (e.g., during WPA) and it also allows
225 functions to be copied from one file to another without having
226 to unpickle the body first (the references are location
227 independent).
228
229 NOTE, do not regroup these values as the grouping is exposed
230 in the range checks done in lto_input_tree. */
231 LTO_field_decl_ref, /* Do not change. */
232 LTO_function_decl_ref,
233 LTO_label_decl_ref,
234 LTO_namespace_decl_ref,
235 LTO_result_decl_ref,
236 LTO_ssa_name_ref,
237 LTO_type_decl_ref,
238 LTO_type_ref,
239 LTO_const_decl_ref,
240 LTO_imported_decl_ref,
241 LTO_global_decl_ref, /* Do not change. */
242
243 /* This tag must always be last. */
244 LTO_NUM_TAGS
245};
246
247
248/* Set of section types that are in an LTO file. This list will grow
249 as the number of IPA passes grows since each IPA pass will need its
250 own section type to store its summary information.
251
252 When adding a new section type, you must also extend the
253 LTO_SECTION_NAME array in lto-section-in.c. */
254enum lto_section_type
255{
256 LTO_section_decls = 0,
257 LTO_section_function_body,
258 LTO_section_static_initializer,
259 LTO_section_cgraph,
0cddb138 260 LTO_section_varpool,
8d810329 261 LTO_section_refs,
8867b500 262 LTO_section_jump_functions,
7bfefa9d 263 LTO_section_ipa_pure_const,
264 LTO_section_ipa_reference,
265 LTO_section_symtab,
7bfefa9d 266 LTO_section_opts,
1bf41320 267 LTO_section_cgraph_opt_sum,
7bfefa9d 268 LTO_N_SECTION_TYPES /* Must be last. */
269};
270
271/* Indices to the various function, type and symbol streams. */
272typedef enum
273{
274 LTO_DECL_STREAM_TYPE = 0, /* Must be first. */
275 LTO_DECL_STREAM_FIELD_DECL,
276 LTO_DECL_STREAM_FN_DECL,
277 LTO_DECL_STREAM_VAR_DECL,
278 LTO_DECL_STREAM_TYPE_DECL,
279 LTO_DECL_STREAM_NAMESPACE_DECL,
280 LTO_DECL_STREAM_LABEL_DECL,
281 LTO_N_DECL_STREAMS
282} lto_decl_stream_e_t;
283
284typedef enum ld_plugin_symbol_resolution ld_plugin_symbol_resolution_t;
285DEF_VEC_I(ld_plugin_symbol_resolution_t);
286DEF_VEC_ALLOC_I(ld_plugin_symbol_resolution_t, heap);
287
288
289/* Macro to define convenience functions for type and decl streams
48e1416a 290 in lto_file_decl_data. */
7bfefa9d 291#define DEFINE_DECL_STREAM_FUNCS(UPPER_NAME, name) \
292static inline tree \
293lto_file_decl_data_get_ ## name (struct lto_file_decl_data *data, \
294 unsigned int idx) \
295{ \
296 struct lto_in_decl_state *state = data->current_decl_state; \
297 gcc_assert (idx < state->streams[LTO_DECL_STREAM_## UPPER_NAME].size); \
298 return state->streams[LTO_DECL_STREAM_## UPPER_NAME].trees[idx]; \
299} \
300\
301static inline unsigned int \
302lto_file_decl_data_num_ ## name ## s (struct lto_file_decl_data *data) \
303{ \
304 struct lto_in_decl_state *state = data->current_decl_state; \
305 return state->streams[LTO_DECL_STREAM_## UPPER_NAME].size; \
306}
307
308
309/* Return a char pointer to the start of a data stream for an lto pass
310 or function. The first parameter is the file data that contains
311 the information. The second parameter is the type of information
312 to be obtained. The third parameter is the name of the function
48e1416a 313 and is only used when finding a function body; otherwise it is
7bfefa9d 314 NULL. The fourth parameter is the length of the data returned. */
48e1416a 315typedef const char* (lto_get_section_data_f) (struct lto_file_decl_data *,
7bfefa9d 316 enum lto_section_type,
48e1416a 317 const char *,
7bfefa9d 318 size_t *);
319
320/* Return the data found from the above call. The first three
321 parameters are the same as above. The fourth parameter is the data
322 itself and the fifth is the lenght of the data. */
48e1416a 323typedef void (lto_free_section_data_f) (struct lto_file_decl_data *,
7bfefa9d 324 enum lto_section_type,
325 const char *,
326 const char *,
327 size_t);
328
329/* Cache of pickled nodes. Used to avoid writing the same node more
330 than once. The first time a tree node is streamed out, it is
331 entered in this cache. Subsequent references to the same node are
332 resolved by looking it up in this cache.
333
334 This is used in two ways:
335
336 - On the writing side, the first time T is added to STREAMER_CACHE,
337 a new reference index is created for T and T is emitted on the
338 stream. If T needs to be emitted again to the stream, instead of
339 pickling it again, the reference index is emitted.
340
341 - On the reading side, the first time T is read from the stream, it
342 is reconstructed in memory and a new reference index created for
343 T. The reconstructed T is inserted in some array so that when
344 the reference index for T is found in the input stream, it can be
345 used to look up into the array to get the reconstructed T. */
346struct lto_streamer_cache_d
347{
348 /* The mapping between tree nodes and slots into the nodes array. */
349 htab_t node_map;
350
a33890d0 351 /* Node map to store entries into. */
352 alloc_pool node_map_entries;
353
7bfefa9d 354 /* Next available slot in the nodes and offsets arrays. */
355 unsigned next_slot;
356
357 /* The nodes pickled so far. */
a0000c1f 358 VEC(tree,heap) *nodes;
7bfefa9d 359
360 /* Offset into the stream where the nodes have been written. */
361 VEC(unsigned,heap) *offsets;
362};
363
364
365/* Structure used as buffer for reading an LTO file. */
48e1416a 366struct lto_input_block
7bfefa9d 367{
368 const char *data;
369 unsigned int p;
370 unsigned int len;
371};
372
373#define LTO_INIT_INPUT_BLOCK(BASE,D,P,L) \
374 do { \
375 BASE.data = D; \
376 BASE.p = P; \
377 BASE.len = L; \
378 } while (0)
379
380#define LTO_INIT_INPUT_BLOCK_PTR(BASE,D,P,L) \
381 do { \
382 BASE->data = D; \
383 BASE->p = P; \
384 BASE->len = L; \
385 } while (0)
386
387
388/* The is the first part of the record for a function or constructor
389 in the .o file. */
390struct lto_header
391{
392 int16_t major_version;
393 int16_t minor_version;
394 enum lto_section_type section_type;
395};
396
397/* The header for a function body. */
398struct lto_function_header
399{
400 /* The header for all types of sections. */
401 struct lto_header lto_header;
402
403 /* Number of labels with names. */
404 int32_t num_named_labels;
405
406 /* Number of labels without names. */
407 int32_t num_unnamed_labels;
408
409 /* Size compressed or 0 if not compressed. */
410 int32_t compressed_size;
411
412 /* Size of names for named labels. */
413 int32_t named_label_size;
414
415 /* Size of the cfg. */
416 int32_t cfg_size;
417
418 /* Size of main gimple body of function. */
419 int32_t main_size;
420
421 /* Size of the string table. */
422 int32_t string_size;
423};
424
425
426/* Structure describing a symbol section. */
427struct lto_decl_header
428{
429 /* The header for all types of sections. */
430 struct lto_header lto_header;
431
432 /* Size of region for decl state. */
433 int32_t decl_state_size;
434
435 /* Number of nodes in globals stream. */
436 int32_t num_nodes;
437
438 /* Size of region for expressions, decls, types, etc. */
439 int32_t main_size;
440
441 /* Size of the string table. */
442 int32_t string_size;
443};
444
445
446/* Statistics gathered during LTO, WPA and LTRANS. */
447struct lto_stats_d
448{
449 unsigned HOST_WIDE_INT num_input_cgraph_nodes;
450 unsigned HOST_WIDE_INT num_output_cgraph_nodes;
451 unsigned HOST_WIDE_INT num_input_files;
452 unsigned HOST_WIDE_INT num_output_files;
453 unsigned HOST_WIDE_INT num_cgraph_partitions;
454 unsigned HOST_WIDE_INT section_size[LTO_N_SECTION_TYPES];
455 unsigned HOST_WIDE_INT num_function_bodies;
456 unsigned HOST_WIDE_INT num_trees[NUM_TREE_CODES];
457 unsigned HOST_WIDE_INT num_output_il_bytes;
458 unsigned HOST_WIDE_INT num_compressed_il_bytes;
459 unsigned HOST_WIDE_INT num_input_il_bytes;
460 unsigned HOST_WIDE_INT num_uncompressed_il_bytes;
461};
462
463/* Encoder data structure used to stream callgraph nodes. */
464struct lto_cgraph_encoder_d
465{
466 /* Map nodes to reference number. */
467 struct pointer_map_t *map;
468
469 /* Map reference number to node. */
470 VEC(cgraph_node_ptr,heap) *nodes;
02b2818c 471
472 /* Map of nodes where we want to output body. */
473 struct pointer_set_t *body;
7bfefa9d 474};
475
476typedef struct lto_cgraph_encoder_d *lto_cgraph_encoder_t;
477
02b2818c 478/* Return number of encoded nodes in ENCODER. */
479
480static inline int
481lto_cgraph_encoder_size (lto_cgraph_encoder_t encoder)
482{
483 return VEC_length (cgraph_node_ptr, encoder->nodes);
484}
485
486
a238367f 487/* Encoder data structure used to stream callgraph nodes. */
488struct lto_varpool_encoder_d
489{
490 /* Map nodes to reference number. */
491 struct pointer_map_t *map;
492
493 /* Map reference number to node. */
494 VEC(varpool_node_ptr,heap) *nodes;
495
496 /* Map of nodes where we want to output initializer. */
497 struct pointer_set_t *initializer;
498};
499typedef struct lto_varpool_encoder_d *lto_varpool_encoder_t;
500
8ade54d2 501/* Return number of encoded nodes in ENCODER. */
502
503static inline int
504lto_varpool_encoder_size (lto_varpool_encoder_t encoder)
505{
506 return VEC_length (varpool_node_ptr, encoder->nodes);
507}
508
7bfefa9d 509/* Mapping from indices to trees. */
57305941 510struct GTY(()) lto_tree_ref_table
7bfefa9d 511{
512 /* Array of referenced trees . */
57305941 513 tree * GTY((length ("%h.size"))) trees;
7bfefa9d 514
515 /* Size of array. */
516 unsigned int size;
517};
518
519
520/* Mapping between trees and slots in an array. */
521struct lto_decl_slot
522{
523 tree t;
524 int slot_num;
525};
526
527
528/* The lto_tree_ref_encoder struct is used to encode trees into indices. */
529
530struct lto_tree_ref_encoder
531{
532 htab_t tree_hash_table; /* Maps pointers to indices. */
533 unsigned int next_index; /* Next available index. */
534 VEC(tree,heap) *trees; /* Maps indices to pointers. */
535};
536
537
538/* Structure to hold states of input scope. */
57305941 539struct GTY(()) lto_in_decl_state
7bfefa9d 540{
541 /* Array of lto_in_decl_buffers to store type and decls streams. */
542 struct lto_tree_ref_table streams[LTO_N_DECL_STREAMS];
543
544 /* If this in-decl state is associated with a function. FN_DECL
545 point to the FUNCTION_DECL. */
546 tree fn_decl;
547};
548
549typedef struct lto_in_decl_state *lto_in_decl_state_ptr;
550
551
552/* The structure that holds all of the vectors of global types,
553 decls and cgraph nodes used in the serialization of this file. */
554struct lto_out_decl_state
555{
556 /* The buffers contain the sets of decls of various kinds and types we have
557 seen so far and the indexes assigned to them. */
558 struct lto_tree_ref_encoder streams[LTO_N_DECL_STREAMS];
559
560 /* Encoder for cgraph nodes. */
561 lto_cgraph_encoder_t cgraph_node_encoder;
562
a238367f 563 /* Encoder for varpool nodes. */
564 lto_varpool_encoder_t varpool_node_encoder;
565
7bfefa9d 566 /* If this out-decl state belongs to a function, fn_decl points to that
567 function. Otherwise, it is NULL. */
568 tree fn_decl;
569};
570
571typedef struct lto_out_decl_state *lto_out_decl_state_ptr;
572
573DEF_VEC_P(lto_out_decl_state_ptr);
574DEF_VEC_ALLOC_P(lto_out_decl_state_ptr, heap);
575
576/* One of these is allocated for each object file that being compiled
577 by lto. This structure contains the tables that are needed by the
578 serialized functions and ipa passes to connect themselves to the
579 global types and decls as they are reconstituted. */
57305941 580struct GTY(()) lto_file_decl_data
7bfefa9d 581{
582 /* Decl state currently used. */
583 struct lto_in_decl_state *current_decl_state;
584
585 /* Decl state corresponding to regions outside of any functions
586 in the compilation unit. */
587 struct lto_in_decl_state *global_decl_state;
588
589 /* Table of cgraph nodes present in this file. */
57305941 590 lto_cgraph_encoder_t GTY((skip)) cgraph_node_encoder;
7bfefa9d 591
a238367f 592 /* Table of varpool nodes present in this file. */
593 lto_varpool_encoder_t GTY((skip)) varpool_node_encoder;
594
7bfefa9d 595 /* Hash table maps lto-related section names to location in file. */
57305941 596 htab_t GTY((param_is (struct lto_in_decl_state))) function_decl_states;
7bfefa9d 597
598 /* The .o file that these offsets relate to. */
57305941 599 const char *GTY((skip)) file_name;
7bfefa9d 600
7bfefa9d 601 /* Hash table maps lto-related section names to location in file. */
57305941 602 htab_t GTY((skip)) section_hash_table;
7bfefa9d 603
604 /* Hash new name of renamed global declaration to its original name. */
57305941 605 htab_t GTY((skip)) renaming_hash_table;
7bfefa9d 606};
607
608struct lto_char_ptr_base
609{
610 char *ptr;
611};
612
613/* An incore byte stream to buffer the various parts of the function.
614 The entire structure should be zeroed when created. The record
615 consists of a set of blocks. The first sizeof (ptr) bytes are used
616 as a chain, and the rest store the bytes to be written. */
617struct lto_output_stream
618{
619 /* The pointer to the first block in the stream. */
620 struct lto_char_ptr_base * first_block;
621
622 /* The pointer to the last and current block in the stream. */
623 struct lto_char_ptr_base * current_block;
624
625 /* The pointer to where the next char should be written. */
626 char * current_pointer;
627
628 /* The number of characters left in the current block. */
629 unsigned int left_in_block;
630
631 /* The block size of the last block allocated. */
632 unsigned int block_size;
633
634 /* The total number of characters written. */
635 unsigned int total_size;
636};
637
638/* The is the first part of the record in an LTO file for many of the
639 IPA passes. */
640struct lto_simple_header
641{
642 /* The header for all types of sections. */
643 struct lto_header lto_header;
644
645 /* Size of main gimple body of function. */
646 int32_t main_size;
647
648 /* Size of main stream when compressed. */
649 int32_t compressed_size;
650};
651
652/* A simple output block. This can be used for simple IPA passes that
653 do not need more than one stream. */
654struct lto_simple_output_block
655{
656 enum lto_section_type section_type;
657 struct lto_out_decl_state *decl_state;
658
659 /* The stream that the main tree codes are written to. */
660 struct lto_output_stream *main_stream;
661};
662
663/* Data structure holding all the data and descriptors used when writing
664 an LTO file. */
665struct output_block
666{
667 enum lto_section_type section_type;
668 struct lto_out_decl_state *decl_state;
669
670 /* The stream that the main tree codes are written to. */
671 struct lto_output_stream *main_stream;
672
673 /* The stream that contains the string table. */
674 struct lto_output_stream *string_stream;
675
676 /* The stream that contains the cfg. */
677 struct lto_output_stream *cfg_stream;
678
679 /* The hash table that contains the set of strings we have seen so
680 far and the indexes assigned to them. */
681 htab_t string_hash_table;
682
683 /* The current cgraph_node that we are currently serializing. Null
684 if we are serializing something else. */
685 struct cgraph_node *cgraph_node;
686
687 /* These are the last file and line that were seen in the stream.
688 If the current node differs from these, it needs to insert
689 something into the stream and fix these up. */
690 const char *current_file;
691 int current_line;
692 int current_col;
693
694 /* True if writing globals and types. */
695 bool global;
696
697 /* Cache of nodes written in this section. */
698 struct lto_streamer_cache_d *writer_cache;
699};
700
701
702/* Data and descriptors used when reading from an LTO file. */
703struct data_in
704{
705 /* The global decls and types. */
706 struct lto_file_decl_data *file_data;
707
708 /* All of the labels. */
709 tree *labels;
710
711 /* The string table. */
712 const char *strings;
713
714 /* The length of the string table. */
715 unsigned int strings_len;
716
717 /* Number of named labels. Used to find the index of unnamed labels
718 since they share space with the named labels. */
48e1416a 719 unsigned int num_named_labels;
7bfefa9d 720
721 /* Number of unnamed labels. */
722 unsigned int num_unnamed_labels;
723
724 const char *current_file;
725 int current_line;
726 int current_col;
727
728 /* Maps each reference number to the resolution done by the linker. */
729 VEC(ld_plugin_symbol_resolution_t,heap) *globals_resolution;
730
731 /* Cache of pickled nodes. */
732 struct lto_streamer_cache_d *reader_cache;
733};
734
735
736/* In lto-section-in.c */
737extern struct lto_input_block * lto_create_simple_input_block (
48e1416a 738 struct lto_file_decl_data *,
7bfefa9d 739 enum lto_section_type, const char **, size_t *);
740extern void
48e1416a 741lto_destroy_simple_input_block (struct lto_file_decl_data *,
7bfefa9d 742 enum lto_section_type,
743 struct lto_input_block *, const char *, size_t);
48e1416a 744extern void lto_set_in_hooks (struct lto_file_decl_data **,
7bfefa9d 745 lto_get_section_data_f *,
746 lto_free_section_data_f *);
747extern struct lto_file_decl_data **lto_get_file_decl_data (void);
748extern const char *lto_get_section_data (struct lto_file_decl_data *,
749 enum lto_section_type,
750 const char *, size_t *);
751extern void lto_free_section_data (struct lto_file_decl_data *,
752 enum lto_section_type,
753 const char *, const char *, size_t);
754extern unsigned char lto_input_1_unsigned (struct lto_input_block *);
755extern unsigned HOST_WIDE_INT lto_input_uleb128 (struct lto_input_block *);
756extern unsigned HOST_WIDEST_INT lto_input_widest_uint_uleb128 (
757 struct lto_input_block *);
758extern HOST_WIDE_INT lto_input_sleb128 (struct lto_input_block *);
759extern htab_t lto_create_renaming_table (void);
760extern void lto_record_renamed_decl (struct lto_file_decl_data *,
761 const char *, const char *);
762extern const char *lto_get_decl_name_mapping (struct lto_file_decl_data *,
763 const char *);
764extern struct lto_in_decl_state *lto_new_in_decl_state (void);
765extern void lto_delete_in_decl_state (struct lto_in_decl_state *);
766extern hashval_t lto_hash_in_decl_state (const void *);
767extern int lto_eq_in_decl_state (const void *, const void *);
768extern struct lto_in_decl_state *lto_get_function_in_decl_state (
769 struct lto_file_decl_data *, tree);
770
771/* In lto-section-out.c */
772extern hashval_t lto_hash_decl_slot_node (const void *);
773extern int lto_eq_decl_slot_node (const void *, const void *);
774extern hashval_t lto_hash_type_slot_node (const void *);
775extern int lto_eq_type_slot_node (const void *, const void *);
776extern void lto_begin_section (const char *, bool);
777extern void lto_end_section (void);
778extern void lto_write_stream (struct lto_output_stream *);
779extern void lto_output_1_stream (struct lto_output_stream *, char);
780extern void lto_output_data_stream (struct lto_output_stream *, const void *,
781 size_t);
782extern void lto_output_uleb128_stream (struct lto_output_stream *,
783 unsigned HOST_WIDE_INT);
784extern void lto_output_widest_uint_uleb128_stream (struct lto_output_stream *,
785 unsigned HOST_WIDEST_INT);
786extern void lto_output_sleb128_stream (struct lto_output_stream *,
787 HOST_WIDE_INT);
788extern bool lto_output_decl_index (struct lto_output_stream *,
789 struct lto_tree_ref_encoder *,
790 tree, unsigned int *);
791extern void lto_output_field_decl_index (struct lto_out_decl_state *,
792 struct lto_output_stream *, tree);
793extern void lto_output_fn_decl_index (struct lto_out_decl_state *,
794 struct lto_output_stream *, tree);
795extern void lto_output_namespace_decl_index (struct lto_out_decl_state *,
796 struct lto_output_stream *, tree);
797extern void lto_output_var_decl_index (struct lto_out_decl_state *,
798 struct lto_output_stream *, tree);
799extern void lto_output_type_decl_index (struct lto_out_decl_state *,
800 struct lto_output_stream *, tree);
801extern void lto_output_type_ref_index (struct lto_out_decl_state *,
802 struct lto_output_stream *, tree);
803extern struct lto_simple_output_block *lto_create_simple_output_block (
804 enum lto_section_type);
805extern void lto_destroy_simple_output_block (struct lto_simple_output_block *);
806extern struct lto_out_decl_state *lto_new_out_decl_state (void);
807extern void lto_delete_out_decl_state (struct lto_out_decl_state *);
808extern struct lto_out_decl_state *lto_get_out_decl_state (void);
809extern void lto_push_out_decl_state (struct lto_out_decl_state *);
810extern struct lto_out_decl_state *lto_pop_out_decl_state (void);
811extern void lto_record_function_out_decl_state (tree,
812 struct lto_out_decl_state *);
7bfefa9d 813
814
815/* In lto-streamer.c. */
816extern const char *lto_tag_name (enum LTO_tags);
817extern bitmap lto_bitmap_alloc (void);
818extern void lto_bitmap_free (bitmap);
819extern char *lto_get_section_name (int, const char *);
820extern void print_lto_report (void);
821extern struct bitpack_d *bitpack_create (void);
822extern void bitpack_delete (struct bitpack_d *);
823extern void bp_pack_value (struct bitpack_d *, bitpack_word_t, unsigned);
824extern bitpack_word_t bp_unpack_value (struct bitpack_d *, unsigned);
825extern bool lto_streamer_cache_insert (struct lto_streamer_cache_d *, tree,
826 int *, unsigned *);
827extern bool lto_streamer_cache_insert_at (struct lto_streamer_cache_d *, tree,
828 int);
829extern bool lto_streamer_cache_lookup (struct lto_streamer_cache_d *, tree,
830 int *);
831extern tree lto_streamer_cache_get (struct lto_streamer_cache_d *, int);
832extern struct lto_streamer_cache_d *lto_streamer_cache_create (void);
833extern void lto_streamer_cache_delete (struct lto_streamer_cache_d *);
834extern void lto_streamer_init (void);
835extern bool gate_lto_out (void);
836#ifdef LTO_STREAMER_DEBUG
837extern void lto_orig_address_map (tree, intptr_t);
838extern intptr_t lto_orig_address_get (tree);
839extern void lto_orig_address_remove (tree);
840#endif
841extern void lto_check_version (int, int);
842
843
844/* In lto-streamer-in.c */
7bfefa9d 845extern void lto_input_cgraph (struct lto_file_decl_data *, const char *);
846extern void lto_init_reader (void);
847extern tree lto_input_tree (struct lto_input_block *, struct data_in *);
848extern void lto_input_function_body (struct lto_file_decl_data *, tree,
849 const char *);
850extern void lto_input_constructors_and_inits (struct lto_file_decl_data *,
851 const char *);
852extern struct bitpack_d *lto_input_bitpack (struct lto_input_block *);
853extern void lto_init_reader (void);
854extern struct data_in *lto_data_in_create (struct lto_file_decl_data *,
855 const char *, unsigned,
856 VEC(ld_plugin_symbol_resolution_t,heap) *);
857extern void lto_data_in_delete (struct data_in *);
7bfefa9d 858
859
860/* In lto-streamer-out.c */
861extern void lto_register_decl_definition (tree, struct lto_file_decl_data *);
862extern struct output_block *create_output_block (enum lto_section_type);
863extern void destroy_output_block (struct output_block *);
864extern void lto_output_tree (struct output_block *, tree, bool);
865extern void lto_output_bitpack (struct lto_output_stream *, struct bitpack_d *);
8867b500 866extern void produce_asm (struct output_block *ob, tree fn);
7bfefa9d 867
868
869/* In lto-cgraph.c */
870struct cgraph_node *lto_cgraph_encoder_deref (lto_cgraph_encoder_t, int);
871int lto_cgraph_encoder_lookup (lto_cgraph_encoder_t, struct cgraph_node *);
872lto_cgraph_encoder_t lto_cgraph_encoder_new (void);
873int lto_cgraph_encoder_encode (lto_cgraph_encoder_t, struct cgraph_node *);
a238367f 874void lto_cgraph_encoder_delete (lto_cgraph_encoder_t);
02b2818c 875bool lto_cgraph_encoder_encode_body_p (lto_cgraph_encoder_t,
876 struct cgraph_node *);
877
878bool lto_varpool_encoder_encode_body_p (lto_varpool_encoder_t,
879 struct varpool_node *);
a238367f 880struct varpool_node *lto_varpool_encoder_deref (lto_varpool_encoder_t, int);
881int lto_varpool_encoder_lookup (lto_varpool_encoder_t, struct varpool_node *);
882lto_varpool_encoder_t lto_varpool_encoder_new (void);
883int lto_varpool_encoder_encode (lto_varpool_encoder_t, struct varpool_node *);
884void lto_varpool_encoder_delete (lto_varpool_encoder_t);
885bool lto_varpool_encoder_encode_initializer_p (lto_varpool_encoder_t,
886 struct varpool_node *);
887void output_cgraph (cgraph_node_set, varpool_node_set);
7bfefa9d 888void input_cgraph (void);
8d810329 889bool referenced_from_other_partition_p (struct ipa_ref_list *,
890 cgraph_node_set,
891 varpool_node_set vset);
25429dc2 892bool reachable_from_other_partition_p (struct cgraph_node *,
893 cgraph_node_set);
d97be713 894bool referenced_from_this_partition_p (struct ipa_ref_list *,
895 cgraph_node_set,
896 varpool_node_set vset);
897bool reachable_from_this_partition_p (struct cgraph_node *,
898 cgraph_node_set);
899void compute_ltrans_boundary (struct lto_out_decl_state *state,
900 cgraph_node_set, varpool_node_set);
7bfefa9d 901
902
903/* In lto-symtab.c. */
fd193bcd 904extern void lto_symtab_register_decl (tree, ld_plugin_symbol_resolution_t,
905 struct lto_file_decl_data *);
906extern void lto_symtab_merge_decls (void);
21ce3cc7 907extern void lto_symtab_merge_cgraph_nodes (void);
7bfefa9d 908extern tree lto_symtab_prevailing_decl (tree decl);
909extern enum ld_plugin_symbol_resolution lto_symtab_get_resolution (tree decl);
25429dc2 910extern void lto_symtab_free (void);
7bfefa9d 911
912
913/* In lto-opts.c. */
914extern void lto_register_user_option (size_t, const char *, int, int);
915extern void lto_read_file_options (struct lto_file_decl_data *);
916extern void lto_write_options (void);
917extern void lto_reissue_options (void);
918void lto_clear_user_options (void);
919void lto_clear_file_options (void);
920
921
922/* In lto-wpa-fixup.c */
923void lto_mark_nothrow_fndecl (tree);
924void lto_fixup_nothrow_decls (void);
925
926
927/* Statistics gathered during LTO, WPA and LTRANS. */
928extern struct lto_stats_d lto_stats;
929
930/* Section names corresponding to the values of enum lto_section_type. */
931extern const char *lto_section_name[];
932
933/* Holds all the out decl states of functions output so far in the
934 current output file. */
935extern VEC(lto_out_decl_state_ptr, heap) *lto_function_decl_states;
936
937/* Return true if LTO tag TAG corresponds to a tree code. */
938static inline bool
939lto_tag_is_tree_code_p (enum LTO_tags tag)
940{
941 return tag > LTO_null && (unsigned) tag <= NUM_TREE_CODES;
942}
943
944
945/* Return true if LTO tag TAG corresponds to a gimple code. */
946static inline bool
947lto_tag_is_gimple_code_p (enum LTO_tags tag)
948{
949 return (unsigned) tag >= NUM_TREE_CODES + 1
950 && (unsigned) tag < 1 + NUM_TREE_CODES + LAST_AND_UNUSED_GIMPLE_CODE;
951}
952
953
954/* Return the LTO tag corresponding to gimple code CODE. See enum
955 LTO_tags for details on the conversion. */
956static inline enum LTO_tags
957lto_gimple_code_to_tag (enum gimple_code code)
958{
959 return (enum LTO_tags) ((unsigned) code + NUM_TREE_CODES + 1);
960}
961
962
963/* Return the GIMPLE code corresponding to TAG. See enum LTO_tags for
964 details on the conversion. */
965static inline enum gimple_code
966lto_tag_to_gimple_code (enum LTO_tags tag)
967{
968 gcc_assert (lto_tag_is_gimple_code_p (tag));
969 return (enum gimple_code) ((unsigned) tag - NUM_TREE_CODES - 1);
970}
971
972
973/* Return the LTO tag corresponding to tree code CODE. See enum
974 LTO_tags for details on the conversion. */
975static inline enum LTO_tags
976lto_tree_code_to_tag (enum tree_code code)
977{
978 return (enum LTO_tags) ((unsigned) code + 1);
979}
980
981
982/* Return the tree code corresponding to TAG. See enum LTO_tags for
983 details on the conversion. */
984static inline enum tree_code
985lto_tag_to_tree_code (enum LTO_tags tag)
986{
987 gcc_assert (lto_tag_is_tree_code_p (tag));
988 return (enum tree_code) ((unsigned) tag - 1);
989}
990
7bfefa9d 991/* Initialize an lto_out_decl_buffer ENCODER. */
992static inline void
993lto_init_tree_ref_encoder (struct lto_tree_ref_encoder *encoder,
994 htab_hash hash_fn, htab_eq eq_fn)
995{
996 encoder->tree_hash_table = htab_create (37, hash_fn, eq_fn, free);
997 encoder->next_index = 0;
998 encoder->trees = NULL;
999}
1000
1001
1002/* Destory an lto_tree_ref_encoder ENCODER by freeing its contents. The
1003 memory used by ENCODER is not freed by this function. */
1004static inline void
1005lto_destroy_tree_ref_encoder (struct lto_tree_ref_encoder *encoder)
1006{
1007 /* Hash table may be delete already. */
1008 if (encoder->tree_hash_table)
1009 htab_delete (encoder->tree_hash_table);
1010 VEC_free (tree, heap, encoder->trees);
1011}
1012
1013/* Return the number of trees encoded in ENCODER. */
1014static inline unsigned int
1015lto_tree_ref_encoder_size (struct lto_tree_ref_encoder *encoder)
1016{
1017 return VEC_length (tree, encoder->trees);
1018}
1019
1020/* Return the IDX-th tree in ENCODER. */
1021static inline tree
1022lto_tree_ref_encoder_get_tree (struct lto_tree_ref_encoder *encoder,
1023 unsigned int idx)
1024{
1025 return VEC_index (tree, encoder->trees, idx);
1026}
1027
1028
1029/* Return true if LABEL should be emitted in the global context. */
1030static inline bool
1031emit_label_in_global_context_p (tree label)
1032{
1033 return DECL_NONLOCAL (label) || FORCED_LABEL (label);
1034}
1035
1036/* Return true if tree node EXPR should be streamed as a builtin. For
1037 these nodes, we just emit the class and function code. */
1038static inline bool
1039lto_stream_as_builtin_p (tree expr)
1040{
1041 return (TREE_CODE (expr) == FUNCTION_DECL
1042 && DECL_IS_BUILTIN (expr)
1043 && (DECL_BUILT_IN_CLASS (expr) == BUILT_IN_NORMAL
1044 || DECL_BUILT_IN_CLASS (expr) == BUILT_IN_MD));
1045}
1046
1047/* Return true if EXPR is a tree node that can be written to disk. */
1048static inline bool
1049lto_is_streamable (tree expr)
1050{
1051 enum tree_code code = TREE_CODE (expr);
1052
1053 /* Notice that we reject SSA_NAMEs as well. We only emit the SSA
1054 name version in lto_output_tree_ref (see output_ssa_names). */
1055 return !is_lang_specific (expr)
1056 && code != SSA_NAME
1057 && code != CALL_EXPR
1058 && code != LANG_TYPE
1059 && code != MODIFY_EXPR
1060 && code != INIT_EXPR
1061 && code != TARGET_EXPR
1062 && code != BIND_EXPR
1063 && code != WITH_CLEANUP_EXPR
1064 && code != STATEMENT_LIST
1065 && (code == CASE_LABEL_EXPR
1066 || code == DECL_EXPR
1067 || TREE_CODE_CLASS (code) != tcc_statement);
1068}
1069
1070DEFINE_DECL_STREAM_FUNCS (TYPE, type)
1071DEFINE_DECL_STREAM_FUNCS (FIELD_DECL, field_decl)
1072DEFINE_DECL_STREAM_FUNCS (FN_DECL, fn_decl)
1073DEFINE_DECL_STREAM_FUNCS (VAR_DECL, var_decl)
1074DEFINE_DECL_STREAM_FUNCS (TYPE_DECL, type_decl)
1075DEFINE_DECL_STREAM_FUNCS (NAMESPACE_DECL, namespace_decl)
1076DEFINE_DECL_STREAM_FUNCS (LABEL_DECL, label_decl)
1077
1078#endif /* GCC_LTO_STREAMER_H */