| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 1 | //===--- 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 Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 14 | #include "CGDebugInfo.h" |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 15 | #include "CodeGenFunction.h" |
| Fariborz Jahanian | 263c4de | 2010-02-10 23:34:57 +0000 | [diff] [blame] | 16 | #include "CGObjCRuntime.h" |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 17 | #include "CodeGenModule.h" |
| Mike Stump | 6cc88f7 | 2009-03-20 21:53:12 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclObjC.h" |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 19 | #include "llvm/Module.h" |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetData.h" |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 21 | #include <algorithm> |
| Torok Edwin | f42e4a6 | 2009-08-24 13:25:12 +0000 | [diff] [blame] | 22 | |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 23 | using namespace clang; |
| 24 | using namespace CodeGen; |
| 25 | |
| Mike Stump | cf62d39 | 2009-03-06 18:42:23 +0000 | [diff] [blame] | 26 | llvm::Constant *CodeGenFunction:: |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 27 | BuildDescriptorBlockDecl(bool BlockHasCopyDispose, CharUnits Size, |
| Mike Stump | a803b0e | 2009-03-25 17:58:24 +0000 | [diff] [blame] | 28 | const llvm::StructType* Ty, |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 29 | std::vector<HelperInfo> *NoteForHelper) { |
| Mike Stump | 56129b1 | 2009-02-13 16:55:51 +0000 | [diff] [blame] | 30 | const llvm::Type *UnsignedLongTy |
| 31 | = CGM.getTypes().ConvertType(getContext().UnsignedLongTy); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 32 | llvm::Constant *C; |
| 33 | std::vector<llvm::Constant*> Elts; |
| 34 | |
| 35 | // reserved |
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 36 | C = llvm::ConstantInt::get(UnsignedLongTy, 0); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 37 | Elts.push_back(C); |
| 38 | |
| 39 | // Size |
| Mike Stump | d684000 | 2009-02-21 20:07:44 +0000 | [diff] [blame] | 40 | // 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. |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 43 | C = llvm::ConstantInt::get(UnsignedLongTy, Size.getQuantity()); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 44 | Elts.push_back(C); |
| 45 | |
| 46 | if (BlockHasCopyDispose) { |
| 47 | // copy_func_helper_decl |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 48 | Elts.push_back(BuildCopyHelper(Ty, NoteForHelper)); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 49 | |
| 50 | // destroy_func_decl |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 51 | Elts.push_back(BuildDestroyHelper(Ty, NoteForHelper)); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| Nick Lewycky | 0d36dd2 | 2009-09-19 20:00:52 +0000 | [diff] [blame] | 54 | C = llvm::ConstantStruct::get(VMContext, Elts, false); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 55 | |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 56 | C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true, |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 57 | llvm::GlobalValue::InternalLinkage, |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 58 | C, "__block_descriptor_tmp"); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 59 | return C; |
| 60 | } |
| 61 | |
| Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 62 | llvm::Constant *BlockModule::getNSConcreteGlobalBlock() { |
| Chris Lattner | e2f79b6 | 2009-05-13 02:50:56 +0000 | [diff] [blame] | 63 | if (NSConcreteGlobalBlock == 0) |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 64 | NSConcreteGlobalBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty, |
| Chris Lattner | e2f79b6 | 2009-05-13 02:50:56 +0000 | [diff] [blame] | 65 | "_NSConcreteGlobalBlock"); |
| Mike Stump | f99f1d0 | 2009-02-13 17:23:42 +0000 | [diff] [blame] | 66 | return NSConcreteGlobalBlock; |
| 67 | } |
| 68 | |
| Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 69 | llvm::Constant *BlockModule::getNSConcreteStackBlock() { |
| Chris Lattner | e2f79b6 | 2009-05-13 02:50:56 +0000 | [diff] [blame] | 70 | if (NSConcreteStackBlock == 0) |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 71 | NSConcreteStackBlock = CGM.CreateRuntimeVariable(PtrToInt8Ty, |
| Chris Lattner | e2f79b6 | 2009-05-13 02:50:56 +0000 | [diff] [blame] | 72 | "_NSConcreteStackBlock"); |
| Mike Stump | 59c5b11 | 2009-02-13 19:29:27 +0000 | [diff] [blame] | 73 | return NSConcreteStackBlock; |
| 74 | } |
| 75 | |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 76 | static void CollectBlockDeclRefInfo( |
| 77 | const Stmt *S, CodeGenFunction::BlockInfo &Info, |
| 78 | llvm::SmallSet<const DeclContext *, 16> &InnerContexts) { |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 79 | for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end(); |
| 80 | I != E; ++I) |
| Daniel Dunbar | 82573ee | 2009-03-02 07:00:57 +0000 | [diff] [blame] | 81 | if (*I) |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 82 | CollectBlockDeclRefInfo(*I, Info, InnerContexts); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 83 | |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 84 | // We want to ensure we walk down into block literals so we can find |
| 85 | // all nested BlockDeclRefExprs. |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 86 | if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { |
| 87 | InnerContexts.insert(cast<DeclContext>(BE->getBlockDecl())); |
| 88 | CollectBlockDeclRefInfo(BE->getBody(), Info, InnerContexts); |
| 89 | } |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 90 | |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 91 | if (const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(S)) { |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 92 | // FIXME: Handle enums. |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 93 | if (isa<FunctionDecl>(BDRE->getDecl())) |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 94 | return; |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 95 | |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 96 | // Only Decls that escape are added. |
| 97 | if (!InnerContexts.count(BDRE->getDecl()->getDeclContext())) |
| 98 | Info.DeclRefs.push_back(BDRE); |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 99 | } |
| 100 | } |
| 101 | |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 102 | /// CanBlockBeGlobal - Given a BlockInfo struct, determines if a block can be |
| 103 | /// declared as a global variable instead of on the stack. |
| Chris Lattner | e2f79b6 | 2009-05-13 02:50:56 +0000 | [diff] [blame] | 104 | static bool CanBlockBeGlobal(const CodeGenFunction::BlockInfo &Info) { |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 105 | return Info.DeclRefs.empty(); |
| 106 | } |
| 107 | |
| 108 | /// AllocateAllBlockDeclRefs - Preallocate all nested BlockDeclRefExprs to |
| 109 | /// ensure we can generate the debug information for the parameter for the block |
| 110 | /// invoke function. |
| 111 | static void AllocateAllBlockDeclRefs(const CodeGenFunction::BlockInfo &Info, |
| 112 | CodeGenFunction *CGF) { |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 113 | // FIXME: Also always forward the this pointer in C++ as well. |
| 114 | |
| 115 | for (size_t i = 0; i < Info.DeclRefs.size(); ++i) |
| 116 | CGF->AllocateBlockDecl(Info.DeclRefs[i]); |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 117 | } |
| 118 | |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 119 | // FIXME: Push most into CGM, passing down a few bits, like current function |
| 120 | // name. |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 121 | llvm::Value *CodeGenFunction::BuildBlockLiteralTmp(const BlockExpr *BE) { |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 122 | |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 123 | std::string Name = CurFn->getName(); |
| 124 | CodeGenFunction::BlockInfo Info(0, Name.c_str()); |
| Mike Stump | 38e1627 | 2009-10-21 22:01:24 +0000 | [diff] [blame] | 125 | llvm::SmallSet<const DeclContext *, 16> InnerContexts; |
| 126 | InnerContexts.insert(BE->getBlockDecl()); |
| 127 | CollectBlockDeclRefInfo(BE->getBody(), Info, InnerContexts); |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 128 | |
| 129 | // Check if the block can be global. |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 130 | // FIXME: This test doesn't work for nested blocks yet. Longer term, I'd like |
| 131 | // to just have one code path. We should move this function into CGM and pass |
| 132 | // CGF, then we can just check to see if CGF is 0. |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 133 | if (0 && CanBlockBeGlobal(Info)) |
| Anders Carlsson | 4de9fce | 2009-03-01 01:09:12 +0000 | [diff] [blame] | 134 | return CGM.GetAddrOfGlobalBlock(BE, Name.c_str()); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 135 | |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 136 | size_t BlockFields = 5; |
| 137 | |
| 138 | bool hasIntrospection = CGM.getContext().getLangOptions().BlockIntrospection; |
| 139 | |
| 140 | if (hasIntrospection) { |
| 141 | BlockFields++; |
| 142 | } |
| 143 | std::vector<llvm::Constant*> Elts(BlockFields); |
| 144 | |
| 145 | if (hasIntrospection) { |
| 146 | std::string BlockTypeEncoding; |
| 147 | CGM.getContext().getObjCEncodingForBlock(BE, BlockTypeEncoding); |
| 148 | |
| 149 | Elts[5] = llvm::ConstantExpr::getBitCast( |
| 150 | CGM.GetAddrOfConstantCString(BlockTypeEncoding), PtrToInt8Ty); |
| 151 | } |
| 152 | |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 153 | llvm::Constant *C; |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 154 | llvm::Value *V; |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 155 | |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 156 | { |
| 157 | // C = BuildBlockStructInitlist(); |
| 158 | unsigned int flags = BLOCK_HAS_DESCRIPTOR; |
| 159 | |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 160 | if (hasIntrospection) |
| 161 | flags |= BLOCK_HAS_OBJC_TYPE; |
| 162 | |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 163 | // We run this first so that we set BlockHasCopyDispose from the entire |
| 164 | // block literal. |
| 165 | // __invoke |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 166 | CharUnits subBlockSize; |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 167 | CharUnits subBlockAlign; |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 168 | llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls; |
| Mike Stump | a803b0e | 2009-03-25 17:58:24 +0000 | [diff] [blame] | 169 | bool subBlockHasCopyDispose = false; |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 170 | llvm::Function *Fn |
| Mike Stump | bb30419 | 2009-09-24 22:31:14 +0000 | [diff] [blame] | 171 | = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, CurFuncDecl, |
| 172 | LocalDeclMap, |
| Mike Stump | 7f28a9c | 2009-03-13 23:34:28 +0000 | [diff] [blame] | 173 | subBlockSize, |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 174 | subBlockAlign, |
| 175 | subBlockDeclRefDecls, |
| Mike Stump | a803b0e | 2009-03-25 17:58:24 +0000 | [diff] [blame] | 176 | subBlockHasCopyDispose); |
| 177 | BlockHasCopyDispose |= subBlockHasCopyDispose; |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 178 | Elts[3] = Fn; |
| 179 | |
| Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 180 | // FIXME: Don't use BlockHasCopyDispose, it is set more often then |
| 181 | // necessary, for example: { ^{ __block int i; ^{ i = 1; }(); }(); } |
| Mike Stump | a803b0e | 2009-03-25 17:58:24 +0000 | [diff] [blame] | 182 | if (subBlockHasCopyDispose) |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 183 | flags |= BLOCK_HAS_COPY_DISPOSE; |
| 184 | |
| Mike Stump | 7d6dc4f | 2009-02-13 20:17:16 +0000 | [diff] [blame] | 185 | // __isa |
| Mike Stump | 59c5b11 | 2009-02-13 19:29:27 +0000 | [diff] [blame] | 186 | C = CGM.getNSConcreteStackBlock(); |
| Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 187 | C = llvm::ConstantExpr::getBitCast(C, PtrToInt8Ty); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 188 | Elts[0] = C; |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 189 | |
| 190 | // __flags |
| 191 | const llvm::IntegerType *IntTy = cast<llvm::IntegerType>( |
| 192 | CGM.getTypes().ConvertType(CGM.getContext().IntTy)); |
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 193 | C = llvm::ConstantInt::get(IntTy, flags); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 194 | Elts[1] = C; |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 195 | |
| 196 | // __reserved |
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 197 | C = llvm::ConstantInt::get(IntTy, 0); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 198 | Elts[2] = C; |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 199 | |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 200 | if (subBlockDeclRefDecls.size() == 0) { |
| Mike Stump | cf62d39 | 2009-03-06 18:42:23 +0000 | [diff] [blame] | 201 | // __descriptor |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 202 | Elts[4] = BuildDescriptorBlockDecl(subBlockHasCopyDispose, subBlockSize, |
| 203 | 0, 0); |
| Mike Stump | cf62d39 | 2009-03-06 18:42:23 +0000 | [diff] [blame] | 204 | |
| Mike Stump | 5570cfe | 2009-03-01 20:07:53 +0000 | [diff] [blame] | 205 | // Optimize to being a global block. |
| 206 | Elts[0] = CGM.getNSConcreteGlobalBlock(); |
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 207 | Elts[1] = llvm::ConstantInt::get(IntTy, flags|BLOCK_IS_GLOBAL); |
| Mike Stump | 5570cfe | 2009-03-01 20:07:53 +0000 | [diff] [blame] | 208 | |
| Nick Lewycky | 0d36dd2 | 2009-09-19 20:00:52 +0000 | [diff] [blame] | 209 | C = llvm::ConstantStruct::get(VMContext, Elts, false); |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 210 | |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 211 | C = new llvm::GlobalVariable(CGM.getModule(), C->getType(), true, |
| Benjamin Kramer | 3cf7c5d | 2010-01-22 13:59:13 +0000 | [diff] [blame] | 212 | llvm::GlobalValue::InternalLinkage, C, |
| 213 | "__block_holder_tmp_" + |
| 214 | llvm::Twine(CGM.getGlobalUniqueCount())); |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 215 | QualType BPT = BE->getType(); |
| Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 216 | C = llvm::ConstantExpr::getBitCast(C, ConvertType(BPT)); |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 217 | return C; |
| 218 | } |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 219 | |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 220 | std::vector<const llvm::Type *> Types(BlockFields+subBlockDeclRefDecls.size()); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 221 | for (int i=0; i<4; ++i) |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 222 | Types[i] = Elts[i]->getType(); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 223 | Types[4] = PtrToInt8Ty; |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 224 | if (hasIntrospection) |
| 225 | Types[5] = PtrToInt8Ty; |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 226 | |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 227 | for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) { |
| 228 | const Expr *E = subBlockDeclRefDecls[i]; |
| 229 | const BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E); |
| 230 | QualType Ty = E->getType(); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 231 | if (BDRE && BDRE->isByRef()) { |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 232 | Types[i+BlockFields] = llvm::PointerType::get(BuildByRefType(BDRE->getDecl()), 0); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 233 | } else |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 234 | Types[i+BlockFields] = ConvertType(Ty); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 235 | } |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 236 | |
| Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame] | 237 | llvm::StructType *Ty = llvm::StructType::get(VMContext, Types, true); |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 238 | |
| 239 | llvm::AllocaInst *A = CreateTempAlloca(Ty); |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 240 | A->setAlignment(subBlockAlign.getQuantity()); |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 241 | V = A; |
| 242 | |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 243 | std::vector<HelperInfo> NoteForHelper(subBlockDeclRefDecls.size()); |
| 244 | int helpersize = 0; |
| 245 | |
| 246 | for (unsigned i=0; i<4; ++i) |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 247 | Builder.CreateStore(Elts[i], Builder.CreateStructGEP(V, i, "block.tmp")); |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 248 | if (hasIntrospection) |
| 249 | Builder.CreateStore(Elts[5], Builder.CreateStructGEP(V, 5, "block.tmp")); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 250 | |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 251 | for (unsigned i=0; i < subBlockDeclRefDecls.size(); ++i) |
| 252 | { |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 253 | // FIXME: Push const down. |
| 254 | Expr *E = const_cast<Expr*>(subBlockDeclRefDecls[i]); |
| 255 | DeclRefExpr *DR; |
| 256 | ValueDecl *VD; |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 257 | |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 258 | DR = dyn_cast<DeclRefExpr>(E); |
| 259 | // Skip padding. |
| 260 | if (DR) continue; |
| 261 | |
| 262 | BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(E); |
| 263 | VD = BDRE->getDecl(); |
| 264 | |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 265 | llvm::Value* Addr = Builder.CreateStructGEP(V, i+BlockFields, "tmp"); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 266 | NoteForHelper[helpersize].index = i+5; |
| Mike Stump | 39605b4 | 2009-09-22 02:12:52 +0000 | [diff] [blame] | 267 | NoteForHelper[helpersize].RequiresCopying |
| 268 | = BlockRequiresCopying(VD->getType()); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 269 | NoteForHelper[helpersize].flag |
| Mike Stump | 39605b4 | 2009-09-22 02:12:52 +0000 | [diff] [blame] | 270 | = (VD->getType()->isBlockPointerType() |
| 271 | ? BLOCK_FIELD_IS_BLOCK |
| 272 | : BLOCK_FIELD_IS_OBJECT); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 273 | |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 274 | if (LocalDeclMap[VD]) { |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 275 | if (BDRE->isByRef()) { |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 276 | NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF | |
| Mike Stump | f4bc312 | 2009-03-07 06:04:31 +0000 | [diff] [blame] | 277 | // FIXME: Someone double check this. |
| 278 | (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 279 | llvm::Value *Loc = LocalDeclMap[VD]; |
| 280 | Loc = Builder.CreateStructGEP(Loc, 1, "forwarding"); |
| Daniel Dunbar | 2da84ff | 2009-11-29 21:23:36 +0000 | [diff] [blame] | 281 | Loc = Builder.CreateLoad(Loc); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 282 | Builder.CreateStore(Loc, Addr); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 283 | ++helpersize; |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 284 | continue; |
| 285 | } else |
| John McCall | dbd872f | 2009-12-08 09:08:17 +0000 | [diff] [blame] | 286 | E = new (getContext()) DeclRefExpr (VD, |
| Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 287 | VD->getType(), |
| 288 | SourceLocation()); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 289 | } |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 290 | if (BDRE->isByRef()) { |
| Mike Stump | a8b60c9 | 2009-03-21 21:00:35 +0000 | [diff] [blame] | 291 | NoteForHelper[helpersize].flag = BLOCK_FIELD_IS_BYREF | |
| 292 | // FIXME: Someone double check this. |
| 293 | (VD->getType().isObjCGCWeak() ? BLOCK_FIELD_IS_WEAK : 0); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 294 | E = new (getContext()) |
| 295 | UnaryOperator(E, UnaryOperator::AddrOf, |
| 296 | getContext().getPointerType(E->getType()), |
| 297 | SourceLocation()); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 298 | } |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 299 | ++helpersize; |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 300 | |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 301 | RValue r = EmitAnyExpr(E, Addr, false); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 302 | if (r.isScalar()) { |
| 303 | llvm::Value *Loc = r.getScalarVal(); |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 304 | const llvm::Type *Ty = Types[i+BlockFields]; |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 305 | if (BDRE->isByRef()) { |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 306 | // E is now the address of the value field, instead, we want the |
| 307 | // address of the actual ByRef struct. We optimize this slightly |
| 308 | // compared to gcc by not grabbing the forwarding slot as this must |
| 309 | // be done during Block_copy for us, and we can postpone the work |
| 310 | // until then. |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 311 | CharUnits offset = BlockDecls[BDRE->getDecl()]; |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 312 | |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 313 | llvm::Value *BlockLiteral = LoadBlockStruct(); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 314 | |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 315 | Loc = Builder.CreateGEP(BlockLiteral, |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 316 | llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 317 | offset.getQuantity()), |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 318 | "block.literal"); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 319 | Ty = llvm::PointerType::get(Ty, 0); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 320 | Loc = Builder.CreateBitCast(Loc, Ty); |
| Daniel Dunbar | 2da84ff | 2009-11-29 21:23:36 +0000 | [diff] [blame] | 321 | Loc = Builder.CreateLoad(Loc); |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 322 | // Loc = Builder.CreateBitCast(Loc, Ty); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 323 | } |
| 324 | Builder.CreateStore(Loc, Addr); |
| 325 | } else if (r.isComplex()) |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 326 | // FIXME: implement |
| 327 | ErrorUnsupported(BE, "complex in block literal"); |
| 328 | else if (r.isAggregate()) |
| 329 | ; // Already created into the destination |
| 330 | else |
| 331 | assert (0 && "bad block variable"); |
| 332 | // FIXME: Ensure that the offset created by the backend for |
| 333 | // the struct matches the previously computed offset in BlockDecls. |
| 334 | } |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 335 | NoteForHelper.resize(helpersize); |
| Mike Stump | cf62d39 | 2009-03-06 18:42:23 +0000 | [diff] [blame] | 336 | |
| 337 | // __descriptor |
| Mike Stump | a803b0e | 2009-03-25 17:58:24 +0000 | [diff] [blame] | 338 | llvm::Value *Descriptor = BuildDescriptorBlockDecl(subBlockHasCopyDispose, |
| 339 | subBlockSize, Ty, |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 340 | &NoteForHelper); |
| 341 | Descriptor = Builder.CreateBitCast(Descriptor, PtrToInt8Ty); |
| 342 | Builder.CreateStore(Descriptor, Builder.CreateStructGEP(V, 4, "block.tmp")); |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 343 | } |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 344 | |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 345 | QualType BPT = BE->getType(); |
| Fariborz Jahanian | 263c4de | 2010-02-10 23:34:57 +0000 | [diff] [blame] | 346 | V = Builder.CreateBitCast(V, ConvertType(BPT)); |
| 347 | // See if this is a __weak block variable and the must call objc_read_weak |
| 348 | // on it. |
| 349 | const FunctionType *ftype = BPT->getPointeeType()->getAs<FunctionType>(); |
| 350 | QualType RES = ftype->getResultType(); |
| 351 | if (RES.isObjCGCWeak()) { |
| 352 | // Must cast argument to id* |
| 353 | const llvm::Type *ObjectPtrTy = |
| 354 | ConvertType(CGM.getContext().getObjCIdType()); |
| 355 | const llvm::Type *PtrObjectPtrTy = |
| 356 | llvm::PointerType::getUnqual(ObjectPtrTy); |
| 357 | V = Builder.CreateBitCast(V, PtrObjectPtrTy); |
| 358 | V = CGM.getObjCRuntime().EmitObjCWeakRead(*this, V); |
| 359 | } |
| 360 | return V; |
| Mike Stump | e5fee25 | 2009-02-13 16:19:19 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | |
| Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 364 | const llvm::Type *BlockModule::getBlockDescriptorType() { |
| Mike Stump | ab69514 | 2009-02-13 15:16:56 +0000 | [diff] [blame] | 365 | if (BlockDescriptorType) |
| 366 | return BlockDescriptorType; |
| 367 | |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 368 | const llvm::Type *UnsignedLongTy = |
| Mike Stump | ab69514 | 2009-02-13 15:16:56 +0000 | [diff] [blame] | 369 | getTypes().ConvertType(getContext().UnsignedLongTy); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 370 | |
| Mike Stump | ab69514 | 2009-02-13 15:16:56 +0000 | [diff] [blame] | 371 | // struct __block_descriptor { |
| 372 | // unsigned long reserved; |
| 373 | // unsigned long block_size; |
| 374 | // }; |
| Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame] | 375 | BlockDescriptorType = llvm::StructType::get(UnsignedLongTy->getContext(), |
| 376 | UnsignedLongTy, |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 377 | UnsignedLongTy, |
| Mike Stump | ab69514 | 2009-02-13 15:16:56 +0000 | [diff] [blame] | 378 | NULL); |
| 379 | |
| 380 | getModule().addTypeName("struct.__block_descriptor", |
| 381 | BlockDescriptorType); |
| 382 | |
| 383 | return BlockDescriptorType; |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 384 | } |
| 385 | |
| Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 386 | const llvm::Type *BlockModule::getGenericBlockLiteralType() { |
| Mike Stump | 9b8a797 | 2009-02-13 15:25:34 +0000 | [diff] [blame] | 387 | if (GenericBlockLiteralType) |
| 388 | return GenericBlockLiteralType; |
| 389 | |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 390 | const llvm::Type *BlockDescPtrTy = |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 391 | llvm::PointerType::getUnqual(getBlockDescriptorType()); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 392 | |
| Mike Stump | 7cbb360 | 2009-02-13 16:01:35 +0000 | [diff] [blame] | 393 | const llvm::IntegerType *IntTy = cast<llvm::IntegerType>( |
| 394 | getTypes().ConvertType(getContext().IntTy)); |
| 395 | |
| Mike Stump | 9b8a797 | 2009-02-13 15:25:34 +0000 | [diff] [blame] | 396 | // struct __block_literal_generic { |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 397 | // void *__isa; |
| 398 | // int __flags; |
| 399 | // int __reserved; |
| 400 | // void (*__invoke)(void *); |
| 401 | // struct __block_descriptor *__descriptor; |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 402 | // // GNU runtime only: |
| 403 | // const char *types; |
| Mike Stump | 9b8a797 | 2009-02-13 15:25:34 +0000 | [diff] [blame] | 404 | // }; |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 405 | if (CGM.getContext().getLangOptions().BlockIntrospection) |
| 406 | GenericBlockLiteralType = llvm::StructType::get(IntTy->getContext(), |
| 407 | PtrToInt8Ty, |
| 408 | IntTy, |
| 409 | IntTy, |
| 410 | PtrToInt8Ty, |
| 411 | BlockDescPtrTy, |
| 412 | PtrToInt8Ty, |
| 413 | NULL); |
| 414 | else |
| 415 | GenericBlockLiteralType = llvm::StructType::get(IntTy->getContext(), |
| Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame] | 416 | PtrToInt8Ty, |
| Mike Stump | 7cbb360 | 2009-02-13 16:01:35 +0000 | [diff] [blame] | 417 | IntTy, |
| 418 | IntTy, |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 419 | PtrToInt8Ty, |
| Mike Stump | 9b8a797 | 2009-02-13 15:25:34 +0000 | [diff] [blame] | 420 | BlockDescPtrTy, |
| 421 | NULL); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 422 | |
| Mike Stump | 9b8a797 | 2009-02-13 15:25:34 +0000 | [diff] [blame] | 423 | getModule().addTypeName("struct.__block_literal_generic", |
| 424 | GenericBlockLiteralType); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 425 | |
| Mike Stump | 9b8a797 | 2009-02-13 15:25:34 +0000 | [diff] [blame] | 426 | return GenericBlockLiteralType; |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 427 | } |
| 428 | |
| Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 429 | const llvm::Type *BlockModule::getGenericExtendedBlockLiteralType() { |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 430 | if (GenericExtendedBlockLiteralType) |
| 431 | return GenericExtendedBlockLiteralType; |
| 432 | |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 433 | const llvm::Type *BlockDescPtrTy = |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 434 | llvm::PointerType::getUnqual(getBlockDescriptorType()); |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 435 | |
| 436 | const llvm::IntegerType *IntTy = cast<llvm::IntegerType>( |
| 437 | getTypes().ConvertType(getContext().IntTy)); |
| 438 | |
| 439 | // struct __block_literal_generic { |
| 440 | // void *__isa; |
| 441 | // int __flags; |
| 442 | // int __reserved; |
| 443 | // void (*__invoke)(void *); |
| 444 | // struct __block_descriptor *__descriptor; |
| 445 | // void *__copy_func_helper_decl; |
| 446 | // void *__destroy_func_decl; |
| 447 | // }; |
| Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame] | 448 | GenericExtendedBlockLiteralType = llvm::StructType::get(IntTy->getContext(), |
| 449 | PtrToInt8Ty, |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 450 | IntTy, |
| 451 | IntTy, |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 452 | PtrToInt8Ty, |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 453 | BlockDescPtrTy, |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 454 | PtrToInt8Ty, |
| 455 | PtrToInt8Ty, |
| Mike Stump | bd65cac | 2009-02-19 01:01:04 +0000 | [diff] [blame] | 456 | NULL); |
| 457 | |
| 458 | getModule().addTypeName("struct.__block_literal_extended_generic", |
| 459 | GenericExtendedBlockLiteralType); |
| 460 | |
| 461 | return GenericExtendedBlockLiteralType; |
| 462 | } |
| 463 | |
| Anders Carlsson | a1736c0 | 2009-12-24 21:13:40 +0000 | [diff] [blame] | 464 | RValue CodeGenFunction::EmitBlockCallExpr(const CallExpr* E, |
| 465 | ReturnValueSlot ReturnValue) { |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 466 | const BlockPointerType *BPT = |
| Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 467 | E->getCallee()->getType()->getAs<BlockPointerType>(); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 468 | |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 469 | llvm::Value *Callee = EmitScalarExpr(E->getCallee()); |
| 470 | |
| 471 | // Get a pointer to the generic block literal. |
| 472 | const llvm::Type *BlockLiteralTy = |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 473 | llvm::PointerType::getUnqual(CGM.getGenericBlockLiteralType()); |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 474 | |
| 475 | // Bitcast the callee to a block literal. |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 476 | llvm::Value *BlockLiteral = |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 477 | Builder.CreateBitCast(Callee, BlockLiteralTy, "block.literal"); |
| 478 | |
| 479 | // Get the function pointer from the literal. |
| 480 | llvm::Value *FuncPtr = Builder.CreateStructGEP(BlockLiteral, 3, "tmp"); |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 481 | |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 482 | BlockLiteral = |
| 483 | Builder.CreateBitCast(BlockLiteral, |
| Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 484 | llvm::Type::getInt8PtrTy(VMContext), |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 485 | "tmp"); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 486 | |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 487 | // Add the block literal. |
| 488 | QualType VoidPtrTy = getContext().getPointerType(getContext().VoidTy); |
| 489 | CallArgList Args; |
| 490 | Args.push_back(std::make_pair(RValue::get(BlockLiteral), VoidPtrTy)); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 491 | |
| Anders Carlsson | 782f397 | 2009-04-08 23:13:16 +0000 | [diff] [blame] | 492 | QualType FnType = BPT->getPointeeType(); |
| 493 | |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 494 | // And the rest of the arguments. |
| John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 495 | EmitCallArgs(Args, FnType->getAs<FunctionProtoType>(), |
| Anders Carlsson | 782f397 | 2009-04-08 23:13:16 +0000 | [diff] [blame] | 496 | E->arg_begin(), E->arg_end()); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 497 | |
| Anders Carlsson | 6e460ff | 2009-04-07 22:10:22 +0000 | [diff] [blame] | 498 | // Load the function. |
| Daniel Dunbar | 2da84ff | 2009-11-29 21:23:36 +0000 | [diff] [blame] | 499 | llvm::Value *Func = Builder.CreateLoad(FuncPtr, "tmp"); |
| Anders Carlsson | 6e460ff | 2009-04-07 22:10:22 +0000 | [diff] [blame] | 500 | |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 501 | const FunctionType *FuncTy = FnType->getAs<FunctionType>(); |
| 502 | QualType ResultType = FuncTy->getResultType(); |
| Anders Carlsson | a17d7cc | 2009-04-08 02:55:55 +0000 | [diff] [blame] | 503 | |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 504 | const CGFunctionInfo &FnInfo = |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 505 | CGM.getTypes().getFunctionInfo(ResultType, Args, FuncTy->getCallConv(), |
| 506 | FuncTy->getNoReturnAttr()); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 507 | |
| Anders Carlsson | 6e460ff | 2009-04-07 22:10:22 +0000 | [diff] [blame] | 508 | // Cast the function pointer to the right type. |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 509 | const llvm::Type *BlockFTy = |
| Anders Carlsson | a17d7cc | 2009-04-08 02:55:55 +0000 | [diff] [blame] | 510 | CGM.getTypes().GetFunctionType(FnInfo, false); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 511 | |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 512 | const llvm::Type *BlockFTyPtr = llvm::PointerType::getUnqual(BlockFTy); |
| Anders Carlsson | 6e460ff | 2009-04-07 22:10:22 +0000 | [diff] [blame] | 513 | Func = Builder.CreateBitCast(Func, BlockFTyPtr); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 514 | |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 515 | // And call the block. |
| Anders Carlsson | a1736c0 | 2009-12-24 21:13:40 +0000 | [diff] [blame] | 516 | return EmitCall(FnInfo, Func, ReturnValue, Args); |
| Anders Carlsson | acfde80 | 2009-02-12 00:39:25 +0000 | [diff] [blame] | 517 | } |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 518 | |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 519 | CharUnits CodeGenFunction::AllocateBlockDecl(const BlockDeclRefExpr *E) { |
| Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 520 | const ValueDecl *VD = E->getDecl(); |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 521 | CharUnits &offset = BlockDecls[VD]; |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 522 | |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 523 | // See if we have already allocated an offset for this variable. |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 524 | if (offset.isPositive()) |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 525 | return offset; |
| 526 | |
| 527 | // Don't run the expensive check, unless we have to. |
| Mike Stump | 083c25e | 2009-10-22 00:49:09 +0000 | [diff] [blame] | 528 | if (!BlockHasCopyDispose) |
| 529 | if (E->isByRef() |
| 530 | || BlockRequiresCopying(E->getType())) |
| 531 | BlockHasCopyDispose = true; |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 532 | |
| 533 | // if not, allocate one now. |
| 534 | offset = getBlockOffset(E); |
| 535 | |
| 536 | return offset; |
| 537 | } |
| 538 | |
| 539 | llvm::Value *CodeGenFunction::GetAddrOfBlockDecl(const BlockDeclRefExpr *E) { |
| 540 | const ValueDecl *VD = E->getDecl(); |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 541 | CharUnits offset = AllocateBlockDecl(E); |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 542 | |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 543 | |
| 544 | llvm::Value *BlockLiteral = LoadBlockStruct(); |
| 545 | llvm::Value *V = Builder.CreateGEP(BlockLiteral, |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 546 | llvm::ConstantInt::get(llvm::Type::getInt64Ty(VMContext), |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 547 | offset.getQuantity()), |
| Mike Stump | 58a8514 | 2009-03-04 22:48:06 +0000 | [diff] [blame] | 548 | "block.literal"); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 549 | if (E->isByRef()) { |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 550 | const llvm::Type *PtrStructTy |
| Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 551 | = llvm::PointerType::get(BuildByRefType(VD), 0); |
| Mike Stump | a8b60c9 | 2009-03-21 21:00:35 +0000 | [diff] [blame] | 552 | // The block literal will need a copy/destroy helper. |
| 553 | BlockHasCopyDispose = true; |
| Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 554 | |
| 555 | const llvm::Type *Ty = PtrStructTy; |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 556 | Ty = llvm::PointerType::get(Ty, 0); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 557 | V = Builder.CreateBitCast(V, Ty); |
| Daniel Dunbar | 2da84ff | 2009-11-29 21:23:36 +0000 | [diff] [blame] | 558 | V = Builder.CreateLoad(V); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 559 | V = Builder.CreateStructGEP(V, 1, "forwarding"); |
| Daniel Dunbar | 2da84ff | 2009-11-29 21:23:36 +0000 | [diff] [blame] | 560 | V = Builder.CreateLoad(V); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 561 | V = Builder.CreateBitCast(V, PtrStructTy); |
| Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 562 | V = Builder.CreateStructGEP(V, getByRefValueLLVMField(VD), |
| 563 | VD->getNameAsString()); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 564 | } else { |
| Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 565 | const llvm::Type *Ty = CGM.getTypes().ConvertType(VD->getType()); |
| 566 | |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 567 | Ty = llvm::PointerType::get(Ty, 0); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 568 | V = Builder.CreateBitCast(V, Ty); |
| 569 | } |
| 570 | return V; |
| 571 | } |
| 572 | |
| Mike Stump | 6cc88f7 | 2009-03-20 21:53:12 +0000 | [diff] [blame] | 573 | void CodeGenFunction::BlockForwardSelf() { |
| 574 | const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl); |
| 575 | ImplicitParamDecl *SelfDecl = OMD->getSelfDecl(); |
| 576 | llvm::Value *&DMEntry = LocalDeclMap[SelfDecl]; |
| 577 | if (DMEntry) |
| 578 | return; |
| 579 | // FIXME - Eliminate BlockDeclRefExprs, clients don't need/want to care |
| 580 | BlockDeclRefExpr *BDRE = new (getContext()) |
| 581 | BlockDeclRefExpr(SelfDecl, |
| 582 | SelfDecl->getType(), SourceLocation(), false); |
| 583 | DMEntry = GetAddrOfBlockDecl(BDRE); |
| 584 | } |
| 585 | |
| Mike Stump | 67a6448 | 2009-02-14 22:16:35 +0000 | [diff] [blame] | 586 | llvm::Constant * |
| Mike Stump | 90a9043 | 2009-03-04 18:47:42 +0000 | [diff] [blame] | 587 | BlockModule::GetAddrOfGlobalBlock(const BlockExpr *BE, const char * n) { |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 588 | // Generate the block descriptor. |
| 589 | const llvm::Type *UnsignedLongTy = Types.ConvertType(Context.UnsignedLongTy); |
| Mike Stump | 7cbb360 | 2009-02-13 16:01:35 +0000 | [diff] [blame] | 590 | const llvm::IntegerType *IntTy = cast<llvm::IntegerType>( |
| 591 | getTypes().ConvertType(getContext().IntTy)); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 592 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 593 | llvm::Constant *DescriptorFields[2]; |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 594 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 595 | // Reserved |
| Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 596 | DescriptorFields[0] = llvm::Constant::getNullValue(UnsignedLongTy); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 597 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 598 | // Block literal size. For global blocks we just use the size of the generic |
| 599 | // block literal struct. |
| Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 600 | CharUnits BlockLiteralSize = |
| 601 | CGM.GetTargetTypeStoreSize(getGenericBlockLiteralType()); |
| Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 602 | DescriptorFields[1] = |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 603 | llvm::ConstantInt::get(UnsignedLongTy,BlockLiteralSize.getQuantity()); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 604 | |
| 605 | llvm::Constant *DescriptorStruct = |
| Nick Lewycky | 0d36dd2 | 2009-09-19 20:00:52 +0000 | [diff] [blame] | 606 | llvm::ConstantStruct::get(VMContext, &DescriptorFields[0], 2, false); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 607 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 608 | llvm::GlobalVariable *Descriptor = |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 609 | new llvm::GlobalVariable(getModule(), DescriptorStruct->getType(), true, |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 610 | llvm::GlobalVariable::InternalLinkage, |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 611 | DescriptorStruct, "__block_descriptor_global"); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 612 | |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 613 | int FieldCount = 5; |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 614 | // Generate the constants for the block literal. |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 615 | if (CGM.getContext().getLangOptions().BlockIntrospection) |
| 616 | FieldCount = 6; |
| 617 | |
| 618 | std::vector<llvm::Constant*> LiteralFields(FieldCount); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 619 | |
| Mike Stump | 67a6448 | 2009-02-14 22:16:35 +0000 | [diff] [blame] | 620 | CodeGenFunction::BlockInfo Info(0, n); |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 621 | CharUnits subBlockSize; |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 622 | CharUnits subBlockAlign; |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 623 | llvm::SmallVector<const Expr *, 8> subBlockDeclRefDecls; |
| Daniel Dunbar | d67b09a | 2009-03-12 03:07:24 +0000 | [diff] [blame] | 624 | bool subBlockHasCopyDispose = false; |
| Mike Stump | 7f28a9c | 2009-03-13 23:34:28 +0000 | [diff] [blame] | 625 | llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap; |
| Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 626 | llvm::Function *Fn |
| Mike Stump | 6cc88f7 | 2009-03-20 21:53:12 +0000 | [diff] [blame] | 627 | = CodeGenFunction(CGM).GenerateBlockFunction(BE, Info, 0, LocalDeclMap, |
| Mike Stump | 7f28a9c | 2009-03-13 23:34:28 +0000 | [diff] [blame] | 628 | subBlockSize, |
| Mike Stump | 90a9043 | 2009-03-04 18:47:42 +0000 | [diff] [blame] | 629 | subBlockAlign, |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 630 | subBlockDeclRefDecls, |
| 631 | subBlockHasCopyDispose); |
| Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 632 | assert(subBlockSize == BlockLiteralSize |
| 633 | && "no imports allowed for global block"); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 634 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 635 | // isa |
| Mike Stump | f99f1d0 | 2009-02-13 17:23:42 +0000 | [diff] [blame] | 636 | LiteralFields[0] = getNSConcreteGlobalBlock(); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 637 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 638 | // Flags |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 639 | LiteralFields[1] = CGM.getContext().getLangOptions().BlockIntrospection ? |
| 640 | llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR | |
| 641 | BLOCK_HAS_OBJC_TYPE) : |
| Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 642 | llvm::ConstantInt::get(IntTy, BLOCK_IS_GLOBAL | BLOCK_HAS_DESCRIPTOR); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 643 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 644 | // Reserved |
| Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 645 | LiteralFields[2] = llvm::Constant::getNullValue(IntTy); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 646 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 647 | // Function |
| 648 | LiteralFields[3] = Fn; |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 649 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 650 | // Descriptor |
| 651 | LiteralFields[4] = Descriptor; |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 652 | |
| 653 | // Type encoding |
| 654 | if (CGM.getContext().getLangOptions().BlockIntrospection) { |
| 655 | std::string BlockTypeEncoding; |
| 656 | CGM.getContext().getObjCEncodingForBlock(BE, BlockTypeEncoding); |
| 657 | |
| 658 | LiteralFields[5] = CGM.GetAddrOfConstantCString(BlockTypeEncoding); |
| 659 | } |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 660 | |
| 661 | llvm::Constant *BlockLiteralStruct = |
| David Chisnall | 5e530af | 2009-11-17 19:33:30 +0000 | [diff] [blame] | 662 | llvm::ConstantStruct::get(VMContext, LiteralFields, false); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 663 | |
| 664 | llvm::GlobalVariable *BlockLiteral = |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 665 | new llvm::GlobalVariable(getModule(), BlockLiteralStruct->getType(), true, |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 666 | llvm::GlobalVariable::InternalLinkage, |
| Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 667 | BlockLiteralStruct, "__block_literal_global"); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 668 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 669 | return BlockLiteral; |
| 670 | } |
| 671 | |
| Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 672 | llvm::Value *CodeGenFunction::LoadBlockStruct() { |
| Mike Stump | bf1914b | 2009-10-20 20:30:01 +0000 | [diff] [blame] | 673 | llvm::Value *V = Builder.CreateLoad(LocalDeclMap[getBlockStructDecl()], |
| 674 | "self"); |
| 675 | // For now, we codegen based upon byte offsets. |
| 676 | return Builder.CreateBitCast(V, PtrToInt8Ty); |
| Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 677 | } |
| 678 | |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 679 | llvm::Function * |
| 680 | CodeGenFunction::GenerateBlockFunction(const BlockExpr *BExpr, |
| 681 | const BlockInfo& Info, |
| Mike Stump | 6cc88f7 | 2009-03-20 21:53:12 +0000 | [diff] [blame] | 682 | const Decl *OuterFuncDecl, |
| Mike Stump | 7f28a9c | 2009-03-13 23:34:28 +0000 | [diff] [blame] | 683 | llvm::DenseMap<const Decl*, llvm::Value*> ldm, |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 684 | CharUnits &Size, |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 685 | CharUnits &Align, |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 686 | llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls, |
| 687 | bool &subBlockHasCopyDispose) { |
| Devang Patel | 963dfbd | 2009-04-15 21:51:44 +0000 | [diff] [blame] | 688 | |
| 689 | // Check if we should generate debug info for this block. |
| 690 | if (CGM.getDebugInfo()) |
| 691 | DebugInfo = CGM.getDebugInfo(); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 692 | |
| Mike Stump | 7f28a9c | 2009-03-13 23:34:28 +0000 | [diff] [blame] | 693 | // Arrange for local static and local extern declarations to appear |
| 694 | // to be local to this function as well, as they are directly referenced |
| 695 | // in a block. |
| 696 | for (llvm::DenseMap<const Decl *, llvm::Value*>::iterator i = ldm.begin(); |
| 697 | i != ldm.end(); |
| 698 | ++i) { |
| 699 | const VarDecl *VD = dyn_cast<VarDecl>(i->first); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 700 | |
| Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 701 | if (VD->getStorageClass() == VarDecl::Static || VD->hasExternalStorage()) |
| Mike Stump | 7f28a9c | 2009-03-13 23:34:28 +0000 | [diff] [blame] | 702 | LocalDeclMap[VD] = i->second; |
| 703 | } |
| 704 | |
| Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 705 | BlockOffset = |
| 706 | CGM.GetTargetTypeStoreSize(CGM.getGenericBlockLiteralType()); |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 707 | BlockAlign = getContext().getTypeAlignInChars(getContext().VoidPtrTy); |
| Eli Friedman | 48f9122 | 2009-03-28 03:24:54 +0000 | [diff] [blame] | 708 | |
| Fariborz Jahanian | 140fb26 | 2009-04-11 17:55:15 +0000 | [diff] [blame] | 709 | const FunctionType *BlockFunctionType = BExpr->getFunctionType(); |
| 710 | QualType ResultType; |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 711 | CallingConv CC = BlockFunctionType->getCallConv(); |
| 712 | bool NoReturn = BlockFunctionType->getNoReturnAttr(); |
| Fariborz Jahanian | 140fb26 | 2009-04-11 17:55:15 +0000 | [diff] [blame] | 713 | bool IsVariadic; |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 714 | if (const FunctionProtoType *FTy = |
| Fariborz Jahanian | da0895d | 2009-04-11 18:54:57 +0000 | [diff] [blame] | 715 | dyn_cast<FunctionProtoType>(BlockFunctionType)) { |
| Fariborz Jahanian | 140fb26 | 2009-04-11 17:55:15 +0000 | [diff] [blame] | 716 | ResultType = FTy->getResultType(); |
| 717 | IsVariadic = FTy->isVariadic(); |
| Mike Stump | b3589f4 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 718 | } else { |
| Fariborz Jahanian | 140fb26 | 2009-04-11 17:55:15 +0000 | [diff] [blame] | 719 | // K&R style block. |
| 720 | ResultType = BlockFunctionType->getResultType(); |
| 721 | IsVariadic = false; |
| 722 | } |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 723 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 724 | FunctionArgList Args; |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 725 | |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 726 | CurFuncDecl = OuterFuncDecl; |
| 727 | |
| Chris Lattner | 161d36d | 2009-02-28 19:01:03 +0000 | [diff] [blame] | 728 | const BlockDecl *BD = BExpr->getBlockDecl(); |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 729 | |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 730 | IdentifierInfo *II = &CGM.getContext().Idents.get(".block_descriptor"); |
| Mike Stump | adaaad3 | 2009-10-20 02:12:22 +0000 | [diff] [blame] | 731 | |
| Mike Stump | bfbd5df | 2009-10-21 18:24:18 +0000 | [diff] [blame] | 732 | // Allocate all BlockDeclRefDecls, so we can calculate the right ParmTy below. |
| Mike Stump | 0298d38 | 2009-10-21 22:02:08 +0000 | [diff] [blame] | 733 | AllocateAllBlockDeclRefs(Info, this); |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 734 | |
| Mike Stump | 083c25e | 2009-10-22 00:49:09 +0000 | [diff] [blame] | 735 | QualType ParmTy = getContext().getBlockParmType(BlockHasCopyDispose, |
| 736 | BlockDeclRefDecls); |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 737 | // FIXME: This leaks |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 738 | ImplicitParamDecl *SelfDecl = |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 739 | ImplicitParamDecl::Create(getContext(), 0, |
| Mike Stump | adaaad3 | 2009-10-20 02:12:22 +0000 | [diff] [blame] | 740 | SourceLocation(), II, |
| 741 | ParmTy); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 742 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 743 | Args.push_back(std::make_pair(SelfDecl, SelfDecl->getType())); |
| Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 744 | BlockStructDecl = SelfDecl; |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 745 | |
| Steve Naroff | e78b809 | 2009-03-13 16:56:44 +0000 | [diff] [blame] | 746 | for (BlockDecl::param_const_iterator i = BD->param_begin(), |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 747 | e = BD->param_end(); i != e; ++i) |
| Mike Stump | 1905061 | 2009-02-17 23:25:52 +0000 | [diff] [blame] | 748 | Args.push_back(std::make_pair(*i, (*i)->getType())); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 749 | |
| 750 | const CGFunctionInfo &FI = |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 751 | CGM.getTypes().getFunctionInfo(ResultType, Args, CC, NoReturn); |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 752 | |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 753 | CodeGenTypes &Types = CGM.getTypes(); |
| Fariborz Jahanian | 140fb26 | 2009-04-11 17:55:15 +0000 | [diff] [blame] | 754 | const llvm::FunctionType *LTy = Types.GetFunctionType(FI, IsVariadic); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 755 | |
| 756 | llvm::Function *Fn = |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 757 | llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage, |
| Benjamin Kramer | 3cf7c5d | 2010-01-22 13:59:13 +0000 | [diff] [blame] | 758 | llvm::Twine("__") + Info.Name + "_block_invoke_", |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 759 | &CGM.getModule()); |
| Mike Stump | a544854 | 2009-02-13 15:32:32 +0000 | [diff] [blame] | 760 | |
| Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 761 | CGM.SetInternalFunctionAttributes(BD, Fn, FI); |
| 762 | |
| Chris Lattner | 4863db4 | 2009-04-23 07:18:56 +0000 | [diff] [blame] | 763 | StartFunction(BD, ResultType, Fn, Args, |
| Chris Lattner | 161d36d | 2009-02-28 19:01:03 +0000 | [diff] [blame] | 764 | BExpr->getBody()->getLocEnd()); |
| Mike Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 765 | |
| Chris Lattner | 4863db4 | 2009-04-23 07:18:56 +0000 | [diff] [blame] | 766 | CurFuncDecl = OuterFuncDecl; |
| Chris Lattner | b5437d2 | 2009-04-23 05:30:27 +0000 | [diff] [blame] | 767 | CurCodeDecl = BD; |
| Mike Stump | b289b3f | 2009-10-01 22:29:41 +0000 | [diff] [blame] | 768 | |
| 769 | // Save a spot to insert the debug information for all the BlockDeclRefDecls. |
| 770 | llvm::BasicBlock *entry = Builder.GetInsertBlock(); |
| 771 | llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint(); |
| 772 | --entry_ptr; |
| 773 | |
| Chris Lattner | 161d36d | 2009-02-28 19:01:03 +0000 | [diff] [blame] | 774 | EmitStmt(BExpr->getBody()); |
| Mike Stump | b289b3f | 2009-10-01 22:29:41 +0000 | [diff] [blame] | 775 | |
| Mike Stump | de8c5c7 | 2009-10-01 00:27:30 +0000 | [diff] [blame] | 776 | // Remember where we were... |
| 777 | llvm::BasicBlock *resume = Builder.GetInsertBlock(); |
| Mike Stump | b289b3f | 2009-10-01 22:29:41 +0000 | [diff] [blame] | 778 | |
| Mike Stump | de8c5c7 | 2009-10-01 00:27:30 +0000 | [diff] [blame] | 779 | // Go back to the entry. |
| Mike Stump | b289b3f | 2009-10-01 22:29:41 +0000 | [diff] [blame] | 780 | ++entry_ptr; |
| 781 | Builder.SetInsertPoint(entry, entry_ptr); |
| 782 | |
| Mike Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 783 | if (CGDebugInfo *DI = getDebugInfo()) { |
| Mike Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 784 | // Emit debug information for all the BlockDeclRefDecls. |
| Chris Lattner | 14b1a36 | 2010-01-25 03:29:35 +0000 | [diff] [blame] | 785 | for (unsigned i = 0, e = BlockDeclRefDecls.size(); i != e; ++i) { |
| 786 | if (const BlockDeclRefExpr *BDRE = |
| 787 | dyn_cast<BlockDeclRefExpr>(BlockDeclRefDecls[i])) { |
| Mike Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 788 | const ValueDecl *D = BDRE->getDecl(); |
| 789 | DI->setLocation(D->getLocation()); |
| 790 | DI->EmitDeclareOfBlockDeclRefVariable(BDRE, |
| 791 | LocalDeclMap[getBlockStructDecl()], |
| 792 | Builder, this); |
| 793 | } |
| 794 | } |
| Mike Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 795 | } |
| Mike Stump | de8c5c7 | 2009-10-01 00:27:30 +0000 | [diff] [blame] | 796 | // And resume where we left off. |
| 797 | if (resume == 0) |
| 798 | Builder.ClearInsertionPoint(); |
| 799 | else |
| 800 | Builder.SetInsertPoint(resume); |
| Mike Stump | b1a6e68 | 2009-09-30 02:43:10 +0000 | [diff] [blame] | 801 | |
| Chris Lattner | 161d36d | 2009-02-28 19:01:03 +0000 | [diff] [blame] | 802 | FinishFunction(cast<CompoundStmt>(BExpr->getBody())->getRBracLoc()); |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 803 | |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 804 | // The runtime needs a minimum alignment of a void *. |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 805 | CharUnits MinAlign = getContext().getTypeAlignInChars(getContext().VoidPtrTy); |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 806 | BlockOffset = CharUnits::fromQuantity( |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 807 | llvm::RoundUpToAlignment(BlockOffset.getQuantity(), |
| 808 | MinAlign.getQuantity())); |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 809 | |
| Mike Stump | 4e7a1f7 | 2009-02-21 20:00:35 +0000 | [diff] [blame] | 810 | Size = BlockOffset; |
| Mike Stump | 8a2b4b1 | 2009-02-25 23:33:13 +0000 | [diff] [blame] | 811 | Align = BlockAlign; |
| 812 | subBlockDeclRefDecls = BlockDeclRefDecls; |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 813 | subBlockHasCopyDispose |= BlockHasCopyDispose; |
| Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 814 | return Fn; |
| 815 | } |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 816 | |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 817 | CharUnits BlockFunction::getBlockOffset(const BlockDeclRefExpr *BDRE) { |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 818 | const ValueDecl *D = dyn_cast<ValueDecl>(BDRE->getDecl()); |
| 819 | |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 820 | CharUnits Size = getContext().getTypeSizeInChars(D->getType()); |
| Ken Dyck | 8b752f1 | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 821 | CharUnits Align = getContext().getDeclAlign(D); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 822 | |
| 823 | if (BDRE->isByRef()) { |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 824 | Size = getContext().getTypeSizeInChars(getContext().VoidPtrTy); |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 825 | Align = getContext().getTypeAlignInChars(getContext().VoidPtrTy); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 826 | } |
| 827 | |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 828 | assert ((Align.isPositive()) && "alignment must be 1 byte or more"); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 829 | |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 830 | CharUnits OldOffset = BlockOffset; |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 831 | |
| 832 | // Ensure proper alignment, even if it means we have to have a gap |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 833 | BlockOffset = CharUnits::fromQuantity( |
| Ken Dyck | 30a8a27 | 2010-01-26 19:13:33 +0000 | [diff] [blame] | 834 | llvm::RoundUpToAlignment(BlockOffset.getQuantity(), Align.getQuantity())); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 835 | BlockAlign = std::max(Align, BlockAlign); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 836 | |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 837 | CharUnits Pad = BlockOffset - OldOffset; |
| 838 | if (Pad.isPositive()) { |
| 839 | llvm::ArrayType::get(llvm::Type::getInt8Ty(VMContext), Pad.getQuantity()); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 840 | QualType PadTy = getContext().getConstantArrayType(getContext().CharTy, |
| Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 841 | llvm::APInt(32, |
| 842 | Pad.getQuantity()), |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 843 | ArrayType::Normal, 0); |
| 844 | ValueDecl *PadDecl = VarDecl::Create(getContext(), 0, SourceLocation(), |
| Argyrios Kyrtzidis | a5d8200 | 2009-08-21 00:31:54 +0000 | [diff] [blame] | 845 | 0, QualType(PadTy), 0, VarDecl::None); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 846 | Expr *E; |
| 847 | E = new (getContext()) DeclRefExpr(PadDecl, PadDecl->getType(), |
| Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 848 | SourceLocation()); |
| Mike Stump | a99038c | 2009-02-28 09:07:16 +0000 | [diff] [blame] | 849 | BlockDeclRefDecls.push_back(E); |
| 850 | } |
| 851 | BlockDeclRefDecls.push_back(BDRE); |
| 852 | |
| 853 | BlockOffset += Size; |
| 854 | return BlockOffset-Size; |
| 855 | } |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 856 | |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 857 | llvm::Constant *BlockFunction:: |
| 858 | GenerateCopyHelperFunction(bool BlockHasCopyDispose, const llvm::StructType *T, |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 859 | std::vector<HelperInfo> *NoteForHelperp) { |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 860 | QualType R = getContext().VoidTy; |
| 861 | |
| 862 | FunctionArgList Args; |
| 863 | // FIXME: This leaks |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 864 | ImplicitParamDecl *Dst = |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 865 | ImplicitParamDecl::Create(getContext(), 0, |
| 866 | SourceLocation(), 0, |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 867 | getContext().getPointerType(getContext().VoidTy)); |
| 868 | Args.push_back(std::make_pair(Dst, Dst->getType())); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 869 | ImplicitParamDecl *Src = |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 870 | ImplicitParamDecl::Create(getContext(), 0, |
| 871 | SourceLocation(), 0, |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 872 | getContext().getPointerType(getContext().VoidTy)); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 873 | Args.push_back(std::make_pair(Src, Src->getType())); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 874 | |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 875 | const CGFunctionInfo &FI = |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 876 | CGM.getTypes().getFunctionInfo(R, Args, CC_Default, false); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 877 | |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 878 | // FIXME: We'd like to put these into a mergable by content, with |
| 879 | // internal linkage. |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 880 | CodeGenTypes &Types = CGM.getTypes(); |
| 881 | const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false); |
| 882 | |
| 883 | llvm::Function *Fn = |
| 884 | llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage, |
| Benjamin Kramer | 3cf7c5d | 2010-01-22 13:59:13 +0000 | [diff] [blame] | 885 | "__copy_helper_block_", &CGM.getModule()); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 886 | |
| 887 | IdentifierInfo *II |
| 888 | = &CGM.getContext().Idents.get("__copy_helper_block_"); |
| 889 | |
| 890 | FunctionDecl *FD = FunctionDecl::Create(getContext(), |
| 891 | getContext().getTranslationUnitDecl(), |
| Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 892 | SourceLocation(), II, R, 0, |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 893 | FunctionDecl::Static, false, |
| 894 | true); |
| 895 | CGF.StartFunction(FD, R, Fn, Args, SourceLocation()); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 896 | |
| 897 | llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src); |
| 898 | llvm::Type *PtrPtrT; |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 899 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 900 | if (NoteForHelperp) { |
| 901 | std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp; |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 902 | |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 903 | PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0); |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 904 | SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT); |
| 905 | SrcObj = Builder.CreateLoad(SrcObj); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 906 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 907 | llvm::Value *DstObj = CGF.GetAddrOfLocalVar(Dst); |
| Mike Stump | c2f4c34 | 2009-04-15 22:11:36 +0000 | [diff] [blame] | 908 | llvm::Type *PtrPtrT; |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 909 | PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0); |
| Mike Stump | c2f4c34 | 2009-04-15 22:11:36 +0000 | [diff] [blame] | 910 | DstObj = Builder.CreateBitCast(DstObj, PtrPtrT); |
| 911 | DstObj = Builder.CreateLoad(DstObj); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 912 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 913 | for (unsigned i=0; i < NoteForHelper.size(); ++i) { |
| 914 | int flag = NoteForHelper[i].flag; |
| 915 | int index = NoteForHelper[i].index; |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 916 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 917 | if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF) |
| 918 | || NoteForHelper[i].RequiresCopying) { |
| 919 | llvm::Value *Srcv = SrcObj; |
| 920 | Srcv = Builder.CreateStructGEP(Srcv, index); |
| 921 | Srcv = Builder.CreateBitCast(Srcv, |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 922 | llvm::PointerType::get(PtrToInt8Ty, 0)); |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 923 | Srcv = Builder.CreateLoad(Srcv); |
| 924 | |
| 925 | llvm::Value *Dstv = Builder.CreateStructGEP(DstObj, index); |
| 926 | Dstv = Builder.CreateBitCast(Dstv, PtrToInt8Ty); |
| 927 | |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 928 | llvm::Value *N = llvm::ConstantInt::get( |
| 929 | llvm::Type::getInt32Ty(T->getContext()), flag); |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 930 | llvm::Value *F = getBlockObjectAssign(); |
| 931 | Builder.CreateCall3(F, Dstv, Srcv, N); |
| 932 | } |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 933 | } |
| 934 | } |
| 935 | |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 936 | CGF.FinishFunction(); |
| 937 | |
| Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 938 | return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 939 | } |
| 940 | |
| Mike Stump | cf62d39 | 2009-03-06 18:42:23 +0000 | [diff] [blame] | 941 | llvm::Constant *BlockFunction:: |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 942 | GenerateDestroyHelperFunction(bool BlockHasCopyDispose, |
| 943 | const llvm::StructType* T, |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 944 | std::vector<HelperInfo> *NoteForHelperp) { |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 945 | QualType R = getContext().VoidTy; |
| 946 | |
| 947 | FunctionArgList Args; |
| 948 | // FIXME: This leaks |
| 949 | ImplicitParamDecl *Src = |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 950 | ImplicitParamDecl::Create(getContext(), 0, |
| 951 | SourceLocation(), 0, |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 952 | getContext().getPointerType(getContext().VoidTy)); |
| 953 | |
| 954 | Args.push_back(std::make_pair(Src, Src->getType())); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 955 | |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 956 | const CGFunctionInfo &FI = |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 957 | CGM.getTypes().getFunctionInfo(R, Args, CC_Default, false); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 958 | |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 959 | // FIXME: We'd like to put these into a mergable by content, with |
| 960 | // internal linkage. |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 961 | CodeGenTypes &Types = CGM.getTypes(); |
| 962 | const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false); |
| 963 | |
| 964 | llvm::Function *Fn = |
| 965 | llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage, |
| Benjamin Kramer | 3cf7c5d | 2010-01-22 13:59:13 +0000 | [diff] [blame] | 966 | "__destroy_helper_block_", &CGM.getModule()); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 967 | |
| 968 | IdentifierInfo *II |
| 969 | = &CGM.getContext().Idents.get("__destroy_helper_block_"); |
| 970 | |
| 971 | FunctionDecl *FD = FunctionDecl::Create(getContext(), |
| 972 | getContext().getTranslationUnitDecl(), |
| Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 973 | SourceLocation(), II, R, 0, |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 974 | FunctionDecl::Static, false, |
| 975 | true); |
| 976 | CGF.StartFunction(FD, R, Fn, Args, SourceLocation()); |
| Mike Stump | 1edf6b6 | 2009-03-07 02:53:18 +0000 | [diff] [blame] | 977 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 978 | if (NoteForHelperp) { |
| 979 | std::vector<HelperInfo> &NoteForHelper = *NoteForHelperp; |
| Mike Stump | 1edf6b6 | 2009-03-07 02:53:18 +0000 | [diff] [blame] | 980 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 981 | llvm::Value *SrcObj = CGF.GetAddrOfLocalVar(Src); |
| 982 | llvm::Type *PtrPtrT; |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 983 | PtrPtrT = llvm::PointerType::get(llvm::PointerType::get(T, 0), 0); |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 984 | SrcObj = Builder.CreateBitCast(SrcObj, PtrPtrT); |
| 985 | SrcObj = Builder.CreateLoad(SrcObj); |
| Mike Stump | 1edf6b6 | 2009-03-07 02:53:18 +0000 | [diff] [blame] | 986 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 987 | for (unsigned i=0; i < NoteForHelper.size(); ++i) { |
| 988 | int flag = NoteForHelper[i].flag; |
| 989 | int index = NoteForHelper[i].index; |
| Mike Stump | 1edf6b6 | 2009-03-07 02:53:18 +0000 | [diff] [blame] | 990 | |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 991 | if ((NoteForHelper[i].flag & BLOCK_FIELD_IS_BYREF) |
| 992 | || NoteForHelper[i].RequiresCopying) { |
| 993 | llvm::Value *Srcv = SrcObj; |
| 994 | Srcv = Builder.CreateStructGEP(Srcv, index); |
| 995 | Srcv = Builder.CreateBitCast(Srcv, |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 996 | llvm::PointerType::get(PtrToInt8Ty, 0)); |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 997 | Srcv = Builder.CreateLoad(Srcv); |
| 998 | |
| 999 | BuildBlockRelease(Srcv, flag); |
| 1000 | } |
| Mike Stump | 1edf6b6 | 2009-03-07 02:53:18 +0000 | [diff] [blame] | 1001 | } |
| 1002 | } |
| 1003 | |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 1004 | CGF.FinishFunction(); |
| 1005 | |
| Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1006 | return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 1007 | } |
| 1008 | |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1009 | llvm::Constant *BlockFunction::BuildCopyHelper(const llvm::StructType *T, |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 1010 | std::vector<HelperInfo> *NoteForHelper) { |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1011 | return CodeGenFunction(CGM).GenerateCopyHelperFunction(BlockHasCopyDispose, |
| 1012 | T, NoteForHelper); |
| Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1015 | llvm::Constant *BlockFunction::BuildDestroyHelper(const llvm::StructType *T, |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 1016 | std::vector<HelperInfo> *NoteForHelperp) { |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1017 | return CodeGenFunction(CGM).GenerateDestroyHelperFunction(BlockHasCopyDispose, |
| Mike Stump | b7477cf | 2009-04-10 18:52:28 +0000 | [diff] [blame] | 1018 | T, NoteForHelperp); |
| Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 1019 | } |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1020 | |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1021 | llvm::Constant *BlockFunction:: |
| 1022 | GeneratebyrefCopyHelperFunction(const llvm::Type *T, int flag) { |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1023 | QualType R = getContext().VoidTy; |
| 1024 | |
| 1025 | FunctionArgList Args; |
| 1026 | // FIXME: This leaks |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1027 | ImplicitParamDecl *Dst = |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 1028 | ImplicitParamDecl::Create(getContext(), 0, |
| 1029 | SourceLocation(), 0, |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1030 | getContext().getPointerType(getContext().VoidTy)); |
| 1031 | Args.push_back(std::make_pair(Dst, Dst->getType())); |
| 1032 | |
| 1033 | // FIXME: This leaks |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1034 | ImplicitParamDecl *Src = |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 1035 | ImplicitParamDecl::Create(getContext(), 0, |
| 1036 | SourceLocation(), 0, |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1037 | getContext().getPointerType(getContext().VoidTy)); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1038 | Args.push_back(std::make_pair(Src, Src->getType())); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1039 | |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1040 | const CGFunctionInfo &FI = |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 1041 | CGM.getTypes().getFunctionInfo(R, Args, CC_Default, false); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1042 | |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1043 | CodeGenTypes &Types = CGM.getTypes(); |
| 1044 | const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false); |
| 1045 | |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1046 | // FIXME: We'd like to put these into a mergable by content, with |
| 1047 | // internal linkage. |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1048 | llvm::Function *Fn = |
| 1049 | llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage, |
| Benjamin Kramer | 3cf7c5d | 2010-01-22 13:59:13 +0000 | [diff] [blame] | 1050 | "__Block_byref_id_object_copy_", &CGM.getModule()); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1051 | |
| 1052 | IdentifierInfo *II |
| 1053 | = &CGM.getContext().Idents.get("__Block_byref_id_object_copy_"); |
| 1054 | |
| 1055 | FunctionDecl *FD = FunctionDecl::Create(getContext(), |
| 1056 | getContext().getTranslationUnitDecl(), |
| Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1057 | SourceLocation(), II, R, 0, |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1058 | FunctionDecl::Static, false, |
| 1059 | true); |
| 1060 | CGF.StartFunction(FD, R, Fn, Args, SourceLocation()); |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1061 | |
| 1062 | // dst->x |
| 1063 | llvm::Value *V = CGF.GetAddrOfLocalVar(Dst); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1064 | V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0)); |
| Mike Stump | c2f4c34 | 2009-04-15 22:11:36 +0000 | [diff] [blame] | 1065 | V = Builder.CreateLoad(V); |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1066 | V = Builder.CreateStructGEP(V, 6, "x"); |
| 1067 | llvm::Value *DstObj = Builder.CreateBitCast(V, PtrToInt8Ty); |
| 1068 | |
| 1069 | // src->x |
| 1070 | V = CGF.GetAddrOfLocalVar(Src); |
| 1071 | V = Builder.CreateLoad(V); |
| 1072 | V = Builder.CreateBitCast(V, T); |
| 1073 | V = Builder.CreateStructGEP(V, 6, "x"); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1074 | V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0)); |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1075 | llvm::Value *SrcObj = Builder.CreateLoad(V); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1076 | |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1077 | flag |= BLOCK_BYREF_CALLER; |
| 1078 | |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1079 | llvm::Value *N = llvm::ConstantInt::get( |
| 1080 | llvm::Type::getInt32Ty(T->getContext()), flag); |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1081 | llvm::Value *F = getBlockObjectAssign(); |
| 1082 | Builder.CreateCall3(F, DstObj, SrcObj, N); |
| 1083 | |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1084 | CGF.FinishFunction(); |
| 1085 | |
| Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1086 | return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1087 | } |
| 1088 | |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1089 | llvm::Constant * |
| 1090 | BlockFunction::GeneratebyrefDestroyHelperFunction(const llvm::Type *T, |
| 1091 | int flag) { |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1092 | QualType R = getContext().VoidTy; |
| 1093 | |
| 1094 | FunctionArgList Args; |
| 1095 | // FIXME: This leaks |
| 1096 | ImplicitParamDecl *Src = |
| Mike Stump | ea26cb5 | 2009-10-21 03:49:08 +0000 | [diff] [blame] | 1097 | ImplicitParamDecl::Create(getContext(), 0, |
| 1098 | SourceLocation(), 0, |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1099 | getContext().getPointerType(getContext().VoidTy)); |
| 1100 | |
| 1101 | Args.push_back(std::make_pair(Src, Src->getType())); |
| Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1102 | |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1103 | const CGFunctionInfo &FI = |
| John McCall | 04a67a6 | 2010-02-05 21:31:56 +0000 | [diff] [blame] | 1104 | CGM.getTypes().getFunctionInfo(R, Args, CC_Default, false); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1105 | |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1106 | CodeGenTypes &Types = CGM.getTypes(); |
| 1107 | const llvm::FunctionType *LTy = Types.GetFunctionType(FI, false); |
| 1108 | |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1109 | // FIXME: We'd like to put these into a mergable by content, with |
| 1110 | // internal linkage. |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1111 | llvm::Function *Fn = |
| 1112 | llvm::Function::Create(LTy, llvm::GlobalValue::InternalLinkage, |
| Benjamin Kramer | 3cf7c5d | 2010-01-22 13:59:13 +0000 | [diff] [blame] | 1113 | "__Block_byref_id_object_dispose_", |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1114 | &CGM.getModule()); |
| 1115 | |
| 1116 | IdentifierInfo *II |
| 1117 | = &CGM.getContext().Idents.get("__Block_byref_id_object_dispose_"); |
| 1118 | |
| 1119 | FunctionDecl *FD = FunctionDecl::Create(getContext(), |
| 1120 | getContext().getTranslationUnitDecl(), |
| Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1121 | SourceLocation(), II, R, 0, |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1122 | FunctionDecl::Static, false, |
| 1123 | true); |
| 1124 | CGF.StartFunction(FD, R, Fn, Args, SourceLocation()); |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1125 | |
| 1126 | llvm::Value *V = CGF.GetAddrOfLocalVar(Src); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1127 | V = Builder.CreateBitCast(V, llvm::PointerType::get(T, 0)); |
| Mike Stump | c2f4c34 | 2009-04-15 22:11:36 +0000 | [diff] [blame] | 1128 | V = Builder.CreateLoad(V); |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1129 | V = Builder.CreateStructGEP(V, 6, "x"); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1130 | V = Builder.CreateBitCast(V, llvm::PointerType::get(PtrToInt8Ty, 0)); |
| Mike Stump | c2f4c34 | 2009-04-15 22:11:36 +0000 | [diff] [blame] | 1131 | V = Builder.CreateLoad(V); |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1132 | |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1133 | flag |= BLOCK_BYREF_CALLER; |
| 1134 | BuildBlockRelease(V, flag); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1135 | CGF.FinishFunction(); |
| 1136 | |
| Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1137 | return llvm::ConstantExpr::getBitCast(Fn, PtrToInt8Ty); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1140 | llvm::Constant *BlockFunction::BuildbyrefCopyHelper(const llvm::Type *T, |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1141 | int Flag, unsigned Align) { |
| 1142 | // All alignments below that of pointer alignment collapse down to just |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1143 | // pointer alignment, as we always have at least that much alignment to begin |
| 1144 | // with. |
| 1145 | Align /= unsigned(CGF.Target.getPointerAlign(0)/8); |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1146 | |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1147 | // As an optimization, we only generate a single function of each kind we |
| 1148 | // might need. We need a different one for each alignment and for each |
| 1149 | // setting of flags. We mix Align and flag to get the kind. |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1150 | uint64_t Kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + Flag; |
| 1151 | llvm::Constant *&Entry = CGM.AssignCache[Kind]; |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1152 | if (Entry) |
| 1153 | return Entry; |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1154 | return Entry = CodeGenFunction(CGM).GeneratebyrefCopyHelperFunction(T, Flag); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1155 | } |
| 1156 | |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1157 | llvm::Constant *BlockFunction::BuildbyrefDestroyHelper(const llvm::Type *T, |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1158 | int Flag, |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1159 | unsigned Align) { |
| 1160 | // All alignments below that of pointer alignment collpase down to just |
| 1161 | // pointer alignment, as we always have at least that much alignment to begin |
| 1162 | // with. |
| 1163 | Align /= unsigned(CGF.Target.getPointerAlign(0)/8); |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1164 | |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1165 | // As an optimization, we only generate a single function of each kind we |
| 1166 | // might need. We need a different one for each alignment and for each |
| 1167 | // setting of flags. We mix Align and flag to get the kind. |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1168 | uint64_t Kind = (uint64_t)Align*BLOCK_BYREF_CURRENT_MAX + Flag; |
| 1169 | llvm::Constant *&Entry = CGM.DestroyCache[Kind]; |
| Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 1170 | if (Entry) |
| 1171 | return Entry; |
| Chris Lattner | 10976d9 | 2009-12-05 08:21:30 +0000 | [diff] [blame] | 1172 | return Entry=CodeGenFunction(CGM).GeneratebyrefDestroyHelperFunction(T, Flag); |
| Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1175 | llvm::Value *BlockFunction::getBlockObjectDispose() { |
| 1176 | if (CGM.BlockObjectDispose == 0) { |
| 1177 | const llvm::FunctionType *FTy; |
| 1178 | std::vector<const llvm::Type*> ArgTys; |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1179 | const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext); |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1180 | ArgTys.push_back(PtrToInt8Ty); |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1181 | ArgTys.push_back(llvm::Type::getInt32Ty(VMContext)); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1182 | FTy = llvm::FunctionType::get(ResultType, ArgTys, false); |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 1183 | CGM.BlockObjectDispose |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1184 | = CGM.CreateRuntimeFunction(FTy, "_Block_object_dispose"); |
| 1185 | } |
| 1186 | return CGM.BlockObjectDispose; |
| 1187 | } |
| 1188 | |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1189 | llvm::Value *BlockFunction::getBlockObjectAssign() { |
| 1190 | if (CGM.BlockObjectAssign == 0) { |
| 1191 | const llvm::FunctionType *FTy; |
| 1192 | std::vector<const llvm::Type*> ArgTys; |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1193 | const llvm::Type *ResultType = llvm::Type::getVoidTy(VMContext); |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1194 | ArgTys.push_back(PtrToInt8Ty); |
| 1195 | ArgTys.push_back(PtrToInt8Ty); |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1196 | ArgTys.push_back(llvm::Type::getInt32Ty(VMContext)); |
| Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1197 | FTy = llvm::FunctionType::get(ResultType, ArgTys, false); |
| Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 1198 | CGM.BlockObjectAssign |
| 1199 | = CGM.CreateRuntimeFunction(FTy, "_Block_object_assign"); |
| 1200 | } |
| 1201 | return CGM.BlockObjectAssign; |
| 1202 | } |
| 1203 | |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1204 | void BlockFunction::BuildBlockRelease(llvm::Value *V, int flag) { |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1205 | llvm::Value *F = getBlockObjectDispose(); |
| Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 1206 | llvm::Value *N; |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1207 | V = Builder.CreateBitCast(V, PtrToInt8Ty); |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1208 | N = llvm::ConstantInt::get(llvm::Type::getInt32Ty(V->getContext()), flag); |
| Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1209 | Builder.CreateCall2(F, V, N); |
| 1210 | } |
| Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 1211 | |
| 1212 | ASTContext &BlockFunction::getContext() const { return CGM.getContext(); } |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1213 | |
| 1214 | BlockFunction::BlockFunction(CodeGenModule &cgm, CodeGenFunction &cgf, |
| 1215 | CGBuilderTy &B) |
| Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1216 | : CGM(cgm), CGF(cgf), VMContext(cgm.getLLVMContext()), Builder(B) { |
| Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1217 | PtrToInt8Ty = llvm::PointerType::getUnqual( |
| 1218 | llvm::Type::getInt8Ty(VMContext)); |
| Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 1219 | |
| 1220 | BlockHasCopyDispose = false; |
| 1221 | } |