Zonr Chang | c383a50 | 2010-10-12 01:52:08 +0800 | [diff] [blame] | 1 | /* |
Stephen Hines | 0a813a3 | 2012-08-03 16:52:40 -0700 | [diff] [blame] | 2 | * Copyright 2010-2012, The Android Open Source Project |
Zonr Chang | c383a50 | 2010-10-12 01:52:08 +0800 | [diff] [blame] | 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 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 28 | #include "llvm/ADT/StringSet.h" |
| 29 | #include "llvm/ADT/StringMap.h" |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 30 | |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 31 | #include "slang_pragma_recorder.h" |
| 32 | |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 33 | namespace llvm { |
zonr | 6315f76 | 2010-10-05 15:35:14 +0800 | [diff] [blame] | 34 | class LLVMContext; |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 35 | class DataLayout; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 36 | } // namespace llvm |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 37 | |
| 38 | namespace clang { |
zonr | 6315f76 | 2010-10-05 15:35:14 +0800 | [diff] [blame] | 39 | class VarDecl; |
| 40 | class ASTContext; |
| 41 | class TargetInfo; |
| 42 | class FunctionDecl; |
| 43 | class SourceManager; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 44 | } // namespace clang |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 45 | |
| 46 | namespace slang { |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 47 | class RSExportable; |
| 48 | class RSExportVar; |
| 49 | class RSExportFunc; |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 50 | class RSExportForEach; |
Matt Wala | c0c5dd8 | 2015-07-23 17:29:37 -0700 | [diff] [blame] | 51 | class RSExportReduce; |
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; |
Matt Wala | c0c5dd8 | 2015-07-23 17:29:37 -0700 | [diff] [blame] | 64 | typedef std::list<RSExportReduce*> ExportReduceList; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 65 | typedef llvm::StringMap<RSExportType*> ExportTypeMap; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 66 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 67 | private: |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 68 | clang::Preprocessor &mPP; |
| 69 | clang::ASTContext &mCtx; |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 70 | PragmaList *mPragmas; |
Jean-Luc Brouillet | 109e90a | 2014-07-07 17:36:07 -0700 | [diff] [blame] | 71 | // Precision specified via pragma, either rs_fp_full or rs_fp_relaxed. If |
| 72 | // empty, rs_fp_full is assumed. |
| 73 | std::string mPrecision; |
Chris Wailes | c9454af | 2014-06-13 17:25:40 -0700 | [diff] [blame] | 74 | unsigned int mTargetAPI; |
Stephen Hines | fc4f78b | 2014-06-10 18:07:10 -0700 | [diff] [blame] | 75 | bool mVerbose; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 76 | |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 77 | llvm::DataLayout *mDataLayout; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 78 | llvm::LLVMContext &mLLVMContext; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 79 | |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 80 | ExportableList mExportables; |
| 81 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 82 | NeedExportTypeSet mNeedExportTypes; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 83 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 84 | std::string *mLicenseNote; |
| 85 | std::string mReflectJavaPackageName; |
| 86 | std::string mReflectJavaPathName; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 87 | |
Stephen Hines | 0a813a3 | 2012-08-03 16:52:40 -0700 | [diff] [blame] | 88 | std::string mRSPackageName; |
| 89 | |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 90 | int version; |
Stephen Hines | 82754d8 | 2013-01-18 19:46:06 -0800 | [diff] [blame] | 91 | |
Stephen Hines | 2eb9a3f | 2014-07-15 16:50:03 -0700 | [diff] [blame] | 92 | std::unique_ptr<clang::MangleContext> mMangleCtx; |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 93 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame] | 94 | bool mIs64Bit; |
| 95 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 96 | bool processExportVar(const clang::VarDecl *VD); |
| 97 | bool processExportFunc(const clang::FunctionDecl *FD); |
| 98 | bool processExportType(const llvm::StringRef &Name); |
Shih-wei Liao | 537446c | 2010-06-11 16:05:55 -0700 | [diff] [blame] | 99 | |
Stephen Hines | c17e198 | 2012-02-22 12:30:45 -0800 | [diff] [blame] | 100 | void cleanupForEach(); |
| 101 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 102 | ExportVarList mExportVars; |
| 103 | ExportFuncList mExportFuncs; |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 104 | ExportForEachList mExportForEach; |
Matt Wala | c0c5dd8 | 2015-07-23 17:29:37 -0700 | [diff] [blame] | 105 | ExportReduceList mExportReduce; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 106 | ExportTypeMap mExportTypes; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 107 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 108 | public: |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 109 | RSContext(clang::Preprocessor &PP, |
| 110 | clang::ASTContext &Ctx, |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 111 | const clang::TargetInfo &Target, |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 112 | PragmaList *Pragmas, |
Stephen Hines | fc4f78b | 2014-06-10 18:07:10 -0700 | [diff] [blame] | 113 | unsigned int TargetAPI, |
| 114 | bool Verbose); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 115 | |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 116 | inline clang::Preprocessor &getPreprocessor() const { return mPP; } |
| 117 | inline clang::ASTContext &getASTContext() const { return mCtx; } |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 118 | inline clang::MangleContext &getMangleContext() const { |
| 119 | return *mMangleCtx; |
Stephen Hines | f2174cf | 2011-02-09 23:21:37 -0800 | [diff] [blame] | 120 | } |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 121 | inline const llvm::DataLayout *getDataLayout() const { return mDataLayout; } |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 122 | inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; } |
| 123 | inline const clang::SourceManager *getSourceManager() const { |
Stephen Hines | 9e5b503 | 2010-11-03 13:19:14 -0700 | [diff] [blame] | 124 | return &mPP.getSourceManager(); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 125 | } |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 126 | inline clang::DiagnosticsEngine *getDiagnostics() const { |
Stephen Hines | 2ef9bc0 | 2010-12-13 18:33:23 -0800 | [diff] [blame] | 127 | return &mPP.getDiagnostics(); |
| 128 | } |
Chris Wailes | c9454af | 2014-06-13 17:25:40 -0700 | [diff] [blame] | 129 | inline unsigned int getTargetAPI() const { |
Stephen Hines | 4a4bf92 | 2011-08-18 17:20:33 -0700 | [diff] [blame] | 130 | return mTargetAPI; |
| 131 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 132 | |
Stephen Hines | fc4f78b | 2014-06-10 18:07:10 -0700 | [diff] [blame] | 133 | inline bool getVerbose() const { |
| 134 | return mVerbose; |
| 135 | } |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame] | 136 | inline bool is64Bit() const { |
| 137 | return mIs64Bit; |
| 138 | } |
Stephen Hines | fc4f78b | 2014-06-10 18:07:10 -0700 | [diff] [blame] | 139 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 140 | inline void setLicenseNote(const std::string &S) { |
| 141 | mLicenseNote = new std::string(S); |
| 142 | } |
| 143 | inline const std::string *getLicenseNote() const { return mLicenseNote; } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 144 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 145 | inline void addExportType(const std::string &S) { |
| 146 | mNeedExportTypes.insert(S); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 147 | } |
Victor Hsieh | d8a0d18 | 2010-07-07 19:22:33 +0800 | [diff] [blame] | 148 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 149 | inline void setReflectJavaPackageName(const std::string &S) { |
| 150 | mReflectJavaPackageName = S; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 151 | } |
Tim Murray | dde9853 | 2013-07-23 15:55:19 -0700 | [diff] [blame] | 152 | inline const std::string &getReflectJavaPackageName() const { |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 153 | return mReflectJavaPackageName; |
| 154 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 155 | |
Stephen Hines | 0a813a3 | 2012-08-03 16:52:40 -0700 | [diff] [blame] | 156 | inline void setRSPackageName(const std::string &S) { |
| 157 | mRSPackageName = S; |
Stephen Hines | 0a813a3 | 2012-08-03 16:52:40 -0700 | [diff] [blame] | 158 | } |
Jean-Luc Brouillet | 12fc283 | 2014-06-04 21:32:31 +0000 | [diff] [blame] | 159 | |
| 160 | inline const std::string &getRSPackageName() const { return mRSPackageName; } |
Stephen Hines | 0a813a3 | 2012-08-03 16:52:40 -0700 | [diff] [blame] | 161 | |
Stephen Hines | c808a99 | 2010-11-29 17:20:42 -0800 | [diff] [blame] | 162 | bool processExport(); |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 163 | inline void newExportable(RSExportable *E) { |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 164 | if (E != nullptr) |
Zonr Chang | a41ce1d | 2010-10-06 02:23:12 +0800 | [diff] [blame] | 165 | mExportables.push_back(E); |
| 166 | } |
Zonr Chang | 641558f | 2010-10-12 21:07:06 +0800 | [diff] [blame] | 167 | typedef ExportableList::iterator exportable_iterator; |
| 168 | exportable_iterator exportable_begin() { |
| 169 | return mExportables.begin(); |
| 170 | } |
| 171 | exportable_iterator exportable_end() { |
| 172 | return mExportables.end(); |
| 173 | } |
Shih-wei Liao | 537446c | 2010-06-11 16:05:55 -0700 | [diff] [blame] | 174 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 175 | typedef ExportVarList::const_iterator const_export_var_iterator; |
| 176 | const_export_var_iterator export_vars_begin() const { |
| 177 | return mExportVars.begin(); |
| 178 | } |
| 179 | const_export_var_iterator export_vars_end() const { |
| 180 | return mExportVars.end(); |
| 181 | } |
| 182 | inline bool hasExportVar() const { |
| 183 | return !mExportVars.empty(); |
| 184 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 185 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 186 | typedef ExportFuncList::const_iterator const_export_func_iterator; |
| 187 | const_export_func_iterator export_funcs_begin() const { |
| 188 | return mExportFuncs.begin(); |
| 189 | } |
| 190 | const_export_func_iterator export_funcs_end() const { |
| 191 | return mExportFuncs.end(); |
| 192 | } |
| 193 | inline bool hasExportFunc() const { return !mExportFuncs.empty(); } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 194 | |
Stephen Hines | 593a894 | 2011-05-10 15:29:50 -0700 | [diff] [blame] | 195 | typedef ExportForEachList::const_iterator const_export_foreach_iterator; |
| 196 | const_export_foreach_iterator export_foreach_begin() const { |
| 197 | return mExportForEach.begin(); |
| 198 | } |
| 199 | const_export_foreach_iterator export_foreach_end() const { |
| 200 | return mExportForEach.end(); |
| 201 | } |
| 202 | inline bool hasExportForEach() const { return !mExportForEach.empty(); } |
| 203 | |
Matt Wala | c0c5dd8 | 2015-07-23 17:29:37 -0700 | [diff] [blame] | 204 | typedef ExportReduceList::const_iterator const_export_reduce_iterator; |
| 205 | const_export_reduce_iterator export_reduce_begin() const { |
| 206 | return mExportReduce.begin(); |
| 207 | } |
| 208 | const_export_reduce_iterator export_reduce_end() const { |
| 209 | return mExportReduce.end(); |
| 210 | } |
| 211 | inline bool hasExportReduce() const { return !mExportReduce.empty(); } |
| 212 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 213 | typedef ExportTypeMap::iterator export_type_iterator; |
| 214 | typedef ExportTypeMap::const_iterator const_export_type_iterator; |
| 215 | export_type_iterator export_types_begin() { return mExportTypes.begin(); } |
| 216 | export_type_iterator export_types_end() { return mExportTypes.end(); } |
| 217 | const_export_type_iterator export_types_begin() const { |
| 218 | return mExportTypes.begin(); |
| 219 | } |
| 220 | const_export_type_iterator export_types_end() const { |
| 221 | return mExportTypes.end(); |
| 222 | } |
| 223 | inline bool hasExportType() const { return !mExportTypes.empty(); } |
| 224 | export_type_iterator findExportType(const llvm::StringRef &TypeName) { |
| 225 | return mExportTypes.find(TypeName); |
| 226 | } |
| 227 | const_export_type_iterator findExportType(const llvm::StringRef &TypeName) |
| 228 | const { |
| 229 | return mExportTypes.find(TypeName); |
| 230 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 231 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 232 | // Insert the specified Typename/Type pair into the map. If the key already |
| 233 | // exists in the map, return false and ignore the request, otherwise insert it |
| 234 | // and return true. |
| 235 | bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 236 | |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 237 | int getVersion() const { return version; } |
| 238 | void setVersion(int v) { |
| 239 | version = v; |
Stephen Hines | 96ab06c | 2011-01-05 15:29:26 -0800 | [diff] [blame] | 240 | } |
| 241 | |
Jean-Luc Brouillet | 12fc283 | 2014-06-04 21:32:31 +0000 | [diff] [blame] | 242 | bool isCompatLib() const { |
| 243 | // If we are not targeting the actual Android Renderscript classes, |
| 244 | // we should reflect code that works with the compatibility library. |
| 245 | return (mRSPackageName.compare("android.renderscript") != 0); |
| 246 | } |
Stephen Hines | 82754d8 | 2013-01-18 19:46:06 -0800 | [diff] [blame] | 247 | |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 248 | void addPragma(const std::string &T, const std::string &V) { |
| 249 | mPragmas->push_back(make_pair(T, V)); |
| 250 | } |
Jean-Luc Brouillet | 109e90a | 2014-07-07 17:36:07 -0700 | [diff] [blame] | 251 | void setPrecision(const std::string &P) { mPrecision = P; } |
| 252 | std::string getPrecision() { return mPrecision; } |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 253 | |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 254 | // Report an error or a warning to the user. |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 255 | template <unsigned N> |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 256 | clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level, |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 257 | const char (&Message)[N]) { |
| 258 | clang::DiagnosticsEngine *DiagEngine = getDiagnostics(); |
| 259 | return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message)); |
| 260 | } |
| 261 | |
| 262 | template <unsigned N> |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 263 | clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level, |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 264 | const clang::SourceLocation Loc, |
| 265 | const char (&Message)[N]) { |
| 266 | clang::DiagnosticsEngine *DiagEngine = getDiagnostics(); |
| 267 | const clang::SourceManager *SM = getSourceManager(); |
| 268 | return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM), |
| 269 | DiagEngine->getCustomDiagID(Level, Message)); |
| 270 | } |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 271 | |
| 272 | // Utility functions to report errors and warnings to make the calling code |
| 273 | // easier to read. |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 274 | template <unsigned N> |
| 275 | clang::DiagnosticBuilder ReportError(const char (&Message)[N]) { |
| 276 | return Report<N>(clang::DiagnosticsEngine::Error, Message); |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 277 | } |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 278 | |
| 279 | template <unsigned N> |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 280 | clang::DiagnosticBuilder ReportError(const clang::SourceLocation Loc, |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 281 | const char (&Message)[N]) { |
| 282 | return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message); |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 283 | } |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 284 | |
| 285 | template <unsigned N> |
| 286 | clang::DiagnosticBuilder ReportWarning(const char (&Message)[N]) { |
| 287 | return Report<N>(clang::DiagnosticsEngine::Warning, Message); |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 288 | } |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 289 | |
| 290 | template <unsigned N> |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 291 | clang::DiagnosticBuilder ReportWarning(const clang::SourceLocation Loc, |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 292 | const char (&Message)[N]) { |
| 293 | return Report<N>(clang::DiagnosticsEngine::Warning, Loc, Message); |
Jean-Luc Brouillet | d3f7527 | 2014-01-16 18:20:28 -0800 | [diff] [blame] | 294 | } |
| 295 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 296 | ~RSContext(); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 297 | }; |
| 298 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 299 | } // namespace slang |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 300 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 301 | #endif // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_ NOLINT |