]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h
Upgrade of base gcc and libstdc++ to the last GPLv2-licensed revision
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / CodeGen / CGBlocks.h
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
17 #include "CodeGenTypes.h"
18 #include "clang/AST/Type.h"
19 #include "llvm/Module.h"
20 #include "llvm/ADT/SmallVector.h"
21 #include "clang/Basic/TargetInfo.h"
22 #include "clang/AST/CharUnits.h"
23 #include "clang/AST/Expr.h"
24 #include "clang/AST/ExprCXX.h"
25 #include "clang/AST/ExprObjC.h"
26
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;
36   class TargetData;
37   class FunctionType;
38   class PointerType;
39   class Value;
40   class LLVMContext;
41 }
42
43 namespace clang {
44
45 namespace CodeGen {
46
47 class CodeGenModule;
48 class CGBlockInfo;
49
50 enum BlockFlag_t {
51   BLOCK_HAS_COPY_DISPOSE =  (1 << 25),
52   BLOCK_HAS_CXX_OBJ =       (1 << 26),
53   BLOCK_IS_GLOBAL =         (1 << 28),
54   BLOCK_USE_STRET =         (1 << 29),
55   BLOCK_HAS_SIGNATURE  =    (1 << 30)
56 };
57 class BlockFlags {
58   uint32_t flags;
59
60   BlockFlags(uint32_t flags) : flags(flags) {}
61 public:
62   BlockFlags() : flags(0) {}
63   BlockFlags(BlockFlag_t flag) : flags(flag) {}
64
65   uint32_t getBitMask() const { return flags; }
66   bool empty() const { return flags == 0; }
67
68   friend BlockFlags operator|(BlockFlags l, BlockFlags r) {
69     return BlockFlags(l.flags | r.flags);
70   }
71   friend BlockFlags &operator|=(BlockFlags &l, BlockFlags r) {
72     l.flags |= r.flags;
73     return l;
74   }
75   friend bool operator&(BlockFlags l, BlockFlags r) {
76     return (l.flags & r.flags);
77   }
78 };
79 inline BlockFlags operator|(BlockFlag_t l, BlockFlag_t r) {
80   return BlockFlags(l) | BlockFlags(r);
81 }
82
83 enum BlockFieldFlag_t {
84   BLOCK_FIELD_IS_OBJECT   = 0x03,  /* id, NSObject, __attribute__((NSObject)),
85                                     block, ... */
86   BLOCK_FIELD_IS_BLOCK    = 0x07,  /* a block variable */
87
88   BLOCK_FIELD_IS_BYREF    = 0x08,  /* the on stack structure holding the __block
89                                     variable */
90   BLOCK_FIELD_IS_WEAK     = 0x10,  /* declared __weak, only used in byref copy
91                                     helpers */
92
93   BLOCK_BYREF_CALLER      = 128,   /* called from __block (byref) copy/dispose
94                                       support routines */
95   BLOCK_BYREF_CURRENT_MAX = 256
96 };
97
98 class BlockFieldFlags {
99   uint32_t flags;
100
101   BlockFieldFlags(uint32_t flags) : flags(flags) {}
102 public:
103   BlockFieldFlags() : flags(0) {}
104   BlockFieldFlags(BlockFieldFlag_t flag) : flags(flag) {}
105
106   uint32_t getBitMask() const { return flags; }
107   bool empty() const { return flags == 0; }
108
109   /// Answers whether the flags indicate that this field is an object
110   /// or block pointer that requires _Block_object_assign/dispose.
111   bool isSpecialPointer() const { return flags & BLOCK_FIELD_IS_OBJECT; }
112
113   friend BlockFieldFlags operator|(BlockFieldFlags l, BlockFieldFlags r) {
114     return BlockFieldFlags(l.flags | r.flags);
115   }
116   friend BlockFieldFlags &operator|=(BlockFieldFlags &l, BlockFieldFlags r) {
117     l.flags |= r.flags;
118     return l;
119   }
120   friend bool operator&(BlockFieldFlags l, BlockFieldFlags r) {
121     return (l.flags & r.flags);
122   }
123 };
124 inline BlockFieldFlags operator|(BlockFieldFlag_t l, BlockFieldFlag_t r) {
125   return BlockFieldFlags(l) | BlockFieldFlags(r);
126 }
127
128 /// CGBlockInfo - Information to generate a block literal.
129 class CGBlockInfo {
130 public:
131   /// Name - The name of the block, kindof.
132   const char *Name;
133
134   /// The field index of 'this' within the block, if there is one.
135   unsigned CXXThisIndex;
136
137   class Capture {
138     uintptr_t Data;
139
140   public:
141     bool isIndex() const { return (Data & 1) != 0; }
142     bool isConstant() const { return !isIndex(); }
143     unsigned getIndex() const { assert(isIndex()); return Data >> 1; }
144     llvm::Value *getConstant() const {
145       assert(isConstant());
146       return reinterpret_cast<llvm::Value*>(Data);
147     }
148
149     static Capture makeIndex(unsigned index) {
150       Capture v;
151       v.Data = (index << 1) | 1;
152       return v;
153     }
154
155     static Capture makeConstant(llvm::Value *value) {
156       Capture v;
157       v.Data = reinterpret_cast<uintptr_t>(value);
158       return v;
159     }    
160   };
161
162   /// The mapping of allocated indexes within the block.
163   llvm::DenseMap<const VarDecl*, Capture> Captures;  
164
165   /// CanBeGlobal - True if the block can be global, i.e. it has
166   /// no non-constant captures.
167   bool CanBeGlobal : 1;
168
169   /// True if the block needs a custom copy or dispose function.
170   bool NeedsCopyDispose : 1;
171
172   /// HasCXXObject - True if the block's custom copy/dispose functions
173   /// need to be run even in GC mode.
174   bool HasCXXObject : 1;
175
176   const llvm::StructType *StructureType;
177   const BlockExpr *Block;
178   CharUnits BlockSize;
179   CharUnits BlockAlign;
180
181   const Capture &getCapture(const VarDecl *var) const {
182     llvm::DenseMap<const VarDecl*, Capture>::const_iterator
183       it = Captures.find(var);
184     assert(it != Captures.end() && "no entry for variable!");
185     return it->second;
186   }
187
188   const BlockDecl *getBlockDecl() const { return Block->getBlockDecl(); }
189   const BlockExpr *getBlockExpr() const { return Block; }
190
191   CGBlockInfo(const BlockExpr *blockExpr, const char *Name);
192 };
193
194 }  // end namespace CodeGen
195 }  // end namespace clang
196
197 #endif