xref: /xnu-12377.81.4/tests/bounded_ptr_src/compare.order.raw.cpp (revision 043036a2b3718f7f0be807e2870f8f47d3fa0796)
1*043036a2SApple OSS Distributions //
2*043036a2SApple OSS Distributions // Tests for
3*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
4*043036a2SApple OSS Distributions //  bool operator<(T* a, bounded_ptr<U, P> const& b);
5*043036a2SApple OSS Distributions //
6*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
7*043036a2SApple OSS Distributions //  bool operator<(bounded_ptr<T, P> const& a, U* b);
8*043036a2SApple OSS Distributions //
9*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
10*043036a2SApple OSS Distributions //  bool operator<=(T* a, bounded_ptr<U, P> const& b);
11*043036a2SApple OSS Distributions //
12*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
13*043036a2SApple OSS Distributions //  bool operator<=(bounded_ptr<T, P> const& a, U* b);
14*043036a2SApple OSS Distributions //
15*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
16*043036a2SApple OSS Distributions //  bool operator>(T* a, bounded_ptr<U, P> const& b);
17*043036a2SApple OSS Distributions //
18*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
19*043036a2SApple OSS Distributions //  bool operator>(bounded_ptr<T, P> const& a, U* b);
20*043036a2SApple OSS Distributions //
21*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
22*043036a2SApple OSS Distributions //  bool operator>=(T* a, bounded_ptr<U, P> const& b);
23*043036a2SApple OSS Distributions //
24*043036a2SApple OSS Distributions //  template <typename T, typename U, typename P>
25*043036a2SApple OSS Distributions //  bool operator>=(bounded_ptr<T, P> const& a, U* b);
26*043036a2SApple OSS Distributions //
27*043036a2SApple OSS Distributions 
28*043036a2SApple OSS Distributions #include <libkern/c++/bounded_ptr.h>
29*043036a2SApple OSS Distributions #include <array>
30*043036a2SApple OSS Distributions #include <darwintest.h>
31*043036a2SApple OSS Distributions #include <darwintest_utils.h>
32*043036a2SApple OSS Distributions #include "test_utils.h"
33*043036a2SApple OSS Distributions 
34*043036a2SApple OSS Distributions #define _assert(...) T_ASSERT_TRUE((__VA_ARGS__), # __VA_ARGS__)
35*043036a2SApple OSS Distributions 
36*043036a2SApple OSS Distributions template <typename T, typename U>
37*043036a2SApple OSS Distributions static void
check_lt(T t,U u)38*043036a2SApple OSS Distributions check_lt(T t, U u)
39*043036a2SApple OSS Distributions {
40*043036a2SApple OSS Distributions 	_assert(t < u);
41*043036a2SApple OSS Distributions 	_assert(t <= u);
42*043036a2SApple OSS Distributions 	_assert(!(t >= u));
43*043036a2SApple OSS Distributions 	_assert(!(t > u));
44*043036a2SApple OSS Distributions 
45*043036a2SApple OSS Distributions 	_assert(!(u < t));
46*043036a2SApple OSS Distributions 	_assert(!(u <= t));
47*043036a2SApple OSS Distributions 	_assert(u > t);
48*043036a2SApple OSS Distributions 	_assert(u >= t);
49*043036a2SApple OSS Distributions }
50*043036a2SApple OSS Distributions 
51*043036a2SApple OSS Distributions template <typename T, typename U>
52*043036a2SApple OSS Distributions static void
check_eq(T t,U u)53*043036a2SApple OSS Distributions check_eq(T t, U u)
54*043036a2SApple OSS Distributions {
55*043036a2SApple OSS Distributions 	_assert(!(t < u));
56*043036a2SApple OSS Distributions 	_assert(t <= u);
57*043036a2SApple OSS Distributions 	_assert(t >= u);
58*043036a2SApple OSS Distributions 	_assert(!(t > u));
59*043036a2SApple OSS Distributions 
60*043036a2SApple OSS Distributions 	_assert(!(u < t));
61*043036a2SApple OSS Distributions 	_assert(u <= t);
62*043036a2SApple OSS Distributions 	_assert(!(u > t));
63*043036a2SApple OSS Distributions 	_assert(u >= t);
64*043036a2SApple OSS Distributions }
65*043036a2SApple OSS Distributions 
66*043036a2SApple OSS Distributions template <typename T, typename TQual>
67*043036a2SApple OSS Distributions static void
tests()68*043036a2SApple OSS Distributions tests()
69*043036a2SApple OSS Distributions {
70*043036a2SApple OSS Distributions 	std::array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}};
71*043036a2SApple OSS Distributions 
72*043036a2SApple OSS Distributions 	// Compare pointers within the bounds
73*043036a2SApple OSS Distributions 	{
74*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
75*043036a2SApple OSS Distributions 		//   ^                                                ^
76*043036a2SApple OSS Distributions 		//   |                                                |
77*043036a2SApple OSS Distributions 		// begin,a,b                                         end
78*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end());
79*043036a2SApple OSS Distributions 		TQual* b = array.begin();
80*043036a2SApple OSS Distributions 		check_eq(a, b);
81*043036a2SApple OSS Distributions 	}
82*043036a2SApple OSS Distributions 	{
83*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
84*043036a2SApple OSS Distributions 		//   ^        ^                                       ^
85*043036a2SApple OSS Distributions 		//   |        |                                       |
86*043036a2SApple OSS Distributions 		// begin     a,b                                     end
87*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.begin() + 1, array.begin(), array.end());
88*043036a2SApple OSS Distributions 		TQual* b = array.begin() + 1;
89*043036a2SApple OSS Distributions 		check_eq(a, b);
90*043036a2SApple OSS Distributions 	}
91*043036a2SApple OSS Distributions 	{
92*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
93*043036a2SApple OSS Distributions 		//   ^                 ^                              ^
94*043036a2SApple OSS Distributions 		//   |                 |                              |
95*043036a2SApple OSS Distributions 		// begin,a             b                             end
96*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end());
97*043036a2SApple OSS Distributions 		TQual* b = array.begin() + 2;
98*043036a2SApple OSS Distributions 		check_lt(a, b);
99*043036a2SApple OSS Distributions 	}
100*043036a2SApple OSS Distributions 	{
101*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
102*043036a2SApple OSS Distributions 		//   ^                                                ^
103*043036a2SApple OSS Distributions 		//   |                                                |
104*043036a2SApple OSS Distributions 		// begin                                           end,a,b
105*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end());
106*043036a2SApple OSS Distributions 		TQual* b = array.end();
107*043036a2SApple OSS Distributions 		check_eq(a, b);
108*043036a2SApple OSS Distributions 	}
109*043036a2SApple OSS Distributions 	{
110*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
111*043036a2SApple OSS Distributions 		//   ^                 ^        ^        ^
112*043036a2SApple OSS Distributions 		//   |                 |        |        |
113*043036a2SApple OSS Distributions 		// begin               a       end       b
114*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.begin() + 2, array.begin(), array.begin() + 3);
115*043036a2SApple OSS Distributions 		TQual* b = array.begin() + 4;
116*043036a2SApple OSS Distributions 		check_lt(a, b);
117*043036a2SApple OSS Distributions 	}
118*043036a2SApple OSS Distributions 
119*043036a2SApple OSS Distributions 	// Check when the bounded_ptr is outside of its bounds
120*043036a2SApple OSS Distributions 	{
121*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
122*043036a2SApple OSS Distributions 		//   ^                 ^                              ^
123*043036a2SApple OSS Distributions 		//   |                 |                              |
124*043036a2SApple OSS Distributions 		//  a,b              begin                           end
125*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end());
126*043036a2SApple OSS Distributions 		TQual* b = array.begin();
127*043036a2SApple OSS Distributions 		check_eq(a, b);
128*043036a2SApple OSS Distributions 	}
129*043036a2SApple OSS Distributions 	{
130*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
131*043036a2SApple OSS Distributions 		//   ^                          ^        ^
132*043036a2SApple OSS Distributions 		//   |                          |        |
133*043036a2SApple OSS Distributions 		// begin                       end      a,b
134*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2);
135*043036a2SApple OSS Distributions 		TQual* b = array.end() - 1;
136*043036a2SApple OSS Distributions 		check_eq(a, b);
137*043036a2SApple OSS Distributions 	}
138*043036a2SApple OSS Distributions 	{
139*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
140*043036a2SApple OSS Distributions 		//   ^                                   ^            ^
141*043036a2SApple OSS Distributions 		//   |                                   |            |
142*043036a2SApple OSS Distributions 		// begin                                end          a,b
143*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end() - 1);
144*043036a2SApple OSS Distributions 		TQual* b = array.end();
145*043036a2SApple OSS Distributions 		check_eq(a, b);
146*043036a2SApple OSS Distributions 	}
147*043036a2SApple OSS Distributions 	{
148*043036a2SApple OSS Distributions 		// T{0}     T{1}     T{2}     T{3}     T{4}     <one-past-last>
149*043036a2SApple OSS Distributions 		//   ^                          ^        ^            ^
150*043036a2SApple OSS Distributions 		//   |                          |        |            |
151*043036a2SApple OSS Distributions 		// begin                       end       a            b
152*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2);
153*043036a2SApple OSS Distributions 		TQual* b = array.end();
154*043036a2SApple OSS Distributions 		check_lt(a, b);
155*043036a2SApple OSS Distributions 	}
156*043036a2SApple OSS Distributions 
157*043036a2SApple OSS Distributions 	// Test comparing against a null pointer
158*043036a2SApple OSS Distributions 	{
159*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> a = nullptr;
160*043036a2SApple OSS Distributions 		TQual* b = nullptr;
161*043036a2SApple OSS Distributions 		check_eq(a, b);
162*043036a2SApple OSS Distributions 	}
163*043036a2SApple OSS Distributions 	{
164*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> a(array.end() - 1, array.begin(), array.end() - 2);
165*043036a2SApple OSS Distributions 		TQual* b = nullptr;
166*043036a2SApple OSS Distributions 		check_lt(b, a);
167*043036a2SApple OSS Distributions 	}
168*043036a2SApple OSS Distributions 	{
169*043036a2SApple OSS Distributions 		test_bounded_ptr<TQual> a = nullptr;
170*043036a2SApple OSS Distributions 		TQual* b = array.begin();
171*043036a2SApple OSS Distributions 		check_lt(a, b);
172*043036a2SApple OSS Distributions 	}
173*043036a2SApple OSS Distributions }
174*043036a2SApple OSS Distributions 
175*043036a2SApple OSS Distributions struct Base { int i; };
176*043036a2SApple OSS Distributions struct Derived : Base { };
177*043036a2SApple OSS Distributions 
178*043036a2SApple OSS Distributions template <typename Related>
179*043036a2SApple OSS Distributions static void
tests_convert()180*043036a2SApple OSS Distributions tests_convert()
181*043036a2SApple OSS Distributions {
182*043036a2SApple OSS Distributions 	std::array<Derived, 5> array = {Derived{0}, Derived{1}, Derived{2}, Derived{3}, Derived{4}};
183*043036a2SApple OSS Distributions 
184*043036a2SApple OSS Distributions 	{
185*043036a2SApple OSS Distributions 		test_bounded_ptr<Derived> const a(array.begin() + 1, array.begin(), array.end() - 1);
186*043036a2SApple OSS Distributions 		Related* b = array.begin();
187*043036a2SApple OSS Distributions 		check_lt(b, a);
188*043036a2SApple OSS Distributions 	}
189*043036a2SApple OSS Distributions 	{
190*043036a2SApple OSS Distributions 		test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1);
191*043036a2SApple OSS Distributions 		Derived* b = array.begin() + 1;
192*043036a2SApple OSS Distributions 		check_lt(a, b);
193*043036a2SApple OSS Distributions 	}
194*043036a2SApple OSS Distributions 
195*043036a2SApple OSS Distributions 	// Test comparisons against cv-void*
196*043036a2SApple OSS Distributions 	{
197*043036a2SApple OSS Distributions 		test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1);
198*043036a2SApple OSS Distributions 		void* b = array.begin() + 1;
199*043036a2SApple OSS Distributions 		check_lt(a, b);
200*043036a2SApple OSS Distributions 	}
201*043036a2SApple OSS Distributions }
202*043036a2SApple OSS Distributions 
203*043036a2SApple OSS Distributions T_DECL(compare_order_raw, "bounded_ptr.compare.order.raw", T_META_TAG_VM_PREFERRED) {
204*043036a2SApple OSS Distributions 	tests<Derived, Derived>();
205*043036a2SApple OSS Distributions 	tests<Derived, Derived const>();
206*043036a2SApple OSS Distributions 	tests<Derived, Derived volatile>();
207*043036a2SApple OSS Distributions 	tests<Derived, Derived const volatile>();
208*043036a2SApple OSS Distributions 	tests_convert<Base>();
209*043036a2SApple OSS Distributions 	tests_convert<Base const>();
210*043036a2SApple OSS Distributions 	tests_convert<Base volatile>();
211*043036a2SApple OSS Distributions 	tests_convert<Base const volatile>();
212*043036a2SApple OSS Distributions }
213