Branch data Line data Source code
1 : : /* Routines for restoring various data types from a file stream. This deals
2 : : with various data types like strings, integers, enums, etc.
3 : :
4 : : Copyright (C) 2011-2025 Free Software Foundation, Inc.
5 : : Contributed by Diego Novillo <dnovillo@google.com>
6 : :
7 : : This file is part of GCC.
8 : :
9 : : GCC is free software; you can redistribute it and/or modify it under
10 : : the terms of the GNU General Public License as published by the Free
11 : : Software Foundation; either version 3, or (at your option) any later
12 : : version.
13 : :
14 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 : : for more details.
18 : :
19 : : You should have received a copy of the GNU General Public License
20 : : along with GCC; see the file COPYING3. If not see
21 : : <http://www.gnu.org/licenses/>. */
22 : :
23 : : #include "config.h"
24 : : #include "system.h"
25 : : #include "coretypes.h"
26 : : #include "backend.h"
27 : : #include "tree.h"
28 : : #include "gimple.h"
29 : : #include "cgraph.h"
30 : : #include "data-streamer.h"
31 : : #include "value-range.h"
32 : : #include "streamer-hooks.h"
33 : :
34 : : /* Read a string from the string table in DATA_IN using input block
35 : : IB. Write the length to RLEN. */
36 : :
37 : : static const char *
38 : 2382815 : string_for_index (class data_in *data_in, unsigned int loc, unsigned int *rlen)
39 : : {
40 : 2382815 : unsigned int len;
41 : 2382815 : const char *result;
42 : :
43 : 2382815 : if (!loc)
44 : : {
45 : 1073393 : *rlen = 0;
46 : 1073393 : return NULL;
47 : : }
48 : :
49 : : /* Get the string stored at location LOC in DATA_IN->STRINGS. */
50 : 1309422 : lto_input_block str_tab (data_in->strings, loc - 1, data_in->strings_len, NULL);
51 : 1309422 : len = streamer_read_uhwi (&str_tab);
52 : 1309422 : *rlen = len;
53 : :
54 : 1309422 : if (str_tab.p + len > data_in->strings_len)
55 : 0 : internal_error ("bytecode stream: string too long for the string table");
56 : :
57 : 1309422 : result = (const char *)(data_in->strings + str_tab.p);
58 : :
59 : 1309422 : return result;
60 : : }
61 : :
62 : :
63 : : /* Read a string from the string table in DATA_IN using input block
64 : : IB. Write the length to RLEN. */
65 : :
66 : : const char *
67 : 1780961 : streamer_read_indexed_string (class data_in *data_in,
68 : : class lto_input_block *ib, unsigned int *rlen)
69 : : {
70 : 1780961 : return string_for_index (data_in, streamer_read_uhwi (ib), rlen);
71 : : }
72 : :
73 : :
74 : : /* Read a NULL terminated string from the string table in DATA_IN. */
75 : :
76 : : const char *
77 : 909705 : streamer_read_string (class data_in *data_in, class lto_input_block *ib)
78 : : {
79 : 909705 : unsigned int len;
80 : 909705 : const char *ptr;
81 : :
82 : 909705 : ptr = streamer_read_indexed_string (data_in, ib, &len);
83 : 909705 : if (!ptr)
84 : : return NULL;
85 : 45708 : if (ptr[len - 1] != '\0')
86 : 0 : internal_error ("bytecode stream: found non-null terminated string");
87 : :
88 : : return ptr;
89 : : }
90 : :
91 : :
92 : : /* Read a string from the string table in DATA_IN using the bitpack BP.
93 : : Write the length to RLEN. */
94 : :
95 : : const char *
96 : 601854 : bp_unpack_indexed_string (class data_in *data_in,
97 : : struct bitpack_d *bp, unsigned int *rlen)
98 : : {
99 : 601854 : return string_for_index (data_in, bp_unpack_var_len_unsigned (bp), rlen);
100 : : }
101 : :
102 : :
103 : : /* Read a NULL terminated string from the string table in DATA_IN. */
104 : :
105 : : const char *
106 : 601854 : bp_unpack_string (class data_in *data_in, struct bitpack_d *bp)
107 : : {
108 : 601854 : unsigned int len;
109 : 601854 : const char *ptr;
110 : :
111 : 601854 : ptr = bp_unpack_indexed_string (data_in, bp, &len);
112 : 601854 : if (!ptr)
113 : : return NULL;
114 : 392522 : if (ptr[len - 1] != '\0')
115 : 0 : internal_error ("bytecode stream: found non-null terminated string");
116 : :
117 : : return ptr;
118 : : }
119 : :
120 : :
121 : : /* Read an unsigned HOST_WIDE_INT number from IB. */
122 : :
123 : : unsigned HOST_WIDE_INT
124 : 68308243 : streamer_read_uhwi (class lto_input_block *ib)
125 : : {
126 : 68308243 : unsigned HOST_WIDE_INT result;
127 : 68308243 : int shift;
128 : 68308243 : unsigned HOST_WIDE_INT byte;
129 : 68308243 : unsigned int p = ib->p;
130 : 68308243 : unsigned int len = ib->len;
131 : :
132 : 68308243 : const char *data = ib->data;
133 : 68308243 : result = data[p++];
134 : 68308243 : if ((result & 0x80) != 0)
135 : : {
136 : 16026526 : result &= 0x7f;
137 : 16026526 : shift = 7;
138 : 43918911 : do
139 : : {
140 : 43918911 : byte = data[p++];
141 : 43918911 : result |= (byte & 0x7f) << shift;
142 : 43918911 : shift += 7;
143 : : }
144 : 43918911 : while ((byte & 0x80) != 0);
145 : : }
146 : :
147 : : /* We check for section overrun after the fact for performance reason. */
148 : 68308243 : if (p > len)
149 : 0 : lto_section_overrun (ib);
150 : :
151 : 68308243 : ib->p = p;
152 : 68308243 : return result;
153 : : }
154 : :
155 : :
156 : : /* Read a HOST_WIDE_INT number from IB. */
157 : :
158 : : HOST_WIDE_INT
159 : 30857153 : streamer_read_hwi (class lto_input_block *ib)
160 : : {
161 : 30857153 : HOST_WIDE_INT result = 0;
162 : 30857153 : int shift = 0;
163 : 48693941 : unsigned HOST_WIDE_INT byte;
164 : :
165 : 48693941 : while (true)
166 : : {
167 : 48693941 : byte = streamer_read_uchar (ib);
168 : 48693941 : result |= (byte & 0x7f) << shift;
169 : 48693941 : shift += 7;
170 : 48693941 : if ((byte & 0x80) == 0)
171 : : {
172 : 30857153 : if ((shift < HOST_BITS_PER_WIDE_INT) && (byte & 0x40))
173 : 4318929 : result |= - (HOST_WIDE_INT_1U << shift);
174 : :
175 : 30857153 : return result;
176 : : }
177 : : }
178 : : }
179 : :
180 : : /* Read a poly_uint64 from IB. */
181 : :
182 : : poly_uint64
183 : 0 : streamer_read_poly_uint64 (class lto_input_block *ib)
184 : : {
185 : 0 : using coeff_type = poly_int_traits<poly_uint64>::coeff_type;
186 : 0 : return poly_int_read_common<coeff_type> (streamer_read_uhwi, ib);
187 : : }
188 : :
189 : : /* Read a poly_int64 from IB. */
190 : :
191 : : poly_int64
192 : 53192 : streamer_read_poly_int64 (class lto_input_block *ib)
193 : : {
194 : 53192 : using coeff_type = poly_int_traits<poly_int64>::coeff_type;
195 : 53192 : return poly_int_read_common<coeff_type> (streamer_read_hwi, ib);
196 : : }
197 : :
198 : : /* Read gcov_type value from IB. */
199 : :
200 : : gcov_type
201 : 1537437 : streamer_read_gcov_count (class lto_input_block *ib)
202 : : {
203 : 1537437 : gcov_type ret = streamer_read_hwi (ib);
204 : 1537437 : return ret;
205 : : }
206 : :
207 : : /* Read REAL_VALUE_TYPE from IB. */
208 : :
209 : : void
210 : 832 : streamer_read_real_value (class lto_input_block *ib, REAL_VALUE_TYPE *r)
211 : : {
212 : 832 : struct bitpack_d bp = streamer_read_bitpack (ib);
213 : 832 : bp_unpack_real_value (&bp, r);
214 : 832 : }
215 : :
216 : : void
217 : 432345 : streamer_read_value_range (class lto_input_block *ib, data_in *data_in,
218 : : value_range &vr)
219 : : {
220 : : // Read the common fields to all vranges.
221 : 432345 : value_range_kind kind = streamer_read_enum (ib, value_range_kind, VR_LAST);
222 : 432345 : gcc_checking_assert (kind != VR_UNDEFINED);
223 : 432345 : tree type = stream_read_tree (ib, data_in);
224 : :
225 : : // Initialize the value_range to the correct type.
226 : 432345 : vr.set_type (type);
227 : :
228 : 432345 : if (is_a <irange> (vr))
229 : : {
230 : 238395 : irange &r = as_a <irange> (vr);
231 : 238395 : r.set_undefined ();
232 : 238395 : unsigned HOST_WIDE_INT num_pairs = streamer_read_uhwi (ib);
233 : 488064 : for (unsigned i = 0; i < num_pairs; ++i)
234 : : {
235 : 249669 : wide_int lb = streamer_read_wide_int (ib);
236 : 249669 : wide_int ub = streamer_read_wide_int (ib);
237 : 249669 : int_range<2> tmp (type, lb, ub);
238 : 249669 : r.union_ (tmp);
239 : 249671 : }
240 : 238395 : wide_int value = streamer_read_wide_int (ib);
241 : 238395 : wide_int mask = streamer_read_wide_int (ib);
242 : 238395 : irange_bitmask bm (value, mask);
243 : 238395 : r.update_bitmask (bm);
244 : 238395 : return;
245 : 238397 : }
246 : 193950 : if (is_a <frange> (vr))
247 : : {
248 : 419 : frange &r = as_a <frange> (vr);
249 : :
250 : : // Stream in NAN bits.
251 : 419 : struct bitpack_d bp = streamer_read_bitpack (ib);
252 : 419 : bool pos_nan = (bool) bp_unpack_value (&bp, 1);
253 : 419 : bool neg_nan = (bool) bp_unpack_value (&bp, 1);
254 : 419 : nan_state nan (pos_nan, neg_nan);
255 : :
256 : 419 : if (kind == VR_NAN)
257 : 3 : r.set_nan (type, nan);
258 : : else
259 : : {
260 : 416 : REAL_VALUE_TYPE lb, ub;
261 : 416 : streamer_read_real_value (ib, &lb);
262 : 416 : streamer_read_real_value (ib, &ub);
263 : 416 : r.set (type, lb, ub, nan);
264 : : }
265 : 419 : return;
266 : : }
267 : 193531 : if (is_a <prange> (vr))
268 : : {
269 : 193531 : prange &r = as_a <prange> (vr);
270 : 193531 : wide_int lb = streamer_read_wide_int (ib);
271 : 193531 : wide_int ub = streamer_read_wide_int (ib);
272 : 193531 : r.set (type, lb, ub);
273 : 193531 : wide_int value = streamer_read_wide_int (ib);
274 : 193531 : wide_int mask = streamer_read_wide_int (ib);
275 : 193531 : irange_bitmask bm (value, mask);
276 : 193531 : r.update_bitmask (bm);
277 : 193531 : return;
278 : 193531 : }
279 : 0 : gcc_unreachable ();
280 : : }
281 : :
282 : : /* Read the physical representation of a wide_int val from
283 : : input block IB. */
284 : :
285 : : wide_int
286 : 1751896 : streamer_read_wide_int (class lto_input_block *ib)
287 : : {
288 : 1751896 : HOST_WIDE_INT abuf[WIDE_INT_MAX_INL_ELTS], *a = abuf;
289 : 1751896 : int i;
290 : 1751896 : int prec = streamer_read_uhwi (ib);
291 : 1751896 : int len = streamer_read_uhwi (ib);
292 : 1751896 : if (UNLIKELY (len > WIDE_INT_MAX_INL_ELTS))
293 : 0 : a = XALLOCAVEC (HOST_WIDE_INT, len);
294 : 3510985 : for (i = 0; i < len; i++)
295 : 1759089 : a[i] = streamer_read_hwi (ib);
296 : 1751896 : return wide_int::from_array (a, len, prec);
297 : : }
298 : :
299 : : /* Read the physical representation of a widest_int val from
300 : : input block IB. */
301 : :
302 : : widest_int
303 : 90940 : streamer_read_widest_int (class lto_input_block *ib)
304 : : {
305 : 90940 : HOST_WIDE_INT abuf[WIDE_INT_MAX_INL_ELTS], *a = abuf;
306 : 90940 : int i;
307 : 90940 : int prec ATTRIBUTE_UNUSED = streamer_read_uhwi (ib);
308 : 90940 : int len = streamer_read_uhwi (ib);
309 : 90940 : if (UNLIKELY (len > WIDE_INT_MAX_INL_ELTS))
310 : 0 : a = XALLOCAVEC (HOST_WIDE_INT, len);
311 : 182904 : for (i = 0; i < len; i++)
312 : 91964 : a[i] = streamer_read_hwi (ib);
313 : 90940 : return widest_int::from_array (a, len);
314 : : }
315 : :
|