1 /* Routines for restoring various data types from a file stream. This deals
2 with various data types like strings, integers, enums, etc.
4 Copyright (C) 2011-2013 Free Software Foundation, Inc.
5 Contributed by Diego Novillo <dnovillo@google.com>
7 This file is part of GCC.
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
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
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/>. */
25 #include "coretypes.h"
26 #include "diagnostic.h"
29 #include "data-streamer.h"
31 /* Read a string from the string table in DATA_IN using input block
32 IB. Write the length to RLEN. */
35 string_for_index (struct data_in
*data_in
, unsigned int loc
, unsigned int *rlen
)
37 struct lto_input_block str_tab
;
47 /* Get the string stored at location LOC in DATA_IN->STRINGS. */
48 LTO_INIT_INPUT_BLOCK (str_tab
, data_in
->strings
, loc
- 1,
49 data_in
->strings_len
);
50 len
= streamer_read_uhwi (&str_tab
);
53 if (str_tab
.p
+ len
> data_in
->strings_len
)
54 internal_error ("bytecode stream: string too long for the string table");
56 result
= (const char *)(data_in
->strings
+ str_tab
.p
);
62 /* Read a string from the string table in DATA_IN using input block
63 IB. Write the length to RLEN. */
66 streamer_read_indexed_string (struct data_in
*data_in
,
67 struct lto_input_block
*ib
, unsigned int *rlen
)
69 return string_for_index (data_in
, streamer_read_uhwi (ib
), rlen
);
73 /* Read a NULL terminated string from the string table in DATA_IN. */
76 streamer_read_string (struct data_in
*data_in
, struct lto_input_block
*ib
)
81 ptr
= streamer_read_indexed_string (data_in
, ib
, &len
);
84 if (ptr
[len
- 1] != '\0')
85 internal_error ("bytecode stream: found non-null terminated string");
91 /* Read a string from the string table in DATA_IN using the bitpack BP.
92 Write the length to RLEN. */
95 bp_unpack_indexed_string (struct data_in
*data_in
,
96 struct bitpack_d
*bp
, unsigned int *rlen
)
98 return string_for_index (data_in
, bp_unpack_var_len_unsigned (bp
), rlen
);
102 /* Read a NULL terminated string from the string table in DATA_IN. */
105 bp_unpack_string (struct data_in
*data_in
, struct bitpack_d
*bp
)
110 ptr
= bp_unpack_indexed_string (data_in
, bp
, &len
);
113 if (ptr
[len
- 1] != '\0')
114 internal_error ("bytecode stream: found non-null terminated string");
120 /* Read an unsigned HOST_WIDE_INT number from IB. */
122 unsigned HOST_WIDE_INT
123 streamer_read_uhwi (struct lto_input_block
*ib
)
125 unsigned HOST_WIDE_INT result
;
127 unsigned HOST_WIDE_INT byte
;
128 unsigned int p
= ib
->p
;
129 unsigned int len
= ib
->len
;
131 const char *data
= ib
->data
;
133 if ((result
& 0x80) != 0)
140 result
|= (byte
& 0x7f) << shift
;
143 while ((byte
& 0x80) != 0);
146 /* We check for section overrun after the fact for performance reason. */
148 lto_section_overrun (ib
);
155 /* Read a HOST_WIDE_INT number from IB. */
158 streamer_read_hwi (struct lto_input_block
*ib
)
160 HOST_WIDE_INT result
= 0;
162 unsigned HOST_WIDE_INT byte
;
166 byte
= streamer_read_uchar (ib
);
167 result
|= (byte
& 0x7f) << shift
;
169 if ((byte
& 0x80) == 0)
171 if ((shift
< HOST_BITS_PER_WIDE_INT
) && (byte
& 0x40))
172 result
|= - ((HOST_WIDE_INT
)1 << shift
);
179 /* Read gcov_type value from IB. */
182 streamer_read_gcov_count (struct lto_input_block
*ib
)
184 gcov_type ret
= streamer_read_hwi (ib
);
185 gcc_assert (ret
>= 0);