blob: 16e926ba643cd7b9fedd08a63d749ab02186b94f [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
Mike Stumpa5448542009-02-13 15:32:32 +0000411/// getBlockFunctionType - Given a BlockPointerType, will return the
Anders Carlssonacfde802009-02-12 00:39:25 +0000412/// function type for the block, including the first block literal argument.
413static QualType getBlockFunctionType(ASTContext &Ctx,
Anders Carlssond5cab542009-02-12 17:55:02 +0000414 const BlockPointerType *BPT) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000415 const FunctionProtoType *FTy = cast<FunctionProtoType>(BPT->getPointeeType());
Mike Stumpa5448542009-02-13 15:32:32 +0000416
Anders Carlssonacfde802009-02-12 00:39:25 +0000417 llvm::SmallVector<QualType, 8> Types;
418 Types.push_back(Ctx.getPointerType(Ctx.VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000419
Douglas Gregor72564e72009-02-26 23:50:07 +0000420 for (FunctionProtoType::arg_type_iterator i = FTy->arg_type_begin(),
Anders Carlssonacfde802009-02-12 00:39:25 +0000421 e = FTy->arg_type_end(); i != e; ++i)
422 Types.push_back(*i);
Mike Stumpa5448542009-02-13 15:32:32 +0000423
Anders Carlssonacfde802009-02-12 00:39:25 +0000424 return Ctx.getFunctionType(FTy->getResultType(),
Mike Stumpa5448542009-02-13 15:32:32 +0000425 &Types[0], Types.size(),
Anders Carlssonacfde802009-02-12 00:39:25 +0000426 FTy->isVariadic(), 0);
427}
428
Anders Carlssond5cab542009-02-12 17:55:02 +0000429RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000430 const BlockPointerType *BPT =
Anders Carlssonacfde802009-02-12 00:39:25 +0000431 E->getCallee()->getType()->getAsBlockPointerType();
Mike Stumpa5448542009-02-13 15:32:32 +0000432
Anders Carlssonacfde802009-02-12 00:39:25 +0000433 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
434
435 // Get a pointer to the generic block literal.
436 const llvm::Type *BlockLiteralTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000437 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000438
439 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000440 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000441 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
442
443 // Get the function pointer from the literal.
444 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Mike Stump20733cd2009-02-22 13:27:11 +0000445 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000446
447 // Cast the function pointer to the right type.
Mike Stumpa5448542009-02-13 15:32:32 +0000448 const llvm::Type *BlockFTy =
Anders Carlssonacfde802009-02-12 00:39:25 +0000449 ConvertType(getBlockFunctionType(getContext(), BPT));
450 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
451 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
452
Mike Stumpa5448542009-02-13 15:32:32 +0000453 BlockLiteral =
454 Builder.CreateBitCast(BlockLiteral,
Anders Carlssonacfde802009-02-12 00:39:25 +0000455 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
456 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000457
Anders Carlssonacfde802009-02-12 00:39:25 +0000458 // Add the block literal.
459 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
460 CallArgList Args;
461 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000462
Anders Carlssonacfde802009-02-12 00:39:25 +0000463 // And the rest of the arguments.
Mike Stumpa5448542009-02-13 15:32:32 +0000464 for (CallExpr::const_arg_iterator i = E->arg_begin(), e = E->arg_end();
Anders Carlssonacfde802009-02-12 00:39:25 +0000465 i != e; ++i)
Mike Stumpa5448542009-02-13 15:32:32 +0000466 Args.push_back(std::make_pair(EmitAnyExprToTemp(*i),
Anders Carlssonacfde802009-02-12 00:39:25 +0000467 i->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000468
Anders Carlssonacfde802009-02-12 00:39:25 +0000469 // And call the block.
Mike Stumpa5448542009-02-13 15:32:32 +0000470 return EmitCall(CGM.getTypes().getFunctionInfo(E->getType(), Args),
Anders Carlssonacfde802009-02-12 00:39:25 +0000471 Func, Args);
472}
Anders Carlssond5cab542009-02-12 17:55:02 +0000473
Mike Stumpdab514f2009-03-04 03:23:46 +0000474llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
475 uint64_t &offset = BlockDecls[E->getDecl()];
476
477 const llvm::Type *Ty;
478 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
479
Mike Stumpdab514f2009-03-04 03:23:46 +0000480 // See if we have already allocated an offset for this variable.
481 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000482 // Don't run the expensive check, unless we have to.
483 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
484 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000485 // if not, allocate one now.
486 offset = getBlockOffset(E);
487 }
488
489 llvm::Value *BlockLiteral = LoadBlockStruct();
490 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
491 llvm::ConstantInt::get(llvm::Type::Int64Ty,
492 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000493 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000494 if (E->isByRef()) {
495 bool needsCopyDispose = BlockRequiresCopying(E->getType());
496 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
497 const llvm::Type *PtrStructTy
498 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000499 // The block literal will need a copy/destroy helper.
500 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000501 Ty = PtrStructTy;
502 Ty = llvm::PointerType::get(Ty, 0);
503 V = Builder.CreateBitCast(V, Ty);
504 V = Builder.CreateLoad(V, false);
505 V = Builder.CreateStructGEP(V, 1, "forwarding");
506 V = Builder.CreateLoad(V, false);
507 V = Builder.CreateBitCast(V, PtrStructTy);
508 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
509 } else {
510 Ty = llvm::PointerType::get(Ty, 0);
511 V = Builder.CreateBitCast(V, Ty);
512 }
513 return V;
514}
515
Mike Stump6cc88f72009-03-20 21:53:12 +0000516void CodeGenFunction::BlockForwardSelf() {
517 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
518 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
519 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
520 if (DMEntry)
521 return;
522 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
523 BlockDeclRefExpr *BDRE = new (getContext())
524 BlockDeclRefExpr(SelfDecl,
525 SelfDecl->getType(), SourceLocation(), false);
526 DMEntry = GetAddrOfBlockDecl(BDRE);
527}
528
Mike Stump67a64482009-02-14 22:16:35 +0000529llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000530BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000531 // Generate the block descriptor.
532 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000533 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
534 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000535
Anders Carlssond5cab542009-02-12 17:55:02 +0000536 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000537
Anders Carlssond5cab542009-02-12 17:55:02 +0000538 // Reserved
539 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000540
Anders Carlssond5cab542009-02-12 17:55:02 +0000541 // Block literal size. For global blocks we just use the size of the generic
542 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000543 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000544 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Anders Carlssond5cab542009-02-12 17:55:02 +0000545 DescriptorFields[1] = llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000546
547 llvm::Constant *DescriptorStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000548 llvm::ConstantStruct::get(&DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000549
Anders Carlssond5cab542009-02-12 17:55:02 +0000550 llvm::GlobalVariable *Descriptor =
551 new llvm::GlobalVariable(DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000552 llvm::GlobalVariable::InternalLinkage,
553 DescriptorStruct, "__block_descriptor_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000554 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000555
Anders Carlssond5cab542009-02-12 17:55:02 +0000556 // Generate the constants for the block literal.
557 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000558
Mike Stump67a64482009-02-14 22:16:35 +0000559 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000560 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000561 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000562 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000563 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000564 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000565 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000566 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000567 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000568 subBlockDeclRefDecls,
569 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000570 assert(subBlockSize == BlockLiteralSize
571 && "no imports allowed for global block");
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000572 assert(!subBlockHasCopyDispose && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000573
Anders Carlssond5cab542009-02-12 17:55:02 +0000574 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000575 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000576
Anders Carlssond5cab542009-02-12 17:55:02 +0000577 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000578 LiteralFields[1] =
Anders Carlsson8045ee02009-03-01 21:09:29 +0000579 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000580
Anders Carlssond5cab542009-02-12 17:55:02 +0000581 // Reserved
Mike Stump7cbb3602009-02-13 16:01:35 +0000582 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000583
Anders Carlssond5cab542009-02-12 17:55:02 +0000584 // Function
585 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000586
Anders Carlssond5cab542009-02-12 17:55:02 +0000587 // Descriptor
588 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000589
590 llvm::Constant *BlockLiteralStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000591 llvm::ConstantStruct::get(&LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000592
593 llvm::GlobalVariable *BlockLiteral =
Anders Carlssond5cab542009-02-12 17:55:02 +0000594 new llvm::GlobalVariable(BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000595 llvm::GlobalVariable::InternalLinkage,
596 BlockLiteralStruct, "__block_literal_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000597 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000598
Anders Carlssond5cab542009-02-12 17:55:02 +0000599 return BlockLiteral;
600}
601
Mike Stump4e7a1f72009-02-21 20:00:35 +0000602llvm::Value *CodeGenFunction::LoadBlockStruct() {
603 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
604}
605
Mike Stump00470a12009-03-05 08:32:30 +0000606llvm::Function *
607CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
608 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000609 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000610 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000611 uint64_t &Size,
612 uint64_t &Align,
613 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
614 bool &subBlockHasCopyDispose) {
Mike Stump7f28a9c2009-03-13 23:34:28 +0000615 // Arrange for local static and local extern declarations to appear
616 // to be local to this function as well, as they are directly referenced
617 // in a block.
618 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
619 i != ldm.end();
620 ++i) {
621 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
622
623 if (VD->getStorageClass() == VarDecl::Static
624 || VD->getStorageClass() == VarDecl::Extern)
625 LocalDeclMap[VD] = i->second;
626 }
627
Eli Friedman48f91222009-03-28 03:24:54 +0000628 // FIXME: We need to rearrange the code for copy/dispose so we have this
629 // sooner, so we can calculate offsets correctly.
630 if (!BlockHasCopyDispose)
631 BlockOffset = CGM.getTargetData()
632 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
633 else
634 BlockOffset = CGM.getTargetData()
635 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
636 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
637
Douglas Gregor72564e72009-02-26 23:50:07 +0000638 const FunctionProtoType *FTy =
Chris Lattner161d36d2009-02-28 19:01:03 +0000639 cast<FunctionProtoType>(BExpr->getFunctionType());
Mike Stumpa5448542009-02-13 15:32:32 +0000640
Anders Carlssond5cab542009-02-12 17:55:02 +0000641 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000642
Chris Lattner161d36d2009-02-28 19:01:03 +0000643 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000644
645 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000646 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000647 ImplicitParamDecl::Create(getContext(), 0,
648 SourceLocation(), 0,
649 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000650
Anders Carlssond5cab542009-02-12 17:55:02 +0000651 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000652 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000653
Steve Naroffe78b8092009-03-13 16:56:44 +0000654 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000655 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000656 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000657
658 const CGFunctionInfo &FI =
Anders Carlssond5cab542009-02-12 17:55:02 +0000659 CGM.getTypes().getFunctionInfo(FTy->getResultType(), Args);
660
Mike Stump67a64482009-02-14 22:16:35 +0000661 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000662 CodeGenTypes &Types = CGM.getTypes();
663 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, FTy->isVariadic());
Mike Stumpa5448542009-02-13 15:32:32 +0000664
665 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000666 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
667 Name,
668 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000669
670 StartFunction(BD, FTy->getResultType(), Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000671 BExpr->getBody()->getLocEnd());
Mike Stump6cc88f72009-03-20 21:53:12 +0000672 CurFuncDecl = OuterFuncDecl;
Chris Lattner161d36d2009-02-28 19:01:03 +0000673 EmitStmt(BExpr->getBody());
674 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000675
Mike Stump8a2b4b12009-02-25 23:33:13 +0000676 // The runtime needs a minimum alignment of a void *.
677 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
678 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
679
Mike Stump4e7a1f72009-02-21 20:00:35 +0000680 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000681 Align = BlockAlign;
682 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000683 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000684 return Fn;
685}
Mike Stumpa99038c2009-02-28 09:07:16 +0000686
Mike Stump08920992009-03-07 02:35:30 +0000687uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000688 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
689
690 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
691 uint64_t Align = getContext().getDeclAlignInBytes(D);
692
693 if (BDRE->isByRef()) {
694 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
695 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
696 }
697
698 assert ((Align > 0) && "alignment must be 1 byte or more");
699
700 uint64_t OldOffset = BlockOffset;
701
702 // Ensure proper alignment, even if it means we have to have a gap
703 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
704 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000705
Mike Stumpa99038c2009-02-28 09:07:16 +0000706 uint64_t Pad = BlockOffset - OldOffset;
707 if (Pad) {
708 llvm::ArrayType::get(llvm::Type::Int8Ty, Pad);
709 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
710 llvm::APInt(32, Pad),
711 ArrayType::Normal, 0);
712 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
713 0, QualType(PadTy), VarDecl::None,
714 SourceLocation());
715 Expr *E;
716 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
717 SourceLocation(), false, false);
718 BlockDeclRefDecls.push_back(E);
719 }
720 BlockDeclRefDecls.push_back(BDRE);
721
722 BlockOffset += Size;
723 return BlockOffset-Size;
724}
Mike Stumpdab514f2009-03-04 03:23:46 +0000725
Mike Stump08920992009-03-07 02:35:30 +0000726llvm::Constant *BlockFunction::
727GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
728 std::vector<HelperInfo> &NoteForHelper) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000729 QualType R = getContext().VoidTy;
730
731 FunctionArgList Args;
732 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000733 ImplicitParamDecl *Dst =
734 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
735 getContext().getPointerType(getContext().VoidTy));
736 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000737 ImplicitParamDecl *Src =
738 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
739 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000740 Args.push_back(std::make_pair(Src, Src->getType()));
741
742 const CGFunctionInfo &FI =
743 CGM.getTypes().getFunctionInfo(R, Args);
744
745 std::string Name = std::string("__copy_helper_block_");
746 CodeGenTypes &Types = CGM.getTypes();
747 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
748
749 llvm::Function *Fn =
750 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
751 Name,
752 &CGM.getModule());
753
754 IdentifierInfo *II
755 = &CGM.getContext().Idents.get("__copy_helper_block_");
756
757 FunctionDecl *FD = FunctionDecl::Create(getContext(),
758 getContext().getTranslationUnitDecl(),
759 SourceLocation(), II, R,
760 FunctionDecl::Static, false,
761 true);
762 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000763
764 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
765 llvm::Type *PtrPtrT;
766 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
767 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
768 SrcObj = Builder.CreateLoad(SrcObj);
769
770 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
771 DstObj = Builder.CreateBitCast(DstObj, llvm::PointerType::get(T, 0));
772
773 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
774 int flag = NoteForHelper[i].flag;
775 int index = NoteForHelper[i].index;
776
777 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
778 || NoteForHelper[i].RequiresCopying) {
779 llvm::Value *Srcv = SrcObj;
780 Srcv = Builder.CreateStructGEP(Srcv, index);
781 Srcv = Builder.CreateBitCast(Srcv,
782 llvm::PointerType::get(PtrToInt8Ty, 0));
783 Srcv = Builder.CreateLoad(Srcv);
784
785 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
786 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
787
788 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
789 llvm::Value *F = getBlockObjectAssign();
790 Builder.CreateCall3(F, Dstv, Srcv, N);
791 }
792 }
793
Mike Stumpa4f668f2009-03-06 01:33:24 +0000794 CGF.FinishFunction();
795
796 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000797}
798
Mike Stumpcf62d392009-03-06 18:42:23 +0000799llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000800GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
801 const llvm::StructType* T,
802 std::vector<HelperInfo> &NoteForHelper) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000803 QualType R = getContext().VoidTy;
804
805 FunctionArgList Args;
806 // FIXME: This leaks
807 ImplicitParamDecl *Src =
808 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
809 getContext().getPointerType(getContext().VoidTy));
810
811 Args.push_back(std::make_pair(Src, Src->getType()));
812
813 const CGFunctionInfo &FI =
814 CGM.getTypes().getFunctionInfo(R, Args);
815
816 std::string Name = std::string("__destroy_helper_block_");
817 CodeGenTypes &Types = CGM.getTypes();
818 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
819
820 llvm::Function *Fn =
821 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
822 Name,
823 &CGM.getModule());
824
825 IdentifierInfo *II
826 = &CGM.getContext().Idents.get("__destroy_helper_block_");
827
828 FunctionDecl *FD = FunctionDecl::Create(getContext(),
829 getContext().getTranslationUnitDecl(),
830 SourceLocation(), II, R,
831 FunctionDecl::Static, false,
832 true);
833 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000834
835 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
836 llvm::Type *PtrPtrT;
837 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
838 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
839 SrcObj = Builder.CreateLoad(SrcObj);
840
841 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
842 int flag = NoteForHelper[i].flag;
843 int index = NoteForHelper[i].index;
844
845 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
846 || NoteForHelper[i].RequiresCopying) {
847 llvm::Value *Srcv = SrcObj;
848 Srcv = Builder.CreateStructGEP(Srcv, index);
849 Srcv = Builder.CreateBitCast(Srcv,
850 llvm::PointerType::get(PtrToInt8Ty, 0));
851 Srcv = Builder.CreateLoad(Srcv);
852
853 BuildBlockRelease(Srcv, flag);
854 }
855 }
856
Mike Stumpa4f668f2009-03-06 01:33:24 +0000857 CGF.FinishFunction();
858
859 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
860}
861
Mike Stump08920992009-03-07 02:35:30 +0000862llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
863 std::vector<HelperInfo> &NoteForHelper) {
864 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
865 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000866}
867
Mike Stump08920992009-03-07 02:35:30 +0000868llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
869 std::vector<HelperInfo> &NoteForHelper) {
870 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
871 T, NoteForHelper);
Mike Stumpdab514f2009-03-04 03:23:46 +0000872}
Mike Stump797b6322009-03-05 01:23:13 +0000873
Mike Stumpee094222009-03-06 06:12:24 +0000874llvm::Constant *BlockFunction::
875GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000876 QualType R = getContext().VoidTy;
877
878 FunctionArgList Args;
879 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000880 ImplicitParamDecl *Dst =
881 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
882 getContext().getPointerType(getContext().VoidTy));
883 Args.push_back(std::make_pair(Dst, Dst->getType()));
884
885 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000886 ImplicitParamDecl *Src =
887 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
888 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000889 Args.push_back(std::make_pair(Src, Src->getType()));
890
891 const CGFunctionInfo &FI =
892 CGM.getTypes().getFunctionInfo(R, Args);
893
894 std::string Name = std::string("__Block_byref_id_object_copy_");
895 CodeGenTypes &Types = CGM.getTypes();
896 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
897
898 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);
915 V = Builder.CreateBitCast(V, T);
916 V = Builder.CreateStructGEP(V, 6, "x");
917 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
918
919 // src->x
920 V = CGF.GetAddrOfLocalVar(Src);
921 V = Builder.CreateLoad(V);
922 V = Builder.CreateBitCast(V, T);
923 V = Builder.CreateStructGEP(V, 6, "x");
924 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
925 llvm::Value *SrcObj = Builder.CreateLoad(V);
926
927 flag |= BLOCK_BYREF_CALLER;
928
929 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
930 llvm::Value *F = getBlockObjectAssign();
931 Builder.CreateCall3(F, DstObj, SrcObj, N);
932
Mike Stump45031c02009-03-06 02:29:21 +0000933 CGF.FinishFunction();
934
935 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
936}
937
Mike Stump1851b682009-03-06 04:53:30 +0000938llvm::Constant *
939BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
940 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000941 QualType R = getContext().VoidTy;
942
943 FunctionArgList Args;
944 // FIXME: This leaks
945 ImplicitParamDecl *Src =
946 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
947 getContext().getPointerType(getContext().VoidTy));
948
949 Args.push_back(std::make_pair(Src, Src->getType()));
950
951 const CGFunctionInfo &FI =
952 CGM.getTypes().getFunctionInfo(R, Args);
953
954 std::string Name = std::string("__Block_byref_id_object_dispose_");
955 CodeGenTypes &Types = CGM.getTypes();
956 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
957
958 llvm::Function *Fn =
959 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
960 Name,
961 &CGM.getModule());
962
963 IdentifierInfo *II
964 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
965
966 FunctionDecl *FD = FunctionDecl::Create(getContext(),
967 getContext().getTranslationUnitDecl(),
968 SourceLocation(), II, R,
969 FunctionDecl::Static, false,
970 true);
971 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +0000972
973 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
974 V = Builder.CreateBitCast(V, T);
975 V = Builder.CreateStructGEP(V, 6, "x");
976 V = Builder.CreateBitCast(V, PtrToInt8Ty);
977
Mike Stump1851b682009-03-06 04:53:30 +0000978 flag |= BLOCK_BYREF_CALLER;
979 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000980 CGF.FinishFunction();
981
982 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
983}
984
Mike Stumpee094222009-03-06 06:12:24 +0000985llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
986 int flag) {
987 return CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000988}
989
Mike Stump1851b682009-03-06 04:53:30 +0000990llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
991 int flag) {
992 return CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +0000993}
994
Mike Stump797b6322009-03-05 01:23:13 +0000995llvm::Value *BlockFunction::getBlockObjectDispose() {
996 if (CGM.BlockObjectDispose == 0) {
997 const llvm::FunctionType *FTy;
998 std::vector<const llvm::Type*> ArgTys;
999 const llvm::Type *ResultType = llvm::Type::VoidTy;
1000 ArgTys.push_back(PtrToInt8Ty);
1001 ArgTys.push_back(llvm::Type::Int32Ty);
1002 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001003 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001004 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1005 }
1006 return CGM.BlockObjectDispose;
1007}
1008
Mike Stumpee094222009-03-06 06:12:24 +00001009llvm::Value *BlockFunction::getBlockObjectAssign() {
1010 if (CGM.BlockObjectAssign == 0) {
1011 const llvm::FunctionType *FTy;
1012 std::vector<const llvm::Type*> ArgTys;
1013 const llvm::Type *ResultType = llvm::Type::VoidTy;
1014 ArgTys.push_back(PtrToInt8Ty);
1015 ArgTys.push_back(PtrToInt8Ty);
1016 ArgTys.push_back(llvm::Type::Int32Ty);
1017 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
1018 CGM.BlockObjectAssign
1019 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1020 }
1021 return CGM.BlockObjectAssign;
1022}
1023
Mike Stump1851b682009-03-06 04:53:30 +00001024void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001025 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001026 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001027 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Mike Stump1851b682009-03-06 04:53:30 +00001028 N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stump797b6322009-03-05 01:23:13 +00001029 Builder.CreateCall2(F, V, N);
1030}
Mike Stump00470a12009-03-05 08:32:30 +00001031
1032ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001033
1034BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1035 CGBuilderTy &B)
1036 : CGM(cgm), CGF(cgf), Builder(B) {
1037 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1038
1039 BlockHasCopyDispose = false;
1040}