blob: 5e71064797a3b861902793b3a6b238a0044434ce [file] [log] [blame]
Anders Carlssonc9f8ccd2008-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
14// We might split this into multiple files if it gets too unwieldy
15
16#include "CodeGenFunction.h"
17#include "CodeGenModule.h"
Anders Carlsson33e65e52009-04-13 18:03:33 +000018#include "Mangle.h"
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +000019#include "clang/AST/ASTContext.h"
Fariborz Jahaniana0107de2009-07-25 21:12:28 +000020#include "clang/AST/RecordLayout.h"
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +000021#include "clang/AST/Decl.h"
Anders Carlsson7a9b2982009-04-03 22:50:24 +000022#include "clang/AST/DeclCXX.h"
Anders Carlsson4715ebb2008-08-23 19:42:54 +000023#include "clang/AST/DeclObjC.h"
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +000024#include "llvm/ADT/StringExtras.h"
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +000025using namespace clang;
26using namespace CodeGen;
27
Daniel Dunbardea59212009-02-25 19:24:29 +000028void
Anders Carlssonf2a022a2009-08-08 21:45:14 +000029CodeGenFunction::EmitCXXGlobalDtorRegistration(const CXXDestructorDecl *Dtor,
30 llvm::Constant *DeclPtr) {
31 // FIXME: This is ABI dependent and we use the Itanium ABI.
32
33 const llvm::Type *Int8PtrTy =
Owen Anderson3f5cc0a2009-08-13 21:57:51 +000034 llvm::PointerType::getUnqual(llvm::Type::getInt8Ty(VMContext));
Anders Carlssonf2a022a2009-08-08 21:45:14 +000035
36 std::vector<const llvm::Type *> Params;
37 Params.push_back(Int8PtrTy);
38
39 // Get the destructor function type
40 const llvm::Type *DtorFnTy =
Owen Anderson3f5cc0a2009-08-13 21:57:51 +000041 llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext), Params, false);
Anders Carlssonf2a022a2009-08-08 21:45:14 +000042 DtorFnTy = llvm::PointerType::getUnqual(DtorFnTy);
43
44 Params.clear();
45 Params.push_back(DtorFnTy);
46 Params.push_back(Int8PtrTy);
47 Params.push_back(Int8PtrTy);
48
49 // Get the __cxa_atexit function type
50 // extern "C" int __cxa_atexit ( void (*f)(void *), void *p, void *d );
51 const llvm::FunctionType *AtExitFnTy =
52 llvm::FunctionType::get(ConvertType(getContext().IntTy), Params, false);
53
54 llvm::Constant *AtExitFn = CGM.CreateRuntimeFunction(AtExitFnTy,
55 "__cxa_atexit");
56
57 llvm::Constant *Handle = CGM.CreateRuntimeVariable(Int8PtrTy,
58 "__dso_handle");
59
60 llvm::Constant *DtorFn = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete);
61
62 llvm::Value *Args[3] = { llvm::ConstantExpr::getBitCast(DtorFn, DtorFnTy),
63 llvm::ConstantExpr::getBitCast(DeclPtr, Int8PtrTy),
64 llvm::ConstantExpr::getBitCast(Handle, Int8PtrTy) };
65 Builder.CreateCall(AtExitFn, &Args[0], llvm::array_endof(Args));
66}
67
68void CodeGenFunction::EmitCXXGlobalVarDeclInit(const VarDecl &D,
69 llvm::Constant *DeclPtr) {
70 assert(D.hasGlobalStorage() &&
71 "VarDecl must have global storage!");
72
73 const Expr *Init = D.getInit();
74 QualType T = D.getType();
75
76 if (T->isReferenceType()) {
77 ErrorUnsupported(Init, "Global variable that binds to a reference");
78 } else if (!hasAggregateLLVMType(T)) {
79 llvm::Value *V = EmitScalarExpr(Init);
80 EmitStoreOfScalar(V, DeclPtr, T.isVolatileQualified(), T);
81 } else if (T->isAnyComplexType()) {
82 EmitComplexExprIntoAddr(Init, DeclPtr, T.isVolatileQualified());
83 } else {
84 EmitAggExpr(Init, DeclPtr, T.isVolatileQualified());
85
86 if (const RecordType *RT = T->getAs<RecordType>()) {
87 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
88 if (!RD->hasTrivialDestructor())
89 EmitCXXGlobalDtorRegistration(RD->getDestructor(getContext()), DeclPtr);
90 }
91 }
92}
93
Anders Carlssoncde4a862009-08-08 23:24:23 +000094void
95CodeGenModule::EmitCXXGlobalInitFunc() {
96 if (CXXGlobalInits.empty())
97 return;
98
Owen Anderson3f5cc0a2009-08-13 21:57:51 +000099 const llvm::FunctionType *FTy = llvm::FunctionType::get(llvm::Type::getVoidTy(VMContext),
Anders Carlssoncde4a862009-08-08 23:24:23 +0000100 false);
101
102 // Create our global initialization function.
103 // FIXME: Should this be tweakable by targets?
104 llvm::Function *Fn =
105 llvm::Function::Create(FTy, llvm::GlobalValue::InternalLinkage,
106 "__cxx_global_initialization", &TheModule);
107
108 CodeGenFunction(*this).GenerateCXXGlobalInitFunc(Fn,
Benjamin Kramer3c1fe262009-08-08 23:43:26 +0000109 &CXXGlobalInits[0],
Anders Carlssoncde4a862009-08-08 23:24:23 +0000110 CXXGlobalInits.size());
111 AddGlobalCtor(Fn);
112}
113
114void CodeGenFunction::GenerateCXXGlobalInitFunc(llvm::Function *Fn,
115 const VarDecl **Decls,
116 unsigned NumDecls) {
117 StartFunction(0, getContext().VoidTy, Fn, FunctionArgList(),
118 SourceLocation());
119
120 for (unsigned i = 0; i != NumDecls; ++i) {
121 const VarDecl *D = Decls[i];
122
123 llvm::Constant *DeclPtr = CGM.GetAddrOfGlobalVar(D);
124 EmitCXXGlobalVarDeclInit(*D, DeclPtr);
125 }
126 FinishFunction();
127}
128
Anders Carlssonf2a022a2009-08-08 21:45:14 +0000129void
130CodeGenFunction::EmitStaticCXXBlockVarDeclInit(const VarDecl &D,
131 llvm::GlobalVariable *GV) {
Daniel Dunbardea59212009-02-25 19:24:29 +0000132 // FIXME: This should use __cxa_guard_{acquire,release}?
133
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000134 assert(!getContext().getLangOptions().ThreadsafeStatics &&
135 "thread safe statics are currently not supported!");
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000136
Anders Carlsson33e65e52009-04-13 18:03:33 +0000137 llvm::SmallString<256> GuardVName;
138 llvm::raw_svector_ostream GuardVOut(GuardVName);
139 mangleGuardVariable(&D, getContext(), GuardVOut);
140
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000141 // Create the guard variable.
142 llvm::GlobalValue *GuardV =
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000143 new llvm::GlobalVariable(CGM.getModule(), llvm::Type::getInt64Ty(VMContext), false,
Daniel Dunbardea59212009-02-25 19:24:29 +0000144 GV->getLinkage(),
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000145 llvm::Constant::getNullValue(llvm::Type::getInt64Ty(VMContext)),
Owen Anderson94148482009-07-08 19:05:04 +0000146 GuardVName.c_str());
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000147
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000148 // Load the first byte of the guard variable.
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000149 const llvm::Type *PtrTy = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000150 llvm::Value *V = Builder.CreateLoad(Builder.CreateBitCast(GuardV, PtrTy),
151 "tmp");
152
153 // Compare it against 0.
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000154 llvm::Value *nullValue = llvm::Constant::getNullValue(llvm::Type::getInt8Ty(VMContext));
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000155 llvm::Value *ICmp = Builder.CreateICmpEQ(V, nullValue , "tobool");
156
Daniel Dunbar72f96552008-11-11 02:29:29 +0000157 llvm::BasicBlock *InitBlock = createBasicBlock("init");
Daniel Dunbar6e3a10c2008-11-13 01:38:36 +0000158 llvm::BasicBlock *EndBlock = createBasicBlock("init.end");
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000159
160 // If the guard variable is 0, jump to the initializer code.
161 Builder.CreateCondBr(ICmp, InitBlock, EndBlock);
162
163 EmitBlock(InitBlock);
164
Anders Carlssonf2a022a2009-08-08 21:45:14 +0000165 EmitCXXGlobalVarDeclInit(D, GV);
166
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000167 Builder.CreateStore(llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext), 1),
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000168 Builder.CreateBitCast(GuardV, PtrTy));
169
170 EmitBlock(EndBlock);
Anders Carlssonc9f8ccd2008-08-22 16:00:37 +0000171}
172
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000173RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
174 llvm::Value *Callee,
175 llvm::Value *This,
176 CallExpr::const_arg_iterator ArgBeg,
177 CallExpr::const_arg_iterator ArgEnd) {
178 assert(MD->isInstance() &&
179 "Trying to emit a member call expr on a static method!");
180
181 const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
182
183 CallArgList Args;
184
185 // Push the this ptr.
186 Args.push_back(std::make_pair(RValue::get(This),
187 MD->getThisType(getContext())));
188
189 // And the rest of the call args
190 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
191
192 QualType ResultType = MD->getType()->getAsFunctionType()->getResultType();
193 return EmitCall(CGM.getTypes().getFunctionInfo(ResultType, Args),
194 Callee, Args, MD);
195}
196
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000197RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE) {
198 const MemberExpr *ME = cast<MemberExpr>(CE->getCallee());
199 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000200
Anders Carlssonc5223142009-04-08 20:31:57 +0000201 const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
Mike Stumpc37c8812009-07-30 21:47:44 +0000202
Mike Stump7e8c9932009-07-31 18:25:34 +0000203 if (MD->isVirtual()) {
Mike Stumpc37c8812009-07-30 21:47:44 +0000204 ErrorUnsupported(CE, "virtual dispatch");
205 }
206
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000207 const llvm::Type *Ty =
Anders Carlssonc5223142009-04-08 20:31:57 +0000208 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
209 FPT->isVariadic());
Chris Lattner80f39cc2009-05-12 21:21:08 +0000210 llvm::Constant *Callee = CGM.GetAddrOfFunction(GlobalDecl(MD), Ty);
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000211
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000212 llvm::Value *This;
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000213
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000214 if (ME->isArrow())
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000215 This = EmitScalarExpr(ME->getBase());
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000216 else {
217 LValue BaseLV = EmitLValue(ME->getBase());
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000218 This = BaseLV.getAddress();
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000219 }
220
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000221 return EmitCXXMemberCall(MD, Callee, This,
222 CE->arg_begin(), CE->arg_end());
Anders Carlsson7a9b2982009-04-03 22:50:24 +0000223}
Anders Carlsson49d4a572009-04-14 16:58:56 +0000224
Anders Carlsson85eca6f2009-05-27 04:18:27 +0000225RValue
226CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
227 const CXXMethodDecl *MD) {
228 assert(MD->isInstance() &&
229 "Trying to emit a member call expr on a static method!");
230
Fariborz Jahanian9da58e42009-08-13 21:09:41 +0000231 if (MD->isCopyAssignment()) {
232 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(MD->getDeclContext());
233 if (ClassDecl->hasTrivialCopyAssignment()) {
234 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
235 "EmitCXXOperatorMemberCallExpr - user declared copy assignment");
236 llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
237 llvm::Value *Src = EmitLValue(E->getArg(1)).getAddress();
238 QualType Ty = E->getType();
239 EmitAggregateCopy(This, Src, Ty);
240 return RValue::get(This);
241 }
242 }
Anders Carlsson85eca6f2009-05-27 04:18:27 +0000243
244 const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
245 const llvm::Type *Ty =
246 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
247 FPT->isVariadic());
248 llvm::Constant *Callee = CGM.GetAddrOfFunction(GlobalDecl(MD), Ty);
249
250 llvm::Value *This = EmitLValue(E->getArg(0)).getAddress();
251
252 return EmitCXXMemberCall(MD, Callee, This,
253 E->arg_begin() + 1, E->arg_end());
254}
255
Anders Carlsson49d4a572009-04-14 16:58:56 +0000256llvm::Value *CodeGenFunction::LoadCXXThis() {
257 assert(isa<CXXMethodDecl>(CurFuncDecl) &&
258 "Must be in a C++ member function decl to load 'this'");
259 assert(cast<CXXMethodDecl>(CurFuncDecl)->isInstance() &&
260 "Must be in a C++ member function decl to load 'this'");
261
262 // FIXME: What if we're inside a block?
Mike Stumpba2cb0e2009-05-16 07:57:57 +0000263 // ans: See how CodeGenFunction::LoadObjCSelf() uses
264 // CodeGenFunction::BlockForwardSelf() for how to do this.
Anders Carlsson49d4a572009-04-14 16:58:56 +0000265 return Builder.CreateLoad(LocalDeclMap[CXXThisDecl], "this");
266}
Anders Carlsson652951a2009-04-15 15:55:24 +0000267
Fariborz Jahanian5fe7f472009-07-30 00:10:25 +0000268static bool
269GetNestedPaths(llvm::SmallVectorImpl<const CXXRecordDecl *> &NestedBasePaths,
270 const CXXRecordDecl *ClassDecl,
271 const CXXRecordDecl *BaseClassDecl) {
Fariborz Jahanian5fe7f472009-07-30 00:10:25 +0000272 for (CXXRecordDecl::base_class_const_iterator i = ClassDecl->bases_begin(),
273 e = ClassDecl->bases_end(); i != e; ++i) {
274 if (i->isVirtual())
275 continue;
276 const CXXRecordDecl *Base =
Mike Stumpf3371782009-08-04 21:58:42 +0000277 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahanian5fe7f472009-07-30 00:10:25 +0000278 if (Base == BaseClassDecl) {
279 NestedBasePaths.push_back(BaseClassDecl);
280 return true;
281 }
282 }
283 // BaseClassDecl not an immediate base of ClassDecl.
284 for (CXXRecordDecl::base_class_const_iterator i = ClassDecl->bases_begin(),
285 e = ClassDecl->bases_end(); i != e; ++i) {
286 if (i->isVirtual())
287 continue;
288 const CXXRecordDecl *Base =
289 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
290 if (GetNestedPaths(NestedBasePaths, Base, BaseClassDecl)) {
291 NestedBasePaths.push_back(Base);
292 return true;
293 }
294 }
295 return false;
296}
297
Fariborz Jahaniand3f67282009-07-28 17:38:28 +0000298llvm::Value *CodeGenFunction::AddressCXXOfBaseClass(llvm::Value *BaseValue,
Fariborz Jahanian70277012009-07-28 18:09:28 +0000299 const CXXRecordDecl *ClassDecl,
300 const CXXRecordDecl *BaseClassDecl) {
Fariborz Jahaniand3f67282009-07-28 17:38:28 +0000301 if (ClassDecl == BaseClassDecl)
302 return BaseValue;
303
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000304 llvm::Type *I8Ptr = llvm::PointerType::getUnqual(llvm::Type::getInt8Ty(VMContext));
Fariborz Jahanian5fe7f472009-07-30 00:10:25 +0000305 llvm::SmallVector<const CXXRecordDecl *, 16> NestedBasePaths;
306 GetNestedPaths(NestedBasePaths, ClassDecl, BaseClassDecl);
307 assert(NestedBasePaths.size() > 0 &&
308 "AddressCXXOfBaseClass - inheritence path failed");
309 NestedBasePaths.push_back(ClassDecl);
310 uint64_t Offset = 0;
311
Fariborz Jahaniand3f67282009-07-28 17:38:28 +0000312 // Accessing a member of the base class. Must add delata to
313 // the load of 'this'.
Fariborz Jahanian5fe7f472009-07-30 00:10:25 +0000314 for (unsigned i = NestedBasePaths.size()-1; i > 0; i--) {
315 const CXXRecordDecl *DerivedClass = NestedBasePaths[i];
316 const CXXRecordDecl *BaseClass = NestedBasePaths[i-1];
317 const ASTRecordLayout &Layout =
318 getContext().getASTRecordLayout(DerivedClass);
319 Offset += Layout.getBaseClassOffset(BaseClass) / 8;
320 }
Fariborz Jahanian83a46ed2009-07-29 15:54:56 +0000321 llvm::Value *OffsetVal =
322 llvm::ConstantInt::get(
323 CGM.getTypes().ConvertType(CGM.getContext().LongTy), Offset);
Fariborz Jahaniand3f67282009-07-28 17:38:28 +0000324 BaseValue = Builder.CreateBitCast(BaseValue, I8Ptr);
325 BaseValue = Builder.CreateGEP(BaseValue, OffsetVal, "add.ptr");
326 QualType BTy =
327 getContext().getCanonicalType(
Fariborz Jahanian70277012009-07-28 18:09:28 +0000328 getContext().getTypeDeclType(const_cast<CXXRecordDecl*>(BaseClassDecl)));
Fariborz Jahaniand3f67282009-07-28 17:38:28 +0000329 const llvm::Type *BasePtr = ConvertType(BTy);
Owen Anderson7ec2d8f2009-07-29 22:16:19 +0000330 BasePtr = llvm::PointerType::getUnqual(BasePtr);
Fariborz Jahaniand3f67282009-07-28 17:38:28 +0000331 BaseValue = Builder.CreateBitCast(BaseValue, BasePtr);
332 return BaseValue;
333}
334
Anders Carlsson72f48292009-04-17 00:06:03 +0000335void
336CodeGenFunction::EmitCXXConstructorCall(const CXXConstructorDecl *D,
337 CXXCtorType Type,
338 llvm::Value *This,
339 CallExpr::const_arg_iterator ArgBeg,
340 CallExpr::const_arg_iterator ArgEnd) {
Fariborz Jahanian0fc5f252009-08-14 20:11:43 +0000341 if (D->isCopyConstructor(getContext())) {
342 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(D->getDeclContext());
343 if (ClassDecl->hasTrivialCopyConstructor()) {
344 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
345 "EmitCXXConstructorCall - user declared copy constructor");
346 const Expr *E = (*ArgBeg);
347 QualType Ty = E->getType();
348 llvm::Value *Src = EmitLValue(E).getAddress();
349 EmitAggregateCopy(This, Src, Ty);
350 return;
351 }
352 }
353
Anders Carlssonf91d9f22009-05-11 23:37:08 +0000354 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Type);
355
356 EmitCXXMemberCall(D, Callee, This, ArgBeg, ArgEnd);
Anders Carlsson72f48292009-04-17 00:06:03 +0000357}
358
Anders Carlssond3f6b162009-05-29 21:03:38 +0000359void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *D,
360 CXXDtorType Type,
361 llvm::Value *This) {
362 llvm::Value *Callee = CGM.GetAddrOfCXXDestructor(D, Type);
363
364 EmitCXXMemberCall(D, Callee, This, 0, 0);
365}
366
Anders Carlsson72f48292009-04-17 00:06:03 +0000367void
Anders Carlsson342aadc2009-05-03 17:47:16 +0000368CodeGenFunction::EmitCXXConstructExpr(llvm::Value *Dest,
369 const CXXConstructExpr *E) {
Anders Carlsson72f48292009-04-17 00:06:03 +0000370 assert(Dest && "Must have a destination!");
371
372 const CXXRecordDecl *RD =
Ted Kremenekd00cd9e2009-07-29 21:53:49 +0000373 cast<CXXRecordDecl>(E->getType()->getAs<RecordType>()->getDecl());
Anders Carlsson72f48292009-04-17 00:06:03 +0000374 if (RD->hasTrivialConstructor())
375 return;
Fariborz Jahanian884036a2009-08-06 01:02:49 +0000376
377 // Code gen optimization to eliminate copy constructor and return
378 // its first argument instead.
Fariborz Jahanian325cdd82009-08-06 19:12:38 +0000379 if (E->isElidable()) {
Fariborz Jahanian884036a2009-08-06 01:02:49 +0000380 CXXConstructExpr::const_arg_iterator i = E->arg_begin();
Fariborz Jahanian325cdd82009-08-06 19:12:38 +0000381 EmitAggExpr((*i), Dest, false);
382 return;
Fariborz Jahanian884036a2009-08-06 01:02:49 +0000383 }
Anders Carlsson72f48292009-04-17 00:06:03 +0000384 // Call the constructor.
385 EmitCXXConstructorCall(E->getConstructor(), Ctor_Complete, Dest,
386 E->arg_begin(), E->arg_end());
387}
388
Anders Carlsson18e88bc2009-05-31 01:40:14 +0000389llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
Anders Carlssond5536972009-05-31 20:21:44 +0000390 if (E->isArray()) {
391 ErrorUnsupported(E, "new[] expression");
Owen Andersone0b5eff2009-07-30 23:11:26 +0000392 return llvm::UndefValue::get(ConvertType(E->getType()));
Anders Carlssond5536972009-05-31 20:21:44 +0000393 }
394
395 QualType AllocType = E->getAllocatedType();
396 FunctionDecl *NewFD = E->getOperatorNew();
397 const FunctionProtoType *NewFTy = NewFD->getType()->getAsFunctionProtoType();
398
399 CallArgList NewArgs;
400
401 // The allocation size is the first argument.
402 QualType SizeTy = getContext().getSizeType();
403 llvm::Value *AllocSize =
Owen Andersonb17ec712009-07-24 23:12:58 +0000404 llvm::ConstantInt::get(ConvertType(SizeTy),
Anders Carlssond5536972009-05-31 20:21:44 +0000405 getContext().getTypeSize(AllocType) / 8);
406
407 NewArgs.push_back(std::make_pair(RValue::get(AllocSize), SizeTy));
408
409 // Emit the rest of the arguments.
410 // FIXME: Ideally, this should just use EmitCallArgs.
411 CXXNewExpr::const_arg_iterator NewArg = E->placement_arg_begin();
412
413 // First, use the types from the function type.
414 // We start at 1 here because the first argument (the allocation size)
415 // has already been emitted.
416 for (unsigned i = 1, e = NewFTy->getNumArgs(); i != e; ++i, ++NewArg) {
417 QualType ArgType = NewFTy->getArgType(i);
418
419 assert(getContext().getCanonicalType(ArgType.getNonReferenceType()).
420 getTypePtr() ==
421 getContext().getCanonicalType(NewArg->getType()).getTypePtr() &&
422 "type mismatch in call argument!");
423
424 NewArgs.push_back(std::make_pair(EmitCallArg(*NewArg, ArgType),
425 ArgType));
426
427 }
428
429 // Either we've emitted all the call args, or we have a call to a
430 // variadic function.
431 assert((NewArg == E->placement_arg_end() || NewFTy->isVariadic()) &&
432 "Extra arguments in non-variadic function!");
433
434 // If we still have any arguments, emit them using the type of the argument.
435 for (CXXNewExpr::const_arg_iterator NewArgEnd = E->placement_arg_end();
436 NewArg != NewArgEnd; ++NewArg) {
437 QualType ArgType = NewArg->getType();
438 NewArgs.push_back(std::make_pair(EmitCallArg(*NewArg, ArgType),
439 ArgType));
440 }
441
442 // Emit the call to new.
443 RValue RV =
444 EmitCall(CGM.getTypes().getFunctionInfo(NewFTy->getResultType(), NewArgs),
445 CGM.GetAddrOfFunction(GlobalDecl(NewFD)),
446 NewArgs, NewFD);
447
Anders Carlsson11269042009-05-31 21:53:59 +0000448 // If an allocation function is declared with an empty exception specification
449 // it returns null to indicate failure to allocate storage. [expr.new]p13.
450 // (We don't need to check for null when there's no new initializer and
451 // we're allocating a POD type).
452 bool NullCheckResult = NewFTy->hasEmptyExceptionSpec() &&
453 !(AllocType->isPODType() && !E->hasInitializer());
Anders Carlssond5536972009-05-31 20:21:44 +0000454
Anders Carlssondbee9a52009-06-01 00:05:16 +0000455 llvm::BasicBlock *NewNull = 0;
456 llvm::BasicBlock *NewNotNull = 0;
457 llvm::BasicBlock *NewEnd = 0;
458
459 llvm::Value *NewPtr = RV.getScalarVal();
460
Anders Carlsson11269042009-05-31 21:53:59 +0000461 if (NullCheckResult) {
Anders Carlssondbee9a52009-06-01 00:05:16 +0000462 NewNull = createBasicBlock("new.null");
463 NewNotNull = createBasicBlock("new.notnull");
464 NewEnd = createBasicBlock("new.end");
465
466 llvm::Value *IsNull =
467 Builder.CreateICmpEQ(NewPtr,
Owen Andersonf37b84b2009-07-31 20:28:54 +0000468 llvm::Constant::getNullValue(NewPtr->getType()),
Anders Carlssondbee9a52009-06-01 00:05:16 +0000469 "isnull");
470
471 Builder.CreateCondBr(IsNull, NewNull, NewNotNull);
472 EmitBlock(NewNotNull);
Anders Carlsson11269042009-05-31 21:53:59 +0000473 }
474
Anders Carlssondbee9a52009-06-01 00:05:16 +0000475 NewPtr = Builder.CreateBitCast(NewPtr, ConvertType(E->getType()));
Anders Carlsson11269042009-05-31 21:53:59 +0000476
Anders Carlsson7c294782009-05-31 20:56:36 +0000477 if (AllocType->isPODType()) {
Anders Carlsson26910f62009-06-01 00:26:14 +0000478 if (E->getNumConstructorArgs() > 0) {
Anders Carlsson7c294782009-05-31 20:56:36 +0000479 assert(E->getNumConstructorArgs() == 1 &&
480 "Can only have one argument to initializer of POD type.");
481
482 const Expr *Init = E->getConstructorArg(0);
483
Anders Carlsson5f93ccf2009-05-31 21:07:58 +0000484 if (!hasAggregateLLVMType(AllocType))
Anders Carlsson7c294782009-05-31 20:56:36 +0000485 Builder.CreateStore(EmitScalarExpr(Init), NewPtr);
Anders Carlsson5f93ccf2009-05-31 21:07:58 +0000486 else if (AllocType->isAnyComplexType())
487 EmitComplexExprIntoAddr(Init, NewPtr, AllocType.isVolatileQualified());
Anders Carlssoneb39b432009-05-31 21:12:26 +0000488 else
489 EmitAggExpr(Init, NewPtr, AllocType.isVolatileQualified());
Anders Carlsson7c294782009-05-31 20:56:36 +0000490 }
Anders Carlsson11269042009-05-31 21:53:59 +0000491 } else {
492 // Call the constructor.
493 CXXConstructorDecl *Ctor = E->getConstructor();
Anders Carlsson7c294782009-05-31 20:56:36 +0000494
Anders Carlsson11269042009-05-31 21:53:59 +0000495 EmitCXXConstructorCall(Ctor, Ctor_Complete, NewPtr,
496 E->constructor_arg_begin(),
497 E->constructor_arg_end());
Anders Carlssond5536972009-05-31 20:21:44 +0000498 }
Anders Carlsson11269042009-05-31 21:53:59 +0000499
Anders Carlssondbee9a52009-06-01 00:05:16 +0000500 if (NullCheckResult) {
501 Builder.CreateBr(NewEnd);
502 EmitBlock(NewNull);
503 Builder.CreateBr(NewEnd);
504 EmitBlock(NewEnd);
505
506 llvm::PHINode *PHI = Builder.CreatePHI(NewPtr->getType());
507 PHI->reserveOperandSpace(2);
508 PHI->addIncoming(NewPtr, NewNotNull);
Owen Andersonf37b84b2009-07-31 20:28:54 +0000509 PHI->addIncoming(llvm::Constant::getNullValue(NewPtr->getType()), NewNull);
Anders Carlssondbee9a52009-06-01 00:05:16 +0000510
511 NewPtr = PHI;
512 }
513
Anders Carlsson11269042009-05-31 21:53:59 +0000514 return NewPtr;
Anders Carlsson18e88bc2009-05-31 01:40:14 +0000515}
516
Anders Carlsson133fdaf2009-08-16 21:13:42 +0000517void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
518 if (E->isArrayForm()) {
519 ErrorUnsupported(E, "delete[] expression");
520 return;
521 };
522
523 QualType DeleteTy =
524 E->getArgument()->getType()->getAs<PointerType>()->getPointeeType();
525
526 llvm::Value *Ptr = EmitScalarExpr(E->getArgument());
527
528 // Null check the pointer.
529 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
530 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
531
532 llvm::Value *IsNull =
533 Builder.CreateICmpEQ(Ptr, llvm::Constant::getNullValue(Ptr->getType()),
534 "isnull");
535
536 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
537 EmitBlock(DeleteNotNull);
538
539 // Call the destructor if necessary.
540 if (const RecordType *RT = DeleteTy->getAs<RecordType>()) {
541 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(RT->getDecl())) {
542 if (!RD->hasTrivialDestructor()) {
543 const CXXDestructorDecl *Dtor = RD->getDestructor(getContext());
544 if (Dtor->isVirtual()) {
545 ErrorUnsupported(E, "delete expression with virtual destructor");
546 return;
547 }
548
549 EmitCXXDestructorCall(Dtor, Dtor_Complete, Ptr);
550 }
551 }
552 }
553
554 // Call delete.
555 FunctionDecl *DeleteFD = E->getOperatorDelete();
556 const FunctionProtoType *DeleteFTy =
557 DeleteFD->getType()->getAsFunctionProtoType();
558
559 CallArgList DeleteArgs;
560
561 QualType ArgTy = DeleteFTy->getArgType(0);
562 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
563 DeleteArgs.push_back(std::make_pair(RValue::get(DeletePtr), ArgTy));
564
565 // Emit the call to delete.
566 EmitCall(CGM.getTypes().getFunctionInfo(DeleteFTy->getResultType(),
567 DeleteArgs),
568 CGM.GetAddrOfFunction(GlobalDecl(DeleteFD)),
569 DeleteArgs, DeleteFD);
570
571 EmitBlock(DeleteEnd);
572}
573
Anders Carlsson4811c302009-04-17 01:58:57 +0000574static bool canGenerateCXXstructor(const CXXRecordDecl *RD,
575 ASTContext &Context) {
Anders Carlsson8496c692009-04-15 21:02:13 +0000576 // The class has base classes - we don't support that right now.
577 if (RD->getNumBases() > 0)
578 return false;
579
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000580 for (CXXRecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
581 I != E; ++I) {
Anders Carlsson8496c692009-04-15 21:02:13 +0000582 // We don't support ctors for fields that aren't POD.
583 if (!I->getType()->isPODType())
584 return false;
585 }
586
587 return true;
588}
589
Anders Carlsson652951a2009-04-15 15:55:24 +0000590void CodeGenModule::EmitCXXConstructors(const CXXConstructorDecl *D) {
Anders Carlsson4811c302009-04-17 01:58:57 +0000591 if (!canGenerateCXXstructor(D->getParent(), getContext())) {
Anders Carlsson8496c692009-04-15 21:02:13 +0000592 ErrorUnsupported(D, "C++ constructor", true);
593 return;
594 }
Anders Carlsson652951a2009-04-15 15:55:24 +0000595
Anders Carlsson1764af42009-05-05 04:44:02 +0000596 EmitGlobal(GlobalDecl(D, Ctor_Complete));
597 EmitGlobal(GlobalDecl(D, Ctor_Base));
Anders Carlsson652951a2009-04-15 15:55:24 +0000598}
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000599
Anders Carlsson4811c302009-04-17 01:58:57 +0000600void CodeGenModule::EmitCXXConstructor(const CXXConstructorDecl *D,
601 CXXCtorType Type) {
602
603 llvm::Function *Fn = GetAddrOfCXXConstructor(D, Type);
604
605 CodeGenFunction(*this).GenerateCode(D, Fn);
606
607 SetFunctionDefinitionAttributes(D, Fn);
608 SetLLVMFunctionAttributesForDefinition(D, Fn);
609}
610
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000611llvm::Function *
612CodeGenModule::GetAddrOfCXXConstructor(const CXXConstructorDecl *D,
613 CXXCtorType Type) {
614 const llvm::FunctionType *FTy =
615 getTypes().GetFunctionType(getTypes().getFunctionInfo(D), false);
616
617 const char *Name = getMangledCXXCtorName(D, Type);
Chris Lattner80f39cc2009-05-12 21:21:08 +0000618 return cast<llvm::Function>(
619 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000620}
Anders Carlsson4811c302009-04-17 01:58:57 +0000621
622const char *CodeGenModule::getMangledCXXCtorName(const CXXConstructorDecl *D,
623 CXXCtorType Type) {
624 llvm::SmallString<256> Name;
625 llvm::raw_svector_ostream Out(Name);
626 mangleCXXCtor(D, Type, Context, Out);
627
628 Name += '\0';
629 return UniqueMangledName(Name.begin(), Name.end());
630}
631
632void CodeGenModule::EmitCXXDestructors(const CXXDestructorDecl *D) {
633 if (!canGenerateCXXstructor(D->getParent(), getContext())) {
634 ErrorUnsupported(D, "C++ destructor", true);
635 return;
636 }
637
638 EmitCXXDestructor(D, Dtor_Complete);
639 EmitCXXDestructor(D, Dtor_Base);
640}
641
642void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *D,
643 CXXDtorType Type) {
644 llvm::Function *Fn = GetAddrOfCXXDestructor(D, Type);
645
646 CodeGenFunction(*this).GenerateCode(D, Fn);
647
648 SetFunctionDefinitionAttributes(D, Fn);
649 SetLLVMFunctionAttributesForDefinition(D, Fn);
650}
651
652llvm::Function *
653CodeGenModule::GetAddrOfCXXDestructor(const CXXDestructorDecl *D,
654 CXXDtorType Type) {
655 const llvm::FunctionType *FTy =
656 getTypes().GetFunctionType(getTypes().getFunctionInfo(D), false);
657
658 const char *Name = getMangledCXXDtorName(D, Type);
Chris Lattner80f39cc2009-05-12 21:21:08 +0000659 return cast<llvm::Function>(
660 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlsson4811c302009-04-17 01:58:57 +0000661}
662
663const char *CodeGenModule::getMangledCXXDtorName(const CXXDestructorDecl *D,
664 CXXDtorType Type) {
665 llvm::SmallString<256> Name;
666 llvm::raw_svector_ostream Out(Name);
667 mangleCXXDtor(D, Type, Context, Out);
668
669 Name += '\0';
670 return UniqueMangledName(Name.begin(), Name.end());
671}
Fariborz Jahanian5400e022009-07-20 23:18:55 +0000672
Mike Stump00df7d32009-07-31 23:15:31 +0000673llvm::Constant *CodeGenFunction::GenerateRtti(const CXXRecordDecl *RD) {
674 llvm::Type *Ptr8Ty;
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000675 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump69a12322009-08-04 20:06:48 +0000676 llvm::Constant *Rtti = llvm::Constant::getNullValue(Ptr8Ty);
Mike Stump00df7d32009-07-31 23:15:31 +0000677
678 if (!getContext().getLangOptions().Rtti)
Mike Stump69a12322009-08-04 20:06:48 +0000679 return Rtti;
Mike Stump00df7d32009-07-31 23:15:31 +0000680
681 llvm::SmallString<256> OutName;
682 llvm::raw_svector_ostream Out(OutName);
683 QualType ClassTy;
Mike Stumpe7545622009-08-07 18:05:12 +0000684 ClassTy = getContext().getTagDeclType(RD);
Mike Stump00df7d32009-07-31 23:15:31 +0000685 mangleCXXRtti(ClassTy, getContext(), Out);
686 const char *Name = OutName.c_str();
687 llvm::GlobalVariable::LinkageTypes linktype;
688 linktype = llvm::GlobalValue::WeakAnyLinkage;
689 std::vector<llvm::Constant *> info;
Mike Stump2eade572009-08-13 22:53:07 +0000690 // assert(0 && "FIXME: implement rtti descriptor");
Mike Stump00df7d32009-07-31 23:15:31 +0000691 // FIXME: descriptor
692 info.push_back(llvm::Constant::getNullValue(Ptr8Ty));
Mike Stump2eade572009-08-13 22:53:07 +0000693 // assert(0 && "FIXME: implement rtti ts");
Mike Stump00df7d32009-07-31 23:15:31 +0000694 // FIXME: TS
695 info.push_back(llvm::Constant::getNullValue(Ptr8Ty));
696
697 llvm::Constant *C;
698 llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, info.size());
699 C = llvm::ConstantArray::get(type, info);
Mike Stump69a12322009-08-04 20:06:48 +0000700 Rtti = new llvm::GlobalVariable(CGM.getModule(), type, true, linktype, C,
Mike Stump00df7d32009-07-31 23:15:31 +0000701 Name);
Mike Stump69a12322009-08-04 20:06:48 +0000702 Rtti = llvm::ConstantExpr::getBitCast(Rtti, Ptr8Ty);
703 return Rtti;
Mike Stump00df7d32009-07-31 23:15:31 +0000704}
705
Mike Stumpf640de52009-08-12 23:14:12 +0000706void CodeGenFunction::GenerateVcalls(std::vector<llvm::Constant *> &methods,
707 const CXXRecordDecl *RD,
708 llvm::Type *Ptr8Ty) {
709 typedef CXXRecordDecl::method_iterator meth_iter;
710 llvm::Constant *m;
Mike Stump23b238e2009-08-12 23:25:18 +0000711
Mike Stump1a529ac2009-08-13 18:39:54 +0000712 // FIXME: audit order
Mike Stump23b238e2009-08-12 23:25:18 +0000713 for (meth_iter mi = RD->method_begin(),
714 me = RD->method_end(); mi != me; ++mi) {
715 if (mi->isVirtual()) {
716 // FIXME: vcall: offset for virtual base for this function
717 m = llvm::Constant::getNullValue(Ptr8Ty);
718 methods.push_back(m);
Mike Stumpf640de52009-08-12 23:14:12 +0000719 }
Mike Stump23b238e2009-08-12 23:25:18 +0000720 }
Mike Stumpf640de52009-08-12 23:14:12 +0000721}
722
Mike Stumpdecd7812009-08-12 23:00:59 +0000723void CodeGenFunction::GenerateMethods(std::vector<llvm::Constant *> &methods,
724 const CXXRecordDecl *RD,
725 llvm::Type *Ptr8Ty) {
726 typedef CXXRecordDecl::method_iterator meth_iter;
727 llvm::Constant *m;
728
729 for (meth_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
730 ++mi) {
731 if (mi->isVirtual()) {
732 m = CGM.GetAddrOfFunction(GlobalDecl(*mi));
733 m = llvm::ConstantExpr::getBitCast(m, Ptr8Ty);
734 methods.push_back(m);
735 }
736 }
737}
738
Mike Stump2eade572009-08-13 22:53:07 +0000739void CodeGenFunction::GenerateVtableForVBases(const CXXRecordDecl *RD,
Mike Stumpc57b8272009-08-16 01:46:26 +0000740 const CXXRecordDecl *Class,
Mike Stump2eade572009-08-13 22:53:07 +0000741 llvm::Constant *rtti,
742 std::vector<llvm::Constant *> &methods,
743 llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary) {
744 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
745 e = RD->bases_end(); i != e; ++i) {
746 const CXXRecordDecl *Base =
747 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
748 if (i->isVirtual() && !IndirectPrimary.count(Base)) {
749 // Mark it so we don't output it twice.
750 IndirectPrimary.insert(Base);
Mike Stumpc57b8272009-08-16 01:46:26 +0000751 GenerateVtableForBase(Base, true, 0, Class, rtti, methods, true,
Mike Stump2eade572009-08-13 22:53:07 +0000752 IndirectPrimary);
753 }
754 if (Base->getNumVBases())
Mike Stumpc57b8272009-08-16 01:46:26 +0000755 GenerateVtableForVBases(Base, Class, rtti, methods, IndirectPrimary);
756 }
757}
758
759void CodeGenFunction::GenerateVBaseOffsets(
760 std::vector<llvm::Constant *> &methods, const CXXRecordDecl *RD,
761 llvm::SmallSet<const CXXRecordDecl *, 32> &SeenVBase,
762 uint64_t Offset, const ASTRecordLayout &BLayout, llvm::Type *Ptr8Ty) {
763 for (CXXRecordDecl::base_class_const_iterator i =RD->bases_begin(),
764 e = RD->bases_end(); i != e; ++i) {
765 const CXXRecordDecl *Base =
766 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
767 if (i->isVirtual() && !SeenVBase.count(Base)) {
768 SeenVBase.insert(Base);
769 int64_t BaseOffset = Offset/8 + BLayout.getVBaseClassOffset(Base) / 8;
770 llvm::Constant *m;
771 m = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), BaseOffset);
772 m = llvm::ConstantExpr::getIntToPtr(m, Ptr8Ty);
773 methods.push_back(m);
774 }
775 GenerateVBaseOffsets(methods, Base, SeenVBase, Offset, BLayout, Ptr8Ty);
Mike Stump2eade572009-08-13 22:53:07 +0000776 }
777}
778
Mike Stumpd6f22d82009-08-06 15:50:11 +0000779void CodeGenFunction::GenerateVtableForBase(const CXXRecordDecl *RD,
Mike Stumpc57b8272009-08-16 01:46:26 +0000780 bool forPrimary,
781 int64_t Offset,
Mike Stump71e21302009-08-06 21:49:36 +0000782 const CXXRecordDecl *Class,
783 llvm::Constant *rtti,
784 std::vector<llvm::Constant *> &methods,
Mike Stumpa8b58292009-08-12 17:42:21 +0000785 bool ForVirtualBase,
786 llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary) {
Mike Stumpd6f22d82009-08-06 15:50:11 +0000787 llvm::Type *Ptr8Ty;
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000788 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump71e21302009-08-06 21:49:36 +0000789 llvm::Constant *m = llvm::Constant::getNullValue(Ptr8Ty);
790
791 if (RD && !RD->isDynamicClass())
792 return;
Mike Stump96599e22009-08-06 23:48:32 +0000793
Mike Stumpc57b8272009-08-16 01:46:26 +0000794 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
795 const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
796 const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
Mike Stump7df1ff12009-08-11 04:03:59 +0000797
Mike Stumpc57b8272009-08-16 01:46:26 +0000798 // The virtual base offsets come first...
799 // FIXME: Audit, is this right?
800 if (forPrimary || !PrimaryBaseWasVirtual) {
801 llvm::SmallSet<const CXXRecordDecl *, 32> SeenVBase;
802 std::vector<llvm::Constant *> offsets;
803 GenerateVBaseOffsets(offsets, RD, SeenVBase, Offset, Layout, Ptr8Ty);
804 for (std::vector<llvm::Constant *>::reverse_iterator i = offsets.rbegin(),
805 e = offsets.rend(); i != e; ++i)
806 methods.push_back(*i);
Mike Stump7df1ff12009-08-11 04:03:59 +0000807 }
808
Mike Stumpc57b8272009-08-16 01:46:26 +0000809 if (forPrimary || ForVirtualBase) {
810 // then comes the the vcall offsets for all our functions...
811 GenerateVcalls(methods, RD, Ptr8Ty);
Mike Stump71e21302009-08-06 21:49:36 +0000812 }
Mike Stumpc57b8272009-08-16 01:46:26 +0000813
814 bool Top = true;
815
816 // vtables are composed from the chain of primaries.
817 if (PrimaryBase) {
818 if (PrimaryBaseWasVirtual)
819 IndirectPrimary.insert(PrimaryBase);
820 Top = false;
821 GenerateVtableForBase(PrimaryBase, true, Offset, Class, rtti, methods,
822 PrimaryBaseWasVirtual, IndirectPrimary);
823 }
824
Mike Stump7df1ff12009-08-11 04:03:59 +0000825 // then come the vcall offsets for all our virtual bases.
Mike Stumpc57b8272009-08-16 01:46:26 +0000826 if (!1 && ForVirtualBase)
Mike Stumpf640de52009-08-12 23:14:12 +0000827 GenerateVcalls(methods, RD, Ptr8Ty);
Mike Stump71e21302009-08-06 21:49:36 +0000828
Mike Stumpc57b8272009-08-16 01:46:26 +0000829 if (Top) {
830 int64_t BaseOffset;
831 if (ForVirtualBase) {
832 const ASTRecordLayout &BLayout = getContext().getASTRecordLayout(Class);
833 BaseOffset = -(BLayout.getVBaseClassOffset(RD) / 8);
834 } else
835 BaseOffset = -Offset/8;
836 m = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), BaseOffset);
837 m = llvm::ConstantExpr::getIntToPtr(m, Ptr8Ty);
Mike Stump7df1ff12009-08-11 04:03:59 +0000838 methods.push_back(m);
839 methods.push_back(rtti);
840 }
841
Mike Stump71e21302009-08-06 21:49:36 +0000842 // And add the virtuals for the class to the primary vtable.
Mike Stumpc57b8272009-08-16 01:46:26 +0000843 GenerateMethods(methods, RD, Ptr8Ty);
844
845 // and then the non-virtual bases.
846 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
847 e = RD->bases_end(); i != e; ++i) {
848 if (i->isVirtual())
849 continue;
850 const CXXRecordDecl *Base =
851 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
852 if (Base != PrimaryBase || PrimaryBaseWasVirtual) {
853 uint64_t o = Offset + Layout.getBaseClassOffset(Base);
854 GenerateVtableForBase(Base, true, o, Class, rtti, methods, false,
855 IndirectPrimary);
856 }
857 }
Mike Stumpd6f22d82009-08-06 15:50:11 +0000858}
859
Mike Stump7e8c9932009-07-31 18:25:34 +0000860llvm::Value *CodeGenFunction::GenerateVtable(const CXXRecordDecl *RD) {
Mike Stump7e8c9932009-07-31 18:25:34 +0000861 llvm::SmallString<256> OutName;
862 llvm::raw_svector_ostream Out(OutName);
863 QualType ClassTy;
Mike Stumpe7545622009-08-07 18:05:12 +0000864 ClassTy = getContext().getTagDeclType(RD);
Mike Stump7e8c9932009-07-31 18:25:34 +0000865 mangleCXXVtable(ClassTy, getContext(), Out);
866 const char *Name = OutName.c_str();
Mike Stumpd0672782009-07-31 21:43:43 +0000867 llvm::GlobalVariable::LinkageTypes linktype;
868 linktype = llvm::GlobalValue::WeakAnyLinkage;
869 std::vector<llvm::Constant *> methods;
Mike Stumpc57b8272009-08-16 01:46:26 +0000870 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
Mike Stump8b82eeb2009-08-05 22:37:18 +0000871 int64_t Offset = 0;
Mike Stump71e21302009-08-06 21:49:36 +0000872 llvm::Constant *rtti = GenerateRtti(RD);
873
874 Offset += LLVMPointerWidth;
875 Offset += LLVMPointerWidth;
Mike Stump8b82eeb2009-08-05 22:37:18 +0000876
Mike Stumpa8b58292009-08-12 17:42:21 +0000877 llvm::SmallSet<const CXXRecordDecl *, 32> IndirectPrimary;
Mike Stumpf3371782009-08-04 21:58:42 +0000878
Mike Stumpc57b8272009-08-16 01:46:26 +0000879 // First comes the vtables for all the non-virtual bases...
880 GenerateVtableForBase(RD, true, 0, RD, rtti, methods, false, IndirectPrimary);
Mike Stump42368bb2009-08-14 01:44:03 +0000881
Mike Stumpc57b8272009-08-16 01:46:26 +0000882 // then the vtables for all the virtual bases.
883 GenerateVtableForVBases(RD, RD, rtti, methods, IndirectPrimary);
Mike Stumpf3371782009-08-04 21:58:42 +0000884
Mike Stumpd0672782009-07-31 21:43:43 +0000885 llvm::Constant *C;
886 llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, methods.size());
887 C = llvm::ConstantArray::get(type, methods);
888 llvm::Value *vtable = new llvm::GlobalVariable(CGM.getModule(), type, true,
889 linktype, C, Name);
Mike Stump7e8c9932009-07-31 18:25:34 +0000890 vtable = Builder.CreateBitCast(vtable, Ptr8Ty);
Mike Stump7e8c9932009-07-31 18:25:34 +0000891 vtable = Builder.CreateGEP(vtable,
Mike Stumpc57b8272009-08-16 01:46:26 +0000892 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stump8b82eeb2009-08-05 22:37:18 +0000893 Offset/8));
Mike Stump7e8c9932009-07-31 18:25:34 +0000894 return vtable;
895}
896
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000897/// EmitClassMemberwiseCopy - This routine generates code to copy a class
898/// object from SrcValue to DestValue. Copying can be either a bitwise copy
899/// of via a copy constructor call.
900void CodeGenFunction::EmitClassMemberwiseCopy(
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000901 llvm::Value *Dest, llvm::Value *Src,
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000902 const CXXRecordDecl *ClassDecl,
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000903 const CXXRecordDecl *BaseClassDecl, QualType Ty) {
904 if (ClassDecl) {
905 Dest = AddressCXXOfBaseClass(Dest, ClassDecl, BaseClassDecl);
906 Src = AddressCXXOfBaseClass(Src, ClassDecl, BaseClassDecl) ;
907 }
908 if (BaseClassDecl->hasTrivialCopyConstructor()) {
909 EmitAggregateCopy(Dest, Src, Ty);
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000910 return;
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000911 }
912
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000913 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanianfbe08772009-08-08 00:59:58 +0000914 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000915 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
916 Ctor_Complete);
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000917 CallArgList CallArgs;
918 // Push the this (Dest) ptr.
919 CallArgs.push_back(std::make_pair(RValue::get(Dest),
920 BaseCopyCtor->getThisType(getContext())));
921
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000922 // Push the Src ptr.
923 CallArgs.push_back(std::make_pair(RValue::get(Src),
Fariborz Jahanian0dfaec42009-08-10 17:20:45 +0000924 BaseCopyCtor->getParamDecl(0)->getType()));
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000925 QualType ResultType =
926 BaseCopyCtor->getType()->getAsFunctionType()->getResultType();
927 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
928 Callee, CallArgs, BaseCopyCtor);
929 }
930}
Fariborz Jahaniane39fab62009-08-10 18:46:38 +0000931
Fariborz Jahanian04500242009-08-12 23:34:46 +0000932/// EmitClassCopyAssignment - This routine generates code to copy assign a class
933/// object from SrcValue to DestValue. Assignment can be either a bitwise
934/// assignment of via an assignment operator call.
935void CodeGenFunction::EmitClassCopyAssignment(
936 llvm::Value *Dest, llvm::Value *Src,
937 const CXXRecordDecl *ClassDecl,
938 const CXXRecordDecl *BaseClassDecl,
939 QualType Ty) {
940 if (ClassDecl) {
941 Dest = AddressCXXOfBaseClass(Dest, ClassDecl, BaseClassDecl);
942 Src = AddressCXXOfBaseClass(Src, ClassDecl, BaseClassDecl) ;
943 }
944 if (BaseClassDecl->hasTrivialCopyAssignment()) {
945 EmitAggregateCopy(Dest, Src, Ty);
946 return;
947 }
948
949 const CXXMethodDecl *MD = 0;
Fariborz Jahanian84bd6532009-08-13 00:53:36 +0000950 bool ConstCopyAssignOp = BaseClassDecl->hasConstCopyAssignment(getContext(),
951 MD);
952 assert(ConstCopyAssignOp && "EmitClassCopyAssignment - missing copy assign");
953 (void)ConstCopyAssignOp;
954
955 const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
956 const llvm::Type *LTy =
957 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
958 FPT->isVariadic());
959 llvm::Constant *Callee = CGM.GetAddrOfFunction(GlobalDecl(MD), LTy);
Fariborz Jahanian04500242009-08-12 23:34:46 +0000960
Fariborz Jahanian84bd6532009-08-13 00:53:36 +0000961 CallArgList CallArgs;
962 // Push the this (Dest) ptr.
963 CallArgs.push_back(std::make_pair(RValue::get(Dest),
964 MD->getThisType(getContext())));
Fariborz Jahanian04500242009-08-12 23:34:46 +0000965
Fariborz Jahanian84bd6532009-08-13 00:53:36 +0000966 // Push the Src ptr.
967 CallArgs.push_back(std::make_pair(RValue::get(Src),
968 MD->getParamDecl(0)->getType()));
969 QualType ResultType =
970 MD->getType()->getAsFunctionType()->getResultType();
971 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
972 Callee, CallArgs, MD);
Fariborz Jahanian04500242009-08-12 23:34:46 +0000973}
974
Fariborz Jahaniane39fab62009-08-10 18:46:38 +0000975/// SynthesizeDefaultConstructor - synthesize a default constructor
976void
977CodeGenFunction::SynthesizeDefaultConstructor(const CXXConstructorDecl *CD,
978 const FunctionDecl *FD,
979 llvm::Function *Fn,
980 const FunctionArgList &Args) {
981 StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
982 EmitCtorPrologue(CD);
983 FinishFunction();
984}
985
Fariborz Jahanianab840aa2009-08-08 19:31:03 +0000986/// SynthesizeCXXCopyConstructor - This routine implicitly defines body of a copy
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000987/// constructor, in accordance with section 12.8 (p7 and p8) of C++03
988/// The implicitly-defined copy constructor for class X performs a memberwise
989/// copy of its subobjects. The order of copying is the same as the order
990/// of initialization of bases and members in a user-defined constructor
991/// Each subobject is copied in the manner appropriate to its type:
992/// if the subobject is of class type, the copy constructor for the class is
993/// used;
994/// if the subobject is an array, each element is copied, in the manner
995/// appropriate to the element type;
996/// if the subobject is of scalar type, the built-in assignment operator is
997/// used.
998/// Virtual base class subobjects shall be copied only once by the
999/// implicitly-defined copy constructor
1000
Fariborz Jahanianab840aa2009-08-08 19:31:03 +00001001void CodeGenFunction::SynthesizeCXXCopyConstructor(const CXXConstructorDecl *CD,
1002 const FunctionDecl *FD,
1003 llvm::Function *Fn,
Fariborz Jahanianfc27d292009-08-07 23:51:33 +00001004 const FunctionArgList &Args) {
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001005 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
1006 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
Fariborz Jahanianab840aa2009-08-08 19:31:03 +00001007 "SynthesizeCXXCopyConstructor - copy constructor has definition already");
1008 StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001009
Fariborz Jahanian5e778e32009-08-08 00:15:41 +00001010 FunctionArgList::const_iterator i = Args.begin();
1011 const VarDecl *ThisArg = i->first;
1012 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1013 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1014 const VarDecl *SrcArg = (i+1)->first;
1015 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1016 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
1017
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001018 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1019 Base != ClassDecl->bases_end(); ++Base) {
1020 // FIXME. copy constrution of virtual base NYI
1021 if (Base->isVirtual())
1022 continue;
Fariborz Jahanianfc27d292009-08-07 23:51:33 +00001023
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001024 CXXRecordDecl *BaseClassDecl
1025 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahaniancefe5922009-08-08 23:32:22 +00001026 EmitClassMemberwiseCopy(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1027 Base->getType());
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001028 }
1029
Fariborz Jahanian5e778e32009-08-08 00:15:41 +00001030 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1031 FieldEnd = ClassDecl->field_end();
1032 Field != FieldEnd; ++Field) {
1033 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
1034
1035 // FIXME. How about copying arrays!
1036 assert(!getContext().getAsArrayType(FieldType) &&
1037 "FIXME. Copying arrays NYI");
Fariborz Jahanianfef75cb2009-08-11 18:49:54 +00001038
Fariborz Jahanian5e778e32009-08-08 00:15:41 +00001039 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1040 CXXRecordDecl *FieldClassDecl
1041 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1042 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1043 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
Fariborz Jahaniancefe5922009-08-08 23:32:22 +00001044
Fariborz Jahanian5e778e32009-08-08 00:15:41 +00001045 EmitClassMemberwiseCopy(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahaniancefe5922009-08-08 23:32:22 +00001046 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanian5e778e32009-08-08 00:15:41 +00001047 continue;
1048 }
Fariborz Jahanian08d99e92009-08-10 18:34:26 +00001049 // Do a built-in assignment of scalar data members.
1050 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1051 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1052 RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
1053 EmitStoreThroughLValue(RVRHS, LHS, FieldType);
Fariborz Jahanian5e778e32009-08-08 00:15:41 +00001054 }
Fariborz Jahanianab840aa2009-08-08 19:31:03 +00001055 FinishFunction();
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001056}
1057
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001058/// SynthesizeCXXCopyAssignment - Implicitly define copy assignment operator.
1059/// Before the implicitly-declared copy assignment operator for a class is
1060/// implicitly defined, all implicitly- declared copy assignment operators for
1061/// its direct base classes and its nonstatic data members shall have been
1062/// implicitly defined. [12.8-p12]
1063/// The implicitly-defined copy assignment operator for class X performs
1064/// memberwise assignment of its subob- jects. The direct base classes of X are
1065/// assigned first, in the order of their declaration in
1066/// the base-specifier-list, and then the immediate nonstatic data members of X
1067/// are assigned, in the order in which they were declared in the class
1068/// definition.Each subobject is assigned in the manner appropriate to its type:
Fariborz Jahanian04500242009-08-12 23:34:46 +00001069/// if the subobject is of class type, the copy assignment operator for the
1070/// class is used (as if by explicit qualification; that is, ignoring any
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001071/// possible virtual overriding functions in more derived classes);
Fariborz Jahanian04500242009-08-12 23:34:46 +00001072///
1073/// if the subobject is an array, each element is assigned, in the manner
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001074/// appropriate to the element type;
Fariborz Jahanian04500242009-08-12 23:34:46 +00001075///
1076/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001077/// used.
1078void CodeGenFunction::SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
1079 const FunctionDecl *FD,
1080 llvm::Function *Fn,
1081 const FunctionArgList &Args) {
Fariborz Jahanian04500242009-08-12 23:34:46 +00001082
1083 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
1084 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
1085 "SynthesizeCXXCopyAssignment - copy assignment has user declaration");
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001086 StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
1087
Fariborz Jahanian04500242009-08-12 23:34:46 +00001088 FunctionArgList::const_iterator i = Args.begin();
1089 const VarDecl *ThisArg = i->first;
1090 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1091 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1092 const VarDecl *SrcArg = (i+1)->first;
1093 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1094 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
1095
1096 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1097 Base != ClassDecl->bases_end(); ++Base) {
1098 // FIXME. copy assignment of virtual base NYI
1099 if (Base->isVirtual())
1100 continue;
1101
1102 CXXRecordDecl *BaseClassDecl
1103 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1104 EmitClassCopyAssignment(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1105 Base->getType());
1106 }
1107
1108 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1109 FieldEnd = ClassDecl->field_end();
1110 Field != FieldEnd; ++Field) {
1111 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
1112
1113 // FIXME. How about copy assignment of arrays!
1114 assert(!getContext().getAsArrayType(FieldType) &&
1115 "FIXME. Copy assignment of arrays NYI");
1116
1117 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1118 CXXRecordDecl *FieldClassDecl
1119 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1120 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1121 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1122
1123 EmitClassCopyAssignment(LHS.getAddress(), RHS.getAddress(),
1124 0 /*ClassDecl*/, FieldClassDecl, FieldType);
1125 continue;
1126 }
1127 // Do a built-in assignment of scalar data members.
1128 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1129 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1130 RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
1131 EmitStoreThroughLValue(RVRHS, LHS, FieldType);
Fariborz Jahanianc47460d2009-08-14 00:01:54 +00001132 }
1133
1134 // return *this;
1135 Builder.CreateStore(LoadOfThis, ReturnValue);
Fariborz Jahanian04500242009-08-12 23:34:46 +00001136
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001137 FinishFunction();
1138}
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001139
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001140/// EmitCtorPrologue - This routine generates necessary code to initialize
1141/// base classes and non-static data members belonging to this constructor.
1142void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD) {
Fariborz Jahaniana0107de2009-07-25 21:12:28 +00001143 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
Mike Stump05207212009-08-06 13:41:24 +00001144 // FIXME: Add vbase initialization
Mike Stump7e8c9932009-07-31 18:25:34 +00001145 llvm::Value *LoadOfThis = 0;
Fariborz Jahanian70277012009-07-28 18:09:28 +00001146
Fariborz Jahaniana0107de2009-07-25 21:12:28 +00001147 for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001148 E = CD->init_end();
1149 B != E; ++B) {
1150 CXXBaseOrMemberInitializer *Member = (*B);
1151 if (Member->isBaseInitializer()) {
Mike Stump7e8c9932009-07-31 18:25:34 +00001152 LoadOfThis = LoadCXXThis();
Fariborz Jahanian70277012009-07-28 18:09:28 +00001153 Type *BaseType = Member->getBaseClass();
1154 CXXRecordDecl *BaseClassDecl =
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001155 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Fariborz Jahanian70277012009-07-28 18:09:28 +00001156 llvm::Value *V = AddressCXXOfBaseClass(LoadOfThis, ClassDecl,
1157 BaseClassDecl);
Fariborz Jahaniana0107de2009-07-25 21:12:28 +00001158 EmitCXXConstructorCall(Member->getConstructor(),
1159 Ctor_Complete, V,
1160 Member->const_arg_begin(),
1161 Member->const_arg_end());
Mike Stump487ce382009-07-30 22:28:39 +00001162 } else {
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001163 // non-static data member initilaizers.
1164 FieldDecl *Field = Member->getMember();
1165 QualType FieldType = getContext().getCanonicalType((Field)->getType());
1166 assert(!getContext().getAsArrayType(FieldType)
1167 && "FIXME. Field arrays initialization unsupported");
Fariborz Jahanian32cea8b2009-08-10 23:56:17 +00001168
Mike Stump7e8c9932009-07-31 18:25:34 +00001169 LoadOfThis = LoadCXXThis();
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001170 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001171 if (FieldType->getAs<RecordType>()) {
Fariborz Jahanianfef75cb2009-08-11 18:49:54 +00001172 if (!Field->isAnonymousStructOrUnion()) {
Fariborz Jahanian56baceb2009-07-24 17:57:02 +00001173 assert(Member->getConstructor() &&
1174 "EmitCtorPrologue - no constructor to initialize member");
1175 EmitCXXConstructorCall(Member->getConstructor(),
1176 Ctor_Complete, LHS.getAddress(),
1177 Member->const_arg_begin(),
1178 Member->const_arg_end());
Fariborz Jahanianfef75cb2009-08-11 18:49:54 +00001179 continue;
1180 }
1181 else {
1182 // Initializing an anonymous union data member.
1183 FieldDecl *anonMember = Member->getAnonUnionMember();
1184 LHS = EmitLValueForField(LHS.getAddress(), anonMember, false, 0);
1185 FieldType = anonMember->getType();
1186 }
Fariborz Jahanian56baceb2009-07-24 17:57:02 +00001187 }
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001188
1189 assert(Member->getNumArgs() == 1 && "Initializer count must be 1 only");
Fariborz Jahanian56baceb2009-07-24 17:57:02 +00001190 Expr *RhsExpr = *Member->arg_begin();
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001191 llvm::Value *RHS = EmitScalarExpr(RhsExpr, true);
Fariborz Jahanian32cea8b2009-08-10 23:56:17 +00001192 EmitStoreThroughLValue(RValue::get(RHS), LHS, FieldType);
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001193 }
1194 }
Mike Stump7e8c9932009-07-31 18:25:34 +00001195
Fariborz Jahanian63d6c232009-08-15 18:55:17 +00001196 if (!CD->isTrivial() && CD->getNumBaseOrMemberInitializers() == 0)
1197 // Nontrivial default constructor with no initializer list. It may still
1198 // contain non-static data members which require construction.
1199 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1200 FieldEnd = ClassDecl->field_end();
1201 Field != FieldEnd; ++Field) {
1202 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
1203 if (!FieldType->getAs<RecordType>() || Field->isAnonymousStructOrUnion())
1204 continue;
1205 const RecordType *ClassRec = FieldType->getAs<RecordType>();
1206 if (CXXRecordDecl *MemberClassDecl =
1207 dyn_cast<CXXRecordDecl>(ClassRec->getDecl())) {
1208 if (MemberClassDecl->hasTrivialConstructor())
1209 continue;
1210 if (CXXConstructorDecl *MamberCX =
1211 MemberClassDecl->getDefaultConstructor(getContext())) {
1212 LoadOfThis = LoadCXXThis();
1213 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1214 EmitCXXConstructorCall(MamberCX, Ctor_Complete, LHS.getAddress(), 0, 0);
1215 }
1216 }
1217 }
1218
Mike Stump7e8c9932009-07-31 18:25:34 +00001219 // Initialize the vtable pointer
Mike Stumpeec46a72009-08-05 22:59:44 +00001220 if (ClassDecl->isDynamicClass()) {
Mike Stump7e8c9932009-07-31 18:25:34 +00001221 if (!LoadOfThis)
1222 LoadOfThis = LoadCXXThis();
1223 llvm::Value *VtableField;
1224 llvm::Type *Ptr8Ty, *PtrPtr8Ty;
Owen Anderson3f5cc0a2009-08-13 21:57:51 +00001225 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump7e8c9932009-07-31 18:25:34 +00001226 PtrPtr8Ty = llvm::PointerType::get(Ptr8Ty, 0);
1227 VtableField = Builder.CreateBitCast(LoadOfThis, PtrPtr8Ty);
1228 llvm::Value *vtable = GenerateVtable(ClassDecl);
1229 Builder.CreateStore(vtable, VtableField);
1230 }
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001231}
Fariborz Jahanian36a0ec02009-07-30 17:49:11 +00001232
1233/// EmitDtorEpilogue - Emit all code that comes at the end of class's
1234/// destructor. This is to call destructors on members and base classes
1235/// in reverse order of their construction.
1236void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD) {
1237 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(DD->getDeclContext());
1238 assert(!ClassDecl->isPolymorphic() &&
1239 "FIXME. polymorphic destruction not supported");
1240 (void)ClassDecl; // prevent warning.
1241
1242 for (CXXDestructorDecl::destr_const_iterator *B = DD->destr_begin(),
1243 *E = DD->destr_end(); B != E; ++B) {
1244 uintptr_t BaseOrMember = (*B);
1245 if (DD->isMemberToDestroy(BaseOrMember)) {
1246 FieldDecl *FD = DD->getMemberToDestroy(BaseOrMember);
1247 QualType FieldType = getContext().getCanonicalType((FD)->getType());
1248 assert(!getContext().getAsArrayType(FieldType)
1249 && "FIXME. Field arrays destruction unsupported");
1250 const RecordType *RT = FieldType->getAs<RecordType>();
1251 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1252 if (FieldClassDecl->hasTrivialDestructor())
1253 continue;
1254 llvm::Value *LoadOfThis = LoadCXXThis();
1255 LValue LHS = EmitLValueForField(LoadOfThis, FD, false, 0);
1256 EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
1257 Dtor_Complete, LHS.getAddress());
Mike Stump487ce382009-07-30 22:28:39 +00001258 } else {
Fariborz Jahanian36a0ec02009-07-30 17:49:11 +00001259 const RecordType *RT =
1260 DD->getAnyBaseClassToDestroy(BaseOrMember)->getAs<RecordType>();
1261 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1262 if (BaseClassDecl->hasTrivialDestructor())
1263 continue;
1264 llvm::Value *V = AddressCXXOfBaseClass(LoadCXXThis(),
1265 ClassDecl,BaseClassDecl);
1266 EmitCXXDestructorCall(BaseClassDecl->getDestructor(getContext()),
1267 Dtor_Complete, V);
1268 }
1269 }
1270}