Branch data Line data Source code
1 : : // Copyright (c) 2022 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <random.h>
6 : : #include <test/fuzz/FuzzedDataProvider.h>
7 : : #include <test/fuzz/util.h>
8 : : #include <util/bitdeque.h>
9 : :
10 : : #include <deque>
11 : : #include <vector>
12 : :
13 : : namespace {
14 : :
15 : : constexpr int LEN_BITS = 16;
16 : : constexpr int RANDDATA_BITS = 20;
17 : :
18 : : using bitdeque_type = bitdeque<128>;
19 : :
20 : : //! Deterministic random vector of bools, for begin/end insertions to draw from.
21 : : std::vector<bool> RANDDATA;
22 : :
23 : 1 : void InitRandData()
24 : : {
25 : 1 : FastRandomContext ctx(true);
26 : 1 : RANDDATA.clear();
27 [ + + ]: 1114113 : for (size_t i = 0; i < (1U << RANDDATA_BITS) + (1U << LEN_BITS); ++i) {
28 [ + - ]: 1114112 : RANDDATA.push_back(ctx.randbool());
29 : : }
30 : 1 : }
31 : :
32 : : } // namespace
33 : :
34 [ + - ]: 1027 : FUZZ_TARGET(bitdeque, .init = InitRandData)
35 : : {
36 : 587 : FuzzedDataProvider provider(buffer.data(), buffer.size());
37 : : FastRandomContext ctx(true);
38 : :
39 : 587 : size_t maxlen = (1U << provider.ConsumeIntegralInRange<size_t>(0, LEN_BITS)) - 1;
40 : 587 : size_t limitlen = 4 * maxlen;
41 : :
42 [ + - ]: 587 : std::deque<bool> deq;
43 [ + - ]: 587 : bitdeque_type bitdeq;
44 : :
45 : 587 : const auto& cdeq = deq;
46 : 587 : const auto& cbitdeq = bitdeq;
47 : :
48 : 587 : size_t initlen = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
49 [ + + ]: 4107563 : while (initlen) {
50 : 4106389 : bool val = ctx.randbool();
51 [ + - ]: 4106389 : deq.push_back(val);
52 [ + - ]: 4106389 : bitdeq.push_back(val);
53 : 4106389 : --initlen;
54 : : }
55 : :
56 [ + + ]: 587 : const auto iter_limit{maxlen > 6000 ? 90U : 900U};
57 [ + + + + ]: 180483 : LIMITED_WHILE(provider.remaining_bytes() > 0, iter_limit)
58 : : {
59 [ + - ]: 179896 : CallOneOf(
60 : : provider,
61 : 11839 : [&] {
62 : : // constructor()
63 : 23678 : deq = std::deque<bool>{};
64 : 11839 : bitdeq = bitdeque_type{};
65 : 11839 : },
66 : 2584 : [&] {
67 : : // clear()
68 : 2584 : deq.clear();
69 : 2584 : bitdeq.clear();
70 : 2584 : },
71 : 4216 : [&] {
72 : : // resize()
73 : 4216 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
74 : 4216 : deq.resize(count);
75 : 4216 : bitdeq.resize(count);
76 : 4216 : },
77 : 6369 : [&] {
78 : : // assign(count, val)
79 : 6369 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
80 : 6369 : bool val = ctx.randbool();
81 : 6369 : deq.assign(count, val);
82 : 6369 : bitdeq.assign(count, val);
83 : 6369 : },
84 : 1824 : [&] {
85 : : // constructor(count, val)
86 : 1824 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
87 : 1824 : bool val = ctx.randbool();
88 : 3648 : deq = std::deque<bool>(count, val);
89 : 1824 : bitdeq = bitdeque_type(count, val);
90 : 1824 : },
91 : 1458 : [&] {
92 : : // constructor(count)
93 : 1458 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
94 : 2916 : deq = std::deque<bool>(count);
95 : 1458 : bitdeq = bitdeque_type(count);
96 : 1458 : },
97 : 3326 : [&] {
98 : : // construct(begin, end)
99 : 3326 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
100 : 3326 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
101 : 3326 : auto rand_end = rand_begin + count;
102 : 6652 : deq = std::deque<bool>(rand_begin, rand_end);
103 : 3326 : bitdeq = bitdeque_type(rand_begin, rand_end);
104 : 3326 : },
105 : 5417 : [&] {
106 : : // assign(begin, end)
107 : 5417 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
108 : 5417 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
109 : 5417 : auto rand_end = rand_begin + count;
110 : 5417 : deq.assign(rand_begin, rand_end);
111 : 5417 : bitdeq.assign(rand_begin, rand_end);
112 : 5417 : },
113 : 6329 : [&] {
114 : : // construct(initializer_list)
115 : 6329 : std::initializer_list<bool> ilist{ctx.randbool(), ctx.randbool(), ctx.randbool(), ctx.randbool(), ctx.randbool()};
116 : 12658 : deq = std::deque<bool>(ilist);
117 : 6329 : bitdeq = bitdeque_type(ilist);
118 : 6329 : },
119 : 9113 : [&] {
120 : : // assign(initializer_list)
121 : 9113 : std::initializer_list<bool> ilist{ctx.randbool(), ctx.randbool(), ctx.randbool()};
122 : 9113 : deq.assign(ilist);
123 : 9113 : bitdeq.assign(ilist);
124 : 9113 : },
125 : 7967 : [&] {
126 : : // operator=(const&)
127 : 7967 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
128 : 7967 : bool val = ctx.randbool();
129 : 7967 : const std::deque<bool> deq2(count, val);
130 [ + - ]: 7967 : deq = deq2;
131 [ + - ]: 7967 : const bitdeque_type bitdeq2(count, val);
132 [ + - ]: 7967 : bitdeq = bitdeq2;
133 : 7967 : },
134 : 2464 : [&] {
135 : : // operator=(&&)
136 : 2464 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
137 : 2464 : bool val = ctx.randbool();
138 : 2464 : std::deque<bool> deq2(count, val);
139 : 2464 : deq = std::move(deq2);
140 [ + - ]: 2464 : bitdeque_type bitdeq2(count, val);
141 : 2464 : bitdeq = std::move(bitdeq2);
142 : 2464 : },
143 : 2592 : [&] {
144 : : // deque swap
145 : 2592 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
146 : 2592 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
147 : 2592 : auto rand_end = rand_begin + count;
148 : 2592 : std::deque<bool> deq2(rand_begin, rand_end);
149 [ + - ]: 2592 : bitdeque_type bitdeq2(rand_begin, rand_end);
150 : 2592 : using std::swap;
151 [ - + ]: 2592 : assert(deq.size() == bitdeq.size());
152 [ - + ]: 2592 : assert(deq2.size() == bitdeq2.size());
153 : 2592 : swap(deq, deq2);
154 : 2592 : swap(bitdeq, bitdeq2);
155 [ - + ]: 2592 : assert(deq.size() == bitdeq.size());
156 [ - + ]: 2592 : assert(deq2.size() == bitdeq2.size());
157 : 2592 : },
158 : 4710 : [&] {
159 : : // deque.swap
160 : 4710 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
161 : 4710 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
162 : 4710 : auto rand_end = rand_begin + count;
163 : 4710 : std::deque<bool> deq2(rand_begin, rand_end);
164 [ + - ]: 4710 : bitdeque_type bitdeq2(rand_begin, rand_end);
165 [ - + ]: 4710 : assert(deq.size() == bitdeq.size());
166 [ - + ]: 4710 : assert(deq2.size() == bitdeq2.size());
167 : 4710 : deq.swap(deq2);
168 : 4710 : bitdeq.swap(bitdeq2);
169 [ - + ]: 4710 : assert(deq.size() == bitdeq.size());
170 [ - + ]: 4710 : assert(deq2.size() == bitdeq2.size());
171 : 4710 : },
172 : 4995 : [&] {
173 : : // operator=(initializer_list)
174 : 4995 : std::initializer_list<bool> ilist{ctx.randbool(), ctx.randbool(), ctx.randbool()};
175 : 4995 : deq = ilist;
176 : 4995 : bitdeq = ilist;
177 : 4995 : },
178 : 3412 : [&] {
179 : : // iterator arithmetic
180 : 3412 : auto pos1 = provider.ConsumeIntegralInRange<long>(0, cdeq.size());
181 : 3412 : auto pos2 = provider.ConsumeIntegralInRange<long>(0, cdeq.size());
182 : 3412 : auto it = deq.begin() + pos1;
183 : 3412 : auto bitit = bitdeq.begin() + pos1;
184 [ + + - + ]: 3412 : if ((size_t)pos1 != cdeq.size()) assert(*it == *bitit);
185 [ - + ]: 3412 : assert(it - deq.begin() == pos1);
186 [ - + ]: 3412 : assert(bitit - bitdeq.begin() == pos1);
187 [ + + ]: 3412 : if (provider.ConsumeBool()) {
188 : 1968 : it += pos2 - pos1;
189 : 1968 : bitit += pos2 - pos1;
190 : : } else {
191 : 1444 : it -= pos1 - pos2;
192 : 1444 : bitit -= pos1 - pos2;
193 : : }
194 [ + + - + ]: 3412 : if ((size_t)pos2 != cdeq.size()) assert(*it == *bitit);
195 [ - + ]: 3412 : assert(deq.end() - it == bitdeq.end() - bitit);
196 [ + + ]: 3412 : if (provider.ConsumeBool()) {
197 [ + + ]: 1926 : if ((size_t)pos2 != cdeq.size()) {
198 : 1520 : ++it;
199 : 1520 : ++bitit;
200 : : }
201 : : } else {
202 [ + + ]: 1486 : if (pos2 != 0) {
203 : 1112 : --it;
204 : 1112 : --bitit;
205 : : }
206 : : }
207 [ - + ]: 3412 : assert(deq.end() - it == bitdeq.end() - bitit);
208 : 3412 : },
209 : 1376 : [&] {
210 : : // begin() and end()
211 [ - + ]: 1376 : assert(deq.end() - deq.begin() == bitdeq.end() - bitdeq.begin());
212 : 1376 : },
213 : 1861 : [&] {
214 : : // begin() and end() (const)
215 [ - + ]: 1861 : assert(cdeq.end() - cdeq.begin() == cbitdeq.end() - cbitdeq.begin());
216 : 1861 : },
217 : 1380 : [&] {
218 : : // rbegin() and rend()
219 [ - + ]: 1380 : assert(deq.rend() - deq.rbegin() == bitdeq.rend() - bitdeq.rbegin());
220 : 1380 : },
221 : 1111 : [&] {
222 : : // rbegin() and rend() (const)
223 [ - + ]: 1111 : assert(cdeq.rend() - cdeq.rbegin() == cbitdeq.rend() - cbitdeq.rbegin());
224 : 1111 : },
225 : 840 : [&] {
226 : : // cbegin() and cend()
227 [ - + ]: 840 : assert(cdeq.cend() - cdeq.cbegin() == cbitdeq.cend() - cbitdeq.cbegin());
228 : 840 : },
229 : 1172 : [&] {
230 : : // crbegin() and crend()
231 [ - + ]: 1172 : assert(cdeq.crend() - cdeq.crbegin() == cbitdeq.crend() - cbitdeq.crbegin());
232 : 1172 : },
233 : 1739 : [&] {
234 : : // size() and maxsize()
235 [ - + ]: 1739 : assert(cdeq.size() == cbitdeq.size());
236 [ - + ]: 1739 : assert(cbitdeq.size() <= cbitdeq.max_size());
237 : 1739 : },
238 : 1338 : [&] {
239 : : // empty
240 [ - + ]: 1338 : assert(cdeq.empty() == cbitdeq.empty());
241 : 1338 : },
242 : 2555 : [&] {
243 : : // at (in range) and flip
244 [ + + ]: 2555 : if (!cdeq.empty()) {
245 : 2175 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
246 : 2175 : auto& ref = deq.at(pos);
247 : 2175 : auto bitref = bitdeq.at(pos);
248 [ - + ]: 2175 : assert(ref == bitref);
249 [ + + ]: 2175 : if (ctx.randbool()) {
250 : 1070 : ref = !ref;
251 : 1070 : bitref.flip();
252 : : }
253 : 2175 : }
254 : 2555 : },
255 : 5120 : [&] {
256 : : // at (maybe out of range) and bit assign
257 : 5120 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() + maxlen);
258 : 5120 : bool newval = ctx.randbool();
259 : 5120 : bool throw_deq{false}, throw_bitdeq{false};
260 : 5120 : bool val_deq{false}, val_bitdeq{false};
261 : 5120 : try {
262 [ + + ]: 5120 : auto& ref = deq.at(pos);
263 : 1593 : val_deq = ref;
264 : 1593 : ref = newval;
265 [ - + ]: 3527 : } catch (const std::out_of_range&) {
266 : 3527 : throw_deq = true;
267 : 3527 : }
268 : 5120 : try {
269 [ + + ]: 5120 : auto ref = bitdeq.at(pos);
270 : 1593 : val_bitdeq = ref;
271 : 1593 : ref = newval;
272 [ - + ]: 5120 : } catch (const std::out_of_range&) {
273 : 3527 : throw_bitdeq = true;
274 : 3527 : }
275 [ - + ]: 5120 : assert(throw_deq == throw_bitdeq);
276 [ - + ]: 5120 : assert(throw_bitdeq == (pos >= cdeq.size()));
277 [ + + - + ]: 5120 : if (!throw_deq) assert(val_deq == val_bitdeq);
278 : 5120 : },
279 : 1269 : [&] {
280 : : // at (maybe out of range) (const)
281 : 1269 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() + maxlen);
282 : 1269 : bool throw_deq{false}, throw_bitdeq{false};
283 : 1269 : bool val_deq{false}, val_bitdeq{false};
284 : 1269 : try {
285 [ + + ]: 1269 : auto& ref = cdeq.at(pos);
286 : 792 : val_deq = ref;
287 [ - + ]: 477 : } catch (const std::out_of_range&) {
288 : 477 : throw_deq = true;
289 : 477 : }
290 : 1269 : try {
291 [ + + ]: 1269 : auto ref = cbitdeq.at(pos);
292 : : val_bitdeq = ref;
293 [ - + ]: 477 : } catch (const std::out_of_range&) {
294 : 477 : throw_bitdeq = true;
295 : 477 : }
296 [ - + ]: 1269 : assert(throw_deq == throw_bitdeq);
297 [ - + ]: 1269 : assert(throw_bitdeq == (pos >= cdeq.size()));
298 [ + + - + ]: 1269 : if (!throw_deq) assert(val_deq == val_bitdeq);
299 : 1269 : },
300 : 3337 : [&] {
301 : : // operator[]
302 [ + + ]: 3337 : if (!cdeq.empty()) {
303 : 2960 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
304 [ - + ]: 2960 : assert(deq[pos] == bitdeq[pos]);
305 [ + + ]: 2960 : if (ctx.randbool()) {
306 : 1490 : deq[pos] = !deq[pos];
307 : 1490 : bitdeq[pos].flip();
308 : : }
309 : : }
310 : 3337 : },
311 : 1132 : [&] {
312 : : // operator[] const
313 [ + + ]: 1132 : if (!cdeq.empty()) {
314 : 807 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
315 [ - + ]: 807 : assert(deq[pos] == bitdeq[pos]);
316 : : }
317 : 1132 : },
318 : 2757 : [&] {
319 : : // front()
320 [ + + ]: 2757 : if (!cdeq.empty()) {
321 [ - + ]: 2359 : auto& ref = deq.front();
322 : 2359 : auto bitref = bitdeq.front();
323 [ - + ]: 2359 : assert(ref == bitref);
324 [ + + ]: 2359 : if (ctx.randbool()) {
325 : 1130 : ref = !ref;
326 : 1130 : bitref = !bitref;
327 : : }
328 : 2359 : }
329 : 2757 : },
330 : 934 : [&] {
331 : : // front() const
332 [ + + ]: 934 : if (!cdeq.empty()) {
333 [ - + ]: 655 : auto& ref = cdeq.front();
334 : 655 : auto bitref = cbitdeq.front();
335 [ - + ]: 655 : assert(ref == bitref);
336 : : }
337 : 934 : },
338 : 2734 : [&] {
339 : : // back() and swap(bool, ref)
340 [ + + ]: 2734 : if (!cdeq.empty()) {
341 : 2292 : auto& ref = deq.back();
342 : 2292 : auto bitref = bitdeq.back();
343 [ - + ]: 2292 : assert(ref == bitref);
344 [ + + ]: 2292 : if (ctx.randbool()) {
345 : 1174 : ref = !ref;
346 : 1174 : bitref.flip();
347 : : }
348 : 2292 : }
349 : 2734 : },
350 : 2097 : [&] {
351 : : // back() const
352 [ + + ]: 2097 : if (!cdeq.empty()) {
353 : 1579 : const auto& cdeq = deq;
354 : 1579 : const auto& cbitdeq = bitdeq;
355 : 1579 : auto& ref = cdeq.back();
356 : 1579 : auto bitref = cbitdeq.back();
357 [ - + ]: 1579 : assert(ref == bitref);
358 : : }
359 : 2097 : },
360 : 3640 : [&] {
361 : : // push_back()
362 [ + + ]: 3640 : if (cdeq.size() < limitlen) {
363 : 3142 : bool val = ctx.randbool();
364 [ + + ]: 3142 : if (cdeq.empty()) {
365 : 1425 : deq.push_back(val);
366 : 1425 : bitdeq.push_back(val);
367 : : } else {
368 : 1717 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
369 : 1717 : auto& ref = deq[pos];
370 : 1717 : auto bitref = bitdeq[pos];
371 [ - + ]: 1717 : assert(ref == bitref);
372 : 1717 : deq.push_back(val);
373 : 1717 : bitdeq.push_back(val);
374 [ - + ]: 1717 : assert(ref == bitref); // references are not invalidated
375 : 1717 : }
376 : : }
377 : 3640 : },
378 : 4775 : [&] {
379 : : // push_front()
380 [ + + ]: 4775 : if (cdeq.size() < limitlen) {
381 : 4378 : bool val = ctx.randbool();
382 [ + + ]: 4378 : if (cdeq.empty()) {
383 : 1595 : deq.push_front(val);
384 : 1595 : bitdeq.push_front(val);
385 : : } else {
386 : 2783 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
387 : 2783 : auto& ref = deq[pos];
388 : 2783 : auto bitref = bitdeq[pos];
389 [ - + ]: 2783 : assert(ref == bitref);
390 : 2783 : deq.push_front(val);
391 : 2783 : bitdeq.push_front(val);
392 [ - + ]: 2783 : assert(ref == bitref); // references are not invalidated
393 : 2783 : }
394 : : }
395 : 4775 : },
396 : 2600 : [&] {
397 : : // pop_back()
398 [ + + ]: 2600 : if (!cdeq.empty()) {
399 [ + + ]: 1978 : if (cdeq.size() == 1) {
400 : 754 : deq.pop_back();
401 : 754 : bitdeq.pop_back();
402 : : } else {
403 : 1224 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 2);
404 : 1224 : auto& ref = deq[pos];
405 : 1224 : auto bitref = bitdeq[pos];
406 [ - + ]: 1224 : assert(ref == bitref);
407 : 1224 : deq.pop_back();
408 : 1224 : bitdeq.pop_back();
409 [ - + ]: 1224 : assert(ref == bitref); // references to other elements are not invalidated
410 : 1224 : }
411 : : }
412 : 2600 : },
413 : 2983 : [&] {
414 : : // pop_front()
415 [ + + ]: 2983 : if (!cdeq.empty()) {
416 [ + + ]: 2146 : if (cdeq.size() == 1) {
417 : 783 : deq.pop_front();
418 : 783 : bitdeq.pop_front();
419 : : } else {
420 : 1363 : size_t pos = provider.ConsumeIntegralInRange<size_t>(1, cdeq.size() - 1);
421 : 1363 : auto& ref = deq[pos];
422 : 1363 : auto bitref = bitdeq[pos];
423 [ - + ]: 1363 : assert(ref == bitref);
424 : 1363 : deq.pop_front();
425 : 1363 : bitdeq.pop_front();
426 [ - + ]: 1363 : assert(ref == bitref); // references to other elements are not invalidated
427 : 1363 : }
428 : : }
429 : 2983 : },
430 : 4017 : [&] {
431 : : // erase (in middle, single)
432 [ + + ]: 4017 : if (!cdeq.empty()) {
433 : 3426 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
434 : 3426 : size_t after = cdeq.size() - 1 - before;
435 : 3426 : auto it = deq.erase(cdeq.begin() + before);
436 : 3426 : auto bitit = bitdeq.erase(cbitdeq.begin() + before);
437 [ + - - + ]: 3426 : assert(it == cdeq.begin() + before && it == cdeq.end() - after);
438 [ + - + - ]: 6852 : assert(bitit == cbitdeq.begin() + before && bitit == cbitdeq.end() - after);
439 : : }
440 : 4017 : },
441 : 4195 : [&] {
442 : : // erase (at front, range)
443 : 4195 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
444 : 4195 : auto it = deq.erase(cdeq.begin(), cdeq.begin() + count);
445 : 4195 : auto bitit = bitdeq.erase(cbitdeq.begin(), cbitdeq.begin() + count);
446 [ - + ]: 4195 : assert(it == deq.begin());
447 [ + - ]: 4195 : assert(bitit == bitdeq.begin());
448 : 4195 : },
449 : 1647 : [&] {
450 : : // erase (at back, range)
451 : 1647 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
452 : 1647 : auto it = deq.erase(cdeq.end() - count, cdeq.end());
453 : 1647 : auto bitit = bitdeq.erase(cbitdeq.end() - count, cbitdeq.end());
454 [ - + ]: 1647 : assert(it == deq.end());
455 [ + - ]: 1647 : assert(bitit == bitdeq.end());
456 : 1647 : },
457 : 3006 : [&] {
458 : : // erase (in middle, range)
459 : 3006 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
460 : 3006 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - count);
461 : 3006 : size_t after = cdeq.size() - count - before;
462 : 3006 : auto it = deq.erase(cdeq.begin() + before, cdeq.end() - after);
463 : 3006 : auto bitit = bitdeq.erase(cbitdeq.begin() + before, cbitdeq.end() - after);
464 [ + - - + ]: 3006 : assert(it == cdeq.begin() + before && it == cdeq.end() - after);
465 [ + - + - ]: 6012 : assert(bitit == cbitdeq.begin() + before && bitit == cbitdeq.end() - after);
466 : 3006 : },
467 : 6918 : [&] {
468 : : // insert/emplace (in middle, single)
469 [ + + ]: 6918 : if (cdeq.size() < limitlen) {
470 : 6565 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
471 : 6565 : bool val = ctx.randbool();
472 : 6565 : bool do_emplace = provider.ConsumeBool();
473 : 6565 : auto it = deq.insert(cdeq.begin() + before, val);
474 [ + + ]: 6565 : auto bitit = do_emplace ? bitdeq.emplace(cbitdeq.begin() + before, val)
475 : 6565 : : bitdeq.insert(cbitdeq.begin() + before, val);
476 [ - + ]: 6565 : assert(it == deq.begin() + before);
477 [ + - ]: 6565 : assert(bitit == bitdeq.begin() + before);
478 : : }
479 : 6918 : },
480 : 5101 : [&] {
481 : : // insert (at front, begin/end)
482 [ + + ]: 5101 : if (cdeq.size() < limitlen) {
483 : 4762 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
484 : 4762 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
485 : 4762 : auto rand_end = rand_begin + count;
486 : 4762 : auto it = deq.insert(cdeq.begin(), rand_begin, rand_end);
487 : 4762 : auto bitit = bitdeq.insert(cbitdeq.begin(), rand_begin, rand_end);
488 [ - + ]: 4762 : assert(it == cdeq.begin());
489 [ + - ]: 4762 : assert(bitit == cbitdeq.begin());
490 : : }
491 : 5101 : },
492 : 4353 : [&] {
493 : : // insert (at back, begin/end)
494 [ + + ]: 4353 : if (cdeq.size() < limitlen) {
495 : 3784 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
496 : 3784 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
497 : 3784 : auto rand_end = rand_begin + count;
498 : 3784 : auto it = deq.insert(cdeq.end(), rand_begin, rand_end);
499 : 3784 : auto bitit = bitdeq.insert(cbitdeq.end(), rand_begin, rand_end);
500 [ - + ]: 3784 : assert(it == cdeq.end() - count);
501 [ + - ]: 3784 : assert(bitit == cbitdeq.end() - count);
502 : : }
503 : 4353 : },
504 : 12673 : [&] {
505 : : // insert (in middle, range)
506 [ + + ]: 12673 : if (cdeq.size() < limitlen) {
507 : 10500 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
508 : 10500 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
509 : 10500 : bool val = ctx.randbool();
510 : 10500 : auto it = deq.insert(cdeq.begin() + before, count, val);
511 : 10500 : auto bitit = bitdeq.insert(cbitdeq.begin() + before, count, val);
512 [ - + ]: 10500 : assert(it == deq.begin() + before);
513 [ + - ]: 10500 : assert(bitit == bitdeq.begin() + before);
514 : : }
515 : 12673 : },
516 : 12621 : [&] {
517 : : // insert (in middle, begin/end)
518 [ + + ]: 12621 : if (cdeq.size() < limitlen) {
519 : 10867 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
520 : 10867 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
521 : 10867 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
522 : 10867 : auto rand_end = rand_begin + count;
523 : 10867 : auto it = deq.insert(cdeq.begin() + before, rand_begin, rand_end);
524 : 10867 : auto bitit = bitdeq.insert(cbitdeq.begin() + before, rand_begin, rand_end);
525 [ - + ]: 10867 : assert(it == deq.begin() + before);
526 [ + - ]: 10867 : assert(bitit == bitdeq.begin() + before);
527 : : }
528 : 12621 : });
529 : : }
530 : 587 : {
531 [ - + ]: 587 : assert(deq.size() == bitdeq.size());
532 : 587 : auto it = deq.begin();
533 : 587 : auto bitit = bitdeq.begin();
534 : 587 : auto itend = deq.end();
535 [ + + ]: 6657871 : while (it != itend) {
536 [ - + ]: 6657284 : assert(*it == *bitit);
537 : 6657284 : ++it;
538 : 6657284 : ++bitit;
539 : : }
540 : : }
541 : 587 : }
|