/src/zlib-ng/deflate_medium.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* deflate_medium.c -- The deflate_medium deflate strategy |
2 | | * |
3 | | * Copyright (C) 2013 Intel Corporation. All rights reserved. |
4 | | * Authors: |
5 | | * Arjan van de Ven <arjan@linux.intel.com> |
6 | | * |
7 | | * For conditions of distribution and use, see copyright notice in zlib.h |
8 | | */ |
9 | | #ifndef NO_MEDIUM_STRATEGY |
10 | | #include "zbuild.h" |
11 | | #include "deflate.h" |
12 | | #include "deflate_p.h" |
13 | | #include "functable.h" |
14 | | |
15 | | struct match { |
16 | | uint16_t match_start; |
17 | | uint16_t match_length; |
18 | | uint16_t strstart; |
19 | | uint16_t orgstart; |
20 | | }; |
21 | | |
22 | 135M | static int emit_match(deflate_state *s, struct match match) { |
23 | 135M | int bflush = 0; |
24 | | |
25 | | /* matches that are not long enough we need to emit as literals */ |
26 | 135M | if (match.match_length < WANT_MIN_MATCH) { |
27 | 262M | while (match.match_length) { |
28 | 131M | bflush += zng_tr_tally_lit(s, s->window[match.strstart]); |
29 | 131M | s->lookahead--; |
30 | 131M | match.strstart++; |
31 | 131M | match.match_length--; |
32 | 131M | } |
33 | 131M | return bflush; |
34 | 131M | } |
35 | | |
36 | 4.01M | check_match(s, match.strstart, match.match_start, match.match_length); |
37 | | |
38 | 4.01M | bflush += zng_tr_tally_dist(s, match.strstart - match.match_start, match.match_length - STD_MIN_MATCH); |
39 | | |
40 | 4.01M | s->lookahead -= match.match_length; |
41 | 4.01M | return bflush; |
42 | 135M | } |
43 | | |
44 | 135M | static void insert_match(deflate_state *s, struct match match) { |
45 | 135M | if (UNLIKELY(s->lookahead <= (unsigned int)(match.match_length + WANT_MIN_MATCH))) |
46 | 20.1k | return; |
47 | | |
48 | | /* matches that are not long enough we need to emit as literals */ |
49 | 135M | if (LIKELY(match.match_length < WANT_MIN_MATCH)) { |
50 | 131M | match.strstart++; |
51 | 131M | match.match_length--; |
52 | 131M | if (UNLIKELY(match.match_length > 0)) { |
53 | 0 | if (match.strstart >= match.orgstart) { |
54 | 0 | if (match.strstart + match.match_length - 1 >= match.orgstart) { |
55 | 0 | insert_string(s, match.strstart, match.match_length); |
56 | 0 | } else { |
57 | 0 | insert_string(s, match.strstart, match.orgstart - match.strstart + 1); |
58 | 0 | } |
59 | 0 | match.strstart += match.match_length; |
60 | 0 | match.match_length = 0; |
61 | 0 | } |
62 | 0 | } |
63 | 131M | return; |
64 | 131M | } |
65 | | |
66 | | /* Insert new strings in the hash table only if the match length |
67 | | * is not too large. This saves time but degrades compression. |
68 | | */ |
69 | 4.09M | if (match.match_length <= 16 * s->max_insert_length && s->lookahead >= WANT_MIN_MATCH) { |
70 | 3.99M | match.match_length--; /* string at strstart already in table */ |
71 | 3.99M | match.strstart++; |
72 | | |
73 | 3.99M | if (LIKELY(match.strstart >= match.orgstart)) { |
74 | 3.91M | if (LIKELY(match.strstart + match.match_length - 1 >= match.orgstart)) { |
75 | 3.91M | insert_string(s, match.strstart, match.match_length); |
76 | 3.91M | } else { |
77 | 0 | insert_string(s, match.strstart, match.orgstart - match.strstart + 1); |
78 | 0 | } |
79 | 3.91M | } else if (match.orgstart < match.strstart + match.match_length) { |
80 | 77.2k | insert_string(s, match.orgstart, match.strstart + match.match_length - match.orgstart); |
81 | 77.2k | } |
82 | 3.99M | match.strstart += match.match_length; |
83 | 3.99M | match.match_length = 0; |
84 | 3.99M | } else { |
85 | 98.1k | match.strstart += match.match_length; |
86 | 98.1k | match.match_length = 0; |
87 | | |
88 | 98.1k | if (match.strstart >= (STD_MIN_MATCH - 2)) |
89 | 98.1k | quick_insert_string(s, match.strstart + 2 - STD_MIN_MATCH); |
90 | | |
91 | | /* If lookahead < WANT_MIN_MATCH, ins_h is garbage, but it does not |
92 | | * matter since it will be recomputed at next deflate call. |
93 | | */ |
94 | 98.1k | } |
95 | 4.09M | } |
96 | | |
97 | 4.07M | static void fizzle_matches(deflate_state *s, struct match *current, struct match *next) { |
98 | 4.07M | Pos limit; |
99 | 4.07M | unsigned char *match, *orig; |
100 | 4.07M | int changed = 0; |
101 | 4.07M | struct match c, n; |
102 | | /* step zero: sanity checks */ |
103 | | |
104 | 4.07M | if (current->match_length <= 1) |
105 | 2.25M | return; |
106 | | |
107 | 1.82M | if (UNLIKELY(current->match_length > 1 + next->match_start)) |
108 | 513 | return; |
109 | | |
110 | 1.82M | if (UNLIKELY(current->match_length > 1 + next->strstart)) |
111 | 0 | return; |
112 | | |
113 | 1.82M | match = s->window - current->match_length + 1 + next->match_start; |
114 | 1.82M | orig = s->window - current->match_length + 1 + next->strstart; |
115 | | |
116 | | /* quick exit check.. if this fails then don't bother with anything else */ |
117 | 1.82M | if (LIKELY(*match != *orig)) |
118 | 1.14M | return; |
119 | | |
120 | 678k | c = *current; |
121 | 678k | n = *next; |
122 | | |
123 | | /* step one: try to move the "next" match to the left as much as possible */ |
124 | 678k | limit = next->strstart > MAX_DIST(s) ? next->strstart - (Pos)MAX_DIST(s) : 0; |
125 | | |
126 | 678k | match = s->window + n.match_start - 1; |
127 | 678k | orig = s->window + n.strstart - 1; |
128 | | |
129 | 4.91M | while (*match == *orig) { |
130 | 4.34M | if (UNLIKELY(c.match_length < 1)) |
131 | 8.13k | break; |
132 | 4.33M | if (UNLIKELY(n.strstart <= limit)) |
133 | 0 | break; |
134 | 4.33M | if (UNLIKELY(n.match_length >= 256)) |
135 | 99.1k | break; |
136 | 4.23M | if (UNLIKELY(n.match_start <= 1)) |
137 | 39 | break; |
138 | | |
139 | 4.23M | n.strstart--; |
140 | 4.23M | n.match_start--; |
141 | 4.23M | n.match_length++; |
142 | 4.23M | c.match_length--; |
143 | 4.23M | match--; |
144 | 4.23M | orig--; |
145 | 4.23M | changed++; |
146 | 4.23M | } |
147 | | |
148 | 678k | if (!changed) |
149 | 379k | return; |
150 | | |
151 | 299k | if (c.match_length <= 1 && n.match_length != 2) { |
152 | 77.2k | n.orgstart++; |
153 | 77.2k | *current = c; |
154 | 77.2k | *next = n; |
155 | 222k | } else { |
156 | 222k | return; |
157 | 222k | } |
158 | 299k | } |
159 | | |
160 | 6.24k | Z_INTERNAL block_state deflate_medium(deflate_state *s, int flush) { |
161 | | /* Align the first struct to start on a new cacheline, this allows us to fit both structs in one cacheline */ |
162 | 6.24k | ALIGNED_(16) struct match current_match; |
163 | 6.24k | struct match next_match; |
164 | | |
165 | | /* For levels below 5, don't check the next position for a better match */ |
166 | 6.24k | int early_exit = s->level < 5; |
167 | | |
168 | 6.24k | memset(¤t_match, 0, sizeof(struct match)); |
169 | 6.24k | memset(&next_match, 0, sizeof(struct match)); |
170 | | |
171 | 135M | for (;;) { |
172 | 135M | Pos hash_head = 0; /* head of the hash chain */ |
173 | 135M | int bflush = 0; /* set if current block must be flushed */ |
174 | 135M | int64_t dist; |
175 | | |
176 | | /* Make sure that we always have enough lookahead, except |
177 | | * at the end of the input file. We need STD_MAX_MATCH bytes |
178 | | * for the next match, plus WANT_MIN_MATCH bytes to insert the |
179 | | * string following the next current_match. |
180 | | */ |
181 | 135M | if (s->lookahead < MIN_LOOKAHEAD) { |
182 | 280k | PREFIX(fill_window)(s); |
183 | 280k | if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { |
184 | 0 | return need_more; |
185 | 0 | } |
186 | 280k | if (UNLIKELY(s->lookahead == 0)) |
187 | 6.24k | break; /* flush the current block */ |
188 | 274k | next_match.match_length = 0; |
189 | 274k | } |
190 | | |
191 | | /* Insert the string window[strstart .. strstart+2] in the |
192 | | * dictionary, and set hash_head to the head of the hash chain: |
193 | | */ |
194 | | |
195 | | /* If we already have a future match from a previous round, just use that */ |
196 | 135M | if (!early_exit && next_match.match_length > 0) { |
197 | 134M | current_match = next_match; |
198 | 134M | next_match.match_length = 0; |
199 | 134M | } else { |
200 | 277k | hash_head = 0; |
201 | 277k | if (s->lookahead >= WANT_MIN_MATCH) { |
202 | 262k | hash_head = quick_insert_string(s, s->strstart); |
203 | 262k | } |
204 | | |
205 | 277k | current_match.strstart = (uint16_t)s->strstart; |
206 | 277k | current_match.orgstart = current_match.strstart; |
207 | | |
208 | | /* Find the longest match, discarding those <= prev_length. |
209 | | * At this point we have always match_length < WANT_MIN_MATCH |
210 | | */ |
211 | | |
212 | 277k | dist = (int64_t)s->strstart - hash_head; |
213 | 277k | if (dist <= MAX_DIST(s) && dist > 0 && hash_head != 0) { |
214 | | /* To simplify the code, we prevent matches with the string |
215 | | * of window index 0 (in particular we have to avoid a match |
216 | | * of the string with itself at the start of the input file). |
217 | | */ |
218 | 58.2k | current_match.match_length = (uint16_t)FUNCTABLE_CALL(longest_match)(s, hash_head); |
219 | 58.2k | current_match.match_start = (uint16_t)s->match_start; |
220 | 58.2k | if (UNLIKELY(current_match.match_length < WANT_MIN_MATCH)) |
221 | 38.5k | current_match.match_length = 1; |
222 | 58.2k | if (UNLIKELY(current_match.match_start >= current_match.strstart)) { |
223 | | /* this can happen due to some restarts */ |
224 | 0 | current_match.match_length = 1; |
225 | 0 | } |
226 | 219k | } else { |
227 | | /* Set up the match to be a 1 byte literal */ |
228 | 219k | current_match.match_start = 0; |
229 | 219k | current_match.match_length = 1; |
230 | 219k | } |
231 | 277k | } |
232 | | |
233 | 135M | insert_match(s, current_match); |
234 | | |
235 | | /* now, look ahead one */ |
236 | 135M | if (LIKELY(!early_exit && s->lookahead > MIN_LOOKAHEAD && (uint32_t)(current_match.strstart + current_match.match_length) < (s->window_size - MIN_LOOKAHEAD))) { |
237 | 134M | s->strstart = current_match.strstart + current_match.match_length; |
238 | 134M | hash_head = quick_insert_string(s, s->strstart); |
239 | | |
240 | 134M | next_match.strstart = (uint16_t)s->strstart; |
241 | 134M | next_match.orgstart = next_match.strstart; |
242 | | |
243 | | /* Find the longest match, discarding those <= prev_length. |
244 | | * At this point we have always match_length < WANT_MIN_MATCH |
245 | | */ |
246 | | |
247 | 134M | dist = (int64_t)s->strstart - hash_head; |
248 | 134M | if (dist <= MAX_DIST(s) && dist > 0 && hash_head != 0) { |
249 | | /* To simplify the code, we prevent matches with the string |
250 | | * of window index 0 (in particular we have to avoid a match |
251 | | * of the string with itself at the start of the input file). |
252 | | */ |
253 | 49.1M | next_match.match_length = (uint16_t)FUNCTABLE_CALL(longest_match)(s, hash_head); |
254 | 49.1M | next_match.match_start = (uint16_t)s->match_start; |
255 | 49.1M | if (UNLIKELY(next_match.match_start >= next_match.strstart)) { |
256 | | /* this can happen due to some restarts */ |
257 | 0 | next_match.match_length = 1; |
258 | 0 | } |
259 | 49.1M | if (next_match.match_length < WANT_MIN_MATCH) |
260 | 45.0M | next_match.match_length = 1; |
261 | 4.07M | else |
262 | 4.07M | fizzle_matches(s, ¤t_match, &next_match); |
263 | 85.8M | } else { |
264 | | /* Set up the match to be a 1 byte literal */ |
265 | 85.8M | next_match.match_start = 0; |
266 | 85.8M | next_match.match_length = 1; |
267 | 85.8M | } |
268 | | |
269 | 134M | s->strstart = current_match.strstart; |
270 | 134M | } else { |
271 | 277k | next_match.match_length = 0; |
272 | 277k | } |
273 | | |
274 | | /* now emit the current match */ |
275 | 135M | bflush = emit_match(s, current_match); |
276 | | |
277 | | /* move the "cursor" forward */ |
278 | 135M | s->strstart += current_match.match_length; |
279 | | |
280 | 135M | if (UNLIKELY(bflush)) |
281 | 135M | FLUSH_BLOCK(s, 0); |
282 | 135M | } |
283 | 6.24k | s->insert = s->strstart < (STD_MIN_MATCH - 1) ? s->strstart : (STD_MIN_MATCH - 1); |
284 | 6.24k | if (flush == Z_FINISH) { |
285 | 3.12k | FLUSH_BLOCK(s, 1); |
286 | 3.12k | return finish_done; |
287 | 3.12k | } |
288 | 3.12k | if (UNLIKELY(s->sym_next)) |
289 | 3.12k | FLUSH_BLOCK(s, 0); |
290 | | |
291 | 3.12k | return block_done; |
292 | 3.12k | } |
293 | | #endif |