blob: c05d3235dd89257a56bdb2fcae0135eb0cece549 [file] [log] [blame]
Anders Carlssond2a889b2009-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 Stumpfc5e6de2009-03-20 21:53:12 +000016#include "clang/AST/DeclObjC.h"
Anders Carlssond2a889b2009-02-12 00:39:25 +000017#include "llvm/Module.h"
Anders Carlsson1f1cd392009-02-12 17:55:02 +000018#include "llvm/Target/TargetData.h"
Anders Carlssond2a889b2009-02-12 00:39:25 +000019
20#include <algorithm>
21
22using namespace clang;
23using namespace CodeGen;
24
Mike Stumpb3a6fac2009-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 Stumpb3a6fac2009-03-04 13:17:22 +000028
Mike Stump9d8c1262009-03-06 18:42:23 +000029llvm::Constant *CodeGenFunction::
Mike Stump68bb7a22009-03-25 17:58:24 +000030BuildDescriptorBlockDecl(bool BlockHasCopyDispose, uint64_t Size,
31 const llvm::StructType* Ty,
Mike Stump1fa52fe2009-03-07 02:35:30 +000032 std::vector<HelperInfo> *NoteForHelper) {
Mike Stumpff8f0872009-02-13 16:55:51 +000033 const llvm::Type *UnsignedLongTy
34 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpb95bc002009-02-13 16:19:19 +000035 llvm::Constant *C;
36 std::vector<llvm::Constant*> Elts;
37
38 // reserved
Mike Stumpff8f0872009-02-13 16:55:51 +000039 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpb95bc002009-02-13 16:19:19 +000040 Elts.push_back(C);
41
42 // Size
Mike Stump139c3962009-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 Stumpfca5da02009-02-21 20:00:35 +000046 C = llvm::ConstantInt::get(UnsignedLongTy, Size);
Mike Stumpb95bc002009-02-13 16:19:19 +000047 Elts.push_back(C);
48
49 if (BlockHasCopyDispose) {
50 // copy_func_helper_decl
Mike Stump1fa52fe2009-03-07 02:35:30 +000051 Elts.push_back(BuildCopyHelper(Ty, *NoteForHelper));
Mike Stumpb95bc002009-02-13 16:19:19 +000052
53 // destroy_func_decl
Mike Stump1fa52fe2009-03-07 02:35:30 +000054 Elts.push_back(BuildDestroyHelper(Ty, *NoteForHelper));
Mike Stumpb95bc002009-02-13 16:19:19 +000055 }
56
57 C = llvm::ConstantStruct::get(Elts);
58
Mike Stumpb95bc002009-02-13 16:19:19 +000059 C = new llvm::GlobalVariable(C->getType(), true,
60 llvm::GlobalValue::InternalLinkage,
Mike Stump92ea8882009-02-13 20:17:16 +000061 C, "__block_descriptor_tmp", &CGM.getModule());
Mike Stumpb95bc002009-02-13 16:19:19 +000062 return C;
63}
64
Mike Stump1f010b52009-03-04 18:17:45 +000065llvm::Constant *BlockModule::getNSConcreteGlobalBlock() {
Mike Stump5f87e9d2009-02-13 17:23:42 +000066 if (NSConcreteGlobalBlock)
67 return NSConcreteGlobalBlock;
68
Mike Stump56447902009-02-13 19:38:12 +000069 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stumpf13eac12009-03-04 22:48:06 +000070 // same thing as CreateRuntimeFunction if there's already a variable with the
71 // same name.
Mike Stump5f87e9d2009-02-13 17:23:42 +000072 NSConcreteGlobalBlock
Mike Stump1bdbf632009-03-05 08:32:30 +000073 = new llvm::GlobalVariable(PtrToInt8Ty, false,
Mike Stump5f87e9d2009-02-13 17:23:42 +000074 llvm::GlobalValue::ExternalLinkage,
75 0, "_NSConcreteGlobalBlock",
76 &getModule());
77
78 return NSConcreteGlobalBlock;
79}
80
Mike Stump1f010b52009-03-04 18:17:45 +000081llvm::Constant *BlockModule::getNSConcreteStackBlock() {
Mike Stumpeb3a5ca2009-02-13 19:29:27 +000082 if (NSConcreteStackBlock)
83 return NSConcreteStackBlock;
84
Mike Stump56447902009-02-13 19:38:12 +000085 // FIXME: We should have a CodeGenModule::AddRuntimeVariable that does the
Mike Stumpf13eac12009-03-04 22:48:06 +000086 // same thing as CreateRuntimeFunction if there's already a variable with the
87 // same name.
Mike Stumpeb3a5ca2009-02-13 19:29:27 +000088 NSConcreteStackBlock
Mike Stump1bdbf632009-03-05 08:32:30 +000089 = new llvm::GlobalVariable(PtrToInt8Ty, false,
Mike Stumpeb3a5ca2009-02-13 19:29:27 +000090 llvm::GlobalValue::ExternalLinkage,
91 0, "_NSConcreteStackBlock",
92 &getModule());
93
94 return NSConcreteStackBlock;
95}
96
Mike Stump1bdbf632009-03-05 08:32:30 +000097static void CollectBlockDeclRefInfo(const Stmt *S,
Anders Carlsson6cf64be2009-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 Dunbar56941d32009-03-02 07:00:57 +0000101 if (*I)
102 CollectBlockDeclRefInfo(*I, Info);
Mike Stump1bdbf632009-03-05 08:32:30 +0000103
Anders Carlsson6cf64be2009-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 Stump1bdbf632009-03-05 08:32:30 +0000108
Anders Carlsson6cf64be2009-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 Stumpf13eac12009-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 Carlsson6cf64be2009-03-01 01:09:12 +0000118static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info)
119{
120 return Info.ByRefDeclRefs.empty() && Info.ByCopyDeclRefs.empty();
121}
122
Mike Stumpf13eac12009-03-04 22:48:06 +0000123// FIXME: Push most into CGM, passing down a few bits, like current function
124// name.
Mike Stumpf1711822009-02-25 23:33:13 +0000125llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpb95bc002009-02-13 16:19:19 +0000126
Anders Carlsson6cf64be2009-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 Stumpf13eac12009-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 Stumpad9605d2009-03-04 03:23:46 +0000135 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson6cf64be2009-03-01 01:09:12 +0000136 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump1bdbf632009-03-05 08:32:30 +0000137
138 std::vector<llvm::Constant*> Elts(5);
Mike Stumpb95bc002009-02-13 16:19:19 +0000139 llvm::Constant *C;
Mike Stumpf1711822009-02-25 23:33:13 +0000140 llvm::Value *V;
Mike Stumpb95bc002009-02-13 16:19:19 +0000141
Mike Stumpb95bc002009-02-13 16:19:19 +0000142 {
143 // C = BuildBlockStructInitlist();
144 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
145
Mike Stump1bdbf632009-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 Stump68bb7a22009-03-25 17:58:24 +0000151 bool subBlockHasCopyDispose = false;
Mike Stump1bdbf632009-03-05 08:32:30 +0000152 llvm::Function *Fn
Mike Stumpfc5e6de2009-03-20 21:53:12 +0000153 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl, LocalDeclMap,
Mike Stumpa20c59e2009-03-13 23:34:28 +0000154 subBlockSize,
Mike Stump1bdbf632009-03-05 08:32:30 +0000155 subBlockAlign,
156 subBlockDeclRefDecls,
Mike Stump68bb7a22009-03-25 17:58:24 +0000157 subBlockHasCopyDispose);
158 BlockHasCopyDispose |= subBlockHasCopyDispose;
Mike Stump1bdbf632009-03-05 08:32:30 +0000159 Elts[3] = Fn;
160
Mike Stump68bb7a22009-03-25 17:58:24 +0000161 if (subBlockHasCopyDispose)
Mike Stumpb95bc002009-02-13 16:19:19 +0000162 flags |= BLOCK_HAS_COPY_DISPOSE;
163
Mike Stump92ea8882009-02-13 20:17:16 +0000164 // __isa
Mike Stumpeb3a5ca2009-02-13 19:29:27 +0000165 C = CGM.getNSConcreteStackBlock();
Mike Stumpb95bc002009-02-13 16:19:19 +0000166 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump1bdbf632009-03-05 08:32:30 +0000167 Elts[0] = C;
Mike Stumpb95bc002009-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 Stump1bdbf632009-03-05 08:32:30 +0000173 Elts[1] = C;
Mike Stumpb95bc002009-02-13 16:19:19 +0000174
175 // __reserved
176 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump1bdbf632009-03-05 08:32:30 +0000177 Elts[2] = C;
Mike Stumpb95bc002009-02-13 16:19:19 +0000178
Mike Stumpf1711822009-02-25 23:33:13 +0000179 if (subBlockDeclRefDecls.size() == 0) {
Mike Stump9d8c1262009-03-06 18:42:23 +0000180 // __descriptor
Mike Stump68bb7a22009-03-25 17:58:24 +0000181 assert(subBlockHasCopyDispose == false);
182 Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize, 0, 0);
Mike Stump9d8c1262009-03-06 18:42:23 +0000183
Mike Stumpa7db9be2009-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 Stumpf1711822009-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 Stump1bdbf632009-03-05 08:32:30 +0000199
Mike Stumpf1711822009-02-25 23:33:13 +0000200 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
Mike Stump1fa52fe2009-03-07 02:35:30 +0000201 for (int i=0; i<4; ++i)
Mike Stumpf1711822009-02-25 23:33:13 +0000202 Types[i] = Elts[i]->getType();
Mike Stump1fa52fe2009-03-07 02:35:30 +0000203 Types[4] = PtrToInt8Ty;
Mike Stumpf1711822009-02-25 23:33:13 +0000204
Mike Stump2b6933f2009-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 Stumpad9605d2009-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 Stump2b6933f2009-02-28 09:07:16 +0000214 }
Mike Stumpf1711822009-02-25 23:33:13 +0000215
Mike Stump1fa52fe2009-03-07 02:35:30 +0000216 llvm::StructType *Ty = llvm::StructType::get(Types, true);
Mike Stumpf1711822009-02-25 23:33:13 +0000217
218 llvm::AllocaInst *A = CreateTempAlloca(Ty);
219 A->setAlignment(subBlockAlign);
220 V = A;
221
Mike Stump1fa52fe2009-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 Stumpf1711822009-02-25 23:33:13 +0000226 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump1bdbf632009-03-05 08:32:30 +0000227
Mike Stumpf1711822009-02-25 23:33:13 +0000228 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
229 {
Mike Stump2b6933f2009-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 Stumpf1711822009-02-25 23:33:13 +0000234
Mike Stump2b6933f2009-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 Stumpad9605d2009-03-04 03:23:46 +0000242 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stump1fa52fe2009-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 Stump2b6933f2009-02-28 09:07:16 +0000248 if (LocalDeclMap[VD]) {
Mike Stumpad9605d2009-03-04 03:23:46 +0000249 if (BDRE->isByRef()) {
Mike Stump1fa52fe2009-03-07 02:35:30 +0000250 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
Mike Stump0a33ed32009-03-07 06:04:31 +0000251 // FIXME: Someone double check this.
252 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpad9605d2009-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 Stump1fa52fe2009-03-07 02:35:30 +0000259 ++helpersize;
Mike Stumpad9605d2009-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 Stump2b6933f2009-02-28 09:07:16 +0000265 }
Mike Stumpad9605d2009-03-04 03:23:46 +0000266 if (BDRE->isByRef()) {
Mike Stump29782de2009-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 Stump2b6933f2009-02-28 09:07:16 +0000270 E = new (getContext())
271 UnaryOperator(E, UnaryOperator::AddrOf,
272 getContext().getPointerType(E->getType()),
273 SourceLocation());
Mike Stumpad9605d2009-03-04 03:23:46 +0000274 }
Mike Stump1fa52fe2009-03-07 02:35:30 +0000275 ++helpersize;
Mike Stump2b6933f2009-02-28 09:07:16 +0000276
Mike Stump2b6933f2009-02-28 09:07:16 +0000277 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpad9605d2009-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 Stumpf13eac12009-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 Stump1bdbf632009-03-05 08:32:30 +0000288
Mike Stumpf13eac12009-03-04 22:48:06 +0000289 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump1bdbf632009-03-05 08:32:30 +0000290
Mike Stumpf13eac12009-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 Stumpad9605d2009-03-04 03:23:46 +0000296 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpf13eac12009-03-04 22:48:06 +0000297 Loc = Builder.CreateLoad(Loc, false);
298 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpad9605d2009-03-04 03:23:46 +0000299 }
300 Builder.CreateStore(Loc, Addr);
301 } else if (r.isComplex())
Mike Stumpf1711822009-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 Stump1fa52fe2009-03-07 02:35:30 +0000311 NoteForHelper.resize(helpersize);
Mike Stump9d8c1262009-03-06 18:42:23 +0000312
313 // __descriptor
Mike Stump68bb7a22009-03-25 17:58:24 +0000314 llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose,
315 subBlockSize, Ty,
Mike Stump1fa52fe2009-03-07 02:35:30 +0000316 &NoteForHelper);
317 Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty);
318 Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp"));
Mike Stumpb95bc002009-02-13 16:19:19 +0000319 }
Mike Stump1bdbf632009-03-05 08:32:30 +0000320
Mike Stumpd55240e2009-02-19 01:01:04 +0000321 QualType BPT = BE->getType();
Mike Stumpf1711822009-02-25 23:33:13 +0000322 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpb95bc002009-02-13 16:19:19 +0000323}
324
325
Mike Stump1f010b52009-03-04 18:17:45 +0000326const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stump95e54802009-02-13 15:16:56 +0000327 if (BlockDescriptorType)
328 return BlockDescriptorType;
329
Mike Stumpc4ae9632009-02-13 15:32:32 +0000330 const llvm::Type *UnsignedLongTy =
Mike Stump95e54802009-02-13 15:16:56 +0000331 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000332
Mike Stump95e54802009-02-13 15:16:56 +0000333 // struct __block_descriptor {
334 // unsigned long reserved;
335 // unsigned long block_size;
336 // };
Mike Stumpc4ae9632009-02-13 15:32:32 +0000337 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy,
338 UnsignedLongTy,
Mike Stump95e54802009-02-13 15:16:56 +0000339 NULL);
340
341 getModule().addTypeName("struct.__block_descriptor",
342 BlockDescriptorType);
343
344 return BlockDescriptorType;
Anders Carlssond2a889b2009-02-12 00:39:25 +0000345}
346
Mike Stump1f010b52009-03-04 18:17:45 +0000347const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump0dffa462009-02-13 15:25:34 +0000348 if (GenericBlockLiteralType)
349 return GenericBlockLiteralType;
350
Mike Stumpc4ae9632009-02-13 15:32:32 +0000351 const llvm::Type *BlockDescPtrTy =
Mike Stump0dffa462009-02-13 15:25:34 +0000352 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpc4ae9632009-02-13 15:32:32 +0000353
Mike Stump7b7cd8b2009-02-13 16:01:35 +0000354 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
355 getTypes().ConvertType(getContext().IntTy));
356
Mike Stump0dffa462009-02-13 15:25:34 +0000357 // struct __block_literal_generic {
Mike Stumpd55240e2009-02-19 01:01:04 +0000358 // void *__isa;
359 // int __flags;
360 // int __reserved;
361 // void (*__invoke)(void *);
362 // struct __block_descriptor *__descriptor;
Mike Stump0dffa462009-02-13 15:25:34 +0000363 // };
Mike Stump60294662009-03-05 01:23:13 +0000364 GenericBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stump7b7cd8b2009-02-13 16:01:35 +0000365 IntTy,
366 IntTy,
Mike Stump60294662009-03-05 01:23:13 +0000367 PtrToInt8Ty,
Mike Stump0dffa462009-02-13 15:25:34 +0000368 BlockDescPtrTy,
369 NULL);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000370
Mike Stump0dffa462009-02-13 15:25:34 +0000371 getModule().addTypeName("struct.__block_literal_generic",
372 GenericBlockLiteralType);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000373
Mike Stump0dffa462009-02-13 15:25:34 +0000374 return GenericBlockLiteralType;
Anders Carlssond2a889b2009-02-12 00:39:25 +0000375}
376
Mike Stump1f010b52009-03-04 18:17:45 +0000377const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpd55240e2009-02-19 01:01:04 +0000378 if (GenericExtendedBlockLiteralType)
379 return GenericExtendedBlockLiteralType;
380
Mike Stumpd55240e2009-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 Stump60294662009-03-05 01:23:13 +0000396 GenericExtendedBlockLiteralType = llvm::StructType::get(PtrToInt8Ty,
Mike Stumpd55240e2009-02-19 01:01:04 +0000397 IntTy,
398 IntTy,
Mike Stump60294662009-03-05 01:23:13 +0000399 PtrToInt8Ty,
Mike Stumpd55240e2009-02-19 01:01:04 +0000400 BlockDescPtrTy,
Mike Stump60294662009-03-05 01:23:13 +0000401 PtrToInt8Ty,
402 PtrToInt8Ty,
Mike Stumpd55240e2009-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 Stumpc4ae9632009-02-13 15:32:32 +0000411/// getBlockFunctionType - Given a BlockPointerType, will return the
Anders Carlssond2a889b2009-02-12 00:39:25 +0000412/// function type for the block, including the first block literal argument.
413static QualType getBlockFunctionType(ASTContext &Ctx,
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000414 const BlockPointerType *BPT) {
Mike Stump896ceed2009-04-01 01:17:39 +0000415 const FunctionProtoType *FTy = dyn_cast<FunctionProtoType>(BPT->getPointeeType());
416 const clang::QualType ResType = BPT->getPointeeType()->getAsFunctionType()->getResultType();
Mike Stumpc4ae9632009-02-13 15:32:32 +0000417
Anders Carlssond2a889b2009-02-12 00:39:25 +0000418 llvm::SmallVector<QualType, 8> Types;
419 Types.push_back(Ctx.getPointerType(Ctx.VoidTy));
Mike Stumpc4ae9632009-02-13 15:32:32 +0000420
Mike Stump896ceed2009-04-01 01:17:39 +0000421 if (FTy)
422 for (FunctionProtoType::arg_type_iterator i = FTy->arg_type_begin(),
423 e = FTy->arg_type_end(); i != e; ++i)
424 Types.push_back(*i);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000425
Mike Stump896ceed2009-04-01 01:17:39 +0000426 return Ctx.getFunctionType(ResType, &Types[0], Types.size(),
427 FTy && FTy->isVariadic(), 0);
Anders Carlssond2a889b2009-02-12 00:39:25 +0000428}
429
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000430RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpc4ae9632009-02-13 15:32:32 +0000431 const BlockPointerType *BPT =
Anders Carlssond2a889b2009-02-12 00:39:25 +0000432 E->getCallee()->getType()->getAsBlockPointerType();
Mike Stumpc4ae9632009-02-13 15:32:32 +0000433
Anders Carlssond2a889b2009-02-12 00:39:25 +0000434 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
435
436 // Get a pointer to the generic block literal.
437 const llvm::Type *BlockLiteralTy =
Mike Stump0dffa462009-02-13 15:25:34 +0000438 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssond2a889b2009-02-12 00:39:25 +0000439
440 // Bitcast the callee to a block literal.
Mike Stumpc4ae9632009-02-13 15:32:32 +0000441 llvm::Value *BlockLiteral =
Anders Carlssond2a889b2009-02-12 00:39:25 +0000442 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
443
444 // Get the function pointer from the literal.
445 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Mike Stump39bcc612009-02-22 13:27:11 +0000446 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
Anders Carlssond2a889b2009-02-12 00:39:25 +0000447
448 // Cast the function pointer to the right type.
Mike Stumpc4ae9632009-02-13 15:32:32 +0000449 const llvm::Type *BlockFTy =
Anders Carlssond2a889b2009-02-12 00:39:25 +0000450 ConvertType(getBlockFunctionType(getContext(), BPT));
451 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
452 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
453
Mike Stumpc4ae9632009-02-13 15:32:32 +0000454 BlockLiteral =
455 Builder.CreateBitCast(BlockLiteral,
Anders Carlssond2a889b2009-02-12 00:39:25 +0000456 llvm::PointerType::getUnqual(llvm::Type::Int8Ty),
457 "tmp");
Mike Stumpc4ae9632009-02-13 15:32:32 +0000458
Anders Carlssond2a889b2009-02-12 00:39:25 +0000459 // Add the block literal.
460 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
461 CallArgList Args;
462 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpc4ae9632009-02-13 15:32:32 +0000463
Anders Carlssond2a889b2009-02-12 00:39:25 +0000464 // And the rest of the arguments.
Mike Stumpc4ae9632009-02-13 15:32:32 +0000465 for (CallExpr::const_arg_iterator i = E->arg_begin(), e = E->arg_end();
Anders Carlssond2a889b2009-02-12 00:39:25 +0000466 i != e; ++i)
Mike Stumpc4ae9632009-02-13 15:32:32 +0000467 Args.push_back(std::make_pair(EmitAnyExprToTemp(*i),
Anders Carlssond2a889b2009-02-12 00:39:25 +0000468 i->getType()));
Mike Stumpc4ae9632009-02-13 15:32:32 +0000469
Anders Carlssond2a889b2009-02-12 00:39:25 +0000470 // And call the block.
Mike Stumpc4ae9632009-02-13 15:32:32 +0000471 return EmitCall(CGM.getTypes().getFunctionInfo(E->getType(), Args),
Anders Carlssond2a889b2009-02-12 00:39:25 +0000472 Func, Args);
473}
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000474
Mike Stumpad9605d2009-03-04 03:23:46 +0000475llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
476 uint64_t &offset = BlockDecls[E->getDecl()];
477
478 const llvm::Type *Ty;
479 Ty = CGM.getTypes().ConvertType(E->getDecl()->getType());
480
Mike Stumpad9605d2009-03-04 03:23:46 +0000481 // See if we have already allocated an offset for this variable.
482 if (offset == 0) {
Mike Stump1bdbf632009-03-05 08:32:30 +0000483 // Don't run the expensive check, unless we have to.
484 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
485 BlockHasCopyDispose = true;
Mike Stumpad9605d2009-03-04 03:23:46 +0000486 // if not, allocate one now.
487 offset = getBlockOffset(E);
488 }
489
490 llvm::Value *BlockLiteral = LoadBlockStruct();
491 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
492 llvm::ConstantInt::get(llvm::Type::Int64Ty,
493 offset),
Mike Stumpf13eac12009-03-04 22:48:06 +0000494 "block.literal");
Mike Stumpad9605d2009-03-04 03:23:46 +0000495 if (E->isByRef()) {
496 bool needsCopyDispose = BlockRequiresCopying(E->getType());
497 uint64_t Align = getContext().getDeclAlignInBytes(E->getDecl());
498 const llvm::Type *PtrStructTy
499 = llvm::PointerType::get(BuildByRefType(E->getType(), Align), 0);
Mike Stump29782de2009-03-21 21:00:35 +0000500 // The block literal will need a copy/destroy helper.
501 BlockHasCopyDispose = true;
Mike Stumpad9605d2009-03-04 03:23:46 +0000502 Ty = PtrStructTy;
503 Ty = llvm::PointerType::get(Ty, 0);
504 V = Builder.CreateBitCast(V, Ty);
505 V = Builder.CreateLoad(V, false);
506 V = Builder.CreateStructGEP(V, 1, "forwarding");
507 V = Builder.CreateLoad(V, false);
508 V = Builder.CreateBitCast(V, PtrStructTy);
509 V = Builder.CreateStructGEP(V, needsCopyDispose*2 + 4, "x");
510 } else {
511 Ty = llvm::PointerType::get(Ty, 0);
512 V = Builder.CreateBitCast(V, Ty);
513 }
514 return V;
515}
516
Mike Stumpfc5e6de2009-03-20 21:53:12 +0000517void CodeGenFunction::BlockForwardSelf() {
518 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
519 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
520 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
521 if (DMEntry)
522 return;
523 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
524 BlockDeclRefExpr *BDRE = new (getContext())
525 BlockDeclRefExpr(SelfDecl,
526 SelfDecl->getType(), SourceLocation(), false);
527 DMEntry = GetAddrOfBlockDecl(BDRE);
528}
529
Mike Stump084ba462009-02-14 22:16:35 +0000530llvm::Constant *
Mike Stumpd6d0ebe2009-03-04 18:47:42 +0000531BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000532 // Generate the block descriptor.
533 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7b7cd8b2009-02-13 16:01:35 +0000534 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
535 getTypes().ConvertType(getContext().IntTy));
Mike Stumpc4ae9632009-02-13 15:32:32 +0000536
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000537 llvm::Constant *DescriptorFields[2];
Mike Stumpc4ae9632009-02-13 15:32:32 +0000538
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000539 // Reserved
540 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000541
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000542 // Block literal size. For global blocks we just use the size of the generic
543 // block literal struct.
Mike Stumpc4ae9632009-02-13 15:32:32 +0000544 uint64_t BlockLiteralSize =
Mike Stump0dffa462009-02-13 15:25:34 +0000545 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000546 DescriptorFields[1] = llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000547
548 llvm::Constant *DescriptorStruct =
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000549 llvm::ConstantStruct::get(&DescriptorFields[0], 2);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000550
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000551 llvm::GlobalVariable *Descriptor =
552 new llvm::GlobalVariable(DescriptorStruct->getType(), true,
Mike Stumpc4ae9632009-02-13 15:32:32 +0000553 llvm::GlobalVariable::InternalLinkage,
554 DescriptorStruct, "__block_descriptor_global",
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000555 &getModule());
Mike Stumpc4ae9632009-02-13 15:32:32 +0000556
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000557 // Generate the constants for the block literal.
558 llvm::Constant *LiteralFields[5];
Mike Stumpc4ae9632009-02-13 15:32:32 +0000559
Mike Stump084ba462009-02-14 22:16:35 +0000560 CodeGenFunction::BlockInfo Info(0, n);
Mike Stumpf1711822009-02-25 23:33:13 +0000561 uint64_t subBlockSize, subBlockAlign;
Mike Stump2b6933f2009-02-28 09:07:16 +0000562 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbaradaf35f2009-03-12 03:07:24 +0000563 bool subBlockHasCopyDispose = false;
Mike Stumpa20c59e2009-03-13 23:34:28 +0000564 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stumpfca5da02009-02-21 20:00:35 +0000565 llvm::Function *Fn
Mike Stumpfc5e6de2009-03-20 21:53:12 +0000566 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stumpa20c59e2009-03-13 23:34:28 +0000567 subBlockSize,
Mike Stumpd6d0ebe2009-03-04 18:47:42 +0000568 subBlockAlign,
Mike Stump1bdbf632009-03-05 08:32:30 +0000569 subBlockDeclRefDecls,
570 subBlockHasCopyDispose);
Mike Stumpfca5da02009-02-21 20:00:35 +0000571 assert(subBlockSize == BlockLiteralSize
572 && "no imports allowed for global block");
Daniel Dunbaradaf35f2009-03-12 03:07:24 +0000573 assert(!subBlockHasCopyDispose && "no imports allowed for global block");
Mike Stumpc4ae9632009-02-13 15:32:32 +0000574
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000575 // isa
Mike Stump5f87e9d2009-02-13 17:23:42 +0000576 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpc4ae9632009-02-13 15:32:32 +0000577
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000578 // Flags
Mike Stump1bdbf632009-03-05 08:32:30 +0000579 LiteralFields[1] =
Anders Carlsson63810c62009-03-01 21:09:29 +0000580 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000581
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000582 // Reserved
Mike Stump7b7cd8b2009-02-13 16:01:35 +0000583 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000584
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000585 // Function
586 LiteralFields[3] = Fn;
Mike Stumpc4ae9632009-02-13 15:32:32 +0000587
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000588 // Descriptor
589 LiteralFields[4] = Descriptor;
Mike Stumpc4ae9632009-02-13 15:32:32 +0000590
591 llvm::Constant *BlockLiteralStruct =
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000592 llvm::ConstantStruct::get(&LiteralFields[0], 5);
Mike Stumpc4ae9632009-02-13 15:32:32 +0000593
594 llvm::GlobalVariable *BlockLiteral =
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000595 new llvm::GlobalVariable(BlockLiteralStruct->getType(), true,
Mike Stumpc4ae9632009-02-13 15:32:32 +0000596 llvm::GlobalVariable::InternalLinkage,
597 BlockLiteralStruct, "__block_literal_global",
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000598 &getModule());
Mike Stumpc4ae9632009-02-13 15:32:32 +0000599
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000600 return BlockLiteral;
601}
602
Mike Stumpfca5da02009-02-21 20:00:35 +0000603llvm::Value *CodeGenFunction::LoadBlockStruct() {
604 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
605}
606
Mike Stump1bdbf632009-03-05 08:32:30 +0000607llvm::Function *
608CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
609 const BlockInfo& Info,
Mike Stumpfc5e6de2009-03-20 21:53:12 +0000610 const Decl *OuterFuncDecl,
Mike Stumpa20c59e2009-03-13 23:34:28 +0000611 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump1bdbf632009-03-05 08:32:30 +0000612 uint64_t &Size,
613 uint64_t &Align,
614 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
615 bool &subBlockHasCopyDispose) {
Mike Stumpa20c59e2009-03-13 23:34:28 +0000616 // Arrange for local static and local extern declarations to appear
617 // to be local to this function as well, as they are directly referenced
618 // in a block.
619 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
620 i != ldm.end();
621 ++i) {
622 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
623
624 if (VD->getStorageClass() == VarDecl::Static
625 || VD->getStorageClass() == VarDecl::Extern)
626 LocalDeclMap[VD] = i->second;
627 }
628
Eli Friedman584abaf2009-03-28 03:24:54 +0000629 // FIXME: We need to rearrange the code for copy/dispose so we have this
630 // sooner, so we can calculate offsets correctly.
631 if (!BlockHasCopyDispose)
632 BlockOffset = CGM.getTargetData()
633 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
634 else
635 BlockOffset = CGM.getTargetData()
636 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
637 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
638
Douglas Gregor4fa58902009-02-26 23:50:07 +0000639 const FunctionProtoType *FTy =
Chris Lattner8130e7f2009-02-28 19:01:03 +0000640 cast<FunctionProtoType>(BExpr->getFunctionType());
Mike Stumpc4ae9632009-02-13 15:32:32 +0000641
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000642 FunctionArgList Args;
Mike Stumpc4ae9632009-02-13 15:32:32 +0000643
Chris Lattner8130e7f2009-02-28 19:01:03 +0000644 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000645
646 // FIXME: This leaks
Mike Stumpc4ae9632009-02-13 15:32:32 +0000647 ImplicitParamDecl *SelfDecl =
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000648 ImplicitParamDecl::Create(getContext(), 0,
649 SourceLocation(), 0,
650 getContext().getPointerType(getContext().VoidTy));
Mike Stumpc4ae9632009-02-13 15:32:32 +0000651
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000652 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stumpfca5da02009-02-21 20:00:35 +0000653 BlockStructDecl = SelfDecl;
Mike Stumpc4ae9632009-02-13 15:32:32 +0000654
Steve Naroff494cb0f2009-03-13 16:56:44 +0000655 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000656 e = BD->param_end(); i != e; ++i)
Mike Stump459207f2009-02-17 23:25:52 +0000657 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpc4ae9632009-02-13 15:32:32 +0000658
659 const CGFunctionInfo &FI =
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000660 CGM.getTypes().getFunctionInfo(FTy->getResultType(), Args);
661
Mike Stump084ba462009-02-14 22:16:35 +0000662 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000663 CodeGenTypes &Types = CGM.getTypes();
664 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, FTy->isVariadic());
Mike Stumpc4ae9632009-02-13 15:32:32 +0000665
666 llvm::Function *Fn =
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000667 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
668 Name,
669 &CGM.getModule());
Mike Stumpc4ae9632009-02-13 15:32:32 +0000670
671 StartFunction(BD, FTy->getResultType(), Fn, Args,
Chris Lattner8130e7f2009-02-28 19:01:03 +0000672 BExpr->getBody()->getLocEnd());
Mike Stumpfc5e6de2009-03-20 21:53:12 +0000673 CurFuncDecl = OuterFuncDecl;
Chris Lattner8130e7f2009-02-28 19:01:03 +0000674 EmitStmt(BExpr->getBody());
675 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000676
Mike Stumpf1711822009-02-25 23:33:13 +0000677 // The runtime needs a minimum alignment of a void *.
678 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
679 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
680
Mike Stumpfca5da02009-02-21 20:00:35 +0000681 Size = BlockOffset;
Mike Stumpf1711822009-02-25 23:33:13 +0000682 Align = BlockAlign;
683 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump1bdbf632009-03-05 08:32:30 +0000684 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlsson1f1cd392009-02-12 17:55:02 +0000685 return Fn;
686}
Mike Stump2b6933f2009-02-28 09:07:16 +0000687
Mike Stump1fa52fe2009-03-07 02:35:30 +0000688uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stump2b6933f2009-02-28 09:07:16 +0000689 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
690
691 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
692 uint64_t Align = getContext().getDeclAlignInBytes(D);
693
694 if (BDRE->isByRef()) {
695 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
696 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
697 }
698
699 assert ((Align > 0) && "alignment must be 1 byte or more");
700
701 uint64_t OldOffset = BlockOffset;
702
703 // Ensure proper alignment, even if it means we have to have a gap
704 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
705 BlockAlign = std::max(Align, BlockAlign);
Mike Stump1bdbf632009-03-05 08:32:30 +0000706
Mike Stump2b6933f2009-02-28 09:07:16 +0000707 uint64_t Pad = BlockOffset - OldOffset;
708 if (Pad) {
709 llvm::ArrayType::get(llvm::Type::Int8Ty, Pad);
710 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
711 llvm::APInt(32, Pad),
712 ArrayType::Normal, 0);
713 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
714 0, QualType(PadTy), VarDecl::None,
715 SourceLocation());
716 Expr *E;
717 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
718 SourceLocation(), false, false);
719 BlockDeclRefDecls.push_back(E);
720 }
721 BlockDeclRefDecls.push_back(BDRE);
722
723 BlockOffset += Size;
724 return BlockOffset-Size;
725}
Mike Stumpad9605d2009-03-04 03:23:46 +0000726
Mike Stump1fa52fe2009-03-07 02:35:30 +0000727llvm::Constant *BlockFunction::
728GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
729 std::vector<HelperInfo> &NoteForHelper) {
Mike Stumpecd79422009-03-06 01:33:24 +0000730 QualType R = getContext().VoidTy;
731
732 FunctionArgList Args;
733 // FIXME: This leaks
Mike Stump1fa52fe2009-03-07 02:35:30 +0000734 ImplicitParamDecl *Dst =
735 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
736 getContext().getPointerType(getContext().VoidTy));
737 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpecd79422009-03-06 01:33:24 +0000738 ImplicitParamDecl *Src =
739 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
740 getContext().getPointerType(getContext().VoidTy));
Mike Stumpecd79422009-03-06 01:33:24 +0000741 Args.push_back(std::make_pair(Src, Src->getType()));
742
743 const CGFunctionInfo &FI =
744 CGM.getTypes().getFunctionInfo(R, Args);
745
746 std::string Name = std::string("__copy_helper_block_");
747 CodeGenTypes &Types = CGM.getTypes();
748 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
749
750 llvm::Function *Fn =
751 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
752 Name,
753 &CGM.getModule());
754
755 IdentifierInfo *II
756 = &CGM.getContext().Idents.get("__copy_helper_block_");
757
758 FunctionDecl *FD = FunctionDecl::Create(getContext(),
759 getContext().getTranslationUnitDecl(),
760 SourceLocation(), II, R,
761 FunctionDecl::Static, false,
762 true);
763 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1fa52fe2009-03-07 02:35:30 +0000764
765 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
766 llvm::Type *PtrPtrT;
767 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
768 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
769 SrcObj = Builder.CreateLoad(SrcObj);
770
771 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
772 DstObj = Builder.CreateBitCast(DstObj, llvm::PointerType::get(T, 0));
773
774 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
775 int flag = NoteForHelper[i].flag;
776 int index = NoteForHelper[i].index;
777
778 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
779 || NoteForHelper[i].RequiresCopying) {
780 llvm::Value *Srcv = SrcObj;
781 Srcv = Builder.CreateStructGEP(Srcv, index);
782 Srcv = Builder.CreateBitCast(Srcv,
783 llvm::PointerType::get(PtrToInt8Ty, 0));
784 Srcv = Builder.CreateLoad(Srcv);
785
786 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
787 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
788
789 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
790 llvm::Value *F = getBlockObjectAssign();
791 Builder.CreateCall3(F, Dstv, Srcv, N);
792 }
793 }
794
Mike Stumpecd79422009-03-06 01:33:24 +0000795 CGF.FinishFunction();
796
797 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpad9605d2009-03-04 03:23:46 +0000798}
799
Mike Stump9d8c1262009-03-06 18:42:23 +0000800llvm::Constant *BlockFunction::
Mike Stump1fa52fe2009-03-07 02:35:30 +0000801GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
802 const llvm::StructType* T,
803 std::vector<HelperInfo> &NoteForHelper) {
Mike Stumpecd79422009-03-06 01:33:24 +0000804 QualType R = getContext().VoidTy;
805
806 FunctionArgList Args;
807 // FIXME: This leaks
808 ImplicitParamDecl *Src =
809 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
810 getContext().getPointerType(getContext().VoidTy));
811
812 Args.push_back(std::make_pair(Src, Src->getType()));
813
814 const CGFunctionInfo &FI =
815 CGM.getTypes().getFunctionInfo(R, Args);
816
817 std::string Name = std::string("__destroy_helper_block_");
818 CodeGenTypes &Types = CGM.getTypes();
819 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
820
821 llvm::Function *Fn =
822 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
823 Name,
824 &CGM.getModule());
825
826 IdentifierInfo *II
827 = &CGM.getContext().Idents.get("__destroy_helper_block_");
828
829 FunctionDecl *FD = FunctionDecl::Create(getContext(),
830 getContext().getTranslationUnitDecl(),
831 SourceLocation(), II, R,
832 FunctionDecl::Static, false,
833 true);
834 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump05a6d4e2009-03-07 02:53:18 +0000835
836 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
837 llvm::Type *PtrPtrT;
838 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
839 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
840 SrcObj = Builder.CreateLoad(SrcObj);
841
842 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
843 int flag = NoteForHelper[i].flag;
844 int index = NoteForHelper[i].index;
845
846 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
847 || NoteForHelper[i].RequiresCopying) {
848 llvm::Value *Srcv = SrcObj;
849 Srcv = Builder.CreateStructGEP(Srcv, index);
850 Srcv = Builder.CreateBitCast(Srcv,
851 llvm::PointerType::get(PtrToInt8Ty, 0));
852 Srcv = Builder.CreateLoad(Srcv);
853
854 BuildBlockRelease(Srcv, flag);
855 }
856 }
857
Mike Stumpecd79422009-03-06 01:33:24 +0000858 CGF.FinishFunction();
859
860 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
861}
862
Mike Stump1fa52fe2009-03-07 02:35:30 +0000863llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
864 std::vector<HelperInfo> &NoteForHelper) {
865 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
866 T, NoteForHelper);
Mike Stumpecd79422009-03-06 01:33:24 +0000867}
868
Mike Stump1fa52fe2009-03-07 02:35:30 +0000869llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
870 std::vector<HelperInfo> &NoteForHelper) {
871 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
872 T, NoteForHelper);
Mike Stumpad9605d2009-03-04 03:23:46 +0000873}
Mike Stump60294662009-03-05 01:23:13 +0000874
Mike Stump11973b62009-03-06 06:12:24 +0000875llvm::Constant *BlockFunction::
876GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stumpf4b62342009-03-06 02:29:21 +0000877 QualType R = getContext().VoidTy;
878
879 FunctionArgList Args;
880 // FIXME: This leaks
Mike Stump11973b62009-03-06 06:12:24 +0000881 ImplicitParamDecl *Dst =
882 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
883 getContext().getPointerType(getContext().VoidTy));
884 Args.push_back(std::make_pair(Dst, Dst->getType()));
885
886 // FIXME: This leaks
Mike Stumpf4b62342009-03-06 02:29:21 +0000887 ImplicitParamDecl *Src =
888 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
889 getContext().getPointerType(getContext().VoidTy));
Mike Stumpf4b62342009-03-06 02:29:21 +0000890 Args.push_back(std::make_pair(Src, Src->getType()));
891
892 const CGFunctionInfo &FI =
893 CGM.getTypes().getFunctionInfo(R, Args);
894
895 std::string Name = std::string("__Block_byref_id_object_copy_");
896 CodeGenTypes &Types = CGM.getTypes();
897 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
898
899 llvm::Function *Fn =
900 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
901 Name,
902 &CGM.getModule());
903
904 IdentifierInfo *II
905 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
906
907 FunctionDecl *FD = FunctionDecl::Create(getContext(),
908 getContext().getTranslationUnitDecl(),
909 SourceLocation(), II, R,
910 FunctionDecl::Static, false,
911 true);
912 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump11973b62009-03-06 06:12:24 +0000913
914 // dst->x
915 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
916 V = Builder.CreateBitCast(V, T);
917 V = Builder.CreateStructGEP(V, 6, "x");
918 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
919
920 // src->x
921 V = CGF.GetAddrOfLocalVar(Src);
922 V = Builder.CreateLoad(V);
923 V = Builder.CreateBitCast(V, T);
924 V = Builder.CreateStructGEP(V, 6, "x");
925 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
926 llvm::Value *SrcObj = Builder.CreateLoad(V);
927
928 flag |= BLOCK_BYREF_CALLER;
929
930 llvm::Value *N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
931 llvm::Value *F = getBlockObjectAssign();
932 Builder.CreateCall3(F, DstObj, SrcObj, N);
933
Mike Stumpf4b62342009-03-06 02:29:21 +0000934 CGF.FinishFunction();
935
936 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
937}
938
Mike Stump4a0e5132009-03-06 04:53:30 +0000939llvm::Constant *
940BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
941 int flag) {
Mike Stumpf4b62342009-03-06 02:29:21 +0000942 QualType R = getContext().VoidTy;
943
944 FunctionArgList Args;
945 // FIXME: This leaks
946 ImplicitParamDecl *Src =
947 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
948 getContext().getPointerType(getContext().VoidTy));
949
950 Args.push_back(std::make_pair(Src, Src->getType()));
951
952 const CGFunctionInfo &FI =
953 CGM.getTypes().getFunctionInfo(R, Args);
954
955 std::string Name = std::string("__Block_byref_id_object_dispose_");
956 CodeGenTypes &Types = CGM.getTypes();
957 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
958
959 llvm::Function *Fn =
960 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
961 Name,
962 &CGM.getModule());
963
964 IdentifierInfo *II
965 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
966
967 FunctionDecl *FD = FunctionDecl::Create(getContext(),
968 getContext().getTranslationUnitDecl(),
969 SourceLocation(), II, R,
970 FunctionDecl::Static, false,
971 true);
972 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump4a0e5132009-03-06 04:53:30 +0000973
974 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
975 V = Builder.CreateBitCast(V, T);
976 V = Builder.CreateStructGEP(V, 6, "x");
977 V = Builder.CreateBitCast(V, PtrToInt8Ty);
978
Mike Stump4a0e5132009-03-06 04:53:30 +0000979 flag |= BLOCK_BYREF_CALLER;
980 BuildBlockRelease(V, flag);
Mike Stumpf4b62342009-03-06 02:29:21 +0000981 CGF.FinishFunction();
982
983 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
984}
985
Mike Stump11973b62009-03-06 06:12:24 +0000986llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
987 int flag) {
988 return CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stumpf4b62342009-03-06 02:29:21 +0000989}
990
Mike Stump4a0e5132009-03-06 04:53:30 +0000991llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
992 int flag) {
993 return CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stumpf4b62342009-03-06 02:29:21 +0000994}
995
Mike Stump60294662009-03-05 01:23:13 +0000996llvm::Value *BlockFunction::getBlockObjectDispose() {
997 if (CGM.BlockObjectDispose == 0) {
998 const llvm::FunctionType *FTy;
999 std::vector<const llvm::Type*> ArgTys;
1000 const llvm::Type *ResultType = llvm::Type::VoidTy;
1001 ArgTys.push_back(PtrToInt8Ty);
1002 ArgTys.push_back(llvm::Type::Int32Ty);
1003 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump1bdbf632009-03-05 08:32:30 +00001004 CGM.BlockObjectDispose
Mike Stump60294662009-03-05 01:23:13 +00001005 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1006 }
1007 return CGM.BlockObjectDispose;
1008}
1009
Mike Stump11973b62009-03-06 06:12:24 +00001010llvm::Value *BlockFunction::getBlockObjectAssign() {
1011 if (CGM.BlockObjectAssign == 0) {
1012 const llvm::FunctionType *FTy;
1013 std::vector<const llvm::Type*> ArgTys;
1014 const llvm::Type *ResultType = llvm::Type::VoidTy;
1015 ArgTys.push_back(PtrToInt8Ty);
1016 ArgTys.push_back(PtrToInt8Ty);
1017 ArgTys.push_back(llvm::Type::Int32Ty);
1018 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
1019 CGM.BlockObjectAssign
1020 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1021 }
1022 return CGM.BlockObjectAssign;
1023}
1024
Mike Stump4a0e5132009-03-06 04:53:30 +00001025void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump60294662009-03-05 01:23:13 +00001026 llvm::Value *F = getBlockObjectDispose();
Mike Stump4a0e5132009-03-06 04:53:30 +00001027 llvm::Value *N;
Mike Stump60294662009-03-05 01:23:13 +00001028 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Mike Stump4a0e5132009-03-06 04:53:30 +00001029 N = llvm::ConstantInt::get(llvm::Type::Int32Ty, flag);
Mike Stump60294662009-03-05 01:23:13 +00001030 Builder.CreateCall2(F, V, N);
1031}
Mike Stump1bdbf632009-03-05 08:32:30 +00001032
1033ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump1fa52fe2009-03-07 02:35:30 +00001034
1035BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1036 CGBuilderTy &B)
1037 : CGM(cgm), CGF(cgf), Builder(B) {
1038 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
1039
1040 BlockHasCopyDispose = false;
1041}