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
289ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao#include "llvm/ADT/StringSet.h"
299ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao#include "llvm/ADT/StringMap.h"
30462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
313fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines#include "slang_pragma_recorder.h"
323fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines
33462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaonamespace llvm {
346315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class LLVMContext;
3523c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  class DataLayout;
369ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace llvm
37462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
38462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaonamespace clang {
396315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class VarDecl;
406315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class ASTContext;
416315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class TargetInfo;
426315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class FunctionDecl;
436315f76e3cc6ff2d012d1183a0b030d4ff0dc808zonr  class SourceManager;
449ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace clang
45462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
46462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaonamespace slang {
47a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportable;
48a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportVar;
49a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportFunc;
50593a894650e81be54173106ec266f0311cebebd3Stephen Hines  class RSExportForEach;
51a41ce1d98094da84643995d40d71c529905123fcZonr Chang  class RSExportType;
52462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
53462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liaoclass RSContext {
549ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringSet<> NeedExportVarSet;
559ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringSet<> NeedExportFuncSet;
569ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringSet<> NeedExportTypeSet;
579ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
589ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao public:
59a41ce1d98094da84643995d40d71c529905123fcZonr Chang  typedef std::list<RSExportable*> ExportableList;
609ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef std::list<RSExportVar*> ExportVarList;
619ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef std::list<RSExportFunc*> ExportFuncList;
62593a894650e81be54173106ec266f0311cebebd3Stephen Hines  typedef std::list<RSExportForEach*> ExportForEachList;
639ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef llvm::StringMap<RSExportType*> ExportTypeMap;
649ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
659ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao private:
669e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  clang::Preprocessor &mPP;
679e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  clang::ASTContext &mCtx;
683fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  PragmaList *mPragmas;
69109e90a854ac8d8f4df24ef27db636a641ba9913Jean-Luc Brouillet  // Precision specified via pragma, either rs_fp_full or rs_fp_relaxed. If
70109e90a854ac8d8f4df24ef27db636a641ba9913Jean-Luc Brouillet  // empty, rs_fp_full is assumed.
71109e90a854ac8d8f4df24ef27db636a641ba9913Jean-Luc Brouillet  std::string mPrecision;
72c9454afec1649846512993d0ef65a9f868976bb4Chris Wailes  unsigned int mTargetAPI;
73fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines  bool mVerbose;
749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
7523c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  llvm::DataLayout *mDataLayout;
769ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  llvm::LLVMContext &mLLVMContext;
779ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
78a41ce1d98094da84643995d40d71c529905123fcZonr Chang  ExportableList mExportables;
79a41ce1d98094da84643995d40d71c529905123fcZonr Chang
809ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  NeedExportTypeSet mNeedExportTypes;
819ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string *mLicenseNote;
839ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string mReflectJavaPackageName;
849ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string mReflectJavaPathName;
859ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
860a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  std::string mRSPackageName;
870a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
8896ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int version;
8982754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
902eb9a3f7c48fe54eb4e813d80e3363bc79553a1eStephen Hines  std::unique_ptr<clang::MangleContext> mMangleCtx;
9196ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
929ae18b2bbee0b08afd400542e863dd665ff76059Stephen Hines  bool mIs64Bit;
939ae18b2bbee0b08afd400542e863dd665ff76059Stephen Hines
949ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportVar(const clang::VarDecl *VD);
959ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportFunc(const clang::FunctionDecl *FD);
969ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportType(const llvm::StringRef &Name);
979ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
98c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines  void cleanupForEach();
99c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines
1009ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportVarList mExportVars;
1019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportFuncList mExportFuncs;
102593a894650e81be54173106ec266f0311cebebd3Stephen Hines  ExportForEachList mExportForEach;
1039ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportTypeMap mExportTypes;
1049ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1059ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao public:
1069e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  RSContext(clang::Preprocessor &PP,
1079e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines            clang::ASTContext &Ctx,
1083fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines            const clang::TargetInfo &Target,
1094cc67fce91f43215d61b2695746eab102a3db516Stephen Hines            PragmaList *Pragmas,
110fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines            unsigned int TargetAPI,
111fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines            bool Verbose);
1129ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1139e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::Preprocessor &getPreprocessor() const { return mPP; }
1149e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::ASTContext &getASTContext() const { return mCtx; }
115be27482cdeaf08576bc39b72a15d35d13014a636Logan  inline clang::MangleContext &getMangleContext() const {
116be27482cdeaf08576bc39b72a15d35d13014a636Logan    return *mMangleCtx;
117f2174cfd6a556b51aadf2b8765e50df080e8f18eStephen Hines  }
11823c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  inline const llvm::DataLayout *getDataLayout() const { return mDataLayout; }
1199ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
1209ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const clang::SourceManager *getSourceManager() const {
1219e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines    return &mPP.getSourceManager();
1229ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1239207a2e495c8363606861e4f034504ec5c153dabLogan Chien  inline clang::DiagnosticsEngine *getDiagnostics() const {
1242ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines    return &mPP.getDiagnostics();
1252ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines  }
126c9454afec1649846512993d0ef65a9f868976bb4Chris Wailes  inline unsigned int getTargetAPI() const {
1274a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines    return mTargetAPI;
1284a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  }
1299ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
130fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines  inline bool getVerbose() const {
131fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines    return mVerbose;
132fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines  }
1339ae18b2bbee0b08afd400542e863dd665ff76059Stephen Hines  inline bool is64Bit() const {
1349ae18b2bbee0b08afd400542e863dd665ff76059Stephen Hines    return mIs64Bit;
1359ae18b2bbee0b08afd400542e863dd665ff76059Stephen Hines  }
136fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines
1379ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setLicenseNote(const std::string &S) {
1389ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mLicenseNote = new std::string(S);
1399ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1409ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const std::string *getLicenseNote() const { return mLicenseNote; }
1419ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1429ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void addExportType(const std::string &S) {
1439ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mNeedExportTypes.insert(S);
1449ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1459ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1469ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setReflectJavaPackageName(const std::string &S) {
1479ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mReflectJavaPackageName = S;
1489ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
149dde98533fad4c6534af537ae583aa4db35a1c699Tim Murray  inline const std::string &getReflectJavaPackageName() const {
1504cc67fce91f43215d61b2695746eab102a3db516Stephen Hines    return mReflectJavaPackageName;
1514cc67fce91f43215d61b2695746eab102a3db516Stephen Hines  }
1529ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1530a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  inline void setRSPackageName(const std::string &S) {
1540a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines    mRSPackageName = S;
1550a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  }
15612fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet
15712fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  inline const std::string &getRSPackageName() const { return mRSPackageName; }
1580a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
159c808a99831115928b4648f4c8b86dc682594217aStephen Hines  bool processExport();
160a41ce1d98094da84643995d40d71c529905123fcZonr Chang  inline void newExportable(RSExportable *E) {
1615abbe0e9ca2508260b627ffef2bf01e2554e8357Chris Wailes    if (E != nullptr)
162a41ce1d98094da84643995d40d71c529905123fcZonr Chang      mExportables.push_back(E);
163a41ce1d98094da84643995d40d71c529905123fcZonr Chang  }
164641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  typedef ExportableList::iterator exportable_iterator;
165641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_begin() {
166641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.begin();
167641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
168641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_end() {
169641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.end();
170641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
1719ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1729ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportVarList::const_iterator const_export_var_iterator;
1739ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_begin() const {
1749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.begin();
1759ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1769ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_end() const {
1779ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.end();
1789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1799ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportVar() const {
1809ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return !mExportVars.empty();
1819ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1839ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportFuncList::const_iterator const_export_func_iterator;
1849ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_begin() const {
1859ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.begin();
1869ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1879ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_end() const {
1889ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.end();
1899ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1909ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
1919ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
192593a894650e81be54173106ec266f0311cebebd3Stephen Hines  typedef ExportForEachList::const_iterator const_export_foreach_iterator;
193593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_begin() const {
194593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.begin();
195593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
196593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_end() const {
197593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.end();
198593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
199593a894650e81be54173106ec266f0311cebebd3Stephen Hines  inline bool hasExportForEach() const { return !mExportForEach.empty(); }
200593a894650e81be54173106ec266f0311cebebd3Stephen Hines
2019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::iterator export_type_iterator;
2029ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::const_iterator const_export_type_iterator;
2039ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_begin() { return mExportTypes.begin(); }
2049ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_end() { return mExportTypes.end(); }
2059ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_begin() const {
2069ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.begin();
2079ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2089ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_end() const {
2099ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.end();
2109ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2119ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportType() const { return !mExportTypes.empty(); }
2129ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator findExportType(const llvm::StringRef &TypeName) {
2139ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2149ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2159ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
2169ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao      const {
2179ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2189ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2199ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
2209ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // Insert the specified Typename/Type pair into the map. If the key already
2219ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // exists in the map, return false and ignore the request, otherwise insert it
2229ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // and return true.
2239ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
2249ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
22596ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int getVersion() const { return version; }
22696ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  void setVersion(int v) {
22796ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines    version = v;
22896ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  }
22996ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
23012fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  bool isCompatLib() const {
23112fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    // If we are not targeting the actual Android Renderscript classes,
23212fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    // we should reflect code that works with the compatibility library.
23312fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    return (mRSPackageName.compare("android.renderscript") != 0);
23412fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  }
23582754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
2363fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  void addPragma(const std::string &T, const std::string &V) {
2373fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines    mPragmas->push_back(make_pair(T, V));
2383fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  }
239109e90a854ac8d8f4df24ef27db636a641ba9913Jean-Luc Brouillet  void setPrecision(const std::string &P) { mPrecision = P; }
240109e90a854ac8d8f4df24ef27db636a641ba9913Jean-Luc Brouillet  std::string getPrecision() { return mPrecision; }
2413fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines
242d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Report an error or a warning to the user.
243ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
244d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
245ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
246ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
247ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
248ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
249ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
250ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
251d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
252ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const clang::SourceLocation Loc,
253ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
254ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
255ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  const clang::SourceManager *SM = getSourceManager();
256ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM),
257ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                            DiagEngine->getCustomDiagID(Level, Message));
258ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
259d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
260d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Utility functions to report errors and warnings to make the calling code
261d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // easier to read.
262ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
263ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportError(const char (&Message)[N]) {
264ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Message);
265d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
266ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
267ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
268d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportError(const clang::SourceLocation Loc,
269ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                       const char (&Message)[N]) {
270ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message);
271d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
272ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
273ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
274ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportWarning(const char (&Message)[N]) {
275ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Message);
276d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
277ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
278ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
279d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportWarning(const clang::SourceLocation Loc,
280ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                         const char (&Message)[N]) {
281ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Loc, Message);
282d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
283d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
2849ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ~RSContext();
285462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao};
286462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
2879ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace slang
288462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
289e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#endif  // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_  NOLINT
290