blob: 24b0cc9e5b5673c017d064938405810313b3e6b4 [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"
19#include "llvm/ADT/DenseMap.h"
20#include "llvm/ADT/SmallVector.h"
21#include "clang/Basic/TargetInfo.h"
22#include "clang/AST/Expr.h"
23#include "clang/AST/ExprCXX.h"
24#include "clang/AST/ExprObjC.h"
25
26#include <vector>
27#include <map>
28
29#include "CGBuilder.h"
30#include "CGCall.h"
31#include "CGValue.h"
32
33namespace llvm {
34 class Module;
35 class Constant;
36 class Function;
37 class GlobalValue;
38 class TargetData;
39 class FunctionType;
40 class Value;
41}
42
Mike Stumpd883d842009-03-04 15:35:22 +000043namespace clang {
44
45namespace CodeGen {
Mike Stump90a90432009-03-04 18:47:42 +000046class CodeGenModule;
Mike Stumpd883d842009-03-04 15:35:22 +000047
48class BlockBase {
49public:
50 enum {
51 BLOCK_NEEDS_FREE = (1 << 24),
52 BLOCK_HAS_COPY_DISPOSE = (1 << 25),
53 BLOCK_HAS_CXX_OBJ = (1 << 26),
54 BLOCK_IS_GC = (1 << 27),
55 BLOCK_IS_GLOBAL = (1 << 28),
56 BLOCK_HAS_DESCRIPTOR = (1 << 29)
57 };
58};
59
60class BlockModule : public BlockBase {
Mike Stump2a998142009-03-04 18:17:45 +000061 ASTContext &Context;
62 llvm::Module &TheModule;
Mike Stump90a90432009-03-04 18:47:42 +000063 const llvm::TargetData &TheTargetData;
Mike Stump2a998142009-03-04 18:17:45 +000064 CodeGenTypes &Types;
Mike Stump90a90432009-03-04 18:47:42 +000065 CodeGenModule &CGM;
Mike Stump2a998142009-03-04 18:17:45 +000066
67 ASTContext &getContext() const { return Context; }
68 llvm::Module &getModule() const { return TheModule; }
69 CodeGenTypes &getTypes() { return Types; }
Mike Stump90a90432009-03-04 18:47:42 +000070 const llvm::TargetData &getTargetData() const { return TheTargetData; }
Mike Stump2a998142009-03-04 18:17:45 +000071public:
72 llvm::Constant *getNSConcreteGlobalBlock();
73 llvm::Constant *getNSConcreteStackBlock();
74 int getGlobalUniqueCount() { return ++Block.GlobalUniqueCount; }
75 const llvm::Type *getBlockDescriptorType();
76
77 const llvm::Type *getGenericBlockLiteralType();
78 const llvm::Type *getGenericExtendedBlockLiteralType();
79
Mike Stump90a90432009-03-04 18:47:42 +000080 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, const char *);
81
Mike Stump2a998142009-03-04 18:17:45 +000082 /// NSConcreteGlobalBlock - Cached reference to the class pointer for global
83 /// blocks.
84 llvm::Constant *NSConcreteGlobalBlock;
85
86 /// NSConcreteStackBlock - Cached reference to the class poinnter for stack
87 /// blocks.
88 llvm::Constant *NSConcreteStackBlock;
89
90 const llvm::Type *BlockDescriptorType;
91 const llvm::Type *GenericBlockLiteralType;
92 const llvm::Type *GenericExtendedBlockLiteralType;
93 struct {
94 int GlobalUniqueCount;
95 } Block;
96
Mike Stump797b6322009-03-05 01:23:13 +000097 llvm::Value *BlockObjectDispose;
98 const llvm::Type *PtrToInt8Ty;
99
Mike Stump90a90432009-03-04 18:47:42 +0000100 BlockModule(ASTContext &C, llvm::Module &M, const llvm::TargetData &TD,
101 CodeGenTypes &T, CodeGenModule &CodeGen)
102 : Context(C), TheModule(M), TheTargetData(TD), Types(T),
103 CGM(CodeGen),
104 NSConcreteGlobalBlock(0), NSConcreteStackBlock(0), BlockDescriptorType(0),
Mike Stump797b6322009-03-05 01:23:13 +0000105 GenericBlockLiteralType(0), BlockObjectDispose(0) {
Mike Stump2a998142009-03-04 18:17:45 +0000106 Block.GlobalUniqueCount = 0;
Mike Stump797b6322009-03-05 01:23:13 +0000107 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
Mike Stump2a998142009-03-04 18:17:45 +0000108 }
Mike Stumpd883d842009-03-04 15:35:22 +0000109};
110
111class BlockFunction : public BlockBase {
Mike Stump797b6322009-03-05 01:23:13 +0000112 CodeGenModule &CGM;
Mike Stump00470a12009-03-05 08:32:30 +0000113 ASTContext &getContext() const;
Mike Stump797b6322009-03-05 01:23:13 +0000114
Mike Stumpd883d842009-03-04 15:35:22 +0000115public:
Mike Stump797b6322009-03-05 01:23:13 +0000116 const llvm::Type *PtrToInt8Ty;
117 enum {
Mike Stumpd883d842009-03-04 15:35:22 +0000118 BLOCK_FIELD_IS_OBJECT = 3, /* id, NSObject, __attribute__((NSObject)),
119 block, ... */
120 BLOCK_FIELD_IS_BLOCK = 7, /* a block variable */
121 BLOCK_FIELD_IS_BYREF = 8, /* the on stack structure holding the __block
122 variable */
123 BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy
124 helpers */
125 BLOCK_BYREF_CALLER = 128 /* called from __block (byref) copy/dispose
126 support routines */
127 };
Mike Stump3947de52009-03-04 18:57:26 +0000128
Mike Stumpad75ab42009-03-04 19:03:44 +0000129 /// BlockInfo - Information to generate a block literal.
130 struct BlockInfo {
131 /// BlockLiteralTy - The type of the block literal.
132 const llvm::Type *BlockLiteralTy;
133
134 /// Name - the name of the function this block was created for, if any
135 const char *Name;
136
137 /// ByCopyDeclRefs - Variables from parent scopes that have been imported
138 /// into this block.
139 llvm::SmallVector<const BlockDeclRefExpr *, 8> ByCopyDeclRefs;
140
141 // ByRefDeclRefs - __block variables from parent scopes that have been
142 // imported into this block.
143 llvm::SmallVector<const BlockDeclRefExpr *, 8> ByRefDeclRefs;
144
145 BlockInfo(const llvm::Type *blt, const char *n)
146 : BlockLiteralTy(blt), Name(n) {}
147 };
148
Mike Stump3947de52009-03-04 18:57:26 +0000149 CGBuilderTy &Builder;
150
Mike Stump797b6322009-03-05 01:23:13 +0000151 BlockFunction(CodeGenModule &cgm, CGBuilderTy &B)
152 : CGM(cgm), Builder(B) {
153 PtrToInt8Ty = llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
154 }
Mike Stump3947de52009-03-04 18:57:26 +0000155
Mike Stumpad75ab42009-03-04 19:03:44 +0000156 ImplicitParamDecl *BlockStructDecl;
157 ImplicitParamDecl *getBlockStructDecl() { return BlockStructDecl; }
158
Mike Stump3947de52009-03-04 18:57:26 +0000159 llvm::Value *BuildCopyHelper(int flag);
160 llvm::Value *BuildDestroyHelper(int flag);
161
Mike Stump797b6322009-03-05 01:23:13 +0000162 llvm::Value *getBlockObjectDispose();
163 void BuildBlockRelease(const VarDecl &D, llvm::Value *DeclPtr);
Mike Stump00470a12009-03-05 08:32:30 +0000164
165 bool BlockRequiresCopying(QualType Ty) {
166 if (Ty->isBlockPointerType())
167 return true;
168 if (getContext().isObjCNSObjectType(Ty))
169 return true;
170 return false;
171 }
Mike Stumpd883d842009-03-04 15:35:22 +0000172};
173
174} // end namespace CodeGen
175} // end namespace clang
176
177#endif