blob: 2e527d084cc41ad9f14f24cf1d9837700825f334 [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"
19
Anders Carlsson656e4c12009-10-10 20:49:04 +000020using namespace clang;
21using namespace CodeGen;
22
Mike Stump92f2fe22009-12-02 19:07:44 +000023namespace {
Mike Stumpde050572009-12-02 18:57:08 +000024class RTTIBuilder {
Mike Stump2b1bf312009-11-14 14:25:18 +000025 CodeGenModule &CGM; // Per-module state.
26 llvm::LLVMContext &VMContext;
Anders Carlsson8d145152009-12-20 22:30:54 +000027
Anders Carlsson08148092009-12-30 23:47:56 +000028 const llvm::Type *Int8PtrTy;
Anders Carlsson531d55f2009-12-31 17:43:53 +000029
30 /// Fields - The fields of the RTTI descriptor currently being built.
31 llvm::SmallVector<llvm::Constant *, 16> Fields;
Anders Carlssond6baec82009-12-11 01:27:37 +000032
Anders Carlsson1d7088d2009-12-17 07:09:17 +000033 /// GetAddrOfExternalRTTIDescriptor - Returns the constant for the RTTI
34 /// descriptor of the given type.
35 llvm::Constant *GetAddrOfExternalRTTIDescriptor(QualType Ty);
36
Anders Carlsson046c2942010-04-17 20:15:18 +000037 /// BuildVTablePointer - Build the vtable pointer for the given type.
38 void BuildVTablePointer(const Type *Ty);
Anders Carlsson8d145152009-12-20 22:30:54 +000039
Anders Carlssonf64531a2009-12-30 01:00:12 +000040 /// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
Anders Carlsson08148092009-12-30 23:47:56 +000041 /// inheritance, according to the Itanium C++ ABI, 2.9.5p6b.
Anders Carlssonf64531a2009-12-30 01:00:12 +000042 void BuildSIClassTypeInfo(const CXXRecordDecl *RD);
43
Anders Carlsson08148092009-12-30 23:47:56 +000044 /// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
45 /// classes with bases that do not satisfy the abi::__si_class_type_info
46 /// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
47 void BuildVMIClassTypeInfo(const CXXRecordDecl *RD);
48
Anders Carlssonf64531a2009-12-30 01:00:12 +000049 /// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct, used
50 /// for pointer types.
John McCalle8dc53e2010-08-12 02:17:33 +000051 void BuildPointerTypeInfo(QualType PointeeTy);
52
53 /// BuildObjCObjectTypeInfo - Build the appropriate kind of
54 /// type_info for an object type.
55 void BuildObjCObjectTypeInfo(const ObjCObjectType *Ty);
Anders Carlsson8d145152009-12-20 22:30:54 +000056
57 /// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
58 /// struct, used for member pointer types.
59 void BuildPointerToMemberTypeInfo(const MemberPointerType *Ty);
60
Mike Stump2b1bf312009-11-14 14:25:18 +000061public:
Mike Stumpde050572009-12-02 18:57:08 +000062 RTTIBuilder(CodeGenModule &cgm)
Mike Stump2b1bf312009-11-14 14:25:18 +000063 : CGM(cgm), VMContext(cgm.getModule().getContext()),
64 Int8PtrTy(llvm::Type::getInt8PtrTy(VMContext)) { }
65
Anders Carlsson31b7f522009-12-11 02:46:30 +000066 llvm::Constant *BuildName(QualType Ty, bool Hidden,
67 llvm::GlobalVariable::LinkageTypes Linkage) {
Mike Stump2b1bf312009-11-14 14:25:18 +000068 llvm::SmallString<256> OutName;
John McCall4c40d982010-08-31 07:33:07 +000069 CGM.getCXXABI().getMangleContext().mangleCXXRTTIName(Ty, OutName);
Daniel Dunbar94fd26d2009-11-21 09:06:22 +000070 llvm::StringRef Name = OutName.str();
Mike Stumpcbcd4e52009-11-14 23:32:21 +000071
Anders Carlsson8d145152009-12-20 22:30:54 +000072 llvm::GlobalVariable *OGV = CGM.getModule().getNamedGlobal(Name);
Anders Carlsson31b7f522009-12-11 02:46:30 +000073 if (OGV && !OGV->isDeclaration())
74 return llvm::ConstantExpr::getBitCast(OGV, Int8PtrTy);
Mike Stump58588942009-11-19 01:08:19 +000075
Anders Carlsson31b7f522009-12-11 02:46:30 +000076 llvm::Constant *C = llvm::ConstantArray::get(VMContext, Name.substr(4));
Mike Stump2b1bf312009-11-14 14:25:18 +000077
Anders Carlsson31b7f522009-12-11 02:46:30 +000078 llvm::GlobalVariable *GV =
79 new llvm::GlobalVariable(CGM.getModule(), C->getType(), true, Linkage,
80 C, Name);
Mike Stump58588942009-11-19 01:08:19 +000081 if (OGV) {
82 GV->takeName(OGV);
83 llvm::Constant *NewPtr = llvm::ConstantExpr::getBitCast(GV,
84 OGV->getType());
85 OGV->replaceAllUsesWith(NewPtr);
86 OGV->eraseFromParent();
87 }
Argyrios Kyrtzidis6d576052010-10-11 03:25:53 +000088 if (Hidden && Linkage != llvm::GlobalValue::InternalLinkage)
Mike Stump582b0372009-11-18 03:46:51 +000089 GV->setVisibility(llvm::GlobalVariable::HiddenVisibility);
90 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
Daniel Dunbar7177dee2009-12-19 17:50:07 +000091 }
Mike Stumpc7a05bd2009-11-14 15:55:18 +000092
Mike Stump4e6f8ee2009-12-24 02:33:48 +000093 // FIXME: unify with DecideExtern
Mike Stump58588942009-11-19 01:08:19 +000094 bool DecideHidden(QualType Ty) {
95 // For this type, see if all components are never hidden.
96 if (const MemberPointerType *MPT = Ty->getAs<MemberPointerType>())
97 return (DecideHidden(MPT->getPointeeType())
98 && DecideHidden(QualType(MPT->getClass(), 0)));
99 if (const PointerType *PT = Ty->getAs<PointerType>())
100 return DecideHidden(PT->getPointeeType());
Mike Stump4e6f8ee2009-12-24 02:33:48 +0000101 if (const FunctionType *FT = Ty->getAs<FunctionType>()) {
102 if (DecideHidden(FT->getResultType()) == false)
103 return false;
104 if (const FunctionProtoType *FPT = Ty->getAs<FunctionProtoType>()) {
105 for (unsigned i = 0; i <FPT->getNumArgs(); ++i)
106 if (DecideHidden(FPT->getArgType(i)) == false)
107 return false;
108 for (unsigned i = 0; i <FPT->getNumExceptions(); ++i)
109 if (DecideHidden(FPT->getExceptionType(i)) == false)
110 return false;
111 return true;
112 }
113 }
Mike Stump58588942009-11-19 01:08:19 +0000114 if (const RecordType *RT = Ty->getAs<RecordType>())
115 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
John McCall1fb0caa2010-10-22 21:05:15 +0000116 return RD->getVisibility() == HiddenVisibility;
Mike Stump58588942009-11-19 01:08:19 +0000117 return false;
118 }
Anders Carlsson31b7f522009-12-11 02:46:30 +0000119
Anders Carlsson8d145152009-12-20 22:30:54 +0000120 // Pointer type info flags.
121 enum {
122 /// PTI_Const - Type has const qualifier.
123 PTI_Const = 0x1,
124
125 /// PTI_Volatile - Type has volatile qualifier.
126 PTI_Volatile = 0x2,
127
128 /// PTI_Restrict - Type has restrict qualifier.
129 PTI_Restrict = 0x4,
130
131 /// PTI_Incomplete - Type is incomplete.
132 PTI_Incomplete = 0x8,
133
134 /// PTI_ContainingClassIncomplete - Containing class is incomplete.
135 /// (in pointer to member).
136 PTI_ContainingClassIncomplete = 0x10
137 };
Anders Carlsson08148092009-12-30 23:47:56 +0000138
139 // VMI type info flags.
140 enum {
141 /// VMI_NonDiamondRepeat - Class has non-diamond repeated inheritance.
142 VMI_NonDiamondRepeat = 0x1,
143
144 /// VMI_DiamondShaped - Class is diamond shaped.
145 VMI_DiamondShaped = 0x2
146 };
147
148 // Base class type info flags.
149 enum {
150 /// BCTI_Virtual - Base class is virtual.
151 BCTI_Virtual = 0x1,
152
153 /// BCTI_Public - Base class is public.
154 BCTI_Public = 0x2
155 };
Anders Carlsson531d55f2009-12-31 17:43:53 +0000156
157 /// BuildTypeInfo - Build the RTTI type info struct for the given type.
John McCall9dffe6f2010-04-30 01:15:21 +0000158 ///
159 /// \param Force - true to force the creation of this RTTI value
160 /// \param ForEH - true if this is for exception handling
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000161 llvm::Constant *BuildTypeInfo(QualType Ty, bool Force = false);
Mike Stump2b1bf312009-11-14 14:25:18 +0000162};
Mike Stump92f2fe22009-12-02 19:07:44 +0000163}
Mike Stump2b1bf312009-11-14 14:25:18 +0000164
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000165llvm::Constant *RTTIBuilder::GetAddrOfExternalRTTIDescriptor(QualType Ty) {
166 // Mangle the RTTI name.
167 llvm::SmallString<256> OutName;
John McCall4c40d982010-08-31 07:33:07 +0000168 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, OutName);
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000169 llvm::StringRef Name = OutName.str();
170
Anders Carlsson8d145152009-12-20 22:30:54 +0000171 // Look for an existing global.
172 llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(Name);
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000173
174 if (!GV) {
175 // Create a new global variable.
176 GV = new llvm::GlobalVariable(CGM.getModule(), Int8PtrTy, /*Constant=*/true,
177 llvm::GlobalValue::ExternalLinkage, 0, Name);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000178 }
179
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000180 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000181}
182
Anders Carlsson8d145152009-12-20 22:30:54 +0000183/// TypeInfoIsInStandardLibrary - Given a builtin type, returns whether the type
184/// info for that type is defined in the standard library.
185static bool TypeInfoIsInStandardLibrary(const BuiltinType *Ty) {
186 // Itanium C++ ABI 2.9.2:
187 // Basic type information (e.g. for "int", "bool", etc.) will be kept in
188 // the run-time support library. Specifically, the run-time support
189 // library should contain type_info objects for the types X, X* and
190 // X const*, for every X in: void, bool, wchar_t, char, unsigned char,
191 // signed char, short, unsigned short, int, unsigned int, long,
192 // unsigned long, long long, unsigned long long, float, double, long double,
193 // char16_t, char32_t, and the IEEE 754r decimal and half-precision
194 // floating point types.
195 switch (Ty->getKind()) {
196 case BuiltinType::Void:
197 case BuiltinType::Bool:
198 case BuiltinType::WChar:
199 case BuiltinType::Char_U:
200 case BuiltinType::Char_S:
201 case BuiltinType::UChar:
202 case BuiltinType::SChar:
203 case BuiltinType::Short:
204 case BuiltinType::UShort:
205 case BuiltinType::Int:
206 case BuiltinType::UInt:
207 case BuiltinType::Long:
208 case BuiltinType::ULong:
209 case BuiltinType::LongLong:
210 case BuiltinType::ULongLong:
211 case BuiltinType::Float:
212 case BuiltinType::Double:
213 case BuiltinType::LongDouble:
214 case BuiltinType::Char16:
215 case BuiltinType::Char32:
216 case BuiltinType::Int128:
217 case BuiltinType::UInt128:
218 return true;
219
220 case BuiltinType::Overload:
221 case BuiltinType::Dependent:
222 case BuiltinType::UndeducedAuto:
223 assert(false && "Should not see this type here!");
224
225 case BuiltinType::NullPtr:
226 assert(false && "FIXME: nullptr_t is not handled!");
227
228 case BuiltinType::ObjCId:
229 case BuiltinType::ObjCClass:
230 case BuiltinType::ObjCSel:
231 assert(false && "FIXME: Objective-C types are unsupported!");
232 }
233
234 // Silent gcc.
235 return false;
236}
237
238static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
239 QualType PointeeTy = PointerTy->getPointeeType();
240 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
241 if (!BuiltinTy)
242 return false;
243
244 // Check the qualifiers.
245 Qualifiers Quals = PointeeTy.getQualifiers();
246 Quals.removeConst();
247
248 if (!Quals.empty())
249 return false;
250
251 return TypeInfoIsInStandardLibrary(BuiltinTy);
252}
253
John McCallcbfe5022010-08-04 08:34:44 +0000254/// IsStandardLibraryRTTIDescriptor - Returns whether the type
255/// information for the given type exists in the standard library.
256static bool IsStandardLibraryRTTIDescriptor(QualType Ty) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000257 // Type info for builtin types is defined in the standard library.
258 if (const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(Ty))
259 return TypeInfoIsInStandardLibrary(BuiltinTy);
260
261 // Type info for some pointer types to builtin types is defined in the
262 // standard library.
263 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
264 return TypeInfoIsInStandardLibrary(PointerTy);
265
John McCallcbfe5022010-08-04 08:34:44 +0000266 return false;
267}
268
269/// ShouldUseExternalRTTIDescriptor - Returns whether the type information for
270/// the given type exists somewhere else, and that we should not emit the type
271/// information in this translation unit. Assumes that it is not a
272/// standard-library type.
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000273static bool ShouldUseExternalRTTIDescriptor(CodeGenModule &CGM, QualType Ty) {
274 ASTContext &Context = CGM.getContext();
275
John McCall9dffe6f2010-04-30 01:15:21 +0000276 // If RTTI is disabled, don't consider key functions.
277 if (!Context.getLangOptions().RTTI) return false;
278
Anders Carlsson8d145152009-12-20 22:30:54 +0000279 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000280 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
John McCall86ff3082010-02-04 22:26:26 +0000281 if (!RD->hasDefinition())
282 return false;
283
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000284 if (!RD->isDynamicClass())
285 return false;
286
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000287 return !CGM.getVTables().ShouldEmitVTableInThisTU(RD);
Anders Carlsson8d145152009-12-20 22:30:54 +0000288 }
289
290 return false;
291}
292
293/// IsIncompleteClassType - Returns whether the given record type is incomplete.
294static bool IsIncompleteClassType(const RecordType *RecordTy) {
295 return !RecordTy->getDecl()->isDefinition();
296}
297
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000298/// ContainsIncompleteClassType - Returns whether the given type contains an
299/// incomplete class type. This is true if
300///
301/// * The given type is an incomplete class type.
302/// * The given type is a pointer type whose pointee type contains an
303/// incomplete class type.
304/// * The given type is a member pointer type whose class is an incomplete
305/// class type.
306/// * The given type is a member pointer type whoise pointee type contains an
307/// incomplete class type.
Anders Carlsson8d145152009-12-20 22:30:54 +0000308/// is an indirect or direct pointer to an incomplete class type.
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000309static bool ContainsIncompleteClassType(QualType Ty) {
310 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
311 if (IsIncompleteClassType(RecordTy))
312 return true;
313 }
314
315 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
316 return ContainsIncompleteClassType(PointerTy->getPointeeType());
317
318 if (const MemberPointerType *MemberPointerTy =
319 dyn_cast<MemberPointerType>(Ty)) {
320 // Check if the class type is incomplete.
321 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass());
322 if (IsIncompleteClassType(ClassType))
323 return true;
324
325 return ContainsIncompleteClassType(MemberPointerTy->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000326 }
327
328 return false;
329}
330
331/// getTypeInfoLinkage - Return the linkage that the type info and type info
332/// name constants should have for the given type.
333static llvm::GlobalVariable::LinkageTypes getTypeInfoLinkage(QualType Ty) {
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000334 // Itanium C++ ABI 2.9.5p7:
335 // In addition, it and all of the intermediate abi::__pointer_type_info
336 // structs in the chain down to the abi::__class_type_info for the
337 // incomplete class type must be prevented from resolving to the
338 // corresponding type_info structs for the complete class type, possibly
339 // by making them local static objects. Finally, a dummy class RTTI is
340 // generated for the incomplete type that will not resolve to the final
341 // complete class RTTI (because the latter need not exist), possibly by
342 // making it a local static object.
343 if (ContainsIncompleteClassType(Ty))
344 return llvm::GlobalValue::InternalLinkage;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000345
Douglas Gregor031b3712010-03-31 00:15:35 +0000346 switch (Ty->getLinkage()) {
347 case NoLinkage:
348 case InternalLinkage:
349 case UniqueExternalLinkage:
350 return llvm::GlobalValue::InternalLinkage;
Anders Carlsson978ef682009-12-29 21:58:32 +0000351
Douglas Gregor031b3712010-03-31 00:15:35 +0000352 case ExternalLinkage:
353 if (const RecordType *Record = dyn_cast<RecordType>(Ty)) {
354 const CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
355 if (RD->isDynamicClass())
Anders Carlsson046c2942010-04-17 20:15:18 +0000356 return CodeGenModule::getVTableLinkage(RD);
Mike Stumpc8f76f52009-12-24 01:10:27 +0000357 }
Douglas Gregor031b3712010-03-31 00:15:35 +0000358
Mike Stumpc8f76f52009-12-24 01:10:27 +0000359 return llvm::GlobalValue::WeakODRLinkage;
360 }
Anders Carlsson978ef682009-12-29 21:58:32 +0000361
Anders Carlsson8d145152009-12-20 22:30:54 +0000362 return llvm::GlobalValue::WeakODRLinkage;
363}
364
Anders Carlssonf64531a2009-12-30 01:00:12 +0000365// CanUseSingleInheritance - Return whether the given record decl has a "single,
366// public, non-virtual base at offset zero (i.e. the derived class is dynamic
367// iff the base is)", according to Itanium C++ ABI, 2.95p6b.
368static bool CanUseSingleInheritance(const CXXRecordDecl *RD) {
369 // Check the number of bases.
370 if (RD->getNumBases() != 1)
371 return false;
372
373 // Get the base.
374 CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin();
375
376 // Check that the base is not virtual.
377 if (Base->isVirtual())
378 return false;
379
380 // Check that the base is public.
381 if (Base->getAccessSpecifier() != AS_public)
382 return false;
383
384 // Check that the class is dynamic iff the base is.
385 const CXXRecordDecl *BaseDecl =
386 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
387 if (!BaseDecl->isEmpty() &&
388 BaseDecl->isDynamicClass() != RD->isDynamicClass())
389 return false;
390
391 return true;
392}
393
Anders Carlsson046c2942010-04-17 20:15:18 +0000394void RTTIBuilder::BuildVTablePointer(const Type *Ty) {
John McCalle8dc53e2010-08-12 02:17:33 +0000395 // abi::__class_type_info.
396 static const char * const ClassTypeInfo =
397 "_ZTVN10__cxxabiv117__class_type_infoE";
398 // abi::__si_class_type_info.
399 static const char * const SIClassTypeInfo =
400 "_ZTVN10__cxxabiv120__si_class_type_infoE";
401 // abi::__vmi_class_type_info.
402 static const char * const VMIClassTypeInfo =
403 "_ZTVN10__cxxabiv121__vmi_class_type_infoE";
404
Eli Friedman1cf26f52010-08-11 20:41:51 +0000405 const char *VTableName = 0;
Anders Carlsson8d145152009-12-20 22:30:54 +0000406
407 switch (Ty->getTypeClass()) {
Eli Friedman1cf26f52010-08-11 20:41:51 +0000408#define TYPE(Class, Base)
409#define ABSTRACT_TYPE(Class, Base)
410#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
411#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
412#define DEPENDENT_TYPE(Class, Base) case Type::Class:
413#include "clang/AST/TypeNodes.def"
414 assert(false && "Non-canonical and dependent types shouldn't get here");
415
416 case Type::LValueReference:
417 case Type::RValueReference:
418 assert(false && "References shouldn't get here");
Anders Carlsson978ef682009-12-29 21:58:32 +0000419
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000420 case Type::Builtin:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000421 // GCC treats vector and complex types as fundamental types.
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000422 case Type::Vector:
423 case Type::ExtVector:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000424 case Type::Complex:
425 // FIXME: GCC treats block pointers as fundamental types?!
426 case Type::BlockPointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000427 // abi::__fundamental_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000428 VTableName = "_ZTVN10__cxxabiv123__fundamental_type_infoE";
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000429 break;
430
Anders Carlsson978ef682009-12-29 21:58:32 +0000431 case Type::ConstantArray:
432 case Type::IncompleteArray:
Eli Friedman1cf26f52010-08-11 20:41:51 +0000433 case Type::VariableArray:
Anders Carlsson08148092009-12-30 23:47:56 +0000434 // abi::__array_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000435 VTableName = "_ZTVN10__cxxabiv117__array_type_infoE";
Anders Carlsson978ef682009-12-29 21:58:32 +0000436 break;
437
438 case Type::FunctionNoProto:
439 case Type::FunctionProto:
Anders Carlsson08148092009-12-30 23:47:56 +0000440 // abi::__function_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000441 VTableName = "_ZTVN10__cxxabiv120__function_type_infoE";
Anders Carlsson978ef682009-12-29 21:58:32 +0000442 break;
443
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000444 case Type::Enum:
Anders Carlsson08148092009-12-30 23:47:56 +0000445 // abi::__enum_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000446 VTableName = "_ZTVN10__cxxabiv116__enum_type_infoE";
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000447 break;
John McCalle8dc53e2010-08-12 02:17:33 +0000448
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000449 case Type::Record: {
450 const CXXRecordDecl *RD =
451 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
Anders Carlsson08148092009-12-30 23:47:56 +0000452
John McCall86ff3082010-02-04 22:26:26 +0000453 if (!RD->hasDefinition() || !RD->getNumBases()) {
John McCalle8dc53e2010-08-12 02:17:33 +0000454 VTableName = ClassTypeInfo;
Anders Carlssonf64531a2009-12-30 01:00:12 +0000455 } else if (CanUseSingleInheritance(RD)) {
John McCalle8dc53e2010-08-12 02:17:33 +0000456 VTableName = SIClassTypeInfo;
Anders Carlssonf64531a2009-12-30 01:00:12 +0000457 } else {
John McCalle8dc53e2010-08-12 02:17:33 +0000458 VTableName = VMIClassTypeInfo;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000459 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000460
461 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000462 }
463
Eli Friedman1cf26f52010-08-11 20:41:51 +0000464 case Type::ObjCObject:
John McCalle8dc53e2010-08-12 02:17:33 +0000465 // 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
Eli Friedman1cf26f52010-08-11 20:41:51 +0000477 case Type::ObjCInterface:
John McCalle8dc53e2010-08-12 02:17:33 +0000478 if (cast<ObjCInterfaceType>(Ty)->getDecl()->getSuperClass()) {
479 VTableName = SIClassTypeInfo;
480 } else {
481 VTableName = ClassTypeInfo;
482 }
Eli Friedman1cf26f52010-08-11 20:41:51 +0000483 break;
484
John McCalle8dc53e2010-08-12 02:17:33 +0000485 case Type::ObjCObjectPointer:
Anders Carlsson8d145152009-12-20 22:30:54 +0000486 case Type::Pointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000487 // abi::__pointer_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000488 VTableName = "_ZTVN10__cxxabiv119__pointer_type_infoE";
Anders Carlsson8d145152009-12-20 22:30:54 +0000489 break;
Anders Carlsson978ef682009-12-29 21:58:32 +0000490
Anders Carlsson8d145152009-12-20 22:30:54 +0000491 case Type::MemberPointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000492 // abi::__pointer_to_member_type_info.
Anders Carlsson046c2942010-04-17 20:15:18 +0000493 VTableName = "_ZTVN10__cxxabiv129__pointer_to_member_type_infoE";
Anders Carlsson8d145152009-12-20 22:30:54 +0000494 break;
495 }
496
Anders Carlsson046c2942010-04-17 20:15:18 +0000497 llvm::Constant *VTable =
498 CGM.getModule().getOrInsertGlobal(VTableName, Int8PtrTy);
Anders Carlsson8d145152009-12-20 22:30:54 +0000499
500 const 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);
Anders Carlsson046c2942010-04-17 20:15:18 +0000505 VTable = llvm::ConstantExpr::getInBoundsGetElementPtr(VTable, &Two, 1);
506 VTable = llvm::ConstantExpr::getBitCast(VTable, Int8PtrTy);
Anders Carlsson8d145152009-12-20 22:30:54 +0000507
Anders Carlsson046c2942010-04-17 20:15:18 +0000508 Fields.push_back(VTable);
Anders Carlsson8d145152009-12-20 22:30:54 +0000509}
510
John McCallcbfe5022010-08-04 08:34:44 +0000511llvm::Constant *RTTIBuilder::BuildTypeInfo(QualType Ty, bool Force) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000512 // 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 llvm::SmallString<256> OutName;
John McCall4c40d982010-08-31 07:33:07 +0000517 CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty, OutName);
Anders Carlsson8d145152009-12-20 22:30:54 +0000518 llvm::StringRef Name = OutName.str();
519
520 llvm::GlobalVariable *OldGV = CGM.getModule().getNamedGlobal(Name);
521 if (OldGV && !OldGV->isDeclaration())
522 return llvm::ConstantExpr::getBitCast(OldGV, Int8PtrTy);
John McCallcbfe5022010-08-04 08:34:44 +0000523
Anders Carlsson8d145152009-12-20 22:30:54 +0000524 // Check if there is already an external RTTI descriptor for this type.
John McCallcbfe5022010-08-04 08:34:44 +0000525 bool IsStdLib = IsStandardLibraryRTTIDescriptor(Ty);
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000526 if (!Force && (IsStdLib || ShouldUseExternalRTTIDescriptor(CGM, Ty)))
Anders Carlsson8d145152009-12-20 22:30:54 +0000527 return GetAddrOfExternalRTTIDescriptor(Ty);
528
John McCallcbfe5022010-08-04 08:34:44 +0000529 // Emit the standard library with external linkage.
530 llvm::GlobalVariable::LinkageTypes Linkage;
531 if (IsStdLib)
532 Linkage = llvm::GlobalValue::ExternalLinkage;
533 else
534 Linkage = getTypeInfoLinkage(Ty);
Anders Carlsson8d145152009-12-20 22:30:54 +0000535
536 // Add the vtable pointer.
Anders Carlsson046c2942010-04-17 20:15:18 +0000537 BuildVTablePointer(cast<Type>(Ty));
Anders Carlsson8d145152009-12-20 22:30:54 +0000538
539 // And the name.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000540 Fields.push_back(BuildName(Ty, DecideHidden(Ty), Linkage));
John McCallcbfe5022010-08-04 08:34:44 +0000541
Anders Carlsson8d145152009-12-20 22:30:54 +0000542 switch (Ty->getTypeClass()) {
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000543#define TYPE(Class, Base)
544#define ABSTRACT_TYPE(Class, Base)
545#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
546#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
547#define DEPENDENT_TYPE(Class, Base) case Type::Class:
548#include "clang/AST/TypeNodes.def"
549 assert(false && "Non-canonical and dependent types shouldn't get here");
Anders Carlsson8d145152009-12-20 22:30:54 +0000550
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000551 // GCC treats vector types as fundamental types.
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000552 case Type::Builtin:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000553 case Type::Vector:
554 case Type::ExtVector:
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000555 case Type::Complex:
556 case Type::BlockPointer:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000557 // Itanium C++ ABI 2.9.5p4:
558 // abi::__fundamental_type_info adds no data members to std::type_info.
559 break;
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000560
561 case Type::LValueReference:
562 case Type::RValueReference:
563 assert(false && "References shouldn't get here");
564
Anders Carlsson978ef682009-12-29 21:58:32 +0000565 case Type::ConstantArray:
566 case Type::IncompleteArray:
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000567 case Type::VariableArray:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000568 // Itanium C++ ABI 2.9.5p5:
569 // abi::__array_type_info adds no data members to std::type_info.
Anders Carlsson978ef682009-12-29 21:58:32 +0000570 break;
571
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000572 case Type::FunctionNoProto:
573 case Type::FunctionProto:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000574 // Itanium C++ ABI 2.9.5p5:
575 // abi::__function_type_info adds no data members to std::type_info.
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000576 break;
577
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000578 case Type::Enum:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000579 // Itanium C++ ABI 2.9.5p5:
580 // abi::__enum_type_info adds no data members to std::type_info.
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000581 break;
582
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000583 case Type::Record: {
584 const CXXRecordDecl *RD =
585 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
John McCall86ff3082010-02-04 22:26:26 +0000586 if (!RD->hasDefinition() || !RD->getNumBases()) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000587 // We don't need to emit any fields.
588 break;
589 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000590
Anders Carlsson08148092009-12-30 23:47:56 +0000591 if (CanUseSingleInheritance(RD))
Anders Carlssonf64531a2009-12-30 01:00:12 +0000592 BuildSIClassTypeInfo(RD);
Anders Carlsson08148092009-12-30 23:47:56 +0000593 else
594 BuildVMIClassTypeInfo(RD);
595
596 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000597 }
John McCalle8dc53e2010-08-12 02:17:33 +0000598
599 case Type::ObjCObject:
600 case Type::ObjCInterface:
601 BuildObjCObjectTypeInfo(cast<ObjCObjectType>(Ty));
602 break;
603
604 case Type::ObjCObjectPointer:
605 BuildPointerTypeInfo(cast<ObjCObjectPointerType>(Ty)->getPointeeType());
606 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000607
Anders Carlsson8d145152009-12-20 22:30:54 +0000608 case Type::Pointer:
John McCalle8dc53e2010-08-12 02:17:33 +0000609 BuildPointerTypeInfo(cast<PointerType>(Ty)->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000610 break;
John McCalle8dc53e2010-08-12 02:17:33 +0000611
Anders Carlsson8d145152009-12-20 22:30:54 +0000612 case Type::MemberPointer:
613 BuildPointerToMemberTypeInfo(cast<MemberPointerType>(Ty));
614 break;
615 }
616
617 llvm::Constant *Init =
Anders Carlsson531d55f2009-12-31 17:43:53 +0000618 llvm::ConstantStruct::get(VMContext, &Fields[0], Fields.size(),
Anders Carlsson8d145152009-12-20 22:30:54 +0000619 /*Packed=*/false);
620
621 llvm::GlobalVariable *GV =
622 new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
623 /*Constant=*/true, Linkage, Init, Name);
624
625 // If there's already an old global variable, replace it with the new one.
626 if (OldGV) {
627 GV->takeName(OldGV);
628 llvm::Constant *NewPtr =
629 llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
630 OldGV->replaceAllUsesWith(NewPtr);
631 OldGV->eraseFromParent();
632 }
John McCallcbfe5022010-08-04 08:34:44 +0000633
634 // GCC only relies on the uniqueness of the type names, not the
635 // type_infos themselves, so we can emit these as hidden symbols.
John McCall279b5eb2010-08-12 23:36:15 +0000636 // But don't do this if we're worried about strict visibility
637 // compatibility.
John McCallcbfe5022010-08-04 08:34:44 +0000638 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
639 CGM.setTypeVisibility(GV, cast<CXXRecordDecl>(RT->getDecl()),
John McCallaf146032010-10-30 11:50:40 +0000640 /*ForRTTI*/ true, /*ForDefinition*/ true);
John McCall279b5eb2010-08-12 23:36:15 +0000641 else if (CGM.getCodeGenOpts().HiddenWeakVTables &&
642 Linkage == llvm::GlobalValue::WeakODRLinkage)
John McCallcbfe5022010-08-04 08:34:44 +0000643 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
644
Anders Carlsson8d145152009-12-20 22:30:54 +0000645 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
646}
647
Anders Carlsson08148092009-12-30 23:47:56 +0000648/// ComputeQualifierFlags - Compute the pointer type info flags from the
Anders Carlsson8d145152009-12-20 22:30:54 +0000649/// given qualifier.
Anders Carlsson08148092009-12-30 23:47:56 +0000650static unsigned ComputeQualifierFlags(Qualifiers Quals) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000651 unsigned Flags = 0;
652
653 if (Quals.hasConst())
654 Flags |= RTTIBuilder::PTI_Const;
655 if (Quals.hasVolatile())
656 Flags |= RTTIBuilder::PTI_Volatile;
657 if (Quals.hasRestrict())
658 Flags |= RTTIBuilder::PTI_Restrict;
659
660 return Flags;
661}
662
John McCalle8dc53e2010-08-12 02:17:33 +0000663/// BuildObjCObjectTypeInfo - Build the appropriate kind of type_info
664/// for the given Objective-C object type.
665void RTTIBuilder::BuildObjCObjectTypeInfo(const ObjCObjectType *OT) {
666 // Drop qualifiers.
667 const Type *T = OT->getBaseType().getTypePtr();
668 assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T));
669
670 // The builtin types are abi::__class_type_infos and don't require
671 // extra fields.
672 if (isa<BuiltinType>(T)) return;
673
674 ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl();
675 ObjCInterfaceDecl *Super = Class->getSuperClass();
676
677 // Root classes are also __class_type_info.
678 if (!Super) return;
679
680 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super);
681
682 // Everything else is single inheritance.
683 llvm::Constant *BaseTypeInfo = RTTIBuilder(CGM).BuildTypeInfo(SuperTy);
684 Fields.push_back(BaseTypeInfo);
685}
686
Anders Carlssonf64531a2009-12-30 01:00:12 +0000687/// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
688/// inheritance, according to the Itanium C++ ABI, 2.95p6b.
689void RTTIBuilder::BuildSIClassTypeInfo(const CXXRecordDecl *RD) {
690 // Itanium C++ ABI 2.9.5p6b:
691 // It adds to abi::__class_type_info a single member pointing to the
692 // type_info structure for the base type,
Anders Carlsson531d55f2009-12-31 17:43:53 +0000693 llvm::Constant *BaseTypeInfo =
694 RTTIBuilder(CGM).BuildTypeInfo(RD->bases_begin()->getType());
695 Fields.push_back(BaseTypeInfo);
Anders Carlssonf64531a2009-12-30 01:00:12 +0000696}
697
Benjamin Kramer79ba2a62010-10-22 16:48:22 +0000698namespace {
699 /// SeenBases - Contains virtual and non-virtual bases seen when traversing
700 /// a class hierarchy.
701 struct SeenBases {
702 llvm::SmallPtrSet<const CXXRecordDecl *, 16> NonVirtualBases;
703 llvm::SmallPtrSet<const CXXRecordDecl *, 16> VirtualBases;
704 };
705}
Anders Carlsson08148092009-12-30 23:47:56 +0000706
707/// ComputeVMIClassTypeInfoFlags - Compute the value of the flags member in
708/// abi::__vmi_class_type_info.
709///
710static unsigned ComputeVMIClassTypeInfoFlags(const CXXBaseSpecifier *Base,
711 SeenBases &Bases) {
712
713 unsigned Flags = 0;
714
715 const CXXRecordDecl *BaseDecl =
716 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
717
718 if (Base->isVirtual()) {
719 if (Bases.VirtualBases.count(BaseDecl)) {
720 // If this virtual base has been seen before, then the class is diamond
721 // shaped.
722 Flags |= RTTIBuilder::VMI_DiamondShaped;
723 } else {
724 if (Bases.NonVirtualBases.count(BaseDecl))
725 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
726
727 // Mark the virtual base as seen.
728 Bases.VirtualBases.insert(BaseDecl);
729 }
730 } else {
731 if (Bases.NonVirtualBases.count(BaseDecl)) {
732 // If this non-virtual base has been seen before, then the class has non-
733 // diamond shaped repeated inheritance.
734 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
735 } else {
736 if (Bases.VirtualBases.count(BaseDecl))
737 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
738
739 // Mark the non-virtual base as seen.
740 Bases.NonVirtualBases.insert(BaseDecl);
741 }
742 }
743
744 // Walk all bases.
745 for (CXXRecordDecl::base_class_const_iterator I = BaseDecl->bases_begin(),
746 E = BaseDecl->bases_end(); I != E; ++I)
747 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
748
749 return Flags;
750}
751
752static unsigned ComputeVMIClassTypeInfoFlags(const CXXRecordDecl *RD) {
753 unsigned Flags = 0;
754 SeenBases Bases;
755
756 // Walk all bases.
757 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
758 E = RD->bases_end(); I != E; ++I)
759 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
760
761 return Flags;
762}
763
764/// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
765/// classes with bases that do not satisfy the abi::__si_class_type_info
766/// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
767void RTTIBuilder::BuildVMIClassTypeInfo(const CXXRecordDecl *RD) {
768 const llvm::Type *UnsignedIntLTy =
769 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
770
771 // Itanium C++ ABI 2.9.5p6c:
772 // __flags is a word with flags describing details about the class
773 // structure, which may be referenced by using the __flags_masks
774 // enumeration. These flags refer to both direct and indirect bases.
775 unsigned Flags = ComputeVMIClassTypeInfoFlags(RD);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000776 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson08148092009-12-30 23:47:56 +0000777
778 // Itanium C++ ABI 2.9.5p6c:
779 // __base_count is a word with the number of direct proper base class
780 // descriptions that follow.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000781 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, RD->getNumBases()));
Anders Carlsson08148092009-12-30 23:47:56 +0000782
783 if (!RD->getNumBases())
784 return;
785
786 const llvm::Type *LongLTy =
787 CGM.getTypes().ConvertType(CGM.getContext().LongTy);
788
789 // Now add the base class descriptions.
790
791 // Itanium C++ ABI 2.9.5p6c:
792 // __base_info[] is an array of base class descriptions -- one for every
793 // direct proper base. Each description is of the type:
794 //
795 // struct abi::__base_class_type_info {
Eli Friedmana7e68452010-08-22 01:00:03 +0000796 // public:
Anders Carlsson08148092009-12-30 23:47:56 +0000797 // const __class_type_info *__base_type;
798 // long __offset_flags;
799 //
800 // enum __offset_flags_masks {
801 // __virtual_mask = 0x1,
802 // __public_mask = 0x2,
803 // __offset_shift = 8
804 // };
805 // };
806 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
807 E = RD->bases_end(); I != E; ++I) {
808 const CXXBaseSpecifier *Base = I;
809
810 // The __base_type member points to the RTTI for the base type.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000811 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(Base->getType()));
Anders Carlsson08148092009-12-30 23:47:56 +0000812
813 const CXXRecordDecl *BaseDecl =
814 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
815
816 int64_t OffsetFlags = 0;
817
818 // All but the lower 8 bits of __offset_flags are a signed offset.
819 // For a non-virtual base, this is the offset in the object of the base
820 // subobject. For a virtual base, this is the offset in the virtual table of
821 // the virtual base offset for the virtual base referenced (negative).
822 if (Base->isVirtual())
Anders Carlssonaf440352010-03-23 04:11:45 +0000823 OffsetFlags = CGM.getVTables().getVirtualBaseOffsetOffset(RD, BaseDecl);
Anders Carlsson08148092009-12-30 23:47:56 +0000824 else {
825 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
Anders Carlssona14f5972010-10-31 23:22:37 +0000826 OffsetFlags = Layout.getBaseClassOffsetInBits(BaseDecl) / 8;
Anders Carlsson08148092009-12-30 23:47:56 +0000827 };
828
829 OffsetFlags <<= 8;
830
831 // The low-order byte of __offset_flags contains flags, as given by the
832 // masks from the enumeration __offset_flags_masks.
833 if (Base->isVirtual())
834 OffsetFlags |= BCTI_Virtual;
835 if (Base->getAccessSpecifier() == AS_public)
836 OffsetFlags |= BCTI_Public;
837
Anders Carlsson531d55f2009-12-31 17:43:53 +0000838 Fields.push_back(llvm::ConstantInt::get(LongLTy, OffsetFlags));
Anders Carlsson08148092009-12-30 23:47:56 +0000839 }
840}
841
Anders Carlsson8d145152009-12-20 22:30:54 +0000842/// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct,
843/// used for pointer types.
John McCalle8dc53e2010-08-12 02:17:33 +0000844void RTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) {
Anders Carlssonabd6b092010-06-02 15:44:35 +0000845 Qualifiers Quals;
846 QualType UnqualifiedPointeeTy =
847 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
848
Anders Carlsson8d145152009-12-20 22:30:54 +0000849 // Itanium C++ ABI 2.9.5p7:
850 // __flags is a flag word describing the cv-qualification and other
851 // attributes of the type pointed to
Anders Carlssonabd6b092010-06-02 15:44:35 +0000852 unsigned Flags = ComputeQualifierFlags(Quals);
Anders Carlsson8d145152009-12-20 22:30:54 +0000853
854 // Itanium C++ ABI 2.9.5p7:
855 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
856 // incomplete class type, the incomplete target type flag is set.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000857 if (ContainsIncompleteClassType(UnqualifiedPointeeTy))
Anders Carlsson8d145152009-12-20 22:30:54 +0000858 Flags |= PTI_Incomplete;
859
860 const llvm::Type *UnsignedIntLTy =
861 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000862 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000863
864 // Itanium C++ ABI 2.9.5p7:
865 // __pointee is a pointer to the std::type_info derivation for the
866 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000867 llvm::Constant *PointeeTypeInfo =
Anders Carlssonabd6b092010-06-02 15:44:35 +0000868 RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000869 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000870}
871
872/// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
873/// struct, used for member pointer types.
874void RTTIBuilder::BuildPointerToMemberTypeInfo(const MemberPointerType *Ty) {
875 QualType PointeeTy = Ty->getPointeeType();
876
Anders Carlssonabd6b092010-06-02 15:44:35 +0000877 Qualifiers Quals;
878 QualType UnqualifiedPointeeTy =
879 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
880
Anders Carlsson8d145152009-12-20 22:30:54 +0000881 // Itanium C++ ABI 2.9.5p7:
882 // __flags is a flag word describing the cv-qualification and other
883 // attributes of the type pointed to.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000884 unsigned Flags = ComputeQualifierFlags(Quals);
Anders Carlsson8d145152009-12-20 22:30:54 +0000885
886 const RecordType *ClassType = cast<RecordType>(Ty->getClass());
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000887
888 // Itanium C++ ABI 2.9.5p7:
889 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
890 // incomplete class type, the incomplete target type flag is set.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000891 if (ContainsIncompleteClassType(UnqualifiedPointeeTy))
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000892 Flags |= PTI_Incomplete;
893
Anders Carlsson8d145152009-12-20 22:30:54 +0000894 if (IsIncompleteClassType(ClassType))
895 Flags |= PTI_ContainingClassIncomplete;
896
Anders Carlsson8d145152009-12-20 22:30:54 +0000897 const llvm::Type *UnsignedIntLTy =
898 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000899 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000900
901 // Itanium C++ ABI 2.9.5p7:
902 // __pointee is a pointer to the std::type_info derivation for the
903 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000904 llvm::Constant *PointeeTypeInfo =
Anders Carlssonabd6b092010-06-02 15:44:35 +0000905 RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000906 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000907
908 // Itanium C++ ABI 2.9.5p9:
909 // __context is a pointer to an abi::__class_type_info corresponding to the
910 // class type containing the member pointed to
911 // (e.g., the "A" in "int A::*").
Anders Carlsson531d55f2009-12-31 17:43:53 +0000912 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(QualType(ClassType, 0)));
Anders Carlsson8d145152009-12-20 22:30:54 +0000913}
914
John McCall9dffe6f2010-04-30 01:15:21 +0000915llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty,
916 bool ForEH) {
917 // Return a bogus pointer if RTTI is disabled, unless it's for EH.
918 // FIXME: should we even be calling this method if RTTI is disabled
919 // and it's not for EH?
920 if (!ForEH && !getContext().getLangOptions().RTTI) {
Anders Carlsson31b7f522009-12-11 02:46:30 +0000921 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
922 return llvm::Constant::getNullValue(Int8PtrTy);
923 }
John McCall9dffe6f2010-04-30 01:15:21 +0000924
Anders Carlsson531d55f2009-12-31 17:43:53 +0000925 return RTTIBuilder(*this).BuildTypeInfo(Ty);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000926}
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000927
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000928void CodeGenModule::EmitFundamentalRTTIDescriptor(QualType Type) {
929 QualType PointerType = Context.getPointerType(Type);
930 QualType PointerTypeConst = Context.getPointerType(Type.withConst());
931 RTTIBuilder(*this).BuildTypeInfo(Type, true);
932 RTTIBuilder(*this).BuildTypeInfo(PointerType, true);
933 RTTIBuilder(*this).BuildTypeInfo(PointerTypeConst, true);
934}
935
936void CodeGenModule::EmitFundamentalRTTIDescriptors() {
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000937 QualType FundamentalTypes[] = { Context.VoidTy, Context.Char32Ty,
938 Context.Char16Ty, Context.UnsignedLongLongTy,
939 Context.LongLongTy, Context.WCharTy,
940 Context.UnsignedShortTy, Context.ShortTy,
941 Context.UnsignedLongTy, Context.LongTy,
942 Context.UnsignedIntTy, Context.IntTy,
943 Context.UnsignedCharTy, Context.FloatTy,
944 Context.LongDoubleTy, Context.DoubleTy,
945 Context.CharTy, Context.BoolTy,
946 Context.SignedCharTy };
947 for (unsigned i = 0; i < sizeof(FundamentalTypes)/sizeof(QualType); ++i)
948 EmitFundamentalRTTIDescriptor(FundamentalTypes[i]);
949}