blob: 99f72a053c32116cb07046971c0c0e14f5f8a815 [file] [log] [blame]
Marshall Clow354d39c2014-01-16 16:58:45 +00001//===----------------------------------------------------------------------===//
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 Hinnant3e519522010-05-11 19:42:16 +000010#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 Clowc3deeb52013-12-03 00:18:10 +000018#include <cassert>
Howard Hinnant3e519522010-05-11 19:42:16 +000019
20class test_alloc_base
21{
22protected:
Marshall Clowc3deeb52013-12-03 00:18:10 +000023 static int time_to_throw;
Howard Hinnant3e519522010-05-11 19:42:16 +000024public:
25 static int throw_after;
Marshall Clowc3deeb52013-12-03 00:18:10 +000026 static int count;
27 static int alloc_count;
Howard Hinnant3e519522010-05-11 19:42:16 +000028};
29
30int test_alloc_base::count = 0;
Marshall Clowc3deeb52013-12-03 00:18:10 +000031int test_alloc_base::time_to_throw = 0;
32int test_alloc_base::alloc_count = 0;
Howard Hinnant3e519522010-05-11 19:42:16 +000033int test_alloc_base::throw_after = INT_MAX;
34
35template <class T>
36class test_allocator
37 : public test_alloc_base
38{
39 int data_;
40
41 template <class U> friend class test_allocator;
42public:
43
44 typedef unsigned size_type;
45 typedef int difference_type;
46 typedef T value_type;
47 typedef value_type* pointer;
48 typedef const value_type* const_pointer;
49 typedef typename std::add_lvalue_reference<value_type>::type reference;
50 typedef typename std::add_lvalue_reference<const value_type>::type const_reference;
51
52 template <class U> struct rebind {typedef test_allocator<U> other;};
53
Marshall Clowc3deeb52013-12-03 00:18:10 +000054 test_allocator() throw() : data_(0) {++count;}
55 explicit test_allocator(int i) throw() : data_(i) {++count;}
Howard Hinnant3e519522010-05-11 19:42:16 +000056 test_allocator(const test_allocator& a) throw()
Marshall Clowc3deeb52013-12-03 00:18:10 +000057 : data_(a.data_) {++count;}
Howard Hinnant3e519522010-05-11 19:42:16 +000058 template <class U> test_allocator(const test_allocator<U>& a) throw()
Marshall Clowc3deeb52013-12-03 00:18:10 +000059 : data_(a.data_) {++count;}
60 ~test_allocator() throw() {assert(data_ >= 0); --count; data_ = -1;}
Howard Hinnant3e519522010-05-11 19:42:16 +000061 pointer address(reference x) const {return &x;}
62 const_pointer address(const_reference x) const {return &x;}
63 pointer allocate(size_type n, const void* = 0)
64 {
Marshall Clowc3deeb52013-12-03 00:18:10 +000065 assert(data_ >= 0);
66 if (time_to_throw >= throw_after) {
Howard Hinnant65a87cc2013-03-23 17:27:16 +000067#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnant3e519522010-05-11 19:42:16 +000068 throw std::bad_alloc();
Howard Hinnant65a87cc2013-03-23 17:27:16 +000069#else
70 std::terminate();
71#endif
72 }
Marshall Clowc3deeb52013-12-03 00:18:10 +000073 ++time_to_throw;
74 ++alloc_count;
Howard Hinnant3e519522010-05-11 19:42:16 +000075 return (pointer)std::malloc(n * sizeof(T));
76 }
77 void deallocate(pointer p, size_type n)
Marshall Clowc3deeb52013-12-03 00:18:10 +000078 {assert(data_ >= 0); --alloc_count; std::free(p);}
Howard Hinnant3e519522010-05-11 19:42:16 +000079 size_type max_size() const throw()
80 {return UINT_MAX / sizeof(T);}
81 void construct(pointer p, const T& val)
82 {::new(p) T(val);}
Howard Hinnant7609c9b2010-09-04 23:28:19 +000083#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant3e519522010-05-11 19:42:16 +000084 void construct(pointer p, T&& val)
85 {::new(p) T(std::move(val));}
Howard Hinnant7609c9b2010-09-04 23:28:19 +000086#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant3e519522010-05-11 19:42:16 +000087 void destroy(pointer p) {p->~T();}
88
89 friend bool operator==(const test_allocator& x, const test_allocator& y)
90 {return x.data_ == y.data_;}
91 friend bool operator!=(const test_allocator& x, const test_allocator& y)
92 {return !(x == y);}
93};
94
Marshall Clowc3deeb52013-12-03 00:18:10 +000095template <>
96class test_allocator<void>
97 : public test_alloc_base
98{
99 int data_;
100
101 template <class U> friend class test_allocator;
102public:
103
104 typedef unsigned size_type;
105 typedef int difference_type;
106 typedef void value_type;
107 typedef value_type* pointer;
108 typedef const value_type* const_pointer;
109
110 template <class U> struct rebind {typedef test_allocator<U> other;};
111
112 test_allocator() throw() : data_(-1) {}
113 explicit test_allocator(int i) throw() : data_(i) {}
114 test_allocator(const test_allocator& a) throw()
115 : data_(a.data_) {}
116 template <class U> test_allocator(const test_allocator<U>& a) throw()
117 : data_(a.data_) {}
118 ~test_allocator() throw() {data_ = 0;}
119
120 friend bool operator==(const test_allocator& x, const test_allocator& y)
121 {return x.data_ == y.data_;}
122 friend bool operator!=(const test_allocator& x, const test_allocator& y)
123 {return !(x == y);}
124};
125
Howard Hinnant3e519522010-05-11 19:42:16 +0000126template <class T>
127class other_allocator
128{
129 int data_;
130
131 template <class U> friend class other_allocator;
132
133public:
134 typedef T value_type;
135
136 other_allocator() : data_(-1) {}
137 explicit other_allocator(int i) : data_(i) {}
138 template <class U> other_allocator(const other_allocator<U>& a)
139 : data_(a.data_) {}
140 T* allocate(std::size_t n)
141 {return (T*)std::malloc(n * sizeof(T));}
142 void deallocate(T* p, std::size_t n)
143 {std::free(p);}
144
145 other_allocator select_on_container_copy_construction() const
146 {return other_allocator(-2);}
147
148 friend bool operator==(const other_allocator& x, const other_allocator& y)
149 {return x.data_ == y.data_;}
150 friend bool operator!=(const other_allocator& x, const other_allocator& y)
151 {return !(x == y);}
152
153 typedef std::true_type propagate_on_container_copy_assignment;
154 typedef std::true_type propagate_on_container_move_assignment;
155 typedef std::true_type propagate_on_container_swap;
156
157#ifdef _LIBCPP_HAS_NO_ADVANCED_SFINAE
158 std::size_t max_size() const
159 {return UINT_MAX / sizeof(T);}
Howard Hinnant8f2f7e72010-08-22 00:15:28 +0000160#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnant3e519522010-05-11 19:42:16 +0000161
162};
163
Howard Hinnant8f2f7e72010-08-22 00:15:28 +0000164#endif // TEST_ALLOCATOR_H