1 //===---------- llvm/unittest/Support/Casting.cpp - Casting tests ---------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "llvm/Support/Casting.h"
10 #include "llvm/IR/User.h"
11 #include "llvm/Support/Debug.h"
12 #include "llvm/Support/raw_ostream.h"
13 #include "gtest/gtest.h"
17 // Used to test illegal cast. If a cast doesn't match any of the "real" ones,
18 // it will match this one.
20 template <typename T
> IllegalCast
*cast(...) { return nullptr; }
22 // set up two example classes
23 // with conversion facility
36 /* static bool classof(const bar *X) {
37 cerr << "Classof: " << X << "\n";
46 struct derived
: public base
{
47 static bool classof(const base
*B
) { return true; }
50 template <> struct isa_impl
<foo
, bar
> {
51 static inline bool doit(const bar
&Val
) {
52 dbgs() << "Classof: " << &Val
<< "\n";
57 template <typename T
> struct isa_impl
<foo
, T
> {
58 static inline bool doit(const T
&Val
) { return false; }
62 return cast
<foo
>(this);
66 return cast_or_null
<foo
>(this);
70 return dyn_cast
<foo
>(this);
74 return dyn_cast_or_null
<foo
>(this);
80 template <> struct simplify_type
<foo
> {
81 typedef int SimpleType
;
82 static SimpleType
getSimplifiedValue(foo
&Val
) { return 0; }
85 } // End llvm namespace
90 // Test the peculiar behavior of Use in simplify_type.
91 static_assert(std::is_same
<simplify_type
<Use
>::SimpleType
, Value
*>::value
,
92 "Use doesn't simplify correctly!");
93 static_assert(std::is_same
<simplify_type
<Use
*>::SimpleType
, Value
*>::value
,
94 "Use doesn't simplify correctly!");
96 // Test that a regular class behaves as expected.
97 static_assert(std::is_same
<simplify_type
<foo
>::SimpleType
, int>::value
,
98 "Unexpected simplify_type result!");
99 static_assert(std::is_same
<simplify_type
<foo
*>::SimpleType
, foo
*>::value
,
100 "Unexpected simplify_type result!");
104 const foo
*null_foo
= nullptr;
109 extern const bar
*B2
;
110 // test various configurations of const
112 const bar
*const B4
= B2
;
114 TEST(CastingTest
, isa
) {
115 EXPECT_TRUE(isa
<foo
>(B1
));
116 EXPECT_TRUE(isa
<foo
>(B2
));
117 EXPECT_TRUE(isa
<foo
>(B3
));
118 EXPECT_TRUE(isa
<foo
>(B4
));
121 TEST(CastingTest
, isa_and_nonnull
) {
122 EXPECT_TRUE(isa_and_nonnull
<foo
>(B2
));
123 EXPECT_TRUE(isa_and_nonnull
<foo
>(B4
));
124 EXPECT_FALSE(isa_and_nonnull
<foo
>(fub()));
127 TEST(CastingTest
, cast
) {
128 foo
&F1
= cast
<foo
>(B1
);
129 EXPECT_NE(&F1
, null_foo
);
130 const foo
*F3
= cast
<foo
>(B2
);
131 EXPECT_NE(F3
, null_foo
);
132 const foo
*F4
= cast
<foo
>(B2
);
133 EXPECT_NE(F4
, null_foo
);
134 const foo
&F5
= cast
<foo
>(B3
);
135 EXPECT_NE(&F5
, null_foo
);
136 const foo
*F6
= cast
<foo
>(B4
);
137 EXPECT_NE(F6
, null_foo
);
138 // Can't pass null pointer to cast<>.
139 // foo *F7 = cast<foo>(fub());
140 // EXPECT_EQ(F7, null_foo);
142 EXPECT_NE(F8
, null_foo
);
144 std::unique_ptr
<const bar
> BP(B2
);
145 auto FP
= cast
<foo
>(std::move(BP
));
146 static_assert(std::is_same
<std::unique_ptr
<const foo
>, decltype(FP
)>::value
,
147 "Incorrect deduced return type!");
148 EXPECT_NE(FP
.get(), null_foo
);
152 TEST(CastingTest
, cast_or_null
) {
153 const foo
*F11
= cast_or_null
<foo
>(B2
);
154 EXPECT_NE(F11
, null_foo
);
155 const foo
*F12
= cast_or_null
<foo
>(B2
);
156 EXPECT_NE(F12
, null_foo
);
157 const foo
*F13
= cast_or_null
<foo
>(B4
);
158 EXPECT_NE(F13
, null_foo
);
159 const foo
*F14
= cast_or_null
<foo
>(fub()); // Shouldn't print.
160 EXPECT_EQ(F14
, null_foo
);
162 EXPECT_NE(F15
, null_foo
);
164 std::unique_ptr
<const bar
> BP(fub());
165 auto FP
= cast_or_null
<foo
>(std::move(BP
));
166 EXPECT_EQ(FP
.get(), null_foo
);
169 TEST(CastingTest
, dyn_cast
) {
170 const foo
*F1
= dyn_cast
<foo
>(B2
);
171 EXPECT_NE(F1
, null_foo
);
172 const foo
*F2
= dyn_cast
<foo
>(B2
);
173 EXPECT_NE(F2
, null_foo
);
174 const foo
*F3
= dyn_cast
<foo
>(B4
);
175 EXPECT_NE(F3
, null_foo
);
176 // Can't pass null pointer to dyn_cast<>.
177 // foo *F4 = dyn_cast<foo>(fub());
178 // EXPECT_EQ(F4, null_foo);
180 EXPECT_NE(F5
, null_foo
);
183 TEST(CastingTest
, dyn_cast_or_null
) {
184 const foo
*F1
= dyn_cast_or_null
<foo
>(B2
);
185 EXPECT_NE(F1
, null_foo
);
186 const foo
*F2
= dyn_cast_or_null
<foo
>(B2
);
187 EXPECT_NE(F2
, null_foo
);
188 const foo
*F3
= dyn_cast_or_null
<foo
>(B4
);
189 EXPECT_NE(F3
, null_foo
);
190 foo
*F4
= dyn_cast_or_null
<foo
>(fub());
191 EXPECT_EQ(F4
, null_foo
);
193 EXPECT_NE(F5
, null_foo
);
196 std::unique_ptr
<derived
> newd() { return llvm::make_unique
<derived
>(); }
197 std::unique_ptr
<base
> newb() { return llvm::make_unique
<derived
>(); }
199 TEST(CastingTest
, unique_dyn_cast
) {
200 derived
*OrigD
= nullptr;
201 auto D
= llvm::make_unique
<derived
>();
204 // Converting from D to itself is valid, it should return a new unique_ptr
205 // and the old one should become nullptr.
206 auto NewD
= unique_dyn_cast
<derived
>(D
);
207 ASSERT_EQ(OrigD
, NewD
.get());
208 ASSERT_EQ(nullptr, D
);
210 // Converting from D to B is valid, B should have a value and D should be
212 auto B
= unique_dyn_cast
<base
>(NewD
);
213 ASSERT_EQ(OrigD
, B
.get());
214 ASSERT_EQ(nullptr, NewD
);
216 // Converting from B to itself is valid, it should return a new unique_ptr
217 // and the old one should become nullptr.
218 auto NewB
= unique_dyn_cast
<base
>(B
);
219 ASSERT_EQ(OrigD
, NewB
.get());
220 ASSERT_EQ(nullptr, B
);
222 // Converting from B to D is valid, D should have a value and B should be
224 D
= unique_dyn_cast
<derived
>(NewB
);
225 ASSERT_EQ(OrigD
, D
.get());
226 ASSERT_EQ(nullptr, NewB
);
228 // Converting between unrelated types should fail. The original value should
229 // remain unchanged and it should return nullptr.
230 auto F
= unique_dyn_cast
<foo
>(D
);
231 ASSERT_EQ(nullptr, F
);
232 ASSERT_EQ(OrigD
, D
.get());
234 // All of the above should also hold for temporaries.
235 auto D2
= unique_dyn_cast
<derived
>(newd());
236 EXPECT_NE(nullptr, D2
);
238 auto B2
= unique_dyn_cast
<derived
>(newb());
239 EXPECT_NE(nullptr, B2
);
241 auto B3
= unique_dyn_cast
<base
>(newb());
242 EXPECT_NE(nullptr, B3
);
244 auto F2
= unique_dyn_cast
<foo
>(newb());
245 EXPECT_EQ(nullptr, F2
);
248 // These lines are errors...
249 //foo *F20 = cast<foo>(B2); // Yields const foo*
250 //foo &F21 = cast<foo>(B3); // Yields const foo&
251 //foo *F22 = cast<foo>(B4); // Yields const foo*
252 //foo &F23 = cast_or_null<foo>(B1);
253 //const foo &F24 = cast_or_null<foo>(B3);
256 } // anonymous namespace
258 bar
*llvm::fub() { return nullptr; }
261 namespace inferred_upcasting
{
262 // This test case verifies correct behavior of inferred upcasts when the
263 // types are statically known to be OK to upcast. This is the case when,
264 // for example, Derived inherits from Base, and we do `isa<Base>(Derived)`.
266 // Note: This test will actually fail to compile without inferred
271 // No classof. We are testing that the upcast is inferred.
275 class Derived
: public Base
{
280 // Even with no explicit classof() in Base, we should still be able to cast
281 // Derived to its base class.
282 TEST(CastingTest
, UpcastIsInferred
) {
284 EXPECT_TRUE(isa
<Base
>(D
));
285 Base
*BP
= dyn_cast
<Base
>(&D
);
286 EXPECT_TRUE(BP
!= nullptr);
290 // This test verifies that the inferred upcast takes precedence over an
291 // explicitly written one. This is important because it verifies that the
292 // dynamic check gets optimized away.
293 class UseInferredUpcast
{
296 static bool classof(const UseInferredUpcast
*) {
301 TEST(CastingTest
, InferredUpcastTakesPrecedence
) {
302 UseInferredUpcast UIU
;
303 // Since the explicit classof() returns false, this will fail if the
304 // explicit one is used.
305 EXPECT_TRUE(isa
<UseInferredUpcast
>(&UIU
));
308 } // end namespace inferred_upcasting
309 } // end anonymous namespace
310 // Test that we reject casts of temporaries (and so the illegal cast gets used).
311 namespace TemporaryCast
{
313 IllegalCast
*testIllegalCast() { return cast
<foo
>(pod()); }
317 namespace pointer_wrappers
{
321 Base(bool IsDerived
= false) : IsDerived(IsDerived
) {}
324 struct Derived
: Base
{
325 Derived() : Base(true) {}
326 static bool classof(const Base
*B
) { return B
->IsDerived
; }
332 PTy(Base
*B
) : B(B
) {}
333 explicit operator bool() const { return get(); }
334 Base
*get() const { return B
; }
337 } // end namespace pointer_wrappers
342 template <> struct simplify_type
<pointer_wrappers::PTy
> {
343 typedef pointer_wrappers::Base
*SimpleType
;
344 static SimpleType
getSimplifiedValue(pointer_wrappers::PTy
&P
) {
348 template <> struct simplify_type
<const pointer_wrappers::PTy
> {
349 typedef pointer_wrappers::Base
*SimpleType
;
350 static SimpleType
getSimplifiedValue(const pointer_wrappers::PTy
&P
) {
355 } // end namespace llvm
358 namespace pointer_wrappers
{
361 pointer_wrappers::Base B
;
362 pointer_wrappers::Derived D
;
364 // Mutable "smart" pointers.
365 pointer_wrappers::PTy
MN(nullptr);
366 pointer_wrappers::PTy
MB(&B
);
367 pointer_wrappers::PTy
MD(&D
);
369 // Const "smart" pointers.
370 const pointer_wrappers::PTy
CN(nullptr);
371 const pointer_wrappers::PTy
CB(&B
);
372 const pointer_wrappers::PTy
CD(&D
);
374 TEST(CastingTest
, smart_isa
) {
375 EXPECT_TRUE(!isa
<pointer_wrappers::Derived
>(MB
));
376 EXPECT_TRUE(!isa
<pointer_wrappers::Derived
>(CB
));
377 EXPECT_TRUE(isa
<pointer_wrappers::Derived
>(MD
));
378 EXPECT_TRUE(isa
<pointer_wrappers::Derived
>(CD
));
381 TEST(CastingTest
, smart_cast
) {
382 EXPECT_TRUE(cast
<pointer_wrappers::Derived
>(MD
) == &D
);
383 EXPECT_TRUE(cast
<pointer_wrappers::Derived
>(CD
) == &D
);
386 TEST(CastingTest
, smart_cast_or_null
) {
387 EXPECT_TRUE(cast_or_null
<pointer_wrappers::Derived
>(MN
) == nullptr);
388 EXPECT_TRUE(cast_or_null
<pointer_wrappers::Derived
>(CN
) == nullptr);
389 EXPECT_TRUE(cast_or_null
<pointer_wrappers::Derived
>(MD
) == &D
);
390 EXPECT_TRUE(cast_or_null
<pointer_wrappers::Derived
>(CD
) == &D
);
393 TEST(CastingTest
, smart_dyn_cast
) {
394 EXPECT_TRUE(dyn_cast
<pointer_wrappers::Derived
>(MB
) == nullptr);
395 EXPECT_TRUE(dyn_cast
<pointer_wrappers::Derived
>(CB
) == nullptr);
396 EXPECT_TRUE(dyn_cast
<pointer_wrappers::Derived
>(MD
) == &D
);
397 EXPECT_TRUE(dyn_cast
<pointer_wrappers::Derived
>(CD
) == &D
);
400 TEST(CastingTest
, smart_dyn_cast_or_null
) {
401 EXPECT_TRUE(dyn_cast_or_null
<pointer_wrappers::Derived
>(MN
) == nullptr);
402 EXPECT_TRUE(dyn_cast_or_null
<pointer_wrappers::Derived
>(CN
) == nullptr);
403 EXPECT_TRUE(dyn_cast_or_null
<pointer_wrappers::Derived
>(MB
) == nullptr);
404 EXPECT_TRUE(dyn_cast_or_null
<pointer_wrappers::Derived
>(CB
) == nullptr);
405 EXPECT_TRUE(dyn_cast_or_null
<pointer_wrappers::Derived
>(MD
) == &D
);
406 EXPECT_TRUE(dyn_cast_or_null
<pointer_wrappers::Derived
>(CD
) == &D
);
409 } // end namespace pointer_wrappers