blob: 571f1fadc1451ebc01dda7f3a5479d2b7ad2d0d1 [file] [log] [blame]
Zonr Changc383a502010-10-12 01:52:08 +08001/*
Stephen Hines0a813a32012-08-03 16:52:40 -07002 * Copyright 2010-2012, The Android Open Source Project
Zonr Changc383a502010-10-12 01:52:08 +08003 *
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,
Stephen Hines0a813a32012-08-03 16:52:40 -070070 const std::string &RSPackageName,
Zonr Changcf6af6a2010-10-12 12:38:51 +080071 std::string *RealPackageName);
72
73 bool generateBitcodeAccessor(const std::string &OutputPathBase,
74 const std::string &PackageName);
75
Zonr Change86245a2010-10-12 21:42:13 +080076 // CurInputFile is the pointer to a char array holding the input filename
77 // and is valid before compile() ends.
78 bool checkODR(const char *CurInputFile);
Zonr Chang641558f2010-10-12 21:07:06 +080079
Zonr Chang3a9ca1f2010-10-06 17:52:56 +080080 protected:
81 virtual void initDiagnostic();
82 virtual void initPreprocessor();
83 virtual void initASTContext();
84
85 virtual clang::ASTConsumer
86 *createBackend(const clang::CodeGenOptions& CodeGenOpts,
87 llvm::raw_ostream *OS,
88 Slang::OutputType OT);
89
90
91 public:
Zonr Chang592a9542010-10-07 20:03:58 +080092 static bool IsRSHeaderFile(const char *File);
Stephen Hinesfcda2352010-10-19 16:49:32 -070093 // FIXME: Determine whether a function is in RS header (i.e., one of the RS
94 // built-in APIs) should only need its names (we need a "list" of RS
95 // built-in APIs).
96 static bool IsFunctionInRSHeaderFile(const clang::FunctionDecl *FD,
97 const clang::SourceManager &SourceMgr);
Zonr Chang592a9542010-10-07 20:03:58 +080098
Zonr Chang641558f2010-10-12 21:07:06 +080099 SlangRS();
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800100
Zonr Changcf6af6a2010-10-12 12:38:51 +0800101 // Compile bunch of RS files given in the llvm-rs-cc arguments. Return true if
102 // all given input files are successfully compiled without errors.
103 //
104 // @IOFiles - List of pairs of <input file path, output file path>.
105 //
106 // @DepFiles - List of pairs of <output dep. file path, dependent bitcode
107 // target>. If @OutputDep is true, this parameter must be given
108 // with the same number of pairs given in @IOFiles.
109 //
Zonr Chang641558f2010-10-12 21:07:06 +0800110 // @IncludePaths - User-defined include paths.
Zonr Changcf6af6a2010-10-12 12:38:51 +0800111 //
112 // @AdditionalDepTargets - User-defined files added to the dependencies.
113 //
114 // @OutputType - See Slang::OutputType.
115 //
116 // @BitcodeStorage - See BitCodeStorageType in slang_rs_reflect_util.cpp.
117 //
118 // @AllowRSPrefix - true to allow user-defined function prefixed with 'rs'.
119 //
Zonr Chang641558f2010-10-12 21:07:06 +0800120 // @OutputDep - true if output dependecies file for each input file.
Zonr Changcf6af6a2010-10-12 12:38:51 +0800121 //
122 // @JavaReflectionPathBase - The path base for storing reflection files.
123 //
mkopec1c460b372012-01-09 11:21:50 -0500124 // @EmitDebug - true to allow debug metadata emission
125 //
126 // @OptimizationLevel - code generation optimization level: None is recommended for
127 // interactive debugging. The default is Aggresive.
128 //
Zonr Changcf6af6a2010-10-12 12:38:51 +0800129 // @JavaReflectionPackageName - The package name given by user in command
130 // line. This may override the package name
131 // specified in the .rs using #pragma.
132 //
Stephen Hines0a813a32012-08-03 16:52:40 -0700133 // @RSPackageName - The RS package name supplied by the command line. This
134 // can override the default value of
135 // "android.renderscript" used by the normal APIs.
136 //
Zonr Changcf6af6a2010-10-12 12:38:51 +0800137 bool compile(const std::list<std::pair<const char*, const char*> > &IOFiles,
138 const std::list<std::pair<const char*, const char*> > &DepFiles,
139 const std::vector<std::string> &IncludePaths,
140 const std::vector<std::string> &AdditionalDepTargets,
141 Slang::OutputType OutputType, BitCodeStorageType BitcodeStorage,
142 bool AllowRSPrefix, bool OutputDep,
mkopec1c460b372012-01-09 11:21:50 -0500143 unsigned int TargetAPI, bool EmitDebug,
144 llvm::CodeGenOpt::Level OptimizationLevel,
Zonr Changcf6af6a2010-10-12 12:38:51 +0800145 const std::string &JavaReflectionPathBase,
Stephen Hines0a813a32012-08-03 16:52:40 -0700146 const std::string &JavaReflectionPackageName,
147 const std::string &RSPackageName);
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800148
Zonr Chang641558f2010-10-12 21:07:06 +0800149 virtual void reset();
150
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800151 virtual ~SlangRS();
152};
Stephen Hinese67239d2012-02-24 15:08:36 -0800153} // namespace slang
Zonr Chang3a9ca1f2010-10-06 17:52:56 +0800154
Stephen Hinese639eb52010-11-08 19:27:20 -0800155#endif // _FRAMEWORKS_COMPILE_SLANG_SLANG_RS_H_ NOLINT