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