blob: 20e5fcec56845514e8ffb0a365b7432dd4d43b1d [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 Stumpae9b2be2009-11-17 23:45:57 +000014#include "clang/AST/Type.h"
Mike Stumpcbcd4e52009-11-14 23:32:21 +000015#include "clang/AST/RecordLayout.h"
Mike Stump61c38012009-11-17 21:44:24 +000016#include "CodeGenModule.h"
Anders Carlsson656e4c12009-10-10 20:49:04 +000017using namespace clang;
18using namespace CodeGen;
19
Mike Stump92f2fe22009-12-02 19:07:44 +000020namespace {
Mike Stumpde050572009-12-02 18:57:08 +000021class RTTIBuilder {
Mike Stump2b1bf312009-11-14 14:25:18 +000022 CodeGenModule &CGM; // Per-module state.
23 llvm::LLVMContext &VMContext;
Anders Carlsson8d145152009-12-20 22:30:54 +000024
Anders Carlsson08148092009-12-30 23:47:56 +000025 const llvm::Type *Int8PtrTy;
Anders Carlsson531d55f2009-12-31 17:43:53 +000026
27 /// Fields - The fields of the RTTI descriptor currently being built.
28 llvm::SmallVector<llvm::Constant *, 16> Fields;
Anders Carlssond6baec82009-12-11 01:27:37 +000029
Anders Carlsson1d7088d2009-12-17 07:09:17 +000030 /// GetAddrOfExternalRTTIDescriptor - Returns the constant for the RTTI
31 /// descriptor of the given type.
32 llvm::Constant *GetAddrOfExternalRTTIDescriptor(QualType Ty);
33
Anders Carlsson8d145152009-12-20 22:30:54 +000034 /// BuildVtablePointer - Build the vtable pointer for the given type.
35 void BuildVtablePointer(const Type *Ty);
36
Anders Carlssonf64531a2009-12-30 01:00:12 +000037 /// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
Anders Carlsson08148092009-12-30 23:47:56 +000038 /// inheritance, according to the Itanium C++ ABI, 2.9.5p6b.
Anders Carlssonf64531a2009-12-30 01:00:12 +000039 void BuildSIClassTypeInfo(const CXXRecordDecl *RD);
40
Anders Carlsson08148092009-12-30 23:47:56 +000041 /// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
42 /// classes with bases that do not satisfy the abi::__si_class_type_info
43 /// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
44 void BuildVMIClassTypeInfo(const CXXRecordDecl *RD);
45
Anders Carlssonf64531a2009-12-30 01:00:12 +000046 /// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct, used
47 /// for pointer types.
Anders Carlsson8d145152009-12-20 22:30:54 +000048 void BuildPointerTypeInfo(const PointerType *Ty);
49
50 /// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
51 /// struct, used for member pointer types.
52 void BuildPointerToMemberTypeInfo(const MemberPointerType *Ty);
53
Mike Stump2b1bf312009-11-14 14:25:18 +000054public:
Mike Stumpde050572009-12-02 18:57:08 +000055 RTTIBuilder(CodeGenModule &cgm)
Mike Stump2b1bf312009-11-14 14:25:18 +000056 : CGM(cgm), VMContext(cgm.getModule().getContext()),
57 Int8PtrTy(llvm::Type::getInt8PtrTy(VMContext)) { }
58
Anders Carlsson31b7f522009-12-11 02:46:30 +000059 llvm::Constant *BuildName(QualType Ty, bool Hidden,
60 llvm::GlobalVariable::LinkageTypes Linkage) {
Mike Stump2b1bf312009-11-14 14:25:18 +000061 llvm::SmallString<256> OutName;
Mike Stumpde050572009-12-02 18:57:08 +000062 CGM.getMangleContext().mangleCXXRTTIName(Ty, OutName);
Daniel Dunbar94fd26d2009-11-21 09:06:22 +000063 llvm::StringRef Name = OutName.str();
Mike Stumpcbcd4e52009-11-14 23:32:21 +000064
Anders Carlsson8d145152009-12-20 22:30:54 +000065 llvm::GlobalVariable *OGV = CGM.getModule().getNamedGlobal(Name);
Anders Carlsson31b7f522009-12-11 02:46:30 +000066 if (OGV && !OGV->isDeclaration())
67 return llvm::ConstantExpr::getBitCast(OGV, Int8PtrTy);
Mike Stump58588942009-11-19 01:08:19 +000068
Anders Carlsson31b7f522009-12-11 02:46:30 +000069 llvm::Constant *C = llvm::ConstantArray::get(VMContext, Name.substr(4));
Mike Stump2b1bf312009-11-14 14:25:18 +000070
Anders Carlsson31b7f522009-12-11 02:46:30 +000071 llvm::GlobalVariable *GV =
72 new llvm::GlobalVariable(CGM.getModule(), C->getType(), true, Linkage,
73 C, Name);
Mike Stump58588942009-11-19 01:08:19 +000074 if (OGV) {
75 GV->takeName(OGV);
76 llvm::Constant *NewPtr = llvm::ConstantExpr::getBitCast(GV,
77 OGV->getType());
78 OGV->replaceAllUsesWith(NewPtr);
79 OGV->eraseFromParent();
80 }
Mike Stump582b0372009-11-18 03:46:51 +000081 if (Hidden)
82 GV->setVisibility(llvm::GlobalVariable::HiddenVisibility);
83 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
Daniel Dunbar7177dee2009-12-19 17:50:07 +000084 }
Mike Stumpc7a05bd2009-11-14 15:55:18 +000085
Mike Stump4e6f8ee2009-12-24 02:33:48 +000086 // FIXME: unify with DecideExtern
Mike Stump58588942009-11-19 01:08:19 +000087 bool DecideHidden(QualType Ty) {
88 // For this type, see if all components are never hidden.
89 if (const MemberPointerType *MPT = Ty->getAs<MemberPointerType>())
90 return (DecideHidden(MPT->getPointeeType())
91 && DecideHidden(QualType(MPT->getClass(), 0)));
92 if (const PointerType *PT = Ty->getAs<PointerType>())
93 return DecideHidden(PT->getPointeeType());
Mike Stump4e6f8ee2009-12-24 02:33:48 +000094 if (const FunctionType *FT = Ty->getAs<FunctionType>()) {
95 if (DecideHidden(FT->getResultType()) == false)
96 return false;
97 if (const FunctionProtoType *FPT = Ty->getAs<FunctionProtoType>()) {
98 for (unsigned i = 0; i <FPT->getNumArgs(); ++i)
99 if (DecideHidden(FPT->getArgType(i)) == false)
100 return false;
101 for (unsigned i = 0; i <FPT->getNumExceptions(); ++i)
102 if (DecideHidden(FPT->getExceptionType(i)) == false)
103 return false;
104 return true;
105 }
106 }
Mike Stump58588942009-11-19 01:08:19 +0000107 if (const RecordType *RT = Ty->getAs<RecordType>())
108 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl()))
109 return CGM.getDeclVisibilityMode(RD) == LangOptions::Hidden;
110 return false;
111 }
Anders Carlsson31b7f522009-12-11 02:46:30 +0000112
Anders Carlsson8d145152009-12-20 22:30:54 +0000113 // Pointer type info flags.
114 enum {
115 /// PTI_Const - Type has const qualifier.
116 PTI_Const = 0x1,
117
118 /// PTI_Volatile - Type has volatile qualifier.
119 PTI_Volatile = 0x2,
120
121 /// PTI_Restrict - Type has restrict qualifier.
122 PTI_Restrict = 0x4,
123
124 /// PTI_Incomplete - Type is incomplete.
125 PTI_Incomplete = 0x8,
126
127 /// PTI_ContainingClassIncomplete - Containing class is incomplete.
128 /// (in pointer to member).
129 PTI_ContainingClassIncomplete = 0x10
130 };
Anders Carlsson08148092009-12-30 23:47:56 +0000131
132 // VMI type info flags.
133 enum {
134 /// VMI_NonDiamondRepeat - Class has non-diamond repeated inheritance.
135 VMI_NonDiamondRepeat = 0x1,
136
137 /// VMI_DiamondShaped - Class is diamond shaped.
138 VMI_DiamondShaped = 0x2
139 };
140
141 // Base class type info flags.
142 enum {
143 /// BCTI_Virtual - Base class is virtual.
144 BCTI_Virtual = 0x1,
145
146 /// BCTI_Public - Base class is public.
147 BCTI_Public = 0x2
148 };
Anders Carlsson531d55f2009-12-31 17:43:53 +0000149
150 /// BuildTypeInfo - Build the RTTI type info struct for the given type.
151 llvm::Constant *BuildTypeInfo(QualType Ty);
Mike Stump2b1bf312009-11-14 14:25:18 +0000152};
Mike Stump92f2fe22009-12-02 19:07:44 +0000153}
Mike Stump2b1bf312009-11-14 14:25:18 +0000154
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000155llvm::Constant *RTTIBuilder::GetAddrOfExternalRTTIDescriptor(QualType Ty) {
156 // Mangle the RTTI name.
157 llvm::SmallString<256> OutName;
158 CGM.getMangleContext().mangleCXXRTTI(Ty, OutName);
159 llvm::StringRef Name = OutName.str();
160
Anders Carlsson8d145152009-12-20 22:30:54 +0000161 // Look for an existing global.
162 llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(Name);
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000163
164 if (!GV) {
165 // Create a new global variable.
166 GV = new llvm::GlobalVariable(CGM.getModule(), Int8PtrTy, /*Constant=*/true,
167 llvm::GlobalValue::ExternalLinkage, 0, Name);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000168 }
169
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000170 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000171}
172
Anders Carlsson8d145152009-12-20 22:30:54 +0000173/// TypeInfoIsInStandardLibrary - Given a builtin type, returns whether the type
174/// info for that type is defined in the standard library.
175static bool TypeInfoIsInStandardLibrary(const BuiltinType *Ty) {
176 // Itanium C++ ABI 2.9.2:
177 // Basic type information (e.g. for "int", "bool", etc.) will be kept in
178 // the run-time support library. Specifically, the run-time support
179 // library should contain type_info objects for the types X, X* and
180 // X const*, for every X in: void, bool, wchar_t, char, unsigned char,
181 // signed char, short, unsigned short, int, unsigned int, long,
182 // unsigned long, long long, unsigned long long, float, double, long double,
183 // char16_t, char32_t, and the IEEE 754r decimal and half-precision
184 // floating point types.
185 switch (Ty->getKind()) {
186 case BuiltinType::Void:
187 case BuiltinType::Bool:
188 case BuiltinType::WChar:
189 case BuiltinType::Char_U:
190 case BuiltinType::Char_S:
191 case BuiltinType::UChar:
192 case BuiltinType::SChar:
193 case BuiltinType::Short:
194 case BuiltinType::UShort:
195 case BuiltinType::Int:
196 case BuiltinType::UInt:
197 case BuiltinType::Long:
198 case BuiltinType::ULong:
199 case BuiltinType::LongLong:
200 case BuiltinType::ULongLong:
201 case BuiltinType::Float:
202 case BuiltinType::Double:
203 case BuiltinType::LongDouble:
204 case BuiltinType::Char16:
205 case BuiltinType::Char32:
206 case BuiltinType::Int128:
207 case BuiltinType::UInt128:
208 return true;
209
210 case BuiltinType::Overload:
211 case BuiltinType::Dependent:
212 case BuiltinType::UndeducedAuto:
213 assert(false && "Should not see this type here!");
214
215 case BuiltinType::NullPtr:
216 assert(false && "FIXME: nullptr_t is not handled!");
217
218 case BuiltinType::ObjCId:
219 case BuiltinType::ObjCClass:
220 case BuiltinType::ObjCSel:
221 assert(false && "FIXME: Objective-C types are unsupported!");
222 }
223
224 // Silent gcc.
225 return false;
226}
227
228static bool TypeInfoIsInStandardLibrary(const PointerType *PointerTy) {
229 QualType PointeeTy = PointerTy->getPointeeType();
230 const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(PointeeTy);
231 if (!BuiltinTy)
232 return false;
233
234 // Check the qualifiers.
235 Qualifiers Quals = PointeeTy.getQualifiers();
236 Quals.removeConst();
237
238 if (!Quals.empty())
239 return false;
240
241 return TypeInfoIsInStandardLibrary(BuiltinTy);
242}
243
244/// ShouldUseExternalRTTIDescriptor - Returns whether the type information for
245/// the given type exists somewhere else, and that we should not emit the typ
246/// information in this translation unit.
247bool ShouldUseExternalRTTIDescriptor(QualType Ty) {
248 // Type info for builtin types is defined in the standard library.
249 if (const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(Ty))
250 return TypeInfoIsInStandardLibrary(BuiltinTy);
251
252 // Type info for some pointer types to builtin types is defined in the
253 // standard library.
254 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
255 return TypeInfoIsInStandardLibrary(PointerTy);
256
257 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000258 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
259 if (!RD->isDynamicClass())
260 return false;
261
262 // Get the key function.
263 const CXXMethodDecl *KeyFunction = RD->getASTContext().getKeyFunction(RD);
264 if (KeyFunction && !KeyFunction->getBody()) {
265 // The class has a key function, but it is not defined in this translation
266 // unit, so we should use the external descriptor for it.
267 return true;
268 }
Anders Carlsson8d145152009-12-20 22:30:54 +0000269 }
270
271 return false;
272}
273
274/// IsIncompleteClassType - Returns whether the given record type is incomplete.
275static bool IsIncompleteClassType(const RecordType *RecordTy) {
276 return !RecordTy->getDecl()->isDefinition();
277}
278
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000279/// ContainsIncompleteClassType - Returns whether the given type contains an
280/// incomplete class type. This is true if
281///
282/// * The given type is an incomplete class type.
283/// * The given type is a pointer type whose pointee type contains an
284/// incomplete class type.
285/// * The given type is a member pointer type whose class is an incomplete
286/// class type.
287/// * The given type is a member pointer type whoise pointee type contains an
288/// incomplete class type.
Anders Carlsson8d145152009-12-20 22:30:54 +0000289/// is an indirect or direct pointer to an incomplete class type.
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000290static bool ContainsIncompleteClassType(QualType Ty) {
291 if (const RecordType *RecordTy = dyn_cast<RecordType>(Ty)) {
292 if (IsIncompleteClassType(RecordTy))
293 return true;
294 }
295
296 if (const PointerType *PointerTy = dyn_cast<PointerType>(Ty))
297 return ContainsIncompleteClassType(PointerTy->getPointeeType());
298
299 if (const MemberPointerType *MemberPointerTy =
300 dyn_cast<MemberPointerType>(Ty)) {
301 // Check if the class type is incomplete.
302 const RecordType *ClassType = cast<RecordType>(MemberPointerTy->getClass());
303 if (IsIncompleteClassType(ClassType))
304 return true;
305
306 return ContainsIncompleteClassType(MemberPointerTy->getPointeeType());
Anders Carlsson8d145152009-12-20 22:30:54 +0000307 }
308
309 return false;
310}
311
312/// getTypeInfoLinkage - Return the linkage that the type info and type info
313/// name constants should have for the given type.
314static llvm::GlobalVariable::LinkageTypes getTypeInfoLinkage(QualType Ty) {
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000315 // Itanium C++ ABI 2.9.5p7:
316 // In addition, it and all of the intermediate abi::__pointer_type_info
317 // structs in the chain down to the abi::__class_type_info for the
318 // incomplete class type must be prevented from resolving to the
319 // corresponding type_info structs for the complete class type, possibly
320 // by making them local static objects. Finally, a dummy class RTTI is
321 // generated for the incomplete type that will not resolve to the final
322 // complete class RTTI (because the latter need not exist), possibly by
323 // making it a local static object.
324 if (ContainsIncompleteClassType(Ty))
325 return llvm::GlobalValue::InternalLinkage;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000326
Anders Carlsson978ef682009-12-29 21:58:32 +0000327 switch (Ty->getTypeClass()) {
328 default:
329 // FIXME: We need to add code to handle all types.
330 assert(false && "Unhandled type!");
331 break;
332
333 case Type::Pointer: {
334 const PointerType *PointerTy = cast<PointerType>(Ty);
335
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000336 // If the pointee type has internal linkage, then the pointer type needs to
337 // have it as well.
338 if (getTypeInfoLinkage(PointerTy->getPointeeType()) ==
339 llvm::GlobalVariable::InternalLinkage)
340 return llvm::GlobalVariable::InternalLinkage;
341
342 return llvm::GlobalVariable::WeakODRLinkage;
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000343 }
344
345 case Type::Enum: {
346 const EnumType *EnumTy = cast<EnumType>(Ty);
347 const EnumDecl *ED = EnumTy->getDecl();
348
349 // If we're in an anonymous namespace, then we always want internal linkage.
350 if (ED->isInAnonymousNamespace() || !ED->hasLinkage())
351 return llvm::GlobalVariable::InternalLinkage;
352
353 return llvm::GlobalValue::WeakODRLinkage;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000354 }
Anders Carlsson978ef682009-12-29 21:58:32 +0000355
356 case Type::Record: {
357 const RecordType *RecordTy = cast<RecordType>(Ty);
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000358 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RecordTy->getDecl());
359
360 // If we're in an anonymous namespace, then we always want internal linkage.
361 if (RD->isInAnonymousNamespace() || !RD->hasLinkage())
362 return llvm::GlobalVariable::InternalLinkage;
363
364 if (!RD->isDynamicClass())
365 return llvm::GlobalValue::WeakODRLinkage;
366
367 // Get the key function.
368 const CXXMethodDecl *KeyFunction = RD->getASTContext().getKeyFunction(RD);
369 if (!KeyFunction) {
370 // There is no key function, the RTTI descriptor is emitted with weak_odr
371 // linkage.
372 return llvm::GlobalValue::WeakODRLinkage;
373 }
374
Anders Carlssone8f90382009-12-31 19:36:25 +0000375 // If the key function is defined, but inlined, then the RTTI descriptor is
376 // emitted with weak_odr linkage.
377 const FunctionDecl* KeyFunctionDefinition;
Anders Carlsson9ed20592010-01-02 18:46:23 +0000378 if (KeyFunction->getBody(KeyFunctionDefinition) &&
379 KeyFunctionDefinition->isInlined())
Anders Carlssone8f90382009-12-31 19:36:25 +0000380 return llvm::GlobalValue::WeakODRLinkage;
381
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000382 // Otherwise, the RTTI descriptor is emitted with external linkage.
383 return llvm::GlobalValue::ExternalLinkage;
384 }
385
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000386 case Type::Vector:
387 case Type::ExtVector:
Anders Carlsson978ef682009-12-29 21:58:32 +0000388 case Type::Builtin:
Mike Stump8d9fb9b2009-12-23 22:48:20 +0000389 return llvm::GlobalValue::WeakODRLinkage;
Mike Stump8d9fb9b2009-12-23 22:48:20 +0000390
Anders Carlsson978ef682009-12-29 21:58:32 +0000391 case Type::FunctionProto: {
392 const FunctionProtoType *FPT = cast<FunctionProtoType>(Ty);
393
394 // Check the return type.
395 if (getTypeInfoLinkage(FPT->getResultType()) ==
396 llvm::GlobalValue::InternalLinkage)
Mike Stumpc8f76f52009-12-24 01:10:27 +0000397 return llvm::GlobalValue::InternalLinkage;
Anders Carlsson978ef682009-12-29 21:58:32 +0000398
399 // Check the parameter types.
400 for (unsigned i = 0; i != FPT->getNumArgs(); ++i) {
401 if (getTypeInfoLinkage(FPT->getArgType(i)) ==
402 llvm::GlobalValue::InternalLinkage)
403 return llvm::GlobalValue::InternalLinkage;
Mike Stumpc8f76f52009-12-24 01:10:27 +0000404 }
Anders Carlsson978ef682009-12-29 21:58:32 +0000405
Mike Stumpc8f76f52009-12-24 01:10:27 +0000406 return llvm::GlobalValue::WeakODRLinkage;
407 }
Anders Carlsson978ef682009-12-29 21:58:32 +0000408
409 case Type::ConstantArray:
410 case Type::IncompleteArray: {
411 const ArrayType *AT = cast<ArrayType>(Ty);
Mike Stumpc8f76f52009-12-24 01:10:27 +0000412
Anders Carlsson978ef682009-12-29 21:58:32 +0000413 // Check the element type.
414 if (getTypeInfoLinkage(AT->getElementType()) ==
415 llvm::GlobalValue::InternalLinkage)
416 return llvm::GlobalValue::InternalLinkage;
417 }
418
419 }
420
Anders Carlsson8d145152009-12-20 22:30:54 +0000421 return llvm::GlobalValue::WeakODRLinkage;
422}
423
Anders Carlssonf64531a2009-12-30 01:00:12 +0000424// CanUseSingleInheritance - Return whether the given record decl has a "single,
425// public, non-virtual base at offset zero (i.e. the derived class is dynamic
426// iff the base is)", according to Itanium C++ ABI, 2.95p6b.
427static bool CanUseSingleInheritance(const CXXRecordDecl *RD) {
428 // Check the number of bases.
429 if (RD->getNumBases() != 1)
430 return false;
431
432 // Get the base.
433 CXXRecordDecl::base_class_const_iterator Base = RD->bases_begin();
434
435 // Check that the base is not virtual.
436 if (Base->isVirtual())
437 return false;
438
439 // Check that the base is public.
440 if (Base->getAccessSpecifier() != AS_public)
441 return false;
442
443 // Check that the class is dynamic iff the base is.
444 const CXXRecordDecl *BaseDecl =
445 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
446 if (!BaseDecl->isEmpty() &&
447 BaseDecl->isDynamicClass() != RD->isDynamicClass())
448 return false;
449
450 return true;
451}
452
Anders Carlsson8d145152009-12-20 22:30:54 +0000453void RTTIBuilder::BuildVtablePointer(const Type *Ty) {
454 const char *VtableName;
455
456 switch (Ty->getTypeClass()) {
457 default: assert(0 && "Unhandled type!");
Anders Carlsson978ef682009-12-29 21:58:32 +0000458
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000459 // GCC treats vector types as fundamental types.
460 case Type::Vector:
461 case Type::ExtVector:
Anders Carlsson08148092009-12-30 23:47:56 +0000462 // abi::__fundamental_type_info.
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000463 VtableName = "_ZTVN10__cxxabiv123__fundamental_type_infoE";
464 break;
465
Anders Carlsson978ef682009-12-29 21:58:32 +0000466 case Type::ConstantArray:
467 case Type::IncompleteArray:
Anders Carlsson08148092009-12-30 23:47:56 +0000468 // abi::__array_type_info.
Anders Carlsson978ef682009-12-29 21:58:32 +0000469 VtableName = "_ZTVN10__cxxabiv117__array_type_infoE";
470 break;
471
472 case Type::FunctionNoProto:
473 case Type::FunctionProto:
Anders Carlsson08148092009-12-30 23:47:56 +0000474 // abi::__function_type_info.
Anders Carlsson978ef682009-12-29 21:58:32 +0000475 VtableName = "_ZTVN10__cxxabiv120__function_type_infoE";
476 break;
477
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000478 case Type::Enum:
Anders Carlsson08148092009-12-30 23:47:56 +0000479 // abi::__enum_type_info.
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000480 VtableName = "_ZTVN10__cxxabiv116__enum_type_infoE";
481 break;
482
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000483 case Type::Record: {
484 const CXXRecordDecl *RD =
485 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
Anders Carlsson08148092009-12-30 23:47:56 +0000486
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000487 if (!RD->getNumBases()) {
Anders Carlsson08148092009-12-30 23:47:56 +0000488 // abi::__class_type_info.
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000489 VtableName = "_ZTVN10__cxxabiv117__class_type_infoE";
Anders Carlssonf64531a2009-12-30 01:00:12 +0000490 } else if (CanUseSingleInheritance(RD)) {
Anders Carlsson08148092009-12-30 23:47:56 +0000491 // abi::__si_class_type_info.
Anders Carlssonf64531a2009-12-30 01:00:12 +0000492 VtableName = "_ZTVN10__cxxabiv120__si_class_type_infoE";
493 } else {
Anders Carlsson08148092009-12-30 23:47:56 +0000494 // abi::__vmi_class_type_info.
495 VtableName = "_ZTVN10__cxxabiv121__vmi_class_type_infoE";
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000496 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000497
498 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000499 }
500
Anders Carlsson8d145152009-12-20 22:30:54 +0000501 case Type::Pointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000502 // abi::__pointer_type_info.
Anders Carlsson8d145152009-12-20 22:30:54 +0000503 VtableName = "_ZTVN10__cxxabiv119__pointer_type_infoE";
504 break;
Anders Carlsson978ef682009-12-29 21:58:32 +0000505
Anders Carlsson8d145152009-12-20 22:30:54 +0000506 case Type::MemberPointer:
Anders Carlsson08148092009-12-30 23:47:56 +0000507 // abi::__pointer_to_member_type_info.
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000508 VtableName = "_ZTVN10__cxxabiv129__pointer_to_member_type_infoE";
Anders Carlsson8d145152009-12-20 22:30:54 +0000509 break;
510 }
511
512 llvm::Constant *Vtable =
513 CGM.getModule().getOrInsertGlobal(VtableName, Int8PtrTy);
514
515 const llvm::Type *PtrDiffTy =
516 CGM.getTypes().ConvertType(CGM.getContext().getPointerDiffType());
517
518 // The vtable address point is 2.
519 llvm::Constant *Two = llvm::ConstantInt::get(PtrDiffTy, 2);
520 Vtable = llvm::ConstantExpr::getInBoundsGetElementPtr(Vtable, &Two, 1);
521 Vtable = llvm::ConstantExpr::getBitCast(Vtable, Int8PtrTy);
522
Anders Carlsson531d55f2009-12-31 17:43:53 +0000523 Fields.push_back(Vtable);
Anders Carlsson8d145152009-12-20 22:30:54 +0000524}
525
526llvm::Constant *RTTIBuilder::BuildTypeInfo(QualType Ty) {
527 // We want to operate on the canonical type.
528 Ty = CGM.getContext().getCanonicalType(Ty);
529
530 // Check if we've already emitted an RTTI descriptor for this type.
531 llvm::SmallString<256> OutName;
532 CGM.getMangleContext().mangleCXXRTTI(Ty, OutName);
533 llvm::StringRef Name = OutName.str();
534
535 llvm::GlobalVariable *OldGV = CGM.getModule().getNamedGlobal(Name);
536 if (OldGV && !OldGV->isDeclaration())
537 return llvm::ConstantExpr::getBitCast(OldGV, Int8PtrTy);
538
539 // Check if there is already an external RTTI descriptor for this type.
540 if (ShouldUseExternalRTTIDescriptor(Ty))
541 return GetAddrOfExternalRTTIDescriptor(Ty);
542
543 llvm::GlobalVariable::LinkageTypes Linkage = getTypeInfoLinkage(Ty);
544
545 // Add the vtable pointer.
546 BuildVtablePointer(cast<Type>(Ty));
547
548 // And the name.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000549 Fields.push_back(BuildName(Ty, DecideHidden(Ty), Linkage));
Anders Carlsson8d145152009-12-20 22:30:54 +0000550
551 switch (Ty->getTypeClass()) {
552 default: assert(false && "Unhandled type class!");
553 case Type::Builtin:
554 assert(false && "Builtin type info must be in the standard library!");
555 break;
556
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000557 // GCC treats vector types as fundamental types.
558 case Type::Vector:
559 case Type::ExtVector:
560 // Itanium C++ ABI 2.9.5p4:
561 // abi::__fundamental_type_info adds no data members to std::type_info.
562 break;
563
Anders Carlsson978ef682009-12-29 21:58:32 +0000564 case Type::ConstantArray:
565 case Type::IncompleteArray:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000566 // Itanium C++ ABI 2.9.5p5:
567 // abi::__array_type_info adds no data members to std::type_info.
Anders Carlsson978ef682009-12-29 21:58:32 +0000568 break;
569
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000570 case Type::FunctionNoProto:
571 case Type::FunctionProto:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000572 // Itanium C++ ABI 2.9.5p5:
573 // abi::__function_type_info adds no data members to std::type_info.
Anders Carlsson09b6e6e2009-12-29 20:20:19 +0000574 break;
575
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000576 case Type::Enum:
Anders Carlssonc8cfd632009-12-29 22:30:11 +0000577 // Itanium C++ ABI 2.9.5p5:
578 // abi::__enum_type_info adds no data members to std::type_info.
Anders Carlsson9c7b6bb2009-12-29 22:13:01 +0000579 break;
580
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000581 case Type::Record: {
582 const CXXRecordDecl *RD =
583 cast<CXXRecordDecl>(cast<RecordType>(Ty)->getDecl());
584 if (!RD->getNumBases()) {
585 // We don't need to emit any fields.
586 break;
587 }
Anders Carlssonf64531a2009-12-30 01:00:12 +0000588
Anders Carlsson08148092009-12-30 23:47:56 +0000589 if (CanUseSingleInheritance(RD))
Anders Carlssonf64531a2009-12-30 01:00:12 +0000590 BuildSIClassTypeInfo(RD);
Anders Carlsson08148092009-12-30 23:47:56 +0000591 else
592 BuildVMIClassTypeInfo(RD);
593
594 break;
Anders Carlsson625c1ae2009-12-21 00:41:42 +0000595 }
596
Anders Carlsson8d145152009-12-20 22:30:54 +0000597 case Type::Pointer:
598 BuildPointerTypeInfo(cast<PointerType>(Ty));
599 break;
600
601 case Type::MemberPointer:
602 BuildPointerToMemberTypeInfo(cast<MemberPointerType>(Ty));
603 break;
604 }
605
606 llvm::Constant *Init =
Anders Carlsson531d55f2009-12-31 17:43:53 +0000607 llvm::ConstantStruct::get(VMContext, &Fields[0], Fields.size(),
Anders Carlsson8d145152009-12-20 22:30:54 +0000608 /*Packed=*/false);
609
610 llvm::GlobalVariable *GV =
611 new llvm::GlobalVariable(CGM.getModule(), Init->getType(),
612 /*Constant=*/true, Linkage, Init, Name);
613
614 // If there's already an old global variable, replace it with the new one.
615 if (OldGV) {
616 GV->takeName(OldGV);
617 llvm::Constant *NewPtr =
618 llvm::ConstantExpr::getBitCast(GV, OldGV->getType());
619 OldGV->replaceAllUsesWith(NewPtr);
620 OldGV->eraseFromParent();
621 }
622
623 return llvm::ConstantExpr::getBitCast(GV, Int8PtrTy);
624}
625
Anders Carlsson08148092009-12-30 23:47:56 +0000626/// ComputeQualifierFlags - Compute the pointer type info flags from the
Anders Carlsson8d145152009-12-20 22:30:54 +0000627/// given qualifier.
Anders Carlsson08148092009-12-30 23:47:56 +0000628static unsigned ComputeQualifierFlags(Qualifiers Quals) {
Anders Carlsson8d145152009-12-20 22:30:54 +0000629 unsigned Flags = 0;
630
631 if (Quals.hasConst())
632 Flags |= RTTIBuilder::PTI_Const;
633 if (Quals.hasVolatile())
634 Flags |= RTTIBuilder::PTI_Volatile;
635 if (Quals.hasRestrict())
636 Flags |= RTTIBuilder::PTI_Restrict;
637
638 return Flags;
639}
640
Anders Carlssonf64531a2009-12-30 01:00:12 +0000641/// BuildSIClassTypeInfo - Build an abi::__si_class_type_info, used for single
642/// inheritance, according to the Itanium C++ ABI, 2.95p6b.
643void RTTIBuilder::BuildSIClassTypeInfo(const CXXRecordDecl *RD) {
644 // Itanium C++ ABI 2.9.5p6b:
645 // It adds to abi::__class_type_info a single member pointing to the
646 // type_info structure for the base type,
Anders Carlsson531d55f2009-12-31 17:43:53 +0000647 llvm::Constant *BaseTypeInfo =
648 RTTIBuilder(CGM).BuildTypeInfo(RD->bases_begin()->getType());
649 Fields.push_back(BaseTypeInfo);
Anders Carlssonf64531a2009-12-30 01:00:12 +0000650}
651
Anders Carlsson08148092009-12-30 23:47:56 +0000652/// SeenBases - Contains virtual and non-virtual bases seen when traversing
653/// a class hierarchy.
654struct SeenBases {
655 llvm::SmallPtrSet<const CXXRecordDecl *, 16> NonVirtualBases;
656 llvm::SmallPtrSet<const CXXRecordDecl *, 16> VirtualBases;
657};
658
659/// ComputeVMIClassTypeInfoFlags - Compute the value of the flags member in
660/// abi::__vmi_class_type_info.
661///
662static unsigned ComputeVMIClassTypeInfoFlags(const CXXBaseSpecifier *Base,
663 SeenBases &Bases) {
664
665 unsigned Flags = 0;
666
667 const CXXRecordDecl *BaseDecl =
668 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
669
670 if (Base->isVirtual()) {
671 if (Bases.VirtualBases.count(BaseDecl)) {
672 // If this virtual base has been seen before, then the class is diamond
673 // shaped.
674 Flags |= RTTIBuilder::VMI_DiamondShaped;
675 } else {
676 if (Bases.NonVirtualBases.count(BaseDecl))
677 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
678
679 // Mark the virtual base as seen.
680 Bases.VirtualBases.insert(BaseDecl);
681 }
682 } else {
683 if (Bases.NonVirtualBases.count(BaseDecl)) {
684 // If this non-virtual base has been seen before, then the class has non-
685 // diamond shaped repeated inheritance.
686 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
687 } else {
688 if (Bases.VirtualBases.count(BaseDecl))
689 Flags |= RTTIBuilder::VMI_NonDiamondRepeat;
690
691 // Mark the non-virtual base as seen.
692 Bases.NonVirtualBases.insert(BaseDecl);
693 }
694 }
695
696 // Walk all bases.
697 for (CXXRecordDecl::base_class_const_iterator I = BaseDecl->bases_begin(),
698 E = BaseDecl->bases_end(); I != E; ++I)
699 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
700
701 return Flags;
702}
703
704static unsigned ComputeVMIClassTypeInfoFlags(const CXXRecordDecl *RD) {
705 unsigned Flags = 0;
706 SeenBases Bases;
707
708 // Walk all bases.
709 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
710 E = RD->bases_end(); I != E; ++I)
711 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
712
713 return Flags;
714}
715
716/// BuildVMIClassTypeInfo - Build an abi::__vmi_class_type_info, used for
717/// classes with bases that do not satisfy the abi::__si_class_type_info
718/// constraints, according ti the Itanium C++ ABI, 2.9.5p5c.
719void RTTIBuilder::BuildVMIClassTypeInfo(const CXXRecordDecl *RD) {
720 const llvm::Type *UnsignedIntLTy =
721 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
722
723 // Itanium C++ ABI 2.9.5p6c:
724 // __flags is a word with flags describing details about the class
725 // structure, which may be referenced by using the __flags_masks
726 // enumeration. These flags refer to both direct and indirect bases.
727 unsigned Flags = ComputeVMIClassTypeInfoFlags(RD);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000728 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson08148092009-12-30 23:47:56 +0000729
730 // Itanium C++ ABI 2.9.5p6c:
731 // __base_count is a word with the number of direct proper base class
732 // descriptions that follow.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000733 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, RD->getNumBases()));
Anders Carlsson08148092009-12-30 23:47:56 +0000734
735 if (!RD->getNumBases())
736 return;
737
738 const llvm::Type *LongLTy =
739 CGM.getTypes().ConvertType(CGM.getContext().LongTy);
740
741 // Now add the base class descriptions.
742
743 // Itanium C++ ABI 2.9.5p6c:
744 // __base_info[] is an array of base class descriptions -- one for every
745 // direct proper base. Each description is of the type:
746 //
747 // struct abi::__base_class_type_info {
748 // public:
749 // const __class_type_info *__base_type;
750 // long __offset_flags;
751 //
752 // enum __offset_flags_masks {
753 // __virtual_mask = 0x1,
754 // __public_mask = 0x2,
755 // __offset_shift = 8
756 // };
757 // };
758 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
759 E = RD->bases_end(); I != E; ++I) {
760 const CXXBaseSpecifier *Base = I;
761
762 // The __base_type member points to the RTTI for the base type.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000763 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(Base->getType()));
Anders Carlsson08148092009-12-30 23:47:56 +0000764
765 const CXXRecordDecl *BaseDecl =
766 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
767
768 int64_t OffsetFlags = 0;
769
770 // All but the lower 8 bits of __offset_flags are a signed offset.
771 // For a non-virtual base, this is the offset in the object of the base
772 // subobject. For a virtual base, this is the offset in the virtual table of
773 // the virtual base offset for the virtual base referenced (negative).
774 if (Base->isVirtual())
775 OffsetFlags = CGM.getVtableInfo().getVirtualBaseOffsetIndex(RD, BaseDecl);
776 else {
777 const ASTRecordLayout &Layout = CGM.getContext().getASTRecordLayout(RD);
778 OffsetFlags = Layout.getBaseClassOffset(BaseDecl) / 8;
779 };
780
781 OffsetFlags <<= 8;
782
783 // The low-order byte of __offset_flags contains flags, as given by the
784 // masks from the enumeration __offset_flags_masks.
785 if (Base->isVirtual())
786 OffsetFlags |= BCTI_Virtual;
787 if (Base->getAccessSpecifier() == AS_public)
788 OffsetFlags |= BCTI_Public;
789
Anders Carlsson531d55f2009-12-31 17:43:53 +0000790 Fields.push_back(llvm::ConstantInt::get(LongLTy, OffsetFlags));
Anders Carlsson08148092009-12-30 23:47:56 +0000791 }
792}
793
Anders Carlsson8d145152009-12-20 22:30:54 +0000794/// BuildPointerTypeInfo - Build an abi::__pointer_type_info struct,
795/// used for pointer types.
796void RTTIBuilder::BuildPointerTypeInfo(const PointerType *Ty) {
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000797 QualType PointeeTy = Ty->getPointeeType();
Anders Carlsson8d145152009-12-20 22:30:54 +0000798
799 // Itanium C++ ABI 2.9.5p7:
800 // __flags is a flag word describing the cv-qualification and other
801 // attributes of the type pointed to
Anders Carlsson08148092009-12-30 23:47:56 +0000802 unsigned Flags = ComputeQualifierFlags(PointeeTy.getQualifiers());
Anders Carlsson8d145152009-12-20 22:30:54 +0000803
804 // Itanium C++ ABI 2.9.5p7:
805 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
806 // incomplete class type, the incomplete target type flag is set.
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000807 if (ContainsIncompleteClassType(PointeeTy))
Anders Carlsson8d145152009-12-20 22:30:54 +0000808 Flags |= PTI_Incomplete;
809
810 const llvm::Type *UnsignedIntLTy =
811 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000812 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000813
814 // Itanium C++ ABI 2.9.5p7:
815 // __pointee is a pointer to the std::type_info derivation for the
816 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000817 llvm::Constant *PointeeTypeInfo =
818 RTTIBuilder(CGM).BuildTypeInfo(PointeeTy.getUnqualifiedType());
819 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000820}
821
822/// BuildPointerToMemberTypeInfo - Build an abi::__pointer_to_member_type_info
823/// struct, used for member pointer types.
824void RTTIBuilder::BuildPointerToMemberTypeInfo(const MemberPointerType *Ty) {
825 QualType PointeeTy = Ty->getPointeeType();
826
827 // Itanium C++ ABI 2.9.5p7:
828 // __flags is a flag word describing the cv-qualification and other
829 // attributes of the type pointed to.
Anders Carlsson08148092009-12-30 23:47:56 +0000830 unsigned Flags = ComputeQualifierFlags(PointeeTy.getQualifiers());
Anders Carlsson8d145152009-12-20 22:30:54 +0000831
832 const RecordType *ClassType = cast<RecordType>(Ty->getClass());
Anders Carlsson17fa6f92009-12-20 23:37:55 +0000833
834 // Itanium C++ ABI 2.9.5p7:
835 // When the abi::__pbase_type_info is for a direct or indirect pointer to an
836 // incomplete class type, the incomplete target type flag is set.
837 if (ContainsIncompleteClassType(PointeeTy))
838 Flags |= PTI_Incomplete;
839
Anders Carlsson8d145152009-12-20 22:30:54 +0000840 if (IsIncompleteClassType(ClassType))
841 Flags |= PTI_ContainingClassIncomplete;
842
Anders Carlsson8d145152009-12-20 22:30:54 +0000843 const llvm::Type *UnsignedIntLTy =
844 CGM.getTypes().ConvertType(CGM.getContext().UnsignedIntTy);
Anders Carlsson531d55f2009-12-31 17:43:53 +0000845 Fields.push_back(llvm::ConstantInt::get(UnsignedIntLTy, Flags));
Anders Carlsson8d145152009-12-20 22:30:54 +0000846
847 // Itanium C++ ABI 2.9.5p7:
848 // __pointee is a pointer to the std::type_info derivation for the
849 // unqualified type being pointed to.
Anders Carlsson531d55f2009-12-31 17:43:53 +0000850 llvm::Constant *PointeeTypeInfo =
851 RTTIBuilder(CGM).BuildTypeInfo(PointeeTy.getUnqualifiedType());
852 Fields.push_back(PointeeTypeInfo);
Anders Carlsson8d145152009-12-20 22:30:54 +0000853
854 // Itanium C++ ABI 2.9.5p9:
855 // __context is a pointer to an abi::__class_type_info corresponding to the
856 // class type containing the member pointed to
857 // (e.g., the "A" in "int A::*").
Anders Carlsson531d55f2009-12-31 17:43:53 +0000858 Fields.push_back(RTTIBuilder(CGM).BuildTypeInfo(QualType(ClassType, 0)));
Anders Carlsson8d145152009-12-20 22:30:54 +0000859}
860
Anders Carlsson1d7088d2009-12-17 07:09:17 +0000861llvm::Constant *CodeGenModule::GetAddrOfRTTIDescriptor(QualType Ty) {
Anders Carlsson31b7f522009-12-11 02:46:30 +0000862 if (!getContext().getLangOptions().RTTI) {
863 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
864 return llvm::Constant::getNullValue(Int8PtrTy);
865 }
866
Anders Carlsson531d55f2009-12-31 17:43:53 +0000867 return RTTIBuilder(*this).BuildTypeInfo(Ty);
Anders Carlsson31b7f522009-12-11 02:46:30 +0000868}