//===- llvm/Support/Casting.h - Allow flexible, checked, casts --*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines the isa(), cast(), dyn_cast(), cast_or_null(), // and dyn_cast_or_null() templates. // //===----------------------------------------------------------------------===// #ifndef LLVM_SUPPORT_CASTING_H #define LLVM_SUPPORT_CASTING_H #include "llvm/Support/Compiler.h" #include "llvm/Support/type_traits.h" #include #include #include namespace llvm { //===----------------------------------------------------------------------===// // isa Support Templates //===----------------------------------------------------------------------===// // Define a template that can be specialized by smart pointers to reflect the // fact that they are automatically dereferenced, and are not involved with the // template selection process... the default implementation is a noop. // template struct simplify_type { using SimpleType = From; // The real type this represents... // An accessor to get the real value... static SimpleType &getSimplifiedValue(From &Val) { return Val; } }; template struct simplify_type { using NonConstSimpleType = typename simplify_type::SimpleType; using SimpleType = typename add_const_past_pointer::type; using RetType = typename add_lvalue_reference_if_not_pointer::type; static RetType getSimplifiedValue(const From& Val) { return simplify_type::getSimplifiedValue(const_cast(Val)); } }; // The core of the implementation of isa is here; To and From should be // the names of classes. This template can be specialized to customize the // implementation of isa<> without rewriting it from scratch. template struct isa_impl { static inline bool doit(const From &Val) { return To::classof(&Val); } }; /// Always allow upcasts, and perform no dynamic check for them. template struct isa_impl< To, From, typename std::enable_if::value>::type> { static inline bool doit(const From &) { return true; } }; template struct isa_impl_cl { static inline bool doit(const From &Val) { return isa_impl::doit(Val); } }; template struct isa_impl_cl { static inline bool doit(const From &Val) { return isa_impl::doit(Val); } }; template struct isa_impl_cl> { static inline bool doit(const std::unique_ptr &Val) { assert(Val && "isa<> used on a null pointer"); return isa_impl_cl::doit(*Val); } }; template struct isa_impl_cl { static inline bool doit(const From *Val) { assert(Val && "isa<> used on a null pointer"); return isa_impl::doit(*Val); } }; template struct isa_impl_cl { static inline bool doit(const From *Val) { assert(Val && "isa<> used on a null pointer"); return isa_impl::doit(*Val); } }; template struct isa_impl_cl { static inline bool doit(const From *Val) { assert(Val && "isa<> used on a null pointer"); return isa_impl::doit(*Val); } }; template struct isa_impl_cl { static inline bool doit(const From *Val) { assert(Val && "isa<> used on a null pointer"); return isa_impl::doit(*Val); } }; template struct isa_impl_wrap { // When From != SimplifiedType, we can simplify the type some more by using // the simplify_type template. static bool doit(const From &Val) { return isa_impl_wrap::SimpleType>::doit( simplify_type::getSimplifiedValue(Val)); } }; template struct isa_impl_wrap { // When From == SimpleType, we are as simple as we are going to get. static bool doit(const FromTy &Val) { return isa_impl_cl::doit(Val); } }; // isa - Return true if the parameter to the template is an instance of the // template type argument. Used like this: // // if (isa(myVal)) { ... } // template LLVM_NODISCARD inline bool isa(const Y &Val) { return isa_impl_wrap::SimpleType>::doit(Val); } // isa_and_nonnull - Functionally identical to isa, except that a null value // is accepted. // template LLVM_NODISCARD inline bool isa_and_nonnull(const Y &Val) { if (!Val) return false; return isa(Val); } //===----------------------------------------------------------------------===// // cast Support Templates //===----------------------------------------------------------------------===// template struct cast_retty; // Calculate what type the 'cast' function should return, based on a requested // type of To and a source type of From. template struct cast_retty_impl { using ret_type = To &; // Normal case, return Ty& }; template struct cast_retty_impl { using ret_type = const To &; // Normal case, return Ty& }; template struct cast_retty_impl { using ret_type = To *; // Pointer arg case, return Ty* }; template struct cast_retty_impl { using ret_type = const To *; // Constant pointer arg case, return const Ty* }; template struct cast_retty_impl { using ret_type = const To *; // Constant pointer arg case, return const Ty* }; template struct cast_retty_impl> { private: using PointerType = typename cast_retty_impl::ret_type; using ResultType = typename std::remove_pointer::type; public: using ret_type = std::unique_ptr; }; template struct cast_retty_wrap { // When the simplified type and the from type are not the same, use the type // simplifier to reduce the type, then reuse cast_retty_impl to get the // resultant type. using ret_type = typename cast_retty::ret_type; }; template struct cast_retty_wrap { // When the simplified type is equal to the from type, use it directly. using ret_type = typename cast_retty_impl::ret_type; }; template struct cast_retty { using ret_type = typename cast_retty_wrap< To, From, typename simplify_type::SimpleType>::ret_type; }; // Ensure the non-simple values are converted using the simplify_type template // that may be specialized by smart pointers... // template struct cast_convert_val { // This is not a simple type, use the template to simplify it... static typename cast_retty::ret_type doit(From &Val) { return cast_convert_val::SimpleType>::doit( simplify_type::getSimplifiedValue(Val)); } }; template struct cast_convert_val { // This _is_ a simple type, just cast it. static typename cast_retty::ret_type doit(const FromTy &Val) { typename cast_retty::ret_type Res2 = (typename cast_retty::ret_type)const_cast(Val); return Res2; } }; template struct is_simple_type { static const bool value = std::is_same::SimpleType>::value; }; // cast - Return the argument parameter cast to the specified type. This // casting operator asserts that the type is correct, so it does not return null // on failure. It does not allow a null argument (use cast_or_null for that). // It is typically used like this: // // cast(myVal)->getParent() // template inline typename std::enable_if::value, typename cast_retty::ret_type>::type cast(const Y &Val) { assert(isa(Val) && "cast() argument of incompatible type!"); return cast_convert_val< X, const Y, typename simplify_type::SimpleType>::doit(Val); } template inline typename cast_retty::ret_type cast(Y &Val) { assert(isa(Val) && "cast() argument of incompatible type!"); return cast_convert_val::SimpleType>::doit(Val); } template inline typename cast_retty::ret_type cast(Y *Val) { assert(isa(Val) && "cast() argument of incompatible type!"); return cast_convert_val::SimpleType>::doit(Val); } template inline typename cast_retty>::ret_type cast(std::unique_ptr &&Val) { assert(isa(Val.get()) && "cast() argument of incompatible type!"); using ret_type = typename cast_retty>::ret_type; return ret_type( cast_convert_val::SimpleType>::doit( Val.release())); } // cast_or_null - Functionally identical to cast, except that a null value is // accepted. // template LLVM_NODISCARD inline typename std::enable_if::value, typename cast_retty::ret_type>::type cast_or_null(const Y &Val) { if (!Val) return nullptr; assert(isa(Val) && "cast_or_null() argument of incompatible type!"); return cast(Val); } template LLVM_NODISCARD inline typename std::enable_if::value, typename cast_retty::ret_type>::type cast_or_null(Y &Val) { if (!Val) return nullptr; assert(isa(Val) && "cast_or_null() argument of incompatible type!"); return cast(Val); } template LLVM_NODISCARD inline typename cast_retty::ret_type cast_or_null(Y *Val) { if (!Val) return nullptr; assert(isa(Val) && "cast_or_null() argument of incompatible type!"); return cast(Val); } template inline typename cast_retty>::ret_type cast_or_null(std::unique_ptr &&Val) { if (!Val) return nullptr; return cast(std::move(Val)); } // dyn_cast - Return the argument parameter cast to the specified type. This // casting operator returns null if the argument is of the wrong type, so it can // be used to test for a type as well as cast if successful. This should be // used in the context of an if statement like this: // // if (const Instruction *I = dyn_cast(myVal)) { ... } // template LLVM_NODISCARD inline typename std::enable_if::value, typename cast_retty::ret_type>::type dyn_cast(const Y &Val) { return isa(Val) ? cast(Val) : nullptr; } template LLVM_NODISCARD inline typename cast_retty::ret_type dyn_cast(Y &Val) { return isa(Val) ? cast(Val) : nullptr; } template LLVM_NODISCARD inline typename cast_retty::ret_type dyn_cast(Y *Val) { return isa(Val) ? cast(Val) : nullptr; } // dyn_cast_or_null - Functionally identical to dyn_cast, except that a null // value is accepted. // template LLVM_NODISCARD inline typename std::enable_if::value, typename cast_retty::ret_type>::type dyn_cast_or_null(const Y &Val) { return (Val && isa(Val)) ? cast(Val) : nullptr; } template LLVM_NODISCARD inline typename std::enable_if::value, typename cast_retty::ret_type>::type dyn_cast_or_null(Y &Val) { return (Val && isa(Val)) ? cast(Val) : nullptr; } template LLVM_NODISCARD inline typename cast_retty::ret_type dyn_cast_or_null(Y *Val) { return (Val && isa(Val)) ? cast(Val) : nullptr; } // unique_dyn_cast - Given a unique_ptr, try to return a unique_ptr, // taking ownership of the input pointer iff isa(Val) is true. If the // cast is successful, From refers to nullptr on exit and the casted value // is returned. If the cast is unsuccessful, the function returns nullptr // and From is unchanged. template LLVM_NODISCARD inline auto unique_dyn_cast(std::unique_ptr &Val) -> decltype(cast(Val)) { if (!isa(Val)) return nullptr; return cast(std::move(Val)); } template LLVM_NODISCARD inline auto unique_dyn_cast(std::unique_ptr &&Val) -> decltype(cast(Val)) { return unique_dyn_cast(Val); } // dyn_cast_or_null - Functionally identical to unique_dyn_cast, except that // a null value is accepted. template LLVM_NODISCARD inline auto unique_dyn_cast_or_null(std::unique_ptr &Val) -> decltype(cast(Val)) { if (!Val) return nullptr; return unique_dyn_cast(Val); } template LLVM_NODISCARD inline auto unique_dyn_cast_or_null(std::unique_ptr &&Val) -> decltype(cast(Val)) { return unique_dyn_cast_or_null(Val); } } // end namespace llvm #endif // LLVM_SUPPORT_CASTING_H