Marshall Clow | 354d39c | 2014-01-16 16:58:45 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 10 | #ifndef TEST_ALLOCATOR_H |
| 11 | #define TEST_ALLOCATOR_H |
| 12 | |
| 13 | #include <cstddef> |
| 14 | #include <type_traits> |
| 15 | #include <cstdlib> |
| 16 | #include <new> |
| 17 | #include <climits> |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 18 | #include <cassert> |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 19 | |
Marshall Clow | cbf166a | 2015-06-03 19:56:43 +0000 | [diff] [blame] | 20 | #include "test_macros.h" |
| 21 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 22 | class test_alloc_base |
| 23 | { |
| 24 | protected: |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 25 | static int time_to_throw; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 26 | public: |
| 27 | static int throw_after; |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 28 | static int count; |
| 29 | static int alloc_count; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | int test_alloc_base::count = 0; |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 33 | int test_alloc_base::time_to_throw = 0; |
| 34 | int test_alloc_base::alloc_count = 0; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 35 | int test_alloc_base::throw_after = INT_MAX; |
| 36 | |
| 37 | template <class T> |
| 38 | class test_allocator |
| 39 | : public test_alloc_base |
| 40 | { |
| 41 | int data_; |
| 42 | |
| 43 | template <class U> friend class test_allocator; |
| 44 | public: |
| 45 | |
| 46 | typedef unsigned size_type; |
| 47 | typedef int difference_type; |
| 48 | typedef T value_type; |
| 49 | typedef value_type* pointer; |
| 50 | typedef const value_type* const_pointer; |
| 51 | typedef typename std::add_lvalue_reference<value_type>::type reference; |
| 52 | typedef typename std::add_lvalue_reference<const value_type>::type const_reference; |
| 53 | |
| 54 | template <class U> struct rebind {typedef test_allocator<U> other;}; |
| 55 | |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 56 | test_allocator() throw() : data_(0) {++count;} |
| 57 | explicit test_allocator(int i) throw() : data_(i) {++count;} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 58 | test_allocator(const test_allocator& a) throw() |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 59 | : data_(a.data_) {++count;} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 60 | template <class U> test_allocator(const test_allocator<U>& a) throw() |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 61 | : data_(a.data_) {++count;} |
| 62 | ~test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 63 | pointer address(reference x) const {return &x;} |
| 64 | const_pointer address(const_reference x) const {return &x;} |
| 65 | pointer allocate(size_type n, const void* = 0) |
| 66 | { |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 67 | assert(data_ >= 0); |
| 68 | if (time_to_throw >= throw_after) { |
Howard Hinnant | 65a87cc | 2013-03-23 17:27:16 +0000 | [diff] [blame] | 69 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 70 | throw std::bad_alloc(); |
Howard Hinnant | 65a87cc | 2013-03-23 17:27:16 +0000 | [diff] [blame] | 71 | #else |
| 72 | std::terminate(); |
| 73 | #endif |
| 74 | } |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 75 | ++time_to_throw; |
| 76 | ++alloc_count; |
Eric Fiselier | b11df18 | 2015-06-14 23:30:09 +0000 | [diff] [blame] | 77 | return (pointer)::operator new(n * sizeof(T)); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 78 | } |
Eric Fiselier | 7626f77 | 2016-04-28 03:17:56 +0000 | [diff] [blame] | 79 | void deallocate(pointer p, size_type) |
Eric Fiselier | b11df18 | 2015-06-14 23:30:09 +0000 | [diff] [blame] | 80 | {assert(data_ >= 0); --alloc_count; ::operator delete((void*)p);} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 81 | size_type max_size() const throw() |
| 82 | {return UINT_MAX / sizeof(T);} |
Eric Fiselier | 4fae502 | 2016-06-15 01:53:32 +0000 | [diff] [blame^] | 83 | #if TEST_STD_VER < 11 |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 84 | void construct(pointer p, const T& val) |
Eric Fiselier | 4fae502 | 2016-06-15 01:53:32 +0000 | [diff] [blame^] | 85 | {::new(static_cast<void*>(p)) T(val);} |
| 86 | #else |
| 87 | template <class U> void construct(pointer p, U&& val) |
| 88 | {::new(static_cast<void*>(p)) T(std::forward<U>(val));} |
| 89 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 90 | void destroy(pointer p) {p->~T();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 91 | friend bool operator==(const test_allocator& x, const test_allocator& y) |
| 92 | {return x.data_ == y.data_;} |
| 93 | friend bool operator!=(const test_allocator& x, const test_allocator& y) |
| 94 | {return !(x == y);} |
| 95 | }; |
| 96 | |
Marshall Clow | 5f7c2db | 2014-04-18 17:23:36 +0000 | [diff] [blame] | 97 | template <class T> |
| 98 | class non_default_test_allocator |
| 99 | : public test_alloc_base |
| 100 | { |
| 101 | int data_; |
| 102 | |
| 103 | template <class U> friend class non_default_test_allocator; |
| 104 | public: |
| 105 | |
| 106 | typedef unsigned size_type; |
| 107 | typedef int difference_type; |
| 108 | typedef T value_type; |
| 109 | typedef value_type* pointer; |
| 110 | typedef const value_type* const_pointer; |
| 111 | typedef typename std::add_lvalue_reference<value_type>::type reference; |
| 112 | typedef typename std::add_lvalue_reference<const value_type>::type const_reference; |
| 113 | |
| 114 | template <class U> struct rebind {typedef non_default_test_allocator<U> other;}; |
| 115 | |
| 116 | // non_default_test_allocator() throw() : data_(0) {++count;} |
| 117 | explicit non_default_test_allocator(int i) throw() : data_(i) {++count;} |
| 118 | non_default_test_allocator(const non_default_test_allocator& a) throw() |
| 119 | : data_(a.data_) {++count;} |
| 120 | template <class U> non_default_test_allocator(const non_default_test_allocator<U>& a) throw() |
| 121 | : data_(a.data_) {++count;} |
| 122 | ~non_default_test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;} |
| 123 | pointer address(reference x) const {return &x;} |
| 124 | const_pointer address(const_reference x) const {return &x;} |
| 125 | pointer allocate(size_type n, const void* = 0) |
| 126 | { |
| 127 | assert(data_ >= 0); |
| 128 | if (time_to_throw >= throw_after) { |
| 129 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 130 | throw std::bad_alloc(); |
| 131 | #else |
| 132 | std::terminate(); |
| 133 | #endif |
| 134 | } |
| 135 | ++time_to_throw; |
| 136 | ++alloc_count; |
Eric Fiselier | b11df18 | 2015-06-14 23:30:09 +0000 | [diff] [blame] | 137 | return (pointer)::operator new (n * sizeof(T)); |
Marshall Clow | 5f7c2db | 2014-04-18 17:23:36 +0000 | [diff] [blame] | 138 | } |
Eric Fiselier | 7626f77 | 2016-04-28 03:17:56 +0000 | [diff] [blame] | 139 | void deallocate(pointer p, size_type) |
Eric Fiselier | b11df18 | 2015-06-14 23:30:09 +0000 | [diff] [blame] | 140 | {assert(data_ >= 0); --alloc_count; ::operator delete((void*)p); } |
Marshall Clow | 5f7c2db | 2014-04-18 17:23:36 +0000 | [diff] [blame] | 141 | size_type max_size() const throw() |
| 142 | {return UINT_MAX / sizeof(T);} |
Eric Fiselier | 4fae502 | 2016-06-15 01:53:32 +0000 | [diff] [blame^] | 143 | #if TEST_STD_VER < 11 |
Marshall Clow | 5f7c2db | 2014-04-18 17:23:36 +0000 | [diff] [blame] | 144 | void construct(pointer p, const T& val) |
Eric Fiselier | 4fae502 | 2016-06-15 01:53:32 +0000 | [diff] [blame^] | 145 | {::new(static_cast<void*>(p)) T(val);} |
| 146 | #else |
| 147 | template <class U> void construct(pointer p, U&& val) |
| 148 | {::new(static_cast<void*>(p)) T(std::forward<U>(val));} |
| 149 | #endif |
Marshall Clow | 5f7c2db | 2014-04-18 17:23:36 +0000 | [diff] [blame] | 150 | void destroy(pointer p) {p->~T();} |
| 151 | |
| 152 | friend bool operator==(const non_default_test_allocator& x, const non_default_test_allocator& y) |
| 153 | {return x.data_ == y.data_;} |
| 154 | friend bool operator!=(const non_default_test_allocator& x, const non_default_test_allocator& y) |
| 155 | {return !(x == y);} |
| 156 | }; |
| 157 | |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 158 | template <> |
| 159 | class test_allocator<void> |
| 160 | : public test_alloc_base |
| 161 | { |
| 162 | int data_; |
| 163 | |
| 164 | template <class U> friend class test_allocator; |
| 165 | public: |
| 166 | |
| 167 | typedef unsigned size_type; |
| 168 | typedef int difference_type; |
| 169 | typedef void value_type; |
| 170 | typedef value_type* pointer; |
| 171 | typedef const value_type* const_pointer; |
| 172 | |
| 173 | template <class U> struct rebind {typedef test_allocator<U> other;}; |
| 174 | |
Eric Fiselier | fc8e8c0 | 2015-08-28 05:00:25 +0000 | [diff] [blame] | 175 | test_allocator() throw() : data_(0) {} |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 176 | explicit test_allocator(int i) throw() : data_(i) {} |
| 177 | test_allocator(const test_allocator& a) throw() |
| 178 | : data_(a.data_) {} |
| 179 | template <class U> test_allocator(const test_allocator<U>& a) throw() |
| 180 | : data_(a.data_) {} |
Eric Fiselier | fc8e8c0 | 2015-08-28 05:00:25 +0000 | [diff] [blame] | 181 | ~test_allocator() throw() {data_ = -1;} |
Marshall Clow | c3deeb5 | 2013-12-03 00:18:10 +0000 | [diff] [blame] | 182 | |
| 183 | friend bool operator==(const test_allocator& x, const test_allocator& y) |
| 184 | {return x.data_ == y.data_;} |
| 185 | friend bool operator!=(const test_allocator& x, const test_allocator& y) |
| 186 | {return !(x == y);} |
| 187 | }; |
| 188 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 189 | template <class T> |
| 190 | class other_allocator |
| 191 | { |
| 192 | int data_; |
| 193 | |
| 194 | template <class U> friend class other_allocator; |
| 195 | |
| 196 | public: |
| 197 | typedef T value_type; |
| 198 | |
| 199 | other_allocator() : data_(-1) {} |
| 200 | explicit other_allocator(int i) : data_(i) {} |
| 201 | template <class U> other_allocator(const other_allocator<U>& a) |
| 202 | : data_(a.data_) {} |
| 203 | T* allocate(std::size_t n) |
Eric Fiselier | b11df18 | 2015-06-14 23:30:09 +0000 | [diff] [blame] | 204 | {return (T*)::operator new(n * sizeof(T));} |
Eric Fiselier | 7626f77 | 2016-04-28 03:17:56 +0000 | [diff] [blame] | 205 | void deallocate(T* p, std::size_t) |
Eric Fiselier | b11df18 | 2015-06-14 23:30:09 +0000 | [diff] [blame] | 206 | {::operator delete((void*)p);} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 207 | |
| 208 | other_allocator select_on_container_copy_construction() const |
| 209 | {return other_allocator(-2);} |
| 210 | |
| 211 | friend bool operator==(const other_allocator& x, const other_allocator& y) |
| 212 | {return x.data_ == y.data_;} |
| 213 | friend bool operator!=(const other_allocator& x, const other_allocator& y) |
| 214 | {return !(x == y);} |
| 215 | |
| 216 | typedef std::true_type propagate_on_container_copy_assignment; |
| 217 | typedef std::true_type propagate_on_container_move_assignment; |
| 218 | typedef std::true_type propagate_on_container_swap; |
| 219 | |
| 220 | #ifdef _LIBCPP_HAS_NO_ADVANCED_SFINAE |
| 221 | std::size_t max_size() const |
| 222 | {return UINT_MAX / sizeof(T);} |
Howard Hinnant | 8f2f7e7 | 2010-08-22 00:15:28 +0000 | [diff] [blame] | 223 | #endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 224 | |
| 225 | }; |
| 226 | |
Howard Hinnant | 8f2f7e7 | 2010-08-22 00:15:28 +0000 | [diff] [blame] | 227 | #endif // TEST_ALLOCATOR_H |