blob: 6d96124a3847af956bbc40b01d6fadf44b658ad7 [file] [log] [blame]
Anders Carlsson87fc5a52008-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 Stump11289f42009-09-09 15:08:12 +000014// We might split this into multiple files if it gets too unwieldy
Anders Carlsson87fc5a52008-08-22 16:00:37 +000015
16#include "CodeGenFunction.h"
17#include "CodeGenModule.h"
Anders Carlsson1235bbc2009-04-13 18:03:33 +000018#include "Mangle.h"
Anders Carlsson87fc5a52008-08-22 16:00:37 +000019#include "clang/AST/ASTContext.h"
Fariborz Jahaniandedf1e42009-07-25 21:12:28 +000020#include "clang/AST/RecordLayout.h"
Anders Carlsson87fc5a52008-08-22 16:00:37 +000021#include "clang/AST/Decl.h"
Anders Carlssone5fd6f22009-04-03 22:50:24 +000022#include "clang/AST/DeclCXX.h"
Anders Carlsson131be8b2008-08-23 19:42:54 +000023#include "clang/AST/DeclObjC.h"
Anders Carlsson52d78a52009-09-27 18:58:34 +000024#include "clang/AST/StmtCXX.h"
Anders Carlsson87fc5a52008-08-22 16:00:37 +000025#include "llvm/ADT/StringExtras.h"
Anders Carlsson87fc5a52008-08-22 16:00:37 +000026using namespace clang;
27using namespace CodeGen;
28
Mike Stump11289f42009-09-09 15:08:12 +000029void
Fariborz Jahanian1254a092009-11-10 19:24:06 +000030CodeGenFunction::EmitCXXGlobalDtorRegistration(llvm::Constant *DtorFn,
Anders Carlssonf40886a2009-08-08 21:45:14 +000031 llvm::Constant *DeclPtr) {
Anders Carlsson52d78a52009-09-27 18:58:34 +000032 const llvm::Type *Int8PtrTy =
33 llvm::Type::getInt8Ty(VMContext)->getPointerTo();
Mike Stump11289f42009-09-09 15:08:12 +000034
Anders Carlssonf40886a2009-08-08 21:45:14 +000035 std::vector<const llvm::Type *> Params;
36 Params.push_back(Int8PtrTy);
Mike Stump11289f42009-09-09 15:08:12 +000037
Anders Carlssonf40886a2009-08-08 21:45:14 +000038 // Get the destructor function type
Mike Stump11289f42009-09-09 15:08:12 +000039 const llvm::Type *DtorFnTy =
Owen Anderson41a75022009-08-13 21:57:51 +000040 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Params, false);
Anders Carlssonf40886a2009-08-08 21:45:14 +000041 DtorFnTy = llvm::PointerType::getUnqual(DtorFnTy);
Mike Stump11289f42009-09-09 15:08:12 +000042
Anders Carlssonf40886a2009-08-08 21:45:14 +000043 Params.clear();
44 Params.push_back(DtorFnTy);
45 Params.push_back(Int8PtrTy);
46 Params.push_back(Int8PtrTy);
Mike Stump11289f42009-09-09 15:08:12 +000047
Anders Carlssonf40886a2009-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 Stump11289f42009-09-09 15:08:12 +000050 const llvm::FunctionType *AtExitFnTy =
Anders Carlssonf40886a2009-08-08 21:45:14 +000051 llvm::FunctionType::get(ConvertType(getContext().IntTy), Params, false);
Mike Stump11289f42009-09-09 15:08:12 +000052
Anders Carlssonf40886a2009-08-08 21:45:14 +000053 llvm::Constant *AtExitFn = CGM.CreateRuntimeFunction(AtExitFnTy,
54 "__cxa_atexit");
Mike Stump11289f42009-09-09 15:08:12 +000055
Anders Carlssonf40886a2009-08-08 21:45:14 +000056 llvm::Constant *Handle = CGM.CreateRuntimeVariable(Int8PtrTy,
57 "__dso_handle");
Anders Carlssonf40886a2009-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 Stump11289f42009-09-09 15:08:12 +000064void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
Anders Carlssonf40886a2009-08-08 21:45:14 +000065 llvm::Constant *DeclPtr) {
66 assert(D.hasGlobalStorage() &&
67 "VarDecl must have global storage!");
Mike Stump11289f42009-09-09 15:08:12 +000068
Anders Carlssonf40886a2009-08-08 21:45:14 +000069 const Expr *Init = D.getInit();
70 QualType T = D.getType();
Mike Stump53f9ded2009-11-03 23:25:48 +000071 bool isVolatile = getContext().getCanonicalType(T).isVolatileQualified();
Mike Stump11289f42009-09-09 15:08:12 +000072
Anders Carlssonf40886a2009-08-08 21:45:14 +000073 if (T->isReferenceType()) {
Anders Carlsson49033712009-08-17 18:24:57 +000074 ErrorUnsupported(Init, "global variable that binds to a reference");
Anders Carlssonf40886a2009-08-08 21:45:14 +000075 } else if (!hasAggregateLLVMType(T)) {
76 llvm::Value *V = EmitScalarExpr(Init);
Mike Stump53f9ded2009-11-03 23:25:48 +000077 EmitStoreOfScalar(V, DeclPtr, isVolatile, T);
Anders Carlssonf40886a2009-08-08 21:45:14 +000078 } else if (T->isAnyComplexType()) {
Mike Stump53f9ded2009-11-03 23:25:48 +000079 EmitComplexExprIntoAddr(Init, DeclPtr, isVolatile);
Anders Carlssonf40886a2009-08-08 21:45:14 +000080 } else {
Mike Stump53f9ded2009-11-03 23:25:48 +000081 EmitAggExpr(Init, DeclPtr, isVolatile);
Fariborz Jahaniane6c81122009-11-11 01:13:34 +000082 // Avoid generating destructor(s) for initialized objects.
83 if (!isa<CXXConstructExpr>(Init))
84 return;
Fariborz Jahanian1254a092009-11-10 19:24:06 +000085 const ConstantArrayType *Array = getContext().getAsConstantArrayType(T);
86 if (Array)
87 T = getContext().getBaseElementType(Array);
88
Anders Carlssonf40886a2009-08-08 21:45:14 +000089 if (const RecordType *RT = T->getAs<RecordType>()) {
90 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Fariborz Jahanian1254a092009-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 Carlssonf40886a2009-08-08 21:45:14 +0000105 }
106 }
107}
108
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000109void
110CodeGenModule::EmitCXXGlobalInitFunc() {
111 if (CXXGlobalInits.empty())
112 return;
Mike Stump11289f42009-09-09 15:08:12 +0000113
Mike Stumpb9c9b352009-11-04 01:11:15 +0000114 const llvm::FunctionType *FTy
115 = llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
116 false);
Mike Stump11289f42009-09-09 15:08:12 +0000117
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000118 // Create our global initialization function.
119 // FIXME: Should this be tweakable by targets?
Mike Stump11289f42009-09-09 15:08:12 +0000120 llvm::Function *Fn =
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000121 llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
122 "__cxx_global_initialization", &TheModule);
Mike Stump11289f42009-09-09 15:08:12 +0000123
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000124 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn,
Benjamin Kramerb57e5d22009-08-08 23:43:26 +0000125 &CXXGlobalInits[0],
Anders Carlssonb8be93f2009-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 Carlsson73fcc952009-09-11 00:07:24 +0000133 StartFunction(GlobalDecl(), getContext().VoidTy, Fn, FunctionArgList(),
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000134 SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +0000135
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000136 for (unsigned i = 0; i != NumDecls; ++i) {
137 const VarDecl *D = Decls[i];
Mike Stump11289f42009-09-09 15:08:12 +0000138
Anders Carlssonb8be93f2009-08-08 23:24:23 +0000139 llvm::Constant *DeclPtr = CGM.GetAddrOfGlobalVar(D);
140 EmitCXXGlobalVarDeclInit(*D, DeclPtr);
141 }
142 FinishFunction();
143}
144
Mike Stump11289f42009-09-09 15:08:12 +0000145void
146CodeGenFunction::EmitStaticCXXBlockVarDeclInit(const VarDecl &D,
Anders Carlssonf40886a2009-08-08 21:45:14 +0000147 llvm::GlobalVariable *GV) {
Daniel Dunbar22a87f92009-02-25 19:24:29 +0000148 // FIXME: This should use __cxa_guard_{acquire,release}?
149
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000150 assert(!getContext().getLangOptions().ThreadsafeStatics &&
151 "thread safe statics are currently not supported!");
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000152
Anders Carlsson1235bbc2009-04-13 18:03:33 +0000153 llvm::SmallString<256> GuardVName;
Daniel Dunbare128dd12009-11-21 09:06:22 +0000154 CGM.getMangleContext().mangleGuardVariable(&D, GuardVName);
Mike Stump11289f42009-09-09 15:08:12 +0000155
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000156 // Create the guard variable.
Mike Stump11289f42009-09-09 15:08:12 +0000157 llvm::GlobalValue *GuardV =
Mike Stumpb9c9b352009-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 Dunbar58bc48c2009-08-19 20:04:03 +0000161 GuardVName.str());
Mike Stump11289f42009-09-09 15:08:12 +0000162
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000163 // Load the first byte of the guard variable.
Mike Stumpb9c9b352009-11-04 01:11:15 +0000164 const llvm::Type *PtrTy
165 = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump11289f42009-09-09 15:08:12 +0000166 llvm::Value *V = Builder.CreateLoad(Builder.CreateBitCast(GuardV, PtrTy),
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000167 "tmp");
Mike Stump11289f42009-09-09 15:08:12 +0000168
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000169 // Compare it against 0.
Mike Stumpb9c9b352009-11-04 01:11:15 +0000170 llvm::Value *nullValue
171 = llvm::Constant::getNullValue(llvm::Type::getInt8Ty(VMContext));
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000172 llvm::Value *ICmp = Builder.CreateICmpEQ(V, nullValue , "tobool");
Mike Stump11289f42009-09-09 15:08:12 +0000173
Daniel Dunbar75283ff2008-11-11 02:29:29 +0000174 llvm::BasicBlock *InitBlock = createBasicBlock("init");
Daniel Dunbara612e792008-11-13 01:38:36 +0000175 llvm::BasicBlock *EndBlock = createBasicBlock("init.end");
Anders Carlsson87fc5a52008-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 Stump11289f42009-09-09 15:08:12 +0000179
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000180 EmitBlock(InitBlock);
181
Anders Carlssonf40886a2009-08-08 21:45:14 +0000182 EmitCXXGlobalVarDeclInit(D, GV);
183
Mike Stumpb9c9b352009-11-04 01:11:15 +0000184 Builder.CreateStore(llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext),
185 1),
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000186 Builder.CreateBitCast(GuardV, PtrTy));
Mike Stump11289f42009-09-09 15:08:12 +0000187
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000188 EmitBlock(EndBlock);
Anders Carlsson87fc5a52008-08-22 16:00:37 +0000189}
190
Anders Carlssonbd7d11f2009-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 Stump11289f42009-09-09 15:08:12 +0000196 assert(MD->isInstance() &&
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000197 "Trying to emit a member call expr on a static method!");
198
John McCall9dd450b2009-09-21 23:43:11 +0000199 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump11289f42009-09-09 15:08:12 +0000200
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000201 CallArgList Args;
Mike Stump11289f42009-09-09 15:08:12 +0000202
Anders Carlssonbd7d11f2009-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 Stump11289f42009-09-09 15:08:12 +0000206
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000207 // And the rest of the call args
208 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
Mike Stump11289f42009-09-09 15:08:12 +0000209
John McCall9dd450b2009-09-21 23:43:11 +0000210 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000211 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
212 Callee, Args, MD);
213}
214
Anders Carlssond7432df2009-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 Carlssonb61301f2009-10-12 19:45:47 +0000223
224 return false;
Anders Carlssond7432df2009-10-12 19:41:04 +0000225 }
226
Anders Carlssona1b54fd2009-10-12 19:59:15 +0000227 // We can always devirtualize calls on temporary object expressions.
Anders Carlssonb61301f2009-10-12 19:45:47 +0000228 if (isa<CXXTemporaryObjectExpr>(Base))
229 return true;
230
Anders Carlssona1b54fd2009-10-12 19:59:15 +0000231 // And calls on bound temporaries.
232 if (isa<CXXBindTemporaryExpr>(Base))
233 return true;
234
Anders Carlsson2a017092009-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 Carlssond7432df2009-10-12 19:41:04 +0000239 // We can't devirtualize the call.
240 return false;
241}
242
Anders Carlssone5fd6f22009-04-03 22:50:24 +0000243RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE) {
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000244 if (isa<BinaryOperator>(CE->getCallee()))
245 return EmitCXXMemberPointerCallExpr(CE);
246
Anders Carlssone5fd6f22009-04-03 22:50:24 +0000247 const MemberExpr *ME = cast<MemberExpr>(CE->getCallee());
248 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000249
Anders Carlsson8f4fd602009-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 McCall9dd450b2009-09-21 23:43:11 +0000258 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stumpa523b2d2009-07-30 21:47:44 +0000259
Mike Stump11289f42009-09-09 15:08:12 +0000260 const llvm::Type *Ty =
261 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Anders Carlsson03a409f2009-04-08 20:31:57 +0000262 FPT->isVariadic());
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000263 llvm::Value *This;
Mike Stump11289f42009-09-09 15:08:12 +0000264
Anders Carlssone5fd6f22009-04-03 22:50:24 +0000265 if (ME->isArrow())
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000266 This = EmitScalarExpr(ME->getBase());
Anders Carlssone5fd6f22009-04-03 22:50:24 +0000267 else {
268 LValue BaseLV = EmitLValue(ME->getBase());
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000269 This = BaseLV.getAddress();
Anders Carlssone5fd6f22009-04-03 22:50:24 +0000270 }
Mike Stumpa5588bf2009-08-26 20:46:33 +0000271
Eli Friedmanffc066f2009-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 Gregorc1905232009-08-26 22:36:53 +0000280 // C++ [class.virtual]p12:
Mike Stump11289f42009-09-09 15:08:12 +0000281 // Explicit qualification with the scope operator (5.1) suppresses the
Douglas Gregorc1905232009-08-26 22:36:53 +0000282 // virtual call mechanism.
Anders Carlssonb5296552009-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 Stumpa5588bf2009-08-26 20:46:33 +0000286 llvm::Value *Callee;
Eli Friedmane6ce3542009-11-16 05:31:29 +0000287 if (const CXXDestructorDecl *Destructor
288 = dyn_cast<CXXDestructorDecl>(MD)) {
Eli Friedman84a7e342009-11-26 07:40:08 +0000289 if (Destructor->isTrivial())
290 return RValue::get(0);
Eli Friedmane6ce3542009-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 Carlssonecf9bf02009-09-10 23:43:36 +0000301 Callee = CGM.GetAddrOfFunction(MD, Ty);
Eli Friedmane6ce3542009-11-16 05:31:29 +0000302 }
Mike Stump11289f42009-09-09 15:08:12 +0000303
304 return EmitCXXMemberCall(MD, Callee, This,
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000305 CE->arg_begin(), CE->arg_end());
Anders Carlssone5fd6f22009-04-03 22:50:24 +0000306}
Anders Carlssona5d077d2009-04-14 16:58:56 +0000307
Mike Stump11289f42009-09-09 15:08:12 +0000308RValue
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000309CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E) {
310 const BinaryOperator *BO = cast<BinaryOperator>(E->getCallee());
Anders Carlsson6bfee8f2009-10-13 17:41:28 +0000311 const Expr *BaseExpr = BO->getLHS();
312 const Expr *MemFnExpr = BO->getRHS();
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000313
Anders Carlsson6bfee8f2009-10-13 17:41:28 +0000314 const MemberPointerType *MPT =
315 MemFnExpr->getType()->getAs<MemberPointerType>();
Anders Carlsson2ee3c012009-10-03 19:43:08 +0000316 const FunctionProtoType *FPT =
317 MPT->getPointeeType()->getAs<FunctionProtoType>();
318 const CXXRecordDecl *RD =
Douglas Gregor615ac672009-11-04 16:49:01 +0000319 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
Anders Carlsson2ee3c012009-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 Carlsson6bfee8f2009-10-13 17:41:28 +0000330 CreateTempAlloca(ConvertType(MemFnExpr->getType()), "mem.fn");
331 EmitAggExpr(MemFnExpr, MemFnPtr, /*VolatileDest=*/false);
Anders Carlsson2ee3c012009-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 Stump0d479e62009-10-09 01:25:47 +0000382 VTable = Builder.CreateConstGEP1_64(VTable, (uint64_t)-1);
Anders Carlsson2ee3c012009-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 Carlsson4034a952009-05-27 04:18:27 +0000416CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
417 const CXXMethodDecl *MD) {
Mike Stump11289f42009-09-09 15:08:12 +0000418 assert(MD->isInstance() &&
Anders Carlsson4034a952009-05-27 04:18:27 +0000419 "Trying to emit a member call expr on a static method!");
Mike Stump11289f42009-09-09 15:08:12 +0000420
Fariborz Jahanian4985b332009-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 Stump11289f42009-09-09 15:08:12 +0000433
John McCall9dd450b2009-09-21 23:43:11 +0000434 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump11289f42009-09-09 15:08:12 +0000435 const llvm::Type *Ty =
436 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Mike Stump5a522352009-09-04 18:27:16 +0000437 FPT->isVariadic());
Mike Stump11289f42009-09-09 15:08:12 +0000438
Anders Carlsson4034a952009-05-27 04:18:27 +0000439 llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
Mike Stump11289f42009-09-09 15:08:12 +0000440
Eli Friedmane6ce3542009-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 Carlsson4034a952009-05-27 04:18:27 +0000447 return EmitCXXMemberCall(MD, Callee, This,
448 E->arg_begin() + 1, E->arg_end());
449}
450
Anders Carlssona5d077d2009-04-14 16:58:56 +0000451llvm::Value *CodeGenFunction::LoadCXXThis() {
Mike Stump11289f42009-09-09 15:08:12 +0000452 assert(isa<CXXMethodDecl>(CurFuncDecl) &&
Anders Carlssona5d077d2009-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 Stump11289f42009-09-09 15:08:12 +0000456
Anders Carlssona5d077d2009-04-14 16:58:56 +0000457 // FIXME: What if we're inside a block?
Mike Stump18bb9282009-05-16 07:57:57 +0000458 // ans: See how CodeGenFunction::LoadObjCSelf() uses
459 // CodeGenFunction::BlockForwardSelf() for how to do this.
Anders Carlssona5d077d2009-04-14 16:58:56 +0000460 return Builder.CreateLoad(LocalDeclMap[CXXThisDecl], "this");
461}
Anders Carlssonf7475242009-04-15 15:55:24 +0000462
Fariborz Jahanian431c8832009-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 Carlssond49844b2009-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 Jahanian431c8832009-08-19 20:55:16 +0000469void
470CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
Anders Carlsson3a202f62009-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 Carlssond49844b2009-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 Carlsson3a202f62009-11-24 18:43:52 +0000481 EmitCXXAggrConstructorCall(D, NumElements, ArrayPtr, ArgBeg, ArgEnd);
Anders Carlssond49844b2009-09-23 02:45:36 +0000482}
483
484void
485CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
Anders Carlsson3a202f62009-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 Carlssond49844b2009-09-23 02:45:36 +0000490 const llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Mike Stump11289f42009-09-09 15:08:12 +0000491
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000492 // Create a temporary for the loop index and initialize it with 0.
Anders Carlssond49844b2009-09-23 02:45:36 +0000493 llvm::Value *IndexPtr = CreateTempAlloca(SizeTy, "loop.index");
494 llvm::Value *Zero = llvm::Constant::getNullValue(SizeTy);
Daniel Dunbardacbe6b2009-11-29 21:11:41 +0000495 Builder.CreateStore(Zero, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +0000496
Fariborz Jahanian431c8832009-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 Stump11289f42009-09-09 15:08:12 +0000500
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000501 EmitBlock(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000502
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000503 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Mike Stump11289f42009-09-09 15:08:12 +0000504
Fariborz Jahanian431c8832009-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 Jahanian431c8832009-08-19 20:55:16 +0000507 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Anders Carlssond49844b2009-09-23 02:45:36 +0000508 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElements, "isless");
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000509 // If the condition is true, execute the body.
510 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump11289f42009-09-09 15:08:12 +0000511
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000512 EmitBlock(ForBody);
Mike Stump11289f42009-09-09 15:08:12 +0000513
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000514 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000515 // Inside the loop body, emit the constructor call on the array element.
Fariborz Jahaniandd46eb72009-08-20 01:01:06 +0000516 Counter = Builder.CreateLoad(IndexPtr);
Anders Carlssond49844b2009-09-23 02:45:36 +0000517 llvm::Value *Address = Builder.CreateInBoundsGEP(ArrayPtr, Counter,
518 "arrayidx");
Mike Stump11289f42009-09-09 15:08:12 +0000519
Anders Carlsson3a202f62009-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 Jahanian431c8832009-08-19 20:55:16 +0000537 EmitBlock(ContinueBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000538
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000539 // Emit the increment of the loop counter.
Anders Carlssond49844b2009-09-23 02:45:36 +0000540 llvm::Value *NextVal = llvm::ConstantInt::get(SizeTy, 1);
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000541 Counter = Builder.CreateLoad(IndexPtr);
542 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbardacbe6b2009-11-29 21:11:41 +0000543 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +0000544
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000545 // Finally, branch back up to the condition for the next iteration.
546 EmitBranch(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000547
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000548 // Emit the fall-through block.
549 EmitBlock(AfterFor, true);
Fariborz Jahanian431c8832009-08-19 20:55:16 +0000550}
551
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000552/// EmitCXXAggrDestructorCall - calls the default destructor on array
553/// elements in reverse order of construction.
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000554void
Fariborz Jahanian9c837202009-08-20 20:54:15 +0000555CodeGenFunction::EmitCXXAggrDestructorCall(const CXXDestructorDecl *D,
556 const ArrayType *Array,
557 llvm::Value *This) {
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000558 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
559 assert(CA && "Do we support VLA for destruction ?");
Fariborz Jahanian6814eaa2009-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 Stump11289f42009-09-09 15:08:12 +0000572 llvm::Value *One = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000573 1);
Fariborz Jahanian1a606ab2009-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 Dunbardacbe6b2009-11-29 21:11:41 +0000579 Builder.CreateStore(UpperCount, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +0000580
Fariborz Jahanian1a606ab2009-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 Stump11289f42009-09-09 15:08:12 +0000584
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000585 EmitBlock(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000586
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000587 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
Mike Stump11289f42009-09-09 15:08:12 +0000588
Fariborz Jahanian1a606ab2009-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 Stump11289f42009-09-09 15:08:12 +0000591 llvm::Value* zeroConstant =
Fariborz Jahanian1a606ab2009-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 Stump11289f42009-09-09 15:08:12 +0000598
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000599 EmitBlock(ForBody);
Mike Stump11289f42009-09-09 15:08:12 +0000600
Fariborz Jahanian1a606ab2009-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 Jahanianbe641492009-11-30 22:07:18 +0000606 EmitCXXDestructorCall(D, Dtor_Complete, Address);
Mike Stump11289f42009-09-09 15:08:12 +0000607
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000608 EmitBlock(ContinueBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000609
Fariborz Jahanian1a606ab2009-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 Dunbardacbe6b2009-11-29 21:11:41 +0000613 Builder.CreateStore(Counter, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +0000614
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000615 // Finally, branch back up to the condition for the next iteration.
616 EmitBranch(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +0000617
Fariborz Jahanian1a606ab2009-08-20 23:02:58 +0000618 // Emit the fall-through block.
619 EmitBlock(AfterFor, true);
Fariborz Jahanian9c837202009-08-20 20:54:15 +0000620}
621
Mike Stumpea950e22009-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 Jahanian1254a092009-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 Jahanian9c837202009-08-20 20:54:15 +0000666void
Mike Stump11289f42009-09-09 15:08:12 +0000667CodeGenFunction::EmitCXXConstructorCall(const CXXConstructorDecl *D,
668 CXXCtorType Type,
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000669 llvm::Value *This,
670 CallExpr::const_arg_iterator ArgBeg,
671 CallExpr::const_arg_iterator ArgEnd) {
Fariborz Jahanian42af5ba2009-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 Friedman84a7e342009-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 Jahanian42af5ba2009-08-14 20:11:43 +0000687 }
Mike Stump11289f42009-09-09 15:08:12 +0000688
Anders Carlssonbd7d11f2009-05-11 23:37:08 +0000689 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Type);
690
691 EmitCXXMemberCall(D, Callee, This, ArgBeg, ArgEnd);
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000692}
693
Anders Carlssonce460522009-12-04 19:33:17 +0000694void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *DD,
Anders Carlsson0a637412009-05-29 21:03:38 +0000695 CXXDtorType Type,
696 llvm::Value *This) {
Anders Carlssonce460522009-12-04 19:33:17 +0000697 llvm::Value *Callee = CGM.GetAddrOfCXXDestructor(DD, Type);
698
699 CallArgList Args;
Mike Stump11289f42009-09-09 15:08:12 +0000700
Anders Carlssonce460522009-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 Carlsson0a637412009-05-29 21:03:38 +0000717}
718
Mike Stump11289f42009-09-09 15:08:12 +0000719void
720CodeGenFunction::EmitCXXConstructExpr(llvm::Value *Dest,
Anders Carlsson1619a5042009-05-03 17:47:16 +0000721 const CXXConstructExpr *E) {
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000722 assert(Dest && "Must have a destination!");
Fariborz Jahanianda21efb2009-10-16 19:20:59 +0000723 const CXXConstructorDecl *CD = E->getConstructor();
Fariborz Jahanian29baa2b2009-10-28 21:07:28 +0000724 const ConstantArrayType *Array =
725 getContext().getAsConstantArrayType(E->getType());
Fariborz Jahanianda21efb2009-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 Jahanianf1639ff2009-10-28 20:55:41 +0000729 QualType InitType = E->getType();
Fariborz Jahanian29baa2b2009-10-28 21:07:28 +0000730 if (Array)
Fariborz Jahanianf1639ff2009-10-28 20:55:41 +0000731 InitType = getContext().getBaseElementType(Array);
Fariborz Jahanianda21efb2009-10-16 19:20:59 +0000732 const CXXRecordDecl *RD =
Fariborz Jahanianf1639ff2009-10-28 20:55:41 +0000733 cast<CXXRecordDecl>(InitType->getAs<RecordType>()->getDecl());
Fariborz Jahanianda21efb2009-10-16 19:20:59 +0000734 if (RD->hasTrivialConstructor())
Anders Carlssonb7f8f592009-04-17 00:06:03 +0000735 return;
Fariborz Jahanianda21efb2009-10-16 19:20:59 +0000736 }
Mike Stump11289f42009-09-09 15:08:12 +0000737 // Code gen optimization to eliminate copy constructor and return
Fariborz Jahanianeb869762009-08-06 01:02:49 +0000738 // its first argument instead.
Anders Carlsson9cedbef2009-08-22 22:30:33 +0000739 if (getContext().getLangOptions().ElideConstructors && E->isElidable()) {
Anders Carlsson78cfaa92009-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 Jahanian00130932009-08-06 19:12:38 +0000747 return;
Fariborz Jahanianeb869762009-08-06 01:02:49 +0000748 }
Fariborz Jahanian29baa2b2009-10-28 21:07:28 +0000749 if (Array) {
Fariborz Jahanianf1639ff2009-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 Carlsson3a202f62009-11-24 18:43:52 +0000755 EmitCXXAggrConstructorCall(CD, Array, BaseAddrPtr,
756 E->arg_begin(), E->arg_end());
Fariborz Jahanianf1639ff2009-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 Carlssonb7f8f592009-04-17 00:06:03 +0000762}
763
Anders Carlssonf7475242009-04-15 15:55:24 +0000764void CodeGenModule::EmitCXXConstructors(const CXXConstructorDecl *D) {
Anders Carlssondae1abc2009-05-05 04:44:02 +0000765 EmitGlobal(GlobalDecl(D, Ctor_Complete));
766 EmitGlobal(GlobalDecl(D, Ctor_Base));
Anders Carlssonf7475242009-04-15 15:55:24 +0000767}
Anders Carlssone8eeffd2009-04-16 23:57:24 +0000768
Mike Stump11289f42009-09-09 15:08:12 +0000769void CodeGenModule::EmitCXXConstructor(const CXXConstructorDecl *D,
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000770 CXXCtorType Type) {
Mike Stump11289f42009-09-09 15:08:12 +0000771
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000772 llvm::Function *Fn = GetAddrOfCXXConstructor(D, Type);
Mike Stump11289f42009-09-09 15:08:12 +0000773
Anders Carlsson73fcc952009-09-11 00:07:24 +0000774 CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn);
Mike Stump11289f42009-09-09 15:08:12 +0000775
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000776 SetFunctionDefinitionAttributes(D, Fn);
777 SetLLVMFunctionAttributesForDefinition(D, Fn);
778}
779
Anders Carlssone8eeffd2009-04-16 23:57:24 +0000780llvm::Function *
Mike Stump11289f42009-09-09 15:08:12 +0000781CodeGenModule::GetAddrOfCXXConstructor(const CXXConstructorDecl *D,
Anders Carlssone8eeffd2009-04-16 23:57:24 +0000782 CXXCtorType Type) {
Fariborz Jahanianc2d71b52009-11-06 18:47:57 +0000783 const FunctionProtoType *FPT = D->getType()->getAs<FunctionProtoType>();
Anders Carlssone8eeffd2009-04-16 23:57:24 +0000784 const llvm::FunctionType *FTy =
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000785 getTypes().GetFunctionType(getTypes().getFunctionInfo(D, Type),
Fariborz Jahanianc2d71b52009-11-06 18:47:57 +0000786 FPT->isVariadic());
Mike Stump11289f42009-09-09 15:08:12 +0000787
Anders Carlssone8eeffd2009-04-16 23:57:24 +0000788 const char *Name = getMangledCXXCtorName(D, Type);
Chris Lattnere0be0df2009-05-12 21:21:08 +0000789 return cast<llvm::Function>(
790 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlssone8eeffd2009-04-16 23:57:24 +0000791}
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000792
Mike Stump11289f42009-09-09 15:08:12 +0000793const char *CodeGenModule::getMangledCXXCtorName(const CXXConstructorDecl *D,
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000794 CXXCtorType Type) {
795 llvm::SmallString<256> Name;
Daniel Dunbare128dd12009-11-21 09:06:22 +0000796 getMangleContext().mangleCXXCtor(D, Type, Name);
Mike Stump11289f42009-09-09 15:08:12 +0000797
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000798 Name += '\0';
799 return UniqueMangledName(Name.begin(), Name.end());
800}
801
802void CodeGenModule::EmitCXXDestructors(const CXXDestructorDecl *D) {
Eli Friedmanb572c922009-11-14 04:19:37 +0000803 if (D->isVirtual())
Eli Friedman250534c2009-11-27 01:42:12 +0000804 EmitGlobalDefinition(GlobalDecl(D, Dtor_Deleting));
805 EmitGlobalDefinition(GlobalDecl(D, Dtor_Complete));
806 EmitGlobalDefinition(GlobalDecl(D, Dtor_Base));
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000807}
808
Mike Stump11289f42009-09-09 15:08:12 +0000809void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *D,
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000810 CXXDtorType Type) {
811 llvm::Function *Fn = GetAddrOfCXXDestructor(D, Type);
Mike Stump11289f42009-09-09 15:08:12 +0000812
Anders Carlsson73fcc952009-09-11 00:07:24 +0000813 CodeGenFunction(*this).GenerateCode(GlobalDecl(D, Type), Fn);
Mike Stump11289f42009-09-09 15:08:12 +0000814
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000815 SetFunctionDefinitionAttributes(D, Fn);
816 SetLLVMFunctionAttributesForDefinition(D, Fn);
817}
818
819llvm::Function *
Mike Stump11289f42009-09-09 15:08:12 +0000820CodeGenModule::GetAddrOfCXXDestructor(const CXXDestructorDecl *D,
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000821 CXXDtorType Type) {
822 const llvm::FunctionType *FTy =
Anders Carlsson82ba57c2009-11-25 03:15:49 +0000823 getTypes().GetFunctionType(getTypes().getFunctionInfo(D, Type), false);
Mike Stump11289f42009-09-09 15:08:12 +0000824
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000825 const char *Name = getMangledCXXDtorName(D, Type);
Chris Lattnere0be0df2009-05-12 21:21:08 +0000826 return cast<llvm::Function>(
827 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000828}
829
Mike Stump11289f42009-09-09 15:08:12 +0000830const char *CodeGenModule::getMangledCXXDtorName(const CXXDestructorDecl *D,
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000831 CXXDtorType Type) {
832 llvm::SmallString<256> Name;
Daniel Dunbare128dd12009-11-21 09:06:22 +0000833 getMangleContext().mangleCXXDtor(D, Type, Name);
Mike Stump11289f42009-09-09 15:08:12 +0000834
Anders Carlssoneaa28f72009-04-17 01:58:57 +0000835 Name += '\0';
836 return UniqueMangledName(Name.begin(), Name.end());
837}
Fariborz Jahanian83381cc2009-07-20 23:18:55 +0000838
Anders Carlssonc7785402009-11-26 02:32:05 +0000839llvm::Constant *
Eli Friedman551fe842009-12-03 04:27:05 +0000840CodeGenFunction::GenerateThunk(llvm::Function *Fn, GlobalDecl GD,
Anders Carlssonc7785402009-11-26 02:32:05 +0000841 bool Extern,
842 const ThunkAdjustment &ThisAdjustment) {
Mike Stumpe2d4a2c2009-12-03 03:47:56 +0000843 return GenerateCovariantThunk(Fn, GD, Extern,
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000844 CovariantThunkAdjustment(ThisAdjustment,
845 ThunkAdjustment()));
Mike Stump5a522352009-09-04 18:27:16 +0000846}
847
Anders Carlsson2f87c4f2009-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 Stump77738202009-11-03 16:59:27 +0000853 const llvm::Type *OrigTy = V->getType();
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000854 if (Adjustment.NonVirtual) {
Mike Stump77738202009-11-03 16:59:27 +0000855 // Do the non-virtual adjustment
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000856 V = Builder.CreateBitCast(V, Int8PtrTy);
857 V = Builder.CreateConstInBoundsGEP1_64(V, Adjustment.NonVirtual);
Mike Stump77738202009-11-03 16:59:27 +0000858 V = Builder.CreateBitCast(V, OrigTy);
859 }
Anders Carlsson2f87c4f2009-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 Stump77738202009-11-03 16:59:27 +0000882}
883
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000884llvm::Constant *
885CodeGenFunction::GenerateCovariantThunk(llvm::Function *Fn,
Eli Friedman551fe842009-12-03 04:27:05 +0000886 GlobalDecl GD, bool Extern,
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000887 const CovariantThunkAdjustment &Adjustment) {
Mike Stumpe2d4a2c2009-12-03 03:47:56 +0000888 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stump33ccd9e2009-11-02 23:22:01 +0000889 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Mike Stump80f6ac52009-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 Stump33ccd9e2009-11-02 23:22:01 +0000906 SourceLocation(), II, ResultType, 0,
Mike Stump80f6ac52009-09-11 23:25:56 +0000907 Extern
908 ? FunctionDecl::Extern
909 : FunctionDecl::Static,
910 false, true);
Mike Stump33ccd9e2009-11-02 23:22:01 +0000911 StartFunction(FD, ResultType, Fn, Args, SourceLocation());
912
913 // generate body
Mike Stumpf3589722009-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 Friedman551fe842009-12-03 04:27:05 +0000918 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty);
Mike Stumpe2d4a2c2009-12-03 03:47:56 +0000919
Mike Stump33ccd9e2009-11-02 23:22:01 +0000920 CallArgList CallArgs;
921
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000922 bool ShouldAdjustReturnPointer = true;
Mike Stumpf3589722009-11-03 02:12:59 +0000923 QualType ArgType = MD->getThisType(getContext());
924 llvm::Value *Arg = Builder.CreateLoad(LocalDeclMap[ThisDecl], "this");
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000925 if (!Adjustment.ThisAdjustment.isEmpty()) {
Mike Stump77738202009-11-03 16:59:27 +0000926 // Do the this adjustment.
Mike Stump71609a22009-11-04 00:53:51 +0000927 const llvm::Type *OrigTy = Callee->getType();
Anders Carlsson2f87c4f2009-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 Stumpe2d4a2c2009-12-03 03:47:56 +0000935 Callee = CGM.BuildCovariantThunk(GD, Extern, ReturnAdjustment);
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000936
Mike Stump71609a22009-11-04 00:53:51 +0000937 Callee = Builder.CreateBitCast(Callee, OrigTy);
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000938 ShouldAdjustReturnPointer = false;
Mike Stump71609a22009-11-04 00:53:51 +0000939 }
940 }
941
Mike Stumpf3589722009-11-03 02:12:59 +0000942 CallArgs.push_back(std::make_pair(RValue::get(Arg), ArgType));
943
Mike Stump33ccd9e2009-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 Friedman4039f352009-12-03 04:49:52 +0000951 Expr *Arg = new (getContext()) DeclRefExpr(D, ArgType.getNonReferenceType(),
952 SourceLocation());
Mike Stump33ccd9e2009-11-02 23:22:01 +0000953 CallArgs.push_back(std::make_pair(EmitCallArg(Arg, ArgType), ArgType));
954 }
955
Mike Stump31e1d432009-11-02 23:47:45 +0000956 RValue RV = EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
957 Callee, CallArgs, MD);
Anders Carlsson2f87c4f2009-11-26 03:09:37 +0000958 if (ShouldAdjustReturnPointer && !Adjustment.ReturnAdjustment.isEmpty()) {
Mike Stumpc5507682009-11-05 06:32:02 +0000959 bool CanBeZero = !(ResultType->isReferenceType()
960 // FIXME: attr nonnull can't be zero either
961 /* || ResultType->hasAttr<NonNullAttr>() */ );
Mike Stump77738202009-11-03 16:59:27 +0000962 // Do the return result adjustment.
Mike Stumpc5507682009-11-05 06:32:02 +0000963 if (CanBeZero) {
964 llvm::BasicBlock *NonZeroBlock = createBasicBlock();
965 llvm::BasicBlock *ZeroBlock = createBasicBlock();
966 llvm::BasicBlock *ContBlock = createBasicBlock();
Mike Stumpb8da7a02009-11-05 06:12:26 +0000967
Mike Stumpc5507682009-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 Carlsson2f87c4f2009-11-26 03:09:37 +0000973 llvm::Value *NZ =
974 DynamicTypeAdjust(RV.getScalarVal(), Adjustment.ReturnAdjustment);
Mike Stumpc5507682009-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 Carlsson2f87c4f2009-11-26 03:09:37 +0000985 RV = RValue::get(DynamicTypeAdjust(RV.getScalarVal(),
986 Adjustment.ReturnAdjustment));
Mike Stump33ccd9e2009-11-02 23:22:01 +0000987 }
988
Mike Stump31e1d432009-11-02 23:47:45 +0000989 if (!ResultType->isVoidType())
990 EmitReturnOfRValue(RV, ResultType);
991
Mike Stump80f6ac52009-09-11 23:25:56 +0000992 FinishFunction();
993 return Fn;
994}
995
Anders Carlssonc7785402009-11-26 02:32:05 +0000996llvm::Constant *
Eli Friedman551fe842009-12-03 04:27:05 +0000997CodeGenModule::BuildThunk(GlobalDecl GD, bool Extern,
Anders Carlssonc7785402009-11-26 02:32:05 +0000998 const ThunkAdjustment &ThisAdjustment) {
Mike Stumpe2d4a2c2009-12-03 03:47:56 +0000999 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stump5a522352009-09-04 18:27:16 +00001000 llvm::SmallString<256> OutName;
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001001 if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(MD)) {
1002 getMangleContext().mangleCXXDtorThunk(D, GD.getDtorType(), ThisAdjustment,
1003 OutName);
1004 } else
1005 getMangleContext().mangleThunk(MD, ThisAdjustment, OutName);
Anders Carlssonc7785402009-11-26 02:32:05 +00001006
Mike Stump5a522352009-09-04 18:27:16 +00001007 llvm::GlobalVariable::LinkageTypes linktype;
1008 linktype = llvm::GlobalValue::WeakAnyLinkage;
1009 if (!Extern)
1010 linktype = llvm::GlobalValue::InternalLinkage;
1011 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
John McCall9dd450b2009-09-21 23:43:11 +00001012 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump5a522352009-09-04 18:27:16 +00001013 const llvm::FunctionType *FTy =
1014 getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
1015 FPT->isVariadic());
1016
Daniel Dunbare128dd12009-11-21 09:06:22 +00001017 llvm::Function *Fn = llvm::Function::Create(FTy, linktype, OutName.str(),
Mike Stump5a522352009-09-04 18:27:16 +00001018 &getModule());
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001019 CodeGenFunction(*this).GenerateThunk(Fn, GD, Extern, ThisAdjustment);
Mike Stump5a522352009-09-04 18:27:16 +00001020 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
1021 return m;
1022}
1023
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001024llvm::Constant *
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001025CodeGenModule::BuildCovariantThunk(const GlobalDecl &GD, bool Extern,
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001026 const CovariantThunkAdjustment &Adjustment) {
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001027 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stump80f6ac52009-09-11 23:25:56 +00001028 llvm::SmallString<256> OutName;
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001029 getMangleContext().mangleCovariantThunk(MD, Adjustment, OutName);
Mike Stump80f6ac52009-09-11 23:25:56 +00001030 llvm::GlobalVariable::LinkageTypes linktype;
1031 linktype = llvm::GlobalValue::WeakAnyLinkage;
1032 if (!Extern)
1033 linktype = llvm::GlobalValue::InternalLinkage;
1034 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
John McCall9dd450b2009-09-21 23:43:11 +00001035 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump80f6ac52009-09-11 23:25:56 +00001036 const llvm::FunctionType *FTy =
1037 getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
1038 FPT->isVariadic());
1039
Daniel Dunbare128dd12009-11-21 09:06:22 +00001040 llvm::Function *Fn = llvm::Function::Create(FTy, linktype, OutName.str(),
Mike Stump80f6ac52009-09-11 23:25:56 +00001041 &getModule());
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001042 CodeGenFunction(*this).GenerateCovariantThunk(Fn, MD, Extern, Adjustment);
Mike Stump80f6ac52009-09-11 23:25:56 +00001043 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
1044 return m;
1045}
1046
Mike Stumpa5588bf2009-08-26 20:46:33 +00001047llvm::Value *
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001048CodeGenFunction::GetVirtualCXXBaseClassOffset(llvm::Value *This,
1049 const CXXRecordDecl *ClassDecl,
1050 const CXXRecordDecl *BaseClassDecl) {
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001051 const llvm::Type *Int8PtrTy =
1052 llvm::Type::getInt8Ty(VMContext)->getPointerTo();
1053
1054 llvm::Value *VTablePtr = Builder.CreateBitCast(This,
1055 Int8PtrTy->getPointerTo());
1056 VTablePtr = Builder.CreateLoad(VTablePtr, "vtable");
1057
Anders Carlsson2bb27f52009-10-11 22:13:54 +00001058 int64_t VBaseOffsetIndex =
1059 CGM.getVtableInfo().getVirtualBaseOffsetIndex(ClassDecl, BaseClassDecl);
1060
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001061 llvm::Value *VBaseOffsetPtr =
Mike Stumpb9c9b352009-11-04 01:11:15 +00001062 Builder.CreateConstGEP1_64(VTablePtr, VBaseOffsetIndex, "vbase.offset.ptr");
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001063 const llvm::Type *PtrDiffTy =
1064 ConvertType(getContext().getPointerDiffType());
1065
1066 VBaseOffsetPtr = Builder.CreateBitCast(VBaseOffsetPtr,
1067 PtrDiffTy->getPointerTo());
1068
1069 llvm::Value *VBaseOffset = Builder.CreateLoad(VBaseOffsetPtr, "vbase.offset");
1070
1071 return VBaseOffset;
1072}
1073
Anders Carlssonf942ee02009-11-27 20:47:55 +00001074static llvm::Value *BuildVirtualCall(CodeGenFunction &CGF, uint64_t VtableIndex,
Anders Carlssone828c362009-11-13 04:45:41 +00001075 llvm::Value *This, const llvm::Type *Ty) {
1076 Ty = Ty->getPointerTo()->getPointerTo()->getPointerTo();
Anders Carlsson32bfb1c2009-10-03 14:56:57 +00001077
Anders Carlssone828c362009-11-13 04:45:41 +00001078 llvm::Value *Vtable = CGF.Builder.CreateBitCast(This, Ty);
1079 Vtable = CGF.Builder.CreateLoad(Vtable);
1080
1081 llvm::Value *VFuncPtr =
1082 CGF.Builder.CreateConstInBoundsGEP1_64(Vtable, VtableIndex, "vfn");
1083 return CGF.Builder.CreateLoad(VFuncPtr);
1084}
1085
1086llvm::Value *
1087CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This,
1088 const llvm::Type *Ty) {
1089 MD = MD->getCanonicalDecl();
Anders Carlssonf942ee02009-11-27 20:47:55 +00001090 uint64_t VtableIndex = CGM.getVtableInfo().getMethodVtableIndex(MD);
Anders Carlssone828c362009-11-13 04:45:41 +00001091
1092 return ::BuildVirtualCall(*this, VtableIndex, This, Ty);
1093}
1094
1095llvm::Value *
1096CodeGenFunction::BuildVirtualCall(const CXXDestructorDecl *DD, CXXDtorType Type,
1097 llvm::Value *&This, const llvm::Type *Ty) {
1098 DD = cast<CXXDestructorDecl>(DD->getCanonicalDecl());
Anders Carlssonf942ee02009-11-27 20:47:55 +00001099 uint64_t VtableIndex =
Anders Carlssonfb4dda42009-11-13 17:08:56 +00001100 CGM.getVtableInfo().getMethodVtableIndex(GlobalDecl(DD, Type));
Anders Carlssone828c362009-11-13 04:45:41 +00001101
1102 return ::BuildVirtualCall(*this, VtableIndex, This, Ty);
Mike Stumpa5588bf2009-08-26 20:46:33 +00001103}
1104
Fariborz Jahanian56263842009-08-21 18:30:26 +00001105/// EmitClassAggrMemberwiseCopy - This routine generates code to copy a class
1106/// array of objects from SrcValue to DestValue. Copying can be either a bitwise
1107/// copy or via a copy constructor call.
Fariborz Jahanian2c73b1d2009-08-26 00:23:27 +00001108// FIXME. Consolidate this with EmitCXXAggrConstructorCall.
Mike Stump11289f42009-09-09 15:08:12 +00001109void CodeGenFunction::EmitClassAggrMemberwiseCopy(llvm::Value *Dest,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001110 llvm::Value *Src,
1111 const ArrayType *Array,
Mike Stump11289f42009-09-09 15:08:12 +00001112 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001113 QualType Ty) {
1114 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
1115 assert(CA && "VLA cannot be copied over");
1116 bool BitwiseCopy = BaseClassDecl->hasTrivialCopyConstructor();
Mike Stump11289f42009-09-09 15:08:12 +00001117
Fariborz Jahanian56263842009-08-21 18:30:26 +00001118 // Create a temporary for the loop index and initialize it with 0.
1119 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
1120 "loop.index");
Mike Stump11289f42009-09-09 15:08:12 +00001121 llvm::Value* zeroConstant =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001122 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001123 Builder.CreateStore(zeroConstant, IndexPtr);
Fariborz Jahanian56263842009-08-21 18:30:26 +00001124 // Start the loop with a block that tests the condition.
1125 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
1126 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump11289f42009-09-09 15:08:12 +00001127
Fariborz Jahanian56263842009-08-21 18:30:26 +00001128 EmitBlock(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001129
Fariborz Jahanian56263842009-08-21 18:30:26 +00001130 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
1131 // Generate: if (loop-index < number-of-elements fall to the loop body,
1132 // otherwise, go to the block after the for-loop.
1133 uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
Mike Stump11289f42009-09-09 15:08:12 +00001134 llvm::Value * NumElementsPtr =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001135 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
1136 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001137 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001138 "isless");
1139 // If the condition is true, execute the body.
1140 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump11289f42009-09-09 15:08:12 +00001141
Fariborz Jahanian56263842009-08-21 18:30:26 +00001142 EmitBlock(ForBody);
1143 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
1144 // Inside the loop body, emit the constructor call on the array element.
1145 Counter = Builder.CreateLoad(IndexPtr);
1146 Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
1147 Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
1148 if (BitwiseCopy)
1149 EmitAggregateCopy(Dest, Src, Ty);
Mike Stump11289f42009-09-09 15:08:12 +00001150 else if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001151 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Mike Stump11289f42009-09-09 15:08:12 +00001152 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001153 Ctor_Complete);
1154 CallArgList CallArgs;
1155 // Push the this (Dest) ptr.
1156 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1157 BaseCopyCtor->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001158
Fariborz Jahanian56263842009-08-21 18:30:26 +00001159 // Push the Src ptr.
1160 CallArgs.push_back(std::make_pair(RValue::get(Src),
Mike Stumpb9c9b352009-11-04 01:11:15 +00001161 BaseCopyCtor->getParamDecl(0)->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001162 QualType ResultType =
John McCall9dd450b2009-09-21 23:43:11 +00001163 BaseCopyCtor->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanian56263842009-08-21 18:30:26 +00001164 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1165 Callee, CallArgs, BaseCopyCtor);
1166 }
1167 EmitBlock(ContinueBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001168
Fariborz Jahanian56263842009-08-21 18:30:26 +00001169 // Emit the increment of the loop counter.
1170 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
1171 Counter = Builder.CreateLoad(IndexPtr);
1172 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001173 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001174
Fariborz Jahanian56263842009-08-21 18:30:26 +00001175 // Finally, branch back up to the condition for the next iteration.
1176 EmitBranch(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001177
Fariborz Jahanian56263842009-08-21 18:30:26 +00001178 // Emit the fall-through block.
1179 EmitBlock(AfterFor, true);
1180}
1181
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001182/// EmitClassAggrCopyAssignment - This routine generates code to assign a class
Mike Stump11289f42009-09-09 15:08:12 +00001183/// array of objects from SrcValue to DestValue. Assignment can be either a
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001184/// bitwise assignment or via a copy assignment operator function call.
1185/// FIXME. This can be consolidated with EmitClassAggrMemberwiseCopy
Mike Stump11289f42009-09-09 15:08:12 +00001186void CodeGenFunction::EmitClassAggrCopyAssignment(llvm::Value *Dest,
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001187 llvm::Value *Src,
1188 const ArrayType *Array,
Mike Stump11289f42009-09-09 15:08:12 +00001189 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001190 QualType Ty) {
1191 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
1192 assert(CA && "VLA cannot be asssigned");
1193 bool BitwiseAssign = BaseClassDecl->hasTrivialCopyAssignment();
Mike Stump11289f42009-09-09 15:08:12 +00001194
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001195 // Create a temporary for the loop index and initialize it with 0.
1196 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
1197 "loop.index");
Mike Stump11289f42009-09-09 15:08:12 +00001198 llvm::Value* zeroConstant =
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001199 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001200 Builder.CreateStore(zeroConstant, IndexPtr);
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001201 // Start the loop with a block that tests the condition.
1202 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
1203 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump11289f42009-09-09 15:08:12 +00001204
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001205 EmitBlock(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001206
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001207 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
1208 // Generate: if (loop-index < number-of-elements fall to the loop body,
1209 // otherwise, go to the block after the for-loop.
1210 uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
Mike Stump11289f42009-09-09 15:08:12 +00001211 llvm::Value * NumElementsPtr =
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001212 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
1213 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001214 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001215 "isless");
1216 // If the condition is true, execute the body.
1217 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump11289f42009-09-09 15:08:12 +00001218
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001219 EmitBlock(ForBody);
1220 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
1221 // Inside the loop body, emit the assignment operator call on array element.
1222 Counter = Builder.CreateLoad(IndexPtr);
1223 Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
1224 Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
1225 const CXXMethodDecl *MD = 0;
1226 if (BitwiseAssign)
1227 EmitAggregateCopy(Dest, Src, Ty);
1228 else {
1229 bool hasCopyAssign = BaseClassDecl->hasConstCopyAssignment(getContext(),
1230 MD);
1231 assert(hasCopyAssign && "EmitClassAggrCopyAssignment - No user assign");
1232 (void)hasCopyAssign;
John McCall9dd450b2009-09-21 23:43:11 +00001233 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001234 const llvm::Type *LTy =
1235 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
1236 FPT->isVariadic());
Anders Carlssonecf9bf02009-09-10 23:43:36 +00001237 llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
Mike Stump11289f42009-09-09 15:08:12 +00001238
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001239 CallArgList CallArgs;
1240 // Push the this (Dest) ptr.
1241 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1242 MD->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001243
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001244 // Push the Src ptr.
1245 CallArgs.push_back(std::make_pair(RValue::get(Src),
1246 MD->getParamDecl(0)->getType()));
John McCall9dd450b2009-09-21 23:43:11 +00001247 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001248 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1249 Callee, CallArgs, MD);
1250 }
1251 EmitBlock(ContinueBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001252
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001253 // Emit the increment of the loop counter.
1254 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
1255 Counter = Builder.CreateLoad(IndexPtr);
1256 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001257 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001258
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001259 // Finally, branch back up to the condition for the next iteration.
1260 EmitBranch(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001261
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001262 // Emit the fall-through block.
1263 EmitBlock(AfterFor, true);
1264}
1265
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001266/// EmitClassMemberwiseCopy - This routine generates code to copy a class
1267/// object from SrcValue to DestValue. Copying can be either a bitwise copy
Fariborz Jahanian56263842009-08-21 18:30:26 +00001268/// or via a copy constructor call.
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001269void CodeGenFunction::EmitClassMemberwiseCopy(
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001270 llvm::Value *Dest, llvm::Value *Src,
Mike Stump11289f42009-09-09 15:08:12 +00001271 const CXXRecordDecl *ClassDecl,
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001272 const CXXRecordDecl *BaseClassDecl, QualType Ty) {
1273 if (ClassDecl) {
Anders Carlsson8c793172009-11-23 17:57:54 +00001274 Dest = GetAddressOfBaseClass(Dest, ClassDecl, BaseClassDecl,
1275 /*NullCheckValue=*/false);
1276 Src = GetAddressOfBaseClass(Src, ClassDecl, BaseClassDecl,
1277 /*NullCheckValue=*/false);
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001278 }
1279 if (BaseClassDecl->hasTrivialCopyConstructor()) {
1280 EmitAggregateCopy(Dest, Src, Ty);
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001281 return;
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001282 }
Mike Stump11289f42009-09-09 15:08:12 +00001283
1284 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian7c3d7f62009-08-08 00:59:58 +00001285 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Mike Stump11289f42009-09-09 15:08:12 +00001286 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001287 Ctor_Complete);
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001288 CallArgList CallArgs;
1289 // Push the this (Dest) ptr.
1290 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1291 BaseCopyCtor->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001292
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001293 // Push the Src ptr.
1294 CallArgs.push_back(std::make_pair(RValue::get(Src),
Fariborz Jahanian2a26e352009-08-10 17:20:45 +00001295 BaseCopyCtor->getParamDecl(0)->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001296 QualType ResultType =
John McCall9dd450b2009-09-21 23:43:11 +00001297 BaseCopyCtor->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001298 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1299 Callee, CallArgs, BaseCopyCtor);
1300 }
1301}
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001302
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001303/// EmitClassCopyAssignment - This routine generates code to copy assign a class
Mike Stump11289f42009-09-09 15:08:12 +00001304/// object from SrcValue to DestValue. Assignment can be either a bitwise
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001305/// assignment of via an assignment operator call.
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001306// FIXME. Consolidate this with EmitClassMemberwiseCopy as they share a lot.
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001307void CodeGenFunction::EmitClassCopyAssignment(
1308 llvm::Value *Dest, llvm::Value *Src,
Mike Stump11289f42009-09-09 15:08:12 +00001309 const CXXRecordDecl *ClassDecl,
1310 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001311 QualType Ty) {
1312 if (ClassDecl) {
Anders Carlsson8c793172009-11-23 17:57:54 +00001313 Dest = GetAddressOfBaseClass(Dest, ClassDecl, BaseClassDecl,
1314 /*NullCheckValue=*/false);
1315 Src = GetAddressOfBaseClass(Src, ClassDecl, BaseClassDecl,
1316 /*NullCheckValue=*/false);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001317 }
1318 if (BaseClassDecl->hasTrivialCopyAssignment()) {
1319 EmitAggregateCopy(Dest, Src, Ty);
1320 return;
1321 }
Mike Stump11289f42009-09-09 15:08:12 +00001322
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001323 const CXXMethodDecl *MD = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001324 bool ConstCopyAssignOp = BaseClassDecl->hasConstCopyAssignment(getContext(),
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001325 MD);
1326 assert(ConstCopyAssignOp && "EmitClassCopyAssignment - missing copy assign");
1327 (void)ConstCopyAssignOp;
1328
John McCall9dd450b2009-09-21 23:43:11 +00001329 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump11289f42009-09-09 15:08:12 +00001330 const llvm::Type *LTy =
1331 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001332 FPT->isVariadic());
Anders Carlssonecf9bf02009-09-10 23:43:36 +00001333 llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
Mike Stump11289f42009-09-09 15:08:12 +00001334
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001335 CallArgList CallArgs;
1336 // Push the this (Dest) ptr.
1337 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1338 MD->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001339
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001340 // Push the Src ptr.
1341 CallArgs.push_back(std::make_pair(RValue::get(Src),
1342 MD->getParamDecl(0)->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001343 QualType ResultType =
John McCall9dd450b2009-09-21 23:43:11 +00001344 MD->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001345 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1346 Callee, CallArgs, MD);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001347}
1348
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001349/// SynthesizeDefaultConstructor - synthesize a default constructor
Mike Stump11289f42009-09-09 15:08:12 +00001350void
Anders Carlssonddf57d32009-09-14 05:32:02 +00001351CodeGenFunction::SynthesizeDefaultConstructor(const CXXConstructorDecl *Ctor,
1352 CXXCtorType Type,
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001353 llvm::Function *Fn,
1354 const FunctionArgList &Args) {
Eli Friedman84a7e342009-11-26 07:40:08 +00001355 assert(!Ctor->isTrivial() && "shouldn't need to generate trivial ctor");
Anders Carlssonddf57d32009-09-14 05:32:02 +00001356 StartFunction(GlobalDecl(Ctor, Type), Ctor->getResultType(), Fn, Args,
1357 SourceLocation());
1358 EmitCtorPrologue(Ctor, Type);
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001359 FinishFunction();
1360}
1361
Mike Stumpb9c9b352009-11-04 01:11:15 +00001362/// SynthesizeCXXCopyConstructor - This routine implicitly defines body of a
1363/// copy constructor, in accordance with section 12.8 (p7 and p8) of C++03
Mike Stump11289f42009-09-09 15:08:12 +00001364/// The implicitly-defined copy constructor for class X performs a memberwise
Mike Stumpb9c9b352009-11-04 01:11:15 +00001365/// copy of its subobjects. The order of copying is the same as the order of
1366/// initialization of bases and members in a user-defined constructor
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001367/// Each subobject is copied in the manner appropriate to its type:
Mike Stump11289f42009-09-09 15:08:12 +00001368/// if the subobject is of class type, the copy constructor for the class is
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001369/// used;
Mike Stump11289f42009-09-09 15:08:12 +00001370/// if the subobject is an array, each element is copied, in the manner
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001371/// appropriate to the element type;
Mike Stump11289f42009-09-09 15:08:12 +00001372/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001373/// used.
Mike Stump11289f42009-09-09 15:08:12 +00001374/// Virtual base class subobjects shall be copied only once by the
1375/// implicitly-defined copy constructor
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001376
Anders Carlssonddf57d32009-09-14 05:32:02 +00001377void
1378CodeGenFunction::SynthesizeCXXCopyConstructor(const CXXConstructorDecl *Ctor,
1379 CXXCtorType Type,
1380 llvm::Function *Fn,
1381 const FunctionArgList &Args) {
Anders Carlsson73fcc952009-09-11 00:07:24 +00001382 const CXXRecordDecl *ClassDecl = Ctor->getParent();
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001383 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
Mike Stumpb9c9b352009-11-04 01:11:15 +00001384 "SynthesizeCXXCopyConstructor - copy constructor has definition already");
Eli Friedman84a7e342009-11-26 07:40:08 +00001385 assert(!Ctor->isTrivial() && "shouldn't need to generate trivial ctor");
Anders Carlssonddf57d32009-09-14 05:32:02 +00001386 StartFunction(GlobalDecl(Ctor, Type), Ctor->getResultType(), Fn, Args,
1387 SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001388
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001389 FunctionArgList::const_iterator i = Args.begin();
1390 const VarDecl *ThisArg = i->first;
1391 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1392 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1393 const VarDecl *SrcArg = (i+1)->first;
1394 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1395 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
Mike Stump11289f42009-09-09 15:08:12 +00001396
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001397 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1398 Base != ClassDecl->bases_end(); ++Base) {
1399 // FIXME. copy constrution of virtual base NYI
1400 if (Base->isVirtual())
1401 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001402
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001403 CXXRecordDecl *BaseClassDecl
1404 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001405 EmitClassMemberwiseCopy(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1406 Base->getType());
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001407 }
Mike Stump11289f42009-09-09 15:08:12 +00001408
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001409 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1410 E = ClassDecl->field_end(); I != E; ++I) {
1411 const FieldDecl *Field = *I;
1412
1413 QualType FieldType = getContext().getCanonicalType(Field->getType());
Mike Stump11289f42009-09-09 15:08:12 +00001414 const ConstantArrayType *Array =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001415 getContext().getAsConstantArrayType(FieldType);
1416 if (Array)
1417 FieldType = getContext().getBaseElementType(FieldType);
Mike Stump11289f42009-09-09 15:08:12 +00001418
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001419 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1420 CXXRecordDecl *FieldClassDecl
1421 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001422 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
1423 LValue RHS = EmitLValueForField(LoadOfSrc, Field, false, 0);
Fariborz Jahanian56263842009-08-21 18:30:26 +00001424 if (Array) {
1425 const llvm::Type *BasePtr = ConvertType(FieldType);
1426 BasePtr = llvm::PointerType::getUnqual(BasePtr);
Mike Stump11289f42009-09-09 15:08:12 +00001427 llvm::Value *DestBaseAddrPtr =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001428 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
Mike Stump11289f42009-09-09 15:08:12 +00001429 llvm::Value *SrcBaseAddrPtr =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001430 Builder.CreateBitCast(RHS.getAddress(), BasePtr);
1431 EmitClassAggrMemberwiseCopy(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
1432 FieldClassDecl, FieldType);
1433 }
Mike Stump11289f42009-09-09 15:08:12 +00001434 else
1435 EmitClassMemberwiseCopy(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahanian56263842009-08-21 18:30:26 +00001436 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001437 continue;
1438 }
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001439
1440 if (Field->getType()->isReferenceType()) {
1441 unsigned FieldIndex = CGM.getTypes().getLLVMFieldNo(Field);
1442
1443 llvm::Value *LHS = Builder.CreateStructGEP(LoadOfThis, FieldIndex,
1444 "lhs.ref");
1445
1446 llvm::Value *RHS = Builder.CreateStructGEP(LoadOfThis, FieldIndex,
1447 "rhs.ref");
1448
1449 // Load the value in RHS.
1450 RHS = Builder.CreateLoad(RHS);
1451
1452 // And store it in the LHS
1453 Builder.CreateStore(RHS, LHS);
1454
1455 continue;
1456 }
Fariborz Jahanian7cc52cf2009-08-10 18:34:26 +00001457 // Do a built-in assignment of scalar data members.
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001458 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
1459 LValue RHS = EmitLValueForField(LoadOfSrc, Field, false, 0);
1460
Eli Friedmanc2ef2152009-11-16 21:47:41 +00001461 if (!hasAggregateLLVMType(Field->getType())) {
1462 RValue RVRHS = EmitLoadOfLValue(RHS, Field->getType());
1463 EmitStoreThroughLValue(RVRHS, LHS, Field->getType());
1464 } else if (Field->getType()->isAnyComplexType()) {
1465 ComplexPairTy Pair = LoadComplexFromAddr(RHS.getAddress(),
1466 RHS.isVolatileQualified());
1467 StoreComplexToAddr(Pair, LHS.getAddress(), LHS.isVolatileQualified());
1468 } else {
1469 EmitAggregateCopy(LHS.getAddress(), RHS.getAddress(), Field->getType());
1470 }
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001471 }
Fariborz Jahanianf6bda5d2009-08-08 19:31:03 +00001472 FinishFunction();
Mike Stump11289f42009-09-09 15:08:12 +00001473}
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001474
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001475/// SynthesizeCXXCopyAssignment - Implicitly define copy assignment operator.
Mike Stump11289f42009-09-09 15:08:12 +00001476/// Before the implicitly-declared copy assignment operator for a class is
1477/// implicitly defined, all implicitly- declared copy assignment operators for
1478/// its direct base classes and its nonstatic data members shall have been
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001479/// implicitly defined. [12.8-p12]
Mike Stump11289f42009-09-09 15:08:12 +00001480/// The implicitly-defined copy assignment operator for class X performs
1481/// memberwise assignment of its subob- jects. The direct base classes of X are
1482/// assigned first, in the order of their declaration in
1483/// the base-specifier-list, and then the immediate nonstatic data members of X
1484/// are assigned, in the order in which they were declared in the class
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001485/// definition.Each subobject is assigned in the manner appropriate to its type:
Mike Stump11289f42009-09-09 15:08:12 +00001486/// if the subobject is of class type, the copy assignment operator for the
1487/// class is used (as if by explicit qualification; that is, ignoring any
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001488/// possible virtual overriding functions in more derived classes);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001489///
Mike Stump11289f42009-09-09 15:08:12 +00001490/// if the subobject is an array, each element is assigned, in the manner
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001491/// appropriate to the element type;
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001492///
Mike Stump11289f42009-09-09 15:08:12 +00001493/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001494/// used.
1495void CodeGenFunction::SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001496 llvm::Function *Fn,
1497 const FunctionArgList &Args) {
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001498
1499 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
1500 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
1501 "SynthesizeCXXCopyAssignment - copy assignment has user declaration");
Anders Carlssonddf57d32009-09-14 05:32:02 +00001502 StartFunction(CD, CD->getResultType(), Fn, Args, SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001503
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001504 FunctionArgList::const_iterator i = Args.begin();
1505 const VarDecl *ThisArg = i->first;
1506 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1507 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1508 const VarDecl *SrcArg = (i+1)->first;
1509 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1510 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
Mike Stump11289f42009-09-09 15:08:12 +00001511
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001512 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1513 Base != ClassDecl->bases_end(); ++Base) {
1514 // FIXME. copy assignment of virtual base NYI
1515 if (Base->isVirtual())
1516 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001517
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001518 CXXRecordDecl *BaseClassDecl
1519 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1520 EmitClassCopyAssignment(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1521 Base->getType());
1522 }
Mike Stump11289f42009-09-09 15:08:12 +00001523
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001524 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1525 FieldEnd = ClassDecl->field_end();
1526 Field != FieldEnd; ++Field) {
1527 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
Mike Stump11289f42009-09-09 15:08:12 +00001528 const ConstantArrayType *Array =
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001529 getContext().getAsConstantArrayType(FieldType);
1530 if (Array)
1531 FieldType = getContext().getBaseElementType(FieldType);
Mike Stump11289f42009-09-09 15:08:12 +00001532
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001533 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1534 CXXRecordDecl *FieldClassDecl
1535 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1536 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1537 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001538 if (Array) {
1539 const llvm::Type *BasePtr = ConvertType(FieldType);
1540 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1541 llvm::Value *DestBaseAddrPtr =
1542 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1543 llvm::Value *SrcBaseAddrPtr =
1544 Builder.CreateBitCast(RHS.getAddress(), BasePtr);
1545 EmitClassAggrCopyAssignment(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
1546 FieldClassDecl, FieldType);
1547 }
1548 else
Mike Stump11289f42009-09-09 15:08:12 +00001549 EmitClassCopyAssignment(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001550 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001551 continue;
1552 }
1553 // Do a built-in assignment of scalar data members.
1554 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1555 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1556 RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
1557 EmitStoreThroughLValue(RVRHS, LHS, FieldType);
Fariborz Jahanian92b3f472009-08-14 00:01:54 +00001558 }
Mike Stump11289f42009-09-09 15:08:12 +00001559
Fariborz Jahanian92b3f472009-08-14 00:01:54 +00001560 // return *this;
1561 Builder.CreateStore(LoadOfThis, ReturnValue);
Mike Stump11289f42009-09-09 15:08:12 +00001562
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001563 FinishFunction();
Mike Stump11289f42009-09-09 15:08:12 +00001564}
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001565
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001566static void EmitBaseInitializer(CodeGenFunction &CGF,
1567 const CXXRecordDecl *ClassDecl,
1568 CXXBaseOrMemberInitializer *BaseInit,
1569 CXXCtorType CtorType) {
1570 assert(BaseInit->isBaseInitializer() &&
1571 "Must have base initializer!");
1572
1573 llvm::Value *ThisPtr = CGF.LoadCXXThis();
1574
1575 const Type *BaseType = BaseInit->getBaseClass();
1576 CXXRecordDecl *BaseClassDecl =
1577 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlsson8c793172009-11-23 17:57:54 +00001578 llvm::Value *V = CGF.GetAddressOfBaseClass(ThisPtr, ClassDecl,
1579 BaseClassDecl,
1580 /*NullCheckValue=*/false);
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001581 CGF.EmitCXXConstructorCall(BaseInit->getConstructor(),
1582 CtorType, V,
1583 BaseInit->const_arg_begin(),
1584 BaseInit->const_arg_end());
1585}
1586
1587static void EmitMemberInitializer(CodeGenFunction &CGF,
1588 const CXXRecordDecl *ClassDecl,
1589 CXXBaseOrMemberInitializer *MemberInit) {
1590 assert(MemberInit->isMemberInitializer() &&
1591 "Must have member initializer!");
1592
1593 // non-static data member initializers.
1594 FieldDecl *Field = MemberInit->getMember();
Eli Friedman5e7d9692009-11-16 23:34:11 +00001595 QualType FieldType = CGF.getContext().getCanonicalType(Field->getType());
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001596
1597 llvm::Value *ThisPtr = CGF.LoadCXXThis();
1598 LValue LHS;
1599 if (FieldType->isReferenceType()) {
1600 // FIXME: This is really ugly; should be refactored somehow
1601 unsigned idx = CGF.CGM.getTypes().getLLVMFieldNo(Field);
1602 llvm::Value *V = CGF.Builder.CreateStructGEP(ThisPtr, idx, "tmp");
1603 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
1604 LHS = LValue::MakeAddr(V, CGF.MakeQualifiers(FieldType));
1605 } else {
Eli Friedmanc1daba32009-11-16 22:58:01 +00001606 LHS = CGF.EmitLValueForField(ThisPtr, Field, ClassDecl->isUnion(), 0);
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001607 }
Eli Friedman5e7d9692009-11-16 23:34:11 +00001608
1609 // If we are initializing an anonymous union field, drill down to the field.
1610 if (MemberInit->getAnonUnionMember()) {
1611 Field = MemberInit->getAnonUnionMember();
1612 LHS = CGF.EmitLValueForField(LHS.getAddress(), Field,
1613 /*IsUnion=*/true, 0);
1614 FieldType = Field->getType();
1615 }
1616
1617 // If the field is an array, branch based on the element type.
1618 const ConstantArrayType *Array =
1619 CGF.getContext().getAsConstantArrayType(FieldType);
1620 if (Array)
1621 FieldType = CGF.getContext().getBaseElementType(FieldType);
1622
Eli Friedmane85ef712009-11-16 23:53:01 +00001623 // We lose the constructor for anonymous union members, so handle them
1624 // explicitly.
1625 // FIXME: This is somwhat ugly.
1626 if (MemberInit->getAnonUnionMember() && FieldType->getAs<RecordType>()) {
1627 if (MemberInit->getNumArgs())
1628 CGF.EmitAggExpr(*MemberInit->arg_begin(), LHS.getAddress(),
1629 LHS.isVolatileQualified());
1630 else
1631 CGF.EmitAggregateClear(LHS.getAddress(), Field->getType());
1632 return;
1633 }
1634
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001635 if (FieldType->getAs<RecordType>()) {
Eli Friedman5e7d9692009-11-16 23:34:11 +00001636 assert(MemberInit->getConstructor() &&
1637 "EmitCtorPrologue - no constructor to initialize member");
1638 if (Array) {
1639 const llvm::Type *BasePtr = CGF.ConvertType(FieldType);
1640 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1641 llvm::Value *BaseAddrPtr =
1642 CGF.Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1643 CGF.EmitCXXAggrConstructorCall(MemberInit->getConstructor(),
Anders Carlsson3a202f62009-11-24 18:43:52 +00001644 Array, BaseAddrPtr,
1645 MemberInit->const_arg_begin(),
1646 MemberInit->const_arg_end());
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001647 }
Eli Friedman5e7d9692009-11-16 23:34:11 +00001648 else
1649 CGF.EmitCXXConstructorCall(MemberInit->getConstructor(),
1650 Ctor_Complete, LHS.getAddress(),
1651 MemberInit->const_arg_begin(),
1652 MemberInit->const_arg_end());
1653 return;
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001654 }
1655
1656 assert(MemberInit->getNumArgs() == 1 && "Initializer count must be 1 only");
1657 Expr *RhsExpr = *MemberInit->arg_begin();
1658 RValue RHS;
Eli Friedmane85ef712009-11-16 23:53:01 +00001659 if (FieldType->isReferenceType()) {
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001660 RHS = CGF.EmitReferenceBindingToExpr(RhsExpr, FieldType,
1661 /*IsInitializer=*/true);
Fariborz Jahanian03f62ed2009-11-11 17:55:25 +00001662 CGF.EmitStoreThroughLValue(RHS, LHS, FieldType);
Eli Friedmane85ef712009-11-16 23:53:01 +00001663 } else if (Array) {
1664 CGF.EmitMemSetToZero(LHS.getAddress(), Field->getType());
1665 } else if (!CGF.hasAggregateLLVMType(RhsExpr->getType())) {
1666 RHS = RValue::get(CGF.EmitScalarExpr(RhsExpr, true));
1667 CGF.EmitStoreThroughLValue(RHS, LHS, FieldType);
1668 } else if (RhsExpr->getType()->isAnyComplexType()) {
1669 CGF.EmitComplexExprIntoAddr(RhsExpr, LHS.getAddress(),
1670 LHS.isVolatileQualified());
1671 } else {
1672 // Handle member function pointers; other aggregates shouldn't get this far.
1673 CGF.EmitAggExpr(RhsExpr, LHS.getAddress(), LHS.isVolatileQualified());
1674 }
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001675}
1676
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001677/// EmitCtorPrologue - This routine generates necessary code to initialize
1678/// base classes and non-static data members belonging to this constructor.
Anders Carlsson6b8b4b42009-09-01 18:33:46 +00001679/// FIXME: This needs to take a CXXCtorType.
Anders Carlssonddf57d32009-09-14 05:32:02 +00001680void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD,
1681 CXXCtorType CtorType) {
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001682 const CXXRecordDecl *ClassDecl = CD->getParent();
1683
Mike Stump6b2556f2009-08-06 13:41:24 +00001684 // FIXME: Add vbase initialization
Mike Stumpbc78a722009-07-31 18:25:34 +00001685 llvm::Value *LoadOfThis = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001686
Fariborz Jahaniandedf1e42009-07-25 21:12:28 +00001687 for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001688 E = CD->init_end();
1689 B != E; ++B) {
1690 CXXBaseOrMemberInitializer *Member = (*B);
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001691
Anders Carlsson5852b132009-11-06 04:11:09 +00001692 assert(LiveTemporaries.empty() &&
1693 "Should not have any live temporaries at initializer start!");
1694
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001695 if (Member->isBaseInitializer())
1696 EmitBaseInitializer(*this, ClassDecl, Member, CtorType);
1697 else
1698 EmitMemberInitializer(*this, ClassDecl, Member);
Anders Carlsson5852b132009-11-06 04:11:09 +00001699
1700 // Pop any live temporaries that the initializers might have pushed.
1701 while (!LiveTemporaries.empty())
1702 PopCXXTemporary();
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001703 }
Mike Stumpbc78a722009-07-31 18:25:34 +00001704
1705 // Initialize the vtable pointer
Mike Stumpa19718a2009-08-05 22:59:44 +00001706 if (ClassDecl->isDynamicClass()) {
Mike Stumpbc78a722009-07-31 18:25:34 +00001707 if (!LoadOfThis)
1708 LoadOfThis = LoadCXXThis();
1709 llvm::Value *VtableField;
1710 llvm::Type *Ptr8Ty, *PtrPtr8Ty;
Owen Anderson41a75022009-08-13 21:57:51 +00001711 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stumpbc78a722009-07-31 18:25:34 +00001712 PtrPtr8Ty = llvm::PointerType::get(Ptr8Ty, 0);
1713 VtableField = Builder.CreateBitCast(LoadOfThis, PtrPtr8Ty);
Mike Stumpd846d082009-11-10 07:44:33 +00001714 llvm::Value *vtable = CGM.getVtableInfo().getVtable(ClassDecl);
Mike Stumpbc78a722009-07-31 18:25:34 +00001715 Builder.CreateStore(vtable, VtableField);
1716 }
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001717}
Fariborz Jahanianaa01d2a2009-07-30 17:49:11 +00001718
1719/// EmitDtorEpilogue - Emit all code that comes at the end of class's
Mike Stump11289f42009-09-09 15:08:12 +00001720/// destructor. This is to call destructors on members and base classes
Fariborz Jahanianaa01d2a2009-07-30 17:49:11 +00001721/// in reverse order of their construction.
Anders Carlsson6b8b4b42009-09-01 18:33:46 +00001722/// FIXME: This needs to take a CXXDtorType.
Anders Carlssonddf57d32009-09-14 05:32:02 +00001723void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD,
1724 CXXDtorType DtorType) {
Anders Carlssondee9a302009-11-17 04:44:12 +00001725 assert(!DD->isTrivial() &&
1726 "Should not emit dtor epilogue for trivial dtor!");
Mike Stump11289f42009-09-09 15:08:12 +00001727
Anders Carlssondee9a302009-11-17 04:44:12 +00001728 const CXXRecordDecl *ClassDecl = DD->getParent();
Mike Stump11289f42009-09-09 15:08:12 +00001729
Anders Carlssondee9a302009-11-17 04:44:12 +00001730 // Collect the fields.
1731 llvm::SmallVector<const FieldDecl *, 16> FieldDecls;
1732 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1733 E = ClassDecl->field_end(); I != E; ++I) {
1734 const FieldDecl *Field = *I;
1735
1736 QualType FieldType = getContext().getCanonicalType(Field->getType());
1737 FieldType = getContext().getBaseElementType(FieldType);
1738
1739 const RecordType *RT = FieldType->getAs<RecordType>();
1740 if (!RT)
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001741 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00001742
1743 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1744 if (FieldClassDecl->hasTrivialDestructor())
1745 continue;
1746
1747 FieldDecls.push_back(Field);
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001748 }
Anders Carlssond7872042009-11-15 23:03:25 +00001749
Anders Carlssondee9a302009-11-17 04:44:12 +00001750 // Now destroy the fields.
1751 for (size_t i = FieldDecls.size(); i > 0; --i) {
1752 const FieldDecl *Field = FieldDecls[i - 1];
1753
1754 QualType FieldType = Field->getType();
1755 const ConstantArrayType *Array =
1756 getContext().getAsConstantArrayType(FieldType);
1757 if (Array)
1758 FieldType = getContext().getBaseElementType(FieldType);
1759
1760 const RecordType *RT = FieldType->getAs<RecordType>();
1761 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1762
1763 llvm::Value *ThisPtr = LoadCXXThis();
1764
1765 LValue LHS = EmitLValueForField(ThisPtr, Field,
1766 /*isUnion=*/false,
1767 // FIXME: Qualifiers?
1768 /*CVRQualifiers=*/0);
1769 if (Array) {
1770 const llvm::Type *BasePtr = ConvertType(FieldType);
1771 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1772 llvm::Value *BaseAddrPtr =
1773 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1774 EmitCXXAggrDestructorCall(FieldClassDecl->getDestructor(getContext()),
1775 Array, BaseAddrPtr);
1776 } else
1777 EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
1778 Dtor_Complete, LHS.getAddress());
1779 }
1780
1781 // Destroy non-virtual bases.
1782 for (CXXRecordDecl::reverse_base_class_const_iterator I =
1783 ClassDecl->bases_rbegin(), E = ClassDecl->bases_rend(); I != E; ++I) {
1784 const CXXBaseSpecifier &Base = *I;
1785
1786 // Ignore virtual bases.
1787 if (Base.isVirtual())
1788 continue;
1789
1790 CXXRecordDecl *BaseClassDecl
1791 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1792
1793 // Ignore trivial destructors.
1794 if (BaseClassDecl->hasTrivialDestructor())
1795 continue;
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001796 const CXXDestructorDecl *D = BaseClassDecl->getDestructor(getContext());
1797
Anders Carlsson8c793172009-11-23 17:57:54 +00001798 llvm::Value *V = GetAddressOfBaseClass(LoadCXXThis(),
1799 ClassDecl, BaseClassDecl,
1800 /*NullCheckValue=*/false);
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001801 EmitCXXDestructorCall(D, Dtor_Base, V);
Anders Carlssondee9a302009-11-17 04:44:12 +00001802 }
1803
1804 // If we're emitting a base destructor, we don't want to emit calls to the
1805 // virtual bases.
1806 if (DtorType == Dtor_Base)
1807 return;
1808
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001809 // Handle virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00001810 for (CXXRecordDecl::reverse_base_class_const_iterator I =
1811 ClassDecl->vbases_rbegin(), E = ClassDecl->vbases_rend(); I != E; ++I) {
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001812 const CXXBaseSpecifier &Base = *I;
1813 CXXRecordDecl *BaseClassDecl
1814 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1815
1816 // Ignore trivial destructors.
1817 if (BaseClassDecl->hasTrivialDestructor())
1818 continue;
1819 const CXXDestructorDecl *D = BaseClassDecl->getDestructor(getContext());
1820 llvm::Value *V = GetAddressOfBaseClass(LoadCXXThis(),
1821 ClassDecl, BaseClassDecl,
1822 /*NullCheckValue=*/false);
1823 EmitCXXDestructorCall(D, Dtor_Base, V);
Anders Carlssondee9a302009-11-17 04:44:12 +00001824 }
1825
1826 // If we have a deleting destructor, emit a call to the delete operator.
Fariborz Jahanian037bcb52009-12-01 23:35:33 +00001827 if (DtorType == Dtor_Deleting) {
1828 assert(DD->getOperatorDelete() &&
1829 "operator delete missing - EmitDtorEpilogue");
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001830 EmitDeleteCall(DD->getOperatorDelete(), LoadCXXThis(),
1831 getContext().getTagDeclType(ClassDecl));
Fariborz Jahanian037bcb52009-12-01 23:35:33 +00001832 }
Fariborz Jahanianaa01d2a2009-07-30 17:49:11 +00001833}
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001834
Anders Carlssonddf57d32009-09-14 05:32:02 +00001835void CodeGenFunction::SynthesizeDefaultDestructor(const CXXDestructorDecl *Dtor,
1836 CXXDtorType DtorType,
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001837 llvm::Function *Fn,
1838 const FunctionArgList &Args) {
Anders Carlssondee9a302009-11-17 04:44:12 +00001839 assert(!Dtor->getParent()->hasUserDeclaredDestructor() &&
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001840 "SynthesizeDefaultDestructor - destructor has user declaration");
Mike Stump11289f42009-09-09 15:08:12 +00001841
Anders Carlssonddf57d32009-09-14 05:32:02 +00001842 StartFunction(GlobalDecl(Dtor, DtorType), Dtor->getResultType(), Fn, Args,
1843 SourceLocation());
Anders Carlssondee9a302009-11-17 04:44:12 +00001844
Anders Carlssonddf57d32009-09-14 05:32:02 +00001845 EmitDtorEpilogue(Dtor, DtorType);
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001846 FinishFunction();
Mike Stump11289f42009-09-09 15:08:12 +00001847}