blob: c5c5693818bfd8a98394e6688c2f0b9d19e5f18f [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 Friedman8174f2c2009-12-06 22:01:30 +0000997CodeGenModule::GetAddrOfThunk(GlobalDecl GD,
998 const ThunkAdjustment &ThisAdjustment) {
999 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
1000
1001 // Compute mangled name
1002 llvm::SmallString<256> OutName;
1003 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
1004 getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(), ThisAdjustment,
1005 OutName);
1006 else
1007 getMangleContext().mangleThunk(MD, ThisAdjustment, OutName);
1008 OutName += '\0';
1009 const char* Name = UniqueMangledName(OutName.begin(), OutName.end());
1010
1011 // Get function for mangled name
1012 const llvm::Type *Ty = getTypes().GetFunctionTypeForVtable(MD);
1013 return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl());
1014}
1015
1016llvm::Constant *
1017CodeGenModule::GetAddrOfCovariantThunk(GlobalDecl GD,
1018 const CovariantThunkAdjustment &Adjustment) {
1019 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
1020
1021 // Compute mangled name
1022 llvm::SmallString<256> OutName;
1023 getMangleContext().mangleCovariantThunk(MD, Adjustment, OutName);
1024 OutName += '\0';
1025 const char* Name = UniqueMangledName(OutName.begin(), OutName.end());
1026
1027 // Get function for mangled name
1028 const llvm::Type *Ty = getTypes().GetFunctionTypeForVtable(MD);
1029 return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl());
1030}
1031
1032void CodeGenModule::BuildThunksForVirtual(GlobalDecl GD) {
Eli Friedman31bc3ad2009-12-07 23:56:34 +00001033 CGVtableInfo::AdjustmentVectorTy *AdjPtr = getVtableInfo().getAdjustments(GD);
1034 if (!AdjPtr)
1035 return;
1036 CGVtableInfo::AdjustmentVectorTy &Adj = *AdjPtr;
Eli Friedman8174f2c2009-12-06 22:01:30 +00001037 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Eli Friedman31bc3ad2009-12-07 23:56:34 +00001038 for (unsigned i = 0; i < Adj.size(); i++) {
1039 GlobalDecl OGD = Adj[i].first;
1040 const CXXMethodDecl *OMD = cast<CXXMethodDecl>(OGD.getDecl());
Eli Friedman8174f2c2009-12-06 22:01:30 +00001041 QualType nc_oret = OMD->getType()->getAs<FunctionType>()->getResultType();
1042 CanQualType oret = getContext().getCanonicalType(nc_oret);
1043 QualType nc_ret = MD->getType()->getAs<FunctionType>()->getResultType();
1044 CanQualType ret = getContext().getCanonicalType(nc_ret);
1045 ThunkAdjustment ReturnAdjustment;
1046 if (oret != ret) {
1047 QualType qD = nc_ret->getPointeeType();
1048 QualType qB = nc_oret->getPointeeType();
1049 CXXRecordDecl *D = cast<CXXRecordDecl>(qD->getAs<RecordType>()->getDecl());
1050 CXXRecordDecl *B = cast<CXXRecordDecl>(qB->getAs<RecordType>()->getDecl());
1051 ReturnAdjustment = ComputeThunkAdjustment(D, B);
1052 }
Eli Friedman31bc3ad2009-12-07 23:56:34 +00001053 ThunkAdjustment ThisAdjustment = Adj[i].second;
Eli Friedman8174f2c2009-12-06 22:01:30 +00001054 bool Extern = !cast<CXXRecordDecl>(OMD->getDeclContext())->isInAnonymousNamespace();
1055 if (!ReturnAdjustment.isEmpty() || !ThisAdjustment.isEmpty()) {
1056 CovariantThunkAdjustment CoAdj(ThisAdjustment, ReturnAdjustment);
1057 llvm::Constant *FnConst;
1058 if (!ReturnAdjustment.isEmpty())
1059 FnConst = GetAddrOfCovariantThunk(GD, CoAdj);
1060 else
1061 FnConst = GetAddrOfThunk(GD, ThisAdjustment);
1062 if (!isa<llvm::Function>(FnConst)) {
Eli Friedman31bc3ad2009-12-07 23:56:34 +00001063 llvm::Constant *SubExpr =
1064 cast<llvm::ConstantExpr>(FnConst)->getOperand(0);
1065 llvm::Function *OldFn = cast<llvm::Function>(SubExpr);
1066 std::string Name = OldFn->getNameStr();
1067 GlobalDeclMap.erase(UniqueMangledName(Name.data(),
1068 Name.data() + Name.size() + 1));
1069 llvm::Constant *NewFnConst;
1070 if (!ReturnAdjustment.isEmpty())
1071 NewFnConst = GetAddrOfCovariantThunk(GD, CoAdj);
1072 else
1073 NewFnConst = GetAddrOfThunk(GD, ThisAdjustment);
1074 llvm::Function *NewFn = cast<llvm::Function>(NewFnConst);
1075 NewFn->takeName(OldFn);
1076 llvm::Constant *NewPtrForOldDecl =
1077 llvm::ConstantExpr::getBitCast(NewFn, OldFn->getType());
1078 OldFn->replaceAllUsesWith(NewPtrForOldDecl);
1079 OldFn->eraseFromParent();
1080 FnConst = NewFn;
Eli Friedman8174f2c2009-12-06 22:01:30 +00001081 }
1082 llvm::Function *Fn = cast<llvm::Function>(FnConst);
1083 if (Fn->isDeclaration()) {
1084 llvm::GlobalVariable::LinkageTypes linktype;
1085 linktype = llvm::GlobalValue::WeakAnyLinkage;
1086 if (!Extern)
1087 linktype = llvm::GlobalValue::InternalLinkage;
1088 Fn->setLinkage(linktype);
1089 if (!Features.Exceptions && !Features.ObjCNonFragileABI)
1090 Fn->addFnAttr(llvm::Attribute::NoUnwind);
1091 Fn->setAlignment(2);
1092 CodeGenFunction(*this).GenerateCovariantThunk(Fn, GD, Extern, CoAdj);
1093 }
1094 }
Eli Friedman8174f2c2009-12-06 22:01:30 +00001095 }
1096}
1097
1098llvm::Constant *
Eli Friedman551fe842009-12-03 04:27:05 +00001099CodeGenModule::BuildThunk(GlobalDecl GD, bool Extern,
Anders Carlssonc7785402009-11-26 02:32:05 +00001100 const ThunkAdjustment &ThisAdjustment) {
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001101 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stump5a522352009-09-04 18:27:16 +00001102 llvm::SmallString<256> OutName;
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001103 if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(MD)) {
1104 getMangleContext().mangleCXXDtorThunk(D, GD.getDtorType(), ThisAdjustment,
1105 OutName);
1106 } else
1107 getMangleContext().mangleThunk(MD, ThisAdjustment, OutName);
Anders Carlssonc7785402009-11-26 02:32:05 +00001108
Mike Stump5a522352009-09-04 18:27:16 +00001109 llvm::GlobalVariable::LinkageTypes linktype;
1110 linktype = llvm::GlobalValue::WeakAnyLinkage;
1111 if (!Extern)
1112 linktype = llvm::GlobalValue::InternalLinkage;
1113 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
John McCall9dd450b2009-09-21 23:43:11 +00001114 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump5a522352009-09-04 18:27:16 +00001115 const llvm::FunctionType *FTy =
1116 getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
1117 FPT->isVariadic());
1118
Daniel Dunbare128dd12009-11-21 09:06:22 +00001119 llvm::Function *Fn = llvm::Function::Create(FTy, linktype, OutName.str(),
Mike Stump5a522352009-09-04 18:27:16 +00001120 &getModule());
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001121 CodeGenFunction(*this).GenerateThunk(Fn, GD, Extern, ThisAdjustment);
Mike Stump5a522352009-09-04 18:27:16 +00001122 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
1123 return m;
1124}
1125
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001126llvm::Constant *
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001127CodeGenModule::BuildCovariantThunk(const GlobalDecl &GD, bool Extern,
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001128 const CovariantThunkAdjustment &Adjustment) {
Mike Stumpe2d4a2c2009-12-03 03:47:56 +00001129 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
Mike Stump80f6ac52009-09-11 23:25:56 +00001130 llvm::SmallString<256> OutName;
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001131 getMangleContext().mangleCovariantThunk(MD, Adjustment, OutName);
Mike Stump80f6ac52009-09-11 23:25:56 +00001132 llvm::GlobalVariable::LinkageTypes linktype;
1133 linktype = llvm::GlobalValue::WeakAnyLinkage;
1134 if (!Extern)
1135 linktype = llvm::GlobalValue::InternalLinkage;
1136 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
John McCall9dd450b2009-09-21 23:43:11 +00001137 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump80f6ac52009-09-11 23:25:56 +00001138 const llvm::FunctionType *FTy =
1139 getTypes().GetFunctionType(getTypes().getFunctionInfo(MD),
1140 FPT->isVariadic());
1141
Daniel Dunbare128dd12009-11-21 09:06:22 +00001142 llvm::Function *Fn = llvm::Function::Create(FTy, linktype, OutName.str(),
Mike Stump80f6ac52009-09-11 23:25:56 +00001143 &getModule());
Anders Carlsson2f87c4f2009-11-26 03:09:37 +00001144 CodeGenFunction(*this).GenerateCovariantThunk(Fn, MD, Extern, Adjustment);
Mike Stump80f6ac52009-09-11 23:25:56 +00001145 llvm::Constant *m = llvm::ConstantExpr::getBitCast(Fn, Ptr8Ty);
1146 return m;
1147}
1148
Mike Stumpa5588bf2009-08-26 20:46:33 +00001149llvm::Value *
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001150CodeGenFunction::GetVirtualCXXBaseClassOffset(llvm::Value *This,
1151 const CXXRecordDecl *ClassDecl,
1152 const CXXRecordDecl *BaseClassDecl) {
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001153 const llvm::Type *Int8PtrTy =
1154 llvm::Type::getInt8Ty(VMContext)->getPointerTo();
1155
1156 llvm::Value *VTablePtr = Builder.CreateBitCast(This,
1157 Int8PtrTy->getPointerTo());
1158 VTablePtr = Builder.CreateLoad(VTablePtr, "vtable");
1159
Anders Carlsson2bb27f52009-10-11 22:13:54 +00001160 int64_t VBaseOffsetIndex =
1161 CGM.getVtableInfo().getVirtualBaseOffsetIndex(ClassDecl, BaseClassDecl);
1162
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001163 llvm::Value *VBaseOffsetPtr =
Mike Stumpb9c9b352009-11-04 01:11:15 +00001164 Builder.CreateConstGEP1_64(VTablePtr, VBaseOffsetIndex, "vbase.offset.ptr");
Anders Carlssonc6d171e2009-10-06 22:43:30 +00001165 const llvm::Type *PtrDiffTy =
1166 ConvertType(getContext().getPointerDiffType());
1167
1168 VBaseOffsetPtr = Builder.CreateBitCast(VBaseOffsetPtr,
1169 PtrDiffTy->getPointerTo());
1170
1171 llvm::Value *VBaseOffset = Builder.CreateLoad(VBaseOffsetPtr, "vbase.offset");
1172
1173 return VBaseOffset;
1174}
1175
Anders Carlssonf942ee02009-11-27 20:47:55 +00001176static llvm::Value *BuildVirtualCall(CodeGenFunction &CGF, uint64_t VtableIndex,
Anders Carlssone828c362009-11-13 04:45:41 +00001177 llvm::Value *This, const llvm::Type *Ty) {
1178 Ty = Ty->getPointerTo()->getPointerTo()->getPointerTo();
Anders Carlsson32bfb1c2009-10-03 14:56:57 +00001179
Anders Carlssone828c362009-11-13 04:45:41 +00001180 llvm::Value *Vtable = CGF.Builder.CreateBitCast(This, Ty);
1181 Vtable = CGF.Builder.CreateLoad(Vtable);
1182
1183 llvm::Value *VFuncPtr =
1184 CGF.Builder.CreateConstInBoundsGEP1_64(Vtable, VtableIndex, "vfn");
1185 return CGF.Builder.CreateLoad(VFuncPtr);
1186}
1187
1188llvm::Value *
1189CodeGenFunction::BuildVirtualCall(const CXXMethodDecl *MD, llvm::Value *This,
1190 const llvm::Type *Ty) {
1191 MD = MD->getCanonicalDecl();
Anders Carlssonf942ee02009-11-27 20:47:55 +00001192 uint64_t VtableIndex = CGM.getVtableInfo().getMethodVtableIndex(MD);
Anders Carlssone828c362009-11-13 04:45:41 +00001193
1194 return ::BuildVirtualCall(*this, VtableIndex, This, Ty);
1195}
1196
1197llvm::Value *
1198CodeGenFunction::BuildVirtualCall(const CXXDestructorDecl *DD, CXXDtorType Type,
1199 llvm::Value *&This, const llvm::Type *Ty) {
1200 DD = cast<CXXDestructorDecl>(DD->getCanonicalDecl());
Anders Carlssonf942ee02009-11-27 20:47:55 +00001201 uint64_t VtableIndex =
Anders Carlssonfb4dda42009-11-13 17:08:56 +00001202 CGM.getVtableInfo().getMethodVtableIndex(GlobalDecl(DD, Type));
Anders Carlssone828c362009-11-13 04:45:41 +00001203
1204 return ::BuildVirtualCall(*this, VtableIndex, This, Ty);
Mike Stumpa5588bf2009-08-26 20:46:33 +00001205}
1206
Fariborz Jahanian56263842009-08-21 18:30:26 +00001207/// EmitClassAggrMemberwiseCopy - This routine generates code to copy a class
1208/// array of objects from SrcValue to DestValue. Copying can be either a bitwise
1209/// copy or via a copy constructor call.
Fariborz Jahanian2c73b1d2009-08-26 00:23:27 +00001210// FIXME. Consolidate this with EmitCXXAggrConstructorCall.
Mike Stump11289f42009-09-09 15:08:12 +00001211void CodeGenFunction::EmitClassAggrMemberwiseCopy(llvm::Value *Dest,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001212 llvm::Value *Src,
1213 const ArrayType *Array,
Mike Stump11289f42009-09-09 15:08:12 +00001214 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001215 QualType Ty) {
1216 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
1217 assert(CA && "VLA cannot be copied over");
1218 bool BitwiseCopy = BaseClassDecl->hasTrivialCopyConstructor();
Mike Stump11289f42009-09-09 15:08:12 +00001219
Fariborz Jahanian56263842009-08-21 18:30:26 +00001220 // Create a temporary for the loop index and initialize it with 0.
1221 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
1222 "loop.index");
Mike Stump11289f42009-09-09 15:08:12 +00001223 llvm::Value* zeroConstant =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001224 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001225 Builder.CreateStore(zeroConstant, IndexPtr);
Fariborz Jahanian56263842009-08-21 18:30:26 +00001226 // Start the loop with a block that tests the condition.
1227 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
1228 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump11289f42009-09-09 15:08:12 +00001229
Fariborz Jahanian56263842009-08-21 18:30:26 +00001230 EmitBlock(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001231
Fariborz Jahanian56263842009-08-21 18:30:26 +00001232 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
1233 // Generate: if (loop-index < number-of-elements fall to the loop body,
1234 // otherwise, go to the block after the for-loop.
1235 uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
Mike Stump11289f42009-09-09 15:08:12 +00001236 llvm::Value * NumElementsPtr =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001237 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
1238 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001239 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001240 "isless");
1241 // If the condition is true, execute the body.
1242 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump11289f42009-09-09 15:08:12 +00001243
Fariborz Jahanian56263842009-08-21 18:30:26 +00001244 EmitBlock(ForBody);
1245 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
1246 // Inside the loop body, emit the constructor call on the array element.
1247 Counter = Builder.CreateLoad(IndexPtr);
1248 Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
1249 Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
1250 if (BitwiseCopy)
1251 EmitAggregateCopy(Dest, Src, Ty);
Mike Stump11289f42009-09-09 15:08:12 +00001252 else if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001253 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Mike Stump11289f42009-09-09 15:08:12 +00001254 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
Fariborz Jahanian56263842009-08-21 18:30:26 +00001255 Ctor_Complete);
1256 CallArgList CallArgs;
1257 // Push the this (Dest) ptr.
1258 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1259 BaseCopyCtor->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001260
Fariborz Jahanian56263842009-08-21 18:30:26 +00001261 // Push the Src ptr.
1262 CallArgs.push_back(std::make_pair(RValue::get(Src),
Mike Stumpb9c9b352009-11-04 01:11:15 +00001263 BaseCopyCtor->getParamDecl(0)->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001264 QualType ResultType =
John McCall9dd450b2009-09-21 23:43:11 +00001265 BaseCopyCtor->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanian56263842009-08-21 18:30:26 +00001266 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1267 Callee, CallArgs, BaseCopyCtor);
1268 }
1269 EmitBlock(ContinueBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001270
Fariborz Jahanian56263842009-08-21 18:30:26 +00001271 // Emit the increment of the loop counter.
1272 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
1273 Counter = Builder.CreateLoad(IndexPtr);
1274 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001275 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001276
Fariborz Jahanian56263842009-08-21 18:30:26 +00001277 // Finally, branch back up to the condition for the next iteration.
1278 EmitBranch(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001279
Fariborz Jahanian56263842009-08-21 18:30:26 +00001280 // Emit the fall-through block.
1281 EmitBlock(AfterFor, true);
1282}
1283
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001284/// EmitClassAggrCopyAssignment - This routine generates code to assign a class
Mike Stump11289f42009-09-09 15:08:12 +00001285/// array of objects from SrcValue to DestValue. Assignment can be either a
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001286/// bitwise assignment or via a copy assignment operator function call.
1287/// FIXME. This can be consolidated with EmitClassAggrMemberwiseCopy
Mike Stump11289f42009-09-09 15:08:12 +00001288void CodeGenFunction::EmitClassAggrCopyAssignment(llvm::Value *Dest,
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001289 llvm::Value *Src,
1290 const ArrayType *Array,
Mike Stump11289f42009-09-09 15:08:12 +00001291 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001292 QualType Ty) {
1293 const ConstantArrayType *CA = dyn_cast<ConstantArrayType>(Array);
1294 assert(CA && "VLA cannot be asssigned");
1295 bool BitwiseAssign = BaseClassDecl->hasTrivialCopyAssignment();
Mike Stump11289f42009-09-09 15:08:12 +00001296
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001297 // Create a temporary for the loop index and initialize it with 0.
1298 llvm::Value *IndexPtr = CreateTempAlloca(llvm::Type::getInt64Ty(VMContext),
1299 "loop.index");
Mike Stump11289f42009-09-09 15:08:12 +00001300 llvm::Value* zeroConstant =
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001301 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext));
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001302 Builder.CreateStore(zeroConstant, IndexPtr);
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001303 // Start the loop with a block that tests the condition.
1304 llvm::BasicBlock *CondBlock = createBasicBlock("for.cond");
1305 llvm::BasicBlock *AfterFor = createBasicBlock("for.end");
Mike Stump11289f42009-09-09 15:08:12 +00001306
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001307 EmitBlock(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001308
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001309 llvm::BasicBlock *ForBody = createBasicBlock("for.body");
1310 // Generate: if (loop-index < number-of-elements fall to the loop body,
1311 // otherwise, go to the block after the for-loop.
1312 uint64_t NumElements = getContext().getConstantArrayElementCount(CA);
Mike Stump11289f42009-09-09 15:08:12 +00001313 llvm::Value * NumElementsPtr =
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001314 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), NumElements);
1315 llvm::Value *Counter = Builder.CreateLoad(IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001316 llvm::Value *IsLess = Builder.CreateICmpULT(Counter, NumElementsPtr,
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001317 "isless");
1318 // If the condition is true, execute the body.
1319 Builder.CreateCondBr(IsLess, ForBody, AfterFor);
Mike Stump11289f42009-09-09 15:08:12 +00001320
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001321 EmitBlock(ForBody);
1322 llvm::BasicBlock *ContinueBlock = createBasicBlock("for.inc");
1323 // Inside the loop body, emit the assignment operator call on array element.
1324 Counter = Builder.CreateLoad(IndexPtr);
1325 Src = Builder.CreateInBoundsGEP(Src, Counter, "srcaddress");
1326 Dest = Builder.CreateInBoundsGEP(Dest, Counter, "destaddress");
1327 const CXXMethodDecl *MD = 0;
1328 if (BitwiseAssign)
1329 EmitAggregateCopy(Dest, Src, Ty);
1330 else {
1331 bool hasCopyAssign = BaseClassDecl->hasConstCopyAssignment(getContext(),
1332 MD);
1333 assert(hasCopyAssign && "EmitClassAggrCopyAssignment - No user assign");
1334 (void)hasCopyAssign;
John McCall9dd450b2009-09-21 23:43:11 +00001335 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001336 const llvm::Type *LTy =
1337 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
1338 FPT->isVariadic());
Anders Carlssonecf9bf02009-09-10 23:43:36 +00001339 llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
Mike Stump11289f42009-09-09 15:08:12 +00001340
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001341 CallArgList CallArgs;
1342 // Push the this (Dest) ptr.
1343 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1344 MD->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001345
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001346 // Push the Src ptr.
1347 CallArgs.push_back(std::make_pair(RValue::get(Src),
1348 MD->getParamDecl(0)->getType()));
John McCall9dd450b2009-09-21 23:43:11 +00001349 QualType ResultType = MD->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001350 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1351 Callee, CallArgs, MD);
1352 }
1353 EmitBlock(ContinueBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001354
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001355 // Emit the increment of the loop counter.
1356 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
1357 Counter = Builder.CreateLoad(IndexPtr);
1358 NextVal = Builder.CreateAdd(Counter, NextVal, "inc");
Daniel Dunbardacbe6b2009-11-29 21:11:41 +00001359 Builder.CreateStore(NextVal, IndexPtr);
Mike Stump11289f42009-09-09 15:08:12 +00001360
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001361 // Finally, branch back up to the condition for the next iteration.
1362 EmitBranch(CondBlock);
Mike Stump11289f42009-09-09 15:08:12 +00001363
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001364 // Emit the fall-through block.
1365 EmitBlock(AfterFor, true);
1366}
1367
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001368/// EmitClassMemberwiseCopy - This routine generates code to copy a class
1369/// object from SrcValue to DestValue. Copying can be either a bitwise copy
Fariborz Jahanian56263842009-08-21 18:30:26 +00001370/// or via a copy constructor call.
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001371void CodeGenFunction::EmitClassMemberwiseCopy(
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001372 llvm::Value *Dest, llvm::Value *Src,
Mike Stump11289f42009-09-09 15:08:12 +00001373 const CXXRecordDecl *ClassDecl,
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001374 const CXXRecordDecl *BaseClassDecl, QualType Ty) {
1375 if (ClassDecl) {
Anders Carlsson8c793172009-11-23 17:57:54 +00001376 Dest = GetAddressOfBaseClass(Dest, ClassDecl, BaseClassDecl,
1377 /*NullCheckValue=*/false);
1378 Src = GetAddressOfBaseClass(Src, ClassDecl, BaseClassDecl,
1379 /*NullCheckValue=*/false);
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001380 }
1381 if (BaseClassDecl->hasTrivialCopyConstructor()) {
1382 EmitAggregateCopy(Dest, Src, Ty);
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001383 return;
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001384 }
Mike Stump11289f42009-09-09 15:08:12 +00001385
1386 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanian7c3d7f62009-08-08 00:59:58 +00001387 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Mike Stump11289f42009-09-09 15:08:12 +00001388 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001389 Ctor_Complete);
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001390 CallArgList CallArgs;
1391 // Push the this (Dest) ptr.
1392 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1393 BaseCopyCtor->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001394
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001395 // Push the Src ptr.
1396 CallArgs.push_back(std::make_pair(RValue::get(Src),
Fariborz Jahanian2a26e352009-08-10 17:20:45 +00001397 BaseCopyCtor->getParamDecl(0)->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001398 QualType ResultType =
John McCall9dd450b2009-09-21 23:43:11 +00001399 BaseCopyCtor->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanianb68df0b2009-08-07 23:51:33 +00001400 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1401 Callee, CallArgs, BaseCopyCtor);
1402 }
1403}
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001404
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001405/// EmitClassCopyAssignment - This routine generates code to copy assign a class
Mike Stump11289f42009-09-09 15:08:12 +00001406/// object from SrcValue to DestValue. Assignment can be either a bitwise
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001407/// assignment of via an assignment operator call.
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001408// FIXME. Consolidate this with EmitClassMemberwiseCopy as they share a lot.
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001409void CodeGenFunction::EmitClassCopyAssignment(
1410 llvm::Value *Dest, llvm::Value *Src,
Mike Stump11289f42009-09-09 15:08:12 +00001411 const CXXRecordDecl *ClassDecl,
1412 const CXXRecordDecl *BaseClassDecl,
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001413 QualType Ty) {
1414 if (ClassDecl) {
Anders Carlsson8c793172009-11-23 17:57:54 +00001415 Dest = GetAddressOfBaseClass(Dest, ClassDecl, BaseClassDecl,
1416 /*NullCheckValue=*/false);
1417 Src = GetAddressOfBaseClass(Src, ClassDecl, BaseClassDecl,
1418 /*NullCheckValue=*/false);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001419 }
1420 if (BaseClassDecl->hasTrivialCopyAssignment()) {
1421 EmitAggregateCopy(Dest, Src, Ty);
1422 return;
1423 }
Mike Stump11289f42009-09-09 15:08:12 +00001424
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001425 const CXXMethodDecl *MD = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001426 bool ConstCopyAssignOp = BaseClassDecl->hasConstCopyAssignment(getContext(),
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001427 MD);
1428 assert(ConstCopyAssignOp && "EmitClassCopyAssignment - missing copy assign");
1429 (void)ConstCopyAssignOp;
1430
John McCall9dd450b2009-09-21 23:43:11 +00001431 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
Mike Stump11289f42009-09-09 15:08:12 +00001432 const llvm::Type *LTy =
1433 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001434 FPT->isVariadic());
Anders Carlssonecf9bf02009-09-10 23:43:36 +00001435 llvm::Constant *Callee = CGM.GetAddrOfFunction(MD, LTy);
Mike Stump11289f42009-09-09 15:08:12 +00001436
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001437 CallArgList CallArgs;
1438 // Push the this (Dest) ptr.
1439 CallArgs.push_back(std::make_pair(RValue::get(Dest),
1440 MD->getThisType(getContext())));
Mike Stump11289f42009-09-09 15:08:12 +00001441
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001442 // Push the Src ptr.
1443 CallArgs.push_back(std::make_pair(RValue::get(Src),
1444 MD->getParamDecl(0)->getType()));
Mike Stump11289f42009-09-09 15:08:12 +00001445 QualType ResultType =
John McCall9dd450b2009-09-21 23:43:11 +00001446 MD->getType()->getAs<FunctionType>()->getResultType();
Fariborz Jahanian9b630c32009-08-13 00:53:36 +00001447 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
1448 Callee, CallArgs, MD);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001449}
1450
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001451/// SynthesizeDefaultConstructor - synthesize a default constructor
Mike Stump11289f42009-09-09 15:08:12 +00001452void
Anders Carlssonddf57d32009-09-14 05:32:02 +00001453CodeGenFunction::SynthesizeDefaultConstructor(const CXXConstructorDecl *Ctor,
1454 CXXCtorType Type,
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001455 llvm::Function *Fn,
1456 const FunctionArgList &Args) {
Eli Friedman84a7e342009-11-26 07:40:08 +00001457 assert(!Ctor->isTrivial() && "shouldn't need to generate trivial ctor");
Anders Carlssonddf57d32009-09-14 05:32:02 +00001458 StartFunction(GlobalDecl(Ctor, Type), Ctor->getResultType(), Fn, Args,
1459 SourceLocation());
1460 EmitCtorPrologue(Ctor, Type);
Fariborz Jahanian9d3405c2009-08-10 18:46:38 +00001461 FinishFunction();
1462}
1463
Mike Stumpb9c9b352009-11-04 01:11:15 +00001464/// SynthesizeCXXCopyConstructor - This routine implicitly defines body of a
1465/// copy constructor, in accordance with section 12.8 (p7 and p8) of C++03
Mike Stump11289f42009-09-09 15:08:12 +00001466/// The implicitly-defined copy constructor for class X performs a memberwise
Mike Stumpb9c9b352009-11-04 01:11:15 +00001467/// copy of its subobjects. The order of copying is the same as the order of
1468/// initialization of bases and members in a user-defined constructor
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001469/// Each subobject is copied in the manner appropriate to its type:
Mike Stump11289f42009-09-09 15:08:12 +00001470/// if the subobject is of class type, the copy constructor for the class is
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001471/// used;
Mike Stump11289f42009-09-09 15:08:12 +00001472/// if the subobject is an array, each element is copied, in the manner
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001473/// appropriate to the element type;
Mike Stump11289f42009-09-09 15:08:12 +00001474/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001475/// used.
Mike Stump11289f42009-09-09 15:08:12 +00001476/// Virtual base class subobjects shall be copied only once by the
1477/// implicitly-defined copy constructor
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001478
Anders Carlssonddf57d32009-09-14 05:32:02 +00001479void
1480CodeGenFunction::SynthesizeCXXCopyConstructor(const CXXConstructorDecl *Ctor,
1481 CXXCtorType Type,
1482 llvm::Function *Fn,
1483 const FunctionArgList &Args) {
Anders Carlsson73fcc952009-09-11 00:07:24 +00001484 const CXXRecordDecl *ClassDecl = Ctor->getParent();
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001485 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
Mike Stumpb9c9b352009-11-04 01:11:15 +00001486 "SynthesizeCXXCopyConstructor - copy constructor has definition already");
Eli Friedman84a7e342009-11-26 07:40:08 +00001487 assert(!Ctor->isTrivial() && "shouldn't need to generate trivial ctor");
Anders Carlssonddf57d32009-09-14 05:32:02 +00001488 StartFunction(GlobalDecl(Ctor, Type), Ctor->getResultType(), Fn, Args,
1489 SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001490
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001491 FunctionArgList::const_iterator i = Args.begin();
1492 const VarDecl *ThisArg = i->first;
1493 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1494 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1495 const VarDecl *SrcArg = (i+1)->first;
1496 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1497 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
Mike Stump11289f42009-09-09 15:08:12 +00001498
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001499 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1500 Base != ClassDecl->bases_end(); ++Base) {
1501 // FIXME. copy constrution of virtual base NYI
1502 if (Base->isVirtual())
1503 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001504
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001505 CXXRecordDecl *BaseClassDecl
1506 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian24f38962009-08-08 23:32:22 +00001507 EmitClassMemberwiseCopy(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1508 Base->getType());
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001509 }
Mike Stump11289f42009-09-09 15:08:12 +00001510
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001511 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1512 E = ClassDecl->field_end(); I != E; ++I) {
1513 const FieldDecl *Field = *I;
1514
1515 QualType FieldType = getContext().getCanonicalType(Field->getType());
Mike Stump11289f42009-09-09 15:08:12 +00001516 const ConstantArrayType *Array =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001517 getContext().getAsConstantArrayType(FieldType);
1518 if (Array)
1519 FieldType = getContext().getBaseElementType(FieldType);
Mike Stump11289f42009-09-09 15:08:12 +00001520
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001521 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1522 CXXRecordDecl *FieldClassDecl
1523 = cast<CXXRecordDecl>(FieldClassType->getDecl());
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001524 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
1525 LValue RHS = EmitLValueForField(LoadOfSrc, Field, false, 0);
Fariborz Jahanian56263842009-08-21 18:30:26 +00001526 if (Array) {
1527 const llvm::Type *BasePtr = ConvertType(FieldType);
1528 BasePtr = llvm::PointerType::getUnqual(BasePtr);
Mike Stump11289f42009-09-09 15:08:12 +00001529 llvm::Value *DestBaseAddrPtr =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001530 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
Mike Stump11289f42009-09-09 15:08:12 +00001531 llvm::Value *SrcBaseAddrPtr =
Fariborz Jahanian56263842009-08-21 18:30:26 +00001532 Builder.CreateBitCast(RHS.getAddress(), BasePtr);
1533 EmitClassAggrMemberwiseCopy(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
1534 FieldClassDecl, FieldType);
1535 }
Mike Stump11289f42009-09-09 15:08:12 +00001536 else
1537 EmitClassMemberwiseCopy(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahanian56263842009-08-21 18:30:26 +00001538 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001539 continue;
1540 }
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001541
1542 if (Field->getType()->isReferenceType()) {
1543 unsigned FieldIndex = CGM.getTypes().getLLVMFieldNo(Field);
1544
1545 llvm::Value *LHS = Builder.CreateStructGEP(LoadOfThis, FieldIndex,
1546 "lhs.ref");
1547
1548 llvm::Value *RHS = Builder.CreateStructGEP(LoadOfThis, FieldIndex,
1549 "rhs.ref");
1550
1551 // Load the value in RHS.
1552 RHS = Builder.CreateLoad(RHS);
1553
1554 // And store it in the LHS
1555 Builder.CreateStore(RHS, LHS);
1556
1557 continue;
1558 }
Fariborz Jahanian7cc52cf2009-08-10 18:34:26 +00001559 // Do a built-in assignment of scalar data members.
Anders Carlsson3c9beab2009-11-24 21:08:10 +00001560 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
1561 LValue RHS = EmitLValueForField(LoadOfSrc, Field, false, 0);
1562
Eli Friedmanc2ef2152009-11-16 21:47:41 +00001563 if (!hasAggregateLLVMType(Field->getType())) {
1564 RValue RVRHS = EmitLoadOfLValue(RHS, Field->getType());
1565 EmitStoreThroughLValue(RVRHS, LHS, Field->getType());
1566 } else if (Field->getType()->isAnyComplexType()) {
1567 ComplexPairTy Pair = LoadComplexFromAddr(RHS.getAddress(),
1568 RHS.isVolatileQualified());
1569 StoreComplexToAddr(Pair, LHS.getAddress(), LHS.isVolatileQualified());
1570 } else {
1571 EmitAggregateCopy(LHS.getAddress(), RHS.getAddress(), Field->getType());
1572 }
Fariborz Jahanian59b32592009-08-08 00:15:41 +00001573 }
Fariborz Jahanianf6bda5d2009-08-08 19:31:03 +00001574 FinishFunction();
Mike Stump11289f42009-09-09 15:08:12 +00001575}
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001576
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001577/// SynthesizeCXXCopyAssignment - Implicitly define copy assignment operator.
Mike Stump11289f42009-09-09 15:08:12 +00001578/// Before the implicitly-declared copy assignment operator for a class is
1579/// implicitly defined, all implicitly- declared copy assignment operators for
1580/// its direct base classes and its nonstatic data members shall have been
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001581/// implicitly defined. [12.8-p12]
Mike Stump11289f42009-09-09 15:08:12 +00001582/// The implicitly-defined copy assignment operator for class X performs
1583/// memberwise assignment of its subob- jects. The direct base classes of X are
1584/// assigned first, in the order of their declaration in
1585/// the base-specifier-list, and then the immediate nonstatic data members of X
1586/// are assigned, in the order in which they were declared in the class
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001587/// definition.Each subobject is assigned in the manner appropriate to its type:
Mike Stump11289f42009-09-09 15:08:12 +00001588/// if the subobject is of class type, the copy assignment operator for the
1589/// class is used (as if by explicit qualification; that is, ignoring any
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001590/// possible virtual overriding functions in more derived classes);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001591///
Mike Stump11289f42009-09-09 15:08:12 +00001592/// if the subobject is an array, each element is assigned, in the manner
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001593/// appropriate to the element type;
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001594///
Mike Stump11289f42009-09-09 15:08:12 +00001595/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001596/// used.
1597void CodeGenFunction::SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001598 llvm::Function *Fn,
1599 const FunctionArgList &Args) {
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001600
1601 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
1602 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
1603 "SynthesizeCXXCopyAssignment - copy assignment has user declaration");
Anders Carlssonddf57d32009-09-14 05:32:02 +00001604 StartFunction(CD, CD->getResultType(), Fn, Args, SourceLocation());
Mike Stump11289f42009-09-09 15:08:12 +00001605
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001606 FunctionArgList::const_iterator i = Args.begin();
1607 const VarDecl *ThisArg = i->first;
1608 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1609 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1610 const VarDecl *SrcArg = (i+1)->first;
1611 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1612 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
Mike Stump11289f42009-09-09 15:08:12 +00001613
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001614 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1615 Base != ClassDecl->bases_end(); ++Base) {
1616 // FIXME. copy assignment of virtual base NYI
1617 if (Base->isVirtual())
1618 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001619
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001620 CXXRecordDecl *BaseClassDecl
1621 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1622 EmitClassCopyAssignment(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1623 Base->getType());
1624 }
Mike Stump11289f42009-09-09 15:08:12 +00001625
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001626 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1627 FieldEnd = ClassDecl->field_end();
1628 Field != FieldEnd; ++Field) {
1629 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
Mike Stump11289f42009-09-09 15:08:12 +00001630 const ConstantArrayType *Array =
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001631 getContext().getAsConstantArrayType(FieldType);
1632 if (Array)
1633 FieldType = getContext().getBaseElementType(FieldType);
Mike Stump11289f42009-09-09 15:08:12 +00001634
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001635 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1636 CXXRecordDecl *FieldClassDecl
1637 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1638 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1639 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001640 if (Array) {
1641 const llvm::Type *BasePtr = ConvertType(FieldType);
1642 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1643 llvm::Value *DestBaseAddrPtr =
1644 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1645 llvm::Value *SrcBaseAddrPtr =
1646 Builder.CreateBitCast(RHS.getAddress(), BasePtr);
1647 EmitClassAggrCopyAssignment(DestBaseAddrPtr, SrcBaseAddrPtr, Array,
1648 FieldClassDecl, FieldType);
1649 }
1650 else
Mike Stump11289f42009-09-09 15:08:12 +00001651 EmitClassCopyAssignment(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahanian8adc9732009-08-21 22:34:55 +00001652 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanianbbd5e8c2009-08-12 23:34:46 +00001653 continue;
1654 }
1655 // Do a built-in assignment of scalar data members.
1656 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1657 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
Eli Friedmancd6a50f2009-12-08 01:57:53 +00001658 if (!hasAggregateLLVMType(Field->getType())) {
1659 RValue RVRHS = EmitLoadOfLValue(RHS, Field->getType());
1660 EmitStoreThroughLValue(RVRHS, LHS, Field->getType());
1661 } else if (Field->getType()->isAnyComplexType()) {
1662 ComplexPairTy Pair = LoadComplexFromAddr(RHS.getAddress(),
1663 RHS.isVolatileQualified());
1664 StoreComplexToAddr(Pair, LHS.getAddress(), LHS.isVolatileQualified());
1665 } else {
1666 EmitAggregateCopy(LHS.getAddress(), RHS.getAddress(), Field->getType());
1667 }
Fariborz Jahanian92b3f472009-08-14 00:01:54 +00001668 }
Mike Stump11289f42009-09-09 15:08:12 +00001669
Fariborz Jahanian92b3f472009-08-14 00:01:54 +00001670 // return *this;
1671 Builder.CreateStore(LoadOfThis, ReturnValue);
Mike Stump11289f42009-09-09 15:08:12 +00001672
Fariborz Jahaniande7d4c22009-08-12 21:14:35 +00001673 FinishFunction();
Mike Stump11289f42009-09-09 15:08:12 +00001674}
Fariborz Jahanian40134e72009-08-07 20:22:40 +00001675
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001676static void EmitBaseInitializer(CodeGenFunction &CGF,
1677 const CXXRecordDecl *ClassDecl,
1678 CXXBaseOrMemberInitializer *BaseInit,
1679 CXXCtorType CtorType) {
1680 assert(BaseInit->isBaseInitializer() &&
1681 "Must have base initializer!");
1682
1683 llvm::Value *ThisPtr = CGF.LoadCXXThis();
1684
1685 const Type *BaseType = BaseInit->getBaseClass();
1686 CXXRecordDecl *BaseClassDecl =
1687 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Anders Carlsson8c793172009-11-23 17:57:54 +00001688 llvm::Value *V = CGF.GetAddressOfBaseClass(ThisPtr, ClassDecl,
1689 BaseClassDecl,
1690 /*NullCheckValue=*/false);
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001691 CGF.EmitCXXConstructorCall(BaseInit->getConstructor(),
1692 CtorType, V,
1693 BaseInit->const_arg_begin(),
1694 BaseInit->const_arg_end());
1695}
1696
1697static void EmitMemberInitializer(CodeGenFunction &CGF,
1698 const CXXRecordDecl *ClassDecl,
1699 CXXBaseOrMemberInitializer *MemberInit) {
1700 assert(MemberInit->isMemberInitializer() &&
1701 "Must have member initializer!");
1702
1703 // non-static data member initializers.
1704 FieldDecl *Field = MemberInit->getMember();
Eli Friedman5e7d9692009-11-16 23:34:11 +00001705 QualType FieldType = CGF.getContext().getCanonicalType(Field->getType());
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001706
1707 llvm::Value *ThisPtr = CGF.LoadCXXThis();
1708 LValue LHS;
1709 if (FieldType->isReferenceType()) {
1710 // FIXME: This is really ugly; should be refactored somehow
1711 unsigned idx = CGF.CGM.getTypes().getLLVMFieldNo(Field);
1712 llvm::Value *V = CGF.Builder.CreateStructGEP(ThisPtr, idx, "tmp");
1713 assert(!FieldType.getObjCGCAttr() && "fields cannot have GC attrs");
1714 LHS = LValue::MakeAddr(V, CGF.MakeQualifiers(FieldType));
1715 } else {
Eli Friedmanc1daba32009-11-16 22:58:01 +00001716 LHS = CGF.EmitLValueForField(ThisPtr, Field, ClassDecl->isUnion(), 0);
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001717 }
Eli Friedman5e7d9692009-11-16 23:34:11 +00001718
1719 // If we are initializing an anonymous union field, drill down to the field.
1720 if (MemberInit->getAnonUnionMember()) {
1721 Field = MemberInit->getAnonUnionMember();
1722 LHS = CGF.EmitLValueForField(LHS.getAddress(), Field,
1723 /*IsUnion=*/true, 0);
1724 FieldType = Field->getType();
1725 }
1726
1727 // If the field is an array, branch based on the element type.
1728 const ConstantArrayType *Array =
1729 CGF.getContext().getAsConstantArrayType(FieldType);
1730 if (Array)
1731 FieldType = CGF.getContext().getBaseElementType(FieldType);
1732
Eli Friedmane85ef712009-11-16 23:53:01 +00001733 // We lose the constructor for anonymous union members, so handle them
1734 // explicitly.
1735 // FIXME: This is somwhat ugly.
1736 if (MemberInit->getAnonUnionMember() && FieldType->getAs<RecordType>()) {
1737 if (MemberInit->getNumArgs())
1738 CGF.EmitAggExpr(*MemberInit->arg_begin(), LHS.getAddress(),
1739 LHS.isVolatileQualified());
1740 else
1741 CGF.EmitAggregateClear(LHS.getAddress(), Field->getType());
1742 return;
1743 }
1744
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001745 if (FieldType->getAs<RecordType>()) {
Eli Friedman5e7d9692009-11-16 23:34:11 +00001746 assert(MemberInit->getConstructor() &&
1747 "EmitCtorPrologue - no constructor to initialize member");
1748 if (Array) {
1749 const llvm::Type *BasePtr = CGF.ConvertType(FieldType);
1750 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1751 llvm::Value *BaseAddrPtr =
1752 CGF.Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1753 CGF.EmitCXXAggrConstructorCall(MemberInit->getConstructor(),
Anders Carlsson3a202f62009-11-24 18:43:52 +00001754 Array, BaseAddrPtr,
1755 MemberInit->const_arg_begin(),
1756 MemberInit->const_arg_end());
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001757 }
Eli Friedman5e7d9692009-11-16 23:34:11 +00001758 else
1759 CGF.EmitCXXConstructorCall(MemberInit->getConstructor(),
1760 Ctor_Complete, LHS.getAddress(),
1761 MemberInit->const_arg_begin(),
1762 MemberInit->const_arg_end());
1763 return;
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001764 }
1765
1766 assert(MemberInit->getNumArgs() == 1 && "Initializer count must be 1 only");
1767 Expr *RhsExpr = *MemberInit->arg_begin();
1768 RValue RHS;
Eli Friedmane85ef712009-11-16 23:53:01 +00001769 if (FieldType->isReferenceType()) {
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001770 RHS = CGF.EmitReferenceBindingToExpr(RhsExpr, FieldType,
1771 /*IsInitializer=*/true);
Fariborz Jahanian03f62ed2009-11-11 17:55:25 +00001772 CGF.EmitStoreThroughLValue(RHS, LHS, FieldType);
Eli Friedmane85ef712009-11-16 23:53:01 +00001773 } else if (Array) {
1774 CGF.EmitMemSetToZero(LHS.getAddress(), Field->getType());
1775 } else if (!CGF.hasAggregateLLVMType(RhsExpr->getType())) {
1776 RHS = RValue::get(CGF.EmitScalarExpr(RhsExpr, true));
1777 CGF.EmitStoreThroughLValue(RHS, LHS, FieldType);
1778 } else if (RhsExpr->getType()->isAnyComplexType()) {
1779 CGF.EmitComplexExprIntoAddr(RhsExpr, LHS.getAddress(),
1780 LHS.isVolatileQualified());
1781 } else {
1782 // Handle member function pointers; other aggregates shouldn't get this far.
1783 CGF.EmitAggExpr(RhsExpr, LHS.getAddress(), LHS.isVolatileQualified());
1784 }
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001785}
1786
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001787/// EmitCtorPrologue - This routine generates necessary code to initialize
1788/// base classes and non-static data members belonging to this constructor.
Anders Carlsson6b8b4b42009-09-01 18:33:46 +00001789/// FIXME: This needs to take a CXXCtorType.
Anders Carlssonddf57d32009-09-14 05:32:02 +00001790void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD,
1791 CXXCtorType CtorType) {
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001792 const CXXRecordDecl *ClassDecl = CD->getParent();
1793
Mike Stump6b2556f2009-08-06 13:41:24 +00001794 // FIXME: Add vbase initialization
Anders Carlssonb3f54b72009-12-05 21:28:12 +00001795
Fariborz Jahaniandedf1e42009-07-25 21:12:28 +00001796 for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001797 E = CD->init_end();
1798 B != E; ++B) {
1799 CXXBaseOrMemberInitializer *Member = (*B);
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001800
Anders Carlsson5852b132009-11-06 04:11:09 +00001801 assert(LiveTemporaries.empty() &&
1802 "Should not have any live temporaries at initializer start!");
1803
Anders Carlssona7cb98b2009-11-06 03:23:06 +00001804 if (Member->isBaseInitializer())
1805 EmitBaseInitializer(*this, ClassDecl, Member, CtorType);
1806 else
1807 EmitMemberInitializer(*this, ClassDecl, Member);
Anders Carlsson5852b132009-11-06 04:11:09 +00001808
1809 // Pop any live temporaries that the initializers might have pushed.
1810 while (!LiveTemporaries.empty())
1811 PopCXXTemporary();
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001812 }
Mike Stumpbc78a722009-07-31 18:25:34 +00001813
Anders Carlsson5a1a84f2009-12-05 18:38:15 +00001814 if (!ClassDecl->isDynamicClass())
1815 return;
1816
Anders Carlssonb3f54b72009-12-05 21:28:12 +00001817 // Initialize the vtable pointer.
1818 // FIXME: This needs to initialize secondary vtable pointers too.
1819 llvm::Value *ThisPtr = LoadCXXThis();
Anders Carlsson5a1a84f2009-12-05 18:38:15 +00001820
Anders Carlssonb3f54b72009-12-05 21:28:12 +00001821 llvm::Constant *Vtable = CGM.getVtableInfo().getVtable(ClassDecl);
1822 uint64_t AddressPoint = CGM.getVtableInfo().getVtableAddressPoint(ClassDecl);
1823
1824 llvm::Value *VtableAddressPoint =
1825 Builder.CreateConstInBoundsGEP2_64(Vtable, 0, AddressPoint);
1826
Anders Carlsson5a1a84f2009-12-05 18:38:15 +00001827 llvm::Value *VtableField =
Anders Carlssonb3f54b72009-12-05 21:28:12 +00001828 Builder.CreateBitCast(ThisPtr,
1829 VtableAddressPoint->getType()->getPointerTo());
1830
1831 Builder.CreateStore(VtableAddressPoint, VtableField);
Fariborz Jahanian83381cc2009-07-20 23:18:55 +00001832}
Fariborz Jahanianaa01d2a2009-07-30 17:49:11 +00001833
1834/// EmitDtorEpilogue - Emit all code that comes at the end of class's
Mike Stump11289f42009-09-09 15:08:12 +00001835/// destructor. This is to call destructors on members and base classes
Fariborz Jahanianaa01d2a2009-07-30 17:49:11 +00001836/// in reverse order of their construction.
Anders Carlsson6b8b4b42009-09-01 18:33:46 +00001837/// FIXME: This needs to take a CXXDtorType.
Anders Carlssonddf57d32009-09-14 05:32:02 +00001838void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD,
1839 CXXDtorType DtorType) {
Anders Carlssondee9a302009-11-17 04:44:12 +00001840 assert(!DD->isTrivial() &&
1841 "Should not emit dtor epilogue for trivial dtor!");
Mike Stump11289f42009-09-09 15:08:12 +00001842
Anders Carlssondee9a302009-11-17 04:44:12 +00001843 const CXXRecordDecl *ClassDecl = DD->getParent();
Mike Stump11289f42009-09-09 15:08:12 +00001844
Anders Carlssondee9a302009-11-17 04:44:12 +00001845 // Collect the fields.
1846 llvm::SmallVector<const FieldDecl *, 16> FieldDecls;
1847 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1848 E = ClassDecl->field_end(); I != E; ++I) {
1849 const FieldDecl *Field = *I;
1850
1851 QualType FieldType = getContext().getCanonicalType(Field->getType());
1852 FieldType = getContext().getBaseElementType(FieldType);
1853
1854 const RecordType *RT = FieldType->getAs<RecordType>();
1855 if (!RT)
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001856 continue;
Anders Carlssondee9a302009-11-17 04:44:12 +00001857
1858 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1859 if (FieldClassDecl->hasTrivialDestructor())
1860 continue;
1861
1862 FieldDecls.push_back(Field);
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001863 }
Anders Carlssond7872042009-11-15 23:03:25 +00001864
Anders Carlssondee9a302009-11-17 04:44:12 +00001865 // Now destroy the fields.
1866 for (size_t i = FieldDecls.size(); i > 0; --i) {
1867 const FieldDecl *Field = FieldDecls[i - 1];
1868
1869 QualType FieldType = Field->getType();
1870 const ConstantArrayType *Array =
1871 getContext().getAsConstantArrayType(FieldType);
1872 if (Array)
1873 FieldType = getContext().getBaseElementType(FieldType);
1874
1875 const RecordType *RT = FieldType->getAs<RecordType>();
1876 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1877
1878 llvm::Value *ThisPtr = LoadCXXThis();
1879
1880 LValue LHS = EmitLValueForField(ThisPtr, Field,
1881 /*isUnion=*/false,
1882 // FIXME: Qualifiers?
1883 /*CVRQualifiers=*/0);
1884 if (Array) {
1885 const llvm::Type *BasePtr = ConvertType(FieldType);
1886 BasePtr = llvm::PointerType::getUnqual(BasePtr);
1887 llvm::Value *BaseAddrPtr =
1888 Builder.CreateBitCast(LHS.getAddress(), BasePtr);
1889 EmitCXXAggrDestructorCall(FieldClassDecl->getDestructor(getContext()),
1890 Array, BaseAddrPtr);
1891 } else
1892 EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
1893 Dtor_Complete, LHS.getAddress());
1894 }
1895
1896 // Destroy non-virtual bases.
1897 for (CXXRecordDecl::reverse_base_class_const_iterator I =
1898 ClassDecl->bases_rbegin(), E = ClassDecl->bases_rend(); I != E; ++I) {
1899 const CXXBaseSpecifier &Base = *I;
1900
1901 // Ignore virtual bases.
1902 if (Base.isVirtual())
1903 continue;
1904
1905 CXXRecordDecl *BaseClassDecl
1906 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1907
1908 // Ignore trivial destructors.
1909 if (BaseClassDecl->hasTrivialDestructor())
1910 continue;
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001911 const CXXDestructorDecl *D = BaseClassDecl->getDestructor(getContext());
1912
Anders Carlsson8c793172009-11-23 17:57:54 +00001913 llvm::Value *V = GetAddressOfBaseClass(LoadCXXThis(),
1914 ClassDecl, BaseClassDecl,
1915 /*NullCheckValue=*/false);
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001916 EmitCXXDestructorCall(D, Dtor_Base, V);
Anders Carlssondee9a302009-11-17 04:44:12 +00001917 }
1918
1919 // If we're emitting a base destructor, we don't want to emit calls to the
1920 // virtual bases.
1921 if (DtorType == Dtor_Base)
1922 return;
1923
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001924 // Handle virtual bases.
Anders Carlssondee9a302009-11-17 04:44:12 +00001925 for (CXXRecordDecl::reverse_base_class_const_iterator I =
1926 ClassDecl->vbases_rbegin(), E = ClassDecl->vbases_rend(); I != E; ++I) {
Fariborz Jahanianbe641492009-11-30 22:07:18 +00001927 const CXXBaseSpecifier &Base = *I;
1928 CXXRecordDecl *BaseClassDecl
1929 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1930
1931 // Ignore trivial destructors.
1932 if (BaseClassDecl->hasTrivialDestructor())
1933 continue;
1934 const CXXDestructorDecl *D = BaseClassDecl->getDestructor(getContext());
1935 llvm::Value *V = GetAddressOfBaseClass(LoadCXXThis(),
1936 ClassDecl, BaseClassDecl,
1937 /*NullCheckValue=*/false);
1938 EmitCXXDestructorCall(D, Dtor_Base, V);
Anders Carlssondee9a302009-11-17 04:44:12 +00001939 }
1940
1941 // If we have a deleting destructor, emit a call to the delete operator.
Fariborz Jahanian037bcb52009-12-01 23:35:33 +00001942 if (DtorType == Dtor_Deleting) {
1943 assert(DD->getOperatorDelete() &&
1944 "operator delete missing - EmitDtorEpilogue");
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001945 EmitDeleteCall(DD->getOperatorDelete(), LoadCXXThis(),
1946 getContext().getTagDeclType(ClassDecl));
Fariborz Jahanian037bcb52009-12-01 23:35:33 +00001947 }
Fariborz Jahanianaa01d2a2009-07-30 17:49:11 +00001948}
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001949
Anders Carlssonddf57d32009-09-14 05:32:02 +00001950void CodeGenFunction::SynthesizeDefaultDestructor(const CXXDestructorDecl *Dtor,
1951 CXXDtorType DtorType,
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001952 llvm::Function *Fn,
1953 const FunctionArgList &Args) {
Anders Carlssondee9a302009-11-17 04:44:12 +00001954 assert(!Dtor->getParent()->hasUserDeclaredDestructor() &&
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001955 "SynthesizeDefaultDestructor - destructor has user declaration");
Mike Stump11289f42009-09-09 15:08:12 +00001956
Anders Carlssonddf57d32009-09-14 05:32:02 +00001957 StartFunction(GlobalDecl(Dtor, DtorType), Dtor->getResultType(), Fn, Args,
1958 SourceLocation());
Anders Carlssondee9a302009-11-17 04:44:12 +00001959
Anders Carlssonddf57d32009-09-14 05:32:02 +00001960 EmitDtorEpilogue(Dtor, DtorType);
Fariborz Jahaniand172e912009-08-17 19:04:50 +00001961 FinishFunction();
Mike Stump11289f42009-09-09 15:08:12 +00001962}