slang_rs_context.h revision fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0
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;
71fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines  bool mVerbose;
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
88be27482cdeaf08576bc39b72a15d35d13014a636Logan  llvm::OwningPtr<clang::MangleContext> mMangleCtx;
8996ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
909ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportVar(const clang::VarDecl *VD);
919ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportFunc(const clang::FunctionDecl *FD);
929ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportType(const llvm::StringRef &Name);
939ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
94c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines  void cleanupForEach();
95c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines
969ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportVarList mExportVars;
979ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportFuncList mExportFuncs;
98593a894650e81be54173106ec266f0311cebebd3Stephen Hines  ExportForEachList mExportForEach;
999ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportTypeMap mExportTypes;
1009ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao public:
1029e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  RSContext(clang::Preprocessor &PP,
1039e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines            clang::ASTContext &Ctx,
1043fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines            const clang::TargetInfo &Target,
1054cc67fce91f43215d61b2695746eab102a3db516Stephen Hines            PragmaList *Pragmas,
106fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines            unsigned int TargetAPI,
107fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines            bool Verbose);
1089ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1099e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::Preprocessor &getPreprocessor() const { return mPP; }
1109e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::ASTContext &getASTContext() const { return mCtx; }
111be27482cdeaf08576bc39b72a15d35d13014a636Logan  inline clang::MangleContext &getMangleContext() const {
112be27482cdeaf08576bc39b72a15d35d13014a636Logan    return *mMangleCtx;
113f2174cfd6a556b51aadf2b8765e50df080e8f18eStephen Hines  }
11423c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  inline const llvm::DataLayout *getDataLayout() const { return mDataLayout; }
1159ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
1169ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const clang::SourceManager *getSourceManager() const {
1179e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines    return &mPP.getSourceManager();
1189ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1199207a2e495c8363606861e4f034504ec5c153dabLogan Chien  inline clang::DiagnosticsEngine *getDiagnostics() const {
1202ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines    return &mPP.getDiagnostics();
1212ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines  }
1224a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  inline unsigned int getTargetAPI() const {
1234a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines    return mTargetAPI;
1244a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  }
1259ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
126fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines  inline bool getVerbose() const {
127fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines    return mVerbose;
128fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines  }
129fc4f78b9c7941132fb048a83f0e4ba528c3b4fd0Stephen Hines
1309ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setLicenseNote(const std::string &S) {
1319ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mLicenseNote = new std::string(S);
1329ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1339ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const std::string *getLicenseNote() const { return mLicenseNote; }
1349ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1359ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void addExportType(const std::string &S) {
1369ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mNeedExportTypes.insert(S);
1379ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1389ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1399ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setReflectJavaPackageName(const std::string &S) {
1409ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mReflectJavaPackageName = S;
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  }
14912fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet
15012fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  inline const std::string &getRSPackageName() const { return mRSPackageName; }
1510a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
152c808a99831115928b4648f4c8b86dc682594217aStephen Hines  bool processExport();
153a41ce1d98094da84643995d40d71c529905123fcZonr Chang  inline void newExportable(RSExportable *E) {
154a41ce1d98094da84643995d40d71c529905123fcZonr Chang    if (E != NULL)
155a41ce1d98094da84643995d40d71c529905123fcZonr Chang      mExportables.push_back(E);
156a41ce1d98094da84643995d40d71c529905123fcZonr Chang  }
157641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  typedef ExportableList::iterator exportable_iterator;
158641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_begin() {
159641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.begin();
160641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
161641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_end() {
162641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.end();
163641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
1649ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1659ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportVarList::const_iterator const_export_var_iterator;
1669ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_begin() const {
1679ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.begin();
1689ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1699ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_end() const {
1709ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.end();
1719ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1729ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportVar() const {
1739ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return !mExportVars.empty();
1749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1759ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1769ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportFuncList::const_iterator const_export_func_iterator;
1779ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_begin() const {
1789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.begin();
1799ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1809ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_end() const {
1819ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.end();
1829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1839ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
1849ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
185593a894650e81be54173106ec266f0311cebebd3Stephen Hines  typedef ExportForEachList::const_iterator const_export_foreach_iterator;
186593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_begin() const {
187593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.begin();
188593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
189593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_end() const {
190593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.end();
191593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
192593a894650e81be54173106ec266f0311cebebd3Stephen Hines  inline bool hasExportForEach() const { return !mExportForEach.empty(); }
193593a894650e81be54173106ec266f0311cebebd3Stephen Hines
1949ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::iterator export_type_iterator;
1959ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::const_iterator const_export_type_iterator;
1969ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_begin() { return mExportTypes.begin(); }
1979ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_end() { return mExportTypes.end(); }
1989ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_begin() const {
1999ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.begin();
2009ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_end() const {
2029ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.end();
2039ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2049ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportType() const { return !mExportTypes.empty(); }
2059ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator findExportType(const llvm::StringRef &TypeName) {
2069ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2079ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2089ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
2099ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao      const {
2109ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2119ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2129ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
2139ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // Insert the specified Typename/Type pair into the map. If the key already
2149ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // exists in the map, return false and ignore the request, otherwise insert it
2159ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // and return true.
2169ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
2179ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
21896ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int getVersion() const { return version; }
21996ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  void setVersion(int v) {
22096ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines    version = v;
22196ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  }
22296ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
22312fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  bool isCompatLib() const {
22412fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    // If we are not targeting the actual Android Renderscript classes,
22512fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    // we should reflect code that works with the compatibility library.
22612fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    return (mRSPackageName.compare("android.renderscript") != 0);
22712fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  }
22882754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
2293fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  void addPragma(const std::string &T, const std::string &V) {
2303fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines    mPragmas->push_back(make_pair(T, V));
2313fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  }
2323fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines
233d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Report an error or a warning to the user.
234ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
235d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
236ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
237ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
238ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
239ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
240ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
241ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
242d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
243ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const clang::SourceLocation Loc,
244ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
245ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
246ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  const clang::SourceManager *SM = getSourceManager();
247ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM),
248ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                            DiagEngine->getCustomDiagID(Level, Message));
249ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
250d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
251d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Utility functions to report errors and warnings to make the calling code
252d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // easier to read.
253ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
254ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportError(const char (&Message)[N]) {
255ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Message);
256d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
257ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
258ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
259d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportError(const clang::SourceLocation Loc,
260ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                       const char (&Message)[N]) {
261ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message);
262d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
263ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
264ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
265ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportWarning(const char (&Message)[N]) {
266ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Message);
267d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
268ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
269ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
270d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportWarning(const clang::SourceLocation Loc,
271ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                         const char (&Message)[N]) {
272ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Loc, Message);
273d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
274d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
2759ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ~RSContext();
276462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao};
277462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
2789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace slang
279462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
280e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#endif  // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_  NOLINT
281