[lld][WebAssembly] Introduce Ctx::arg
[llvm-project.git] / libcxx / test / std / containers / sequences / deque / deque.modifiers / emplace_back.pass.cpp
blob1ea3423bd43c68b3befce5d615dcbf4618d67dec
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03
11 // <deque>
13 // template <class... Args> reference emplace_back(Args&&... args);
14 // return type is 'reference' in C++17; 'void' before
16 #include "asan_testing.h"
17 #include <deque>
18 #include <cstddef>
19 #include <cassert>
21 #include "test_macros.h"
22 #include "../../../Emplaceable.h"
23 #include "min_allocator.h"
24 #include "test_allocator.h"
26 template <class C>
28 make(int size, int start = 0 )
30 const int b = 4096 / sizeof(int);
31 int init = 0;
32 if (start > 0)
34 init = (start+1) / b + ((start+1) % b != 0);
35 init *= b;
36 --init;
38 C c(init);
39 for (int i = 0; i < init-start; ++i)
40 c.pop_back();
41 for (int i = 0; i < size; ++i)
42 c.push_back(Emplaceable());
43 for (int i = 0; i < start; ++i)
44 c.pop_front();
45 return c;
48 template <class C>
49 void
50 test(C& c1)
52 typedef typename C::iterator I;
53 std::size_t c1_osize = c1.size();
54 #if TEST_STD_VER > 14
55 typedef typename C::reference Ref;
56 Ref ref = c1.emplace_back(Emplaceable(1, 2.5));
57 #else
58 c1.emplace_back(Emplaceable(1, 2.5));
59 #endif
60 assert(c1.size() == c1_osize + 1);
61 assert(std::distance(c1.begin(), c1.end())
62 == static_cast<std::ptrdiff_t>(c1.size()));
63 I i = c1.end();
64 assert(*--i == Emplaceable(1, 2.5));
65 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(c1));
66 #if TEST_STD_VER > 14
67 assert(&(*i) == &ref);
68 #endif
71 template <class C>
72 void
73 testN(int start, int N)
75 C c1 = make<C>(N, start);
76 test(c1);
79 int main(int, char**)
82 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049};
83 const int N = sizeof(rng)/sizeof(rng[0]);
84 for (int i = 0; i < N; ++i)
85 for (int j = 0; j < N; ++j)
86 testN<std::deque<Emplaceable> >(rng[i], rng[j]);
89 int rng[] = {0, 1, 2, 3, 1023, 1024, 1025, 2047, 2048, 2049};
90 const int N = sizeof(rng)/sizeof(rng[0]);
91 for (int i = 0; i < N; ++i)
92 for (int j = 0; j < N; ++j)
93 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]);
96 std::deque<Tag_X, TaggingAllocator<Tag_X>> c;
97 c.emplace_back();
98 assert(c.size() == 1);
99 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(c));
100 c.emplace_back(1, 2, 3);
101 assert(c.size() == 2);
102 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(c));
103 c.emplace_front();
104 assert(c.size() == 3);
105 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(c));
106 c.emplace_front(1, 2, 3);
107 assert(c.size() == 4);
108 LIBCPP_ASSERT(is_double_ended_contiguous_container_asan_correct(c));
111 return 0;