Coverage Report

Created: 2025-12-28 06:36

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zlib-ng/deflate.h
Line
Count
Source
1
#ifndef DEFLATE_H_
2
#define DEFLATE_H_
3
/* deflate.h -- internal compression state
4
 * Copyright (C) 1995-2016 Jean-loup Gailly
5
 * For conditions of distribution and use, see copyright notice in zlib.h
6
 */
7
8
/* WARNING: this file should *not* be used by applications. It is
9
   part of the implementation of the compression library and is
10
   subject to change. Applications should only use zlib.h.
11
 */
12
13
#include "zutil.h"
14
#include "zendian.h"
15
#include "zmemory.h"
16
#include "crc32.h"
17
18
#ifdef S390_DFLTCC_DEFLATE
19
#  include "arch/s390/dfltcc_common.h"
20
#  define HAVE_ARCH_DEFLATE_STATE
21
#endif
22
23
/* define NO_GZIP when compiling if you want to disable gzip header and
24
   trailer creation by deflate().  NO_GZIP would be used to avoid linking in
25
   the crc code when it is not needed.  For shared libraries, gzip encoding
26
   should be left enabled. */
27
#ifndef NO_GZIP
28
#  define GZIP
29
#endif
30
31
/* define LIT_MEM to slightly increase the speed of deflate (order 1% to 2%) at
32
   the cost of a larger memory footprint */
33
#ifndef NO_LIT_MEM
34
#  define LIT_MEM
35
#endif
36
37
/* ===========================================================================
38
 * Internal compression state.
39
 */
40
41
24.5M
#define LENGTH_CODES 29
42
/* number of length codes, not counting the special END_BLOCK code */
43
44
51.2M
#define LITERALS  256
45
/* number of literal bytes 0..255 */
46
47
24.5M
#define L_CODES (LITERALS+1+LENGTH_CODES)
48
/* number of Literal or Length codes, including the END_BLOCK code */
49
50
1.42M
#define D_CODES   30
51
/* number of distance codes */
52
53
952k
#define BL_CODES  19
54
/* number of codes used to transfer the bit lengths */
55
56
11.2M
#define HEAP_SIZE (2*L_CODES+1)
57
/* maximum heap size */
58
59
1.08G
#define BIT_BUF_SIZE 64
60
/* size of bit buffer in bi_buf */
61
62
46.1k
#define END_BLOCK 256
63
/* end of block literal code */
64
65
193k
#define INIT_STATE      1    /* zlib header -> BUSY_STATE */
66
#ifdef GZIP
67
16.1k
#  define GZIP_STATE    4    /* gzip header -> BUSY_STATE | EXTRA_STATE */
68
16.1k
#  define EXTRA_STATE   5    /* gzip extra block -> NAME_STATE */
69
16.1k
#  define NAME_STATE    6    /* gzip file name -> COMMENT_STATE */
70
16.1k
#  define COMMENT_STATE 7    /* gzip comment -> HCRC_STATE */
71
64.6k
#  define HCRC_STATE    8    /* gzip header CRC -> BUSY_STATE */
72
#endif
73
32.3k
#define BUSY_STATE      2    /* deflate -> FINISH_STATE */
74
80.8k
#define FINISH_STATE    3    /* stream complete */
75
#ifdef GZIP
76
48.4k
#  define MAX_STATE     HCRC_STATE
77
#else
78
#  define MAX_STATE     FINISH_STATE
79
#endif
80
/* Stream status */
81
82
0
#define HASH_BITS    16u           /* log2(HASH_SIZE) */
83
#ifndef HASH_SIZE
84
574M
#  define HASH_SIZE 65536u         /* number of elements in hash table */
85
#endif
86
574M
#define HASH_MASK (HASH_SIZE - 1u) /* HASH_SIZE-1 */
87
88
89
/* Data structure describing a single value and its code string. */
90
typedef struct ct_data_s {
91
    union {
92
        uint16_t  freq;       /* frequency count */
93
        uint16_t  code;       /* bit string */
94
    } fc;
95
    union {
96
        uint16_t  dad;        /* father node in Huffman tree */
97
        uint16_t  len;        /* length of bit string */
98
    } dl;
99
} ct_data;
100
101
1.03G
#define Freq fc.freq
102
36.5M
#define Code fc.code
103
22.2M
#define Dad  dl.dad
104
388M
#define Len  dl.len
105
106
typedef struct static_tree_desc_s  static_tree_desc;
107
108
typedef struct tree_desc_s {
109
    ct_data                *dyn_tree;  /* the dynamic tree */
110
    int                    max_code;   /* largest code with non zero frequency */
111
    const static_tree_desc *stat_desc; /* the corresponding static tree */
112
} tree_desc;
113
114
typedef uint16_t Pos;
115
116
/* A Pos is an index in the character window. We use short instead of int to
117
 * save space in the various tables.
118
 */
119
/* Type definitions for hash callbacks */
120
typedef struct internal_state deflate_state;
121
122
typedef void     (* insert_string_cb)      (deflate_state *const s, uint32_t str, uint32_t count);
123
void     insert_string           (deflate_state *const s, uint32_t str, uint32_t count);
124
void     insert_string_roll      (deflate_state *const s, uint32_t str, uint32_t count);
125
126
/* Struct for memory allocation handling */
127
typedef struct deflate_allocs_s {
128
    char            *buf_start;
129
    free_func        zfree;
130
    deflate_state   *state;
131
    unsigned char   *window;
132
    unsigned char   *pending_buf;
133
    Pos             *prev;
134
    Pos             *head;
135
} deflate_allocs;
136
137
struct ALIGNED_(64) internal_state {
138
                /* Cacheline 0 */
139
    PREFIX3(stream)      *strm;            /* pointer back to this zlib stream */
140
    unsigned char        *pending_buf;     /* output still pending */
141
    unsigned char        *pending_out;     /* next pending byte to output to the stream */
142
    uint32_t             pending_buf_size; /* size of pending_buf */
143
    uint32_t             pending;          /* nb of bytes in the pending buffer */
144
    int                  wrap;             /* bit 0 true for zlib, bit 1 true for gzip */
145
    uint32_t             gzindex;          /* where in extra, name, or comment */
146
    PREFIX(gz_headerp)   gzhead;           /* gzip header information to write */
147
    int                  status;           /* as the name implies */
148
    int                  last_flush;       /* value of flush param for previous deflate call */
149
    int                  reproducible;     /* Whether reproducible compression results are required. */
150
151
    unsigned int block_open;
152
    /* Whether or not a block is currently open for the QUICK deflation scheme.
153
     * This is set to 1 if there is an active block, or 0 if the block was just closed.
154
     */
155
156
                /* Cacheline 1 */
157
158
    unsigned int  lookahead;    /* number of valid bytes ahead in window */
159
    unsigned int strstart;      /* start of string to insert */
160
    unsigned int  w_size;       /* LZ77 window size (32K by default) */
161
162
    int block_start;            /* Window position at the beginning of the current output block.
163
                                 * Gets negative when the window is moved backwards. */
164
165
    unsigned int high_water;
166
    /* High water mark offset in window for initialized bytes -- bytes above
167
     * this are set to zero in order to avoid memory check warnings when
168
     * longest match routines access bytes past the input.  This is then
169
     * updated to the new high water mark.
170
     */
171
172
    unsigned int window_size;
173
    /* Actual size of window: 2*wSize, except when the user input buffer
174
     * is directly used as sliding window.
175
     */
176
177
    unsigned char *window;
178
    /* Sliding window. Input bytes are read into the second half of the window,
179
     * and move to the first half later to keep a dictionary of at least wSize
180
     * bytes. With this organization, matches are limited to a distance of
181
     * wSize-STD_MAX_MATCH bytes, but this ensures that IO is always
182
     * performed with a length multiple of the block size. Also, it limits
183
     * the window size to 64K, which is quite useful on MSDOS.
184
     * To do: use the user input buffer as sliding window.
185
     */
186
187
    Pos *prev;
188
    /* Link to older string with same hash index. To limit the size of this
189
     * array to 64K, this link is maintained only for the last 32K strings.
190
     * An index in this array is thus a window index modulo 32K.
191
     */
192
193
    Pos *head; /* Heads of the hash chains or 0. */
194
195
    uint32_t ins_h; /* hash index of string to be inserted */
196
197
    unsigned int match_length;       /* length of best match */
198
    int          match_available;    /* set if previous match exists */
199
    uint32_t     prev_match;         /* previous match (used by deflate_slow) */
200
201
                /* Cacheline 2 */
202
203
    unsigned int match_start;        /* start of matching string */
204
205
    unsigned int prev_length;
206
    /* Length of the best match at previous step. Matches not greater than this
207
     * are discarded. This is used in the lazy match evaluation.
208
     */
209
210
    unsigned int max_chain_length;
211
    /* To speed up deflation, hash chains are never searched beyond this length.
212
     * A higher limit improves compression ratio but degrades the speed.
213
     */
214
215
    unsigned int max_lazy_match;
216
    /* Attempt to find a better match only when the current match is strictly smaller
217
     * than this value. This mechanism is used only for compression levels >= 4.
218
     */
219
15.8M
#   define max_insert_length  max_lazy_match
220
    /* Insert new strings in the hash table only if the match length is not
221
     * greater than this length. This saves time but degrades compression.
222
     * max_insert_length is used only for compression levels <= 6.
223
     */
224
225
    int level;                  /* compression level (1..9) */
226
    int strategy;               /* favor or force Huffman coding*/
227
    unsigned int good_match;    /* Use a faster search when the previous match is longer than this */
228
    int nice_match;             /* Stop searching when current match exceeds this */
229
    unsigned int matches;       /* number of string matches in current block */
230
    unsigned int insert;        /* bytes at end of window left to insert */
231
232
    uint64_t bi_buf;            /* Output buffer.
233
                                 * Bits are inserted starting at the bottom (least significant bits). */
234
    int32_t bi_valid;           /* Number of valid bits in bi_buf.
235
                                 * All bits above the last valid bit are always zero. */
236
237
    int heap_len;               /* number of elements in the heap */
238
    int heap_max;               /* element of largest frequency */
239
240
    int32_t padding1[1];
241
242
                /* Cacheline 3 */
243
    struct crc32_fold_s ALIGNED_(16) crc_fold;
244
245
                /* used by trees.c: */
246
    /* Didn't use ct_data typedef below to suppress compiler warning */
247
    struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
248
    struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
249
    struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */
250
251
    struct tree_desc_s l_desc;               /* desc. for literal tree */
252
    struct tree_desc_s d_desc;               /* desc. for distance tree */
253
    struct tree_desc_s bl_desc;              /* desc. for bit length tree */
254
255
    uint16_t bl_count[MAX_BITS+1];
256
    /* number of codes at each bit length for an optimal tree */
257
258
    int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
259
    /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
260
     * The same heap array is used to build all trees.
261
     */
262
263
    unsigned char depth[2*L_CODES+1];
264
    /* Depth of each subtree used as tie breaker for trees of equal frequency
265
     */
266
267
    unsigned int  lit_bufsize;
268
    /* Size of match buffer for literals/lengths.  There are 4 reasons for
269
     * limiting lit_bufsize to 64K:
270
     *   - frequencies can be kept in 16 bit counters
271
     *   - if compression is not successful for the first block, all input
272
     *     data is still in the window so we can still emit a stored block even
273
     *     when input comes from standard input.  (This can also be done for
274
     *     all blocks if lit_bufsize is not greater than 32K.)
275
     *   - if compression is not successful for a file smaller than 64K, we can
276
     *     even emit a stored file instead of a stored block (saving 5 bytes).
277
     *     This is applicable only for zip (not gzip or zlib).
278
     *   - creating new Huffman trees less frequently may not provide fast
279
     *     adaptation to changes in the input data statistics. (Take for
280
     *     example a binary file with poorly compressible code followed by
281
     *     a highly compressible string table.) Smaller buffer sizes give
282
     *     fast adaptation but have of course the overhead of transmitting
283
     *     trees more frequently.
284
     *   - I can't count above 4
285
     */
286
287
#ifdef LIT_MEM
288
16.1k
#   define LIT_BUFS 5
289
    uint16_t *d_buf;              /* buffer for distances */
290
    unsigned char *l_buf;         /* buffer for literals/lengths */
291
#else
292
#   define LIT_BUFS 4
293
    unsigned char *sym_buf;       /* buffer for distances and literals/lengths */
294
#endif
295
296
    unsigned int sym_next;        /* running index in symbol buffer */
297
    unsigned int sym_end;         /* symbol table full when sym_next reaches this */
298
299
    unsigned int opt_len;         /* bit length of current block with optimal trees */
300
    unsigned int static_len;      /* bit length of current block with static trees */
301
302
    deflate_allocs *alloc_bufs;
303
304
#ifdef HAVE_ARCH_DEFLATE_STATE
305
    arch_deflate_state arch;      /* architecture-specific extensions */
306
#endif
307
308
    /* compressed_len and bits_sent are only used if ZLIB_DEBUG is defined */
309
#ifdef ZLIB_DEBUG
310
    unsigned long compressed_len; /* total bit length of compressed file mod 2^32 */
311
    unsigned long bits_sent;      /* bit length of compressed data sent mod 2^32 */
312
#endif
313
314
    /* Reserved for future use and alignment purposes */
315
    int32_t reserved[19];
316
};
317
318
typedef enum {
319
    need_more,      /* block not completed, need more input or more output */
320
    block_done,     /* block flush performed */
321
    finish_started, /* finish started, need only more output at next deflate */
322
    finish_done     /* finish done, accept no more input or output */
323
} block_state;
324
325
/* Output a byte on the stream.
326
 * IN assertion: there is enough room in pending_buf.
327
 */
328
19.9k
#define put_byte(s, c) { \
329
19.9k
    s->pending_buf[s->pending++] = (unsigned char)(c); \
330
19.9k
}
331
332
/* ===========================================================================
333
 * Output a short LSB first on the stream.
334
 * IN assertion: there is enough room in pending_buf.
335
 */
336
26.7k
static inline void put_short(deflate_state *s, uint16_t w) {
337
#if BYTE_ORDER == BIG_ENDIAN
338
    w = ZSWAP16(w);
339
#endif
340
26.7k
    zng_memwrite_2(&s->pending_buf[s->pending], w);
341
26.7k
    s->pending += 2;
342
26.7k
}
Unexecuted instantiation: deflate.c:put_short
Unexecuted instantiation: deflate_fast.c:put_short
Unexecuted instantiation: deflate_huff.c:put_short
Unexecuted instantiation: deflate_medium.c:put_short
deflate_quick.c:put_short
Line
Count
Source
336
1.97k
static inline void put_short(deflate_state *s, uint16_t w) {
337
#if BYTE_ORDER == BIG_ENDIAN
338
    w = ZSWAP16(w);
339
#endif
340
1.97k
    zng_memwrite_2(&s->pending_buf[s->pending], w);
341
1.97k
    s->pending += 2;
342
1.97k
}
Unexecuted instantiation: deflate_rle.c:put_short
Unexecuted instantiation: deflate_slow.c:put_short
Unexecuted instantiation: deflate_stored.c:put_short
Unexecuted instantiation: functable.c:put_short
Unexecuted instantiation: insert_string.c:put_short
trees.c:put_short
Line
Count
Source
336
24.7k
static inline void put_short(deflate_state *s, uint16_t w) {
337
#if BYTE_ORDER == BIG_ENDIAN
338
    w = ZSWAP16(w);
339
#endif
340
24.7k
    zng_memwrite_2(&s->pending_buf[s->pending], w);
341
24.7k
    s->pending += 2;
342
24.7k
}
Unexecuted instantiation: chunkset_sse2.c:put_short
Unexecuted instantiation: chorba_sse2.c:put_short
Unexecuted instantiation: compare256_sse2.c:put_short
Unexecuted instantiation: slide_hash_sse2.c:put_short
Unexecuted instantiation: chunkset_ssse3.c:put_short
Unexecuted instantiation: chorba_sse41.c:put_short
Unexecuted instantiation: slide_hash_avx2.c:put_short
Unexecuted instantiation: chunkset_avx2.c:put_short
Unexecuted instantiation: compare256_avx2.c:put_short
Unexecuted instantiation: adler32_avx512.c:put_short
Unexecuted instantiation: chunkset_avx512.c:put_short
Unexecuted instantiation: compare256_avx512.c:put_short
Unexecuted instantiation: adler32_avx512_vnni.c:put_short
Unexecuted instantiation: adler32_c.c:put_short
Unexecuted instantiation: crc32_fold_c.c:put_short
Unexecuted instantiation: crc32.c:put_short
Unexecuted instantiation: inflate.c:put_short
Unexecuted instantiation: crc32_chorba_c.c:put_short
343
344
/* ===========================================================================
345
 * Output a short MSB first on the stream.
346
 * IN assertion: there is enough room in pending_buf.
347
 */
348
16.1k
static inline void put_short_msb(deflate_state *s, uint16_t w) {
349
16.1k
#if BYTE_ORDER == LITTLE_ENDIAN
350
16.1k
    w = ZSWAP16(w);
351
16.1k
#endif
352
16.1k
    zng_memwrite_2(&s->pending_buf[s->pending], w);
353
16.1k
    s->pending += 2;
354
16.1k
}
deflate.c:put_short_msb
Line
Count
Source
348
16.1k
static inline void put_short_msb(deflate_state *s, uint16_t w) {
349
16.1k
#if BYTE_ORDER == LITTLE_ENDIAN
350
16.1k
    w = ZSWAP16(w);
351
16.1k
#endif
352
16.1k
    zng_memwrite_2(&s->pending_buf[s->pending], w);
353
16.1k
    s->pending += 2;
354
16.1k
}
Unexecuted instantiation: deflate_fast.c:put_short_msb
Unexecuted instantiation: deflate_huff.c:put_short_msb
Unexecuted instantiation: deflate_medium.c:put_short_msb
Unexecuted instantiation: deflate_quick.c:put_short_msb
Unexecuted instantiation: deflate_rle.c:put_short_msb
Unexecuted instantiation: deflate_slow.c:put_short_msb
Unexecuted instantiation: deflate_stored.c:put_short_msb
Unexecuted instantiation: functable.c:put_short_msb
Unexecuted instantiation: insert_string.c:put_short_msb
Unexecuted instantiation: trees.c:put_short_msb
Unexecuted instantiation: chunkset_sse2.c:put_short_msb
Unexecuted instantiation: chorba_sse2.c:put_short_msb
Unexecuted instantiation: compare256_sse2.c:put_short_msb
Unexecuted instantiation: slide_hash_sse2.c:put_short_msb
Unexecuted instantiation: chunkset_ssse3.c:put_short_msb
Unexecuted instantiation: chorba_sse41.c:put_short_msb
Unexecuted instantiation: slide_hash_avx2.c:put_short_msb
Unexecuted instantiation: chunkset_avx2.c:put_short_msb
Unexecuted instantiation: compare256_avx2.c:put_short_msb
Unexecuted instantiation: adler32_avx512.c:put_short_msb
Unexecuted instantiation: chunkset_avx512.c:put_short_msb
Unexecuted instantiation: compare256_avx512.c:put_short_msb
Unexecuted instantiation: adler32_avx512_vnni.c:put_short_msb
Unexecuted instantiation: adler32_c.c:put_short_msb
Unexecuted instantiation: crc32_fold_c.c:put_short_msb
Unexecuted instantiation: crc32.c:put_short_msb
Unexecuted instantiation: inflate.c:put_short_msb
Unexecuted instantiation: crc32_chorba_c.c:put_short_msb
355
356
/* ===========================================================================
357
 * Output a 32-bit unsigned int LSB first on the stream.
358
 * IN assertion: there is enough room in pending_buf.
359
 */
360
13.4k
static inline void put_uint32(deflate_state *s, uint32_t dw) {
361
#if BYTE_ORDER == BIG_ENDIAN
362
    dw = ZSWAP32(dw);
363
#endif
364
13.4k
    zng_memwrite_4(&s->pending_buf[s->pending], dw);
365
13.4k
    s->pending += 4;
366
13.4k
}
Unexecuted instantiation: deflate.c:put_uint32
Unexecuted instantiation: deflate_fast.c:put_uint32
Unexecuted instantiation: deflate_huff.c:put_uint32
Unexecuted instantiation: deflate_medium.c:put_uint32
deflate_quick.c:put_uint32
Line
Count
Source
360
1.99k
static inline void put_uint32(deflate_state *s, uint32_t dw) {
361
#if BYTE_ORDER == BIG_ENDIAN
362
    dw = ZSWAP32(dw);
363
#endif
364
1.99k
    zng_memwrite_4(&s->pending_buf[s->pending], dw);
365
1.99k
    s->pending += 4;
366
1.99k
}
Unexecuted instantiation: deflate_rle.c:put_uint32
Unexecuted instantiation: deflate_slow.c:put_uint32
Unexecuted instantiation: deflate_stored.c:put_uint32
Unexecuted instantiation: functable.c:put_uint32
Unexecuted instantiation: insert_string.c:put_uint32
trees.c:put_uint32
Line
Count
Source
360
11.4k
static inline void put_uint32(deflate_state *s, uint32_t dw) {
361
#if BYTE_ORDER == BIG_ENDIAN
362
    dw = ZSWAP32(dw);
363
#endif
364
11.4k
    zng_memwrite_4(&s->pending_buf[s->pending], dw);
365
11.4k
    s->pending += 4;
366
11.4k
}
Unexecuted instantiation: chunkset_sse2.c:put_uint32
Unexecuted instantiation: chorba_sse2.c:put_uint32
Unexecuted instantiation: compare256_sse2.c:put_uint32
Unexecuted instantiation: slide_hash_sse2.c:put_uint32
Unexecuted instantiation: chunkset_ssse3.c:put_uint32
Unexecuted instantiation: chorba_sse41.c:put_uint32
Unexecuted instantiation: slide_hash_avx2.c:put_uint32
Unexecuted instantiation: chunkset_avx2.c:put_uint32
Unexecuted instantiation: compare256_avx2.c:put_uint32
Unexecuted instantiation: adler32_avx512.c:put_uint32
Unexecuted instantiation: chunkset_avx512.c:put_uint32
Unexecuted instantiation: compare256_avx512.c:put_uint32
Unexecuted instantiation: adler32_avx512_vnni.c:put_uint32
Unexecuted instantiation: adler32_c.c:put_uint32
Unexecuted instantiation: crc32_fold_c.c:put_uint32
Unexecuted instantiation: crc32.c:put_uint32
Unexecuted instantiation: inflate.c:put_uint32
Unexecuted instantiation: crc32_chorba_c.c:put_uint32
367
368
/* ===========================================================================
369
 * Output a 32-bit unsigned int MSB first on the stream.
370
 * IN assertion: there is enough room in pending_buf.
371
 */
372
16.1k
static inline void put_uint32_msb(deflate_state *s, uint32_t dw) {
373
16.1k
#if BYTE_ORDER == LITTLE_ENDIAN
374
16.1k
    dw = ZSWAP32(dw);
375
16.1k
#endif
376
16.1k
    zng_memwrite_4(&s->pending_buf[s->pending], dw);
377
16.1k
    s->pending += 4;
378
16.1k
}
deflate.c:put_uint32_msb
Line
Count
Source
372
16.1k
static inline void put_uint32_msb(deflate_state *s, uint32_t dw) {
373
16.1k
#if BYTE_ORDER == LITTLE_ENDIAN
374
16.1k
    dw = ZSWAP32(dw);
375
16.1k
#endif
376
16.1k
    zng_memwrite_4(&s->pending_buf[s->pending], dw);
377
16.1k
    s->pending += 4;
378
16.1k
}
Unexecuted instantiation: deflate_fast.c:put_uint32_msb
Unexecuted instantiation: deflate_huff.c:put_uint32_msb
Unexecuted instantiation: deflate_medium.c:put_uint32_msb
Unexecuted instantiation: deflate_quick.c:put_uint32_msb
Unexecuted instantiation: deflate_rle.c:put_uint32_msb
Unexecuted instantiation: deflate_slow.c:put_uint32_msb
Unexecuted instantiation: deflate_stored.c:put_uint32_msb
Unexecuted instantiation: functable.c:put_uint32_msb
Unexecuted instantiation: insert_string.c:put_uint32_msb
Unexecuted instantiation: trees.c:put_uint32_msb
Unexecuted instantiation: chunkset_sse2.c:put_uint32_msb
Unexecuted instantiation: chorba_sse2.c:put_uint32_msb
Unexecuted instantiation: compare256_sse2.c:put_uint32_msb
Unexecuted instantiation: slide_hash_sse2.c:put_uint32_msb
Unexecuted instantiation: chunkset_ssse3.c:put_uint32_msb
Unexecuted instantiation: chorba_sse41.c:put_uint32_msb
Unexecuted instantiation: slide_hash_avx2.c:put_uint32_msb
Unexecuted instantiation: chunkset_avx2.c:put_uint32_msb
Unexecuted instantiation: compare256_avx2.c:put_uint32_msb
Unexecuted instantiation: adler32_avx512.c:put_uint32_msb
Unexecuted instantiation: chunkset_avx512.c:put_uint32_msb
Unexecuted instantiation: compare256_avx512.c:put_uint32_msb
Unexecuted instantiation: adler32_avx512_vnni.c:put_uint32_msb
Unexecuted instantiation: adler32_c.c:put_uint32_msb
Unexecuted instantiation: crc32_fold_c.c:put_uint32_msb
Unexecuted instantiation: crc32.c:put_uint32_msb
Unexecuted instantiation: inflate.c:put_uint32_msb
Unexecuted instantiation: crc32_chorba_c.c:put_uint32_msb
379
380
/* ===========================================================================
381
 * Output a 64-bit unsigned int LSB first on the stream.
382
 * IN assertion: there is enough room in pending_buf.
383
 */
384
41.1M
static inline void put_uint64(deflate_state *s, uint64_t lld) {
385
#if BYTE_ORDER == BIG_ENDIAN
386
    lld = ZSWAP64(lld);
387
#endif
388
41.1M
    zng_memwrite_8(&s->pending_buf[s->pending], lld);
389
41.1M
    s->pending += 8;
390
41.1M
}
Unexecuted instantiation: deflate.c:put_uint64
Unexecuted instantiation: deflate_fast.c:put_uint64
Unexecuted instantiation: deflate_huff.c:put_uint64
Unexecuted instantiation: deflate_medium.c:put_uint64
deflate_quick.c:put_uint64
Line
Count
Source
384
14.3M
static inline void put_uint64(deflate_state *s, uint64_t lld) {
385
#if BYTE_ORDER == BIG_ENDIAN
386
    lld = ZSWAP64(lld);
387
#endif
388
14.3M
    zng_memwrite_8(&s->pending_buf[s->pending], lld);
389
14.3M
    s->pending += 8;
390
14.3M
}
Unexecuted instantiation: deflate_rle.c:put_uint64
Unexecuted instantiation: deflate_slow.c:put_uint64
Unexecuted instantiation: deflate_stored.c:put_uint64
Unexecuted instantiation: functable.c:put_uint64
Unexecuted instantiation: insert_string.c:put_uint64
trees.c:put_uint64
Line
Count
Source
384
26.7M
static inline void put_uint64(deflate_state *s, uint64_t lld) {
385
#if BYTE_ORDER == BIG_ENDIAN
386
    lld = ZSWAP64(lld);
387
#endif
388
26.7M
    zng_memwrite_8(&s->pending_buf[s->pending], lld);
389
26.7M
    s->pending += 8;
390
26.7M
}
Unexecuted instantiation: chunkset_sse2.c:put_uint64
Unexecuted instantiation: chorba_sse2.c:put_uint64
Unexecuted instantiation: compare256_sse2.c:put_uint64
Unexecuted instantiation: slide_hash_sse2.c:put_uint64
Unexecuted instantiation: chunkset_ssse3.c:put_uint64
Unexecuted instantiation: chorba_sse41.c:put_uint64
Unexecuted instantiation: slide_hash_avx2.c:put_uint64
Unexecuted instantiation: chunkset_avx2.c:put_uint64
Unexecuted instantiation: compare256_avx2.c:put_uint64
Unexecuted instantiation: adler32_avx512.c:put_uint64
Unexecuted instantiation: chunkset_avx512.c:put_uint64
Unexecuted instantiation: compare256_avx512.c:put_uint64
Unexecuted instantiation: adler32_avx512_vnni.c:put_uint64
Unexecuted instantiation: adler32_c.c:put_uint64
Unexecuted instantiation: crc32_fold_c.c:put_uint64
Unexecuted instantiation: crc32.c:put_uint64
Unexecuted instantiation: inflate.c:put_uint64
Unexecuted instantiation: crc32_chorba_c.c:put_uint64
391
392
937M
#define MIN_LOOKAHEAD (STD_MAX_MATCH + STD_MIN_MATCH + 1)
393
/* Minimum amount of lookahead, except at the end of the input file.
394
 * See deflate.c for comments about the STD_MIN_MATCH+1.
395
 */
396
397
1.04G
#define MAX_DIST(s)  ((s)->w_size - MIN_LOOKAHEAD)
398
/* In order to simplify the code, particularly on 16 bit machines, match
399
 * distances are limited to MAX_DIST instead of WSIZE.
400
 */
401
402
534M
#define W_MASK(s)  ((s)->w_size - 1)
403
/* Window mask: w_size is always a power of 2, so w_mask = w_size - 1 */
404
405
#ifdef HAVE_BUILTIN_CTZ
406
16.1k
#  define W_BITS(s)  ((unsigned int)__builtin_ctz((s)->w_size))
407
#else
408
/* Fallback for w_size which is always a power of 2 between 256 and 32768 */
409
static inline unsigned int compute_w_bits(unsigned int w_size) {
410
    /* Switch ordered by likelihood - most common first (MAX_WBITS=15 -> 32768) */
411
    switch (w_size) {
412
        case 32768: return 15;  /* MAX_WBITS default */
413
        case 16384: return 14;
414
        case  8192: return 13;
415
        case  4096: return 12;
416
        case  2048: return 11;
417
        case  1024: return 10;
418
        case   512: return  9;
419
        case   256: return  8;
420
    }
421
    Assert(w_size >= 256 && w_size <= 32768, "invalid w_size");
422
    return 0;
423
}
424
#  define W_BITS(s)  compute_w_bits((s)->w_size)
425
#endif
426
/* Window bits: log2(w_size), computed from w_size since w_size is a power of 2 */
427
428
727k
#define WIN_INIT STD_MAX_MATCH
429
/* Number of bytes after end of data in window to initialize in order to avoid
430
   memory checker errors from longest match routines */
431
432
433
void Z_INTERNAL PREFIX(fill_window)(deflate_state *s);
434
void Z_INTERNAL slide_hash_c(deflate_state *s);
435
436
        /* in trees.c */
437
void Z_INTERNAL zng_tr_init(deflate_state *s);
438
void Z_INTERNAL zng_tr_flush_block(deflate_state *s, char *buf, uint32_t stored_len, int last);
439
void Z_INTERNAL zng_tr_flush_bits(deflate_state *s);
440
void Z_INTERNAL zng_tr_align(deflate_state *s);
441
void Z_INTERNAL zng_tr_stored_block(deflate_state *s, char *buf, uint32_t stored_len, int last);
442
void Z_INTERNAL PREFIX(flush_pending)(PREFIX3(streamp) strm);
443
26.6M
#define d_code(dist) ((dist) < 256 ? zng_dist_code[dist] : zng_dist_code[256+((dist)>>7)])
444
/* Mapping from a distance to a distance code. dist is the distance - 1 and
445
 * must not have side effects. zng_dist_code[256] and zng_dist_code[257] are never
446
 * used.
447
 */
448
449
/* Bit buffer and compress bits calculation debugging */
450
#ifdef ZLIB_DEBUG
451
#  define cmpr_bits_add(s, len)     s->compressed_len += (len)
452
#  define cmpr_bits_align(s)        s->compressed_len = (s->compressed_len + 7) & ~7L
453
#  define sent_bits_add(s, bits)    s->bits_sent += (bits)
454
#  define sent_bits_align(s)        s->bits_sent = (s->bits_sent + 7) & ~7L
455
#else
456
104M
#  define cmpr_bits_add(s, len)     Z_UNUSED(len)
457
#  define cmpr_bits_align(s)
458
321M
#  define sent_bits_add(s, bits)    Z_UNUSED(bits)
459
#  define sent_bits_align(s)
460
#endif
461
462
/* ===========================================================================
463
 *  Architecture-specific hooks.
464
 */
465
#ifdef S390_DFLTCC_DEFLATE
466
#  include "arch/s390/dfltcc_deflate.h"
467
/* DFLTCC instructions require window to be page-aligned */
468
#  define PAD_WINDOW            PAD_4096
469
#  define WINDOW_PAD_SIZE       4096
470
#  define HINT_ALIGNED_WINDOW   HINT_ALIGNED_4096
471
#else
472
36.3k
#  define PAD_WINDOW            PAD_64
473
#  define WINDOW_PAD_SIZE       64
474
72.7k
#  define HINT_ALIGNED_WINDOW   HINT_ALIGNED_64
475
/* Adjust the window size for the arch-specific deflate code. */
476
16.1k
#  define DEFLATE_ADJUST_WINDOW_SIZE(n) (n)
477
/* Invoked at the beginning of deflateSetDictionary(). Useful for checking arch-specific window data. */
478
0
#  define DEFLATE_SET_DICTIONARY_HOOK(strm, dict, dict_len) do {} while (0)
479
/* Invoked at the beginning of deflateGetDictionary(). Useful for adjusting arch-specific window data. */
480
0
#  define DEFLATE_GET_DICTIONARY_HOOK(strm, dict, dict_len) do {} while (0)
481
/* Invoked at the end of deflateResetKeep(). Useful for initializing arch-specific extension blocks. */
482
16.1k
#  define DEFLATE_RESET_KEEP_HOOK(strm) do {} while (0)
483
/* Invoked at the beginning of deflateParams(). Useful for updating arch-specific compression parameters. */
484
0
#  define DEFLATE_PARAMS_HOOK(strm, level, strategy, hook_flush) do {} while (0)
485
/* Returns whether the last deflate(flush) operation did everything it's supposed to do. */
486
0
#  define DEFLATE_DONE(strm, flush) 1
487
/* Adjusts the upper bound on compressed data length based on compression parameters and uncompressed data length.
488
 * Useful when arch-specific deflation code behaves differently than regular zlib-ng algorithms. */
489
0
#  define DEFLATE_BOUND_ADJUST_COMPLEN(strm, complen, sourceLen) do {} while (0)
490
/* Returns whether an optimistic upper bound on compressed data length should *not* be used.
491
 * Useful when arch-specific deflation code behaves differently than regular zlib-ng algorithms. */
492
0
#  define DEFLATE_NEED_CONSERVATIVE_BOUND(strm) 0
493
/* Invoked for each deflate() call. Useful for plugging arch-specific deflation code. */
494
16.1k
#  define DEFLATE_HOOK(strm, flush, bstate) 0
495
/* Returns whether zlib-ng should compute a checksum. Set to 0 if arch-specific deflation code already does that. */
496
35.3k
#  define DEFLATE_NEED_CHECKSUM(strm) 1
497
/* Returns whether reproducibility parameter can be set to a given value. */
498
0
#  define DEFLATE_CAN_SET_REPRODUCIBLE(strm, reproducible) 1
499
#endif
500
501
#endif /* DEFLATE_H_ */