blob: c7e4c2d2e60e2b060b233f0ae026dc9c2a6faca7 [file] [log] [blame]
Zonr Changc383a502010-10-12 01:52:08 +08001/*
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
Stephen Hinese639eb52010-11-08 19:27:20 -080017#ifndef _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_H_ // NOLINT
18#define _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_H_
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080019
20#include "slang.h"
21
Zonr Changcf6af6a2010-10-12 12:38:51 +080022#include <list>
Zonr Changcf6af6a2010-10-12 12:38:51 +080023#include <string>
Stephen Hinese639eb52010-11-08 19:27:20 -080024#include <utility>
25#include <vector>
Zonr Changcf6af6a2010-10-12 12:38:51 +080026
Zonr Chang641558f2010-10-12 21:07:06 +080027#include "llvm/ADT/StringMap.h"
28
Zonr Changcf6af6a2010-10-12 12:38:51 +080029#include "slang_rs_reflect_utils.h"
Stephen Hines4cc499d2011-08-24 19:06:17 -070030#include "slang_version.h"
Stephen Hines2e35b132011-07-22 02:50:19 -070031
Stephen Hinesfcda2352010-10-19 16:49:32 -070032namespace clang {
33 class FunctionDecl;
34}
35
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080036namespace slang {
37 class RSContext;
Zonr Chang641558f2010-10-12 21:07:06 +080038 class RSExportRecordType;
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080039
40class SlangRS : public Slang {
41 private:
Stephen Hinesb7d12692011-09-02 18:16:19 -070042 // Context for Renderscript
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080043 RSContext *mRSContext;
44
45 bool mAllowRSPrefix;
46
Stephen Hines2e35b132011-07-22 02:50:19 -070047 unsigned int mTargetAPI;
48
Zonr Chang641558f2010-10-12 21:07:06 +080049 // Custom diagnostic identifiers
50 unsigned mDiagErrorInvalidOutputDepParameter;
51 unsigned mDiagErrorODR;
Stephen Hines2e35b132011-07-22 02:50:19 -070052 unsigned mDiagErrorTargetAPIRange;
Zonr Chang641558f2010-10-12 21:07:06 +080053
Stephen Hines4cc67fc2011-01-31 16:48:57 -080054 // Collect generated filenames (without the .java) for dependency generation
55 std::vector<std::string> mGeneratedFileNames;
56
Zonr Chang641558f2010-10-12 21:07:06 +080057 // FIXME: Should be std::list<RSExportable *> here. But currently we only
58 // check ODR on record type.
59 //
60 // ReflectedDefinitions maps record type name to a pair:
61 // <its RSExportRecordType instance,
62 // the first file contains this record type definition>
63 typedef std::pair<RSExportRecordType*, const char*> ReflectedDefinitionTy;
64 typedef llvm::StringMap<ReflectedDefinitionTy> ReflectedDefinitionListTy;
65 ReflectedDefinitionListTy ReflectedDefinitions;
66
Zonr Changcf6af6a2010-10-12 12:38:51 +080067 // The package name that's really applied will be filled in RealPackageName.
68 bool reflectToJava(const std::string &OutputPathBase,
69 const std::string &OutputPackageName,
70 std::string *RealPackageName);
71
72 bool generateBitcodeAccessor(const std::string &OutputPathBase,
73 const std::string &PackageName);
74
Zonr Change86245a2010-10-12 21:42:13 +080075 // CurInputFile is the pointer to a char array holding the input filename
76 // and is valid before compile() ends.
77 bool checkODR(const char *CurInputFile);
Zonr Chang641558f2010-10-12 21:07:06 +080078
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080079 protected:
80 virtual void initDiagnostic();
81 virtual void initPreprocessor();
82 virtual void initASTContext();
83
84 virtual clang::ASTConsumer
85 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
86 llvm::raw_ostream *OS,
87 Slang::OutputType OT);
88
89
90 public:
Zonr Chang592a9542010-10-07 20:03:58 +080091 static bool IsRSHeaderFile(const char *File);
Stephen Hinesfcda2352010-10-19 16:49:32 -070092 // FIXME: Determine whether a function is in RS header (i.e., one of the RS
93 // built-in APIs) should only need its names (we need a "list" of RS
94 // built-in APIs).
95 static bool IsFunctionInRSHeaderFile(const clang::FunctionDecl *FD,
96 const clang::SourceManager &SourceMgr);
Zonr Chang592a9542010-10-07 20:03:58 +080097
Zonr Chang641558f2010-10-12 21:07:06 +080098 SlangRS();
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080099
Zonr Changcf6af6a2010-10-12 12:38:51 +0800100 // Compile bunch of RS files given in the llvm-rs-cc arguments. Return true if
101 // all given input files are successfully compiled without errors.
102 //
103 // @IOFiles - List of pairs of <input file path, output file path>.
104 //
105 // @DepFiles - List of pairs of <output dep. file path, dependent bitcode
106 // target>. If @OutputDep is true, this parameter must be given
107 // with the same number of pairs given in @IOFiles.
108 //
Zonr Chang641558f2010-10-12 21:07:06 +0800109 // @IncludePaths - User-defined include paths.
Zonr Changcf6af6a2010-10-12 12:38:51 +0800110 //
111 // @AdditionalDepTargets - User-defined files added to the dependencies.
112 //
113 // @OutputType - See Slang::OutputType.
114 //
115 // @BitcodeStorage - See BitCodeStorageType in slang_rs_reflect_util.cpp.
116 //
117 // @AllowRSPrefix - true to allow user-defined function prefixed with 'rs'.
118 //
Zonr Chang641558f2010-10-12 21:07:06 +0800119 // @OutputDep - true if output dependecies file for each input file.
Zonr Changcf6af6a2010-10-12 12:38:51 +0800120 //
121 // @JavaReflectionPathBase - The path base for storing reflection files.
122 //
mkopec1c460b372012-01-09 11:21:50 -0500123 // @EmitDebug - true to allow debug metadata emission
124 //
125 // @OptimizationLevel - code generation optimization level: None is recommended for
126 // interactive debugging. The default is Aggresive.
127 //
Zonr Changcf6af6a2010-10-12 12:38:51 +0800128 // @JavaReflectionPackageName - The package name given by user in command
129 // line. This may override the package name
130 // specified in the .rs using #pragma.
131 //
132 bool compile(const std::list<std::pair<const char*, const char*> > &IOFiles,
133 const std::list<std::pair<const char*, const char*> > &DepFiles,
134 const std::vector<std::string> &IncludePaths,
135 const std::vector<std::string> &AdditionalDepTargets,
136 Slang::OutputType OutputType, BitCodeStorageType BitcodeStorage,
137 bool AllowRSPrefix, bool OutputDep,
mkopec1c460b372012-01-09 11:21:50 -0500138 unsigned int TargetAPI, bool EmitDebug,
139 llvm::CodeGenOpt::Level OptimizationLevel,
Zonr Changcf6af6a2010-10-12 12:38:51 +0800140 const std::string &JavaReflectionPathBase,
141 const std::string &JavaReflectionPackageName);
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800142
Zonr Chang641558f2010-10-12 21:07:06 +0800143 virtual void reset();
144
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800145 virtual ~SlangRS();
146};
147}
148
Stephen Hinese639eb52010-11-08 19:27:20 -0800149#endif // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_H_ NOLINT