Coverage Report

Created: 2025-11-24 06:41

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zlib-ng/inffast_tpl.h
Line
Count
Source
1
/* inffast.c -- fast decoding
2
 * Copyright (C) 1995-2017 Mark Adler
3
 * For conditions of distribution and use, see copyright notice in zlib.h
4
 */
5
6
#include "zbuild.h"
7
#include "zendian.h"
8
#include "zutil.h"
9
#include "inftrees.h"
10
#include "inflate.h"
11
#include "inflate_p.h"
12
#include "functable.h"
13
14
/*
15
   Decode literal, length, and distance codes and write out the resulting
16
   literal and match bytes until either not enough input or output is
17
   available, an end-of-block is encountered, or a data error is encountered.
18
   When large enough input and output buffers are supplied to inflate(), for
19
   example, a 16K input buffer and a 64K output buffer, more than 95% of the
20
   inflate execution time is spent in this routine.
21
22
   Entry assumptions:
23
24
        state->mode == LEN
25
        strm->avail_in >= INFLATE_FAST_MIN_HAVE
26
        strm->avail_out >= INFLATE_FAST_MIN_LEFT
27
        start >= strm->avail_out
28
        state->bits < 8
29
30
   On return, state->mode is one of:
31
32
        LEN -- ran out of enough output space or enough available input
33
        TYPE -- reached end of block code, inflate() to interpret next block
34
        BAD -- error in block data
35
36
   Notes:
37
38
    - The maximum input bits used by a length/distance pair is 15 bits for the
39
      length code, 5 bits for the length extra, 15 bits for the distance code,
40
      and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
41
      Therefore if strm->avail_in >= 6, then there is enough input to avoid
42
      checking for available input while decoding.
43
44
    - On some architectures, it can be significantly faster (e.g. up to 1.2x
45
      faster on x86_64) to load from strm->next_in 64 bits, or 8 bytes, at a
46
      time, so INFLATE_FAST_MIN_HAVE == 8.
47
48
    - The maximum bytes that a single length/distance pair can output is 258
49
      bytes, which is the maximum length that can be coded.  inflate_fast()
50
      requires strm->avail_out >= 258 for each loop to avoid checking for
51
      output space.
52
 */
53
5.63M
void Z_INTERNAL INFLATE_FAST(PREFIX3(stream) *strm, uint32_t start) {
54
    /* start: inflate()'s starting value for strm->avail_out */
55
5.63M
    struct inflate_state *state;
56
5.63M
    z_const unsigned char *in;  /* local strm->next_in */
57
5.63M
    const unsigned char *last;  /* have enough input while in < last */
58
5.63M
    unsigned char *out;         /* local strm->next_out */
59
5.63M
    unsigned char *beg;         /* inflate()'s initial strm->next_out */
60
5.63M
    unsigned char *end;         /* while out < end, enough space available */
61
5.63M
    unsigned char *safe;        /* can use chunkcopy provided out < safe */
62
5.63M
    unsigned char *window;      /* allocated sliding window, if wsize != 0 */
63
5.63M
    unsigned wsize;             /* window size or zero if not using window */
64
5.63M
    unsigned whave;             /* valid bytes in the window */
65
5.63M
    unsigned wnext;             /* window write index */
66
67
    /* hold is a local copy of strm->hold. By default, hold satisfies the same
68
       invariants that strm->hold does, namely that (hold >> bits) == 0. This
69
       invariant is kept by loading bits into hold one byte at a time, like:
70
71
       hold |= next_byte_of_input << bits; in++; bits += 8;
72
73
       If we need to ensure that bits >= 15 then this code snippet is simply
74
       repeated. Over one iteration of the outermost do/while loop, this
75
       happens up to six times (48 bits of input), as described in the NOTES
76
       above.
77
78
       However, on some little endian architectures, it can be significantly
79
       faster to load 64 bits once instead of 8 bits six times:
80
81
       if (bits <= 16) {
82
         hold |= next_8_bytes_of_input << bits; in += 6; bits += 48;
83
       }
84
85
       Unlike the simpler one byte load, shifting the next_8_bytes_of_input
86
       by bits will overflow and lose those high bits, up to 2 bytes' worth.
87
       The conservative estimate is therefore that we have read only 6 bytes
88
       (48 bits). Again, as per the NOTES above, 48 bits is sufficient for the
89
       rest of the iteration, and we will not need to load another 8 bytes.
90
91
       Inside this function, we no longer satisfy (hold >> bits) == 0, but
92
       this is not problematic, even if that overflow does not land on an 8 bit
93
       byte boundary. Those excess bits will eventually shift down lower as the
94
       Huffman decoder consumes input, and when new input bits need to be loaded
95
       into the bits variable, the same input bits will be or'ed over those
96
       existing bits. A bitwise or is idempotent: (a | b | b) equals (a | b).
97
       Note that we therefore write that load operation as "hold |= etc" and not
98
       "hold += etc".
99
100
       Outside that loop, at the end of the function, hold is bitwise and'ed
101
       with (1<<bits)-1 to drop those excess bits so that, on function exit, we
102
       keep the invariant that (state->hold >> state->bits) == 0.
103
    */
104
5.63M
    unsigned bits;              /* local strm->bits */
105
5.63M
    uint64_t hold;              /* local strm->hold */
106
5.63M
    unsigned lmask;             /* mask for first level of length codes */
107
5.63M
    unsigned dmask;             /* mask for first level of distance codes */
108
5.63M
    code const *lcode;          /* local strm->lencode */
109
5.63M
    code const *dcode;          /* local strm->distcode */
110
5.63M
    const code *here;           /* retrieved table entry */
111
5.63M
    unsigned op;                /* code bits, operation, extra bits, or */
112
                                /*  window position, window bytes to copy */
113
5.63M
    unsigned len;               /* match length, unused bytes */
114
5.63M
    unsigned char *from;        /* where to copy match from */
115
5.63M
    unsigned dist;              /* match distance */
116
5.63M
    unsigned extra_safe;        /* copy chunks safely in all cases */
117
118
    /* copy state to local variables */
119
5.63M
    state = (struct inflate_state *)strm->state;
120
5.63M
    in = strm->next_in;
121
5.63M
    last = in + (strm->avail_in - (INFLATE_FAST_MIN_HAVE - 1));
122
5.63M
    out = strm->next_out;
123
5.63M
    beg = out - (start - strm->avail_out);
124
5.63M
    end = out + (strm->avail_out - (INFLATE_FAST_MIN_LEFT - 1));
125
5.63M
    safe = out + strm->avail_out;
126
5.63M
    wsize = state->wsize;
127
5.63M
    whave = state->whave;
128
5.63M
    wnext = state->wnext;
129
5.63M
    window = state->window;
130
5.63M
    hold = state->hold;
131
5.63M
    bits = state->bits;
132
5.63M
    lcode = state->lencode;
133
5.63M
    dcode = state->distcode;
134
5.63M
    lmask = (1U << state->lenbits) - 1;
135
5.63M
    dmask = (1U << state->distbits) - 1;
136
137
    /* Detect if out and window point to the same memory allocation. In this instance it is
138
       necessary to use safe chunk copy functions to prevent overwriting the window. If the
139
       window is overwritten then future matches with far distances will fail to copy correctly. */
140
5.63M
    extra_safe = (wsize != 0 && out >= window && out + INFLATE_FAST_MIN_LEFT <= window + state->wbufsize);
141
142
119M
#define REFILL() do { \
143
119M
        hold |= load_64_bits(in, bits); \
144
119M
        in += 7; \
145
119M
        in -= ((bits >> 3) & 7); \
146
119M
        bits |= 56; \
147
119M
    } while (0)
148
149
    /* decode literals and length/distances until end-of-block or not enough
150
       input data or output space */
151
119M
    do {
152
119M
        REFILL();
153
119M
        here = lcode + (hold & lmask);
154
119M
        if (here->op == 0) {
155
101M
            *out++ = (unsigned char)(here->val);
156
101M
            DROPBITS(here->bits);
157
101M
            here = lcode + (hold & lmask);
158
101M
            if (here->op == 0) {
159
98.3M
                *out++ = (unsigned char)(here->val);
160
98.3M
                DROPBITS(here->bits);
161
98.3M
                here = lcode + (hold & lmask);
162
98.3M
            }
163
101M
        }
164
121M
      dolen:
165
121M
        DROPBITS(here->bits);
166
121M
        op = here->op;
167
121M
        if (op == 0) {                          /* literal */
168
96.9M
            Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
169
96.9M
                    "inflate:         literal '%c'\n" :
170
96.9M
                    "inflate:         literal 0x%02x\n", here->val));
171
96.9M
            *out++ = (unsigned char)(here->val);
172
96.9M
        } else if (op & 16) {                     /* length base */
173
17.3M
            len = here->val;
174
17.3M
            op &= MAX_BITS;                       /* number of extra bits */
175
17.3M
            len += BITS(op);
176
17.3M
            DROPBITS(op);
177
17.3M
            Tracevv((stderr, "inflate:         length %u\n", len));
178
17.3M
            here = dcode + (hold & dmask);
179
17.3M
            if (bits < MAX_BITS + MAX_DIST_EXTRA_BITS) {
180
10.7k
                REFILL();
181
10.7k
            }
182
17.3M
          dodist:
183
17.3M
            DROPBITS(here->bits);
184
17.3M
            op = here->op;
185
17.3M
            if (op & 16) {                      /* distance base */
186
17.3M
                dist = here->val;
187
17.3M
                op &= MAX_BITS;                 /* number of extra bits */
188
17.3M
                dist += BITS(op);
189
#ifdef INFLATE_STRICT
190
                if (dist > state->dmax) {
191
                    SET_BAD("invalid distance too far back");
192
                    break;
193
                }
194
#endif
195
17.3M
                DROPBITS(op);
196
17.3M
                Tracevv((stderr, "inflate:         distance %u\n", dist));
197
17.3M
                op = (unsigned)(out - beg);     /* max distance in output */
198
17.3M
                if (dist > op) {                /* see if copy from window */
199
312
                    op = dist - op;             /* distance back in window */
200
312
                    if (op > whave) {
201
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
202
                        if (state->sane) {
203
                            SET_BAD("invalid distance too far back");
204
                            break;
205
                        }
206
                        if (len <= op - whave) {
207
                            do {
208
                                *out++ = 0;
209
                            } while (--len);
210
                            continue;
211
                        }
212
                        len -= op - whave;
213
                        do {
214
                            *out++ = 0;
215
                        } while (--op > whave);
216
                        if (op == 0) {
217
                            from = out - dist;
218
                            do {
219
                                *out++ = *from++;
220
                            } while (--len);
221
                            continue;
222
                        }
223
#else
224
312
                        SET_BAD("invalid distance too far back");
225
312
                        break;
226
312
#endif
227
312
                    }
228
0
                    from = window;
229
0
                    if (wnext == 0) {           /* very common case */
230
0
                        from += wsize - op;
231
0
                    } else if (wnext >= op) {   /* contiguous in window */
232
0
                        from += wnext - op;
233
0
                    } else {                    /* wrap around window */
234
0
                        op -= wnext;
235
0
                        from += wsize - op;
236
0
                        if (op < len) {         /* some from end of window */
237
0
                            len -= op;
238
0
                            out = CHUNKCOPY_SAFE(out, from, op, safe);
239
0
                            from = window;      /* more from start of window */
240
0
                            op = wnext;
241
                            /* This (rare) case can create a situation where
242
                               the first chunkcopy below must be checked.
243
                             */
244
0
                        }
245
0
                    }
246
0
                    if (op < len) {             /* still need some from output */
247
0
                        len -= op;
248
0
                        if (!extra_safe) {
249
0
                            out = CHUNKCOPY_SAFE(out, from, op, safe);
250
0
                            out = CHUNKUNROLL(out, &dist, &len);
251
0
                            out = CHUNKCOPY_SAFE(out, out - dist, len, safe);
252
0
                        } else {
253
0
                            out = chunkcopy_safe(out, from, op, safe);
254
0
                            out = chunkcopy_safe(out, out - dist, len, safe);
255
0
                        }
256
0
                    } else {
257
#ifndef HAVE_MASKED_READWRITE
258
0
                        if (extra_safe)
259
0
                            out = chunkcopy_safe(out, from, len, safe);
260
0
                        else
261
0
#endif
262
0
                            out = CHUNKCOPY_SAFE(out, from, len, safe);
263
0
                    }
264
#ifndef HAVE_MASKED_READWRITE
265
17.3M
                } else if (extra_safe) {
266
                    /* Whole reference is in range of current output. */
267
                        out = chunkcopy_safe(out, out - dist, len, safe);
268
#endif
269
17.3M
                } else {
270
                    /* Whole reference is in range of current output.  No range checks are
271
                       necessary because we start with room for at least 258 bytes of output,
272
                       so unroll and roundoff operations can write beyond `out+len` so long
273
                       as they stay within 258 bytes of `out`.
274
                    */
275
17.3M
                    if (dist >= len || dist >= CHUNKSIZE())
276
16.2M
                        out = CHUNKCOPY(out, out - dist, len);
277
1.08M
                    else
278
1.08M
                        out = CHUNKMEMSET(out, out - dist, len);
279
17.3M
                }
280
17.3M
            } else if ((op & 64) == 0) {          /* 2nd level distance code */
281
14.9k
                here = dcode + here->val + BITS(op);
282
14.9k
                goto dodist;
283
14.9k
            } else {
284
38
                SET_BAD("invalid distance code");
285
38
                break;
286
38
            }
287
17.3M
        } else if ((op & 64) == 0) {              /* 2nd level length code */
288
1.25M
            here = lcode + here->val + BITS(op);
289
1.25M
            goto dolen;
290
5.62M
        } else if (op & 32) {                     /* end-of-block */
291
5.62M
            Tracevv((stderr, "inflate:         end of block\n"));
292
5.62M
            state->mode = TYPE;
293
5.62M
            break;
294
5.62M
        } else {
295
7
            SET_BAD("invalid literal/length code");
296
7
            break;
297
7
        }
298
121M
    } while (in < last && out < end);
299
300
    /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
301
5.63M
    len = bits >> 3;
302
5.63M
    in -= len;
303
5.63M
    bits -= len << 3;
304
5.63M
    hold &= (UINT64_C(1) << bits) - 1;
305
306
    /* update state and return */
307
5.63M
    strm->next_in = in;
308
5.63M
    strm->next_out = out;
309
5.63M
    strm->avail_in = (unsigned)(in < last ? (INFLATE_FAST_MIN_HAVE - 1) + (last - in)
310
5.63M
                                          : (INFLATE_FAST_MIN_HAVE - 1) - (in - last));
311
5.63M
    strm->avail_out = (unsigned)(out < end ? (INFLATE_FAST_MIN_LEFT - 1) + (end - out)
312
5.63M
                                           : (INFLATE_FAST_MIN_LEFT - 1) - (out - end));
313
314
5.63M
    Assert(bits <= 32, "Remaining bits greater than 32");
315
5.63M
    state->hold = (uint32_t)hold;
316
5.63M
    state->bits = bits;
317
5.63M
    return;
318
5.63M
}
Unexecuted instantiation: inflate_fast_sse2
Unexecuted instantiation: inflate_fast_ssse3
inflate_fast_avx2
Line
Count
Source
53
5.63M
void Z_INTERNAL INFLATE_FAST(PREFIX3(stream) *strm, uint32_t start) {
54
    /* start: inflate()'s starting value for strm->avail_out */
55
5.63M
    struct inflate_state *state;
56
5.63M
    z_const unsigned char *in;  /* local strm->next_in */
57
5.63M
    const unsigned char *last;  /* have enough input while in < last */
58
5.63M
    unsigned char *out;         /* local strm->next_out */
59
5.63M
    unsigned char *beg;         /* inflate()'s initial strm->next_out */
60
5.63M
    unsigned char *end;         /* while out < end, enough space available */
61
5.63M
    unsigned char *safe;        /* can use chunkcopy provided out < safe */
62
5.63M
    unsigned char *window;      /* allocated sliding window, if wsize != 0 */
63
5.63M
    unsigned wsize;             /* window size or zero if not using window */
64
5.63M
    unsigned whave;             /* valid bytes in the window */
65
5.63M
    unsigned wnext;             /* window write index */
66
67
    /* hold is a local copy of strm->hold. By default, hold satisfies the same
68
       invariants that strm->hold does, namely that (hold >> bits) == 0. This
69
       invariant is kept by loading bits into hold one byte at a time, like:
70
71
       hold |= next_byte_of_input << bits; in++; bits += 8;
72
73
       If we need to ensure that bits >= 15 then this code snippet is simply
74
       repeated. Over one iteration of the outermost do/while loop, this
75
       happens up to six times (48 bits of input), as described in the NOTES
76
       above.
77
78
       However, on some little endian architectures, it can be significantly
79
       faster to load 64 bits once instead of 8 bits six times:
80
81
       if (bits <= 16) {
82
         hold |= next_8_bytes_of_input << bits; in += 6; bits += 48;
83
       }
84
85
       Unlike the simpler one byte load, shifting the next_8_bytes_of_input
86
       by bits will overflow and lose those high bits, up to 2 bytes' worth.
87
       The conservative estimate is therefore that we have read only 6 bytes
88
       (48 bits). Again, as per the NOTES above, 48 bits is sufficient for the
89
       rest of the iteration, and we will not need to load another 8 bytes.
90
91
       Inside this function, we no longer satisfy (hold >> bits) == 0, but
92
       this is not problematic, even if that overflow does not land on an 8 bit
93
       byte boundary. Those excess bits will eventually shift down lower as the
94
       Huffman decoder consumes input, and when new input bits need to be loaded
95
       into the bits variable, the same input bits will be or'ed over those
96
       existing bits. A bitwise or is idempotent: (a | b | b) equals (a | b).
97
       Note that we therefore write that load operation as "hold |= etc" and not
98
       "hold += etc".
99
100
       Outside that loop, at the end of the function, hold is bitwise and'ed
101
       with (1<<bits)-1 to drop those excess bits so that, on function exit, we
102
       keep the invariant that (state->hold >> state->bits) == 0.
103
    */
104
5.63M
    unsigned bits;              /* local strm->bits */
105
5.63M
    uint64_t hold;              /* local strm->hold */
106
5.63M
    unsigned lmask;             /* mask for first level of length codes */
107
5.63M
    unsigned dmask;             /* mask for first level of distance codes */
108
5.63M
    code const *lcode;          /* local strm->lencode */
109
5.63M
    code const *dcode;          /* local strm->distcode */
110
5.63M
    const code *here;           /* retrieved table entry */
111
5.63M
    unsigned op;                /* code bits, operation, extra bits, or */
112
                                /*  window position, window bytes to copy */
113
5.63M
    unsigned len;               /* match length, unused bytes */
114
5.63M
    unsigned char *from;        /* where to copy match from */
115
5.63M
    unsigned dist;              /* match distance */
116
5.63M
    unsigned extra_safe;        /* copy chunks safely in all cases */
117
118
    /* copy state to local variables */
119
5.63M
    state = (struct inflate_state *)strm->state;
120
5.63M
    in = strm->next_in;
121
5.63M
    last = in + (strm->avail_in - (INFLATE_FAST_MIN_HAVE - 1));
122
5.63M
    out = strm->next_out;
123
5.63M
    beg = out - (start - strm->avail_out);
124
5.63M
    end = out + (strm->avail_out - (INFLATE_FAST_MIN_LEFT - 1));
125
5.63M
    safe = out + strm->avail_out;
126
5.63M
    wsize = state->wsize;
127
5.63M
    whave = state->whave;
128
5.63M
    wnext = state->wnext;
129
5.63M
    window = state->window;
130
5.63M
    hold = state->hold;
131
5.63M
    bits = state->bits;
132
5.63M
    lcode = state->lencode;
133
5.63M
    dcode = state->distcode;
134
5.63M
    lmask = (1U << state->lenbits) - 1;
135
5.63M
    dmask = (1U << state->distbits) - 1;
136
137
    /* Detect if out and window point to the same memory allocation. In this instance it is
138
       necessary to use safe chunk copy functions to prevent overwriting the window. If the
139
       window is overwritten then future matches with far distances will fail to copy correctly. */
140
5.63M
    extra_safe = (wsize != 0 && out >= window && out + INFLATE_FAST_MIN_LEFT <= window + state->wbufsize);
141
142
5.63M
#define REFILL() do { \
143
5.63M
        hold |= load_64_bits(in, bits); \
144
5.63M
        in += 7; \
145
5.63M
        in -= ((bits >> 3) & 7); \
146
5.63M
        bits |= 56; \
147
5.63M
    } while (0)
148
149
    /* decode literals and length/distances until end-of-block or not enough
150
       input data or output space */
151
119M
    do {
152
119M
        REFILL();
153
119M
        here = lcode + (hold & lmask);
154
119M
        if (here->op == 0) {
155
101M
            *out++ = (unsigned char)(here->val);
156
101M
            DROPBITS(here->bits);
157
101M
            here = lcode + (hold & lmask);
158
101M
            if (here->op == 0) {
159
98.3M
                *out++ = (unsigned char)(here->val);
160
98.3M
                DROPBITS(here->bits);
161
98.3M
                here = lcode + (hold & lmask);
162
98.3M
            }
163
101M
        }
164
121M
      dolen:
165
121M
        DROPBITS(here->bits);
166
121M
        op = here->op;
167
121M
        if (op == 0) {                          /* literal */
168
96.9M
            Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
169
96.9M
                    "inflate:         literal '%c'\n" :
170
96.9M
                    "inflate:         literal 0x%02x\n", here->val));
171
96.9M
            *out++ = (unsigned char)(here->val);
172
96.9M
        } else if (op & 16) {                     /* length base */
173
17.3M
            len = here->val;
174
17.3M
            op &= MAX_BITS;                       /* number of extra bits */
175
17.3M
            len += BITS(op);
176
17.3M
            DROPBITS(op);
177
17.3M
            Tracevv((stderr, "inflate:         length %u\n", len));
178
17.3M
            here = dcode + (hold & dmask);
179
17.3M
            if (bits < MAX_BITS + MAX_DIST_EXTRA_BITS) {
180
10.7k
                REFILL();
181
10.7k
            }
182
17.3M
          dodist:
183
17.3M
            DROPBITS(here->bits);
184
17.3M
            op = here->op;
185
17.3M
            if (op & 16) {                      /* distance base */
186
17.3M
                dist = here->val;
187
17.3M
                op &= MAX_BITS;                 /* number of extra bits */
188
17.3M
                dist += BITS(op);
189
#ifdef INFLATE_STRICT
190
                if (dist > state->dmax) {
191
                    SET_BAD("invalid distance too far back");
192
                    break;
193
                }
194
#endif
195
17.3M
                DROPBITS(op);
196
17.3M
                Tracevv((stderr, "inflate:         distance %u\n", dist));
197
17.3M
                op = (unsigned)(out - beg);     /* max distance in output */
198
17.3M
                if (dist > op) {                /* see if copy from window */
199
312
                    op = dist - op;             /* distance back in window */
200
312
                    if (op > whave) {
201
#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
202
                        if (state->sane) {
203
                            SET_BAD("invalid distance too far back");
204
                            break;
205
                        }
206
                        if (len <= op - whave) {
207
                            do {
208
                                *out++ = 0;
209
                            } while (--len);
210
                            continue;
211
                        }
212
                        len -= op - whave;
213
                        do {
214
                            *out++ = 0;
215
                        } while (--op > whave);
216
                        if (op == 0) {
217
                            from = out - dist;
218
                            do {
219
                                *out++ = *from++;
220
                            } while (--len);
221
                            continue;
222
                        }
223
#else
224
312
                        SET_BAD("invalid distance too far back");
225
312
                        break;
226
312
#endif
227
312
                    }
228
0
                    from = window;
229
0
                    if (wnext == 0) {           /* very common case */
230
0
                        from += wsize - op;
231
0
                    } else if (wnext >= op) {   /* contiguous in window */
232
0
                        from += wnext - op;
233
0
                    } else {                    /* wrap around window */
234
0
                        op -= wnext;
235
0
                        from += wsize - op;
236
0
                        if (op < len) {         /* some from end of window */
237
0
                            len -= op;
238
0
                            out = CHUNKCOPY_SAFE(out, from, op, safe);
239
0
                            from = window;      /* more from start of window */
240
0
                            op = wnext;
241
                            /* This (rare) case can create a situation where
242
                               the first chunkcopy below must be checked.
243
                             */
244
0
                        }
245
0
                    }
246
0
                    if (op < len) {             /* still need some from output */
247
0
                        len -= op;
248
0
                        if (!extra_safe) {
249
0
                            out = CHUNKCOPY_SAFE(out, from, op, safe);
250
0
                            out = CHUNKUNROLL(out, &dist, &len);
251
0
                            out = CHUNKCOPY_SAFE(out, out - dist, len, safe);
252
0
                        } else {
253
0
                            out = chunkcopy_safe(out, from, op, safe);
254
0
                            out = chunkcopy_safe(out, out - dist, len, safe);
255
0
                        }
256
0
                    } else {
257
0
#ifndef HAVE_MASKED_READWRITE
258
0
                        if (extra_safe)
259
0
                            out = chunkcopy_safe(out, from, len, safe);
260
0
                        else
261
0
#endif
262
0
                            out = CHUNKCOPY_SAFE(out, from, len, safe);
263
0
                    }
264
0
#ifndef HAVE_MASKED_READWRITE
265
17.3M
                } else if (extra_safe) {
266
                    /* Whole reference is in range of current output. */
267
0
                        out = chunkcopy_safe(out, out - dist, len, safe);
268
0
#endif
269
17.3M
                } else {
270
                    /* Whole reference is in range of current output.  No range checks are
271
                       necessary because we start with room for at least 258 bytes of output,
272
                       so unroll and roundoff operations can write beyond `out+len` so long
273
                       as they stay within 258 bytes of `out`.
274
                    */
275
17.3M
                    if (dist >= len || dist >= CHUNKSIZE())
276
16.2M
                        out = CHUNKCOPY(out, out - dist, len);
277
1.08M
                    else
278
1.08M
                        out = CHUNKMEMSET(out, out - dist, len);
279
17.3M
                }
280
17.3M
            } else if ((op & 64) == 0) {          /* 2nd level distance code */
281
14.9k
                here = dcode + here->val + BITS(op);
282
14.9k
                goto dodist;
283
14.9k
            } else {
284
38
                SET_BAD("invalid distance code");
285
38
                break;
286
38
            }
287
17.3M
        } else if ((op & 64) == 0) {              /* 2nd level length code */
288
1.25M
            here = lcode + here->val + BITS(op);
289
1.25M
            goto dolen;
290
5.62M
        } else if (op & 32) {                     /* end-of-block */
291
5.62M
            Tracevv((stderr, "inflate:         end of block\n"));
292
5.62M
            state->mode = TYPE;
293
5.62M
            break;
294
5.62M
        } else {
295
7
            SET_BAD("invalid literal/length code");
296
7
            break;
297
7
        }
298
121M
    } while (in < last && out < end);
299
300
    /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
301
5.63M
    len = bits >> 3;
302
5.63M
    in -= len;
303
5.63M
    bits -= len << 3;
304
5.63M
    hold &= (UINT64_C(1) << bits) - 1;
305
306
    /* update state and return */
307
5.63M
    strm->next_in = in;
308
5.63M
    strm->next_out = out;
309
5.63M
    strm->avail_in = (unsigned)(in < last ? (INFLATE_FAST_MIN_HAVE - 1) + (last - in)
310
5.63M
                                          : (INFLATE_FAST_MIN_HAVE - 1) - (in - last));
311
5.63M
    strm->avail_out = (unsigned)(out < end ? (INFLATE_FAST_MIN_LEFT - 1) + (end - out)
312
5.63M
                                           : (INFLATE_FAST_MIN_LEFT - 1) - (out - end));
313
314
5.63M
    Assert(bits <= 32, "Remaining bits greater than 32");
315
5.63M
    state->hold = (uint32_t)hold;
316
5.63M
    state->bits = bits;
317
5.63M
    return;
318
5.63M
}
Unexecuted instantiation: inflate_fast_avx512
319
320
/*
321
   inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):
322
   - Using bit fields for code structure
323
   - Different op definition to avoid & for extra bits (do & for table bits)
324
   - Three separate decoding do-loops for direct, window, and wnext == 0
325
   - Special case for distance > 1 copies to do overlapped load and store copy
326
   - Explicit branch predictions (based on measured branch probabilities)
327
   - Deferring match copy and interspersed it with decoding subsequent codes
328
   - Swapping literal/length else
329
   - Swapping window/direct else
330
   - Larger unrolled copy loops (three is about right)
331
   - Moving len -= 3 statement into middle of loop
332
 */