Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 1 | //===--- CGCXXRTTI.cpp - Emit LLVM Code for C++ RTTI descriptors ----------===// |
| 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 contains code dealing with C++ code generation of RTTI descriptors. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenModule.h" |
| 15 | #include "CGCXXABI.h" |
| 16 | #include "CGObjCRuntime.h" |
| 17 | #include "clang/AST/RecordLayout.h" |
| 18 | #include "clang/AST/Type.h" |
| 19 | #include "clang/Frontend/CodeGenOptions.h" |
| 20 | |
| 21 | using namespace clang; |
| 22 | using namespace CodeGen; |
| 23 | |
| 24 | namespace { |
| 25 | class RTTIBuilder { |
| 26 | CodeGenModule &CGM; // Per-module state. |
| 27 | llvm::LLVMContext &VMContext; |
| 28 | |
| 29 | /// Fields - The fields of the RTTI descriptor currently being built. |
| 30 | SmallVector<llvm::Constant *, 16> Fields; |
| 31 | |
| 32 | /// GetAddrOfTypeName - Returns the mangled type name of the given type. |
| 33 | llvm::GlobalVariable * |
| 34 | GetAddrOfTypeName(QualType Ty, llvm::GlobalVariable::LinkageTypes Linkage); |
| 35 | |
| 36 | /// GetAddrOfExternalRTTIDescriptor - Returns the constant for the RTTI |
| 37 | /// descriptor of the given type. |
| 38 | llvm::Constant *GetAddrOfExternalRTTIDescriptor(QualType Ty); |
| 39 | |
| 40 | /// BuildVTablePointer - Build the vtable pointer for the given type. |
| 41 | void BuildVTablePointer(const Type *Ty); |
| 42 | |
| 43 | /// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single |
| 44 | /// inheritance, according to the Itanium C++ ABI, 2.9.5p6b. |
| 45 | void BuildSIClassTypeInfo(const CXXRecordDecl *RD); |
| 46 | |
| 47 | /// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for |
| 48 | /// classes with bases that do not satisfy the abi::__si_class_type_info |
| 49 | /// constraints, according ti the Itanium C++ ABI, 2.9.5p5c. |
| 50 | void BuildVMIClassTypeInfo(const CXXRecordDecl *RD); |
| 51 | |
| 52 | /// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct, used |
| 53 | /// for pointer types. |
| 54 | void BuildPointerTypeInfo(QualType PointeeTy); |
| 55 | |
| 56 | /// BuildObjCObjectTypeInfo - Build the appropriate kind of |
| 57 | /// type_info for an object type. |
| 58 | void BuildObjCObjectTypeInfo(const ObjCObjectType *Ty); |
| 59 | |
| 60 | /// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info |
| 61 | /// struct, used for member pointer types. |
| 62 | void BuildPointerToMemberTypeInfo(const MemberPointerType *Ty); |
| 63 | |
| 64 | public: |
| 65 | RTTIBuilder(CodeGenModule &CGM) : CGM(CGM), |
| 66 | VMContext(CGM.getModule().getContext()) { } |
| 67 | |
| 68 | // Pointer type info flags. |
| 69 | enum { |
| 70 | /// PTI_Const - Type has const qualifier. |
| 71 | PTI_Const = 0x1, |
| 72 | |
| 73 | /// PTI_Volatile - Type has volatile qualifier. |
| 74 | PTI_Volatile = 0x2, |
| 75 | |
| 76 | /// PTI_Restrict - Type has restrict qualifier. |
| 77 | PTI_Restrict = 0x4, |
| 78 | |
| 79 | /// PTI_Incomplete - Type is incomplete. |
| 80 | PTI_Incomplete = 0x8, |
| 81 | |
| 82 | /// PTI_ContainingClassIncomplete - Containing class is incomplete. |
| 83 | /// (in pointer to member). |
| 84 | PTI_ContainingClassIncomplete = 0x10 |
| 85 | }; |
| 86 | |
| 87 | // VMI type info flags. |
| 88 | enum { |
| 89 | /// VMI_NonDiamondRepeat - Class has non-diamond repeated inheritance. |
| 90 | VMI_NonDiamondRepeat = 0x1, |
| 91 | |
| 92 | /// VMI_DiamondShaped - Class is diamond shaped. |
| 93 | VMI_DiamondShaped = 0x2 |
| 94 | }; |
| 95 | |
| 96 | // Base class type info flags. |
| 97 | enum { |
| 98 | /// BCTI_Virtual - Base class is virtual. |
| 99 | BCTI_Virtual = 0x1, |
| 100 | |
| 101 | /// BCTI_Public - Base class is public. |
| 102 | BCTI_Public = 0x2 |
| 103 | }; |
| 104 | |
| 105 | /// BuildTypeInfo - Build the RTTI type info struct for the given type. |
| 106 | /// |
| 107 | /// \param Force - true to force the creation of this RTTI value |
| 108 | llvm::Constant *BuildTypeInfo(QualType Ty, bool Force = false); |
| 109 | }; |
| 110 | } |
| 111 | |
| 112 | llvm::GlobalVariable * |
| 113 | RTTIBuilder::GetAddrOfTypeName(QualType Ty, |
| 114 | llvm::GlobalVariable::LinkageTypes Linkage) { |
| 115 | SmallString<256> OutName; |
| 116 | llvm::raw_svector_ostream Out(OutName); |
| 117 | CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(Ty, Out); |
| 118 | Out.flush(); |
| 119 | StringRef Name = OutName.str(); |
| 120 | |
| 121 | // We know that the mangled name of the type starts at index 4 of the |
| 122 | // mangled name of the typename, so we can just index into it in order to |
| 123 | // get the mangled name of the type. |
| 124 | llvm::Constant *Init = llvm::ConstantDataArray::getString(VMContext, |
| 125 | Name.substr(4)); |
| 126 | |
| 127 | llvm::GlobalVariable *GV = |
| 128 | CGM.CreateOrReplaceCXXRuntimeVariable(Name, Init->getType(), Linkage); |
| 129 | |
| 130 | GV->setInitializer(Init); |
| 131 | |
| 132 | return GV; |
| 133 | } |
| 134 | |
| 135 | llvm::Constant *RTTIBuilder::GetAddrOfExternalRTTIDescriptor(QualType Ty) { |
| 136 | // Mangle the RTTI name. |
| 137 | SmallString<256> OutName; |
| 138 | llvm::raw_svector_ostream Out(OutName); |
| 139 | CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out); |
| 140 | Out.flush(); |
| 141 | StringRef Name = OutName.str(); |
| 142 | |
| 143 | // Look for an existing global. |
| 144 | llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(Name); |
| 145 | |
| 146 | if (!GV) { |
| 147 | // Create a new global variable. |
| 148 | GV = new llvm::GlobalVariable(CGM.getModule(), CGM.Int8PtrTy, |
| 149 | /*Constant=*/true, |
| 150 | llvm::GlobalValue::ExternalLinkage, 0, Name); |
| 151 | } |
| 152 | |
| 153 | return llvm::ConstantExpr::getBitCast(GV, CGM.Int8PtrTy); |
| 154 | } |
| 155 | |
| 156 | /// TypeInfoIsInStandardLibrary - Given a builtin type, returns whether the type |
| 157 | /// info for that type is defined in the standard library. |
| 158 | static bool TypeInfoIsInStandardLibrary(const BuiltinType *Ty) { |
| 159 | // Itanium C++ ABI 2.9.2: |
| 160 | // Basic type information (e.g. for "int", "bool", etc.) will be kept in |
| 161 | // the run-time support library. Specifically, the run-time support |
| 162 | // library should contain type_info objects for the types X, X* and |
| 163 | // X const*, for every X in: void, std::nullptr_t, bool, wchar_t, char, |
| 164 | // unsigned char, signed char, short, unsigned short, int, unsigned int, |
| 165 | // long, unsigned long, long long, unsigned long long, float, double, |
| 166 | // long double, char16_t, char32_t, and the IEEE 754r decimal and |
| 167 | // half-precision floating point types. |
| 168 | switch (Ty->getKind()) { |
| 169 | case BuiltinType::Void: |
| 170 | case BuiltinType::NullPtr: |
| 171 | case BuiltinType::Bool: |
| 172 | case BuiltinType::WChar_S: |
| 173 | case BuiltinType::WChar_U: |
| 174 | case BuiltinType::Char_U: |
| 175 | case BuiltinType::Char_S: |
| 176 | case BuiltinType::UChar: |
| 177 | case BuiltinType::SChar: |
| 178 | case BuiltinType::Short: |
| 179 | case BuiltinType::UShort: |
| 180 | case BuiltinType::Int: |
| 181 | case BuiltinType::UInt: |
| 182 | case BuiltinType::Long: |
| 183 | case BuiltinType::ULong: |
| 184 | case BuiltinType::LongLong: |
| 185 | case BuiltinType::ULongLong: |
| 186 | case BuiltinType::Half: |
| 187 | case BuiltinType::Float: |
| 188 | case BuiltinType::Double: |
| 189 | case BuiltinType::LongDouble: |
| 190 | case BuiltinType::Char16: |
| 191 | case BuiltinType::Char32: |
| 192 | case BuiltinType::Int128: |
| 193 | case BuiltinType::UInt128: |
Guy Benyei | d8a08ea | 2012-12-18 14:38:23 +0000 | [diff] [blame] | 194 | case BuiltinType::OCLImage1d: |
| 195 | case BuiltinType::OCLImage1dArray: |
| 196 | case BuiltinType::OCLImage1dBuffer: |
| 197 | case BuiltinType::OCLImage2d: |
| 198 | case BuiltinType::OCLImage2dArray: |
| 199 | case BuiltinType::OCLImage3d: |
Guy Benyei | 6105419 | 2013-02-07 10:55:47 +0000 | [diff] [blame] | 200 | case BuiltinType::OCLSampler: |
Guy Benyei | 1b4fb3e | 2013-01-20 12:31:11 +0000 | [diff] [blame] | 201 | case BuiltinType::OCLEvent: |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 202 | return true; |
| 203 | |
| 204 | case BuiltinType::Dependent: |
| 205 | #define BUILTIN_TYPE(Id, SingletonId) |
| 206 | #define PLACEHOLDER_TYPE(Id, SingletonId) \ |
| 207 | case BuiltinType::Id: |
| 208 | #include "clang/AST/BuiltinTypes.def" |
| 209 | llvm_unreachable("asking for RRTI for a placeholder type!"); |
| 210 | |
| 211 | case BuiltinType::ObjCId: |
| 212 | case BuiltinType::ObjCClass: |
| 213 | case BuiltinType::ObjCSel: |
| 214 | llvm_unreachable("FIXME: Objective-C types are unsupported!"); |
| 215 | } |
| 216 | |
| 217 | llvm_unreachable("Invalid BuiltinType Kind!"); |
| 218 | } |
| 219 | |
| 220 | static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) { |
| 221 | QualType PointeeTy = PointerTy->getPointeeType(); |
| 222 | const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy); |
| 223 | if (!BuiltinTy) |
| 224 | return false; |
| 225 | |
| 226 | // Check the qualifiers. |
| 227 | Qualifiers Quals = PointeeTy.getQualifiers(); |
| 228 | Quals.removeConst(); |
| 229 | |
| 230 | if (!Quals.empty()) |
| 231 | return false; |
| 232 | |
| 233 | return TypeInfoIsInStandardLibrary(BuiltinTy); |
| 234 | } |
| 235 | |
| 236 | /// IsStandardLibraryRTTIDescriptor - Returns whether the type |
| 237 | /// information for the given type exists in the standard library. |
| 238 | static bool IsStandardLibraryRTTIDescriptor(QualType Ty) { |
| 239 | // Type info for builtin types is defined in the standard library. |
| 240 | if (const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(Ty)) |
| 241 | return TypeInfoIsInStandardLibrary(BuiltinTy); |
| 242 | |
| 243 | // Type info for some pointer types to builtin types is defined in the |
| 244 | // standard library. |
| 245 | if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty)) |
| 246 | return TypeInfoIsInStandardLibrary(PointerTy); |
| 247 | |
| 248 | return false; |
| 249 | } |
| 250 | |
| 251 | /// ShouldUseExternalRTTIDescriptor - Returns whether the type information for |
| 252 | /// the given type exists somewhere else, and that we should not emit the type |
| 253 | /// information in this translation unit. Assumes that it is not a |
| 254 | /// standard-library type. |
John McCall | 6bd2a89 | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 255 | static bool ShouldUseExternalRTTIDescriptor(CodeGenModule &CGM, |
| 256 | QualType Ty) { |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 257 | ASTContext &Context = CGM.getContext(); |
| 258 | |
John McCall | 6bd2a89 | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 259 | // If RTTI is disabled, assume it might be disabled in the |
| 260 | // translation unit that defines any potential key function, too. |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 261 | if (!Context.getLangOpts().RTTI) return false; |
| 262 | |
| 263 | if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) { |
| 264 | const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl()); |
| 265 | if (!RD->hasDefinition()) |
| 266 | return false; |
| 267 | |
| 268 | if (!RD->isDynamicClass()) |
| 269 | return false; |
| 270 | |
John McCall | 6bd2a89 | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 271 | // FIXME: this may need to be reconsidered if the key function |
| 272 | // changes. |
| 273 | return CGM.getVTables().isVTableExternal(RD); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | return false; |
| 277 | } |
| 278 | |
| 279 | /// IsIncompleteClassType - Returns whether the given record type is incomplete. |
| 280 | static bool IsIncompleteClassType(const RecordType *RecordTy) { |
| 281 | return !RecordTy->getDecl()->isCompleteDefinition(); |
| 282 | } |
| 283 | |
| 284 | /// ContainsIncompleteClassType - Returns whether the given type contains an |
| 285 | /// incomplete class type. This is true if |
| 286 | /// |
| 287 | /// * The given type is an incomplete class type. |
| 288 | /// * The given type is a pointer type whose pointee type contains an |
| 289 | /// incomplete class type. |
| 290 | /// * The given type is a member pointer type whose class is an incomplete |
| 291 | /// class type. |
| 292 | /// * The given type is a member pointer type whoise pointee type contains an |
| 293 | /// incomplete class type. |
| 294 | /// is an indirect or direct pointer to an incomplete class type. |
| 295 | static bool ContainsIncompleteClassType(QualType Ty) { |
| 296 | if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) { |
| 297 | if (IsIncompleteClassType(RecordTy)) |
| 298 | return true; |
| 299 | } |
| 300 | |
| 301 | if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty)) |
| 302 | return ContainsIncompleteClassType(PointerTy->getPointeeType()); |
| 303 | |
| 304 | if (const MemberPointerType *MemberPointerTy = |
| 305 | dyn_cast<MemberPointerType>(Ty)) { |
| 306 | // Check if the class type is incomplete. |
| 307 | const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass()); |
| 308 | if (IsIncompleteClassType(ClassType)) |
| 309 | return true; |
| 310 | |
| 311 | return ContainsIncompleteClassType(MemberPointerTy->getPointeeType()); |
| 312 | } |
| 313 | |
| 314 | return false; |
| 315 | } |
| 316 | |
| 317 | /// getTypeInfoLinkage - Return the linkage that the type info and type info |
| 318 | /// name constants should have for the given type. |
| 319 | static llvm::GlobalVariable::LinkageTypes |
| 320 | getTypeInfoLinkage(CodeGenModule &CGM, QualType Ty) { |
| 321 | // Itanium C++ ABI 2.9.5p7: |
| 322 | // In addition, it and all of the intermediate abi::__pointer_type_info |
| 323 | // structs in the chain down to the abi::__class_type_info for the |
| 324 | // incomplete class type must be prevented from resolving to the |
| 325 | // corresponding type_info structs for the complete class type, possibly |
| 326 | // by making them local static objects. Finally, a dummy class RTTI is |
| 327 | // generated for the incomplete type that will not resolve to the final |
| 328 | // complete class RTTI (because the latter need not exist), possibly by |
| 329 | // making it a local static object. |
| 330 | if (ContainsIncompleteClassType(Ty)) |
| 331 | return llvm::GlobalValue::InternalLinkage; |
| 332 | |
| 333 | switch (Ty->getLinkage()) { |
| 334 | case NoLinkage: |
| 335 | case InternalLinkage: |
| 336 | case UniqueExternalLinkage: |
| 337 | return llvm::GlobalValue::InternalLinkage; |
| 338 | |
John McCall | e54d92b | 2014-03-10 22:27:33 +0000 | [diff] [blame] | 339 | case VisibleNoLinkage: |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 340 | case ExternalLinkage: |
| 341 | if (!CGM.getLangOpts().RTTI) { |
| 342 | // RTTI is not enabled, which means that this type info struct is going |
| 343 | // to be used for exception handling. Give it linkonce_odr linkage. |
| 344 | return llvm::GlobalValue::LinkOnceODRLinkage; |
| 345 | } |
| 346 | |
| 347 | if (const RecordType *Record = dyn_cast<RecordType>(Ty)) { |
| 348 | const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl()); |
| 349 | if (RD->hasAttr<WeakAttr>()) |
| 350 | return llvm::GlobalValue::WeakODRLinkage; |
| 351 | if (RD->isDynamicClass()) |
| 352 | return CGM.getVTableLinkage(RD); |
| 353 | } |
| 354 | |
| 355 | return llvm::GlobalValue::LinkOnceODRLinkage; |
| 356 | } |
| 357 | |
| 358 | llvm_unreachable("Invalid linkage!"); |
| 359 | } |
| 360 | |
| 361 | // CanUseSingleInheritance - Return whether the given record decl has a "single, |
| 362 | // public, non-virtual base at offset zero (i.e. the derived class is dynamic |
| 363 | // iff the base is)", according to Itanium C++ ABI, 2.95p6b. |
| 364 | static bool CanUseSingleInheritance(const CXXRecordDecl *RD) { |
| 365 | // Check the number of bases. |
| 366 | if (RD->getNumBases() != 1) |
| 367 | return false; |
| 368 | |
| 369 | // Get the base. |
| 370 | CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin(); |
| 371 | |
| 372 | // Check that the base is not virtual. |
| 373 | if (Base->isVirtual()) |
| 374 | return false; |
| 375 | |
| 376 | // Check that the base is public. |
| 377 | if (Base->getAccessSpecifier() != AS_public) |
| 378 | return false; |
| 379 | |
| 380 | // Check that the class is dynamic iff the base is. |
| 381 | const CXXRecordDecl *BaseDecl = |
| 382 | cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
| 383 | if (!BaseDecl->isEmpty() && |
| 384 | BaseDecl->isDynamicClass() != RD->isDynamicClass()) |
| 385 | return false; |
| 386 | |
| 387 | return true; |
| 388 | } |
| 389 | |
| 390 | void RTTIBuilder::BuildVTablePointer(const Type *Ty) { |
| 391 | // abi::__class_type_info. |
| 392 | static const char * const ClassTypeInfo = |
| 393 | "_ZTVN10__cxxabiv117__class_type_infoE"; |
| 394 | // abi::__si_class_type_info. |
| 395 | static const char * const SIClassTypeInfo = |
| 396 | "_ZTVN10__cxxabiv120__si_class_type_infoE"; |
| 397 | // abi::__vmi_class_type_info. |
| 398 | static const char * const VMIClassTypeInfo = |
| 399 | "_ZTVN10__cxxabiv121__vmi_class_type_infoE"; |
| 400 | |
| 401 | const char *VTableName = 0; |
| 402 | |
| 403 | switch (Ty->getTypeClass()) { |
| 404 | #define TYPE(Class, Base) |
| 405 | #define ABSTRACT_TYPE(Class, Base) |
| 406 | #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 407 | #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: |
| 408 | #define DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 409 | #include "clang/AST/TypeNodes.def" |
| 410 | llvm_unreachable("Non-canonical and dependent types shouldn't get here"); |
| 411 | |
| 412 | case Type::LValueReference: |
| 413 | case Type::RValueReference: |
| 414 | llvm_unreachable("References shouldn't get here"); |
| 415 | |
Richard Smith | 27d807c | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 416 | case Type::Auto: |
| 417 | llvm_unreachable("Undeduced auto type shouldn't get here"); |
| 418 | |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 419 | case Type::Builtin: |
| 420 | // GCC treats vector and complex types as fundamental types. |
| 421 | case Type::Vector: |
| 422 | case Type::ExtVector: |
| 423 | case Type::Complex: |
| 424 | case Type::Atomic: |
| 425 | // FIXME: GCC treats block pointers as fundamental types?! |
| 426 | case Type::BlockPointer: |
| 427 | // abi::__fundamental_type_info. |
| 428 | VTableName = "_ZTVN10__cxxabiv123__fundamental_type_infoE"; |
| 429 | break; |
| 430 | |
| 431 | case Type::ConstantArray: |
| 432 | case Type::IncompleteArray: |
| 433 | case Type::VariableArray: |
| 434 | // abi::__array_type_info. |
| 435 | VTableName = "_ZTVN10__cxxabiv117__array_type_infoE"; |
| 436 | break; |
| 437 | |
| 438 | case Type::FunctionNoProto: |
| 439 | case Type::FunctionProto: |
| 440 | // abi::__function_type_info. |
| 441 | VTableName = "_ZTVN10__cxxabiv120__function_type_infoE"; |
| 442 | break; |
| 443 | |
| 444 | case Type::Enum: |
| 445 | // abi::__enum_type_info. |
| 446 | VTableName = "_ZTVN10__cxxabiv116__enum_type_infoE"; |
| 447 | break; |
| 448 | |
| 449 | case Type::Record: { |
| 450 | const CXXRecordDecl *RD = |
| 451 | cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl()); |
| 452 | |
| 453 | if (!RD->hasDefinition() || !RD->getNumBases()) { |
| 454 | VTableName = ClassTypeInfo; |
| 455 | } else if (CanUseSingleInheritance(RD)) { |
| 456 | VTableName = SIClassTypeInfo; |
| 457 | } else { |
| 458 | VTableName = VMIClassTypeInfo; |
| 459 | } |
| 460 | |
| 461 | break; |
| 462 | } |
| 463 | |
| 464 | case Type::ObjCObject: |
| 465 | // Ignore protocol qualifiers. |
| 466 | Ty = cast<ObjCObjectType>(Ty)->getBaseType().getTypePtr(); |
| 467 | |
| 468 | // Handle id and Class. |
| 469 | if (isa<BuiltinType>(Ty)) { |
| 470 | VTableName = ClassTypeInfo; |
| 471 | break; |
| 472 | } |
| 473 | |
| 474 | assert(isa<ObjCInterfaceType>(Ty)); |
| 475 | // Fall through. |
| 476 | |
| 477 | case Type::ObjCInterface: |
| 478 | if (cast<ObjCInterfaceType>(Ty)->getDecl()->getSuperClass()) { |
| 479 | VTableName = SIClassTypeInfo; |
| 480 | } else { |
| 481 | VTableName = ClassTypeInfo; |
| 482 | } |
| 483 | break; |
| 484 | |
| 485 | case Type::ObjCObjectPointer: |
| 486 | case Type::Pointer: |
| 487 | // abi::__pointer_type_info. |
| 488 | VTableName = "_ZTVN10__cxxabiv119__pointer_type_infoE"; |
| 489 | break; |
| 490 | |
| 491 | case Type::MemberPointer: |
| 492 | // abi::__pointer_to_member_type_info. |
| 493 | VTableName = "_ZTVN10__cxxabiv129__pointer_to_member_type_infoE"; |
| 494 | break; |
| 495 | } |
| 496 | |
| 497 | llvm::Constant *VTable = |
| 498 | CGM.getModule().getOrInsertGlobal(VTableName, CGM.Int8PtrTy); |
| 499 | |
| 500 | llvm::Type *PtrDiffTy = |
| 501 | CGM.getTypes().ConvertType(CGM.getContext().getPointerDiffType()); |
| 502 | |
| 503 | // The vtable address point is 2. |
| 504 | llvm::Constant *Two = llvm::ConstantInt::get(PtrDiffTy, 2); |
| 505 | VTable = llvm::ConstantExpr::getInBoundsGetElementPtr(VTable, Two); |
| 506 | VTable = llvm::ConstantExpr::getBitCast(VTable, CGM.Int8PtrTy); |
| 507 | |
| 508 | Fields.push_back(VTable); |
| 509 | } |
| 510 | |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 511 | llvm::Constant *RTTIBuilder::BuildTypeInfo(QualType Ty, bool Force) { |
| 512 | // We want to operate on the canonical type. |
| 513 | Ty = CGM.getContext().getCanonicalType(Ty); |
| 514 | |
| 515 | // Check if we've already emitted an RTTI descriptor for this type. |
| 516 | SmallString<256> OutName; |
| 517 | llvm::raw_svector_ostream Out(OutName); |
| 518 | CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out); |
| 519 | Out.flush(); |
| 520 | StringRef Name = OutName.str(); |
| 521 | |
| 522 | llvm::GlobalVariable *OldGV = CGM.getModule().getNamedGlobal(Name); |
| 523 | if (OldGV && !OldGV->isDeclaration()) { |
Eli Friedman | ba2778f | 2013-06-28 22:13:27 +0000 | [diff] [blame] | 524 | assert(!OldGV->hasAvailableExternallyLinkage() && |
| 525 | "available_externally typeinfos not yet implemented"); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 526 | |
| 527 | return llvm::ConstantExpr::getBitCast(OldGV, CGM.Int8PtrTy); |
| 528 | } |
| 529 | |
| 530 | // Check if there is already an external RTTI descriptor for this type. |
| 531 | bool IsStdLib = IsStandardLibraryRTTIDescriptor(Ty); |
| 532 | if (!Force && (IsStdLib || ShouldUseExternalRTTIDescriptor(CGM, Ty))) |
| 533 | return GetAddrOfExternalRTTIDescriptor(Ty); |
| 534 | |
| 535 | // Emit the standard library with external linkage. |
| 536 | llvm::GlobalVariable::LinkageTypes Linkage; |
| 537 | if (IsStdLib) |
| 538 | Linkage = llvm::GlobalValue::ExternalLinkage; |
| 539 | else |
| 540 | Linkage = getTypeInfoLinkage(CGM, Ty); |
| 541 | |
| 542 | // Add the vtable pointer. |
| 543 | BuildVTablePointer(cast<Type>(Ty)); |
| 544 | |
| 545 | // And the name. |
| 546 | llvm::GlobalVariable *TypeName = GetAddrOfTypeName(Ty, Linkage); |
Tim Northover | 65f582f | 2014-03-30 17:32:48 +0000 | [diff] [blame] | 547 | llvm::Constant *TypeNameField; |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 548 | |
Tim Northover | 618ca29 | 2014-03-29 15:09:55 +0000 | [diff] [blame] | 549 | // If we're supposed to demote the visibility, be sure to set a flag |
| 550 | // to use a string comparison for type_info comparisons. |
Tim Northover | 65f582f | 2014-03-30 17:32:48 +0000 | [diff] [blame] | 551 | CGCXXABI::RTTIUniquenessKind RTTIUniqueness = |
| 552 | CGM.getCXXABI().classifyRTTIUniqueness(Ty, Linkage); |
| 553 | if (RTTIUniqueness != CGCXXABI::RUK_Unique) { |
Tim Northover | 618ca29 | 2014-03-29 15:09:55 +0000 | [diff] [blame] | 554 | // The flag is the sign bit, which on ARM64 is defined to be clear |
| 555 | // for global pointers. This is very ARM64-specific. |
Tim Northover | 65f582f | 2014-03-30 17:32:48 +0000 | [diff] [blame] | 556 | TypeNameField = llvm::ConstantExpr::getPtrToInt(TypeName, CGM.Int64Ty); |
Tim Northover | 618ca29 | 2014-03-29 15:09:55 +0000 | [diff] [blame] | 557 | llvm::Constant *flag = |
| 558 | llvm::ConstantInt::get(CGM.Int64Ty, ((uint64_t)1) << 63); |
Tim Northover | 65f582f | 2014-03-30 17:32:48 +0000 | [diff] [blame] | 559 | TypeNameField = llvm::ConstantExpr::getAdd(TypeNameField, flag); |
| 560 | TypeNameField = |
| 561 | llvm::ConstantExpr::getIntToPtr(TypeNameField, CGM.Int8PtrTy); |
Tim Northover | 618ca29 | 2014-03-29 15:09:55 +0000 | [diff] [blame] | 562 | } else { |
Tim Northover | 65f582f | 2014-03-30 17:32:48 +0000 | [diff] [blame] | 563 | TypeNameField = llvm::ConstantExpr::getBitCast(TypeName, CGM.Int8PtrTy); |
Tim Northover | 618ca29 | 2014-03-29 15:09:55 +0000 | [diff] [blame] | 564 | } |
Tim Northover | 65f582f | 2014-03-30 17:32:48 +0000 | [diff] [blame] | 565 | Fields.push_back(TypeNameField); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 566 | |
| 567 | switch (Ty->getTypeClass()) { |
| 568 | #define TYPE(Class, Base) |
| 569 | #define ABSTRACT_TYPE(Class, Base) |
| 570 | #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 571 | #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: |
| 572 | #define DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 573 | #include "clang/AST/TypeNodes.def" |
| 574 | llvm_unreachable("Non-canonical and dependent types shouldn't get here"); |
| 575 | |
| 576 | // GCC treats vector types as fundamental types. |
| 577 | case Type::Builtin: |
| 578 | case Type::Vector: |
| 579 | case Type::ExtVector: |
| 580 | case Type::Complex: |
| 581 | case Type::BlockPointer: |
| 582 | // Itanium C++ ABI 2.9.5p4: |
| 583 | // abi::__fundamental_type_info adds no data members to std::type_info. |
| 584 | break; |
| 585 | |
| 586 | case Type::LValueReference: |
| 587 | case Type::RValueReference: |
| 588 | llvm_unreachable("References shouldn't get here"); |
| 589 | |
Richard Smith | 27d807c | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 590 | case Type::Auto: |
| 591 | llvm_unreachable("Undeduced auto type shouldn't get here"); |
| 592 | |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 593 | case Type::ConstantArray: |
| 594 | case Type::IncompleteArray: |
| 595 | case Type::VariableArray: |
| 596 | // Itanium C++ ABI 2.9.5p5: |
| 597 | // abi::__array_type_info adds no data members to std::type_info. |
| 598 | break; |
| 599 | |
| 600 | case Type::FunctionNoProto: |
| 601 | case Type::FunctionProto: |
| 602 | // Itanium C++ ABI 2.9.5p5: |
| 603 | // abi::__function_type_info adds no data members to std::type_info. |
| 604 | break; |
| 605 | |
| 606 | case Type::Enum: |
| 607 | // Itanium C++ ABI 2.9.5p5: |
| 608 | // abi::__enum_type_info adds no data members to std::type_info. |
| 609 | break; |
| 610 | |
| 611 | case Type::Record: { |
| 612 | const CXXRecordDecl *RD = |
| 613 | cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl()); |
| 614 | if (!RD->hasDefinition() || !RD->getNumBases()) { |
| 615 | // We don't need to emit any fields. |
| 616 | break; |
| 617 | } |
| 618 | |
| 619 | if (CanUseSingleInheritance(RD)) |
| 620 | BuildSIClassTypeInfo(RD); |
| 621 | else |
| 622 | BuildVMIClassTypeInfo(RD); |
| 623 | |
| 624 | break; |
| 625 | } |
| 626 | |
| 627 | case Type::ObjCObject: |
| 628 | case Type::ObjCInterface: |
| 629 | BuildObjCObjectTypeInfo(cast<ObjCObjectType>(Ty)); |
| 630 | break; |
| 631 | |
| 632 | case Type::ObjCObjectPointer: |
| 633 | BuildPointerTypeInfo(cast<ObjCObjectPointerType>(Ty)->getPointeeType()); |
| 634 | break; |
| 635 | |
| 636 | case Type::Pointer: |
| 637 | BuildPointerTypeInfo(cast<PointerType>(Ty)->getPointeeType()); |
| 638 | break; |
| 639 | |
| 640 | case Type::MemberPointer: |
| 641 | BuildPointerToMemberTypeInfo(cast<MemberPointerType>(Ty)); |
| 642 | break; |
| 643 | |
| 644 | case Type::Atomic: |
| 645 | // No fields, at least for the moment. |
| 646 | break; |
| 647 | } |
| 648 | |
| 649 | llvm::Constant *Init = llvm::ConstantStruct::getAnon(Fields); |
| 650 | |
| 651 | llvm::GlobalVariable *GV = |
| 652 | new llvm::GlobalVariable(CGM.getModule(), Init->getType(), |
| 653 | /*Constant=*/true, Linkage, Init, Name); |
| 654 | |
| 655 | // If there's already an old global variable, replace it with the new one. |
| 656 | if (OldGV) { |
| 657 | GV->takeName(OldGV); |
| 658 | llvm::Constant *NewPtr = |
| 659 | llvm::ConstantExpr::getBitCast(GV, OldGV->getType()); |
| 660 | OldGV->replaceAllUsesWith(NewPtr); |
| 661 | OldGV->eraseFromParent(); |
| 662 | } |
| 663 | |
John McCall | 57420b3 | 2014-02-08 03:26:05 +0000 | [diff] [blame] | 664 | // The Itanium ABI specifies that type_info objects must be globally |
| 665 | // unique, with one exception: if the type is an incomplete class |
| 666 | // type or a (possibly indirect) pointer to one. That exception |
| 667 | // affects the general case of comparing type_info objects produced |
| 668 | // by the typeid operator, which is why the comparison operators on |
| 669 | // std::type_info generally use the type_info name pointers instead |
| 670 | // of the object addresses. However, the language's built-in uses |
| 671 | // of RTTI generally require class types to be complete, even when |
| 672 | // manipulating pointers to those class types. This allows the |
| 673 | // implementation of dynamic_cast to rely on address equality tests, |
| 674 | // which is much faster. |
| 675 | |
| 676 | // All of this is to say that it's important that both the type_info |
| 677 | // object and the type_info name be uniqued when weakly emitted. |
| 678 | |
John McCall | 8f80a61 | 2014-02-08 00:41:16 +0000 | [diff] [blame] | 679 | // Give the type_info object and name the formal visibility of the |
| 680 | // type itself. |
Duncan P. N. Exon Smith | 48bc268 | 2014-05-05 17:38:39 +0000 | [diff] [blame] | 681 | llvm::GlobalValue::VisibilityTypes llvmVisibility; |
Duncan P. N. Exon Smith | 4434d36 | 2014-05-07 22:36:11 +0000 | [diff] [blame] | 682 | if (llvm::GlobalValue::isLocalLinkage(Linkage)) |
| 683 | // If the linkage is local, only default visibility makes sense. |
| 684 | llvmVisibility = llvm::GlobalValue::DefaultVisibility; |
| 685 | else if (RTTIUniqueness == CGCXXABI::RUK_NonUniqueHidden) |
Duncan P. N. Exon Smith | 48bc268 | 2014-05-05 17:38:39 +0000 | [diff] [blame] | 686 | llvmVisibility = llvm::GlobalValue::HiddenVisibility; |
| 687 | else |
| 688 | llvmVisibility = CodeGenModule::GetLLVMVisibility(Ty->getVisibility()); |
John McCall | 8f80a61 | 2014-02-08 00:41:16 +0000 | [diff] [blame] | 689 | TypeName->setVisibility(llvmVisibility); |
| 690 | GV->setVisibility(llvmVisibility); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 691 | |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 692 | return llvm::ConstantExpr::getBitCast(GV, CGM.Int8PtrTy); |
| 693 | } |
| 694 | |
| 695 | /// ComputeQualifierFlags - Compute the pointer type info flags from the |
| 696 | /// given qualifier. |
| 697 | static unsigned ComputeQualifierFlags(Qualifiers Quals) { |
| 698 | unsigned Flags = 0; |
| 699 | |
| 700 | if (Quals.hasConst()) |
| 701 | Flags |= RTTIBuilder::PTI_Const; |
| 702 | if (Quals.hasVolatile()) |
| 703 | Flags |= RTTIBuilder::PTI_Volatile; |
| 704 | if (Quals.hasRestrict()) |
| 705 | Flags |= RTTIBuilder::PTI_Restrict; |
| 706 | |
| 707 | return Flags; |
| 708 | } |
| 709 | |
| 710 | /// BuildObjCObjectTypeInfo - Build the appropriate kind of type_info |
| 711 | /// for the given Objective-C object type. |
| 712 | void RTTIBuilder::BuildObjCObjectTypeInfo(const ObjCObjectType *OT) { |
| 713 | // Drop qualifiers. |
| 714 | const Type *T = OT->getBaseType().getTypePtr(); |
| 715 | assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T)); |
| 716 | |
| 717 | // The builtin types are abi::__class_type_infos and don't require |
| 718 | // extra fields. |
| 719 | if (isa<BuiltinType>(T)) return; |
| 720 | |
| 721 | ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl(); |
| 722 | ObjCInterfaceDecl *Super = Class->getSuperClass(); |
| 723 | |
| 724 | // Root classes are also __class_type_info. |
| 725 | if (!Super) return; |
| 726 | |
| 727 | QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super); |
| 728 | |
| 729 | // Everything else is single inheritance. |
| 730 | llvm::Constant *BaseTypeInfo = RTTIBuilder(CGM).BuildTypeInfo(SuperTy); |
| 731 | Fields.push_back(BaseTypeInfo); |
| 732 | } |
| 733 | |
| 734 | /// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single |
| 735 | /// inheritance, according to the Itanium C++ ABI, 2.95p6b. |
| 736 | void RTTIBuilder::BuildSIClassTypeInfo(const CXXRecordDecl *RD) { |
| 737 | // Itanium C++ ABI 2.9.5p6b: |
| 738 | // It adds to abi::__class_type_info a single member pointing to the |
| 739 | // type_info structure for the base type, |
| 740 | llvm::Constant *BaseTypeInfo = |
| 741 | RTTIBuilder(CGM).BuildTypeInfo(RD->bases_begin()->getType()); |
| 742 | Fields.push_back(BaseTypeInfo); |
| 743 | } |
| 744 | |
| 745 | namespace { |
| 746 | /// SeenBases - Contains virtual and non-virtual bases seen when traversing |
| 747 | /// a class hierarchy. |
| 748 | struct SeenBases { |
| 749 | llvm::SmallPtrSet<const CXXRecordDecl *, 16> NonVirtualBases; |
| 750 | llvm::SmallPtrSet<const CXXRecordDecl *, 16> VirtualBases; |
| 751 | }; |
| 752 | } |
| 753 | |
| 754 | /// ComputeVMIClassTypeInfoFlags - Compute the value of the flags member in |
| 755 | /// abi::__vmi_class_type_info. |
| 756 | /// |
| 757 | static unsigned ComputeVMIClassTypeInfoFlags(const CXXBaseSpecifier *Base, |
| 758 | SeenBases &Bases) { |
| 759 | |
| 760 | unsigned Flags = 0; |
| 761 | |
| 762 | const CXXRecordDecl *BaseDecl = |
| 763 | cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl()); |
| 764 | |
| 765 | if (Base->isVirtual()) { |
| 766 | // Mark the virtual base as seen. |
| 767 | if (!Bases.VirtualBases.insert(BaseDecl)) { |
| 768 | // If this virtual base has been seen before, then the class is diamond |
| 769 | // shaped. |
| 770 | Flags |= RTTIBuilder::VMI_DiamondShaped; |
| 771 | } else { |
| 772 | if (Bases.NonVirtualBases.count(BaseDecl)) |
| 773 | Flags |= RTTIBuilder::VMI_NonDiamondRepeat; |
| 774 | } |
| 775 | } else { |
| 776 | // Mark the non-virtual base as seen. |
| 777 | if (!Bases.NonVirtualBases.insert(BaseDecl)) { |
| 778 | // If this non-virtual base has been seen before, then the class has non- |
| 779 | // diamond shaped repeated inheritance. |
| 780 | Flags |= RTTIBuilder::VMI_NonDiamondRepeat; |
| 781 | } else { |
| 782 | if (Bases.VirtualBases.count(BaseDecl)) |
| 783 | Flags |= RTTIBuilder::VMI_NonDiamondRepeat; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | // Walk all bases. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 788 | for (const auto &I : BaseDecl->bases()) |
| 789 | Flags |= ComputeVMIClassTypeInfoFlags(&I, Bases); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 790 | |
| 791 | return Flags; |
| 792 | } |
| 793 | |
| 794 | static unsigned ComputeVMIClassTypeInfoFlags(const CXXRecordDecl *RD) { |
| 795 | unsigned Flags = 0; |
| 796 | SeenBases Bases; |
| 797 | |
| 798 | // Walk all bases. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 799 | for (const auto &I : RD->bases()) |
| 800 | Flags |= ComputeVMIClassTypeInfoFlags(&I, Bases); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 801 | |
| 802 | return Flags; |
| 803 | } |
| 804 | |
| 805 | /// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for |
| 806 | /// classes with bases that do not satisfy the abi::__si_class_type_info |
| 807 | /// constraints, according ti the Itanium C++ ABI, 2.9.5p5c. |
| 808 | void RTTIBuilder::BuildVMIClassTypeInfo(const CXXRecordDecl *RD) { |
| 809 | llvm::Type *UnsignedIntLTy = |
| 810 | CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); |
| 811 | |
| 812 | // Itanium C++ ABI 2.9.5p6c: |
| 813 | // __flags is a word with flags describing details about the class |
| 814 | // structure, which may be referenced by using the __flags_masks |
| 815 | // enumeration. These flags refer to both direct and indirect bases. |
| 816 | unsigned Flags = ComputeVMIClassTypeInfoFlags(RD); |
| 817 | Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags)); |
| 818 | |
| 819 | // Itanium C++ ABI 2.9.5p6c: |
| 820 | // __base_count is a word with the number of direct proper base class |
| 821 | // descriptions that follow. |
| 822 | Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, RD->getNumBases())); |
| 823 | |
| 824 | if (!RD->getNumBases()) |
| 825 | return; |
| 826 | |
| 827 | llvm::Type *LongLTy = |
| 828 | CGM.getTypes().ConvertType(CGM.getContext().LongTy); |
| 829 | |
| 830 | // Now add the base class descriptions. |
| 831 | |
| 832 | // Itanium C++ ABI 2.9.5p6c: |
| 833 | // __base_info[] is an array of base class descriptions -- one for every |
| 834 | // direct proper base. Each description is of the type: |
| 835 | // |
| 836 | // struct abi::__base_class_type_info { |
| 837 | // public: |
| 838 | // const __class_type_info *__base_type; |
| 839 | // long __offset_flags; |
| 840 | // |
| 841 | // enum __offset_flags_masks { |
| 842 | // __virtual_mask = 0x1, |
| 843 | // __public_mask = 0x2, |
| 844 | // __offset_shift = 8 |
| 845 | // }; |
| 846 | // }; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 847 | for (const auto &Base : RD->bases()) { |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 848 | // The __base_type member points to the RTTI for the base type. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 849 | Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(Base.getType())); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 850 | |
| 851 | const CXXRecordDecl *BaseDecl = |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 852 | cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl()); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 853 | |
| 854 | int64_t OffsetFlags = 0; |
| 855 | |
| 856 | // All but the lower 8 bits of __offset_flags are a signed offset. |
| 857 | // For a non-virtual base, this is the offset in the object of the base |
| 858 | // subobject. For a virtual base, this is the offset in the virtual table of |
| 859 | // the virtual base offset for the virtual base referenced (negative). |
| 860 | CharUnits Offset; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 861 | if (Base.isVirtual()) |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 862 | Offset = |
Timur Iskhodzhanov | 5877663 | 2013-11-05 15:54:58 +0000 | [diff] [blame] | 863 | CGM.getItaniumVTableContext().getVirtualBaseOffsetOffset(RD, BaseDecl); |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 864 | else { |
| 865 | const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD); |
| 866 | Offset = Layout.getBaseClassOffset(BaseDecl); |
| 867 | }; |
| 868 | |
| 869 | OffsetFlags = uint64_t(Offset.getQuantity()) << 8; |
| 870 | |
| 871 | // The low-order byte of __offset_flags contains flags, as given by the |
| 872 | // masks from the enumeration __offset_flags_masks. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 873 | if (Base.isVirtual()) |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 874 | OffsetFlags |= BCTI_Virtual; |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 875 | if (Base.getAccessSpecifier() == AS_public) |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 876 | OffsetFlags |= BCTI_Public; |
| 877 | |
| 878 | Fields.push_back(llvm::ConstantInt::get(LongLTy, OffsetFlags)); |
| 879 | } |
| 880 | } |
| 881 | |
| 882 | /// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct, |
| 883 | /// used for pointer types. |
| 884 | void RTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) { |
| 885 | Qualifiers Quals; |
| 886 | QualType UnqualifiedPointeeTy = |
| 887 | CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals); |
| 888 | |
| 889 | // Itanium C++ ABI 2.9.5p7: |
| 890 | // __flags is a flag word describing the cv-qualification and other |
| 891 | // attributes of the type pointed to |
| 892 | unsigned Flags = ComputeQualifierFlags(Quals); |
| 893 | |
| 894 | // Itanium C++ ABI 2.9.5p7: |
| 895 | // When the abi::__pbase_type_info is for a direct or indirect pointer to an |
| 896 | // incomplete class type, the incomplete target type flag is set. |
| 897 | if (ContainsIncompleteClassType(UnqualifiedPointeeTy)) |
| 898 | Flags |= PTI_Incomplete; |
| 899 | |
| 900 | llvm::Type *UnsignedIntLTy = |
| 901 | CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); |
| 902 | Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags)); |
| 903 | |
| 904 | // Itanium C++ ABI 2.9.5p7: |
| 905 | // __pointee is a pointer to the std::type_info derivation for the |
| 906 | // unqualified type being pointed to. |
| 907 | llvm::Constant *PointeeTypeInfo = |
| 908 | RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy); |
| 909 | Fields.push_back(PointeeTypeInfo); |
| 910 | } |
| 911 | |
| 912 | /// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info |
| 913 | /// struct, used for member pointer types. |
| 914 | void RTTIBuilder::BuildPointerToMemberTypeInfo(const MemberPointerType *Ty) { |
| 915 | QualType PointeeTy = Ty->getPointeeType(); |
| 916 | |
| 917 | Qualifiers Quals; |
| 918 | QualType UnqualifiedPointeeTy = |
| 919 | CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals); |
| 920 | |
| 921 | // Itanium C++ ABI 2.9.5p7: |
| 922 | // __flags is a flag word describing the cv-qualification and other |
| 923 | // attributes of the type pointed to. |
| 924 | unsigned Flags = ComputeQualifierFlags(Quals); |
| 925 | |
| 926 | const RecordType *ClassType = cast<RecordType>(Ty->getClass()); |
| 927 | |
| 928 | // Itanium C++ ABI 2.9.5p7: |
| 929 | // When the abi::__pbase_type_info is for a direct or indirect pointer to an |
| 930 | // incomplete class type, the incomplete target type flag is set. |
| 931 | if (ContainsIncompleteClassType(UnqualifiedPointeeTy)) |
| 932 | Flags |= PTI_Incomplete; |
| 933 | |
| 934 | if (IsIncompleteClassType(ClassType)) |
| 935 | Flags |= PTI_ContainingClassIncomplete; |
| 936 | |
| 937 | llvm::Type *UnsignedIntLTy = |
| 938 | CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy); |
| 939 | Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags)); |
| 940 | |
| 941 | // Itanium C++ ABI 2.9.5p7: |
| 942 | // __pointee is a pointer to the std::type_info derivation for the |
| 943 | // unqualified type being pointed to. |
| 944 | llvm::Constant *PointeeTypeInfo = |
| 945 | RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy); |
| 946 | Fields.push_back(PointeeTypeInfo); |
| 947 | |
| 948 | // Itanium C++ ABI 2.9.5p9: |
| 949 | // __context is a pointer to an abi::__class_type_info corresponding to the |
| 950 | // class type containing the member pointed to |
| 951 | // (e.g., the "A" in "int A::*"). |
| 952 | Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(QualType(ClassType, 0))); |
| 953 | } |
| 954 | |
| 955 | llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty, |
| 956 | bool ForEH) { |
| 957 | // Return a bogus pointer if RTTI is disabled, unless it's for EH. |
| 958 | // FIXME: should we even be calling this method if RTTI is disabled |
| 959 | // and it's not for EH? |
| 960 | if (!ForEH && !getLangOpts().RTTI) |
| 961 | return llvm::Constant::getNullValue(Int8PtrTy); |
| 962 | |
| 963 | if (ForEH && Ty->isObjCObjectPointerType() && |
| 964 | LangOpts.ObjCRuntime.isGNUFamily()) |
| 965 | return ObjCRuntime->GetEHType(Ty); |
| 966 | |
| 967 | return RTTIBuilder(*this).BuildTypeInfo(Ty); |
| 968 | } |
| 969 | |
| 970 | void CodeGenModule::EmitFundamentalRTTIDescriptor(QualType Type) { |
| 971 | QualType PointerType = Context.getPointerType(Type); |
| 972 | QualType PointerTypeConst = Context.getPointerType(Type.withConst()); |
| 973 | RTTIBuilder(*this).BuildTypeInfo(Type, true); |
| 974 | RTTIBuilder(*this).BuildTypeInfo(PointerType, true); |
| 975 | RTTIBuilder(*this).BuildTypeInfo(PointerTypeConst, true); |
| 976 | } |
| 977 | |
| 978 | void CodeGenModule::EmitFundamentalRTTIDescriptors() { |
| 979 | QualType FundamentalTypes[] = { Context.VoidTy, Context.NullPtrTy, |
| 980 | Context.BoolTy, Context.WCharTy, |
| 981 | Context.CharTy, Context.UnsignedCharTy, |
| 982 | Context.SignedCharTy, Context.ShortTy, |
| 983 | Context.UnsignedShortTy, Context.IntTy, |
| 984 | Context.UnsignedIntTy, Context.LongTy, |
| 985 | Context.UnsignedLongTy, Context.LongLongTy, |
Yunzhong Gao | 06770f9 | 2014-04-17 02:26:26 +0000 | [diff] [blame] | 986 | Context.UnsignedLongLongTy, |
| 987 | Context.HalfTy, Context.FloatTy, |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 988 | Context.DoubleTy, Context.LongDoubleTy, |
| 989 | Context.Char16Ty, Context.Char32Ty }; |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 990 | for (unsigned i = 0; i < llvm::array_lengthof(FundamentalTypes); ++i) |
Guy Benyei | 11169dd | 2012-12-18 14:30:41 +0000 | [diff] [blame] | 991 | EmitFundamentalRTTIDescriptor(FundamentalTypes[i]); |
| 992 | } |