blob: e9648251d2b023ca037a897428ae8db8a6ade0b3 [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
Anders Carlsson4de9fce2009-03-01 01:09:12 +000083 if (const BlockDeclRefExpr *DE = dyn_cast<BlockDeclRefExpr>(S)) {
84 // FIXME: Handle enums.
85 if (isa<FunctionDecl>(DE->getDecl()))
86 return;
Mike Stump00470a12009-03-05 08:32:30 +000087
Anders Carlsson4de9fce2009-03-01 01:09:12 +000088 if (DE->isByRef())
89 Info.ByRefDeclRefs.push_back(DE);
90 else
91 Info.ByCopyDeclRefs.push_back(DE);
92 }
93}
94
Mike Stump58a85142009-03-04 22:48:06 +000095/// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be
96/// declared as a global variable instead of on the stack.
Chris Lattnere2f79b62009-05-13 02:50:56 +000097static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info) {
Anders Carlsson4de9fce2009-03-01 01:09:12 +000098 return Info.ByRefDeclRefs.empty() && Info.ByCopyDeclRefs.empty();
99}
100
Mike Stump58a85142009-03-04 22:48:06 +0000101// FIXME: Push most into CGM, passing down a few bits, like current function
102// name.
Mike Stump8a2b4b12009-02-25 23:33:13 +0000103llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000104
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000105 std::string Name = CurFn->getName();
106 CodeGenFunction::BlockInfo Info(0, Name.c_str());
107 CollectBlockDeclRefInfo(BE->getBody(), Info);
108
109 // Check if the block can be global.
Mike Stump58a85142009-03-04 22:48:06 +0000110 // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like
111 // to just have one code path. We should move this function into CGM and pass
112 // CGF, then we can just check to see if CGF is 0.
Mike Stumpdab514f2009-03-04 03:23:46 +0000113 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000114 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump00470a12009-03-05 08:32:30 +0000115
116 std::vector<llvm::Constant*> Elts(5);
Mike Stumpe5fee252009-02-13 16:19:19 +0000117 llvm::Constant *C;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000118 llvm::Value *V;
Mike Stumpe5fee252009-02-13 16:19:19 +0000119
Mike Stumpe5fee252009-02-13 16:19:19 +0000120 {
121 // C = BuildBlockStructInitlist();
122 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
123
Mike Stump00470a12009-03-05 08:32:30 +0000124 // We run this first so that we set BlockHasCopyDispose from the entire
125 // block literal.
126 // __invoke
127 uint64_t subBlockSize, subBlockAlign;
128 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Mike Stumpa803b0e2009-03-25 17:58:24 +0000129 bool subBlockHasCopyDispose = false;
Mike Stump00470a12009-03-05 08:32:30 +0000130 llvm::Function *Fn
Mike Stumpbb304192009-09-24 22:31:14 +0000131 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl,
132 LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000133 subBlockSize,
Mike Stump00470a12009-03-05 08:32:30 +0000134 subBlockAlign,
135 subBlockDeclRefDecls,
Mike Stumpa803b0e2009-03-25 17:58:24 +0000136 subBlockHasCopyDispose);
137 BlockHasCopyDispose |= subBlockHasCopyDispose;
Mike Stump00470a12009-03-05 08:32:30 +0000138 Elts[3] = Fn;
139
Mike Stumpf5408fe2009-05-16 07:57:57 +0000140 // FIXME: Don't use BlockHasCopyDispose, it is set more often then
141 // necessary, for example: { ^{ __block int i; ^{ i = 1; }(); }(); }
Mike Stumpa803b0e2009-03-25 17:58:24 +0000142 if (subBlockHasCopyDispose)
Mike Stumpe5fee252009-02-13 16:19:19 +0000143 flags |= BLOCK_HAS_COPY_DISPOSE;
144
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000145 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000146 C = CGM.getNSConcreteStackBlock();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000147 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump00470a12009-03-05 08:32:30 +0000148 Elts[0] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000149
150 // __flags
151 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
152 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000153 C = llvm::ConstantInt::get(IntTy, flags);
Mike Stump00470a12009-03-05 08:32:30 +0000154 Elts[1] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000155
156 // __reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000157 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump00470a12009-03-05 08:32:30 +0000158 Elts[2] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000159
Mike Stump8a2b4b12009-02-25 23:33:13 +0000160 if (subBlockDeclRefDecls.size() == 0) {
Mike Stumpcf62d392009-03-06 18:42:23 +0000161 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000162 Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize, 0, 0);
Mike Stumpcf62d392009-03-06 18:42:23 +0000163
Mike Stump5570cfe2009-03-01 20:07:53 +0000164 // Optimize to being a global block.
165 Elts[0] = CGM.getNSConcreteGlobalBlock();
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000166 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
Mike Stump5570cfe2009-03-01 20:07:53 +0000167
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000168 C = llvm::ConstantStruct::get(VMContext, Elts, false);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000169
170 char Name[32];
171 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
Owen Anderson1c431b32009-07-08 19:05:04 +0000172 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stump8a2b4b12009-02-25 23:33:13 +0000173 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000174 C, Name);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000175 QualType BPT = BE->getType();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000176 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
Mike Stump8a2b4b12009-02-25 23:33:13 +0000177 return C;
178 }
Mike Stump00470a12009-03-05 08:32:30 +0000179
Mike Stump8a2b4b12009-02-25 23:33:13 +0000180 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
Mike Stump08920992009-03-07 02:35:30 +0000181 for (int i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000182 Types[i] = Elts[i]->getType();
Mike Stump08920992009-03-07 02:35:30 +0000183 Types[4] = PtrToInt8Ty;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000184
Mike Stumpa99038c2009-02-28 09:07:16 +0000185 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) {
186 const Expr *E = subBlockDeclRefDecls[i];
187 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
188 QualType Ty = E->getType();
Mike Stumpdab514f2009-03-04 03:23:46 +0000189 if (BDRE && BDRE->isByRef()) {
Anders Carlsson9ad55132009-09-09 02:51:03 +0000190 Types[i+5] = llvm::PointerType::get(BuildByRefType(BDRE->getDecl()), 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000191 } else
192 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000193 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000194
Owen Anderson47a434f2009-08-05 23:18:46 +0000195 llvm::StructType *Ty = llvm::StructType::get(VMContext, Types, true);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000196
197 llvm::AllocaInst *A = CreateTempAlloca(Ty);
198 A->setAlignment(subBlockAlign);
199 V = A;
200
Mike Stump08920992009-03-07 02:35:30 +0000201 std::vector<HelperInfo> NoteForHelper(subBlockDeclRefDecls.size());
202 int helpersize = 0;
203
204 for (unsigned i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000205 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump00470a12009-03-05 08:32:30 +0000206
Mike Stump8a2b4b12009-02-25 23:33:13 +0000207 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
208 {
Mike Stumpa99038c2009-02-28 09:07:16 +0000209 // FIXME: Push const down.
210 Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]);
211 DeclRefExpr *DR;
212 ValueDecl *VD;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000213
Mike Stumpa99038c2009-02-28 09:07:16 +0000214 DR = dyn_cast<DeclRefExpr>(E);
215 // Skip padding.
216 if (DR) continue;
217
218 BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
219 VD = BDRE->getDecl();
220
Mike Stumpdab514f2009-03-04 03:23:46 +0000221 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stump08920992009-03-07 02:35:30 +0000222 NoteForHelper[helpersize].index = i+5;
Mike Stump39605b42009-09-22 02:12:52 +0000223 NoteForHelper[helpersize].RequiresCopying
224 = BlockRequiresCopying(VD->getType());
Mike Stump08920992009-03-07 02:35:30 +0000225 NoteForHelper[helpersize].flag
Mike Stump39605b42009-09-22 02:12:52 +0000226 = (VD->getType()->isBlockPointerType()
227 ? BLOCK_FIELD_IS_BLOCK
228 : BLOCK_FIELD_IS_OBJECT);
Mike Stump08920992009-03-07 02:35:30 +0000229
Mike Stumpa99038c2009-02-28 09:07:16 +0000230 if (LocalDeclMap[VD]) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000231 if (BDRE->isByRef()) {
Mike Stump08920992009-03-07 02:35:30 +0000232 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
Mike Stumpf4bc3122009-03-07 06:04:31 +0000233 // FIXME: Someone double check this.
234 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000235 llvm::Value *Loc = LocalDeclMap[VD];
236 Loc = Builder.CreateStructGEP(Loc, 1, "forwarding");
237 Loc = Builder.CreateLoad(Loc, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000238 Builder.CreateStore(Loc, Addr);
Mike Stump08920992009-03-07 02:35:30 +0000239 ++helpersize;
Mike Stumpdab514f2009-03-04 03:23:46 +0000240 continue;
241 } else
242 E = new (getContext()) DeclRefExpr (cast<NamedDecl>(VD),
243 VD->getType(), SourceLocation(),
244 false, false);
Mike Stumpa99038c2009-02-28 09:07:16 +0000245 }
Mike Stumpdab514f2009-03-04 03:23:46 +0000246 if (BDRE->isByRef()) {
Mike Stumpa8b60c92009-03-21 21:00:35 +0000247 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
248 // FIXME: Someone double check this.
249 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpa99038c2009-02-28 09:07:16 +0000250 E = new (getContext())
251 UnaryOperator(E, UnaryOperator::AddrOf,
252 getContext().getPointerType(E->getType()),
253 SourceLocation());
Mike Stumpdab514f2009-03-04 03:23:46 +0000254 }
Mike Stump08920992009-03-07 02:35:30 +0000255 ++helpersize;
Mike Stumpa99038c2009-02-28 09:07:16 +0000256
Mike Stumpa99038c2009-02-28 09:07:16 +0000257 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000258 if (r.isScalar()) {
259 llvm::Value *Loc = r.getScalarVal();
260 const llvm::Type *Ty = Types[i+5];
261 if (BDRE->isByRef()) {
Mike Stump58a85142009-03-04 22:48:06 +0000262 // E is now the address of the value field, instead, we want the
263 // address of the actual ByRef struct. We optimize this slightly
264 // compared to gcc by not grabbing the forwarding slot as this must
265 // be done during Block_copy for us, and we can postpone the work
266 // until then.
267 uint64_t offset = BlockDecls[BDRE->getDecl()];
Mike Stump00470a12009-03-05 08:32:30 +0000268
Mike Stump58a85142009-03-04 22:48:06 +0000269 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump00470a12009-03-05 08:32:30 +0000270
Mike Stump58a85142009-03-04 22:48:06 +0000271 Loc = Builder.CreateGEP(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000272 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stump58a85142009-03-04 22:48:06 +0000273 offset),
274 "block.literal");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000275 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000276 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stump58a85142009-03-04 22:48:06 +0000277 Loc = Builder.CreateLoad(Loc, false);
278 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000279 }
280 Builder.CreateStore(Loc, Addr);
281 } else if (r.isComplex())
Mike Stump8a2b4b12009-02-25 23:33:13 +0000282 // FIXME: implement
283 ErrorUnsupported(BE, "complex in block literal");
284 else if (r.isAggregate())
285 ; // Already created into the destination
286 else
287 assert (0 && "bad block variable");
288 // FIXME: Ensure that the offset created by the backend for
289 // the struct matches the previously computed offset in BlockDecls.
290 }
Mike Stump08920992009-03-07 02:35:30 +0000291 NoteForHelper.resize(helpersize);
Mike Stumpcf62d392009-03-06 18:42:23 +0000292
293 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000294 llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose,
295 subBlockSize, Ty,
Mike Stump08920992009-03-07 02:35:30 +0000296 &NoteForHelper);
297 Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty);
298 Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp"));
Mike Stumpe5fee252009-02-13 16:19:19 +0000299 }
Mike Stump00470a12009-03-05 08:32:30 +0000300
Mike Stumpbd65cac2009-02-19 01:01:04 +0000301 QualType BPT = BE->getType();
Mike Stump8a2b4b12009-02-25 23:33:13 +0000302 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpe5fee252009-02-13 16:19:19 +0000303}
304
305
Mike Stump2a998142009-03-04 18:17:45 +0000306const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000307 if (BlockDescriptorType)
308 return BlockDescriptorType;
309
Mike Stumpa5448542009-02-13 15:32:32 +0000310 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000311 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000312
Mike Stumpab695142009-02-13 15:16:56 +0000313 // struct __block_descriptor {
314 // unsigned long reserved;
315 // unsigned long block_size;
316 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000317 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy->getContext(),
318 UnsignedLongTy,
Mike Stumpa5448542009-02-13 15:32:32 +0000319 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000320 NULL);
321
322 getModule().addTypeName("struct.__block_descriptor",
323 BlockDescriptorType);
324
325 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000326}
327
Mike Stump2a998142009-03-04 18:17:45 +0000328const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000329 if (GenericBlockLiteralType)
330 return GenericBlockLiteralType;
331
Mike Stumpa5448542009-02-13 15:32:32 +0000332 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000333 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000334
Mike Stump7cbb3602009-02-13 16:01:35 +0000335 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
336 getTypes().ConvertType(getContext().IntTy));
337
Mike Stump9b8a7972009-02-13 15:25:34 +0000338 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000339 // void *__isa;
340 // int __flags;
341 // int __reserved;
342 // void (*__invoke)(void *);
343 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000344 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000345 GenericBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
346 PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000347 IntTy,
348 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000349 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000350 BlockDescPtrTy,
351 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000352
Mike Stump9b8a7972009-02-13 15:25:34 +0000353 getModule().addTypeName("struct.__block_literal_generic",
354 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000355
Mike Stump9b8a7972009-02-13 15:25:34 +0000356 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000357}
358
Mike Stump2a998142009-03-04 18:17:45 +0000359const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000360 if (GenericExtendedBlockLiteralType)
361 return GenericExtendedBlockLiteralType;
362
Mike Stumpbd65cac2009-02-19 01:01:04 +0000363 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000364 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpbd65cac2009-02-19 01:01:04 +0000365
366 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
367 getTypes().ConvertType(getContext().IntTy));
368
369 // struct __block_literal_generic {
370 // void *__isa;
371 // int __flags;
372 // int __reserved;
373 // void (*__invoke)(void *);
374 // struct __block_descriptor *__descriptor;
375 // void *__copy_func_helper_decl;
376 // void *__destroy_func_decl;
377 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000378 GenericExtendedBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
379 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000380 IntTy,
381 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000382 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000383 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000384 PtrToInt8Ty,
385 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000386 NULL);
387
388 getModule().addTypeName("struct.__block_literal_extended_generic",
389 GenericExtendedBlockLiteralType);
390
391 return GenericExtendedBlockLiteralType;
392}
393
Mike Stump39605b42009-09-22 02:12:52 +0000394bool BlockFunction::BlockRequiresCopying(QualType Ty) {
395 return CGM.BlockRequiresCopying(Ty);
396}
397
Anders Carlssond5cab542009-02-12 17:55:02 +0000398RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000399 const BlockPointerType *BPT =
Ted Kremenek6217b802009-07-29 21:53:49 +0000400 E->getCallee()->getType()->getAs<BlockPointerType>();
Mike Stumpa5448542009-02-13 15:32:32 +0000401
Anders Carlssonacfde802009-02-12 00:39:25 +0000402 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
403
404 // Get a pointer to the generic block literal.
405 const llvm::Type *BlockLiteralTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000406 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000407
408 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000409 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000410 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
411
412 // Get the function pointer from the literal.
413 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000414
Mike Stumpa5448542009-02-13 15:32:32 +0000415 BlockLiteral =
416 Builder.CreateBitCast(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000417 llvm::PointerType::getUnqual(
418 llvm::Type::getInt8Ty(VMContext)),
Anders Carlssonacfde802009-02-12 00:39:25 +0000419 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000420
Anders Carlssonacfde802009-02-12 00:39:25 +0000421 // Add the block literal.
422 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
423 CallArgList Args;
424 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000425
Anders Carlsson782f3972009-04-08 23:13:16 +0000426 QualType FnType = BPT->getPointeeType();
427
Anders Carlssonacfde802009-02-12 00:39:25 +0000428 // And the rest of the arguments.
John McCall183700f2009-09-21 23:43:11 +0000429 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(),
Anders Carlsson782f3972009-04-08 23:13:16 +0000430 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000431
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000432 // Load the function.
433 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
434
John McCall183700f2009-09-21 23:43:11 +0000435 QualType ResultType = FnType->getAs<FunctionType>()->getResultType();
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000436
Mike Stump1eb44332009-09-09 15:08:12 +0000437 const CGFunctionInfo &FnInfo =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000438 CGM.getTypes().getFunctionInfo(ResultType, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000439
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000440 // Cast the function pointer to the right type.
Mike Stump1eb44332009-09-09 15:08:12 +0000441 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000442 CGM.getTypes().GetFunctionType(FnInfo, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000443
Owen Anderson96e0fc72009-07-29 22:16:19 +0000444 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000445 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000446
Anders Carlssonacfde802009-02-12 00:39:25 +0000447 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000448 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000449}
Anders Carlssond5cab542009-02-12 17:55:02 +0000450
Mike Stumpdab514f2009-03-04 03:23:46 +0000451llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000452 const ValueDecl *VD = E->getDecl();
453
454 uint64_t &offset = BlockDecls[VD];
Mike Stumpdab514f2009-03-04 03:23:46 +0000455
Mike Stumpdab514f2009-03-04 03:23:46 +0000456
Mike Stumpdab514f2009-03-04 03:23:46 +0000457 // See if we have already allocated an offset for this variable.
458 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000459 // Don't run the expensive check, unless we have to.
460 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
461 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000462 // if not, allocate one now.
463 offset = getBlockOffset(E);
464 }
465
466 llvm::Value *BlockLiteral = LoadBlockStruct();
467 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000468 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000469 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000470 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000471 if (E->isByRef()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000472 const llvm::Type *PtrStructTy
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000473 = llvm::PointerType::get(BuildByRefType(VD), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000474 // The block literal will need a copy/destroy helper.
475 BlockHasCopyDispose = true;
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000476
477 const llvm::Type *Ty = PtrStructTy;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000478 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000479 V = Builder.CreateBitCast(V, Ty);
480 V = Builder.CreateLoad(V, false);
481 V = Builder.CreateStructGEP(V, 1, "forwarding");
482 V = Builder.CreateLoad(V, false);
483 V = Builder.CreateBitCast(V, PtrStructTy);
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000484 V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD),
485 VD->getNameAsString());
Mike Stumpdab514f2009-03-04 03:23:46 +0000486 } else {
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000487 const llvm::Type *Ty = CGM.getTypes().ConvertType(VD->getType());
488
Owen Anderson96e0fc72009-07-29 22:16:19 +0000489 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000490 V = Builder.CreateBitCast(V, Ty);
491 }
492 return V;
493}
494
Mike Stump6cc88f72009-03-20 21:53:12 +0000495void CodeGenFunction::BlockForwardSelf() {
496 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
497 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
498 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
499 if (DMEntry)
500 return;
501 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
502 BlockDeclRefExpr *BDRE = new (getContext())
503 BlockDeclRefExpr(SelfDecl,
504 SelfDecl->getType(), SourceLocation(), false);
505 DMEntry = GetAddrOfBlockDecl(BDRE);
506}
507
Mike Stump67a64482009-02-14 22:16:35 +0000508llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000509BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000510 // Generate the block descriptor.
511 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000512 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
513 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000514
Anders Carlssond5cab542009-02-12 17:55:02 +0000515 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000516
Anders Carlssond5cab542009-02-12 17:55:02 +0000517 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000518 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000519
Anders Carlssond5cab542009-02-12 17:55:02 +0000520 // Block literal size. For global blocks we just use the size of the generic
521 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000522 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000523 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Owen Andersona1cf15f2009-07-14 23:10:40 +0000524 DescriptorFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000525 llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000526
527 llvm::Constant *DescriptorStruct =
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000528 llvm::ConstantStruct::get(VMContext, &DescriptorFields[0], 2, false);
Mike Stumpa5448542009-02-13 15:32:32 +0000529
Anders Carlssond5cab542009-02-12 17:55:02 +0000530 llvm::GlobalVariable *Descriptor =
Owen Anderson1c431b32009-07-08 19:05:04 +0000531 new llvm::GlobalVariable(getModule(), DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000532 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000533 DescriptorStruct, "__block_descriptor_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000534
Anders Carlssond5cab542009-02-12 17:55:02 +0000535 // Generate the constants for the block literal.
536 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000537
Mike Stump67a64482009-02-14 22:16:35 +0000538 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000539 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000540 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000541 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000542 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000543 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000544 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000545 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000546 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000547 subBlockDeclRefDecls,
548 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000549 assert(subBlockSize == BlockLiteralSize
550 && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000551
Anders Carlssond5cab542009-02-12 17:55:02 +0000552 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000553 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000554
Anders Carlssond5cab542009-02-12 17:55:02 +0000555 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000556 LiteralFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000557 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000558
Anders Carlssond5cab542009-02-12 17:55:02 +0000559 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000560 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000561
Anders Carlssond5cab542009-02-12 17:55:02 +0000562 // Function
563 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000564
Anders Carlssond5cab542009-02-12 17:55:02 +0000565 // Descriptor
566 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000567
568 llvm::Constant *BlockLiteralStruct =
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000569 llvm::ConstantStruct::get(VMContext, &LiteralFields[0], 5, false);
Mike Stumpa5448542009-02-13 15:32:32 +0000570
571 llvm::GlobalVariable *BlockLiteral =
Owen Anderson1c431b32009-07-08 19:05:04 +0000572 new llvm::GlobalVariable(getModule(), BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000573 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000574 BlockLiteralStruct, "__block_literal_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000575
Anders Carlssond5cab542009-02-12 17:55:02 +0000576 return BlockLiteral;
577}
578
Mike Stump4e7a1f72009-02-21 20:00:35 +0000579llvm::Value *CodeGenFunction::LoadBlockStruct() {
580 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
581}
582
Mike Stump00470a12009-03-05 08:32:30 +0000583llvm::Function *
584CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
585 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000586 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000587 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000588 uint64_t &Size,
589 uint64_t &Align,
590 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
591 bool &subBlockHasCopyDispose) {
Devang Patel963dfbd2009-04-15 21:51:44 +0000592
593 // Check if we should generate debug info for this block.
594 if (CGM.getDebugInfo())
595 DebugInfo = CGM.getDebugInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Mike Stump7f28a9c2009-03-13 23:34:28 +0000597 // Arrange for local static and local extern declarations to appear
598 // to be local to this function as well, as they are directly referenced
599 // in a block.
600 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
601 i != ldm.end();
602 ++i) {
603 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000605 if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage())
Mike Stump7f28a9c2009-03-13 23:34:28 +0000606 LocalDeclMap[VD] = i->second;
607 }
608
Eli Friedman48f91222009-03-28 03:24:54 +0000609 // FIXME: We need to rearrange the code for copy/dispose so we have this
610 // sooner, so we can calculate offsets correctly.
611 if (!BlockHasCopyDispose)
612 BlockOffset = CGM.getTargetData()
613 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
614 else
615 BlockOffset = CGM.getTargetData()
616 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
617 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
618
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000619 const FunctionType *BlockFunctionType = BExpr->getFunctionType();
620 QualType ResultType;
621 bool IsVariadic;
Mike Stump1eb44332009-09-09 15:08:12 +0000622 if (const FunctionProtoType *FTy =
Fariborz Jahanianda0895d2009-04-11 18:54:57 +0000623 dyn_cast<FunctionProtoType>(BlockFunctionType)) {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000624 ResultType = FTy->getResultType();
625 IsVariadic = FTy->isVariadic();
Mike Stumpb3589f42009-07-30 22:28:39 +0000626 } else {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000627 // K&R style block.
628 ResultType = BlockFunctionType->getResultType();
629 IsVariadic = false;
630 }
Mike Stumpa5448542009-02-13 15:32:32 +0000631
Anders Carlssond5cab542009-02-12 17:55:02 +0000632 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000633
Chris Lattner161d36d2009-02-28 19:01:03 +0000634 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000635
636 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000637 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000638 ImplicitParamDecl::Create(getContext(), 0,
639 SourceLocation(), 0,
640 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000641
Anders Carlssond5cab542009-02-12 17:55:02 +0000642 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000643 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000644
Steve Naroffe78b8092009-03-13 16:56:44 +0000645 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000646 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000647 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000648
649 const CGFunctionInfo &FI =
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000650 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlssond5cab542009-02-12 17:55:02 +0000651
Mike Stump67a64482009-02-14 22:16:35 +0000652 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000653 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000654 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic);
Mike Stumpa5448542009-02-13 15:32:32 +0000655
656 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000657 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
658 Name,
659 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000660
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000661 CGM.SetInternalFunctionAttributes(BD, Fn, FI);
662
Chris Lattner4863db42009-04-23 07:18:56 +0000663 StartFunction(BD, ResultType, Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000664 BExpr->getBody()->getLocEnd());
Mike Stumpb1a6e682009-09-30 02:43:10 +0000665
666 // Save a spot to insert the debug information for all the BlockDeclRefDecls.
667 llvm::BasicBlock *entry = Builder.GetInsertBlock();
668 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint();
669
Chris Lattner4863db42009-04-23 07:18:56 +0000670 CurFuncDecl = OuterFuncDecl;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000671 CurCodeDecl = BD;
Chris Lattner161d36d2009-02-28 19:01:03 +0000672 EmitStmt(BExpr->getBody());
Mike Stumpb1a6e682009-09-30 02:43:10 +0000673
674 if (CGDebugInfo *DI = getDebugInfo()) {
675 llvm::BasicBlock *end = Builder.GetInsertBlock();
676 llvm::BasicBlock::iterator end_ptr = Builder.GetInsertPoint();
677
678 // Emit debug information for all the BlockDeclRefDecls.
679 // First, go back to the entry...
680 Builder.SetInsertPoint(entry, entry_ptr);
681
682 // And then insert the debug information..
683 for (unsigned i=0; i < BlockDeclRefDecls.size(); ++i) {
684 const Expr *E = BlockDeclRefDecls[i];
685 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
686 if (BDRE) {
687 const ValueDecl *D = BDRE->getDecl();
688 DI->setLocation(D->getLocation());
689 DI->EmitDeclareOfBlockDeclRefVariable(BDRE,
690 LocalDeclMap[getBlockStructDecl()],
691 Builder, this);
692 }
693 }
694
695 // Then go back to the end, and we're done.
696 Builder.SetInsertPoint(end, end_ptr);
697 }
698
Chris Lattner161d36d2009-02-28 19:01:03 +0000699 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000700
Mike Stump8a2b4b12009-02-25 23:33:13 +0000701 // The runtime needs a minimum alignment of a void *.
702 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
703 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
704
Mike Stump4e7a1f72009-02-21 20:00:35 +0000705 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000706 Align = BlockAlign;
707 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000708 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000709 return Fn;
710}
Mike Stumpa99038c2009-02-28 09:07:16 +0000711
Mike Stump08920992009-03-07 02:35:30 +0000712uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000713 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
714
715 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
716 uint64_t Align = getContext().getDeclAlignInBytes(D);
717
718 if (BDRE->isByRef()) {
719 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
720 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
721 }
722
723 assert ((Align > 0) && "alignment must be 1 byte or more");
724
725 uint64_t OldOffset = BlockOffset;
726
727 // Ensure proper alignment, even if it means we have to have a gap
728 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
729 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000730
Mike Stumpa99038c2009-02-28 09:07:16 +0000731 uint64_t Pad = BlockOffset - OldOffset;
732 if (Pad) {
Owen Anderson0032b272009-08-13 21:57:51 +0000733 llvm::ArrayType::get(llvm::Type::getInt8Ty(VMContext), Pad);
Mike Stumpa99038c2009-02-28 09:07:16 +0000734 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
735 llvm::APInt(32, Pad),
736 ArrayType::Normal, 0);
737 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000738 0, QualType(PadTy), 0, VarDecl::None);
Mike Stumpa99038c2009-02-28 09:07:16 +0000739 Expr *E;
740 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
741 SourceLocation(), false, false);
742 BlockDeclRefDecls.push_back(E);
743 }
744 BlockDeclRefDecls.push_back(BDRE);
745
746 BlockOffset += Size;
747 return BlockOffset-Size;
748}
Mike Stumpdab514f2009-03-04 03:23:46 +0000749
Mike Stump08920992009-03-07 02:35:30 +0000750llvm::Constant *BlockFunction::
751GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000752 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000753 QualType R = getContext().VoidTy;
754
755 FunctionArgList Args;
756 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000757 ImplicitParamDecl *Dst =
758 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
759 getContext().getPointerType(getContext().VoidTy));
760 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000761 ImplicitParamDecl *Src =
762 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
763 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000764 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000765
Mike Stumpa4f668f2009-03-06 01:33:24 +0000766 const CGFunctionInfo &FI =
767 CGM.getTypes().getFunctionInfo(R, Args);
768
Mike Stump3899a7f2009-06-05 23:26:36 +0000769 // FIXME: We'd like to put these into a mergable by content, with
770 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000771 std::string Name = std::string("__copy_helper_block_");
772 CodeGenTypes &Types = CGM.getTypes();
773 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
774
775 llvm::Function *Fn =
776 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
777 Name,
778 &CGM.getModule());
779
780 IdentifierInfo *II
781 = &CGM.getContext().Idents.get("__copy_helper_block_");
782
783 FunctionDecl *FD = FunctionDecl::Create(getContext(),
784 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000785 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000786 FunctionDecl::Static, false,
787 true);
788 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000789
790 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
791 llvm::Type *PtrPtrT;
Mike Stump08920992009-03-07 02:35:30 +0000792
Mike Stumpb7477cf2009-04-10 18:52:28 +0000793 if (NoteForHelperp) {
794 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump08920992009-03-07 02:35:30 +0000795
Owen Anderson96e0fc72009-07-29 22:16:19 +0000796 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000797 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
798 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump08920992009-03-07 02:35:30 +0000799
Mike Stumpb7477cf2009-04-10 18:52:28 +0000800 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000801 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000802 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000803 DstObj = Builder.CreateBitCast(DstObj, PtrPtrT);
804 DstObj = Builder.CreateLoad(DstObj);
Mike Stump08920992009-03-07 02:35:30 +0000805
Mike Stumpb7477cf2009-04-10 18:52:28 +0000806 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
807 int flag = NoteForHelper[i].flag;
808 int index = NoteForHelper[i].index;
Mike Stump08920992009-03-07 02:35:30 +0000809
Mike Stumpb7477cf2009-04-10 18:52:28 +0000810 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
811 || NoteForHelper[i].RequiresCopying) {
812 llvm::Value *Srcv = SrcObj;
813 Srcv = Builder.CreateStructGEP(Srcv, index);
814 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000815 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000816 Srcv = Builder.CreateLoad(Srcv);
817
818 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
819 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
820
Owen Anderson0032b272009-08-13 21:57:51 +0000821 llvm::Value *N = llvm::ConstantInt::get(
822 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000823 llvm::Value *F = getBlockObjectAssign();
824 Builder.CreateCall3(F, Dstv, Srcv, N);
825 }
Mike Stump08920992009-03-07 02:35:30 +0000826 }
827 }
828
Mike Stumpa4f668f2009-03-06 01:33:24 +0000829 CGF.FinishFunction();
830
Owen Anderson3c4972d2009-07-29 18:54:39 +0000831 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000832}
833
Mike Stumpcf62d392009-03-06 18:42:23 +0000834llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000835GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
836 const llvm::StructType* T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000837 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000838 QualType R = getContext().VoidTy;
839
840 FunctionArgList Args;
841 // FIXME: This leaks
842 ImplicitParamDecl *Src =
843 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
844 getContext().getPointerType(getContext().VoidTy));
845
846 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000847
Mike Stumpa4f668f2009-03-06 01:33:24 +0000848 const CGFunctionInfo &FI =
849 CGM.getTypes().getFunctionInfo(R, Args);
850
Mike Stump3899a7f2009-06-05 23:26:36 +0000851 // FIXME: We'd like to put these into a mergable by content, with
852 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000853 std::string Name = std::string("__destroy_helper_block_");
854 CodeGenTypes &Types = CGM.getTypes();
855 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
856
857 llvm::Function *Fn =
858 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
859 Name,
860 &CGM.getModule());
861
862 IdentifierInfo *II
863 = &CGM.getContext().Idents.get("__destroy_helper_block_");
864
865 FunctionDecl *FD = FunctionDecl::Create(getContext(),
866 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000867 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000868 FunctionDecl::Static, false,
869 true);
870 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000871
Mike Stumpb7477cf2009-04-10 18:52:28 +0000872 if (NoteForHelperp) {
873 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump1edf6b62009-03-07 02:53:18 +0000874
Mike Stumpb7477cf2009-04-10 18:52:28 +0000875 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
876 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000877 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000878 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
879 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump1edf6b62009-03-07 02:53:18 +0000880
Mike Stumpb7477cf2009-04-10 18:52:28 +0000881 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
882 int flag = NoteForHelper[i].flag;
883 int index = NoteForHelper[i].index;
Mike Stump1edf6b62009-03-07 02:53:18 +0000884
Mike Stumpb7477cf2009-04-10 18:52:28 +0000885 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
886 || NoteForHelper[i].RequiresCopying) {
887 llvm::Value *Srcv = SrcObj;
888 Srcv = Builder.CreateStructGEP(Srcv, index);
889 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000890 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000891 Srcv = Builder.CreateLoad(Srcv);
892
893 BuildBlockRelease(Srcv, flag);
894 }
Mike Stump1edf6b62009-03-07 02:53:18 +0000895 }
896 }
897
Mike Stumpa4f668f2009-03-06 01:33:24 +0000898 CGF.FinishFunction();
899
Owen Anderson3c4972d2009-07-29 18:54:39 +0000900 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000901}
902
Mike Stump08920992009-03-07 02:35:30 +0000903llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000904 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump08920992009-03-07 02:35:30 +0000905 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
906 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000907}
908
Mike Stump08920992009-03-07 02:35:30 +0000909llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000910 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stump08920992009-03-07 02:35:30 +0000911 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000912 T, NoteForHelperp);
Mike Stumpdab514f2009-03-04 03:23:46 +0000913}
Mike Stump797b6322009-03-05 01:23:13 +0000914
Mike Stumpee094222009-03-06 06:12:24 +0000915llvm::Constant *BlockFunction::
916GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000917 QualType R = getContext().VoidTy;
918
919 FunctionArgList Args;
920 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000921 ImplicitParamDecl *Dst =
922 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
923 getContext().getPointerType(getContext().VoidTy));
924 Args.push_back(std::make_pair(Dst, Dst->getType()));
925
926 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000927 ImplicitParamDecl *Src =
928 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
929 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000930 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000931
Mike Stump45031c02009-03-06 02:29:21 +0000932 const CGFunctionInfo &FI =
933 CGM.getTypes().getFunctionInfo(R, Args);
934
935 std::string Name = std::string("__Block_byref_id_object_copy_");
936 CodeGenTypes &Types = CGM.getTypes();
937 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
938
Mike Stump3899a7f2009-06-05 23:26:36 +0000939 // FIXME: We'd like to put these into a mergable by content, with
940 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000941 llvm::Function *Fn =
942 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
943 Name,
944 &CGM.getModule());
945
946 IdentifierInfo *II
947 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
948
949 FunctionDecl *FD = FunctionDecl::Create(getContext(),
950 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000951 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +0000952 FunctionDecl::Static, false,
953 true);
954 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +0000955
956 // dst->x
957 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000958 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000959 V = Builder.CreateLoad(V);
Mike Stumpee094222009-03-06 06:12:24 +0000960 V = Builder.CreateStructGEP(V, 6, "x");
961 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
962
963 // src->x
964 V = CGF.GetAddrOfLocalVar(Src);
965 V = Builder.CreateLoad(V);
966 V = Builder.CreateBitCast(V, T);
967 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000968 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpee094222009-03-06 06:12:24 +0000969 llvm::Value *SrcObj = Builder.CreateLoad(V);
Mike Stump1eb44332009-09-09 15:08:12 +0000970
Mike Stumpee094222009-03-06 06:12:24 +0000971 flag |= BLOCK_BYREF_CALLER;
972
Owen Anderson0032b272009-08-13 21:57:51 +0000973 llvm::Value *N = llvm::ConstantInt::get(
974 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpee094222009-03-06 06:12:24 +0000975 llvm::Value *F = getBlockObjectAssign();
976 Builder.CreateCall3(F, DstObj, SrcObj, N);
977
Mike Stump45031c02009-03-06 02:29:21 +0000978 CGF.FinishFunction();
979
Owen Anderson3c4972d2009-07-29 18:54:39 +0000980 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +0000981}
982
Mike Stump1851b682009-03-06 04:53:30 +0000983llvm::Constant *
984BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
985 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000986 QualType R = getContext().VoidTy;
987
988 FunctionArgList Args;
989 // FIXME: This leaks
990 ImplicitParamDecl *Src =
991 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
992 getContext().getPointerType(getContext().VoidTy));
993
994 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000995
Mike Stump45031c02009-03-06 02:29:21 +0000996 const CGFunctionInfo &FI =
997 CGM.getTypes().getFunctionInfo(R, Args);
998
999 std::string Name = std::string("__Block_byref_id_object_dispose_");
1000 CodeGenTypes &Types = CGM.getTypes();
1001 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
1002
Mike Stump3899a7f2009-06-05 23:26:36 +00001003 // FIXME: We'd like to put these into a mergable by content, with
1004 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +00001005 llvm::Function *Fn =
1006 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
1007 Name,
1008 &CGM.getModule());
1009
1010 IdentifierInfo *II
1011 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
1012
1013 FunctionDecl *FD = FunctionDecl::Create(getContext(),
1014 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001015 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +00001016 FunctionDecl::Static, false,
1017 true);
1018 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +00001019
1020 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
Owen Anderson96e0fc72009-07-29 22:16:19 +00001021 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001022 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +00001023 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +00001024 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001025 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +00001026
Mike Stump1851b682009-03-06 04:53:30 +00001027 flag |= BLOCK_BYREF_CALLER;
1028 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001029 CGF.FinishFunction();
1030
Owen Anderson3c4972d2009-07-29 18:54:39 +00001031 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +00001032}
1033
Mike Stumpee094222009-03-06 06:12:24 +00001034llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001035 int flag, unsigned Align) {
1036 // All alignments below that of pointer alignment collpase down to just
1037 // pointer alignment, as we always have at least that much alignment to begin
1038 // with.
1039 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1040 // As an optimization, we only generate a single function of each kind we
1041 // might need. We need a different one for each alignment and for each
1042 // setting of flags. We mix Align and flag to get the kind.
1043 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1044 llvm::Constant *& Entry = CGM.AssignCache[kind];
1045 if (Entry)
1046 return Entry;
1047 return Entry=CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001048}
1049
Mike Stump1851b682009-03-06 04:53:30 +00001050llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001051 int flag,
1052 unsigned Align) {
1053 // All alignments below that of pointer alignment collpase down to just
1054 // pointer alignment, as we always have at least that much alignment to begin
1055 // with.
1056 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1057 // As an optimization, we only generate a single function of each kind we
1058 // might need. We need a different one for each alignment and for each
1059 // setting of flags. We mix Align and flag to get the kind.
1060 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1061 llvm::Constant *& Entry = CGM.DestroyCache[kind];
1062 if (Entry)
1063 return Entry;
1064 return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001065}
1066
Mike Stump797b6322009-03-05 01:23:13 +00001067llvm::Value *BlockFunction::getBlockObjectDispose() {
1068 if (CGM.BlockObjectDispose == 0) {
1069 const llvm::FunctionType *FTy;
1070 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001071 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stump797b6322009-03-05 01:23:13 +00001072 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001073 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001074 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001075 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001076 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1077 }
1078 return CGM.BlockObjectDispose;
1079}
1080
Mike Stumpee094222009-03-06 06:12:24 +00001081llvm::Value *BlockFunction::getBlockObjectAssign() {
1082 if (CGM.BlockObjectAssign == 0) {
1083 const llvm::FunctionType *FTy;
1084 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001085 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stumpee094222009-03-06 06:12:24 +00001086 ArgTys.push_back(PtrToInt8Ty);
1087 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001088 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001089 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stumpee094222009-03-06 06:12:24 +00001090 CGM.BlockObjectAssign
1091 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1092 }
1093 return CGM.BlockObjectAssign;
1094}
1095
Mike Stump1851b682009-03-06 04:53:30 +00001096void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001097 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001098 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001099 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001100 N = llvm::ConstantInt::get(llvm::Type::getInt32Ty(V->getContext()), flag);
Mike Stump797b6322009-03-05 01:23:13 +00001101 Builder.CreateCall2(F, V, N);
1102}
Mike Stump00470a12009-03-05 08:32:30 +00001103
1104ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001105
1106BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1107 CGBuilderTy &B)
Owen Andersona1cf15f2009-07-14 23:10:40 +00001108 : CGM(cgm), CGF(cgf), VMContext(cgm.getLLVMContext()), Builder(B) {
Owen Anderson0032b272009-08-13 21:57:51 +00001109 PtrToInt8Ty = llvm::PointerType::getUnqual(
1110 llvm::Type::getInt8Ty(VMContext));
Mike Stump08920992009-03-07 02:35:30 +00001111
1112 BlockHasCopyDispose = false;
1113}