blob: 77bee48b58b66ade1999f364711eab31e08b15bd [file] [log] [blame]
Anders Carlssone1b29ef2008-08-22 16:00:37 +00001//===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===//
2//
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.
11//
12//===----------------------------------------------------------------------===//
13
Mike Stump1eb44332009-09-09 15:08:12 +000014// We might split this into multiple files if it gets too unwieldy
Anders Carlssone1b29ef2008-08-22 16:00:37 +000015
16#include "CodeGenFunction.h"
17#include "CodeGenModule.h"
Anders Carlsson283a0622009-04-13 18:03:33 +000018#include "Mangle.h"
Anders Carlssone1b29ef2008-08-22 16:00:37 +000019#include "clang/AST/ASTContext.h"
Fariborz Jahanian742cd1b2009-07-25 21:12:28 +000020#include "clang/AST/RecordLayout.h"
Anders Carlssone1b29ef2008-08-22 16:00:37 +000021#include "clang/AST/Decl.h"
Anders Carlsson774e7c62009-04-03 22:50:24 +000022#include "clang/AST/DeclCXX.h"
Anders Carlsson86e96442008-08-23 19:42:54 +000023#include "clang/AST/DeclObjC.h"
Anders Carlsson6815e942009-09-27 18:58:34 +000024#include "clang/AST/StmtCXX.h"
Anders Carlssone1b29ef2008-08-22 16:00:37 +000025#include "llvm/ADT/StringExtras.h"
Anders Carlssone1b29ef2008-08-22 16:00:37 +000026using namespace clang;
27using namespace CodeGen;
28
Mike Stump1eb44332009-09-09 15:08:12 +000029void
Fariborz Jahanian88f42802009-11-10 19:24:06 +000030CodeGenFunction::EmitCXXGlobalDtorRegistration(llvm::Constant *DtorFn,
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000031 llvm::Constant *DeclPtr) {
Anders Carlsson6815e942009-09-27 18:58:34 +000032 const llvm::Type *Int8PtrTy =
33 llvm::Type::getInt8Ty(VMContext)->getPointerTo();
Mike Stump1eb44332009-09-09 15:08:12 +000034
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000035 std::vector<const llvm::Type *> Params;
36 Params.push_back(Int8PtrTy);
Mike Stump1eb44332009-09-09 15:08:12 +000037
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000038 // Get the destructor function type
Mike Stump1eb44332009-09-09 15:08:12 +000039 const llvm::Type *DtorFnTy =
Owen Anderson0032b272009-08-13 21:57:51 +000040 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Params, false);
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000041 DtorFnTy = llvm::PointerType::getUnqual(DtorFnTy);
Mike Stump1eb44332009-09-09 15:08:12 +000042
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000043 Params.clear();
44 Params.push_back(DtorFnTy);
45 Params.push_back(Int8PtrTy);
46 Params.push_back(Int8PtrTy);
Mike Stump1eb44332009-09-09 15:08:12 +000047
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000048 // Get the __cxa_atexit function type
49 // extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
Mike Stump1eb44332009-09-09 15:08:12 +000050 const llvm::FunctionType *AtExitFnTy =
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000051 llvm::FunctionType::get(ConvertType(getContext().IntTy), Params, false);
Mike Stump1eb44332009-09-09 15:08:12 +000052
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000053 llvm::Constant *AtExitFn = CGM.CreateRuntimeFunction(AtExitFnTy,
54 "__cxa_atexit");
Mike Stump1eb44332009-09-09 15:08:12 +000055
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000056 llvm::Constant *Handle = CGM.CreateRuntimeVariable(Int8PtrTy,
57 "__dso_handle");
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000058 llvm::Value *Args[3] = { llvm::ConstantExpr::getBitCast(DtorFn, DtorFnTy),
59 llvm::ConstantExpr::getBitCast(DeclPtr, Int8PtrTy),
60 llvm::ConstantExpr::getBitCast(Handle, Int8PtrTy) };
61 Builder.CreateCall(AtExitFn, &Args[0], llvm::array_endof(Args));
62}
63
Mike Stump1eb44332009-09-09 15:08:12 +000064void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000065 llvm::Constant *DeclPtr) {
66 assert(D.hasGlobalStorage() &&
67 "VarDecl must have global storage!");
Mike Stump1eb44332009-09-09 15:08:12 +000068
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000069 const Expr *Init = D.getInit();
70 QualType T = D.getType();
Mike Stumpdf317bf2009-11-03 23:25:48 +000071 bool isVolatile = getContext().getCanonicalType(T).isVolatileQualified();
Mike Stump1eb44332009-09-09 15:08:12 +000072
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000073 if (T->isReferenceType()) {
Anders Carlsson622f9dc2009-08-17 18:24:57 +000074 ErrorUnsupported(Init, "global variable that binds to a reference");
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000075 } else if (!hasAggregateLLVMType(T)) {
76 llvm::Value *V = EmitScalarExpr(Init);
Mike Stumpdf317bf2009-11-03 23:25:48 +000077 EmitStoreOfScalar(V, DeclPtr, isVolatile, T);
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000078 } else if (T->isAnyComplexType()) {
Mike Stumpdf317bf2009-11-03 23:25:48 +000079 EmitComplexExprIntoAddr(Init, DeclPtr, isVolatile);
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000080 } else {
Mike Stumpdf317bf2009-11-03 23:25:48 +000081 EmitAggExpr(Init, DeclPtr, isVolatile);
Fariborz Jahanian88b11de2009-11-11 01:13:34 +000082 // Avoid generating destructor(s) for initialized objects.
83 if (!isa<CXXConstructExpr>(Init))
84 return;
Fariborz Jahanian88f42802009-11-10 19:24:06 +000085 const ConstantArrayType *Array = getContext().getAsConstantArrayType(T);
86 if (Array)
87 T = getContext().getBaseElementType(Array);
88
Anders Carlsson3b2e16b2009-08-08 21:45:14 +000089 if (const RecordType *RT = T->getAs<RecordType>()) {
90 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian88f42802009-11-10 19:24:06 +000091 if (!RD->hasTrivialDestructor()) {
92 llvm::Constant *DtorFn;
93 if (Array) {
94 DtorFn = CodeGenFunction(CGM).GenerateCXXAggrDestructorHelper(
95 RD->getDestructor(getContext()),
96 Array, DeclPtr);
97 DeclPtr =
98 llvm::Constant::getNullValue(llvm::Type::getInt8PtrTy(VMContext));
99 }
100 else
101 DtorFn = CGM.GetAddrOfCXXDestructor(RD->getDestructor(getContext()),
102 Dtor_Complete);
103 EmitCXXGlobalDtorRegistration(DtorFn, DeclPtr);
104 }
Anders Carlsson3b2e16b2009-08-08 21:45:14 +0000105 }
106 }
107}
108
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000109void
110CodeGenModule::EmitCXXGlobalInitFunc() {
111 if (CXXGlobalInits.empty())
112 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Mike Stump79d57682009-11-04 01:11:15 +0000114 const llvm::FunctionType *FTy
115 = llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
116 false);
Mike Stump1eb44332009-09-09 15:08:12 +0000117
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000118 // Create our global initialization function.
119 // FIXME: Should this be tweakable by targets?
Mike Stump1eb44332009-09-09 15:08:12 +0000120 llvm::Function *Fn =
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000121 llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
122 "__cxx_global_initialization", &TheModule);
Mike Stump1eb44332009-09-09 15:08:12 +0000123
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000124 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn,
Benjamin Kramer10c40ee2009-08-08 23:43:26 +0000125 &CXXGlobalInits[0],
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000126 CXXGlobalInits.size());
127 AddGlobalCtor(Fn);
128}
129
130void CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
131 const VarDecl **Decls,
132 unsigned NumDecls) {
Anders Carlsson0ff8baf2009-09-11 00:07:24 +0000133 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, FunctionArgList(),
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000134 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000135
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000136 for (unsigned i = 0; i != NumDecls; ++i) {
137 const VarDecl *D = Decls[i];
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Anders Carlsson89ed31d2009-08-08 23:24:23 +0000139 llvm::Constant *DeclPtr = CGM.GetAddrOfGlobalVar(D);
140 EmitCXXGlobalVarDeclInit(*D, DeclPtr);
141 }
142 FinishFunction();
143}
144
Mike Stump1eb44332009-09-09 15:08:12 +0000145void
146CodeGenFunction::EmitStaticCXXBlockVarDeclInit(const VarDecl &D,
Anders Carlsson3b2e16b2009-08-08 21:45:14 +0000147 llvm::GlobalVariable *GV) {
Daniel Dunbar0096acf2009-02-25 19:24:29 +0000148 // FIXME: This should use __cxa_guard_{acquire,release}?
149
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000150 assert(!getContext().getLangOptions().ThreadsafeStatics &&
151 "thread safe statics are currently not supported!");
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000152
Anders Carlsson283a0622009-04-13 18:03:33 +0000153 llvm::SmallString<256> GuardVName;
Daniel Dunbar94fd26d2009-11-21 09:06:22 +0000154 CGM.getMangleContext().mangleGuardVariable(&D, GuardVName);
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000156 // Create the guard variable.
Mike Stump1eb44332009-09-09 15:08:12 +0000157 llvm::GlobalValue *GuardV =
Mike Stump79d57682009-11-04 01:11:15 +0000158 new llvm::GlobalVariable(CGM.getModule(), llvm::Type::getInt64Ty(VMContext),
159 false, GV->getLinkage(),
160 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext)),
Daniel Dunbar77659342009-08-19 20:04:03 +0000161 GuardVName.str());
Mike Stump1eb44332009-09-09 15:08:12 +0000162
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000163 // Load the first byte of the guard variable.
Mike Stump79d57682009-11-04 01:11:15 +0000164 const llvm::Type *PtrTy
165 = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000166 llvm::Value *V = Builder.CreateLoad(Builder.CreateBitCast(GuardV, PtrTy),
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000167 "tmp");
Mike Stump1eb44332009-09-09 15:08:12 +0000168
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000169 // Compare it against 0.
Mike Stump79d57682009-11-04 01:11:15 +0000170 llvm::Value *nullValue
171 = llvm::Constant::getNullValue(llvm::Type::getInt8Ty(VMContext));
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000172 llvm::Value *ICmp = Builder.CreateICmpEQ(V, nullValue , "tobool");
Mike Stump1eb44332009-09-09 15:08:12 +0000173
Daniel Dunbar55e87422008-11-11 02:29:29 +0000174 llvm::BasicBlock *InitBlock = createBasicBlock("init");
Daniel Dunbar9615ecb2008-11-13 01:38:36 +0000175 llvm::BasicBlock *EndBlock = createBasicBlock("init.end");
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000176
177 // If the guard variable is 0, jump to the initializer code.
178 Builder.CreateCondBr(ICmp, InitBlock, EndBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000180 EmitBlock(InitBlock);
181
Anders Carlsson3b2e16b2009-08-08 21:45:14 +0000182 EmitCXXGlobalVarDeclInit(D, GV);
183
Mike Stump79d57682009-11-04 01:11:15 +0000184 Builder.CreateStore(llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext),
185 1),
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000186 Builder.CreateBitCast(GuardV, PtrTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000187
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000188 EmitBlock(EndBlock);
Anders Carlssone1b29ef2008-08-22 16:00:37 +0000189}
190
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000191RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
192 llvm::Value *Callee,
193 llvm::Value *This,
194 CallExpr::const_arg_iterator ArgBeg,
195 CallExpr::const_arg_iterator ArgEnd) {
Mike Stump1eb44332009-09-09 15:08:12 +0000196 assert(MD->isInstance() &&
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000197 "Trying to emit a member call expr on a static method!");
198
John McCall183700f2009-09-21 23:43:11 +0000199 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000201 CallArgList Args;
Mike Stump1eb44332009-09-09 15:08:12 +0000202
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000203 // Push the this ptr.
204 Args.push_back(std::make_pair(RValue::get(This),
205 MD->getThisType(getContext())));
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000207 // And the rest of the call args
208 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000209
John McCall183700f2009-09-21 23:43:11 +0000210 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000211 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
212 Callee, Args, MD);
213}
214
Anders Carlsson8e7670d2009-10-12 19:41:04 +0000215/// canDevirtualizeMemberFunctionCalls - Checks whether virtual calls on given
216/// expr can be devirtualized.
217static bool canDevirtualizeMemberFunctionCalls(const Expr *Base) {
218 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
219 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
220 // This is a record decl. We know the type and can devirtualize it.
221 return VD->getType()->isRecordType();
222 }
Anders Carlsson76366482009-10-12 19:45:47 +0000223
224 return false;
Anders Carlsson8e7670d2009-10-12 19:41:04 +0000225 }
226
Anders Carlsson4a0d8322009-10-12 19:59:15 +0000227 // We can always devirtualize calls on temporary object expressions.
Anders Carlsson76366482009-10-12 19:45:47 +0000228 if (isa<CXXTemporaryObjectExpr>(Base))
229 return true;
230
Anders Carlsson4a0d8322009-10-12 19:59:15 +0000231 // And calls on bound temporaries.
232 if (isa<CXXBindTemporaryExpr>(Base))
233 return true;
234
Anders Carlssoncf5deec2009-10-12 19:51:33 +0000235 // Check if this is a call expr that returns a record type.
236 if (const CallExpr *CE = dyn_cast<CallExpr>(Base))
237 return CE->getCallReturnType()->isRecordType();
238
Anders Carlsson8e7670d2009-10-12 19:41:04 +0000239 // We can't devirtualize the call.
240 return false;
241}
242
Anders Carlsson774e7c62009-04-03 22:50:24 +0000243RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE) {
Anders Carlsson375c31c2009-10-03 19:43:08 +0000244 if (isa<BinaryOperator>(CE->getCallee()))
245 return EmitCXXMemberPointerCallExpr(CE);
246
Anders Carlsson774e7c62009-04-03 22:50:24 +0000247 const MemberExpr *ME = cast<MemberExpr>(CE->getCallee());
248 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000249
Anders Carlsson2472bf02009-09-29 03:54:11 +0000250 if (MD->isStatic()) {
251 // The method is static, emit it as we would a regular call.
252 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
253 return EmitCall(Callee, getContext().getPointerType(MD->getType()),
254 CE->arg_begin(), CE->arg_end(), 0);
255
256 }
257
John McCall183700f2009-09-21 23:43:11 +0000258 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump7116da12009-07-30 21:47:44 +0000259
Mike Stump1eb44332009-09-09 15:08:12 +0000260 const llvm::Type *Ty =
261 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Anders Carlssone9918d22009-04-08 20:31:57 +0000262 FPT->isVariadic());
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000263 llvm::Value *This;
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Anders Carlsson774e7c62009-04-03 22:50:24 +0000265 if (ME->isArrow())
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000266 This = EmitScalarExpr(ME->getBase());
Anders Carlsson774e7c62009-04-03 22:50:24 +0000267 else {
268 LValue BaseLV = EmitLValue(ME->getBase());
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000269 This = BaseLV.getAddress();
Anders Carlsson774e7c62009-04-03 22:50:24 +0000270 }
Mike Stumpf0070db2009-08-26 20:46:33 +0000271
Eli Friedmanae32e242009-11-26 07:45:48 +0000272 if (MD->isCopyAssignment() && MD->isTrivial()) {
273 // We don't like to generate the trivial copy assignment operator when
274 // it isn't necessary; just produce the proper effect here.
275 llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
276 EmitAggregateCopy(This, RHS, CE->getType());
277 return RValue::get(This);
278 }
279
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000280 // C++ [class.virtual]p12:
Mike Stump1eb44332009-09-09 15:08:12 +0000281 // Explicit qualification with the scope operator (5.1) suppresses the
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000282 // virtual call mechanism.
Anders Carlsson3b89f3f2009-10-11 23:55:52 +0000283 //
284 // We also don't emit a virtual call if the base expression has a record type
285 // because then we know what the type is.
Mike Stumpf0070db2009-08-26 20:46:33 +0000286 llvm::Value *Callee;
Eli Friedman8dfa2b32009-11-16 05:31:29 +0000287 if (const CXXDestructorDecl *Destructor
288 = dyn_cast<CXXDestructorDecl>(MD)) {
Eli Friedman15233e52009-11-26 07:40:08 +0000289 if (Destructor->isTrivial())
290 return RValue::get(0);
Eli Friedman8dfa2b32009-11-16 05:31:29 +0000291 if (MD->isVirtual() && !ME->hasQualifier() &&
292 !canDevirtualizeMemberFunctionCalls(ME->getBase())) {
293 Callee = BuildVirtualCall(Destructor, Dtor_Complete, This, Ty);
294 } else {
295 Callee = CGM.GetAddrOfFunction(GlobalDecl(Destructor, Dtor_Complete), Ty);
296 }
297 } else if (MD->isVirtual() && !ME->hasQualifier() &&
298 !canDevirtualizeMemberFunctionCalls(ME->getBase())) {
299 Callee = BuildVirtualCall(MD, This, Ty);
300 } else {
Anders Carlsson555b4bb2009-09-10 23:43:36 +0000301 Callee = CGM.GetAddrOfFunction(MD, Ty);
Eli Friedman8dfa2b32009-11-16 05:31:29 +0000302 }
Mike Stump1eb44332009-09-09 15:08:12 +0000303
304 return EmitCXXMemberCall(MD, Callee, This,
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000305 CE->arg_begin(), CE->arg_end());
Anders Carlsson774e7c62009-04-03 22:50:24 +0000306}
Anders Carlsson5f4307b2009-04-14 16:58:56 +0000307
Mike Stump1eb44332009-09-09 15:08:12 +0000308RValue
Anders Carlsson375c31c2009-10-03 19:43:08 +0000309CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E) {
310 const BinaryOperator *BO = cast<BinaryOperator>(E->getCallee());
Anders Carlsson3eea6352009-10-13 17:41:28 +0000311 const Expr *BaseExpr = BO->getLHS();
312 const Expr *MemFnExpr = BO->getRHS();
Anders Carlsson375c31c2009-10-03 19:43:08 +0000313
Anders Carlsson3eea6352009-10-13 17:41:28 +0000314 const MemberPointerType *MPT =
315 MemFnExpr->getType()->getAs<MemberPointerType>();
Anders Carlsson375c31c2009-10-03 19:43:08 +0000316 const FunctionProtoType *FPT =
317 MPT->getPointeeType()->getAs<FunctionProtoType>();
318 const CXXRecordDecl *RD =
Douglas Gregor87c12c42009-11-04 16:49:01 +0000319 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
Anders Carlsson375c31c2009-10-03 19:43:08 +0000320
321 const llvm::FunctionType *FTy =
322 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(RD, FPT),
323 FPT->isVariadic());
324
325 const llvm::Type *Int8PtrTy =
326 llvm::Type::getInt8Ty(VMContext)->getPointerTo();
327
328 // Get the member function pointer.
329 llvm::Value *MemFnPtr =
Anders Carlsson3eea6352009-10-13 17:41:28 +0000330 CreateTempAlloca(ConvertType(MemFnExpr->getType()), "mem.fn");
331 EmitAggExpr(MemFnExpr, MemFnPtr, /*VolatileDest=*/false);
Anders Carlsson375c31c2009-10-03 19:43:08 +0000332
333 // Emit the 'this' pointer.
334 llvm::Value *This;
335
336 if (BO->getOpcode() == BinaryOperator::PtrMemI)
337 This = EmitScalarExpr(BaseExpr);
338 else
339 This = EmitLValue(BaseExpr).getAddress();
340
341 // Adjust it.
342 llvm::Value *Adj = Builder.CreateStructGEP(MemFnPtr, 1);
343 Adj = Builder.CreateLoad(Adj, "mem.fn.adj");
344
345 llvm::Value *Ptr = Builder.CreateBitCast(This, Int8PtrTy, "ptr");
346 Ptr = Builder.CreateGEP(Ptr, Adj, "adj");
347
348 This = Builder.CreateBitCast(Ptr, This->getType(), "this");
349
350 llvm::Value *FnPtr = Builder.CreateStructGEP(MemFnPtr, 0, "mem.fn.ptr");
351
352 const llvm::Type *PtrDiffTy = ConvertType(getContext().getPointerDiffType());
353
354 llvm::Value *FnAsInt = Builder.CreateLoad(FnPtr, "fn");
355
356 // If the LSB in the function pointer is 1, the function pointer points to
357 // a virtual function.
358 llvm::Value *IsVirtual
359 = Builder.CreateAnd(FnAsInt, llvm::ConstantInt::get(PtrDiffTy, 1),
360 "and");
361
362 IsVirtual = Builder.CreateTrunc(IsVirtual,
363 llvm::Type::getInt1Ty(VMContext));
364
365 llvm::BasicBlock *FnVirtual = createBasicBlock("fn.virtual");
366 llvm::BasicBlock *FnNonVirtual = createBasicBlock("fn.nonvirtual");
367 llvm::BasicBlock *FnEnd = createBasicBlock("fn.end");
368
369 Builder.CreateCondBr(IsVirtual, FnVirtual, FnNonVirtual);
370 EmitBlock(FnVirtual);
371
372 const llvm::Type *VTableTy =
373 FTy->getPointerTo()->getPointerTo()->getPointerTo();
374
375 llvm::Value *VTable = Builder.CreateBitCast(This, VTableTy);
376 VTable = Builder.CreateLoad(VTable);
377
378 VTable = Builder.CreateGEP(VTable, FnAsInt, "fn");
379
380 // Since the function pointer is 1 plus the virtual table offset, we
381 // subtract 1 by using a GEP.
Mike Stump25bc2752009-10-09 01:25:47 +0000382 VTable = Builder.CreateConstGEP1_64(VTable, (uint64_t)-1);
Anders Carlsson375c31c2009-10-03 19:43:08 +0000383
384 llvm::Value *VirtualFn = Builder.CreateLoad(VTable, "virtualfn");
385
386 EmitBranch(FnEnd);
387 EmitBlock(FnNonVirtual);
388
389 // If the function is not virtual, just load the pointer.
390 llvm::Value *NonVirtualFn = Builder.CreateLoad(FnPtr, "fn");
391 NonVirtualFn = Builder.CreateIntToPtr(NonVirtualFn, FTy->getPointerTo());
392
393 EmitBlock(FnEnd);
394
395 llvm::PHINode *Callee = Builder.CreatePHI(FTy->getPointerTo());
396 Callee->reserveOperandSpace(2);
397 Callee->addIncoming(VirtualFn, FnVirtual);
398 Callee->addIncoming(NonVirtualFn, FnNonVirtual);
399
400 CallArgList Args;
401
402 QualType ThisType =
403 getContext().getPointerType(getContext().getTagDeclType(RD));
404
405 // Push the this ptr.
406 Args.push_back(std::make_pair(RValue::get(This), ThisType));
407
408 // And the rest of the call args
409 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
410 QualType ResultType = BO->getType()->getAs<FunctionType>()->getResultType();
411 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
412 Callee, Args, 0);
413}
414
415RValue
Anders Carlsson0f294632009-05-27 04:18:27 +0000416CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
417 const CXXMethodDecl *MD) {
Mike Stump1eb44332009-09-09 15:08:12 +0000418 assert(MD->isInstance() &&
Anders Carlsson0f294632009-05-27 04:18:27 +0000419 "Trying to emit a member call expr on a static method!");
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Fariborz Jahanianad258832009-08-13 21:09:41 +0000421 if (MD->isCopyAssignment()) {
422 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(MD->getDeclContext());
423 if (ClassDecl->hasTrivialCopyAssignment()) {
424 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
425 "EmitCXXOperatorMemberCallExpr - user declared copy assignment");
426 llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
427 llvm::Value *Src = EmitLValue(E->getArg(1)).getAddress();
428 QualType Ty = E->getType();
429 EmitAggregateCopy(This, Src, Ty);
430 return RValue::get(This);
431 }
432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
John McCall183700f2009-09-21 23:43:11 +0000434 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000435 const llvm::Type *Ty =
436 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Mike Stumped032eb2009-09-04 18:27:16 +0000437 FPT->isVariadic());
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Anders Carlsson0f294632009-05-27 04:18:27 +0000439 llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Eli Friedman8dfa2b32009-11-16 05:31:29 +0000441 llvm::Value *Callee;
442 if (MD->isVirtual() && !canDevirtualizeMemberFunctionCalls(E->getArg(0)))
443 Callee = BuildVirtualCall(MD, This, Ty);
444 else
445 Callee = CGM.GetAddrOfFunction(MD, Ty);
446
Anders Carlsson0f294632009-05-27 04:18:27 +0000447 return EmitCXXMemberCall(MD, Callee, This,
448 E->arg_begin() + 1, E->arg_end());
449}
450
Anders Carlsson5f4307b2009-04-14 16:58:56 +0000451llvm::Value *CodeGenFunction::LoadCXXThis() {
Mike Stump1eb44332009-09-09 15:08:12 +0000452 assert(isa<CXXMethodDecl>(CurFuncDecl) &&
Anders Carlsson5f4307b2009-04-14 16:58:56 +0000453 "Must be in a C++ member function decl to load 'this'");
454 assert(cast<CXXMethodDecl>(CurFuncDecl)->isInstance() &&
455 "Must be in a C++ member function decl to load 'this'");
Mike Stump1eb44332009-09-09 15:08:12 +0000456
Anders Carlsson5f4307b2009-04-14 16:58:56 +0000457 // FIXME: What if we're inside a block?
Mike Stumpf5408fe2009-05-16 07:57:57 +0000458 // ans: See how CodeGenFunction::LoadObjCSelf() uses
459 // CodeGenFunction::BlockForwardSelf() for how to do this.
Anders Carlsson5f4307b2009-04-14 16:58:56 +0000460 return Builder.CreateLoad(LocalDeclMap[CXXThisDecl], "this");
461}
Anders Carlsson95d4e5d2009-04-15 15:55:24 +0000462
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000463/// EmitCXXAggrConstructorCall - This routine essentially creates a (nested)
464/// for-loop to call the default constructor on individual members of the
Anders Carlsson569c1f42009-09-23 02:45:36 +0000465/// array.
466/// 'D' is the default constructor for elements of the array, 'ArrayTy' is the
467/// array type and 'ArrayPtr' points to the beginning fo the array.
468/// It is assumed that all relevant checks have been made by the caller.
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000469void
470CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000471 const ConstantArrayType *ArrayTy,
472 llvm::Value *ArrayPtr,
473 CallExpr::const_arg_iterator ArgBeg,
474 CallExpr::const_arg_iterator ArgEnd) {
475
Anders Carlsson569c1f42009-09-23 02:45:36 +0000476 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
477 llvm::Value * NumElements =
478 llvm::ConstantInt::get(SizeTy,
479 getContext().getConstantArrayElementCount(ArrayTy));
480
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000481 EmitCXXAggrConstructorCall(D, NumElements, ArrayPtr, ArgBeg, ArgEnd);
Anders Carlsson569c1f42009-09-23 02:45:36 +0000482}
483
484void
485CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000486 llvm::Value *NumElements,
487 llvm::Value *ArrayPtr,
488 CallExpr::const_arg_iterator ArgBeg,
489 CallExpr::const_arg_iterator ArgEnd) {
Anders Carlsson569c1f42009-09-23 02:45:36 +0000490 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000492 // Create a temporary for the loop index and initialize it with 0.
Anders Carlsson569c1f42009-09-23 02:45:36 +0000493 llvm::Value *IndexPtr = CreateTempAlloca(SizeTy, "loop.index");
494 llvm::Value *Zero = llvm::Constant::getNullValue(SizeTy);
Daniel Dunbar7fda03b2009-11-29 21:11:41 +0000495 Builder.CreateStore(Zero, IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000497 // Start the loop with a block that tests the condition.
498 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
499 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000500
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000501 EmitBlock(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000503 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000505 // Generate: if (loop-index < number-of-elements fall to the loop body,
506 // otherwise, go to the block after the for-loop.
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000507 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Anders Carlsson569c1f42009-09-23 02:45:36 +0000508 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElements, "isless");
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000509 // If the condition is true, execute the body.
510 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump1eb44332009-09-09 15:08:12 +0000511
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000512 EmitBlock(ForBody);
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000514 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000515 // Inside the loop body, emit the constructor call on the array element.
Fariborz Jahanian995d2812009-08-20 01:01:06 +0000516 Counter = Builder.CreateLoad(IndexPtr);
Anders Carlsson569c1f42009-09-23 02:45:36 +0000517 llvm::Value *Address = Builder.CreateInBoundsGEP(ArrayPtr, Counter,
518 "arrayidx");
Mike Stump1eb44332009-09-09 15:08:12 +0000519
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000520 // C++ [class.temporary]p4:
521 // There are two contexts in which temporaries are destroyed at a different
522 // point than the end of the full- expression. The first context is when a
523 // default constructor is called to initialize an element of an array.
524 // If the constructor has one or more default arguments, the destruction of
525 // every temporary created in a default argument expression is sequenced
526 // before the construction of the next array element, if any.
527
528 // Keep track of the current number of live temporaries.
529 unsigned OldNumLiveTemporaries = LiveTemporaries.size();
530
531 EmitCXXConstructorCall(D, Ctor_Complete, Address, ArgBeg, ArgEnd);
532
533 // Pop temporaries.
534 while (LiveTemporaries.size() > OldNumLiveTemporaries)
535 PopCXXTemporary();
536
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000537 EmitBlock(ContinueBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000539 // Emit the increment of the loop counter.
Anders Carlsson569c1f42009-09-23 02:45:36 +0000540 llvm::Value *NextVal = llvm::ConstantInt::get(SizeTy, 1);
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000541 Counter = Builder.CreateLoad(IndexPtr);
542 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbar7fda03b2009-11-29 21:11:41 +0000543 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000545 // Finally, branch back up to the condition for the next iteration.
546 EmitBranch(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000548 // Emit the fall-through block.
549 EmitBlock(AfterFor, true);
Fariborz Jahanian288dcaf2009-08-19 20:55:16 +0000550}
551
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000552/// EmitCXXAggrDestructorCall - calls the default destructor on array
553/// elements in reverse order of construction.
Anders Carlssonb14095a2009-04-17 00:06:03 +0000554void
Fariborz Jahanianf800f6c2009-08-20 20:54:15 +0000555CodeGenFunction::EmitCXXAggrDestructorCall(const CXXDestructorDecl *D,
556 const ArrayType *Array,
557 llvm::Value *This) {
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000558 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
559 assert(CA && "Do we support VLA for destruction ?");
Fariborz Jahanian72c21532009-11-13 19:27:47 +0000560 uint64_t ElementCount = getContext().getConstantArrayElementCount(CA);
561 llvm::Value* ElementCountPtr =
562 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), ElementCount);
563 EmitCXXAggrDestructorCall(D, ElementCountPtr, This);
564}
565
566/// EmitCXXAggrDestructorCall - calls the default destructor on array
567/// elements in reverse order of construction.
568void
569CodeGenFunction::EmitCXXAggrDestructorCall(const CXXDestructorDecl *D,
570 llvm::Value *UpperCount,
571 llvm::Value *This) {
Mike Stump1eb44332009-09-09 15:08:12 +0000572 llvm::Value *One = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000573 1);
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000574 // Create a temporary for the loop index and initialize it with count of
575 // array elements.
576 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
577 "loop.index");
578 // Index = ElementCount;
Daniel Dunbar7fda03b2009-11-29 21:11:41 +0000579 Builder.CreateStore(UpperCount, IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000581 // Start the loop with a block that tests the condition.
582 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
583 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump1eb44332009-09-09 15:08:12 +0000584
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000585 EmitBlock(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000586
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000587 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Mike Stump1eb44332009-09-09 15:08:12 +0000588
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000589 // Generate: if (loop-index != 0 fall to the loop body,
590 // otherwise, go to the block after the for-loop.
Mike Stump1eb44332009-09-09 15:08:12 +0000591 llvm::Value* zeroConstant =
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000592 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
593 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
594 llvm::Value *IsNE = Builder.CreateICmpNE(Counter, zeroConstant,
595 "isne");
596 // If the condition is true, execute the body.
597 Builder.CreateCondBr(IsNE, ForBody, AfterFor);
Mike Stump1eb44332009-09-09 15:08:12 +0000598
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000599 EmitBlock(ForBody);
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000601 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
602 // Inside the loop body, emit the constructor call on the array element.
603 Counter = Builder.CreateLoad(IndexPtr);
604 Counter = Builder.CreateSub(Counter, One);
605 llvm::Value *Address = Builder.CreateInBoundsGEP(This, Counter, "arrayidx");
Fariborz Jahanianba2253f2009-11-30 22:07:18 +0000606 EmitCXXDestructorCall(D, Dtor_Complete, Address);
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000608 EmitBlock(ContinueBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000610 // Emit the decrement of the loop counter.
611 Counter = Builder.CreateLoad(IndexPtr);
612 Counter = Builder.CreateSub(Counter, One, "dec");
Daniel Dunbar7fda03b2009-11-29 21:11:41 +0000613 Builder.CreateStore(Counter, IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000615 // Finally, branch back up to the condition for the next iteration.
616 EmitBranch(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Fariborz Jahanian1c536bf2009-08-20 23:02:58 +0000618 // Emit the fall-through block.
619 EmitBlock(AfterFor, true);
Fariborz Jahanianf800f6c2009-08-20 20:54:15 +0000620}
621
Mike Stump6d60ca92009-11-18 18:57:56 +0000622/// GenerateCXXAggrDestructorHelper - Generates a helper function which when
623/// invoked, calls the default destructor on array elements in reverse order of
Fariborz Jahanian88f42802009-11-10 19:24:06 +0000624/// construction.
625llvm::Constant *
626CodeGenFunction::GenerateCXXAggrDestructorHelper(const CXXDestructorDecl *D,
627 const ArrayType *Array,
628 llvm::Value *This) {
629 static int UniqueCount;
630 FunctionArgList Args;
631 ImplicitParamDecl *Dst =
632 ImplicitParamDecl::Create(getContext(), 0,
633 SourceLocation(), 0,
634 getContext().getPointerType(getContext().VoidTy));
635 Args.push_back(std::make_pair(Dst, Dst->getType()));
636
637 llvm::SmallString<16> Name;
638 llvm::raw_svector_ostream(Name) << "__tcf_" << (++UniqueCount);
639 QualType R = getContext().VoidTy;
640 const CGFunctionInfo &FI = CGM.getTypes().getFunctionInfo(R, Args);
641 const llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType(FI, false);
642 llvm::Function *Fn =
643 llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
644 Name.c_str(),
645 &CGM.getModule());
646 IdentifierInfo *II
647 = &CGM.getContext().Idents.get(Name.c_str());
648 FunctionDecl *FD = FunctionDecl::Create(getContext(),
649 getContext().getTranslationUnitDecl(),
650 SourceLocation(), II, R, 0,
651 FunctionDecl::Static,
652 false, true);
653 StartFunction(FD, R, Fn, Args, SourceLocation());
654 QualType BaseElementTy = getContext().getBaseElementType(Array);
655 const llvm::Type *BasePtr = ConvertType(BaseElementTy);
656 BasePtr = llvm::PointerType::getUnqual(BasePtr);
657 llvm::Value *BaseAddrPtr = Builder.CreateBitCast(This, BasePtr);
658 EmitCXXAggrDestructorCall(D, Array, BaseAddrPtr);
659 FinishFunction();
660 llvm::Type *Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),
661 0);
662 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
663 return m;
664}
665
Fariborz Jahanianf800f6c2009-08-20 20:54:15 +0000666void
Mike Stump1eb44332009-09-09 15:08:12 +0000667CodeGenFunction::EmitCXXConstructorCall(const CXXConstructorDecl *D,
668 CXXCtorType Type,
Anders Carlssonb14095a2009-04-17 00:06:03 +0000669 llvm::Value *This,
670 CallExpr::const_arg_iterator ArgBeg,
671 CallExpr::const_arg_iterator ArgEnd) {
Fariborz Jahanian343a3cf2009-08-14 20:11:43 +0000672 if (D->isCopyConstructor(getContext())) {
673 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D->getDeclContext());
674 if (ClassDecl->hasTrivialCopyConstructor()) {
675 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
676 "EmitCXXConstructorCall - user declared copy constructor");
677 const Expr *E = (*ArgBeg);
678 QualType Ty = E->getType();
679 llvm::Value *Src = EmitLValue(E).getAddress();
680 EmitAggregateCopy(This, Src, Ty);
681 return;
682 }
Eli Friedman15233e52009-11-26 07:40:08 +0000683 } else if (D->isTrivial()) {
684 // FIXME: Track down why we're trying to generate calls to the trivial
685 // default constructor!
686 return;
Fariborz Jahanian343a3cf2009-08-14 20:11:43 +0000687 }
Mike Stump1eb44332009-09-09 15:08:12 +0000688
Anders Carlssonb9de2c52009-05-11 23:37:08 +0000689 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Type);
690
691 EmitCXXMemberCall(D, Callee, This, ArgBeg, ArgEnd);
Anders Carlssonb14095a2009-04-17 00:06:03 +0000692}
693
Anders Carlssonfd126492009-12-04 19:33:17 +0000694void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *DD,
Anders Carlsson7267c162009-05-29 21:03:38 +0000695 CXXDtorType Type,
696 llvm::Value *This) {
Anders Carlssonfd126492009-12-04 19:33:17 +0000697 llvm::Value *Callee = CGM.GetAddrOfCXXDestructor(DD, Type);
698
699 CallArgList Args;
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Anders Carlssonfd126492009-12-04 19:33:17 +0000701 // Push the this ptr.
702 Args.push_back(std::make_pair(RValue::get(This),
703 DD->getThisType(getContext())));
704
705 // Add a VTT parameter if necessary.
706 // FIXME: This should not be a dummy null parameter!
707 if (Type == Dtor_Base && DD->getParent()->getNumVBases() != 0) {
708 QualType T = getContext().getPointerType(getContext().VoidPtrTy);
709
710 Args.push_back(std::make_pair(RValue::get(CGM.EmitNullConstant(T)), T));
711 }
712
713 // FIXME: We should try to share this code with EmitCXXMemberCall.
714
715 QualType ResultType = DD->getType()->getAs<FunctionType>()->getResultType();
716 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args), Callee, Args, DD);
Anders Carlsson7267c162009-05-29 21:03:38 +0000717}
718
Mike Stump1eb44332009-09-09 15:08:12 +0000719void
720CodeGenFunction::EmitCXXConstructExpr(llvm::Value *Dest,
Anders Carlsson31ccf372009-05-03 17:47:16 +0000721 const CXXConstructExpr *E) {
Anders Carlssonb14095a2009-04-17 00:06:03 +0000722 assert(Dest && "Must have a destination!");
Fariborz Jahanian93034ca2009-10-16 19:20:59 +0000723 const CXXConstructorDecl *CD = E->getConstructor();
Fariborz Jahaniand7a4a432009-10-28 21:07:28 +0000724 const ConstantArrayType *Array =
725 getContext().getAsConstantArrayType(E->getType());
Fariborz Jahanian93034ca2009-10-16 19:20:59 +0000726 // For a copy constructor, even if it is trivial, must fall thru so
727 // its argument is code-gen'ed.
728 if (!CD->isCopyConstructor(getContext())) {
Fariborz Jahanianae013b92009-10-28 20:55:41 +0000729 QualType InitType = E->getType();
Fariborz Jahaniand7a4a432009-10-28 21:07:28 +0000730 if (Array)
Fariborz Jahanianae013b92009-10-28 20:55:41 +0000731 InitType = getContext().getBaseElementType(Array);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +0000732 const CXXRecordDecl *RD =
Fariborz Jahanianae013b92009-10-28 20:55:41 +0000733 cast<CXXRecordDecl>(InitType->getAs<RecordType>()->getDecl());
Fariborz Jahanian93034ca2009-10-16 19:20:59 +0000734 if (RD->hasTrivialConstructor())
Anders Carlssonb14095a2009-04-17 00:06:03 +0000735 return;
Fariborz Jahanian93034ca2009-10-16 19:20:59 +0000736 }
Mike Stump1eb44332009-09-09 15:08:12 +0000737 // Code gen optimization to eliminate copy constructor and return
Fariborz Jahanian6904cbb2009-08-06 01:02:49 +0000738 // its first argument instead.
Anders Carlsson92f58222009-08-22 22:30:33 +0000739 if (getContext().getLangOptions().ElideConstructors && E->isElidable()) {
Anders Carlsson03d8ed42009-11-13 04:34:45 +0000740 const Expr *Arg = E->getArg(0);
741
742 if (const CXXBindTemporaryExpr *BindExpr =
743 dyn_cast<CXXBindTemporaryExpr>(Arg))
744 Arg = BindExpr->getSubExpr();
745
746 EmitAggExpr(Arg, Dest, false);
Fariborz Jahanian1cf9ff82009-08-06 19:12:38 +0000747 return;
Fariborz Jahanian6904cbb2009-08-06 01:02:49 +0000748 }
Fariborz Jahaniand7a4a432009-10-28 21:07:28 +0000749 if (Array) {
Fariborz Jahanianae013b92009-10-28 20:55:41 +0000750 QualType BaseElementTy = getContext().getBaseElementType(Array);
751 const llvm::Type *BasePtr = ConvertType(BaseElementTy);
752 BasePtr = llvm::PointerType::getUnqual(BasePtr);
753 llvm::Value *BaseAddrPtr =
754 Builder.CreateBitCast(Dest, BasePtr);
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000755 EmitCXXAggrConstructorCall(CD, Array, BaseAddrPtr,
756 E->arg_begin(), E->arg_end());
Fariborz Jahanianae013b92009-10-28 20:55:41 +0000757 }
758 else
759 // Call the constructor.
760 EmitCXXConstructorCall(CD, Ctor_Complete, Dest,
761 E->arg_begin(), E->arg_end());
Anders Carlssonb14095a2009-04-17 00:06:03 +0000762}
763
Anders Carlsson95d4e5d2009-04-15 15:55:24 +0000764void CodeGenModule::EmitCXXConstructors(const CXXConstructorDecl *D) {
Anders Carlsson2a131fb2009-05-05 04:44:02 +0000765 EmitGlobal(GlobalDecl(D, Ctor_Complete));
766 EmitGlobal(GlobalDecl(D, Ctor_Base));
Anders Carlsson95d4e5d2009-04-15 15:55:24 +0000767}
Anders Carlsson363c1842009-04-16 23:57:24 +0000768
Mike Stump1eb44332009-09-09 15:08:12 +0000769void CodeGenModule::EmitCXXConstructor(const CXXConstructorDecl *D,
Anders Carlsson27ae5362009-04-17 01:58:57 +0000770 CXXCtorType Type) {
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Anders Carlsson27ae5362009-04-17 01:58:57 +0000772 llvm::Function *Fn = GetAddrOfCXXConstructor(D, Type);
Mike Stump1eb44332009-09-09 15:08:12 +0000773
Anders Carlsson0ff8baf2009-09-11 00:07:24 +0000774 CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn);
Mike Stump1eb44332009-09-09 15:08:12 +0000775
Anders Carlsson27ae5362009-04-17 01:58:57 +0000776 SetFunctionDefinitionAttributes(D, Fn);
777 SetLLVMFunctionAttributesForDefinition(D, Fn);
778}
779
Anders Carlsson363c1842009-04-16 23:57:24 +0000780llvm::Function *
Mike Stump1eb44332009-09-09 15:08:12 +0000781CodeGenModule::GetAddrOfCXXConstructor(const CXXConstructorDecl *D,
Anders Carlsson363c1842009-04-16 23:57:24 +0000782 CXXCtorType Type) {
Fariborz Jahanian30509a32009-11-06 18:47:57 +0000783 const FunctionProtoType *FPT = D->getType()->getAs<FunctionProtoType>();
Anders Carlsson363c1842009-04-16 23:57:24 +0000784 const llvm::FunctionType *FTy =
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000785 getTypes().GetFunctionType(getTypes().getFunctionInfo(D, Type),
Fariborz Jahanian30509a32009-11-06 18:47:57 +0000786 FPT->isVariadic());
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Anders Carlsson363c1842009-04-16 23:57:24 +0000788 const char *Name = getMangledCXXCtorName(D, Type);
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000789 return cast<llvm::Function>(
790 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlsson363c1842009-04-16 23:57:24 +0000791}
Anders Carlsson27ae5362009-04-17 01:58:57 +0000792
Mike Stump1eb44332009-09-09 15:08:12 +0000793const char *CodeGenModule::getMangledCXXCtorName(const CXXConstructorDecl *D,
Anders Carlsson27ae5362009-04-17 01:58:57 +0000794 CXXCtorType Type) {
795 llvm::SmallString<256> Name;
Daniel Dunbar94fd26d2009-11-21 09:06:22 +0000796 getMangleContext().mangleCXXCtor(D, Type, Name);
Mike Stump1eb44332009-09-09 15:08:12 +0000797
Anders Carlsson27ae5362009-04-17 01:58:57 +0000798 Name += '\0';
799 return UniqueMangledName(Name.begin(), Name.end());
800}
801
802void CodeGenModule::EmitCXXDestructors(const CXXDestructorDecl *D) {
Eli Friedmanea9a2082009-11-14 04:19:37 +0000803 if (D->isVirtual())
Eli Friedmanc16668a2009-11-27 01:42:12 +0000804 EmitGlobalDefinition(GlobalDecl(D, Dtor_Deleting));
805 EmitGlobalDefinition(GlobalDecl(D, Dtor_Complete));
806 EmitGlobalDefinition(GlobalDecl(D, Dtor_Base));
Anders Carlsson27ae5362009-04-17 01:58:57 +0000807}
808
Mike Stump1eb44332009-09-09 15:08:12 +0000809void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *D,
Anders Carlsson27ae5362009-04-17 01:58:57 +0000810 CXXDtorType Type) {
811 llvm::Function *Fn = GetAddrOfCXXDestructor(D, Type);
Mike Stump1eb44332009-09-09 15:08:12 +0000812
Anders Carlsson0ff8baf2009-09-11 00:07:24 +0000813 CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn);
Mike Stump1eb44332009-09-09 15:08:12 +0000814
Anders Carlsson27ae5362009-04-17 01:58:57 +0000815 SetFunctionDefinitionAttributes(D, Fn);
816 SetLLVMFunctionAttributesForDefinition(D, Fn);
817}
818
819llvm::Function *
Mike Stump1eb44332009-09-09 15:08:12 +0000820CodeGenModule::GetAddrOfCXXDestructor(const CXXDestructorDecl *D,
Anders Carlsson27ae5362009-04-17 01:58:57 +0000821 CXXDtorType Type) {
822 const llvm::FunctionType *FTy =
Anders Carlssonf6c56e22009-11-25 03:15:49 +0000823 getTypes().GetFunctionType(getTypes().getFunctionInfo(D, Type), false);
Mike Stump1eb44332009-09-09 15:08:12 +0000824
Anders Carlsson27ae5362009-04-17 01:58:57 +0000825 const char *Name = getMangledCXXDtorName(D, Type);
Chris Lattnerb4880ba2009-05-12 21:21:08 +0000826 return cast<llvm::Function>(
827 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlsson27ae5362009-04-17 01:58:57 +0000828}
829
Mike Stump1eb44332009-09-09 15:08:12 +0000830const char *CodeGenModule::getMangledCXXDtorName(const CXXDestructorDecl *D,
Anders Carlsson27ae5362009-04-17 01:58:57 +0000831 CXXDtorType Type) {
832 llvm::SmallString<256> Name;
Daniel Dunbar94fd26d2009-11-21 09:06:22 +0000833 getMangleContext().mangleCXXDtor(D, Type, Name);
Mike Stump1eb44332009-09-09 15:08:12 +0000834
Anders Carlsson27ae5362009-04-17 01:58:57 +0000835 Name += '\0';
836 return UniqueMangledName(Name.begin(), Name.end());
837}
Fariborz Jahaniane7d346b2009-07-20 23:18:55 +0000838
Anders Carlssona94822e2009-11-26 02:32:05 +0000839llvm::Constant *
Eli Friedman35c98cc2009-12-03 04:27:05 +0000840CodeGenFunction::GenerateThunk(llvm::Function *Fn, GlobalDecl GD,
Anders Carlssona94822e2009-11-26 02:32:05 +0000841 bool Extern,
842 const ThunkAdjustment &ThisAdjustment) {
Mike Stump919d5e52009-12-03 03:47:56 +0000843 return GenerateCovariantThunk(Fn, GD, Extern,
Anders Carlsson7622cd32009-11-26 03:09:37 +0000844 CovariantThunkAdjustment(ThisAdjustment,
845 ThunkAdjustment()));
Mike Stumped032eb2009-09-04 18:27:16 +0000846}
847
Anders Carlsson7622cd32009-11-26 03:09:37 +0000848llvm::Value *
849CodeGenFunction::DynamicTypeAdjust(llvm::Value *V,
850 const ThunkAdjustment &Adjustment) {
851 const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext);
852
Mike Stumpc902d222009-11-03 16:59:27 +0000853 const llvm::Type *OrigTy = V->getType();
Anders Carlsson7622cd32009-11-26 03:09:37 +0000854 if (Adjustment.NonVirtual) {
Mike Stumpc902d222009-11-03 16:59:27 +0000855 // Do the non-virtual adjustment
Anders Carlsson7622cd32009-11-26 03:09:37 +0000856 V = Builder.CreateBitCast(V, Int8PtrTy);
857 V = Builder.CreateConstInBoundsGEP1_64(V, Adjustment.NonVirtual);
Mike Stumpc902d222009-11-03 16:59:27 +0000858 V = Builder.CreateBitCast(V, OrigTy);
859 }
Anders Carlsson7622cd32009-11-26 03:09:37 +0000860
861 if (!Adjustment.Virtual)
862 return V;
863
864 assert(Adjustment.Virtual % (LLVMPointerWidth / 8) == 0 &&
865 "vtable entry unaligned");
866
867 // Do the virtual this adjustment
868 const llvm::Type *PtrDiffTy = ConvertType(getContext().getPointerDiffType());
869 const llvm::Type *PtrDiffPtrTy = PtrDiffTy->getPointerTo();
870
871 llvm::Value *ThisVal = Builder.CreateBitCast(V, Int8PtrTy);
872 V = Builder.CreateBitCast(V, PtrDiffPtrTy->getPointerTo());
873 V = Builder.CreateLoad(V, "vtable");
874
875 llvm::Value *VTablePtr = V;
876 uint64_t VirtualAdjustment = Adjustment.Virtual / (LLVMPointerWidth / 8);
877 V = Builder.CreateConstInBoundsGEP1_64(VTablePtr, VirtualAdjustment);
878 V = Builder.CreateLoad(V);
879 V = Builder.CreateGEP(ThisVal, V);
880
881 return Builder.CreateBitCast(V, OrigTy);
Mike Stumpc902d222009-11-03 16:59:27 +0000882}
883
Anders Carlsson7622cd32009-11-26 03:09:37 +0000884llvm::Constant *
885CodeGenFunction::GenerateCovariantThunk(llvm::Function *Fn,
Eli Friedman35c98cc2009-12-03 04:27:05 +0000886 GlobalDecl GD, bool Extern,
Anders Carlsson7622cd32009-11-26 03:09:37 +0000887 const CovariantThunkAdjustment &Adjustment) {
Mike Stump919d5e52009-12-03 03:47:56 +0000888 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000889 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump6e319f62009-09-11 23:25:56 +0000890
891 FunctionArgList Args;
892 ImplicitParamDecl *ThisDecl =
893 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
894 MD->getThisType(getContext()));
895 Args.push_back(std::make_pair(ThisDecl, ThisDecl->getType()));
896 for (FunctionDecl::param_const_iterator i = MD->param_begin(),
897 e = MD->param_end();
898 i != e; ++i) {
899 ParmVarDecl *D = *i;
900 Args.push_back(std::make_pair(D, D->getType()));
901 }
902 IdentifierInfo *II
903 = &CGM.getContext().Idents.get("__thunk_named_foo_");
904 FunctionDecl *FD = FunctionDecl::Create(getContext(),
905 getContext().getTranslationUnitDecl(),
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000906 SourceLocation(), II, ResultType, 0,
Mike Stump6e319f62009-09-11 23:25:56 +0000907 Extern
908 ? FunctionDecl::Extern
909 : FunctionDecl::Static,
910 false, true);
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000911 StartFunction(FD, ResultType, Fn, Args, SourceLocation());
912
913 // generate body
Mike Stump736529e2009-11-03 02:12:59 +0000914 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
915 const llvm::Type *Ty =
916 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
917 FPT->isVariadic());
Eli Friedman35c98cc2009-12-03 04:27:05 +0000918 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty);
Mike Stump919d5e52009-12-03 03:47:56 +0000919
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000920 CallArgList CallArgs;
921
Anders Carlsson7622cd32009-11-26 03:09:37 +0000922 bool ShouldAdjustReturnPointer = true;
Mike Stump736529e2009-11-03 02:12:59 +0000923 QualType ArgType = MD->getThisType(getContext());
924 llvm::Value *Arg = Builder.CreateLoad(LocalDeclMap[ThisDecl], "this");
Anders Carlsson7622cd32009-11-26 03:09:37 +0000925 if (!Adjustment.ThisAdjustment.isEmpty()) {
Mike Stumpc902d222009-11-03 16:59:27 +0000926 // Do the this adjustment.
Mike Stumpd0fe5362009-11-04 00:53:51 +0000927 const llvm::Type *OrigTy = Callee->getType();
Anders Carlsson7622cd32009-11-26 03:09:37 +0000928 Arg = DynamicTypeAdjust(Arg, Adjustment.ThisAdjustment);
929
930 if (!Adjustment.ReturnAdjustment.isEmpty()) {
931 const CovariantThunkAdjustment &ReturnAdjustment =
932 CovariantThunkAdjustment(ThunkAdjustment(),
933 Adjustment.ReturnAdjustment);
934
Mike Stump919d5e52009-12-03 03:47:56 +0000935 Callee = CGM.BuildCovariantThunk(GD, Extern, ReturnAdjustment);
Anders Carlsson7622cd32009-11-26 03:09:37 +0000936
Mike Stumpd0fe5362009-11-04 00:53:51 +0000937 Callee = Builder.CreateBitCast(Callee, OrigTy);
Anders Carlsson7622cd32009-11-26 03:09:37 +0000938 ShouldAdjustReturnPointer = false;
Mike Stumpd0fe5362009-11-04 00:53:51 +0000939 }
940 }
941
Mike Stump736529e2009-11-03 02:12:59 +0000942 CallArgs.push_back(std::make_pair(RValue::get(Arg), ArgType));
943
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000944 for (FunctionDecl::param_const_iterator i = MD->param_begin(),
945 e = MD->param_end();
946 i != e; ++i) {
947 ParmVarDecl *D = *i;
948 QualType ArgType = D->getType();
949
950 // llvm::Value *Arg = CGF.GetAddrOfLocalVar(Dst);
Eli Friedman6804fa22009-12-03 04:49:52 +0000951 Expr *Arg = new (getContext()) DeclRefExpr(D, ArgType.getNonReferenceType(),
952 SourceLocation());
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000953 CallArgs.push_back(std::make_pair(EmitCallArg(Arg, ArgType), ArgType));
954 }
955
Mike Stumpf49ed942009-11-02 23:47:45 +0000956 RValue RV = EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
957 Callee, CallArgs, MD);
Anders Carlsson7622cd32009-11-26 03:09:37 +0000958 if (ShouldAdjustReturnPointer && !Adjustment.ReturnAdjustment.isEmpty()) {
Mike Stump03e777e2009-11-05 06:32:02 +0000959 bool CanBeZero = !(ResultType->isReferenceType()
960 // FIXME: attr nonnull can't be zero either
961 /* || ResultType->hasAttr<NonNullAttr>() */ );
Mike Stumpc902d222009-11-03 16:59:27 +0000962 // Do the return result adjustment.
Mike Stump03e777e2009-11-05 06:32:02 +0000963 if (CanBeZero) {
964 llvm::BasicBlock *NonZeroBlock = createBasicBlock();
965 llvm::BasicBlock *ZeroBlock = createBasicBlock();
966 llvm::BasicBlock *ContBlock = createBasicBlock();
Mike Stump7c276b82009-11-05 06:12:26 +0000967
Mike Stump03e777e2009-11-05 06:32:02 +0000968 const llvm::Type *Ty = RV.getScalarVal()->getType();
969 llvm::Value *Zero = llvm::Constant::getNullValue(Ty);
970 Builder.CreateCondBr(Builder.CreateICmpNE(RV.getScalarVal(), Zero),
971 NonZeroBlock, ZeroBlock);
972 EmitBlock(NonZeroBlock);
Anders Carlsson7622cd32009-11-26 03:09:37 +0000973 llvm::Value *NZ =
974 DynamicTypeAdjust(RV.getScalarVal(), Adjustment.ReturnAdjustment);
Mike Stump03e777e2009-11-05 06:32:02 +0000975 EmitBranch(ContBlock);
976 EmitBlock(ZeroBlock);
977 llvm::Value *Z = RV.getScalarVal();
978 EmitBlock(ContBlock);
979 llvm::PHINode *RVOrZero = Builder.CreatePHI(Ty);
980 RVOrZero->reserveOperandSpace(2);
981 RVOrZero->addIncoming(NZ, NonZeroBlock);
982 RVOrZero->addIncoming(Z, ZeroBlock);
983 RV = RValue::get(RVOrZero);
984 } else
Anders Carlsson7622cd32009-11-26 03:09:37 +0000985 RV = RValue::get(DynamicTypeAdjust(RV.getScalarVal(),
986 Adjustment.ReturnAdjustment));
Mike Stumpc5dac4e2009-11-02 23:22:01 +0000987 }
988
Mike Stumpf49ed942009-11-02 23:47:45 +0000989 if (!ResultType->isVoidType())
990 EmitReturnOfRValue(RV, ResultType);
991
Mike Stump6e319f62009-09-11 23:25:56 +0000992 FinishFunction();
993 return Fn;
994}
995
Anders Carlssona94822e2009-11-26 02:32:05 +0000996llvm::Constant *
Eli Friedman72649ed2009-12-06 22:01:30 +0000997CodeGenModule::GetAddrOfThunk(GlobalDecl GD,
998 const ThunkAdjustment &ThisAdjustment) {
999 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
1000
1001 // Compute mangled name
1002 llvm::SmallString<256> OutName;
1003 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
1004 getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(), ThisAdjustment,
1005 OutName);
1006 else
1007 getMangleContext().mangleThunk(MD, ThisAdjustment, OutName);
1008 OutName += '\0';
1009 const char* Name = UniqueMangledName(OutName.begin(), OutName.end());
1010
1011 // Get function for mangled name
1012 const llvm::Type *Ty = getTypes().GetFunctionTypeForVtable(MD);
1013 return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl());
1014}
1015
1016llvm::Constant *
1017CodeGenModule::GetAddrOfCovariantThunk(GlobalDecl GD,
1018 const CovariantThunkAdjustment &Adjustment) {
1019 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
1020
1021 // Compute mangled name
1022 llvm::SmallString<256> OutName;
1023 getMangleContext().mangleCovariantThunk(MD, Adjustment, OutName);
1024 OutName += '\0';
1025 const char* Name = UniqueMangledName(OutName.begin(), OutName.end());
1026
1027 // Get function for mangled name
1028 const llvm::Type *Ty = getTypes().GetFunctionTypeForVtable(MD);
1029 return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl());
1030}
1031
1032void CodeGenModule::BuildThunksForVirtual(GlobalDecl GD) {
1033 BuildThunksForVirtualRecursive(GD, GD);
1034}
1035
1036void
1037CodeGenModule::BuildThunksForVirtualRecursive(GlobalDecl GD,
1038 GlobalDecl BaseOGD) {
1039 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
1040 const CXXMethodDecl *BaseOMD = cast<CXXMethodDecl>(BaseOGD.getDecl());
1041 for (CXXMethodDecl::method_iterator mi = BaseOMD->begin_overridden_methods(),
1042 e = BaseOMD->end_overridden_methods();
1043 mi != e; ++mi) {
1044 GlobalDecl OGD;
1045 const CXXMethodDecl *OMD = *mi;
1046 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(OMD))
1047 OGD = GlobalDecl(DD, GD.getDtorType());
1048 else
1049 OGD = GlobalDecl(OMD);
1050 QualType nc_oret = OMD->getType()->getAs<FunctionType>()->getResultType();
1051 CanQualType oret = getContext().getCanonicalType(nc_oret);
1052 QualType nc_ret = MD->getType()->getAs<FunctionType>()->getResultType();
1053 CanQualType ret = getContext().getCanonicalType(nc_ret);
1054 ThunkAdjustment ReturnAdjustment;
1055 if (oret != ret) {
1056 QualType qD = nc_ret->getPointeeType();
1057 QualType qB = nc_oret->getPointeeType();
1058 CXXRecordDecl *D = cast<CXXRecordDecl>(qD->getAs<RecordType>()->getDecl());
1059 CXXRecordDecl *B = cast<CXXRecordDecl>(qB->getAs<RecordType>()->getDecl());
1060 ReturnAdjustment = ComputeThunkAdjustment(D, B);
1061 }
1062 ThunkAdjustment ThisAdjustment =
1063 getVtableInfo().getThisAdjustment(GD, OGD);
1064 bool Extern = !cast<CXXRecordDecl>(OMD->getDeclContext())->isInAnonymousNamespace();
1065 if (!ReturnAdjustment.isEmpty() || !ThisAdjustment.isEmpty()) {
1066 CovariantThunkAdjustment CoAdj(ThisAdjustment, ReturnAdjustment);
1067 llvm::Constant *FnConst;
1068 if (!ReturnAdjustment.isEmpty())
1069 FnConst = GetAddrOfCovariantThunk(GD, CoAdj);
1070 else
1071 FnConst = GetAddrOfThunk(GD, ThisAdjustment);
1072 if (!isa<llvm::Function>(FnConst)) {
1073 assert(0 && "Figure out how to handle incomplete-type cases!");
1074 }
1075 llvm::Function *Fn = cast<llvm::Function>(FnConst);
1076 if (Fn->isDeclaration()) {
1077 llvm::GlobalVariable::LinkageTypes linktype;
1078 linktype = llvm::GlobalValue::WeakAnyLinkage;
1079 if (!Extern)
1080 linktype = llvm::GlobalValue::InternalLinkage;
1081 Fn->setLinkage(linktype);
1082 if (!Features.Exceptions && !Features.ObjCNonFragileABI)
1083 Fn->addFnAttr(llvm::Attribute::NoUnwind);
1084 Fn->setAlignment(2);
1085 CodeGenFunction(*this).GenerateCovariantThunk(Fn, GD, Extern, CoAdj);
1086 }
1087 }
1088 BuildThunksForVirtualRecursive(GD, OGD);
1089 }
1090}
1091
1092llvm::Constant *
Eli Friedman35c98cc2009-12-03 04:27:05 +00001093CodeGenModule::BuildThunk(GlobalDecl GD, bool Extern,
Anders Carlssona94822e2009-11-26 02:32:05 +00001094 const ThunkAdjustment &ThisAdjustment) {
Mike Stump919d5e52009-12-03 03:47:56 +00001095 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stumped032eb2009-09-04 18:27:16 +00001096 llvm::SmallString<256> OutName;
Mike Stump919d5e52009-12-03 03:47:56 +00001097 if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(MD)) {
1098 getMangleContext().mangleCXXDtorThunk(D, GD.getDtorType(), ThisAdjustment,
1099 OutName);
1100 } else
1101 getMangleContext().mangleThunk(MD, ThisAdjustment, OutName);
Anders Carlssona94822e2009-11-26 02:32:05 +00001102
Mike Stumped032eb2009-09-04 18:27:16 +00001103 llvm::GlobalVariable::LinkageTypes linktype;
1104 linktype = llvm::GlobalValue::WeakAnyLinkage;
1105 if (!Extern)
1106 linktype = llvm::GlobalValue::InternalLinkage;
1107 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
John McCall183700f2009-09-21 23:43:11 +00001108 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stumped032eb2009-09-04 18:27:16 +00001109 const llvm::FunctionType *FTy =
1110 getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
1111 FPT->isVariadic());
1112
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00001113 llvm::Function *Fn = llvm::Function::Create(FTy, linktype, OutName.str(),
Mike Stumped032eb2009-09-04 18:27:16 +00001114 &getModule());
Mike Stump919d5e52009-12-03 03:47:56 +00001115 CodeGenFunction(*this).GenerateThunk(Fn, GD, Extern, ThisAdjustment);
Mike Stumped032eb2009-09-04 18:27:16 +00001116 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
1117 return m;
1118}
1119
Anders Carlsson7622cd32009-11-26 03:09:37 +00001120llvm::Constant *
Mike Stump919d5e52009-12-03 03:47:56 +00001121CodeGenModule::BuildCovariantThunk(const GlobalDecl &GD, bool Extern,
Anders Carlsson7622cd32009-11-26 03:09:37 +00001122 const CovariantThunkAdjustment &Adjustment) {
Mike Stump919d5e52009-12-03 03:47:56 +00001123 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stump6e319f62009-09-11 23:25:56 +00001124 llvm::SmallString<256> OutName;
Anders Carlsson7622cd32009-11-26 03:09:37 +00001125 getMangleContext().mangleCovariantThunk(MD, Adjustment, OutName);
Mike Stump6e319f62009-09-11 23:25:56 +00001126 llvm::GlobalVariable::LinkageTypes linktype;
1127 linktype = llvm::GlobalValue::WeakAnyLinkage;
1128 if (!Extern)
1129 linktype = llvm::GlobalValue::InternalLinkage;
1130 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
John McCall183700f2009-09-21 23:43:11 +00001131 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump6e319f62009-09-11 23:25:56 +00001132 const llvm::FunctionType *FTy =
1133 getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
1134 FPT->isVariadic());
1135
Daniel Dunbar94fd26d2009-11-21 09:06:22 +00001136 llvm::Function *Fn = llvm::Function::Create(FTy, linktype, OutName.str(),
Mike Stump6e319f62009-09-11 23:25:56 +00001137 &getModule());
Anders Carlsson7622cd32009-11-26 03:09:37 +00001138 CodeGenFunction(*this).GenerateCovariantThunk(Fn, MD, Extern, Adjustment);
Mike Stump6e319f62009-09-11 23:25:56 +00001139 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
1140 return m;
1141}
1142
Mike Stumpf0070db2009-08-26 20:46:33 +00001143llvm::Value *
Anders Carlsson2f1986b2009-10-06 22:43:30 +00001144CodeGenFunction::GetVirtualCXXBaseClassOffset(llvm::Value *This,
1145 const CXXRecordDecl *ClassDecl,
1146 const CXXRecordDecl *BaseClassDecl) {
Anders Carlsson2f1986b2009-10-06 22:43:30 +00001147 const llvm::Type *Int8PtrTy =
1148 llvm::Type::getInt8Ty(VMContext)->getPointerTo();
1149
1150 llvm::Value *VTablePtr = Builder.CreateBitCast(This,
1151 Int8PtrTy->getPointerTo());
1152 VTablePtr = Builder.CreateLoad(VTablePtr, "vtable");
1153
Anders Carlssondbd920c2009-10-11 22:13:54 +00001154 int64_t VBaseOffsetIndex =
1155 CGM.getVtableInfo().getVirtualBaseOffsetIndex(ClassDecl, BaseClassDecl);
1156
Anders Carlsson2f1986b2009-10-06 22:43:30 +00001157 llvm::Value *VBaseOffsetPtr =
Mike Stump79d57682009-11-04 01:11:15 +00001158 Builder.CreateConstGEP1_64(VTablePtr, VBaseOffsetIndex, "vbase.offset.ptr");
Anders Carlsson2f1986b2009-10-06 22:43:30 +00001159 const llvm::Type *PtrDiffTy =
1160 ConvertType(getContext().getPointerDiffType());
1161
1162 VBaseOffsetPtr = Builder.CreateBitCast(VBaseOffsetPtr,
1163 PtrDiffTy->getPointerTo());
1164
1165 llvm::Value *VBaseOffset = Builder.CreateLoad(VBaseOffsetPtr, "vbase.offset");
1166
1167 return VBaseOffset;
1168}
1169
Anders Carlssond6b07fb2009-11-27 20:47:55 +00001170static llvm::Value *BuildVirtualCall(CodeGenFunction &CGF, uint64_t VtableIndex,
Anders Carlsson566abee2009-11-13 04:45:41 +00001171 llvm::Value *This, const llvm::Type *Ty) {
1172 Ty = Ty->getPointerTo()->getPointerTo()->getPointerTo();
Anders Carlsson2b358352009-10-03 14:56:57 +00001173
Anders Carlsson566abee2009-11-13 04:45:41 +00001174 llvm::Value *Vtable = CGF.Builder.CreateBitCast(This, Ty);
1175 Vtable = CGF.Builder.CreateLoad(Vtable);
1176
1177 llvm::Value *VFuncPtr =
1178 CGF.Builder.CreateConstInBoundsGEP1_64(Vtable, VtableIndex, "vfn");
1179 return CGF.Builder.CreateLoad(VFuncPtr);
1180}
1181
1182llvm::Value *
1183CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This,
1184 const llvm::Type *Ty) {
1185 MD = MD->getCanonicalDecl();
Anders Carlssond6b07fb2009-11-27 20:47:55 +00001186 uint64_t VtableIndex = CGM.getVtableInfo().getMethodVtableIndex(MD);
Anders Carlsson566abee2009-11-13 04:45:41 +00001187
1188 return ::BuildVirtualCall(*this, VtableIndex, This, Ty);
1189}
1190
1191llvm::Value *
1192CodeGenFunction::BuildVirtualCall(const CXXDestructorDecl *DD, CXXDtorType Type,
1193 llvm::Value *&This, const llvm::Type *Ty) {
1194 DD = cast<CXXDestructorDecl>(DD->getCanonicalDecl());
Anders Carlssond6b07fb2009-11-27 20:47:55 +00001195 uint64_t VtableIndex =
Anders Carlssona0fdd912009-11-13 17:08:56 +00001196 CGM.getVtableInfo().getMethodVtableIndex(GlobalDecl(DD, Type));
Anders Carlsson566abee2009-11-13 04:45:41 +00001197
1198 return ::BuildVirtualCall(*this, VtableIndex, This, Ty);
Mike Stumpf0070db2009-08-26 20:46:33 +00001199}
1200
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001201/// EmitClassAggrMemberwiseCopy - This routine generates code to copy a class
1202/// array of objects from SrcValue to DestValue. Copying can be either a bitwise
1203/// copy or via a copy constructor call.
Fariborz Jahanian4f68d532009-08-26 00:23:27 +00001204// FIXME. Consolidate this with EmitCXXAggrConstructorCall.
Mike Stump1eb44332009-09-09 15:08:12 +00001205void CodeGenFunction::EmitClassAggrMemberwiseCopy(llvm::Value *Dest,
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001206 llvm::Value *Src,
1207 const ArrayType *Array,
Mike Stump1eb44332009-09-09 15:08:12 +00001208 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001209 QualType Ty) {
1210 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
1211 assert(CA && "VLA cannot be copied over");
1212 bool BitwiseCopy = BaseClassDecl->hasTrivialCopyConstructor();
Mike Stump1eb44332009-09-09 15:08:12 +00001213
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001214 // Create a temporary for the loop index and initialize it with 0.
1215 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
1216 "loop.index");
Mike Stump1eb44332009-09-09 15:08:12 +00001217 llvm::Value* zeroConstant =
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001218 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
Daniel Dunbar7fda03b2009-11-29 21:11:41 +00001219 Builder.CreateStore(zeroConstant, IndexPtr);
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001220 // Start the loop with a block that tests the condition.
1221 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
1222 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump1eb44332009-09-09 15:08:12 +00001223
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001224 EmitBlock(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001225
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001226 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
1227 // Generate: if (loop-index < number-of-elements fall to the loop body,
1228 // otherwise, go to the block after the for-loop.
1229 uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
Mike Stump1eb44332009-09-09 15:08:12 +00001230 llvm::Value * NumElementsPtr =
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001231 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
1232 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001233 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001234 "isless");
1235 // If the condition is true, execute the body.
1236 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump1eb44332009-09-09 15:08:12 +00001237
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001238 EmitBlock(ForBody);
1239 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
1240 // Inside the loop body, emit the constructor call on the array element.
1241 Counter = Builder.CreateLoad(IndexPtr);
1242 Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
1243 Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
1244 if (BitwiseCopy)
1245 EmitAggregateCopy(Dest, Src, Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001246 else if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001247 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001248 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001249 Ctor_Complete);
1250 CallArgList CallArgs;
1251 // Push the this (Dest) ptr.
1252 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1253 BaseCopyCtor->getThisType(getContext())));
Mike Stump1eb44332009-09-09 15:08:12 +00001254
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001255 // Push the Src ptr.
1256 CallArgs.push_back(std::make_pair(RValue::get(Src),
Mike Stump79d57682009-11-04 01:11:15 +00001257 BaseCopyCtor->getParamDecl(0)->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001258 QualType ResultType =
John McCall183700f2009-09-21 23:43:11 +00001259 BaseCopyCtor->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001260 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1261 Callee, CallArgs, BaseCopyCtor);
1262 }
1263 EmitBlock(ContinueBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001264
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001265 // Emit the increment of the loop counter.
1266 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
1267 Counter = Builder.CreateLoad(IndexPtr);
1268 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbar7fda03b2009-11-29 21:11:41 +00001269 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001270
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001271 // Finally, branch back up to the condition for the next iteration.
1272 EmitBranch(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001274 // Emit the fall-through block.
1275 EmitBlock(AfterFor, true);
1276}
1277
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001278/// EmitClassAggrCopyAssignment - This routine generates code to assign a class
Mike Stump1eb44332009-09-09 15:08:12 +00001279/// array of objects from SrcValue to DestValue. Assignment can be either a
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001280/// bitwise assignment or via a copy assignment operator function call.
1281/// FIXME. This can be consolidated with EmitClassAggrMemberwiseCopy
Mike Stump1eb44332009-09-09 15:08:12 +00001282void CodeGenFunction::EmitClassAggrCopyAssignment(llvm::Value *Dest,
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001283 llvm::Value *Src,
1284 const ArrayType *Array,
Mike Stump1eb44332009-09-09 15:08:12 +00001285 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001286 QualType Ty) {
1287 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
1288 assert(CA && "VLA cannot be asssigned");
1289 bool BitwiseAssign = BaseClassDecl->hasTrivialCopyAssignment();
Mike Stump1eb44332009-09-09 15:08:12 +00001290
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001291 // Create a temporary for the loop index and initialize it with 0.
1292 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
1293 "loop.index");
Mike Stump1eb44332009-09-09 15:08:12 +00001294 llvm::Value* zeroConstant =
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001295 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
Daniel Dunbar7fda03b2009-11-29 21:11:41 +00001296 Builder.CreateStore(zeroConstant, IndexPtr);
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001297 // Start the loop with a block that tests the condition.
1298 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
1299 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump1eb44332009-09-09 15:08:12 +00001300
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001301 EmitBlock(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001302
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001303 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
1304 // Generate: if (loop-index < number-of-elements fall to the loop body,
1305 // otherwise, go to the block after the for-loop.
1306 uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
Mike Stump1eb44332009-09-09 15:08:12 +00001307 llvm::Value * NumElementsPtr =
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001308 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
1309 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001310 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001311 "isless");
1312 // If the condition is true, execute the body.
1313 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001315 EmitBlock(ForBody);
1316 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
1317 // Inside the loop body, emit the assignment operator call on array element.
1318 Counter = Builder.CreateLoad(IndexPtr);
1319 Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
1320 Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
1321 const CXXMethodDecl *MD = 0;
1322 if (BitwiseAssign)
1323 EmitAggregateCopy(Dest, Src, Ty);
1324 else {
1325 bool hasCopyAssign = BaseClassDecl->hasConstCopyAssignment(getContext(),
1326 MD);
1327 assert(hasCopyAssign && "EmitClassAggrCopyAssignment - No user assign");
1328 (void)hasCopyAssign;
John McCall183700f2009-09-21 23:43:11 +00001329 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001330 const llvm::Type *LTy =
1331 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
1332 FPT->isVariadic());
Anders Carlsson555b4bb2009-09-10 23:43:36 +00001333 llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001334
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001335 CallArgList CallArgs;
1336 // Push the this (Dest) ptr.
1337 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1338 MD->getThisType(getContext())));
Mike Stump1eb44332009-09-09 15:08:12 +00001339
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001340 // Push the Src ptr.
1341 CallArgs.push_back(std::make_pair(RValue::get(Src),
1342 MD->getParamDecl(0)->getType()));
John McCall183700f2009-09-21 23:43:11 +00001343 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001344 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1345 Callee, CallArgs, MD);
1346 }
1347 EmitBlock(ContinueBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001348
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001349 // Emit the increment of the loop counter.
1350 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
1351 Counter = Builder.CreateLoad(IndexPtr);
1352 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbar7fda03b2009-11-29 21:11:41 +00001353 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001354
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001355 // Finally, branch back up to the condition for the next iteration.
1356 EmitBranch(CondBlock);
Mike Stump1eb44332009-09-09 15:08:12 +00001357
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001358 // Emit the fall-through block.
1359 EmitBlock(AfterFor, true);
1360}
1361
Fariborz Jahanianca283612009-08-07 23:51:33 +00001362/// EmitClassMemberwiseCopy - This routine generates code to copy a class
1363/// object from SrcValue to DestValue. Copying can be either a bitwise copy
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001364/// or via a copy constructor call.
Fariborz Jahanianca283612009-08-07 23:51:33 +00001365void CodeGenFunction::EmitClassMemberwiseCopy(
Fariborz Jahanian942f4f32009-08-08 23:32:22 +00001366 llvm::Value *Dest, llvm::Value *Src,
Mike Stump1eb44332009-09-09 15:08:12 +00001367 const CXXRecordDecl *ClassDecl,
Fariborz Jahanian942f4f32009-08-08 23:32:22 +00001368 const CXXRecordDecl *BaseClassDecl, QualType Ty) {
1369 if (ClassDecl) {
Anders Carlssona3697c92009-11-23 17:57:54 +00001370 Dest = GetAddressOfBaseClass(Dest, ClassDecl, BaseClassDecl,
1371 /*NullCheckValue=*/false);
1372 Src = GetAddressOfBaseClass(Src, ClassDecl, BaseClassDecl,
1373 /*NullCheckValue=*/false);
Fariborz Jahanian942f4f32009-08-08 23:32:22 +00001374 }
1375 if (BaseClassDecl->hasTrivialCopyConstructor()) {
1376 EmitAggregateCopy(Dest, Src, Ty);
Fariborz Jahanianca283612009-08-07 23:51:33 +00001377 return;
Fariborz Jahanian942f4f32009-08-08 23:32:22 +00001378 }
Mike Stump1eb44332009-09-09 15:08:12 +00001379
1380 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian80e4b9e2009-08-08 00:59:58 +00001381 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001382 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
Fariborz Jahanianca283612009-08-07 23:51:33 +00001383 Ctor_Complete);
Fariborz Jahanianca283612009-08-07 23:51:33 +00001384 CallArgList CallArgs;
1385 // Push the this (Dest) ptr.
1386 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1387 BaseCopyCtor->getThisType(getContext())));
Mike Stump1eb44332009-09-09 15:08:12 +00001388
Fariborz Jahanianca283612009-08-07 23:51:33 +00001389 // Push the Src ptr.
1390 CallArgs.push_back(std::make_pair(RValue::get(Src),
Fariborz Jahanian370c8842009-08-10 17:20:45 +00001391 BaseCopyCtor->getParamDecl(0)->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001392 QualType ResultType =
John McCall183700f2009-09-21 23:43:11 +00001393 BaseCopyCtor->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanianca283612009-08-07 23:51:33 +00001394 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1395 Callee, CallArgs, BaseCopyCtor);
1396 }
1397}
Fariborz Jahanian06f598a2009-08-10 18:46:38 +00001398
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001399/// EmitClassCopyAssignment - This routine generates code to copy assign a class
Mike Stump1eb44332009-09-09 15:08:12 +00001400/// object from SrcValue to DestValue. Assignment can be either a bitwise
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001401/// assignment of via an assignment operator call.
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001402// FIXME. Consolidate this with EmitClassMemberwiseCopy as they share a lot.
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001403void CodeGenFunction::EmitClassCopyAssignment(
1404 llvm::Value *Dest, llvm::Value *Src,
Mike Stump1eb44332009-09-09 15:08:12 +00001405 const CXXRecordDecl *ClassDecl,
1406 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001407 QualType Ty) {
1408 if (ClassDecl) {
Anders Carlssona3697c92009-11-23 17:57:54 +00001409 Dest = GetAddressOfBaseClass(Dest, ClassDecl, BaseClassDecl,
1410 /*NullCheckValue=*/false);
1411 Src = GetAddressOfBaseClass(Src, ClassDecl, BaseClassDecl,
1412 /*NullCheckValue=*/false);
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001413 }
1414 if (BaseClassDecl->hasTrivialCopyAssignment()) {
1415 EmitAggregateCopy(Dest, Src, Ty);
1416 return;
1417 }
Mike Stump1eb44332009-09-09 15:08:12 +00001418
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001419 const CXXMethodDecl *MD = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001420 bool ConstCopyAssignOp = BaseClassDecl->hasConstCopyAssignment(getContext(),
Fariborz Jahaniane82c3e22009-08-13 00:53:36 +00001421 MD);
1422 assert(ConstCopyAssignOp && "EmitClassCopyAssignment - missing copy assign");
1423 (void)ConstCopyAssignOp;
1424
John McCall183700f2009-09-21 23:43:11 +00001425 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001426 const llvm::Type *LTy =
1427 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Fariborz Jahaniane82c3e22009-08-13 00:53:36 +00001428 FPT->isVariadic());
Anders Carlsson555b4bb2009-09-10 23:43:36 +00001429 llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Fariborz Jahaniane82c3e22009-08-13 00:53:36 +00001431 CallArgList CallArgs;
1432 // Push the this (Dest) ptr.
1433 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1434 MD->getThisType(getContext())));
Mike Stump1eb44332009-09-09 15:08:12 +00001435
Fariborz Jahaniane82c3e22009-08-13 00:53:36 +00001436 // Push the Src ptr.
1437 CallArgs.push_back(std::make_pair(RValue::get(Src),
1438 MD->getParamDecl(0)->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001439 QualType ResultType =
John McCall183700f2009-09-21 23:43:11 +00001440 MD->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahaniane82c3e22009-08-13 00:53:36 +00001441 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1442 Callee, CallArgs, MD);
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001443}
1444
Fariborz Jahanian06f598a2009-08-10 18:46:38 +00001445/// SynthesizeDefaultConstructor - synthesize a default constructor
Mike Stump1eb44332009-09-09 15:08:12 +00001446void
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001447CodeGenFunction::SynthesizeDefaultConstructor(const CXXConstructorDecl *Ctor,
1448 CXXCtorType Type,
Fariborz Jahanian06f598a2009-08-10 18:46:38 +00001449 llvm::Function *Fn,
1450 const FunctionArgList &Args) {
Eli Friedman15233e52009-11-26 07:40:08 +00001451 assert(!Ctor->isTrivial() && "shouldn't need to generate trivial ctor");
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001452 StartFunction(GlobalDecl(Ctor, Type), Ctor->getResultType(), Fn, Args,
1453 SourceLocation());
1454 EmitCtorPrologue(Ctor, Type);
Fariborz Jahanian06f598a2009-08-10 18:46:38 +00001455 FinishFunction();
1456}
1457
Mike Stump79d57682009-11-04 01:11:15 +00001458/// SynthesizeCXXCopyConstructor - This routine implicitly defines body of a
1459/// copy constructor, in accordance with section 12.8 (p7 and p8) of C++03
Mike Stump1eb44332009-09-09 15:08:12 +00001460/// The implicitly-defined copy constructor for class X performs a memberwise
Mike Stump79d57682009-11-04 01:11:15 +00001461/// copy of its subobjects. The order of copying is the same as the order of
1462/// initialization of bases and members in a user-defined constructor
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001463/// Each subobject is copied in the manner appropriate to its type:
Mike Stump1eb44332009-09-09 15:08:12 +00001464/// if the subobject is of class type, the copy constructor for the class is
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001465/// used;
Mike Stump1eb44332009-09-09 15:08:12 +00001466/// if the subobject is an array, each element is copied, in the manner
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001467/// appropriate to the element type;
Mike Stump1eb44332009-09-09 15:08:12 +00001468/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001469/// used.
Mike Stump1eb44332009-09-09 15:08:12 +00001470/// Virtual base class subobjects shall be copied only once by the
1471/// implicitly-defined copy constructor
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001472
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001473void
1474CodeGenFunction::SynthesizeCXXCopyConstructor(const CXXConstructorDecl *Ctor,
1475 CXXCtorType Type,
1476 llvm::Function *Fn,
1477 const FunctionArgList &Args) {
Anders Carlsson0ff8baf2009-09-11 00:07:24 +00001478 const CXXRecordDecl *ClassDecl = Ctor->getParent();
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001479 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
Mike Stump79d57682009-11-04 01:11:15 +00001480 "SynthesizeCXXCopyConstructor - copy constructor has definition already");
Eli Friedman15233e52009-11-26 07:40:08 +00001481 assert(!Ctor->isTrivial() && "shouldn't need to generate trivial ctor");
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001482 StartFunction(GlobalDecl(Ctor, Type), Ctor->getResultType(), Fn, Args,
1483 SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001484
Fariborz Jahanian1e4edd52009-08-08 00:15:41 +00001485 FunctionArgList::const_iterator i = Args.begin();
1486 const VarDecl *ThisArg = i->first;
1487 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1488 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1489 const VarDecl *SrcArg = (i+1)->first;
1490 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1491 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
Mike Stump1eb44332009-09-09 15:08:12 +00001492
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001493 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1494 Base != ClassDecl->bases_end(); ++Base) {
1495 // FIXME. copy constrution of virtual base NYI
1496 if (Base->isVirtual())
1497 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001498
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001499 CXXRecordDecl *BaseClassDecl
1500 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian942f4f32009-08-08 23:32:22 +00001501 EmitClassMemberwiseCopy(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1502 Base->getType());
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001503 }
Mike Stump1eb44332009-09-09 15:08:12 +00001504
Anders Carlssone9cbf152009-11-24 21:08:10 +00001505 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1506 E = ClassDecl->field_end(); I != E; ++I) {
1507 const FieldDecl *Field = *I;
1508
1509 QualType FieldType = getContext().getCanonicalType(Field->getType());
Mike Stump1eb44332009-09-09 15:08:12 +00001510 const ConstantArrayType *Array =
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001511 getContext().getAsConstantArrayType(FieldType);
1512 if (Array)
1513 FieldType = getContext().getBaseElementType(FieldType);
Mike Stump1eb44332009-09-09 15:08:12 +00001514
Fariborz Jahanian1e4edd52009-08-08 00:15:41 +00001515 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1516 CXXRecordDecl *FieldClassDecl
1517 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Anders Carlssone9cbf152009-11-24 21:08:10 +00001518 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
1519 LValue RHS = EmitLValueForField(LoadOfSrc, Field, false, 0);
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001520 if (Array) {
1521 const llvm::Type *BasePtr = ConvertType(FieldType);
1522 BasePtr = llvm::PointerType::getUnqual(BasePtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001523 llvm::Value *DestBaseAddrPtr =
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001524 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
Mike Stump1eb44332009-09-09 15:08:12 +00001525 llvm::Value *SrcBaseAddrPtr =
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001526 Builder.CreateBitCast(RHS.getAddress(), BasePtr);
1527 EmitClassAggrMemberwiseCopy(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
1528 FieldClassDecl, FieldType);
1529 }
Mike Stump1eb44332009-09-09 15:08:12 +00001530 else
1531 EmitClassMemberwiseCopy(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahanianeb0b6d52009-08-21 18:30:26 +00001532 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanian1e4edd52009-08-08 00:15:41 +00001533 continue;
1534 }
Anders Carlssone9cbf152009-11-24 21:08:10 +00001535
1536 if (Field->getType()->isReferenceType()) {
1537 unsigned FieldIndex = CGM.getTypes().getLLVMFieldNo(Field);
1538
1539 llvm::Value *LHS = Builder.CreateStructGEP(LoadOfThis, FieldIndex,
1540 "lhs.ref");
1541
1542 llvm::Value *RHS = Builder.CreateStructGEP(LoadOfThis, FieldIndex,
1543 "rhs.ref");
1544
1545 // Load the value in RHS.
1546 RHS = Builder.CreateLoad(RHS);
1547
1548 // And store it in the LHS
1549 Builder.CreateStore(RHS, LHS);
1550
1551 continue;
1552 }
Fariborz Jahanianf05fe652009-08-10 18:34:26 +00001553 // Do a built-in assignment of scalar data members.
Anders Carlssone9cbf152009-11-24 21:08:10 +00001554 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
1555 LValue RHS = EmitLValueForField(LoadOfSrc, Field, false, 0);
1556
Eli Friedman6d10ac92009-11-16 21:47:41 +00001557 if (!hasAggregateLLVMType(Field->getType())) {
1558 RValue RVRHS = EmitLoadOfLValue(RHS, Field->getType());
1559 EmitStoreThroughLValue(RVRHS, LHS, Field->getType());
1560 } else if (Field->getType()->isAnyComplexType()) {
1561 ComplexPairTy Pair = LoadComplexFromAddr(RHS.getAddress(),
1562 RHS.isVolatileQualified());
1563 StoreComplexToAddr(Pair, LHS.getAddress(), LHS.isVolatileQualified());
1564 } else {
1565 EmitAggregateCopy(LHS.getAddress(), RHS.getAddress(), Field->getType());
1566 }
Fariborz Jahanian1e4edd52009-08-08 00:15:41 +00001567 }
Fariborz Jahanian8c241a22009-08-08 19:31:03 +00001568 FinishFunction();
Mike Stump1eb44332009-09-09 15:08:12 +00001569}
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001570
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001571/// SynthesizeCXXCopyAssignment - Implicitly define copy assignment operator.
Mike Stump1eb44332009-09-09 15:08:12 +00001572/// Before the implicitly-declared copy assignment operator for a class is
1573/// implicitly defined, all implicitly- declared copy assignment operators for
1574/// its direct base classes and its nonstatic data members shall have been
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001575/// implicitly defined. [12.8-p12]
Mike Stump1eb44332009-09-09 15:08:12 +00001576/// The implicitly-defined copy assignment operator for class X performs
1577/// memberwise assignment of its subob- jects. The direct base classes of X are
1578/// assigned first, in the order of their declaration in
1579/// the base-specifier-list, and then the immediate nonstatic data members of X
1580/// are assigned, in the order in which they were declared in the class
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001581/// definition.Each subobject is assigned in the manner appropriate to its type:
Mike Stump1eb44332009-09-09 15:08:12 +00001582/// if the subobject is of class type, the copy assignment operator for the
1583/// class is used (as if by explicit qualification; that is, ignoring any
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001584/// possible virtual overriding functions in more derived classes);
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001585///
Mike Stump1eb44332009-09-09 15:08:12 +00001586/// if the subobject is an array, each element is assigned, in the manner
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001587/// appropriate to the element type;
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001588///
Mike Stump1eb44332009-09-09 15:08:12 +00001589/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001590/// used.
1591void CodeGenFunction::SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001592 llvm::Function *Fn,
1593 const FunctionArgList &Args) {
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001594
1595 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
1596 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
1597 "SynthesizeCXXCopyAssignment - copy assignment has user declaration");
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001598 StartFunction(CD, CD->getResultType(), Fn, Args, SourceLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001599
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001600 FunctionArgList::const_iterator i = Args.begin();
1601 const VarDecl *ThisArg = i->first;
1602 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1603 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1604 const VarDecl *SrcArg = (i+1)->first;
1605 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1606 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001608 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1609 Base != ClassDecl->bases_end(); ++Base) {
1610 // FIXME. copy assignment of virtual base NYI
1611 if (Base->isVirtual())
1612 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001613
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001614 CXXRecordDecl *BaseClassDecl
1615 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1616 EmitClassCopyAssignment(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1617 Base->getType());
1618 }
Mike Stump1eb44332009-09-09 15:08:12 +00001619
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001620 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1621 FieldEnd = ClassDecl->field_end();
1622 Field != FieldEnd; ++Field) {
1623 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
Mike Stump1eb44332009-09-09 15:08:12 +00001624 const ConstantArrayType *Array =
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001625 getContext().getAsConstantArrayType(FieldType);
1626 if (Array)
1627 FieldType = getContext().getBaseElementType(FieldType);
Mike Stump1eb44332009-09-09 15:08:12 +00001628
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001629 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1630 CXXRecordDecl *FieldClassDecl
1631 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1632 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1633 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001634 if (Array) {
1635 const llvm::Type *BasePtr = ConvertType(FieldType);
1636 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1637 llvm::Value *DestBaseAddrPtr =
1638 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1639 llvm::Value *SrcBaseAddrPtr =
1640 Builder.CreateBitCast(RHS.getAddress(), BasePtr);
1641 EmitClassAggrCopyAssignment(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
1642 FieldClassDecl, FieldType);
1643 }
1644 else
Mike Stump1eb44332009-09-09 15:08:12 +00001645 EmitClassCopyAssignment(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahanianc28bbc22009-08-21 22:34:55 +00001646 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanian0270b8a2009-08-12 23:34:46 +00001647 continue;
1648 }
1649 // Do a built-in assignment of scalar data members.
1650 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1651 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1652 RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
1653 EmitStoreThroughLValue(RVRHS, LHS, FieldType);
Fariborz Jahanian183d7182009-08-14 00:01:54 +00001654 }
Mike Stump1eb44332009-09-09 15:08:12 +00001655
Fariborz Jahanian183d7182009-08-14 00:01:54 +00001656 // return *this;
1657 Builder.CreateStore(LoadOfThis, ReturnValue);
Mike Stump1eb44332009-09-09 15:08:12 +00001658
Fariborz Jahanian2198ba12009-08-12 21:14:35 +00001659 FinishFunction();
Mike Stump1eb44332009-09-09 15:08:12 +00001660}
Fariborz Jahanian97a93752009-08-07 20:22:40 +00001661
Anders Carlssonb1156b92009-11-06 03:23:06 +00001662static void EmitBaseInitializer(CodeGenFunction &CGF,
1663 const CXXRecordDecl *ClassDecl,
1664 CXXBaseOrMemberInitializer *BaseInit,
1665 CXXCtorType CtorType) {
1666 assert(BaseInit->isBaseInitializer() &&
1667 "Must have base initializer!");
1668
1669 llvm::Value *ThisPtr = CGF.LoadCXXThis();
1670
1671 const Type *BaseType = BaseInit->getBaseClass();
1672 CXXRecordDecl *BaseClassDecl =
1673 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlssona3697c92009-11-23 17:57:54 +00001674 llvm::Value *V = CGF.GetAddressOfBaseClass(ThisPtr, ClassDecl,
1675 BaseClassDecl,
1676 /*NullCheckValue=*/false);
Anders Carlssonb1156b92009-11-06 03:23:06 +00001677 CGF.EmitCXXConstructorCall(BaseInit->getConstructor(),
1678 CtorType, V,
1679 BaseInit->const_arg_begin(),
1680 BaseInit->const_arg_end());
1681}
1682
1683static void EmitMemberInitializer(CodeGenFunction &CGF,
1684 const CXXRecordDecl *ClassDecl,
1685 CXXBaseOrMemberInitializer *MemberInit) {
1686 assert(MemberInit->isMemberInitializer() &&
1687 "Must have member initializer!");
1688
1689 // non-static data member initializers.
1690 FieldDecl *Field = MemberInit->getMember();
Eli Friedmanebf50652009-11-16 23:34:11 +00001691 QualType FieldType = CGF.getContext().getCanonicalType(Field->getType());
Anders Carlssonb1156b92009-11-06 03:23:06 +00001692
1693 llvm::Value *ThisPtr = CGF.LoadCXXThis();
1694 LValue LHS;
1695 if (FieldType->isReferenceType()) {
1696 // FIXME: This is really ugly; should be refactored somehow
1697 unsigned idx = CGF.CGM.getTypes().getLLVMFieldNo(Field);
1698 llvm::Value *V = CGF.Builder.CreateStructGEP(ThisPtr, idx, "tmp");
1699 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
1700 LHS = LValue::MakeAddr(V, CGF.MakeQualifiers(FieldType));
1701 } else {
Eli Friedman1db53452009-11-16 22:58:01 +00001702 LHS = CGF.EmitLValueForField(ThisPtr, Field, ClassDecl->isUnion(), 0);
Anders Carlssonb1156b92009-11-06 03:23:06 +00001703 }
Eli Friedmanebf50652009-11-16 23:34:11 +00001704
1705 // If we are initializing an anonymous union field, drill down to the field.
1706 if (MemberInit->getAnonUnionMember()) {
1707 Field = MemberInit->getAnonUnionMember();
1708 LHS = CGF.EmitLValueForField(LHS.getAddress(), Field,
1709 /*IsUnion=*/true, 0);
1710 FieldType = Field->getType();
1711 }
1712
1713 // If the field is an array, branch based on the element type.
1714 const ConstantArrayType *Array =
1715 CGF.getContext().getAsConstantArrayType(FieldType);
1716 if (Array)
1717 FieldType = CGF.getContext().getBaseElementType(FieldType);
1718
Eli Friedman4d26b432009-11-16 23:53:01 +00001719 // We lose the constructor for anonymous union members, so handle them
1720 // explicitly.
1721 // FIXME: This is somwhat ugly.
1722 if (MemberInit->getAnonUnionMember() && FieldType->getAs<RecordType>()) {
1723 if (MemberInit->getNumArgs())
1724 CGF.EmitAggExpr(*MemberInit->arg_begin(), LHS.getAddress(),
1725 LHS.isVolatileQualified());
1726 else
1727 CGF.EmitAggregateClear(LHS.getAddress(), Field->getType());
1728 return;
1729 }
1730
Anders Carlssonb1156b92009-11-06 03:23:06 +00001731 if (FieldType->getAs<RecordType>()) {
Eli Friedmanebf50652009-11-16 23:34:11 +00001732 assert(MemberInit->getConstructor() &&
1733 "EmitCtorPrologue - no constructor to initialize member");
1734 if (Array) {
1735 const llvm::Type *BasePtr = CGF.ConvertType(FieldType);
1736 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1737 llvm::Value *BaseAddrPtr =
1738 CGF.Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1739 CGF.EmitCXXAggrConstructorCall(MemberInit->getConstructor(),
Anders Carlsson5d4d9462009-11-24 18:43:52 +00001740 Array, BaseAddrPtr,
1741 MemberInit->const_arg_begin(),
1742 MemberInit->const_arg_end());
Anders Carlssonb1156b92009-11-06 03:23:06 +00001743 }
Eli Friedmanebf50652009-11-16 23:34:11 +00001744 else
1745 CGF.EmitCXXConstructorCall(MemberInit->getConstructor(),
1746 Ctor_Complete, LHS.getAddress(),
1747 MemberInit->const_arg_begin(),
1748 MemberInit->const_arg_end());
1749 return;
Anders Carlssonb1156b92009-11-06 03:23:06 +00001750 }
1751
1752 assert(MemberInit->getNumArgs() == 1 && "Initializer count must be 1 only");
1753 Expr *RhsExpr = *MemberInit->arg_begin();
1754 RValue RHS;
Eli Friedman4d26b432009-11-16 23:53:01 +00001755 if (FieldType->isReferenceType()) {
Anders Carlssonb1156b92009-11-06 03:23:06 +00001756 RHS = CGF.EmitReferenceBindingToExpr(RhsExpr, FieldType,
1757 /*IsInitializer=*/true);
Fariborz Jahaniane8b31cc2009-11-11 17:55:25 +00001758 CGF.EmitStoreThroughLValue(RHS, LHS, FieldType);
Eli Friedman4d26b432009-11-16 23:53:01 +00001759 } else if (Array) {
1760 CGF.EmitMemSetToZero(LHS.getAddress(), Field->getType());
1761 } else if (!CGF.hasAggregateLLVMType(RhsExpr->getType())) {
1762 RHS = RValue::get(CGF.EmitScalarExpr(RhsExpr, true));
1763 CGF.EmitStoreThroughLValue(RHS, LHS, FieldType);
1764 } else if (RhsExpr->getType()->isAnyComplexType()) {
1765 CGF.EmitComplexExprIntoAddr(RhsExpr, LHS.getAddress(),
1766 LHS.isVolatileQualified());
1767 } else {
1768 // Handle member function pointers; other aggregates shouldn't get this far.
1769 CGF.EmitAggExpr(RhsExpr, LHS.getAddress(), LHS.isVolatileQualified());
1770 }
Anders Carlssonb1156b92009-11-06 03:23:06 +00001771}
1772
Fariborz Jahaniane7d346b2009-07-20 23:18:55 +00001773/// EmitCtorPrologue - This routine generates necessary code to initialize
1774/// base classes and non-static data members belonging to this constructor.
Anders Carlsson174754c2009-09-01 18:33:46 +00001775/// FIXME: This needs to take a CXXCtorType.
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001776void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD,
1777 CXXCtorType CtorType) {
Anders Carlssonb1156b92009-11-06 03:23:06 +00001778 const CXXRecordDecl *ClassDecl = CD->getParent();
1779
Mike Stumpeb19fa92009-08-06 13:41:24 +00001780 // FIXME: Add vbase initialization
Anders Carlssonbb27d862009-12-05 21:28:12 +00001781
Fariborz Jahanian742cd1b2009-07-25 21:12:28 +00001782 for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
Fariborz Jahaniane7d346b2009-07-20 23:18:55 +00001783 E = CD->init_end();
1784 B != E; ++B) {
1785 CXXBaseOrMemberInitializer *Member = (*B);
Anders Carlssonb1156b92009-11-06 03:23:06 +00001786
Anders Carlsson1faf6742009-11-06 04:11:09 +00001787 assert(LiveTemporaries.empty() &&
1788 "Should not have any live temporaries at initializer start!");
1789
Anders Carlssonb1156b92009-11-06 03:23:06 +00001790 if (Member->isBaseInitializer())
1791 EmitBaseInitializer(*this, ClassDecl, Member, CtorType);
1792 else
1793 EmitMemberInitializer(*this, ClassDecl, Member);
Anders Carlsson1faf6742009-11-06 04:11:09 +00001794
1795 // Pop any live temporaries that the initializers might have pushed.
1796 while (!LiveTemporaries.empty())
1797 PopCXXTemporary();
Fariborz Jahaniane7d346b2009-07-20 23:18:55 +00001798 }
Mike Stumpf1216772009-07-31 18:25:34 +00001799
Anders Carlsson9428b672009-12-05 18:38:15 +00001800 if (!ClassDecl->isDynamicClass())
1801 return;
1802
Anders Carlssonbb27d862009-12-05 21:28:12 +00001803 // Initialize the vtable pointer.
1804 // FIXME: This needs to initialize secondary vtable pointers too.
1805 llvm::Value *ThisPtr = LoadCXXThis();
Anders Carlsson9428b672009-12-05 18:38:15 +00001806
Anders Carlssonbb27d862009-12-05 21:28:12 +00001807 llvm::Constant *Vtable = CGM.getVtableInfo().getVtable(ClassDecl);
1808 uint64_t AddressPoint = CGM.getVtableInfo().getVtableAddressPoint(ClassDecl);
1809
1810 llvm::Value *VtableAddressPoint =
1811 Builder.CreateConstInBoundsGEP2_64(Vtable, 0, AddressPoint);
1812
Anders Carlsson9428b672009-12-05 18:38:15 +00001813 llvm::Value *VtableField =
Anders Carlssonbb27d862009-12-05 21:28:12 +00001814 Builder.CreateBitCast(ThisPtr,
1815 VtableAddressPoint->getType()->getPointerTo());
1816
1817 Builder.CreateStore(VtableAddressPoint, VtableField);
Fariborz Jahaniane7d346b2009-07-20 23:18:55 +00001818}
Fariborz Jahanian426cc382009-07-30 17:49:11 +00001819
1820/// EmitDtorEpilogue - Emit all code that comes at the end of class's
Mike Stump1eb44332009-09-09 15:08:12 +00001821/// destructor. This is to call destructors on members and base classes
Fariborz Jahanian426cc382009-07-30 17:49:11 +00001822/// in reverse order of their construction.
Anders Carlsson174754c2009-09-01 18:33:46 +00001823/// FIXME: This needs to take a CXXDtorType.
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001824void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD,
1825 CXXDtorType DtorType) {
Anders Carlsson9f853df2009-11-17 04:44:12 +00001826 assert(!DD->isTrivial() &&
1827 "Should not emit dtor epilogue for trivial dtor!");
Mike Stump1eb44332009-09-09 15:08:12 +00001828
Anders Carlsson9f853df2009-11-17 04:44:12 +00001829 const CXXRecordDecl *ClassDecl = DD->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +00001830
Anders Carlsson9f853df2009-11-17 04:44:12 +00001831 // Collect the fields.
1832 llvm::SmallVector<const FieldDecl *, 16> FieldDecls;
1833 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1834 E = ClassDecl->field_end(); I != E; ++I) {
1835 const FieldDecl *Field = *I;
1836
1837 QualType FieldType = getContext().getCanonicalType(Field->getType());
1838 FieldType = getContext().getBaseElementType(FieldType);
1839
1840 const RecordType *RT = FieldType->getAs<RecordType>();
1841 if (!RT)
Fariborz Jahanian0880bac2009-08-17 19:04:50 +00001842 continue;
Anders Carlsson9f853df2009-11-17 04:44:12 +00001843
1844 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1845 if (FieldClassDecl->hasTrivialDestructor())
1846 continue;
1847
1848 FieldDecls.push_back(Field);
Fariborz Jahanian0880bac2009-08-17 19:04:50 +00001849 }
Anders Carlssonbc0d83b2009-11-15 23:03:25 +00001850
Anders Carlsson9f853df2009-11-17 04:44:12 +00001851 // Now destroy the fields.
1852 for (size_t i = FieldDecls.size(); i > 0; --i) {
1853 const FieldDecl *Field = FieldDecls[i - 1];
1854
1855 QualType FieldType = Field->getType();
1856 const ConstantArrayType *Array =
1857 getContext().getAsConstantArrayType(FieldType);
1858 if (Array)
1859 FieldType = getContext().getBaseElementType(FieldType);
1860
1861 const RecordType *RT = FieldType->getAs<RecordType>();
1862 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1863
1864 llvm::Value *ThisPtr = LoadCXXThis();
1865
1866 LValue LHS = EmitLValueForField(ThisPtr, Field,
1867 /*isUnion=*/false,
1868 // FIXME: Qualifiers?
1869 /*CVRQualifiers=*/0);
1870 if (Array) {
1871 const llvm::Type *BasePtr = ConvertType(FieldType);
1872 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1873 llvm::Value *BaseAddrPtr =
1874 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1875 EmitCXXAggrDestructorCall(FieldClassDecl->getDestructor(getContext()),
1876 Array, BaseAddrPtr);
1877 } else
1878 EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
1879 Dtor_Complete, LHS.getAddress());
1880 }
1881
1882 // Destroy non-virtual bases.
1883 for (CXXRecordDecl::reverse_base_class_const_iterator I =
1884 ClassDecl->bases_rbegin(), E = ClassDecl->bases_rend(); I != E; ++I) {
1885 const CXXBaseSpecifier &Base = *I;
1886
1887 // Ignore virtual bases.
1888 if (Base.isVirtual())
1889 continue;
1890
1891 CXXRecordDecl *BaseClassDecl
1892 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1893
1894 // Ignore trivial destructors.
1895 if (BaseClassDecl->hasTrivialDestructor())
1896 continue;
Fariborz Jahanianba2253f2009-11-30 22:07:18 +00001897 const CXXDestructorDecl *D = BaseClassDecl->getDestructor(getContext());
1898
Anders Carlssona3697c92009-11-23 17:57:54 +00001899 llvm::Value *V = GetAddressOfBaseClass(LoadCXXThis(),
1900 ClassDecl, BaseClassDecl,
1901 /*NullCheckValue=*/false);
Fariborz Jahanianba2253f2009-11-30 22:07:18 +00001902 EmitCXXDestructorCall(D, Dtor_Base, V);
Anders Carlsson9f853df2009-11-17 04:44:12 +00001903 }
1904
1905 // If we're emitting a base destructor, we don't want to emit calls to the
1906 // virtual bases.
1907 if (DtorType == Dtor_Base)
1908 return;
1909
Fariborz Jahanianba2253f2009-11-30 22:07:18 +00001910 // Handle virtual bases.
Anders Carlsson9f853df2009-11-17 04:44:12 +00001911 for (CXXRecordDecl::reverse_base_class_const_iterator I =
1912 ClassDecl->vbases_rbegin(), E = ClassDecl->vbases_rend(); I != E; ++I) {
Fariborz Jahanianba2253f2009-11-30 22:07:18 +00001913 const CXXBaseSpecifier &Base = *I;
1914 CXXRecordDecl *BaseClassDecl
1915 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1916
1917 // Ignore trivial destructors.
1918 if (BaseClassDecl->hasTrivialDestructor())
1919 continue;
1920 const CXXDestructorDecl *D = BaseClassDecl->getDestructor(getContext());
1921 llvm::Value *V = GetAddressOfBaseClass(LoadCXXThis(),
1922 ClassDecl, BaseClassDecl,
1923 /*NullCheckValue=*/false);
1924 EmitCXXDestructorCall(D, Dtor_Base, V);
Anders Carlsson9f853df2009-11-17 04:44:12 +00001925 }
1926
1927 // If we have a deleting destructor, emit a call to the delete operator.
Fariborz Jahanianaffe67e2009-12-01 23:35:33 +00001928 if (DtorType == Dtor_Deleting) {
1929 assert(DD->getOperatorDelete() &&
1930 "operator delete missing - EmitDtorEpilogue");
Eli Friedman5fe05982009-11-18 00:50:08 +00001931 EmitDeleteCall(DD->getOperatorDelete(), LoadCXXThis(),
1932 getContext().getTagDeclType(ClassDecl));
Fariborz Jahanianaffe67e2009-12-01 23:35:33 +00001933 }
Fariborz Jahanian426cc382009-07-30 17:49:11 +00001934}
Fariborz Jahanian0880bac2009-08-17 19:04:50 +00001935
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001936void CodeGenFunction::SynthesizeDefaultDestructor(const CXXDestructorDecl *Dtor,
1937 CXXDtorType DtorType,
Fariborz Jahanian0880bac2009-08-17 19:04:50 +00001938 llvm::Function *Fn,
1939 const FunctionArgList &Args) {
Anders Carlsson9f853df2009-11-17 04:44:12 +00001940 assert(!Dtor->getParent()->hasUserDeclaredDestructor() &&
Fariborz Jahanian0880bac2009-08-17 19:04:50 +00001941 "SynthesizeDefaultDestructor - destructor has user declaration");
Mike Stump1eb44332009-09-09 15:08:12 +00001942
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001943 StartFunction(GlobalDecl(Dtor, DtorType), Dtor->getResultType(), Fn, Args,
1944 SourceLocation());
Anders Carlsson9f853df2009-11-17 04:44:12 +00001945
Anders Carlssonde1d26b2009-09-14 05:32:02 +00001946 EmitDtorEpilogue(Dtor, DtorType);
Fariborz Jahanian0880bac2009-08-17 19:04:50 +00001947 FinishFunction();
Mike Stump1eb44332009-09-09 15:08:12 +00001948}