blob: ad414b783b1c81546748b5658c7b6667f5f6bb2e [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,
Owen Anderson0032b272009-08-13 21:57:51 +0000268 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
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 Anderson0032b272009-08-13 21:57:51 +0000409 llvm::PointerType::getUnqual(
410 llvm::Type::getInt8Ty(VMContext)),
Anders Carlssonacfde802009-02-12 00:39:25 +0000411 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000412
Anders Carlssonacfde802009-02-12 00:39:25 +0000413 // Add the block literal.
414 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
415 CallArgList Args;
416 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000417
Anders Carlsson782f3972009-04-08 23:13:16 +0000418 QualType FnType = BPT->getPointeeType();
419
Anders Carlssonacfde802009-02-12 00:39:25 +0000420 // And the rest of the arguments.
Anders Carlsson782f3972009-04-08 23:13:16 +0000421 EmitCallArgs(Args, FnType->getAsFunctionProtoType(),
422 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000423
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000424 // Load the function.
425 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
426
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000427 QualType ResultType = FnType->getAsFunctionType()->getResultType();
428
429 const CGFunctionInfo &FnInfo =
430 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000431
432 // Cast the function pointer to the right type.
433 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000434 CGM.getTypes().GetFunctionType(FnInfo, false);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000435
Owen Anderson96e0fc72009-07-29 22:16:19 +0000436 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000437 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
438
Anders Carlssonacfde802009-02-12 00:39:25 +0000439 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000440 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000441}
Anders Carlssond5cab542009-02-12 17:55:02 +0000442
Mike Stumpdab514f2009-03-04 03:23:46 +0000443llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
444 uint64_t &offset = BlockDecls[E->getDecl()];
445
446 const llvm::Type *Ty;
447 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
448
Mike Stumpdab514f2009-03-04 03:23:46 +0000449 // See if we have already allocated an offset for this variable.
450 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000451 // Don't run the expensive check, unless we have to.
452 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
453 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000454 // if not, allocate one now.
455 offset = getBlockOffset(E);
456 }
457
458 llvm::Value *BlockLiteral = LoadBlockStruct();
459 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000460 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stumpdab514f2009-03-04 03:23:46 +0000461 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000462 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000463 if (E->isByRef()) {
464 bool needsCopyDispose = BlockRequiresCopying(E->getType());
465 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
466 const llvm::Type *PtrStructTy
Owen Anderson96e0fc72009-07-29 22:16:19 +0000467 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000468 // The block literal will need a copy/destroy helper.
469 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000470 Ty = PtrStructTy;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000471 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000472 V = Builder.CreateBitCast(V, Ty);
473 V = Builder.CreateLoad(V, false);
474 V = Builder.CreateStructGEP(V, 1, "forwarding");
475 V = Builder.CreateLoad(V, false);
476 V = Builder.CreateBitCast(V, PtrStructTy);
477 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
478 } else {
Owen Anderson96e0fc72009-07-29 22:16:19 +0000479 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000480 V = Builder.CreateBitCast(V, Ty);
481 }
482 return V;
483}
484
Mike Stump6cc88f72009-03-20 21:53:12 +0000485void CodeGenFunction::BlockForwardSelf() {
486 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
487 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
488 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
489 if (DMEntry)
490 return;
491 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
492 BlockDeclRefExpr *BDRE = new (getContext())
493 BlockDeclRefExpr(SelfDecl,
494 SelfDecl->getType(), SourceLocation(), false);
495 DMEntry = GetAddrOfBlockDecl(BDRE);
496}
497
Mike Stump67a64482009-02-14 22:16:35 +0000498llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000499BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000500 // Generate the block descriptor.
501 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000502 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
503 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000504
Anders Carlssond5cab542009-02-12 17:55:02 +0000505 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000506
Anders Carlssond5cab542009-02-12 17:55:02 +0000507 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000508 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000509
Anders Carlssond5cab542009-02-12 17:55:02 +0000510 // Block literal size. For global blocks we just use the size of the generic
511 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000512 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000513 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Owen Andersona1cf15f2009-07-14 23:10:40 +0000514 DescriptorFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000515 llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000516
517 llvm::Constant *DescriptorStruct =
Owen Anderson47a434f2009-08-05 23:18:46 +0000518 llvm::ConstantStruct::get(VMContext, &DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000519
Anders Carlssond5cab542009-02-12 17:55:02 +0000520 llvm::GlobalVariable *Descriptor =
Owen Anderson1c431b32009-07-08 19:05:04 +0000521 new llvm::GlobalVariable(getModule(), DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000522 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000523 DescriptorStruct, "__block_descriptor_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000524
Anders Carlssond5cab542009-02-12 17:55:02 +0000525 // Generate the constants for the block literal.
526 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000527
Mike Stump67a64482009-02-14 22:16:35 +0000528 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000529 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000530 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000531 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000532 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000533 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000534 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000535 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000536 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000537 subBlockDeclRefDecls,
538 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000539 assert(subBlockSize == BlockLiteralSize
540 && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000541
Anders Carlssond5cab542009-02-12 17:55:02 +0000542 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000543 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000544
Anders Carlssond5cab542009-02-12 17:55:02 +0000545 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000546 LiteralFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000547 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000548
Anders Carlssond5cab542009-02-12 17:55:02 +0000549 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000550 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000551
Anders Carlssond5cab542009-02-12 17:55:02 +0000552 // Function
553 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000554
Anders Carlssond5cab542009-02-12 17:55:02 +0000555 // Descriptor
556 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000557
558 llvm::Constant *BlockLiteralStruct =
Owen Anderson47a434f2009-08-05 23:18:46 +0000559 llvm::ConstantStruct::get(VMContext, &LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000560
561 llvm::GlobalVariable *BlockLiteral =
Owen Anderson1c431b32009-07-08 19:05:04 +0000562 new llvm::GlobalVariable(getModule(), BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000563 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000564 BlockLiteralStruct, "__block_literal_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000565
Anders Carlssond5cab542009-02-12 17:55:02 +0000566 return BlockLiteral;
567}
568
Mike Stump4e7a1f72009-02-21 20:00:35 +0000569llvm::Value *CodeGenFunction::LoadBlockStruct() {
570 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
571}
572
Mike Stump00470a12009-03-05 08:32:30 +0000573llvm::Function *
574CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
575 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000576 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000577 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000578 uint64_t &Size,
579 uint64_t &Align,
580 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
581 bool &subBlockHasCopyDispose) {
Devang Patel963dfbd2009-04-15 21:51:44 +0000582
583 // Check if we should generate debug info for this block.
584 if (CGM.getDebugInfo())
585 DebugInfo = CGM.getDebugInfo();
586
Mike Stump7f28a9c2009-03-13 23:34:28 +0000587 // Arrange for local static and local extern declarations to appear
588 // to be local to this function as well, as they are directly referenced
589 // in a block.
590 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
591 i != ldm.end();
592 ++i) {
593 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
594
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000595 if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage())
Mike Stump7f28a9c2009-03-13 23:34:28 +0000596 LocalDeclMap[VD] = i->second;
597 }
598
Eli Friedman48f91222009-03-28 03:24:54 +0000599 // FIXME: We need to rearrange the code for copy/dispose so we have this
600 // sooner, so we can calculate offsets correctly.
601 if (!BlockHasCopyDispose)
602 BlockOffset = CGM.getTargetData()
603 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
604 else
605 BlockOffset = CGM.getTargetData()
606 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
607 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
608
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000609 const FunctionType *BlockFunctionType = BExpr->getFunctionType();
610 QualType ResultType;
611 bool IsVariadic;
Fariborz Jahanianda0895d2009-04-11 18:54:57 +0000612 if (const FunctionProtoType *FTy =
613 dyn_cast<FunctionProtoType>(BlockFunctionType)) {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000614 ResultType = FTy->getResultType();
615 IsVariadic = FTy->isVariadic();
Mike Stumpb3589f42009-07-30 22:28:39 +0000616 } else {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000617 // K&R style block.
618 ResultType = BlockFunctionType->getResultType();
619 IsVariadic = false;
620 }
Mike Stumpa5448542009-02-13 15:32:32 +0000621
Anders Carlssond5cab542009-02-12 17:55:02 +0000622 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000623
Chris Lattner161d36d2009-02-28 19:01:03 +0000624 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000625
626 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000627 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000628 ImplicitParamDecl::Create(getContext(), 0,
629 SourceLocation(), 0,
630 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000631
Anders Carlssond5cab542009-02-12 17:55:02 +0000632 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000633 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000634
Steve Naroffe78b8092009-03-13 16:56:44 +0000635 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000636 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000637 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000638
639 const CGFunctionInfo &FI =
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000640 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlssond5cab542009-02-12 17:55:02 +0000641
Mike Stump67a64482009-02-14 22:16:35 +0000642 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000643 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000644 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic);
Mike Stumpa5448542009-02-13 15:32:32 +0000645
646 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000647 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
648 Name,
649 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000650
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000651 CGM.SetInternalFunctionAttributes(BD, Fn, FI);
652
Chris Lattner4863db42009-04-23 07:18:56 +0000653 StartFunction(BD, ResultType, Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000654 BExpr->getBody()->getLocEnd());
Chris Lattner4863db42009-04-23 07:18:56 +0000655 CurFuncDecl = OuterFuncDecl;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000656 CurCodeDecl = BD;
Chris Lattner161d36d2009-02-28 19:01:03 +0000657 EmitStmt(BExpr->getBody());
658 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000659
Mike Stump8a2b4b12009-02-25 23:33:13 +0000660 // The runtime needs a minimum alignment of a void *.
661 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
662 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
663
Mike Stump4e7a1f72009-02-21 20:00:35 +0000664 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000665 Align = BlockAlign;
666 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000667 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000668 return Fn;
669}
Mike Stumpa99038c2009-02-28 09:07:16 +0000670
Mike Stump08920992009-03-07 02:35:30 +0000671uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000672 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
673
674 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
675 uint64_t Align = getContext().getDeclAlignInBytes(D);
676
677 if (BDRE->isByRef()) {
678 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
679 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
680 }
681
682 assert ((Align > 0) && "alignment must be 1 byte or more");
683
684 uint64_t OldOffset = BlockOffset;
685
686 // Ensure proper alignment, even if it means we have to have a gap
687 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
688 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000689
Mike Stumpa99038c2009-02-28 09:07:16 +0000690 uint64_t Pad = BlockOffset - OldOffset;
691 if (Pad) {
Owen Anderson0032b272009-08-13 21:57:51 +0000692 llvm::ArrayType::get(llvm::Type::getInt8Ty(VMContext), Pad);
Mike Stumpa99038c2009-02-28 09:07:16 +0000693 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
694 llvm::APInt(32, Pad),
695 ArrayType::Normal, 0);
696 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000697 0, QualType(PadTy), 0, VarDecl::None,
Mike Stumpa99038c2009-02-28 09:07:16 +0000698 SourceLocation());
699 Expr *E;
700 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
701 SourceLocation(), false, false);
702 BlockDeclRefDecls.push_back(E);
703 }
704 BlockDeclRefDecls.push_back(BDRE);
705
706 BlockOffset += Size;
707 return BlockOffset-Size;
708}
Mike Stumpdab514f2009-03-04 03:23:46 +0000709
Mike Stump08920992009-03-07 02:35:30 +0000710llvm::Constant *BlockFunction::
711GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000712 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000713 QualType R = getContext().VoidTy;
714
715 FunctionArgList Args;
716 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000717 ImplicitParamDecl *Dst =
718 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
719 getContext().getPointerType(getContext().VoidTy));
720 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000721 ImplicitParamDecl *Src =
722 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
723 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000724 Args.push_back(std::make_pair(Src, Src->getType()));
725
726 const CGFunctionInfo &FI =
727 CGM.getTypes().getFunctionInfo(R, Args);
728
Mike Stump3899a7f2009-06-05 23:26:36 +0000729 // FIXME: We'd like to put these into a mergable by content, with
730 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000731 std::string Name = std::string("__copy_helper_block_");
732 CodeGenTypes &Types = CGM.getTypes();
733 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
734
735 llvm::Function *Fn =
736 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
737 Name,
738 &CGM.getModule());
739
740 IdentifierInfo *II
741 = &CGM.getContext().Idents.get("__copy_helper_block_");
742
743 FunctionDecl *FD = FunctionDecl::Create(getContext(),
744 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000745 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000746 FunctionDecl::Static, false,
747 true);
748 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000749
750 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
751 llvm::Type *PtrPtrT;
Mike Stump08920992009-03-07 02:35:30 +0000752
Mike Stumpb7477cf2009-04-10 18:52:28 +0000753 if (NoteForHelperp) {
754 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump08920992009-03-07 02:35:30 +0000755
Owen Anderson96e0fc72009-07-29 22:16:19 +0000756 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000757 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
758 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump08920992009-03-07 02:35:30 +0000759
Mike Stumpb7477cf2009-04-10 18:52:28 +0000760 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000761 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000762 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000763 DstObj = Builder.CreateBitCast(DstObj, PtrPtrT);
764 DstObj = Builder.CreateLoad(DstObj);
Mike Stump08920992009-03-07 02:35:30 +0000765
Mike Stumpb7477cf2009-04-10 18:52:28 +0000766 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
767 int flag = NoteForHelper[i].flag;
768 int index = NoteForHelper[i].index;
Mike Stump08920992009-03-07 02:35:30 +0000769
Mike Stumpb7477cf2009-04-10 18:52:28 +0000770 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
771 || NoteForHelper[i].RequiresCopying) {
772 llvm::Value *Srcv = SrcObj;
773 Srcv = Builder.CreateStructGEP(Srcv, index);
774 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000775 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000776 Srcv = Builder.CreateLoad(Srcv);
777
778 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
779 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
780
Owen Anderson0032b272009-08-13 21:57:51 +0000781 llvm::Value *N = llvm::ConstantInt::get(
782 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000783 llvm::Value *F = getBlockObjectAssign();
784 Builder.CreateCall3(F, Dstv, Srcv, N);
785 }
Mike Stump08920992009-03-07 02:35:30 +0000786 }
787 }
788
Mike Stumpa4f668f2009-03-06 01:33:24 +0000789 CGF.FinishFunction();
790
Owen Anderson3c4972d2009-07-29 18:54:39 +0000791 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000792}
793
Mike Stumpcf62d392009-03-06 18:42:23 +0000794llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000795GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
796 const llvm::StructType* T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000797 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000798 QualType R = getContext().VoidTy;
799
800 FunctionArgList Args;
801 // FIXME: This leaks
802 ImplicitParamDecl *Src =
803 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
804 getContext().getPointerType(getContext().VoidTy));
805
806 Args.push_back(std::make_pair(Src, Src->getType()));
807
808 const CGFunctionInfo &FI =
809 CGM.getTypes().getFunctionInfo(R, Args);
810
Mike Stump3899a7f2009-06-05 23:26:36 +0000811 // FIXME: We'd like to put these into a mergable by content, with
812 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000813 std::string Name = std::string("__destroy_helper_block_");
814 CodeGenTypes &Types = CGM.getTypes();
815 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
816
817 llvm::Function *Fn =
818 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
819 Name,
820 &CGM.getModule());
821
822 IdentifierInfo *II
823 = &CGM.getContext().Idents.get("__destroy_helper_block_");
824
825 FunctionDecl *FD = FunctionDecl::Create(getContext(),
826 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000827 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000828 FunctionDecl::Static, false,
829 true);
830 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000831
Mike Stumpb7477cf2009-04-10 18:52:28 +0000832 if (NoteForHelperp) {
833 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump1edf6b62009-03-07 02:53:18 +0000834
Mike Stumpb7477cf2009-04-10 18:52:28 +0000835 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
836 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000837 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000838 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
839 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump1edf6b62009-03-07 02:53:18 +0000840
Mike Stumpb7477cf2009-04-10 18:52:28 +0000841 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
842 int flag = NoteForHelper[i].flag;
843 int index = NoteForHelper[i].index;
Mike Stump1edf6b62009-03-07 02:53:18 +0000844
Mike Stumpb7477cf2009-04-10 18:52:28 +0000845 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
846 || NoteForHelper[i].RequiresCopying) {
847 llvm::Value *Srcv = SrcObj;
848 Srcv = Builder.CreateStructGEP(Srcv, index);
849 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000850 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000851 Srcv = Builder.CreateLoad(Srcv);
852
853 BuildBlockRelease(Srcv, flag);
854 }
Mike Stump1edf6b62009-03-07 02:53:18 +0000855 }
856 }
857
Mike Stumpa4f668f2009-03-06 01:33:24 +0000858 CGF.FinishFunction();
859
Owen Anderson3c4972d2009-07-29 18:54:39 +0000860 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000861}
862
Mike Stump08920992009-03-07 02:35:30 +0000863llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000864 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump08920992009-03-07 02:35:30 +0000865 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
866 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000867}
868
Mike Stump08920992009-03-07 02:35:30 +0000869llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000870 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stump08920992009-03-07 02:35:30 +0000871 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000872 T, NoteForHelperp);
Mike Stumpdab514f2009-03-04 03:23:46 +0000873}
Mike Stump797b6322009-03-05 01:23:13 +0000874
Mike Stumpee094222009-03-06 06:12:24 +0000875llvm::Constant *BlockFunction::
876GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000877 QualType R = getContext().VoidTy;
878
879 FunctionArgList Args;
880 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000881 ImplicitParamDecl *Dst =
882 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
883 getContext().getPointerType(getContext().VoidTy));
884 Args.push_back(std::make_pair(Dst, Dst->getType()));
885
886 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000887 ImplicitParamDecl *Src =
888 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
889 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000890 Args.push_back(std::make_pair(Src, Src->getType()));
891
892 const CGFunctionInfo &FI =
893 CGM.getTypes().getFunctionInfo(R, Args);
894
895 std::string Name = std::string("__Block_byref_id_object_copy_");
896 CodeGenTypes &Types = CGM.getTypes();
897 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
898
Mike Stump3899a7f2009-06-05 23:26:36 +0000899 // FIXME: We'd like to put these into a mergable by content, with
900 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000901 llvm::Function *Fn =
902 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
903 Name,
904 &CGM.getModule());
905
906 IdentifierInfo *II
907 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
908
909 FunctionDecl *FD = FunctionDecl::Create(getContext(),
910 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000911 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +0000912 FunctionDecl::Static, false,
913 true);
914 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +0000915
916 // dst->x
917 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000918 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000919 V = Builder.CreateLoad(V);
Mike Stumpee094222009-03-06 06:12:24 +0000920 V = Builder.CreateStructGEP(V, 6, "x");
921 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
922
923 // src->x
924 V = CGF.GetAddrOfLocalVar(Src);
925 V = Builder.CreateLoad(V);
926 V = Builder.CreateBitCast(V, T);
927 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000928 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpee094222009-03-06 06:12:24 +0000929 llvm::Value *SrcObj = Builder.CreateLoad(V);
930
931 flag |= BLOCK_BYREF_CALLER;
932
Owen Anderson0032b272009-08-13 21:57:51 +0000933 llvm::Value *N = llvm::ConstantInt::get(
934 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpee094222009-03-06 06:12:24 +0000935 llvm::Value *F = getBlockObjectAssign();
936 Builder.CreateCall3(F, DstObj, SrcObj, N);
937
Mike Stump45031c02009-03-06 02:29:21 +0000938 CGF.FinishFunction();
939
Owen Anderson3c4972d2009-07-29 18:54:39 +0000940 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +0000941}
942
Mike Stump1851b682009-03-06 04:53:30 +0000943llvm::Constant *
944BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
945 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000946 QualType R = getContext().VoidTy;
947
948 FunctionArgList Args;
949 // FIXME: This leaks
950 ImplicitParamDecl *Src =
951 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
952 getContext().getPointerType(getContext().VoidTy));
953
954 Args.push_back(std::make_pair(Src, Src->getType()));
955
956 const CGFunctionInfo &FI =
957 CGM.getTypes().getFunctionInfo(R, Args);
958
959 std::string Name = std::string("__Block_byref_id_object_dispose_");
960 CodeGenTypes &Types = CGM.getTypes();
961 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
962
Mike Stump3899a7f2009-06-05 23:26:36 +0000963 // FIXME: We'd like to put these into a mergable by content, with
964 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000965 llvm::Function *Fn =
966 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
967 Name,
968 &CGM.getModule());
969
970 IdentifierInfo *II
971 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
972
973 FunctionDecl *FD = FunctionDecl::Create(getContext(),
974 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000975 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +0000976 FunctionDecl::Static, false,
977 true);
978 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +0000979
980 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000981 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000982 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +0000983 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000984 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000985 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +0000986
Mike Stump1851b682009-03-06 04:53:30 +0000987 flag |= BLOCK_BYREF_CALLER;
988 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000989 CGF.FinishFunction();
990
Owen Anderson3c4972d2009-07-29 18:54:39 +0000991 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +0000992}
993
Mike Stumpee094222009-03-06 06:12:24 +0000994llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +0000995 int flag, unsigned Align) {
996 // All alignments below that of pointer alignment collpase down to just
997 // pointer alignment, as we always have at least that much alignment to begin
998 // with.
999 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1000 // As an optimization, we only generate a single function of each kind we
1001 // might need. We need a different one for each alignment and for each
1002 // setting of flags. We mix Align and flag to get the kind.
1003 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1004 llvm::Constant *& Entry = CGM.AssignCache[kind];
1005 if (Entry)
1006 return Entry;
1007 return Entry=CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001008}
1009
Mike Stump1851b682009-03-06 04:53:30 +00001010llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001011 int flag,
1012 unsigned Align) {
1013 // All alignments below that of pointer alignment collpase down to just
1014 // pointer alignment, as we always have at least that much alignment to begin
1015 // with.
1016 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1017 // As an optimization, we only generate a single function of each kind we
1018 // might need. We need a different one for each alignment and for each
1019 // setting of flags. We mix Align and flag to get the kind.
1020 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1021 llvm::Constant *& Entry = CGM.DestroyCache[kind];
1022 if (Entry)
1023 return Entry;
1024 return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001025}
1026
Mike Stump797b6322009-03-05 01:23:13 +00001027llvm::Value *BlockFunction::getBlockObjectDispose() {
1028 if (CGM.BlockObjectDispose == 0) {
1029 const llvm::FunctionType *FTy;
1030 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001031 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stump797b6322009-03-05 01:23:13 +00001032 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001033 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001034 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001035 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001036 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1037 }
1038 return CGM.BlockObjectDispose;
1039}
1040
Mike Stumpee094222009-03-06 06:12:24 +00001041llvm::Value *BlockFunction::getBlockObjectAssign() {
1042 if (CGM.BlockObjectAssign == 0) {
1043 const llvm::FunctionType *FTy;
1044 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001045 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stumpee094222009-03-06 06:12:24 +00001046 ArgTys.push_back(PtrToInt8Ty);
1047 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001048 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001049 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stumpee094222009-03-06 06:12:24 +00001050 CGM.BlockObjectAssign
1051 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1052 }
1053 return CGM.BlockObjectAssign;
1054}
1055
Mike Stump1851b682009-03-06 04:53:30 +00001056void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001057 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001058 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001059 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001060 N = llvm::ConstantInt::get(llvm::Type::getInt32Ty(V->getContext()), flag);
Mike Stump797b6322009-03-05 01:23:13 +00001061 Builder.CreateCall2(F, V, N);
1062}
Mike Stump00470a12009-03-05 08:32:30 +00001063
1064ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001065
1066BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1067 CGBuilderTy &B)
Owen Andersona1cf15f2009-07-14 23:10:40 +00001068 : CGM(cgm), CGF(cgf), VMContext(cgm.getLLVMContext()), Builder(B) {
Owen Anderson0032b272009-08-13 21:57:51 +00001069 PtrToInt8Ty = llvm::PointerType::getUnqual(
1070 llvm::Type::getInt8Ty(VMContext));
Mike Stump08920992009-03-07 02:35:30 +00001071
1072 BlockHasCopyDispose = false;
1073}