* config/sh/sh.h: Delete dead GO_IF_LEGITIMATE_INDEX macro.
[official-gcc.git] / gcc / lto-compress.c
blob39592433cff197376bcf1342558ea31ecad7a5e0
1 /* LTO IL compression streams.
3 Copyright 2009, 2010 Free Software Foundation, Inc.
4 Contributed by Simon Baldwin <simonb@google.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 /* zlib.h includes other system headers. Those headers may test feature
25 test macros. config.h may define feature test macros. For this reason,
26 zlib.h needs to be included after, rather than before, config.h and
27 system.h. */
28 #include <zlib.h>
29 #include "coretypes.h"
30 #include "tree.h"
31 #include "diagnostic-core.h"
32 #include "langhooks.h"
33 #include "lto-streamer.h"
34 #include "lto-compress.h"
36 /* Compression stream structure, holds the flush callback and opaque token,
37 the buffered data, and a note of whether compressing or uncompressing. */
39 struct lto_compression_stream
41 void (*callback) (const char *, unsigned, void *);
42 void *opaque;
43 char *buffer;
44 size_t bytes;
45 size_t allocation;
46 bool is_compression;
49 /* Overall compression constants for zlib. */
51 static const size_t Z_BUFFER_LENGTH = 4096;
52 static const size_t MIN_STREAM_ALLOCATION = 1024;
54 /* For zlib, allocate SIZE count of ITEMS and return the address, OPAQUE
55 is unused. */
57 static void *
58 lto_zalloc (void *opaque, unsigned items, unsigned size)
60 gcc_assert (opaque == Z_NULL);
61 return xmalloc (items * size);
64 /* For zlib, free memory at ADDRESS, OPAQUE is unused. */
66 static void
67 lto_zfree (void *opaque, void *address)
69 gcc_assert (opaque == Z_NULL);
70 free (address);
73 /* Return a zlib compression level that zlib will not reject. Normalizes
74 the compression level from the command line flag, clamping non-default
75 values to the appropriate end of their valid range. */
77 static int
78 lto_normalized_zlib_level (void)
80 int level = flag_lto_compression_level;
82 if (level != Z_DEFAULT_COMPRESSION)
84 if (level < Z_NO_COMPRESSION)
85 level = Z_NO_COMPRESSION;
86 else if (level > Z_BEST_COMPRESSION)
87 level = Z_BEST_COMPRESSION;
90 return level;
93 /* Create a new compression stream, with CALLBACK flush function passed
94 OPAQUE token, IS_COMPRESSION indicates if compressing or uncompressing. */
96 static struct lto_compression_stream *
97 lto_new_compression_stream (void (*callback) (const char *, unsigned, void *),
98 void *opaque, bool is_compression)
100 struct lto_compression_stream *stream
101 = (struct lto_compression_stream *) xmalloc (sizeof (*stream));
103 memset (stream, 0, sizeof (*stream));
104 stream->callback = callback;
105 stream->opaque = opaque;
106 stream->is_compression = is_compression;
108 return stream;
111 /* Append NUM_CHARS from address BASE to STREAM. */
113 static void
114 lto_append_to_compression_stream (struct lto_compression_stream *stream,
115 const char *base, size_t num_chars)
117 size_t required = stream->bytes + num_chars;
119 if (stream->allocation < required)
121 if (stream->allocation == 0)
122 stream->allocation = MIN_STREAM_ALLOCATION;
123 while (stream->allocation < required)
124 stream->allocation *= 2;
126 stream->buffer = (char *) xrealloc (stream->buffer, stream->allocation);
129 memcpy (stream->buffer + stream->bytes, base, num_chars);
130 stream->bytes += num_chars;
133 /* Free the buffer and memory associated with STREAM. */
135 static void
136 lto_destroy_compression_stream (struct lto_compression_stream *stream)
138 free (stream->buffer);
139 free (stream);
142 /* Return a new compression stream, with CALLBACK flush function passed
143 OPAQUE token. */
145 struct lto_compression_stream *
146 lto_start_compression (void (*callback) (const char *, unsigned, void *),
147 void *opaque)
149 return lto_new_compression_stream (callback, opaque, true);
152 /* Append NUM_CHARS from address BASE to STREAM. */
154 void
155 lto_compress_block (struct lto_compression_stream *stream,
156 const char *base, size_t num_chars)
158 gcc_assert (stream->is_compression);
160 lto_append_to_compression_stream (stream, base, num_chars);
161 lto_stats.num_output_il_bytes += num_chars;
164 /* Finalize STREAM compression, and free stream allocations. */
166 void
167 lto_end_compression (struct lto_compression_stream *stream)
169 unsigned char *cursor = (unsigned char *) stream->buffer;
170 size_t remaining = stream->bytes;
171 const size_t outbuf_length = Z_BUFFER_LENGTH;
172 unsigned char *outbuf = (unsigned char *) xmalloc (outbuf_length);
173 z_stream out_stream;
174 size_t compressed_bytes = 0;
175 int status;
177 gcc_assert (stream->is_compression);
179 out_stream.next_out = outbuf;
180 out_stream.avail_out = outbuf_length;
181 out_stream.next_in = cursor;
182 out_stream.avail_in = remaining;
183 out_stream.zalloc = lto_zalloc;
184 out_stream.zfree = lto_zfree;
185 out_stream.opaque = Z_NULL;
187 status = deflateInit (&out_stream, lto_normalized_zlib_level ());
188 if (status != Z_OK)
189 internal_error ("compressed stream: %s", zError (status));
193 size_t in_bytes, out_bytes;
195 status = deflate (&out_stream, Z_FINISH);
196 if (status != Z_OK && status != Z_STREAM_END)
197 internal_error ("compressed stream: %s", zError (status));
199 in_bytes = remaining - out_stream.avail_in;
200 out_bytes = outbuf_length - out_stream.avail_out;
202 stream->callback ((const char *) outbuf, out_bytes, stream->opaque);
203 lto_stats.num_compressed_il_bytes += out_bytes;
204 compressed_bytes += out_bytes;
206 cursor += in_bytes;
207 remaining -= in_bytes;
209 out_stream.next_out = outbuf;
210 out_stream.avail_out = outbuf_length;
211 out_stream.next_in = cursor;
212 out_stream.avail_in = remaining;
214 while (status != Z_STREAM_END);
216 status = deflateEnd (&out_stream);
217 if (status != Z_OK)
218 internal_error ("compressed stream: %s", zError (status));
220 lto_destroy_compression_stream (stream);
221 free (outbuf);
224 /* Return a new uncompression stream, with CALLBACK flush function passed
225 OPAQUE token. */
227 struct lto_compression_stream *
228 lto_start_uncompression (void (*callback) (const char *, unsigned, void *),
229 void *opaque)
231 return lto_new_compression_stream (callback, opaque, false);
234 /* Append NUM_CHARS from address BASE to STREAM. */
236 void
237 lto_uncompress_block (struct lto_compression_stream *stream,
238 const char *base, size_t num_chars)
240 gcc_assert (!stream->is_compression);
242 lto_append_to_compression_stream (stream, base, num_chars);
243 lto_stats.num_input_il_bytes += num_chars;
246 /* Finalize STREAM uncompression, and free stream allocations.
248 Because of the way LTO IL streams are compressed, there may be several
249 concatenated compressed segments in the accumulated data, so for this
250 function we iterate decompressions until no data remains. */
252 void
253 lto_end_uncompression (struct lto_compression_stream *stream)
255 unsigned char *cursor = (unsigned char *) stream->buffer;
256 size_t remaining = stream->bytes;
257 const size_t outbuf_length = Z_BUFFER_LENGTH;
258 unsigned char *outbuf = (unsigned char *) xmalloc (outbuf_length);
259 size_t uncompressed_bytes = 0;
261 gcc_assert (!stream->is_compression);
263 while (remaining > 0)
265 z_stream in_stream;
266 size_t out_bytes;
267 int status;
269 in_stream.next_out = outbuf;
270 in_stream.avail_out = outbuf_length;
271 in_stream.next_in = cursor;
272 in_stream.avail_in = remaining;
273 in_stream.zalloc = lto_zalloc;
274 in_stream.zfree = lto_zfree;
275 in_stream.opaque = Z_NULL;
277 status = inflateInit (&in_stream);
278 if (status != Z_OK)
279 internal_error ("compressed stream: %s", zError (status));
283 size_t in_bytes;
285 status = inflate (&in_stream, Z_SYNC_FLUSH);
286 if (status != Z_OK && status != Z_STREAM_END)
287 internal_error ("compressed stream: %s", zError (status));
289 in_bytes = remaining - in_stream.avail_in;
290 out_bytes = outbuf_length - in_stream.avail_out;
292 stream->callback ((const char *) outbuf, out_bytes, stream->opaque);
293 lto_stats.num_uncompressed_il_bytes += out_bytes;
294 uncompressed_bytes += out_bytes;
296 cursor += in_bytes;
297 remaining -= in_bytes;
299 in_stream.next_out = outbuf;
300 in_stream.avail_out = outbuf_length;
301 in_stream.next_in = cursor;
302 in_stream.avail_in = remaining;
304 while (!(status == Z_STREAM_END && out_bytes == 0));
306 status = inflateEnd (&in_stream);
307 if (status != Z_OK)
308 internal_error ("compressed stream: %s", zError (status));
311 lto_destroy_compression_stream (stream);
312 free (outbuf);