Zonr Chang | c383a50 | 2010-10-12 01:52:08 +0800 | [diff] [blame] | 1 | /* |
Stephen Hines | 0a813a3 | 2012-08-03 16:52:40 -0700 | [diff] [blame] | 2 | * Copyright 2010-2012, The Android Open Source Project |
Zonr Chang | c383a50 | 2010-10-12 01:52:08 +0800 | [diff] [blame] | 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 Hines | 8b5c5c6 | 2014-06-06 18:03:18 -0700 | [diff] [blame] | 17 | #include "clang/Basic/DiagnosticOptions.h" |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 18 | #include "clang/Driver/DriverDiagnostic.h" |
Stephen Hines | a1f95ee | 2013-08-09 01:26:08 -0700 | [diff] [blame] | 19 | #include "clang/Driver/Options.h" |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 20 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 21 | #include "clang/Frontend/Utils.h" |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 22 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 23 | #include "llvm/ADT/SmallVector.h" |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 24 | #include "llvm/ADT/IntrusiveRefCntPtr.h" |
| 25 | #include "llvm/ADT/OwningPtr.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 26 | |
Stephen Hines | a1f95ee | 2013-08-09 01:26:08 -0700 | [diff] [blame] | 27 | #include "llvm/Option/OptTable.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 28 | #include "llvm/Support/CommandLine.h" |
| 29 | #include "llvm/Support/ManagedStatic.h" |
| 30 | #include "llvm/Support/MemoryBuffer.h" |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 31 | #include "llvm/Support/Path.h" |
Stephen Hines | ba7c6dc | 2011-09-07 19:57:04 -0700 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 33 | #include "llvm/Support/system_error.h" |
mkopec1 | c460b37 | 2012-01-09 11:21:50 -0500 | [diff] [blame] | 34 | #include "llvm/Target/TargetMachine.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 35 | |
Stephen Hines | 8b5c5c6 | 2014-06-06 18:03:18 -0700 | [diff] [blame] | 36 | #include "rs_cc_options.h" |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 37 | #include "slang.h" |
Stephen Hines | 6e6578a | 2011-02-07 18:05:48 -0800 | [diff] [blame] | 38 | #include "slang_assert.h" |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 39 | #include "slang_diagnostic_buffer.h" |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 40 | #include "slang_rs.h" |
| 41 | #include "slang_rs_reflect_utils.h" |
| 42 | |
Stephen Hines | 8b5c5c6 | 2014-06-06 18:03:18 -0700 | [diff] [blame] | 43 | #include <list> |
| 44 | #include <set> |
| 45 | #include <string> |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 46 | |
| 47 | // SaveStringInSet, ExpandArgsFromBuf and ExpandArgv are all copied from |
| 48 | // $(CLANG_ROOT)/tools/driver/driver.cpp for processing argc/argv passed in |
| 49 | // main(). |
| 50 | static inline const char *SaveStringInSet(std::set<std::string> &SavedStrings, |
| 51 | llvm::StringRef S) { |
| 52 | return SavedStrings.insert(S).first->c_str(); |
| 53 | } |
| 54 | static void ExpandArgsFromBuf(const char *Arg, |
| 55 | llvm::SmallVectorImpl<const char*> &ArgVector, |
| 56 | std::set<std::string> &SavedStrings); |
| 57 | static void ExpandArgv(int argc, const char **argv, |
| 58 | llvm::SmallVectorImpl<const char*> &ArgVector, |
| 59 | std::set<std::string> &SavedStrings); |
| 60 | |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 61 | static const char *DetermineOutputFile(const std::string &OutputDir, |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 62 | const std::string &PathSuffix, |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 63 | const char *InputFile, |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 64 | slang::Slang::OutputType OutputType, |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 65 | std::set<std::string> &SavedStrings) { |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 66 | if (OutputType == slang::Slang::OT_Nothing) |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 67 | return "/dev/null"; |
| 68 | |
| 69 | std::string OutputFile(OutputDir); |
| 70 | |
Stephen Hines | 7f5704e | 2014-06-10 18:06:50 -0700 | [diff] [blame] | 71 | // Append '/' to Opts.mBitcodeOutputDir if not presents |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 72 | if (!OutputFile.empty() && |
Raphael | 8d5a2f6 | 2011-02-08 00:15:05 -0800 | [diff] [blame] | 73 | (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR) |
| 74 | OutputFile.append(1, OS_PATH_SEPARATOR); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 75 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 76 | if (!PathSuffix.empty()) { |
| 77 | OutputFile.append(PathSuffix); |
| 78 | OutputFile.append(1, OS_PATH_SEPARATOR); |
| 79 | } |
| 80 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 81 | if (OutputType == slang::Slang::OT_Dependency) { |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 82 | // The build system wants the .d file name stem to be exactly the same as |
| 83 | // the source .rs file, instead of the .bc file. |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 84 | OutputFile.append(slang::RSSlangReflectUtils::GetFileNameStem(InputFile)); |
| 85 | } else { |
| 86 | OutputFile.append( |
| 87 | slang::RSSlangReflectUtils::BCFileNameFromRSFileName(InputFile)); |
| 88 | } |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 89 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 90 | switch (OutputType) { |
| 91 | case slang::Slang::OT_Dependency: { |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 92 | OutputFile.append(".d"); |
| 93 | break; |
| 94 | } |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 95 | case slang::Slang::OT_Assembly: { |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 96 | OutputFile.append(".S"); |
| 97 | break; |
| 98 | } |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 99 | case slang::Slang::OT_LLVMAssembly: { |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 100 | OutputFile.append(".ll"); |
| 101 | break; |
| 102 | } |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 103 | case slang::Slang::OT_Object: { |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 104 | OutputFile.append(".o"); |
| 105 | break; |
| 106 | } |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 107 | case slang::Slang::OT_Bitcode: { |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 108 | OutputFile.append(".bc"); |
| 109 | break; |
| 110 | } |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 111 | case slang::Slang::OT_Nothing: |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 112 | default: { |
Stephen Hines | 6e6578a | 2011-02-07 18:05:48 -0800 | [diff] [blame] | 113 | slangAssert(false && "Invalid output type!"); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
| 117 | return SaveStringInSet(SavedStrings, OutputFile); |
| 118 | } |
| 119 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 120 | typedef std::list<std::pair<const char*, const char*> > NamePairList; |
| 121 | |
| 122 | /* |
| 123 | * Compile the Inputs. |
| 124 | * |
| 125 | * Returns 0 on success and nonzero on failure. |
| 126 | * |
| 127 | * IOFiles - list of (foo.rs, foo.bc) pairs of input/output files. |
| 128 | * IOFiles32 - list of input/output pairs for 32-bit compilation. |
| 129 | * Inputs - input filenames. |
| 130 | * Opts - options controlling compilation. |
| 131 | * DiagEngine - Clang diagnostic engine (for creating diagnostics). |
| 132 | * DiagClient - Slang diagnostic consumer (collects and displays diagnostics). |
| 133 | * SavedStrings - expanded strings copied from argv source input files. |
| 134 | * |
| 135 | * We populate IOFiles dynamically while working through the list of Inputs. |
| 136 | * On any 64-bit compilation, we pass back in the 32-bit pairs of files as |
| 137 | * IOFiles32. This allows the 64-bit compiler to later bundle up both the |
| 138 | * 32-bit and 64-bit bitcode outputs to be included in the final reflected |
| 139 | * source code that is emitted. |
| 140 | */ |
| 141 | static int compileFiles(NamePairList *IOFiles, NamePairList *IOFiles32, |
| 142 | const llvm::SmallVector<const char*, 16> &Inputs, slang::RSCCOptions &Opts, |
| 143 | clang::DiagnosticsEngine *DiagEngine, slang::DiagnosticBuffer *DiagClient, |
| 144 | std::set<std::string> *SavedStrings) { |
| 145 | NamePairList DepFiles; |
| 146 | std::string PathSuffix = ""; |
| 147 | |
| 148 | // In our mixed 32/64-bit path, we need to suffix our files differently for |
| 149 | // both 32-bit and 64-bit versions. |
| 150 | if (Opts.mEmit3264) { |
| 151 | if (Opts.mBitWidth == 64) { |
| 152 | PathSuffix = "bc64"; |
| 153 | } else { |
| 154 | PathSuffix = "bc32"; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | for (int i = 0, e = Inputs.size(); i != e; i++) { |
| 159 | const char *InputFile = Inputs[i]; |
| 160 | |
| 161 | const char *BCOutputFile = DetermineOutputFile(Opts.mBitcodeOutputDir, |
| 162 | PathSuffix, InputFile, |
| 163 | slang::Slang::OT_Bitcode, |
| 164 | *SavedStrings); |
| 165 | const char *OutputFile = BCOutputFile; |
| 166 | |
| 167 | if (Opts.mEmitDependency) { |
| 168 | // The dependency file is always emitted without a PathSuffix. |
| 169 | // Collisions between 32-bit and 64-bit files don't make a difference, |
| 170 | // because they share the same sources/dependencies. |
| 171 | const char *DepOutputFile = |
| 172 | DetermineOutputFile(Opts.mDependencyOutputDir, "", InputFile, |
| 173 | slang::Slang::OT_Dependency, *SavedStrings); |
| 174 | if (Opts.mOutputType == slang::Slang::OT_Dependency) { |
| 175 | OutputFile = DepOutputFile; |
| 176 | } |
| 177 | |
| 178 | DepFiles.push_back(std::make_pair(BCOutputFile, DepOutputFile)); |
| 179 | } |
| 180 | |
| 181 | IOFiles->push_back(std::make_pair(InputFile, OutputFile)); |
| 182 | } |
| 183 | |
| 184 | llvm::OwningPtr<slang::SlangRS> Compiler(new slang::SlangRS()); |
| 185 | Compiler->init(Opts.mBitWidth, DiagEngine, DiagClient); |
| 186 | int CompileFailed = !Compiler->compile(*IOFiles, *IOFiles32, DepFiles, Opts); |
| 187 | Compiler->reset(); |
| 188 | return CompileFailed; |
| 189 | } |
| 190 | |
Stephen Hines | ba7c6dc | 2011-09-07 19:57:04 -0700 | [diff] [blame] | 191 | #define str(s) #s |
| 192 | #define wrap_str(s) str(s) |
| 193 | static void llvm_rs_cc_VersionPrinter() { |
| 194 | llvm::raw_ostream &OS = llvm::outs(); |
| 195 | OS << "llvm-rs-cc: Renderscript compiler\n" |
| 196 | << " (http://developer.android.com/guide/topics/renderscript)\n" |
| 197 | << " based on LLVM (http://llvm.org):\n"; |
| 198 | OS << " Built " << __DATE__ << " (" << __TIME__ ").\n"; |
| 199 | OS << " Target APIs: " << SLANG_MINIMUM_TARGET_API << " - " |
| 200 | << SLANG_MAXIMUM_TARGET_API; |
| 201 | OS << "\n Build type: " << wrap_str(TARGET_BUILD_VARIANT); |
| 202 | #ifndef __DISABLE_ASSERTS |
| 203 | OS << " with assertions"; |
| 204 | #endif |
| 205 | OS << ".\n"; |
Stephen Hines | ba7c6dc | 2011-09-07 19:57:04 -0700 | [diff] [blame] | 206 | } |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 207 | #undef wrap_str |
| 208 | #undef str |
Stephen Hines | ba7c6dc | 2011-09-07 19:57:04 -0700 | [diff] [blame] | 209 | |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 210 | int main(int argc, const char **argv) { |
| 211 | std::set<std::string> SavedStrings; |
| 212 | llvm::SmallVector<const char*, 256> ArgVector; |
Stephen Hines | 8b5c5c6 | 2014-06-06 18:03:18 -0700 | [diff] [blame] | 213 | slang::RSCCOptions Opts; |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 214 | llvm::SmallVector<const char*, 16> Inputs; |
| 215 | std::string Argv0; |
| 216 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 217 | llvm::llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 218 | |
| 219 | ExpandArgv(argc, argv, ArgVector, SavedStrings); |
| 220 | |
| 221 | // Argv0 |
Logan Chien | 6f4e0a9 | 2011-03-10 01:10:25 +0800 | [diff] [blame] | 222 | Argv0 = llvm::sys::path::stem(ArgVector[0]); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 223 | |
| 224 | // Setup diagnostic engine |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 225 | slang::DiagnosticBuffer *DiagClient = new slang::DiagnosticBuffer(); |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 226 | |
| 227 | llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs> DiagIDs( |
| 228 | new clang::DiagnosticIDs()); |
| 229 | |
Stephen Hines | 23c4358 | 2013-01-09 20:02:04 -0800 | [diff] [blame] | 230 | llvm::IntrusiveRefCntPtr<clang::DiagnosticOptions> DiagOpts( |
| 231 | new clang::DiagnosticOptions()); |
| 232 | clang::DiagnosticsEngine DiagEngine(DiagIDs, &*DiagOpts, DiagClient, true); |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 233 | |
Stephen Hines | e639eb5 | 2010-11-08 19:27:20 -0800 | [diff] [blame] | 234 | slang::Slang::GlobalInitialization(); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 235 | |
Stephen Hines | 8b5c5c6 | 2014-06-06 18:03:18 -0700 | [diff] [blame] | 236 | slang::ParseArguments(ArgVector, Inputs, Opts, DiagEngine); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 237 | |
| 238 | // Exits when there's any error occurred during parsing the arguments |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 239 | if (DiagEngine.hasErrorOccurred()) { |
| 240 | llvm::errs() << DiagClient->str(); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 241 | return 1; |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 242 | } |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 243 | |
| 244 | if (Opts.mShowHelp) { |
Stephen Hines | 8b5c5c6 | 2014-06-06 18:03:18 -0700 | [diff] [blame] | 245 | llvm::OwningPtr<llvm::opt::OptTable> OptTbl(slang::createRSCCOptTable()); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 246 | OptTbl->PrintHelp(llvm::outs(), Argv0.c_str(), |
Stephen Hines | b7d1269 | 2011-09-02 18:16:19 -0700 | [diff] [blame] | 247 | "Renderscript source compiler"); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 248 | return 0; |
| 249 | } |
| 250 | |
| 251 | if (Opts.mShowVersion) { |
Stephen Hines | ba7c6dc | 2011-09-07 19:57:04 -0700 | [diff] [blame] | 252 | llvm_rs_cc_VersionPrinter(); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | // No input file |
| 257 | if (Inputs.empty()) { |
Logan Chien | 9207a2e | 2011-10-21 15:39:28 +0800 | [diff] [blame] | 258 | DiagEngine.Report(clang::diag::err_drv_no_input_files); |
Stephen Hines | 8f4d972 | 2011-12-05 14:14:42 -0800 | [diff] [blame] | 259 | llvm::errs() << DiagClient->str(); |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 260 | return 1; |
| 261 | } |
| 262 | |
Zonr Chang | cf6af6a | 2010-10-12 12:38:51 +0800 | [diff] [blame] | 263 | // Prepare input data for RS compiler. |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 264 | NamePairList IOFiles64; |
| 265 | NamePairList IOFiles32; |
Zonr Chang | cf6af6a | 2010-10-12 12:38:51 +0800 | [diff] [blame] | 266 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 267 | int CompileFailed = compileFiles(&IOFiles32, &IOFiles32, Inputs, Opts, |
| 268 | &DiagEngine, DiagClient, &SavedStrings); |
Zonr Chang | 641558f | 2010-10-12 21:07:06 +0800 | [diff] [blame] | 269 | |
Stephen Hines | 9ae18b2 | 2014-06-10 23:53:00 -0700 | [diff] [blame^] | 270 | // Handle the 64-bit case too! |
| 271 | if (Opts.mEmit3264 && !CompileFailed) { |
| 272 | Opts.mBitWidth = 64; |
| 273 | CompileFailed = compileFiles(&IOFiles64, &IOFiles32, Inputs, Opts, |
| 274 | &DiagEngine, DiagClient, &SavedStrings); |
Zonr Chang | cf6af6a | 2010-10-12 12:38:51 +0800 | [diff] [blame] | 275 | } |
| 276 | |
Stephen Hines | d7f0ea2 | 2011-02-22 17:45:19 -0800 | [diff] [blame] | 277 | return CompileFailed; |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | /////////////////////////////////////////////////////////////////////////////// |
| 281 | |
| 282 | // ExpandArgsFromBuf - |
| 283 | static void ExpandArgsFromBuf(const char *Arg, |
| 284 | llvm::SmallVectorImpl<const char*> &ArgVector, |
| 285 | std::set<std::string> &SavedStrings) { |
| 286 | const char *FName = Arg + 1; |
Stephen Hines | 75d4718 | 2014-05-28 09:43:18 -0700 | [diff] [blame] | 287 | std::unique_ptr<llvm::MemoryBuffer> MemBuf; |
Logan | be27482 | 2011-02-16 22:02:54 +0800 | [diff] [blame] | 288 | if (llvm::MemoryBuffer::getFile(FName, MemBuf)) { |
| 289 | // Unable to open the file |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 290 | ArgVector.push_back(SaveStringInSet(SavedStrings, Arg)); |
| 291 | return; |
| 292 | } |
| 293 | |
| 294 | const char *Buf = MemBuf->getBufferStart(); |
| 295 | char InQuote = ' '; |
| 296 | std::string CurArg; |
| 297 | |
| 298 | for (const char *P = Buf; ; ++P) { |
| 299 | if (*P == '\0' || (isspace(*P) && InQuote == ' ')) { |
| 300 | if (!CurArg.empty()) { |
| 301 | if (CurArg[0] != '@') { |
| 302 | ArgVector.push_back(SaveStringInSet(SavedStrings, CurArg)); |
| 303 | } else { |
| 304 | ExpandArgsFromBuf(CurArg.c_str(), ArgVector, SavedStrings); |
| 305 | } |
| 306 | |
| 307 | CurArg = ""; |
| 308 | } |
| 309 | if (*P == '\0') |
| 310 | break; |
| 311 | else |
| 312 | continue; |
| 313 | } |
| 314 | |
| 315 | if (isspace(*P)) { |
| 316 | if (InQuote != ' ') |
| 317 | CurArg.push_back(*P); |
| 318 | continue; |
| 319 | } |
| 320 | |
| 321 | if (*P == '"' || *P == '\'') { |
| 322 | if (InQuote == *P) |
| 323 | InQuote = ' '; |
| 324 | else if (InQuote == ' ') |
| 325 | InQuote = *P; |
| 326 | else |
| 327 | CurArg.push_back(*P); |
| 328 | continue; |
| 329 | } |
| 330 | |
| 331 | if (*P == '\\') { |
| 332 | ++P; |
| 333 | if (*P != '\0') |
| 334 | CurArg.push_back(*P); |
| 335 | continue; |
| 336 | } |
| 337 | CurArg.push_back(*P); |
| 338 | } |
Shih-wei Liao | b81c6a4 | 2010-10-10 14:15:00 -0700 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | // ExpandArgsFromBuf - |
| 342 | static void ExpandArgv(int argc, const char **argv, |
| 343 | llvm::SmallVectorImpl<const char*> &ArgVector, |
| 344 | std::set<std::string> &SavedStrings) { |
| 345 | for (int i = 0; i < argc; ++i) { |
| 346 | const char *Arg = argv[i]; |
| 347 | if (Arg[0] != '@') { |
| 348 | ArgVector.push_back(SaveStringInSet(SavedStrings, std::string(Arg))); |
| 349 | continue; |
| 350 | } |
| 351 | |
| 352 | ExpandArgsFromBuf(Arg, ArgVector, SavedStrings); |
| 353 | } |
| 354 | } |