blob: 692a7a6bc5794d25d2ac1559f74d33ba618fe3d9 [file] [log] [blame]
Anders Carlssonacfde802009-02-12 00:39:25 +00001//===--- CGBlocks.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 to emit blocks.
11//
12//===----------------------------------------------------------------------===//
13
Mike Stumpb1a6e682009-09-30 02:43:10 +000014#include "CGDebugInfo.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000015#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
Mike Stump6cc88f72009-03-20 21:53:12 +000017#include "clang/AST/DeclObjC.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000018#include "llvm/Module.h"
Anders Carlssond5cab542009-02-12 17:55:02 +000019#include "llvm/Target/TargetData.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000020#include <algorithm>
Torok Edwinf42e4a62009-08-24 13:25:12 +000021#include <cstdio>
22
Anders Carlssonacfde802009-02-12 00:39:25 +000023using namespace clang;
24using namespace CodeGen;
25
Mike Stumpcf62d392009-03-06 18:42:23 +000026llvm::Constant *CodeGenFunction::
Mike Stumpa803b0e2009-03-25 17:58:24 +000027BuildDescriptorBlockDecl(bool BlockHasCopyDispose, uint64_t Size,
28 const llvm::StructType* Ty,
Mike Stump08920992009-03-07 02:35:30 +000029 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump56129b12009-02-13 16:55:51 +000030 const llvm::Type *UnsignedLongTy
31 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpe5fee252009-02-13 16:19:19 +000032 llvm::Constant *C;
33 std::vector<llvm::Constant*> Elts;
34
35 // reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +000036 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000037 Elts.push_back(C);
38
39 // Size
Mike Stumpd6840002009-02-21 20:07:44 +000040 // FIXME: What is the right way to say this doesn't fit? We should give
41 // a user diagnostic in that case. Better fix would be to change the
42 // API to size_t.
Owen Anderson4a28d5d2009-07-24 23:12:58 +000043 C = llvm::ConstantInt::get(UnsignedLongTy, Size);
Mike Stumpe5fee252009-02-13 16:19:19 +000044 Elts.push_back(C);
45
46 if (BlockHasCopyDispose) {
47 // copy_func_helper_decl
Mike Stumpb7477cf2009-04-10 18:52:28 +000048 Elts.push_back(BuildCopyHelper(Ty, NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000049
50 // destroy_func_decl
Mike Stumpb7477cf2009-04-10 18:52:28 +000051 Elts.push_back(BuildDestroyHelper(Ty, NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000052 }
53
Nick Lewycky0d36dd22009-09-19 20:00:52 +000054 C = llvm::ConstantStruct::get(VMContext, Elts, false);
Mike Stumpe5fee252009-02-13 16:19:19 +000055
Owen Anderson1c431b32009-07-08 19:05:04 +000056 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stumpe5fee252009-02-13 16:19:19 +000057 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +000058 C, "__block_descriptor_tmp");
Mike Stumpe5fee252009-02-13 16:19:19 +000059 return C;
60}
61
Mike Stump2a998142009-03-04 18:17:45 +000062llvm::Constant *BlockModule::getNSConcreteGlobalBlock() {
Chris Lattnere2f79b62009-05-13 02:50:56 +000063 if (NSConcreteGlobalBlock == 0)
Mike Stump1eb44332009-09-09 15:08:12 +000064 NSConcreteGlobalBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty,
Chris Lattnere2f79b62009-05-13 02:50:56 +000065 "_NSConcreteGlobalBlock");
Mike Stumpf99f1d02009-02-13 17:23:42 +000066 return NSConcreteGlobalBlock;
67}
68
Mike Stump2a998142009-03-04 18:17:45 +000069llvm::Constant *BlockModule::getNSConcreteStackBlock() {
Chris Lattnere2f79b62009-05-13 02:50:56 +000070 if (NSConcreteStackBlock == 0)
Mike Stump1eb44332009-09-09 15:08:12 +000071 NSConcreteStackBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty,
Chris Lattnere2f79b62009-05-13 02:50:56 +000072 "_NSConcreteStackBlock");
Mike Stump59c5b112009-02-13 19:29:27 +000073 return NSConcreteStackBlock;
74}
75
Mike Stump00470a12009-03-05 08:32:30 +000076static void CollectBlockDeclRefInfo(const Stmt *S,
Anders Carlsson4de9fce2009-03-01 01:09:12 +000077 CodeGenFunction::BlockInfo &Info) {
78 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
79 I != E; ++I)
Daniel Dunbar82573ee2009-03-02 07:00:57 +000080 if (*I)
81 CollectBlockDeclRefInfo(*I, Info);
Mike Stump00470a12009-03-05 08:32:30 +000082
Mike Stumpea26cb52009-10-21 03:49:08 +000083 // We want to ensure we walk down into block literals so we can find
84 // all nested BlockDeclRefExprs.
85 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S))
86 CollectBlockDeclRefInfo(BE->getBody(), Info);
87
Anders Carlsson4de9fce2009-03-01 01:09:12 +000088 if (const BlockDeclRefExpr *DE = dyn_cast<BlockDeclRefExpr>(S)) {
89 // FIXME: Handle enums.
90 if (isa<FunctionDecl>(DE->getDecl()))
91 return;
Mike Stump00470a12009-03-05 08:32:30 +000092
Mike Stumpea26cb52009-10-21 03:49:08 +000093 Info.DeclRefs.push_back(DE);
Anders Carlsson4de9fce2009-03-01 01:09:12 +000094 }
95}
96
Mike Stump58a85142009-03-04 22:48:06 +000097/// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be
98/// declared as a global variable instead of on the stack.
Chris Lattnere2f79b62009-05-13 02:50:56 +000099static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info) {
Mike Stumpea26cb52009-10-21 03:49:08 +0000100 return Info.DeclRefs.empty();
101}
102
103/// AllocateAllBlockDeclRefs - Preallocate all nested BlockDeclRefExprs to
104/// ensure we can generate the debug information for the parameter for the block
105/// invoke function.
106static void AllocateAllBlockDeclRefs(const CodeGenFunction::BlockInfo &Info,
107 CodeGenFunction *CGF) {
108 // Always allocate self, as it is often handy in the debugger, even if there
109 // is no codegen in the block that uses it. This is also useful to always do
110 // this as if we didn't, we'd have to figure out all code that uses a self
111 // pointer, including implicit uses.
112 if (const ObjCMethodDecl *OMD
113 = dyn_cast_or_null<ObjCMethodDecl>(CGF->CurFuncDecl)) {
114 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
115 BlockDeclRefExpr *BDRE = new (CGF->getContext())
116 BlockDeclRefExpr(SelfDecl,
117 SelfDecl->getType(), SourceLocation(), false);
118 CGF->AllocateBlockDecl(BDRE);
119 }
120
121 // FIXME: Also always forward the this pointer in C++ as well.
122
123 for (size_t i = 0; i < Info.DeclRefs.size(); ++i)
124 CGF->AllocateBlockDecl(Info.DeclRefs[i]);
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000125}
126
Mike Stump58a85142009-03-04 22:48:06 +0000127// FIXME: Push most into CGM, passing down a few bits, like current function
128// name.
Mike Stump8a2b4b12009-02-25 23:33:13 +0000129llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000130
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000131 std::string Name = CurFn->getName();
132 CodeGenFunction::BlockInfo Info(0, Name.c_str());
133 CollectBlockDeclRefInfo(BE->getBody(), Info);
134
135 // Check if the block can be global.
Mike Stump58a85142009-03-04 22:48:06 +0000136 // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like
137 // to just have one code path. We should move this function into CGM and pass
138 // CGF, then we can just check to see if CGF is 0.
Mike Stumpdab514f2009-03-04 03:23:46 +0000139 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000140 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump00470a12009-03-05 08:32:30 +0000141
142 std::vector<llvm::Constant*> Elts(5);
Mike Stumpe5fee252009-02-13 16:19:19 +0000143 llvm::Constant *C;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000144 llvm::Value *V;
Mike Stumpe5fee252009-02-13 16:19:19 +0000145
Mike Stumpe5fee252009-02-13 16:19:19 +0000146 {
147 // C = BuildBlockStructInitlist();
148 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
149
Mike Stump00470a12009-03-05 08:32:30 +0000150 // We run this first so that we set BlockHasCopyDispose from the entire
151 // block literal.
152 // __invoke
153 uint64_t subBlockSize, subBlockAlign;
154 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Mike Stumpa803b0e2009-03-25 17:58:24 +0000155 bool subBlockHasCopyDispose = false;
Mike Stump00470a12009-03-05 08:32:30 +0000156 llvm::Function *Fn
Mike Stumpbb304192009-09-24 22:31:14 +0000157 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl,
158 LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000159 subBlockSize,
Mike Stump00470a12009-03-05 08:32:30 +0000160 subBlockAlign,
161 subBlockDeclRefDecls,
Mike Stumpa803b0e2009-03-25 17:58:24 +0000162 subBlockHasCopyDispose);
163 BlockHasCopyDispose |= subBlockHasCopyDispose;
Mike Stump00470a12009-03-05 08:32:30 +0000164 Elts[3] = Fn;
165
Mike Stumpf5408fe2009-05-16 07:57:57 +0000166 // FIXME: Don't use BlockHasCopyDispose, it is set more often then
167 // necessary, for example: { ^{ __block int i; ^{ i = 1; }(); }(); }
Mike Stumpa803b0e2009-03-25 17:58:24 +0000168 if (subBlockHasCopyDispose)
Mike Stumpe5fee252009-02-13 16:19:19 +0000169 flags |= BLOCK_HAS_COPY_DISPOSE;
170
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000171 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000172 C = CGM.getNSConcreteStackBlock();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000173 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump00470a12009-03-05 08:32:30 +0000174 Elts[0] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000175
176 // __flags
177 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
178 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000179 C = llvm::ConstantInt::get(IntTy, flags);
Mike Stump00470a12009-03-05 08:32:30 +0000180 Elts[1] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000181
182 // __reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000183 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump00470a12009-03-05 08:32:30 +0000184 Elts[2] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000185
Mike Stump8a2b4b12009-02-25 23:33:13 +0000186 if (subBlockDeclRefDecls.size() == 0) {
Mike Stumpcf62d392009-03-06 18:42:23 +0000187 // __descriptor
Mike Stumpea26cb52009-10-21 03:49:08 +0000188 Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize,
189 0, 0);
Mike Stumpcf62d392009-03-06 18:42:23 +0000190
Mike Stump5570cfe2009-03-01 20:07:53 +0000191 // Optimize to being a global block.
192 Elts[0] = CGM.getNSConcreteGlobalBlock();
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000193 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
Mike Stump5570cfe2009-03-01 20:07:53 +0000194
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000195 C = llvm::ConstantStruct::get(VMContext, Elts, false);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000196
197 char Name[32];
198 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
Owen Anderson1c431b32009-07-08 19:05:04 +0000199 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stump8a2b4b12009-02-25 23:33:13 +0000200 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000201 C, Name);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000202 QualType BPT = BE->getType();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000203 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
Mike Stump8a2b4b12009-02-25 23:33:13 +0000204 return C;
205 }
Mike Stump00470a12009-03-05 08:32:30 +0000206
Mike Stump8a2b4b12009-02-25 23:33:13 +0000207 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
Mike Stump08920992009-03-07 02:35:30 +0000208 for (int i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000209 Types[i] = Elts[i]->getType();
Mike Stump08920992009-03-07 02:35:30 +0000210 Types[4] = PtrToInt8Ty;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000211
Mike Stumpa99038c2009-02-28 09:07:16 +0000212 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) {
213 const Expr *E = subBlockDeclRefDecls[i];
214 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
215 QualType Ty = E->getType();
Mike Stumpdab514f2009-03-04 03:23:46 +0000216 if (BDRE && BDRE->isByRef()) {
Anders Carlsson9ad55132009-09-09 02:51:03 +0000217 Types[i+5] = llvm::PointerType::get(BuildByRefType(BDRE->getDecl()), 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000218 } else
219 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000220 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000221
Owen Anderson47a434f2009-08-05 23:18:46 +0000222 llvm::StructType *Ty = llvm::StructType::get(VMContext, Types, true);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000223
224 llvm::AllocaInst *A = CreateTempAlloca(Ty);
225 A->setAlignment(subBlockAlign);
226 V = A;
227
Mike Stump08920992009-03-07 02:35:30 +0000228 std::vector<HelperInfo> NoteForHelper(subBlockDeclRefDecls.size());
229 int helpersize = 0;
230
231 for (unsigned i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000232 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump00470a12009-03-05 08:32:30 +0000233
Mike Stump8a2b4b12009-02-25 23:33:13 +0000234 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
235 {
Mike Stumpa99038c2009-02-28 09:07:16 +0000236 // FIXME: Push const down.
237 Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]);
238 DeclRefExpr *DR;
239 ValueDecl *VD;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000240
Mike Stumpa99038c2009-02-28 09:07:16 +0000241 DR = dyn_cast<DeclRefExpr>(E);
242 // Skip padding.
243 if (DR) continue;
244
245 BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
246 VD = BDRE->getDecl();
247
Mike Stumpdab514f2009-03-04 03:23:46 +0000248 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stump08920992009-03-07 02:35:30 +0000249 NoteForHelper[helpersize].index = i+5;
Mike Stump39605b42009-09-22 02:12:52 +0000250 NoteForHelper[helpersize].RequiresCopying
251 = BlockRequiresCopying(VD->getType());
Mike Stump08920992009-03-07 02:35:30 +0000252 NoteForHelper[helpersize].flag
Mike Stump39605b42009-09-22 02:12:52 +0000253 = (VD->getType()->isBlockPointerType()
254 ? BLOCK_FIELD_IS_BLOCK
255 : BLOCK_FIELD_IS_OBJECT);
Mike Stump08920992009-03-07 02:35:30 +0000256
Mike Stumpa99038c2009-02-28 09:07:16 +0000257 if (LocalDeclMap[VD]) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000258 if (BDRE->isByRef()) {
Mike Stump08920992009-03-07 02:35:30 +0000259 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
Mike Stumpf4bc3122009-03-07 06:04:31 +0000260 // FIXME: Someone double check this.
261 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000262 llvm::Value *Loc = LocalDeclMap[VD];
263 Loc = Builder.CreateStructGEP(Loc, 1, "forwarding");
264 Loc = Builder.CreateLoad(Loc, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000265 Builder.CreateStore(Loc, Addr);
Mike Stump08920992009-03-07 02:35:30 +0000266 ++helpersize;
Mike Stumpdab514f2009-03-04 03:23:46 +0000267 continue;
268 } else
269 E = new (getContext()) DeclRefExpr (cast<NamedDecl>(VD),
270 VD->getType(), SourceLocation(),
271 false, false);
Mike Stumpa99038c2009-02-28 09:07:16 +0000272 }
Mike Stumpdab514f2009-03-04 03:23:46 +0000273 if (BDRE->isByRef()) {
Mike Stumpa8b60c92009-03-21 21:00:35 +0000274 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
275 // FIXME: Someone double check this.
276 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpa99038c2009-02-28 09:07:16 +0000277 E = new (getContext())
278 UnaryOperator(E, UnaryOperator::AddrOf,
279 getContext().getPointerType(E->getType()),
280 SourceLocation());
Mike Stumpdab514f2009-03-04 03:23:46 +0000281 }
Mike Stump08920992009-03-07 02:35:30 +0000282 ++helpersize;
Mike Stumpa99038c2009-02-28 09:07:16 +0000283
Mike Stumpa99038c2009-02-28 09:07:16 +0000284 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000285 if (r.isScalar()) {
286 llvm::Value *Loc = r.getScalarVal();
287 const llvm::Type *Ty = Types[i+5];
288 if (BDRE->isByRef()) {
Mike Stump58a85142009-03-04 22:48:06 +0000289 // E is now the address of the value field, instead, we want the
290 // address of the actual ByRef struct. We optimize this slightly
291 // compared to gcc by not grabbing the forwarding slot as this must
292 // be done during Block_copy for us, and we can postpone the work
293 // until then.
294 uint64_t offset = BlockDecls[BDRE->getDecl()];
Mike Stump00470a12009-03-05 08:32:30 +0000295
Mike Stump58a85142009-03-04 22:48:06 +0000296 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump00470a12009-03-05 08:32:30 +0000297
Mike Stump58a85142009-03-04 22:48:06 +0000298 Loc = Builder.CreateGEP(BlockLiteral,
Mike Stumpea26cb52009-10-21 03:49:08 +0000299 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stump58a85142009-03-04 22:48:06 +0000300 offset),
301 "block.literal");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000302 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000303 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stump58a85142009-03-04 22:48:06 +0000304 Loc = Builder.CreateLoad(Loc, false);
305 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000306 }
307 Builder.CreateStore(Loc, Addr);
308 } else if (r.isComplex())
Mike Stump8a2b4b12009-02-25 23:33:13 +0000309 // FIXME: implement
310 ErrorUnsupported(BE, "complex in block literal");
311 else if (r.isAggregate())
312 ; // Already created into the destination
313 else
314 assert (0 && "bad block variable");
315 // FIXME: Ensure that the offset created by the backend for
316 // the struct matches the previously computed offset in BlockDecls.
317 }
Mike Stump08920992009-03-07 02:35:30 +0000318 NoteForHelper.resize(helpersize);
Mike Stumpcf62d392009-03-06 18:42:23 +0000319
320 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000321 llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose,
322 subBlockSize, Ty,
Mike Stump08920992009-03-07 02:35:30 +0000323 &NoteForHelper);
324 Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty);
325 Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp"));
Mike Stumpe5fee252009-02-13 16:19:19 +0000326 }
Mike Stump00470a12009-03-05 08:32:30 +0000327
Mike Stumpbd65cac2009-02-19 01:01:04 +0000328 QualType BPT = BE->getType();
Mike Stump8a2b4b12009-02-25 23:33:13 +0000329 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpe5fee252009-02-13 16:19:19 +0000330}
331
332
Mike Stump2a998142009-03-04 18:17:45 +0000333const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000334 if (BlockDescriptorType)
335 return BlockDescriptorType;
336
Mike Stumpa5448542009-02-13 15:32:32 +0000337 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000338 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000339
Mike Stumpab695142009-02-13 15:16:56 +0000340 // struct __block_descriptor {
341 // unsigned long reserved;
342 // unsigned long block_size;
343 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000344 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy->getContext(),
345 UnsignedLongTy,
Mike Stumpa5448542009-02-13 15:32:32 +0000346 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000347 NULL);
348
349 getModule().addTypeName("struct.__block_descriptor",
350 BlockDescriptorType);
351
352 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000353}
354
Mike Stump2a998142009-03-04 18:17:45 +0000355const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000356 if (GenericBlockLiteralType)
357 return GenericBlockLiteralType;
358
Mike Stumpa5448542009-02-13 15:32:32 +0000359 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000360 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000361
Mike Stump7cbb3602009-02-13 16:01:35 +0000362 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
363 getTypes().ConvertType(getContext().IntTy));
364
Mike Stump9b8a7972009-02-13 15:25:34 +0000365 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000366 // void *__isa;
367 // int __flags;
368 // int __reserved;
369 // void (*__invoke)(void *);
370 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000371 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000372 GenericBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
373 PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000374 IntTy,
375 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000376 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000377 BlockDescPtrTy,
378 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000379
Mike Stump9b8a7972009-02-13 15:25:34 +0000380 getModule().addTypeName("struct.__block_literal_generic",
381 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000382
Mike Stump9b8a7972009-02-13 15:25:34 +0000383 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000384}
385
Mike Stump2a998142009-03-04 18:17:45 +0000386const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000387 if (GenericExtendedBlockLiteralType)
388 return GenericExtendedBlockLiteralType;
389
Mike Stumpbd65cac2009-02-19 01:01:04 +0000390 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000391 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpbd65cac2009-02-19 01:01:04 +0000392
393 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
394 getTypes().ConvertType(getContext().IntTy));
395
396 // struct __block_literal_generic {
397 // void *__isa;
398 // int __flags;
399 // int __reserved;
400 // void (*__invoke)(void *);
401 // struct __block_descriptor *__descriptor;
402 // void *__copy_func_helper_decl;
403 // void *__destroy_func_decl;
404 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000405 GenericExtendedBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
406 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000407 IntTy,
408 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000409 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000410 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000411 PtrToInt8Ty,
412 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000413 NULL);
414
415 getModule().addTypeName("struct.__block_literal_extended_generic",
416 GenericExtendedBlockLiteralType);
417
418 return GenericExtendedBlockLiteralType;
419}
420
Mike Stump39605b42009-09-22 02:12:52 +0000421bool BlockFunction::BlockRequiresCopying(QualType Ty) {
422 return CGM.BlockRequiresCopying(Ty);
423}
424
Anders Carlssond5cab542009-02-12 17:55:02 +0000425RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000426 const BlockPointerType *BPT =
Ted Kremenek6217b802009-07-29 21:53:49 +0000427 E->getCallee()->getType()->getAs<BlockPointerType>();
Mike Stumpa5448542009-02-13 15:32:32 +0000428
Anders Carlssonacfde802009-02-12 00:39:25 +0000429 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
430
431 // Get a pointer to the generic block literal.
432 const llvm::Type *BlockLiteralTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000433 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000434
435 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000436 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000437 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
438
439 // Get the function pointer from the literal.
440 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000441
Mike Stumpa5448542009-02-13 15:32:32 +0000442 BlockLiteral =
443 Builder.CreateBitCast(BlockLiteral,
Benjamin Kramer3c0ef8c2009-10-13 10:07:13 +0000444 llvm::Type::getInt8PtrTy(VMContext),
Anders Carlssonacfde802009-02-12 00:39:25 +0000445 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000446
Anders Carlssonacfde802009-02-12 00:39:25 +0000447 // Add the block literal.
448 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
449 CallArgList Args;
450 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000451
Anders Carlsson782f3972009-04-08 23:13:16 +0000452 QualType FnType = BPT->getPointeeType();
453
Anders Carlssonacfde802009-02-12 00:39:25 +0000454 // And the rest of the arguments.
John McCall183700f2009-09-21 23:43:11 +0000455 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(),
Anders Carlsson782f3972009-04-08 23:13:16 +0000456 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000457
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000458 // Load the function.
459 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
460
John McCall183700f2009-09-21 23:43:11 +0000461 QualType ResultType = FnType->getAs<FunctionType>()->getResultType();
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000462
Mike Stump1eb44332009-09-09 15:08:12 +0000463 const CGFunctionInfo &FnInfo =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000464 CGM.getTypes().getFunctionInfo(ResultType, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000465
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000466 // Cast the function pointer to the right type.
Mike Stump1eb44332009-09-09 15:08:12 +0000467 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000468 CGM.getTypes().GetFunctionType(FnInfo, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000469
Owen Anderson96e0fc72009-07-29 22:16:19 +0000470 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000471 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000472
Anders Carlssonacfde802009-02-12 00:39:25 +0000473 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000474 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000475}
Anders Carlssond5cab542009-02-12 17:55:02 +0000476
Mike Stumpea26cb52009-10-21 03:49:08 +0000477uint64_t CodeGenFunction::AllocateBlockDecl(const BlockDeclRefExpr *E) {
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000478 const ValueDecl *VD = E->getDecl();
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000479 uint64_t &offset = BlockDecls[VD];
Mike Stumpdab514f2009-03-04 03:23:46 +0000480
Mike Stumpdab514f2009-03-04 03:23:46 +0000481 // See if we have already allocated an offset for this variable.
Mike Stumpea26cb52009-10-21 03:49:08 +0000482 if (offset)
483 return offset;
484
485 // Don't run the expensive check, unless we have to.
486 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
487 BlockHasCopyDispose = true;
488
489 // if not, allocate one now.
490 offset = getBlockOffset(E);
491
492 return offset;
493}
494
495llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
496 const ValueDecl *VD = E->getDecl();
497 uint64_t offset = AllocateBlockDecl(E);
498
Mike Stumpdab514f2009-03-04 03:23:46 +0000499
500 llvm::Value *BlockLiteral = LoadBlockStruct();
501 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
Mike Stumpea26cb52009-10-21 03:49:08 +0000502 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000503 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000504 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000505 if (E->isByRef()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000506 const llvm::Type *PtrStructTy
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000507 = llvm::PointerType::get(BuildByRefType(VD), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000508 // The block literal will need a copy/destroy helper.
509 BlockHasCopyDispose = true;
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000510
511 const llvm::Type *Ty = PtrStructTy;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000512 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000513 V = Builder.CreateBitCast(V, Ty);
514 V = Builder.CreateLoad(V, false);
515 V = Builder.CreateStructGEP(V, 1, "forwarding");
516 V = Builder.CreateLoad(V, false);
517 V = Builder.CreateBitCast(V, PtrStructTy);
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000518 V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD),
519 VD->getNameAsString());
Mike Stumpdab514f2009-03-04 03:23:46 +0000520 } else {
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000521 const llvm::Type *Ty = CGM.getTypes().ConvertType(VD->getType());
522
Owen Anderson96e0fc72009-07-29 22:16:19 +0000523 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000524 V = Builder.CreateBitCast(V, Ty);
525 }
526 return V;
527}
528
Mike Stump6cc88f72009-03-20 21:53:12 +0000529void CodeGenFunction::BlockForwardSelf() {
530 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
531 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
532 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
533 if (DMEntry)
534 return;
535 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
536 BlockDeclRefExpr *BDRE = new (getContext())
537 BlockDeclRefExpr(SelfDecl,
538 SelfDecl->getType(), SourceLocation(), false);
539 DMEntry = GetAddrOfBlockDecl(BDRE);
540}
541
Mike Stump67a64482009-02-14 22:16:35 +0000542llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000543BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000544 // Generate the block descriptor.
545 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000546 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
547 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000548
Anders Carlssond5cab542009-02-12 17:55:02 +0000549 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000550
Anders Carlssond5cab542009-02-12 17:55:02 +0000551 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000552 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000553
Anders Carlssond5cab542009-02-12 17:55:02 +0000554 // Block literal size. For global blocks we just use the size of the generic
555 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000556 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000557 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Owen Andersona1cf15f2009-07-14 23:10:40 +0000558 DescriptorFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000559 llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000560
561 llvm::Constant *DescriptorStruct =
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000562 llvm::ConstantStruct::get(VMContext, &DescriptorFields[0], 2, false);
Mike Stumpa5448542009-02-13 15:32:32 +0000563
Anders Carlssond5cab542009-02-12 17:55:02 +0000564 llvm::GlobalVariable *Descriptor =
Owen Anderson1c431b32009-07-08 19:05:04 +0000565 new llvm::GlobalVariable(getModule(), DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000566 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000567 DescriptorStruct, "__block_descriptor_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000568
Anders Carlssond5cab542009-02-12 17:55:02 +0000569 // Generate the constants for the block literal.
570 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000571
Mike Stump67a64482009-02-14 22:16:35 +0000572 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000573 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000574 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000575 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000576 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000577 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000578 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000579 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000580 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000581 subBlockDeclRefDecls,
582 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000583 assert(subBlockSize == BlockLiteralSize
584 && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000585
Anders Carlssond5cab542009-02-12 17:55:02 +0000586 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000587 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000588
Anders Carlssond5cab542009-02-12 17:55:02 +0000589 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000590 LiteralFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000591 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000592
Anders Carlssond5cab542009-02-12 17:55:02 +0000593 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000594 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000595
Anders Carlssond5cab542009-02-12 17:55:02 +0000596 // Function
597 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000598
Anders Carlssond5cab542009-02-12 17:55:02 +0000599 // Descriptor
600 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000601
602 llvm::Constant *BlockLiteralStruct =
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000603 llvm::ConstantStruct::get(VMContext, &LiteralFields[0], 5, false);
Mike Stumpa5448542009-02-13 15:32:32 +0000604
605 llvm::GlobalVariable *BlockLiteral =
Owen Anderson1c431b32009-07-08 19:05:04 +0000606 new llvm::GlobalVariable(getModule(), BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000607 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000608 BlockLiteralStruct, "__block_literal_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000609
Anders Carlssond5cab542009-02-12 17:55:02 +0000610 return BlockLiteral;
611}
612
Mike Stump4e7a1f72009-02-21 20:00:35 +0000613llvm::Value *CodeGenFunction::LoadBlockStruct() {
Mike Stumpbf1914b2009-10-20 20:30:01 +0000614 llvm::Value *V = Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()],
615 "self");
616 // For now, we codegen based upon byte offsets.
617 return Builder.CreateBitCast(V, PtrToInt8Ty);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000618}
619
Mike Stump00470a12009-03-05 08:32:30 +0000620llvm::Function *
621CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
622 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000623 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000624 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000625 uint64_t &Size,
626 uint64_t &Align,
627 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
628 bool &subBlockHasCopyDispose) {
Devang Patel963dfbd2009-04-15 21:51:44 +0000629
630 // Check if we should generate debug info for this block.
631 if (CGM.getDebugInfo())
632 DebugInfo = CGM.getDebugInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000633
Mike Stump7f28a9c2009-03-13 23:34:28 +0000634 // Arrange for local static and local extern declarations to appear
635 // to be local to this function as well, as they are directly referenced
636 // in a block.
637 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
638 i != ldm.end();
639 ++i) {
640 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
Mike Stump1eb44332009-09-09 15:08:12 +0000641
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000642 if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage())
Mike Stump7f28a9c2009-03-13 23:34:28 +0000643 LocalDeclMap[VD] = i->second;
644 }
645
Eli Friedman48f91222009-03-28 03:24:54 +0000646 // FIXME: We need to rearrange the code for copy/dispose so we have this
647 // sooner, so we can calculate offsets correctly.
648 if (!BlockHasCopyDispose)
649 BlockOffset = CGM.getTargetData()
650 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
651 else
652 BlockOffset = CGM.getTargetData()
653 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
654 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
655
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000656 const FunctionType *BlockFunctionType = BExpr->getFunctionType();
657 QualType ResultType;
658 bool IsVariadic;
Mike Stump1eb44332009-09-09 15:08:12 +0000659 if (const FunctionProtoType *FTy =
Fariborz Jahanianda0895d2009-04-11 18:54:57 +0000660 dyn_cast<FunctionProtoType>(BlockFunctionType)) {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000661 ResultType = FTy->getResultType();
662 IsVariadic = FTy->isVariadic();
Mike Stumpb3589f42009-07-30 22:28:39 +0000663 } else {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000664 // K&R style block.
665 ResultType = BlockFunctionType->getResultType();
666 IsVariadic = false;
667 }
Mike Stumpa5448542009-02-13 15:32:32 +0000668
Anders Carlssond5cab542009-02-12 17:55:02 +0000669 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000670
Mike Stumpea26cb52009-10-21 03:49:08 +0000671 CurFuncDecl = OuterFuncDecl;
672
Chris Lattner161d36d2009-02-28 19:01:03 +0000673 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000674
Mike Stumpea26cb52009-10-21 03:49:08 +0000675 IdentifierInfo *II = &CGM.getContext().Idents.get(".block_descriptor");
Mike Stumpadaaad32009-10-20 02:12:22 +0000676
Mike Stumpea26cb52009-10-21 03:49:08 +0000677 // Allocate all BlockDeclRefDecls, so we can calculate the the
678 // right ParmTy below.
679 // FIXME: Resolve testsuite problems, then enable.
680 if (0)
681 AllocateAllBlockDeclRefs(Info, this);
682
683 QualType ParmTy = getContext().getBlockParmType(BlockDeclRefDecls);
Anders Carlssond5cab542009-02-12 17:55:02 +0000684 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000685 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000686 ImplicitParamDecl::Create(getContext(), 0,
Mike Stumpadaaad32009-10-20 02:12:22 +0000687 SourceLocation(), II,
688 ParmTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000689
Anders Carlssond5cab542009-02-12 17:55:02 +0000690 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000691 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000692
Steve Naroffe78b8092009-03-13 16:56:44 +0000693 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000694 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000695 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000696
697 const CGFunctionInfo &FI =
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000698 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlssond5cab542009-02-12 17:55:02 +0000699
Mike Stump67a64482009-02-14 22:16:35 +0000700 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000701 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000702 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic);
Mike Stumpa5448542009-02-13 15:32:32 +0000703
704 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000705 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
706 Name,
707 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000708
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000709 CGM.SetInternalFunctionAttributes(BD, Fn, FI);
710
Chris Lattner4863db42009-04-23 07:18:56 +0000711 StartFunction(BD, ResultType, Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000712 BExpr->getBody()->getLocEnd());
Mike Stumpb1a6e682009-09-30 02:43:10 +0000713
Chris Lattner4863db42009-04-23 07:18:56 +0000714 CurFuncDecl = OuterFuncDecl;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000715 CurCodeDecl = BD;
Mike Stumpb289b3f2009-10-01 22:29:41 +0000716
717 // Save a spot to insert the debug information for all the BlockDeclRefDecls.
718 llvm::BasicBlock *entry = Builder.GetInsertBlock();
719 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint();
720 --entry_ptr;
721
Chris Lattner161d36d2009-02-28 19:01:03 +0000722 EmitStmt(BExpr->getBody());
Mike Stumpb289b3f2009-10-01 22:29:41 +0000723
Mike Stumpde8c5c72009-10-01 00:27:30 +0000724 // Remember where we were...
725 llvm::BasicBlock *resume = Builder.GetInsertBlock();
Mike Stumpb289b3f2009-10-01 22:29:41 +0000726
Mike Stumpde8c5c72009-10-01 00:27:30 +0000727 // Go back to the entry.
Mike Stumpb289b3f2009-10-01 22:29:41 +0000728 ++entry_ptr;
729 Builder.SetInsertPoint(entry, entry_ptr);
730
Mike Stumpb1a6e682009-09-30 02:43:10 +0000731 if (CGDebugInfo *DI = getDebugInfo()) {
Mike Stumpb1a6e682009-09-30 02:43:10 +0000732 // Emit debug information for all the BlockDeclRefDecls.
Mike Stumpb1a6e682009-09-30 02:43:10 +0000733 for (unsigned i=0; i < BlockDeclRefDecls.size(); ++i) {
734 const Expr *E = BlockDeclRefDecls[i];
735 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
736 if (BDRE) {
737 const ValueDecl *D = BDRE->getDecl();
738 DI->setLocation(D->getLocation());
739 DI->EmitDeclareOfBlockDeclRefVariable(BDRE,
740 LocalDeclMap[getBlockStructDecl()],
741 Builder, this);
742 }
743 }
Mike Stumpb1a6e682009-09-30 02:43:10 +0000744 }
Mike Stumpde8c5c72009-10-01 00:27:30 +0000745 // And resume where we left off.
746 if (resume == 0)
747 Builder.ClearInsertionPoint();
748 else
749 Builder.SetInsertPoint(resume);
Mike Stumpb1a6e682009-09-30 02:43:10 +0000750
Chris Lattner161d36d2009-02-28 19:01:03 +0000751 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000752
Mike Stump8a2b4b12009-02-25 23:33:13 +0000753 // The runtime needs a minimum alignment of a void *.
754 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
755 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
756
Mike Stump4e7a1f72009-02-21 20:00:35 +0000757 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000758 Align = BlockAlign;
759 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000760 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000761 return Fn;
762}
Mike Stumpa99038c2009-02-28 09:07:16 +0000763
Mike Stump08920992009-03-07 02:35:30 +0000764uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000765 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
766
767 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
768 uint64_t Align = getContext().getDeclAlignInBytes(D);
769
770 if (BDRE->isByRef()) {
771 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
772 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
773 }
774
775 assert ((Align > 0) && "alignment must be 1 byte or more");
776
777 uint64_t OldOffset = BlockOffset;
778
779 // Ensure proper alignment, even if it means we have to have a gap
780 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
781 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000782
Mike Stumpa99038c2009-02-28 09:07:16 +0000783 uint64_t Pad = BlockOffset - OldOffset;
784 if (Pad) {
Owen Anderson0032b272009-08-13 21:57:51 +0000785 llvm::ArrayType::get(llvm::Type::getInt8Ty(VMContext), Pad);
Mike Stumpa99038c2009-02-28 09:07:16 +0000786 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
787 llvm::APInt(32, Pad),
788 ArrayType::Normal, 0);
789 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000790 0, QualType(PadTy), 0, VarDecl::None);
Mike Stumpa99038c2009-02-28 09:07:16 +0000791 Expr *E;
792 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
793 SourceLocation(), false, false);
794 BlockDeclRefDecls.push_back(E);
795 }
796 BlockDeclRefDecls.push_back(BDRE);
797
798 BlockOffset += Size;
799 return BlockOffset-Size;
800}
Mike Stumpdab514f2009-03-04 03:23:46 +0000801
Mike Stump08920992009-03-07 02:35:30 +0000802llvm::Constant *BlockFunction::
803GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000804 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000805 QualType R = getContext().VoidTy;
806
807 FunctionArgList Args;
808 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000809 ImplicitParamDecl *Dst =
Mike Stumpea26cb52009-10-21 03:49:08 +0000810 ImplicitParamDecl::Create(getContext(), 0,
811 SourceLocation(), 0,
Mike Stump08920992009-03-07 02:35:30 +0000812 getContext().getPointerType(getContext().VoidTy));
813 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000814 ImplicitParamDecl *Src =
Mike Stumpea26cb52009-10-21 03:49:08 +0000815 ImplicitParamDecl::Create(getContext(), 0,
816 SourceLocation(), 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000817 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000818 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000819
Mike Stumpa4f668f2009-03-06 01:33:24 +0000820 const CGFunctionInfo &FI =
821 CGM.getTypes().getFunctionInfo(R, Args);
822
Mike Stump3899a7f2009-06-05 23:26:36 +0000823 // FIXME: We'd like to put these into a mergable by content, with
824 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000825 std::string Name = std::string("__copy_helper_block_");
826 CodeGenTypes &Types = CGM.getTypes();
827 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
828
829 llvm::Function *Fn =
830 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
831 Name,
832 &CGM.getModule());
833
834 IdentifierInfo *II
835 = &CGM.getContext().Idents.get("__copy_helper_block_");
836
837 FunctionDecl *FD = FunctionDecl::Create(getContext(),
838 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000839 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000840 FunctionDecl::Static, false,
841 true);
842 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000843
844 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
845 llvm::Type *PtrPtrT;
Mike Stump08920992009-03-07 02:35:30 +0000846
Mike Stumpb7477cf2009-04-10 18:52:28 +0000847 if (NoteForHelperp) {
848 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump08920992009-03-07 02:35:30 +0000849
Owen Anderson96e0fc72009-07-29 22:16:19 +0000850 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000851 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
852 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump08920992009-03-07 02:35:30 +0000853
Mike Stumpb7477cf2009-04-10 18:52:28 +0000854 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000855 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000856 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000857 DstObj = Builder.CreateBitCast(DstObj, PtrPtrT);
858 DstObj = Builder.CreateLoad(DstObj);
Mike Stump08920992009-03-07 02:35:30 +0000859
Mike Stumpb7477cf2009-04-10 18:52:28 +0000860 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
861 int flag = NoteForHelper[i].flag;
862 int index = NoteForHelper[i].index;
Mike Stump08920992009-03-07 02:35:30 +0000863
Mike Stumpb7477cf2009-04-10 18:52:28 +0000864 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
865 || NoteForHelper[i].RequiresCopying) {
866 llvm::Value *Srcv = SrcObj;
867 Srcv = Builder.CreateStructGEP(Srcv, index);
868 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000869 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000870 Srcv = Builder.CreateLoad(Srcv);
871
872 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
873 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
874
Owen Anderson0032b272009-08-13 21:57:51 +0000875 llvm::Value *N = llvm::ConstantInt::get(
876 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000877 llvm::Value *F = getBlockObjectAssign();
878 Builder.CreateCall3(F, Dstv, Srcv, N);
879 }
Mike Stump08920992009-03-07 02:35:30 +0000880 }
881 }
882
Mike Stumpa4f668f2009-03-06 01:33:24 +0000883 CGF.FinishFunction();
884
Owen Anderson3c4972d2009-07-29 18:54:39 +0000885 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000886}
887
Mike Stumpcf62d392009-03-06 18:42:23 +0000888llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000889GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
890 const llvm::StructType* T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000891 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000892 QualType R = getContext().VoidTy;
893
894 FunctionArgList Args;
895 // FIXME: This leaks
896 ImplicitParamDecl *Src =
Mike Stumpea26cb52009-10-21 03:49:08 +0000897 ImplicitParamDecl::Create(getContext(), 0,
898 SourceLocation(), 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000899 getContext().getPointerType(getContext().VoidTy));
900
901 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Mike Stumpa4f668f2009-03-06 01:33:24 +0000903 const CGFunctionInfo &FI =
904 CGM.getTypes().getFunctionInfo(R, Args);
905
Mike Stump3899a7f2009-06-05 23:26:36 +0000906 // FIXME: We'd like to put these into a mergable by content, with
907 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000908 std::string Name = std::string("__destroy_helper_block_");
909 CodeGenTypes &Types = CGM.getTypes();
910 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
911
912 llvm::Function *Fn =
913 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
914 Name,
915 &CGM.getModule());
916
917 IdentifierInfo *II
918 = &CGM.getContext().Idents.get("__destroy_helper_block_");
919
920 FunctionDecl *FD = FunctionDecl::Create(getContext(),
921 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000922 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000923 FunctionDecl::Static, false,
924 true);
925 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000926
Mike Stumpb7477cf2009-04-10 18:52:28 +0000927 if (NoteForHelperp) {
928 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump1edf6b62009-03-07 02:53:18 +0000929
Mike Stumpb7477cf2009-04-10 18:52:28 +0000930 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
931 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000932 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000933 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
934 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump1edf6b62009-03-07 02:53:18 +0000935
Mike Stumpb7477cf2009-04-10 18:52:28 +0000936 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
937 int flag = NoteForHelper[i].flag;
938 int index = NoteForHelper[i].index;
Mike Stump1edf6b62009-03-07 02:53:18 +0000939
Mike Stumpb7477cf2009-04-10 18:52:28 +0000940 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
941 || NoteForHelper[i].RequiresCopying) {
942 llvm::Value *Srcv = SrcObj;
943 Srcv = Builder.CreateStructGEP(Srcv, index);
944 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000945 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000946 Srcv = Builder.CreateLoad(Srcv);
947
948 BuildBlockRelease(Srcv, flag);
949 }
Mike Stump1edf6b62009-03-07 02:53:18 +0000950 }
951 }
952
Mike Stumpa4f668f2009-03-06 01:33:24 +0000953 CGF.FinishFunction();
954
Owen Anderson3c4972d2009-07-29 18:54:39 +0000955 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000956}
957
Mike Stump08920992009-03-07 02:35:30 +0000958llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000959 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump08920992009-03-07 02:35:30 +0000960 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
961 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000962}
963
Mike Stump08920992009-03-07 02:35:30 +0000964llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000965 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stump08920992009-03-07 02:35:30 +0000966 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000967 T, NoteForHelperp);
Mike Stumpdab514f2009-03-04 03:23:46 +0000968}
Mike Stump797b6322009-03-05 01:23:13 +0000969
Mike Stumpee094222009-03-06 06:12:24 +0000970llvm::Constant *BlockFunction::
971GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000972 QualType R = getContext().VoidTy;
973
974 FunctionArgList Args;
975 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000976 ImplicitParamDecl *Dst =
Mike Stumpea26cb52009-10-21 03:49:08 +0000977 ImplicitParamDecl::Create(getContext(), 0,
978 SourceLocation(), 0,
Mike Stumpee094222009-03-06 06:12:24 +0000979 getContext().getPointerType(getContext().VoidTy));
980 Args.push_back(std::make_pair(Dst, Dst->getType()));
981
982 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000983 ImplicitParamDecl *Src =
Mike Stumpea26cb52009-10-21 03:49:08 +0000984 ImplicitParamDecl::Create(getContext(), 0,
985 SourceLocation(), 0,
Mike Stump45031c02009-03-06 02:29:21 +0000986 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000987 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Mike Stump45031c02009-03-06 02:29:21 +0000989 const CGFunctionInfo &FI =
990 CGM.getTypes().getFunctionInfo(R, Args);
991
992 std::string Name = std::string("__Block_byref_id_object_copy_");
993 CodeGenTypes &Types = CGM.getTypes();
994 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
995
Mike Stump3899a7f2009-06-05 23:26:36 +0000996 // FIXME: We'd like to put these into a mergable by content, with
997 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000998 llvm::Function *Fn =
999 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
1000 Name,
1001 &CGM.getModule());
1002
1003 IdentifierInfo *II
1004 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
1005
1006 FunctionDecl *FD = FunctionDecl::Create(getContext(),
1007 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001008 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +00001009 FunctionDecl::Static, false,
1010 true);
1011 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +00001012
1013 // dst->x
1014 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
Owen Anderson96e0fc72009-07-29 22:16:19 +00001015 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001016 V = Builder.CreateLoad(V);
Mike Stumpee094222009-03-06 06:12:24 +00001017 V = Builder.CreateStructGEP(V, 6, "x");
1018 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
1019
1020 // src->x
1021 V = CGF.GetAddrOfLocalVar(Src);
1022 V = Builder.CreateLoad(V);
1023 V = Builder.CreateBitCast(V, T);
1024 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +00001025 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpee094222009-03-06 06:12:24 +00001026 llvm::Value *SrcObj = Builder.CreateLoad(V);
Mike Stump1eb44332009-09-09 15:08:12 +00001027
Mike Stumpee094222009-03-06 06:12:24 +00001028 flag |= BLOCK_BYREF_CALLER;
1029
Owen Anderson0032b272009-08-13 21:57:51 +00001030 llvm::Value *N = llvm::ConstantInt::get(
1031 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpee094222009-03-06 06:12:24 +00001032 llvm::Value *F = getBlockObjectAssign();
1033 Builder.CreateCall3(F, DstObj, SrcObj, N);
1034
Mike Stump45031c02009-03-06 02:29:21 +00001035 CGF.FinishFunction();
1036
Owen Anderson3c4972d2009-07-29 18:54:39 +00001037 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +00001038}
1039
Mike Stump1851b682009-03-06 04:53:30 +00001040llvm::Constant *
1041BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
1042 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +00001043 QualType R = getContext().VoidTy;
1044
1045 FunctionArgList Args;
1046 // FIXME: This leaks
1047 ImplicitParamDecl *Src =
Mike Stumpea26cb52009-10-21 03:49:08 +00001048 ImplicitParamDecl::Create(getContext(), 0,
1049 SourceLocation(), 0,
Mike Stump45031c02009-03-06 02:29:21 +00001050 getContext().getPointerType(getContext().VoidTy));
1051
1052 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +00001053
Mike Stump45031c02009-03-06 02:29:21 +00001054 const CGFunctionInfo &FI =
1055 CGM.getTypes().getFunctionInfo(R, Args);
1056
1057 std::string Name = std::string("__Block_byref_id_object_dispose_");
1058 CodeGenTypes &Types = CGM.getTypes();
1059 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
1060
Mike Stump3899a7f2009-06-05 23:26:36 +00001061 // FIXME: We'd like to put these into a mergable by content, with
1062 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +00001063 llvm::Function *Fn =
1064 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
1065 Name,
1066 &CGM.getModule());
1067
1068 IdentifierInfo *II
1069 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
1070
1071 FunctionDecl *FD = FunctionDecl::Create(getContext(),
1072 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001073 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +00001074 FunctionDecl::Static, false,
1075 true);
1076 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +00001077
1078 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
Owen Anderson96e0fc72009-07-29 22:16:19 +00001079 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001080 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +00001081 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +00001082 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001083 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +00001084
Mike Stump1851b682009-03-06 04:53:30 +00001085 flag |= BLOCK_BYREF_CALLER;
1086 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001087 CGF.FinishFunction();
1088
Owen Anderson3c4972d2009-07-29 18:54:39 +00001089 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +00001090}
1091
Mike Stumpee094222009-03-06 06:12:24 +00001092llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001093 int flag, unsigned Align) {
1094 // All alignments below that of pointer alignment collpase down to just
1095 // pointer alignment, as we always have at least that much alignment to begin
1096 // with.
1097 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1098 // As an optimization, we only generate a single function of each kind we
1099 // might need. We need a different one for each alignment and for each
1100 // setting of flags. We mix Align and flag to get the kind.
1101 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1102 llvm::Constant *& Entry = CGM.AssignCache[kind];
1103 if (Entry)
1104 return Entry;
1105 return Entry=CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001106}
1107
Mike Stump1851b682009-03-06 04:53:30 +00001108llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001109 int flag,
1110 unsigned Align) {
1111 // All alignments below that of pointer alignment collpase down to just
1112 // pointer alignment, as we always have at least that much alignment to begin
1113 // with.
1114 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1115 // As an optimization, we only generate a single function of each kind we
1116 // might need. We need a different one for each alignment and for each
1117 // setting of flags. We mix Align and flag to get the kind.
1118 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1119 llvm::Constant *& Entry = CGM.DestroyCache[kind];
1120 if (Entry)
1121 return Entry;
1122 return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001123}
1124
Mike Stump797b6322009-03-05 01:23:13 +00001125llvm::Value *BlockFunction::getBlockObjectDispose() {
1126 if (CGM.BlockObjectDispose == 0) {
1127 const llvm::FunctionType *FTy;
1128 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001129 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stump797b6322009-03-05 01:23:13 +00001130 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001131 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001132 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001133 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001134 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1135 }
1136 return CGM.BlockObjectDispose;
1137}
1138
Mike Stumpee094222009-03-06 06:12:24 +00001139llvm::Value *BlockFunction::getBlockObjectAssign() {
1140 if (CGM.BlockObjectAssign == 0) {
1141 const llvm::FunctionType *FTy;
1142 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001143 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stumpee094222009-03-06 06:12:24 +00001144 ArgTys.push_back(PtrToInt8Ty);
1145 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001146 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001147 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stumpee094222009-03-06 06:12:24 +00001148 CGM.BlockObjectAssign
1149 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1150 }
1151 return CGM.BlockObjectAssign;
1152}
1153
Mike Stump1851b682009-03-06 04:53:30 +00001154void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001155 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001156 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001157 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001158 N = llvm::ConstantInt::get(llvm::Type::getInt32Ty(V->getContext()), flag);
Mike Stump797b6322009-03-05 01:23:13 +00001159 Builder.CreateCall2(F, V, N);
1160}
Mike Stump00470a12009-03-05 08:32:30 +00001161
1162ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001163
1164BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1165 CGBuilderTy &B)
Owen Andersona1cf15f2009-07-14 23:10:40 +00001166 : CGM(cgm), CGF(cgf), VMContext(cgm.getLLVMContext()), Builder(B) {
Owen Anderson0032b272009-08-13 21:57:51 +00001167 PtrToInt8Ty = llvm::PointerType::getUnqual(
1168 llvm::Type::getInt8Ty(VMContext));
Mike Stump08920992009-03-07 02:35:30 +00001169
1170 BlockHasCopyDispose = false;
1171}