blob: 43708ff160ff66df9b556a55f21ea01a2e9ba28a [file] [log] [blame]
Anders Carlsson046c2942010-04-17 20:15:18 +00001//===--- CGVTables.cpp - Emit LLVM Code for C++ vtables -------------------===//
Anders Carlssondbd920c2009-10-11 22:13:54 +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 virtual tables.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenModule.h"
15#include "CodeGenFunction.h"
John McCall4c40d982010-08-31 07:33:07 +000016#include "CGCXXABI.h"
Anders Carlssond6b07fb2009-11-27 20:47:55 +000017#include "clang/AST/CXXInheritance.h"
Anders Carlssondbd920c2009-10-11 22:13:54 +000018#include "clang/AST/RecordLayout.h"
John McCall7a536902010-08-05 20:39:18 +000019#include "clang/Frontend/CodeGenOptions.h"
Anders Carlsson5dd730a2009-11-26 19:32:45 +000020#include "llvm/ADT/DenseSet.h"
Anders Carlssonb9021e92010-02-27 16:18:19 +000021#include "llvm/ADT/SetVector.h"
Chandler Carruthe087f072010-02-13 10:38:52 +000022#include "llvm/Support/Compiler.h"
Anders Carlsson824d7ea2010-02-11 08:02:13 +000023#include "llvm/Support/Format.h"
Eli Friedman7dcdf5b2011-05-06 17:27:27 +000024#include "llvm/Transforms/Utils/Cloning.h"
Anders Carlsson5e454aa2010-03-17 20:06:32 +000025#include <algorithm>
Zhongxing Xu7fe26ac2009-11-13 05:46:16 +000026#include <cstdio>
Anders Carlssondbd920c2009-10-11 22:13:54 +000027
28using namespace clang;
29using namespace CodeGen;
30
Peter Collingbourne1d2b3172011-09-26 01:56:30 +000031CodeGenVTables::CodeGenVTables(CodeGenModule &CGM)
32 : CGM(CGM), VTContext(CGM.getContext()) { }
33
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +000034bool CodeGenVTables::ShouldEmitVTableInThisTU(const CXXRecordDecl *RD) {
35 assert(RD->isDynamicClass() && "Non dynamic classes have no VTable.");
36
37 TemplateSpecializationKind TSK = RD->getTemplateSpecializationKind();
38 if (TSK == TSK_ExplicitInstantiationDeclaration)
39 return false;
40
41 const CXXMethodDecl *KeyFunction = CGM.getContext().getKeyFunction(RD);
42 if (!KeyFunction)
43 return true;
44
45 // Itanium C++ ABI, 5.2.6 Instantiated Templates:
46 // An instantiation of a class template requires:
47 // - In the object where instantiated, the virtual table...
48 if (TSK == TSK_ImplicitInstantiation ||
49 TSK == TSK_ExplicitInstantiationDefinition)
50 return true;
51
Anders Carlsson6d7f8472011-01-30 20:45:54 +000052 // If we're building with optimization, we always emit VTables since that
53 // allows for virtual function calls to be devirtualized.
54 // (We don't want to do this in -fapple-kext mode however).
David Blaikie4e4d0842012-03-11 07:00:24 +000055 if (CGM.getCodeGenOpts().OptimizationLevel && !CGM.getLangOpts().AppleKext)
Anders Carlsson6d7f8472011-01-30 20:45:54 +000056 return true;
57
Argyrios Kyrtzidisd2c47bd2010-10-11 03:25:57 +000058 return KeyFunction->hasBody();
59}
60
Anders Carlsson19879c92010-03-23 17:17:29 +000061llvm::Constant *CodeGenModule::GetAddrOfThunk(GlobalDecl GD,
Anders Carlsson84c49e42011-02-06 17:15:43 +000062 const ThunkInfo &Thunk) {
Anders Carlsson19879c92010-03-23 17:17:29 +000063 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
64
65 // Compute the mangled name.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +000066 SmallString<256> Name;
Rafael Espindolaf0be9792011-02-11 02:52:17 +000067 llvm::raw_svector_ostream Out(Name);
Anders Carlsson19879c92010-03-23 17:17:29 +000068 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
John McCall4c40d982010-08-31 07:33:07 +000069 getCXXABI().getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(),
Rafael Espindolaf0be9792011-02-11 02:52:17 +000070 Thunk.This, Out);
Anders Carlsson19879c92010-03-23 17:17:29 +000071 else
Rafael Espindolaf0be9792011-02-11 02:52:17 +000072 getCXXABI().getMangleContext().mangleThunk(MD, Thunk, Out);
73 Out.flush();
74
Chris Lattner2acc6e32011-07-18 04:24:23 +000075 llvm::Type *Ty = getTypes().GetFunctionTypeForVTable(GD);
Anders Carlsson84c49e42011-02-06 17:15:43 +000076 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true);
Anders Carlsson19879c92010-03-23 17:17:29 +000077}
78
Anders Carlsson519c3282010-03-24 00:39:18 +000079static llvm::Value *PerformTypeAdjustment(CodeGenFunction &CGF,
80 llvm::Value *Ptr,
81 int64_t NonVirtualAdjustment,
Eli Friedman82bad6b2012-09-14 01:45:09 +000082 int64_t VirtualAdjustment,
83 bool IsReturnAdjustment) {
Anders Carlsson519c3282010-03-24 00:39:18 +000084 if (!NonVirtualAdjustment && !VirtualAdjustment)
85 return Ptr;
86
Chris Lattner8b418682012-02-07 00:39:47 +000087 llvm::Type *Int8PtrTy = CGF.Int8PtrTy;
Anders Carlsson519c3282010-03-24 00:39:18 +000088 llvm::Value *V = CGF.Builder.CreateBitCast(Ptr, Int8PtrTy);
89
Eli Friedman82bad6b2012-09-14 01:45:09 +000090 if (NonVirtualAdjustment && !IsReturnAdjustment) {
91 // Perform the non-virtual adjustment for a base-to-derived cast.
Anders Carlsson519c3282010-03-24 00:39:18 +000092 V = CGF.Builder.CreateConstInBoundsGEP1_64(V, NonVirtualAdjustment);
93 }
94
95 if (VirtualAdjustment) {
Chris Lattner2acc6e32011-07-18 04:24:23 +000096 llvm::Type *PtrDiffTy =
Anders Carlsson519c3282010-03-24 00:39:18 +000097 CGF.ConvertType(CGF.getContext().getPointerDiffType());
98
Eli Friedman82bad6b2012-09-14 01:45:09 +000099 // Perform the virtual adjustment.
Anders Carlsson519c3282010-03-24 00:39:18 +0000100 llvm::Value *VTablePtrPtr =
101 CGF.Builder.CreateBitCast(V, Int8PtrTy->getPointerTo());
102
103 llvm::Value *VTablePtr = CGF.Builder.CreateLoad(VTablePtrPtr);
104
105 llvm::Value *OffsetPtr =
106 CGF.Builder.CreateConstInBoundsGEP1_64(VTablePtr, VirtualAdjustment);
107
108 OffsetPtr = CGF.Builder.CreateBitCast(OffsetPtr, PtrDiffTy->getPointerTo());
109
110 // Load the adjustment offset from the vtable.
111 llvm::Value *Offset = CGF.Builder.CreateLoad(OffsetPtr);
112
113 // Adjust our pointer.
114 V = CGF.Builder.CreateInBoundsGEP(V, Offset);
115 }
116
Eli Friedman82bad6b2012-09-14 01:45:09 +0000117 if (NonVirtualAdjustment && IsReturnAdjustment) {
118 // Perform the non-virtual adjustment for a derived-to-base cast.
119 V = CGF.Builder.CreateConstInBoundsGEP1_64(V, NonVirtualAdjustment);
120 }
121
Anders Carlsson519c3282010-03-24 00:39:18 +0000122 // Cast back to the original type.
123 return CGF.Builder.CreateBitCast(V, Ptr->getType());
124}
125
John McCall65005532010-08-04 23:46:35 +0000126static void setThunkVisibility(CodeGenModule &CGM, const CXXMethodDecl *MD,
127 const ThunkInfo &Thunk, llvm::Function *Fn) {
Anders Carlsson0ffeaad2011-01-29 19:39:23 +0000128 CGM.setGlobalVisibility(Fn, MD);
John McCall65005532010-08-04 23:46:35 +0000129
John McCall279b5eb2010-08-12 23:36:15 +0000130 if (!CGM.getCodeGenOpts().HiddenWeakVTables)
131 return;
132
John McCall65005532010-08-04 23:46:35 +0000133 // If the thunk has weak/linkonce linkage, but the function must be
134 // emitted in every translation unit that references it, then we can
135 // emit its thunks with hidden visibility, since its thunks must be
136 // emitted when the function is.
137
John McCall7a536902010-08-05 20:39:18 +0000138 // This follows CodeGenModule::setTypeVisibility; see the comments
139 // there for explanation.
John McCall65005532010-08-04 23:46:35 +0000140
141 if ((Fn->getLinkage() != llvm::GlobalVariable::LinkOnceODRLinkage &&
142 Fn->getLinkage() != llvm::GlobalVariable::WeakODRLinkage) ||
143 Fn->getVisibility() != llvm::GlobalVariable::DefaultVisibility)
144 return;
145
Douglas Gregor4421d2b2011-03-26 12:10:19 +0000146 if (MD->getExplicitVisibility())
John McCall65005532010-08-04 23:46:35 +0000147 return;
148
149 switch (MD->getTemplateSpecializationKind()) {
John McCall65005532010-08-04 23:46:35 +0000150 case TSK_ExplicitInstantiationDefinition:
151 case TSK_ExplicitInstantiationDeclaration:
152 return;
153
John McCall65005532010-08-04 23:46:35 +0000154 case TSK_Undeclared:
155 break;
156
John McCall7a536902010-08-05 20:39:18 +0000157 case TSK_ExplicitSpecialization:
John McCall65005532010-08-04 23:46:35 +0000158 case TSK_ImplicitInstantiation:
John McCall279b5eb2010-08-12 23:36:15 +0000159 if (!CGM.getCodeGenOpts().HiddenWeakTemplateVTables)
John McCall7a536902010-08-05 20:39:18 +0000160 return;
John McCall65005532010-08-04 23:46:35 +0000161 break;
162 }
163
164 // If there's an explicit definition, and that definition is
165 // out-of-line, then we can't assume that all users will have a
166 // definition to emit.
167 const FunctionDecl *Def = 0;
168 if (MD->hasBody(Def) && Def->isOutOfLine())
169 return;
170
171 Fn->setVisibility(llvm::GlobalValue::HiddenVisibility);
172}
173
John McCall311b4422011-03-09 07:12:35 +0000174#ifndef NDEBUG
175static bool similar(const ABIArgInfo &infoL, CanQualType typeL,
176 const ABIArgInfo &infoR, CanQualType typeR) {
177 return (infoL.getKind() == infoR.getKind() &&
178 (typeL == typeR ||
179 (isa<PointerType>(typeL) && isa<PointerType>(typeR)) ||
180 (isa<ReferenceType>(typeL) && isa<ReferenceType>(typeR))));
181}
182#endif
183
Eli Friedman7dcdf5b2011-05-06 17:27:27 +0000184static RValue PerformReturnAdjustment(CodeGenFunction &CGF,
185 QualType ResultType, RValue RV,
186 const ThunkInfo &Thunk) {
187 // Emit the return adjustment.
188 bool NullCheckValue = !ResultType->isReferenceType();
189
190 llvm::BasicBlock *AdjustNull = 0;
191 llvm::BasicBlock *AdjustNotNull = 0;
192 llvm::BasicBlock *AdjustEnd = 0;
193
194 llvm::Value *ReturnValue = RV.getScalarVal();
195
196 if (NullCheckValue) {
197 AdjustNull = CGF.createBasicBlock("adjust.null");
198 AdjustNotNull = CGF.createBasicBlock("adjust.notnull");
199 AdjustEnd = CGF.createBasicBlock("adjust.end");
200
201 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue);
202 CGF.Builder.CreateCondBr(IsNull, AdjustNull, AdjustNotNull);
203 CGF.EmitBlock(AdjustNotNull);
204 }
205
206 ReturnValue = PerformTypeAdjustment(CGF, ReturnValue,
207 Thunk.Return.NonVirtual,
Eli Friedman82bad6b2012-09-14 01:45:09 +0000208 Thunk.Return.VBaseOffsetOffset,
209 /*IsReturnAdjustment*/true);
Eli Friedman7dcdf5b2011-05-06 17:27:27 +0000210
211 if (NullCheckValue) {
212 CGF.Builder.CreateBr(AdjustEnd);
213 CGF.EmitBlock(AdjustNull);
214 CGF.Builder.CreateBr(AdjustEnd);
215 CGF.EmitBlock(AdjustEnd);
216
217 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2);
218 PHI->addIncoming(ReturnValue, AdjustNotNull);
219 PHI->addIncoming(llvm::Constant::getNullValue(ReturnValue->getType()),
220 AdjustNull);
221 ReturnValue = PHI;
222 }
223
224 return RValue::get(ReturnValue);
225}
226
227// This function does roughly the same thing as GenerateThunk, but in a
228// very different way, so that va_start and va_end work correctly.
229// FIXME: This function assumes "this" is the first non-sret LLVM argument of
230// a function, and that there is an alloca built in the entry block
231// for all accesses to "this".
232// FIXME: This function assumes there is only one "ret" statement per function.
233// FIXME: Cloning isn't correct in the presence of indirect goto!
234// FIXME: This implementation of thunks bloats codesize by duplicating the
235// function definition. There are alternatives:
236// 1. Add some sort of stub support to LLVM for cases where we can
237// do a this adjustment, then a sibcall.
238// 2. We could transform the definition to take a va_list instead of an
239// actual variable argument list, then have the thunks (including a
240// no-op thunk for the regular definition) call va_start/va_end.
241// There's a bit of per-call overhead for this solution, but it's
242// better for codesize if the definition is long.
243void CodeGenFunction::GenerateVarArgsThunk(
244 llvm::Function *Fn,
245 const CGFunctionInfo &FnInfo,
246 GlobalDecl GD, const ThunkInfo &Thunk) {
247 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
248 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
249 QualType ResultType = FPT->getResultType();
250
251 // Get the original function
John McCallde5d3c72012-02-17 03:33:10 +0000252 assert(FnInfo.isVariadic());
253 llvm::Type *Ty = CGM.getTypes().GetFunctionType(FnInfo);
Eli Friedman7dcdf5b2011-05-06 17:27:27 +0000254 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
255 llvm::Function *BaseFn = cast<llvm::Function>(Callee);
256
257 // Clone to thunk.
258 llvm::Function *NewFn = llvm::CloneFunction(BaseFn);
259 CGM.getModule().getFunctionList().push_back(NewFn);
260 Fn->replaceAllUsesWith(NewFn);
261 NewFn->takeName(Fn);
262 Fn->eraseFromParent();
263 Fn = NewFn;
264
265 // "Initialize" CGF (minimally).
266 CurFn = Fn;
267
268 // Get the "this" value
269 llvm::Function::arg_iterator AI = Fn->arg_begin();
270 if (CGM.ReturnTypeUsesSRet(FnInfo))
271 ++AI;
272
273 // Find the first store of "this", which will be to the alloca associated
274 // with "this".
275 llvm::Value *ThisPtr = &*AI;
276 llvm::BasicBlock *EntryBB = Fn->begin();
277 llvm::Instruction *ThisStore = 0;
278 for (llvm::BasicBlock::iterator I = EntryBB->begin(), E = EntryBB->end();
279 I != E; I++) {
280 if (isa<llvm::StoreInst>(I) && I->getOperand(0) == ThisPtr) {
281 ThisStore = cast<llvm::StoreInst>(I);
282 break;
283 }
284 }
285 assert(ThisStore && "Store of this should be in entry block?");
286 // Adjust "this", if necessary.
287 Builder.SetInsertPoint(ThisStore);
288 llvm::Value *AdjustedThisPtr =
289 PerformTypeAdjustment(*this, ThisPtr,
290 Thunk.This.NonVirtual,
Eli Friedman82bad6b2012-09-14 01:45:09 +0000291 Thunk.This.VCallOffsetOffset,
292 /*IsReturnAdjustment*/false);
Eli Friedman7dcdf5b2011-05-06 17:27:27 +0000293 ThisStore->setOperand(0, AdjustedThisPtr);
294
295 if (!Thunk.Return.isEmpty()) {
296 // Fix up the returned value, if necessary.
297 for (llvm::Function::iterator I = Fn->begin(), E = Fn->end(); I != E; I++) {
298 llvm::Instruction *T = I->getTerminator();
299 if (isa<llvm::ReturnInst>(T)) {
300 RValue RV = RValue::get(T->getOperand(0));
301 T->eraseFromParent();
302 Builder.SetInsertPoint(&*I);
303 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
304 Builder.CreateRet(RV.getScalarVal());
305 break;
306 }
307 }
308 }
309}
310
John McCalld26bc762011-03-09 04:27:21 +0000311void CodeGenFunction::GenerateThunk(llvm::Function *Fn,
312 const CGFunctionInfo &FnInfo,
313 GlobalDecl GD, const ThunkInfo &Thunk) {
Anders Carlsson519c3282010-03-24 00:39:18 +0000314 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
315 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
316 QualType ResultType = FPT->getResultType();
317 QualType ThisType = MD->getThisType(getContext());
318
319 FunctionArgList FunctionArgs;
320
321 // FIXME: It would be nice if more of this code could be shared with
322 // CodeGenFunction::GenerateCode.
323
324 // Create the implicit 'this' parameter declaration.
John McCall4c40d982010-08-31 07:33:07 +0000325 CurGD = GD;
326 CGM.getCXXABI().BuildInstanceFunctionParams(*this, ResultType, FunctionArgs);
Anders Carlsson519c3282010-03-24 00:39:18 +0000327
328 // Add the rest of the parameters.
329 for (FunctionDecl::param_const_iterator I = MD->param_begin(),
330 E = MD->param_end(); I != E; ++I) {
331 ParmVarDecl *Param = *I;
332
John McCalld26bc762011-03-09 04:27:21 +0000333 FunctionArgs.push_back(Param);
Anders Carlsson519c3282010-03-24 00:39:18 +0000334 }
Tilmann Scheller9c6082f2011-03-02 21:36:49 +0000335
John McCalld26bc762011-03-09 04:27:21 +0000336 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs,
337 SourceLocation());
Anders Carlsson519c3282010-03-24 00:39:18 +0000338
John McCall4c40d982010-08-31 07:33:07 +0000339 CGM.getCXXABI().EmitInstanceFunctionProlog(*this);
Eli Friedmancec5ebd2012-02-11 02:57:39 +0000340 CXXThisValue = CXXABIThisValue;
John McCall4c40d982010-08-31 07:33:07 +0000341
Anders Carlsson519c3282010-03-24 00:39:18 +0000342 // Adjust the 'this' pointer if necessary.
343 llvm::Value *AdjustedThisPtr =
344 PerformTypeAdjustment(*this, LoadCXXThis(),
345 Thunk.This.NonVirtual,
Eli Friedman82bad6b2012-09-14 01:45:09 +0000346 Thunk.This.VCallOffsetOffset,
347 /*IsReturnAdjustment*/false);
Anders Carlsson519c3282010-03-24 00:39:18 +0000348
349 CallArgList CallArgs;
350
351 // Add our adjusted 'this' pointer.
Eli Friedman04c9a492011-05-02 17:57:46 +0000352 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType);
Anders Carlsson519c3282010-03-24 00:39:18 +0000353
354 // Add the rest of the parameters.
355 for (FunctionDecl::param_const_iterator I = MD->param_begin(),
356 E = MD->param_end(); I != E; ++I) {
John McCall413ebdb2011-03-11 20:59:21 +0000357 ParmVarDecl *param = *I;
358 EmitDelegateCallArg(CallArgs, param);
Anders Carlsson519c3282010-03-24 00:39:18 +0000359 }
360
361 // Get our callee.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000362 llvm::Type *Ty =
John McCallde5d3c72012-02-17 03:33:10 +0000363 CGM.getTypes().GetFunctionType(CGM.getTypes().arrangeGlobalDeclaration(GD));
Anders Carlsson84c49e42011-02-06 17:15:43 +0000364 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
Anders Carlsson519c3282010-03-24 00:39:18 +0000365
John McCalld26bc762011-03-09 04:27:21 +0000366#ifndef NDEBUG
John McCall0f3d0972012-07-07 06:41:13 +0000367 const CGFunctionInfo &CallFnInfo =
368 CGM.getTypes().arrangeCXXMethodCall(CallArgs, FPT,
John McCallde5d3c72012-02-17 03:33:10 +0000369 RequiredArgs::forPrototypePlus(FPT, 1));
John McCall311b4422011-03-09 07:12:35 +0000370 assert(CallFnInfo.getRegParm() == FnInfo.getRegParm() &&
371 CallFnInfo.isNoReturn() == FnInfo.isNoReturn() &&
372 CallFnInfo.getCallingConvention() == FnInfo.getCallingConvention());
John McCall0f3d0972012-07-07 06:41:13 +0000373 assert(isa<CXXDestructorDecl>(MD) || // ignore dtor return types
374 similar(CallFnInfo.getReturnInfo(), CallFnInfo.getReturnType(),
John McCall311b4422011-03-09 07:12:35 +0000375 FnInfo.getReturnInfo(), FnInfo.getReturnType()));
376 assert(CallFnInfo.arg_size() == FnInfo.arg_size());
377 for (unsigned i = 0, e = FnInfo.arg_size(); i != e; ++i)
378 assert(similar(CallFnInfo.arg_begin()[i].info,
379 CallFnInfo.arg_begin()[i].type,
380 FnInfo.arg_begin()[i].info, FnInfo.arg_begin()[i].type));
John McCalld26bc762011-03-09 04:27:21 +0000381#endif
Anders Carlsson519c3282010-03-24 00:39:18 +0000382
Douglas Gregorcb359df2010-05-20 05:54:35 +0000383 // Determine whether we have a return value slot to use.
384 ReturnValueSlot Slot;
385 if (!ResultType->isVoidType() &&
386 FnInfo.getReturnInfo().getKind() == ABIArgInfo::Indirect &&
387 hasAggregateLLVMType(CurFnInfo->getReturnType()))
388 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified());
389
Anders Carlsson519c3282010-03-24 00:39:18 +0000390 // Now emit our call.
Douglas Gregorcb359df2010-05-20 05:54:35 +0000391 RValue RV = EmitCall(FnInfo, Callee, Slot, CallArgs, MD);
Anders Carlsson519c3282010-03-24 00:39:18 +0000392
Eli Friedman7dcdf5b2011-05-06 17:27:27 +0000393 if (!Thunk.Return.isEmpty())
394 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
Anders Carlsson519c3282010-03-24 00:39:18 +0000395
Douglas Gregorcb359df2010-05-20 05:54:35 +0000396 if (!ResultType->isVoidType() && Slot.isNull())
John McCalld16c2cf2011-02-08 08:22:06 +0000397 CGM.getCXXABI().EmitReturnFromThunk(*this, RV, ResultType);
Anders Carlsson519c3282010-03-24 00:39:18 +0000398
John McCallbd9b65a2012-07-31 00:33:55 +0000399 // Disable the final ARC autorelease.
400 AutoreleaseResult = false;
401
Anders Carlsson519c3282010-03-24 00:39:18 +0000402 FinishFunction();
403
Anders Carlsson519c3282010-03-24 00:39:18 +0000404 // Set the right linkage.
John McCall8b242332010-05-25 04:30:21 +0000405 CGM.setFunctionLinkage(MD, Fn);
Anders Carlsson519c3282010-03-24 00:39:18 +0000406
407 // Set the right visibility.
John McCall65005532010-08-04 23:46:35 +0000408 setThunkVisibility(CGM, MD, Thunk, Fn);
Anders Carlsson519c3282010-03-24 00:39:18 +0000409}
410
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000411void CodeGenVTables::EmitThunk(GlobalDecl GD, const ThunkInfo &Thunk,
412 bool UseAvailableExternallyLinkage)
Anders Carlssonfbf6ed42010-03-23 16:36:50 +0000413{
John McCallde5d3c72012-02-17 03:33:10 +0000414 const CGFunctionInfo &FnInfo = CGM.getTypes().arrangeGlobalDeclaration(GD);
John McCalld26bc762011-03-09 04:27:21 +0000415
416 // FIXME: re-use FnInfo in this computation.
Anders Carlsson84c49e42011-02-06 17:15:43 +0000417 llvm::Constant *Entry = CGM.GetAddrOfThunk(GD, Thunk);
Anders Carlsson19879c92010-03-23 17:17:29 +0000418
Anders Carlsson7986ad52010-03-23 18:18:41 +0000419 // Strip off a bitcast if we got one back.
Anders Carlsson13d68982010-03-24 00:35:44 +0000420 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) {
Anders Carlsson7986ad52010-03-23 18:18:41 +0000421 assert(CE->getOpcode() == llvm::Instruction::BitCast);
Anders Carlsson13d68982010-03-24 00:35:44 +0000422 Entry = CE->getOperand(0);
Anders Carlsson7986ad52010-03-23 18:18:41 +0000423 }
424
Anders Carlsson7986ad52010-03-23 18:18:41 +0000425 // There's already a declaration with the same name, check if it has the same
426 // type or if we need to replace it.
Anders Carlsson13d68982010-03-24 00:35:44 +0000427 if (cast<llvm::GlobalValue>(Entry)->getType()->getElementType() !=
John McCall4c40d982010-08-31 07:33:07 +0000428 CGM.getTypes().GetFunctionTypeForVTable(GD)) {
Anders Carlsson13d68982010-03-24 00:35:44 +0000429 llvm::GlobalValue *OldThunkFn = cast<llvm::GlobalValue>(Entry);
Anders Carlsson7986ad52010-03-23 18:18:41 +0000430
431 // If the types mismatch then we have to rewrite the definition.
432 assert(OldThunkFn->isDeclaration() &&
433 "Shouldn't replace non-declaration");
434
435 // Remove the name from the old thunk function and get a new thunk.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000436 OldThunkFn->setName(StringRef());
Anders Carlsson84c49e42011-02-06 17:15:43 +0000437 Entry = CGM.GetAddrOfThunk(GD, Thunk);
Anders Carlsson7986ad52010-03-23 18:18:41 +0000438
439 // If needed, replace the old thunk with a bitcast.
440 if (!OldThunkFn->use_empty()) {
441 llvm::Constant *NewPtrForOldDecl =
Anders Carlsson13d68982010-03-24 00:35:44 +0000442 llvm::ConstantExpr::getBitCast(Entry, OldThunkFn->getType());
Anders Carlsson7986ad52010-03-23 18:18:41 +0000443 OldThunkFn->replaceAllUsesWith(NewPtrForOldDecl);
444 }
445
446 // Remove the old thunk.
447 OldThunkFn->eraseFromParent();
448 }
Anders Carlsson519c3282010-03-24 00:39:18 +0000449
Anders Carlsson519c3282010-03-24 00:39:18 +0000450 llvm::Function *ThunkFn = cast<llvm::Function>(Entry);
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000451
452 if (!ThunkFn->isDeclaration()) {
453 if (UseAvailableExternallyLinkage) {
454 // There is already a thunk emitted for this function, do nothing.
455 return;
456 }
457
Anders Carlsson22df7b12011-02-06 20:09:44 +0000458 // If a function has a body, it should have available_externally linkage.
459 assert(ThunkFn->hasAvailableExternallyLinkage() &&
460 "Function should have available_externally linkage!");
461
462 // Change the linkage.
463 CGM.setFunctionLinkage(cast<CXXMethodDecl>(GD.getDecl()), ThunkFn);
464 return;
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000465 }
466
Eli Friedman7dcdf5b2011-05-06 17:27:27 +0000467 if (ThunkFn->isVarArg()) {
468 // Varargs thunks are special; we can't just generate a call because
469 // we can't copy the varargs. Our implementation is rather
470 // expensive/sucky at the moment, so don't generate the thunk unless
471 // we have to.
472 // FIXME: Do something better here; GenerateVarArgsThunk is extremely ugly.
473 if (!UseAvailableExternallyLinkage)
474 CodeGenFunction(CGM).GenerateVarArgsThunk(ThunkFn, FnInfo, GD, Thunk);
475 } else {
476 // Normal thunk body generation.
477 CodeGenFunction(CGM).GenerateThunk(ThunkFn, FnInfo, GD, Thunk);
478 }
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000479
480 if (UseAvailableExternallyLinkage)
481 ThunkFn->setLinkage(llvm::GlobalValue::AvailableExternallyLinkage);
482}
483
484void CodeGenVTables::MaybeEmitThunkAvailableExternally(GlobalDecl GD,
485 const ThunkInfo &Thunk) {
486 // We only want to do this when building with optimizations.
487 if (!CGM.getCodeGenOpts().OptimizationLevel)
488 return;
489
490 // We can't emit thunks for member functions with incomplete types.
491 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Chris Lattnerf742eb02011-07-10 00:18:59 +0000492 if (!CGM.getTypes().isFuncTypeConvertible(
493 cast<FunctionType>(MD->getType().getTypePtr())))
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000494 return;
495
496 EmitThunk(GD, Thunk, /*UseAvailableExternallyLinkage=*/true);
Anders Carlssonfbf6ed42010-03-23 16:36:50 +0000497}
498
Anders Carlssonee5ab9f2010-03-23 04:59:02 +0000499void CodeGenVTables::EmitThunks(GlobalDecl GD)
500{
Anders Carlssonfbf6ed42010-03-23 16:36:50 +0000501 const CXXMethodDecl *MD =
502 cast<CXXMethodDecl>(GD.getDecl())->getCanonicalDecl();
503
504 // We don't need to generate thunks for the base destructor.
505 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
506 return;
507
Peter Collingbourne84fcc482011-09-26 01:56:41 +0000508 const VTableContext::ThunkInfoVectorTy *ThunkInfoVector =
509 VTContext.getThunkInfo(MD);
510 if (!ThunkInfoVector)
Anders Carlssonccd83d72010-03-24 16:42:11 +0000511 return;
Anders Carlssonccd83d72010-03-24 16:42:11 +0000512
Peter Collingbourne84fcc482011-09-26 01:56:41 +0000513 for (unsigned I = 0, E = ThunkInfoVector->size(); I != E; ++I)
514 EmitThunk(GD, (*ThunkInfoVector)[I],
515 /*UseAvailableExternallyLinkage=*/false);
Anders Carlssonee5ab9f2010-03-23 04:59:02 +0000516}
517
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000518llvm::Constant *
519CodeGenVTables::CreateVTableInitializer(const CXXRecordDecl *RD,
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000520 const VTableComponent *Components,
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000521 unsigned NumComponents,
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000522 const VTableLayout::VTableThunkTy *VTableThunks,
523 unsigned NumVTableThunks) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000524 SmallVector<llvm::Constant *, 64> Inits;
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000525
Chris Lattner8b418682012-02-07 00:39:47 +0000526 llvm::Type *Int8PtrTy = CGM.Int8PtrTy;
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000527
Chris Lattner2acc6e32011-07-18 04:24:23 +0000528 llvm::Type *PtrDiffTy =
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000529 CGM.getTypes().ConvertType(CGM.getContext().getPointerDiffType());
530
531 QualType ClassType = CGM.getContext().getTagDeclType(RD);
532 llvm::Constant *RTTI = CGM.GetAddrOfRTTIDescriptor(ClassType);
533
534 unsigned NextVTableThunkIndex = 0;
535
Anders Carlsson67d568a2010-03-29 05:40:50 +0000536 llvm::Constant* PureVirtualFn = 0;
537
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000538 for (unsigned I = 0; I != NumComponents; ++I) {
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000539 VTableComponent Component = Components[I];
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000540
541 llvm::Constant *Init = 0;
542
543 switch (Component.getKind()) {
Anders Carlsson94464812010-04-10 19:13:06 +0000544 case VTableComponent::CK_VCallOffset:
Ken Dyckc40a3fd2011-04-02 01:14:48 +0000545 Init = llvm::ConstantInt::get(PtrDiffTy,
546 Component.getVCallOffset().getQuantity());
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000547 Init = llvm::ConstantExpr::getIntToPtr(Init, Int8PtrTy);
548 break;
Anders Carlsson94464812010-04-10 19:13:06 +0000549 case VTableComponent::CK_VBaseOffset:
Ken Dyckc40a3fd2011-04-02 01:14:48 +0000550 Init = llvm::ConstantInt::get(PtrDiffTy,
551 Component.getVBaseOffset().getQuantity());
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000552 Init = llvm::ConstantExpr::getIntToPtr(Init, Int8PtrTy);
553 break;
Anders Carlsson94464812010-04-10 19:13:06 +0000554 case VTableComponent::CK_OffsetToTop:
Ken Dyckc40a3fd2011-04-02 01:14:48 +0000555 Init = llvm::ConstantInt::get(PtrDiffTy,
556 Component.getOffsetToTop().getQuantity());
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000557 Init = llvm::ConstantExpr::getIntToPtr(Init, Int8PtrTy);
558 break;
Anders Carlsson94464812010-04-10 19:13:06 +0000559 case VTableComponent::CK_RTTI:
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000560 Init = llvm::ConstantExpr::getBitCast(RTTI, Int8PtrTy);
561 break;
Anders Carlsson94464812010-04-10 19:13:06 +0000562 case VTableComponent::CK_FunctionPointer:
563 case VTableComponent::CK_CompleteDtorPointer:
564 case VTableComponent::CK_DeletingDtorPointer: {
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000565 GlobalDecl GD;
566
567 // Get the right global decl.
568 switch (Component.getKind()) {
569 default:
570 llvm_unreachable("Unexpected vtable component kind");
Anders Carlsson94464812010-04-10 19:13:06 +0000571 case VTableComponent::CK_FunctionPointer:
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000572 GD = Component.getFunctionDecl();
573 break;
Anders Carlsson94464812010-04-10 19:13:06 +0000574 case VTableComponent::CK_CompleteDtorPointer:
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000575 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Complete);
576 break;
Anders Carlsson94464812010-04-10 19:13:06 +0000577 case VTableComponent::CK_DeletingDtorPointer:
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000578 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Deleting);
579 break;
580 }
581
Anders Carlsson67d568a2010-03-29 05:40:50 +0000582 if (cast<CXXMethodDecl>(GD.getDecl())->isPure()) {
583 // We have a pure virtual member function.
Joao Matose9af3e62012-07-17 19:17:58 +0000584 if (!PureVirtualFn) {
Eli Friedmancf15f172012-09-14 01:19:01 +0000585 llvm::FunctionType *Ty =
586 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg=*/false);
587 StringRef PureCallName = CGM.getCXXABI().GetPureVirtualCallName();
588 PureVirtualFn = CGM.CreateRuntimeFunction(Ty, PureCallName);
589 PureVirtualFn = llvm::ConstantExpr::getBitCast(PureVirtualFn,
Joao Matose9af3e62012-07-17 19:17:58 +0000590 CGM.Int8PtrTy);
Anders Carlsson67d568a2010-03-29 05:40:50 +0000591 }
Anders Carlsson67d568a2010-03-29 05:40:50 +0000592 Init = PureVirtualFn;
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000593 } else {
Anders Carlsson67d568a2010-03-29 05:40:50 +0000594 // Check if we should use a thunk.
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000595 if (NextVTableThunkIndex < NumVTableThunks &&
Anders Carlsson67d568a2010-03-29 05:40:50 +0000596 VTableThunks[NextVTableThunkIndex].first == I) {
597 const ThunkInfo &Thunk = VTableThunks[NextVTableThunkIndex].second;
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000598
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000599 MaybeEmitThunkAvailableExternally(GD, Thunk);
Benjamin Kramerfce80092012-03-20 20:18:13 +0000600 Init = CGM.GetAddrOfThunk(GD, Thunk);
Anders Carlsson14e82fd2011-02-06 18:31:40 +0000601
Anders Carlsson67d568a2010-03-29 05:40:50 +0000602 NextVTableThunkIndex++;
603 } else {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000604 llvm::Type *Ty = CGM.getTypes().GetFunctionTypeForVTable(GD);
Anders Carlsson67d568a2010-03-29 05:40:50 +0000605
Anders Carlsson1faa89f2011-02-05 04:35:53 +0000606 Init = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
Anders Carlsson67d568a2010-03-29 05:40:50 +0000607 }
608
609 Init = llvm::ConstantExpr::getBitCast(Init, Int8PtrTy);
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000610 }
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000611 break;
612 }
613
Anders Carlsson94464812010-04-10 19:13:06 +0000614 case VTableComponent::CK_UnusedFunctionPointer:
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000615 Init = llvm::ConstantExpr::getNullValue(Int8PtrTy);
616 break;
617 };
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000618
619 Inits.push_back(Init);
620 }
621
622 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents);
Jay Foad97357602011-06-22 09:24:39 +0000623 return llvm::ConstantArray::get(ArrayType, Inits);
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000624}
625
Anders Carlsson9dc338a2010-03-30 03:35:35 +0000626llvm::GlobalVariable *CodeGenVTables::GetAddrOfVTable(const CXXRecordDecl *RD) {
Peter Collingbournebf1c5ae2011-09-26 01:56:36 +0000627 llvm::GlobalVariable *&VTable = VTables[RD];
628 if (VTable)
629 return VTable;
630
631 // We may need to generate a definition for this vtable.
632 if (ShouldEmitVTableInThisTU(RD))
633 CGM.DeferredVTables.push_back(RD);
634
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000635 SmallString<256> OutName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000636 llvm::raw_svector_ostream Out(OutName);
637 CGM.getCXXABI().getMangleContext().mangleCXXVTable(RD, Out);
638 Out.flush();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000639 StringRef Name = OutName.str();
Mike Stump85615df2009-11-19 04:04:36 +0000640
Anders Carlssonccd83d72010-03-24 16:42:11 +0000641 llvm::ArrayType *ArrayType =
Chris Lattner8b418682012-02-07 00:39:47 +0000642 llvm::ArrayType::get(CGM.Int8PtrTy,
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000643 VTContext.getVTableLayout(RD).getNumVTableComponents());
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000644
Peter Collingbournebf1c5ae2011-09-26 01:56:36 +0000645 VTable =
Anders Carlsson96eaf292011-01-29 18:25:07 +0000646 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
647 llvm::GlobalValue::ExternalLinkage);
Peter Collingbournebf1c5ae2011-09-26 01:56:36 +0000648 VTable->setUnnamedAddr(true);
649 return VTable;
Mike Stump380dd752009-11-10 07:44:33 +0000650}
Mike Stump8cfcb522009-11-11 20:26:26 +0000651
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000652void
653CodeGenVTables::EmitVTableDefinition(llvm::GlobalVariable *VTable,
654 llvm::GlobalVariable::LinkageTypes Linkage,
655 const CXXRecordDecl *RD) {
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000656 const VTableLayout &VTLayout = VTContext.getVTableLayout(RD);
657
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000658 // Create and set the initializer.
659 llvm::Constant *Init =
Peter Collingbournee09cdf42011-09-26 01:56:50 +0000660 CreateVTableInitializer(RD,
661 VTLayout.vtable_component_begin(),
662 VTLayout.getNumVTableComponents(),
663 VTLayout.vtable_thunk_begin(),
664 VTLayout.getNumVTableThunks());
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000665 VTable->setInitializer(Init);
Anders Carlsson67d568a2010-03-29 05:40:50 +0000666
667 // Set the correct linkage.
668 VTable->setLinkage(Linkage);
Douglas Gregorc66bcfd2010-06-14 23:41:45 +0000669
670 // Set the right visibility.
Anders Carlssonfa2e99f2011-01-29 20:24:48 +0000671 CGM.setTypeVisibility(VTable, RD, CodeGenModule::TVK_ForVTable);
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000672}
673
Anders Carlssonff143f82010-03-25 00:35:49 +0000674llvm::GlobalVariable *
675CodeGenVTables::GenerateConstructionVTable(const CXXRecordDecl *RD,
Anders Carlsson2c822f12010-03-26 03:56:54 +0000676 const BaseSubobject &Base,
677 bool BaseIsVirtual,
John McCallbda0d6b2011-03-27 09:00:25 +0000678 llvm::GlobalVariable::LinkageTypes Linkage,
Anders Carlsson2c822f12010-03-26 03:56:54 +0000679 VTableAddressPointsMapTy& AddressPoints) {
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000680 OwningPtr<VTableLayout> VTLayout(
Peter Collingbourneab172b52011-09-26 01:57:04 +0000681 VTContext.createConstructionVTableLayout(Base.getBase(),
682 Base.getBaseOffset(),
683 BaseIsVirtual, RD));
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000684
Anders Carlsson6a5ab5d2010-03-25 16:49:53 +0000685 // Add the address points.
Peter Collingbourneab172b52011-09-26 01:57:04 +0000686 AddressPoints = VTLayout->getAddressPoints();
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000687
688 // Get the mangled construction vtable name.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000689 SmallString<256> OutName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000690 llvm::raw_svector_ostream Out(OutName);
John McCall4c40d982010-08-31 07:33:07 +0000691 CGM.getCXXABI().getMangleContext().
Ken Dyck4230d522011-03-24 01:21:01 +0000692 mangleCXXCtorVTable(RD, Base.getBaseOffset().getQuantity(), Base.getBase(),
693 Out);
Rafael Espindolaf0be9792011-02-11 02:52:17 +0000694 Out.flush();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000695 StringRef Name = OutName.str();
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000696
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000697 llvm::ArrayType *ArrayType =
Chris Lattner8b418682012-02-07 00:39:47 +0000698 llvm::ArrayType::get(CGM.Int8PtrTy, VTLayout->getNumVTableComponents());
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000699
700 // Create the variable that will hold the construction vtable.
701 llvm::GlobalVariable *VTable =
John McCallbda0d6b2011-03-27 09:00:25 +0000702 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType, Linkage);
703 CGM.setTypeVisibility(VTable, RD, CodeGenModule::TVK_ForConstructionVTable);
704
705 // V-tables are always unnamed_addr.
706 VTable->setUnnamedAddr(true);
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000707
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000708 // Create and set the initializer.
709 llvm::Constant *Init =
710 CreateVTableInitializer(Base.getBase(),
Peter Collingbourneab172b52011-09-26 01:57:04 +0000711 VTLayout->vtable_component_begin(),
712 VTLayout->getNumVTableComponents(),
713 VTLayout->vtable_thunk_begin(),
714 VTLayout->getNumVTableThunks());
Anders Carlsson0d1407e2010-03-25 15:26:28 +0000715 VTable->setInitializer(Init);
716
Anders Carlssonff143f82010-03-25 00:35:49 +0000717 return VTable;
718}
719
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000720void
721CodeGenVTables::GenerateClassData(llvm::GlobalVariable::LinkageTypes Linkage,
722 const CXXRecordDecl *RD) {
Peter Collingbournebf1c5ae2011-09-26 01:56:36 +0000723 llvm::GlobalVariable *VTable = GetAddrOfVTable(RD);
724 if (VTable->hasInitializer())
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000725 return;
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000726
Anders Carlsson9dc338a2010-03-30 03:35:35 +0000727 EmitVTableDefinition(VTable, Linkage, RD);
728
Anders Carlsson1cbce122011-01-29 19:16:51 +0000729 if (RD->getNumVBases()) {
730 llvm::GlobalVariable *VTT = GetAddrOfVTT(RD);
731 EmitVTTDefinition(VTT, Linkage, RD);
732 }
Douglas Gregor1e201b42010-04-08 15:52:03 +0000733
734 // If this is the magic class __cxxabiv1::__fundamental_type_info,
735 // we will emit the typeinfo for the fundamental types. This is the
736 // same behaviour as GCC.
737 const DeclContext *DC = RD->getDeclContext();
738 if (RD->getIdentifier() &&
739 RD->getIdentifier()->isStr("__fundamental_type_info") &&
740 isa<NamespaceDecl>(DC) &&
741 cast<NamespaceDecl>(DC)->getIdentifier() &&
742 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__cxxabiv1") &&
743 DC->getParent()->isTranslationUnit())
744 CGM.EmitFundamentalRTTIDescriptors();
Anders Carlssona7cde3b2010-03-29 03:38:52 +0000745}