//===- Ownership.h - Parser ownership helpers -------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file contains classes for managing ownership of Stmt and Expr nodes. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_SEMA_OWNERSHIP_H #define LLVM_CLANG_SEMA_OWNERSHIP_H #include "clang/AST/Expr.h" #include "clang/Basic/LLVM.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/Support/PointerLikeTypeTraits.h" #include "llvm/Support/type_traits.h" #include #include #include //===----------------------------------------------------------------------===// // OpaquePtr //===----------------------------------------------------------------------===// namespace clang { class CXXBaseSpecifier; class CXXCtorInitializer; class Decl; class Expr; class ParsedTemplateArgument; class QualType; class Stmt; class TemplateName; class TemplateParameterList; /// Wrapper for void* pointer. /// \tparam PtrTy Either a pointer type like 'T*' or a type that behaves like /// a pointer. /// /// This is a very simple POD type that wraps a pointer that the Parser /// doesn't know about but that Sema or another client does. The PtrTy /// template argument is used to make sure that "Decl" pointers are not /// compatible with "Type" pointers for example. template class OpaquePtr { void *Ptr = nullptr; explicit OpaquePtr(void *Ptr) : Ptr(Ptr) {} using Traits = llvm::PointerLikeTypeTraits; public: OpaquePtr(std::nullptr_t = nullptr) {} static OpaquePtr make(PtrTy P) { OpaquePtr OP; OP.set(P); return OP; } /// Returns plain pointer to the entity pointed by this wrapper. /// \tparam PointeeT Type of pointed entity. /// /// It is identical to getPtrAs. template PointeeT* getPtrTo() const { return get(); } /// Returns pointer converted to the specified type. /// \tparam PtrT Result pointer type. There must be implicit conversion /// from PtrTy to PtrT. /// /// In contrast to getPtrTo, this method allows the return type to be /// a smart pointer. template PtrT getPtrAs() const { return get(); } PtrTy get() const { return Traits::getFromVoidPointer(Ptr); } void set(PtrTy P) { Ptr = Traits::getAsVoidPointer(P); } explicit operator bool() const { return Ptr != nullptr; } void *getAsOpaquePtr() const { return Ptr; } static OpaquePtr getFromOpaquePtr(void *P) { return OpaquePtr(P); } }; /// UnionOpaquePtr - A version of OpaquePtr suitable for membership /// in a union. template struct UnionOpaquePtr { void *Ptr; static UnionOpaquePtr make(OpaquePtr P) { UnionOpaquePtr OP = { P.getAsOpaquePtr() }; return OP; } OpaquePtr get() const { return OpaquePtr::getFromOpaquePtr(Ptr); } operator OpaquePtr() const { return get(); } UnionOpaquePtr &operator=(OpaquePtr P) { Ptr = P.getAsOpaquePtr(); return *this; } }; } // namespace clang namespace llvm { template struct PointerLikeTypeTraits> { enum { NumLowBitsAvailable = 0 }; static inline void *getAsVoidPointer(clang::OpaquePtr P) { // FIXME: Doesn't work? return P.getAs< void >(); return P.getAsOpaquePtr(); } static inline clang::OpaquePtr getFromVoidPointer(void *P) { return clang::OpaquePtr::getFromOpaquePtr(P); } }; template struct isPodLike> { static const bool value = true; }; } // namespace llvm namespace clang { // Basic class DiagnosticBuilder; // Determines whether the low bit of the result pointer for the // given UID is always zero. If so, ActionResult will use that bit // for it's "invalid" flag. template struct IsResultPtrLowBitFree { static const bool value = false; }; /// ActionResult - This structure is used while parsing/acting on /// expressions, stmts, etc. It encapsulates both the object returned by /// the action, plus a sense of whether or not it is valid. /// When CompressInvalid is true, the "invalid" flag will be /// stored in the low bit of the Val pointer. template::value> class ActionResult { PtrTy Val; bool Invalid; public: ActionResult(bool Invalid = false) : Val(PtrTy()), Invalid(Invalid) {} ActionResult(PtrTy val) : Val(val), Invalid(false) {} ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {} // These two overloads prevent void* -> bool conversions. ActionResult(const void *) = delete; ActionResult(volatile void *) = delete; bool isInvalid() const { return Invalid; } bool isUsable() const { return !Invalid && Val; } bool isUnset() const { return !Invalid && !Val; } PtrTy get() const { return Val; } template T *getAs() { return static_cast(get()); } void set(PtrTy V) { Val = V; } const ActionResult &operator=(PtrTy RHS) { Val = RHS; Invalid = false; return *this; } }; // This ActionResult partial specialization places the "invalid" // flag into the low bit of the pointer. template class ActionResult { // A pointer whose low bit is 1 if this result is invalid, 0 // otherwise. uintptr_t PtrWithInvalid; using PtrTraits = llvm::PointerLikeTypeTraits; public: ActionResult(bool Invalid = false) : PtrWithInvalid(static_cast(Invalid)) {} ActionResult(PtrTy V) { void *VP = PtrTraits::getAsVoidPointer(V); PtrWithInvalid = reinterpret_cast(VP); assert((PtrWithInvalid & 0x01) == 0 && "Badly aligned pointer"); } ActionResult(const DiagnosticBuilder &) : PtrWithInvalid(0x01) {} // These two overloads prevent void* -> bool conversions. ActionResult(const void *) = delete; ActionResult(volatile void *) = delete; bool isInvalid() const { return PtrWithInvalid & 0x01; } bool isUsable() const { return PtrWithInvalid > 0x01; } bool isUnset() const { return PtrWithInvalid == 0; } PtrTy get() const { void *VP = reinterpret_cast(PtrWithInvalid & ~0x01); return PtrTraits::getFromVoidPointer(VP); } template T *getAs() { return static_cast(get()); } void set(PtrTy V) { void *VP = PtrTraits::getAsVoidPointer(V); PtrWithInvalid = reinterpret_cast(VP); assert((PtrWithInvalid & 0x01) == 0 && "Badly aligned pointer"); } const ActionResult &operator=(PtrTy RHS) { void *VP = PtrTraits::getAsVoidPointer(RHS); PtrWithInvalid = reinterpret_cast(VP); assert((PtrWithInvalid & 0x01) == 0 && "Badly aligned pointer"); return *this; } // For types where we can fit a flag in with the pointer, provide // conversions to/from pointer type. static ActionResult getFromOpaquePointer(void *P) { ActionResult Result; Result.PtrWithInvalid = (uintptr_t)P; return Result; } void *getAsOpaquePointer() const { return (void*)PtrWithInvalid; } }; /// An opaque type for threading parsed type information through the /// parser. using ParsedType = OpaquePtr; using UnionParsedType = UnionOpaquePtr; // We can re-use the low bit of expression, statement, base, and // member-initializer pointers for the "invalid" flag of // ActionResult. template<> struct IsResultPtrLowBitFree { static const bool value = true; }; template<> struct IsResultPtrLowBitFree { static const bool value = true; }; template<> struct IsResultPtrLowBitFree { static const bool value = true; }; template<> struct IsResultPtrLowBitFree { static const bool value = true; }; using ExprResult = ActionResult; using StmtResult = ActionResult; using TypeResult = ActionResult; using BaseResult = ActionResult; using MemInitResult = ActionResult; using DeclResult = ActionResult; using ParsedTemplateTy = OpaquePtr; using UnionParsedTemplateTy = UnionOpaquePtr; using MultiExprArg = MutableArrayRef; using MultiStmtArg = MutableArrayRef; using ASTTemplateArgsPtr = MutableArrayRef; using MultiTypeArg = MutableArrayRef; using MultiTemplateParamsArg = MutableArrayRef; inline ExprResult ExprError() { return ExprResult(true); } inline StmtResult StmtError() { return StmtResult(true); } inline ExprResult ExprError(const DiagnosticBuilder&) { return ExprError(); } inline StmtResult StmtError(const DiagnosticBuilder&) { return StmtError(); } inline ExprResult ExprEmpty() { return ExprResult(false); } inline StmtResult StmtEmpty() { return StmtResult(false); } inline Expr *AssertSuccess(ExprResult R) { assert(!R.isInvalid() && "operation was asserted to never fail!"); return R.get(); } inline Stmt *AssertSuccess(StmtResult R) { assert(!R.isInvalid() && "operation was asserted to never fail!"); return R.get(); } } // namespace clang #endif // LLVM_CLANG_SEMA_OWNERSHIP_H