blob: 690fa8b05e6aa145f0ed54e86c647b2f64f97fd2 [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),
66 BLOCK_HAS_SIGNATURE = (1 << 30)
Mike Stumpd883d842009-03-04 15:35:22 +000067};
John McCalld16c2cf2011-02-08 08:22:06 +000068class BlockFlags {
69 uint32_t flags;
Mike Stumpd883d842009-03-04 15:35:22 +000070
John McCalld16c2cf2011-02-08 08:22:06 +000071 BlockFlags(uint32_t flags) : flags(flags) {}
Mike Stump2a998142009-03-04 18:17:45 +000072public:
John McCalld16c2cf2011-02-08 08:22:06 +000073 BlockFlags() : flags(0) {}
Fariborz Jahanian40effbb2012-10-25 22:55:52 +000074 BlockFlags(BlockLiteralFlags flag) : flags(flag) {}
Mike Stump2a998142009-03-04 18:17:45 +000075
John McCalld16c2cf2011-02-08 08:22:06 +000076 uint32_t getBitMask() const { return flags; }
77 bool empty() const { return flags == 0; }
Mike Stump2a998142009-03-04 18:17:45 +000078
John McCalld16c2cf2011-02-08 08:22:06 +000079 friend BlockFlags operator|(BlockFlags l, BlockFlags r) {
80 return BlockFlags(l.flags | r.flags);
81 }
82 friend BlockFlags &operator|=(BlockFlags &l, BlockFlags r) {
83 l.flags |= r.flags;
84 return l;
85 }
86 friend bool operator&(BlockFlags l, BlockFlags r) {
87 return (l.flags & r.flags);
Mike Stump2a998142009-03-04 18:17:45 +000088 }
Mike Stumpd883d842009-03-04 15:35:22 +000089};
Fariborz Jahanian40effbb2012-10-25 22:55:52 +000090inline BlockFlags operator|(BlockLiteralFlags l, BlockLiteralFlags r) {
John McCalld16c2cf2011-02-08 08:22:06 +000091 return BlockFlags(l) | BlockFlags(r);
92}
Mike Stumpd883d842009-03-04 15:35:22 +000093
John McCalld16c2cf2011-02-08 08:22:06 +000094enum BlockFieldFlag_t {
95 BLOCK_FIELD_IS_OBJECT = 0x03, /* id, NSObject, __attribute__((NSObject)),
96 block, ... */
97 BLOCK_FIELD_IS_BLOCK = 0x07, /* a block variable */
Mike Stump797b6322009-03-05 01:23:13 +000098
John McCalld16c2cf2011-02-08 08:22:06 +000099 BLOCK_FIELD_IS_BYREF = 0x08, /* the on stack structure holding the __block
100 variable */
101 BLOCK_FIELD_IS_WEAK = 0x10, /* declared __weak, only used in byref copy
102 helpers */
John McCallf85e1932011-06-15 23:02:42 +0000103 BLOCK_FIELD_IS_ARC = 0x40, /* field has ARC-specific semantics */
John McCalld16c2cf2011-02-08 08:22:06 +0000104 BLOCK_BYREF_CALLER = 128, /* called from __block (byref) copy/dispose
Mike Stumpd883d842009-03-04 15:35:22 +0000105 support routines */
John McCalld16c2cf2011-02-08 08:22:06 +0000106 BLOCK_BYREF_CURRENT_MAX = 256
107};
108
109class BlockFieldFlags {
110 uint32_t flags;
111
112 BlockFieldFlags(uint32_t flags) : flags(flags) {}
113public:
114 BlockFieldFlags() : flags(0) {}
115 BlockFieldFlags(BlockFieldFlag_t flag) : flags(flag) {}
116
117 uint32_t getBitMask() const { return flags; }
118 bool empty() const { return flags == 0; }
119
120 /// Answers whether the flags indicate that this field is an object
121 /// or block pointer that requires _Block_object_assign/dispose.
122 bool isSpecialPointer() const { return flags & BLOCK_FIELD_IS_OBJECT; }
123
124 friend BlockFieldFlags operator|(BlockFieldFlags l, BlockFieldFlags r) {
125 return BlockFieldFlags(l.flags | r.flags);
126 }
127 friend BlockFieldFlags &operator|=(BlockFieldFlags &l, BlockFieldFlags r) {
128 l.flags |= r.flags;
129 return l;
130 }
131 friend bool operator&(BlockFieldFlags l, BlockFieldFlags r) {
132 return (l.flags & r.flags);
133 }
134};
135inline BlockFieldFlags operator|(BlockFieldFlag_t l, BlockFieldFlag_t r) {
136 return BlockFieldFlags(l) | BlockFieldFlags(r);
137}
138
139/// CGBlockInfo - Information to generate a block literal.
140class CGBlockInfo {
141public:
142 /// Name - The name of the block, kindof.
John McCall1a343eb2011-11-10 08:15:53 +0000143 llvm::StringRef Name;
John McCalld16c2cf2011-02-08 08:22:06 +0000144
145 /// The field index of 'this' within the block, if there is one.
146 unsigned CXXThisIndex;
147
148 class Capture {
149 uintptr_t Data;
John McCall1a343eb2011-11-10 08:15:53 +0000150 EHScopeStack::stable_iterator Cleanup;
John McCalld16c2cf2011-02-08 08:22:06 +0000151
152 public:
153 bool isIndex() const { return (Data & 1) != 0; }
154 bool isConstant() const { return !isIndex(); }
155 unsigned getIndex() const { assert(isIndex()); return Data >> 1; }
156 llvm::Value *getConstant() const {
157 assert(isConstant());
158 return reinterpret_cast<llvm::Value*>(Data);
159 }
John McCall1a343eb2011-11-10 08:15:53 +0000160 EHScopeStack::stable_iterator getCleanup() const {
161 assert(isIndex());
162 return Cleanup;
163 }
164 void setCleanup(EHScopeStack::stable_iterator cleanup) {
165 assert(isIndex());
166 Cleanup = cleanup;
167 }
John McCalld16c2cf2011-02-08 08:22:06 +0000168
169 static Capture makeIndex(unsigned index) {
170 Capture v;
171 v.Data = (index << 1) | 1;
172 return v;
173 }
174
175 static Capture makeConstant(llvm::Value *value) {
176 Capture v;
177 v.Data = reinterpret_cast<uintptr_t>(value);
178 return v;
179 }
Mike Stumpd883d842009-03-04 15:35:22 +0000180 };
Mike Stump3947de52009-03-04 18:57:26 +0000181
John McCalld16c2cf2011-02-08 08:22:06 +0000182 /// CanBeGlobal - True if the block can be global, i.e. it has
183 /// no non-constant captures.
184 bool CanBeGlobal : 1;
Mike Stump08920992009-03-07 02:35:30 +0000185
John McCalld16c2cf2011-02-08 08:22:06 +0000186 /// True if the block needs a custom copy or dispose function.
187 bool NeedsCopyDispose : 1;
Mike Stump45031c02009-03-06 02:29:21 +0000188
John McCalld16c2cf2011-02-08 08:22:06 +0000189 /// HasCXXObject - True if the block's custom copy/dispose functions
190 /// need to be run even in GC mode.
191 bool HasCXXObject : 1;
Mike Stump45031c02009-03-06 02:29:21 +0000192
John McCall64cd2322011-03-09 08:39:33 +0000193 /// UsesStret : True if the block uses an stret return. Mutable
194 /// because it gets set later in the block-creation process.
195 mutable bool UsesStret : 1;
196
John McCall1a343eb2011-11-10 08:15:53 +0000197 /// The mapping of allocated indexes within the block.
198 llvm::DenseMap<const VarDecl*, Capture> Captures;
199
200 llvm::AllocaInst *Address;
Chris Lattner2acc6e32011-07-18 04:24:23 +0000201 llvm::StructType *StructureType;
John McCall1a343eb2011-11-10 08:15:53 +0000202 const BlockDecl *Block;
203 const BlockExpr *BlockExpression;
John McCalld16c2cf2011-02-08 08:22:06 +0000204 CharUnits BlockSize;
205 CharUnits BlockAlign;
John McCall6f103ba2011-11-10 10:43:54 +0000206
207 /// An instruction which dominates the full-expression that the
208 /// block is inside.
209 llvm::Instruction *DominatingIP;
210
211 /// The next block in the block-info chain. Invalid if this block
212 /// info is not part of the CGF's block-info chain, which is true
213 /// if it corresponds to a global block or a block whose expression
214 /// has been encountered.
John McCall1a343eb2011-11-10 08:15:53 +0000215 CGBlockInfo *NextBlockInfo;
Mike Stump3947de52009-03-04 18:57:26 +0000216
John McCalld16c2cf2011-02-08 08:22:06 +0000217 const Capture &getCapture(const VarDecl *var) const {
John McCall1a343eb2011-11-10 08:15:53 +0000218 return const_cast<CGBlockInfo*>(this)->getCapture(var);
219 }
220 Capture &getCapture(const VarDecl *var) {
221 llvm::DenseMap<const VarDecl*, Capture>::iterator
John McCalld16c2cf2011-02-08 08:22:06 +0000222 it = Captures.find(var);
223 assert(it != Captures.end() && "no entry for variable!");
224 return it->second;
225 }
226
John McCall1a343eb2011-11-10 08:15:53 +0000227 const BlockDecl *getBlockDecl() const { return Block; }
228 const BlockExpr *getBlockExpr() const {
229 assert(BlockExpression);
230 assert(BlockExpression->getBlockDecl() == Block);
231 return BlockExpression;
232 }
John McCalld16c2cf2011-02-08 08:22:06 +0000233
John McCall1a343eb2011-11-10 08:15:53 +0000234 CGBlockInfo(const BlockDecl *blockDecl, llvm::StringRef Name);
Mike Stumpd883d842009-03-04 15:35:22 +0000235};
236
237} // end namespace CodeGen
238} // end namespace clang
239
240#endif