blob: a623cf18cf9b430de5a9af543f7f3f22441ae46d [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
20#include <algorithm>
21
22using namespace clang;
23using namespace CodeGen;
24
Mike Stump58919e12009-03-04 13:17:22 +000025// Temporary code to enable testing of __block variables
26// #include "clang/Frontend/CompileOptions.h"
27#include "llvm/Support/CommandLine.h"
Mike Stump58919e12009-03-04 13:17:22 +000028
Mike Stumpcf62d392009-03-06 18:42:23 +000029llvm::Constant *CodeGenFunction::
Mike Stumpa803b0e2009-03-25 17:58:24 +000030BuildDescriptorBlockDecl(bool BlockHasCopyDispose, uint64_t Size,
31 const llvm::StructType* Ty,
Mike Stump08920992009-03-07 02:35:30 +000032 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump56129b12009-02-13 16:55:51 +000033 const llvm::Type *UnsignedLongTy
34 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpe5fee252009-02-13 16:19:19 +000035 llvm::Constant *C;
36 std::vector<llvm::Constant*> Elts;
37
38 // reserved
Mike Stump56129b12009-02-13 16:55:51 +000039 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000040 Elts.push_back(C);
41
42 // Size
Mike Stumpd6840002009-02-21 20:07:44 +000043 // FIXME: What is the right way to say this doesn't fit? We should give
44 // a user diagnostic in that case. Better fix would be to change the
45 // API to size_t.
Mike Stump4e7a1f72009-02-21 20:00:35 +000046 C = llvm::ConstantInt::get(UnsignedLongTy, Size);
Mike Stumpe5fee252009-02-13 16:19:19 +000047 Elts.push_back(C);
48
49 if (BlockHasCopyDispose) {
50 // copy_func_helper_decl
Mike Stump08920992009-03-07 02:35:30 +000051 Elts.push_back(BuildCopyHelper(Ty, *NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000052
53 // destroy_func_decl
Mike Stump08920992009-03-07 02:35:30 +000054 Elts.push_back(BuildDestroyHelper(Ty, *NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000055 }
56
57 C = llvm::ConstantStruct::get(Elts);
58
Mike Stumpe5fee252009-02-13 16:19:19 +000059 C = new llvm::GlobalVariable(C->getType(), true,
60 llvm::GlobalValue::InternalLinkage,
Mike Stump7d6dc4f2009-02-13 20:17:16 +000061 C, "__block_descriptor_tmp", &CGM.getModule());
Mike Stumpe5fee252009-02-13 16:19:19 +000062 return C;
63}
64
Mike Stump2a998142009-03-04 18:17:45 +000065llvm::Constant *BlockModule::getNSConcreteGlobalBlock() {
Mike Stumpf99f1d02009-02-13 17:23:42 +000066 if (NSConcreteGlobalBlock)
67 return NSConcreteGlobalBlock;
68
Mike Stumpf7448952009-02-13 19:38:12 +000069 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stump58a85142009-03-04 22:48:06 +000070 // same thing as CreateRuntimeFunction if there's already a variable with the
71 // same name.
Mike Stumpf99f1d02009-02-13 17:23:42 +000072 NSConcreteGlobalBlock
Mike Stump00470a12009-03-05 08:32:30 +000073 = new llvm::GlobalVariable(PtrToInt8Ty, false,
Mike Stumpf99f1d02009-02-13 17:23:42 +000074 llvm::GlobalValue::ExternalLinkage,
75 0, "_NSConcreteGlobalBlock",
76 &getModule());
77
78 return NSConcreteGlobalBlock;
79}
80
Mike Stump2a998142009-03-04 18:17:45 +000081llvm::Constant *BlockModule::getNSConcreteStackBlock() {
Mike Stump59c5b112009-02-13 19:29:27 +000082 if (NSConcreteStackBlock)
83 return NSConcreteStackBlock;
84
Mike Stumpf7448952009-02-13 19:38:12 +000085 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stump58a85142009-03-04 22:48:06 +000086 // same thing as CreateRuntimeFunction if there's already a variable with the
87 // same name.
Mike Stump59c5b112009-02-13 19:29:27 +000088 NSConcreteStackBlock
Mike Stump00470a12009-03-05 08:32:30 +000089 = new llvm::GlobalVariable(PtrToInt8Ty, false,
Mike Stump59c5b112009-02-13 19:29:27 +000090 llvm::GlobalValue::ExternalLinkage,
91 0, "_NSConcreteStackBlock",
92 &getModule());
93
94 return NSConcreteStackBlock;
95}
96
Mike Stump00470a12009-03-05 08:32:30 +000097static void CollectBlockDeclRefInfo(const Stmt *S,
Anders Carlsson4de9fce2009-03-01 01:09:12 +000098 CodeGenFunction::BlockInfo &Info) {
99 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
100 I != E; ++I)
Daniel Dunbar82573ee2009-03-02 07:00:57 +0000101 if (*I)
102 CollectBlockDeclRefInfo(*I, Info);
Mike Stump00470a12009-03-05 08:32:30 +0000103
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000104 if (const BlockDeclRefExpr *DE = dyn_cast<BlockDeclRefExpr>(S)) {
105 // FIXME: Handle enums.
106 if (isa<FunctionDecl>(DE->getDecl()))
107 return;
Mike Stump00470a12009-03-05 08:32:30 +0000108
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000109 if (DE->isByRef())
110 Info.ByRefDeclRefs.push_back(DE);
111 else
112 Info.ByCopyDeclRefs.push_back(DE);
113 }
114}
115
Mike Stump58a85142009-03-04 22:48:06 +0000116/// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be
117/// declared as a global variable instead of on the stack.
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000118static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info)
119{
120 return Info.ByRefDeclRefs.empty() && Info.ByCopyDeclRefs.empty();
121}
122
Mike Stump58a85142009-03-04 22:48:06 +0000123// FIXME: Push most into CGM, passing down a few bits, like current function
124// name.
Mike Stump8a2b4b12009-02-25 23:33:13 +0000125llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000126
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000127 std::string Name = CurFn->getName();
128 CodeGenFunction::BlockInfo Info(0, Name.c_str());
129 CollectBlockDeclRefInfo(BE->getBody(), Info);
130
131 // Check if the block can be global.
Mike Stump58a85142009-03-04 22:48:06 +0000132 // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like
133 // to just have one code path. We should move this function into CGM and pass
134 // CGF, then we can just check to see if CGF is 0.
Mike Stumpdab514f2009-03-04 03:23:46 +0000135 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000136 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump00470a12009-03-05 08:32:30 +0000137
138 std::vector<llvm::Constant*> Elts(5);
Mike Stumpe5fee252009-02-13 16:19:19 +0000139 llvm::Constant *C;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000140 llvm::Value *V;
Mike Stumpe5fee252009-02-13 16:19:19 +0000141
Mike Stumpe5fee252009-02-13 16:19:19 +0000142 {
143 // C = BuildBlockStructInitlist();
144 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
145
Mike Stump00470a12009-03-05 08:32:30 +0000146 // We run this first so that we set BlockHasCopyDispose from the entire
147 // block literal.
148 // __invoke
149 uint64_t subBlockSize, subBlockAlign;
150 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Mike Stumpa803b0e2009-03-25 17:58:24 +0000151 bool subBlockHasCopyDispose = false;
Mike Stump00470a12009-03-05 08:32:30 +0000152 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000153 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000154 subBlockSize,
Mike Stump00470a12009-03-05 08:32:30 +0000155 subBlockAlign,
156 subBlockDeclRefDecls,
Mike Stumpa803b0e2009-03-25 17:58:24 +0000157 subBlockHasCopyDispose);
158 BlockHasCopyDispose |= subBlockHasCopyDispose;
Mike Stump00470a12009-03-05 08:32:30 +0000159 Elts[3] = Fn;
160
Mike Stumpa803b0e2009-03-25 17:58:24 +0000161 if (subBlockHasCopyDispose)
Mike Stumpe5fee252009-02-13 16:19:19 +0000162 flags |= BLOCK_HAS_COPY_DISPOSE;
163
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000164 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000165 C = CGM.getNSConcreteStackBlock();
Mike Stumpe5fee252009-02-13 16:19:19 +0000166 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump00470a12009-03-05 08:32:30 +0000167 Elts[0] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000168
169 // __flags
170 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
171 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
172 C = llvm::ConstantInt::get(IntTy, flags);
Mike Stump00470a12009-03-05 08:32:30 +0000173 Elts[1] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000174
175 // __reserved
176 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump00470a12009-03-05 08:32:30 +0000177 Elts[2] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000178
Mike Stump8a2b4b12009-02-25 23:33:13 +0000179 if (subBlockDeclRefDecls.size() == 0) {
Mike Stumpcf62d392009-03-06 18:42:23 +0000180 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000181 assert(subBlockHasCopyDispose == false);
182 Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize, 0, 0);
Mike Stumpcf62d392009-03-06 18:42:23 +0000183
Mike Stump5570cfe2009-03-01 20:07:53 +0000184 // Optimize to being a global block.
185 Elts[0] = CGM.getNSConcreteGlobalBlock();
186 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
187
Mike Stump8a2b4b12009-02-25 23:33:13 +0000188 C = llvm::ConstantStruct::get(Elts);
189
190 char Name[32];
191 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
192 C = new llvm::GlobalVariable(C->getType(), true,
193 llvm::GlobalValue::InternalLinkage,
194 C, Name, &CGM.getModule());
195 QualType BPT = BE->getType();
196 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
197 return C;
198 }
Mike Stump00470a12009-03-05 08:32:30 +0000199
Mike Stump8a2b4b12009-02-25 23:33:13 +0000200 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
Mike Stump08920992009-03-07 02:35:30 +0000201 for (int i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000202 Types[i] = Elts[i]->getType();
Mike Stump08920992009-03-07 02:35:30 +0000203 Types[4] = PtrToInt8Ty;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000204
Mike Stumpa99038c2009-02-28 09:07:16 +0000205 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) {
206 const Expr *E = subBlockDeclRefDecls[i];
207 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
208 QualType Ty = E->getType();
Mike Stumpdab514f2009-03-04 03:23:46 +0000209 if (BDRE && BDRE->isByRef()) {
210 uint64_t Align = getContext().getDeclAlignInBytes(BDRE->getDecl());
211 Types[i+5] = llvm::PointerType::get(BuildByRefType(Ty, Align), 0);
212 } else
213 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000214 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000215
Mike Stump08920992009-03-07 02:35:30 +0000216 llvm::StructType *Ty = llvm::StructType::get(Types, true);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000217
218 llvm::AllocaInst *A = CreateTempAlloca(Ty);
219 A->setAlignment(subBlockAlign);
220 V = A;
221
Mike Stump08920992009-03-07 02:35:30 +0000222 std::vector<HelperInfo> NoteForHelper(subBlockDeclRefDecls.size());
223 int helpersize = 0;
224
225 for (unsigned i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000226 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump00470a12009-03-05 08:32:30 +0000227
Mike Stump8a2b4b12009-02-25 23:33:13 +0000228 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
229 {
Mike Stumpa99038c2009-02-28 09:07:16 +0000230 // FIXME: Push const down.
231 Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]);
232 DeclRefExpr *DR;
233 ValueDecl *VD;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000234
Mike Stumpa99038c2009-02-28 09:07:16 +0000235 DR = dyn_cast<DeclRefExpr>(E);
236 // Skip padding.
237 if (DR) continue;
238
239 BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
240 VD = BDRE->getDecl();
241
Mike Stumpdab514f2009-03-04 03:23:46 +0000242 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stump08920992009-03-07 02:35:30 +0000243 NoteForHelper[helpersize].index = i+5;
244 NoteForHelper[helpersize].RequiresCopying = BlockRequiresCopying(VD->getType());
245 NoteForHelper[helpersize].flag
246 = VD->getType()->isBlockPointerType() ? BLOCK_FIELD_IS_BLOCK : BLOCK_FIELD_IS_OBJECT;
247
Mike Stumpa99038c2009-02-28 09:07:16 +0000248 if (LocalDeclMap[VD]) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000249 if (BDRE->isByRef()) {
Mike Stump08920992009-03-07 02:35:30 +0000250 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
Mike Stumpf4bc3122009-03-07 06:04:31 +0000251 // FIXME: Someone double check this.
252 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000253 const llvm::Type *Ty = Types[i+5];
254 llvm::Value *Loc = LocalDeclMap[VD];
255 Loc = Builder.CreateStructGEP(Loc, 1, "forwarding");
256 Loc = Builder.CreateLoad(Loc, false);
257 Loc = Builder.CreateBitCast(Loc, Ty);
258 Builder.CreateStore(Loc, Addr);
Mike Stump08920992009-03-07 02:35:30 +0000259 ++helpersize;
Mike Stumpdab514f2009-03-04 03:23:46 +0000260 continue;
261 } else
262 E = new (getContext()) DeclRefExpr (cast<NamedDecl>(VD),
263 VD->getType(), SourceLocation(),
264 false, false);
Mike Stumpa99038c2009-02-28 09:07:16 +0000265 }
Mike Stumpdab514f2009-03-04 03:23:46 +0000266 if (BDRE->isByRef()) {
Mike Stumpa8b60c92009-03-21 21:00:35 +0000267 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
268 // FIXME: Someone double check this.
269 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpa99038c2009-02-28 09:07:16 +0000270 E = new (getContext())
271 UnaryOperator(E, UnaryOperator::AddrOf,
272 getContext().getPointerType(E->getType()),
273 SourceLocation());
Mike Stumpdab514f2009-03-04 03:23:46 +0000274 }
Mike Stump08920992009-03-07 02:35:30 +0000275 ++helpersize;
Mike Stumpa99038c2009-02-28 09:07:16 +0000276
Mike Stumpa99038c2009-02-28 09:07:16 +0000277 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000278 if (r.isScalar()) {
279 llvm::Value *Loc = r.getScalarVal();
280 const llvm::Type *Ty = Types[i+5];
281 if (BDRE->isByRef()) {
Mike Stump58a85142009-03-04 22:48:06 +0000282 // E is now the address of the value field, instead, we want the
283 // address of the actual ByRef struct. We optimize this slightly
284 // compared to gcc by not grabbing the forwarding slot as this must
285 // be done during Block_copy for us, and we can postpone the work
286 // until then.
287 uint64_t offset = BlockDecls[BDRE->getDecl()];
Mike Stump00470a12009-03-05 08:32:30 +0000288
Mike Stump58a85142009-03-04 22:48:06 +0000289 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump00470a12009-03-05 08:32:30 +0000290
Mike Stump58a85142009-03-04 22:48:06 +0000291 Loc = Builder.CreateGEP(BlockLiteral,
292 llvm::ConstantInt::get(llvm::Type::Int64Ty,
293 offset),
294 "block.literal");
295 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000296 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stump58a85142009-03-04 22:48:06 +0000297 Loc = Builder.CreateLoad(Loc, false);
298 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000299 }
300 Builder.CreateStore(Loc, Addr);
301 } else if (r.isComplex())
Mike Stump8a2b4b12009-02-25 23:33:13 +0000302 // FIXME: implement
303 ErrorUnsupported(BE, "complex in block literal");
304 else if (r.isAggregate())
305 ; // Already created into the destination
306 else
307 assert (0 && "bad block variable");
308 // FIXME: Ensure that the offset created by the backend for
309 // the struct matches the previously computed offset in BlockDecls.
310 }
Mike Stump08920992009-03-07 02:35:30 +0000311 NoteForHelper.resize(helpersize);
Mike Stumpcf62d392009-03-06 18:42:23 +0000312
313 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000314 llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose,
315 subBlockSize, Ty,
Mike Stump08920992009-03-07 02:35:30 +0000316 &NoteForHelper);
317 Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty);
318 Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp"));
Mike Stumpe5fee252009-02-13 16:19:19 +0000319 }
Mike Stump00470a12009-03-05 08:32:30 +0000320
Mike Stumpbd65cac2009-02-19 01:01:04 +0000321 QualType BPT = BE->getType();
Mike Stump8a2b4b12009-02-25 23:33:13 +0000322 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpe5fee252009-02-13 16:19:19 +0000323}
324
325
Mike Stump2a998142009-03-04 18:17:45 +0000326const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000327 if (BlockDescriptorType)
328 return BlockDescriptorType;
329
Mike Stumpa5448542009-02-13 15:32:32 +0000330 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000331 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000332
Mike Stumpab695142009-02-13 15:16:56 +0000333 // struct __block_descriptor {
334 // unsigned long reserved;
335 // unsigned long block_size;
336 // };
Mike Stumpa5448542009-02-13 15:32:32 +0000337 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy,
338 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000339 NULL);
340
341 getModule().addTypeName("struct.__block_descriptor",
342 BlockDescriptorType);
343
344 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000345}
346
Mike Stump2a998142009-03-04 18:17:45 +0000347const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000348 if (GenericBlockLiteralType)
349 return GenericBlockLiteralType;
350
Mike Stumpa5448542009-02-13 15:32:32 +0000351 const llvm::Type *BlockDescPtrTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000352 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000353
Mike Stump7cbb3602009-02-13 16:01:35 +0000354 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
355 getTypes().ConvertType(getContext().IntTy));
356
Mike Stump9b8a7972009-02-13 15:25:34 +0000357 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000358 // void *__isa;
359 // int __flags;
360 // int __reserved;
361 // void (*__invoke)(void *);
362 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000363 // };
Mike Stump797b6322009-03-05 01:23:13 +0000364 GenericBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000365 IntTy,
366 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000367 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000368 BlockDescPtrTy,
369 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000370
Mike Stump9b8a7972009-02-13 15:25:34 +0000371 getModule().addTypeName("struct.__block_literal_generic",
372 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000373
Mike Stump9b8a7972009-02-13 15:25:34 +0000374 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000375}
376
Mike Stump2a998142009-03-04 18:17:45 +0000377const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000378 if (GenericExtendedBlockLiteralType)
379 return GenericExtendedBlockLiteralType;
380
Mike Stumpbd65cac2009-02-19 01:01:04 +0000381 const llvm::Type *BlockDescPtrTy =
382 llvm::PointerType::getUnqual(getBlockDescriptorType());
383
384 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
385 getTypes().ConvertType(getContext().IntTy));
386
387 // struct __block_literal_generic {
388 // void *__isa;
389 // int __flags;
390 // int __reserved;
391 // void (*__invoke)(void *);
392 // struct __block_descriptor *__descriptor;
393 // void *__copy_func_helper_decl;
394 // void *__destroy_func_decl;
395 // };
Mike Stump797b6322009-03-05 01:23:13 +0000396 GenericExtendedBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000397 IntTy,
398 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000399 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000400 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000401 PtrToInt8Ty,
402 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000403 NULL);
404
405 getModule().addTypeName("struct.__block_literal_extended_generic",
406 GenericExtendedBlockLiteralType);
407
408 return GenericExtendedBlockLiteralType;
409}
410
Anders Carlssond5cab542009-02-12 17:55:02 +0000411RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000412 const BlockPointerType *BPT =
Anders Carlssonacfde802009-02-12 00:39:25 +0000413 E->getCallee()->getType()->getAsBlockPointerType();
Mike Stumpa5448542009-02-13 15:32:32 +0000414
Anders Carlssonacfde802009-02-12 00:39:25 +0000415 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
416
417 // Get a pointer to the generic block literal.
418 const llvm::Type *BlockLiteralTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000419 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000420
421 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000422 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000423 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
424
425 // Get the function pointer from the literal.
426 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000427
Mike Stumpa5448542009-02-13 15:32:32 +0000428 BlockLiteral =
429 Builder.CreateBitCast(BlockLiteral,
Anders Carlssonacfde802009-02-12 00:39:25 +0000430 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
431 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000432
Anders Carlssonacfde802009-02-12 00:39:25 +0000433 // Add the block literal.
434 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
435 CallArgList Args;
436 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000437
Anders Carlsson782f3972009-04-08 23:13:16 +0000438 QualType FnType = BPT->getPointeeType();
439
Anders Carlssonacfde802009-02-12 00:39:25 +0000440 // And the rest of the arguments.
Anders Carlsson782f3972009-04-08 23:13:16 +0000441 EmitCallArgs(Args, FnType->getAsFunctionProtoType(),
442 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000443
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000444 // Load the function.
445 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
446
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000447 QualType ResultType = FnType->getAsFunctionType()->getResultType();
448
449 const CGFunctionInfo &FnInfo =
450 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000451
452 // Cast the function pointer to the right type.
453 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000454 CGM.getTypes().GetFunctionType(FnInfo, false);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000455
456 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
457 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
458
Anders Carlssonacfde802009-02-12 00:39:25 +0000459 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000460 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000461}
Anders Carlssond5cab542009-02-12 17:55:02 +0000462
Mike Stumpdab514f2009-03-04 03:23:46 +0000463llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
464 uint64_t &offset = BlockDecls[E->getDecl()];
465
466 const llvm::Type *Ty;
467 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
468
Mike Stumpdab514f2009-03-04 03:23:46 +0000469 // See if we have already allocated an offset for this variable.
470 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000471 // Don't run the expensive check, unless we have to.
472 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
473 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000474 // if not, allocate one now.
475 offset = getBlockOffset(E);
476 }
477
478 llvm::Value *BlockLiteral = LoadBlockStruct();
479 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
480 llvm::ConstantInt::get(llvm::Type::Int64Ty,
481 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000482 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000483 if (E->isByRef()) {
484 bool needsCopyDispose = BlockRequiresCopying(E->getType());
485 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
486 const llvm::Type *PtrStructTy
487 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000488 // The block literal will need a copy/destroy helper.
489 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000490 Ty = PtrStructTy;
491 Ty = llvm::PointerType::get(Ty, 0);
492 V = Builder.CreateBitCast(V, Ty);
493 V = Builder.CreateLoad(V, false);
494 V = Builder.CreateStructGEP(V, 1, "forwarding");
495 V = Builder.CreateLoad(V, false);
496 V = Builder.CreateBitCast(V, PtrStructTy);
497 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
498 } else {
499 Ty = llvm::PointerType::get(Ty, 0);
500 V = Builder.CreateBitCast(V, Ty);
501 }
502 return V;
503}
504
Mike Stump6cc88f72009-03-20 21:53:12 +0000505void CodeGenFunction::BlockForwardSelf() {
506 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
507 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
508 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
509 if (DMEntry)
510 return;
511 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
512 BlockDeclRefExpr *BDRE = new (getContext())
513 BlockDeclRefExpr(SelfDecl,
514 SelfDecl->getType(), SourceLocation(), false);
515 DMEntry = GetAddrOfBlockDecl(BDRE);
516}
517
Mike Stump67a64482009-02-14 22:16:35 +0000518llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000519BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000520 // Generate the block descriptor.
521 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000522 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
523 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000524
Anders Carlssond5cab542009-02-12 17:55:02 +0000525 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000526
Anders Carlssond5cab542009-02-12 17:55:02 +0000527 // Reserved
528 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000529
Anders Carlssond5cab542009-02-12 17:55:02 +0000530 // Block literal size. For global blocks we just use the size of the generic
531 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000532 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000533 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Anders Carlssond5cab542009-02-12 17:55:02 +0000534 DescriptorFields[1] = llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000535
536 llvm::Constant *DescriptorStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000537 llvm::ConstantStruct::get(&DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000538
Anders Carlssond5cab542009-02-12 17:55:02 +0000539 llvm::GlobalVariable *Descriptor =
540 new llvm::GlobalVariable(DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000541 llvm::GlobalVariable::InternalLinkage,
542 DescriptorStruct, "__block_descriptor_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000543 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000544
Anders Carlssond5cab542009-02-12 17:55:02 +0000545 // Generate the constants for the block literal.
546 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000547
Mike Stump67a64482009-02-14 22:16:35 +0000548 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000549 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000550 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000551 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000552 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000553 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000554 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000555 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000556 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000557 subBlockDeclRefDecls,
558 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000559 assert(subBlockSize == BlockLiteralSize
560 && "no imports allowed for global block");
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000561 assert(!subBlockHasCopyDispose && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000562
Anders Carlssond5cab542009-02-12 17:55:02 +0000563 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000564 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000565
Anders Carlssond5cab542009-02-12 17:55:02 +0000566 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000567 LiteralFields[1] =
Anders Carlsson8045ee02009-03-01 21:09:29 +0000568 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000569
Anders Carlssond5cab542009-02-12 17:55:02 +0000570 // Reserved
Mike Stump7cbb3602009-02-13 16:01:35 +0000571 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000572
Anders Carlssond5cab542009-02-12 17:55:02 +0000573 // Function
574 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000575
Anders Carlssond5cab542009-02-12 17:55:02 +0000576 // Descriptor
577 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000578
579 llvm::Constant *BlockLiteralStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000580 llvm::ConstantStruct::get(&LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000581
582 llvm::GlobalVariable *BlockLiteral =
Anders Carlssond5cab542009-02-12 17:55:02 +0000583 new llvm::GlobalVariable(BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000584 llvm::GlobalVariable::InternalLinkage,
585 BlockLiteralStruct, "__block_literal_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000586 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000587
Anders Carlssond5cab542009-02-12 17:55:02 +0000588 return BlockLiteral;
589}
590
Mike Stump4e7a1f72009-02-21 20:00:35 +0000591llvm::Value *CodeGenFunction::LoadBlockStruct() {
592 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
593}
594
Mike Stump00470a12009-03-05 08:32:30 +0000595llvm::Function *
596CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
597 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000598 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000599 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000600 uint64_t &Size,
601 uint64_t &Align,
602 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
603 bool &subBlockHasCopyDispose) {
Mike Stump7f28a9c2009-03-13 23:34:28 +0000604 // Arrange for local static and local extern declarations to appear
605 // to be local to this function as well, as they are directly referenced
606 // in a block.
607 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
608 i != ldm.end();
609 ++i) {
610 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
611
612 if (VD->getStorageClass() == VarDecl::Static
613 || VD->getStorageClass() == VarDecl::Extern)
614 LocalDeclMap[VD] = i->second;
615 }
616
Eli Friedman48f91222009-03-28 03:24:54 +0000617 // FIXME: We need to rearrange the code for copy/dispose so we have this
618 // sooner, so we can calculate offsets correctly.
619 if (!BlockHasCopyDispose)
620 BlockOffset = CGM.getTargetData()
621 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
622 else
623 BlockOffset = CGM.getTargetData()
624 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
625 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
626
Douglas Gregor72564e72009-02-26 23:50:07 +0000627 const FunctionProtoType *FTy =
Chris Lattner161d36d2009-02-28 19:01:03 +0000628 cast<FunctionProtoType>(BExpr->getFunctionType());
Mike Stumpa5448542009-02-13 15:32:32 +0000629
Anders Carlssond5cab542009-02-12 17:55:02 +0000630 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000631
Chris Lattner161d36d2009-02-28 19:01:03 +0000632 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000633
634 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000635 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000636 ImplicitParamDecl::Create(getContext(), 0,
637 SourceLocation(), 0,
638 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000639
Anders Carlssond5cab542009-02-12 17:55:02 +0000640 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000641 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000642
Steve Naroffe78b8092009-03-13 16:56:44 +0000643 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000644 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000645 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000646
647 const CGFunctionInfo &FI =
Anders Carlssond5cab542009-02-12 17:55:02 +0000648 CGM.getTypes().getFunctionInfo(FTy->getResultType(), Args);
649
Mike Stump67a64482009-02-14 22:16:35 +0000650 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000651 CodeGenTypes &Types = CGM.getTypes();
652 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, FTy->isVariadic());
Mike Stumpa5448542009-02-13 15:32:32 +0000653
654 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000655 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
656 Name,
657 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000658
659 StartFunction(BD, FTy->getResultType(), Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000660 BExpr->getBody()->getLocEnd());
Mike Stump6cc88f72009-03-20 21:53:12 +0000661 CurFuncDecl = OuterFuncDecl;
Chris Lattner161d36d2009-02-28 19:01:03 +0000662 EmitStmt(BExpr->getBody());
663 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000664
Mike Stump8a2b4b12009-02-25 23:33:13 +0000665 // The runtime needs a minimum alignment of a void *.
666 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
667 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
668
Mike Stump4e7a1f72009-02-21 20:00:35 +0000669 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000670 Align = BlockAlign;
671 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000672 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000673 return Fn;
674}
Mike Stumpa99038c2009-02-28 09:07:16 +0000675
Mike Stump08920992009-03-07 02:35:30 +0000676uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000677 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
678
679 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
680 uint64_t Align = getContext().getDeclAlignInBytes(D);
681
682 if (BDRE->isByRef()) {
683 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
684 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
685 }
686
687 assert ((Align > 0) && "alignment must be 1 byte or more");
688
689 uint64_t OldOffset = BlockOffset;
690
691 // Ensure proper alignment, even if it means we have to have a gap
692 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
693 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000694
Mike Stumpa99038c2009-02-28 09:07:16 +0000695 uint64_t Pad = BlockOffset - OldOffset;
696 if (Pad) {
697 llvm::ArrayType::get(llvm::Type::Int8Ty, Pad);
698 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
699 llvm::APInt(32, Pad),
700 ArrayType::Normal, 0);
701 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
702 0, QualType(PadTy), VarDecl::None,
703 SourceLocation());
704 Expr *E;
705 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
706 SourceLocation(), false, false);
707 BlockDeclRefDecls.push_back(E);
708 }
709 BlockDeclRefDecls.push_back(BDRE);
710
711 BlockOffset += Size;
712 return BlockOffset-Size;
713}
Mike Stumpdab514f2009-03-04 03:23:46 +0000714
Mike Stump08920992009-03-07 02:35:30 +0000715llvm::Constant *BlockFunction::
716GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
717 std::vector<HelperInfo> &NoteForHelper) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000718 QualType R = getContext().VoidTy;
719
720 FunctionArgList Args;
721 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000722 ImplicitParamDecl *Dst =
723 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
724 getContext().getPointerType(getContext().VoidTy));
725 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000726 ImplicitParamDecl *Src =
727 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
728 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000729 Args.push_back(std::make_pair(Src, Src->getType()));
730
731 const CGFunctionInfo &FI =
732 CGM.getTypes().getFunctionInfo(R, Args);
733
734 std::string Name = std::string("__copy_helper_block_");
735 CodeGenTypes &Types = CGM.getTypes();
736 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
737
738 llvm::Function *Fn =
739 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
740 Name,
741 &CGM.getModule());
742
743 IdentifierInfo *II
744 = &CGM.getContext().Idents.get("__copy_helper_block_");
745
746 FunctionDecl *FD = FunctionDecl::Create(getContext(),
747 getContext().getTranslationUnitDecl(),
748 SourceLocation(), II, R,
749 FunctionDecl::Static, false,
750 true);
751 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000752
753 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
754 llvm::Type *PtrPtrT;
755 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
756 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
757 SrcObj = Builder.CreateLoad(SrcObj);
758
759 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
760 DstObj = Builder.CreateBitCast(DstObj, llvm::PointerType::get(T, 0));
761
762 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
763 int flag = NoteForHelper[i].flag;
764 int index = NoteForHelper[i].index;
765
766 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
767 || NoteForHelper[i].RequiresCopying) {
768 llvm::Value *Srcv = SrcObj;
769 Srcv = Builder.CreateStructGEP(Srcv, index);
770 Srcv = Builder.CreateBitCast(Srcv,
771 llvm::PointerType::get(PtrToInt8Ty, 0));
772 Srcv = Builder.CreateLoad(Srcv);
773
774 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
775 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
776
777 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
778 llvm::Value *F = getBlockObjectAssign();
779 Builder.CreateCall3(F, Dstv, Srcv, N);
780 }
781 }
782
Mike Stumpa4f668f2009-03-06 01:33:24 +0000783 CGF.FinishFunction();
784
785 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000786}
787
Mike Stumpcf62d392009-03-06 18:42:23 +0000788llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000789GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
790 const llvm::StructType* T,
791 std::vector<HelperInfo> &NoteForHelper) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000792 QualType R = getContext().VoidTy;
793
794 FunctionArgList Args;
795 // FIXME: This leaks
796 ImplicitParamDecl *Src =
797 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
798 getContext().getPointerType(getContext().VoidTy));
799
800 Args.push_back(std::make_pair(Src, Src->getType()));
801
802 const CGFunctionInfo &FI =
803 CGM.getTypes().getFunctionInfo(R, Args);
804
805 std::string Name = std::string("__destroy_helper_block_");
806 CodeGenTypes &Types = CGM.getTypes();
807 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
808
809 llvm::Function *Fn =
810 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
811 Name,
812 &CGM.getModule());
813
814 IdentifierInfo *II
815 = &CGM.getContext().Idents.get("__destroy_helper_block_");
816
817 FunctionDecl *FD = FunctionDecl::Create(getContext(),
818 getContext().getTranslationUnitDecl(),
819 SourceLocation(), II, R,
820 FunctionDecl::Static, false,
821 true);
822 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000823
824 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
825 llvm::Type *PtrPtrT;
826 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
827 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
828 SrcObj = Builder.CreateLoad(SrcObj);
829
830 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
831 int flag = NoteForHelper[i].flag;
832 int index = NoteForHelper[i].index;
833
834 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
835 || NoteForHelper[i].RequiresCopying) {
836 llvm::Value *Srcv = SrcObj;
837 Srcv = Builder.CreateStructGEP(Srcv, index);
838 Srcv = Builder.CreateBitCast(Srcv,
839 llvm::PointerType::get(PtrToInt8Ty, 0));
840 Srcv = Builder.CreateLoad(Srcv);
841
842 BuildBlockRelease(Srcv, flag);
843 }
844 }
845
Mike Stumpa4f668f2009-03-06 01:33:24 +0000846 CGF.FinishFunction();
847
848 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
849}
850
Mike Stump08920992009-03-07 02:35:30 +0000851llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
852 std::vector<HelperInfo> &NoteForHelper) {
853 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
854 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000855}
856
Mike Stump08920992009-03-07 02:35:30 +0000857llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
858 std::vector<HelperInfo> &NoteForHelper) {
859 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
860 T, NoteForHelper);
Mike Stumpdab514f2009-03-04 03:23:46 +0000861}
Mike Stump797b6322009-03-05 01:23:13 +0000862
Mike Stumpee094222009-03-06 06:12:24 +0000863llvm::Constant *BlockFunction::
864GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000865 QualType R = getContext().VoidTy;
866
867 FunctionArgList Args;
868 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000869 ImplicitParamDecl *Dst =
870 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
871 getContext().getPointerType(getContext().VoidTy));
872 Args.push_back(std::make_pair(Dst, Dst->getType()));
873
874 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000875 ImplicitParamDecl *Src =
876 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
877 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000878 Args.push_back(std::make_pair(Src, Src->getType()));
879
880 const CGFunctionInfo &FI =
881 CGM.getTypes().getFunctionInfo(R, Args);
882
883 std::string Name = std::string("__Block_byref_id_object_copy_");
884 CodeGenTypes &Types = CGM.getTypes();
885 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
886
887 llvm::Function *Fn =
888 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
889 Name,
890 &CGM.getModule());
891
892 IdentifierInfo *II
893 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
894
895 FunctionDecl *FD = FunctionDecl::Create(getContext(),
896 getContext().getTranslationUnitDecl(),
897 SourceLocation(), II, R,
898 FunctionDecl::Static, false,
899 true);
900 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +0000901
902 // dst->x
903 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
904 V = Builder.CreateBitCast(V, T);
905 V = Builder.CreateStructGEP(V, 6, "x");
906 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
907
908 // src->x
909 V = CGF.GetAddrOfLocalVar(Src);
910 V = Builder.CreateLoad(V);
911 V = Builder.CreateBitCast(V, T);
912 V = Builder.CreateStructGEP(V, 6, "x");
913 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
914 llvm::Value *SrcObj = Builder.CreateLoad(V);
915
916 flag |= BLOCK_BYREF_CALLER;
917
918 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
919 llvm::Value *F = getBlockObjectAssign();
920 Builder.CreateCall3(F, DstObj, SrcObj, N);
921
Mike Stump45031c02009-03-06 02:29:21 +0000922 CGF.FinishFunction();
923
924 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
925}
926
Mike Stump1851b682009-03-06 04:53:30 +0000927llvm::Constant *
928BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
929 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000930 QualType R = getContext().VoidTy;
931
932 FunctionArgList Args;
933 // FIXME: This leaks
934 ImplicitParamDecl *Src =
935 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
936 getContext().getPointerType(getContext().VoidTy));
937
938 Args.push_back(std::make_pair(Src, Src->getType()));
939
940 const CGFunctionInfo &FI =
941 CGM.getTypes().getFunctionInfo(R, Args);
942
943 std::string Name = std::string("__Block_byref_id_object_dispose_");
944 CodeGenTypes &Types = CGM.getTypes();
945 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
946
947 llvm::Function *Fn =
948 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
949 Name,
950 &CGM.getModule());
951
952 IdentifierInfo *II
953 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
954
955 FunctionDecl *FD = FunctionDecl::Create(getContext(),
956 getContext().getTranslationUnitDecl(),
957 SourceLocation(), II, R,
958 FunctionDecl::Static, false,
959 true);
960 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +0000961
962 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
963 V = Builder.CreateBitCast(V, T);
964 V = Builder.CreateStructGEP(V, 6, "x");
965 V = Builder.CreateBitCast(V, PtrToInt8Ty);
966
Mike Stump1851b682009-03-06 04:53:30 +0000967 flag |= BLOCK_BYREF_CALLER;
968 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000969 CGF.FinishFunction();
970
971 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
972}
973
Mike Stumpee094222009-03-06 06:12:24 +0000974llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
975 int flag) {
976 return CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000977}
978
Mike Stump1851b682009-03-06 04:53:30 +0000979llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
980 int flag) {
981 return CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000982}
983
Mike Stump797b6322009-03-05 01:23:13 +0000984llvm::Value *BlockFunction::getBlockObjectDispose() {
985 if (CGM.BlockObjectDispose == 0) {
986 const llvm::FunctionType *FTy;
987 std::vector<const llvm::Type*> ArgTys;
988 const llvm::Type *ResultType = llvm::Type::VoidTy;
989 ArgTys.push_back(PtrToInt8Ty);
990 ArgTys.push_back(llvm::Type::Int32Ty);
991 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +0000992 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +0000993 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
994 }
995 return CGM.BlockObjectDispose;
996}
997
Mike Stumpee094222009-03-06 06:12:24 +0000998llvm::Value *BlockFunction::getBlockObjectAssign() {
999 if (CGM.BlockObjectAssign == 0) {
1000 const llvm::FunctionType *FTy;
1001 std::vector<const llvm::Type*> ArgTys;
1002 const llvm::Type *ResultType = llvm::Type::VoidTy;
1003 ArgTys.push_back(PtrToInt8Ty);
1004 ArgTys.push_back(PtrToInt8Ty);
1005 ArgTys.push_back(llvm::Type::Int32Ty);
1006 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
1007 CGM.BlockObjectAssign
1008 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1009 }
1010 return CGM.BlockObjectAssign;
1011}
1012
Mike Stump1851b682009-03-06 04:53:30 +00001013void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001014 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001015 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001016 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Mike Stump1851b682009-03-06 04:53:30 +00001017 N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stump797b6322009-03-05 01:23:13 +00001018 Builder.CreateCall2(F, V, N);
1019}
Mike Stump00470a12009-03-05 08:32:30 +00001020
1021ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001022
1023BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1024 CGBuilderTy &B)
1025 : CGM(cgm), CGF(cgf), Builder(B) {
1026 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1027
1028 BlockHasCopyDispose = false;
1029}