blob: 49fbb209ff350fda4c3d6ac55208293bb0ed0d15 [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
14#include "CodeGenFunction.h"
15#include "CodeGenModule.h"
Mike Stump6cc88f72009-03-20 21:53:12 +000016#include "clang/AST/DeclObjC.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000017#include "llvm/Module.h"
Anders Carlssond5cab542009-02-12 17:55:02 +000018#include "llvm/Target/TargetData.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000019#include <algorithm>
Anders Carlssonacfde802009-02-12 00:39:25 +000020using namespace clang;
21using namespace CodeGen;
22
Mike Stumpcf62d392009-03-06 18:42:23 +000023llvm::Constant *CodeGenFunction::
Mike Stumpa803b0e2009-03-25 17:58:24 +000024BuildDescriptorBlockDecl(bool BlockHasCopyDispose, uint64_t Size,
25 const llvm::StructType* Ty,
Mike Stump08920992009-03-07 02:35:30 +000026 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump56129b12009-02-13 16:55:51 +000027 const llvm::Type *UnsignedLongTy
28 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpe5fee252009-02-13 16:19:19 +000029 llvm::Constant *C;
30 std::vector<llvm::Constant*> Elts;
31
32 // reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +000033 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000034 Elts.push_back(C);
35
36 // Size
Mike Stumpd6840002009-02-21 20:07:44 +000037 // FIXME: What is the right way to say this doesn't fit? We should give
38 // a user diagnostic in that case. Better fix would be to change the
39 // API to size_t.
Owen Anderson4a28d5d2009-07-24 23:12:58 +000040 C = llvm::ConstantInt::get(UnsignedLongTy, Size);
Mike Stumpe5fee252009-02-13 16:19:19 +000041 Elts.push_back(C);
42
43 if (BlockHasCopyDispose) {
44 // copy_func_helper_decl
Mike Stumpb7477cf2009-04-10 18:52:28 +000045 Elts.push_back(BuildCopyHelper(Ty, NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000046
47 // destroy_func_decl
Mike Stumpb7477cf2009-04-10 18:52:28 +000048 Elts.push_back(BuildDestroyHelper(Ty, NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000049 }
50
Owen Anderson47a434f2009-08-05 23:18:46 +000051 C = llvm::ConstantStruct::get(VMContext, Elts);
Mike Stumpe5fee252009-02-13 16:19:19 +000052
Owen Anderson1c431b32009-07-08 19:05:04 +000053 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stumpe5fee252009-02-13 16:19:19 +000054 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +000055 C, "__block_descriptor_tmp");
Mike Stumpe5fee252009-02-13 16:19:19 +000056 return C;
57}
58
Mike Stump2a998142009-03-04 18:17:45 +000059llvm::Constant *BlockModule::getNSConcreteGlobalBlock() {
Chris Lattnere2f79b62009-05-13 02:50:56 +000060 if (NSConcreteGlobalBlock == 0)
61 NSConcreteGlobalBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty,
62 "_NSConcreteGlobalBlock");
Mike Stumpf99f1d02009-02-13 17:23:42 +000063 return NSConcreteGlobalBlock;
64}
65
Mike Stump2a998142009-03-04 18:17:45 +000066llvm::Constant *BlockModule::getNSConcreteStackBlock() {
Chris Lattnere2f79b62009-05-13 02:50:56 +000067 if (NSConcreteStackBlock == 0)
68 NSConcreteStackBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty,
69 "_NSConcreteStackBlock");
Mike Stump59c5b112009-02-13 19:29:27 +000070 return NSConcreteStackBlock;
71}
72
Mike Stump00470a12009-03-05 08:32:30 +000073static void CollectBlockDeclRefInfo(const Stmt *S,
Anders Carlsson4de9fce2009-03-01 01:09:12 +000074 CodeGenFunction::BlockInfo &Info) {
75 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
76 I != E; ++I)
Daniel Dunbar82573ee2009-03-02 07:00:57 +000077 if (*I)
78 CollectBlockDeclRefInfo(*I, Info);
Mike Stump00470a12009-03-05 08:32:30 +000079
Anders Carlsson4de9fce2009-03-01 01:09:12 +000080 if (const BlockDeclRefExpr *DE = dyn_cast<BlockDeclRefExpr>(S)) {
81 // FIXME: Handle enums.
82 if (isa<FunctionDecl>(DE->getDecl()))
83 return;
Mike Stump00470a12009-03-05 08:32:30 +000084
Anders Carlsson4de9fce2009-03-01 01:09:12 +000085 if (DE->isByRef())
86 Info.ByRefDeclRefs.push_back(DE);
87 else
88 Info.ByCopyDeclRefs.push_back(DE);
89 }
90}
91
Mike Stump58a85142009-03-04 22:48:06 +000092/// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be
93/// declared as a global variable instead of on the stack.
Chris Lattnere2f79b62009-05-13 02:50:56 +000094static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info) {
Anders Carlsson4de9fce2009-03-01 01:09:12 +000095 return Info.ByRefDeclRefs.empty() && Info.ByCopyDeclRefs.empty();
96}
97
Mike Stump58a85142009-03-04 22:48:06 +000098// FIXME: Push most into CGM, passing down a few bits, like current function
99// name.
Mike Stump8a2b4b12009-02-25 23:33:13 +0000100llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000101
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000102 std::string Name = CurFn->getName();
103 CodeGenFunction::BlockInfo Info(0, Name.c_str());
104 CollectBlockDeclRefInfo(BE->getBody(), Info);
105
106 // Check if the block can be global.
Mike Stump58a85142009-03-04 22:48:06 +0000107 // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like
108 // to just have one code path. We should move this function into CGM and pass
109 // CGF, then we can just check to see if CGF is 0.
Mike Stumpdab514f2009-03-04 03:23:46 +0000110 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000111 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump00470a12009-03-05 08:32:30 +0000112
113 std::vector<llvm::Constant*> Elts(5);
Mike Stumpe5fee252009-02-13 16:19:19 +0000114 llvm::Constant *C;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000115 llvm::Value *V;
Mike Stumpe5fee252009-02-13 16:19:19 +0000116
Mike Stumpe5fee252009-02-13 16:19:19 +0000117 {
118 // C = BuildBlockStructInitlist();
119 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
120
Mike Stump00470a12009-03-05 08:32:30 +0000121 // We run this first so that we set BlockHasCopyDispose from the entire
122 // block literal.
123 // __invoke
124 uint64_t subBlockSize, subBlockAlign;
125 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Mike Stumpa803b0e2009-03-25 17:58:24 +0000126 bool subBlockHasCopyDispose = false;
Mike Stump00470a12009-03-05 08:32:30 +0000127 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000128 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000129 subBlockSize,
Mike Stump00470a12009-03-05 08:32:30 +0000130 subBlockAlign,
131 subBlockDeclRefDecls,
Mike Stumpa803b0e2009-03-25 17:58:24 +0000132 subBlockHasCopyDispose);
133 BlockHasCopyDispose |= subBlockHasCopyDispose;
Mike Stump00470a12009-03-05 08:32:30 +0000134 Elts[3] = Fn;
135
Mike Stumpf5408fe2009-05-16 07:57:57 +0000136 // FIXME: Don't use BlockHasCopyDispose, it is set more often then
137 // necessary, for example: { ^{ __block int i; ^{ i = 1; }(); }(); }
Mike Stumpa803b0e2009-03-25 17:58:24 +0000138 if (subBlockHasCopyDispose)
Mike Stumpe5fee252009-02-13 16:19:19 +0000139 flags |= BLOCK_HAS_COPY_DISPOSE;
140
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000141 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000142 C = CGM.getNSConcreteStackBlock();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000143 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump00470a12009-03-05 08:32:30 +0000144 Elts[0] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000145
146 // __flags
147 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
148 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000149 C = llvm::ConstantInt::get(IntTy, flags);
Mike Stump00470a12009-03-05 08:32:30 +0000150 Elts[1] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000151
152 // __reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000153 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump00470a12009-03-05 08:32:30 +0000154 Elts[2] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000155
Mike Stump8a2b4b12009-02-25 23:33:13 +0000156 if (subBlockDeclRefDecls.size() == 0) {
Mike Stumpcf62d392009-03-06 18:42:23 +0000157 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000158 Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize, 0, 0);
Mike Stumpcf62d392009-03-06 18:42:23 +0000159
Mike Stump5570cfe2009-03-01 20:07:53 +0000160 // Optimize to being a global block.
161 Elts[0] = CGM.getNSConcreteGlobalBlock();
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000162 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
Mike Stump5570cfe2009-03-01 20:07:53 +0000163
Owen Anderson47a434f2009-08-05 23:18:46 +0000164 C = llvm::ConstantStruct::get(VMContext, Elts);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000165
166 char Name[32];
167 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
Owen Anderson1c431b32009-07-08 19:05:04 +0000168 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stump8a2b4b12009-02-25 23:33:13 +0000169 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000170 C, Name);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000171 QualType BPT = BE->getType();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000172 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
Mike Stump8a2b4b12009-02-25 23:33:13 +0000173 return C;
174 }
Mike Stump00470a12009-03-05 08:32:30 +0000175
Mike Stump8a2b4b12009-02-25 23:33:13 +0000176 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
Mike Stump08920992009-03-07 02:35:30 +0000177 for (int i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000178 Types[i] = Elts[i]->getType();
Mike Stump08920992009-03-07 02:35:30 +0000179 Types[4] = PtrToInt8Ty;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000180
Mike Stumpa99038c2009-02-28 09:07:16 +0000181 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) {
182 const Expr *E = subBlockDeclRefDecls[i];
183 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
184 QualType Ty = E->getType();
Mike Stumpdab514f2009-03-04 03:23:46 +0000185 if (BDRE && BDRE->isByRef()) {
186 uint64_t Align = getContext().getDeclAlignInBytes(BDRE->getDecl());
Owen Anderson96e0fc72009-07-29 22:16:19 +0000187 Types[i+5] = llvm::PointerType::get(BuildByRefType(Ty, Align), 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000188 } else
189 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000190 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000191
Owen Anderson47a434f2009-08-05 23:18:46 +0000192 llvm::StructType *Ty = llvm::StructType::get(VMContext, Types, true);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000193
194 llvm::AllocaInst *A = CreateTempAlloca(Ty);
195 A->setAlignment(subBlockAlign);
196 V = A;
197
Mike Stump08920992009-03-07 02:35:30 +0000198 std::vector<HelperInfo> NoteForHelper(subBlockDeclRefDecls.size());
199 int helpersize = 0;
200
201 for (unsigned i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000202 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump00470a12009-03-05 08:32:30 +0000203
Mike Stump8a2b4b12009-02-25 23:33:13 +0000204 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
205 {
Mike Stumpa99038c2009-02-28 09:07:16 +0000206 // FIXME: Push const down.
207 Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]);
208 DeclRefExpr *DR;
209 ValueDecl *VD;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000210
Mike Stumpa99038c2009-02-28 09:07:16 +0000211 DR = dyn_cast<DeclRefExpr>(E);
212 // Skip padding.
213 if (DR) continue;
214
215 BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
216 VD = BDRE->getDecl();
217
Mike Stumpdab514f2009-03-04 03:23:46 +0000218 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stump08920992009-03-07 02:35:30 +0000219 NoteForHelper[helpersize].index = i+5;
220 NoteForHelper[helpersize].RequiresCopying = BlockRequiresCopying(VD->getType());
221 NoteForHelper[helpersize].flag
222 = VD->getType()->isBlockPointerType() ? BLOCK_FIELD_IS_BLOCK : BLOCK_FIELD_IS_OBJECT;
223
Mike Stumpa99038c2009-02-28 09:07:16 +0000224 if (LocalDeclMap[VD]) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000225 if (BDRE->isByRef()) {
Mike Stump08920992009-03-07 02:35:30 +0000226 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
Mike Stumpf4bc3122009-03-07 06:04:31 +0000227 // FIXME: Someone double check this.
228 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000229 const llvm::Type *Ty = Types[i+5];
230 llvm::Value *Loc = LocalDeclMap[VD];
231 Loc = Builder.CreateStructGEP(Loc, 1, "forwarding");
232 Loc = Builder.CreateLoad(Loc, false);
233 Loc = Builder.CreateBitCast(Loc, Ty);
234 Builder.CreateStore(Loc, Addr);
Mike Stump08920992009-03-07 02:35:30 +0000235 ++helpersize;
Mike Stumpdab514f2009-03-04 03:23:46 +0000236 continue;
237 } else
238 E = new (getContext()) DeclRefExpr (cast<NamedDecl>(VD),
239 VD->getType(), SourceLocation(),
240 false, false);
Mike Stumpa99038c2009-02-28 09:07:16 +0000241 }
Mike Stumpdab514f2009-03-04 03:23:46 +0000242 if (BDRE->isByRef()) {
Mike Stumpa8b60c92009-03-21 21:00:35 +0000243 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
244 // FIXME: Someone double check this.
245 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpa99038c2009-02-28 09:07:16 +0000246 E = new (getContext())
247 UnaryOperator(E, UnaryOperator::AddrOf,
248 getContext().getPointerType(E->getType()),
249 SourceLocation());
Mike Stumpdab514f2009-03-04 03:23:46 +0000250 }
Mike Stump08920992009-03-07 02:35:30 +0000251 ++helpersize;
Mike Stumpa99038c2009-02-28 09:07:16 +0000252
Mike Stumpa99038c2009-02-28 09:07:16 +0000253 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000254 if (r.isScalar()) {
255 llvm::Value *Loc = r.getScalarVal();
256 const llvm::Type *Ty = Types[i+5];
257 if (BDRE->isByRef()) {
Mike Stump58a85142009-03-04 22:48:06 +0000258 // E is now the address of the value field, instead, we want the
259 // address of the actual ByRef struct. We optimize this slightly
260 // compared to gcc by not grabbing the forwarding slot as this must
261 // be done during Block_copy for us, and we can postpone the work
262 // until then.
263 uint64_t offset = BlockDecls[BDRE->getDecl()];
Mike Stump00470a12009-03-05 08:32:30 +0000264
Mike Stump58a85142009-03-04 22:48:06 +0000265 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump00470a12009-03-05 08:32:30 +0000266
Mike Stump58a85142009-03-04 22:48:06 +0000267 Loc = Builder.CreateGEP(BlockLiteral,
Mike Stump286d3682009-07-31 17:46:44 +0000268 llvm::ConstantInt::get(llvm::Type::Int64Ty,
Mike Stump58a85142009-03-04 22:48:06 +0000269 offset),
270 "block.literal");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000271 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000272 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stump58a85142009-03-04 22:48:06 +0000273 Loc = Builder.CreateLoad(Loc, false);
274 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000275 }
276 Builder.CreateStore(Loc, Addr);
277 } else if (r.isComplex())
Mike Stump8a2b4b12009-02-25 23:33:13 +0000278 // FIXME: implement
279 ErrorUnsupported(BE, "complex in block literal");
280 else if (r.isAggregate())
281 ; // Already created into the destination
282 else
283 assert (0 && "bad block variable");
284 // FIXME: Ensure that the offset created by the backend for
285 // the struct matches the previously computed offset in BlockDecls.
286 }
Mike Stump08920992009-03-07 02:35:30 +0000287 NoteForHelper.resize(helpersize);
Mike Stumpcf62d392009-03-06 18:42:23 +0000288
289 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000290 llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose,
291 subBlockSize, Ty,
Mike Stump08920992009-03-07 02:35:30 +0000292 &NoteForHelper);
293 Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty);
294 Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp"));
Mike Stumpe5fee252009-02-13 16:19:19 +0000295 }
Mike Stump00470a12009-03-05 08:32:30 +0000296
Mike Stumpbd65cac2009-02-19 01:01:04 +0000297 QualType BPT = BE->getType();
Mike Stump8a2b4b12009-02-25 23:33:13 +0000298 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpe5fee252009-02-13 16:19:19 +0000299}
300
301
Mike Stump2a998142009-03-04 18:17:45 +0000302const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000303 if (BlockDescriptorType)
304 return BlockDescriptorType;
305
Mike Stumpa5448542009-02-13 15:32:32 +0000306 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000307 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000308
Mike Stumpab695142009-02-13 15:16:56 +0000309 // struct __block_descriptor {
310 // unsigned long reserved;
311 // unsigned long block_size;
312 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000313 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy->getContext(),
314 UnsignedLongTy,
Mike Stumpa5448542009-02-13 15:32:32 +0000315 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000316 NULL);
317
318 getModule().addTypeName("struct.__block_descriptor",
319 BlockDescriptorType);
320
321 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000322}
323
Mike Stump2a998142009-03-04 18:17:45 +0000324const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000325 if (GenericBlockLiteralType)
326 return GenericBlockLiteralType;
327
Mike Stumpa5448542009-02-13 15:32:32 +0000328 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000329 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000330
Mike Stump7cbb3602009-02-13 16:01:35 +0000331 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
332 getTypes().ConvertType(getContext().IntTy));
333
Mike Stump9b8a7972009-02-13 15:25:34 +0000334 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000335 // void *__isa;
336 // int __flags;
337 // int __reserved;
338 // void (*__invoke)(void *);
339 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000340 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000341 GenericBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
342 PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000343 IntTy,
344 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000345 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000346 BlockDescPtrTy,
347 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000348
Mike Stump9b8a7972009-02-13 15:25:34 +0000349 getModule().addTypeName("struct.__block_literal_generic",
350 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000351
Mike Stump9b8a7972009-02-13 15:25:34 +0000352 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000353}
354
Mike Stump2a998142009-03-04 18:17:45 +0000355const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000356 if (GenericExtendedBlockLiteralType)
357 return GenericExtendedBlockLiteralType;
358
Mike Stumpbd65cac2009-02-19 01:01:04 +0000359 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000360 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpbd65cac2009-02-19 01:01:04 +0000361
362 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
363 getTypes().ConvertType(getContext().IntTy));
364
365 // struct __block_literal_generic {
366 // void *__isa;
367 // int __flags;
368 // int __reserved;
369 // void (*__invoke)(void *);
370 // struct __block_descriptor *__descriptor;
371 // void *__copy_func_helper_decl;
372 // void *__destroy_func_decl;
373 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000374 GenericExtendedBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
375 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000376 IntTy,
377 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000378 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000379 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000380 PtrToInt8Ty,
381 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000382 NULL);
383
384 getModule().addTypeName("struct.__block_literal_extended_generic",
385 GenericExtendedBlockLiteralType);
386
387 return GenericExtendedBlockLiteralType;
388}
389
Anders Carlssond5cab542009-02-12 17:55:02 +0000390RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000391 const BlockPointerType *BPT =
Ted Kremenek6217b802009-07-29 21:53:49 +0000392 E->getCallee()->getType()->getAs<BlockPointerType>();
Mike Stumpa5448542009-02-13 15:32:32 +0000393
Anders Carlssonacfde802009-02-12 00:39:25 +0000394 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
395
396 // Get a pointer to the generic block literal.
397 const llvm::Type *BlockLiteralTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000398 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000399
400 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000401 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000402 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
403
404 // Get the function pointer from the literal.
405 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000406
Mike Stumpa5448542009-02-13 15:32:32 +0000407 BlockLiteral =
408 Builder.CreateBitCast(BlockLiteral,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000409 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
Anders Carlssonacfde802009-02-12 00:39:25 +0000410 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000411
Anders Carlssonacfde802009-02-12 00:39:25 +0000412 // Add the block literal.
413 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
414 CallArgList Args;
415 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000416
Anders Carlsson782f3972009-04-08 23:13:16 +0000417 QualType FnType = BPT->getPointeeType();
418
Anders Carlssonacfde802009-02-12 00:39:25 +0000419 // And the rest of the arguments.
Anders Carlsson782f3972009-04-08 23:13:16 +0000420 EmitCallArgs(Args, FnType->getAsFunctionProtoType(),
421 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000422
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000423 // Load the function.
424 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
425
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000426 QualType ResultType = FnType->getAsFunctionType()->getResultType();
427
428 const CGFunctionInfo &FnInfo =
429 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000430
431 // Cast the function pointer to the right type.
432 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000433 CGM.getTypes().GetFunctionType(FnInfo, false);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000434
Owen Anderson96e0fc72009-07-29 22:16:19 +0000435 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000436 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
437
Anders Carlssonacfde802009-02-12 00:39:25 +0000438 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000439 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000440}
Anders Carlssond5cab542009-02-12 17:55:02 +0000441
Mike Stumpdab514f2009-03-04 03:23:46 +0000442llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
443 uint64_t &offset = BlockDecls[E->getDecl()];
444
445 const llvm::Type *Ty;
446 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
447
Mike Stumpdab514f2009-03-04 03:23:46 +0000448 // See if we have already allocated an offset for this variable.
449 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000450 // Don't run the expensive check, unless we have to.
451 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
452 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000453 // if not, allocate one now.
454 offset = getBlockOffset(E);
455 }
456
457 llvm::Value *BlockLiteral = LoadBlockStruct();
458 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000459 llvm::ConstantInt::get(llvm::Type::Int64Ty,
Mike Stumpdab514f2009-03-04 03:23:46 +0000460 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000461 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000462 if (E->isByRef()) {
463 bool needsCopyDispose = BlockRequiresCopying(E->getType());
464 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
465 const llvm::Type *PtrStructTy
Owen Anderson96e0fc72009-07-29 22:16:19 +0000466 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000467 // The block literal will need a copy/destroy helper.
468 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000469 Ty = PtrStructTy;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000470 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000471 V = Builder.CreateBitCast(V, Ty);
472 V = Builder.CreateLoad(V, false);
473 V = Builder.CreateStructGEP(V, 1, "forwarding");
474 V = Builder.CreateLoad(V, false);
475 V = Builder.CreateBitCast(V, PtrStructTy);
476 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
477 } else {
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 }
481 return V;
482}
483
Mike Stump6cc88f72009-03-20 21:53:12 +0000484void CodeGenFunction::BlockForwardSelf() {
485 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
486 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
487 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
488 if (DMEntry)
489 return;
490 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
491 BlockDeclRefExpr *BDRE = new (getContext())
492 BlockDeclRefExpr(SelfDecl,
493 SelfDecl->getType(), SourceLocation(), false);
494 DMEntry = GetAddrOfBlockDecl(BDRE);
495}
496
Mike Stump67a64482009-02-14 22:16:35 +0000497llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000498BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000499 // Generate the block descriptor.
500 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000501 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
502 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000503
Anders Carlssond5cab542009-02-12 17:55:02 +0000504 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000505
Anders Carlssond5cab542009-02-12 17:55:02 +0000506 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000507 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000508
Anders Carlssond5cab542009-02-12 17:55:02 +0000509 // Block literal size. For global blocks we just use the size of the generic
510 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000511 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000512 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Owen Andersona1cf15f2009-07-14 23:10:40 +0000513 DescriptorFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000514 llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000515
516 llvm::Constant *DescriptorStruct =
Owen Anderson47a434f2009-08-05 23:18:46 +0000517 llvm::ConstantStruct::get(VMContext, &DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000518
Anders Carlssond5cab542009-02-12 17:55:02 +0000519 llvm::GlobalVariable *Descriptor =
Owen Anderson1c431b32009-07-08 19:05:04 +0000520 new llvm::GlobalVariable(getModule(), DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000521 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000522 DescriptorStruct, "__block_descriptor_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000523
Anders Carlssond5cab542009-02-12 17:55:02 +0000524 // Generate the constants for the block literal.
525 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000526
Mike Stump67a64482009-02-14 22:16:35 +0000527 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000528 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000529 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000530 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000531 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000532 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000533 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000534 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000535 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000536 subBlockDeclRefDecls,
537 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000538 assert(subBlockSize == BlockLiteralSize
539 && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000540
Anders Carlssond5cab542009-02-12 17:55:02 +0000541 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000542 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000543
Anders Carlssond5cab542009-02-12 17:55:02 +0000544 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000545 LiteralFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000546 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000547
Anders Carlssond5cab542009-02-12 17:55:02 +0000548 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000549 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000550
Anders Carlssond5cab542009-02-12 17:55:02 +0000551 // Function
552 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000553
Anders Carlssond5cab542009-02-12 17:55:02 +0000554 // Descriptor
555 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000556
557 llvm::Constant *BlockLiteralStruct =
Owen Anderson47a434f2009-08-05 23:18:46 +0000558 llvm::ConstantStruct::get(VMContext, &LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000559
560 llvm::GlobalVariable *BlockLiteral =
Owen Anderson1c431b32009-07-08 19:05:04 +0000561 new llvm::GlobalVariable(getModule(), BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000562 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000563 BlockLiteralStruct, "__block_literal_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000564
Anders Carlssond5cab542009-02-12 17:55:02 +0000565 return BlockLiteral;
566}
567
Mike Stump4e7a1f72009-02-21 20:00:35 +0000568llvm::Value *CodeGenFunction::LoadBlockStruct() {
569 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
570}
571
Mike Stump00470a12009-03-05 08:32:30 +0000572llvm::Function *
573CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
574 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000575 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000576 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000577 uint64_t &Size,
578 uint64_t &Align,
579 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
580 bool &subBlockHasCopyDispose) {
Devang Patel963dfbd2009-04-15 21:51:44 +0000581
582 // Check if we should generate debug info for this block.
583 if (CGM.getDebugInfo())
584 DebugInfo = CGM.getDebugInfo();
585
Mike Stump7f28a9c2009-03-13 23:34:28 +0000586 // Arrange for local static and local extern declarations to appear
587 // to be local to this function as well, as they are directly referenced
588 // in a block.
589 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
590 i != ldm.end();
591 ++i) {
592 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
593
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000594 if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage())
Mike Stump7f28a9c2009-03-13 23:34:28 +0000595 LocalDeclMap[VD] = i->second;
596 }
597
Eli Friedman48f91222009-03-28 03:24:54 +0000598 // FIXME: We need to rearrange the code for copy/dispose so we have this
599 // sooner, so we can calculate offsets correctly.
600 if (!BlockHasCopyDispose)
601 BlockOffset = CGM.getTargetData()
602 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
603 else
604 BlockOffset = CGM.getTargetData()
605 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
606 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
607
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000608 const FunctionType *BlockFunctionType = BExpr->getFunctionType();
609 QualType ResultType;
610 bool IsVariadic;
Fariborz Jahanianda0895d2009-04-11 18:54:57 +0000611 if (const FunctionProtoType *FTy =
612 dyn_cast<FunctionProtoType>(BlockFunctionType)) {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000613 ResultType = FTy->getResultType();
614 IsVariadic = FTy->isVariadic();
Mike Stumpb3589f42009-07-30 22:28:39 +0000615 } else {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000616 // K&R style block.
617 ResultType = BlockFunctionType->getResultType();
618 IsVariadic = false;
619 }
Mike Stumpa5448542009-02-13 15:32:32 +0000620
Anders Carlssond5cab542009-02-12 17:55:02 +0000621 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000622
Chris Lattner161d36d2009-02-28 19:01:03 +0000623 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000624
625 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000626 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000627 ImplicitParamDecl::Create(getContext(), 0,
628 SourceLocation(), 0,
629 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000630
Anders Carlssond5cab542009-02-12 17:55:02 +0000631 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000632 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000633
Steve Naroffe78b8092009-03-13 16:56:44 +0000634 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000635 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000636 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000637
638 const CGFunctionInfo &FI =
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000639 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlssond5cab542009-02-12 17:55:02 +0000640
Mike Stump67a64482009-02-14 22:16:35 +0000641 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000642 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000643 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic);
Mike Stumpa5448542009-02-13 15:32:32 +0000644
645 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000646 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
647 Name,
648 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000649
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000650 CGM.SetInternalFunctionAttributes(BD, Fn, FI);
651
Chris Lattner4863db42009-04-23 07:18:56 +0000652 StartFunction(BD, ResultType, Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000653 BExpr->getBody()->getLocEnd());
Chris Lattner4863db42009-04-23 07:18:56 +0000654 CurFuncDecl = OuterFuncDecl;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000655 CurCodeDecl = BD;
Chris Lattner161d36d2009-02-28 19:01:03 +0000656 EmitStmt(BExpr->getBody());
657 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000658
Mike Stump8a2b4b12009-02-25 23:33:13 +0000659 // The runtime needs a minimum alignment of a void *.
660 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
661 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
662
Mike Stump4e7a1f72009-02-21 20:00:35 +0000663 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000664 Align = BlockAlign;
665 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000666 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000667 return Fn;
668}
Mike Stumpa99038c2009-02-28 09:07:16 +0000669
Mike Stump08920992009-03-07 02:35:30 +0000670uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000671 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
672
673 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
674 uint64_t Align = getContext().getDeclAlignInBytes(D);
675
676 if (BDRE->isByRef()) {
677 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
678 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
679 }
680
681 assert ((Align > 0) && "alignment must be 1 byte or more");
682
683 uint64_t OldOffset = BlockOffset;
684
685 // Ensure proper alignment, even if it means we have to have a gap
686 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
687 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000688
Mike Stumpa99038c2009-02-28 09:07:16 +0000689 uint64_t Pad = BlockOffset - OldOffset;
690 if (Pad) {
Owen Anderson96e0fc72009-07-29 22:16:19 +0000691 llvm::ArrayType::get(llvm::Type::Int8Ty, Pad);
Mike Stumpa99038c2009-02-28 09:07:16 +0000692 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
693 llvm::APInt(32, Pad),
694 ArrayType::Normal, 0);
695 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
696 0, QualType(PadTy), VarDecl::None,
697 SourceLocation());
698 Expr *E;
699 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
700 SourceLocation(), false, false);
701 BlockDeclRefDecls.push_back(E);
702 }
703 BlockDeclRefDecls.push_back(BDRE);
704
705 BlockOffset += Size;
706 return BlockOffset-Size;
707}
Mike Stumpdab514f2009-03-04 03:23:46 +0000708
Mike Stump08920992009-03-07 02:35:30 +0000709llvm::Constant *BlockFunction::
710GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000711 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000712 QualType R = getContext().VoidTy;
713
714 FunctionArgList Args;
715 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000716 ImplicitParamDecl *Dst =
717 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
718 getContext().getPointerType(getContext().VoidTy));
719 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000720 ImplicitParamDecl *Src =
721 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
722 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000723 Args.push_back(std::make_pair(Src, Src->getType()));
724
725 const CGFunctionInfo &FI =
726 CGM.getTypes().getFunctionInfo(R, Args);
727
Mike Stump3899a7f2009-06-05 23:26:36 +0000728 // FIXME: We'd like to put these into a mergable by content, with
729 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000730 std::string Name = std::string("__copy_helper_block_");
731 CodeGenTypes &Types = CGM.getTypes();
732 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
733
734 llvm::Function *Fn =
735 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
736 Name,
737 &CGM.getModule());
738
739 IdentifierInfo *II
740 = &CGM.getContext().Idents.get("__copy_helper_block_");
741
742 FunctionDecl *FD = FunctionDecl::Create(getContext(),
743 getContext().getTranslationUnitDecl(),
744 SourceLocation(), II, R,
745 FunctionDecl::Static, false,
746 true);
747 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000748
749 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
750 llvm::Type *PtrPtrT;
Mike Stump08920992009-03-07 02:35:30 +0000751
Mike Stumpb7477cf2009-04-10 18:52:28 +0000752 if (NoteForHelperp) {
753 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump08920992009-03-07 02:35:30 +0000754
Owen Anderson96e0fc72009-07-29 22:16:19 +0000755 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000756 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
757 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump08920992009-03-07 02:35:30 +0000758
Mike Stumpb7477cf2009-04-10 18:52:28 +0000759 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000760 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000761 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000762 DstObj = Builder.CreateBitCast(DstObj, PtrPtrT);
763 DstObj = Builder.CreateLoad(DstObj);
Mike Stump08920992009-03-07 02:35:30 +0000764
Mike Stumpb7477cf2009-04-10 18:52:28 +0000765 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
766 int flag = NoteForHelper[i].flag;
767 int index = NoteForHelper[i].index;
Mike Stump08920992009-03-07 02:35:30 +0000768
Mike Stumpb7477cf2009-04-10 18:52:28 +0000769 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
770 || NoteForHelper[i].RequiresCopying) {
771 llvm::Value *Srcv = SrcObj;
772 Srcv = Builder.CreateStructGEP(Srcv, index);
773 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000774 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000775 Srcv = Builder.CreateLoad(Srcv);
776
777 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
778 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
779
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000780 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000781 llvm::Value *F = getBlockObjectAssign();
782 Builder.CreateCall3(F, Dstv, Srcv, N);
783 }
Mike Stump08920992009-03-07 02:35:30 +0000784 }
785 }
786
Mike Stumpa4f668f2009-03-06 01:33:24 +0000787 CGF.FinishFunction();
788
Owen Anderson3c4972d2009-07-29 18:54:39 +0000789 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000790}
791
Mike Stumpcf62d392009-03-06 18:42:23 +0000792llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000793GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
794 const llvm::StructType* T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000795 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000796 QualType R = getContext().VoidTy;
797
798 FunctionArgList Args;
799 // FIXME: This leaks
800 ImplicitParamDecl *Src =
801 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
802 getContext().getPointerType(getContext().VoidTy));
803
804 Args.push_back(std::make_pair(Src, Src->getType()));
805
806 const CGFunctionInfo &FI =
807 CGM.getTypes().getFunctionInfo(R, Args);
808
Mike Stump3899a7f2009-06-05 23:26:36 +0000809 // FIXME: We'd like to put these into a mergable by content, with
810 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000811 std::string Name = std::string("__destroy_helper_block_");
812 CodeGenTypes &Types = CGM.getTypes();
813 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
814
815 llvm::Function *Fn =
816 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
817 Name,
818 &CGM.getModule());
819
820 IdentifierInfo *II
821 = &CGM.getContext().Idents.get("__destroy_helper_block_");
822
823 FunctionDecl *FD = FunctionDecl::Create(getContext(),
824 getContext().getTranslationUnitDecl(),
825 SourceLocation(), II, R,
826 FunctionDecl::Static, false,
827 true);
828 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000829
Mike Stumpb7477cf2009-04-10 18:52:28 +0000830 if (NoteForHelperp) {
831 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump1edf6b62009-03-07 02:53:18 +0000832
Mike Stumpb7477cf2009-04-10 18:52:28 +0000833 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
834 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000835 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000836 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
837 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump1edf6b62009-03-07 02:53:18 +0000838
Mike Stumpb7477cf2009-04-10 18:52:28 +0000839 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
840 int flag = NoteForHelper[i].flag;
841 int index = NoteForHelper[i].index;
Mike Stump1edf6b62009-03-07 02:53:18 +0000842
Mike Stumpb7477cf2009-04-10 18:52:28 +0000843 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
844 || NoteForHelper[i].RequiresCopying) {
845 llvm::Value *Srcv = SrcObj;
846 Srcv = Builder.CreateStructGEP(Srcv, index);
847 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000848 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000849 Srcv = Builder.CreateLoad(Srcv);
850
851 BuildBlockRelease(Srcv, flag);
852 }
Mike Stump1edf6b62009-03-07 02:53:18 +0000853 }
854 }
855
Mike Stumpa4f668f2009-03-06 01:33:24 +0000856 CGF.FinishFunction();
857
Owen Anderson3c4972d2009-07-29 18:54:39 +0000858 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000859}
860
Mike Stump08920992009-03-07 02:35:30 +0000861llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000862 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump08920992009-03-07 02:35:30 +0000863 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
864 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000865}
866
Mike Stump08920992009-03-07 02:35:30 +0000867llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000868 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stump08920992009-03-07 02:35:30 +0000869 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000870 T, NoteForHelperp);
Mike Stumpdab514f2009-03-04 03:23:46 +0000871}
Mike Stump797b6322009-03-05 01:23:13 +0000872
Mike Stumpee094222009-03-06 06:12:24 +0000873llvm::Constant *BlockFunction::
874GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000875 QualType R = getContext().VoidTy;
876
877 FunctionArgList Args;
878 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000879 ImplicitParamDecl *Dst =
880 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
881 getContext().getPointerType(getContext().VoidTy));
882 Args.push_back(std::make_pair(Dst, Dst->getType()));
883
884 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000885 ImplicitParamDecl *Src =
886 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
887 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000888 Args.push_back(std::make_pair(Src, Src->getType()));
889
890 const CGFunctionInfo &FI =
891 CGM.getTypes().getFunctionInfo(R, Args);
892
893 std::string Name = std::string("__Block_byref_id_object_copy_");
894 CodeGenTypes &Types = CGM.getTypes();
895 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
896
Mike Stump3899a7f2009-06-05 23:26:36 +0000897 // FIXME: We'd like to put these into a mergable by content, with
898 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000899 llvm::Function *Fn =
900 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
901 Name,
902 &CGM.getModule());
903
904 IdentifierInfo *II
905 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
906
907 FunctionDecl *FD = FunctionDecl::Create(getContext(),
908 getContext().getTranslationUnitDecl(),
909 SourceLocation(), II, R,
910 FunctionDecl::Static, false,
911 true);
912 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +0000913
914 // dst->x
915 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000916 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000917 V = Builder.CreateLoad(V);
Mike Stumpee094222009-03-06 06:12:24 +0000918 V = Builder.CreateStructGEP(V, 6, "x");
919 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
920
921 // src->x
922 V = CGF.GetAddrOfLocalVar(Src);
923 V = Builder.CreateLoad(V);
924 V = Builder.CreateBitCast(V, T);
925 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000926 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpee094222009-03-06 06:12:24 +0000927 llvm::Value *SrcObj = Builder.CreateLoad(V);
928
929 flag |= BLOCK_BYREF_CALLER;
930
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000931 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stumpee094222009-03-06 06:12:24 +0000932 llvm::Value *F = getBlockObjectAssign();
933 Builder.CreateCall3(F, DstObj, SrcObj, N);
934
Mike Stump45031c02009-03-06 02:29:21 +0000935 CGF.FinishFunction();
936
Owen Anderson3c4972d2009-07-29 18:54:39 +0000937 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +0000938}
939
Mike Stump1851b682009-03-06 04:53:30 +0000940llvm::Constant *
941BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
942 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000943 QualType R = getContext().VoidTy;
944
945 FunctionArgList Args;
946 // FIXME: This leaks
947 ImplicitParamDecl *Src =
948 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
949 getContext().getPointerType(getContext().VoidTy));
950
951 Args.push_back(std::make_pair(Src, Src->getType()));
952
953 const CGFunctionInfo &FI =
954 CGM.getTypes().getFunctionInfo(R, Args);
955
956 std::string Name = std::string("__Block_byref_id_object_dispose_");
957 CodeGenTypes &Types = CGM.getTypes();
958 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
959
Mike Stump3899a7f2009-06-05 23:26:36 +0000960 // FIXME: We'd like to put these into a mergable by content, with
961 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000962 llvm::Function *Fn =
963 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
964 Name,
965 &CGM.getModule());
966
967 IdentifierInfo *II
968 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
969
970 FunctionDecl *FD = FunctionDecl::Create(getContext(),
971 getContext().getTranslationUnitDecl(),
972 SourceLocation(), II, R,
973 FunctionDecl::Static, false,
974 true);
975 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +0000976
977 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000978 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000979 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +0000980 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000981 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000982 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +0000983
Mike Stump1851b682009-03-06 04:53:30 +0000984 flag |= BLOCK_BYREF_CALLER;
985 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000986 CGF.FinishFunction();
987
Owen Anderson3c4972d2009-07-29 18:54:39 +0000988 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +0000989}
990
Mike Stumpee094222009-03-06 06:12:24 +0000991llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +0000992 int flag, unsigned Align) {
993 // All alignments below that of pointer alignment collpase down to just
994 // pointer alignment, as we always have at least that much alignment to begin
995 // with.
996 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
997 // As an optimization, we only generate a single function of each kind we
998 // might need. We need a different one for each alignment and for each
999 // setting of flags. We mix Align and flag to get the kind.
1000 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1001 llvm::Constant *& Entry = CGM.AssignCache[kind];
1002 if (Entry)
1003 return Entry;
1004 return Entry=CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001005}
1006
Mike Stump1851b682009-03-06 04:53:30 +00001007llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001008 int flag,
1009 unsigned Align) {
1010 // All alignments below that of pointer alignment collpase down to just
1011 // pointer alignment, as we always have at least that much alignment to begin
1012 // with.
1013 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1014 // As an optimization, we only generate a single function of each kind we
1015 // might need. We need a different one for each alignment and for each
1016 // setting of flags. We mix Align and flag to get the kind.
1017 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1018 llvm::Constant *& Entry = CGM.DestroyCache[kind];
1019 if (Entry)
1020 return Entry;
1021 return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001022}
1023
Mike Stump797b6322009-03-05 01:23:13 +00001024llvm::Value *BlockFunction::getBlockObjectDispose() {
1025 if (CGM.BlockObjectDispose == 0) {
1026 const llvm::FunctionType *FTy;
1027 std::vector<const llvm::Type*> ArgTys;
1028 const llvm::Type *ResultType = llvm::Type::VoidTy;
1029 ArgTys.push_back(PtrToInt8Ty);
1030 ArgTys.push_back(llvm::Type::Int32Ty);
Owen Anderson96e0fc72009-07-29 22:16:19 +00001031 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001032 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001033 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1034 }
1035 return CGM.BlockObjectDispose;
1036}
1037
Mike Stumpee094222009-03-06 06:12:24 +00001038llvm::Value *BlockFunction::getBlockObjectAssign() {
1039 if (CGM.BlockObjectAssign == 0) {
1040 const llvm::FunctionType *FTy;
1041 std::vector<const llvm::Type*> ArgTys;
1042 const llvm::Type *ResultType = llvm::Type::VoidTy;
1043 ArgTys.push_back(PtrToInt8Ty);
1044 ArgTys.push_back(PtrToInt8Ty);
1045 ArgTys.push_back(llvm::Type::Int32Ty);
Owen Anderson96e0fc72009-07-29 22:16:19 +00001046 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stumpee094222009-03-06 06:12:24 +00001047 CGM.BlockObjectAssign
1048 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1049 }
1050 return CGM.BlockObjectAssign;
1051}
1052
Mike Stump1851b682009-03-06 04:53:30 +00001053void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001054 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001055 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001056 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Owen Anderson4a28d5d2009-07-24 23:12:58 +00001057 N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stump797b6322009-03-05 01:23:13 +00001058 Builder.CreateCall2(F, V, N);
1059}
Mike Stump00470a12009-03-05 08:32:30 +00001060
1061ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001062
1063BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1064 CGBuilderTy &B)
Owen Andersona1cf15f2009-07-14 23:10:40 +00001065 : CGM(cgm), CGF(cgf), VMContext(cgm.getLLVMContext()), Builder(B) {
Owen Anderson96e0fc72009-07-29 22:16:19 +00001066 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stump08920992009-03-07 02:35:30 +00001067
1068 BlockHasCopyDispose = false;
1069}