slang_rs_backend.h revision 4ccf75e55fe460a8daa49247d7e5a797329c71a6
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 _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_BACKEND_H_  // NOLINT
18#define _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_BACKEND_H_
19
20#include "slang_backend.h"
21#include "slang_pragma_recorder.h"
22#include "slang_rs_object_ref_count.h"
23
24namespace llvm {
25  class NamedMDNode;
26}
27
28namespace clang {
29  class ASTConsumer;
30  class Diagnostic;
31  class TargetOptions;
32  class CodeGenerator;
33  class ASTContext;
34  class DeclGroupRef;
35  class FunctionDecl;
36}
37
38namespace slang {
39
40class RSContext;
41
42class RSBackend : public Backend {
43 private:
44  RSContext *mContext;
45
46  clang::SourceManager &mSourceMgr;
47
48  bool mAllowRSPrefix;
49
50  unsigned int mTargetAPI;
51
52  llvm::NamedMDNode *mExportVarMetadata;
53  llvm::NamedMDNode *mExportFuncMetadata;
54  llvm::NamedMDNode *mExportForEachMetadata;
55  llvm::NamedMDNode *mExportTypeMetadata;
56  llvm::NamedMDNode *mExportElementMetadata;
57  llvm::NamedMDNode *mRSObjectSlotsMetadata;
58
59  RSObjectRefCount mRefCount;
60
61  void AnnotateFunction(clang::FunctionDecl *FD);
62
63 protected:
64  virtual void HandleTopLevelDecl(clang::DeclGroupRef D);
65
66  virtual void HandleTranslationUnitPre(clang::ASTContext &C);
67
68  virtual void HandleTranslationUnitPost(llvm::Module *M);
69
70 public:
71  RSBackend(RSContext *Context,
72            clang::Diagnostic *Diags,
73            const clang::CodeGenOptions &CodeGenOpts,
74            const clang::TargetOptions &TargetOpts,
75            PragmaList *Pragmas,
76            llvm::raw_ostream *OS,
77            Slang::OutputType OT,
78            clang::SourceManager &SourceMgr,
79            bool AllowRSPrefix,
80            unsigned int TargetAPI);
81
82  virtual ~RSBackend();
83};
84}
85
86#endif  // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_BACKEND_H_  NOLINT
87