Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 1 | //===-- CGBlocks.h - state for LLVM CodeGen for blocks ----------*- C++ -*-===// |
| 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 is the internal state used for llvm translation for block literals. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef CLANG_CODEGEN_CGBLOCKS_H |
| 15 | #define CLANG_CODEGEN_CGBLOCKS_H |
| 16 | |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 17 | #include "CodeGenTypes.h" |
| 18 | #include "clang/AST/Type.h" |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 19 | #include "llvm/Module.h" |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 20 | #include "clang/Basic/TargetInfo.h" |
Ken Dyck | 199c3d6 | 2010-01-11 17:06:35 +0000 | [diff] [blame] | 21 | #include "clang/AST/CharUnits.h" |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 22 | #include "clang/AST/Expr.h" |
| 23 | #include "clang/AST/ExprCXX.h" |
| 24 | #include "clang/AST/ExprObjC.h" |
| 25 | |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 26 | #include "CodeGenFunction.h" |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 27 | #include "CGBuilder.h" |
| 28 | #include "CGCall.h" |
| 29 | #include "CGValue.h" |
| 30 | |
| 31 | namespace llvm { |
| 32 | class Module; |
| 33 | class Constant; |
| 34 | class Function; |
| 35 | class GlobalValue; |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 36 | class DataLayout; |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 37 | class FunctionType; |
John McCall | 3d3ec1c | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 38 | class PointerType; |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 39 | class Value; |
Benjamin Kramer | f21efe9 | 2009-08-11 17:46:57 +0000 | [diff] [blame] | 40 | class LLVMContext; |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 41 | } |
| 42 | |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 43 | namespace clang { |
| 44 | |
| 45 | namespace CodeGen { |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 46 | |
Mike Stump | 90a9043 | 2009-03-04 18:47:42 +0000 | [diff] [blame] | 47 | class CodeGenModule; |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 48 | class CGBlockInfo; |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 49 | |
Fariborz Jahanian | 3dac20a | 2012-10-26 01:13:38 +0000 | [diff] [blame] | 50 | // Flags stored in __block variables. |
| 51 | enum BlockByrefFlags { |
| 52 | BLOCK_BYREF_HAS_COPY_DISPOSE = (1 << 25), // compiler |
| 53 | BLOCK_BYREF_LAYOUT_MASK = (0xF << 28), // compiler |
| 54 | BLOCK_BYREF_LAYOUT_EXTENDED = (1 << 28), |
| 55 | BLOCK_BYREF_LAYOUT_NON_OBJECT = (2 << 28), |
| 56 | BLOCK_BYREF_LAYOUT_STRONG = (3 << 28), |
Fariborz Jahanian | 7b5209c | 2012-10-26 20:33:59 +0000 | [diff] [blame] | 57 | BLOCK_BYREF_LAYOUT_WEAK = (4 << 28), |
| 58 | BLOCK_BYREF_LAYOUT_UNRETAINED = (5 << 28) |
Fariborz Jahanian | 3dac20a | 2012-10-26 01:13:38 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
Fariborz Jahanian | 40effbb | 2012-10-25 22:55:52 +0000 | [diff] [blame] | 61 | enum BlockLiteralFlags { |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 62 | BLOCK_HAS_COPY_DISPOSE = (1 << 25), |
| 63 | BLOCK_HAS_CXX_OBJ = (1 << 26), |
| 64 | BLOCK_IS_GLOBAL = (1 << 28), |
| 65 | BLOCK_USE_STRET = (1 << 29), |
Fariborz Jahanian | a97d2ec | 2012-11-10 18:30:40 +0000 | [diff] [blame] | 66 | BLOCK_HAS_SIGNATURE = (1 << 30), |
| 67 | BLOCK_HAS_EXTENDED_LAYOUT = (1 << 31) |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 68 | }; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 69 | class BlockFlags { |
| 70 | uint32_t flags; |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 71 | |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 72 | public: |
Fariborz Jahanian | 3ca23d7 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 73 | BlockFlags(uint32_t flags) : flags(flags) {} |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 74 | BlockFlags() : flags(0) {} |
Fariborz Jahanian | 40effbb | 2012-10-25 22:55:52 +0000 | [diff] [blame] | 75 | BlockFlags(BlockLiteralFlags flag) : flags(flag) {} |
Fariborz Jahanian | 3ca23d7 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 76 | BlockFlags(BlockByrefFlags flag) : flags(flag) {} |
| 77 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 78 | uint32_t getBitMask() const { return flags; } |
| 79 | bool empty() const { return flags == 0; } |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 80 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 81 | friend BlockFlags operator|(BlockFlags l, BlockFlags r) { |
| 82 | return BlockFlags(l.flags | r.flags); |
| 83 | } |
| 84 | friend BlockFlags &operator|=(BlockFlags &l, BlockFlags r) { |
| 85 | l.flags |= r.flags; |
| 86 | return l; |
| 87 | } |
| 88 | friend bool operator&(BlockFlags l, BlockFlags r) { |
| 89 | return (l.flags & r.flags); |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 90 | } |
Fariborz Jahanian | 3ca23d7 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 91 | bool operator==(BlockFlags r) { |
| 92 | return (flags == r.flags); |
| 93 | } |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 94 | }; |
Fariborz Jahanian | 40effbb | 2012-10-25 22:55:52 +0000 | [diff] [blame] | 95 | inline BlockFlags operator|(BlockLiteralFlags l, BlockLiteralFlags r) { |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 96 | return BlockFlags(l) | BlockFlags(r); |
| 97 | } |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 98 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 99 | enum BlockFieldFlag_t { |
| 100 | BLOCK_FIELD_IS_OBJECT = 0x03, /* id, NSObject, __attribute__((NSObject)), |
| 101 | block, ... */ |
| 102 | BLOCK_FIELD_IS_BLOCK = 0x07, /* a block variable */ |
Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 103 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 104 | BLOCK_FIELD_IS_BYREF = 0x08, /* the on stack structure holding the __block |
| 105 | variable */ |
| 106 | BLOCK_FIELD_IS_WEAK = 0x10, /* declared __weak, only used in byref copy |
| 107 | helpers */ |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 108 | BLOCK_FIELD_IS_ARC = 0x40, /* field has ARC-specific semantics */ |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 109 | BLOCK_BYREF_CALLER = 128, /* called from __block (byref) copy/dispose |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 110 | support routines */ |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 111 | BLOCK_BYREF_CURRENT_MAX = 256 |
| 112 | }; |
| 113 | |
| 114 | class BlockFieldFlags { |
| 115 | uint32_t flags; |
| 116 | |
| 117 | BlockFieldFlags(uint32_t flags) : flags(flags) {} |
| 118 | public: |
| 119 | BlockFieldFlags() : flags(0) {} |
| 120 | BlockFieldFlags(BlockFieldFlag_t flag) : flags(flag) {} |
| 121 | |
| 122 | uint32_t getBitMask() const { return flags; } |
| 123 | bool empty() const { return flags == 0; } |
| 124 | |
| 125 | /// Answers whether the flags indicate that this field is an object |
| 126 | /// or block pointer that requires _Block_object_assign/dispose. |
| 127 | bool isSpecialPointer() const { return flags & BLOCK_FIELD_IS_OBJECT; } |
| 128 | |
| 129 | friend BlockFieldFlags operator|(BlockFieldFlags l, BlockFieldFlags r) { |
| 130 | return BlockFieldFlags(l.flags | r.flags); |
| 131 | } |
| 132 | friend BlockFieldFlags &operator|=(BlockFieldFlags &l, BlockFieldFlags r) { |
| 133 | l.flags |= r.flags; |
| 134 | return l; |
| 135 | } |
| 136 | friend bool operator&(BlockFieldFlags l, BlockFieldFlags r) { |
| 137 | return (l.flags & r.flags); |
| 138 | } |
| 139 | }; |
| 140 | inline BlockFieldFlags operator|(BlockFieldFlag_t l, BlockFieldFlag_t r) { |
| 141 | return BlockFieldFlags(l) | BlockFieldFlags(r); |
| 142 | } |
| 143 | |
| 144 | /// CGBlockInfo - Information to generate a block literal. |
| 145 | class CGBlockInfo { |
| 146 | public: |
| 147 | /// Name - The name of the block, kindof. |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 148 | llvm::StringRef Name; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 149 | |
| 150 | /// The field index of 'this' within the block, if there is one. |
| 151 | unsigned CXXThisIndex; |
| 152 | |
| 153 | class Capture { |
| 154 | uintptr_t Data; |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 155 | EHScopeStack::stable_iterator Cleanup; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 156 | |
| 157 | public: |
| 158 | bool isIndex() const { return (Data & 1) != 0; } |
| 159 | bool isConstant() const { return !isIndex(); } |
| 160 | unsigned getIndex() const { assert(isIndex()); return Data >> 1; } |
| 161 | llvm::Value *getConstant() const { |
| 162 | assert(isConstant()); |
| 163 | return reinterpret_cast<llvm::Value*>(Data); |
| 164 | } |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 165 | EHScopeStack::stable_iterator getCleanup() const { |
| 166 | assert(isIndex()); |
| 167 | return Cleanup; |
| 168 | } |
| 169 | void setCleanup(EHScopeStack::stable_iterator cleanup) { |
| 170 | assert(isIndex()); |
| 171 | Cleanup = cleanup; |
| 172 | } |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 173 | |
| 174 | static Capture makeIndex(unsigned index) { |
| 175 | Capture v; |
| 176 | v.Data = (index << 1) | 1; |
| 177 | return v; |
| 178 | } |
| 179 | |
| 180 | static Capture makeConstant(llvm::Value *value) { |
| 181 | Capture v; |
| 182 | v.Data = reinterpret_cast<uintptr_t>(value); |
| 183 | return v; |
| 184 | } |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 185 | }; |
Mike Stump | 3947de5 | 2009-03-04 18:57:26 +0000 | [diff] [blame] | 186 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 187 | /// CanBeGlobal - True if the block can be global, i.e. it has |
| 188 | /// no non-constant captures. |
| 189 | bool CanBeGlobal : 1; |
Mike Stump | 0892099 | 2009-03-07 02:35:30 +0000 | [diff] [blame] | 190 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 191 | /// True if the block needs a custom copy or dispose function. |
| 192 | bool NeedsCopyDispose : 1; |
Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 193 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 194 | /// HasCXXObject - True if the block's custom copy/dispose functions |
| 195 | /// need to be run even in GC mode. |
| 196 | bool HasCXXObject : 1; |
Mike Stump | 45031c0 | 2009-03-06 02:29:21 +0000 | [diff] [blame] | 197 | |
John McCall | 64cd232 | 2011-03-09 08:39:33 +0000 | [diff] [blame] | 198 | /// UsesStret : True if the block uses an stret return. Mutable |
| 199 | /// because it gets set later in the block-creation process. |
| 200 | mutable bool UsesStret : 1; |
Fariborz Jahanian | f22ae65 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 201 | |
| 202 | /// HasCapturedVariableLayout : True if block has captured variables |
| 203 | /// and their layout meta-data has been generated. |
| 204 | bool HasCapturedVariableLayout : 1; |
John McCall | 64cd232 | 2011-03-09 08:39:33 +0000 | [diff] [blame] | 205 | |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 206 | /// The mapping of allocated indexes within the block. |
| 207 | llvm::DenseMap<const VarDecl*, Capture> Captures; |
| 208 | |
| 209 | llvm::AllocaInst *Address; |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 210 | llvm::StructType *StructureType; |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 211 | const BlockDecl *Block; |
| 212 | const BlockExpr *BlockExpression; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 213 | CharUnits BlockSize; |
| 214 | CharUnits BlockAlign; |
John McCall | 6f103ba | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 215 | |
| 216 | /// An instruction which dominates the full-expression that the |
| 217 | /// block is inside. |
| 218 | llvm::Instruction *DominatingIP; |
| 219 | |
| 220 | /// The next block in the block-info chain. Invalid if this block |
| 221 | /// info is not part of the CGF's block-info chain, which is true |
| 222 | /// if it corresponds to a global block or a block whose expression |
| 223 | /// has been encountered. |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 224 | CGBlockInfo *NextBlockInfo; |
Mike Stump | 3947de5 | 2009-03-04 18:57:26 +0000 | [diff] [blame] | 225 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 226 | const Capture &getCapture(const VarDecl *var) const { |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 227 | return const_cast<CGBlockInfo*>(this)->getCapture(var); |
| 228 | } |
| 229 | Capture &getCapture(const VarDecl *var) { |
| 230 | llvm::DenseMap<const VarDecl*, Capture>::iterator |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 231 | it = Captures.find(var); |
| 232 | assert(it != Captures.end() && "no entry for variable!"); |
| 233 | return it->second; |
| 234 | } |
| 235 | |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 236 | const BlockDecl *getBlockDecl() const { return Block; } |
| 237 | const BlockExpr *getBlockExpr() const { |
| 238 | assert(BlockExpression); |
| 239 | assert(BlockExpression->getBlockDecl() == Block); |
| 240 | return BlockExpression; |
| 241 | } |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 242 | |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 243 | CGBlockInfo(const BlockDecl *blockDecl, llvm::StringRef Name); |
Mike Stump | d883d84 | 2009-03-04 15:35:22 +0000 | [diff] [blame] | 244 | }; |
| 245 | |
| 246 | } // end namespace CodeGen |
| 247 | } // end namespace clang |
| 248 | |
| 249 | #endif |