blob: d5f803ba98bfd8732716c7fd44a4136897a1e0ea [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
Mike Stump56129b12009-02-13 16:55:51 +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.
Mike Stump4e7a1f72009-02-21 20:00:35 +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
51 C = llvm::ConstantStruct::get(Elts);
52
Mike Stumpe5fee252009-02-13 16:19:19 +000053 C = new llvm::GlobalVariable(C->getType(), true,
54 llvm::GlobalValue::InternalLinkage,
Mike Stump7d6dc4f2009-02-13 20:17:16 +000055 C, "__block_descriptor_tmp", &CGM.getModule());
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();
Mike Stumpe5fee252009-02-13 16:19:19 +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));
149 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
153 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();
162 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
163
Mike Stump8a2b4b12009-02-25 23:33:13 +0000164 C = llvm::ConstantStruct::get(Elts);
165
166 char Name[32];
167 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
168 C = new llvm::GlobalVariable(C->getType(), true,
169 llvm::GlobalValue::InternalLinkage,
170 C, Name, &CGM.getModule());
171 QualType BPT = BE->getType();
172 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
173 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());
187 Types[i+5] = llvm::PointerType::get(BuildByRefType(Ty, Align), 0);
188 } else
189 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000190 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000191
Mike Stump08920992009-03-07 02:35:30 +0000192 llvm::StructType *Ty = llvm::StructType::get(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,
268 llvm::ConstantInt::get(llvm::Type::Int64Ty,
269 offset),
270 "block.literal");
271 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 // };
Mike Stumpa5448542009-02-13 15:32:32 +0000313 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy,
314 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000315 NULL);
316
317 getModule().addTypeName("struct.__block_descriptor",
318 BlockDescriptorType);
319
320 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000321}
322
Mike Stump2a998142009-03-04 18:17:45 +0000323const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000324 if (GenericBlockLiteralType)
325 return GenericBlockLiteralType;
326
Mike Stumpa5448542009-02-13 15:32:32 +0000327 const llvm::Type *BlockDescPtrTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000328 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000329
Mike Stump7cbb3602009-02-13 16:01:35 +0000330 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
331 getTypes().ConvertType(getContext().IntTy));
332
Mike Stump9b8a7972009-02-13 15:25:34 +0000333 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000334 // void *__isa;
335 // int __flags;
336 // int __reserved;
337 // void (*__invoke)(void *);
338 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000339 // };
Mike Stump797b6322009-03-05 01:23:13 +0000340 GenericBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000341 IntTy,
342 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000343 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000344 BlockDescPtrTy,
345 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000346
Mike Stump9b8a7972009-02-13 15:25:34 +0000347 getModule().addTypeName("struct.__block_literal_generic",
348 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000349
Mike Stump9b8a7972009-02-13 15:25:34 +0000350 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000351}
352
Mike Stump2a998142009-03-04 18:17:45 +0000353const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000354 if (GenericExtendedBlockLiteralType)
355 return GenericExtendedBlockLiteralType;
356
Mike Stumpbd65cac2009-02-19 01:01:04 +0000357 const llvm::Type *BlockDescPtrTy =
358 llvm::PointerType::getUnqual(getBlockDescriptorType());
359
360 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
361 getTypes().ConvertType(getContext().IntTy));
362
363 // struct __block_literal_generic {
364 // void *__isa;
365 // int __flags;
366 // int __reserved;
367 // void (*__invoke)(void *);
368 // struct __block_descriptor *__descriptor;
369 // void *__copy_func_helper_decl;
370 // void *__destroy_func_decl;
371 // };
Mike Stump797b6322009-03-05 01:23:13 +0000372 GenericExtendedBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000373 IntTy,
374 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000375 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000376 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000377 PtrToInt8Ty,
378 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000379 NULL);
380
381 getModule().addTypeName("struct.__block_literal_extended_generic",
382 GenericExtendedBlockLiteralType);
383
384 return GenericExtendedBlockLiteralType;
385}
386
Anders Carlssond5cab542009-02-12 17:55:02 +0000387RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000388 const BlockPointerType *BPT =
Anders Carlssonacfde802009-02-12 00:39:25 +0000389 E->getCallee()->getType()->getAsBlockPointerType();
Mike Stumpa5448542009-02-13 15:32:32 +0000390
Anders Carlssonacfde802009-02-12 00:39:25 +0000391 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
392
393 // Get a pointer to the generic block literal.
394 const llvm::Type *BlockLiteralTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000395 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000396
397 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000398 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000399 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
400
401 // Get the function pointer from the literal.
402 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000403
Mike Stumpa5448542009-02-13 15:32:32 +0000404 BlockLiteral =
405 Builder.CreateBitCast(BlockLiteral,
Anders Carlssonacfde802009-02-12 00:39:25 +0000406 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
407 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000408
Anders Carlssonacfde802009-02-12 00:39:25 +0000409 // Add the block literal.
410 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
411 CallArgList Args;
412 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000413
Anders Carlsson782f3972009-04-08 23:13:16 +0000414 QualType FnType = BPT->getPointeeType();
415
Anders Carlssonacfde802009-02-12 00:39:25 +0000416 // And the rest of the arguments.
Anders Carlsson782f3972009-04-08 23:13:16 +0000417 EmitCallArgs(Args, FnType->getAsFunctionProtoType(),
418 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000419
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000420 // Load the function.
421 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
422
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000423 QualType ResultType = FnType->getAsFunctionType()->getResultType();
424
425 const CGFunctionInfo &FnInfo =
426 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000427
428 // Cast the function pointer to the right type.
429 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000430 CGM.getTypes().GetFunctionType(FnInfo, false);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000431
432 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
433 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
434
Anders Carlssonacfde802009-02-12 00:39:25 +0000435 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000436 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000437}
Anders Carlssond5cab542009-02-12 17:55:02 +0000438
Mike Stumpdab514f2009-03-04 03:23:46 +0000439llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
440 uint64_t &offset = BlockDecls[E->getDecl()];
441
442 const llvm::Type *Ty;
443 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
444
Mike Stumpdab514f2009-03-04 03:23:46 +0000445 // See if we have already allocated an offset for this variable.
446 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000447 // Don't run the expensive check, unless we have to.
448 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
449 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000450 // if not, allocate one now.
451 offset = getBlockOffset(E);
452 }
453
454 llvm::Value *BlockLiteral = LoadBlockStruct();
455 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
456 llvm::ConstantInt::get(llvm::Type::Int64Ty,
457 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000458 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000459 if (E->isByRef()) {
460 bool needsCopyDispose = BlockRequiresCopying(E->getType());
461 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
462 const llvm::Type *PtrStructTy
463 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000464 // The block literal will need a copy/destroy helper.
465 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000466 Ty = PtrStructTy;
467 Ty = llvm::PointerType::get(Ty, 0);
468 V = Builder.CreateBitCast(V, Ty);
469 V = Builder.CreateLoad(V, false);
470 V = Builder.CreateStructGEP(V, 1, "forwarding");
471 V = Builder.CreateLoad(V, false);
472 V = Builder.CreateBitCast(V, PtrStructTy);
473 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
474 } else {
475 Ty = llvm::PointerType::get(Ty, 0);
476 V = Builder.CreateBitCast(V, Ty);
477 }
478 return V;
479}
480
Mike Stump6cc88f72009-03-20 21:53:12 +0000481void CodeGenFunction::BlockForwardSelf() {
482 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
483 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
484 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
485 if (DMEntry)
486 return;
487 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
488 BlockDeclRefExpr *BDRE = new (getContext())
489 BlockDeclRefExpr(SelfDecl,
490 SelfDecl->getType(), SourceLocation(), false);
491 DMEntry = GetAddrOfBlockDecl(BDRE);
492}
493
Mike Stump67a64482009-02-14 22:16:35 +0000494llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000495BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000496 // Generate the block descriptor.
497 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000498 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
499 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000500
Anders Carlssond5cab542009-02-12 17:55:02 +0000501 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000502
Anders Carlssond5cab542009-02-12 17:55:02 +0000503 // Reserved
504 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000505
Anders Carlssond5cab542009-02-12 17:55:02 +0000506 // Block literal size. For global blocks we just use the size of the generic
507 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000508 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000509 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Anders Carlssond5cab542009-02-12 17:55:02 +0000510 DescriptorFields[1] = llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000511
512 llvm::Constant *DescriptorStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000513 llvm::ConstantStruct::get(&DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000514
Anders Carlssond5cab542009-02-12 17:55:02 +0000515 llvm::GlobalVariable *Descriptor =
516 new llvm::GlobalVariable(DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000517 llvm::GlobalVariable::InternalLinkage,
518 DescriptorStruct, "__block_descriptor_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000519 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000520
Anders Carlssond5cab542009-02-12 17:55:02 +0000521 // Generate the constants for the block literal.
522 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000523
Mike Stump67a64482009-02-14 22:16:35 +0000524 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000525 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000526 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000527 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000528 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000529 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000530 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000531 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000532 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000533 subBlockDeclRefDecls,
534 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000535 assert(subBlockSize == BlockLiteralSize
536 && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000537
Anders Carlssond5cab542009-02-12 17:55:02 +0000538 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000539 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000540
Anders Carlssond5cab542009-02-12 17:55:02 +0000541 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000542 LiteralFields[1] =
Anders Carlsson8045ee02009-03-01 21:09:29 +0000543 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000544
Anders Carlssond5cab542009-02-12 17:55:02 +0000545 // Reserved
Mike Stump7cbb3602009-02-13 16:01:35 +0000546 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000547
Anders Carlssond5cab542009-02-12 17:55:02 +0000548 // Function
549 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000550
Anders Carlssond5cab542009-02-12 17:55:02 +0000551 // Descriptor
552 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000553
554 llvm::Constant *BlockLiteralStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000555 llvm::ConstantStruct::get(&LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000556
557 llvm::GlobalVariable *BlockLiteral =
Anders Carlssond5cab542009-02-12 17:55:02 +0000558 new llvm::GlobalVariable(BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000559 llvm::GlobalVariable::InternalLinkage,
560 BlockLiteralStruct, "__block_literal_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000561 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000562
Anders Carlssond5cab542009-02-12 17:55:02 +0000563 return BlockLiteral;
564}
565
Mike Stump4e7a1f72009-02-21 20:00:35 +0000566llvm::Value *CodeGenFunction::LoadBlockStruct() {
567 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
568}
569
Mike Stump00470a12009-03-05 08:32:30 +0000570llvm::Function *
571CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
572 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000573 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000574 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000575 uint64_t &Size,
576 uint64_t &Align,
577 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
578 bool &subBlockHasCopyDispose) {
Devang Patel963dfbd2009-04-15 21:51:44 +0000579
580 // Check if we should generate debug info for this block.
581 if (CGM.getDebugInfo())
582 DebugInfo = CGM.getDebugInfo();
583
Mike Stump7f28a9c2009-03-13 23:34:28 +0000584 // Arrange for local static and local extern declarations to appear
585 // to be local to this function as well, as they are directly referenced
586 // in a block.
587 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
588 i != ldm.end();
589 ++i) {
590 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
591
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000592 if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage())
Mike Stump7f28a9c2009-03-13 23:34:28 +0000593 LocalDeclMap[VD] = i->second;
594 }
595
Eli Friedman48f91222009-03-28 03:24:54 +0000596 // FIXME: We need to rearrange the code for copy/dispose so we have this
597 // sooner, so we can calculate offsets correctly.
598 if (!BlockHasCopyDispose)
599 BlockOffset = CGM.getTargetData()
600 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
601 else
602 BlockOffset = CGM.getTargetData()
603 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
604 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
605
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000606 const FunctionType *BlockFunctionType = BExpr->getFunctionType();
607 QualType ResultType;
608 bool IsVariadic;
Fariborz Jahanianda0895d2009-04-11 18:54:57 +0000609 if (const FunctionProtoType *FTy =
610 dyn_cast<FunctionProtoType>(BlockFunctionType)) {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000611 ResultType = FTy->getResultType();
612 IsVariadic = FTy->isVariadic();
613 }
614 else {
615 // K&R style block.
616 ResultType = BlockFunctionType->getResultType();
617 IsVariadic = false;
618 }
Mike Stumpa5448542009-02-13 15:32:32 +0000619
Anders Carlssond5cab542009-02-12 17:55:02 +0000620 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000621
Chris Lattner161d36d2009-02-28 19:01:03 +0000622 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000623
624 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000625 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000626 ImplicitParamDecl::Create(getContext(), 0,
627 SourceLocation(), 0,
628 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000629
Anders Carlssond5cab542009-02-12 17:55:02 +0000630 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000631 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000632
Steve Naroffe78b8092009-03-13 16:56:44 +0000633 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000634 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000635 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000636
637 const CGFunctionInfo &FI =
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000638 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlssond5cab542009-02-12 17:55:02 +0000639
Mike Stump67a64482009-02-14 22:16:35 +0000640 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000641 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000642 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic);
Mike Stumpa5448542009-02-13 15:32:32 +0000643
644 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000645 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
646 Name,
647 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000648
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000649 CGM.SetInternalFunctionAttributes(BD, Fn, FI);
650
Chris Lattner4863db42009-04-23 07:18:56 +0000651 StartFunction(BD, ResultType, Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000652 BExpr->getBody()->getLocEnd());
Chris Lattner4863db42009-04-23 07:18:56 +0000653 CurFuncDecl = OuterFuncDecl;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000654 CurCodeDecl = BD;
Chris Lattner161d36d2009-02-28 19:01:03 +0000655 EmitStmt(BExpr->getBody());
656 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000657
Mike Stump8a2b4b12009-02-25 23:33:13 +0000658 // The runtime needs a minimum alignment of a void *.
659 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
660 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
661
Mike Stump4e7a1f72009-02-21 20:00:35 +0000662 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000663 Align = BlockAlign;
664 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000665 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000666 return Fn;
667}
Mike Stumpa99038c2009-02-28 09:07:16 +0000668
Mike Stump08920992009-03-07 02:35:30 +0000669uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000670 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
671
672 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
673 uint64_t Align = getContext().getDeclAlignInBytes(D);
674
675 if (BDRE->isByRef()) {
676 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
677 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
678 }
679
680 assert ((Align > 0) && "alignment must be 1 byte or more");
681
682 uint64_t OldOffset = BlockOffset;
683
684 // Ensure proper alignment, even if it means we have to have a gap
685 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
686 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000687
Mike Stumpa99038c2009-02-28 09:07:16 +0000688 uint64_t Pad = BlockOffset - OldOffset;
689 if (Pad) {
690 llvm::ArrayType::get(llvm::Type::Int8Ty, Pad);
691 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
692 llvm::APInt(32, Pad),
693 ArrayType::Normal, 0);
694 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
695 0, QualType(PadTy), VarDecl::None,
696 SourceLocation());
697 Expr *E;
698 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
699 SourceLocation(), false, false);
700 BlockDeclRefDecls.push_back(E);
701 }
702 BlockDeclRefDecls.push_back(BDRE);
703
704 BlockOffset += Size;
705 return BlockOffset-Size;
706}
Mike Stumpdab514f2009-03-04 03:23:46 +0000707
Mike Stump08920992009-03-07 02:35:30 +0000708llvm::Constant *BlockFunction::
709GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000710 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000711 QualType R = getContext().VoidTy;
712
713 FunctionArgList Args;
714 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000715 ImplicitParamDecl *Dst =
716 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
717 getContext().getPointerType(getContext().VoidTy));
718 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000719 ImplicitParamDecl *Src =
720 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
721 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000722 Args.push_back(std::make_pair(Src, Src->getType()));
723
724 const CGFunctionInfo &FI =
725 CGM.getTypes().getFunctionInfo(R, Args);
726
Mike Stump3899a7f2009-06-05 23:26:36 +0000727 // FIXME: We'd like to put these into a mergable by content, with
728 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000729 std::string Name = std::string("__copy_helper_block_");
730 CodeGenTypes &Types = CGM.getTypes();
731 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
732
733 llvm::Function *Fn =
734 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
735 Name,
736 &CGM.getModule());
737
738 IdentifierInfo *II
739 = &CGM.getContext().Idents.get("__copy_helper_block_");
740
741 FunctionDecl *FD = FunctionDecl::Create(getContext(),
742 getContext().getTranslationUnitDecl(),
743 SourceLocation(), II, R,
744 FunctionDecl::Static, false,
745 true);
746 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000747
748 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
749 llvm::Type *PtrPtrT;
Mike Stump08920992009-03-07 02:35:30 +0000750
Mike Stumpb7477cf2009-04-10 18:52:28 +0000751 if (NoteForHelperp) {
752 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump08920992009-03-07 02:35:30 +0000753
Mike Stumpb7477cf2009-04-10 18:52:28 +0000754 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
755 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
756 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump08920992009-03-07 02:35:30 +0000757
Mike Stumpb7477cf2009-04-10 18:52:28 +0000758 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000759 llvm::Type *PtrPtrT;
760 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
761 DstObj = Builder.CreateBitCast(DstObj, PtrPtrT);
762 DstObj = Builder.CreateLoad(DstObj);
Mike Stump08920992009-03-07 02:35:30 +0000763
Mike Stumpb7477cf2009-04-10 18:52:28 +0000764 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
765 int flag = NoteForHelper[i].flag;
766 int index = NoteForHelper[i].index;
Mike Stump08920992009-03-07 02:35:30 +0000767
Mike Stumpb7477cf2009-04-10 18:52:28 +0000768 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
769 || NoteForHelper[i].RequiresCopying) {
770 llvm::Value *Srcv = SrcObj;
771 Srcv = Builder.CreateStructGEP(Srcv, index);
772 Srcv = Builder.CreateBitCast(Srcv,
773 llvm::PointerType::get(PtrToInt8Ty, 0));
774 Srcv = Builder.CreateLoad(Srcv);
775
776 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
777 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
778
779 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
780 llvm::Value *F = getBlockObjectAssign();
781 Builder.CreateCall3(F, Dstv, Srcv, N);
782 }
Mike Stump08920992009-03-07 02:35:30 +0000783 }
784 }
785
Mike Stumpa4f668f2009-03-06 01:33:24 +0000786 CGF.FinishFunction();
787
788 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000789}
790
Mike Stumpcf62d392009-03-06 18:42:23 +0000791llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000792GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
793 const llvm::StructType* T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000794 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000795 QualType R = getContext().VoidTy;
796
797 FunctionArgList Args;
798 // FIXME: This leaks
799 ImplicitParamDecl *Src =
800 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
801 getContext().getPointerType(getContext().VoidTy));
802
803 Args.push_back(std::make_pair(Src, Src->getType()));
804
805 const CGFunctionInfo &FI =
806 CGM.getTypes().getFunctionInfo(R, Args);
807
Mike Stump3899a7f2009-06-05 23:26:36 +0000808 // FIXME: We'd like to put these into a mergable by content, with
809 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000810 std::string Name = std::string("__destroy_helper_block_");
811 CodeGenTypes &Types = CGM.getTypes();
812 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
813
814 llvm::Function *Fn =
815 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
816 Name,
817 &CGM.getModule());
818
819 IdentifierInfo *II
820 = &CGM.getContext().Idents.get("__destroy_helper_block_");
821
822 FunctionDecl *FD = FunctionDecl::Create(getContext(),
823 getContext().getTranslationUnitDecl(),
824 SourceLocation(), II, R,
825 FunctionDecl::Static, false,
826 true);
827 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000828
Mike Stumpb7477cf2009-04-10 18:52:28 +0000829 if (NoteForHelperp) {
830 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump1edf6b62009-03-07 02:53:18 +0000831
Mike Stumpb7477cf2009-04-10 18:52:28 +0000832 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
833 llvm::Type *PtrPtrT;
834 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
835 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
836 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump1edf6b62009-03-07 02:53:18 +0000837
Mike Stumpb7477cf2009-04-10 18:52:28 +0000838 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
839 int flag = NoteForHelper[i].flag;
840 int index = NoteForHelper[i].index;
Mike Stump1edf6b62009-03-07 02:53:18 +0000841
Mike Stumpb7477cf2009-04-10 18:52:28 +0000842 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
843 || NoteForHelper[i].RequiresCopying) {
844 llvm::Value *Srcv = SrcObj;
845 Srcv = Builder.CreateStructGEP(Srcv, index);
846 Srcv = Builder.CreateBitCast(Srcv,
847 llvm::PointerType::get(PtrToInt8Ty, 0));
848 Srcv = Builder.CreateLoad(Srcv);
849
850 BuildBlockRelease(Srcv, flag);
851 }
Mike Stump1edf6b62009-03-07 02:53:18 +0000852 }
853 }
854
Mike Stumpa4f668f2009-03-06 01:33:24 +0000855 CGF.FinishFunction();
856
857 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
858}
859
Mike Stump08920992009-03-07 02:35:30 +0000860llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000861 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump08920992009-03-07 02:35:30 +0000862 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
863 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000864}
865
Mike Stump08920992009-03-07 02:35:30 +0000866llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000867 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stump08920992009-03-07 02:35:30 +0000868 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000869 T, NoteForHelperp);
Mike Stumpdab514f2009-03-04 03:23:46 +0000870}
Mike Stump797b6322009-03-05 01:23:13 +0000871
Mike Stumpee094222009-03-06 06:12:24 +0000872llvm::Constant *BlockFunction::
873GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000874 QualType R = getContext().VoidTy;
875
876 FunctionArgList Args;
877 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000878 ImplicitParamDecl *Dst =
879 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
880 getContext().getPointerType(getContext().VoidTy));
881 Args.push_back(std::make_pair(Dst, Dst->getType()));
882
883 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000884 ImplicitParamDecl *Src =
885 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
886 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000887 Args.push_back(std::make_pair(Src, Src->getType()));
888
889 const CGFunctionInfo &FI =
890 CGM.getTypes().getFunctionInfo(R, Args);
891
892 std::string Name = std::string("__Block_byref_id_object_copy_");
893 CodeGenTypes &Types = CGM.getTypes();
894 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
895
Mike Stump3899a7f2009-06-05 23:26:36 +0000896 // FIXME: We'd like to put these into a mergable by content, with
897 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000898 llvm::Function *Fn =
899 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
900 Name,
901 &CGM.getModule());
902
903 IdentifierInfo *II
904 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
905
906 FunctionDecl *FD = FunctionDecl::Create(getContext(),
907 getContext().getTranslationUnitDecl(),
908 SourceLocation(), II, R,
909 FunctionDecl::Static, false,
910 true);
911 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +0000912
913 // dst->x
914 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000915 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
916 V = Builder.CreateLoad(V);
Mike Stumpee094222009-03-06 06:12:24 +0000917 V = Builder.CreateStructGEP(V, 6, "x");
918 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
919
920 // src->x
921 V = CGF.GetAddrOfLocalVar(Src);
922 V = Builder.CreateLoad(V);
923 V = Builder.CreateBitCast(V, T);
924 V = Builder.CreateStructGEP(V, 6, "x");
925 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
926 llvm::Value *SrcObj = Builder.CreateLoad(V);
927
928 flag |= BLOCK_BYREF_CALLER;
929
930 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
931 llvm::Value *F = getBlockObjectAssign();
932 Builder.CreateCall3(F, DstObj, SrcObj, N);
933
Mike Stump45031c02009-03-06 02:29:21 +0000934 CGF.FinishFunction();
935
936 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
937}
938
Mike Stump1851b682009-03-06 04:53:30 +0000939llvm::Constant *
940BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
941 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000942 QualType R = getContext().VoidTy;
943
944 FunctionArgList Args;
945 // FIXME: This leaks
946 ImplicitParamDecl *Src =
947 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
948 getContext().getPointerType(getContext().VoidTy));
949
950 Args.push_back(std::make_pair(Src, Src->getType()));
951
952 const CGFunctionInfo &FI =
953 CGM.getTypes().getFunctionInfo(R, Args);
954
955 std::string Name = std::string("__Block_byref_id_object_dispose_");
956 CodeGenTypes &Types = CGM.getTypes();
957 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
958
Mike Stump3899a7f2009-06-05 23:26:36 +0000959 // FIXME: We'd like to put these into a mergable by content, with
960 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000961 llvm::Function *Fn =
962 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
963 Name,
964 &CGM.getModule());
965
966 IdentifierInfo *II
967 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
968
969 FunctionDecl *FD = FunctionDecl::Create(getContext(),
970 getContext().getTranslationUnitDecl(),
971 SourceLocation(), II, R,
972 FunctionDecl::Static, false,
973 true);
974 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +0000975
976 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000977 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
978 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +0000979 V = Builder.CreateStructGEP(V, 6, "x");
Mike Stumpc2f4c342009-04-15 22:11:36 +0000980 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
981 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +0000982
Mike Stump1851b682009-03-06 04:53:30 +0000983 flag |= BLOCK_BYREF_CALLER;
984 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000985 CGF.FinishFunction();
986
987 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
988}
989
Mike Stumpee094222009-03-06 06:12:24 +0000990llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +0000991 int flag, unsigned Align) {
992 // All alignments below that of pointer alignment collpase down to just
993 // pointer alignment, as we always have at least that much alignment to begin
994 // with.
995 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
996 // As an optimization, we only generate a single function of each kind we
997 // might need. We need a different one for each alignment and for each
998 // setting of flags. We mix Align and flag to get the kind.
999 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1000 llvm::Constant *& Entry = CGM.AssignCache[kind];
1001 if (Entry)
1002 return Entry;
1003 return Entry=CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001004}
1005
Mike Stump1851b682009-03-06 04:53:30 +00001006llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001007 int flag,
1008 unsigned Align) {
1009 // All alignments below that of pointer alignment collpase down to just
1010 // pointer alignment, as we always have at least that much alignment to begin
1011 // with.
1012 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1013 // As an optimization, we only generate a single function of each kind we
1014 // might need. We need a different one for each alignment and for each
1015 // setting of flags. We mix Align and flag to get the kind.
1016 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1017 llvm::Constant *& Entry = CGM.DestroyCache[kind];
1018 if (Entry)
1019 return Entry;
1020 return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001021}
1022
Mike Stump797b6322009-03-05 01:23:13 +00001023llvm::Value *BlockFunction::getBlockObjectDispose() {
1024 if (CGM.BlockObjectDispose == 0) {
1025 const llvm::FunctionType *FTy;
1026 std::vector<const llvm::Type*> ArgTys;
1027 const llvm::Type *ResultType = llvm::Type::VoidTy;
1028 ArgTys.push_back(PtrToInt8Ty);
1029 ArgTys.push_back(llvm::Type::Int32Ty);
1030 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001031 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001032 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1033 }
1034 return CGM.BlockObjectDispose;
1035}
1036
Mike Stumpee094222009-03-06 06:12:24 +00001037llvm::Value *BlockFunction::getBlockObjectAssign() {
1038 if (CGM.BlockObjectAssign == 0) {
1039 const llvm::FunctionType *FTy;
1040 std::vector<const llvm::Type*> ArgTys;
1041 const llvm::Type *ResultType = llvm::Type::VoidTy;
1042 ArgTys.push_back(PtrToInt8Ty);
1043 ArgTys.push_back(PtrToInt8Ty);
1044 ArgTys.push_back(llvm::Type::Int32Ty);
1045 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
1046 CGM.BlockObjectAssign
1047 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1048 }
1049 return CGM.BlockObjectAssign;
1050}
1051
Mike Stump1851b682009-03-06 04:53:30 +00001052void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001053 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001054 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001055 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Mike Stump1851b682009-03-06 04:53:30 +00001056 N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stump797b6322009-03-05 01:23:13 +00001057 Builder.CreateCall2(F, V, N);
1058}
Mike Stump00470a12009-03-05 08:32:30 +00001059
1060ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001061
1062BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1063 CGBuilderTy &B)
1064 : CGM(cgm), CGF(cgf), Builder(B) {
1065 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1066
1067 BlockHasCopyDispose = false;
1068}