Zonr Chang | c383a50 | 2010-10-12 01:52:08 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010, The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 17 | #ifndef _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_ // NOLINT |
| 18 | #define _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_ |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 19 | |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 20 | #include <cstdio> |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 21 | #include <list> |
| 22 | #include <map> |
| 23 | #include <string> |
| 24 | |
| 25 | #include "clang/Lex/Preprocessor.h" |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 26 | #include "clang/AST/Mangle.h" |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 27 | |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 28 | #include "llvm/ADT/OwningPtr.h" |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 29 | #include "llvm/ADT/StringSet.h" |
| 30 | #include "llvm/ADT/StringMap.h" |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 31 | |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 32 | #include "slang_pragma_recorder.h" |
| 33 | |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 34 | namespace llvm { |
zonr | 6315f76 | 2010-10-05 15:35:14 +0800 | [diff] [blame] | 35 | class LLVMContext; |
| 36 | class TargetData; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 37 | } // namespace llvm |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 38 | |
| 39 | namespace clang { |
zonr | 6315f76 | 2010-10-05 15:35:14 +0800 | [diff] [blame] | 40 | class VarDecl; |
| 41 | class ASTContext; |
| 42 | class TargetInfo; |
| 43 | class FunctionDecl; |
| 44 | class SourceManager; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 45 | } // namespace clang |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 46 | |
| 47 | namespace slang { |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 48 | class RSExportable; |
| 49 | class RSExportVar; |
| 50 | class RSExportFunc; |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 51 | class RSExportForEach; |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 52 | class RSExportType; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 53 | |
| 54 | class RSContext { |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 55 | typedef llvm::StringSet<> NeedExportVarSet; |
| 56 | typedef llvm::StringSet<> NeedExportFuncSet; |
| 57 | typedef llvm::StringSet<> NeedExportTypeSet; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 58 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 59 | public: |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 60 | typedef std::list<RSExportable*> ExportableList; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 61 | typedef std::list<RSExportVar*> ExportVarList; |
| 62 | typedef std::list<RSExportFunc*> ExportFuncList; |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 63 | typedef std::list<RSExportForEach*> ExportForEachList; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 64 | typedef llvm::StringMap<RSExportType*> ExportTypeMap; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 65 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 66 | private: |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 67 | clang::Preprocessor &mPP; |
| 68 | clang::ASTContext &mCtx; |
| 69 | const clang::TargetInfo &mTarget; |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 70 | PragmaList *mPragmas; |
Stephen Hines | 4a4bf92 | 2011-08-18 17:20:33 -0700 | [diff] [blame] | 71 | unsigned int mTargetAPI; |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 72 | std::vector<std::string> *mGeneratedFileNames; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 73 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 74 | llvm::TargetData *mTargetData; |
| 75 | llvm::LLVMContext &mLLVMContext; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 76 | |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 77 | ExportableList mExportables; |
| 78 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 79 | NeedExportTypeSet mNeedExportTypes; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 80 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 81 | std::string *mLicenseNote; |
| 82 | std::string mReflectJavaPackageName; |
| 83 | std::string mReflectJavaPathName; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 84 | |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 85 | int version; |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 86 | llvm::OwningPtr<clang::MangleContext> mMangleCtx; |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 87 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 88 | bool processExportVar(const clang::VarDecl *VD); |
| 89 | bool processExportFunc(const clang::FunctionDecl *FD); |
| 90 | bool processExportType(const llvm::StringRef &Name); |
Shih-wei Liao | 537446c | 2010-06-11 16:05:55 -0700 | [diff] [blame] | 91 | |
Stephen Hines | c17e198 | 2012-02-22 12:30:45 -0800 | [diff] [blame] | 92 | void cleanupForEach(); |
| 93 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 94 | ExportVarList mExportVars; |
| 95 | ExportFuncList mExportFuncs; |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 96 | ExportForEachList mExportForEach; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 97 | ExportTypeMap mExportTypes; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 98 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 99 | public: |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 100 | RSContext(clang::Preprocessor &PP, |
| 101 | clang::ASTContext &Ctx, |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 102 | const clang::TargetInfo &Target, |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 103 | PragmaList *Pragmas, |
Stephen Hines | 4a4bf92 | 2011-08-18 17:20:33 -0700 | [diff] [blame] | 104 | unsigned int TargetAPI, |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 105 | std::vector<std::string> *GeneratedFileNames); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 106 | |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 107 | inline clang::Preprocessor &getPreprocessor() const { return mPP; } |
| 108 | inline clang::ASTContext &getASTContext() const { return mCtx; } |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 109 | inline clang::MangleContext &getMangleContext() const { |
| 110 | return *mMangleCtx; |
Stephen Hines | f2174cf | 2011-02-09 23:21:37 -0800 | [diff] [blame] | 111 | } |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 112 | inline const llvm::TargetData *getTargetData() const { return mTargetData; } |
| 113 | inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; } |
| 114 | inline const clang::SourceManager *getSourceManager() const { |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 115 | return &mPP.getSourceManager(); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 116 | } |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 117 | inline clang::DiagnosticsEngine *getDiagnostics() const { |
Stephen Hines | 2ef9bc0 | 2010-12-13 18:33:23 -0800 | [diff] [blame] | 118 | return &mPP.getDiagnostics(); |
| 119 | } |
Stephen Hines | 4a4bf92 | 2011-08-18 17:20:33 -0700 | [diff] [blame] | 120 | inline unsigned int getTargetAPI() const { |
| 121 | return mTargetAPI; |
| 122 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 123 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 124 | inline void setLicenseNote(const std::string &S) { |
| 125 | mLicenseNote = new std::string(S); |
| 126 | } |
| 127 | inline const std::string *getLicenseNote() const { return mLicenseNote; } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 128 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 129 | inline void addExportType(const std::string &S) { |
| 130 | mNeedExportTypes.insert(S); |
| 131 | return; |
| 132 | } |
Victor Hsieh | d8a0d18 | 2010-07-07 19:22:33 +0800 | [diff] [blame] | 133 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 134 | inline void setReflectJavaPackageName(const std::string &S) { |
| 135 | mReflectJavaPackageName = S; |
| 136 | return; |
| 137 | } |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 138 | inline const std::string &getReflectJavaPackageName() { |
| 139 | return mReflectJavaPackageName; |
| 140 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 141 | |
Stephen Hines | c808a99 | 2010-11-29 17:20:42 -0800 | [diff] [blame] | 142 | bool processExport(); |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 143 | inline void newExportable(RSExportable *E) { |
| 144 | if (E != NULL) |
| 145 | mExportables.push_back(E); |
| 146 | } |
Zonr Chang | 641558f | 2010-10-12 21:07:06 +0800 | [diff] [blame] | 147 | typedef ExportableList::iterator exportable_iterator; |
| 148 | exportable_iterator exportable_begin() { |
| 149 | return mExportables.begin(); |
| 150 | } |
| 151 | exportable_iterator exportable_end() { |
| 152 | return mExportables.end(); |
| 153 | } |
Shih-wei Liao | 537446c | 2010-06-11 16:05:55 -0700 | [diff] [blame] | 154 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 155 | typedef ExportVarList::const_iterator const_export_var_iterator; |
| 156 | const_export_var_iterator export_vars_begin() const { |
| 157 | return mExportVars.begin(); |
| 158 | } |
| 159 | const_export_var_iterator export_vars_end() const { |
| 160 | return mExportVars.end(); |
| 161 | } |
| 162 | inline bool hasExportVar() const { |
| 163 | return !mExportVars.empty(); |
| 164 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 165 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 166 | typedef ExportFuncList::const_iterator const_export_func_iterator; |
| 167 | const_export_func_iterator export_funcs_begin() const { |
| 168 | return mExportFuncs.begin(); |
| 169 | } |
| 170 | const_export_func_iterator export_funcs_end() const { |
| 171 | return mExportFuncs.end(); |
| 172 | } |
| 173 | inline bool hasExportFunc() const { return !mExportFuncs.empty(); } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 174 | |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 175 | typedef ExportForEachList::const_iterator const_export_foreach_iterator; |
| 176 | const_export_foreach_iterator export_foreach_begin() const { |
| 177 | return mExportForEach.begin(); |
| 178 | } |
| 179 | const_export_foreach_iterator export_foreach_end() const { |
| 180 | return mExportForEach.end(); |
| 181 | } |
| 182 | inline bool hasExportForEach() const { return !mExportForEach.empty(); } |
| 183 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 184 | typedef ExportTypeMap::iterator export_type_iterator; |
| 185 | typedef ExportTypeMap::const_iterator const_export_type_iterator; |
| 186 | export_type_iterator export_types_begin() { return mExportTypes.begin(); } |
| 187 | export_type_iterator export_types_end() { return mExportTypes.end(); } |
| 188 | const_export_type_iterator export_types_begin() const { |
| 189 | return mExportTypes.begin(); |
| 190 | } |
| 191 | const_export_type_iterator export_types_end() const { |
| 192 | return mExportTypes.end(); |
| 193 | } |
| 194 | inline bool hasExportType() const { return !mExportTypes.empty(); } |
| 195 | export_type_iterator findExportType(const llvm::StringRef &TypeName) { |
| 196 | return mExportTypes.find(TypeName); |
| 197 | } |
| 198 | const_export_type_iterator findExportType(const llvm::StringRef &TypeName) |
| 199 | const { |
| 200 | return mExportTypes.find(TypeName); |
| 201 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 202 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 203 | // Insert the specified Typename/Type pair into the map. If the key already |
| 204 | // exists in the map, return false and ignore the request, otherwise insert it |
| 205 | // and return true. |
| 206 | bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 207 | |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 208 | bool reflectToJava(const std::string &OutputPathBase, |
| 209 | const std::string &OutputPackageName, |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 210 | const std::string &InputFileName, |
| 211 | const std::string &OutputBCFileName, |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 212 | std::string *RealPackageName); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 213 | |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 214 | int getVersion() const { return version; } |
| 215 | void setVersion(int v) { |
| 216 | version = v; |
| 217 | return; |
| 218 | } |
| 219 | |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 220 | void addPragma(const std::string &T, const std::string &V) { |
| 221 | mPragmas->push_back(make_pair(T, V)); |
| 222 | } |
| 223 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 224 | ~RSContext(); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 225 | }; |
| 226 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 227 | } // namespace slang |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 228 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 229 | #endif // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_ NOLINT |