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 2011 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"
27 #include "data-streamer.h"
29 /* Read a string from the string table in DATA_IN using input block
30 IB. Write the length to RLEN. */
33 string_for_index (struct data_in
*data_in
, unsigned int loc
, unsigned int *rlen
)
35 struct lto_input_block str_tab
;
45 /* Get the string stored at location LOC in DATA_IN->STRINGS. */
46 LTO_INIT_INPUT_BLOCK (str_tab
, data_in
->strings
, loc
- 1,
47 data_in
->strings_len
);
48 len
= streamer_read_uhwi (&str_tab
);
51 if (str_tab
.p
+ len
> data_in
->strings_len
)
52 internal_error ("bytecode stream: string too long for the string table");
54 result
= (const char *)(data_in
->strings
+ str_tab
.p
);
60 /* Read a string from the string table in DATA_IN using input block
61 IB. Write the length to RLEN. */
64 streamer_read_indexed_string (struct data_in
*data_in
,
65 struct lto_input_block
*ib
, unsigned int *rlen
)
67 return string_for_index (data_in
, streamer_read_uhwi (ib
), rlen
);
71 /* Read a NULL terminated string from the string table in DATA_IN. */
74 streamer_read_string (struct data_in
*data_in
, struct lto_input_block
*ib
)
79 ptr
= streamer_read_indexed_string (data_in
, ib
, &len
);
82 if (ptr
[len
- 1] != '\0')
83 internal_error ("bytecode stream: found non-null terminated string");
89 /* Read an unsigned HOST_WIDE_INT number from IB. */
91 unsigned HOST_WIDE_INT
92 streamer_read_uhwi (struct lto_input_block
*ib
)
94 unsigned HOST_WIDE_INT result
= 0;
96 unsigned HOST_WIDE_INT byte
;
100 byte
= streamer_read_uchar (ib
);
101 result
|= (byte
& 0x7f) << shift
;
103 if ((byte
& 0x80) == 0)
109 /* Read a HOST_WIDE_INT number from IB. */
112 streamer_read_hwi (struct lto_input_block
*ib
)
114 HOST_WIDE_INT result
= 0;
116 unsigned HOST_WIDE_INT byte
;
120 byte
= streamer_read_uchar (ib
);
121 result
|= (byte
& 0x7f) << shift
;
123 if ((byte
& 0x80) == 0)
125 if ((shift
< HOST_BITS_PER_WIDE_INT
) && (byte
& 0x40))
126 result
|= - ((HOST_WIDE_INT
)1 << shift
);