GCC Middle and Back End API Reference
tree-streamer.h
Go to the documentation of this file.
1/* Data structures and functions for streaming trees.
2
3 Copyright (C) 2011-2024 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@google.com>
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 3, or (at your option) any later
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
22#ifndef GCC_TREE_STREAMER_H
23#define GCC_TREE_STREAMER_H
24
25#include "streamer-hooks.h"
26#include "data-streamer.h"
27
28/* Cache of pickled nodes. Used to avoid writing the same node more
29 than once. The first time a tree node is streamed out, it is
30 entered in this cache. Subsequent references to the same node are
31 resolved by looking it up in this cache.
32
33 This is used in two ways:
34
35 - On the writing side, the first time T is added to STREAMER_CACHE,
36 a new reference index is created for T and T is emitted on the
37 stream. If T needs to be emitted again to the stream, instead of
38 pickling it again, the reference index is emitted.
39
40 - On the reading side, the first time T is read from the stream, it
41 is reconstructed in memory and a new reference index created for
42 T. The reconstructed T is inserted in some array so that when
43 the reference index for T is found in the input stream, it can be
44 used to look up into the array to get the reconstructed T. */
45
47{
48 /* The mapping between tree nodes and slots into the nodes array. */
50
51 /* The nodes pickled so far. */
53 /* The node hashes (if available). */
55
56 /* Next index to assign. */
57 unsigned next_idx;
58};
59
60/* In tree-streamer-in.cc. */
63 enum LTO_tags);
67 class data_in *, tree);
68
69/* In tree-streamer-out.cc. */
71 struct lto_output_stream *, tree);
76
77/* In tree-streamer.cc. */
78extern unsigned char streamer_mode_table[MAX_MACHINE_MODE];
81 hashval_t, unsigned *);
83 unsigned);
85 hashval_t);
87 unsigned *);
88struct streamer_tree_cache_d *streamer_tree_cache_create (bool, bool, bool);
90
91/* Return the tree node at slot IX in CACHE. */
92
93inline tree
95{
96 return cache->nodes[ix];
97}
98
99/* Return the tree hash value at slot IX in CACHE. */
100
101inline hashval_t
103{
104 return cache->hashes[ix];
105}
106
107inline void
108bp_pack_machine_mode (struct bitpack_d *bp, machine_mode mode)
109{
110 streamer_mode_table[mode] = 1;
111 int last = 1 << ceil_log2 (MAX_MACHINE_MODE);
112 bp_pack_enum (bp, machine_mode, last, mode);
113}
114
115inline machine_mode
117{
118 lto_input_block *ib = (class lto_input_block *) bp->stream;
119 int last = 1 << ib->file_data->mode_bits;
120 unsigned ix = bp_unpack_enum (bp, machine_mode, last);
121 if (ib->file_data->mode_table)
122 return (machine_mode) ib->file_data->mode_table[ix];
123 else
124 return (machine_mode) ix;
125}
126
127#endif /* GCC_TREE_STREAMER_H */
vec< rtx > cache
Definition calls.cc:1934
Definition lto-streamer.h:746
Definition hash-map.h:40
Definition lto-streamer.h:342
union tree_node * tree
Definition coretypes.h:97
#define bp_unpack_enum(bp, enum_name, enum_last)
Definition data-streamer.h:334
#define bp_pack_enum(bp, enum_name, enum_last, val)
Definition data-streamer.h:329
static struct filedep ** last
Definition genmddeps.cc:33
T * ggc_alloc(ALONE_CXX_MEM_STAT_INFO)
Definition ggc.h:184
int ceil_log2(unsigned HOST_WIDE_INT x)
Definition hwint.cc:66
LTO_tags
Definition lto-streamer.h:138
Definition data-streamer.h:35
Definition lto-streamer.h:623
Definition lto-streamer.h:699
Definition tree-streamer.h:47
hash_map< tree, unsigned > * node_map
Definition tree-streamer.h:49
unsigned next_idx
Definition tree-streamer.h:57
vec< hashval_t > hashes
Definition tree-streamer.h:54
vec< tree > nodes
Definition tree-streamer.h:52
Definition vec.h:450
void streamer_tree_cache_append(struct streamer_tree_cache_d *, tree, hashval_t)
Definition tree-streamer.cc:209
struct streamer_tree_cache_d * streamer_tree_cache_create(bool, bool, bool)
Definition tree-streamer.cc:399
void streamer_tree_cache_delete(struct streamer_tree_cache_d *)
Definition tree-streamer.cc:425
void streamer_write_tree_bitfields(struct output_block *, tree)
Definition tree-streamer-out.cc:444
void bp_pack_machine_mode(struct bitpack_d *bp, machine_mode mode)
Definition tree-streamer.h:108
machine_mode bp_unpack_machine_mode(struct bitpack_d *bp)
Definition tree-streamer.h:116
void streamer_read_tree_body(class lto_input_block *, class data_in *, tree)
Definition tree-streamer-in.cc:1039
void streamer_write_tree_header(struct output_block *, tree)
Definition tree-streamer-out.cc:969
void streamer_write_tree_body(struct output_block *, tree)
Definition tree-streamer-out.cc:896
bool streamer_tree_cache_insert(struct streamer_tree_cache_d *, tree, hashval_t, unsigned *)
Definition tree-streamer.cc:183
void streamer_check_handled_ts_structures(void)
Definition tree-streamer.cc:45
tree streamer_alloc_tree(class lto_input_block *, class data_in *, enum LTO_tags)
Definition tree-streamer-in.cc:583
tree streamer_read_string_cst(class data_in *, class lto_input_block *)
Definition tree-streamer-in.cc:44
tree streamer_get_pickled_tree(class lto_input_block *, class data_in *)
Definition tree-streamer-in.cc:1109
unsigned char streamer_mode_table[MAX_MACHINE_MODE]
Definition tree-streamer.cc:38
void streamer_write_integer_cst(struct output_block *, tree)
Definition tree-streamer-out.cc:1026
tree streamer_tree_cache_get_tree(struct streamer_tree_cache_d *cache, unsigned ix)
Definition tree-streamer.h:94
void streamer_write_string_cst(struct output_block *, struct lto_output_stream *, tree)
Definition tree-streamer-out.cc:41
hashval_t streamer_tree_cache_get_hash(struct streamer_tree_cache_d *cache, unsigned ix)
Definition tree-streamer.h:102
void streamer_read_tree_bitfields(class lto_input_block *, class data_in *, tree)
Definition tree-streamer-in.cc:480
void streamer_tree_cache_replace_tree(struct streamer_tree_cache_d *, tree, unsigned)
Definition tree-streamer.cc:193
bool streamer_tree_cache_lookup(struct streamer_tree_cache_d *, tree, unsigned *)
Definition tree-streamer.cc:224