slang_rs_backend.h revision c383a500aa59423264811be3874461bf8adbfea0
1/*
2 * Copyright 2010, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _SLANG_COMPILER_RS_BACKEND_H
18#define _SLANG_COMPILER_RENDER_SCRIPT_BACKEND_H
19
20#include "slang_backend.h"
21#include "slang_pragma_recorder.h"
22
23namespace llvm {
24  class NamedMDNode;
25}
26
27namespace clang {
28  class ASTConsumer;
29  class Diagnostic;
30  class TargetOptions;
31  class PragmaList;
32  class CodeGenerator;
33  class ASTContext;
34  class DeclGroupRef;
35}
36
37namespace slang {
38
39class RSContext;
40
41class RSBackend : public Backend {
42 private:
43  RSContext *mContext;
44
45  clang::SourceManager &mSourceMgr;
46
47  bool mAllowRSPrefix;
48
49  llvm::NamedMDNode *mExportVarMetadata;
50  llvm::NamedMDNode *mExportFuncMetadata;
51  llvm::NamedMDNode *mExportTypeMetadata;
52  llvm::NamedMDNode *mExportElementMetadata;
53
54  virtual void HandleTranslationUnitEx(clang::ASTContext &Ctx);
55
56 public:
57  RSBackend(RSContext *Context,
58            clang::Diagnostic &Diags,
59            const clang::CodeGenOptions &CodeGenOpts,
60            const clang::TargetOptions &TargetOpts,
61            const PragmaList &Pragmas,
62            llvm::raw_ostream *OS,
63            Slang::OutputType OT,
64            clang::SourceManager &SourceMgr,
65            bool AllowRSPrefix);
66
67  virtual void HandleTopLevelDecl(clang::DeclGroupRef D);
68
69  virtual ~RSBackend();
70};
71}
72
73#endif  // _SLANG_COMPILER_BACKEND_H
74