blob: 1c9c5634ab006a71b2aeee570697154a0188919a [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 Carlsson4811c302009-04-17 01:58:57 +0000517static bool canGenerateCXXstructor(const CXXRecordDecl *RD,
518 ASTContext &Context) {
Anders Carlsson8496c692009-04-15 21:02:13 +0000519 // The class has base classes - we don't support that right now.
520 if (RD->getNumBases() > 0)
521 return false;
522
Argiris Kirtzidisab6e38a2009-06-30 02:36:12 +0000523 for (CXXRecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end();
524 I != E; ++I) {
Anders Carlsson8496c692009-04-15 21:02:13 +0000525 // We don't support ctors for fields that aren't POD.
526 if (!I->getType()->isPODType())
527 return false;
528 }
529
530 return true;
531}
532
Anders Carlsson652951a2009-04-15 15:55:24 +0000533void CodeGenModule::EmitCXXConstructors(const CXXConstructorDecl *D) {
Anders Carlsson4811c302009-04-17 01:58:57 +0000534 if (!canGenerateCXXstructor(D->getParent(), getContext())) {
Anders Carlsson8496c692009-04-15 21:02:13 +0000535 ErrorUnsupported(D, "C++ constructor", true);
536 return;
537 }
Anders Carlsson652951a2009-04-15 15:55:24 +0000538
Anders Carlsson1764af42009-05-05 04:44:02 +0000539 EmitGlobal(GlobalDecl(D, Ctor_Complete));
540 EmitGlobal(GlobalDecl(D, Ctor_Base));
Anders Carlsson652951a2009-04-15 15:55:24 +0000541}
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000542
Anders Carlsson4811c302009-04-17 01:58:57 +0000543void CodeGenModule::EmitCXXConstructor(const CXXConstructorDecl *D,
544 CXXCtorType Type) {
545
546 llvm::Function *Fn = GetAddrOfCXXConstructor(D, Type);
547
548 CodeGenFunction(*this).GenerateCode(D, Fn);
549
550 SetFunctionDefinitionAttributes(D, Fn);
551 SetLLVMFunctionAttributesForDefinition(D, Fn);
552}
553
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000554llvm::Function *
555CodeGenModule::GetAddrOfCXXConstructor(const CXXConstructorDecl *D,
556 CXXCtorType Type) {
557 const llvm::FunctionType *FTy =
558 getTypes().GetFunctionType(getTypes().getFunctionInfo(D), false);
559
560 const char *Name = getMangledCXXCtorName(D, Type);
Chris Lattner80f39cc2009-05-12 21:21:08 +0000561 return cast<llvm::Function>(
562 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlsson890a9fd2009-04-16 23:57:24 +0000563}
Anders Carlsson4811c302009-04-17 01:58:57 +0000564
565const char *CodeGenModule::getMangledCXXCtorName(const CXXConstructorDecl *D,
566 CXXCtorType Type) {
567 llvm::SmallString<256> Name;
568 llvm::raw_svector_ostream Out(Name);
569 mangleCXXCtor(D, Type, Context, Out);
570
571 Name += '\0';
572 return UniqueMangledName(Name.begin(), Name.end());
573}
574
575void CodeGenModule::EmitCXXDestructors(const CXXDestructorDecl *D) {
576 if (!canGenerateCXXstructor(D->getParent(), getContext())) {
577 ErrorUnsupported(D, "C++ destructor", true);
578 return;
579 }
580
581 EmitCXXDestructor(D, Dtor_Complete);
582 EmitCXXDestructor(D, Dtor_Base);
583}
584
585void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *D,
586 CXXDtorType Type) {
587 llvm::Function *Fn = GetAddrOfCXXDestructor(D, Type);
588
589 CodeGenFunction(*this).GenerateCode(D, Fn);
590
591 SetFunctionDefinitionAttributes(D, Fn);
592 SetLLVMFunctionAttributesForDefinition(D, Fn);
593}
594
595llvm::Function *
596CodeGenModule::GetAddrOfCXXDestructor(const CXXDestructorDecl *D,
597 CXXDtorType Type) {
598 const llvm::FunctionType *FTy =
599 getTypes().GetFunctionType(getTypes().getFunctionInfo(D), false);
600
601 const char *Name = getMangledCXXDtorName(D, Type);
Chris Lattner80f39cc2009-05-12 21:21:08 +0000602 return cast<llvm::Function>(
603 GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(D, Type)));
Anders Carlsson4811c302009-04-17 01:58:57 +0000604}
605
606const char *CodeGenModule::getMangledCXXDtorName(const CXXDestructorDecl *D,
607 CXXDtorType Type) {
608 llvm::SmallString<256> Name;
609 llvm::raw_svector_ostream Out(Name);
610 mangleCXXDtor(D, Type, Context, Out);
611
612 Name += '\0';
613 return UniqueMangledName(Name.begin(), Name.end());
614}
Fariborz Jahanian5400e022009-07-20 23:18:55 +0000615
Mike Stump00df7d32009-07-31 23:15:31 +0000616llvm::Constant *CodeGenFunction::GenerateRtti(const CXXRecordDecl *RD) {
617 llvm::Type *Ptr8Ty;
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000618 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump69a12322009-08-04 20:06:48 +0000619 llvm::Constant *Rtti = llvm::Constant::getNullValue(Ptr8Ty);
Mike Stump00df7d32009-07-31 23:15:31 +0000620
621 if (!getContext().getLangOptions().Rtti)
Mike Stump69a12322009-08-04 20:06:48 +0000622 return Rtti;
Mike Stump00df7d32009-07-31 23:15:31 +0000623
624 llvm::SmallString<256> OutName;
625 llvm::raw_svector_ostream Out(OutName);
626 QualType ClassTy;
Mike Stumpe7545622009-08-07 18:05:12 +0000627 ClassTy = getContext().getTagDeclType(RD);
Mike Stump00df7d32009-07-31 23:15:31 +0000628 mangleCXXRtti(ClassTy, getContext(), Out);
629 const char *Name = OutName.c_str();
630 llvm::GlobalVariable::LinkageTypes linktype;
631 linktype = llvm::GlobalValue::WeakAnyLinkage;
632 std::vector<llvm::Constant *> info;
Mike Stump2eade572009-08-13 22:53:07 +0000633 // assert(0 && "FIXME: implement rtti descriptor");
Mike Stump00df7d32009-07-31 23:15:31 +0000634 // FIXME: descriptor
635 info.push_back(llvm::Constant::getNullValue(Ptr8Ty));
Mike Stump2eade572009-08-13 22:53:07 +0000636 // assert(0 && "FIXME: implement rtti ts");
Mike Stump00df7d32009-07-31 23:15:31 +0000637 // FIXME: TS
638 info.push_back(llvm::Constant::getNullValue(Ptr8Ty));
639
640 llvm::Constant *C;
641 llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, info.size());
642 C = llvm::ConstantArray::get(type, info);
Mike Stump69a12322009-08-04 20:06:48 +0000643 Rtti = new llvm::GlobalVariable(CGM.getModule(), type, true, linktype, C,
Mike Stump00df7d32009-07-31 23:15:31 +0000644 Name);
Mike Stump69a12322009-08-04 20:06:48 +0000645 Rtti = llvm::ConstantExpr::getBitCast(Rtti, Ptr8Ty);
646 return Rtti;
Mike Stump00df7d32009-07-31 23:15:31 +0000647}
648
Mike Stumpf640de52009-08-12 23:14:12 +0000649void CodeGenFunction::GenerateVcalls(std::vector<llvm::Constant *> &methods,
650 const CXXRecordDecl *RD,
651 llvm::Type *Ptr8Ty) {
652 typedef CXXRecordDecl::method_iterator meth_iter;
653 llvm::Constant *m;
Mike Stump23b238e2009-08-12 23:25:18 +0000654
Mike Stump1a529ac2009-08-13 18:39:54 +0000655 // FIXME: audit order
Mike Stump23b238e2009-08-12 23:25:18 +0000656 for (meth_iter mi = RD->method_begin(),
657 me = RD->method_end(); mi != me; ++mi) {
658 if (mi->isVirtual()) {
659 // FIXME: vcall: offset for virtual base for this function
660 m = llvm::Constant::getNullValue(Ptr8Ty);
661 methods.push_back(m);
Mike Stumpf640de52009-08-12 23:14:12 +0000662 }
Mike Stump23b238e2009-08-12 23:25:18 +0000663 }
Mike Stumpf640de52009-08-12 23:14:12 +0000664}
665
Mike Stumpdecd7812009-08-12 23:00:59 +0000666void CodeGenFunction::GenerateMethods(std::vector<llvm::Constant *> &methods,
667 const CXXRecordDecl *RD,
668 llvm::Type *Ptr8Ty) {
669 typedef CXXRecordDecl::method_iterator meth_iter;
670 llvm::Constant *m;
671
672 for (meth_iter mi = RD->method_begin(), me = RD->method_end(); mi != me;
673 ++mi) {
674 if (mi->isVirtual()) {
675 m = CGM.GetAddrOfFunction(GlobalDecl(*mi));
676 m = llvm::ConstantExpr::getBitCast(m, Ptr8Ty);
677 methods.push_back(m);
678 }
679 }
680}
681
Mike Stump2eade572009-08-13 22:53:07 +0000682void CodeGenFunction::GenerateVtableForVBases(const CXXRecordDecl *RD,
Mike Stumpc57b8272009-08-16 01:46:26 +0000683 const CXXRecordDecl *Class,
Mike Stump2eade572009-08-13 22:53:07 +0000684 llvm::Constant *rtti,
685 std::vector<llvm::Constant *> &methods,
686 llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary) {
687 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
688 e = RD->bases_end(); i != e; ++i) {
689 const CXXRecordDecl *Base =
690 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
691 if (i->isVirtual() && !IndirectPrimary.count(Base)) {
692 // Mark it so we don't output it twice.
693 IndirectPrimary.insert(Base);
Mike Stumpc57b8272009-08-16 01:46:26 +0000694 GenerateVtableForBase(Base, true, 0, Class, rtti, methods, true,
Mike Stump2eade572009-08-13 22:53:07 +0000695 IndirectPrimary);
696 }
697 if (Base->getNumVBases())
Mike Stumpc57b8272009-08-16 01:46:26 +0000698 GenerateVtableForVBases(Base, Class, rtti, methods, IndirectPrimary);
699 }
700}
701
702void CodeGenFunction::GenerateVBaseOffsets(
703 std::vector<llvm::Constant *> &methods, const CXXRecordDecl *RD,
704 llvm::SmallSet<const CXXRecordDecl *, 32> &SeenVBase,
705 uint64_t Offset, const ASTRecordLayout &BLayout, llvm::Type *Ptr8Ty) {
706 for (CXXRecordDecl::base_class_const_iterator i =RD->bases_begin(),
707 e = RD->bases_end(); i != e; ++i) {
708 const CXXRecordDecl *Base =
709 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
710 if (i->isVirtual() && !SeenVBase.count(Base)) {
711 SeenVBase.insert(Base);
712 int64_t BaseOffset = Offset/8 + BLayout.getVBaseClassOffset(Base) / 8;
713 llvm::Constant *m;
714 m = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), BaseOffset);
715 m = llvm::ConstantExpr::getIntToPtr(m, Ptr8Ty);
716 methods.push_back(m);
717 }
718 GenerateVBaseOffsets(methods, Base, SeenVBase, Offset, BLayout, Ptr8Ty);
Mike Stump2eade572009-08-13 22:53:07 +0000719 }
720}
721
Mike Stumpd6f22d82009-08-06 15:50:11 +0000722void CodeGenFunction::GenerateVtableForBase(const CXXRecordDecl *RD,
Mike Stumpc57b8272009-08-16 01:46:26 +0000723 bool forPrimary,
724 int64_t Offset,
Mike Stump71e21302009-08-06 21:49:36 +0000725 const CXXRecordDecl *Class,
726 llvm::Constant *rtti,
727 std::vector<llvm::Constant *> &methods,
Mike Stumpa8b58292009-08-12 17:42:21 +0000728 bool ForVirtualBase,
729 llvm::SmallSet<const CXXRecordDecl *, 32> &IndirectPrimary) {
Mike Stumpd6f22d82009-08-06 15:50:11 +0000730 llvm::Type *Ptr8Ty;
Owen Anderson3f5cc0a2009-08-13 21:57:51 +0000731 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump71e21302009-08-06 21:49:36 +0000732 llvm::Constant *m = llvm::Constant::getNullValue(Ptr8Ty);
733
734 if (RD && !RD->isDynamicClass())
735 return;
Mike Stump96599e22009-08-06 23:48:32 +0000736
Mike Stumpc57b8272009-08-16 01:46:26 +0000737 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
738 const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
739 const bool PrimaryBaseWasVirtual = Layout.getPrimaryBaseWasVirtual();
Mike Stump7df1ff12009-08-11 04:03:59 +0000740
Mike Stumpc57b8272009-08-16 01:46:26 +0000741 // The virtual base offsets come first...
742 // FIXME: Audit, is this right?
743 if (forPrimary || !PrimaryBaseWasVirtual) {
744 llvm::SmallSet<const CXXRecordDecl *, 32> SeenVBase;
745 std::vector<llvm::Constant *> offsets;
746 GenerateVBaseOffsets(offsets, RD, SeenVBase, Offset, Layout, Ptr8Ty);
747 for (std::vector<llvm::Constant *>::reverse_iterator i = offsets.rbegin(),
748 e = offsets.rend(); i != e; ++i)
749 methods.push_back(*i);
Mike Stump7df1ff12009-08-11 04:03:59 +0000750 }
751
Mike Stumpc57b8272009-08-16 01:46:26 +0000752 if (forPrimary || ForVirtualBase) {
753 // then comes the the vcall offsets for all our functions...
754 GenerateVcalls(methods, RD, Ptr8Ty);
Mike Stump71e21302009-08-06 21:49:36 +0000755 }
Mike Stumpc57b8272009-08-16 01:46:26 +0000756
757 bool Top = true;
758
759 // vtables are composed from the chain of primaries.
760 if (PrimaryBase) {
761 if (PrimaryBaseWasVirtual)
762 IndirectPrimary.insert(PrimaryBase);
763 Top = false;
764 GenerateVtableForBase(PrimaryBase, true, Offset, Class, rtti, methods,
765 PrimaryBaseWasVirtual, IndirectPrimary);
766 }
767
Mike Stump7df1ff12009-08-11 04:03:59 +0000768 // then come the vcall offsets for all our virtual bases.
Mike Stumpc57b8272009-08-16 01:46:26 +0000769 if (!1 && ForVirtualBase)
Mike Stumpf640de52009-08-12 23:14:12 +0000770 GenerateVcalls(methods, RD, Ptr8Ty);
Mike Stump71e21302009-08-06 21:49:36 +0000771
Mike Stumpc57b8272009-08-16 01:46:26 +0000772 if (Top) {
773 int64_t BaseOffset;
774 if (ForVirtualBase) {
775 const ASTRecordLayout &BLayout = getContext().getASTRecordLayout(Class);
776 BaseOffset = -(BLayout.getVBaseClassOffset(RD) / 8);
777 } else
778 BaseOffset = -Offset/8;
779 m = llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), BaseOffset);
780 m = llvm::ConstantExpr::getIntToPtr(m, Ptr8Ty);
Mike Stump7df1ff12009-08-11 04:03:59 +0000781 methods.push_back(m);
782 methods.push_back(rtti);
783 }
784
Mike Stump71e21302009-08-06 21:49:36 +0000785 // And add the virtuals for the class to the primary vtable.
Mike Stumpc57b8272009-08-16 01:46:26 +0000786 GenerateMethods(methods, RD, Ptr8Ty);
787
788 // and then the non-virtual bases.
789 for (CXXRecordDecl::base_class_const_iterator i = RD->bases_begin(),
790 e = RD->bases_end(); i != e; ++i) {
791 if (i->isVirtual())
792 continue;
793 const CXXRecordDecl *Base =
794 cast<CXXRecordDecl>(i->getType()->getAs<RecordType>()->getDecl());
795 if (Base != PrimaryBase || PrimaryBaseWasVirtual) {
796 uint64_t o = Offset + Layout.getBaseClassOffset(Base);
797 GenerateVtableForBase(Base, true, o, Class, rtti, methods, false,
798 IndirectPrimary);
799 }
800 }
Mike Stumpd6f22d82009-08-06 15:50:11 +0000801}
802
Mike Stump7e8c9932009-07-31 18:25:34 +0000803llvm::Value *CodeGenFunction::GenerateVtable(const CXXRecordDecl *RD) {
Mike Stump7e8c9932009-07-31 18:25:34 +0000804 llvm::SmallString<256> OutName;
805 llvm::raw_svector_ostream Out(OutName);
806 QualType ClassTy;
Mike Stumpe7545622009-08-07 18:05:12 +0000807 ClassTy = getContext().getTagDeclType(RD);
Mike Stump7e8c9932009-07-31 18:25:34 +0000808 mangleCXXVtable(ClassTy, getContext(), Out);
809 const char *Name = OutName.c_str();
Mike Stumpd0672782009-07-31 21:43:43 +0000810 llvm::GlobalVariable::LinkageTypes linktype;
811 linktype = llvm::GlobalValue::WeakAnyLinkage;
812 std::vector<llvm::Constant *> methods;
Mike Stumpc57b8272009-08-16 01:46:26 +0000813 llvm::Type *Ptr8Ty=llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext),0);
Mike Stump8b82eeb2009-08-05 22:37:18 +0000814 int64_t Offset = 0;
Mike Stump71e21302009-08-06 21:49:36 +0000815 llvm::Constant *rtti = GenerateRtti(RD);
816
817 Offset += LLVMPointerWidth;
818 Offset += LLVMPointerWidth;
Mike Stump8b82eeb2009-08-05 22:37:18 +0000819
Mike Stumpa8b58292009-08-12 17:42:21 +0000820 llvm::SmallSet<const CXXRecordDecl *, 32> IndirectPrimary;
Mike Stumpf3371782009-08-04 21:58:42 +0000821
Mike Stumpc57b8272009-08-16 01:46:26 +0000822 // First comes the vtables for all the non-virtual bases...
823 GenerateVtableForBase(RD, true, 0, RD, rtti, methods, false, IndirectPrimary);
Mike Stump42368bb2009-08-14 01:44:03 +0000824
Mike Stumpc57b8272009-08-16 01:46:26 +0000825 // then the vtables for all the virtual bases.
826 GenerateVtableForVBases(RD, RD, rtti, methods, IndirectPrimary);
Mike Stumpf3371782009-08-04 21:58:42 +0000827
Mike Stumpd0672782009-07-31 21:43:43 +0000828 llvm::Constant *C;
829 llvm::ArrayType *type = llvm::ArrayType::get(Ptr8Ty, methods.size());
830 C = llvm::ConstantArray::get(type, methods);
831 llvm::Value *vtable = new llvm::GlobalVariable(CGM.getModule(), type, true,
832 linktype, C, Name);
Mike Stump7e8c9932009-07-31 18:25:34 +0000833 vtable = Builder.CreateBitCast(vtable, Ptr8Ty);
Mike Stump7e8c9932009-07-31 18:25:34 +0000834 vtable = Builder.CreateGEP(vtable,
Mike Stumpc57b8272009-08-16 01:46:26 +0000835 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stump8b82eeb2009-08-05 22:37:18 +0000836 Offset/8));
Mike Stump7e8c9932009-07-31 18:25:34 +0000837 return vtable;
838}
839
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000840/// EmitClassMemberwiseCopy - This routine generates code to copy a class
841/// object from SrcValue to DestValue. Copying can be either a bitwise copy
842/// of via a copy constructor call.
843void CodeGenFunction::EmitClassMemberwiseCopy(
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000844 llvm::Value *Dest, llvm::Value *Src,
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000845 const CXXRecordDecl *ClassDecl,
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000846 const CXXRecordDecl *BaseClassDecl, QualType Ty) {
847 if (ClassDecl) {
848 Dest = AddressCXXOfBaseClass(Dest, ClassDecl, BaseClassDecl);
849 Src = AddressCXXOfBaseClass(Src, ClassDecl, BaseClassDecl) ;
850 }
851 if (BaseClassDecl->hasTrivialCopyConstructor()) {
852 EmitAggregateCopy(Dest, Src, Ty);
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000853 return;
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000854 }
855
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000856 if (CXXConstructorDecl *BaseCopyCtor =
Fariborz Jahanianfbe08772009-08-08 00:59:58 +0000857 BaseClassDecl->getCopyConstructor(getContext(), 0)) {
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000858 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(BaseCopyCtor,
859 Ctor_Complete);
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000860 CallArgList CallArgs;
861 // Push the this (Dest) ptr.
862 CallArgs.push_back(std::make_pair(RValue::get(Dest),
863 BaseCopyCtor->getThisType(getContext())));
864
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000865 // Push the Src ptr.
866 CallArgs.push_back(std::make_pair(RValue::get(Src),
Fariborz Jahanian0dfaec42009-08-10 17:20:45 +0000867 BaseCopyCtor->getParamDecl(0)->getType()));
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000868 QualType ResultType =
869 BaseCopyCtor->getType()->getAsFunctionType()->getResultType();
870 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
871 Callee, CallArgs, BaseCopyCtor);
872 }
873}
Fariborz Jahaniane39fab62009-08-10 18:46:38 +0000874
Fariborz Jahanian04500242009-08-12 23:34:46 +0000875/// EmitClassCopyAssignment - This routine generates code to copy assign a class
876/// object from SrcValue to DestValue. Assignment can be either a bitwise
877/// assignment of via an assignment operator call.
878void CodeGenFunction::EmitClassCopyAssignment(
879 llvm::Value *Dest, llvm::Value *Src,
880 const CXXRecordDecl *ClassDecl,
881 const CXXRecordDecl *BaseClassDecl,
882 QualType Ty) {
883 if (ClassDecl) {
884 Dest = AddressCXXOfBaseClass(Dest, ClassDecl, BaseClassDecl);
885 Src = AddressCXXOfBaseClass(Src, ClassDecl, BaseClassDecl) ;
886 }
887 if (BaseClassDecl->hasTrivialCopyAssignment()) {
888 EmitAggregateCopy(Dest, Src, Ty);
889 return;
890 }
891
892 const CXXMethodDecl *MD = 0;
Fariborz Jahanian84bd6532009-08-13 00:53:36 +0000893 bool ConstCopyAssignOp = BaseClassDecl->hasConstCopyAssignment(getContext(),
894 MD);
895 assert(ConstCopyAssignOp && "EmitClassCopyAssignment - missing copy assign");
896 (void)ConstCopyAssignOp;
897
898 const FunctionProtoType *FPT = MD->getType()->getAsFunctionProtoType();
899 const llvm::Type *LTy =
900 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(MD),
901 FPT->isVariadic());
902 llvm::Constant *Callee = CGM.GetAddrOfFunction(GlobalDecl(MD), LTy);
Fariborz Jahanian04500242009-08-12 23:34:46 +0000903
Fariborz Jahanian84bd6532009-08-13 00:53:36 +0000904 CallArgList CallArgs;
905 // Push the this (Dest) ptr.
906 CallArgs.push_back(std::make_pair(RValue::get(Dest),
907 MD->getThisType(getContext())));
Fariborz Jahanian04500242009-08-12 23:34:46 +0000908
Fariborz Jahanian84bd6532009-08-13 00:53:36 +0000909 // Push the Src ptr.
910 CallArgs.push_back(std::make_pair(RValue::get(Src),
911 MD->getParamDecl(0)->getType()));
912 QualType ResultType =
913 MD->getType()->getAsFunctionType()->getResultType();
914 EmitCall(CGM.getTypes().getFunctionInfo(ResultType, CallArgs),
915 Callee, CallArgs, MD);
Fariborz Jahanian04500242009-08-12 23:34:46 +0000916}
917
Fariborz Jahaniane39fab62009-08-10 18:46:38 +0000918/// SynthesizeDefaultConstructor - synthesize a default constructor
919void
920CodeGenFunction::SynthesizeDefaultConstructor(const CXXConstructorDecl *CD,
921 const FunctionDecl *FD,
922 llvm::Function *Fn,
923 const FunctionArgList &Args) {
924 StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
925 EmitCtorPrologue(CD);
926 FinishFunction();
927}
928
Fariborz Jahanianab840aa2009-08-08 19:31:03 +0000929/// SynthesizeCXXCopyConstructor - This routine implicitly defines body of a copy
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000930/// constructor, in accordance with section 12.8 (p7 and p8) of C++03
931/// The implicitly-defined copy constructor for class X performs a memberwise
932/// copy of its subobjects. The order of copying is the same as the order
933/// of initialization of bases and members in a user-defined constructor
934/// Each subobject is copied in the manner appropriate to its type:
935/// if the subobject is of class type, the copy constructor for the class is
936/// used;
937/// if the subobject is an array, each element is copied, in the manner
938/// appropriate to the element type;
939/// if the subobject is of scalar type, the built-in assignment operator is
940/// used.
941/// Virtual base class subobjects shall be copied only once by the
942/// implicitly-defined copy constructor
943
Fariborz Jahanianab840aa2009-08-08 19:31:03 +0000944void CodeGenFunction::SynthesizeCXXCopyConstructor(const CXXConstructorDecl *CD,
945 const FunctionDecl *FD,
946 llvm::Function *Fn,
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000947 const FunctionArgList &Args) {
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000948 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
949 assert(!ClassDecl->hasUserDeclaredCopyConstructor() &&
Fariborz Jahanianab840aa2009-08-08 19:31:03 +0000950 "SynthesizeCXXCopyConstructor - copy constructor has definition already");
951 StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000952
Fariborz Jahanian5e778e32009-08-08 00:15:41 +0000953 FunctionArgList::const_iterator i = Args.begin();
954 const VarDecl *ThisArg = i->first;
955 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
956 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
957 const VarDecl *SrcArg = (i+1)->first;
958 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
959 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
960
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000961 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
962 Base != ClassDecl->bases_end(); ++Base) {
963 // FIXME. copy constrution of virtual base NYI
964 if (Base->isVirtual())
965 continue;
Fariborz Jahanianfc27d292009-08-07 23:51:33 +0000966
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000967 CXXRecordDecl *BaseClassDecl
968 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000969 EmitClassMemberwiseCopy(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
970 Base->getType());
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000971 }
972
Fariborz Jahanian5e778e32009-08-08 00:15:41 +0000973 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
974 FieldEnd = ClassDecl->field_end();
975 Field != FieldEnd; ++Field) {
976 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
977
978 // FIXME. How about copying arrays!
979 assert(!getContext().getAsArrayType(FieldType) &&
980 "FIXME. Copying arrays NYI");
Fariborz Jahanianfef75cb2009-08-11 18:49:54 +0000981
Fariborz Jahanian5e778e32009-08-08 00:15:41 +0000982 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
983 CXXRecordDecl *FieldClassDecl
984 = cast<CXXRecordDecl>(FieldClassType->getDecl());
985 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
986 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000987
Fariborz Jahanian5e778e32009-08-08 00:15:41 +0000988 EmitClassMemberwiseCopy(LHS.getAddress(), RHS.getAddress(),
Fariborz Jahaniancefe5922009-08-08 23:32:22 +0000989 0 /*ClassDecl*/, FieldClassDecl, FieldType);
Fariborz Jahanian5e778e32009-08-08 00:15:41 +0000990 continue;
991 }
Fariborz Jahanian08d99e92009-08-10 18:34:26 +0000992 // Do a built-in assignment of scalar data members.
993 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
994 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
995 RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
996 EmitStoreThroughLValue(RVRHS, LHS, FieldType);
Fariborz Jahanian5e778e32009-08-08 00:15:41 +0000997 }
Fariborz Jahanianab840aa2009-08-08 19:31:03 +0000998 FinishFunction();
Fariborz Jahanian5e050b82009-08-07 20:22:40 +0000999}
1000
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001001/// SynthesizeCXXCopyAssignment - Implicitly define copy assignment operator.
1002/// Before the implicitly-declared copy assignment operator for a class is
1003/// implicitly defined, all implicitly- declared copy assignment operators for
1004/// its direct base classes and its nonstatic data members shall have been
1005/// implicitly defined. [12.8-p12]
1006/// The implicitly-defined copy assignment operator for class X performs
1007/// memberwise assignment of its subob- jects. The direct base classes of X are
1008/// assigned first, in the order of their declaration in
1009/// the base-specifier-list, and then the immediate nonstatic data members of X
1010/// are assigned, in the order in which they were declared in the class
1011/// definition.Each subobject is assigned in the manner appropriate to its type:
Fariborz Jahanian04500242009-08-12 23:34:46 +00001012/// if the subobject is of class type, the copy assignment operator for the
1013/// class is used (as if by explicit qualification; that is, ignoring any
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001014/// possible virtual overriding functions in more derived classes);
Fariborz Jahanian04500242009-08-12 23:34:46 +00001015///
1016/// if the subobject is an array, each element is assigned, in the manner
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001017/// appropriate to the element type;
Fariborz Jahanian04500242009-08-12 23:34:46 +00001018///
1019/// if the subobject is of scalar type, the built-in assignment operator is
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001020/// used.
1021void CodeGenFunction::SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
1022 const FunctionDecl *FD,
1023 llvm::Function *Fn,
1024 const FunctionArgList &Args) {
Fariborz Jahanian04500242009-08-12 23:34:46 +00001025
1026 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
1027 assert(!ClassDecl->hasUserDeclaredCopyAssignment() &&
1028 "SynthesizeCXXCopyAssignment - copy assignment has user declaration");
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001029 StartFunction(FD, FD->getResultType(), Fn, Args, SourceLocation());
1030
Fariborz Jahanian04500242009-08-12 23:34:46 +00001031 FunctionArgList::const_iterator i = Args.begin();
1032 const VarDecl *ThisArg = i->first;
1033 llvm::Value *ThisObj = GetAddrOfLocalVar(ThisArg);
1034 llvm::Value *LoadOfThis = Builder.CreateLoad(ThisObj, "this");
1035 const VarDecl *SrcArg = (i+1)->first;
1036 llvm::Value *SrcObj = GetAddrOfLocalVar(SrcArg);
1037 llvm::Value *LoadOfSrc = Builder.CreateLoad(SrcObj);
1038
1039 for (CXXRecordDecl::base_class_const_iterator Base = ClassDecl->bases_begin();
1040 Base != ClassDecl->bases_end(); ++Base) {
1041 // FIXME. copy assignment of virtual base NYI
1042 if (Base->isVirtual())
1043 continue;
1044
1045 CXXRecordDecl *BaseClassDecl
1046 = cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
1047 EmitClassCopyAssignment(LoadOfThis, LoadOfSrc, ClassDecl, BaseClassDecl,
1048 Base->getType());
1049 }
1050
1051 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1052 FieldEnd = ClassDecl->field_end();
1053 Field != FieldEnd; ++Field) {
1054 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
1055
1056 // FIXME. How about copy assignment of arrays!
1057 assert(!getContext().getAsArrayType(FieldType) &&
1058 "FIXME. Copy assignment of arrays NYI");
1059
1060 if (const RecordType *FieldClassType = FieldType->getAs<RecordType>()) {
1061 CXXRecordDecl *FieldClassDecl
1062 = cast<CXXRecordDecl>(FieldClassType->getDecl());
1063 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1064 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1065
1066 EmitClassCopyAssignment(LHS.getAddress(), RHS.getAddress(),
1067 0 /*ClassDecl*/, FieldClassDecl, FieldType);
1068 continue;
1069 }
1070 // Do a built-in assignment of scalar data members.
1071 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1072 LValue RHS = EmitLValueForField(LoadOfSrc, *Field, false, 0);
1073 RValue RVRHS = EmitLoadOfLValue(RHS, FieldType);
1074 EmitStoreThroughLValue(RVRHS, LHS, FieldType);
Fariborz Jahanianc47460d2009-08-14 00:01:54 +00001075 }
1076
1077 // return *this;
1078 Builder.CreateStore(LoadOfThis, ReturnValue);
Fariborz Jahanian04500242009-08-12 23:34:46 +00001079
Fariborz Jahanian651efb72009-08-12 21:14:35 +00001080 FinishFunction();
1081}
Fariborz Jahanian5e050b82009-08-07 20:22:40 +00001082
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001083/// EmitCtorPrologue - This routine generates necessary code to initialize
1084/// base classes and non-static data members belonging to this constructor.
1085void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD) {
Fariborz Jahaniana0107de2009-07-25 21:12:28 +00001086 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(CD->getDeclContext());
Mike Stump05207212009-08-06 13:41:24 +00001087 // FIXME: Add vbase initialization
Mike Stump7e8c9932009-07-31 18:25:34 +00001088 llvm::Value *LoadOfThis = 0;
Fariborz Jahanian70277012009-07-28 18:09:28 +00001089
Fariborz Jahaniana0107de2009-07-25 21:12:28 +00001090 for (CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001091 E = CD->init_end();
1092 B != E; ++B) {
1093 CXXBaseOrMemberInitializer *Member = (*B);
1094 if (Member->isBaseInitializer()) {
Mike Stump7e8c9932009-07-31 18:25:34 +00001095 LoadOfThis = LoadCXXThis();
Fariborz Jahanian70277012009-07-28 18:09:28 +00001096 Type *BaseType = Member->getBaseClass();
1097 CXXRecordDecl *BaseClassDecl =
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001098 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
Fariborz Jahanian70277012009-07-28 18:09:28 +00001099 llvm::Value *V = AddressCXXOfBaseClass(LoadOfThis, ClassDecl,
1100 BaseClassDecl);
Fariborz Jahaniana0107de2009-07-25 21:12:28 +00001101 EmitCXXConstructorCall(Member->getConstructor(),
1102 Ctor_Complete, V,
1103 Member->const_arg_begin(),
1104 Member->const_arg_end());
Mike Stump487ce382009-07-30 22:28:39 +00001105 } else {
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001106 // non-static data member initilaizers.
1107 FieldDecl *Field = Member->getMember();
1108 QualType FieldType = getContext().getCanonicalType((Field)->getType());
1109 assert(!getContext().getAsArrayType(FieldType)
1110 && "FIXME. Field arrays initialization unsupported");
Fariborz Jahanian32cea8b2009-08-10 23:56:17 +00001111
Mike Stump7e8c9932009-07-31 18:25:34 +00001112 LoadOfThis = LoadCXXThis();
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001113 LValue LHS = EmitLValueForField(LoadOfThis, Field, false, 0);
Ted Kremenekd00cd9e2009-07-29 21:53:49 +00001114 if (FieldType->getAs<RecordType>()) {
Fariborz Jahanianfef75cb2009-08-11 18:49:54 +00001115 if (!Field->isAnonymousStructOrUnion()) {
Fariborz Jahanian56baceb2009-07-24 17:57:02 +00001116 assert(Member->getConstructor() &&
1117 "EmitCtorPrologue - no constructor to initialize member");
1118 EmitCXXConstructorCall(Member->getConstructor(),
1119 Ctor_Complete, LHS.getAddress(),
1120 Member->const_arg_begin(),
1121 Member->const_arg_end());
Fariborz Jahanianfef75cb2009-08-11 18:49:54 +00001122 continue;
1123 }
1124 else {
1125 // Initializing an anonymous union data member.
1126 FieldDecl *anonMember = Member->getAnonUnionMember();
1127 LHS = EmitLValueForField(LHS.getAddress(), anonMember, false, 0);
1128 FieldType = anonMember->getType();
1129 }
Fariborz Jahanian56baceb2009-07-24 17:57:02 +00001130 }
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001131
1132 assert(Member->getNumArgs() == 1 && "Initializer count must be 1 only");
Fariborz Jahanian56baceb2009-07-24 17:57:02 +00001133 Expr *RhsExpr = *Member->arg_begin();
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001134 llvm::Value *RHS = EmitScalarExpr(RhsExpr, true);
Fariborz Jahanian32cea8b2009-08-10 23:56:17 +00001135 EmitStoreThroughLValue(RValue::get(RHS), LHS, FieldType);
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001136 }
1137 }
Mike Stump7e8c9932009-07-31 18:25:34 +00001138
Fariborz Jahanian63d6c232009-08-15 18:55:17 +00001139 if (!CD->isTrivial() && CD->getNumBaseOrMemberInitializers() == 0)
1140 // Nontrivial default constructor with no initializer list. It may still
1141 // contain non-static data members which require construction.
1142 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
1143 FieldEnd = ClassDecl->field_end();
1144 Field != FieldEnd; ++Field) {
1145 QualType FieldType = getContext().getCanonicalType((*Field)->getType());
1146 if (!FieldType->getAs<RecordType>() || Field->isAnonymousStructOrUnion())
1147 continue;
1148 const RecordType *ClassRec = FieldType->getAs<RecordType>();
1149 if (CXXRecordDecl *MemberClassDecl =
1150 dyn_cast<CXXRecordDecl>(ClassRec->getDecl())) {
1151 if (MemberClassDecl->hasTrivialConstructor())
1152 continue;
1153 if (CXXConstructorDecl *MamberCX =
1154 MemberClassDecl->getDefaultConstructor(getContext())) {
1155 LoadOfThis = LoadCXXThis();
1156 LValue LHS = EmitLValueForField(LoadOfThis, *Field, false, 0);
1157 EmitCXXConstructorCall(MamberCX, Ctor_Complete, LHS.getAddress(), 0, 0);
1158 }
1159 }
1160 }
1161
Mike Stump7e8c9932009-07-31 18:25:34 +00001162 // Initialize the vtable pointer
Mike Stumpeec46a72009-08-05 22:59:44 +00001163 if (ClassDecl->isDynamicClass()) {
Mike Stump7e8c9932009-07-31 18:25:34 +00001164 if (!LoadOfThis)
1165 LoadOfThis = LoadCXXThis();
1166 llvm::Value *VtableField;
1167 llvm::Type *Ptr8Ty, *PtrPtr8Ty;
Owen Anderson3f5cc0a2009-08-13 21:57:51 +00001168 Ptr8Ty = llvm::PointerType::get(llvm::Type::getInt8Ty(VMContext), 0);
Mike Stump7e8c9932009-07-31 18:25:34 +00001169 PtrPtr8Ty = llvm::PointerType::get(Ptr8Ty, 0);
1170 VtableField = Builder.CreateBitCast(LoadOfThis, PtrPtr8Ty);
1171 llvm::Value *vtable = GenerateVtable(ClassDecl);
1172 Builder.CreateStore(vtable, VtableField);
1173 }
Fariborz Jahanian5400e022009-07-20 23:18:55 +00001174}
Fariborz Jahanian36a0ec02009-07-30 17:49:11 +00001175
1176/// EmitDtorEpilogue - Emit all code that comes at the end of class's
1177/// destructor. This is to call destructors on members and base classes
1178/// in reverse order of their construction.
1179void CodeGenFunction::EmitDtorEpilogue(const CXXDestructorDecl *DD) {
1180 const CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(DD->getDeclContext());
1181 assert(!ClassDecl->isPolymorphic() &&
1182 "FIXME. polymorphic destruction not supported");
1183 (void)ClassDecl; // prevent warning.
1184
1185 for (CXXDestructorDecl::destr_const_iterator *B = DD->destr_begin(),
1186 *E = DD->destr_end(); B != E; ++B) {
1187 uintptr_t BaseOrMember = (*B);
1188 if (DD->isMemberToDestroy(BaseOrMember)) {
1189 FieldDecl *FD = DD->getMemberToDestroy(BaseOrMember);
1190 QualType FieldType = getContext().getCanonicalType((FD)->getType());
1191 assert(!getContext().getAsArrayType(FieldType)
1192 && "FIXME. Field arrays destruction unsupported");
1193 const RecordType *RT = FieldType->getAs<RecordType>();
1194 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1195 if (FieldClassDecl->hasTrivialDestructor())
1196 continue;
1197 llvm::Value *LoadOfThis = LoadCXXThis();
1198 LValue LHS = EmitLValueForField(LoadOfThis, FD, false, 0);
1199 EmitCXXDestructorCall(FieldClassDecl->getDestructor(getContext()),
1200 Dtor_Complete, LHS.getAddress());
Mike Stump487ce382009-07-30 22:28:39 +00001201 } else {
Fariborz Jahanian36a0ec02009-07-30 17:49:11 +00001202 const RecordType *RT =
1203 DD->getAnyBaseClassToDestroy(BaseOrMember)->getAs<RecordType>();
1204 CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1205 if (BaseClassDecl->hasTrivialDestructor())
1206 continue;
1207 llvm::Value *V = AddressCXXOfBaseClass(LoadCXXThis(),
1208 ClassDecl,BaseClassDecl);
1209 EmitCXXDestructorCall(BaseClassDecl->getDestructor(getContext()),
1210 Dtor_Complete, V);
1211 }
1212 }
1213}