blob: dd7e059f19f46ea970cf1b496237e2ead13f040a [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
Anders Carlsson2bd62502010-11-04 05:28:09 +0000190 // X const*, for every X in: void, std::nullptr_t, bool, wchar_t, char,
191 // unsigned char, signed char, short, unsigned short, int, unsigned int,
192 // long, unsigned long, long long, unsigned long long, float, double,
193 // long double, char16_t, char32_t, and the IEEE 754r decimal and
194 // half-precision floating point types.
Anders Carlsson8d145152009-12-20 22:30:54 +0000195 switch (Ty->getKind()) {
196 case BuiltinType::Void:
Anders Carlsson2bd62502010-11-04 05:28:09 +0000197 case BuiltinType::NullPtr:
Anders Carlsson8d145152009-12-20 22:30:54 +0000198 case BuiltinType::Bool:
Chris Lattner3f59c972010-12-25 23:25:43 +0000199 case BuiltinType::WChar_S:
200 case BuiltinType::WChar_U:
Anders Carlsson8d145152009-12-20 22:30:54 +0000201 case BuiltinType::Char_U:
202 case BuiltinType::Char_S:
203 case BuiltinType::UChar:
204 case BuiltinType::SChar:
205 case BuiltinType::Short:
206 case BuiltinType::UShort:
207 case BuiltinType::Int:
208 case BuiltinType::UInt:
209 case BuiltinType::Long:
210 case BuiltinType::ULong:
211 case BuiltinType::LongLong:
212 case BuiltinType::ULongLong:
213 case BuiltinType::Float:
214 case BuiltinType::Double:
215 case BuiltinType::LongDouble:
216 case BuiltinType::Char16:
217 case BuiltinType::Char32:
218 case BuiltinType::Int128:
219 case BuiltinType::UInt128:
220 return true;
221
222 case BuiltinType::Overload:
223 case BuiltinType::Dependent:
224 case BuiltinType::UndeducedAuto:
225 assert(false && "Should not see this type here!");
226
Anders Carlsson8d145152009-12-20 22:30:54 +0000227 case BuiltinType::ObjCId:
228 case BuiltinType::ObjCClass:
229 case BuiltinType::ObjCSel:
230 assert(false && "FIXME: Objective-C types are unsupported!");
231 }
232
233 // Silent gcc.
234 return false;
235}
236
237static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
238 QualType PointeeTy = PointerTy->getPointeeType();
239 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
240 if (!BuiltinTy)
241 return false;
242
243 // Check the qualifiers.
244 Qualifiers Quals = PointeeTy.getQualifiers();
245 Quals.removeConst();
246
247 if (!Quals.empty())
248 return false;
249
250 return TypeInfoIsInStandardLibrary(BuiltinTy);
251}
252
John McCallcbfe5022010-08-04 08:34:44 +0000253/// IsStandardLibraryRTTIDescriptor - Returns whether the type
254/// information for the given type exists in the standard library.
255static bool IsStandardLibraryRTTIDescriptor(QualType Ty) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000256 // Type info for builtin types is defined in the standard library.
257 if (const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(Ty))
258 return TypeInfoIsInStandardLibrary(BuiltinTy);
259
260 // Type info for some pointer types to builtin types is defined in the
261 // standard library.
262 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
263 return TypeInfoIsInStandardLibrary(PointerTy);
264
John McCallcbfe5022010-08-04 08:34:44 +0000265 return false;
266}
267
268/// ShouldUseExternalRTTIDescriptor - Returns whether the type information for
269/// the given type exists somewhere else, and that we should not emit the type
270/// information in this translation unit. Assumes that it is not a
271/// standard-library type.
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000272static bool ShouldUseExternalRTTIDescriptor(CodeGenModule &CGM, QualType Ty) {
273 ASTContext &Context = CGM.getContext();
274
John McCall9dffe6f2010-04-30 01:15:21 +0000275 // If RTTI is disabled, don't consider key functions.
276 if (!Context.getLangOptions().RTTI) return false;
277
Anders Carlsson8d145152009-12-20 22:30:54 +0000278 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000279 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
John McCall86ff3082010-02-04 22:26:26 +0000280 if (!RD->hasDefinition())
281 return false;
282
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000283 if (!RD->isDynamicClass())
284 return false;
285
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +0000286 return !CGM.getVTables().ShouldEmitVTableInThisTU(RD);
Anders Carlsson8d145152009-12-20 22:30:54 +0000287 }
288
289 return false;
290}
291
292/// IsIncompleteClassType - Returns whether the given record type is incomplete.
293static bool IsIncompleteClassType(const RecordType *RecordTy) {
294 return !RecordTy->getDecl()->isDefinition();
295}
296
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000297/// ContainsIncompleteClassType - Returns whether the given type contains an
298/// incomplete class type. This is true if
299///
300/// * The given type is an incomplete class type.
301/// * The given type is a pointer type whose pointee type contains an
302/// incomplete class type.
303/// * The given type is a member pointer type whose class is an incomplete
304/// class type.
305/// * The given type is a member pointer type whoise pointee type contains an
306/// incomplete class type.
Anders Carlsson8d145152009-12-20 22:30:54 +0000307/// is an indirect or direct pointer to an incomplete class type.
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000308static bool ContainsIncompleteClassType(QualType Ty) {
309 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
310 if (IsIncompleteClassType(RecordTy))
311 return true;
312 }
313
314 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
315 return ContainsIncompleteClassType(PointerTy->getPointeeType());
316
317 if (const MemberPointerType *MemberPointerTy =
318 dyn_cast<MemberPointerType>(Ty)) {
319 // Check if the class type is incomplete.
320 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass());
321 if (IsIncompleteClassType(ClassType))
322 return true;
323
324 return ContainsIncompleteClassType(MemberPointerTy->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000325 }
326
327 return false;
328}
329
330/// getTypeInfoLinkage - Return the linkage that the type info and type info
331/// name constants should have for the given type.
Anders Carlsson3a717f72011-01-24 02:04:33 +0000332static llvm::GlobalVariable::LinkageTypes
333getTypeInfoLinkage(CodeGenModule &CGM, 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 Carlsson3a717f72011-01-24 02:04:33 +0000356 return CGM.getVTableLinkage(RD);
Mike Stumpc8f76f52009-12-24 01:10:27 +0000357 }
Douglas Gregor031b3712010-03-31 00:15:35 +0000358
Anders Carlssonf502d932011-01-24 00:46:19 +0000359 return llvm::GlobalValue::LinkOnceODRLinkage;
Mike Stumpc8f76f52009-12-24 01:10:27 +0000360 }
Anders Carlsson978ef682009-12-29 21:58:32 +0000361
Anders Carlssonf502d932011-01-24 00:46:19 +0000362 return llvm::GlobalValue::LinkOnceODRLinkage;
Anders Carlsson8d145152009-12-20 22:30:54 +0000363}
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
Anders Carlsson3a717f72011-01-24 02:04:33 +0000534 Linkage = getTypeInfoLinkage(CGM, 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.
John McCall9c39acf2010-12-17 02:58:03 +0000540 bool Hidden = DecideHidden(Ty);
541 Fields.push_back(BuildName(Ty, Hidden, Linkage));
John McCallcbfe5022010-08-04 08:34:44 +0000542
Anders Carlsson8d145152009-12-20 22:30:54 +0000543 switch (Ty->getTypeClass()) {
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000544#define TYPE(Class, Base)
545#define ABSTRACT_TYPE(Class, Base)
546#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
547#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
548#define DEPENDENT_TYPE(Class, Base) case Type::Class:
549#include "clang/AST/TypeNodes.def"
550 assert(false && "Non-canonical and dependent types shouldn't get here");
Anders Carlsson8d145152009-12-20 22:30:54 +0000551
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000552 // GCC treats vector types as fundamental types.
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000553 case Type::Builtin:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000554 case Type::Vector:
555 case Type::ExtVector:
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000556 case Type::Complex:
557 case Type::BlockPointer:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000558 // Itanium C++ ABI 2.9.5p4:
559 // abi::__fundamental_type_info adds no data members to std::type_info.
560 break;
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000561
562 case Type::LValueReference:
563 case Type::RValueReference:
564 assert(false && "References shouldn't get here");
565
Anders Carlsson978ef682009-12-29 21:58:32 +0000566 case Type::ConstantArray:
567 case Type::IncompleteArray:
Eli Friedmanf2aabe12010-08-15 00:24:31 +0000568 case Type::VariableArray:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000569 // Itanium C++ ABI 2.9.5p5:
570 // abi::__array_type_info adds no data members to std::type_info.
Anders Carlsson978ef682009-12-29 21:58:32 +0000571 break;
572
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000573 case Type::FunctionNoProto:
574 case Type::FunctionProto:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000575 // Itanium C++ ABI 2.9.5p5:
576 // abi::__function_type_info adds no data members to std::type_info.
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000577 break;
578
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000579 case Type::Enum:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000580 // Itanium C++ ABI 2.9.5p5:
581 // abi::__enum_type_info adds no data members to std::type_info.
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000582 break;
583
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000584 case Type::Record: {
585 const CXXRecordDecl *RD =
586 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
John McCall86ff3082010-02-04 22:26:26 +0000587 if (!RD->hasDefinition() || !RD->getNumBases()) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000588 // We don't need to emit any fields.
589 break;
590 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000591
Anders Carlsson08148092009-12-30 23:47:56 +0000592 if (CanUseSingleInheritance(RD))
Anders Carlssonf64531a2009-12-30 01:00:12 +0000593 BuildSIClassTypeInfo(RD);
Anders Carlsson08148092009-12-30 23:47:56 +0000594 else
595 BuildVMIClassTypeInfo(RD);
596
597 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000598 }
John McCalle8dc53e2010-08-12 02:17:33 +0000599
600 case Type::ObjCObject:
601 case Type::ObjCInterface:
602 BuildObjCObjectTypeInfo(cast<ObjCObjectType>(Ty));
603 break;
604
605 case Type::ObjCObjectPointer:
606 BuildPointerTypeInfo(cast<ObjCObjectPointerType>(Ty)->getPointeeType());
607 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000608
Anders Carlsson8d145152009-12-20 22:30:54 +0000609 case Type::Pointer:
John McCalle8dc53e2010-08-12 02:17:33 +0000610 BuildPointerTypeInfo(cast<PointerType>(Ty)->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000611 break;
John McCalle8dc53e2010-08-12 02:17:33 +0000612
Anders Carlsson8d145152009-12-20 22:30:54 +0000613 case Type::MemberPointer:
614 BuildPointerToMemberTypeInfo(cast<MemberPointerType>(Ty));
615 break;
616 }
617
618 llvm::Constant *Init =
Anders Carlsson531d55f2009-12-31 17:43:53 +0000619 llvm::ConstantStruct::get(VMContext, &Fields[0], Fields.size(),
Anders Carlsson8d145152009-12-20 22:30:54 +0000620 /*Packed=*/false);
621
622 llvm::GlobalVariable *GV =
623 new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
624 /*Constant=*/true, Linkage, Init, Name);
625
626 // If there's already an old global variable, replace it with the new one.
627 if (OldGV) {
628 GV->takeName(OldGV);
629 llvm::Constant *NewPtr =
630 llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
631 OldGV->replaceAllUsesWith(NewPtr);
632 OldGV->eraseFromParent();
633 }
John McCallcbfe5022010-08-04 08:34:44 +0000634
635 // GCC only relies on the uniqueness of the type names, not the
636 // type_infos themselves, so we can emit these as hidden symbols.
John McCall279b5eb2010-08-12 23:36:15 +0000637 // But don't do this if we're worried about strict visibility
638 // compatibility.
John McCallcbfe5022010-08-04 08:34:44 +0000639 if (const RecordType *RT = dyn_cast<RecordType>(Ty))
640 CGM.setTypeVisibility(GV, cast<CXXRecordDecl>(RT->getDecl()),
John McCallaf146032010-10-30 11:50:40 +0000641 /*ForRTTI*/ true, /*ForDefinition*/ true);
John McCall9c39acf2010-12-17 02:58:03 +0000642 else if (Hidden ||
643 (CGM.getCodeGenOpts().HiddenWeakVTables &&
Anders Carlssonf502d932011-01-24 00:46:19 +0000644 Linkage == llvm::GlobalValue::LinkOnceODRLinkage)) {
John McCallcbfe5022010-08-04 08:34:44 +0000645 GV->setVisibility(llvm::GlobalValue::HiddenVisibility);
Rafael Espindolab1c65ff2011-01-11 21:44:37 +0000646 }
Rafael Espindola57244f62011-01-11 23:55:05 +0000647 GV->setUnnamedAddr(true);
648
Anders Carlsson8d145152009-12-20 22:30:54 +0000649 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
650}
651
Anders Carlsson08148092009-12-30 23:47:56 +0000652/// ComputeQualifierFlags - Compute the pointer type info flags from the
Anders Carlsson8d145152009-12-20 22:30:54 +0000653/// given qualifier.
Anders Carlsson08148092009-12-30 23:47:56 +0000654static unsigned ComputeQualifierFlags(Qualifiers Quals) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000655 unsigned Flags = 0;
656
657 if (Quals.hasConst())
658 Flags |= RTTIBuilder::PTI_Const;
659 if (Quals.hasVolatile())
660 Flags |= RTTIBuilder::PTI_Volatile;
661 if (Quals.hasRestrict())
662 Flags |= RTTIBuilder::PTI_Restrict;
663
664 return Flags;
665}
666
John McCalle8dc53e2010-08-12 02:17:33 +0000667/// BuildObjCObjectTypeInfo - Build the appropriate kind of type_info
668/// for the given Objective-C object type.
669void RTTIBuilder::BuildObjCObjectTypeInfo(const ObjCObjectType *OT) {
670 // Drop qualifiers.
671 const Type *T = OT->getBaseType().getTypePtr();
672 assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T));
673
674 // The builtin types are abi::__class_type_infos and don't require
675 // extra fields.
676 if (isa<BuiltinType>(T)) return;
677
678 ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl();
679 ObjCInterfaceDecl *Super = Class->getSuperClass();
680
681 // Root classes are also __class_type_info.
682 if (!Super) return;
683
684 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super);
685
686 // Everything else is single inheritance.
687 llvm::Constant *BaseTypeInfo = RTTIBuilder(CGM).BuildTypeInfo(SuperTy);
688 Fields.push_back(BaseTypeInfo);
689}
690
Anders Carlssonf64531a2009-12-30 01:00:12 +0000691/// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
692/// inheritance, according to the Itanium C++ ABI, 2.95p6b.
693void RTTIBuilder::BuildSIClassTypeInfo(const CXXRecordDecl *RD) {
694 // Itanium C++ ABI 2.9.5p6b:
695 // It adds to abi::__class_type_info a single member pointing to the
696 // type_info structure for the base type,
Anders Carlsson531d55f2009-12-31 17:43:53 +0000697 llvm::Constant *BaseTypeInfo =
698 RTTIBuilder(CGM).BuildTypeInfo(RD->bases_begin()->getType());
699 Fields.push_back(BaseTypeInfo);
Anders Carlssonf64531a2009-12-30 01:00:12 +0000700}
701
Benjamin Kramer79ba2a62010-10-22 16:48:22 +0000702namespace {
703 /// SeenBases - Contains virtual and non-virtual bases seen when traversing
704 /// a class hierarchy.
705 struct SeenBases {
706 llvm::SmallPtrSet<const CXXRecordDecl *, 16> NonVirtualBases;
707 llvm::SmallPtrSet<const CXXRecordDecl *, 16> VirtualBases;
708 };
709}
Anders Carlsson08148092009-12-30 23:47:56 +0000710
711/// ComputeVMIClassTypeInfoFlags - Compute the value of the flags member in
712/// abi::__vmi_class_type_info.
713///
714static unsigned ComputeVMIClassTypeInfoFlags(const CXXBaseSpecifier *Base,
715 SeenBases &Bases) {
716
717 unsigned Flags = 0;
718
719 const CXXRecordDecl *BaseDecl =
720 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
721
722 if (Base->isVirtual()) {
723 if (Bases.VirtualBases.count(BaseDecl)) {
724 // If this virtual base has been seen before, then the class is diamond
725 // shaped.
726 Flags |= RTTIBuilder::VMI_DiamondShaped;
727 } else {
728 if (Bases.NonVirtualBases.count(BaseDecl))
729 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
730
731 // Mark the virtual base as seen.
732 Bases.VirtualBases.insert(BaseDecl);
733 }
734 } else {
735 if (Bases.NonVirtualBases.count(BaseDecl)) {
736 // If this non-virtual base has been seen before, then the class has non-
737 // diamond shaped repeated inheritance.
738 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
739 } else {
740 if (Bases.VirtualBases.count(BaseDecl))
741 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
742
743 // Mark the non-virtual base as seen.
744 Bases.NonVirtualBases.insert(BaseDecl);
745 }
746 }
747
748 // Walk all bases.
749 for (CXXRecordDecl::base_class_const_iterator I = BaseDecl->bases_begin(),
750 E = BaseDecl->bases_end(); I != E; ++I)
751 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
752
753 return Flags;
754}
755
756static unsigned ComputeVMIClassTypeInfoFlags(const CXXRecordDecl *RD) {
757 unsigned Flags = 0;
758 SeenBases Bases;
759
760 // Walk all bases.
761 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
762 E = RD->bases_end(); I != E; ++I)
763 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
764
765 return Flags;
766}
767
768/// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
769/// classes with bases that do not satisfy the abi::__si_class_type_info
770/// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
771void RTTIBuilder::BuildVMIClassTypeInfo(const CXXRecordDecl *RD) {
772 const llvm::Type *UnsignedIntLTy =
773 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
774
775 // Itanium C++ ABI 2.9.5p6c:
776 // __flags is a word with flags describing details about the class
777 // structure, which may be referenced by using the __flags_masks
778 // enumeration. These flags refer to both direct and indirect bases.
779 unsigned Flags = ComputeVMIClassTypeInfoFlags(RD);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000780 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson08148092009-12-30 23:47:56 +0000781
782 // Itanium C++ ABI 2.9.5p6c:
783 // __base_count is a word with the number of direct proper base class
784 // descriptions that follow.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000785 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, RD->getNumBases()));
Anders Carlsson08148092009-12-30 23:47:56 +0000786
787 if (!RD->getNumBases())
788 return;
789
790 const llvm::Type *LongLTy =
791 CGM.getTypes().ConvertType(CGM.getContext().LongTy);
792
793 // Now add the base class descriptions.
794
795 // Itanium C++ ABI 2.9.5p6c:
796 // __base_info[] is an array of base class descriptions -- one for every
797 // direct proper base. Each description is of the type:
798 //
799 // struct abi::__base_class_type_info {
Eli Friedmana7e68452010-08-22 01:00:03 +0000800 // public:
Anders Carlsson08148092009-12-30 23:47:56 +0000801 // const __class_type_info *__base_type;
802 // long __offset_flags;
803 //
804 // enum __offset_flags_masks {
805 // __virtual_mask = 0x1,
806 // __public_mask = 0x2,
807 // __offset_shift = 8
808 // };
809 // };
810 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
811 E = RD->bases_end(); I != E; ++I) {
812 const CXXBaseSpecifier *Base = I;
813
814 // The __base_type member points to the RTTI for the base type.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000815 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(Base->getType()));
Anders Carlsson08148092009-12-30 23:47:56 +0000816
817 const CXXRecordDecl *BaseDecl =
818 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
819
820 int64_t OffsetFlags = 0;
821
822 // All but the lower 8 bits of __offset_flags are a signed offset.
823 // For a non-virtual base, this is the offset in the object of the base
824 // subobject. For a virtual base, this is the offset in the virtual table of
825 // the virtual base offset for the virtual base referenced (negative).
826 if (Base->isVirtual())
Anders Carlssonaf440352010-03-23 04:11:45 +0000827 OffsetFlags = CGM.getVTables().getVirtualBaseOffsetOffset(RD, BaseDecl);
Anders Carlsson08148092009-12-30 23:47:56 +0000828 else {
829 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
Anders Carlssona14f5972010-10-31 23:22:37 +0000830 OffsetFlags = Layout.getBaseClassOffsetInBits(BaseDecl) / 8;
Anders Carlsson08148092009-12-30 23:47:56 +0000831 };
832
833 OffsetFlags <<= 8;
834
835 // The low-order byte of __offset_flags contains flags, as given by the
836 // masks from the enumeration __offset_flags_masks.
837 if (Base->isVirtual())
838 OffsetFlags |= BCTI_Virtual;
839 if (Base->getAccessSpecifier() == AS_public)
840 OffsetFlags |= BCTI_Public;
841
Anders Carlsson531d55f2009-12-31 17:43:53 +0000842 Fields.push_back(llvm::ConstantInt::get(LongLTy, OffsetFlags));
Anders Carlsson08148092009-12-30 23:47:56 +0000843 }
844}
845
Anders Carlsson8d145152009-12-20 22:30:54 +0000846/// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct,
847/// used for pointer types.
John McCalle8dc53e2010-08-12 02:17:33 +0000848void RTTIBuilder::BuildPointerTypeInfo(QualType PointeeTy) {
Anders Carlssonabd6b092010-06-02 15:44:35 +0000849 Qualifiers Quals;
850 QualType UnqualifiedPointeeTy =
851 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
852
Anders Carlsson8d145152009-12-20 22:30:54 +0000853 // Itanium C++ ABI 2.9.5p7:
854 // __flags is a flag word describing the cv-qualification and other
855 // attributes of the type pointed to
Anders Carlssonabd6b092010-06-02 15:44:35 +0000856 unsigned Flags = ComputeQualifierFlags(Quals);
Anders Carlsson8d145152009-12-20 22:30:54 +0000857
858 // Itanium C++ ABI 2.9.5p7:
859 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
860 // incomplete class type, the incomplete target type flag is set.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000861 if (ContainsIncompleteClassType(UnqualifiedPointeeTy))
Anders Carlsson8d145152009-12-20 22:30:54 +0000862 Flags |= PTI_Incomplete;
863
864 const llvm::Type *UnsignedIntLTy =
865 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000866 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000867
868 // Itanium C++ ABI 2.9.5p7:
869 // __pointee is a pointer to the std::type_info derivation for the
870 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000871 llvm::Constant *PointeeTypeInfo =
Anders Carlssonabd6b092010-06-02 15:44:35 +0000872 RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000873 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000874}
875
876/// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
877/// struct, used for member pointer types.
878void RTTIBuilder::BuildPointerToMemberTypeInfo(const MemberPointerType *Ty) {
879 QualType PointeeTy = Ty->getPointeeType();
880
Anders Carlssonabd6b092010-06-02 15:44:35 +0000881 Qualifiers Quals;
882 QualType UnqualifiedPointeeTy =
883 CGM.getContext().getUnqualifiedArrayType(PointeeTy, Quals);
884
Anders Carlsson8d145152009-12-20 22:30:54 +0000885 // Itanium C++ ABI 2.9.5p7:
886 // __flags is a flag word describing the cv-qualification and other
887 // attributes of the type pointed to.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000888 unsigned Flags = ComputeQualifierFlags(Quals);
Anders Carlsson8d145152009-12-20 22:30:54 +0000889
890 const RecordType *ClassType = cast<RecordType>(Ty->getClass());
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000891
892 // Itanium C++ ABI 2.9.5p7:
893 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
894 // incomplete class type, the incomplete target type flag is set.
Anders Carlssonabd6b092010-06-02 15:44:35 +0000895 if (ContainsIncompleteClassType(UnqualifiedPointeeTy))
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000896 Flags |= PTI_Incomplete;
897
Anders Carlsson8d145152009-12-20 22:30:54 +0000898 if (IsIncompleteClassType(ClassType))
899 Flags |= PTI_ContainingClassIncomplete;
900
Anders Carlsson8d145152009-12-20 22:30:54 +0000901 const llvm::Type *UnsignedIntLTy =
902 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000903 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000904
905 // Itanium C++ ABI 2.9.5p7:
906 // __pointee is a pointer to the std::type_info derivation for the
907 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000908 llvm::Constant *PointeeTypeInfo =
Anders Carlssonabd6b092010-06-02 15:44:35 +0000909 RTTIBuilder(CGM).BuildTypeInfo(UnqualifiedPointeeTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000910 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000911
912 // Itanium C++ ABI 2.9.5p9:
913 // __context is a pointer to an abi::__class_type_info corresponding to the
914 // class type containing the member pointed to
915 // (e.g., the "A" in "int A::*").
Anders Carlsson531d55f2009-12-31 17:43:53 +0000916 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(QualType(ClassType, 0)));
Anders Carlsson8d145152009-12-20 22:30:54 +0000917}
918
John McCall9dffe6f2010-04-30 01:15:21 +0000919llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty,
920 bool ForEH) {
921 // Return a bogus pointer if RTTI is disabled, unless it's for EH.
922 // FIXME: should we even be calling this method if RTTI is disabled
923 // and it's not for EH?
924 if (!ForEH && !getContext().getLangOptions().RTTI) {
Anders Carlsson31b7f522009-12-11 02:46:30 +0000925 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
926 return llvm::Constant::getNullValue(Int8PtrTy);
927 }
John McCall9dffe6f2010-04-30 01:15:21 +0000928
Anders Carlsson531d55f2009-12-31 17:43:53 +0000929 return RTTIBuilder(*this).BuildTypeInfo(Ty);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000930}
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000931
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000932void CodeGenModule::EmitFundamentalRTTIDescriptor(QualType Type) {
933 QualType PointerType = Context.getPointerType(Type);
934 QualType PointerTypeConst = Context.getPointerType(Type.withConst());
935 RTTIBuilder(*this).BuildTypeInfo(Type, true);
936 RTTIBuilder(*this).BuildTypeInfo(PointerType, true);
937 RTTIBuilder(*this).BuildTypeInfo(PointerTypeConst, true);
938}
939
940void CodeGenModule::EmitFundamentalRTTIDescriptors() {
Anders Carlsson2bd62502010-11-04 05:28:09 +0000941 QualType FundamentalTypes[] = { Context.VoidTy, Context.NullPtrTy,
942 Context.BoolTy, Context.WCharTy,
943 Context.CharTy, Context.UnsignedCharTy,
944 Context.SignedCharTy, Context.ShortTy,
945 Context.UnsignedShortTy, Context.IntTy,
946 Context.UnsignedIntTy, Context.LongTy,
947 Context.UnsignedLongTy, Context.LongLongTy,
948 Context.UnsignedLongLongTy, Context.FloatTy,
949 Context.DoubleTy, Context.LongDoubleTy,
950 Context.Char16Ty, Context.Char32Ty };
Rafael Espindolad1a5c312010-03-27 02:52:14 +0000951 for (unsigned i = 0; i < sizeof(FundamentalTypes)/sizeof(QualType); ++i)
952 EmitFundamentalRTTIDescriptor(FundamentalTypes[i]);
953}