slang_rs_context.h revision 12fc283f4108fd6f7f0164c121ff2f6fb5044225
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;
719ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
7223c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  llvm::DataLayout *mDataLayout;
739ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  llvm::LLVMContext &mLLVMContext;
749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
75a41ce1d98094da84643995d40d71c529905123fcZonr Chang  ExportableList mExportables;
76a41ce1d98094da84643995d40d71c529905123fcZonr Chang
779ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  NeedExportTypeSet mNeedExportTypes;
789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
799ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string *mLicenseNote;
809ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string mReflectJavaPackageName;
819ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  std::string mReflectJavaPathName;
829ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
830a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  std::string mRSPackageName;
840a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
8596ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int version;
8682754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
87be27482cdeaf08576bc39b72a15d35d13014a636Logan  llvm::OwningPtr<clang::MangleContext> mMangleCtx;
8896ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
899ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportVar(const clang::VarDecl *VD);
909ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportFunc(const clang::FunctionDecl *FD);
919ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool processExportType(const llvm::StringRef &Name);
929ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
93c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines  void cleanupForEach();
94c17e198ffcd37bfc57e3add1f6eee952ae2a2eabStephen Hines
959ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportVarList mExportVars;
969ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportFuncList mExportFuncs;
97593a894650e81be54173106ec266f0311cebebd3Stephen Hines  ExportForEachList mExportForEach;
989ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ExportTypeMap mExportTypes;
999ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1009ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao public:
1019e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  RSContext(clang::Preprocessor &PP,
1029e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines            clang::ASTContext &Ctx,
1033fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines            const clang::TargetInfo &Target,
1044cc67fce91f43215d61b2695746eab102a3db516Stephen Hines            PragmaList *Pragmas,
10512fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet            unsigned int TargetAPI);
1069ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1079e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::Preprocessor &getPreprocessor() const { return mPP; }
1089e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines  inline clang::ASTContext &getASTContext() const { return mCtx; }
109be27482cdeaf08576bc39b72a15d35d13014a636Logan  inline clang::MangleContext &getMangleContext() const {
110be27482cdeaf08576bc39b72a15d35d13014a636Logan    return *mMangleCtx;
111f2174cfd6a556b51aadf2b8765e50df080e8f18eStephen Hines  }
11223c4358f12bd9d0ba7166eceebd683db95a41b3fStephen Hines  inline const llvm::DataLayout *getDataLayout() const { return mDataLayout; }
1139ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline llvm::LLVMContext &getLLVMContext() const { return mLLVMContext; }
1149ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const clang::SourceManager *getSourceManager() const {
1159e5b503349719144f63ccb7c62ee9c291a7d83b8Stephen Hines    return &mPP.getSourceManager();
1169ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1179207a2e495c8363606861e4f034504ec5c153dabLogan Chien  inline clang::DiagnosticsEngine *getDiagnostics() const {
1182ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines    return &mPP.getDiagnostics();
1192ef9bc0cfbca2152d972c0975005f8c897c2a42cStephen Hines  }
1204a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  inline unsigned int getTargetAPI() const {
1214a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines    return mTargetAPI;
1224a4bf92a8add68629a7e6e59ef81c3c3fe603a75Stephen Hines  }
1239ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1249ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setLicenseNote(const std::string &S) {
1259ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mLicenseNote = new std::string(S);
1269ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1279ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline const std::string *getLicenseNote() const { return mLicenseNote; }
1289ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1299ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void addExportType(const std::string &S) {
1309ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mNeedExportTypes.insert(S);
1319ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1329ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1339ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline void setReflectJavaPackageName(const std::string &S) {
1349ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    mReflectJavaPackageName = S;
1359ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
136dde98533fad4c6534af537ae583aa4db35a1c699Tim Murray  inline const std::string &getReflectJavaPackageName() const {
1374cc67fce91f43215d61b2695746eab102a3db516Stephen Hines    return mReflectJavaPackageName;
1384cc67fce91f43215d61b2695746eab102a3db516Stephen Hines  }
1399ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1400a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  inline void setRSPackageName(const std::string &S) {
1410a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines    mRSPackageName = S;
1420a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines  }
14312fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet
14412fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  inline const std::string &getRSPackageName() const { return mRSPackageName; }
1450a813a3ef2a82f19d7eab9e23ae8493197143803Stephen Hines
146c808a99831115928b4648f4c8b86dc682594217aStephen Hines  bool processExport();
147a41ce1d98094da84643995d40d71c529905123fcZonr Chang  inline void newExportable(RSExportable *E) {
148a41ce1d98094da84643995d40d71c529905123fcZonr Chang    if (E != NULL)
149a41ce1d98094da84643995d40d71c529905123fcZonr Chang      mExportables.push_back(E);
150a41ce1d98094da84643995d40d71c529905123fcZonr Chang  }
151641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  typedef ExportableList::iterator exportable_iterator;
152641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_begin() {
153641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.begin();
154641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
155641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  exportable_iterator exportable_end() {
156641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang    return mExportables.end();
157641558f02fe6ce0ee3ae5076eb366c25e2ad5903Zonr Chang  }
1589ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1599ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportVarList::const_iterator const_export_var_iterator;
1609ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_begin() const {
1619ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.begin();
1629ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1639ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_var_iterator export_vars_end() const {
1649ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportVars.end();
1659ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1669ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportVar() const {
1679ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return !mExportVars.empty();
1689ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1699ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
1709ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportFuncList::const_iterator const_export_func_iterator;
1719ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_begin() const {
1729ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.begin();
1739ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1749ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_func_iterator export_funcs_end() const {
1759ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportFuncs.end();
1769ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1779ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportFunc() const { return !mExportFuncs.empty(); }
1789ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
179593a894650e81be54173106ec266f0311cebebd3Stephen Hines  typedef ExportForEachList::const_iterator const_export_foreach_iterator;
180593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_begin() const {
181593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.begin();
182593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
183593a894650e81be54173106ec266f0311cebebd3Stephen Hines  const_export_foreach_iterator export_foreach_end() const {
184593a894650e81be54173106ec266f0311cebebd3Stephen Hines    return mExportForEach.end();
185593a894650e81be54173106ec266f0311cebebd3Stephen Hines  }
186593a894650e81be54173106ec266f0311cebebd3Stephen Hines  inline bool hasExportForEach() const { return !mExportForEach.empty(); }
187593a894650e81be54173106ec266f0311cebebd3Stephen Hines
1889ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::iterator export_type_iterator;
1899ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  typedef ExportTypeMap::const_iterator const_export_type_iterator;
1909ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_begin() { return mExportTypes.begin(); }
1919ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator export_types_end() { return mExportTypes.end(); }
1929ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_begin() const {
1939ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.begin();
1949ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1959ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator export_types_end() const {
1969ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.end();
1979ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
1989ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  inline bool hasExportType() const { return !mExportTypes.empty(); }
1999ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  export_type_iterator findExportType(const llvm::StringRef &TypeName) {
2009ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2019ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2029ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  const_export_type_iterator findExportType(const llvm::StringRef &TypeName)
2039ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao      const {
2049ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao    return mExportTypes.find(TypeName);
2059ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  }
2069ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
2079ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // Insert the specified Typename/Type pair into the map. If the key already
2089ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // exists in the map, return false and ignore the request, otherwise insert it
2099ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  // and return true.
2109ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
2119ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao
21296ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  int getVersion() const { return version; }
21396ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  void setVersion(int v) {
21496ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines    version = v;
21596ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines  }
21696ab06cbe40b2d73c0eb614f814cd761d8962b6bStephen Hines
21712fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  bool isCompatLib() const {
21812fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    // If we are not targeting the actual Android Renderscript classes,
21912fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    // we should reflect code that works with the compatibility library.
22012fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet    return (mRSPackageName.compare("android.renderscript") != 0);
22112fc283f4108fd6f7f0164c121ff2f6fb5044225Jean-Luc Brouillet  }
22282754d87921c94e70562aa977cc92e28fc38b1d0Stephen Hines
2233fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  void addPragma(const std::string &T, const std::string &V) {
2243fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines    mPragmas->push_back(make_pair(T, V));
2253fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines  }
2263fd0a94a5cf1656569b1aea07043cc63939dcb46Stephen Hines
227d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Report an error or a warning to the user.
228ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
229d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
230ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
231ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
232ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(DiagEngine->getCustomDiagID(Level, Message));
233ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
234ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
235ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
236d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder Report(clang::DiagnosticsEngine::Level Level,
237ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const clang::SourceLocation Loc,
238ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                             const char (&Message)[N]) {
239ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticsEngine *DiagEngine = getDiagnostics();
240ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  const clang::SourceManager *SM = getSourceManager();
241ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  return DiagEngine->Report(clang::FullSourceLoc(Loc, *SM),
242ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                            DiagEngine->getCustomDiagID(Level, Message));
243ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray}
244d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
245d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // Utility functions to report errors and warnings to make the calling code
246d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  // easier to read.
247ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
248ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportError(const char (&Message)[N]) {
249ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Message);
250d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
251ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
252ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
253d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportError(const clang::SourceLocation Loc,
254ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                       const char (&Message)[N]) {
255ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Error, Loc, Message);
256d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
257ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
258ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
259ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  clang::DiagnosticBuilder ReportWarning(const char (&Message)[N]) {
260ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Message);
261d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
262ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray
263ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray  template <unsigned N>
264d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  clang::DiagnosticBuilder ReportWarning(const clang::SourceLocation Loc,
265ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray                                         const char (&Message)[N]) {
266ee4016d1247d3fbe50822de279d3da273d8aef4cTim Murray    return Report<N>(clang::DiagnosticsEngine::Warning, Loc, Message);
267d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet  }
268d3f7527b105d21f1c69d3473eb88a762f2c3ab5aJean-Luc Brouillet
2699ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao  ~RSContext();
270462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao};
271462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
2729ef2f785e0cc490af678dfd685995dec787321ffShih-wei Liao}   // namespace slang
273462aefd62cc646d2ff753c1d003ef3cd7bbea26Shih-wei Liao
274e639eb5caa2c386b4a60659a4929e8a6141a2cbeStephen Hines#endif  // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_CONTEXT_H_  NOLINT
275