GCC Middle and Back End API Reference
lto-streamer.h
Go to the documentation of this file.
1/* Data structures and declarations used for reading and writing
2 GIMPLE to a file stream.
3
4 Copyright (C) 2009-2026 Free Software Foundation, Inc.
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 "gcov-io.h"
28#include "diagnostic.h"
29#include "version.h"
30
31/* The encoding for a function consists of the following sections:
32
33 1) The header.
34 2) FIELD_DECLS.
35 3) FUNCTION_DECLS.
36 4) global VAR_DECLS.
37 5) type_decls
38 6) types.
39 7) Names for the labels that have names
40 8) The SSA names.
41 9) The control flow graph.
42 10-11)Gimple for local decls.
43 12) Gimple for the function.
44 13) Strings.
45
46 1) THE HEADER.
47 2-6) THE GLOBAL DECLS AND TYPES.
48
49 The global decls and types are encoded in the same way. For each
50 entry, there is word with the offset within the section to the
51 entry.
52
53 7) THE LABEL NAMES.
54
55 Since most labels do not have names, this section my be of zero
56 length. It consists of an array of string table references, one
57 per label. In the lto code, the labels are given either
58 positive or negative indexes. the positive ones have names and
59 the negative ones do not. The positive index can be used to
60 find the name in this array.
61
62 9) THE CFG.
63
64 10) Index into the local decls. Since local decls can have local
65 decls inside them, they must be read in randomly in order to
66 properly restore them.
67
68 11-12) GIMPLE FOR THE LOCAL DECLS AND THE FUNCTION BODY.
69
70 The gimple consists of a set of records.
71
72 THE FUNCTION
73
74 At the top level of (8) is the function. It consists of five
75 pieces:
76
77 LTO_function - The tag.
78 eh tree - This is all of the exception handling regions
79 put out in a post order traversial of the
80 tree. Siblings are output as lists terminated
81 by a 0. The set of fields matches the fields
82 defined in except.cc.
83
84 last_basic_block - in uleb128 form.
85
86 basic blocks - This is the set of basic blocks.
87
88 zero - The termination of the basic blocks.
89
90 BASIC BLOCKS
91
92 There are two forms of basic blocks depending on if they are
93 empty or not.
94
95 The basic block consists of:
96
97 LTO_bb1 or LTO_bb0 - The tag.
98
99 bb->index - the index in uleb128 form.
100
101 #succs - The number of successors un uleb128 form.
102
103 the successors - For each edge, a pair. The first of the
104 pair is the index of the successor in
105 uleb128 form and the second are the flags in
106 uleb128 form.
107
108 the statements - A gimple tree, as described above.
109 These are only present for LTO_BB1.
110 Following each statement is an optional
111 exception handling record LTO_eh_region
112 which contains the region number (for
113 regions >= 0).
114
115 zero - This is only present for LTO_BB1 and is used
116 to terminate the statements and exception
117 regions within this block.
118
119 13) STRINGS
120
121 String are represented in the table as pairs, a length in ULEB128
122 form followed by the data for the string. */
123
124#define LTO_major_version GCC_major_version
125#define LTO_minor_version 0
126
127typedef unsigned char lto_decl_flags_t;
128
129/* Tags representing the various IL objects written to the bytecode file
130 (GIMPLE statements, basic blocks, EH regions, tree nodes, etc).
131
132 NOTE, when adding new LTO tags, also update lto_tag_name. */
134{
136
137 /* Reference to previously-streamed node. */
139
140 /* References to indexable tree nodes. These objects are stored in
141 tables that are written separately from the function bodies
142 and variable constructors that reference them. This way they can be
143 instantiated even when the referencing functions aren't (e.g., during WPA)
144 and it also allows functions to be copied from one file to another without
145 having to unpickle the body first (the references are location
146 independent). */
148
150
151 /* Special for global streamer. A blob of unnamed tree nodes. */
153
154 /* Sequence of trees. */
156
157 /* Shared INTEGER_CST node. */
159
160 /* Tags of trees are encoded as
161 LTO_first_tree_tag + TREE_CODE. */
163 /* Tags of gimple tuples are encoded as
164 LTO_first_gimple_tag + gimple_code. */
166
167 /* Entry and exit basic blocks. */
168 LTO_bb0 = LTO_first_gimple_tag + LAST_AND_UNUSED_GIMPLE_CODE,
170
171 /* EH region holding the previous statement. */
173
174 /* Function body. */
176
177 /* EH table. */
179
180 /* EH region types. These mirror enum eh_region_type. */
185
186 /* EH landing pad. */
188
189 /* EH try/catch node. */
191
192 /* This tag must always be last. */
194};
195
196
197/* Set of section types that are in an LTO file. This list will grow
198 as the number of IPA passes grows since each IPA pass will need its
199 own section type to store its summary information.
200
201 When adding a new section type, you must also extend the
202 LTO_SECTION_NAME array in lto-section-in.cc. */
231
232/* Indices to the various function, type and symbol streams. */
234{
235 LTO_DECL_STREAM = 0, /* Must be first. */
237};
238
239typedef enum ld_plugin_symbol_resolution ld_plugin_symbol_resolution_t;
240
241/* Return a char pointer to the start of a data stream for an lto pass
242 or function. The first parameter is the file data that contains
243 the information. The second parameter is the type of information
244 to be obtained. The third parameter is the name of the function
245 and is only used when finding a function body; otherwise it is
246 NULL. The fourth parameter is the length of the data returned. */
247typedef const char* (lto_get_section_data_f) (struct lto_file_decl_data *,
248 enum lto_section_type,
249 const char *,
250 int,
251 size_t *);
252
253/* Return the data found from the above call. The first three
254 parameters are the same as above. The fourth parameter is the data
255 itself and the fifth is the length of the data. */
257 enum lto_section_type,
258 const char *,
259 const char *,
260 size_t);
261
262/* Structure to map ordinary_map indices from streamed-in data to
263 the linemap they correspond to. */
264struct GTY(()) lto_loc_map
265{
266 size_t nmaps;
267 size_t map[1];
268};
269
270/* The location cache holds the ancillary data for streamed in trees. This is
271 done to reduce memory usage in the libcpp linemap; we don't need to create an
272 adhoc location and store the ancillary data if the tree ends up being
273 merged. */
275{
276public:
277 /* Apply all changes in location cache. Add locations into linemap and patch
278 trees. */
279 bool apply_location_cache ();
280 /* Tree merging did not succeed; mark all changes in the cache as
281 accepted. */
282 void accept_location_cache ();
283 /* Tree merging did succeed; throw away recent changes. */
284 void revert_location_cache ();
285 void input_location (location_t *dest, struct bitpack_d *bp,
286 class data_in *data_in);
287 void input_location_and_block (location_t *dest, struct bitpack_d *bp,
288 class lto_input_block *ib,
289 class data_in *data_in);
290 void set_linemap_offset (unsigned offset) { linemap_offset = offset; }
291
293 : decl_data{loc_data}
294 {
295 if (decl_data)
296 {
298 current_cache = this;
299 }
300 }
302 {
303 if (decl_data)
304 {
306 gcc_assert (current_cache == this);
308 }
309 }
310
311 /* There can be at most one active instance of location_cache, so that IPA
312 passes can find it if needed; point to current one. */
314
315private:
317 {
318 location_t *dest;
319 location_t loc;
321 unsigned discr;
322 };
323
324 /* Which linemap section we are using. */
326 const lto_loc_map *cur_loc_map = nullptr;
327 unsigned linemap_offset = 0;
328
329 /* The location cache. */
331
332 /* These keep track of most recently seen values as they are streamed in. */
334 unsigned stream_discr = 0;
335 size_t stream_map_idx = 0;
336 location_t stream_loc_offset = 0;
337 unsigned stream_linemap_order = -1U;
338
339 /* These keep track of most recently accepted values. */
342
343 /* Accepted entries are ones used by trees that are known to be not unified
344 by tree merging. */
345 unsigned accepted_length = 0;
346};
347
348/* Structure used as buffer for reading an LTO file. */
350{
351public:
352 /* Special constructor for the string table, it abuses this to
353 do random access but use the uhwi decoder. */
354 lto_input_block (const char *data_, unsigned int p_, unsigned int len_,
355 const lto_file_decl_data *file_data_)
356 : data (data_), file_data (file_data_), p (p_), len (len_) {}
357 lto_input_block (const char *data_, unsigned int len_,
358 const lto_file_decl_data *file_data_)
359 : data (data_), file_data (file_data_), p (0), len (len_) {}
360
361 const char *data;
363 unsigned int p;
364 unsigned int len;
365};
366
367/* Compression algorithm used for compression of LTO bytecode. */
368
374
375/* Structure that represents LTO ELF section with information
376 about the format. */
377
379{
382 unsigned char slim_object;
383 unsigned char _padding;
384
385 /* Flags is a private field that is not defined publicly. */
386 uint16_t flags;
387
388 /* Set compression to FLAGS. */
390 {
391 flags = c;
392 }
393
394 /* Get compression from FLAGS. */
396 {
397 return (lto_compression) flags;
398 }
399};
400
402
403/* The is the first part of the record in an LTO file for many of the
404 IPA passes. */
406{
407 /* Size of main gimple body of function. */
408 int32_t main_size;
409};
410
412{
413 /* Size of the string table. */
414 int32_t string_size;
415};
416
417/* The header for a function body. */
419{
420 /* Size of the cfg. */
421 int32_t cfg_size;
422};
423
424
425/* Structure describing a symbol section. */
427{
428 /* Size of region for decl state. */
430
431 /* Number of nodes in globals stream. */
432 int32_t num_nodes;
433};
434
435
436/* Statistics gathered during LTO, WPA and LTRANS. */
438{
439 unsigned HOST_WIDE_INT num_input_cgraph_nodes;
440 unsigned HOST_WIDE_INT num_output_symtab_nodes;
441 unsigned HOST_WIDE_INT num_input_files;
442 unsigned HOST_WIDE_INT num_output_files;
443 unsigned HOST_WIDE_INT num_cgraph_partitions;
444 unsigned HOST_WIDE_INT section_size[LTO_N_SECTION_TYPES];
445 unsigned HOST_WIDE_INT num_function_bodies;
446 unsigned HOST_WIDE_INT num_trees[NUM_TREE_CODES];
447 unsigned HOST_WIDE_INT num_output_il_bytes;
448 unsigned HOST_WIDE_INT num_compressed_il_bytes;
449 unsigned HOST_WIDE_INT num_input_il_bytes;
450 unsigned HOST_WIDE_INT num_uncompressed_il_bytes;
451 unsigned HOST_WIDE_INT num_tree_bodies_output;
452 unsigned HOST_WIDE_INT num_pickle_refs_output;
453};
454
455/* Entry of LTO symtab encoder. */
457{
458 /* Constructor. */
463
465 /* Is the node in this partition (i.e. ltrans of this partition will
466 be responsible for outputting it)? */
467 unsigned int in_partition:1;
468 /* Do we encode body in this partition? */
469 unsigned int body:1;
470 /* Do we stream this node only for inlining? */
471 unsigned int only_for_inlining:1;
472 /* Do we encode initializer in this partition?
473 For example the readonly variable initializers are encoded to aid
474 constant folding even if they are not in the partition. */
475 unsigned int initializer:1;
476};
477
478
479/* Encoder data structure used to stream callgraph nodes. */
481{
484
485 /* Mapping of input order of nodes onto output order. */
486 hash_map<int_hash<int, -1, -2>, int> *order_remap;
487};
488
490
491/* Iterator structure for cgraph node sets. */
497
498
499
500/* The lto_tree_ref_encoder struct is used to encode trees into indices. */
501
503{
504 hash_map<tree, unsigned> *tree_hash_table; /* Maps pointers to indices. */
505 vec<tree> trees; /* Maps indices to pointers. */
506};
507
508
509/* Structure to hold states of input scope. */
510struct GTY((for_user)) lto_in_decl_state
511{
512 /* Array of lto_in_decl_buffers to store type and decls streams. */
514
515 /* If this in-decl state is associated with a function. FN_DECL
516 point to the FUNCTION_DECL. */
518
519 /* True if decl state is compressed. */
521
522 /* Order of the linemap section to be used for interpreting the locations
523 streamed for this decl. */
524 unsigned linemap_id;
525};
526
528
529struct decl_state_hasher : ggc_ptr_hash<lto_in_decl_state>
530{
531 static hashval_t
533 {
534 return htab_hash_pointer (s->fn_decl);
535 }
536
537 static bool
539 {
540 return a->fn_decl == b->fn_decl;
541 }
542};
543
544/* The structure that holds all of the vectors of global types,
545 decls and cgraph nodes used in the serialization of this file. */
547{
548 /* The buffers contain the sets of decls of various kinds and types we have
549 seen so far and the indexes assigned to them. */
551
552 /* Encoder for cgraph nodes. */
554
555 /* If this out-decl state belongs to a function, fn_decl points to that
556 function. Otherwise, it is NULL. */
558
559 /* True if decl state is compressed. */
561
562 /* True if offload tables should be output. */
564
565 /* Order of the linemap section to be used for interpreting the locations
566 streamed for this decl. */
567 unsigned linemap_id;
568};
569
571
572
573/* Compact representation of a index <-> resolution pair. Unpacked to an
574 vector later. */
580
581
582/* One of these is allocated for each object file that being compiled
583 by lto. This structure contains the tables that are needed by the
584 serialized functions and ipa passes to connect themselves to the
585 global types and decls as they are reconstituted. */
587{
588 /* Decl state currently used. */
590
591 /* Decl state corresponding to regions outside of any functions
592 in the compilation unit. */
594
595 /* Table of cgraph nodes present in this file. */
597
598 /* Hash table maps lto-related section names to location in file. */
600
601 /* The .o file that these offsets relate to. */
602 const char *GTY((skip)) file_name;
603
604 /* Hash table maps lto-related section names to location in file. */
605 htab_t GTY((skip)) section_hash_table;
606
607 /* Hash new name of renamed global declaration to its original name. */
608 htab_t GTY((skip)) renaming_hash_table;
609
610 /* Linked list used temporarily in reader */
612
613 /* Order in which the file appears on the command line. */
614 int order;
615
616 /* Sub ID for merged objects. */
617 unsigned HOST_WIDE_INT id;
618
619 /* Symbol resolutions for this file */
621 unsigned max_index;
622
624
625 /* Map assigning declarations their resolutions. */
627
628 /* Mode translation table. */
629 const unsigned char *mode_table;
630
631 /* Read LTO section. */
633
635
637
638 unsigned mode_bits;
639
640 /* Number of linemap sections contained in this file. There is typically only
641 1, but WPA and INCREMENTAL_LINK_LTO modes may create files with more than
642 one linemap. */
644
645 /* Location maps for locations streamed in this file. */
648};
649
650/* Given an input linemap ID, compute how it will be known in the output, given
651 that the output could be the combination of multiple input files. */
652inline unsigned
653lto_linemap_output_id (unsigned linemap_id, const lto_file_decl_data *file_data)
654{
655 return linemap_id + file_data->order;
656}
657
659
661{
662 char *ptr;
663};
664
665/* An incore byte stream to buffer the various parts of the function.
666 The entire structure should be zeroed when created. The record
667 consists of a set of blocks. The first sizeof (ptr) bytes are used
668 as a chain, and the rest store the bytes to be written. */
670{
671 /* The pointer to the first block in the stream. */
673
674 /* The pointer to the last and current block in the stream. */
676
677 /* The pointer to where the next char should be written. */
679
680 /* The number of characters left in the current block. */
681 unsigned int left_in_block;
682
683 /* The block size of the last block allocated. */
684 unsigned int block_size;
685
686 /* The total number of characters written. */
687 unsigned int total_size;
688};
689
690/* A simple output block. This can be used for simple IPA passes that
691 do not need more than one stream. */
693{
696
697 /* The stream that the main tree codes are written to. */
699};
700
701/* String hashing. */
702
704{
705 const char *s;
706 int len;
707 unsigned int slot_num;
708};
709
710/* Hashtable helpers. */
711
713{
714 static inline hashval_t hash (const string_slot *);
715 static inline bool equal (const string_slot *, const string_slot *);
716};
717
718/* Returns a hash code for DS. Adapted from libiberty's htab_hash_string
719 to support strings that may not end in '\0'. */
720
721inline hashval_t
723{
724 hashval_t r = ds->len;
725 int i;
726
727 for (i = 0; i < ds->len; i++)
728 r = r * 67 + (unsigned)ds->s[i] - 113;
729 return r;
730}
731
732/* Returns nonzero if DS1 and DS2 are equal. */
733
734inline bool
736{
737 if (ds1->len == ds2->len)
738 return memcmp (ds1->s, ds2->s, ds1->len) == 0;
739
740 return 0;
741}
742
743/* Data structure holding all the data and descriptors used when writing
744 an LTO file. */
746{
749
750 /* The stream that the main tree codes are written to. */
752
753 /* The stream that contains the string table. */
755
756 /* The stream that contains the cfg. */
758
759 /* The hash table that contains the set of strings we have seen so
760 far and the indexes assigned to them. */
762
763 /* The current symbol that we are currently serializing. Null
764 if we are serializing something else. */
766
767 /* These record the most-recently-streamed values, to avoid streaming
768 them unnecessarily. */
774
775 /* Cache of nodes written in this section. */
777
778 /* All trees identified as local to the unit streamed. */
780
781 /* All data persistent across whole duration of output block
782 can go here. */
784};
785
786
787/* Data and descriptors used when reading from an LTO file. */
789{
790public:
791 /* The global decls and types. */
793
794 /* The string table. */
795 const char *strings;
796
797 /* The length of the string table. */
798 unsigned int strings_len;
799
800 /* Maps each reference number to the resolution done by the linker. */
802
803 /* Cache of pickled nodes. */
805
806 /* Cache of source code location. */
808
809 explicit data_in (lto_file_decl_data *data_for_loc)
810 : location_cache{data_for_loc}
811 {}
812};
813
814
815/* In lto-section-in.cc */
817 struct lto_file_decl_data *,
818 enum lto_section_type, const char **, size_t *);
819extern void
821 enum lto_section_type,
822 class lto_input_block *, const char *, size_t);
823extern void lto_set_in_hooks (struct lto_file_decl_data **,
826extern struct lto_file_decl_data **lto_get_file_decl_data (void);
827extern const char *lto_get_section_data (struct lto_file_decl_data *,
828 enum lto_section_type,
829 const char *, int, size_t *,
830 bool decompress = false);
831extern const char *lto_get_summary_section_data (struct lto_file_decl_data *,
832 enum lto_section_type,
833 size_t *);
834extern const char *lto_get_raw_section_data (struct lto_file_decl_data *,
835 enum lto_section_type,
836 const char *, int, size_t *);
837extern void lto_free_section_data (struct lto_file_decl_data *,
838 enum lto_section_type,
839 const char *, const char *, size_t,
840 bool decompress = false);
842 enum lto_section_type,
843 const char *, const char *, size_t);
844extern htab_t lto_create_renaming_table (void);
845extern void lto_record_renamed_decl (struct lto_file_decl_data *,
846 const char *, const char *);
847extern const char *lto_get_decl_name_mapping (struct lto_file_decl_data *,
848 const char *);
849extern struct lto_in_decl_state *lto_new_in_decl_state (void);
850extern void lto_delete_in_decl_state (struct lto_in_decl_state *);
852 struct lto_file_decl_data *, tree);
856extern void lto_value_range_error (const char *,
857 HOST_WIDE_INT, HOST_WIDE_INT,
858 HOST_WIDE_INT) ATTRIBUTE_NORETURN;
859
860/* In lto-section-out.cc */
861extern void lto_begin_section (const char *, bool);
862extern void lto_end_section (void);
863extern void lto_write_data (const void *, unsigned int);
864extern void lto_write_raw_data (const void *, unsigned int);
865extern void lto_write_stream (struct lto_output_stream *);
867 enum lto_section_type);
869extern struct lto_out_decl_state *lto_new_out_decl_state (void);
870extern void lto_delete_out_decl_state (struct lto_out_decl_state *);
871extern struct lto_out_decl_state *lto_get_out_decl_state (void);
872extern void lto_push_out_decl_state (struct lto_out_decl_state *);
873extern struct lto_out_decl_state *lto_pop_out_decl_state (void);
875 struct lto_out_decl_state *);
876extern void lto_append_block (struct lto_output_stream *);
877
878
879/* In lto-streamer.cc. */
880
881/* Set when streaming LTO for offloading compiler. */
882extern bool lto_stream_offload_p;
883
884extern const char *lto_tag_name (enum LTO_tags);
885extern char *lto_get_section_name (int, const char *, int,
886 struct lto_file_decl_data *);
887extern void print_lto_report (const char *);
888extern void lto_streamer_init (void);
889extern bool gate_lto_out (void);
890extern void lto_check_version (int, int, const char *);
891extern void lto_streamer_hooks_init (void);
892
893/* In lto-streamer-in.cc */
894extern void lto_input_cgraph (struct lto_file_decl_data *, const char *);
895extern void lto_reader_init (void);
896extern void lto_free_file_name_hash (void);
897extern void lto_input_function_body (struct lto_file_decl_data *,
898 struct cgraph_node *,
899 const char *);
901 struct varpool_node *,
902 const char *);
904 const char *);
905extern void lto_input_toplevel_asms (struct lto_file_decl_data *, int);
906extern void lto_input_mode_table (struct lto_file_decl_data *);
907extern class data_in *lto_data_in_create (struct lto_file_decl_data *,
908 const char *, unsigned,
910 bool need_location_cache = true);
911extern void lto_data_in_delete (class data_in *);
912extern void lto_input_data_block (class lto_input_block *, void *, size_t);
913void lto_input_location (location_t *, struct bitpack_d *, class data_in *);
915 struct function *, enum LTO_tags);
916void lto_tag_check_set (enum LTO_tags, int, ...);
917void lto_init_eh (void);
918hashval_t lto_input_scc (class lto_input_block *, class data_in *,
919 unsigned *, unsigned *, bool);
921 enum LTO_tags, hashval_t hash);
922tree lto_input_tree (class lto_input_block *, class data_in *);
924
925
926/* In lto-streamer-out.cc */
929extern void destroy_output_block (struct output_block *);
930extern void lto_output_tree (struct output_block *, tree, bool, bool);
931extern void stream_write_tree_ref (struct output_block *, tree);
932extern void lto_output_var_decl_ref (struct lto_out_decl_state *,
933 struct lto_output_stream *, tree);
934extern void lto_output_fn_decl_ref (struct lto_out_decl_state *,
935 struct lto_output_stream *, tree);
939extern void produce_asm (struct output_block *ob);
940extern void lto_output ();
941extern void produce_asm_for_decls ();
942void lto_register_linemap_for_output (size_t, unsigned);
943void lto_copy_linemaps ();
945 struct lto_out_decl_state *);
947 struct lto_output_stream *,
948 struct lto_out_decl_state *);
950void lto_output_location (struct output_block *, struct bitpack_d *,
951 location_t);
953 location_t);
956
957
958/* In lto-cgraph.cc */
964 struct cgraph_node *);
966 struct cgraph_node *);
968 toplevel_node *);
970 toplevel_node *);
971
973 varpool_node *);
974void output_symtab (void);
975void input_symtab (void);
976void input_toplevel_asms (void);
977void output_offload_tables (void);
978void input_offload_tables (bool);
988void select_what_to_stream (void);
989
990/* In options-save.cc. */
992 struct cl_target_option *);
993
995 struct bitpack_d *,
996 struct cl_target_option *);
997
999 struct bitpack_d *, struct cl_optimization *);
1000
1002 struct bitpack_d *, struct cl_optimization *);
1003
1004
1005
1006/* In lto-opts.cc. */
1007extern void lto_write_options (void);
1008
1009
1010/* Statistics gathered during LTO, WPA and LTRANS. */
1011extern struct lto_stats_d lto_stats;
1012
1013/* Section names corresponding to the values of enum lto_section_type. */
1014extern const char *lto_section_name[];
1015
1016/* Holds all the out decl states of functions output so far in the
1017 current output file. */
1019
1020/* Return true if LTO tag TAG corresponds to a tree code. */
1021inline bool
1023{
1024 return tag > LTO_first_tree_tag && (unsigned) tag <= MAX_TREE_CODES;
1025}
1026
1027
1028/* Return true if LTO tag TAG corresponds to a gimple code. */
1029inline bool
1031{
1032 return (unsigned) tag >= LTO_first_gimple_tag
1033 && (unsigned) tag
1034 < (unsigned) LTO_first_gimple_tag + LAST_AND_UNUSED_GIMPLE_CODE;
1035}
1036
1037
1038/* Return the LTO tag corresponding to gimple code CODE. See enum
1039 LTO_tags for details on the conversion. */
1040inline enum LTO_tags
1042{
1043 return (enum LTO_tags) ((unsigned) code + LTO_first_gimple_tag);
1044}
1045
1046
1047/* Return the GIMPLE code corresponding to TAG. See enum LTO_tags for
1048 details on the conversion. */
1049inline enum gimple_code
1051{
1053 return (enum gimple_code) ((unsigned) tag - LTO_first_gimple_tag);
1054}
1055
1056
1057/* Return the LTO tag corresponding to tree code CODE. See enum
1058 LTO_tags for details on the conversion. */
1059inline enum LTO_tags
1061{
1062 return (enum LTO_tags) ((unsigned) code + LTO_first_tree_tag);
1063}
1064
1065
1066/* Return the tree code corresponding to TAG. See enum LTO_tags for
1067 details on the conversion. */
1068inline enum tree_code
1070{
1072 return (enum tree_code) ((unsigned) tag - LTO_first_tree_tag);
1073}
1074
1075/* Check that tag ACTUAL == EXPECTED. */
1076inline void
1077lto_tag_check (enum LTO_tags actual, enum LTO_tags expected)
1078{
1079 if (actual != expected)
1080 internal_error ("bytecode stream: expected tag %s instead of %s",
1081 lto_tag_name (expected), lto_tag_name (actual));
1082}
1083
1084/* Check that tag ACTUAL is in the range [TAG1, TAG2]. */
1085inline void
1086lto_tag_check_range (enum LTO_tags actual, enum LTO_tags tag1,
1087 enum LTO_tags tag2)
1088{
1089 if (actual < tag1 || actual > tag2)
1090 internal_error ("bytecode stream: tag %s is not in the expected range "
1091 "[%s, %s]",
1092 lto_tag_name (actual),
1093 lto_tag_name (tag1),
1094 lto_tag_name (tag2));
1095}
1096
1097/* Initialize an lto_out_decl_buffer ENCODER. */
1098inline void
1100{
1101 encoder->tree_hash_table = new hash_map<tree, unsigned> (251);
1102 encoder->trees.create (0);
1103}
1104
1105
1106/* Destroy an lto_tree_ref_encoder ENCODER by freeing its contents. The
1107 memory used by ENCODER is not freed by this function. */
1108inline void
1110{
1111 /* Hash table may be delete already. */
1112 delete encoder->tree_hash_table;
1113 encoder->tree_hash_table = NULL;
1114 encoder->trees.release ();
1115}
1116
1117/* Return the number of trees encoded in ENCODER. */
1118inline unsigned int
1120{
1121 return encoder->trees.length ();
1122}
1123
1124/* Return the IDX-th tree in ENCODER. */
1125inline tree
1127 unsigned int idx)
1128{
1129 return encoder->trees[idx];
1130}
1131
1132/* Return number of encoded nodes in ENCODER. */
1133inline int
1135{
1136 return encoder->nodes.length ();
1137}
1138
1139/* Value used to represent failure of lto_symtab_encoder_lookup. */
1140#define LCC_NOT_FOUND (-1)
1141
1142/* Look up NODE in encoder. Return NODE's reference if it has been encoded
1143 or LCC_NOT_FOUND if it is not there. */
1144
1145inline int
1148{
1149 size_t *slot = encoder->map->get (node);
1150 return (slot && *slot ? *(slot) - 1 : LCC_NOT_FOUND);
1151}
1152
1153/* Return true if iterator LSE points to nothing. */
1154inline bool
1156{
1157 return lsei.index >= (unsigned)lto_symtab_encoder_size (lsei.encoder);
1158}
1159
1160/* Advance iterator LSE. */
1161inline void
1163{
1164 lsei->index++;
1165}
1166
1167/* Return the node pointed to by LSI. */
1168inline toplevel_node *
1170{
1171 return lsei.encoder->nodes[lsei.index].node;
1172}
1173
1174/* Return the node pointed to by LSI. */
1175inline struct cgraph_node *
1180
1181/* Return the node pointed to by LSI. */
1182inline varpool_node *
1187
1188/* Return the cgraph node corresponding to REF using ENCODER. */
1189
1190inline toplevel_node *
1192{
1193 if (ref == LCC_NOT_FOUND)
1194 return NULL;
1195
1196 return encoder->nodes[ref].node;
1197}
1198
1199/* Return an iterator to the first node in LSI. */
1202{
1204
1205 lsei.encoder = encoder;
1206 lsei.index = 0;
1207 return lsei;
1208}
1209
1210/* Advance iterator LSE. */
1211inline void
1213{
1214 lsei_next (lsei);
1215 while (!lsei_end_p (*lsei)
1217 lsei_next (lsei);
1218}
1219
1220/* Return an iterator to the first node in LSI. */
1223{
1224 lto_symtab_encoder_iterator lsei = lsei_start (encoder);
1225
1226 if (lsei_end_p (lsei))
1227 return lsei;
1228 if (!lto_symtab_encoder_in_partition_p (encoder, lsei_node (lsei)))
1229 lsei_next_in_partition (&lsei);
1230
1231 return lsei;
1232}
1233
1234/* Advance iterator LSE. */
1235inline void
1237{
1238 lsei_next (lsei);
1239 while (!lsei_end_p (*lsei)
1240 && (!is_a <cgraph_node *> (lsei_node (*lsei))
1242 lsei_next (lsei);
1243}
1244
1245/* Return an iterator to the first node in LSI. */
1248{
1249 lto_symtab_encoder_iterator lsei = lsei_start (encoder);
1250
1251 if (lsei_end_p (lsei))
1252 return lsei;
1253 if (!is_a <cgraph_node *> (lsei_node (lsei))
1254 || !lto_symtab_encoder_in_partition_p (encoder, lsei_node (lsei)))
1256
1257 return lsei;
1258}
1259
1260/* Advance iterator LSE. */
1261inline void
1263{
1264 lsei_next (lsei);
1265 while (!lsei_end_p (*lsei)
1266 && (!is_a <varpool_node *> (lsei_node (*lsei))
1268 lsei_next (lsei);
1269}
1270
1271/* Return an iterator to the first node in LSI. */
1274{
1275 lto_symtab_encoder_iterator lsei = lsei_start (encoder);
1276
1277 if (lsei_end_p (lsei))
1278 return lsei;
1279 if (!is_a <varpool_node *> (lsei_node (lsei))
1280 || !lto_symtab_encoder_in_partition_p (encoder, lsei_node (lsei)))
1282
1283 return lsei;
1284}
1285
1286/* Entry for the delayed registering of decl -> DIE references. */
1289 const char *sym;
1290 unsigned HOST_WIDE_INT off;
1291};
1292
1294
1295extern FILE *streamer_dump_file;
1296
1297#endif /* GCC_LTO_STREAMER_H */
Definition vec.h:1667
Definition lto-streamer.h:789
data_in(lto_file_decl_data *data_for_loc)
Definition lto-streamer.h:809
vec< ld_plugin_symbol_resolution_t > globals_resolution
Definition lto-streamer.h:801
lto_location_cache location_cache
Definition lto-streamer.h:807
struct streamer_tree_cache_d * reader_cache
Definition lto-streamer.h:804
unsigned int strings_len
Definition lto-streamer.h:798
struct lto_file_decl_data * file_data
Definition lto-streamer.h:792
const char * strings
Definition lto-streamer.h:795
Definition hash-map.h:40
Value * get(const Key &k)
Definition hash-map.h:189
Definition hash-set.h:37
Definition hash-table.h:375
Definition lto-streamer.h:350
unsigned int len
Definition lto-streamer.h:364
unsigned int p
Definition lto-streamer.h:363
lto_input_block(const char *data_, unsigned int p_, unsigned int len_, const lto_file_decl_data *file_data_)
Definition lto-streamer.h:354
const char * data
Definition lto-streamer.h:361
const lto_file_decl_data * file_data
Definition lto-streamer.h:362
lto_input_block(const char *data_, unsigned int len_, const lto_file_decl_data *file_data_)
Definition lto-streamer.h:357
Definition lto-streamer.h:275
void revert_location_cache()
Definition lto-streamer-in.cc:439
size_t stream_map_idx
Definition lto-streamer.h:335
location_t stream_loc_offset
Definition lto-streamer.h:336
tree stream_block
Definition lto-streamer.h:333
lto_file_decl_data *const decl_data
Definition lto-streamer.h:325
lto_location_cache(lto_file_decl_data *loc_data)
Definition lto-streamer.h:292
unsigned stream_discr
Definition lto-streamer.h:334
auto_vec< cached_location > loc_cache
Definition lto-streamer.h:330
unsigned accepted_length
Definition lto-streamer.h:345
void accept_location_cache()
Definition lto-streamer-in.cc:430
~lto_location_cache()
Definition lto-streamer.h:301
unsigned linemap_offset
Definition lto-streamer.h:327
const lto_loc_map * cur_loc_map
Definition lto-streamer.h:326
void input_location_and_block(location_t *dest, struct bitpack_d *bp, class lto_input_block *ib, class data_in *data_in)
Definition lto-streamer-in.cc:599
unsigned stream_linemap_order
Definition lto-streamer.h:337
bool apply_location_cache()
Definition lto-streamer-in.cc:407
location_t current_loc
Definition lto-streamer.h:341
static lto_location_cache * current_cache
Definition lto-streamer.h:313
void set_linemap_offset(unsigned offset)
Definition lto-streamer.h:290
cached_location current_cloc
Definition lto-streamer.h:340
Definition lra-spills.cc:101
#define GTY(x)
Definition coretypes.h:41
union tree_node * tree
Definition coretypes.h:97
void internal_error(const char *,...) ATTRIBUTE_GCC_DIAG(1
void ATTRIBUTE_NORETURN
Definition diagnostic-core.h:76
tree_code
Definition genmatch.cc:1002
gimple_code
Definition gimple.h:33
location_t input_location
Definition input.cc:41
#define UNKNOWN_LOCATION
Definition input.h:32
bool is_a(U *p)
Definition is-a.h:230
T dyn_cast(U *p)
Definition is-a.h:280
bool lto_symtab_encoder_in_partition_p(lto_symtab_encoder_t encoder, toplevel_node *node)
Definition lto-cgraph.cc:213
const char * lto_section_name[LTO_N_SECTION_TYPES]
Definition lto-section-in.cc:35
vec< lto_out_decl_state_ptr > lto_function_decl_states
Definition lto-section-out.cc:40
vec< dref_entry > dref_queue
Definition lto-streamer-in.cc:1769
const char * lto_tag_name(enum LTO_tags tag)
Definition lto-streamer.cc:47
FILE * streamer_dump_file
Definition lto-streamer.cc:42
struct lto_stats_d lto_stats
Definition lto-streamer.cc:36
bool lto_stream_offload_p
Definition lto-streamer.cc:40
void lto_section_overrun(class lto_input_block *) ATTRIBUTE_NORETURN
Definition lto-section-in.cc:458
void lto_input_variable_constructor(struct lto_file_decl_data *, struct varpool_node *, const char *)
Definition lto-streamer-in.cc:1760
void lto_output_init_mode_table(void)
Definition lto-streamer-out.cc:3556
struct lto_out_decl_state * lto_get_out_decl_state(void)
Definition lto-section-out.cc:232
void lto_free_function_in_decl_state(struct lto_in_decl_state *)
Definition lto-section-in.cc:424
tree lto_input_tree(class lto_input_block *, class data_in *)
Definition lto-streamer-in.cc:2007
void lto_free_file_name_hash(void)
Definition lto-streamer-in.cc:2239
void lto_record_function_out_decl_state(tree, struct lto_out_decl_state *)
Definition lto-section-out.cc:258
void lsei_next(lto_symtab_encoder_iterator *lsei)
Definition lto-streamer.h:1162
void input_toplevel_asms(void)
Definition lto-cgraph.cc:1890
void cl_optimization_stream_out(struct output_block *, struct bitpack_d *, struct cl_optimization *)
struct lto_symtab_encoder_d * lto_symtab_encoder_t
Definition lto-streamer.h:489
struct lto_out_decl_state * lto_out_decl_state_ptr
Definition lto-streamer.h:570
lto_symtab_encoder_iterator lsei_start_in_partition(lto_symtab_encoder_t encoder)
Definition lto-streamer.h:1222
struct lto_in_decl_state * lto_get_function_in_decl_state(struct lto_file_decl_data *, tree)
Definition lto-section-in.cc:410
lto_symtab_encoder_t compute_ltrans_boundary(lto_symtab_encoder_t encoder)
Definition lto-cgraph.cc:872
bool lto_symtab_encoder_delete_node(lto_symtab_encoder_t, toplevel_node *)
Definition lto-cgraph.cc:139
void lto_input_cgraph(struct lto_file_decl_data *, const char *)
void lto_write_raw_data(const void *, unsigned int)
Definition lto-section-out.cc:112
char * lto_get_section_name(int, const char *, int, struct lto_file_decl_data *)
Definition lto-streamer.cc:103
htab_t lto_create_renaming_table(void)
Definition lto-section-in.cc:333
const char * lto_get_summary_section_data(struct lto_file_decl_data *, enum lto_section_type, size_t *)
Definition lto-section-in.cc:185
void print_lto_report(const char *)
Definition lto-streamer.cc:164
bool lto_symtab_encoder_in_partition_p(lto_symtab_encoder_t, toplevel_node *)
Definition lto-cgraph.cc:213
void lto_free_function_in_decl_state_for_node(symtab_node *)
Definition lto-section-in.cc:436
enum tree_code lto_tag_to_tree_code(enum LTO_tags tag)
Definition lto-streamer.h:1069
lto_symtab_encoder_iterator lsei_start_variable_in_partition(lto_symtab_encoder_t encoder)
Definition lto-streamer.h:1273
void lto_output_tree(struct output_block *, tree, bool, bool)
Definition lto-streamer-out.cc:2011
void lto_destroy_simple_output_block(struct lto_simple_output_block *)
Definition lto-section-out.cc:171
tree lto_input_tree_1(class lto_input_block *, class data_in *, enum LTO_tags, hashval_t hash)
Definition lto-streamer-in.cc:1953
bool referenced_from_this_partition_p(symtab_node *, lto_symtab_encoder_t)
Definition lto-cgraph.cc:360
void stream_write_tree_ref(struct output_block *, tree)
Definition lto-streamer-out.cc:657
struct lto_file_decl_data * lto_file_decl_data_ptr
Definition lto-streamer.h:658
const char * lto_get_decl_name_mapping(struct lto_file_decl_data *, const char *)
Definition lto-section-in.cc:367
void cl_optimization_stream_in(class data_in *, struct bitpack_d *, struct cl_optimization *)
void lto_copy_linemaps()
Definition lto-streamer-out.cc:2974
void lsei_next_function_in_partition(lto_symtab_encoder_iterator *lsei)
Definition lto-streamer.h:1236
bool lto_symtab_encoder_encode_body_p(lto_symtab_encoder_t, struct cgraph_node *)
Definition lto-cgraph.cc:181
void lto_free_section_data_f(struct lto_file_decl_data *, enum lto_section_type, const char *, const char *, size_t)
Definition lto-streamer.h:256
void lto_tag_check(enum LTO_tags actual, enum LTO_tags expected)
Definition lto-streamer.h:1077
struct lto_in_decl_state * lto_in_decl_state_ptr
Definition lto-streamer.h:527
tree lto_tree_ref_encoder_get_tree(struct lto_tree_ref_encoder *encoder, unsigned int idx)
Definition lto-streamer.h:1126
struct lto_out_decl_state * lto_new_out_decl_state(void)
Definition lto-section-out.cc:200
lto_symtab_encoder_iterator lsei_start_function_in_partition(lto_symtab_encoder_t encoder)
Definition lto-streamer.h:1247
enum gimple_code lto_tag_to_gimple_code(enum LTO_tags tag)
Definition lto-streamer.h:1050
LTO_tags
Definition lto-streamer.h:134
@ LTO_ert_allowed_exceptions
Definition lto-streamer.h:183
@ LTO_tree_scc
Definition lto-streamer.h:152
@ LTO_ert_try
Definition lto-streamer.h:182
@ LTO_bb1
Definition lto-streamer.h:169
@ LTO_eh_catch
Definition lto-streamer.h:190
@ LTO_NUM_TAGS
Definition lto-streamer.h:193
@ LTO_global_stream_ref
Definition lto-streamer.h:147
@ LTO_ert_must_not_throw
Definition lto-streamer.h:184
@ LTO_tree_pickle_reference
Definition lto-streamer.h:138
@ LTO_null
Definition lto-streamer.h:135
@ LTO_bb0
Definition lto-streamer.h:168
@ LTO_eh_region
Definition lto-streamer.h:172
@ LTO_ssa_name_ref
Definition lto-streamer.h:149
@ LTO_trees
Definition lto-streamer.h:155
@ LTO_first_tree_tag
Definition lto-streamer.h:162
@ LTO_function
Definition lto-streamer.h:175
@ LTO_first_gimple_tag
Definition lto-streamer.h:165
@ LTO_eh_landing_pad
Definition lto-streamer.h:187
@ LTO_integer_cst
Definition lto-streamer.h:158
@ LTO_eh_table
Definition lto-streamer.h:178
@ LTO_ert_cleanup
Definition lto-streamer.h:181
void lto_output_location_and_block(struct output_block *, struct bitpack_d *, location_t)
Definition lto-streamer-out.cc:473
enum ld_plugin_symbol_resolution ld_plugin_symbol_resolution_t
Definition lto-streamer.h:239
bool lsei_end_p(lto_symtab_encoder_iterator lsei)
Definition lto-streamer.h:1155
void lto_begin_section(const char *, bool)
Definition lto-section-out.cc:66
void lto_input_data_block(class lto_input_block *, void *, size_t)
Definition lto-streamer-in.cc:132
bool referenced_from_other_partition_p(struct ipa_ref_list *, lto_symtab_encoder_t)
toplevel_node * lto_symtab_encoder_deref(lto_symtab_encoder_t encoder, int ref)
Definition lto-streamer.h:1191
void lto_write_data(const void *, unsigned int)
Definition lto-section-out.cc:101
unsigned lto_linemap_output_id(unsigned linemap_id, const lto_file_decl_data *file_data)
Definition lto-streamer.h:653
void output_symtab(void)
Definition lto-cgraph.cc:1032
void lto_streamer_hooks_init(void)
Definition lto-streamer.cc:284
void produce_asm(struct output_block *ob)
Definition lto-streamer-out.cc:2463
struct output_block * create_output_block(enum lto_section_type)
Definition lto-streamer-out.cc:75
void lto_delete_in_decl_state(struct lto_in_decl_state *)
Definition lto-section-in.cc:397
void cl_target_option_stream_out(struct output_block *, struct bitpack_d *, struct cl_target_option *)
void lto_input_mode_table(struct lto_file_decl_data *)
Definition lto-streamer-in.cc:2080
void lsei_next_in_partition(lto_symtab_encoder_iterator *lsei)
Definition lto-streamer.h:1212
lto_decl_stream_e_t
Definition lto-streamer.h:234
@ LTO_N_DECL_STREAMS
Definition lto-streamer.h:236
@ LTO_DECL_STREAM
Definition lto-streamer.h:235
lto_section_type
Definition lto-streamer.h:204
@ LTO_section_offload_table
Definition lto-streamer.h:222
@ LTO_section_symtab
Definition lto-streamer.h:208
@ LTO_section_decls
Definition lto-streamer.h:205
@ LTO_section_cgraph_opt_sum
Definition lto-streamer.h:218
@ LTO_section_linemap
Definition lto-streamer.h:228
@ LTO_section_jump_functions
Definition lto-streamer.h:212
@ LTO_section_ipa_modref
Definition lto-streamer.h:227
@ LTO_section_ipa_fn_summary
Definition lto-streamer.h:219
@ LTO_section_ipcp_transform
Definition lto-streamer.h:220
@ LTO_section_ipa_pure_const
Definition lto-streamer.h:213
@ LTO_section_lto
Definition lto-streamer.h:224
@ LTO_section_symtab_extension
Definition lto-streamer.h:209
@ LTO_section_symtab_nodes
Definition lto-streamer.h:216
@ LTO_section_ipa_sra
Definition lto-streamer.h:225
@ LTO_section_ipa_profile
Definition lto-streamer.h:215
@ LTO_section_static_initializer
Definition lto-streamer.h:207
@ LTO_section_odr_types
Definition lto-streamer.h:226
@ LTO_section_refs
Definition lto-streamer.h:210
@ LTO_section_opts
Definition lto-streamer.h:217
@ LTO_section_mode_table
Definition lto-streamer.h:223
@ LTO_section_asm
Definition lto-streamer.h:211
@ LTO_section_ipa_reference
Definition lto-streamer.h:214
@ LTO_N_SECTION_TYPES
Definition lto-streamer.h:229
@ LTO_section_function_body
Definition lto-streamer.h:206
@ LTO_section_ipa_icf
Definition lto-streamer.h:221
lto_symtab_encoder_iterator lsei_start(lto_symtab_encoder_t encoder)
Definition lto-streamer.h:1201
void lto_value_range_error(const char *, HOST_WIDE_INT, HOST_WIDE_INT, HOST_WIDE_INT) ATTRIBUTE_NORETURN
Definition lto-section-in.cc:467
const char * lto_get_section_data(struct lto_file_decl_data *, enum lto_section_type, const char *, int, size_t *, bool decompress=false)
Definition lto-section-in.cc:135
int lto_symtab_encoder_size(lto_symtab_encoder_t encoder)
Definition lto-streamer.h:1134
void lto_input_constructors_and_inits(struct lto_file_decl_data *, const char *)
tree lto_input_var_decl_ref(lto_input_block *, lto_file_decl_data *)
Definition lto-streamer-in.cc:726
void lto_destroy_simple_input_block(struct lto_file_decl_data *, enum lto_section_type, class lto_input_block *, const char *, size_t)
Definition lto-section-in.cc:277
void lto_init_tree_ref_encoder(struct lto_tree_ref_encoder *encoder)
Definition lto-streamer.h:1099
bool lto_variably_modified_type_p(tree)
Definition lto-streamer-out.cc:131
tree lto_input_fn_decl_ref(lto_input_block *, lto_file_decl_data *)
Definition lto-streamer-in.cc:738
void lto_output_decl_state_streams(struct output_block *, struct lto_out_decl_state *)
Definition lto-streamer-out.cc:3265
void lto_check_version(int, int, const char *)
Definition lto-streamer.cc:269
void lto_output_fn_decl_ref(struct lto_out_decl_state *, struct lto_output_stream *, tree)
Definition lto-streamer-out.cc:548
struct lto_file_decl_data ** lto_get_file_decl_data(void)
Definition lto-section-in.cc:90
void lto_delete_out_decl_state(struct lto_out_decl_state *)
Definition lto-section-out.cc:218
void lto_data_in_delete(class data_in *)
Definition lto-streamer-in.cc:2277
void lto_symtab_encoder_delete(lto_symtab_encoder_t)
Definition lto-cgraph.cc:91
bool lto_tag_is_gimple_code_p(enum LTO_tags tag)
Definition lto-streamer.h:1030
void lto_output_var_decl_ref(struct lto_out_decl_state *, struct lto_output_stream *, tree)
Definition lto-streamer-out.cc:535
void destroy_output_block(struct output_block *)
Definition lto-streamer-out.cc:107
bool lto_tag_is_tree_code_p(enum LTO_tags tag)
Definition lto-streamer.h:1022
lto_symtab_encoder_t lto_symtab_encoder_new(bool)
Definition lto-cgraph.cc:77
struct lto_simple_output_block * lto_create_simple_output_block(enum lto_section_type)
Definition lto-section-out.cc:153
void lto_reader_init(void)
Definition lto-streamer-in.cc:2226
void lto_register_linemap_for_output(size_t, unsigned)
Definition lto-streamer-out.cc:3071
void lto_tag_check_range(enum LTO_tags actual, enum LTO_tags tag1, enum LTO_tags tag2)
Definition lto-streamer.h:1086
class data_in * lto_data_in_create(struct lto_file_decl_data *, const char *, unsigned, vec< ld_plugin_symbol_resolution_t >, bool need_location_cache=true)
Definition lto-streamer-in.cc:2259
enum LTO_tags lto_tree_code_to_tag(enum tree_code code)
Definition lto-streamer.h:1060
void input_symtab(void)
Definition lto-cgraph.cc:1833
void select_what_to_stream(void)
Definition lto-cgraph.cc:856
unsigned int lto_tree_ref_encoder_size(struct lto_tree_ref_encoder *encoder)
Definition lto-streamer.h:1119
void lsei_next_variable_in_partition(lto_symtab_encoder_iterator *lsei)
Definition lto-streamer.h:1262
void produce_asm_for_decls()
Definition lto-streamer-out.cc:3655
void lto_free_raw_section_data(struct lto_file_decl_data *, enum lto_section_type, const char *, const char *, size_t)
Definition lto-section-in.cc:235
enum LTO_tags lto_gimple_code_to_tag(enum gimple_code code)
Definition lto-streamer.h:1041
void output_offload_tables(void)
Definition lto-cgraph.cc:1135
void lto_input_toplevel_asms(struct lto_file_decl_data *, int)
Definition lto-streamer-in.cc:2039
tree lto_input_tree_ref(class lto_input_block *, class data_in *, struct function *, enum LTO_tags)
Definition lto-streamer-in.cc:699
toplevel_node * lsei_node(lto_symtab_encoder_iterator lsei)
Definition lto-streamer.h:1169
void lto_output()
Definition lto-streamer-out.cc:3079
void lto_append_block(struct lto_output_stream *)
Definition data-streamer-out.cc:38
void lto_write_options(void)
Definition lto-opts.cc:60
tree stream_read_tree_ref(class lto_input_block *, class data_in *)
Definition lto-streamer-in.cc:1927
void lto_output_toplevel_asms(lto_symtab_encoder_t)
Definition lto-streamer-out.cc:2748
void lto_push_out_decl_state(struct lto_out_decl_state *)
Definition lto-section-out.cc:240
lto_compression
Definition lto-streamer.h:370
@ ZSTD
Definition lto-streamer.h:372
@ ZLIB
Definition lto-streamer.h:371
void cl_target_option_stream_in(class data_in *, struct bitpack_d *, struct cl_target_option *)
void lto_input_function_body(struct lto_file_decl_data *, struct cgraph_node *, const char *)
Definition lto-streamer-in.cc:1750
class lto_input_block * lto_create_simple_input_block(struct lto_file_decl_data *, enum lto_section_type, const char **, size_t *)
Definition lto-section-in.cc:250
bool lto_symtab_encoder_only_for_inlining_p(lto_symtab_encoder_t, struct cgraph_node *)
Definition lto-cgraph.cc:171
void lto_input_location(location_t *, struct bitpack_d *, class data_in *)
Definition lto-streamer-in.cc:685
void lto_set_symtab_encoder_in_partition(lto_symtab_encoder_t, toplevel_node *)
Definition lto-cgraph.cc:225
varpool_node * lsei_varpool_node(lto_symtab_encoder_iterator lsei)
Definition lto-streamer.h:1183
void lto_write_stream(struct lto_output_stream *)
Definition lto-section-out.cc:121
struct lto_out_decl_state * lto_pop_out_decl_state(void)
Definition lto-section-out.cc:248
#define LCC_NOT_FOUND
Definition lto-streamer.h:1140
void lto_destroy_tree_ref_encoder(struct lto_tree_ref_encoder *encoder)
Definition lto-streamer.h:1109
void lto_register_decl_definition(tree, struct lto_file_decl_data *)
const char * lto_tag_name(enum LTO_tags)
Definition lto-streamer.cc:47
struct cgraph_node * lsei_cgraph_node(lto_symtab_encoder_iterator lsei)
Definition lto-streamer.h:1176
void lto_streamer_init(void)
Definition lto-streamer.cc:245
void input_offload_tables(bool)
Definition lto-cgraph.cc:1921
void lto_init_eh(void)
Definition lto-streamer-in.cc:954
void lto_output_location(struct output_block *, struct bitpack_d *, location_t)
Definition lto-streamer-out.cc:461
void lto_prepare_function_for_streaming(cgraph_node *)
Definition lto-streamer-out.cc:2547
bool gate_lto_out(void)
Definition lto-streamer.cc:259
bool reachable_from_other_partition_p(struct cgraph_node *, lto_symtab_encoder_t)
Definition lto-cgraph.cc:336
void lto_record_renamed_decl(struct lto_file_decl_data *, const char *, const char *)
Definition lto-section-in.cc:342
bool reachable_from_this_partition_p(struct cgraph_node *, lto_symtab_encoder_t)
Definition lto-cgraph.cc:375
unsigned char lto_decl_flags_t
Definition lto-streamer.h:127
struct lto_in_decl_state * lto_new_in_decl_state(void)
Definition lto-section-in.cc:389
void lto_end_section(void)
Definition lto-section-out.cc:88
void lto_tag_check_set(enum LTO_tags, int,...)
Definition lto-streamer-in.cc:111
void lto_set_in_hooks(struct lto_file_decl_data **, lto_get_section_data_f *, lto_free_section_data_f *)
Definition lto-section-in.cc:76
hashval_t lto_input_scc(class lto_input_block *, class data_in *, unsigned *, unsigned *, bool)
Definition lto-streamer-in.cc:1866
int lto_symtab_encoder_lookup(lto_symtab_encoder_t encoder, toplevel_node *node)
Definition lto-streamer.h:1146
const char * lto_get_section_data_f(struct lto_file_decl_data *, enum lto_section_type, const char *, int, size_t *)
Definition lto-streamer.h:247
int lto_symtab_encoder_encode(lto_symtab_encoder_t, toplevel_node *)
Definition lto-cgraph.cc:107
const char * lto_get_raw_section_data(struct lto_file_decl_data *, enum lto_section_type, const char *, int, size_t *)
Definition lto-section-in.cc:194
bool lto_symtab_encoder_encode_initializer_p(lto_symtab_encoder_t, varpool_node *)
Definition lto-cgraph.cc:191
void lto_free_section_data(struct lto_file_decl_data *, enum lto_section_type, const char *, const char *, size_t, bool decompress=false)
Definition lto-section-in.cc:207
void lto_output_decl_state_refs(struct output_block *, struct lto_output_stream *, struct lto_out_decl_state *)
Definition custom-sarif-properties/state-graphs.h:33
poly_int< N, C > r
Definition poly-int.h:774
i
Definition poly-int.h:776
Ca const poly_int< N, Cb > & b
Definition poly-int.h:771
Ca & a
Definition poly-int.h:770
Definition data-streamer.h:35
Definition cgraph.h:920
Definition lto-streamer.h:530
static bool equal(lto_in_decl_state *a, lto_in_decl_state *b)
Definition lto-streamer.h:538
static hashval_t hash(lto_in_decl_state *s)
Definition lto-streamer.h:532
Definition lto-streamer.h:1287
tree decl
Definition lto-streamer.h:1288
unsigned HOST_WIDE_INT off
Definition lto-streamer.h:1290
const char * sym
Definition lto-streamer.h:1289
Definition function.h:249
Definition gcov-io.h:351
Definition hash-traits.h:321
Definition hash-traits.h:122
Definition ipa-ref.h:75
Definition lto-streamer.h:661
char * ptr
Definition lto-streamer.h:662
Definition lto-streamer.h:427
int32_t decl_state_size
Definition lto-streamer.h:429
int32_t num_nodes
Definition lto-streamer.h:432
lto_encoder_entry(toplevel_node *n)
Definition lto-streamer.h:459
unsigned int body
Definition lto-streamer.h:469
unsigned int in_partition
Definition lto-streamer.h:467
unsigned int only_for_inlining
Definition lto-streamer.h:471
unsigned int initializer
Definition lto-streamer.h:475
Definition lto-streamer.h:587
htab_t section_hash_table
Definition lto-streamer.h:605
unsigned mode_bits
Definition lto-streamer.h:638
unsigned max_index
Definition lto-streamer.h:621
vec< res_pair > respairs
Definition lto-streamer.h:620
struct lto_file_decl_data * next
Definition lto-streamer.h:611
lto_file_decl_data * loc_map_decl_data
Definition lto-streamer.h:646
struct lto_in_decl_state * global_decl_state
Definition lto-streamer.h:593
gcov_summary profile_info
Definition lto-streamer.h:623
int order
Definition lto-streamer.h:614
htab_t renaming_hash_table
Definition lto-streamer.h:608
unsigned HOST_WIDE_INT id
Definition lto-streamer.h:617
const char * file_name
Definition lto-streamer.h:602
vec< lto_loc_map *, va_gc > * loc_maps
Definition lto-streamer.h:647
lto_section lto_section_header
Definition lto-streamer.h:632
int order_base
Definition lto-streamer.h:634
unsigned num_linemap_sections
Definition lto-streamer.h:643
const unsigned char * mode_table
Definition lto-streamer.h:629
hash_map< tree, ld_plugin_symbol_resolution > * resolution_map
Definition lto-streamer.h:626
int unit_base
Definition lto-streamer.h:636
struct lto_in_decl_state * current_decl_state
Definition lto-streamer.h:589
hash_table< decl_state_hasher > * function_decl_states
Definition lto-streamer.h:599
lto_symtab_encoder_t symtab_node_encoder
Definition lto-streamer.h:596
Definition lto-streamer.h:419
int32_t cfg_size
Definition lto-streamer.h:421
Definition lto-streamer.h:511
bool compressed
Definition lto-streamer.h:520
tree fn_decl
Definition lto-streamer.h:517
vec< tree, va_gc > * streams[LTO_N_DECL_STREAMS]
Definition lto-streamer.h:513
unsigned linemap_id
Definition lto-streamer.h:524
Definition lto-streamer.h:265
size_t map[1]
Definition lto-streamer.h:267
size_t nmaps
Definition lto-streamer.h:266
Definition lto-streamer.h:317
tree block
Definition lto-streamer.h:320
unsigned discr
Definition lto-streamer.h:321
location_t loc
Definition lto-streamer.h:319
location_t * dest
Definition lto-streamer.h:318
Definition lto-streamer.h:547
lto_symtab_encoder_t symtab_node_encoder
Definition lto-streamer.h:553
bool compressed
Definition lto-streamer.h:560
tree fn_decl
Definition lto-streamer.h:557
bool output_offload_tables_p
Definition lto-streamer.h:563
unsigned linemap_id
Definition lto-streamer.h:567
struct lto_tree_ref_encoder streams[LTO_N_DECL_STREAMS]
Definition lto-streamer.h:550
Definition lto-streamer.h:670
struct lto_char_ptr_base * current_block
Definition lto-streamer.h:675
unsigned int total_size
Definition lto-streamer.h:687
unsigned int block_size
Definition lto-streamer.h:684
unsigned int left_in_block
Definition lto-streamer.h:681
char * current_pointer
Definition lto-streamer.h:678
struct lto_char_ptr_base * first_block
Definition lto-streamer.h:672
Definition lto-streamer.h:379
uint16_t flags
Definition lto-streamer.h:386
unsigned char _padding
Definition lto-streamer.h:383
int16_t minor_version
Definition lto-streamer.h:381
unsigned char slim_object
Definition lto-streamer.h:382
int16_t major_version
Definition lto-streamer.h:380
lto_compression get_compression()
Definition lto-streamer.h:395
void set_compression(lto_compression c)
Definition lto-streamer.h:389
Definition lto-streamer.h:412
int32_t string_size
Definition lto-streamer.h:414
Definition lto-streamer.h:406
int32_t main_size
Definition lto-streamer.h:408
Definition lto-streamer.h:693
struct lto_output_stream * main_stream
Definition lto-streamer.h:698
enum lto_section_type section_type
Definition lto-streamer.h:694
struct lto_out_decl_state * decl_state
Definition lto-streamer.h:695
Definition lto-streamer.h:438
unsigned HOST_WIDE_INT num_pickle_refs_output
Definition lto-streamer.h:452
unsigned HOST_WIDE_INT num_input_cgraph_nodes
Definition lto-streamer.h:439
unsigned HOST_WIDE_INT num_output_il_bytes
Definition lto-streamer.h:447
unsigned HOST_WIDE_INT num_input_files
Definition lto-streamer.h:441
unsigned HOST_WIDE_INT num_compressed_il_bytes
Definition lto-streamer.h:448
unsigned HOST_WIDE_INT num_output_files
Definition lto-streamer.h:442
unsigned HOST_WIDE_INT num_trees[NUM_TREE_CODES]
Definition lto-streamer.h:446
unsigned HOST_WIDE_INT num_function_bodies
Definition lto-streamer.h:445
unsigned HOST_WIDE_INT num_input_il_bytes
Definition lto-streamer.h:449
unsigned HOST_WIDE_INT section_size[LTO_N_SECTION_TYPES]
Definition lto-streamer.h:444
unsigned HOST_WIDE_INT num_uncompressed_il_bytes
Definition lto-streamer.h:450
unsigned HOST_WIDE_INT num_cgraph_partitions
Definition lto-streamer.h:443
unsigned HOST_WIDE_INT num_output_symtab_nodes
Definition lto-streamer.h:440
unsigned HOST_WIDE_INT num_tree_bodies_output
Definition lto-streamer.h:451
Definition lto-streamer.h:481
hash_map< toplevel_node *, size_t > * map
Definition lto-streamer.h:483
hash_map< int_hash< int, -1, -2 >, int > * order_remap
Definition lto-streamer.h:486
vec< lto_encoder_entry > nodes
Definition lto-streamer.h:482
Definition lto-streamer.h:493
lto_symtab_encoder_t encoder
Definition lto-streamer.h:494
unsigned index
Definition lto-streamer.h:495
Definition lto-streamer.h:503
hash_map< tree, unsigned > * tree_hash_table
Definition lto-streamer.h:504
vec< tree > trees
Definition lto-streamer.h:505
Definition hash-traits.h:303
Definition lto-streamer.h:746
unsigned current_discr
Definition lto-streamer.h:770
struct obstack obstack
Definition lto-streamer.h:783
struct lto_output_stream * cfg_stream
Definition lto-streamer.h:757
struct lto_output_stream * string_stream
Definition lto-streamer.h:754
enum lto_section_type section_type
Definition lto-streamer.h:747
hash_set< tree > * local_trees
Definition lto-streamer.h:779
size_t current_map_idx
Definition lto-streamer.h:771
tree current_block
Definition lto-streamer.h:769
location_t current_loc_offset
Definition lto-streamer.h:772
struct lto_out_decl_state * decl_state
Definition lto-streamer.h:748
hash_table< string_slot_hasher > * string_hash_table
Definition lto-streamer.h:761
symtab_node * symbol
Definition lto-streamer.h:765
unsigned current_linemap_id
Definition lto-streamer.h:773
struct streamer_tree_cache_d * writer_cache
Definition lto-streamer.h:776
struct lto_output_stream * main_stream
Definition lto-streamer.h:751
Definition lto-streamer.h:576
ld_plugin_symbol_resolution_t res
Definition lto-streamer.h:577
unsigned index
Definition lto-streamer.h:578
Definition tree-streamer.h:47
Definition lto-streamer.h:713
static bool equal(const string_slot *, const string_slot *)
Definition lto-streamer.h:735
static hashval_t hash(const string_slot *)
Definition lto-streamer.h:722
Definition lto-streamer.h:704
int len
Definition lto-streamer.h:706
unsigned int slot_num
Definition lto-streamer.h:707
const char * s
Definition lto-streamer.h:705
Definition cgraph.h:133
Definition cgraph.h:110
Definition cgraph.h:2235
Definition vec.h:450
#define NULL
Definition system.h:50
#define gcc_assert(EXPR)
Definition system.h:820
#define true
Definition system.h:893
#define false
Definition system.h:894
#define STATIC_ASSERT(X)
Definition system.h:870
@ MAX_TREE_CODES
Definition tree-core.h:157
#define NUM_TREE_CODES
Definition tree-core.h:164
#define NULL_TREE
Definition tree.h:318