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 [ + - ]: 1240 : FUZZ_TARGET(bitdeque, .init = InitRandData)
35 : : {
36 : 826 : FuzzedDataProvider provider(buffer.data(), buffer.size());
37 : : FastRandomContext ctx(true);
38 : :
39 : 826 : size_t maxlen = (1U << provider.ConsumeIntegralInRange<size_t>(0, LEN_BITS)) - 1;
40 : 826 : size_t limitlen = 4 * maxlen;
41 : :
42 [ + - ]: 826 : std::deque<bool> deq;
43 [ + - ]: 826 : bitdeque_type bitdeq;
44 : :
45 : 826 : const auto& cdeq = deq;
46 : 826 : const auto& cbitdeq = bitdeq;
47 : :
48 : 826 : size_t initlen = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
49 [ + + ]: 5870150 : while (initlen) {
50 : 5868498 : bool val = ctx.randbool();
51 [ + - ]: 5868498 : deq.push_back(val);
52 [ + - ]: 5868498 : bitdeq.push_back(val);
53 : 5868498 : --initlen;
54 : : }
55 : :
56 [ + + ]: 826 : const auto iter_limit{maxlen > 6000 ? 90U : 900U};
57 [ + + + + ]: 294178 : LIMITED_WHILE(provider.remaining_bytes() > 0, iter_limit)
58 : : {
59 [ + - ]: 293352 : CallOneOf(
60 : : provider,
61 : 22649 : [&] {
62 : : // constructor()
63 : 45298 : deq = std::deque<bool>{};
64 : 22649 : bitdeq = bitdeque_type{};
65 : 22649 : },
66 : 5182 : [&] {
67 : : // clear()
68 : 5182 : deq.clear();
69 : 5182 : bitdeq.clear();
70 : 5182 : },
71 : 7089 : [&] {
72 : : // resize()
73 : 7089 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
74 : 7089 : deq.resize(count);
75 : 7089 : bitdeq.resize(count);
76 : 7089 : },
77 : 9069 : [&] {
78 : : // assign(count, val)
79 : 9069 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
80 : 9069 : bool val = ctx.randbool();
81 : 9069 : deq.assign(count, val);
82 : 9069 : bitdeq.assign(count, val);
83 : 9069 : },
84 : 3625 : [&] {
85 : : // constructor(count, val)
86 : 3625 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
87 : 3625 : bool val = ctx.randbool();
88 : 7250 : deq = std::deque<bool>(count, val);
89 : 3625 : bitdeq = bitdeque_type(count, val);
90 : 3625 : },
91 : 2687 : [&] {
92 : : // constructor(count)
93 : 2687 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
94 : 5374 : deq = std::deque<bool>(count);
95 : 2687 : bitdeq = bitdeque_type(count);
96 : 2687 : },
97 : 5204 : [&] {
98 : : // construct(begin, end)
99 : 5204 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
100 : 5204 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
101 : 5204 : auto rand_end = rand_begin + count;
102 : 10408 : deq = std::deque<bool>(rand_begin, rand_end);
103 : 5204 : bitdeq = bitdeque_type(rand_begin, rand_end);
104 : 5204 : },
105 : 8497 : [&] {
106 : : // assign(begin, end)
107 : 8497 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
108 : 8497 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
109 : 8497 : auto rand_end = rand_begin + count;
110 : 8497 : deq.assign(rand_begin, rand_end);
111 : 8497 : bitdeq.assign(rand_begin, rand_end);
112 : 8497 : },
113 : 8067 : [&] {
114 : : // construct(initializer_list)
115 : 8067 : std::initializer_list<bool> ilist{ctx.randbool(), ctx.randbool(), ctx.randbool(), ctx.randbool(), ctx.randbool()};
116 : 16134 : deq = std::deque<bool>(ilist);
117 : 8067 : bitdeq = bitdeque_type(ilist);
118 : 8067 : },
119 : 12948 : [&] {
120 : : // assign(initializer_list)
121 : 12948 : std::initializer_list<bool> ilist{ctx.randbool(), ctx.randbool(), ctx.randbool()};
122 : 12948 : deq.assign(ilist);
123 : 12948 : bitdeq.assign(ilist);
124 : 12948 : },
125 : 12882 : [&] {
126 : : // operator=(const&)
127 : 12882 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
128 : 12882 : bool val = ctx.randbool();
129 : 12882 : const std::deque<bool> deq2(count, val);
130 [ + - ]: 12882 : deq = deq2;
131 [ + - ]: 12882 : const bitdeque_type bitdeq2(count, val);
132 [ + - ]: 12882 : bitdeq = bitdeq2;
133 : 12882 : },
134 : 3454 : [&] {
135 : : // operator=(&&)
136 : 3454 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
137 : 3454 : bool val = ctx.randbool();
138 : 3454 : std::deque<bool> deq2(count, val);
139 : 3454 : deq = std::move(deq2);
140 [ + - ]: 3454 : bitdeque_type bitdeq2(count, val);
141 : 3454 : bitdeq = std::move(bitdeq2);
142 : 3454 : },
143 : 3374 : [&] {
144 : : // deque swap
145 : 3374 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
146 : 3374 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
147 : 3374 : auto rand_end = rand_begin + count;
148 : 3374 : std::deque<bool> deq2(rand_begin, rand_end);
149 [ + - ]: 3374 : bitdeque_type bitdeq2(rand_begin, rand_end);
150 : 3374 : using std::swap;
151 [ - + ]: 3374 : assert(deq.size() == bitdeq.size());
152 [ - + ]: 3374 : assert(deq2.size() == bitdeq2.size());
153 : 3374 : swap(deq, deq2);
154 : 3374 : swap(bitdeq, bitdeq2);
155 [ - + ]: 3374 : assert(deq.size() == bitdeq.size());
156 [ - + ]: 3374 : assert(deq2.size() == bitdeq2.size());
157 : 3374 : },
158 : 5980 : [&] {
159 : : // deque.swap
160 : 5980 : auto count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
161 : 5980 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
162 : 5980 : auto rand_end = rand_begin + count;
163 : 5980 : std::deque<bool> deq2(rand_begin, rand_end);
164 [ + - ]: 5980 : bitdeque_type bitdeq2(rand_begin, rand_end);
165 [ - + ]: 5980 : assert(deq.size() == bitdeq.size());
166 [ - + ]: 5980 : assert(deq2.size() == bitdeq2.size());
167 : 5980 : deq.swap(deq2);
168 : 5980 : bitdeq.swap(bitdeq2);
169 [ - + ]: 5980 : assert(deq.size() == bitdeq.size());
170 [ - + ]: 5980 : assert(deq2.size() == bitdeq2.size());
171 : 5980 : },
172 : 7333 : [&] {
173 : : // operator=(initializer_list)
174 : 7333 : std::initializer_list<bool> ilist{ctx.randbool(), ctx.randbool(), ctx.randbool()};
175 : 7333 : deq = ilist;
176 : 7333 : bitdeq = ilist;
177 : 7333 : },
178 : 6074 : [&] {
179 : : // iterator arithmetic
180 : 6074 : auto pos1 = provider.ConsumeIntegralInRange<long>(0, cdeq.size());
181 : 6074 : auto pos2 = provider.ConsumeIntegralInRange<long>(0, cdeq.size());
182 : 6074 : auto it = deq.begin() + pos1;
183 : 6074 : auto bitit = bitdeq.begin() + pos1;
184 [ + + - + ]: 6074 : if ((size_t)pos1 != cdeq.size()) assert(*it == *bitit);
185 [ - + ]: 6074 : assert(it - deq.begin() == pos1);
186 [ - + ]: 6074 : assert(bitit - bitdeq.begin() == pos1);
187 [ + + ]: 6074 : if (provider.ConsumeBool()) {
188 : 3560 : it += pos2 - pos1;
189 : 3560 : bitit += pos2 - pos1;
190 : : } else {
191 : 2514 : it -= pos1 - pos2;
192 : 2514 : bitit -= pos1 - pos2;
193 : : }
194 [ + + - + ]: 6074 : if ((size_t)pos2 != cdeq.size()) assert(*it == *bitit);
195 [ - + ]: 6074 : assert(deq.end() - it == bitdeq.end() - bitit);
196 [ + + ]: 6074 : if (provider.ConsumeBool()) {
197 [ + + ]: 3341 : if ((size_t)pos2 != cdeq.size()) {
198 : 2492 : ++it;
199 : 2492 : ++bitit;
200 : : }
201 : : } else {
202 [ + + ]: 2733 : if (pos2 != 0) {
203 : 1898 : --it;
204 : 1898 : --bitit;
205 : : }
206 : : }
207 [ - + ]: 6074 : assert(deq.end() - it == bitdeq.end() - bitit);
208 : 6074 : },
209 : 2102 : [&] {
210 : : // begin() and end()
211 [ - + ]: 2102 : assert(deq.end() - deq.begin() == bitdeq.end() - bitdeq.begin());
212 : 2102 : },
213 : 3187 : [&] {
214 : : // begin() and end() (const)
215 [ - + ]: 3187 : assert(cdeq.end() - cdeq.begin() == cbitdeq.end() - cbitdeq.begin());
216 : 3187 : },
217 : 2663 : [&] {
218 : : // rbegin() and rend()
219 [ - + ]: 2663 : assert(deq.rend() - deq.rbegin() == bitdeq.rend() - bitdeq.rbegin());
220 : 2663 : },
221 : 2289 : [&] {
222 : : // rbegin() and rend() (const)
223 [ - + ]: 2289 : assert(cdeq.rend() - cdeq.rbegin() == cbitdeq.rend() - cbitdeq.rbegin());
224 : 2289 : },
225 : 1891 : [&] {
226 : : // cbegin() and cend()
227 [ - + ]: 1891 : assert(cdeq.cend() - cdeq.cbegin() == cbitdeq.cend() - cbitdeq.cbegin());
228 : 1891 : },
229 : 2136 : [&] {
230 : : // crbegin() and crend()
231 [ - + ]: 2136 : assert(cdeq.crend() - cdeq.crbegin() == cbitdeq.crend() - cbitdeq.crbegin());
232 : 2136 : },
233 : 3142 : [&] {
234 : : // size() and maxsize()
235 [ - + ]: 3142 : assert(cdeq.size() == cbitdeq.size());
236 [ - + ]: 3142 : assert(cbitdeq.size() <= cbitdeq.max_size());
237 : 3142 : },
238 : 2422 : [&] {
239 : : // empty
240 [ - + ]: 2422 : assert(cdeq.empty() == cbitdeq.empty());
241 : 2422 : },
242 : 4759 : [&] {
243 : : // at (in range) and flip
244 [ + + ]: 4759 : if (!cdeq.empty()) {
245 : 3888 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
246 : 3888 : auto& ref = deq.at(pos);
247 : 3888 : auto bitref = bitdeq.at(pos);
248 [ - + ]: 3888 : assert(ref == bitref);
249 [ + + ]: 3888 : if (ctx.randbool()) {
250 : 1870 : ref = !ref;
251 : 1870 : bitref.flip();
252 : : }
253 : 3888 : }
254 : 4759 : },
255 : 9959 : [&] {
256 : : // at (maybe out of range) and bit assign
257 : 9959 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() + maxlen);
258 : 9959 : bool newval = ctx.randbool();
259 : 9959 : bool throw_deq{false}, throw_bitdeq{false};
260 : 9959 : bool val_deq{false}, val_bitdeq{false};
261 : 9959 : try {
262 [ + + ]: 9959 : auto& ref = deq.at(pos);
263 : 3513 : val_deq = ref;
264 : 3513 : ref = newval;
265 [ - + ]: 6446 : } catch (const std::out_of_range&) {
266 : 6446 : throw_deq = true;
267 : 6446 : }
268 : 9959 : try {
269 [ + + ]: 9959 : auto ref = bitdeq.at(pos);
270 : 3513 : val_bitdeq = ref;
271 : 3513 : ref = newval;
272 [ - + ]: 9959 : } catch (const std::out_of_range&) {
273 : 6446 : throw_bitdeq = true;
274 : 6446 : }
275 [ - + ]: 9959 : assert(throw_deq == throw_bitdeq);
276 [ - + ]: 9959 : assert(throw_bitdeq == (pos >= cdeq.size()));
277 [ + + - + ]: 9959 : if (!throw_deq) assert(val_deq == val_bitdeq);
278 : 9959 : },
279 : 1862 : [&] {
280 : : // at (maybe out of range) (const)
281 : 1862 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() + maxlen);
282 : 1862 : bool throw_deq{false}, throw_bitdeq{false};
283 : 1862 : bool val_deq{false}, val_bitdeq{false};
284 : 1862 : try {
285 [ + + ]: 1862 : auto& ref = cdeq.at(pos);
286 : 1034 : val_deq = ref;
287 [ - + ]: 828 : } catch (const std::out_of_range&) {
288 : 828 : throw_deq = true;
289 : 828 : }
290 : 1862 : try {
291 [ + + ]: 1862 : auto ref = cbitdeq.at(pos);
292 : : val_bitdeq = ref;
293 [ - + ]: 828 : } catch (const std::out_of_range&) {
294 : 828 : throw_bitdeq = true;
295 : 828 : }
296 [ - + ]: 1862 : assert(throw_deq == throw_bitdeq);
297 [ - + ]: 1862 : assert(throw_bitdeq == (pos >= cdeq.size()));
298 [ + + - + ]: 1862 : if (!throw_deq) assert(val_deq == val_bitdeq);
299 : 1862 : },
300 : 5031 : [&] {
301 : : // operator[]
302 [ + + ]: 5031 : if (!cdeq.empty()) {
303 : 4450 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
304 [ - + ]: 4450 : assert(deq[pos] == bitdeq[pos]);
305 [ + + ]: 4450 : if (ctx.randbool()) {
306 : 2238 : deq[pos] = !deq[pos];
307 : 2238 : bitdeq[pos].flip();
308 : : }
309 : : }
310 : 5031 : },
311 : 1967 : [&] {
312 : : // operator[] const
313 [ + + ]: 1967 : if (!cdeq.empty()) {
314 : 1145 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
315 [ - + ]: 1145 : assert(deq[pos] == bitdeq[pos]);
316 : : }
317 : 1967 : },
318 : 4270 : [&] {
319 : : // front()
320 [ + + ]: 4270 : if (!cdeq.empty()) {
321 [ - + ]: 3543 : auto& ref = deq.front();
322 : 3543 : auto bitref = bitdeq.front();
323 [ - + ]: 3543 : assert(ref == bitref);
324 [ + + ]: 3543 : if (ctx.randbool()) {
325 : 1729 : ref = !ref;
326 : 1729 : bitref = !bitref;
327 : : }
328 : 3543 : }
329 : 4270 : },
330 : 2196 : [&] {
331 : : // front() const
332 [ + + ]: 2196 : if (!cdeq.empty()) {
333 [ - + ]: 1402 : auto& ref = cdeq.front();
334 : 1402 : auto bitref = cbitdeq.front();
335 [ - + ]: 1402 : assert(ref == bitref);
336 : : }
337 : 2196 : },
338 : 4504 : [&] {
339 : : // back() and swap(bool, ref)
340 [ + + ]: 4504 : if (!cdeq.empty()) {
341 : 3659 : auto& ref = deq.back();
342 : 3659 : auto bitref = bitdeq.back();
343 [ - + ]: 3659 : assert(ref == bitref);
344 [ + + ]: 3659 : if (ctx.randbool()) {
345 : 1851 : ref = !ref;
346 : 1851 : bitref.flip();
347 : : }
348 : 3659 : }
349 : 4504 : },
350 : 3734 : [&] {
351 : : // back() const
352 [ + + ]: 3734 : if (!cdeq.empty()) {
353 : 2705 : const auto& cdeq = deq;
354 : 2705 : const auto& cbitdeq = bitdeq;
355 : 2705 : auto& ref = cdeq.back();
356 : 2705 : auto bitref = cbitdeq.back();
357 [ - + ]: 2705 : assert(ref == bitref);
358 : : }
359 : 3734 : },
360 : 6475 : [&] {
361 : : // push_back()
362 [ + + ]: 6475 : if (cdeq.size() < limitlen) {
363 : 5823 : bool val = ctx.randbool();
364 [ + + ]: 5823 : if (cdeq.empty()) {
365 : 2174 : deq.push_back(val);
366 : 2174 : bitdeq.push_back(val);
367 : : } else {
368 : 3649 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
369 : 3649 : auto& ref = deq[pos];
370 : 3649 : auto bitref = bitdeq[pos];
371 [ - + ]: 3649 : assert(ref == bitref);
372 : 3649 : deq.push_back(val);
373 : 3649 : bitdeq.push_back(val);
374 [ - + ]: 3649 : assert(ref == bitref); // references are not invalidated
375 : 3649 : }
376 : : }
377 : 6475 : },
378 : 10222 : [&] {
379 : : // push_front()
380 [ + + ]: 10222 : if (cdeq.size() < limitlen) {
381 : 9482 : bool val = ctx.randbool();
382 [ + + ]: 9482 : if (cdeq.empty()) {
383 : 3390 : deq.push_front(val);
384 : 3390 : bitdeq.push_front(val);
385 : : } else {
386 : 6092 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
387 : 6092 : auto& ref = deq[pos];
388 : 6092 : auto bitref = bitdeq[pos];
389 [ - + ]: 6092 : assert(ref == bitref);
390 : 6092 : deq.push_front(val);
391 : 6092 : bitdeq.push_front(val);
392 [ - + ]: 6092 : assert(ref == bitref); // references are not invalidated
393 : 6092 : }
394 : : }
395 : 10222 : },
396 : 5091 : [&] {
397 : : // pop_back()
398 [ + + ]: 5091 : if (!cdeq.empty()) {
399 [ + + ]: 4188 : if (cdeq.size() == 1) {
400 : 1309 : deq.pop_back();
401 : 1309 : bitdeq.pop_back();
402 : : } else {
403 : 2879 : size_t pos = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 2);
404 : 2879 : auto& ref = deq[pos];
405 : 2879 : auto bitref = bitdeq[pos];
406 [ - + ]: 2879 : assert(ref == bitref);
407 : 2879 : deq.pop_back();
408 : 2879 : bitdeq.pop_back();
409 [ - + ]: 2879 : assert(ref == bitref); // references to other elements are not invalidated
410 : 2879 : }
411 : : }
412 : 5091 : },
413 : 6512 : [&] {
414 : : // pop_front()
415 [ + + ]: 6512 : if (!cdeq.empty()) {
416 [ + + ]: 4830 : if (cdeq.size() == 1) {
417 : 2147 : deq.pop_front();
418 : 2147 : bitdeq.pop_front();
419 : : } else {
420 : 2683 : size_t pos = provider.ConsumeIntegralInRange<size_t>(1, cdeq.size() - 1);
421 : 2683 : auto& ref = deq[pos];
422 : 2683 : auto bitref = bitdeq[pos];
423 [ - + ]: 2683 : assert(ref == bitref);
424 : 2683 : deq.pop_front();
425 : 2683 : bitdeq.pop_front();
426 [ - + ]: 2683 : assert(ref == bitref); // references to other elements are not invalidated
427 : 2683 : }
428 : : }
429 : 6512 : },
430 : 7013 : [&] {
431 : : // erase (in middle, single)
432 [ + + ]: 7013 : if (!cdeq.empty()) {
433 : 5770 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - 1);
434 : 5770 : size_t after = cdeq.size() - 1 - before;
435 : 5770 : auto it = deq.erase(cdeq.begin() + before);
436 : 5770 : auto bitit = bitdeq.erase(cbitdeq.begin() + before);
437 [ + - - + ]: 5770 : assert(it == cdeq.begin() + before && it == cdeq.end() - after);
438 [ + - + - ]: 11540 : assert(bitit == cbitdeq.begin() + before && bitit == cbitdeq.end() - after);
439 : : }
440 : 7013 : },
441 : 6939 : [&] {
442 : : // erase (at front, range)
443 : 6939 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
444 : 6939 : auto it = deq.erase(cdeq.begin(), cdeq.begin() + count);
445 : 6939 : auto bitit = bitdeq.erase(cbitdeq.begin(), cbitdeq.begin() + count);
446 [ - + ]: 6939 : assert(it == deq.begin());
447 [ + - ]: 6939 : assert(bitit == bitdeq.begin());
448 : 6939 : },
449 : 3170 : [&] {
450 : : // erase (at back, range)
451 : 3170 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
452 : 3170 : auto it = deq.erase(cdeq.end() - count, cdeq.end());
453 : 3170 : auto bitit = bitdeq.erase(cbitdeq.end() - count, cbitdeq.end());
454 [ - + ]: 3170 : assert(it == deq.end());
455 [ + - ]: 3170 : assert(bitit == bitdeq.end());
456 : 3170 : },
457 : 4643 : [&] {
458 : : // erase (in middle, range)
459 : 4643 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
460 : 4643 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size() - count);
461 : 4643 : size_t after = cdeq.size() - count - before;
462 : 4643 : auto it = deq.erase(cdeq.begin() + before, cdeq.end() - after);
463 : 4643 : auto bitit = bitdeq.erase(cbitdeq.begin() + before, cbitdeq.end() - after);
464 [ + - - + ]: 4643 : assert(it == cdeq.begin() + before && it == cdeq.end() - after);
465 [ + - + - ]: 9286 : assert(bitit == cbitdeq.begin() + before && bitit == cbitdeq.end() - after);
466 : 4643 : },
467 : 10574 : [&] {
468 : : // insert/emplace (in middle, single)
469 [ + + ]: 10574 : if (cdeq.size() < limitlen) {
470 : 10016 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
471 : 10016 : bool val = ctx.randbool();
472 : 10016 : bool do_emplace = provider.ConsumeBool();
473 : 10016 : auto it = deq.insert(cdeq.begin() + before, val);
474 [ + + ]: 10016 : auto bitit = do_emplace ? bitdeq.emplace(cbitdeq.begin() + before, val)
475 : 10016 : : bitdeq.insert(cbitdeq.begin() + before, val);
476 [ - + ]: 10016 : assert(it == deq.begin() + before);
477 [ + - ]: 10016 : assert(bitit == bitdeq.begin() + before);
478 : : }
479 : 10574 : },
480 : 7633 : [&] {
481 : : // insert (at front, begin/end)
482 [ + + ]: 7633 : if (cdeq.size() < limitlen) {
483 : 7065 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
484 : 7065 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
485 : 7065 : auto rand_end = rand_begin + count;
486 : 7065 : auto it = deq.insert(cdeq.begin(), rand_begin, rand_end);
487 : 7065 : auto bitit = bitdeq.insert(cbitdeq.begin(), rand_begin, rand_end);
488 [ - + ]: 7065 : assert(it == cdeq.begin());
489 [ + - ]: 7065 : assert(bitit == cbitdeq.begin());
490 : : }
491 : 7633 : },
492 : 7070 : [&] {
493 : : // insert (at back, begin/end)
494 [ + + ]: 7070 : if (cdeq.size() < limitlen) {
495 : 6011 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
496 : 6011 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
497 : 6011 : auto rand_end = rand_begin + count;
498 : 6011 : auto it = deq.insert(cdeq.end(), rand_begin, rand_end);
499 : 6011 : auto bitit = bitdeq.insert(cbitdeq.end(), rand_begin, rand_end);
500 [ - + ]: 6011 : assert(it == cdeq.end() - count);
501 [ + - ]: 6011 : assert(bitit == cbitdeq.end() - count);
502 : : }
503 : 7070 : },
504 : 19571 : [&] {
505 : : // insert (in middle, range)
506 [ + + ]: 19571 : if (cdeq.size() < limitlen) {
507 : 16068 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
508 : 16068 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
509 : 16068 : bool val = ctx.randbool();
510 : 16068 : auto it = deq.insert(cdeq.begin() + before, count, val);
511 : 16068 : auto bitit = bitdeq.insert(cbitdeq.begin() + before, count, val);
512 [ - + ]: 16068 : assert(it == deq.begin() + before);
513 [ + - ]: 16068 : assert(bitit == bitdeq.begin() + before);
514 : : }
515 : 19571 : },
516 : 16211 : [&] {
517 : : // insert (in middle, begin/end)
518 [ + + ]: 16211 : if (cdeq.size() < limitlen) {
519 : 14161 : size_t count = provider.ConsumeIntegralInRange<size_t>(0, maxlen);
520 : 14161 : size_t before = provider.ConsumeIntegralInRange<size_t>(0, cdeq.size());
521 : 14161 : auto rand_begin = RANDDATA.begin() + ctx.randbits(RANDDATA_BITS);
522 : 14161 : auto rand_end = rand_begin + count;
523 : 14161 : auto it = deq.insert(cdeq.begin() + before, rand_begin, rand_end);
524 : 14161 : auto bitit = bitdeq.insert(cbitdeq.begin() + before, rand_begin, rand_end);
525 [ - + ]: 14161 : assert(it == deq.begin() + before);
526 [ + - ]: 14161 : assert(bitit == bitdeq.begin() + before);
527 : : }
528 : 16211 : });
529 : : }
530 : 826 : {
531 [ - + ]: 826 : assert(deq.size() == bitdeq.size());
532 : 826 : auto it = deq.begin();
533 : 826 : auto bitit = bitdeq.begin();
534 : 826 : auto itend = deq.end();
535 [ + + ]: 8315191 : while (it != itend) {
536 [ - + ]: 8314365 : assert(*it == *bitit);
537 : 8314365 : ++it;
538 : 8314365 : ++bitit;
539 : : }
540 : : }
541 : 826 : }
|