blob: 16a9270387dd8e8ba504a8e73d268574783fa8d1 [file] [log] [blame]
Shih-wei Liao462aefd2010-06-04 15:32:04 -07001#ifndef _SLANG_COMPILER_RS_CONTEXT_HPP
2# define _SLANG_COMPILER_RS_CONTEXT_HPP
3
4#include "slang_rs_export_element.hpp"
5
6#include <map>
7#include <list>
8#include <string>
9#include <cstdio>
10
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070011#include "llvm/ADT/StringSet.h"
12#include "llvm/ADT/StringMap.h"
Shih-wei Liao462aefd2010-06-04 15:32:04 -070013
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070014#include "clang/Lex/Preprocessor.h"
Shih-wei Liao462aefd2010-06-04 15:32:04 -070015
16namespace llvm {
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070017class LLVMContext;
18class TargetData;
19} // namespace llvm
Shih-wei Liao462aefd2010-06-04 15:32:04 -070020
21namespace clang {
Shih-wei Liao462aefd2010-06-04 15:32:04 -070022class VarDecl;
23class ASTContext;
24class TargetInfo;
25class FunctionDecl;
26class SourceManager;
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070027} // namespace clang
Shih-wei Liao462aefd2010-06-04 15:32:04 -070028
29namespace slang {
30
Shih-wei Liao462aefd2010-06-04 15:32:04 -070031class RSExportVar;
32class RSExportFunc;
33class RSExportType;
34class RSPragmaHandler;
35
36class RSContext {
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070037 typedef llvm::StringSet<> NeedExportVarSet;
38 typedef llvm::StringSet<> NeedExportFuncSet;
39 typedef llvm::StringSet<> NeedExportTypeSet;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070040
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070041 public:
42 typedef std::list<RSExportVar*> ExportVarList;
43 typedef std::list<RSExportFunc*> ExportFuncList;
44 typedef llvm::StringMap<RSExportType*> ExportTypeMap;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070045
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070046 private:
47 clang::Preprocessor *mPP;
48 clang::ASTContext *mCtx;
49 const clang::TargetInfo *mTarget;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070050
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070051 llvm::TargetData *mTargetData;
52 llvm::LLVMContext &mLLVMContext;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070053
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070054 // Record the variables/types/elements annotated in #pragma to be exported
55 NeedExportVarSet mNeedExportVars;
56 NeedExportFuncSet mNeedExportFuncs;
57 NeedExportTypeSet mNeedExportTypes;
58 bool mExportAllNonStaticVars;
59 bool mExportAllNonStaticFuncs;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070060
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070061 std::string *mLicenseNote;
62 std::string mReflectJavaPackageName;
63 std::string mReflectJavaPathName;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070064
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070065 bool processExportVar(const clang::VarDecl *VD);
66 bool processExportFunc(const clang::FunctionDecl *FD);
67 bool processExportType(const llvm::StringRef &Name);
Shih-wei Liao537446c2010-06-11 16:05:55 -070068
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070069 ExportVarList mExportVars;
70 ExportFuncList mExportFuncs;
71 ExportTypeMap mExportTypes;
Shih-wei Liao462aefd2010-06-04 15:32:04 -070072
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070073 public:
74 RSContext(clang::Preprocessor *PP,
75 clang::ASTContext *Ctx,
76 const clang::TargetInfo *Target);
Shih-wei Liao462aefd2010-06-04 15:32:04 -070077
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070078 inline clang::Preprocessor *getPreprocessor() const { return mPP; }
79 inline clang::ASTContext *getASTContext() const { return mCtx; }
80 inline const llvm::TargetData *getTargetData() const { return mTargetData; }
81 inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
82 inline const clang::SourceManager *getSourceManager() const {
83 return &mPP->getSourceManager();
84 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -070085
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070086 inline void setLicenseNote(const std::string &S) {
87 mLicenseNote = new std::string(S);
88 }
89 inline const std::string *getLicenseNote() const { return mLicenseNote; }
Shih-wei Liao462aefd2010-06-04 15:32:04 -070090
Shih-wei Liao9ef2f782010-10-01 12:31:37 -070091 inline void addExportVar(const std::string &S) {
92 mNeedExportVars.insert(S);
93 return;
94 }
95 inline void addExportFunc(const std::string &S) {
96 mNeedExportFuncs.insert(S);
97 return;
98 }
99 inline void addExportType(const std::string &S) {
100 mNeedExportTypes.insert(S);
101 return;
102 }
Victor Hsiehd8a0d182010-07-07 19:22:33 +0800103
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700104 inline void setExportAllNonStaticVars(bool flag) {
105 mExportAllNonStaticVars = flag;
106 }
107 inline void setExportAllNonStaticFuncs(bool flag) {
108 mExportAllNonStaticFuncs = flag;
109 }
110 inline void setReflectJavaPackageName(const std::string &S) {
111 mReflectJavaPackageName = S;
112 return;
113 }
114 inline void setReflectJavaPathName(const std::string &S) {
115 mReflectJavaPathName = S;
116 return;
117 }
118 inline std::string getReflectJavaPathName() const {
119 return mReflectJavaPathName;
120 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700121
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700122 void processExport();
Shih-wei Liao537446c2010-06-11 16:05:55 -0700123
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700124 typedef ExportVarList::const_iterator const_export_var_iterator;
125 const_export_var_iterator export_vars_begin() const {
126 return mExportVars.begin();
127 }
128 const_export_var_iterator export_vars_end() const {
129 return mExportVars.end();
130 }
131 inline bool hasExportVar() const {
132 return !mExportVars.empty();
133 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700134
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700135 typedef ExportFuncList::const_iterator const_export_func_iterator;
136 const_export_func_iterator export_funcs_begin() const {
137 return mExportFuncs.begin();
138 }
139 const_export_func_iterator export_funcs_end() const {
140 return mExportFuncs.end();
141 }
142 inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700143
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700144 typedef ExportTypeMap::iterator export_type_iterator;
145 typedef ExportTypeMap::const_iterator const_export_type_iterator;
146 export_type_iterator export_types_begin() { return mExportTypes.begin(); }
147 export_type_iterator export_types_end() { return mExportTypes.end(); }
148 const_export_type_iterator export_types_begin() const {
149 return mExportTypes.begin();
150 }
151 const_export_type_iterator export_types_end() const {
152 return mExportTypes.end();
153 }
154 inline bool hasExportType() const { return !mExportTypes.empty(); }
155 export_type_iterator findExportType(const llvm::StringRef &TypeName) {
156 return mExportTypes.find(TypeName);
157 }
158 const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
159 const {
160 return mExportTypes.find(TypeName);
161 }
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700162
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700163 // Insert the specified Typename/Type pair into the map. If the key already
164 // exists in the map, return false and ignore the request, otherwise insert it
165 // and return true.
166 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700167
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700168 bool reflectToJava(const char *OutputPackageName,
169 const std::string &InputFileName,
170 const std::string &OutputBCFileName,
171 char realPackageName[],
172 int bSize);
173 bool reflectToJavaPath(const char *OutputPathName);
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700174
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700175 ~RSContext();
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700176};
177
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700178} // namespace slang
Shih-wei Liao462aefd2010-06-04 15:32:04 -0700179
Shih-wei Liao9ef2f782010-10-01 12:31:37 -0700180#endif // _SLANG_COMPILER_RS_CONTEXT_HPP