blob: a792537ea9feb22895e188812c342e74092de997 [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"
16#include "llvm/Module.h"
Anders Carlssond5cab542009-02-12 17:55:02 +000017#include "llvm/Target/TargetData.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000018
19#include <algorithm>
20
21using namespace clang;
22using namespace CodeGen;
23
Mike Stump58919e12009-03-04 13:17:22 +000024// Temporary code to enable testing of __block variables
25// #include "clang/Frontend/CompileOptions.h"
26#include "llvm/Support/CommandLine.h"
27static llvm::cl::opt<bool>
28Enable__block("f__block",
29 // See all the FIXMEs for the various work that needs to be done
30 llvm::cl::desc("temporary option to turn on __block precessing "
31 "even though the code isn't done yet"),
32 llvm::cl::ValueDisallowed, llvm::cl::AllowInverse,
Mike Stump00470a12009-03-05 08:32:30 +000033 llvm::cl::ZeroOrMore,
34 llvm::cl::init(false));
Mike Stump58919e12009-03-04 13:17:22 +000035
Mike Stump4e7a1f72009-02-21 20:00:35 +000036llvm::Constant *CodeGenFunction::BuildDescriptorBlockDecl(uint64_t Size) {
Mike Stump56129b12009-02-13 16:55:51 +000037 const llvm::Type *UnsignedLongTy
38 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpe5fee252009-02-13 16:19:19 +000039 llvm::Constant *C;
40 std::vector<llvm::Constant*> Elts;
41
42 // reserved
Mike Stump56129b12009-02-13 16:55:51 +000043 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000044 Elts.push_back(C);
45
46 // Size
Mike Stumpd6840002009-02-21 20:07:44 +000047 // FIXME: What is the right way to say this doesn't fit? We should give
48 // a user diagnostic in that case. Better fix would be to change the
49 // API to size_t.
Mike Stump4e7a1f72009-02-21 20:00:35 +000050 C = llvm::ConstantInt::get(UnsignedLongTy, Size);
Mike Stumpe5fee252009-02-13 16:19:19 +000051 Elts.push_back(C);
52
53 if (BlockHasCopyDispose) {
54 // copy_func_helper_decl
Mike Stump4e7a1f72009-02-21 20:00:35 +000055 // FIXME: implement
Mike Stump00470a12009-03-05 08:32:30 +000056 C = llvm::Constant::getNullValue(PtrToInt8Ty);
Mike Stumpe5fee252009-02-13 16:19:19 +000057 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
58 Elts.push_back(C);
59
60 // destroy_func_decl
Mike Stump4e7a1f72009-02-21 20:00:35 +000061 // FIXME: implement
Mike Stump00470a12009-03-05 08:32:30 +000062 C = llvm::Constant::getNullValue(PtrToInt8Ty);
Mike Stumpe5fee252009-02-13 16:19:19 +000063 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
64 Elts.push_back(C);
65 }
66
67 C = llvm::ConstantStruct::get(Elts);
68
Mike Stumpe5fee252009-02-13 16:19:19 +000069 C = new llvm::GlobalVariable(C->getType(), true,
70 llvm::GlobalValue::InternalLinkage,
Mike Stump7d6dc4f2009-02-13 20:17:16 +000071 C, "__block_descriptor_tmp", &CGM.getModule());
Mike Stumpe5fee252009-02-13 16:19:19 +000072 return C;
73}
74
Mike Stump2a998142009-03-04 18:17:45 +000075llvm::Constant *BlockModule::getNSConcreteGlobalBlock() {
Mike Stumpf99f1d02009-02-13 17:23:42 +000076 if (NSConcreteGlobalBlock)
77 return NSConcreteGlobalBlock;
78
Mike Stumpf7448952009-02-13 19:38:12 +000079 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stump58a85142009-03-04 22:48:06 +000080 // same thing as CreateRuntimeFunction if there's already a variable with the
81 // same name.
Mike Stumpf99f1d02009-02-13 17:23:42 +000082 NSConcreteGlobalBlock
Mike Stump00470a12009-03-05 08:32:30 +000083 = new llvm::GlobalVariable(PtrToInt8Ty, false,
Mike Stumpf99f1d02009-02-13 17:23:42 +000084 llvm::GlobalValue::ExternalLinkage,
85 0, "_NSConcreteGlobalBlock",
86 &getModule());
87
88 return NSConcreteGlobalBlock;
89}
90
Mike Stump2a998142009-03-04 18:17:45 +000091llvm::Constant *BlockModule::getNSConcreteStackBlock() {
Mike Stump59c5b112009-02-13 19:29:27 +000092 if (NSConcreteStackBlock)
93 return NSConcreteStackBlock;
94
Mike Stumpf7448952009-02-13 19:38:12 +000095 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stump58a85142009-03-04 22:48:06 +000096 // same thing as CreateRuntimeFunction if there's already a variable with the
97 // same name.
Mike Stump59c5b112009-02-13 19:29:27 +000098 NSConcreteStackBlock
Mike Stump00470a12009-03-05 08:32:30 +000099 = new llvm::GlobalVariable(PtrToInt8Ty, false,
Mike Stump59c5b112009-02-13 19:29:27 +0000100 llvm::GlobalValue::ExternalLinkage,
101 0, "_NSConcreteStackBlock",
102 &getModule());
103
104 return NSConcreteStackBlock;
105}
106
Mike Stump00470a12009-03-05 08:32:30 +0000107static void CollectBlockDeclRefInfo(const Stmt *S,
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000108 CodeGenFunction::BlockInfo &Info) {
109 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
110 I != E; ++I)
Daniel Dunbar82573ee2009-03-02 07:00:57 +0000111 if (*I)
112 CollectBlockDeclRefInfo(*I, Info);
Mike Stump00470a12009-03-05 08:32:30 +0000113
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000114 if (const BlockDeclRefExpr *DE = dyn_cast<BlockDeclRefExpr>(S)) {
115 // FIXME: Handle enums.
116 if (isa<FunctionDecl>(DE->getDecl()))
117 return;
Mike Stump00470a12009-03-05 08:32:30 +0000118
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000119 if (DE->isByRef())
120 Info.ByRefDeclRefs.push_back(DE);
121 else
122 Info.ByCopyDeclRefs.push_back(DE);
123 }
124}
125
Mike Stump58a85142009-03-04 22:48:06 +0000126/// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be
127/// declared as a global variable instead of on the stack.
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000128static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info)
129{
130 return Info.ByRefDeclRefs.empty() && Info.ByCopyDeclRefs.empty();
131}
132
Mike Stump58a85142009-03-04 22:48:06 +0000133// FIXME: Push most into CGM, passing down a few bits, like current function
134// name.
Mike Stump8a2b4b12009-02-25 23:33:13 +0000135llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000136
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000137 std::string Name = CurFn->getName();
138 CodeGenFunction::BlockInfo Info(0, Name.c_str());
139 CollectBlockDeclRefInfo(BE->getBody(), Info);
140
141 // Check if the block can be global.
Mike Stump58a85142009-03-04 22:48:06 +0000142 // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like
143 // to just have one code path. We should move this function into CGM and pass
144 // CGF, then we can just check to see if CGF is 0.
Mike Stumpdab514f2009-03-04 03:23:46 +0000145 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000146 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump00470a12009-03-05 08:32:30 +0000147
148 std::vector<llvm::Constant*> Elts(5);
Mike Stumpe5fee252009-02-13 16:19:19 +0000149 llvm::Constant *C;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000150 llvm::Value *V;
Mike Stumpe5fee252009-02-13 16:19:19 +0000151
Mike Stumpe5fee252009-02-13 16:19:19 +0000152 {
153 // C = BuildBlockStructInitlist();
154 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
155
Mike Stump00470a12009-03-05 08:32:30 +0000156 // We run this first so that we set BlockHasCopyDispose from the entire
157 // block literal.
158 // __invoke
159 uint64_t subBlockSize, subBlockAlign;
160 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
161 llvm::Function *Fn
162 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, subBlockSize,
163 subBlockAlign,
164 subBlockDeclRefDecls,
165 BlockHasCopyDispose);
166 Elts[3] = Fn;
167
168 if (!Enable__block && BlockHasCopyDispose)
169 ErrorUnsupported(BE, "block literal that requires copy/dispose");
170
Mike Stumpe5fee252009-02-13 16:19:19 +0000171 if (BlockHasCopyDispose)
172 flags |= BLOCK_HAS_COPY_DISPOSE;
173
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000174 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000175 C = CGM.getNSConcreteStackBlock();
Mike Stumpe5fee252009-02-13 16:19:19 +0000176 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump00470a12009-03-05 08:32:30 +0000177 Elts[0] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000178
179 // __flags
180 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
181 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
182 C = llvm::ConstantInt::get(IntTy, flags);
Mike Stump00470a12009-03-05 08:32:30 +0000183 Elts[1] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000184
185 // __reserved
186 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump00470a12009-03-05 08:32:30 +0000187 Elts[2] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000188
189 // __descriptor
Mike Stump00470a12009-03-05 08:32:30 +0000190 Elts[4] = BuildDescriptorBlockDecl(subBlockSize);
Mike Stumpe5fee252009-02-13 16:19:19 +0000191
Mike Stump8a2b4b12009-02-25 23:33:13 +0000192 if (subBlockDeclRefDecls.size() == 0) {
Mike Stump5570cfe2009-03-01 20:07:53 +0000193 // Optimize to being a global block.
194 Elts[0] = CGM.getNSConcreteGlobalBlock();
195 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
196
Mike Stump8a2b4b12009-02-25 23:33:13 +0000197 C = llvm::ConstantStruct::get(Elts);
198
199 char Name[32];
200 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
201 C = new llvm::GlobalVariable(C->getType(), true,
202 llvm::GlobalValue::InternalLinkage,
203 C, Name, &CGM.getModule());
204 QualType BPT = BE->getType();
205 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
206 return C;
207 }
Mike Stump00470a12009-03-05 08:32:30 +0000208
Mike Stump8a2b4b12009-02-25 23:33:13 +0000209 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
210 for (int i=0; i<5; ++i)
211 Types[i] = Elts[i]->getType();
212
Mike Stumpa99038c2009-02-28 09:07:16 +0000213 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) {
214 const Expr *E = subBlockDeclRefDecls[i];
215 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
216 QualType Ty = E->getType();
Mike Stumpdab514f2009-03-04 03:23:46 +0000217 if (BDRE && BDRE->isByRef()) {
218 uint64_t Align = getContext().getDeclAlignInBytes(BDRE->getDecl());
219 Types[i+5] = llvm::PointerType::get(BuildByRefType(Ty, Align), 0);
220 } else
221 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000222 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000223
224 llvm::Type *Ty = llvm::StructType::get(Types, true);
225
226 llvm::AllocaInst *A = CreateTempAlloca(Ty);
227 A->setAlignment(subBlockAlign);
228 V = A;
229
230 for (unsigned i=0; i<5; ++i)
231 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump00470a12009-03-05 08:32:30 +0000232
Mike Stump8a2b4b12009-02-25 23:33:13 +0000233 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
234 {
Mike Stumpa99038c2009-02-28 09:07:16 +0000235 // FIXME: Push const down.
236 Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]);
237 DeclRefExpr *DR;
238 ValueDecl *VD;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000239
Mike Stumpa99038c2009-02-28 09:07:16 +0000240 DR = dyn_cast<DeclRefExpr>(E);
241 // Skip padding.
242 if (DR) continue;
243
244 BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
245 VD = BDRE->getDecl();
246
Mike Stumpdab514f2009-03-04 03:23:46 +0000247 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stumpa99038c2009-02-28 09:07:16 +0000248 // FIXME: I want a better way to do this.
249 if (LocalDeclMap[VD]) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000250 if (BDRE->isByRef()) {
251 const llvm::Type *Ty = Types[i+5];
252 llvm::Value *Loc = LocalDeclMap[VD];
253 Loc = Builder.CreateStructGEP(Loc, 1, "forwarding");
254 Loc = Builder.CreateLoad(Loc, false);
255 Loc = Builder.CreateBitCast(Loc, Ty);
256 Builder.CreateStore(Loc, Addr);
257 continue;
258 } else
259 E = new (getContext()) DeclRefExpr (cast<NamedDecl>(VD),
260 VD->getType(), SourceLocation(),
261 false, false);
Mike Stumpa99038c2009-02-28 09:07:16 +0000262 }
Mike Stumpdab514f2009-03-04 03:23:46 +0000263 if (BDRE->isByRef()) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000264 E = new (getContext())
265 UnaryOperator(E, UnaryOperator::AddrOf,
266 getContext().getPointerType(E->getType()),
267 SourceLocation());
Mike Stumpdab514f2009-03-04 03:23:46 +0000268 }
Mike Stumpa99038c2009-02-28 09:07:16 +0000269
Mike Stumpa99038c2009-02-28 09:07:16 +0000270 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000271 if (r.isScalar()) {
272 llvm::Value *Loc = r.getScalarVal();
273 const llvm::Type *Ty = Types[i+5];
274 if (BDRE->isByRef()) {
Mike Stump58a85142009-03-04 22:48:06 +0000275 // E is now the address of the value field, instead, we want the
276 // address of the actual ByRef struct. We optimize this slightly
277 // compared to gcc by not grabbing the forwarding slot as this must
278 // be done during Block_copy for us, and we can postpone the work
279 // until then.
280 uint64_t offset = BlockDecls[BDRE->getDecl()];
Mike Stump00470a12009-03-05 08:32:30 +0000281
Mike Stump58a85142009-03-04 22:48:06 +0000282 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump00470a12009-03-05 08:32:30 +0000283
Mike Stump58a85142009-03-04 22:48:06 +0000284 Loc = Builder.CreateGEP(BlockLiteral,
285 llvm::ConstantInt::get(llvm::Type::Int64Ty,
286 offset),
287 "block.literal");
288 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000289 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stump58a85142009-03-04 22:48:06 +0000290 Loc = Builder.CreateLoad(Loc, false);
291 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000292 }
293 Builder.CreateStore(Loc, Addr);
294 } else if (r.isComplex())
Mike Stump8a2b4b12009-02-25 23:33:13 +0000295 // FIXME: implement
296 ErrorUnsupported(BE, "complex in block literal");
297 else if (r.isAggregate())
298 ; // Already created into the destination
299 else
300 assert (0 && "bad block variable");
301 // FIXME: Ensure that the offset created by the backend for
302 // the struct matches the previously computed offset in BlockDecls.
303 }
Mike Stumpe5fee252009-02-13 16:19:19 +0000304 }
Mike Stump00470a12009-03-05 08:32:30 +0000305
Mike Stumpbd65cac2009-02-19 01:01:04 +0000306 QualType BPT = BE->getType();
Mike Stump8a2b4b12009-02-25 23:33:13 +0000307 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpe5fee252009-02-13 16:19:19 +0000308}
309
310
Mike Stump2a998142009-03-04 18:17:45 +0000311const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000312 if (BlockDescriptorType)
313 return BlockDescriptorType;
314
Mike Stumpa5448542009-02-13 15:32:32 +0000315 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000316 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000317
Mike Stumpab695142009-02-13 15:16:56 +0000318 // struct __block_descriptor {
319 // unsigned long reserved;
320 // unsigned long block_size;
321 // };
Mike Stumpa5448542009-02-13 15:32:32 +0000322 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy,
323 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000324 NULL);
325
326 getModule().addTypeName("struct.__block_descriptor",
327 BlockDescriptorType);
328
329 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000330}
331
Mike Stump2a998142009-03-04 18:17:45 +0000332const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000333 if (GenericBlockLiteralType)
334 return GenericBlockLiteralType;
335
Mike Stumpa5448542009-02-13 15:32:32 +0000336 const llvm::Type *BlockDescPtrTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000337 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000338
Mike Stump7cbb3602009-02-13 16:01:35 +0000339 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
340 getTypes().ConvertType(getContext().IntTy));
341
Mike Stump9b8a7972009-02-13 15:25:34 +0000342 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000343 // void *__isa;
344 // int __flags;
345 // int __reserved;
346 // void (*__invoke)(void *);
347 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000348 // };
Mike Stump797b6322009-03-05 01:23:13 +0000349 GenericBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000350 IntTy,
351 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000352 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000353 BlockDescPtrTy,
354 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000355
Mike Stump9b8a7972009-02-13 15:25:34 +0000356 getModule().addTypeName("struct.__block_literal_generic",
357 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000358
Mike Stump9b8a7972009-02-13 15:25:34 +0000359 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000360}
361
Mike Stump2a998142009-03-04 18:17:45 +0000362const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000363 if (GenericExtendedBlockLiteralType)
364 return GenericExtendedBlockLiteralType;
365
Mike Stumpbd65cac2009-02-19 01:01:04 +0000366 const llvm::Type *BlockDescPtrTy =
367 llvm::PointerType::getUnqual(getBlockDescriptorType());
368
369 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
370 getTypes().ConvertType(getContext().IntTy));
371
372 // struct __block_literal_generic {
373 // void *__isa;
374 // int __flags;
375 // int __reserved;
376 // void (*__invoke)(void *);
377 // struct __block_descriptor *__descriptor;
378 // void *__copy_func_helper_decl;
379 // void *__destroy_func_decl;
380 // };
Mike Stump797b6322009-03-05 01:23:13 +0000381 GenericExtendedBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000382 IntTy,
383 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000384 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000385 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000386 PtrToInt8Ty,
387 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000388 NULL);
389
390 getModule().addTypeName("struct.__block_literal_extended_generic",
391 GenericExtendedBlockLiteralType);
392
393 return GenericExtendedBlockLiteralType;
394}
395
Mike Stumpa5448542009-02-13 15:32:32 +0000396/// getBlockFunctionType - Given a BlockPointerType, will return the
Anders Carlssonacfde802009-02-12 00:39:25 +0000397/// function type for the block, including the first block literal argument.
398static QualType getBlockFunctionType(ASTContext &Ctx,
Anders Carlssond5cab542009-02-12 17:55:02 +0000399 const BlockPointerType *BPT) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000400 const FunctionProtoType *FTy = cast<FunctionProtoType>(BPT->getPointeeType());
Mike Stumpa5448542009-02-13 15:32:32 +0000401
Anders Carlssonacfde802009-02-12 00:39:25 +0000402 llvm::SmallVector<QualType, 8> Types;
403 Types.push_back(Ctx.getPointerType(Ctx.VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000404
Douglas Gregor72564e72009-02-26 23:50:07 +0000405 for (FunctionProtoType::arg_type_iterator i = FTy->arg_type_begin(),
Anders Carlssonacfde802009-02-12 00:39:25 +0000406 e = FTy->arg_type_end(); i != e; ++i)
407 Types.push_back(*i);
Mike Stumpa5448542009-02-13 15:32:32 +0000408
Anders Carlssonacfde802009-02-12 00:39:25 +0000409 return Ctx.getFunctionType(FTy->getResultType(),
Mike Stumpa5448542009-02-13 15:32:32 +0000410 &Types[0], Types.size(),
Anders Carlssonacfde802009-02-12 00:39:25 +0000411 FTy->isVariadic(), 0);
412}
413
Anders Carlssond5cab542009-02-12 17:55:02 +0000414RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000415 const BlockPointerType *BPT =
Anders Carlssonacfde802009-02-12 00:39:25 +0000416 E->getCallee()->getType()->getAsBlockPointerType();
Mike Stumpa5448542009-02-13 15:32:32 +0000417
Anders Carlssonacfde802009-02-12 00:39:25 +0000418 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
419
420 // Get a pointer to the generic block literal.
421 const llvm::Type *BlockLiteralTy =
Mike Stump9b8a7972009-02-13 15:25:34 +0000422 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000423
424 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000425 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000426 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
427
428 // Get the function pointer from the literal.
429 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Mike Stump20733cd2009-02-22 13:27:11 +0000430 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000431
432 // Cast the function pointer to the right type.
Mike Stumpa5448542009-02-13 15:32:32 +0000433 const llvm::Type *BlockFTy =
Anders Carlssonacfde802009-02-12 00:39:25 +0000434 ConvertType(getBlockFunctionType(getContext(), BPT));
435 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
436 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
437
Mike Stumpa5448542009-02-13 15:32:32 +0000438 BlockLiteral =
439 Builder.CreateBitCast(BlockLiteral,
Anders Carlssonacfde802009-02-12 00:39:25 +0000440 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
441 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000442
Anders Carlssonacfde802009-02-12 00:39:25 +0000443 // Add the block literal.
444 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
445 CallArgList Args;
446 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000447
Anders Carlssonacfde802009-02-12 00:39:25 +0000448 // And the rest of the arguments.
Mike Stumpa5448542009-02-13 15:32:32 +0000449 for (CallExpr::const_arg_iterator i = E->arg_begin(), e = E->arg_end();
Anders Carlssonacfde802009-02-12 00:39:25 +0000450 i != e; ++i)
Mike Stumpa5448542009-02-13 15:32:32 +0000451 Args.push_back(std::make_pair(EmitAnyExprToTemp(*i),
Anders Carlssonacfde802009-02-12 00:39:25 +0000452 i->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000453
Anders Carlssonacfde802009-02-12 00:39:25 +0000454 // And call the block.
Mike Stumpa5448542009-02-13 15:32:32 +0000455 return EmitCall(CGM.getTypes().getFunctionInfo(E->getType(), Args),
Anders Carlssonacfde802009-02-12 00:39:25 +0000456 Func, Args);
457}
Anders Carlssond5cab542009-02-12 17:55:02 +0000458
Mike Stumpdab514f2009-03-04 03:23:46 +0000459llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
460 uint64_t &offset = BlockDecls[E->getDecl()];
461
462 const llvm::Type *Ty;
463 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
464
465 // FIXME: add support for copy/dispose helpers.
Mike Stump58919e12009-03-04 13:17:22 +0000466 if (!Enable__block && E->isByRef())
Mike Stumpdab514f2009-03-04 03:23:46 +0000467 ErrorUnsupported(E, "__block variable in block literal");
Mike Stumpa4f668f2009-03-06 01:33:24 +0000468 else if (!Enable__block && E->getType()->isBlockPointerType())
Mike Stumpdab514f2009-03-04 03:23:46 +0000469 ErrorUnsupported(E, "block pointer in block literal");
Mike Stump00470a12009-03-05 08:32:30 +0000470 else if (E->getDecl()->getAttr<ObjCNSObjectAttr>() ||
Mike Stumpdab514f2009-03-04 03:23:46 +0000471 getContext().isObjCNSObjectType(E->getType()))
472 ErrorUnsupported(E, "__attribute__((NSObject)) variable in block "
473 "literal");
Mike Stumpa4f668f2009-03-06 01:33:24 +0000474 else if (!Enable__block && getContext().isObjCObjectPointerType(E->getType()))
Mike Stumpdab514f2009-03-04 03:23:46 +0000475 ErrorUnsupported(E, "Objective-C variable in block literal");
476
477 // See if we have already allocated an offset for this variable.
478 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000479 // Don't run the expensive check, unless we have to.
480 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
481 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000482 // if not, allocate one now.
483 offset = getBlockOffset(E);
484 }
485
486 llvm::Value *BlockLiteral = LoadBlockStruct();
487 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
488 llvm::ConstantInt::get(llvm::Type::Int64Ty,
489 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000490 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000491 if (E->isByRef()) {
492 bool needsCopyDispose = BlockRequiresCopying(E->getType());
493 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
494 const llvm::Type *PtrStructTy
495 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
496 Ty = PtrStructTy;
497 Ty = llvm::PointerType::get(Ty, 0);
498 V = Builder.CreateBitCast(V, Ty);
499 V = Builder.CreateLoad(V, false);
500 V = Builder.CreateStructGEP(V, 1, "forwarding");
501 V = Builder.CreateLoad(V, false);
502 V = Builder.CreateBitCast(V, PtrStructTy);
503 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
504 } else {
505 Ty = llvm::PointerType::get(Ty, 0);
506 V = Builder.CreateBitCast(V, Ty);
507 }
508 return V;
509}
510
Mike Stump67a64482009-02-14 22:16:35 +0000511llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000512BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000513 // Generate the block descriptor.
514 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000515 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
516 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000517
Anders Carlssond5cab542009-02-12 17:55:02 +0000518 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000519
Anders Carlssond5cab542009-02-12 17:55:02 +0000520 // Reserved
521 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000522
Anders Carlssond5cab542009-02-12 17:55:02 +0000523 // Block literal size. For global blocks we just use the size of the generic
524 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000525 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000526 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Anders Carlssond5cab542009-02-12 17:55:02 +0000527 DescriptorFields[1] = llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000528
529 llvm::Constant *DescriptorStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000530 llvm::ConstantStruct::get(&DescriptorFields[0], 2);
Mike Stumpa5448542009-02-13 15:32:32 +0000531
Anders Carlssond5cab542009-02-12 17:55:02 +0000532 llvm::GlobalVariable *Descriptor =
533 new llvm::GlobalVariable(DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000534 llvm::GlobalVariable::InternalLinkage,
535 DescriptorStruct, "__block_descriptor_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000536 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000537
Anders Carlssond5cab542009-02-12 17:55:02 +0000538 // Generate the constants for the block literal.
539 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000540
Mike Stump67a64482009-02-14 22:16:35 +0000541 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000542 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000543 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000544 bool subBlockHasCopyDispose;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000545 llvm::Function *Fn
Mike Stump90a90432009-03-04 18:47:42 +0000546 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, subBlockSize,
547 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000548 subBlockDeclRefDecls,
549 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000550 assert(subBlockSize == BlockLiteralSize
551 && "no imports allowed for global block");
Mike Stump00470a12009-03-05 08:32:30 +0000552 assert(!subBlockHasCopyDispose && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000553
Anders Carlssond5cab542009-02-12 17:55:02 +0000554 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000555 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000556
Anders Carlssond5cab542009-02-12 17:55:02 +0000557 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000558 LiteralFields[1] =
Anders Carlsson8045ee02009-03-01 21:09:29 +0000559 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000560
Anders Carlssond5cab542009-02-12 17:55:02 +0000561 // Reserved
Mike Stump7cbb3602009-02-13 16:01:35 +0000562 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000563
Anders Carlssond5cab542009-02-12 17:55:02 +0000564 // Function
565 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000566
Anders Carlssond5cab542009-02-12 17:55:02 +0000567 // Descriptor
568 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000569
570 llvm::Constant *BlockLiteralStruct =
Anders Carlssond5cab542009-02-12 17:55:02 +0000571 llvm::ConstantStruct::get(&LiteralFields[0], 5);
Mike Stumpa5448542009-02-13 15:32:32 +0000572
573 llvm::GlobalVariable *BlockLiteral =
Anders Carlssond5cab542009-02-12 17:55:02 +0000574 new llvm::GlobalVariable(BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000575 llvm::GlobalVariable::InternalLinkage,
576 BlockLiteralStruct, "__block_literal_global",
Anders Carlssond5cab542009-02-12 17:55:02 +0000577 &getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000578
Anders Carlssond5cab542009-02-12 17:55:02 +0000579 return BlockLiteral;
580}
581
Mike Stump4e7a1f72009-02-21 20:00:35 +0000582llvm::Value *CodeGenFunction::LoadBlockStruct() {
583 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
584}
585
Mike Stump00470a12009-03-05 08:32:30 +0000586llvm::Function *
587CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
588 const BlockInfo& Info,
589 uint64_t &Size,
590 uint64_t &Align,
591 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
592 bool &subBlockHasCopyDispose) {
Douglas Gregor72564e72009-02-26 23:50:07 +0000593 const FunctionProtoType *FTy =
Chris Lattner161d36d2009-02-28 19:01:03 +0000594 cast<FunctionProtoType>(BExpr->getFunctionType());
Mike Stumpa5448542009-02-13 15:32:32 +0000595
Anders Carlssond5cab542009-02-12 17:55:02 +0000596 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000597
Chris Lattner161d36d2009-02-28 19:01:03 +0000598 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000599
600 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000601 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000602 ImplicitParamDecl::Create(getContext(), 0,
603 SourceLocation(), 0,
604 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000605
Anders Carlssond5cab542009-02-12 17:55:02 +0000606 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000607 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000608
609 for (BlockDecl::param_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000610 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000611 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000612
613 const CGFunctionInfo &FI =
Anders Carlssond5cab542009-02-12 17:55:02 +0000614 CGM.getTypes().getFunctionInfo(FTy->getResultType(), Args);
615
Mike Stump67a64482009-02-14 22:16:35 +0000616 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000617 CodeGenTypes &Types = CGM.getTypes();
618 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, FTy->isVariadic());
Mike Stumpa5448542009-02-13 15:32:32 +0000619
620 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000621 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
622 Name,
623 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000624
625 StartFunction(BD, FTy->getResultType(), Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000626 BExpr->getBody()->getLocEnd());
627 EmitStmt(BExpr->getBody());
628 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000629
Mike Stump8a2b4b12009-02-25 23:33:13 +0000630 // The runtime needs a minimum alignment of a void *.
631 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
632 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
633
Mike Stump4e7a1f72009-02-21 20:00:35 +0000634 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000635 Align = BlockAlign;
636 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000637 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000638 return Fn;
639}
Mike Stumpa99038c2009-02-28 09:07:16 +0000640
641uint64_t CodeGenFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
642 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
643
644 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
645 uint64_t Align = getContext().getDeclAlignInBytes(D);
646
647 if (BDRE->isByRef()) {
648 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
649 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
650 }
651
652 assert ((Align > 0) && "alignment must be 1 byte or more");
653
654 uint64_t OldOffset = BlockOffset;
655
656 // Ensure proper alignment, even if it means we have to have a gap
657 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
658 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000659
Mike Stumpa99038c2009-02-28 09:07:16 +0000660 uint64_t Pad = BlockOffset - OldOffset;
661 if (Pad) {
662 llvm::ArrayType::get(llvm::Type::Int8Ty, Pad);
663 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
664 llvm::APInt(32, Pad),
665 ArrayType::Normal, 0);
666 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
667 0, QualType(PadTy), VarDecl::None,
668 SourceLocation());
669 Expr *E;
670 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
671 SourceLocation(), false, false);
672 BlockDeclRefDecls.push_back(E);
673 }
674 BlockDeclRefDecls.push_back(BDRE);
675
676 BlockOffset += Size;
677 return BlockOffset-Size;
678}
Mike Stumpdab514f2009-03-04 03:23:46 +0000679
Mike Stumpa4f668f2009-03-06 01:33:24 +0000680llvm::Constant *BlockFunction::GenerateCopyHelperFunction() {
681 QualType R = getContext().VoidTy;
682
683 FunctionArgList Args;
684 // FIXME: This leaks
685 ImplicitParamDecl *Src =
686 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
687 getContext().getPointerType(getContext().VoidTy));
688
689 Args.push_back(std::make_pair(Src, Src->getType()));
690
691 const CGFunctionInfo &FI =
692 CGM.getTypes().getFunctionInfo(R, Args);
693
694 std::string Name = std::string("__copy_helper_block_");
695 CodeGenTypes &Types = CGM.getTypes();
696 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
697
698 llvm::Function *Fn =
699 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
700 Name,
701 &CGM.getModule());
702
703 IdentifierInfo *II
704 = &CGM.getContext().Idents.get("__copy_helper_block_");
705
706 FunctionDecl *FD = FunctionDecl::Create(getContext(),
707 getContext().getTranslationUnitDecl(),
708 SourceLocation(), II, R,
709 FunctionDecl::Static, false,
710 true);
711 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
712 // EmitStmt(BExpr->getBody());
713 CGF.FinishFunction();
714
715 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000716}
717
Mike Stumpa4f668f2009-03-06 01:33:24 +0000718llvm::Constant *BlockFunction::GenerateDestroyHelperFunction() {
719 QualType R = getContext().VoidTy;
720
721 FunctionArgList Args;
722 // FIXME: This leaks
723 ImplicitParamDecl *Src =
724 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
725 getContext().getPointerType(getContext().VoidTy));
726
727 Args.push_back(std::make_pair(Src, Src->getType()));
728
729 const CGFunctionInfo &FI =
730 CGM.getTypes().getFunctionInfo(R, Args);
731
732 std::string Name = std::string("__destroy_helper_block_");
733 CodeGenTypes &Types = CGM.getTypes();
734 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
735
736 llvm::Function *Fn =
737 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
738 Name,
739 &CGM.getModule());
740
741 IdentifierInfo *II
742 = &CGM.getContext().Idents.get("__destroy_helper_block_");
743
744 FunctionDecl *FD = FunctionDecl::Create(getContext(),
745 getContext().getTranslationUnitDecl(),
746 SourceLocation(), II, R,
747 FunctionDecl::Static, false,
748 true);
749 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
750 // EmitStmt(BExpr->getBody());
751 CGF.FinishFunction();
752
753 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
754}
755
756llvm::Constant *BlockFunction::BuildCopyHelper(int flag) {
757 return CodeGenFunction(CGM).GenerateCopyHelperFunction();
758}
759
760llvm::Constant *BlockFunction::BuildDestroyHelper(int flag) {
761 return CodeGenFunction(CGM).GenerateDestroyHelperFunction();
Mike Stumpdab514f2009-03-04 03:23:46 +0000762}
Mike Stump797b6322009-03-05 01:23:13 +0000763
764llvm::Value *BlockFunction::getBlockObjectDispose() {
765 if (CGM.BlockObjectDispose == 0) {
766 const llvm::FunctionType *FTy;
767 std::vector<const llvm::Type*> ArgTys;
768 const llvm::Type *ResultType = llvm::Type::VoidTy;
769 ArgTys.push_back(PtrToInt8Ty);
770 ArgTys.push_back(llvm::Type::Int32Ty);
771 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +0000772 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +0000773 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
774 }
775 return CGM.BlockObjectDispose;
776}
777
778void BlockFunction::BuildBlockRelease(const VarDecl &D, llvm::Value *DeclPtr) {
779 llvm::Value *F = getBlockObjectDispose();
780 llvm::Value *N, *V;
781 V = Builder.CreateStructGEP(DeclPtr, 1, "forwarding");
782 V = Builder.CreateLoad(V, false);
783 V = Builder.CreateBitCast(V, PtrToInt8Ty);
784 N = llvm::ConstantInt::get(llvm::Type::Int32Ty, BLOCK_FIELD_IS_BYREF);
785 Builder.CreateCall2(F, V, N);
786}
Mike Stump00470a12009-03-05 08:32:30 +0000787
788ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }