blob: 120e711e840770c5da0ba96c641ce247b5feb11d [file] [log] [blame]
Mike Stumpde050572009-12-02 18:57:08 +00001//===--- CGCXXRTTI.cpp - Emit LLVM Code for C++ RTTI descriptors ----------===//
Anders Carlsson656e4c12009-10-10 20:49:04 +00002//
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
Mike Stump61c38012009-11-17 21:44:24 +000014#include "CodeGenModule.h"
John McCall4c40d982010-08-31 07:33:07 +000015#include "CGCXXABI.h"
John McCall279b5eb2010-08-12 23:36:15 +000016#include "clang/AST/RecordLayout.h"
17#include "clang/AST/Type.h"
18#include "clang/Frontend/CodeGenOptions.h"
David Chisnall80558d22011-03-20 21:35:39 +000019#include "CGObjCRuntime.h"
John McCall279b5eb2010-08-12 23:36:15 +000020
Anders Carlsson656e4c12009-10-10 20:49:04 +000021using namespace clang;
22using namespace CodeGen;
23
Mike Stump92f2fe22009-12-02 19:07:44 +000024namespace {
Mike Stumpde050572009-12-02 18:57:08 +000025class RTTIBuilder {
Mike Stump2b1bf312009-11-14 14:25:18 +000026 CodeGenModule &CGM; // Per-module state.
27 llvm::LLVMContext &VMContext;
Anders Carlsson8d145152009-12-20 22:30:54 +000028
Chris Lattner2acc6e32011-07-18 04:24:23 +000029 llvm::Type *Int8PtrTy;
Anders Carlsson531d55f2009-12-31 17:43:53 +000030
31 /// Fields - The fields of the RTTI descriptor currently being built.
Chris Lattner5f9e2722011-07-23 10:55:15 +000032 SmallVector<llvm::Constant *, 16> Fields;
Anders Carlssond6baec82009-12-11 01:27:37 +000033
Anders Carlsson9a86a132011-01-29 20:36:11 +000034 /// GetAddrOfTypeName - Returns the mangled type name of the given type.
35 llvm::GlobalVariable *
36 GetAddrOfTypeName(QualType Ty, llvm::GlobalVariable::LinkageTypes Linkage);
37
Anders Carlsson1d7088d2009-12-17 07:09:17 +000038 /// GetAddrOfExternalRTTIDescriptor - Returns the constant for the RTTI
39 /// descriptor of the given type.
40 llvm::Constant *GetAddrOfExternalRTTIDescriptor(QualType Ty);
41
Anders Carlsson046c2942010-04-17 20:15:18 +000042 /// BuildVTablePointer - Build the vtable pointer for the given type.
43 void BuildVTablePointer(const Type *Ty);
Anders Carlsson8d145152009-12-20 22:30:54 +000044
Anders Carlssonf64531a2009-12-30 01:00:12 +000045 /// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
Anders Carlsson08148092009-12-30 23:47:56 +000046 /// inheritance, according to the Itanium C++ ABI, 2.9.5p6b.
Anders Carlssonf64531a2009-12-30 01:00:12 +000047 void BuildSIClassTypeInfo(const CXXRecordDecl *RD);
48
Anders Carlsson08148092009-12-30 23:47:56 +000049 /// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
50 /// classes with bases that do not satisfy the abi::__si_class_type_info
51 /// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
52 void BuildVMIClassTypeInfo(const CXXRecordDecl *RD);
53
Anders Carlssonf64531a2009-12-30 01:00:12 +000054 /// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct, used
55 /// for pointer types.
John McCalle8dc53e2010-08-12 02:17:33 +000056 void BuildPointerTypeInfo(QualType PointeeTy);
57
58 /// BuildObjCObjectTypeInfo - Build the appropriate kind of
59 /// type_info for an object type.
60 void BuildObjCObjectTypeInfo(const ObjCObjectType *Ty);
Anders Carlsson8d145152009-12-20 22:30:54 +000061
62 /// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
63 /// struct, used for member pointer types.
64 void BuildPointerToMemberTypeInfo(const MemberPointerType *Ty);
65
Mike Stump2b1bf312009-11-14 14:25:18 +000066public:
Anders Carlsson237f9592011-01-29 22:15:18 +000067 RTTIBuilder(CodeGenModule &CGM) : CGM(CGM),
68 VMContext(CGM.getModule().getContext()),
69 Int8PtrTy(llvm::Type::getInt8PtrTy(VMContext)) { }
Mike Stump2b1bf312009-11-14 14:25:18 +000070
Anders Carlsson8d145152009-12-20 22:30:54 +000071 // Pointer type info flags.
72 enum {
73 /// PTI_Const - Type has const qualifier.
74 PTI_Const = 0x1,
75
76 /// PTI_Volatile - Type has volatile qualifier.
77 PTI_Volatile = 0x2,
78
79 /// PTI_Restrict - Type has restrict qualifier.
80 PTI_Restrict = 0x4,
81
82 /// PTI_Incomplete - Type is incomplete.
83 PTI_Incomplete = 0x8,
84
85 /// PTI_ContainingClassIncomplete - Containing class is incomplete.
86 /// (in pointer to member).
87 PTI_ContainingClassIncomplete = 0x10
88 };
Anders Carlsson08148092009-12-30 23:47:56 +000089
90 // VMI type info flags.
91 enum {
92 /// VMI_NonDiamondRepeat - Class has non-diamond repeated inheritance.
93 VMI_NonDiamondRepeat = 0x1,
94
95 /// VMI_DiamondShaped - Class is diamond shaped.
96 VMI_DiamondShaped = 0x2
97 };
98
99 // Base class type info flags.
100 enum {
101 /// BCTI_Virtual - Base class is virtual.
102 BCTI_Virtual = 0x1,
103
104 /// BCTI_Public - Base class is public.
105 BCTI_Public = 0x2
106 };
Anders Carlsson531d55f2009-12-31 17:43:53 +0000107
108 /// BuildTypeInfo - Build the RTTI type info struct for the given type.
John McCall9dffe6f2010-04-30 01:15:21 +0000109 ///
110 /// \param Force - true to force the creation of this RTTI value
111 /// \param ForEH - true if this is for exception handling
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000112 llvm::Constant *BuildTypeInfo(QualType Ty, bool Force = false);
Mike Stump2b1bf312009-11-14 14:25:18 +0000113};
Mike Stump92f2fe22009-12-02 19:07:44 +0000114}
Mike Stump2b1bf312009-11-14 14:25:18 +0000115
Anders Carlsson9a86a132011-01-29 20:36:11 +0000116llvm::GlobalVariable *
117RTTIBuilder::GetAddrOfTypeName(QualType Ty,
118 llvm::GlobalVariable::LinkageTypes Linkage) {
119 llvm::SmallString<256> OutName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000120 llvm::raw_svector_ostream Out(OutName);
121 CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(Ty, Out);
122 Out.flush();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000123 StringRef Name = OutName.str();
Anders Carlsson9a86a132011-01-29 20:36:11 +0000124
125 // We know that the mangled name of the type starts at index 4 of the
126 // mangled name of the typename, so we can just index into it in order to
127 // get the mangled name of the type.
Argyrios Kyrtzidis5d3a4bb2012-02-01 06:36:49 +0000128 llvm::Constant *Init = llvm::ConstantArray::get(VMContext, Name.substr(4));
Anders Carlsson9a86a132011-01-29 20:36:11 +0000129
130 llvm::GlobalVariable *GV =
131 CGM.CreateOrReplaceCXXRuntimeVariable(Name, Init->getType(), Linkage);
132
133 GV->setInitializer(Init);
134
135 return GV;
136}
137
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000138llvm::Constant *RTTIBuilder::GetAddrOfExternalRTTIDescriptor(QualType Ty) {
139 // Mangle the RTTI name.
140 llvm::SmallString<256> OutName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000141 llvm::raw_svector_ostream Out(OutName);
142 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out);
143 Out.flush();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000144 StringRef Name = OutName.str();
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000145
Anders Carlsson8d145152009-12-20 22:30:54 +0000146 // Look for an existing global.
147 llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(Name);
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000148
149 if (!GV) {
150 // Create a new global variable.
151 GV = new llvm::GlobalVariable(CGM.getModule(), Int8PtrTy, /*Constant=*/true,
152 llvm::GlobalValue::ExternalLinkage, 0, Name);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000153 }
154
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000155 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000156}
157
Anders Carlsson8d145152009-12-20 22:30:54 +0000158/// TypeInfoIsInStandardLibrary - Given a builtin type, returns whether the type
159/// info for that type is defined in the standard library.
160static bool TypeInfoIsInStandardLibrary(const BuiltinType *Ty) {
161 // Itanium C++ ABI 2.9.2:
162 // Basic type information (e.g. for "int", "bool", etc.) will be kept in
163 // the run-time support library. Specifically, the run-time support
164 // library should contain type_info objects for the types X, X* and
Anders Carlsson2bd62502010-11-04 05:28:09 +0000165 // X const*, for every X in: void, std::nullptr_t, bool, wchar_t, char,
166 // unsigned char, signed char, short, unsigned short, int, unsigned int,
167 // long, unsigned long, long long, unsigned long long, float, double,
168 // long double, char16_t, char32_t, and the IEEE 754r decimal and
169 // half-precision floating point types.
Anders Carlsson8d145152009-12-20 22:30:54 +0000170 switch (Ty->getKind()) {
171 case BuiltinType::Void:
Anders Carlsson2bd62502010-11-04 05:28:09 +0000172 case BuiltinType::NullPtr:
Anders Carlsson8d145152009-12-20 22:30:54 +0000173 case BuiltinType::Bool:
Chris Lattner3f59c972010-12-25 23:25:43 +0000174 case BuiltinType::WChar_S:
175 case BuiltinType::WChar_U:
Anders Carlsson8d145152009-12-20 22:30:54 +0000176 case BuiltinType::Char_U:
177 case BuiltinType::Char_S:
178 case BuiltinType::UChar:
179 case BuiltinType::SChar:
180 case BuiltinType::Short:
181 case BuiltinType::UShort:
182 case BuiltinType::Int:
183 case BuiltinType::UInt:
184 case BuiltinType::Long:
185 case BuiltinType::ULong:
186 case BuiltinType::LongLong:
187 case BuiltinType::ULongLong:
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000188 case BuiltinType::Half:
Anders Carlsson8d145152009-12-20 22:30:54 +0000189 case BuiltinType::Float:
190 case BuiltinType::Double:
191 case BuiltinType::LongDouble:
192 case BuiltinType::Char16:
193 case BuiltinType::Char32:
194 case BuiltinType::Int128:
195 case BuiltinType::UInt128:
196 return true;
197
Anders Carlsson8d145152009-12-20 22:30:54 +0000198 case BuiltinType::Dependent:
John McCall2dde35b2011-10-18 22:28:37 +0000199#define BUILTIN_TYPE(Id, SingletonId)
200#define PLACEHOLDER_TYPE(Id, SingletonId) \
201 case BuiltinType::Id:
202#include "clang/AST/BuiltinTypes.def"
John McCall864c0412011-04-26 20:42:42 +0000203 llvm_unreachable("asking for RRTI for a placeholder type!");
Anders Carlsson8d145152009-12-20 22:30:54 +0000204
Anders Carlsson8d145152009-12-20 22:30:54 +0000205 case BuiltinType::ObjCId:
206 case BuiltinType::ObjCClass:
207 case BuiltinType::ObjCSel:
David Blaikieb219cfc2011-09-23 05:06:16 +0000208 llvm_unreachable("FIXME: Objective-C types are unsupported!");
Anders Carlsson8d145152009-12-20 22:30:54 +0000209 }
David Blaikie30263482012-01-20 21:50:17 +0000210
211 llvm_unreachable("Invalid BuiltinType Kind!");
Anders Carlsson8d145152009-12-20 22:30:54 +0000212}
213
214static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
215 QualType PointeeTy = PointerTy->getPointeeType();
216 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
217 if (!BuiltinTy)
218 return false;
219
220 // Check the qualifiers.
221 Qualifiers Quals = PointeeTy.getQualifiers();
222 Quals.removeConst();
223
224 if (!Quals.empty())
225 return false;
226
227 return TypeInfoIsInStandardLibrary(BuiltinTy);
228}
229
John McCallcbfe5022010-08-04 08:34:44 +0000230/// IsStandardLibraryRTTIDescriptor - Returns whether the type
231/// information for the given type exists in the standard library.
232static bool IsStandardLibraryRTTIDescriptor(QualType Ty) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000233 // Type info for builtin types is defined in the standard library.
234 if (const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(Ty))
235 return TypeInfoIsInStandardLibrary(BuiltinTy);
236
237 // Type info for some pointer types to builtin types is defined in the
238 // standard library.
239 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
240 return TypeInfoIsInStandardLibrary(PointerTy);
241
John McCallcbfe5022010-08-04 08:34:44 +0000242 return false;
243}
244
245/// ShouldUseExternalRTTIDescriptor - Returns whether the type information for
246/// the given type exists somewhere else, and that we should not emit the type
247/// information in this translation unit. Assumes that it is not a
248/// standard-library type.
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000249static bool ShouldUseExternalRTTIDescriptor(CodeGenModule &CGM, QualType Ty) {
250 ASTContext &Context = CGM.getContext();
251
John McCall9dffe6f2010-04-30 01:15:21 +0000252 // If RTTI is disabled, don't consider key functions.
253 if (!Context.getLangOptions().RTTI) return false;
254
Anders Carlsson8d145152009-12-20 22:30:54 +0000255 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000256 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
John McCall86ff3082010-02-04 22:26:26 +0000257 if (!RD->hasDefinition())
258 return false;
259
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000260 if (!RD->isDynamicClass())
261 return false;
262
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000263 return !CGM.getVTables().ShouldEmitVTableInThisTU(RD);
Anders Carlsson8d145152009-12-20 22:30:54 +0000264 }
265
266 return false;
267}
268
269/// IsIncompleteClassType - Returns whether the given record type is incomplete.
270static bool IsIncompleteClassType(const RecordType *RecordTy) {
John McCall5e1cdac2011-10-07 06:10:15 +0000271 return !RecordTy->getDecl()->isCompleteDefinition();
Anders Carlsson8d145152009-12-20 22:30:54 +0000272}
273
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000274/// ContainsIncompleteClassType - Returns whether the given type contains an
275/// incomplete class type. This is true if
276///
277/// * The given type is an incomplete class type.
278/// * The given type is a pointer type whose pointee type contains an
279/// incomplete class type.
280/// * The given type is a member pointer type whose class is an incomplete
281/// class type.
282/// * The given type is a member pointer type whoise pointee type contains an
283/// incomplete class type.
Anders Carlsson8d145152009-12-20 22:30:54 +0000284/// is an indirect or direct pointer to an incomplete class type.
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000285static bool ContainsIncompleteClassType(QualType Ty) {
286 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
287 if (IsIncompleteClassType(RecordTy))
288 return true;
289 }
290
291 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
292 return ContainsIncompleteClassType(PointerTy->getPointeeType());
293
294 if (const MemberPointerType *MemberPointerTy =
295 dyn_cast<MemberPointerType>(Ty)) {
296 // Check if the class type is incomplete.
297 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass());
298 if (IsIncompleteClassType(ClassType))
299 return true;
300
301 return ContainsIncompleteClassType(MemberPointerTy->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000302 }
303
304 return false;
305}
306
307/// getTypeInfoLinkage - Return the linkage that the type info and type info
308/// name constants should have for the given type.
Anders Carlsson3a717f72011-01-24 02:04:33 +0000309static llvm::GlobalVariable::LinkageTypes
310getTypeInfoLinkage(CodeGenModule &CGM, QualType Ty) {
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000311 // Itanium C++ ABI 2.9.5p7:
312 // In addition, it and all of the intermediate abi::__pointer_type_info
313 // structs in the chain down to the abi::__class_type_info for the
314 // incomplete class type must be prevented from resolving to the
315 // corresponding type_info structs for the complete class type, possibly
316 // by making them local static objects. Finally, a dummy class RTTI is
317 // generated for the incomplete type that will not resolve to the final
318 // complete class RTTI (because the latter need not exist), possibly by
319 // making it a local static object.
320 if (ContainsIncompleteClassType(Ty))
321 return llvm::GlobalValue::InternalLinkage;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000322
Douglas Gregor031b3712010-03-31 00:15:35 +0000323 switch (Ty->getLinkage()) {
324 case NoLinkage:
325 case InternalLinkage:
326 case UniqueExternalLinkage:
327 return llvm::GlobalValue::InternalLinkage;
Anders Carlsson978ef682009-12-29 21:58:32 +0000328
Douglas Gregor031b3712010-03-31 00:15:35 +0000329 case ExternalLinkage:
Anders Carlssone34e3aa2011-01-24 02:12:11 +0000330 if (!CGM.getLangOptions().RTTI) {
331 // RTTI is not enabled, which means that this type info struct is going
332 // to be used for exception handling. Give it linkonce_odr linkage.
333 return llvm::GlobalValue::LinkOnceODRLinkage;
334 }
335
Douglas Gregor031b3712010-03-31 00:15:35 +0000336 if (const RecordType *Record = dyn_cast<RecordType>(Ty)) {
337 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
Fariborz Jahanian13c7fcc2011-10-21 22:27:12 +0000338 if (RD->hasAttr<WeakAttr>())
339 return llvm::GlobalValue::WeakODRLinkage;
Douglas Gregor031b3712010-03-31 00:15:35 +0000340 if (RD->isDynamicClass())
Anders Carlsson3a717f72011-01-24 02:04:33 +0000341 return CGM.getVTableLinkage(RD);
Mike Stumpc8f76f52009-12-24 01:10:27 +0000342 }
Douglas Gregor031b3712010-03-31 00:15:35 +0000343
Anders Carlssonf502d932011-01-24 00:46:19 +0000344 return llvm::GlobalValue::LinkOnceODRLinkage;
Mike Stumpc8f76f52009-12-24 01:10:27 +0000345 }
Anders Carlsson978ef682009-12-29 21:58:32 +0000346
David Blaikie30263482012-01-20 21:50:17 +0000347 llvm_unreachable("Invalid linkage!");
Anders Carlsson8d145152009-12-20 22:30:54 +0000348}
349
Anders Carlssonf64531a2009-12-30 01:00:12 +0000350// CanUseSingleInheritance - Return whether the given record decl has a "single,
351// public, non-virtual base at offset zero (i.e. the derived class is dynamic
352// iff the base is)", according to Itanium C++ ABI, 2.95p6b.
353static bool CanUseSingleInheritance(const CXXRecordDecl *RD) {
354 // Check the number of bases.
355 if (RD->getNumBases() != 1)
356 return false;
357
358 // Get the base.
359 CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin();
360
361 // Check that the base is not virtual.
362 if (Base->isVirtual())
363 return false;
364
365 // Check that the base is public.
366 if (Base->getAccessSpecifier() != AS_public)
367 return false;
368
369 // Check that the class is dynamic iff the base is.
370 const CXXRecordDecl *BaseDecl =
371 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
372 if (!BaseDecl->isEmpty() &&
373 BaseDecl->isDynamicClass() != RD->isDynamicClass())
374 return false;
375
376 return true;
377}
378
Anders Carlsson046c2942010-04-17 20:15:18 +0000379void RTTIBuilder::BuildVTablePointer(const Type *Ty) {
John McCalle8dc53e2010-08-12 02:17:33 +0000380 // abi::__class_type_info.
381 static const char * const ClassTypeInfo =
382 "_ZTVN10__cxxabiv117__class_type_infoE";
383 // abi::__si_class_type_info.
384 static const char * const SIClassTypeInfo =
385 "_ZTVN10__cxxabiv120__si_class_type_infoE";
386 // abi::__vmi_class_type_info.
387 static const char * const VMIClassTypeInfo =
388 "_ZTVN10__cxxabiv121__vmi_class_type_infoE";
389
Eli Friedman1cf26f52010-08-11 20:41:51 +0000390 const char *VTableName = 0;
Anders Carlsson8d145152009-12-20 22:30:54 +0000391
392 switch (Ty->getTypeClass()) {
Eli Friedman1cf26f52010-08-11 20:41:51 +0000393#define TYPE(Class, Base)
394#define ABSTRACT_TYPE(Class, Base)
395#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
396#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
397#define DEPENDENT_TYPE(Class, Base) case Type::Class:
398#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +0000399 llvm_unreachable("Non-canonical and dependent types shouldn't get here");
Eli Friedman1cf26f52010-08-11 20:41:51 +0000400
401 case Type::LValueReference:
402 case Type::RValueReference:
David Blaikieb219cfc2011-09-23 05:06:16 +0000403 llvm_unreachable("References shouldn't get here");
Anders Carlsson978ef682009-12-29 21:58:32 +0000404
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000405 case Type::Builtin:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000406 // GCC treats vector and complex types as fundamental types.
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000407 case Type::Vector:
408 case Type::ExtVector:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000409 case Type::Complex:
Eli Friedmanb001de72011-10-06 23:00:33 +0000410 case Type::Atomic:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000411 // FIXME: GCC treats block pointers as fundamental types?!
412 case Type::BlockPointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000413 // abi::__fundamental_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000414 VTableName = "_ZTVN10__cxxabiv123__fundamental_type_infoE";
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000415 break;
416
Anders Carlsson978ef682009-12-29 21:58:32 +0000417 case Type::ConstantArray:
418 case Type::IncompleteArray:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000419 case Type::VariableArray:
Anders Carlsson08148092009-12-30 23:47:56 +0000420 // abi::__array_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000421 VTableName = "_ZTVN10__cxxabiv117__array_type_infoE";
Anders Carlsson978ef682009-12-29 21:58:32 +0000422 break;
423
424 case Type::FunctionNoProto:
425 case Type::FunctionProto:
Anders Carlsson08148092009-12-30 23:47:56 +0000426 // abi::__function_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000427 VTableName = "_ZTVN10__cxxabiv120__function_type_infoE";
Anders Carlsson978ef682009-12-29 21:58:32 +0000428 break;
429
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000430 case Type::Enum:
Anders Carlsson08148092009-12-30 23:47:56 +0000431 // abi::__enum_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000432 VTableName = "_ZTVN10__cxxabiv116__enum_type_infoE";
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000433 break;
John McCalle8dc53e2010-08-12 02:17:33 +0000434
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000435 case Type::Record: {
436 const CXXRecordDecl *RD =
437 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
Anders Carlsson08148092009-12-30 23:47:56 +0000438
John McCall86ff3082010-02-04 22:26:26 +0000439 if (!RD->hasDefinition() || !RD->getNumBases()) {
John McCalle8dc53e2010-08-12 02:17:33 +0000440 VTableName = ClassTypeInfo;
Anders Carlssonf64531a2009-12-30 01:00:12 +0000441 } else if (CanUseSingleInheritance(RD)) {
John McCalle8dc53e2010-08-12 02:17:33 +0000442 VTableName = SIClassTypeInfo;
Anders Carlssonf64531a2009-12-30 01:00:12 +0000443 } else {
John McCalle8dc53e2010-08-12 02:17:33 +0000444 VTableName = VMIClassTypeInfo;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000445 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000446
447 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000448 }
449
Eli Friedman1cf26f52010-08-11 20:41:51 +0000450 case Type::ObjCObject:
John McCalle8dc53e2010-08-12 02:17:33 +0000451 // Ignore protocol qualifiers.
452 Ty = cast<ObjCObjectType>(Ty)->getBaseType().getTypePtr();
453
454 // Handle id and Class.
455 if (isa<BuiltinType>(Ty)) {
456 VTableName = ClassTypeInfo;
457 break;
458 }
459
460 assert(isa<ObjCInterfaceType>(Ty));
461 // Fall through.
462
Eli Friedman1cf26f52010-08-11 20:41:51 +0000463 case Type::ObjCInterface:
John McCalle8dc53e2010-08-12 02:17:33 +0000464 if (cast<ObjCInterfaceType>(Ty)->getDecl()->getSuperClass()) {
465 VTableName = SIClassTypeInfo;
466 } else {
467 VTableName = ClassTypeInfo;
468 }
Eli Friedman1cf26f52010-08-11 20:41:51 +0000469 break;
470
John McCalle8dc53e2010-08-12 02:17:33 +0000471 case Type::ObjCObjectPointer:
Anders Carlsson8d145152009-12-20 22:30:54 +0000472 case Type::Pointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000473 // abi::__pointer_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000474 VTableName = "_ZTVN10__cxxabiv119__pointer_type_infoE";
Anders Carlsson8d145152009-12-20 22:30:54 +0000475 break;
Anders Carlsson978ef682009-12-29 21:58:32 +0000476
Anders Carlsson8d145152009-12-20 22:30:54 +0000477 case Type::MemberPointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000478 // abi::__pointer_to_member_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000479 VTableName = "_ZTVN10__cxxabiv129__pointer_to_member_type_infoE";
Anders Carlsson8d145152009-12-20 22:30:54 +0000480 break;
481 }
482
Anders Carlsson046c2942010-04-17 20:15:18 +0000483 llvm::Constant *VTable =
484 CGM.getModule().getOrInsertGlobal(VTableName, Int8PtrTy);
Anders Carlsson8d145152009-12-20 22:30:54 +0000485
Chris Lattner2acc6e32011-07-18 04:24:23 +0000486 llvm::Type *PtrDiffTy =
Anders Carlsson8d145152009-12-20 22:30:54 +0000487 CGM.getTypes().ConvertType(CGM.getContext().getPointerDiffType());
488
489 // The vtable address point is 2.
490 llvm::Constant *Two = llvm::ConstantInt::get(PtrDiffTy, 2);
Jay Foada5c04342011-07-21 14:31:17 +0000491 VTable = llvm::ConstantExpr::getInBoundsGetElementPtr(VTable, Two);
Anders Carlsson046c2942010-04-17 20:15:18 +0000492 VTable = llvm::ConstantExpr::getBitCast(VTable, Int8PtrTy);
Anders Carlsson8d145152009-12-20 22:30:54 +0000493
Anders Carlsson046c2942010-04-17 20:15:18 +0000494 Fields.push_back(VTable);
Anders Carlsson8d145152009-12-20 22:30:54 +0000495}
496
Anders Carlsson6d7f8472011-01-30 20:45:54 +0000497// maybeUpdateRTTILinkage - Will update the linkage of the RTTI data structures
498// from available_externally to the correct linkage if necessary. An example of
499// this is:
500//
501// struct A {
502// virtual void f();
503// };
504//
505// const std::type_info &g() {
506// return typeid(A);
507// }
508//
509// void A::f() { }
510//
511// When we're generating the typeid(A) expression, we do not yet know that
512// A's key function is defined in this translation unit, so we will give the
513// typeinfo and typename structures available_externally linkage. When A::f
514// forces the vtable to be generated, we need to change the linkage of the
515// typeinfo and typename structs, otherwise we'll end up with undefined
516// externals when linking.
517static void
518maybeUpdateRTTILinkage(CodeGenModule &CGM, llvm::GlobalVariable *GV,
519 QualType Ty) {
520 // We're only interested in globals with available_externally linkage.
521 if (!GV->hasAvailableExternallyLinkage())
522 return;
523
524 // Get the real linkage for the type.
525 llvm::GlobalVariable::LinkageTypes Linkage = getTypeInfoLinkage(CGM, Ty);
526
527 // If variable is supposed to have available_externally linkage, we don't
528 // need to do anything.
529 if (Linkage == llvm::GlobalVariable::AvailableExternallyLinkage)
530 return;
531
532 // Update the typeinfo linkage.
533 GV->setLinkage(Linkage);
534
535 // Get the typename global.
536 llvm::SmallString<256> OutName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000537 llvm::raw_svector_ostream Out(OutName);
538 CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(Ty, Out);
539 Out.flush();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000540 StringRef Name = OutName.str();
Anders Carlsson6d7f8472011-01-30 20:45:54 +0000541
542 llvm::GlobalVariable *TypeNameGV = CGM.getModule().getNamedGlobal(Name);
543
544 assert(TypeNameGV->hasAvailableExternallyLinkage() &&
545 "Type name has different linkage from type info!");
546
547 // And update its linkage.
548 TypeNameGV->setLinkage(Linkage);
549}
550
John McCallcbfe5022010-08-04 08:34:44 +0000551llvm::Constant *RTTIBuilder::BuildTypeInfo(QualType Ty, bool Force) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000552 // We want to operate on the canonical type.
553 Ty = CGM.getContext().getCanonicalType(Ty);
554
555 // Check if we've already emitted an RTTI descriptor for this type.
556 llvm::SmallString<256> OutName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000557 llvm::raw_svector_ostream Out(OutName);
558 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, Out);
559 Out.flush();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000560 StringRef Name = OutName.str();
Anders Carlsson1cbce122011-01-29 19:16:51 +0000561
Anders Carlsson8d145152009-12-20 22:30:54 +0000562 llvm::GlobalVariable *OldGV = CGM.getModule().getNamedGlobal(Name);
Anders Carlsson6d7f8472011-01-30 20:45:54 +0000563 if (OldGV && !OldGV->isDeclaration()) {
564 maybeUpdateRTTILinkage(CGM, OldGV, Ty);
565
Anders Carlsson8d145152009-12-20 22:30:54 +0000566 return llvm::ConstantExpr::getBitCast(OldGV, Int8PtrTy);
Anders Carlsson6d7f8472011-01-30 20:45:54 +0000567 }
John McCallcbfe5022010-08-04 08:34:44 +0000568
Anders Carlsson8d145152009-12-20 22:30:54 +0000569 // Check if there is already an external RTTI descriptor for this type.
John McCallcbfe5022010-08-04 08:34:44 +0000570 bool IsStdLib = IsStandardLibraryRTTIDescriptor(Ty);
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000571 if (!Force && (IsStdLib || ShouldUseExternalRTTIDescriptor(CGM, Ty)))
Anders Carlsson8d145152009-12-20 22:30:54 +0000572 return GetAddrOfExternalRTTIDescriptor(Ty);
573
John McCallcbfe5022010-08-04 08:34:44 +0000574 // Emit the standard library with external linkage.
575 llvm::GlobalVariable::LinkageTypes Linkage;
576 if (IsStdLib)
577 Linkage = llvm::GlobalValue::ExternalLinkage;
578 else
Anders Carlsson3a717f72011-01-24 02:04:33 +0000579 Linkage = getTypeInfoLinkage(CGM, Ty);
Anders Carlsson8d145152009-12-20 22:30:54 +0000580
581 // Add the vtable pointer.
Anders Carlsson046c2942010-04-17 20:15:18 +0000582 BuildVTablePointer(cast<Type>(Ty));
Anders Carlsson8d145152009-12-20 22:30:54 +0000583
584 // And the name.
Anders Carlsson9a86a132011-01-29 20:36:11 +0000585 llvm::GlobalVariable *TypeName = GetAddrOfTypeName(Ty, Linkage);
586
Chris Lattner2acc6e32011-07-18 04:24:23 +0000587 llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Anders Carlsson907c8282011-01-29 22:10:32 +0000588 Fields.push_back(llvm::ConstantExpr::getBitCast(TypeName, Int8PtrTy));
John McCallcbfe5022010-08-04 08:34:44 +0000589
Anders Carlsson8d145152009-12-20 22:30:54 +0000590 switch (Ty->getTypeClass()) {
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000591#define TYPE(Class, Base)
592#define ABSTRACT_TYPE(Class, Base)
593#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
594#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
595#define DEPENDENT_TYPE(Class, Base) case Type::Class:
596#include "clang/AST/TypeNodes.def"
David Blaikieb219cfc2011-09-23 05:06:16 +0000597 llvm_unreachable("Non-canonical and dependent types shouldn't get here");
Anders Carlsson8d145152009-12-20 22:30:54 +0000598
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000599 // GCC treats vector types as fundamental types.
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000600 case Type::Builtin:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000601 case Type::Vector:
602 case Type::ExtVector:
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000603 case Type::Complex:
604 case Type::BlockPointer:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000605 // Itanium C++ ABI 2.9.5p4:
606 // abi::__fundamental_type_info adds no data members to std::type_info.
607 break;
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000608
609 case Type::LValueReference:
610 case Type::RValueReference:
David Blaikieb219cfc2011-09-23 05:06:16 +0000611 llvm_unreachable("References shouldn't get here");
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000612
Anders Carlsson978ef682009-12-29 21:58:32 +0000613 case Type::ConstantArray:
614 case Type::IncompleteArray:
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000615 case Type::VariableArray:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000616 // Itanium C++ ABI 2.9.5p5:
617 // abi::__array_type_info adds no data members to std::type_info.
Anders Carlsson978ef682009-12-29 21:58:32 +0000618 break;
619
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000620 case Type::FunctionNoProto:
621 case Type::FunctionProto:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000622 // Itanium C++ ABI 2.9.5p5:
623 // abi::__function_type_info adds no data members to std::type_info.
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000624 break;
625
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000626 case Type::Enum:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000627 // Itanium C++ ABI 2.9.5p5:
628 // abi::__enum_type_info adds no data members to std::type_info.
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000629 break;
630
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000631 case Type::Record: {
632 const CXXRecordDecl *RD =
633 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
John McCall86ff3082010-02-04 22:26:26 +0000634 if (!RD->hasDefinition() || !RD->getNumBases()) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000635 // We don't need to emit any fields.
636 break;
637 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000638
Anders Carlsson08148092009-12-30 23:47:56 +0000639 if (CanUseSingleInheritance(RD))
Anders Carlssonf64531a2009-12-30 01:00:12 +0000640 BuildSIClassTypeInfo(RD);
Anders Carlsson08148092009-12-30 23:47:56 +0000641 else
642 BuildVMIClassTypeInfo(RD);
643
644 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000645 }
John McCalle8dc53e2010-08-12 02:17:33 +0000646
647 case Type::ObjCObject:
648 case Type::ObjCInterface:
649 BuildObjCObjectTypeInfo(cast<ObjCObjectType>(Ty));
650 break;
651
652 case Type::ObjCObjectPointer:
653 BuildPointerTypeInfo(cast<ObjCObjectPointerType>(Ty)->getPointeeType());
654 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000655
Anders Carlsson8d145152009-12-20 22:30:54 +0000656 case Type::Pointer:
John McCalle8dc53e2010-08-12 02:17:33 +0000657 BuildPointerTypeInfo(cast<PointerType>(Ty)->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000658 break;
John McCalle8dc53e2010-08-12 02:17:33 +0000659
Anders Carlsson8d145152009-12-20 22:30:54 +0000660 case Type::MemberPointer:
661 BuildPointerToMemberTypeInfo(cast<MemberPointerType>(Ty));
662 break;
Eli Friedmanb001de72011-10-06 23:00:33 +0000663
664 case Type::Atomic:
665 // No fields, at least for the moment.
666 break;
Anders Carlsson8d145152009-12-20 22:30:54 +0000667 }
668
Chris Lattnerc5cbb902011-06-20 04:01:35 +0000669 llvm::Constant *Init = llvm::ConstantStruct::getAnon(Fields);
Anders Carlsson8d145152009-12-20 22:30:54 +0000670
671 llvm::GlobalVariable *GV =
672 new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
673 /*Constant=*/true, Linkage, Init, Name);
674
675 // If there's already an old global variable, replace it with the new one.
676 if (OldGV) {
677 GV->takeName(OldGV);
678 llvm::Constant *NewPtr =
679 llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
680 OldGV->replaceAllUsesWith(NewPtr);
681 OldGV->eraseFromParent();
682 }
John McCallcbfe5022010-08-04 08:34:44 +0000683
684 // GCC only relies on the uniqueness of the type names, not the
685 // type_infos themselves, so we can emit these as hidden symbols.
John McCall279b5eb2010-08-12 23:36:15 +0000686 // But don't do this if we're worried about strict visibility
687 // compatibility.
Anders Carlsson9a86a132011-01-29 20:36:11 +0000688 if (const RecordType *RT = dyn_cast<RecordType>(Ty)) {
689 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
690
691 CGM.setTypeVisibility(GV, RD, CodeGenModule::TVK_ForRTTI);
692 CGM.setTypeVisibility(TypeName, RD, CodeGenModule::TVK_ForRTTIName);
Anders Carlsson907c8282011-01-29 22:10:32 +0000693 } else {
694 Visibility TypeInfoVisibility = DefaultVisibility;
695 if (CGM.getCodeGenOpts().HiddenWeakVTables &&
696 Linkage == llvm::GlobalValue::LinkOnceODRLinkage)
697 TypeInfoVisibility = HiddenVisibility;
Anders Carlsson9a86a132011-01-29 20:36:11 +0000698
Anders Carlsson907c8282011-01-29 22:10:32 +0000699 // The type name should have the same visibility as the type itself.
700 Visibility ExplicitVisibility = Ty->getVisibility();
701 TypeName->setVisibility(CodeGenModule::
702 GetLLVMVisibility(ExplicitVisibility));
703
704 TypeInfoVisibility = minVisibility(TypeInfoVisibility, Ty->getVisibility());
705 GV->setVisibility(CodeGenModule::GetLLVMVisibility(TypeInfoVisibility));
Rafael Espindolab1c65ff2011-01-11 21:44:37 +0000706 }
Anders Carlsson907c8282011-01-29 22:10:32 +0000707
Rafael Espindola57244f62011-01-11 23:55:05 +0000708 GV->setUnnamedAddr(true);
709
Anders Carlsson8d145152009-12-20 22:30:54 +0000710 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
711}
712
Anders Carlsson08148092009-12-30 23:47:56 +0000713/// ComputeQualifierFlags - Compute the pointer type info flags from the
Anders Carlsson8d145152009-12-20 22:30:54 +0000714/// given qualifier.
Anders Carlsson08148092009-12-30 23:47:56 +0000715static unsigned ComputeQualifierFlags(Qualifiers Quals) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000716 unsigned Flags = 0;
717
718 if (Quals.hasConst())
719 Flags |= RTTIBuilder::PTI_Const;
720 if (Quals.hasVolatile())
721 Flags |= RTTIBuilder::PTI_Volatile;
722 if (Quals.hasRestrict())
723 Flags |= RTTIBuilder::PTI_Restrict;
724
725 return Flags;
726}
727
John McCalle8dc53e2010-08-12 02:17:33 +0000728/// BuildObjCObjectTypeInfo - Build the appropriate kind of type_info
729/// for the given Objective-C object type.
730void RTTIBuilder::BuildObjCObjectTypeInfo(const ObjCObjectType *OT) {
731 // Drop qualifiers.
732 const Type *T = OT->getBaseType().getTypePtr();
733 assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T));
734
735 // The builtin types are abi::__class_type_infos and don't require
736 // extra fields.
737 if (isa<BuiltinType>(T)) return;
738
739 ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl();
740 ObjCInterfaceDecl *Super = Class->getSuperClass();
741
742 // Root classes are also __class_type_info.
743 if (!Super) return;
744
745 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super);
746
747 // Everything else is single inheritance.
748 llvm::Constant *BaseTypeInfo = RTTIBuilder(CGM).BuildTypeInfo(SuperTy);
749 Fields.push_back(BaseTypeInfo);
750}
751
Anders Carlssonf64531a2009-12-30 01:00:12 +0000752/// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
753/// inheritance, according to the Itanium C++ ABI, 2.95p6b.
754void RTTIBuilder::BuildSIClassTypeInfo(const CXXRecordDecl *RD) {
755 // Itanium C++ ABI 2.9.5p6b:
756 // It adds to abi::__class_type_info a single member pointing to the
757 // type_info structure for the base type,
Anders Carlsson531d55f2009-12-31 17:43:53 +0000758 llvm::Constant *BaseTypeInfo =
759 RTTIBuilder(CGM).BuildTypeInfo(RD->bases_begin()->getType());
760 Fields.push_back(BaseTypeInfo);
Anders Carlssonf64531a2009-12-30 01:00:12 +0000761}
762
Benjamin Kramer79ba2a62010-10-22 16:48:22 +0000763namespace {
764 /// SeenBases - Contains virtual and non-virtual bases seen when traversing
765 /// a class hierarchy.
766 struct SeenBases {
767 llvm::SmallPtrSet<const CXXRecordDecl *, 16> NonVirtualBases;
768 llvm::SmallPtrSet<const CXXRecordDecl *, 16> VirtualBases;
769 };
770}
Anders Carlsson08148092009-12-30 23:47:56 +0000771
772/// ComputeVMIClassTypeInfoFlags - Compute the value of the flags member in
773/// abi::__vmi_class_type_info.
774///
775static unsigned ComputeVMIClassTypeInfoFlags(const CXXBaseSpecifier *Base,
776 SeenBases &Bases) {
777
778 unsigned Flags = 0;
779
780 const CXXRecordDecl *BaseDecl =
781 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
782
783 if (Base->isVirtual()) {
784 if (Bases.VirtualBases.count(BaseDecl)) {
785 // If this virtual base has been seen before, then the class is diamond
786 // shaped.
787 Flags |= RTTIBuilder::VMI_DiamondShaped;
788 } else {
789 if (Bases.NonVirtualBases.count(BaseDecl))
790 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
791
792 // Mark the virtual base as seen.
793 Bases.VirtualBases.insert(BaseDecl);
794 }
795 } else {
796 if (Bases.NonVirtualBases.count(BaseDecl)) {
797 // If this non-virtual base has been seen before, then the class has non-
798 // diamond shaped repeated inheritance.
799 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
800 } else {
801 if (Bases.VirtualBases.count(BaseDecl))
802 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
803
804 // Mark the non-virtual base as seen.
805 Bases.NonVirtualBases.insert(BaseDecl);
806 }
807 }
808
809 // Walk all bases.
810 for (CXXRecordDecl::base_class_const_iterator I = BaseDecl->bases_begin(),
811 E = BaseDecl->bases_end(); I != E; ++I)
812 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
813
814 return Flags;
815}
816
817static unsigned ComputeVMIClassTypeInfoFlags(const CXXRecordDecl *RD) {
818 unsigned Flags = 0;
819 SeenBases Bases;
820
821 // Walk all bases.
822 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
823 E = RD->bases_end(); I != E; ++I)
824 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
825
826 return Flags;
827}
828
829/// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
830/// classes with bases that do not satisfy the abi::__si_class_type_info
831/// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
832void RTTIBuilder::BuildVMIClassTypeInfo(const CXXRecordDecl *RD) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000833 llvm::Type *UnsignedIntLTy =
Anders Carlsson08148092009-12-30 23:47:56 +0000834 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
835
836 // Itanium C++ ABI 2.9.5p6c:
837 // __flags is a word with flags describing details about the class
838 // structure, which may be referenced by using the __flags_masks
839 // enumeration. These flags refer to both direct and indirect bases.
840 unsigned Flags = ComputeVMIClassTypeInfoFlags(RD);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000841 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson08148092009-12-30 23:47:56 +0000842
843 // Itanium C++ ABI 2.9.5p6c:
844 // __base_count is a word with the number of direct proper base class
845 // descriptions that follow.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000846 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, RD->getNumBases()));
Anders Carlsson08148092009-12-30 23:47:56 +0000847
848 if (!RD->getNumBases())
849 return;
850
Chris Lattner2acc6e32011-07-18 04:24:23 +0000851 llvm::Type *LongLTy =
Anders Carlsson08148092009-12-30 23:47:56 +0000852 CGM.getTypes().ConvertType(CGM.getContext().LongTy);
853
854 // Now add the base class descriptions.
855
856 // Itanium C++ ABI 2.9.5p6c:
857 // __base_info[] is an array of base class descriptions -- one for every
858 // direct proper base. Each description is of the type:
859 //
860 // struct abi::__base_class_type_info {
Eli Friedmana7e68452010-08-22 01:00:03 +0000861 // public:
Anders Carlsson08148092009-12-30 23:47:56 +0000862 // const __class_type_info *__base_type;
863 // long __offset_flags;
864 //
865 // enum __offset_flags_masks {
866 // __virtual_mask = 0x1,
867 // __public_mask = 0x2,
868 // __offset_shift = 8
869 // };
870 // };
871 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
872 E = RD->bases_end(); I != E; ++I) {
873 const CXXBaseSpecifier *Base = I;
874
875 // The __base_type member points to the RTTI for the base type.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000876 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(Base->getType()));
Anders Carlsson08148092009-12-30 23:47:56 +0000877
878 const CXXRecordDecl *BaseDecl =
879 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
880
881 int64_t OffsetFlags = 0;
882
883 // All but the lower 8 bits of __offset_flags are a signed offset.
884 // For a non-virtual base, this is the offset in the object of the base
885 // subobject. For a virtual base, this is the offset in the virtual table of
886 // the virtual base offset for the virtual base referenced (negative).
Ken Dyckb653d5a2011-04-09 01:09:56 +0000887 CharUnits Offset;
Anders Carlsson08148092009-12-30 23:47:56 +0000888 if (Base->isVirtual())
Ken Dyckb653d5a2011-04-09 01:09:56 +0000889 Offset =
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000890 CGM.getVTableContext().getVirtualBaseOffsetOffset(RD, BaseDecl);
Anders Carlsson08148092009-12-30 23:47:56 +0000891 else {
892 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
Ken Dyckb653d5a2011-04-09 01:09:56 +0000893 Offset = Layout.getBaseClassOffset(BaseDecl);
Anders Carlsson08148092009-12-30 23:47:56 +0000894 };
895
Ken Dyckb653d5a2011-04-09 01:09:56 +0000896 OffsetFlags = Offset.getQuantity() << 8;
Anders Carlsson08148092009-12-30 23:47:56 +0000897
898 // The low-order byte of __offset_flags contains flags, as given by the
899 // masks from the enumeration __offset_flags_masks.
900 if (Base->isVirtual())
901 OffsetFlags |= BCTI_Virtual;
902 if (Base->getAccessSpecifier() == AS_public)
903 OffsetFlags |= BCTI_Public;
904
Anders Carlsson531d55f2009-12-31 17:43:53 +0000905 Fields.push_back(llvm::ConstantInt::get(LongLTy, OffsetFlags));
Anders Carlsson08148092009-12-30 23:47:56 +0000906 }
907}
908
Anders Carlsson8d145152009-12-20 22:30:54 +0000909/// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct,
910/// used for pointer types.
John McCalle8dc53e2010-08-12 02:17:33 +0000911void RTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) {
Anders Carlssonabd6b092010-06-02 15:44:35 +0000912 Qualifiers Quals;
913 QualType UnqualifiedPointeeTy =
914 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
915
Anders Carlsson8d145152009-12-20 22:30:54 +0000916 // Itanium C++ ABI 2.9.5p7:
917 // __flags is a flag word describing the cv-qualification and other
918 // attributes of the type pointed to
Anders Carlssonabd6b092010-06-02 15:44:35 +0000919 unsigned Flags = ComputeQualifierFlags(Quals);
Anders Carlsson8d145152009-12-20 22:30:54 +0000920
921 // Itanium C++ ABI 2.9.5p7:
922 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
923 // incomplete class type, the incomplete target type flag is set.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000924 if (ContainsIncompleteClassType(UnqualifiedPointeeTy))
Anders Carlsson8d145152009-12-20 22:30:54 +0000925 Flags |= PTI_Incomplete;
926
Chris Lattner2acc6e32011-07-18 04:24:23 +0000927 llvm::Type *UnsignedIntLTy =
Anders Carlsson8d145152009-12-20 22:30:54 +0000928 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000929 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000930
931 // Itanium C++ ABI 2.9.5p7:
932 // __pointee is a pointer to the std::type_info derivation for the
933 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000934 llvm::Constant *PointeeTypeInfo =
Anders Carlssonabd6b092010-06-02 15:44:35 +0000935 RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000936 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000937}
938
939/// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
940/// struct, used for member pointer types.
941void RTTIBuilder::BuildPointerToMemberTypeInfo(const MemberPointerType *Ty) {
942 QualType PointeeTy = Ty->getPointeeType();
943
Anders Carlssonabd6b092010-06-02 15:44:35 +0000944 Qualifiers Quals;
945 QualType UnqualifiedPointeeTy =
946 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
947
Anders Carlsson8d145152009-12-20 22:30:54 +0000948 // Itanium C++ ABI 2.9.5p7:
949 // __flags is a flag word describing the cv-qualification and other
950 // attributes of the type pointed to.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000951 unsigned Flags = ComputeQualifierFlags(Quals);
Anders Carlsson8d145152009-12-20 22:30:54 +0000952
953 const RecordType *ClassType = cast<RecordType>(Ty->getClass());
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000954
955 // Itanium C++ ABI 2.9.5p7:
956 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
957 // incomplete class type, the incomplete target type flag is set.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000958 if (ContainsIncompleteClassType(UnqualifiedPointeeTy))
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000959 Flags |= PTI_Incomplete;
960
Anders Carlsson8d145152009-12-20 22:30:54 +0000961 if (IsIncompleteClassType(ClassType))
962 Flags |= PTI_ContainingClassIncomplete;
963
Chris Lattner2acc6e32011-07-18 04:24:23 +0000964 llvm::Type *UnsignedIntLTy =
Anders Carlsson8d145152009-12-20 22:30:54 +0000965 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000966 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000967
968 // Itanium C++ ABI 2.9.5p7:
969 // __pointee is a pointer to the std::type_info derivation for the
970 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000971 llvm::Constant *PointeeTypeInfo =
Anders Carlssonabd6b092010-06-02 15:44:35 +0000972 RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000973 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000974
975 // Itanium C++ ABI 2.9.5p9:
976 // __context is a pointer to an abi::__class_type_info corresponding to the
977 // class type containing the member pointed to
978 // (e.g., the "A" in "int A::*").
Anders Carlsson531d55f2009-12-31 17:43:53 +0000979 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(QualType(ClassType, 0)));
Anders Carlsson8d145152009-12-20 22:30:54 +0000980}
981
John McCall9dffe6f2010-04-30 01:15:21 +0000982llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty,
983 bool ForEH) {
984 // Return a bogus pointer if RTTI is disabled, unless it's for EH.
985 // FIXME: should we even be calling this method if RTTI is disabled
986 // and it's not for EH?
987 if (!ForEH && !getContext().getLangOptions().RTTI) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000988 llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000989 return llvm::Constant::getNullValue(Int8PtrTy);
990 }
David Chisnall80558d22011-03-20 21:35:39 +0000991
992 if (ForEH && Ty->isObjCObjectPointerType() && !Features.NeXTRuntime) {
Peter Collingbournee9265232011-07-27 20:29:46 +0000993 return ObjCRuntime->GetEHType(Ty);
David Chisnall80558d22011-03-20 21:35:39 +0000994 }
John McCall9dffe6f2010-04-30 01:15:21 +0000995
Anders Carlsson531d55f2009-12-31 17:43:53 +0000996 return RTTIBuilder(*this).BuildTypeInfo(Ty);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000997}
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000998
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000999void CodeGenModule::EmitFundamentalRTTIDescriptor(QualType Type) {
1000 QualType PointerType = Context.getPointerType(Type);
1001 QualType PointerTypeConst = Context.getPointerType(Type.withConst());
1002 RTTIBuilder(*this).BuildTypeInfo(Type, true);
1003 RTTIBuilder(*this).BuildTypeInfo(PointerType, true);
1004 RTTIBuilder(*this).BuildTypeInfo(PointerTypeConst, true);
1005}
1006
1007void CodeGenModule::EmitFundamentalRTTIDescriptors() {
Anders Carlsson2bd62502010-11-04 05:28:09 +00001008 QualType FundamentalTypes[] = { Context.VoidTy, Context.NullPtrTy,
1009 Context.BoolTy, Context.WCharTy,
1010 Context.CharTy, Context.UnsignedCharTy,
1011 Context.SignedCharTy, Context.ShortTy,
1012 Context.UnsignedShortTy, Context.IntTy,
1013 Context.UnsignedIntTy, Context.LongTy,
1014 Context.UnsignedLongTy, Context.LongLongTy,
1015 Context.UnsignedLongLongTy, Context.FloatTy,
1016 Context.DoubleTy, Context.LongDoubleTy,
1017 Context.Char16Ty, Context.Char32Ty };
Rafael Espindolad1a5c312010-03-27 02:52:14 +00001018 for (unsigned i = 0; i < sizeof(FundamentalTypes)/sizeof(QualType); ++i)
1019 EmitFundamentalRTTIDescriptor(FundamentalTypes[i]);
1020}