blob: d54ba27692a3e9805462240652113a6496c9dd9b [file] [log] [blame]
Mike Stumpd883d842009-03-04 15:35:22 +00001//===-- 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 Stump2a998142009-03-04 18:17:45 +000017#include "CodeGenTypes.h"
18#include "clang/AST/Type.h"
Owen Andersona1cf15f2009-07-14 23:10:40 +000019#include "llvm/Module.h"
Mike Stump2a998142009-03-04 18:17:45 +000020#include "clang/Basic/TargetInfo.h"
Ken Dyck199c3d62010-01-11 17:06:35 +000021#include "clang/AST/CharUnits.h"
Mike Stump2a998142009-03-04 18:17:45 +000022#include "clang/AST/Expr.h"
23#include "clang/AST/ExprCXX.h"
24#include "clang/AST/ExprObjC.h"
25
John McCall1a343eb2011-11-10 08:15:53 +000026#include "CodeGenFunction.h"
Mike Stump2a998142009-03-04 18:17:45 +000027#include "CGBuilder.h"
28#include "CGCall.h"
29#include "CGValue.h"
30
31namespace llvm {
32 class Module;
33 class Constant;
34 class Function;
35 class GlobalValue;
Micah Villmow25a6a842012-10-08 16:25:52 +000036 class DataLayout;
Mike Stump2a998142009-03-04 18:17:45 +000037 class FunctionType;
John McCall3d3ec1c2010-04-21 10:05:39 +000038 class PointerType;
Mike Stump2a998142009-03-04 18:17:45 +000039 class Value;
Benjamin Kramerf21efe92009-08-11 17:46:57 +000040 class LLVMContext;
Mike Stump2a998142009-03-04 18:17:45 +000041}
42
Mike Stumpd883d842009-03-04 15:35:22 +000043namespace clang {
44
45namespace CodeGen {
John McCalld16c2cf2011-02-08 08:22:06 +000046
Mike Stump90a90432009-03-04 18:47:42 +000047class CodeGenModule;
John McCall6b5a61b2011-02-07 10:33:21 +000048class CGBlockInfo;
Mike Stumpd883d842009-03-04 15:35:22 +000049
Fariborz Jahanian3dac20a2012-10-26 01:13:38 +000050// Flags stored in __block variables.
51enum 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 Jahanian7b5209c2012-10-26 20:33:59 +000057 BLOCK_BYREF_LAYOUT_WEAK = (4 << 28),
58 BLOCK_BYREF_LAYOUT_UNRETAINED = (5 << 28)
Fariborz Jahanian3dac20a2012-10-26 01:13:38 +000059};
60
Fariborz Jahanian40effbb2012-10-25 22:55:52 +000061enum BlockLiteralFlags {
John McCalld16c2cf2011-02-08 08:22:06 +000062 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 Jahaniana97d2ec2012-11-10 18:30:40 +000066 BLOCK_HAS_SIGNATURE = (1 << 30),
67 BLOCK_HAS_EXTENDED_LAYOUT = (1 << 31)
Mike Stumpd883d842009-03-04 15:35:22 +000068};
John McCalld16c2cf2011-02-08 08:22:06 +000069class BlockFlags {
70 uint32_t flags;
Mike Stumpd883d842009-03-04 15:35:22 +000071
Mike Stump2a998142009-03-04 18:17:45 +000072public:
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +000073 BlockFlags(uint32_t flags) : flags(flags) {}
John McCalld16c2cf2011-02-08 08:22:06 +000074 BlockFlags() : flags(0) {}
Fariborz Jahanian40effbb2012-10-25 22:55:52 +000075 BlockFlags(BlockLiteralFlags flag) : flags(flag) {}
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +000076 BlockFlags(BlockByrefFlags flag) : flags(flag) {}
77
John McCalld16c2cf2011-02-08 08:22:06 +000078 uint32_t getBitMask() const { return flags; }
79 bool empty() const { return flags == 0; }
Mike Stump2a998142009-03-04 18:17:45 +000080
John McCalld16c2cf2011-02-08 08:22:06 +000081 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 Stump2a998142009-03-04 18:17:45 +000090 }
Fariborz Jahanian3ca23d72012-11-14 17:15:51 +000091 bool operator==(BlockFlags r) {
92 return (flags == r.flags);
93 }
Mike Stumpd883d842009-03-04 15:35:22 +000094};
Fariborz Jahanian40effbb2012-10-25 22:55:52 +000095inline BlockFlags operator|(BlockLiteralFlags l, BlockLiteralFlags r) {
John McCalld16c2cf2011-02-08 08:22:06 +000096 return BlockFlags(l) | BlockFlags(r);
97}
Mike Stumpd883d842009-03-04 15:35:22 +000098
John McCalld16c2cf2011-02-08 08:22:06 +000099enum BlockFieldFlag_t {
100 BLOCK_FIELD_IS_OBJECT = 0x03, /* id, NSObject, __attribute__((NSObject)),
101 block, ... */
102 BLOCK_FIELD_IS_BLOCK = 0x07, /* a block variable */
Mike Stump797b6322009-03-05 01:23:13 +0000103
John McCalld16c2cf2011-02-08 08:22:06 +0000104 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 McCallf85e1932011-06-15 23:02:42 +0000108 BLOCK_FIELD_IS_ARC = 0x40, /* field has ARC-specific semantics */
John McCalld16c2cf2011-02-08 08:22:06 +0000109 BLOCK_BYREF_CALLER = 128, /* called from __block (byref) copy/dispose
Mike Stumpd883d842009-03-04 15:35:22 +0000110 support routines */
John McCalld16c2cf2011-02-08 08:22:06 +0000111 BLOCK_BYREF_CURRENT_MAX = 256
112};
113
114class BlockFieldFlags {
115 uint32_t flags;
116
117 BlockFieldFlags(uint32_t flags) : flags(flags) {}
118public:
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};
140inline BlockFieldFlags operator|(BlockFieldFlag_t l, BlockFieldFlag_t r) {
141 return BlockFieldFlags(l) | BlockFieldFlags(r);
142}
143
144/// CGBlockInfo - Information to generate a block literal.
145class CGBlockInfo {
146public:
147 /// Name - The name of the block, kindof.
John McCall1a343eb2011-11-10 08:15:53 +0000148 llvm::StringRef Name;
John McCalld16c2cf2011-02-08 08:22:06 +0000149
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 McCall1a343eb2011-11-10 08:15:53 +0000155 EHScopeStack::stable_iterator Cleanup;
John McCalld16c2cf2011-02-08 08:22:06 +0000156
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 McCall1a343eb2011-11-10 08:15:53 +0000165 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 McCalld16c2cf2011-02-08 08:22:06 +0000173
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 Stumpd883d842009-03-04 15:35:22 +0000185 };
Mike Stump3947de52009-03-04 18:57:26 +0000186
John McCalld16c2cf2011-02-08 08:22:06 +0000187 /// CanBeGlobal - True if the block can be global, i.e. it has
188 /// no non-constant captures.
189 bool CanBeGlobal : 1;
Mike Stump08920992009-03-07 02:35:30 +0000190
John McCalld16c2cf2011-02-08 08:22:06 +0000191 /// True if the block needs a custom copy or dispose function.
192 bool NeedsCopyDispose : 1;
Mike Stump45031c02009-03-06 02:29:21 +0000193
John McCalld16c2cf2011-02-08 08:22:06 +0000194 /// HasCXXObject - True if the block's custom copy/dispose functions
195 /// need to be run even in GC mode.
196 bool HasCXXObject : 1;
Mike Stump45031c02009-03-06 02:29:21 +0000197
John McCall64cd2322011-03-09 08:39:33 +0000198 /// 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 Jahanianf22ae652012-11-01 18:32:55 +0000201
202 /// HasCapturedVariableLayout : True if block has captured variables
203 /// and their layout meta-data has been generated.
204 bool HasCapturedVariableLayout : 1;
John McCall64cd2322011-03-09 08:39:33 +0000205
John McCall1a343eb2011-11-10 08:15:53 +0000206 /// The mapping of allocated indexes within the block.
207 llvm::DenseMap<const VarDecl*, Capture> Captures;
208
209 llvm::AllocaInst *Address;
Chris Lattner2acc6e32011-07-18 04:24:23 +0000210 llvm::StructType *StructureType;
John McCall1a343eb2011-11-10 08:15:53 +0000211 const BlockDecl *Block;
212 const BlockExpr *BlockExpression;
John McCalld16c2cf2011-02-08 08:22:06 +0000213 CharUnits BlockSize;
214 CharUnits BlockAlign;
John McCall6f103ba2011-11-10 10:43:54 +0000215
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 McCall1a343eb2011-11-10 08:15:53 +0000224 CGBlockInfo *NextBlockInfo;
Mike Stump3947de52009-03-04 18:57:26 +0000225
John McCalld16c2cf2011-02-08 08:22:06 +0000226 const Capture &getCapture(const VarDecl *var) const {
John McCall1a343eb2011-11-10 08:15:53 +0000227 return const_cast<CGBlockInfo*>(this)->getCapture(var);
228 }
229 Capture &getCapture(const VarDecl *var) {
230 llvm::DenseMap<const VarDecl*, Capture>::iterator
John McCalld16c2cf2011-02-08 08:22:06 +0000231 it = Captures.find(var);
232 assert(it != Captures.end() && "no entry for variable!");
233 return it->second;
234 }
235
John McCall1a343eb2011-11-10 08:15:53 +0000236 const BlockDecl *getBlockDecl() const { return Block; }
237 const BlockExpr *getBlockExpr() const {
238 assert(BlockExpression);
239 assert(BlockExpression->getBlockDecl() == Block);
240 return BlockExpression;
241 }
John McCalld16c2cf2011-02-08 08:22:06 +0000242
John McCall1a343eb2011-11-10 08:15:53 +0000243 CGBlockInfo(const BlockDecl *blockDecl, llvm::StringRef Name);
Mike Stumpd883d842009-03-04 15:35:22 +0000244};
245
246} // end namespace CodeGen
247} // end namespace clang
248
249#endif