Zonr Chang | c383a50 | 2010-10-12 01:52:08 +0800 | [diff] [blame] | 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 | |
zonr | 6315f76 | 2010-10-05 15:35:14 +0800 | [diff] [blame] | 17 | #include "slang.h" |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 18 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 21 | #include <cstring> |
| 22 | #include <list> |
| 23 | #include <sstream> |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 24 | #include <string> |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 25 | #include <utility> |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 26 | #include <vector> |
| 27 | |
| 28 | #include "clang/AST/ASTConsumer.h" |
| 29 | #include "clang/AST/ASTContext.h" |
| 30 | |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 31 | #include "clang/Basic/DiagnosticIDs.h" |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 32 | #include "clang/Basic/DiagnosticOptions.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 33 | #include "clang/Basic/FileManager.h" |
Shih-wei Liao | df5bcce | 2011-02-28 18:39:23 -0800 | [diff] [blame] | 34 | #include "clang/Basic/FileSystemOptions.h" |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 35 | #include "clang/Basic/SourceLocation.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 36 | #include "clang/Basic/SourceManager.h" |
| 37 | #include "clang/Basic/TargetInfo.h" |
| 38 | #include "clang/Basic/TargetOptions.h" |
| 39 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 40 | #include "clang/Frontend/DependencyOutputOptions.h" |
| 41 | #include "clang/Frontend/FrontendDiagnostic.h" |
Stephen Hines | 0e4ee65 | 2014-06-10 14:32:26 -0700 | [diff] [blame] | 42 | #include "clang/Frontend/FrontendOptions.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 43 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
| 44 | #include "clang/Frontend/Utils.h" |
| 45 | |
| 46 | #include "clang/Lex/Preprocessor.h" |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 47 | #include "clang/Lex/PreprocessorOptions.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 48 | #include "clang/Lex/HeaderSearch.h" |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 49 | #include "clang/Lex/HeaderSearchOptions.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 50 | |
| 51 | #include "clang/Parse/ParseAST.h" |
| 52 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 53 | #include "clang/Sema/SemaDiagnostic.h" |
| 54 | |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 55 | #include "llvm/ADT/IntrusiveRefCntPtr.h" |
| 56 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 57 | #include "llvm/Bitcode/ReaderWriter.h" |
| 58 | |
| 59 | // More force linking |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 60 | #include "llvm/Linker/Linker.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 61 | |
Zonr Chang | 08df36e | 2010-10-07 18:50:42 +0800 | [diff] [blame] | 62 | // Force linking all passes/vmcore stuffs to libslang.so |
Stephen Hines | 0da7f6c | 2013-03-05 15:19:02 -0800 | [diff] [blame] | 63 | #include "llvm/LinkAllIR.h" |
Zonr Chang | 08df36e | 2010-10-07 18:50:42 +0800 | [diff] [blame] | 64 | #include "llvm/LinkAllPasses.h" |
Zonr Chang | 08df36e | 2010-10-07 18:50:42 +0800 | [diff] [blame] | 65 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 66 | #include "llvm/Support/raw_ostream.h" |
zonr | 6315f76 | 2010-10-05 15:35:14 +0800 | [diff] [blame] | 67 | #include "llvm/Support/MemoryBuffer.h" |
| 68 | #include "llvm/Support/ErrorHandling.h" |
| 69 | #include "llvm/Support/ManagedStatic.h" |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 70 | #include "llvm/Support/Path.h" |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 71 | #include "llvm/Support/TargetSelect.h" |
| 72 | #include "llvm/Support/ToolOutputFile.h" |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 73 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 74 | #include "os_sep.h" |
| 75 | #include "rs_cc_options.h" |
Stephen Hines | 6e6578a | 2011-02-07 18:05:48 -0800 | [diff] [blame] | 76 | #include "slang_assert.h" |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 77 | #include "slang_backend.h" |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 78 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 79 | #include "slang_rs_context.h" |
| 80 | #include "slang_rs_export_type.h" |
| 81 | |
| 82 | #include "slang_rs_reflection.h" |
| 83 | #include "slang_rs_reflection_cpp.h" |
| 84 | |
| 85 | |
Zonr Chang | 08df36e | 2010-10-07 18:50:42 +0800 | [diff] [blame] | 86 | namespace { |
Zonr Chang | 08df36e | 2010-10-07 18:50:42 +0800 | [diff] [blame] | 87 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame] | 88 | static const char *kRSTriple32 = "armv7-none-linux-gnueabi"; |
| 89 | static const char *kRSTriple64 = "aarch64-none-linux-gnueabi"; |
| 90 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 91 | } // namespace |
| 92 | |
| 93 | namespace slang { |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 94 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 95 | |
| 96 | #define FS_SUFFIX "fs" |
| 97 | |
| 98 | #define RS_HEADER_SUFFIX "rsh" |
| 99 | |
| 100 | /* RS_HEADER_ENTRY(name) */ |
| 101 | #define ENUM_RS_HEADER() \ |
| 102 | RS_HEADER_ENTRY(rs_allocation_data) \ |
| 103 | RS_HEADER_ENTRY(rs_atomic) \ |
| 104 | RS_HEADER_ENTRY(rs_convert) \ |
| 105 | RS_HEADER_ENTRY(rs_core) \ |
| 106 | RS_HEADER_ENTRY(rs_debug) \ |
| 107 | RS_HEADER_ENTRY(rs_for_each) \ |
| 108 | RS_HEADER_ENTRY(rs_graphics) \ |
| 109 | RS_HEADER_ENTRY(rs_graphics_types) \ |
| 110 | RS_HEADER_ENTRY(rs_io) \ |
| 111 | RS_HEADER_ENTRY(rs_math) \ |
| 112 | RS_HEADER_ENTRY(rs_matrix) \ |
| 113 | RS_HEADER_ENTRY(rs_object_info) \ |
| 114 | RS_HEADER_ENTRY(rs_object_types) \ |
| 115 | RS_HEADER_ENTRY(rs_quaternion) \ |
| 116 | RS_HEADER_ENTRY(rs_time) \ |
| 117 | RS_HEADER_ENTRY(rs_value_types) \ |
| 118 | RS_HEADER_ENTRY(rs_vector_math) \ |
| 119 | |
| 120 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 121 | // The named of metadata node that pragma resides (should be synced with |
| 122 | // bcc.cpp) |
Shih-wei Liao | f52a620 | 2010-09-10 17:40:53 -0700 | [diff] [blame] | 123 | const llvm::StringRef Slang::PragmaMetadataName = "#pragma"; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 124 | |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 125 | static inline llvm::tool_output_file * |
| 126 | OpenOutputFile(const char *OutputFile, |
Stephen Hines | a1f95ee | 2013-08-09 01:26:08 -0700 | [diff] [blame] | 127 | llvm::sys::fs::OpenFlags Flags, |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 128 | std::error_code &EC, |
Stephen Hines | e67239d | 2012-02-24 15:08:36 -0800 | [diff] [blame] | 129 | clang::DiagnosticsEngine *DiagEngine) { |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 130 | slangAssert((OutputFile != nullptr) && |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 131 | (DiagEngine != nullptr) && "Invalid parameter!"); |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 132 | |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 133 | EC = llvm::sys::fs::create_directories( |
| 134 | llvm::sys::path::parent_path(OutputFile)); |
| 135 | if (!EC) { |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 136 | llvm::tool_output_file *F = |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 137 | new llvm::tool_output_file(OutputFile, EC, Flags); |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 138 | if (F != nullptr) |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 139 | return F; |
| 140 | } |
| 141 | |
| 142 | // Report error here. |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 143 | DiagEngine->Report(clang::diag::err_fe_error_opening) |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 144 | << OutputFile << EC.message(); |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 145 | |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 146 | return nullptr; |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 147 | } |
| 148 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame] | 149 | void Slang::createTarget(uint32_t BitWidth) { |
| 150 | std::vector<std::string> features; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 151 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame] | 152 | if (BitWidth == 64) { |
| 153 | mTargetOpts->Triple = kRSTriple64; |
| 154 | } else { |
| 155 | mTargetOpts->Triple = kRSTriple32; |
| 156 | // Treat long as a 64-bit type for our 32-bit RS code. |
| 157 | features.push_back("+long64"); |
| 158 | mTargetOpts->FeaturesAsWritten = features; |
| 159 | } |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 160 | |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 161 | mTarget.reset(clang::TargetInfo::CreateTargetInfo(*mDiagEngine, |
Stephen Hines | 7ac9d0d | 2014-07-15 16:50:03 -0700 | [diff] [blame] | 162 | mTargetOpts)); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 165 | void Slang::createFileManager() { |
Shih-wei Liao | df5bcce | 2011-02-28 18:39:23 -0800 | [diff] [blame] | 166 | mFileSysOpt.reset(new clang::FileSystemOptions()); |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 167 | mFileMgr.reset(new clang::FileManager(*mFileSysOpt)); |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | void Slang::createSourceManager() { |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 171 | mSourceMgr.reset(new clang::SourceManager(*mDiagEngine, *mFileMgr)); |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 172 | } |
| 173 | |
Shih-wei Liao | 68e8e9f | 2010-07-18 18:46:49 -0700 | [diff] [blame] | 174 | void Slang::createPreprocessor() { |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 175 | // Default only search header file in current dir |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 176 | llvm::IntrusiveRefCntPtr<clang::HeaderSearchOptions> HSOpts = |
| 177 | new clang::HeaderSearchOptions(); |
| 178 | clang::HeaderSearch *HeaderInfo = new clang::HeaderSearch(HSOpts, |
Stephen Hines | eeb251e | 2014-02-11 02:08:05 -0800 | [diff] [blame] | 179 | *mSourceMgr, |
Stephen Hines | 0444de0 | 2012-03-02 23:19:06 -0800 | [diff] [blame] | 180 | *mDiagEngine, |
| 181 | LangOpts, |
| 182 | mTarget.get()); |
Shih-wei Liao | 68e8e9f | 2010-07-18 18:46:49 -0700 | [diff] [blame] | 183 | |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 184 | llvm::IntrusiveRefCntPtr<clang::PreprocessorOptions> PPOpts = |
| 185 | new clang::PreprocessorOptions(); |
| 186 | mPP.reset(new clang::Preprocessor(PPOpts, |
| 187 | *mDiagEngine, |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 188 | LangOpts, |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 189 | *mSourceMgr, |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 190 | *HeaderInfo, |
| 191 | *this, |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 192 | nullptr, |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 193 | /* OwnsHeaderSearch = */true)); |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 194 | // Initialize the preprocessor |
Stephen Hines | 75d4718 | 2014-05-28 09:43:18 -0700 | [diff] [blame] | 195 | mPP->Initialize(getTargetInfo()); |
Stephen Hines | 0e4ee65 | 2014-06-10 14:32:26 -0700 | [diff] [blame] | 196 | clang::FrontendOptions FEOpts; |
Stephen Hines | 7ac9d0d | 2014-07-15 16:50:03 -0700 | [diff] [blame] | 197 | clang::InitializePreprocessor(*mPP, *PPOpts, FEOpts); |
Stephen Hines | 0e4ee65 | 2014-06-10 14:32:26 -0700 | [diff] [blame] | 198 | |
Shih-wei Liao | 68e8e9f | 2010-07-18 18:46:49 -0700 | [diff] [blame] | 199 | mPragmas.clear(); |
Stephen Hines | 3fd0a94 | 2011-01-18 12:27:39 -0800 | [diff] [blame] | 200 | mPP->AddPragmaHandler(new PragmaRecorder(&mPragmas)); |
Shih-wei Liao | 68e8e9f | 2010-07-18 18:46:49 -0700 | [diff] [blame] | 201 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 202 | std::vector<clang::DirectoryLookup> SearchList; |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 203 | for (unsigned i = 0, e = mIncludePaths.size(); i != e; i++) { |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 204 | if (const clang::DirectoryEntry *DE = |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 205 | mFileMgr->getDirectory(mIncludePaths[i])) { |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 206 | SearchList.push_back(clang::DirectoryLookup(DE, |
| 207 | clang::SrcMgr::C_System, |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 208 | false)); |
| 209 | } |
Shih-wei Liao | 9089828 | 2010-07-19 18:38:57 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 212 | HeaderInfo->SetSearchPaths(SearchList, |
| 213 | /* angledDirIdx = */1, |
| 214 | /* systemDixIdx = */1, |
| 215 | /* noCurDirSearch = */false); |
Shih-wei Liao | 9089828 | 2010-07-19 18:38:57 -0700 | [diff] [blame] | 216 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 217 | initPreprocessor(); |
Shih-wei Liao | 68e8e9f | 2010-07-18 18:46:49 -0700 | [diff] [blame] | 218 | } |
| 219 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 220 | void Slang::createASTContext() { |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 221 | mASTContext.reset( |
| 222 | new clang::ASTContext(LangOpts, *mSourceMgr, mPP->getIdentifierTable(), |
| 223 | mPP->getSelectorTable(), mPP->getBuiltinInfo())); |
Stephen Hines | 75d4718 | 2014-05-28 09:43:18 -0700 | [diff] [blame] | 224 | mASTContext->InitBuiltinTypes(getTargetInfo()); |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 225 | initASTContext(); |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 226 | } |
| 227 | |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 228 | clang::ASTConsumer * |
David Gross | 2770d0e | 2015-08-03 14:58:59 -0700 | [diff] [blame] | 229 | Slang::createBackend(const RSCCOptions &Opts, const clang::CodeGenOptions &CodeGenOpts, |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 230 | llvm::raw_ostream *OS, OutputType OT) { |
David Gross | 2770d0e | 2015-08-03 14:58:59 -0700 | [diff] [blame] | 231 | return new Backend(mRSContext, &getDiagnostics(), Opts, CodeGenOpts, |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 232 | getTargetOptions(), &mPragmas, OS, OT, getSourceManager(), |
| 233 | mAllowRSPrefix, mIsFilterscript); |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 234 | } |
| 235 | |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 236 | Slang::Slang(uint32_t BitWidth, clang::DiagnosticsEngine *DiagEngine, |
| 237 | DiagnosticBuffer *DiagClient) |
| 238 | : mDiagEngine(DiagEngine), mDiagClient(DiagClient), |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 239 | mTargetOpts(new clang::TargetOptions()), mOT(OT_Default), |
| 240 | mRSContext(nullptr), mAllowRSPrefix(false), mTargetAPI(0), |
| 241 | mVerbose(false), mIsFilterscript(false) { |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 242 | // Please refer to include/clang/Basic/LangOptions.h to setup |
| 243 | // the options. |
| 244 | LangOpts.RTTI = 0; // Turn off the RTTI information support |
| 245 | LangOpts.LineComment = 1; |
| 246 | LangOpts.C99 = 1; |
| 247 | LangOpts.Renderscript = 1; |
| 248 | LangOpts.LaxVectorConversions = 0; // Do not bitcast vectors! |
| 249 | LangOpts.CharIsSigned = 1; // Signed char is our default. |
| 250 | |
| 251 | CodeGenOpts.OptimizationLevel = 3; |
| 252 | |
| 253 | createTarget(BitWidth); |
| 254 | createFileManager(); |
| 255 | createSourceManager(); |
Zonr Chang | 641558f | 2010-10-12 21:07:06 +0800 | [diff] [blame] | 256 | } |
| 257 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 258 | Slang::~Slang() { |
| 259 | delete mRSContext; |
| 260 | for (ReflectedDefinitionListTy::iterator I = ReflectedDefinitions.begin(), |
| 261 | E = ReflectedDefinitions.end(); |
| 262 | I != E; I++) { |
| 263 | delete I->getValue().first; |
| 264 | } |
| 265 | } |
| 266 | |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 267 | clang::ModuleLoadResult Slang::loadModule( |
| 268 | clang::SourceLocation ImportLoc, |
| 269 | clang::ModuleIdPath Path, |
| 270 | clang::Module::NameVisibilityKind Visibility, |
| 271 | bool IsInclusionDirective) { |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 272 | slangAssert(0 && "Not implemented"); |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 273 | return clang::ModuleLoadResult(); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 276 | bool Slang::setInputSource(llvm::StringRef InputFile) { |
| 277 | mInputFileName = InputFile.str(); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 278 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 279 | mSourceMgr->clearIDTables(); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 280 | |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 281 | const clang::FileEntry *File = mFileMgr->getFile(InputFile); |
Stephen Hines | 75d4718 | 2014-05-28 09:43:18 -0700 | [diff] [blame] | 282 | if (File) { |
| 283 | mSourceMgr->setMainFileID(mSourceMgr->createFileID(File, |
| 284 | clang::SourceLocation(), clang::SrcMgr::C_User)); |
| 285 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 286 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 287 | if (mSourceMgr->getMainFileID().isInvalid()) { |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 288 | mDiagEngine->Report(clang::diag::err_fe_error_reading) << InputFile; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 289 | return false; |
| 290 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 291 | |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 292 | return true; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 295 | bool Slang::setOutput(const char *OutputFile) { |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 296 | std::error_code EC; |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 297 | llvm::tool_output_file *OS = nullptr; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 298 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 299 | switch (mOT) { |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 300 | case OT_Dependency: |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 301 | case OT_Assembly: |
| 302 | case OT_LLVMAssembly: { |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 303 | OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 304 | break; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 305 | } |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 306 | case OT_Nothing: { |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 307 | break; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 308 | } |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 309 | case OT_Object: |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 310 | case OT_Bitcode: { |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 311 | OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, EC, mDiagEngine); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 312 | break; |
| 313 | } |
Zonr Chang | 8c6d9b2 | 2010-10-07 18:01:19 +0800 | [diff] [blame] | 314 | default: { |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 315 | llvm_unreachable("Unknown compiler output type"); |
Zonr Chang | 8c6d9b2 | 2010-10-07 18:01:19 +0800 | [diff] [blame] | 316 | } |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 317 | } |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 318 | |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 319 | if (EC) |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 320 | return false; |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 321 | |
| 322 | mOS.reset(OS); |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 323 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 324 | mOutputFileName = OutputFile; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 325 | |
| 326 | return true; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Stephen Hines | 0b7ef1a | 2010-10-07 16:36:59 -0700 | [diff] [blame] | 329 | bool Slang::setDepOutput(const char *OutputFile) { |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 330 | std::error_code EC; |
Zonr Chang | 8c6d9b2 | 2010-10-07 18:01:19 +0800 | [diff] [blame] | 331 | |
Stephen Hines | a1f95ee | 2013-08-09 01:26:08 -0700 | [diff] [blame] | 332 | mDOS.reset( |
Stephen Hines | 3eb819a | 2014-11-24 18:16:52 -0800 | [diff] [blame] | 333 | OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine)); |
| 334 | if (EC || (mDOS.get() == nullptr)) |
Stephen Hines | 0b7ef1a | 2010-10-07 16:36:59 -0700 | [diff] [blame] | 335 | return false; |
Stephen Hines | 0b7ef1a | 2010-10-07 16:36:59 -0700 | [diff] [blame] | 336 | |
| 337 | mDepOutputFileName = OutputFile; |
| 338 | |
| 339 | return true; |
| 340 | } |
| 341 | |
Ying Wang | 21c94c9 | 2015-07-22 16:27:14 -0700 | [diff] [blame] | 342 | int Slang::generateDepFile(bool PhonyTarget) { |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 343 | if (mDiagEngine->hasErrorOccurred()) |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 344 | return 1; |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 345 | if (mDOS.get() == nullptr) |
Stephen Hines | f7de852 | 2010-10-06 11:46:18 -0700 | [diff] [blame] | 346 | return 1; |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 347 | |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 348 | // Initialize options for generating dependency file |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 349 | clang::DependencyOutputOptions DepOpts; |
| 350 | DepOpts.IncludeSystemHeaders = 1; |
Ying Wang | 21c94c9 | 2015-07-22 16:27:14 -0700 | [diff] [blame] | 351 | if (PhonyTarget) |
| 352 | DepOpts.UsePhonyTargets = 1; |
Stephen Hines | 0b7ef1a | 2010-10-07 16:36:59 -0700 | [diff] [blame] | 353 | DepOpts.OutputFile = mDepOutputFileName; |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 354 | DepOpts.Targets = mAdditionalDepTargets; |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 355 | DepOpts.Targets.push_back(mDepTargetBCFileName); |
Stephen Hines | 4cc67fc | 2011-01-31 16:48:57 -0800 | [diff] [blame] | 356 | for (std::vector<std::string>::const_iterator |
| 357 | I = mGeneratedFileNames.begin(), E = mGeneratedFileNames.end(); |
| 358 | I != E; |
| 359 | I++) { |
| 360 | DepOpts.Targets.push_back(*I); |
| 361 | } |
| 362 | mGeneratedFileNames.clear(); |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 363 | |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 364 | // Per-compilation needed initialization |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 365 | createPreprocessor(); |
Tim Murray | ee4016d | 2014-04-10 15:49:08 -0700 | [diff] [blame] | 366 | clang::DependencyFileGenerator::CreateAndAttachToPreprocessor(*mPP.get(), DepOpts); |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 367 | |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 368 | // Inform the diagnostic client we are processing a source file |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 369 | mDiagClient->BeginSourceFile(LangOpts, mPP.get()); |
| 370 | |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 371 | // Go through the source file (no operations necessary) |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 372 | clang::Token Tok; |
| 373 | mPP->EnterMainSourceFile(); |
| 374 | do { |
| 375 | mPP->Lex(Tok); |
| 376 | } while (Tok.isNot(clang::tok::eof)); |
| 377 | |
| 378 | mPP->EndSourceFile(); |
| 379 | |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 380 | // Declare success if no error |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 381 | if (!mDiagEngine->hasErrorOccurred()) |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 382 | mDOS->keep(); |
| 383 | |
| 384 | // Clean up after compilation |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 385 | mPP.reset(); |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 386 | mDOS.reset(); |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 387 | |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 388 | return mDiagEngine->hasErrorOccurred() ? 1 : 0; |
Stephen Hines | cc0efad | 2010-10-04 16:13:02 -0700 | [diff] [blame] | 389 | } |
| 390 | |
David Gross | 2770d0e | 2015-08-03 14:58:59 -0700 | [diff] [blame] | 391 | int Slang::compile(const RSCCOptions &Opts) { |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 392 | if (mDiagEngine->hasErrorOccurred()) |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 393 | return 1; |
Chris Wailes | 5abbe0e | 2014-08-12 15:58:29 -0700 | [diff] [blame] | 394 | if (mOS.get() == nullptr) |
Stephen Hines | f7de852 | 2010-10-06 11:46:18 -0700 | [diff] [blame] | 395 | return 1; |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 396 | |
| 397 | // Here is per-compilation needed initialization |
| 398 | createPreprocessor(); |
| 399 | createASTContext(); |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 400 | |
David Gross | 2770d0e | 2015-08-03 14:58:59 -0700 | [diff] [blame] | 401 | mBackend.reset(createBackend(Opts, CodeGenOpts, &mOS->os(), mOT)); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 402 | |
| 403 | // Inform the diagnostic client we are processing a source file |
| 404 | mDiagClient->BeginSourceFile(LangOpts, mPP.get()); |
| 405 | |
| 406 | // The core of the slang compiler |
| 407 | ParseAST(*mPP, mBackend.get(), *mASTContext); |
| 408 | |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 409 | // Inform the diagnostic client we are done with previous source file |
| 410 | mDiagClient->EndSourceFile(); |
| 411 | |
| 412 | // Declare success if no error |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 413 | if (!mDiagEngine->hasErrorOccurred()) |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 414 | mOS->keep(); |
| 415 | |
Zonr Chang | 3a9ca1f | 2010-10-06 17:52:56 +0800 | [diff] [blame] | 416 | // The compilation ended, clear |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 417 | mBackend.reset(); |
Zonr Chang | e8c263a | 2010-10-12 00:35:29 +0800 | [diff] [blame] | 418 | mOS.reset(); |
Shih-wei Liao | 9ef2f78 | 2010-10-01 12:31:37 -0700 | [diff] [blame] | 419 | |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 420 | return mDiagEngine->hasErrorOccurred() ? 1 : 0; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 421 | } |
| 422 | |
mkopec1 | c460b37 | 2012-01-09 11:21:50 -0500 | [diff] [blame] | 423 | void Slang::setDebugMetadataEmission(bool EmitDebug) { |
Shih-wei Liao | 43730fe | 2012-08-02 23:06:18 -0700 | [diff] [blame] | 424 | if (EmitDebug) |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 425 | CodeGenOpts.setDebugInfo(clang::CodeGenOptions::FullDebugInfo); |
Shih-wei Liao | 43730fe | 2012-08-02 23:06:18 -0700 | [diff] [blame] | 426 | else |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 427 | CodeGenOpts.setDebugInfo(clang::CodeGenOptions::NoDebugInfo); |
mkopec1 | c460b37 | 2012-01-09 11:21:50 -0500 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | void Slang::setOptimizationLevel(llvm::CodeGenOpt::Level OptimizationLevel) { |
| 431 | CodeGenOpts.OptimizationLevel = OptimizationLevel; |
| 432 | } |
| 433 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 434 | bool Slang::isFilterscript(const char *Filename) { |
| 435 | const char *c = strrchr(Filename, '.'); |
| 436 | if (c && !strncmp(FS_SUFFIX, c + 1, strlen(FS_SUFFIX) + 1)) { |
| 437 | return true; |
| 438 | } else { |
| 439 | return false; |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | bool Slang::generateJavaBitcodeAccessor(const std::string &OutputPathBase, |
| 444 | const std::string &PackageName, |
| 445 | const std::string *LicenseNote) { |
| 446 | RSSlangReflectUtils::BitCodeAccessorContext BCAccessorContext; |
| 447 | |
| 448 | BCAccessorContext.rsFileName = getInputFileName().c_str(); |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 449 | BCAccessorContext.bc32FileName = mOutput32FileName.c_str(); |
| 450 | BCAccessorContext.bc64FileName = mOutputFileName.c_str(); |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 451 | BCAccessorContext.reflectPath = OutputPathBase.c_str(); |
| 452 | BCAccessorContext.packageName = PackageName.c_str(); |
| 453 | BCAccessorContext.licenseNote = LicenseNote; |
| 454 | BCAccessorContext.bcStorage = BCST_JAVA_CODE; // Must be BCST_JAVA_CODE |
| 455 | BCAccessorContext.verbose = false; |
| 456 | |
| 457 | return RSSlangReflectUtils::GenerateJavaBitCodeAccessor(BCAccessorContext); |
| 458 | } |
| 459 | |
| 460 | bool Slang::checkODR(const char *CurInputFile) { |
| 461 | for (RSContext::ExportableList::iterator I = mRSContext->exportable_begin(), |
| 462 | E = mRSContext->exportable_end(); |
| 463 | I != E; |
| 464 | I++) { |
| 465 | RSExportable *RSE = *I; |
| 466 | if (RSE->getKind() != RSExportable::EX_TYPE) |
| 467 | continue; |
| 468 | |
| 469 | RSExportType *ET = static_cast<RSExportType *>(RSE); |
| 470 | if (ET->getClass() != RSExportType::ExportClassRecord) |
| 471 | continue; |
| 472 | |
| 473 | RSExportRecordType *ERT = static_cast<RSExportRecordType *>(ET); |
| 474 | |
| 475 | // Artificial record types (create by us not by user in the source) always |
| 476 | // conforms the ODR. |
| 477 | if (ERT->isArtificial()) |
| 478 | continue; |
| 479 | |
| 480 | // Key to lookup ERT in ReflectedDefinitions |
| 481 | llvm::StringRef RDKey(ERT->getName()); |
| 482 | ReflectedDefinitionListTy::const_iterator RD = |
| 483 | ReflectedDefinitions.find(RDKey); |
| 484 | |
| 485 | if (RD != ReflectedDefinitions.end()) { |
| 486 | const RSExportRecordType *Reflected = RD->getValue().first; |
| 487 | // There's a record (struct) with the same name reflected before. Enforce |
| 488 | // ODR checking - the Reflected must hold *exactly* the same "definition" |
| 489 | // as the one defined previously. We say two record types A and B have the |
| 490 | // same definition iff: |
| 491 | // |
| 492 | // struct A { struct B { |
| 493 | // Type(a1) a1, Type(b1) b1, |
| 494 | // Type(a2) a2, Type(b1) b2, |
| 495 | // ... ... |
| 496 | // Type(aN) aN Type(b3) b3, |
| 497 | // }; } |
| 498 | // Cond. #1. They have same number of fields, i.e., N = M; |
| 499 | // Cond. #2. for (i := 1 to N) |
| 500 | // Type(ai) = Type(bi) must hold; |
| 501 | // Cond. #3. for (i := 1 to N) |
| 502 | // Name(ai) = Name(bi) must hold; |
| 503 | // |
| 504 | // where, |
| 505 | // Type(F) = the type of field F and |
| 506 | // Name(F) = the field name. |
| 507 | |
| 508 | bool PassODR = false; |
| 509 | // Cond. #1 and Cond. #2 |
| 510 | if (Reflected->equals(ERT)) { |
| 511 | // Cond #3. |
| 512 | RSExportRecordType::const_field_iterator AI = Reflected->fields_begin(), |
| 513 | BI = ERT->fields_begin(); |
| 514 | |
| 515 | for (unsigned i = 0, e = Reflected->getFields().size(); i != e; i++) { |
| 516 | if ((*AI)->getName() != (*BI)->getName()) |
| 517 | break; |
| 518 | AI++; |
| 519 | BI++; |
| 520 | } |
| 521 | PassODR = (AI == (Reflected->fields_end())); |
| 522 | } |
| 523 | |
| 524 | if (!PassODR) { |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 525 | unsigned DiagID = mDiagEngine->getCustomDiagID( |
| 526 | clang::DiagnosticsEngine::Error, |
| 527 | "type '%0' in different translation unit (%1 v.s. %2) " |
| 528 | "has incompatible type definition"); |
| 529 | getDiagnostics().Report(DiagID) << Reflected->getName() |
| 530 | << getInputFileName() |
| 531 | << RD->getValue().second; |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 532 | return false; |
| 533 | } |
| 534 | } else { |
| 535 | llvm::StringMapEntry<ReflectedDefinitionTy> *ME = |
| 536 | llvm::StringMapEntry<ReflectedDefinitionTy>::Create(RDKey); |
| 537 | ME->setValue(std::make_pair(ERT, CurInputFile)); |
| 538 | |
Matt Wala | 3f45a25 | 2015-06-30 11:24:19 -0700 | [diff] [blame] | 539 | if (!ReflectedDefinitions.insert(ME)) { |
| 540 | slangAssert(false && "Type shouldn't be in map yet!"); |
| 541 | } |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 542 | |
| 543 | // Take the ownership of ERT such that it won't be freed in ~RSContext(). |
| 544 | ERT->keep(); |
| 545 | } |
| 546 | } |
| 547 | return true; |
| 548 | } |
| 549 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 550 | void Slang::initPreprocessor() { |
| 551 | clang::Preprocessor &PP = getPreprocessor(); |
| 552 | |
| 553 | std::stringstream RSH; |
| 554 | RSH << PP.getPredefines(); |
| 555 | RSH << "#define RS_VERSION " << mTargetAPI << "\n"; |
| 556 | RSH << "#include \"rs_core." RS_HEADER_SUFFIX "\"\n"; |
| 557 | PP.setPredefines(RSH.str()); |
| 558 | } |
| 559 | |
| 560 | void Slang::initASTContext() { |
| 561 | mRSContext = new RSContext(getPreprocessor(), |
| 562 | getASTContext(), |
| 563 | getTargetInfo(), |
| 564 | &mPragmas, |
| 565 | mTargetAPI, |
| 566 | mVerbose); |
| 567 | } |
| 568 | |
| 569 | bool Slang::IsRSHeaderFile(const char *File) { |
| 570 | #define RS_HEADER_ENTRY(name) \ |
| 571 | if (::strcmp(File, #name "." RS_HEADER_SUFFIX) == 0) \ |
| 572 | return true; |
| 573 | ENUM_RS_HEADER() |
| 574 | #undef RS_HEADER_ENTRY |
| 575 | return false; |
| 576 | } |
| 577 | |
| 578 | bool Slang::IsLocInRSHeaderFile(const clang::SourceLocation &Loc, |
| 579 | const clang::SourceManager &SourceMgr) { |
| 580 | clang::FullSourceLoc FSL(Loc, SourceMgr); |
| 581 | clang::PresumedLoc PLoc = SourceMgr.getPresumedLoc(FSL); |
| 582 | |
| 583 | const char *Filename = PLoc.getFilename(); |
| 584 | if (!Filename) { |
| 585 | return false; |
| 586 | } else { |
| 587 | return IsRSHeaderFile(llvm::sys::path::filename(Filename).data()); |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | bool Slang::compile( |
| 592 | const std::list<std::pair<const char*, const char*> > &IOFiles64, |
| 593 | const std::list<std::pair<const char*, const char*> > &IOFiles32, |
| 594 | const std::list<std::pair<const char*, const char*> > &DepFiles, |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 595 | const RSCCOptions &Opts, |
| 596 | clang::DiagnosticOptions &DiagOpts) { |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 597 | if (IOFiles32.empty()) |
| 598 | return true; |
| 599 | |
| 600 | if (Opts.mEmitDependency && (DepFiles.size() != IOFiles32.size())) { |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 601 | unsigned DiagID = mDiagEngine->getCustomDiagID( |
| 602 | clang::DiagnosticsEngine::Error, |
| 603 | "invalid parameter for output dependencies files."); |
| 604 | getDiagnostics().Report(DiagID); |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 605 | return false; |
| 606 | } |
| 607 | |
| 608 | if (Opts.mEmit3264 && (IOFiles64.size() != IOFiles32.size())) { |
| 609 | slangAssert(false && "Should have equal number of 32/64-bit files"); |
| 610 | return false; |
| 611 | } |
| 612 | |
| 613 | std::string RealPackageName; |
| 614 | |
| 615 | const char *InputFile, *Output64File, *Output32File, *BCOutputFile, |
| 616 | *DepOutputFile; |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 617 | |
| 618 | setIncludePaths(Opts.mIncludePaths); |
| 619 | setOutputType(Opts.mOutputType); |
| 620 | if (Opts.mEmitDependency) { |
| 621 | setAdditionalDepTargets(Opts.mAdditionalDepTargets); |
| 622 | } |
| 623 | |
| 624 | setDebugMetadataEmission(Opts.mDebugEmission); |
| 625 | |
| 626 | setOptimizationLevel(Opts.mOptimizationLevel); |
| 627 | |
| 628 | mAllowRSPrefix = Opts.mAllowRSPrefix; |
| 629 | |
| 630 | mTargetAPI = Opts.mTargetAPI; |
| 631 | if (mTargetAPI != SLANG_DEVELOPMENT_TARGET_API && |
| 632 | (mTargetAPI < SLANG_MINIMUM_TARGET_API || |
| 633 | mTargetAPI > SLANG_MAXIMUM_TARGET_API)) { |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 634 | unsigned DiagID = mDiagEngine->getCustomDiagID( |
| 635 | clang::DiagnosticsEngine::Error, |
| 636 | "target API level '%0' is out of range ('%1' - '%2')"); |
| 637 | getDiagnostics().Report(DiagID) << mTargetAPI << SLANG_MINIMUM_TARGET_API |
| 638 | << SLANG_MAXIMUM_TARGET_API; |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 639 | return false; |
| 640 | } |
| 641 | |
Stephen Hines | bd0a7dd | 2015-07-01 19:24:00 -0700 | [diff] [blame] | 642 | if (mTargetAPI >= SLANG_M_TARGET_API) { |
Pirama Arumuga Nainar | e4dd17d | 2015-04-07 11:09:14 -0700 | [diff] [blame] | 643 | LangOpts.NativeHalfType = 1; |
| 644 | LangOpts.HalfArgsAndReturns = 1; |
| 645 | } |
| 646 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 647 | mVerbose = Opts.mVerbose; |
| 648 | |
| 649 | // Skip generation of warnings a second time if we are doing more than just |
| 650 | // a single pass over the input file. |
| 651 | bool SuppressAllWarnings = (Opts.mOutputType != Slang::OT_Dependency); |
| 652 | |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 653 | std::list<std::pair<const char*, const char*> >::const_iterator |
| 654 | IOFile64Iter = IOFiles64.begin(), |
| 655 | IOFile32Iter = IOFiles32.begin(), |
| 656 | DepFileIter = DepFiles.begin(); |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 657 | |
| 658 | for (unsigned i = 0, e = IOFiles32.size(); i != e; i++) { |
| 659 | InputFile = IOFile64Iter->first; |
| 660 | Output64File = IOFile64Iter->second; |
| 661 | Output32File = IOFile32Iter->second; |
| 662 | |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 663 | if (!setInputSource(InputFile)) |
| 664 | return false; |
| 665 | |
| 666 | if (!setOutput(Output64File)) |
| 667 | return false; |
| 668 | |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 669 | // For use with 64-bit compilation/reflection. This only sets the filename of |
| 670 | // the 32-bit bitcode file, and doesn't actually verify it already exists. |
| 671 | mOutput32FileName = Output32File; |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 672 | |
| 673 | mIsFilterscript = isFilterscript(InputFile); |
| 674 | |
Stephen McGroarty | 68e562f | 2015-06-05 16:57:24 +0100 | [diff] [blame] | 675 | CodeGenOpts.MainFileName = mInputFileName; |
| 676 | |
David Gross | 2770d0e | 2015-08-03 14:58:59 -0700 | [diff] [blame] | 677 | if (Slang::compile(Opts) > 0) |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 678 | return false; |
| 679 | |
| 680 | if (!Opts.mJavaReflectionPackageName.empty()) { |
| 681 | mRSContext->setReflectJavaPackageName(Opts.mJavaReflectionPackageName); |
| 682 | } |
| 683 | const std::string &RealPackageName = |
| 684 | mRSContext->getReflectJavaPackageName(); |
| 685 | |
| 686 | bool doReflection = true; |
| 687 | if (Opts.mEmit3264 && (Opts.mBitWidth == 32)) { |
| 688 | // Skip reflection on the 32-bit path if we are going to emit it on the |
| 689 | // 64-bit path. |
| 690 | doReflection = false; |
| 691 | } |
| 692 | if (Opts.mOutputType != Slang::OT_Dependency && doReflection) { |
| 693 | |
| 694 | if (Opts.mBitcodeStorage == BCST_CPP_CODE) { |
| 695 | const std::string &outputFileName = (Opts.mBitWidth == 64) ? |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 696 | mOutputFileName : mOutput32FileName; |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 697 | RSReflectionCpp R(mRSContext, Opts.mJavaReflectionPathBase, |
| 698 | getInputFileName(), outputFileName); |
| 699 | if (!R.reflect()) { |
| 700 | return false; |
| 701 | } |
| 702 | } else { |
| 703 | if (!Opts.mRSPackageName.empty()) { |
| 704 | mRSContext->setRSPackageName(Opts.mRSPackageName); |
| 705 | } |
| 706 | |
Jean-Luc Brouillet | ff5abc6 | 2015-05-05 21:16:44 -0700 | [diff] [blame] | 707 | std::vector<std::string> generatedFileNames; |
| 708 | RSReflectionJava R(mRSContext, &generatedFileNames, |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 709 | Opts.mJavaReflectionPathBase, getInputFileName(), |
Jean-Luc Brouillet | 5309b0c | 2015-05-01 16:13:11 -0700 | [diff] [blame] | 710 | mOutputFileName, |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 711 | Opts.mBitcodeStorage == BCST_JAVA_CODE); |
| 712 | if (!R.reflect()) { |
| 713 | // TODO Is this needed or will the error message have been printed |
| 714 | // already? and why not for the C++ case? |
| 715 | fprintf(stderr, "RSContext::reflectToJava : failed to do reflection " |
| 716 | "(%s)\n", |
| 717 | R.getLastError()); |
| 718 | return false; |
| 719 | } |
| 720 | |
| 721 | for (std::vector<std::string>::const_iterator |
Jean-Luc Brouillet | ff5abc6 | 2015-05-05 21:16:44 -0700 | [diff] [blame] | 722 | I = generatedFileNames.begin(), E = generatedFileNames.end(); |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 723 | I != E; |
| 724 | I++) { |
| 725 | std::string ReflectedName = RSSlangReflectUtils::ComputePackagedPath( |
| 726 | Opts.mJavaReflectionPathBase.c_str(), |
| 727 | (RealPackageName + OS_PATH_SEPARATOR_STR + *I).c_str()); |
| 728 | appendGeneratedFileName(ReflectedName + ".java"); |
| 729 | } |
| 730 | |
| 731 | if ((Opts.mOutputType == Slang::OT_Bitcode) && |
| 732 | (Opts.mBitcodeStorage == BCST_JAVA_CODE) && |
| 733 | !generateJavaBitcodeAccessor(Opts.mJavaReflectionPathBase, |
| 734 | RealPackageName.c_str(), |
| 735 | mRSContext->getLicenseNote())) { |
| 736 | return false; |
| 737 | } |
| 738 | } |
| 739 | } |
| 740 | |
| 741 | if (Opts.mEmitDependency) { |
| 742 | BCOutputFile = DepFileIter->first; |
| 743 | DepOutputFile = DepFileIter->second; |
| 744 | |
| 745 | setDepTargetBC(BCOutputFile); |
| 746 | |
| 747 | if (!setDepOutput(DepOutputFile)) |
| 748 | return false; |
| 749 | |
| 750 | if (SuppressAllWarnings) { |
| 751 | getDiagnostics().setSuppressAllDiagnostics(true); |
| 752 | } |
Ying Wang | 21c94c9 | 2015-07-22 16:27:14 -0700 | [diff] [blame] | 753 | if (generateDepFile(Opts.mEmitPhonyDependency) > 0) |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 754 | return false; |
| 755 | if (SuppressAllWarnings) { |
| 756 | getDiagnostics().setSuppressAllDiagnostics(false); |
| 757 | } |
| 758 | |
| 759 | DepFileIter++; |
| 760 | } |
| 761 | |
| 762 | if (!checkODR(InputFile)) |
| 763 | return false; |
| 764 | |
| 765 | IOFile64Iter++; |
| 766 | IOFile32Iter++; |
| 767 | } |
Jean-Luc Brouillet | 8024ed5 | 2015-05-04 23:02:25 -0700 | [diff] [blame] | 768 | return true; |
Shih-wei Liao | 462aefd | 2010-06-04 15:32:04 -0700 | [diff] [blame] | 769 | } |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 770 | |
| 771 | } // namespace slang |