slang_rs_context.h revision ee4016d1247d3fbe50822de279d3da273d8aef4c
1c383a500aa59423264811be3874461bf8adbfea0Zonr Chang/*
20a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines * Copyright 2010-2012, The Android Open Source Project
3c383a500aa59423264811be3874461bf8adbfea0Zonr Chang *
4c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * Licensed under the Apache License, Version 2.0 (the "License");
5c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * you may not use this file except in compliance with the License.
6c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * You may obtain a copy of the License at
7c383a500aa59423264811be3874461bf8adbfea0Zonr Chang *
8c383a500aa59423264811be3874461bf8adbfea0Zonr Chang *     http://www.apache.org/licenses/LICENSE-2.0
9c383a500aa59423264811be3874461bf8adbfea0Zonr Chang *
10c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * Unless required by applicable law or agreed to in writing, software
11c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * distributed under the License is distributed on an "AS IS" BASIS,
12c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * See the License for the specific language governing permissions and
14c383a500aa59423264811be3874461bf8adbfea0Zonr Chang * limitations under the License.
15c383a500aa59423264811be3874461bf8adbfea0Zonr Chang */
16c383a500aa59423264811be3874461bf8adbfea0Zonr Chang
17e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#ifndef _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_  // NOLINT
18e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#define _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_
19462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
20e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#include <cstdio>
21462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao#include <list>
22e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#include <map>
23462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao#include <string>
24e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines
25e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#include "clang/Lex/Preprocessor.h"
26be27482cdeaf08576bc39b72a15d35d13014a636Logan#include "clang/AST/Mangle.h"
27462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
28be27482cdeaf08576bc39b72a15d35d13014a636Logan#include "llvm/ADT/OwningPtr.h"
299ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao#include "llvm/ADT/StringSet.h"
309ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao#include "llvm/ADT/StringMap.h"
31462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
323fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines#include "slang_pragma_recorder.h"
333fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines
34462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaonamespace llvm {
356315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class LLVMContext;
3623c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  class DataLayout;
379ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace llvm
38462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
39462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaonamespace clang {
406315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class VarDecl;
416315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class ASTContext;
426315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class TargetInfo;
436315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class FunctionDecl;
446315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class SourceManager;
459ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace clang
46462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
47462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaonamespace slang {
48a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportable;
49a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportVar;
50a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportFunc;
51593a894650e81be54173106ec266f0311cebebd3Stephen Hines  class RSExportForEach;
52a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportType;
53462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
54462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaoclass RSContext {
559ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringSet<> NeedExportVarSet;
569ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringSet<> NeedExportFuncSet;
579ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringSet<> NeedExportTypeSet;
589ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
599ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao public:
60a41ce1d98094da84643995d40d71c529905123fcZonr Chang  typedef std::list<RSExportable*> ExportableList;
619ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef std::list<RSExportVar*> ExportVarList;
629ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef std::list<RSExportFunc*> ExportFuncList;
63593a894650e81be54173106ec266f0311cebebd3Stephen Hines  typedef std::list<RSExportForEach*> ExportForEachList;
649ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringMap<RSExportType*> ExportTypeMap;
659ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
669ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao private:
679e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  clang::Preprocessor &mPP;
689e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  clang::ASTContext &mCtx;
693fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  PragmaList *mPragmas;
704a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  unsigned int mTargetAPI;
714cc67fce91f43215d61b2695746eab102a3db516Stephen Hines  std::vector<std::string> *mGeneratedFileNames;
729ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
7323c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  llvm::DataLayout *mDataLayout;
749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  llvm::LLVMContext &mLLVMContext;
759ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
76a41ce1d98094da84643995d40d71c529905123fcZonr Chang  ExportableList mExportables;
77a41ce1d98094da84643995d40d71c529905123fcZonr Chang
789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  NeedExportTypeSet mNeedExportTypes;
799ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
809ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string *mLicenseNote;
819ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string mReflectJavaPackageName;
829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string mReflectJavaPathName;
839ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
840a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  std::string mRSPackageName;
850a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
8696ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int version;
8782754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
8882754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines  bool mIsCompatLib;
8982754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
90be27482cdeaf08576bc39b72a15d35d13014a636Logan  llvm::OwningPtr<clang::MangleContext> mMangleCtx;
9196ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
929ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportVar(const clang::VarDecl *VD);
939ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportFunc(const clang::FunctionDecl *FD);
949ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportType(const llvm::StringRef &Name);
959ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
96c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines  void cleanupForEach();
97c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines
989ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportVarList mExportVars;
999ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportFuncList mExportFuncs;
100593a894650e81be54173106ec266f0311cebebd3Stephen Hines  ExportForEachList mExportForEach;
1019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportTypeMap mExportTypes;
1029ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1039ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao public:
1049e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  RSContext(clang::Preprocessor &PP,
1059e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines            clang::ASTContext &Ctx,
1063fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines            const clang::TargetInfo &Target,
1074cc67fce91f43215d61b2695746eab102a3db516Stephen Hines            PragmaList *Pragmas,
1084a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines            unsigned int TargetAPI,
1094cc67fce91f43215d61b2695746eab102a3db516Stephen Hines            std::vector<std::string> *GeneratedFileNames);
1109ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1119e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::Preprocessor &getPreprocessor() const { return mPP; }
1129e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::ASTContext &getASTContext() const { return mCtx; }
113be27482cdeaf08576bc39b72a15d35d13014a636Logan  inline clang::MangleContext &getMangleContext() const {
114be27482cdeaf08576bc39b72a15d35d13014a636Logan    return *mMangleCtx;
115f2174cfd6a556b51aadf2b8765e50df080e8f18eStephen Hines  }
11623c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  inline const llvm::DataLayout *getDataLayout() const { return mDataLayout; }
1179ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
1189ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const clang::SourceManager *getSourceManager() const {
1199e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines    return &mPP.getSourceManager();
1209ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1219207a2e495c8363606861e4f034504ec5c153dabLogan Chien  inline clang::DiagnosticsEngine *getDiagnostics() const {
1222ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines    return &mPP.getDiagnostics();
1232ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines  }
1244a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  inline unsigned int getTargetAPI() const {
1254a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines    return mTargetAPI;
1264a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  }
1279ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1289ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setLicenseNote(const std::string &S) {
1299ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mLicenseNote = new std::string(S);
1309ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1319ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const std::string *getLicenseNote() const { return mLicenseNote; }
1329ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1339ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void addExportType(const std::string &S) {
1349ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mNeedExportTypes.insert(S);
1359ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return;
1369ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1379ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1389ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setReflectJavaPackageName(const std::string &S) {
1399ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mReflectJavaPackageName = S;
1409ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return;
1419ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
142dde98533fad4c6534af537ae583aa4db35a1c699Tim Murray  inline const std::string &getReflectJavaPackageName() const {
1434cc67fce91f43215d61b2695746eab102a3db516Stephen Hines    return mReflectJavaPackageName;
1444cc67fce91f43215d61b2695746eab102a3db516Stephen Hines  }
1459ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1460a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  inline void setRSPackageName(const std::string &S) {
1470a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines    mRSPackageName = S;
1480a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines    return;
1490a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  }
150dde98533fad4c6534af537ae583aa4db35a1c699Tim Murray  inline const std::string &getRSPackageName() const {
1510a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines    return mRSPackageName;
1520a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  }
1530a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
154c808a99831115928b4648f4c8b86dc682594217aStephen Hines  bool processExport();
155a41ce1d98094da84643995d40d71c529905123fcZonr Chang  inline void newExportable(RSExportable *E) {
156a41ce1d98094da84643995d40d71c529905123fcZonr Chang    if (E != NULL)
157a41ce1d98094da84643995d40d71c529905123fcZonr Chang      mExportables.push_back(E);
158a41ce1d98094da84643995d40d71c529905123fcZonr Chang  }
159641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  typedef ExportableList::iterator exportable_iterator;
160641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_begin() {
161641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.begin();
162641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
163641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_end() {
164641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.end();
165641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
1669ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1679ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportVarList::const_iterator const_export_var_iterator;
1689ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_begin() const {
1699ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.begin();
1709ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1719ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_end() const {
1729ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.end();
1739ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportVar() const {
1759ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return !mExportVars.empty();
1769ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1779ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportFuncList::const_iterator const_export_func_iterator;
1799ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_begin() const {
1809ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.begin();
1819ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_end() const {
1839ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.end();
1849ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1859ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
1869ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
187593a894650e81be54173106ec266f0311cebebd3Stephen Hines  typedef ExportForEachList::const_iterator const_export_foreach_iterator;
188593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_begin() const {
189593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.begin();
190593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
191593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_end() const {
192593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.end();
193593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
194593a894650e81be54173106ec266f0311cebebd3Stephen Hines  inline bool hasExportForEach() const { return !mExportForEach.empty(); }
195593a894650e81be54173106ec266f0311cebebd3Stephen Hines
1969ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::iterator export_type_iterator;
1979ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::const_iterator const_export_type_iterator;
1989ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_begin() { return mExportTypes.begin(); }
1999ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_end() { return mExportTypes.end(); }
2009ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_begin() const {
2019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.begin();
2029ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2039ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_end() const {
2049ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.end();
2059ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2069ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportType() const { return !mExportTypes.empty(); }
2079ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator findExportType(const llvm::StringRef &TypeName) {
2089ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2099ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2109ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
2119ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao      const {
2129ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2139ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2149ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
2159ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // Insert the specified Typename/Type pair into the map. If the key already
2169ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // exists in the map, return false and ignore the request, otherwise insert it
2179ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // and return true.
2189ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
2199ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
220b81c6a4cbd9c08e0b20ea4fbc615b416ac1bc9ecShih-wei Liao  bool reflectToJava(const std::string &OutputPathBase,
2210a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines                     const std::string &RSPackageName,
2229ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao                     const std::string &InputFileName,
223925879fa622dda293806ed25b1ee63d2f4a8d65aStephen Hines                     const std::string &OutputBCFileName);
2249ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
22596ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int getVersion() const { return version; }
22696ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  void setVersion(int v) {
22796ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines    version = v;
22896ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines    return;
22996ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  }
23096ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
23182754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines  bool isCompatLib() const { return mIsCompatLib; }
23282754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
2333fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  void addPragma(const std::string &T, const std::string &V) {
2343fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines    mPragmas->push_back(make_pair(T, V));
2353fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  }
2363fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines
237d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Report an error or a warning to the user.
238ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
239d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
240ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
241ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
242ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
243ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
244ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
245ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
246d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
247ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const clang::SourceLocation Loc,
248ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
249ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
250ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  const clang::SourceManager *SM = getSourceManager();
251ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM),
252ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                            DiagEngine->getCustomDiagID(Level, Message));
253ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
254d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
255d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Utility functions to report errors and warnings to make the calling code
256d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // easier to read.
257ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
258ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportError(const char (&Message)[N]) {
259ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Message);
260d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
261ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
262ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
263d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportError(const clang::SourceLocation Loc,
264ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                       const char (&Message)[N]) {
265ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message);
266d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
267ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
268ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
269ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportWarning(const char (&Message)[N]) {
270ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Message);
271d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
272ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
273ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
274d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportWarning(const clang::SourceLocation Loc,
275ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                         const char (&Message)[N]) {
276ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Loc, Message);
277d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
278d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
2799ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ~RSContext();
280462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao};
281462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
2829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace slang
283462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
284e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#endif  // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_  NOLINT
285