1 /* inffast.c -- fast decoding
2 * Copyright (C) 1995-2004 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h
6 #include <linux/zutil.h>
11 /* Only do the unaligned "Faster" variant when
12 * CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS is set
14 * On powerpc, it won't be as we don't include autoconf.h
15 * automatically for the boot wrapper, which is intended as
16 * we run in an environment where we may not be able to deal
17 * with (even rare) alignment faults. In addition, we do not
18 * define __KERNEL__ for arch/powerpc/boot unlike x86
21 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
22 #include <asm/unaligned.h>
23 #include <asm/byteorder.h>
28 /* Allow machine dependent optimization for post-increment or pre-increment.
29 Based on testing to date,
30 Pre-increment preferred for:
32 - MIPS R5000 (Randers-Pehrson)
33 Post-increment preferred for:
35 No measurable difference:
36 - Pentium III (Anderson)
41 # define PUP(a) *(a)++
42 # define UP_UNALIGNED(a) get_unaligned((a)++)
45 # define PUP(a) *++(a)
46 # define UP_UNALIGNED(a) get_unaligned(++(a))
50 Decode literal, length, and distance codes and write out the resulting
51 literal and match bytes until either not enough input or output is
52 available, an end-of-block is encountered, or a data error is encountered.
53 When large enough input and output buffers are supplied to inflate(), for
54 example, a 16K input buffer and a 64K output buffer, more than 95% of the
55 inflate execution time is spent in this routine.
61 strm->avail_out >= 258
62 start >= strm->avail_out
65 On return, state->mode is one of:
67 LEN -- ran out of enough output space or enough available input
68 TYPE -- reached end of block code, inflate() to interpret next block
69 BAD -- error in block data
73 - The maximum input bits used by a length/distance pair is 15 bits for the
74 length code, 5 bits for the length extra, 15 bits for the distance code,
75 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
76 Therefore if strm->avail_in >= 6, then there is enough input to avoid
77 checking for available input while decoding.
79 - The maximum bytes that a single length/distance pair can output is 258
80 bytes, which is the maximum length that can be coded. inflate_fast()
81 requires strm->avail_out >= 258 for each loop to avoid checking for
84 - @start: inflate()'s starting value for strm->avail_out
86 void inflate_fast(z_streamp strm
, unsigned start
)
88 struct inflate_state
*state
;
89 const unsigned char *in
; /* local strm->next_in */
90 const unsigned char *last
; /* while in < last, enough input available */
91 unsigned char *out
; /* local strm->next_out */
92 unsigned char *beg
; /* inflate()'s initial strm->next_out */
93 unsigned char *end
; /* while out < end, enough space available */
95 unsigned dmax
; /* maximum distance from zlib header */
97 unsigned wsize
; /* window size or zero if not using window */
98 unsigned whave
; /* valid bytes in the window */
99 unsigned write
; /* window write index */
100 unsigned char *window
; /* allocated sliding window, if wsize != 0 */
101 unsigned long hold
; /* local strm->hold */
102 unsigned bits
; /* local strm->bits */
103 code
const *lcode
; /* local strm->lencode */
104 code
const *dcode
; /* local strm->distcode */
105 unsigned lmask
; /* mask for first level of length codes */
106 unsigned dmask
; /* mask for first level of distance codes */
107 code
this; /* retrieved table entry */
108 unsigned op
; /* code bits, operation, extra bits, or */
109 /* window position, window bytes to copy */
110 unsigned len
; /* match length, unused bytes */
111 unsigned dist
; /* match distance */
112 unsigned char *from
; /* where to copy match from */
114 /* copy state to local variables */
115 state
= (struct inflate_state
*)strm
->state
;
116 in
= strm
->next_in
- OFF
;
117 last
= in
+ (strm
->avail_in
- 5);
118 out
= strm
->next_out
- OFF
;
119 beg
= out
- (start
- strm
->avail_out
);
120 end
= out
+ (strm
->avail_out
- 257);
121 #ifdef INFLATE_STRICT
124 wsize
= state
->wsize
;
125 whave
= state
->whave
;
126 write
= state
->write
;
127 window
= state
->window
;
130 lcode
= state
->lencode
;
131 dcode
= state
->distcode
;
132 lmask
= (1U << state
->lenbits
) - 1;
133 dmask
= (1U << state
->distbits
) - 1;
135 /* decode literals and length/distances until end-of-block or not enough
136 input data or output space */
139 hold
+= (unsigned long)(PUP(in
)) << bits
;
141 hold
+= (unsigned long)(PUP(in
)) << bits
;
144 this = lcode
[hold
& lmask
];
146 op
= (unsigned)(this.bits
);
149 op
= (unsigned)(this.op
);
150 if (op
== 0) { /* literal */
151 PUP(out
) = (unsigned char)(this.val
);
153 else if (op
& 16) { /* length base */
154 len
= (unsigned)(this.val
);
155 op
&= 15; /* number of extra bits */
158 hold
+= (unsigned long)(PUP(in
)) << bits
;
161 len
+= (unsigned)hold
& ((1U << op
) - 1);
166 hold
+= (unsigned long)(PUP(in
)) << bits
;
168 hold
+= (unsigned long)(PUP(in
)) << bits
;
171 this = dcode
[hold
& dmask
];
173 op
= (unsigned)(this.bits
);
176 op
= (unsigned)(this.op
);
177 if (op
& 16) { /* distance base */
178 dist
= (unsigned)(this.val
);
179 op
&= 15; /* number of extra bits */
181 hold
+= (unsigned long)(PUP(in
)) << bits
;
184 hold
+= (unsigned long)(PUP(in
)) << bits
;
188 dist
+= (unsigned)hold
& ((1U << op
) - 1);
189 #ifdef INFLATE_STRICT
191 strm
->msg
= (char *)"invalid distance too far back";
198 op
= (unsigned)(out
- beg
); /* max distance in output */
199 if (dist
> op
) { /* see if copy from window */
200 op
= dist
- op
; /* distance back in window */
202 strm
->msg
= (char *)"invalid distance too far back";
207 if (write
== 0) { /* very common case */
209 if (op
< len
) { /* some from window */
212 PUP(out
) = PUP(from
);
214 from
= out
- dist
; /* rest from output */
217 else if (write
< op
) { /* wrap around window */
218 from
+= wsize
+ write
- op
;
220 if (op
< len
) { /* some from end of window */
223 PUP(out
) = PUP(from
);
226 if (write
< len
) { /* some from start of window */
230 PUP(out
) = PUP(from
);
232 from
= out
- dist
; /* rest from output */
236 else { /* contiguous in window */
238 if (op
< len
) { /* some from window */
241 PUP(out
) = PUP(from
);
243 from
= out
- dist
; /* rest from output */
247 PUP(out
) = PUP(from
);
248 PUP(out
) = PUP(from
);
249 PUP(out
) = PUP(from
);
253 PUP(out
) = PUP(from
);
255 PUP(out
) = PUP(from
);
259 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
260 unsigned short *sout
;
263 from
= out
- dist
; /* copy direct from output */
264 /* minimum length is three */
266 if (!((long)(out
- 1 + OFF
) & 1)) {
267 PUP(out
) = PUP(from
);
270 sout
= (unsigned short *)(out
- OFF
);
272 unsigned short *sfrom
;
274 sfrom
= (unsigned short *)(from
- OFF
);
277 PUP(sout
) = UP_UNALIGNED(sfrom
);
279 out
= (unsigned char *)sout
+ OFF
;
280 from
= (unsigned char *)sfrom
+ OFF
;
281 } else { /* dist == 1 or dist == 2 */
282 unsigned short pat16
;
284 pat16
= *(sout
-2+2*OFF
);
286 #if defined(__BIG_ENDIAN)
287 pat16
= (pat16
& 0xff) | ((pat16
& 0xff) << 8);
288 #elif defined(__LITTLE_ENDIAN)
289 pat16
= (pat16
& 0xff00) | ((pat16
& 0xff00) >> 8);
291 #error __BIG_ENDIAN nor __LITTLE_ENDIAN is defined
297 out
= (unsigned char *)sout
+ OFF
;
300 PUP(out
) = PUP(from
);
301 #else /* CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS */
302 from
= out
- dist
; /* copy direct from output */
303 do { /* minimum length is three */
304 PUP(out
) = PUP(from
);
305 PUP(out
) = PUP(from
);
306 PUP(out
) = PUP(from
);
310 PUP(out
) = PUP(from
);
312 PUP(out
) = PUP(from
);
314 #endif /* !CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS */
317 else if ((op
& 64) == 0) { /* 2nd level distance code */
318 this = dcode
[this.val
+ (hold
& ((1U << op
) - 1))];
322 strm
->msg
= (char *)"invalid distance code";
327 else if ((op
& 64) == 0) { /* 2nd level length code */
328 this = lcode
[this.val
+ (hold
& ((1U << op
) - 1))];
331 else if (op
& 32) { /* end-of-block */
336 strm
->msg
= (char *)"invalid literal/length code";
340 } while (in
< last
&& out
< end
);
342 /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
346 hold
&= (1U << bits
) - 1;
348 /* update state and return */
349 strm
->next_in
= in
+ OFF
;
350 strm
->next_out
= out
+ OFF
;
351 strm
->avail_in
= (unsigned)(in
< last
? 5 + (last
- in
) : 5 - (in
- last
));
352 strm
->avail_out
= (unsigned)(out
< end
?
353 257 + (end
- out
) : 257 - (out
- end
));
360 inflate_fast() speedups that turned out slower (on a PowerPC G3 750CXe):
361 - Using bit fields for code structure
362 - Different op definition to avoid & for extra bits (do & for table bits)
363 - Three separate decoding do-loops for direct, window, and write == 0
364 - Special case for distance > 1 copies to do overlapped load and store copy
365 - Explicit branch predictions (based on measured branch probabilities)
366 - Deferring match copy and interspersed it with decoding subsequent codes
367 - Swapping literal/length else
368 - Swapping window/direct else
369 - Larger unrolled copy loops (three is about right)
370 - Moving len -= 3 statement into middle of loop