1 //===--- Descriptor.h - Types for the constexpr VM --------------*- C++ -*-===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // Defines descriptors which characterise allocations. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef LLVM_CLANG_AST_INTERP_DESCRIPTOR_H 14 #define LLVM_CLANG_AST_INTERP_DESCRIPTOR_H 15 16 #include "clang/AST/Decl.h" 17 #include "clang/AST/Expr.h" 18 19 namespace clang { 20 namespace interp { 21 class Block; 22 class Record; 23 struct InitMap; 24 struct Descriptor; 25 enum PrimType : unsigned; 26 27 using DeclTy = llvm::PointerUnion<const Decl *, const Expr *>; 28 using InitMapPtr = std::optional<std::pair<bool, std::shared_ptr<InitMap>>>; 29 30 /// Invoked whenever a block is created. The constructor method fills in the 31 /// inline descriptors of all fields and array elements. It also initializes 32 /// all the fields which contain non-trivial types. 33 using BlockCtorFn = void (*)(Block *Storage, std::byte *FieldPtr, bool IsConst, 34 bool IsMutable, bool IsActive, 35 const Descriptor *FieldDesc); 36 37 /// Invoked when a block is destroyed. Invokes the destructors of all 38 /// non-trivial nested fields of arrays and records. 39 using BlockDtorFn = void (*)(Block *Storage, std::byte *FieldPtr, 40 const Descriptor *FieldDesc); 41 42 /// Invoked when a block with pointers referencing it goes out of scope. Such 43 /// blocks are persisted: the move function copies all inline descriptors and 44 /// non-trivial fields, as existing pointers might need to reference those 45 /// descriptors. Data is not copied since it cannot be legally read. 46 using BlockMoveFn = void (*)(Block *Storage, const std::byte *SrcFieldPtr, 47 std::byte *DstFieldPtr, 48 const Descriptor *FieldDesc); 49 50 /// Inline descriptor embedded in structures and arrays. 51 /// 52 /// Such descriptors precede all composite array elements and structure fields. 53 /// If the base of a pointer is not zero, the base points to the end of this 54 /// structure. The offset field is used to traverse the pointer chain up 55 /// to the root structure which allocated the object. 56 struct InlineDescriptor { 57 /// Offset inside the structure/array. 58 unsigned Offset; 59 60 /// Flag indicating if the storage is constant or not. 61 /// Relevant for primitive fields. 62 unsigned IsConst : 1; 63 /// For primitive fields, it indicates if the field was initialized. 64 /// Primitive fields in static storage are always initialized. 65 /// Arrays are always initialized, even though their elements might not be. 66 /// Base classes are initialized after the constructor is invoked. 67 unsigned IsInitialized : 1; 68 /// Flag indicating if the field is an embedded base class. 69 unsigned IsBase : 1; 70 /// Flag indicating if the field is the active member of a union. 71 unsigned IsActive : 1; 72 /// Flag indicating if the field is mutable (if in a record). 73 unsigned IsFieldMutable : 1; 74 75 const Descriptor *Desc; 76 }; 77 78 /// Describes a memory block created by an allocation site. 79 struct Descriptor final { 80 private: 81 /// Original declaration, used to emit the error message. 82 const DeclTy Source; 83 /// Size of an element, in host bytes. 84 const unsigned ElemSize; 85 /// Size of the storage, in host bytes. 86 const unsigned Size; 87 /// Size of the metadata. 88 const unsigned MDSize; 89 /// Size of the allocation (storage + metadata), in host bytes. 90 const unsigned AllocSize; 91 92 /// Value to denote arrays of unknown size. 93 static constexpr unsigned UnknownSizeMark = (unsigned)-1; 94 95 public: 96 /// Token to denote structures of unknown size. 97 struct UnknownSize {}; 98 99 using MetadataSize = std::optional<unsigned>; 100 static constexpr MetadataSize InlineDescMD = sizeof(InlineDescriptor); 101 102 /// Pointer to the record, if block contains records. 103 Record *const ElemRecord = nullptr; 104 /// Descriptor of the array element. 105 const Descriptor *const ElemDesc = nullptr; 106 /// Flag indicating if the block is mutable. 107 const bool IsConst = false; 108 /// Flag indicating if a field is mutable. 109 const bool IsMutable = false; 110 /// Flag indicating if the block is a temporary. 111 const bool IsTemporary = false; 112 /// Flag indicating if the block is an array. 113 const bool IsArray = false; 114 /// Flag indicating if this is a dummy descriptor. 115 const bool IsDummy = false; 116 117 /// Storage management methods. 118 const BlockCtorFn CtorFn = nullptr; 119 const BlockDtorFn DtorFn = nullptr; 120 const BlockMoveFn MoveFn = nullptr; 121 122 /// Allocates a descriptor for a primitive. 123 Descriptor(const DeclTy &D, PrimType Type, MetadataSize MD, bool IsConst, 124 bool IsTemporary, bool IsMutable); 125 126 /// Allocates a descriptor for an array of primitives. 127 Descriptor(const DeclTy &D, PrimType Type, MetadataSize MD, size_t NumElems, 128 bool IsConst, bool IsTemporary, bool IsMutable); 129 130 /// Allocates a descriptor for an array of primitives of unknown size. 131 Descriptor(const DeclTy &D, PrimType Type, bool IsTemporary, UnknownSize); 132 133 /// Allocates a descriptor for an array of composites. 134 Descriptor(const DeclTy &D, const Descriptor *Elem, MetadataSize MD, 135 unsigned NumElems, bool IsConst, bool IsTemporary, bool IsMutable); 136 137 /// Allocates a descriptor for an array of composites of unknown size. 138 Descriptor(const DeclTy &D, Descriptor *Elem, bool IsTemporary, UnknownSize); 139 140 /// Allocates a descriptor for a record. 141 Descriptor(const DeclTy &D, Record *R, MetadataSize MD, bool IsConst, 142 bool IsTemporary, bool IsMutable); 143 144 Descriptor(const DeclTy &D, MetadataSize MD); 145 146 QualType getType() const; 147 QualType getElemQualType() const; 148 SourceLocation getLocation() const; 149 150 const Decl *asDecl() const { return Source.dyn_cast<const Decl *>(); } 151 const Expr *asExpr() const { return Source.dyn_cast<const Expr *>(); } 152 153 const ValueDecl *asValueDecl() const { 154 return dyn_cast_if_present<ValueDecl>(asDecl()); 155 } 156 157 const FieldDecl *asFieldDecl() const { 158 return dyn_cast_if_present<FieldDecl>(asDecl()); 159 } 160 161 const RecordDecl *asRecordDecl() const { 162 return dyn_cast_if_present<RecordDecl>(asDecl()); 163 } 164 165 /// Returns the size of the object without metadata. 166 unsigned getSize() const { 167 assert(!isUnknownSizeArray() && "Array of unknown size"); 168 return Size; 169 } 170 171 /// Returns the allocated size, including metadata. 172 unsigned getAllocSize() const { return AllocSize; } 173 /// returns the size of an element when the structure is viewed as an array. 174 unsigned getElemSize() const { return ElemSize; } 175 /// Returns the size of the metadata. 176 unsigned getMetadataSize() const { return MDSize; } 177 178 /// Returns the number of elements stored in the block. 179 unsigned getNumElems() const { 180 return Size == UnknownSizeMark ? 0 : (getSize() / getElemSize()); 181 } 182 183 /// Checks if the descriptor is of an array of primitives. 184 bool isPrimitiveArray() const { return IsArray && !ElemDesc; } 185 /// Checks if the descriptor is of an array of composites. 186 bool isCompositeArray() const { return IsArray && ElemDesc; } 187 /// Checks if the descriptor is of an array of zero size. 188 bool isZeroSizeArray() const { return Size == 0; } 189 /// Checks if the descriptor is of an array of unknown size. 190 bool isUnknownSizeArray() const { return Size == UnknownSizeMark; } 191 192 /// Checks if the descriptor is of a primitive. 193 bool isPrimitive() const { return !IsArray && !ElemRecord; } 194 195 /// Checks if the descriptor is of an array. 196 bool isArray() const { return IsArray; } 197 /// Checks if the descriptor is of a record. 198 bool isRecord() const { return !IsArray && ElemRecord; } 199 /// Checks if this is a dummy descriptor. 200 bool isDummy() const { return IsDummy; } 201 }; 202 203 /// Bitfield tracking the initialisation status of elements of primitive arrays. 204 struct InitMap final { 205 private: 206 /// Type packing bits. 207 using T = uint64_t; 208 /// Bits stored in a single field. 209 static constexpr uint64_t PER_FIELD = sizeof(T) * CHAR_BIT; 210 211 public: 212 /// Initializes the map with no fields set. 213 explicit InitMap(unsigned N); 214 215 private: 216 friend class Pointer; 217 218 /// Returns a pointer to storage. 219 T *data() { return Data.get(); } 220 const T *data() const { return Data.get(); } 221 222 /// Initializes an element. Returns true when object if fully initialized. 223 bool initializeElement(unsigned I); 224 225 /// Checks if an element was initialized. 226 bool isElementInitialized(unsigned I) const; 227 228 static constexpr size_t numFields(unsigned N) { 229 return (N + PER_FIELD - 1) / PER_FIELD; 230 } 231 /// Number of fields not initialized. 232 unsigned UninitFields; 233 std::unique_ptr<T[]> Data; 234 }; 235 236 } // namespace interp 237 } // namespace clang 238 239 #endif 240