]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/include/llvm/Support/Casting.h
Merge ^/head r318658 through r318963.
[FreeBSD/FreeBSD.git] / contrib / llvm / include / llvm / Support / Casting.h
1 //===-- llvm/Support/Casting.h - Allow flexible, checked, casts -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
11 // and dyn_cast_or_null<X>() templates.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_SUPPORT_CASTING_H
16 #define LLVM_SUPPORT_CASTING_H
17
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/type_traits.h"
20 #include <cassert>
21 #include <memory>
22
23 namespace llvm {
24
25 //===----------------------------------------------------------------------===//
26 //                          isa<x> Support Templates
27 //===----------------------------------------------------------------------===//
28
29 // Define a template that can be specialized by smart pointers to reflect the
30 // fact that they are automatically dereferenced, and are not involved with the
31 // template selection process...  the default implementation is a noop.
32 //
33 template<typename From> struct simplify_type {
34   typedef       From SimpleType;        // The real type this represents...
35
36   // An accessor to get the real value...
37   static SimpleType &getSimplifiedValue(From &Val) { return Val; }
38 };
39
40 template<typename From> struct simplify_type<const From> {
41   typedef typename simplify_type<From>::SimpleType NonConstSimpleType;
42   typedef typename add_const_past_pointer<NonConstSimpleType>::type
43     SimpleType;
44   typedef typename add_lvalue_reference_if_not_pointer<SimpleType>::type
45     RetType;
46   static RetType getSimplifiedValue(const From& Val) {
47     return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
48   }
49 };
50
51 // The core of the implementation of isa<X> is here; To and From should be
52 // the names of classes.  This template can be specialized to customize the
53 // implementation of isa<> without rewriting it from scratch.
54 template <typename To, typename From, typename Enabler = void>
55 struct isa_impl {
56   static inline bool doit(const From &Val) {
57     return To::classof(&Val);
58   }
59 };
60
61 /// \brief Always allow upcasts, and perform no dynamic check for them.
62 template <typename To, typename From>
63 struct isa_impl<
64     To, From, typename std::enable_if<std::is_base_of<To, From>::value>::type> {
65   static inline bool doit(const From &) { return true; }
66 };
67
68 template <typename To, typename From> struct isa_impl_cl {
69   static inline bool doit(const From &Val) {
70     return isa_impl<To, From>::doit(Val);
71   }
72 };
73
74 template <typename To, typename From> struct isa_impl_cl<To, const From> {
75   static inline bool doit(const From &Val) {
76     return isa_impl<To, From>::doit(Val);
77   }
78 };
79
80 template <typename To, typename From>
81 struct isa_impl_cl<To, const std::unique_ptr<From>> {
82   static inline bool doit(const std::unique_ptr<From> &Val) {
83     assert(Val && "isa<> used on a null pointer");
84     return isa_impl_cl<To, From>::doit(*Val);
85   }
86 };
87
88 template <typename To, typename From> struct isa_impl_cl<To, From*> {
89   static inline bool doit(const From *Val) {
90     assert(Val && "isa<> used on a null pointer");
91     return isa_impl<To, From>::doit(*Val);
92   }
93 };
94
95 template <typename To, typename From> struct isa_impl_cl<To, From*const> {
96   static inline bool doit(const From *Val) {
97     assert(Val && "isa<> used on a null pointer");
98     return isa_impl<To, From>::doit(*Val);
99   }
100 };
101
102 template <typename To, typename From> struct isa_impl_cl<To, const From*> {
103   static inline bool doit(const From *Val) {
104     assert(Val && "isa<> used on a null pointer");
105     return isa_impl<To, From>::doit(*Val);
106   }
107 };
108
109 template <typename To, typename From> struct isa_impl_cl<To, const From*const> {
110   static inline bool doit(const From *Val) {
111     assert(Val && "isa<> used on a null pointer");
112     return isa_impl<To, From>::doit(*Val);
113   }
114 };
115
116 template<typename To, typename From, typename SimpleFrom>
117 struct isa_impl_wrap {
118   // When From != SimplifiedType, we can simplify the type some more by using
119   // the simplify_type template.
120   static bool doit(const From &Val) {
121     return isa_impl_wrap<To, SimpleFrom,
122       typename simplify_type<SimpleFrom>::SimpleType>::doit(
123                           simplify_type<const From>::getSimplifiedValue(Val));
124   }
125 };
126
127 template<typename To, typename FromTy>
128 struct isa_impl_wrap<To, FromTy, FromTy> {
129   // When From == SimpleType, we are as simple as we are going to get.
130   static bool doit(const FromTy &Val) {
131     return isa_impl_cl<To,FromTy>::doit(Val);
132   }
133 };
134
135 // isa<X> - Return true if the parameter to the template is an instance of the
136 // template type argument.  Used like this:
137 //
138 //  if (isa<Type>(myVal)) { ... }
139 //
140 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) {
141   return isa_impl_wrap<X, const Y,
142                        typename simplify_type<const Y>::SimpleType>::doit(Val);
143 }
144
145 //===----------------------------------------------------------------------===//
146 //                          cast<x> Support Templates
147 //===----------------------------------------------------------------------===//
148
149 template<class To, class From> struct cast_retty;
150
151
152 // Calculate what type the 'cast' function should return, based on a requested
153 // type of To and a source type of From.
154 template<class To, class From> struct cast_retty_impl {
155   typedef To& ret_type;         // Normal case, return Ty&
156 };
157 template<class To, class From> struct cast_retty_impl<To, const From> {
158   typedef const To &ret_type;   // Normal case, return Ty&
159 };
160
161 template<class To, class From> struct cast_retty_impl<To, From*> {
162   typedef To* ret_type;         // Pointer arg case, return Ty*
163 };
164
165 template<class To, class From> struct cast_retty_impl<To, const From*> {
166   typedef const To* ret_type;   // Constant pointer arg case, return const Ty*
167 };
168
169 template<class To, class From> struct cast_retty_impl<To, const From*const> {
170   typedef const To* ret_type;   // Constant pointer arg case, return const Ty*
171 };
172
173 template <class To, class From>
174 struct cast_retty_impl<To, std::unique_ptr<From>> {
175 private:
176   typedef typename cast_retty_impl<To, From *>::ret_type PointerType;
177   typedef typename std::remove_pointer<PointerType>::type ResultType;
178
179 public:
180   typedef std::unique_ptr<ResultType> ret_type;
181 };
182
183 template<class To, class From, class SimpleFrom>
184 struct cast_retty_wrap {
185   // When the simplified type and the from type are not the same, use the type
186   // simplifier to reduce the type, then reuse cast_retty_impl to get the
187   // resultant type.
188   typedef typename cast_retty<To, SimpleFrom>::ret_type ret_type;
189 };
190
191 template<class To, class FromTy>
192 struct cast_retty_wrap<To, FromTy, FromTy> {
193   // When the simplified type is equal to the from type, use it directly.
194   typedef typename cast_retty_impl<To,FromTy>::ret_type ret_type;
195 };
196
197 template<class To, class From>
198 struct cast_retty {
199   typedef typename cast_retty_wrap<To, From,
200                    typename simplify_type<From>::SimpleType>::ret_type ret_type;
201 };
202
203 // Ensure the non-simple values are converted using the simplify_type template
204 // that may be specialized by smart pointers...
205 //
206 template<class To, class From, class SimpleFrom> struct cast_convert_val {
207   // This is not a simple type, use the template to simplify it...
208   static typename cast_retty<To, From>::ret_type doit(From &Val) {
209     return cast_convert_val<To, SimpleFrom,
210       typename simplify_type<SimpleFrom>::SimpleType>::doit(
211                           simplify_type<From>::getSimplifiedValue(Val));
212   }
213 };
214
215 template<class To, class FromTy> struct cast_convert_val<To,FromTy,FromTy> {
216   // This _is_ a simple type, just cast it.
217   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
218     typename cast_retty<To, FromTy>::ret_type Res2
219      = (typename cast_retty<To, FromTy>::ret_type)const_cast<FromTy&>(Val);
220     return Res2;
221   }
222 };
223
224 template <class X> struct is_simple_type {
225   static const bool value =
226       std::is_same<X, typename simplify_type<X>::SimpleType>::value;
227 };
228
229 // cast<X> - Return the argument parameter cast to the specified type.  This
230 // casting operator asserts that the type is correct, so it does not return null
231 // on failure.  It does not allow a null argument (use cast_or_null for that).
232 // It is typically used like this:
233 //
234 //  cast<Instruction>(myVal)->getParent()
235 //
236 template <class X, class Y>
237 inline typename std::enable_if<!is_simple_type<Y>::value,
238                                typename cast_retty<X, const Y>::ret_type>::type
239 cast(const Y &Val) {
240   assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
241   return cast_convert_val<
242       X, const Y, typename simplify_type<const Y>::SimpleType>::doit(Val);
243 }
244
245 template <class X, class Y>
246 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
247   assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
248   return cast_convert_val<X, Y,
249                           typename simplify_type<Y>::SimpleType>::doit(Val);
250 }
251
252 template <class X, class Y>
253 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
254   assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
255   return cast_convert_val<X, Y*,
256                           typename simplify_type<Y*>::SimpleType>::doit(Val);
257 }
258
259 template <class X, class Y>
260 inline typename cast_retty<X, std::unique_ptr<Y>>::ret_type
261 cast(std::unique_ptr<Y> &&Val) {
262   assert(isa<X>(Val.get()) && "cast<Ty>() argument of incompatible type!");
263   using ret_type = typename cast_retty<X, std::unique_ptr<Y>>::ret_type;
264   return ret_type(
265       cast_convert_val<X, Y *, typename simplify_type<Y *>::SimpleType>::doit(
266           Val.release()));
267 }
268
269 // cast_or_null<X> - Functionally identical to cast, except that a null value is
270 // accepted.
271 //
272 template <class X, class Y>
273 LLVM_NODISCARD inline
274     typename std::enable_if<!is_simple_type<Y>::value,
275                             typename cast_retty<X, const Y>::ret_type>::type
276     cast_or_null(const Y &Val) {
277   if (!Val)
278     return nullptr;
279   assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
280   return cast<X>(Val);
281 }
282
283 template <class X, class Y>
284 LLVM_NODISCARD inline
285     typename std::enable_if<!is_simple_type<Y>::value,
286                             typename cast_retty<X, Y>::ret_type>::type
287     cast_or_null(Y &Val) {
288   if (!Val)
289     return nullptr;
290   assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
291   return cast<X>(Val);
292 }
293
294 template <class X, class Y>
295 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
296 cast_or_null(Y *Val) {
297   if (!Val) return nullptr;
298   assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
299   return cast<X>(Val);
300 }
301
302 template <class X, class Y>
303 inline typename cast_retty<X, std::unique_ptr<Y>>::ret_type
304 cast_or_null(std::unique_ptr<Y> &&Val) {
305   if (!Val)
306     return nullptr;
307   return cast<X>(std::move(Val));
308 }
309
310 // dyn_cast<X> - Return the argument parameter cast to the specified type.  This
311 // casting operator returns null if the argument is of the wrong type, so it can
312 // be used to test for a type as well as cast if successful.  This should be
313 // used in the context of an if statement like this:
314 //
315 //  if (const Instruction *I = dyn_cast<Instruction>(myVal)) { ... }
316 //
317
318 template <class X, class Y>
319 LLVM_NODISCARD inline
320     typename std::enable_if<!is_simple_type<Y>::value,
321                             typename cast_retty<X, const Y>::ret_type>::type
322     dyn_cast(const Y &Val) {
323   return isa<X>(Val) ? cast<X>(Val) : nullptr;
324 }
325
326 template <class X, class Y>
327 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
328   return isa<X>(Val) ? cast<X>(Val) : nullptr;
329 }
330
331 template <class X, class Y>
332 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
333   return isa<X>(Val) ? cast<X>(Val) : nullptr;
334 }
335
336 // dyn_cast_or_null<X> - Functionally identical to dyn_cast, except that a null
337 // value is accepted.
338 //
339 template <class X, class Y>
340 LLVM_NODISCARD inline
341     typename std::enable_if<!is_simple_type<Y>::value,
342                             typename cast_retty<X, const Y>::ret_type>::type
343     dyn_cast_or_null(const Y &Val) {
344   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
345 }
346
347 template <class X, class Y>
348 LLVM_NODISCARD inline
349     typename std::enable_if<!is_simple_type<Y>::value,
350                             typename cast_retty<X, Y>::ret_type>::type
351     dyn_cast_or_null(Y &Val) {
352   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
353 }
354
355 template <class X, class Y>
356 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
357 dyn_cast_or_null(Y *Val) {
358   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
359 }
360
361 // unique_dyn_cast<X> - Given a unique_ptr<Y>, try to return a unique_ptr<X>,
362 // taking ownership of the input pointer iff isa<X>(Val) is true.  If the
363 // cast is successful, From refers to nullptr on exit and the casted value
364 // is returned.  If the cast is unsuccessful, the function returns nullptr
365 // and From is unchanged.
366 template <class X, class Y>
367 LLVM_NODISCARD inline auto unique_dyn_cast(std::unique_ptr<Y> &Val)
368     -> decltype(cast<X>(Val)) {
369   if (!isa<X>(Val))
370     return nullptr;
371   return cast<X>(std::move(Val));
372 }
373
374 template <class X, class Y>
375 LLVM_NODISCARD inline auto unique_dyn_cast(std::unique_ptr<Y> &&Val)
376     -> decltype(cast<X>(Val)) {
377   return unique_dyn_cast<X, Y>(Val);
378 }
379
380 // dyn_cast_or_null<X> - Functionally identical to unique_dyn_cast, except that
381 // a null value is accepted.
382 template <class X, class Y>
383 LLVM_NODISCARD inline auto unique_dyn_cast_or_null(std::unique_ptr<Y> &Val)
384     -> decltype(cast<X>(Val)) {
385   if (!Val)
386     return nullptr;
387   return unique_dyn_cast<X, Y>(Val);
388 }
389
390 template <class X, class Y>
391 LLVM_NODISCARD inline auto unique_dyn_cast_or_null(std::unique_ptr<Y> &&Val)
392     -> decltype(cast<X>(Val)) {
393   return unique_dyn_cast_or_null<X, Y>(Val);
394 }
395
396 } // End llvm namespace
397
398 #endif