blob: 79950e8c6beb44cc6b76f9b426a234b5565f0eb2 [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
Mike Stumpb1a6e682009-09-30 02:43:10 +000014#include "CGDebugInfo.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000015#include "CodeGenFunction.h"
16#include "CodeGenModule.h"
Mike Stump6cc88f72009-03-20 21:53:12 +000017#include "clang/AST/DeclObjC.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000018#include "llvm/Module.h"
Anders Carlssond5cab542009-02-12 17:55:02 +000019#include "llvm/Target/TargetData.h"
Anders Carlssonacfde802009-02-12 00:39:25 +000020#include <algorithm>
Torok Edwinf42e4a62009-08-24 13:25:12 +000021#include <cstdio>
22
Anders Carlssonacfde802009-02-12 00:39:25 +000023using namespace clang;
24using namespace CodeGen;
25
Mike Stumpcf62d392009-03-06 18:42:23 +000026llvm::Constant *CodeGenFunction::
Mike Stumpa803b0e2009-03-25 17:58:24 +000027BuildDescriptorBlockDecl(bool BlockHasCopyDispose, uint64_t Size,
28 const llvm::StructType* Ty,
Mike Stump08920992009-03-07 02:35:30 +000029 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump56129b12009-02-13 16:55:51 +000030 const llvm::Type *UnsignedLongTy
31 = CGM.getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpe5fee252009-02-13 16:19:19 +000032 llvm::Constant *C;
33 std::vector<llvm::Constant*> Elts;
34
35 // reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +000036 C = llvm::ConstantInt::get(UnsignedLongTy, 0);
Mike Stumpe5fee252009-02-13 16:19:19 +000037 Elts.push_back(C);
38
39 // Size
Mike Stumpd6840002009-02-21 20:07:44 +000040 // FIXME: What is the right way to say this doesn't fit? We should give
41 // a user diagnostic in that case. Better fix would be to change the
42 // API to size_t.
Owen Anderson4a28d5d2009-07-24 23:12:58 +000043 C = llvm::ConstantInt::get(UnsignedLongTy, Size);
Mike Stumpe5fee252009-02-13 16:19:19 +000044 Elts.push_back(C);
45
46 if (BlockHasCopyDispose) {
47 // copy_func_helper_decl
Mike Stumpb7477cf2009-04-10 18:52:28 +000048 Elts.push_back(BuildCopyHelper(Ty, NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000049
50 // destroy_func_decl
Mike Stumpb7477cf2009-04-10 18:52:28 +000051 Elts.push_back(BuildDestroyHelper(Ty, NoteForHelper));
Mike Stumpe5fee252009-02-13 16:19:19 +000052 }
53
Nick Lewycky0d36dd22009-09-19 20:00:52 +000054 C = llvm::ConstantStruct::get(VMContext, Elts, false);
Mike Stumpe5fee252009-02-13 16:19:19 +000055
Owen Anderson1c431b32009-07-08 19:05:04 +000056 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stumpe5fee252009-02-13 16:19:19 +000057 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +000058 C, "__block_descriptor_tmp");
Mike Stumpe5fee252009-02-13 16:19:19 +000059 return C;
60}
61
Mike Stump2a998142009-03-04 18:17:45 +000062llvm::Constant *BlockModule::getNSConcreteGlobalBlock() {
Chris Lattnere2f79b62009-05-13 02:50:56 +000063 if (NSConcreteGlobalBlock == 0)
Mike Stump1eb44332009-09-09 15:08:12 +000064 NSConcreteGlobalBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty,
Chris Lattnere2f79b62009-05-13 02:50:56 +000065 "_NSConcreteGlobalBlock");
Mike Stumpf99f1d02009-02-13 17:23:42 +000066 return NSConcreteGlobalBlock;
67}
68
Mike Stump2a998142009-03-04 18:17:45 +000069llvm::Constant *BlockModule::getNSConcreteStackBlock() {
Chris Lattnere2f79b62009-05-13 02:50:56 +000070 if (NSConcreteStackBlock == 0)
Mike Stump1eb44332009-09-09 15:08:12 +000071 NSConcreteStackBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty,
Chris Lattnere2f79b62009-05-13 02:50:56 +000072 "_NSConcreteStackBlock");
Mike Stump59c5b112009-02-13 19:29:27 +000073 return NSConcreteStackBlock;
74}
75
Mike Stump00470a12009-03-05 08:32:30 +000076static void CollectBlockDeclRefInfo(const Stmt *S,
Anders Carlsson4de9fce2009-03-01 01:09:12 +000077 CodeGenFunction::BlockInfo &Info) {
78 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
79 I != E; ++I)
Daniel Dunbar82573ee2009-03-02 07:00:57 +000080 if (*I)
81 CollectBlockDeclRefInfo(*I, Info);
Mike Stump00470a12009-03-05 08:32:30 +000082
Anders Carlsson4de9fce2009-03-01 01:09:12 +000083 if (const BlockDeclRefExpr *DE = dyn_cast<BlockDeclRefExpr>(S)) {
84 // FIXME: Handle enums.
85 if (isa<FunctionDecl>(DE->getDecl()))
86 return;
Mike Stump00470a12009-03-05 08:32:30 +000087
Anders Carlsson4de9fce2009-03-01 01:09:12 +000088 if (DE->isByRef())
89 Info.ByRefDeclRefs.push_back(DE);
90 else
91 Info.ByCopyDeclRefs.push_back(DE);
92 }
93}
94
Mike Stump58a85142009-03-04 22:48:06 +000095/// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be
96/// declared as a global variable instead of on the stack.
Chris Lattnere2f79b62009-05-13 02:50:56 +000097static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info) {
Anders Carlsson4de9fce2009-03-01 01:09:12 +000098 return Info.ByRefDeclRefs.empty() && Info.ByCopyDeclRefs.empty();
99}
100
Mike Stump58a85142009-03-04 22:48:06 +0000101// FIXME: Push most into CGM, passing down a few bits, like current function
102// name.
Mike Stump8a2b4b12009-02-25 23:33:13 +0000103llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) {
Mike Stumpe5fee252009-02-13 16:19:19 +0000104
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000105 std::string Name = CurFn->getName();
106 CodeGenFunction::BlockInfo Info(0, Name.c_str());
107 CollectBlockDeclRefInfo(BE->getBody(), Info);
108
109 // Check if the block can be global.
Mike Stump58a85142009-03-04 22:48:06 +0000110 // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like
111 // to just have one code path. We should move this function into CGM and pass
112 // CGF, then we can just check to see if CGF is 0.
Mike Stumpdab514f2009-03-04 03:23:46 +0000113 if (0 && CanBlockBeGlobal(Info))
Anders Carlsson4de9fce2009-03-01 01:09:12 +0000114 return CGM.GetAddrOfGlobalBlock(BE, Name.c_str());
Mike Stump00470a12009-03-05 08:32:30 +0000115
116 std::vector<llvm::Constant*> Elts(5);
Mike Stumpe5fee252009-02-13 16:19:19 +0000117 llvm::Constant *C;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000118 llvm::Value *V;
Mike Stumpe5fee252009-02-13 16:19:19 +0000119
Mike Stumpe5fee252009-02-13 16:19:19 +0000120 {
121 // C = BuildBlockStructInitlist();
122 unsigned int flags = BLOCK_HAS_DESCRIPTOR;
123
Mike Stump00470a12009-03-05 08:32:30 +0000124 // We run this first so that we set BlockHasCopyDispose from the entire
125 // block literal.
126 // __invoke
127 uint64_t subBlockSize, subBlockAlign;
128 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Mike Stumpa803b0e2009-03-25 17:58:24 +0000129 bool subBlockHasCopyDispose = false;
Mike Stump00470a12009-03-05 08:32:30 +0000130 llvm::Function *Fn
Mike Stumpbb304192009-09-24 22:31:14 +0000131 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl,
132 LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000133 subBlockSize,
Mike Stump00470a12009-03-05 08:32:30 +0000134 subBlockAlign,
135 subBlockDeclRefDecls,
Mike Stumpa803b0e2009-03-25 17:58:24 +0000136 subBlockHasCopyDispose);
137 BlockHasCopyDispose |= subBlockHasCopyDispose;
Mike Stump00470a12009-03-05 08:32:30 +0000138 Elts[3] = Fn;
139
Mike Stumpf5408fe2009-05-16 07:57:57 +0000140 // FIXME: Don't use BlockHasCopyDispose, it is set more often then
141 // necessary, for example: { ^{ __block int i; ^{ i = 1; }(); }(); }
Mike Stumpa803b0e2009-03-25 17:58:24 +0000142 if (subBlockHasCopyDispose)
Mike Stumpe5fee252009-02-13 16:19:19 +0000143 flags |= BLOCK_HAS_COPY_DISPOSE;
144
Mike Stump7d6dc4f2009-02-13 20:17:16 +0000145 // __isa
Mike Stump59c5b112009-02-13 19:29:27 +0000146 C = CGM.getNSConcreteStackBlock();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000147 C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty);
Mike Stump00470a12009-03-05 08:32:30 +0000148 Elts[0] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000149
150 // __flags
151 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
152 CGM.getTypes().ConvertType(CGM.getContext().IntTy));
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000153 C = llvm::ConstantInt::get(IntTy, flags);
Mike Stump00470a12009-03-05 08:32:30 +0000154 Elts[1] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000155
156 // __reserved
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000157 C = llvm::ConstantInt::get(IntTy, 0);
Mike Stump00470a12009-03-05 08:32:30 +0000158 Elts[2] = C;
Mike Stumpe5fee252009-02-13 16:19:19 +0000159
Mike Stump8a2b4b12009-02-25 23:33:13 +0000160 if (subBlockDeclRefDecls.size() == 0) {
Mike Stumpcf62d392009-03-06 18:42:23 +0000161 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000162 Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize, 0, 0);
Mike Stumpcf62d392009-03-06 18:42:23 +0000163
Mike Stump5570cfe2009-03-01 20:07:53 +0000164 // Optimize to being a global block.
165 Elts[0] = CGM.getNSConcreteGlobalBlock();
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000166 Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL);
Mike Stump5570cfe2009-03-01 20:07:53 +0000167
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000168 C = llvm::ConstantStruct::get(VMContext, Elts, false);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000169
170 char Name[32];
171 sprintf(Name, "__block_holder_tmp_%d", CGM.getGlobalUniqueCount());
Owen Anderson1c431b32009-07-08 19:05:04 +0000172 C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true,
Mike Stump8a2b4b12009-02-25 23:33:13 +0000173 llvm::GlobalValue::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000174 C, Name);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000175 QualType BPT = BE->getType();
Owen Anderson3c4972d2009-07-29 18:54:39 +0000176 C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT));
Mike Stump8a2b4b12009-02-25 23:33:13 +0000177 return C;
178 }
Mike Stump00470a12009-03-05 08:32:30 +0000179
Mike Stump8a2b4b12009-02-25 23:33:13 +0000180 std::vector<const llvm::Type *> Types(5+subBlockDeclRefDecls.size());
Mike Stump08920992009-03-07 02:35:30 +0000181 for (int i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000182 Types[i] = Elts[i]->getType();
Mike Stump08920992009-03-07 02:35:30 +0000183 Types[4] = PtrToInt8Ty;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000184
Mike Stumpa99038c2009-02-28 09:07:16 +0000185 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) {
186 const Expr *E = subBlockDeclRefDecls[i];
187 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
188 QualType Ty = E->getType();
Mike Stumpdab514f2009-03-04 03:23:46 +0000189 if (BDRE && BDRE->isByRef()) {
Anders Carlsson9ad55132009-09-09 02:51:03 +0000190 Types[i+5] = llvm::PointerType::get(BuildByRefType(BDRE->getDecl()), 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000191 } else
192 Types[i+5] = ConvertType(Ty);
Mike Stumpa99038c2009-02-28 09:07:16 +0000193 }
Mike Stump8a2b4b12009-02-25 23:33:13 +0000194
Owen Anderson47a434f2009-08-05 23:18:46 +0000195 llvm::StructType *Ty = llvm::StructType::get(VMContext, Types, true);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000196
197 llvm::AllocaInst *A = CreateTempAlloca(Ty);
198 A->setAlignment(subBlockAlign);
199 V = A;
200
Mike Stump08920992009-03-07 02:35:30 +0000201 std::vector<HelperInfo> NoteForHelper(subBlockDeclRefDecls.size());
202 int helpersize = 0;
203
204 for (unsigned i=0; i<4; ++i)
Mike Stump8a2b4b12009-02-25 23:33:13 +0000205 Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp"));
Mike Stump00470a12009-03-05 08:32:30 +0000206
Mike Stump8a2b4b12009-02-25 23:33:13 +0000207 for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i)
208 {
Mike Stumpa99038c2009-02-28 09:07:16 +0000209 // FIXME: Push const down.
210 Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]);
211 DeclRefExpr *DR;
212 ValueDecl *VD;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000213
Mike Stumpa99038c2009-02-28 09:07:16 +0000214 DR = dyn_cast<DeclRefExpr>(E);
215 // Skip padding.
216 if (DR) continue;
217
218 BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
219 VD = BDRE->getDecl();
220
Mike Stumpdab514f2009-03-04 03:23:46 +0000221 llvm::Value* Addr = Builder.CreateStructGEP(V, i+5, "tmp");
Mike Stump08920992009-03-07 02:35:30 +0000222 NoteForHelper[helpersize].index = i+5;
Mike Stump39605b42009-09-22 02:12:52 +0000223 NoteForHelper[helpersize].RequiresCopying
224 = BlockRequiresCopying(VD->getType());
Mike Stump08920992009-03-07 02:35:30 +0000225 NoteForHelper[helpersize].flag
Mike Stump39605b42009-09-22 02:12:52 +0000226 = (VD->getType()->isBlockPointerType()
227 ? BLOCK_FIELD_IS_BLOCK
228 : BLOCK_FIELD_IS_OBJECT);
Mike Stump08920992009-03-07 02:35:30 +0000229
Mike Stumpa99038c2009-02-28 09:07:16 +0000230 if (LocalDeclMap[VD]) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000231 if (BDRE->isByRef()) {
Mike Stump08920992009-03-07 02:35:30 +0000232 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
Mike Stumpf4bc3122009-03-07 06:04:31 +0000233 // FIXME: Someone double check this.
234 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000235 llvm::Value *Loc = LocalDeclMap[VD];
236 Loc = Builder.CreateStructGEP(Loc, 1, "forwarding");
237 Loc = Builder.CreateLoad(Loc, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000238 Builder.CreateStore(Loc, Addr);
Mike Stump08920992009-03-07 02:35:30 +0000239 ++helpersize;
Mike Stumpdab514f2009-03-04 03:23:46 +0000240 continue;
241 } else
242 E = new (getContext()) DeclRefExpr (cast<NamedDecl>(VD),
243 VD->getType(), SourceLocation(),
244 false, false);
Mike Stumpa99038c2009-02-28 09:07:16 +0000245 }
Mike Stumpdab514f2009-03-04 03:23:46 +0000246 if (BDRE->isByRef()) {
Mike Stumpa8b60c92009-03-21 21:00:35 +0000247 NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF |
248 // FIXME: Someone double check this.
249 (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0);
Mike Stumpa99038c2009-02-28 09:07:16 +0000250 E = new (getContext())
251 UnaryOperator(E, UnaryOperator::AddrOf,
252 getContext().getPointerType(E->getType()),
253 SourceLocation());
Mike Stumpdab514f2009-03-04 03:23:46 +0000254 }
Mike Stump08920992009-03-07 02:35:30 +0000255 ++helpersize;
Mike Stumpa99038c2009-02-28 09:07:16 +0000256
Mike Stumpa99038c2009-02-28 09:07:16 +0000257 RValue r = EmitAnyExpr(E, Addr, false);
Mike Stumpdab514f2009-03-04 03:23:46 +0000258 if (r.isScalar()) {
259 llvm::Value *Loc = r.getScalarVal();
260 const llvm::Type *Ty = Types[i+5];
261 if (BDRE->isByRef()) {
Mike Stump58a85142009-03-04 22:48:06 +0000262 // E is now the address of the value field, instead, we want the
263 // address of the actual ByRef struct. We optimize this slightly
264 // compared to gcc by not grabbing the forwarding slot as this must
265 // be done during Block_copy for us, and we can postpone the work
266 // until then.
267 uint64_t offset = BlockDecls[BDRE->getDecl()];
Mike Stump00470a12009-03-05 08:32:30 +0000268
Mike Stump58a85142009-03-04 22:48:06 +0000269 llvm::Value *BlockLiteral = LoadBlockStruct();
Mike Stump00470a12009-03-05 08:32:30 +0000270
Mike Stump58a85142009-03-04 22:48:06 +0000271 Loc = Builder.CreateGEP(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000272 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stump58a85142009-03-04 22:48:06 +0000273 offset),
274 "block.literal");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000275 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000276 Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stump58a85142009-03-04 22:48:06 +0000277 Loc = Builder.CreateLoad(Loc, false);
278 // Loc = Builder.CreateBitCast(Loc, Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000279 }
280 Builder.CreateStore(Loc, Addr);
281 } else if (r.isComplex())
Mike Stump8a2b4b12009-02-25 23:33:13 +0000282 // FIXME: implement
283 ErrorUnsupported(BE, "complex in block literal");
284 else if (r.isAggregate())
285 ; // Already created into the destination
286 else
287 assert (0 && "bad block variable");
288 // FIXME: Ensure that the offset created by the backend for
289 // the struct matches the previously computed offset in BlockDecls.
290 }
Mike Stump08920992009-03-07 02:35:30 +0000291 NoteForHelper.resize(helpersize);
Mike Stumpcf62d392009-03-06 18:42:23 +0000292
293 // __descriptor
Mike Stumpa803b0e2009-03-25 17:58:24 +0000294 llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose,
295 subBlockSize, Ty,
Mike Stump08920992009-03-07 02:35:30 +0000296 &NoteForHelper);
297 Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty);
298 Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp"));
Mike Stumpe5fee252009-02-13 16:19:19 +0000299 }
Mike Stump00470a12009-03-05 08:32:30 +0000300
Mike Stumpbd65cac2009-02-19 01:01:04 +0000301 QualType BPT = BE->getType();
Mike Stump8a2b4b12009-02-25 23:33:13 +0000302 return Builder.CreateBitCast(V, ConvertType(BPT));
Mike Stumpe5fee252009-02-13 16:19:19 +0000303}
304
305
Mike Stump2a998142009-03-04 18:17:45 +0000306const llvm::Type *BlockModule::getBlockDescriptorType() {
Mike Stumpab695142009-02-13 15:16:56 +0000307 if (BlockDescriptorType)
308 return BlockDescriptorType;
309
Mike Stumpa5448542009-02-13 15:32:32 +0000310 const llvm::Type *UnsignedLongTy =
Mike Stumpab695142009-02-13 15:16:56 +0000311 getTypes().ConvertType(getContext().UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000312
Mike Stumpab695142009-02-13 15:16:56 +0000313 // struct __block_descriptor {
314 // unsigned long reserved;
315 // unsigned long block_size;
316 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000317 BlockDescriptorType = llvm::StructType::get(UnsignedLongTy->getContext(),
318 UnsignedLongTy,
Mike Stumpa5448542009-02-13 15:32:32 +0000319 UnsignedLongTy,
Mike Stumpab695142009-02-13 15:16:56 +0000320 NULL);
321
322 getModule().addTypeName("struct.__block_descriptor",
323 BlockDescriptorType);
324
325 return BlockDescriptorType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000326}
327
Mike Stump2a998142009-03-04 18:17:45 +0000328const llvm::Type *BlockModule::getGenericBlockLiteralType() {
Mike Stump9b8a7972009-02-13 15:25:34 +0000329 if (GenericBlockLiteralType)
330 return GenericBlockLiteralType;
331
Mike Stumpa5448542009-02-13 15:32:32 +0000332 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000333 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpa5448542009-02-13 15:32:32 +0000334
Mike Stump7cbb3602009-02-13 16:01:35 +0000335 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
336 getTypes().ConvertType(getContext().IntTy));
337
Mike Stump9b8a7972009-02-13 15:25:34 +0000338 // struct __block_literal_generic {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000339 // void *__isa;
340 // int __flags;
341 // int __reserved;
342 // void (*__invoke)(void *);
343 // struct __block_descriptor *__descriptor;
Mike Stump9b8a7972009-02-13 15:25:34 +0000344 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000345 GenericBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
346 PtrToInt8Ty,
Mike Stump7cbb3602009-02-13 16:01:35 +0000347 IntTy,
348 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000349 PtrToInt8Ty,
Mike Stump9b8a7972009-02-13 15:25:34 +0000350 BlockDescPtrTy,
351 NULL);
Mike Stumpa5448542009-02-13 15:32:32 +0000352
Mike Stump9b8a7972009-02-13 15:25:34 +0000353 getModule().addTypeName("struct.__block_literal_generic",
354 GenericBlockLiteralType);
Mike Stumpa5448542009-02-13 15:32:32 +0000355
Mike Stump9b8a7972009-02-13 15:25:34 +0000356 return GenericBlockLiteralType;
Anders Carlssonacfde802009-02-12 00:39:25 +0000357}
358
Mike Stump2a998142009-03-04 18:17:45 +0000359const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() {
Mike Stumpbd65cac2009-02-19 01:01:04 +0000360 if (GenericExtendedBlockLiteralType)
361 return GenericExtendedBlockLiteralType;
362
Mike Stumpbd65cac2009-02-19 01:01:04 +0000363 const llvm::Type *BlockDescPtrTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000364 llvm::PointerType::getUnqual(getBlockDescriptorType());
Mike Stumpbd65cac2009-02-19 01:01:04 +0000365
366 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
367 getTypes().ConvertType(getContext().IntTy));
368
369 // struct __block_literal_generic {
370 // void *__isa;
371 // int __flags;
372 // int __reserved;
373 // void (*__invoke)(void *);
374 // struct __block_descriptor *__descriptor;
375 // void *__copy_func_helper_decl;
376 // void *__destroy_func_decl;
377 // };
Owen Anderson47a434f2009-08-05 23:18:46 +0000378 GenericExtendedBlockLiteralType = llvm::StructType::get(IntTy->getContext(),
379 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000380 IntTy,
381 IntTy,
Mike Stump797b6322009-03-05 01:23:13 +0000382 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000383 BlockDescPtrTy,
Mike Stump797b6322009-03-05 01:23:13 +0000384 PtrToInt8Ty,
385 PtrToInt8Ty,
Mike Stumpbd65cac2009-02-19 01:01:04 +0000386 NULL);
387
388 getModule().addTypeName("struct.__block_literal_extended_generic",
389 GenericExtendedBlockLiteralType);
390
391 return GenericExtendedBlockLiteralType;
392}
393
Mike Stump39605b42009-09-22 02:12:52 +0000394bool BlockFunction::BlockRequiresCopying(QualType Ty) {
395 return CGM.BlockRequiresCopying(Ty);
396}
397
Anders Carlssond5cab542009-02-12 17:55:02 +0000398RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E) {
Mike Stumpa5448542009-02-13 15:32:32 +0000399 const BlockPointerType *BPT =
Ted Kremenek6217b802009-07-29 21:53:49 +0000400 E->getCallee()->getType()->getAs<BlockPointerType>();
Mike Stumpa5448542009-02-13 15:32:32 +0000401
Anders Carlssonacfde802009-02-12 00:39:25 +0000402 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
403
404 // Get a pointer to the generic block literal.
405 const llvm::Type *BlockLiteralTy =
Owen Anderson96e0fc72009-07-29 22:16:19 +0000406 llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType());
Anders Carlssonacfde802009-02-12 00:39:25 +0000407
408 // Bitcast the callee to a block literal.
Mike Stumpa5448542009-02-13 15:32:32 +0000409 llvm::Value *BlockLiteral =
Anders Carlssonacfde802009-02-12 00:39:25 +0000410 Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal");
411
412 // Get the function pointer from the literal.
413 llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp");
Anders Carlssonacfde802009-02-12 00:39:25 +0000414
Mike Stumpa5448542009-02-13 15:32:32 +0000415 BlockLiteral =
416 Builder.CreateBitCast(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000417 llvm::PointerType::getUnqual(
418 llvm::Type::getInt8Ty(VMContext)),
Anders Carlssonacfde802009-02-12 00:39:25 +0000419 "tmp");
Mike Stumpa5448542009-02-13 15:32:32 +0000420
Anders Carlssonacfde802009-02-12 00:39:25 +0000421 // Add the block literal.
422 QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy);
423 CallArgList Args;
424 Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000425
Anders Carlsson782f3972009-04-08 23:13:16 +0000426 QualType FnType = BPT->getPointeeType();
427
Anders Carlssonacfde802009-02-12 00:39:25 +0000428 // And the rest of the arguments.
John McCall183700f2009-09-21 23:43:11 +0000429 EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(),
Anders Carlsson782f3972009-04-08 23:13:16 +0000430 E->arg_begin(), E->arg_end());
Mike Stumpa5448542009-02-13 15:32:32 +0000431
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000432 // Load the function.
433 llvm::Value *Func = Builder.CreateLoad(FuncPtr, false, "tmp");
434
John McCall183700f2009-09-21 23:43:11 +0000435 QualType ResultType = FnType->getAs<FunctionType>()->getResultType();
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000436
Mike Stump1eb44332009-09-09 15:08:12 +0000437 const CGFunctionInfo &FnInfo =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000438 CGM.getTypes().getFunctionInfo(ResultType, Args);
Mike Stump1eb44332009-09-09 15:08:12 +0000439
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000440 // Cast the function pointer to the right type.
Mike Stump1eb44332009-09-09 15:08:12 +0000441 const llvm::Type *BlockFTy =
Anders Carlssona17d7cc2009-04-08 02:55:55 +0000442 CGM.getTypes().GetFunctionType(FnInfo, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000443
Owen Anderson96e0fc72009-07-29 22:16:19 +0000444 const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy);
Anders Carlsson6e460ff2009-04-07 22:10:22 +0000445 Func = Builder.CreateBitCast(Func, BlockFTyPtr);
Mike Stump1eb44332009-09-09 15:08:12 +0000446
Anders Carlssonacfde802009-02-12 00:39:25 +0000447 // And call the block.
Anders Carlssonf8544a42009-04-07 00:20:24 +0000448 return EmitCall(FnInfo, Func, Args);
Anders Carlssonacfde802009-02-12 00:39:25 +0000449}
Anders Carlssond5cab542009-02-12 17:55:02 +0000450
Mike Stumpdab514f2009-03-04 03:23:46 +0000451llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) {
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000452 const ValueDecl *VD = E->getDecl();
453
454 uint64_t &offset = BlockDecls[VD];
Mike Stumpdab514f2009-03-04 03:23:46 +0000455
Mike Stumpdab514f2009-03-04 03:23:46 +0000456
Mike Stumpdab514f2009-03-04 03:23:46 +0000457 // See if we have already allocated an offset for this variable.
458 if (offset == 0) {
Mike Stump00470a12009-03-05 08:32:30 +0000459 // Don't run the expensive check, unless we have to.
460 if (!BlockHasCopyDispose && BlockRequiresCopying(E->getType()))
461 BlockHasCopyDispose = true;
Mike Stumpdab514f2009-03-04 03:23:46 +0000462 // if not, allocate one now.
463 offset = getBlockOffset(E);
464 }
465
466 llvm::Value *BlockLiteral = LoadBlockStruct();
467 llvm::Value *V = Builder.CreateGEP(BlockLiteral,
Owen Anderson0032b272009-08-13 21:57:51 +0000468 llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext),
Mike Stumpdb52dcd2009-09-09 13:00:44 +0000469 offset),
Mike Stump58a85142009-03-04 22:48:06 +0000470 "block.literal");
Mike Stumpdab514f2009-03-04 03:23:46 +0000471 if (E->isByRef()) {
Mike Stumpdab514f2009-03-04 03:23:46 +0000472 const llvm::Type *PtrStructTy
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000473 = llvm::PointerType::get(BuildByRefType(VD), 0);
Mike Stumpa8b60c92009-03-21 21:00:35 +0000474 // The block literal will need a copy/destroy helper.
475 BlockHasCopyDispose = true;
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000476
477 const llvm::Type *Ty = PtrStructTy;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000478 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000479 V = Builder.CreateBitCast(V, Ty);
480 V = Builder.CreateLoad(V, false);
481 V = Builder.CreateStructGEP(V, 1, "forwarding");
482 V = Builder.CreateLoad(V, false);
483 V = Builder.CreateBitCast(V, PtrStructTy);
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000484 V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD),
485 VD->getNameAsString());
Mike Stumpdab514f2009-03-04 03:23:46 +0000486 } else {
Anders Carlsson7dfa4072009-09-12 02:14:24 +0000487 const llvm::Type *Ty = CGM.getTypes().ConvertType(VD->getType());
488
Owen Anderson96e0fc72009-07-29 22:16:19 +0000489 Ty = llvm::PointerType::get(Ty, 0);
Mike Stumpdab514f2009-03-04 03:23:46 +0000490 V = Builder.CreateBitCast(V, Ty);
491 }
492 return V;
493}
494
Mike Stump6cc88f72009-03-20 21:53:12 +0000495void CodeGenFunction::BlockForwardSelf() {
496 const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
497 ImplicitParamDecl *SelfDecl = OMD->getSelfDecl();
498 llvm::Value *&DMEntry = LocalDeclMap[SelfDecl];
499 if (DMEntry)
500 return;
501 // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care
502 BlockDeclRefExpr *BDRE = new (getContext())
503 BlockDeclRefExpr(SelfDecl,
504 SelfDecl->getType(), SourceLocation(), false);
505 DMEntry = GetAddrOfBlockDecl(BDRE);
506}
507
Mike Stump67a64482009-02-14 22:16:35 +0000508llvm::Constant *
Mike Stump90a90432009-03-04 18:47:42 +0000509BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) {
Anders Carlssond5cab542009-02-12 17:55:02 +0000510 // Generate the block descriptor.
511 const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy);
Mike Stump7cbb3602009-02-13 16:01:35 +0000512 const llvm::IntegerType *IntTy = cast<llvm::IntegerType>(
513 getTypes().ConvertType(getContext().IntTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000514
Anders Carlssond5cab542009-02-12 17:55:02 +0000515 llvm::Constant *DescriptorFields[2];
Mike Stumpa5448542009-02-13 15:32:32 +0000516
Anders Carlssond5cab542009-02-12 17:55:02 +0000517 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000518 DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000519
Anders Carlssond5cab542009-02-12 17:55:02 +0000520 // Block literal size. For global blocks we just use the size of the generic
521 // block literal struct.
Mike Stumpa5448542009-02-13 15:32:32 +0000522 uint64_t BlockLiteralSize =
Mike Stump9b8a7972009-02-13 15:25:34 +0000523 TheTargetData.getTypeStoreSizeInBits(getGenericBlockLiteralType()) / 8;
Owen Andersona1cf15f2009-07-14 23:10:40 +0000524 DescriptorFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000525 llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize);
Mike Stumpa5448542009-02-13 15:32:32 +0000526
527 llvm::Constant *DescriptorStruct =
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000528 llvm::ConstantStruct::get(VMContext, &DescriptorFields[0], 2, false);
Mike Stumpa5448542009-02-13 15:32:32 +0000529
Anders Carlssond5cab542009-02-12 17:55:02 +0000530 llvm::GlobalVariable *Descriptor =
Owen Anderson1c431b32009-07-08 19:05:04 +0000531 new llvm::GlobalVariable(getModule(), DescriptorStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000532 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000533 DescriptorStruct, "__block_descriptor_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000534
Anders Carlssond5cab542009-02-12 17:55:02 +0000535 // Generate the constants for the block literal.
536 llvm::Constant *LiteralFields[5];
Mike Stumpa5448542009-02-13 15:32:32 +0000537
Mike Stump67a64482009-02-14 22:16:35 +0000538 CodeGenFunction::BlockInfo Info(0, n);
Mike Stump8a2b4b12009-02-25 23:33:13 +0000539 uint64_t subBlockSize, subBlockAlign;
Mike Stumpa99038c2009-02-28 09:07:16 +0000540 llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls;
Daniel Dunbard67b09a2009-03-12 03:07:24 +0000541 bool subBlockHasCopyDispose = false;
Mike Stump7f28a9c2009-03-13 23:34:28 +0000542 llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
Mike Stump4e7a1f72009-02-21 20:00:35 +0000543 llvm::Function *Fn
Mike Stump6cc88f72009-03-20 21:53:12 +0000544 = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000545 subBlockSize,
Mike Stump90a90432009-03-04 18:47:42 +0000546 subBlockAlign,
Mike Stump00470a12009-03-05 08:32:30 +0000547 subBlockDeclRefDecls,
548 subBlockHasCopyDispose);
Mike Stump4e7a1f72009-02-21 20:00:35 +0000549 assert(subBlockSize == BlockLiteralSize
550 && "no imports allowed for global block");
Mike Stumpa5448542009-02-13 15:32:32 +0000551
Anders Carlssond5cab542009-02-12 17:55:02 +0000552 // isa
Mike Stumpf99f1d02009-02-13 17:23:42 +0000553 LiteralFields[0] = getNSConcreteGlobalBlock();
Mike Stumpa5448542009-02-13 15:32:32 +0000554
Anders Carlssond5cab542009-02-12 17:55:02 +0000555 // Flags
Mike Stump00470a12009-03-05 08:32:30 +0000556 LiteralFields[1] =
Owen Anderson4a28d5d2009-07-24 23:12:58 +0000557 llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR);
Mike Stumpa5448542009-02-13 15:32:32 +0000558
Anders Carlssond5cab542009-02-12 17:55:02 +0000559 // Reserved
Owen Andersonc9c88b42009-07-31 20:28:54 +0000560 LiteralFields[2] = llvm::Constant::getNullValue(IntTy);
Mike Stumpa5448542009-02-13 15:32:32 +0000561
Anders Carlssond5cab542009-02-12 17:55:02 +0000562 // Function
563 LiteralFields[3] = Fn;
Mike Stumpa5448542009-02-13 15:32:32 +0000564
Anders Carlssond5cab542009-02-12 17:55:02 +0000565 // Descriptor
566 LiteralFields[4] = Descriptor;
Mike Stumpa5448542009-02-13 15:32:32 +0000567
568 llvm::Constant *BlockLiteralStruct =
Nick Lewycky0d36dd22009-09-19 20:00:52 +0000569 llvm::ConstantStruct::get(VMContext, &LiteralFields[0], 5, false);
Mike Stumpa5448542009-02-13 15:32:32 +0000570
571 llvm::GlobalVariable *BlockLiteral =
Owen Anderson1c431b32009-07-08 19:05:04 +0000572 new llvm::GlobalVariable(getModule(), BlockLiteralStruct->getType(), true,
Mike Stumpa5448542009-02-13 15:32:32 +0000573 llvm::GlobalVariable::InternalLinkage,
Owen Anderson1c431b32009-07-08 19:05:04 +0000574 BlockLiteralStruct, "__block_literal_global");
Mike Stumpa5448542009-02-13 15:32:32 +0000575
Anders Carlssond5cab542009-02-12 17:55:02 +0000576 return BlockLiteral;
577}
578
Mike Stump4e7a1f72009-02-21 20:00:35 +0000579llvm::Value *CodeGenFunction::LoadBlockStruct() {
580 return Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], "self");
581}
582
Mike Stump00470a12009-03-05 08:32:30 +0000583llvm::Function *
584CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr,
585 const BlockInfo& Info,
Mike Stump6cc88f72009-03-20 21:53:12 +0000586 const Decl *OuterFuncDecl,
Mike Stump7f28a9c2009-03-13 23:34:28 +0000587 llvm::DenseMap<const Decl*, llvm::Value*> ldm,
Mike Stump00470a12009-03-05 08:32:30 +0000588 uint64_t &Size,
589 uint64_t &Align,
590 llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
591 bool &subBlockHasCopyDispose) {
Devang Patel963dfbd2009-04-15 21:51:44 +0000592
593 // Check if we should generate debug info for this block.
594 if (CGM.getDebugInfo())
595 DebugInfo = CGM.getDebugInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Mike Stump7f28a9c2009-03-13 23:34:28 +0000597 // Arrange for local static and local extern declarations to appear
598 // to be local to this function as well, as they are directly referenced
599 // in a block.
600 for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin();
601 i != ldm.end();
602 ++i) {
603 const VarDecl *VD = dyn_cast<VarDecl>(i->first);
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Daniel Dunbar5466c7b2009-04-14 02:25:56 +0000605 if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage())
Mike Stump7f28a9c2009-03-13 23:34:28 +0000606 LocalDeclMap[VD] = i->second;
607 }
608
Eli Friedman48f91222009-03-28 03:24:54 +0000609 // FIXME: We need to rearrange the code for copy/dispose so we have this
610 // sooner, so we can calculate offsets correctly.
611 if (!BlockHasCopyDispose)
612 BlockOffset = CGM.getTargetData()
613 .getTypeStoreSizeInBits(CGM.getGenericBlockLiteralType()) / 8;
614 else
615 BlockOffset = CGM.getTargetData()
616 .getTypeStoreSizeInBits(CGM.getGenericExtendedBlockLiteralType()) / 8;
617 BlockAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
618
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000619 const FunctionType *BlockFunctionType = BExpr->getFunctionType();
620 QualType ResultType;
621 bool IsVariadic;
Mike Stump1eb44332009-09-09 15:08:12 +0000622 if (const FunctionProtoType *FTy =
Fariborz Jahanianda0895d2009-04-11 18:54:57 +0000623 dyn_cast<FunctionProtoType>(BlockFunctionType)) {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000624 ResultType = FTy->getResultType();
625 IsVariadic = FTy->isVariadic();
Mike Stumpb3589f42009-07-30 22:28:39 +0000626 } else {
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000627 // K&R style block.
628 ResultType = BlockFunctionType->getResultType();
629 IsVariadic = false;
630 }
Mike Stumpa5448542009-02-13 15:32:32 +0000631
Anders Carlssond5cab542009-02-12 17:55:02 +0000632 FunctionArgList Args;
Mike Stumpa5448542009-02-13 15:32:32 +0000633
Chris Lattner161d36d2009-02-28 19:01:03 +0000634 const BlockDecl *BD = BExpr->getBlockDecl();
Anders Carlssond5cab542009-02-12 17:55:02 +0000635
636 // FIXME: This leaks
Mike Stumpa5448542009-02-13 15:32:32 +0000637 ImplicitParamDecl *SelfDecl =
Anders Carlssond5cab542009-02-12 17:55:02 +0000638 ImplicitParamDecl::Create(getContext(), 0,
639 SourceLocation(), 0,
640 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa5448542009-02-13 15:32:32 +0000641
Anders Carlssond5cab542009-02-12 17:55:02 +0000642 Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType()));
Mike Stump4e7a1f72009-02-21 20:00:35 +0000643 BlockStructDecl = SelfDecl;
Mike Stumpa5448542009-02-13 15:32:32 +0000644
Steve Naroffe78b8092009-03-13 16:56:44 +0000645 for (BlockDecl::param_const_iterator i = BD->param_begin(),
Anders Carlssond5cab542009-02-12 17:55:02 +0000646 e = BD->param_end(); i != e; ++i)
Mike Stump19050612009-02-17 23:25:52 +0000647 Args.push_back(std::make_pair(*i, (*i)->getType()));
Mike Stumpa5448542009-02-13 15:32:32 +0000648
649 const CGFunctionInfo &FI =
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000650 CGM.getTypes().getFunctionInfo(ResultType, Args);
Anders Carlssond5cab542009-02-12 17:55:02 +0000651
Mike Stump67a64482009-02-14 22:16:35 +0000652 std::string Name = std::string("__") + Info.Name + "_block_invoke_";
Anders Carlssond5cab542009-02-12 17:55:02 +0000653 CodeGenTypes &Types = CGM.getTypes();
Fariborz Jahanian140fb262009-04-11 17:55:15 +0000654 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic);
Mike Stumpa5448542009-02-13 15:32:32 +0000655
656 llvm::Function *Fn =
Anders Carlssond5cab542009-02-12 17:55:02 +0000657 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
658 Name,
659 &CGM.getModule());
Mike Stumpa5448542009-02-13 15:32:32 +0000660
Daniel Dunbar0e4f40e2009-04-17 00:48:04 +0000661 CGM.SetInternalFunctionAttributes(BD, Fn, FI);
662
Chris Lattner4863db42009-04-23 07:18:56 +0000663 StartFunction(BD, ResultType, Fn, Args,
Chris Lattner161d36d2009-02-28 19:01:03 +0000664 BExpr->getBody()->getLocEnd());
Mike Stumpb1a6e682009-09-30 02:43:10 +0000665
Chris Lattner4863db42009-04-23 07:18:56 +0000666 CurFuncDecl = OuterFuncDecl;
Chris Lattnerb5437d22009-04-23 05:30:27 +0000667 CurCodeDecl = BD;
Mike Stumpb289b3f2009-10-01 22:29:41 +0000668
669 // Save a spot to insert the debug information for all the BlockDeclRefDecls.
670 llvm::BasicBlock *entry = Builder.GetInsertBlock();
671 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint();
672 --entry_ptr;
673
Chris Lattner161d36d2009-02-28 19:01:03 +0000674 EmitStmt(BExpr->getBody());
Mike Stumpb289b3f2009-10-01 22:29:41 +0000675
Mike Stumpde8c5c72009-10-01 00:27:30 +0000676 // Remember where we were...
677 llvm::BasicBlock *resume = Builder.GetInsertBlock();
Mike Stumpb289b3f2009-10-01 22:29:41 +0000678
Mike Stumpde8c5c72009-10-01 00:27:30 +0000679 // Go back to the entry.
Mike Stumpb289b3f2009-10-01 22:29:41 +0000680 ++entry_ptr;
681 Builder.SetInsertPoint(entry, entry_ptr);
682
Mike Stumpb1a6e682009-09-30 02:43:10 +0000683 if (CGDebugInfo *DI = getDebugInfo()) {
Mike Stumpb1a6e682009-09-30 02:43:10 +0000684 // Emit debug information for all the BlockDeclRefDecls.
Mike Stumpb1a6e682009-09-30 02:43:10 +0000685 for (unsigned i=0; i < BlockDeclRefDecls.size(); ++i) {
686 const Expr *E = BlockDeclRefDecls[i];
687 const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E);
688 if (BDRE) {
689 const ValueDecl *D = BDRE->getDecl();
690 DI->setLocation(D->getLocation());
691 DI->EmitDeclareOfBlockDeclRefVariable(BDRE,
692 LocalDeclMap[getBlockStructDecl()],
693 Builder, this);
694 }
695 }
Mike Stumpb1a6e682009-09-30 02:43:10 +0000696 }
Mike Stumpde8c5c72009-10-01 00:27:30 +0000697 // And resume where we left off.
698 if (resume == 0)
699 Builder.ClearInsertionPoint();
700 else
701 Builder.SetInsertPoint(resume);
Mike Stumpb1a6e682009-09-30 02:43:10 +0000702
Chris Lattner161d36d2009-02-28 19:01:03 +0000703 FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc());
Anders Carlssond5cab542009-02-12 17:55:02 +0000704
Mike Stump8a2b4b12009-02-25 23:33:13 +0000705 // The runtime needs a minimum alignment of a void *.
706 uint64_t MinAlign = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
707 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, MinAlign);
708
Mike Stump4e7a1f72009-02-21 20:00:35 +0000709 Size = BlockOffset;
Mike Stump8a2b4b12009-02-25 23:33:13 +0000710 Align = BlockAlign;
711 subBlockDeclRefDecls = BlockDeclRefDecls;
Mike Stump00470a12009-03-05 08:32:30 +0000712 subBlockHasCopyDispose |= BlockHasCopyDispose;
Anders Carlssond5cab542009-02-12 17:55:02 +0000713 return Fn;
714}
Mike Stumpa99038c2009-02-28 09:07:16 +0000715
Mike Stump08920992009-03-07 02:35:30 +0000716uint64_t BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) {
Mike Stumpa99038c2009-02-28 09:07:16 +0000717 const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl());
718
719 uint64_t Size = getContext().getTypeSize(D->getType()) / 8;
720 uint64_t Align = getContext().getDeclAlignInBytes(D);
721
722 if (BDRE->isByRef()) {
723 Size = getContext().getTypeSize(getContext().VoidPtrTy) / 8;
724 Align = getContext().getTypeAlign(getContext().VoidPtrTy) / 8;
725 }
726
727 assert ((Align > 0) && "alignment must be 1 byte or more");
728
729 uint64_t OldOffset = BlockOffset;
730
731 // Ensure proper alignment, even if it means we have to have a gap
732 BlockOffset = llvm::RoundUpToAlignment(BlockOffset, Align);
733 BlockAlign = std::max(Align, BlockAlign);
Mike Stump00470a12009-03-05 08:32:30 +0000734
Mike Stumpa99038c2009-02-28 09:07:16 +0000735 uint64_t Pad = BlockOffset - OldOffset;
736 if (Pad) {
Owen Anderson0032b272009-08-13 21:57:51 +0000737 llvm::ArrayType::get(llvm::Type::getInt8Ty(VMContext), Pad);
Mike Stumpa99038c2009-02-28 09:07:16 +0000738 QualType PadTy = getContext().getConstantArrayType(getContext().CharTy,
739 llvm::APInt(32, Pad),
740 ArrayType::Normal, 0);
741 ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(),
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000742 0, QualType(PadTy), 0, VarDecl::None);
Mike Stumpa99038c2009-02-28 09:07:16 +0000743 Expr *E;
744 E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(),
745 SourceLocation(), false, false);
746 BlockDeclRefDecls.push_back(E);
747 }
748 BlockDeclRefDecls.push_back(BDRE);
749
750 BlockOffset += Size;
751 return BlockOffset-Size;
752}
Mike Stumpdab514f2009-03-04 03:23:46 +0000753
Mike Stump08920992009-03-07 02:35:30 +0000754llvm::Constant *BlockFunction::
755GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000756 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000757 QualType R = getContext().VoidTy;
758
759 FunctionArgList Args;
760 // FIXME: This leaks
Mike Stump08920992009-03-07 02:35:30 +0000761 ImplicitParamDecl *Dst =
762 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
763 getContext().getPointerType(getContext().VoidTy));
764 Args.push_back(std::make_pair(Dst, Dst->getType()));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000765 ImplicitParamDecl *Src =
766 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
767 getContext().getPointerType(getContext().VoidTy));
Mike Stumpa4f668f2009-03-06 01:33:24 +0000768 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000769
Mike Stumpa4f668f2009-03-06 01:33:24 +0000770 const CGFunctionInfo &FI =
771 CGM.getTypes().getFunctionInfo(R, Args);
772
Mike Stump3899a7f2009-06-05 23:26:36 +0000773 // FIXME: We'd like to put these into a mergable by content, with
774 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000775 std::string Name = std::string("__copy_helper_block_");
776 CodeGenTypes &Types = CGM.getTypes();
777 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
778
779 llvm::Function *Fn =
780 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
781 Name,
782 &CGM.getModule());
783
784 IdentifierInfo *II
785 = &CGM.getContext().Idents.get("__copy_helper_block_");
786
787 FunctionDecl *FD = FunctionDecl::Create(getContext(),
788 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000789 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000790 FunctionDecl::Static, false,
791 true);
792 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump08920992009-03-07 02:35:30 +0000793
794 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
795 llvm::Type *PtrPtrT;
Mike Stump08920992009-03-07 02:35:30 +0000796
Mike Stumpb7477cf2009-04-10 18:52:28 +0000797 if (NoteForHelperp) {
798 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump08920992009-03-07 02:35:30 +0000799
Owen Anderson96e0fc72009-07-29 22:16:19 +0000800 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000801 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
802 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump08920992009-03-07 02:35:30 +0000803
Mike Stumpb7477cf2009-04-10 18:52:28 +0000804 llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000805 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000806 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpc2f4c342009-04-15 22:11:36 +0000807 DstObj = Builder.CreateBitCast(DstObj, PtrPtrT);
808 DstObj = Builder.CreateLoad(DstObj);
Mike Stump08920992009-03-07 02:35:30 +0000809
Mike Stumpb7477cf2009-04-10 18:52:28 +0000810 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
811 int flag = NoteForHelper[i].flag;
812 int index = NoteForHelper[i].index;
Mike Stump08920992009-03-07 02:35:30 +0000813
Mike Stumpb7477cf2009-04-10 18:52:28 +0000814 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
815 || NoteForHelper[i].RequiresCopying) {
816 llvm::Value *Srcv = SrcObj;
817 Srcv = Builder.CreateStructGEP(Srcv, index);
818 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000819 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000820 Srcv = Builder.CreateLoad(Srcv);
821
822 llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index);
823 Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty);
824
Owen Anderson0032b272009-08-13 21:57:51 +0000825 llvm::Value *N = llvm::ConstantInt::get(
826 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000827 llvm::Value *F = getBlockObjectAssign();
828 Builder.CreateCall3(F, Dstv, Srcv, N);
829 }
Mike Stump08920992009-03-07 02:35:30 +0000830 }
831 }
832
Mike Stumpa4f668f2009-03-06 01:33:24 +0000833 CGF.FinishFunction();
834
Owen Anderson3c4972d2009-07-29 18:54:39 +0000835 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpdab514f2009-03-04 03:23:46 +0000836}
837
Mike Stumpcf62d392009-03-06 18:42:23 +0000838llvm::Constant *BlockFunction::
Mike Stump08920992009-03-07 02:35:30 +0000839GenerateDestroyHelperFunction(bool BlockHasCopyDispose,
840 const llvm::StructType* T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000841 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stumpa4f668f2009-03-06 01:33:24 +0000842 QualType R = getContext().VoidTy;
843
844 FunctionArgList Args;
845 // FIXME: This leaks
846 ImplicitParamDecl *Src =
847 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
848 getContext().getPointerType(getContext().VoidTy));
849
850 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000851
Mike Stumpa4f668f2009-03-06 01:33:24 +0000852 const CGFunctionInfo &FI =
853 CGM.getTypes().getFunctionInfo(R, Args);
854
Mike Stump3899a7f2009-06-05 23:26:36 +0000855 // FIXME: We'd like to put these into a mergable by content, with
856 // internal linkage.
Mike Stumpa4f668f2009-03-06 01:33:24 +0000857 std::string Name = std::string("__destroy_helper_block_");
858 CodeGenTypes &Types = CGM.getTypes();
859 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
860
861 llvm::Function *Fn =
862 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
863 Name,
864 &CGM.getModule());
865
866 IdentifierInfo *II
867 = &CGM.getContext().Idents.get("__destroy_helper_block_");
868
869 FunctionDecl *FD = FunctionDecl::Create(getContext(),
870 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000871 SourceLocation(), II, R, 0,
Mike Stumpa4f668f2009-03-06 01:33:24 +0000872 FunctionDecl::Static, false,
873 true);
874 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1edf6b62009-03-07 02:53:18 +0000875
Mike Stumpb7477cf2009-04-10 18:52:28 +0000876 if (NoteForHelperp) {
877 std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp;
Mike Stump1edf6b62009-03-07 02:53:18 +0000878
Mike Stumpb7477cf2009-04-10 18:52:28 +0000879 llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src);
880 llvm::Type *PtrPtrT;
Owen Anderson96e0fc72009-07-29 22:16:19 +0000881 PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0);
Mike Stumpb7477cf2009-04-10 18:52:28 +0000882 SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT);
883 SrcObj = Builder.CreateLoad(SrcObj);
Mike Stump1edf6b62009-03-07 02:53:18 +0000884
Mike Stumpb7477cf2009-04-10 18:52:28 +0000885 for (unsigned i=0; i < NoteForHelper.size(); ++i) {
886 int flag = NoteForHelper[i].flag;
887 int index = NoteForHelper[i].index;
Mike Stump1edf6b62009-03-07 02:53:18 +0000888
Mike Stumpb7477cf2009-04-10 18:52:28 +0000889 if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF)
890 || NoteForHelper[i].RequiresCopying) {
891 llvm::Value *Srcv = SrcObj;
892 Srcv = Builder.CreateStructGEP(Srcv, index);
893 Srcv = Builder.CreateBitCast(Srcv,
Owen Anderson96e0fc72009-07-29 22:16:19 +0000894 llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpb7477cf2009-04-10 18:52:28 +0000895 Srcv = Builder.CreateLoad(Srcv);
896
897 BuildBlockRelease(Srcv, flag);
898 }
Mike Stump1edf6b62009-03-07 02:53:18 +0000899 }
900 }
901
Mike Stumpa4f668f2009-03-06 01:33:24 +0000902 CGF.FinishFunction();
903
Owen Anderson3c4972d2009-07-29 18:54:39 +0000904 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000905}
906
Mike Stump08920992009-03-07 02:35:30 +0000907llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000908 std::vector<HelperInfo> *NoteForHelper) {
Mike Stump08920992009-03-07 02:35:30 +0000909 return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose,
910 T, NoteForHelper);
Mike Stumpa4f668f2009-03-06 01:33:24 +0000911}
912
Mike Stump08920992009-03-07 02:35:30 +0000913llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000914 std::vector<HelperInfo> *NoteForHelperp) {
Mike Stump08920992009-03-07 02:35:30 +0000915 return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose,
Mike Stumpb7477cf2009-04-10 18:52:28 +0000916 T, NoteForHelperp);
Mike Stumpdab514f2009-03-04 03:23:46 +0000917}
Mike Stump797b6322009-03-05 01:23:13 +0000918
Mike Stumpee094222009-03-06 06:12:24 +0000919llvm::Constant *BlockFunction::
920GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000921 QualType R = getContext().VoidTy;
922
923 FunctionArgList Args;
924 // FIXME: This leaks
Mike Stumpee094222009-03-06 06:12:24 +0000925 ImplicitParamDecl *Dst =
926 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
927 getContext().getPointerType(getContext().VoidTy));
928 Args.push_back(std::make_pair(Dst, Dst->getType()));
929
930 // FIXME: This leaks
Mike Stump45031c02009-03-06 02:29:21 +0000931 ImplicitParamDecl *Src =
932 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
933 getContext().getPointerType(getContext().VoidTy));
Mike Stump45031c02009-03-06 02:29:21 +0000934 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000935
Mike Stump45031c02009-03-06 02:29:21 +0000936 const CGFunctionInfo &FI =
937 CGM.getTypes().getFunctionInfo(R, Args);
938
939 std::string Name = std::string("__Block_byref_id_object_copy_");
940 CodeGenTypes &Types = CGM.getTypes();
941 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
942
Mike Stump3899a7f2009-06-05 23:26:36 +0000943 // FIXME: We'd like to put these into a mergable by content, with
944 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +0000945 llvm::Function *Fn =
946 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
947 Name,
948 &CGM.getModule());
949
950 IdentifierInfo *II
951 = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_");
952
953 FunctionDecl *FD = FunctionDecl::Create(getContext(),
954 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000955 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +0000956 FunctionDecl::Static, false,
957 true);
958 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stumpee094222009-03-06 06:12:24 +0000959
960 // dst->x
961 llvm::Value *V = CGF.GetAddrOfLocalVar(Dst);
Owen Anderson96e0fc72009-07-29 22:16:19 +0000962 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +0000963 V = Builder.CreateLoad(V);
Mike Stumpee094222009-03-06 06:12:24 +0000964 V = Builder.CreateStructGEP(V, 6, "x");
965 llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty);
966
967 // src->x
968 V = CGF.GetAddrOfLocalVar(Src);
969 V = Builder.CreateLoad(V);
970 V = Builder.CreateBitCast(V, T);
971 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +0000972 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpee094222009-03-06 06:12:24 +0000973 llvm::Value *SrcObj = Builder.CreateLoad(V);
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Mike Stumpee094222009-03-06 06:12:24 +0000975 flag |= BLOCK_BYREF_CALLER;
976
Owen Anderson0032b272009-08-13 21:57:51 +0000977 llvm::Value *N = llvm::ConstantInt::get(
978 llvm::Type::getInt32Ty(T->getContext()), flag);
Mike Stumpee094222009-03-06 06:12:24 +0000979 llvm::Value *F = getBlockObjectAssign();
980 Builder.CreateCall3(F, DstObj, SrcObj, N);
981
Mike Stump45031c02009-03-06 02:29:21 +0000982 CGF.FinishFunction();
983
Owen Anderson3c4972d2009-07-29 18:54:39 +0000984 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +0000985}
986
Mike Stump1851b682009-03-06 04:53:30 +0000987llvm::Constant *
988BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T,
989 int flag) {
Mike Stump45031c02009-03-06 02:29:21 +0000990 QualType R = getContext().VoidTy;
991
992 FunctionArgList Args;
993 // FIXME: This leaks
994 ImplicitParamDecl *Src =
995 ImplicitParamDecl::Create(getContext(), 0, SourceLocation(), 0,
996 getContext().getPointerType(getContext().VoidTy));
997
998 Args.push_back(std::make_pair(Src, Src->getType()));
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Mike Stump45031c02009-03-06 02:29:21 +00001000 const CGFunctionInfo &FI =
1001 CGM.getTypes().getFunctionInfo(R, Args);
1002
1003 std::string Name = std::string("__Block_byref_id_object_dispose_");
1004 CodeGenTypes &Types = CGM.getTypes();
1005 const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false);
1006
Mike Stump3899a7f2009-06-05 23:26:36 +00001007 // FIXME: We'd like to put these into a mergable by content, with
1008 // internal linkage.
Mike Stump45031c02009-03-06 02:29:21 +00001009 llvm::Function *Fn =
1010 llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage,
1011 Name,
1012 &CGM.getModule());
1013
1014 IdentifierInfo *II
1015 = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_");
1016
1017 FunctionDecl *FD = FunctionDecl::Create(getContext(),
1018 getContext().getTranslationUnitDecl(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001019 SourceLocation(), II, R, 0,
Mike Stump45031c02009-03-06 02:29:21 +00001020 FunctionDecl::Static, false,
1021 true);
1022 CGF.StartFunction(FD, R, Fn, Args, SourceLocation());
Mike Stump1851b682009-03-06 04:53:30 +00001023
1024 llvm::Value *V = CGF.GetAddrOfLocalVar(Src);
Owen Anderson96e0fc72009-07-29 22:16:19 +00001025 V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001026 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +00001027 V = Builder.CreateStructGEP(V, 6, "x");
Owen Anderson96e0fc72009-07-29 22:16:19 +00001028 V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0));
Mike Stumpc2f4c342009-04-15 22:11:36 +00001029 V = Builder.CreateLoad(V);
Mike Stump1851b682009-03-06 04:53:30 +00001030
Mike Stump1851b682009-03-06 04:53:30 +00001031 flag |= BLOCK_BYREF_CALLER;
1032 BuildBlockRelease(V, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001033 CGF.FinishFunction();
1034
Owen Anderson3c4972d2009-07-29 18:54:39 +00001035 return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty);
Mike Stump45031c02009-03-06 02:29:21 +00001036}
1037
Mike Stumpee094222009-03-06 06:12:24 +00001038llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001039 int flag, unsigned Align) {
1040 // All alignments below that of pointer alignment collpase down to just
1041 // pointer alignment, as we always have at least that much alignment to begin
1042 // with.
1043 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1044 // As an optimization, we only generate a single function of each kind we
1045 // might need. We need a different one for each alignment and for each
1046 // setting of flags. We mix Align and flag to get the kind.
1047 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1048 llvm::Constant *& Entry = CGM.AssignCache[kind];
1049 if (Entry)
1050 return Entry;
1051 return Entry=CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001052}
1053
Mike Stump1851b682009-03-06 04:53:30 +00001054llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T,
Mike Stump3899a7f2009-06-05 23:26:36 +00001055 int flag,
1056 unsigned Align) {
1057 // All alignments below that of pointer alignment collpase down to just
1058 // pointer alignment, as we always have at least that much alignment to begin
1059 // with.
1060 Align /= unsigned(CGF.Target.getPointerAlign(0)/8);
1061 // As an optimization, we only generate a single function of each kind we
1062 // might need. We need a different one for each alignment and for each
1063 // setting of flags. We mix Align and flag to get the kind.
1064 uint64_t kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + flag;
1065 llvm::Constant *& Entry = CGM.DestroyCache[kind];
1066 if (Entry)
1067 return Entry;
1068 return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, flag);
Mike Stump45031c02009-03-06 02:29:21 +00001069}
1070
Mike Stump797b6322009-03-05 01:23:13 +00001071llvm::Value *BlockFunction::getBlockObjectDispose() {
1072 if (CGM.BlockObjectDispose == 0) {
1073 const llvm::FunctionType *FTy;
1074 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001075 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stump797b6322009-03-05 01:23:13 +00001076 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001077 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001078 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stump00470a12009-03-05 08:32:30 +00001079 CGM.BlockObjectDispose
Mike Stump797b6322009-03-05 01:23:13 +00001080 = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose");
1081 }
1082 return CGM.BlockObjectDispose;
1083}
1084
Mike Stumpee094222009-03-06 06:12:24 +00001085llvm::Value *BlockFunction::getBlockObjectAssign() {
1086 if (CGM.BlockObjectAssign == 0) {
1087 const llvm::FunctionType *FTy;
1088 std::vector<const llvm::Type*> ArgTys;
Owen Anderson0032b272009-08-13 21:57:51 +00001089 const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext);
Mike Stumpee094222009-03-06 06:12:24 +00001090 ArgTys.push_back(PtrToInt8Ty);
1091 ArgTys.push_back(PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001092 ArgTys.push_back(llvm::Type::getInt32Ty(VMContext));
Owen Anderson96e0fc72009-07-29 22:16:19 +00001093 FTy = llvm::FunctionType::get(ResultType, ArgTys, false);
Mike Stumpee094222009-03-06 06:12:24 +00001094 CGM.BlockObjectAssign
1095 = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign");
1096 }
1097 return CGM.BlockObjectAssign;
1098}
1099
Mike Stump1851b682009-03-06 04:53:30 +00001100void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) {
Mike Stump797b6322009-03-05 01:23:13 +00001101 llvm::Value *F = getBlockObjectDispose();
Mike Stump1851b682009-03-06 04:53:30 +00001102 llvm::Value *N;
Mike Stump797b6322009-03-05 01:23:13 +00001103 V = Builder.CreateBitCast(V, PtrToInt8Ty);
Owen Anderson0032b272009-08-13 21:57:51 +00001104 N = llvm::ConstantInt::get(llvm::Type::getInt32Ty(V->getContext()), flag);
Mike Stump797b6322009-03-05 01:23:13 +00001105 Builder.CreateCall2(F, V, N);
1106}
Mike Stump00470a12009-03-05 08:32:30 +00001107
1108ASTContext &BlockFunction::getContext() const { return CGM.getContext(); }
Mike Stump08920992009-03-07 02:35:30 +00001109
1110BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf,
1111 CGBuilderTy &B)
Owen Andersona1cf15f2009-07-14 23:10:40 +00001112 : CGM(cgm), CGF(cgf), VMContext(cgm.getLLVMContext()), Builder(B) {
Owen Anderson0032b272009-08-13 21:57:51 +00001113 PtrToInt8Ty = llvm::PointerType::getUnqual(
1114 llvm::Type::getInt8Ty(VMContext));
Mike Stump08920992009-03-07 02:35:30 +00001115
1116 BlockHasCopyDispose = false;
1117}