Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 1 | //===-- ToolRunner.cpp ----------------------------------------------------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 21c62da | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the interfaces described in the ToolRunner.h file. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 0b1fe84 | 2003-10-19 02:27:40 +0000 | [diff] [blame] | 14 | #define DEBUG_TYPE "toolrunner" |
Chris Lattner | f1b20d8 | 2006-06-06 22:30:59 +0000 | [diff] [blame] | 15 | #include "ToolRunner.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 16 | #include "llvm/Config/config.h" // for HAVE_LINK_R |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 17 | #include "llvm/System/Program.h" |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 18 | #include "llvm/Support/CommandLine.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Debug.h" |
| 20 | #include "llvm/Support/FileUtilities.h" |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 21 | #include <fstream> |
Chris Lattner | 89bf9ea | 2004-02-18 20:38:00 +0000 | [diff] [blame] | 22 | #include <sstream> |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 23 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 24 | |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 25 | namespace { |
| 26 | cl::opt<std::string> |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 27 | RemoteClient("remote-client", |
| 28 | cl::desc("Remote execution client (rsh/ssh)")); |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 29 | |
| 30 | cl::opt<std::string> |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 31 | RemoteHost("remote-host", |
| 32 | cl::desc("Remote execution (rsh/ssh) host")); |
| 33 | |
| 34 | cl::opt<std::string> |
David Goodwin | 80becf1 | 2009-07-10 21:39:28 +0000 | [diff] [blame] | 35 | RemotePort("remote-port", |
| 36 | cl::desc("Remote execution (rsh/ssh) port")); |
| 37 | |
| 38 | cl::opt<std::string> |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 39 | RemoteUser("remote-user", |
| 40 | cl::desc("Remote execution (rsh/ssh) user id")); |
| 41 | |
| 42 | cl::opt<std::string> |
| 43 | RemoteExtra("remote-extra-options", |
| 44 | cl::desc("Remote execution (rsh/ssh) extra options")); |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 45 | } |
| 46 | |
Alkis Evlogimenos | 1d29a6d | 2004-02-19 07:39:26 +0000 | [diff] [blame] | 47 | ToolExecutionError::~ToolExecutionError() throw() { } |
| 48 | |
Viktor Kutuzov | fc2271f | 2009-07-18 18:39:24 +0000 | [diff] [blame] | 49 | /// RunProgramWithTimeout - This function provides an alternate interface |
| 50 | /// to the sys::Program::ExecuteAndWait interface. |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 51 | /// @see sys:Program::ExecuteAndWait |
| 52 | static int RunProgramWithTimeout(const sys::Path &ProgramPath, |
| 53 | const char **Args, |
| 54 | const sys::Path &StdInFile, |
| 55 | const sys::Path &StdOutFile, |
| 56 | const sys::Path &StdErrFile, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 57 | unsigned NumSeconds = 0, |
| 58 | unsigned MemoryLimit = 0) { |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 59 | const sys::Path* redirects[3]; |
| 60 | redirects[0] = &StdInFile; |
| 61 | redirects[1] = &StdOutFile; |
| 62 | redirects[2] = &StdErrFile; |
Viktor Kutuzov | fc2271f | 2009-07-18 18:39:24 +0000 | [diff] [blame] | 63 | |
| 64 | #if 0 // For debug purposes |
| 65 | { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 66 | errs() << "RUN:"; |
Chris Lattner | d422350 | 2006-09-15 23:01:10 +0000 | [diff] [blame] | 67 | for (unsigned i = 0; Args[i]; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 68 | errs() << " " << Args[i]; |
| 69 | errs() << "\n"; |
Chris Lattner | d422350 | 2006-09-15 23:01:10 +0000 | [diff] [blame] | 70 | } |
Viktor Kutuzov | fc2271f | 2009-07-18 18:39:24 +0000 | [diff] [blame] | 71 | #endif |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 72 | |
| 73 | return |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 74 | sys::Program::ExecuteAndWait(ProgramPath, Args, 0, redirects, |
| 75 | NumSeconds, MemoryLimit); |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Viktor Kutuzov | fc2271f | 2009-07-18 18:39:24 +0000 | [diff] [blame] | 78 | /// RunProgramRemotelyWithTimeout - This function runs the given program |
| 79 | /// remotely using the given remote client and the sys::Program::ExecuteAndWait. |
| 80 | /// Returns the remote program exit code or reports a remote client error if it |
| 81 | /// fails. Remote client is required to return 255 if it failed or program exit |
| 82 | /// code otherwise. |
| 83 | /// @see sys:Program::ExecuteAndWait |
| 84 | static int RunProgramRemotelyWithTimeout(const sys::Path &RemoteClientPath, |
| 85 | const char **Args, |
| 86 | const sys::Path &StdInFile, |
| 87 | const sys::Path &StdOutFile, |
| 88 | const sys::Path &StdErrFile, |
| 89 | unsigned NumSeconds = 0, |
| 90 | unsigned MemoryLimit = 0) { |
| 91 | const sys::Path* redirects[3]; |
| 92 | redirects[0] = &StdInFile; |
| 93 | redirects[1] = &StdOutFile; |
| 94 | redirects[2] = &StdErrFile; |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 95 | |
Viktor Kutuzov | fc2271f | 2009-07-18 18:39:24 +0000 | [diff] [blame] | 96 | #if 0 // For debug purposes |
| 97 | { |
| 98 | errs() << "RUN:"; |
| 99 | for (unsigned i = 0; Args[i]; ++i) |
| 100 | errs() << " " << Args[i]; |
| 101 | errs() << "\n"; |
| 102 | } |
| 103 | #endif |
| 104 | |
| 105 | // Run the program remotely with the remote client |
| 106 | int ReturnCode = sys::Program::ExecuteAndWait(RemoteClientPath, Args, |
| 107 | 0, redirects, NumSeconds, MemoryLimit); |
| 108 | |
| 109 | // Has the remote client fail? |
| 110 | if (255 == ReturnCode) { |
| 111 | std::ostringstream OS; |
| 112 | OS << "\nError running remote client:\n "; |
| 113 | for (const char **Arg = Args; *Arg; ++Arg) |
| 114 | OS << " " << *Arg; |
| 115 | OS << "\n"; |
| 116 | |
| 117 | // The error message is in the output file, let's print it out from there. |
| 118 | std::ifstream ErrorFile(StdOutFile.c_str()); |
| 119 | if (ErrorFile) { |
| 120 | std::copy(std::istreambuf_iterator<char>(ErrorFile), |
| 121 | std::istreambuf_iterator<char>(), |
| 122 | std::ostreambuf_iterator<char>(OS)); |
| 123 | ErrorFile.close(); |
| 124 | } |
| 125 | |
| 126 | throw ToolExecutionError(OS.str()); |
| 127 | } |
| 128 | |
| 129 | return ReturnCode; |
| 130 | } |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 131 | |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 132 | static void ProcessFailure(sys::Path ProgPath, const char** Args) { |
Chris Lattner | 89bf9ea | 2004-02-18 20:38:00 +0000 | [diff] [blame] | 133 | std::ostringstream OS; |
Chris Lattner | a3de117 | 2004-02-18 20:58:00 +0000 | [diff] [blame] | 134 | OS << "\nError running tool:\n "; |
Chris Lattner | 89bf9ea | 2004-02-18 20:38:00 +0000 | [diff] [blame] | 135 | for (const char **Arg = Args; *Arg; ++Arg) |
| 136 | OS << " " << *Arg; |
| 137 | OS << "\n"; |
| 138 | |
| 139 | // Rerun the compiler, capturing any error messages to print them. |
Dan Gohman | a971b29 | 2009-02-12 20:53:27 +0000 | [diff] [blame] | 140 | sys::Path ErrorFilename("bugpoint.program_error_messages"); |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 141 | std::string ErrMsg; |
| 142 | if (ErrorFilename.makeUnique(true, &ErrMsg)) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 143 | errs() << "Error making unique filename: " << ErrMsg << "\n"; |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 144 | exit(1); |
| 145 | } |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 146 | RunProgramWithTimeout(ProgPath, Args, sys::Path(""), ErrorFilename, |
Reid Spencer | 8ea5ecb | 2006-08-21 06:04:45 +0000 | [diff] [blame] | 147 | ErrorFilename); // FIXME: check return code ? |
Chris Lattner | 89bf9ea | 2004-02-18 20:38:00 +0000 | [diff] [blame] | 148 | |
| 149 | // Print out the error messages generated by GCC if possible... |
| 150 | std::ifstream ErrorFile(ErrorFilename.c_str()); |
| 151 | if (ErrorFile) { |
| 152 | std::copy(std::istreambuf_iterator<char>(ErrorFile), |
| 153 | std::istreambuf_iterator<char>(), |
| 154 | std::ostreambuf_iterator<char>(OS)); |
| 155 | ErrorFile.close(); |
| 156 | } |
| 157 | |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 158 | ErrorFilename.eraseFromDisk(); |
Chris Lattner | 89bf9ea | 2004-02-18 20:38:00 +0000 | [diff] [blame] | 159 | throw ToolExecutionError(OS.str()); |
| 160 | } |
| 161 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 162 | //===---------------------------------------------------------------------===// |
| 163 | // LLI Implementation of AbstractIntepreter interface |
| 164 | // |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 165 | namespace { |
| 166 | class LLI : public AbstractInterpreter { |
| 167 | std::string LLIPath; // The path to the LLI executable |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 168 | std::vector<std::string> ToolArgs; // Args to pass to LLI |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 169 | public: |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 170 | LLI(const std::string &Path, const std::vector<std::string> *Args) |
| 171 | : LLIPath(Path) { |
| 172 | ToolArgs.clear (); |
Brian Gaeke | 48b008d | 2004-05-04 22:02:41 +0000 | [diff] [blame] | 173 | if (Args) { ToolArgs = *Args; } |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 174 | } |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 175 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 176 | virtual int ExecuteProgram(const std::string &Bitcode, |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 177 | const std::vector<std::string> &Args, |
| 178 | const std::string &InputFile, |
| 179 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 180 | const std::vector<std::string> &GCCArgs, |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 181 | const std::vector<std::string> &SharedLibs = |
Chris Lattner | e96b2ed | 2004-07-24 07:49:11 +0000 | [diff] [blame] | 182 | std::vector<std::string>(), |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 183 | unsigned Timeout = 0, |
| 184 | unsigned MemoryLimit = 0); |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 185 | }; |
| 186 | } |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 187 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 188 | int LLI::ExecuteProgram(const std::string &Bitcode, |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 189 | const std::vector<std::string> &Args, |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 190 | const std::string &InputFile, |
| 191 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 192 | const std::vector<std::string> &GCCArgs, |
Chris Lattner | e96b2ed | 2004-07-24 07:49:11 +0000 | [diff] [blame] | 193 | const std::vector<std::string> &SharedLibs, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 194 | unsigned Timeout, |
| 195 | unsigned MemoryLimit) { |
Chris Lattner | 8c56be5 | 2004-02-18 20:21:57 +0000 | [diff] [blame] | 196 | if (!SharedLibs.empty()) |
| 197 | throw ToolExecutionError("LLI currently does not support " |
| 198 | "loading shared libraries."); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 199 | |
| 200 | std::vector<const char*> LLIArgs; |
| 201 | LLIArgs.push_back(LLIPath.c_str()); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 202 | LLIArgs.push_back("-force-interpreter=true"); |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 203 | |
| 204 | // Add any extra LLI args. |
| 205 | for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i) |
| 206 | LLIArgs.push_back(ToolArgs[i].c_str()); |
| 207 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 208 | LLIArgs.push_back(Bitcode.c_str()); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 209 | // Add optional parameters to the running program from Argv |
| 210 | for (unsigned i=0, e = Args.size(); i != e; ++i) |
| 211 | LLIArgs.push_back(Args[i].c_str()); |
| 212 | LLIArgs.push_back(0); |
| 213 | |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 214 | outs() << "<lli>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 215 | DEBUG(errs() << "\nAbout to run:\t"; |
Chris Lattner | 7b2ccff | 2003-10-19 02:14:58 +0000 | [diff] [blame] | 216 | for (unsigned i=0, e = LLIArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 217 | errs() << " " << LLIArgs[i]; |
| 218 | errs() << "\n"; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 219 | ); |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 220 | return RunProgramWithTimeout(sys::Path(LLIPath), &LLIArgs[0], |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 221 | sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile), |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 222 | Timeout, MemoryLimit); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | // LLI create method - Try to find the LLI executable |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 226 | AbstractInterpreter *AbstractInterpreter::createLLI(const std::string &ProgPath, |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 227 | std::string &Message, |
| 228 | const std::vector<std::string> *ToolArgs) { |
Reid Spencer | 51ab8ec | 2004-12-13 23:43:44 +0000 | [diff] [blame] | 229 | std::string LLIPath = FindExecutable("lli", ProgPath).toString(); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 230 | if (!LLIPath.empty()) { |
| 231 | Message = "Found lli: " + LLIPath + "\n"; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 232 | return new LLI(LLIPath, ToolArgs); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | Message = "Cannot find `lli' in executable directory or PATH!\n"; |
| 236 | return 0; |
| 237 | } |
| 238 | |
Anton Korobeynikov | 9ef7425 | 2008-04-28 20:53:48 +0000 | [diff] [blame] | 239 | //===---------------------------------------------------------------------===// |
| 240 | // Custom execution command implementation of AbstractIntepreter interface |
| 241 | // |
| 242 | // Allows using a custom command for executing the bitcode, thus allows, |
| 243 | // for example, to invoke a cross compiler for code generation followed by |
| 244 | // a simulator that executes the generated binary. |
| 245 | namespace { |
| 246 | class CustomExecutor : public AbstractInterpreter { |
| 247 | std::string ExecutionCommand; |
| 248 | std::vector<std::string> ExecutorArgs; |
| 249 | public: |
| 250 | CustomExecutor( |
| 251 | const std::string &ExecutionCmd, std::vector<std::string> ExecArgs) : |
| 252 | ExecutionCommand(ExecutionCmd), ExecutorArgs(ExecArgs) {} |
| 253 | |
| 254 | virtual int ExecuteProgram(const std::string &Bitcode, |
| 255 | const std::vector<std::string> &Args, |
| 256 | const std::string &InputFile, |
| 257 | const std::string &OutputFile, |
| 258 | const std::vector<std::string> &GCCArgs, |
| 259 | const std::vector<std::string> &SharedLibs = |
| 260 | std::vector<std::string>(), |
| 261 | unsigned Timeout = 0, |
| 262 | unsigned MemoryLimit = 0); |
| 263 | }; |
| 264 | } |
| 265 | |
| 266 | int CustomExecutor::ExecuteProgram(const std::string &Bitcode, |
| 267 | const std::vector<std::string> &Args, |
| 268 | const std::string &InputFile, |
| 269 | const std::string &OutputFile, |
| 270 | const std::vector<std::string> &GCCArgs, |
| 271 | const std::vector<std::string> &SharedLibs, |
| 272 | unsigned Timeout, |
| 273 | unsigned MemoryLimit) { |
| 274 | |
| 275 | std::vector<const char*> ProgramArgs; |
| 276 | ProgramArgs.push_back(ExecutionCommand.c_str()); |
| 277 | |
| 278 | for (std::size_t i = 0; i < ExecutorArgs.size(); ++i) |
| 279 | ProgramArgs.push_back(ExecutorArgs.at(i).c_str()); |
| 280 | ProgramArgs.push_back(Bitcode.c_str()); |
| 281 | ProgramArgs.push_back(0); |
| 282 | |
| 283 | // Add optional parameters to the running program from Argv |
| 284 | for (unsigned i=0, e = Args.size(); i != e; ++i) |
| 285 | ProgramArgs.push_back(Args[i].c_str()); |
| 286 | |
| 287 | return RunProgramWithTimeout( |
| 288 | sys::Path(ExecutionCommand), |
| 289 | &ProgramArgs[0], sys::Path(InputFile), sys::Path(OutputFile), |
| 290 | sys::Path(OutputFile), Timeout, MemoryLimit); |
| 291 | } |
| 292 | |
| 293 | // Custom execution environment create method, takes the execution command |
| 294 | // as arguments |
| 295 | AbstractInterpreter *AbstractInterpreter::createCustom( |
| 296 | const std::string &ProgramPath, |
| 297 | std::string &Message, |
| 298 | const std::string &ExecCommandLine) { |
| 299 | |
| 300 | std::string Command = ""; |
| 301 | std::vector<std::string> Args; |
| 302 | std::string delimiters = " "; |
| 303 | |
| 304 | // Tokenize the ExecCommandLine to the command and the args to allow |
| 305 | // defining a full command line as the command instead of just the |
| 306 | // executed program. We cannot just pass the whole string after the command |
| 307 | // as a single argument because then program sees only a single |
| 308 | // command line argument (with spaces in it: "foo bar" instead |
| 309 | // of "foo" and "bar"). |
| 310 | |
| 311 | // code borrowed from: |
| 312 | // http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html |
| 313 | std::string::size_type lastPos = |
| 314 | ExecCommandLine.find_first_not_of(delimiters, 0); |
| 315 | std::string::size_type pos = |
| 316 | ExecCommandLine.find_first_of(delimiters, lastPos); |
| 317 | |
| 318 | while (std::string::npos != pos || std::string::npos != lastPos) { |
| 319 | std::string token = ExecCommandLine.substr(lastPos, pos - lastPos); |
| 320 | if (Command == "") |
| 321 | Command = token; |
| 322 | else |
| 323 | Args.push_back(token); |
| 324 | // Skip delimiters. Note the "not_of" |
| 325 | lastPos = ExecCommandLine.find_first_not_of(delimiters, pos); |
| 326 | // Find next "non-delimiter" |
| 327 | pos = ExecCommandLine.find_first_of(delimiters, lastPos); |
| 328 | } |
| 329 | |
| 330 | std::string CmdPath = FindExecutable(Command, ProgramPath).toString(); |
| 331 | if (CmdPath.empty()) { |
| 332 | Message = |
| 333 | std::string("Cannot find '") + Command + |
| 334 | "' in executable directory or PATH!\n"; |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | Message = "Found command in: " + CmdPath + "\n"; |
| 339 | |
| 340 | return new CustomExecutor(CmdPath, Args); |
| 341 | } |
| 342 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 343 | //===----------------------------------------------------------------------===// |
| 344 | // LLC Implementation of AbstractIntepreter interface |
| 345 | // |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 346 | GCC::FileType LLC::OutputCode(const std::string &Bitcode, |
Chris Lattner | c600f3c | 2006-09-15 21:29:15 +0000 | [diff] [blame] | 347 | sys::Path &OutputAsmFile) { |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 348 | sys::Path uniqueFile(Bitcode+".llc.s"); |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 349 | std::string ErrMsg; |
| 350 | if (uniqueFile.makeUnique(true, &ErrMsg)) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 351 | errs() << "Error making unique filename: " << ErrMsg << "\n"; |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 352 | exit(1); |
| 353 | } |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 354 | OutputAsmFile = uniqueFile; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 355 | std::vector<const char *> LLCArgs; |
| 356 | LLCArgs.push_back (LLCPath.c_str()); |
| 357 | |
| 358 | // Add any extra LLC args. |
| 359 | for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i) |
| 360 | LLCArgs.push_back(ToolArgs[i].c_str()); |
| 361 | |
| 362 | LLCArgs.push_back ("-o"); |
| 363 | LLCArgs.push_back (OutputAsmFile.c_str()); // Output to the Asm file |
| 364 | LLCArgs.push_back ("-f"); // Overwrite as necessary... |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 365 | LLCArgs.push_back (Bitcode.c_str()); // This is the input bitcode |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 366 | LLCArgs.push_back (0); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 367 | |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 368 | outs() << "<llc>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 369 | DEBUG(errs() << "\nAbout to run:\t"; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 370 | for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 371 | errs() << " " << LLCArgs[i]; |
| 372 | errs() << "\n"; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 373 | ); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 374 | if (RunProgramWithTimeout(sys::Path(LLCPath), &LLCArgs[0], |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 375 | sys::Path(), sys::Path(), sys::Path())) |
| 376 | ProcessFailure(sys::Path(LLCPath), &LLCArgs[0]); |
Chris Lattner | c600f3c | 2006-09-15 21:29:15 +0000 | [diff] [blame] | 377 | |
| 378 | return GCC::AsmFile; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 379 | } |
| 380 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 381 | void LLC::compileProgram(const std::string &Bitcode) { |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 382 | sys::Path OutputAsmFile; |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 383 | OutputCode(Bitcode, OutputAsmFile); |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 384 | OutputAsmFile.eraseFromDisk(); |
Chris Lattner | 9cbbee3 | 2004-02-18 23:24:41 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 387 | int LLC::ExecuteProgram(const std::string &Bitcode, |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 388 | const std::vector<std::string> &Args, |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 389 | const std::string &InputFile, |
| 390 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 391 | const std::vector<std::string> &ArgsForGCC, |
Chris Lattner | e96b2ed | 2004-07-24 07:49:11 +0000 | [diff] [blame] | 392 | const std::vector<std::string> &SharedLibs, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 393 | unsigned Timeout, |
| 394 | unsigned MemoryLimit) { |
Chris Lattner | eeed983 | 2003-10-14 21:52:52 +0000 | [diff] [blame] | 395 | |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 396 | sys::Path OutputAsmFile; |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 397 | OutputCode(Bitcode, OutputAsmFile); |
Chris Lattner | 8c56be5 | 2004-02-18 20:21:57 +0000 | [diff] [blame] | 398 | FileRemover OutFileRemover(OutputAsmFile); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 399 | |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 400 | std::vector<std::string> GCCArgs(ArgsForGCC); |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 401 | GCCArgs.insert(GCCArgs.end(), SharedLibs.begin(), SharedLibs.end()); |
| 402 | GCCArgs.insert(GCCArgs.end(), gccArgs.begin(), gccArgs.end()); |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 403 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 404 | // Assuming LLC worked, compile the result with GCC and run it. |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 405 | return gcc->ExecuteProgram(OutputAsmFile.toString(), Args, GCC::AsmFile, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 406 | InputFile, OutputFile, GCCArgs, |
| 407 | Timeout, MemoryLimit); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 408 | } |
| 409 | |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 410 | /// createLLC - Try to find the LLC executable |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 411 | /// |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 412 | LLC *AbstractInterpreter::createLLC(const std::string &ProgramPath, |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 413 | std::string &Message, |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 414 | const std::vector<std::string> *Args, |
| 415 | const std::vector<std::string> *GCCArgs) { |
Reid Spencer | 51ab8ec | 2004-12-13 23:43:44 +0000 | [diff] [blame] | 416 | std::string LLCPath = FindExecutable("llc", ProgramPath).toString(); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 417 | if (LLCPath.empty()) { |
| 418 | Message = "Cannot find `llc' in executable directory or PATH!\n"; |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | Message = "Found llc: " + LLCPath + "\n"; |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 423 | GCC *gcc = GCC::create(ProgramPath, Message, GCCArgs); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 424 | if (!gcc) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 425 | errs() << Message << "\n"; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 426 | exit(1); |
| 427 | } |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 428 | return new LLC(LLCPath, gcc, Args, GCCArgs); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | //===---------------------------------------------------------------------===// |
| 432 | // JIT Implementation of AbstractIntepreter interface |
| 433 | // |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 434 | namespace { |
| 435 | class JIT : public AbstractInterpreter { |
| 436 | std::string LLIPath; // The path to the LLI executable |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 437 | std::vector<std::string> ToolArgs; // Args to pass to LLI |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 438 | public: |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 439 | JIT(const std::string &Path, const std::vector<std::string> *Args) |
| 440 | : LLIPath(Path) { |
| 441 | ToolArgs.clear (); |
Brian Gaeke | 48b008d | 2004-05-04 22:02:41 +0000 | [diff] [blame] | 442 | if (Args) { ToolArgs = *Args; } |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 443 | } |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 444 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 445 | virtual int ExecuteProgram(const std::string &Bitcode, |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 446 | const std::vector<std::string> &Args, |
| 447 | const std::string &InputFile, |
| 448 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 449 | const std::vector<std::string> &GCCArgs = |
| 450 | std::vector<std::string>(), |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 451 | const std::vector<std::string> &SharedLibs = |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 452 | std::vector<std::string>(), |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 453 | unsigned Timeout =0, |
| 454 | unsigned MemoryLimit =0); |
Chris Lattner | 2cdd21c | 2003-12-14 21:35:53 +0000 | [diff] [blame] | 455 | }; |
| 456 | } |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 457 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 458 | int JIT::ExecuteProgram(const std::string &Bitcode, |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 459 | const std::vector<std::string> &Args, |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 460 | const std::string &InputFile, |
| 461 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 462 | const std::vector<std::string> &GCCArgs, |
Chris Lattner | e96b2ed | 2004-07-24 07:49:11 +0000 | [diff] [blame] | 463 | const std::vector<std::string> &SharedLibs, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 464 | unsigned Timeout, |
| 465 | unsigned MemoryLimit) { |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 466 | // Construct a vector of parameters, incorporating those from the command-line |
| 467 | std::vector<const char*> JITArgs; |
| 468 | JITArgs.push_back(LLIPath.c_str()); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 469 | JITArgs.push_back("-force-interpreter=false"); |
Chris Lattner | eeed983 | 2003-10-14 21:52:52 +0000 | [diff] [blame] | 470 | |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 471 | // Add any extra LLI args. |
| 472 | for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i) |
| 473 | JITArgs.push_back(ToolArgs[i].c_str()); |
| 474 | |
Chris Lattner | eeed983 | 2003-10-14 21:52:52 +0000 | [diff] [blame] | 475 | for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) { |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 476 | JITArgs.push_back("-load"); |
Chris Lattner | eeed983 | 2003-10-14 21:52:52 +0000 | [diff] [blame] | 477 | JITArgs.push_back(SharedLibs[i].c_str()); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 478 | } |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 479 | JITArgs.push_back(Bitcode.c_str()); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 480 | // Add optional parameters to the running program from Argv |
| 481 | for (unsigned i=0, e = Args.size(); i != e; ++i) |
| 482 | JITArgs.push_back(Args[i].c_str()); |
| 483 | JITArgs.push_back(0); |
| 484 | |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 485 | outs() << "<jit>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 486 | DEBUG(errs() << "\nAbout to run:\t"; |
Chris Lattner | 7b2ccff | 2003-10-19 02:14:58 +0000 | [diff] [blame] | 487 | for (unsigned i=0, e = JITArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 488 | errs() << " " << JITArgs[i]; |
| 489 | errs() << "\n"; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 490 | ); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 491 | DEBUG(errs() << "\nSending output to " << OutputFile << "\n"); |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 492 | return RunProgramWithTimeout(sys::Path(LLIPath), &JITArgs[0], |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 493 | sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile), |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 494 | Timeout, MemoryLimit); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 495 | } |
| 496 | |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 497 | /// createJIT - Try to find the LLI executable |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 498 | /// |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 499 | AbstractInterpreter *AbstractInterpreter::createJIT(const std::string &ProgPath, |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 500 | std::string &Message, const std::vector<std::string> *Args) { |
Reid Spencer | 51ab8ec | 2004-12-13 23:43:44 +0000 | [diff] [blame] | 501 | std::string LLIPath = FindExecutable("lli", ProgPath).toString(); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 502 | if (!LLIPath.empty()) { |
| 503 | Message = "Found lli: " + LLIPath + "\n"; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 504 | return new JIT(LLIPath, Args); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | Message = "Cannot find `lli' in executable directory or PATH!\n"; |
| 508 | return 0; |
| 509 | } |
| 510 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 511 | GCC::FileType CBE::OutputCode(const std::string &Bitcode, |
Chris Lattner | c600f3c | 2006-09-15 21:29:15 +0000 | [diff] [blame] | 512 | sys::Path &OutputCFile) { |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 513 | sys::Path uniqueFile(Bitcode+".cbe.c"); |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 514 | std::string ErrMsg; |
| 515 | if (uniqueFile.makeUnique(true, &ErrMsg)) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 516 | errs() << "Error making unique filename: " << ErrMsg << "\n"; |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 517 | exit(1); |
| 518 | } |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 519 | OutputCFile = uniqueFile; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 520 | std::vector<const char *> LLCArgs; |
| 521 | LLCArgs.push_back (LLCPath.c_str()); |
| 522 | |
| 523 | // Add any extra LLC args. |
| 524 | for (unsigned i = 0, e = ToolArgs.size(); i != e; ++i) |
| 525 | LLCArgs.push_back(ToolArgs[i].c_str()); |
| 526 | |
| 527 | LLCArgs.push_back ("-o"); |
| 528 | LLCArgs.push_back (OutputCFile.c_str()); // Output to the C file |
| 529 | LLCArgs.push_back ("-march=c"); // Output C language |
| 530 | LLCArgs.push_back ("-f"); // Overwrite as necessary... |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 531 | LLCArgs.push_back (Bitcode.c_str()); // This is the input bitcode |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 532 | LLCArgs.push_back (0); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 533 | |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 534 | outs() << "<cbe>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 535 | DEBUG(errs() << "\nAbout to run:\t"; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 536 | for (unsigned i=0, e = LLCArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 537 | errs() << " " << LLCArgs[i]; |
| 538 | errs() << "\n"; |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 539 | ); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 540 | if (RunProgramWithTimeout(LLCPath, &LLCArgs[0], sys::Path(), sys::Path(), |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 541 | sys::Path())) |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 542 | ProcessFailure(LLCPath, &LLCArgs[0]); |
Chris Lattner | c600f3c | 2006-09-15 21:29:15 +0000 | [diff] [blame] | 543 | return GCC::CFile; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 546 | void CBE::compileProgram(const std::string &Bitcode) { |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 547 | sys::Path OutputCFile; |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 548 | OutputCode(Bitcode, OutputCFile); |
Reid Spencer | a229c5c | 2005-07-08 03:08:58 +0000 | [diff] [blame] | 549 | OutputCFile.eraseFromDisk(); |
Chris Lattner | 9cbbee3 | 2004-02-18 23:24:41 +0000 | [diff] [blame] | 550 | } |
| 551 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 552 | int CBE::ExecuteProgram(const std::string &Bitcode, |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 553 | const std::vector<std::string> &Args, |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 554 | const std::string &InputFile, |
| 555 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 556 | const std::vector<std::string> &ArgsForGCC, |
Chris Lattner | e96b2ed | 2004-07-24 07:49:11 +0000 | [diff] [blame] | 557 | const std::vector<std::string> &SharedLibs, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 558 | unsigned Timeout, |
| 559 | unsigned MemoryLimit) { |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 560 | sys::Path OutputCFile; |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 561 | OutputCode(Bitcode, OutputCFile); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 562 | |
Chris Lattner | 8c56be5 | 2004-02-18 20:21:57 +0000 | [diff] [blame] | 563 | FileRemover CFileRemove(OutputCFile); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 564 | |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 565 | std::vector<std::string> GCCArgs(ArgsForGCC); |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 566 | GCCArgs.insert(GCCArgs.end(), SharedLibs.begin(), SharedLibs.end()); |
| 567 | |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 568 | return gcc->ExecuteProgram(OutputCFile.toString(), Args, GCC::CFile, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 569 | InputFile, OutputFile, GCCArgs, |
| 570 | Timeout, MemoryLimit); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 571 | } |
| 572 | |
Chris Lattner | 9915cd9 | 2004-02-17 06:40:06 +0000 | [diff] [blame] | 573 | /// createCBE - Try to find the 'llc' executable |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 574 | /// |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 575 | CBE *AbstractInterpreter::createCBE(const std::string &ProgramPath, |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 576 | std::string &Message, |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 577 | const std::vector<std::string> *Args, |
| 578 | const std::vector<std::string> *GCCArgs) { |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 579 | sys::Path LLCPath = FindExecutable("llc", ProgramPath); |
| 580 | if (LLCPath.isEmpty()) { |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 581 | Message = |
Chris Lattner | 9915cd9 | 2004-02-17 06:40:06 +0000 | [diff] [blame] | 582 | "Cannot find `llc' in executable directory or PATH!\n"; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 583 | return 0; |
| 584 | } |
| 585 | |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 586 | Message = "Found llc: " + LLCPath.toString() + "\n"; |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 587 | GCC *gcc = GCC::create(ProgramPath, Message, GCCArgs); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 588 | if (!gcc) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 589 | errs() << Message << "\n"; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 590 | exit(1); |
| 591 | } |
Brian Gaeke | d11577b | 2004-05-04 21:09:01 +0000 | [diff] [blame] | 592 | return new CBE(LLCPath, gcc, Args); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | //===---------------------------------------------------------------------===// |
| 596 | // GCC abstraction |
| 597 | // |
David Goodwin | 80becf1 | 2009-07-10 21:39:28 +0000 | [diff] [blame] | 598 | |
Daniel Dunbar | 84f9abe | 2009-07-11 21:24:52 +0000 | [diff] [blame] | 599 | #ifdef __APPLE__ |
David Goodwin | 80becf1 | 2009-07-10 21:39:28 +0000 | [diff] [blame] | 600 | static bool |
| 601 | IsARMArchitecture(std::vector<std::string> Args) |
| 602 | { |
| 603 | for (std::vector<std::string>::const_iterator |
| 604 | I = Args.begin(), E = Args.end(); I != E; ++I) { |
| 605 | if (!strcasecmp(I->c_str(), "-arch")) { |
| 606 | ++I; |
| 607 | if ((I != E) && !strncasecmp(I->c_str(), "arm", strlen("arm"))) { |
| 608 | return true; |
| 609 | } |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | return false; |
| 614 | } |
Daniel Dunbar | 84f9abe | 2009-07-11 21:24:52 +0000 | [diff] [blame] | 615 | #endif |
David Goodwin | 80becf1 | 2009-07-10 21:39:28 +0000 | [diff] [blame] | 616 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 617 | int GCC::ExecuteProgram(const std::string &ProgramFile, |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 618 | const std::vector<std::string> &Args, |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 619 | FileType fileType, |
| 620 | const std::string &InputFile, |
| 621 | const std::string &OutputFile, |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 622 | const std::vector<std::string> &ArgsForGCC, |
Anton Korobeynikov | 9ba8a76 | 2007-02-16 19:11:07 +0000 | [diff] [blame] | 623 | unsigned Timeout, |
| 624 | unsigned MemoryLimit) { |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 625 | std::vector<const char*> GCCArgs; |
| 626 | |
| 627 | GCCArgs.push_back(GCCPath.c_str()); |
Chris Lattner | eeed983 | 2003-10-14 21:52:52 +0000 | [diff] [blame] | 628 | |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 629 | for (std::vector<std::string>::const_iterator |
| 630 | I = gccArgs.begin(), E = gccArgs.end(); I != E; ++I) |
| 631 | GCCArgs.push_back(I->c_str()); |
| 632 | |
Chris Lattner | eeed983 | 2003-10-14 21:52:52 +0000 | [diff] [blame] | 633 | // Specify -x explicitly in case the extension is wonky |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 634 | GCCArgs.push_back("-x"); |
| 635 | if (fileType == CFile) { |
| 636 | GCCArgs.push_back("c"); |
| 637 | GCCArgs.push_back("-fno-strict-aliasing"); |
| 638 | } else { |
| 639 | GCCArgs.push_back("assembler"); |
Chris Lattner | d00b288 | 2005-08-29 13:14:24 +0000 | [diff] [blame] | 640 | #ifdef __APPLE__ |
David Goodwin | 80becf1 | 2009-07-10 21:39:28 +0000 | [diff] [blame] | 641 | // For ARM architectures we don't want this flag. bugpoint isn't |
| 642 | // explicitly told what architecture it is working on, so we get |
| 643 | // it from gcc flags |
| 644 | if (!IsARMArchitecture(ArgsForGCC)) |
| 645 | GCCArgs.push_back("-force_cpusubtype_ALL"); |
Chris Lattner | d00b288 | 2005-08-29 13:14:24 +0000 | [diff] [blame] | 646 | #endif |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 647 | } |
| 648 | GCCArgs.push_back(ProgramFile.c_str()); // Specify the input filename... |
Chris Lattner | 629e487 | 2006-06-09 21:31:53 +0000 | [diff] [blame] | 649 | GCCArgs.push_back("-x"); |
| 650 | GCCArgs.push_back("none"); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 651 | GCCArgs.push_back("-o"); |
Reid Spencer | cda985e | 2004-12-15 01:51:56 +0000 | [diff] [blame] | 652 | sys::Path OutputBinary (ProgramFile+".gcc.exe"); |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 653 | std::string ErrMsg; |
| 654 | if (OutputBinary.makeUnique(true, &ErrMsg)) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 655 | errs() << "Error making unique filename: " << ErrMsg << "\n"; |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 656 | exit(1); |
| 657 | } |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 658 | GCCArgs.push_back(OutputBinary.c_str()); // Output to the right file... |
Reid Spencer | 51ab5c8 | 2006-06-06 00:00:42 +0000 | [diff] [blame] | 659 | |
| 660 | // Add any arguments intended for GCC. We locate them here because this is |
| 661 | // most likely -L and -l options that need to come before other libraries but |
| 662 | // after the source. Other options won't be sensitive to placement on the |
| 663 | // command line, so this should be safe. |
| 664 | for (unsigned i = 0, e = ArgsForGCC.size(); i != e; ++i) |
| 665 | GCCArgs.push_back(ArgsForGCC[i].c_str()); |
| 666 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 667 | GCCArgs.push_back("-lm"); // Hard-code the math library... |
| 668 | GCCArgs.push_back("-O2"); // Optimize the program a bit... |
Brian Gaeke | c8db76c | 2003-11-18 06:31:17 +0000 | [diff] [blame] | 669 | #if defined (HAVE_LINK_R) |
Chris Lattner | 1f0f162 | 2003-10-18 21:54:47 +0000 | [diff] [blame] | 670 | GCCArgs.push_back("-Wl,-R."); // Search this dir for .so files |
Brian Gaeke | c8db76c | 2003-11-18 06:31:17 +0000 | [diff] [blame] | 671 | #endif |
Chris Lattner | fdcc71e | 2006-02-04 05:02:27 +0000 | [diff] [blame] | 672 | #ifdef __sparc__ |
| 673 | GCCArgs.push_back("-mcpu=v9"); |
| 674 | #endif |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 675 | GCCArgs.push_back(0); // NULL terminator |
| 676 | |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 677 | outs() << "<gcc>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 678 | DEBUG(errs() << "\nAbout to run:\t"; |
Evan Cheng | 7f7fdcc | 2007-01-03 07:44:30 +0000 | [diff] [blame] | 679 | for (unsigned i=0, e = GCCArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 680 | errs() << " " << GCCArgs[i]; |
| 681 | errs() << "\n"; |
Evan Cheng | 7f7fdcc | 2007-01-03 07:44:30 +0000 | [diff] [blame] | 682 | ); |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 683 | if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], sys::Path(), sys::Path(), |
| 684 | sys::Path())) { |
Chris Lattner | 89bf9ea | 2004-02-18 20:38:00 +0000 | [diff] [blame] | 685 | ProcessFailure(GCCPath, &GCCArgs[0]); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 686 | exit(1); |
| 687 | } |
| 688 | |
| 689 | std::vector<const char*> ProgramArgs; |
Chris Lattner | 45495c5 | 2005-02-13 23:13:47 +0000 | [diff] [blame] | 690 | |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 691 | if (RemoteClientPath.isEmpty()) |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 692 | ProgramArgs.push_back(OutputBinary.c_str()); |
| 693 | else { |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 694 | ProgramArgs.push_back(RemoteClientPath.c_str()); |
| 695 | ProgramArgs.push_back(RemoteHost.c_str()); |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 696 | ProgramArgs.push_back("-l"); |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 697 | ProgramArgs.push_back(RemoteUser.c_str()); |
David Goodwin | 80becf1 | 2009-07-10 21:39:28 +0000 | [diff] [blame] | 698 | if (!RemotePort.empty()) { |
| 699 | ProgramArgs.push_back("-p"); |
| 700 | ProgramArgs.push_back(RemotePort.c_str()); |
| 701 | } |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 702 | if (!RemoteExtra.empty()) { |
| 703 | ProgramArgs.push_back(RemoteExtra.c_str()); |
| 704 | } |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 705 | |
David Goodwin | 91cf361 | 2009-07-20 17:15:03 +0000 | [diff] [blame^] | 706 | // Full path to the binary. We need to cd to the exec directory because |
| 707 | // there is a dylib there that the exec expects to find in the CWD |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 708 | char* env_pwd = getenv("PWD"); |
David Goodwin | 91cf361 | 2009-07-20 17:15:03 +0000 | [diff] [blame^] | 709 | std::string Exec = "cd "; |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 710 | Exec += env_pwd; |
David Goodwin | 91cf361 | 2009-07-20 17:15:03 +0000 | [diff] [blame^] | 711 | Exec += "; ./"; |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 712 | Exec += OutputBinary.c_str(); |
| 713 | ProgramArgs.push_back(Exec.c_str()); |
| 714 | } |
| 715 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 716 | // Add optional parameters to the running program from Argv |
| 717 | for (unsigned i=0, e = Args.size(); i != e; ++i) |
| 718 | ProgramArgs.push_back(Args[i].c_str()); |
| 719 | ProgramArgs.push_back(0); // NULL terminator |
| 720 | |
| 721 | // Now that we have a binary, run it! |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 722 | outs() << "<program>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 723 | DEBUG(errs() << "\nAbout to run:\t"; |
Chris Lattner | 7b2ccff | 2003-10-19 02:14:58 +0000 | [diff] [blame] | 724 | for (unsigned i=0, e = ProgramArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 725 | errs() << " " << ProgramArgs[i]; |
| 726 | errs() << "\n"; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 727 | ); |
Chris Lattner | 8c56be5 | 2004-02-18 20:21:57 +0000 | [diff] [blame] | 728 | |
Reid Spencer | 9ac1418 | 2004-12-16 23:01:34 +0000 | [diff] [blame] | 729 | FileRemover OutputBinaryRemover(OutputBinary); |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 730 | |
Viktor Kutuzov | 699220b | 2009-07-14 19:10:55 +0000 | [diff] [blame] | 731 | if (RemoteClientPath.isEmpty()) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 732 | DEBUG(errs() << "<run locally>";); |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 733 | return RunProgramWithTimeout(OutputBinary, &ProgramArgs[0], |
| 734 | sys::Path(InputFile), sys::Path(OutputFile), sys::Path(OutputFile), |
| 735 | Timeout, MemoryLimit); |
Viktor Kutuzov | 699220b | 2009-07-14 19:10:55 +0000 | [diff] [blame] | 736 | } else { |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 737 | outs() << "<run remotely>"; outs().flush(); |
Viktor Kutuzov | fc2271f | 2009-07-18 18:39:24 +0000 | [diff] [blame] | 738 | return RunProgramRemotelyWithTimeout(sys::Path(RemoteClientPath), |
Viktor Kutuzov | 699220b | 2009-07-14 19:10:55 +0000 | [diff] [blame] | 739 | &ProgramArgs[0], sys::Path(InputFile), sys::Path(OutputFile), |
| 740 | sys::Path(OutputFile), Timeout, MemoryLimit); |
Viktor Kutuzov | 699220b | 2009-07-14 19:10:55 +0000 | [diff] [blame] | 741 | } |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Chris Lattner | 1798e4a | 2003-10-14 21:07:25 +0000 | [diff] [blame] | 744 | int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType, |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 745 | std::string &OutputFile, |
| 746 | const std::vector<std::string> &ArgsForGCC) { |
Reid Spencer | cda985e | 2004-12-15 01:51:56 +0000 | [diff] [blame] | 747 | sys::Path uniqueFilename(InputFile+LTDL_SHLIB_EXT); |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 748 | std::string ErrMsg; |
| 749 | if (uniqueFilename.makeUnique(true, &ErrMsg)) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 750 | errs() << "Error making unique filename: " << ErrMsg << "\n"; |
Reid Spencer | 51c5a28 | 2006-08-23 20:34:57 +0000 | [diff] [blame] | 751 | exit(1); |
| 752 | } |
Reid Spencer | cda985e | 2004-12-15 01:51:56 +0000 | [diff] [blame] | 753 | OutputFile = uniqueFilename.toString(); |
| 754 | |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 755 | std::vector<const char*> GCCArgs; |
| 756 | |
| 757 | GCCArgs.push_back(GCCPath.c_str()); |
Evan Cheng | fd82995 | 2009-03-12 00:53:34 +0000 | [diff] [blame] | 758 | |
| 759 | for (std::vector<std::string>::const_iterator |
| 760 | I = gccArgs.begin(), E = gccArgs.end(); I != E; ++I) |
| 761 | GCCArgs.push_back(I->c_str()); |
| 762 | |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 763 | // Compile the C/asm file into a shared object |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 764 | GCCArgs.push_back("-x"); |
| 765 | GCCArgs.push_back(fileType == AsmFile ? "assembler" : "c"); |
| 766 | GCCArgs.push_back("-fno-strict-aliasing"); |
| 767 | GCCArgs.push_back(InputFile.c_str()); // Specify the input filename. |
Lauro Ramos Venancio | 497391a | 2007-06-06 23:10:56 +0000 | [diff] [blame] | 768 | GCCArgs.push_back("-x"); |
| 769 | GCCArgs.push_back("none"); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 770 | #if defined(sparc) || defined(__sparc__) || defined(__sparcv9) |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 771 | GCCArgs.push_back("-G"); // Compile a shared library, `-G' for Sparc |
Nate Begeman | 72b286b | 2005-07-08 00:23:26 +0000 | [diff] [blame] | 772 | #elif defined(__APPLE__) |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 773 | // link all source files into a single module in data segment, rather than |
| 774 | // generating blocks. dynamic_lookup requires that you set |
| 775 | // MACOSX_DEPLOYMENT_TARGET=10.3 in your env. FIXME: it would be better for |
| 776 | // bugpoint to just pass that in the environment of GCC. |
| 777 | GCCArgs.push_back("-single_module"); |
| 778 | GCCArgs.push_back("-dynamiclib"); // `-dynamiclib' for MacOS X/PowerPC |
| 779 | GCCArgs.push_back("-undefined"); |
| 780 | GCCArgs.push_back("dynamic_lookup"); |
Misha Brukman | b3998ec | 2004-07-16 19:45:45 +0000 | [diff] [blame] | 781 | #else |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 782 | GCCArgs.push_back("-shared"); // `-shared' for Linux/X86, maybe others |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 783 | #endif |
Chris Lattner | 1c81f13 | 2005-03-09 03:31:02 +0000 | [diff] [blame] | 784 | |
Torok Edwin | af4fc28 | 2008-04-06 12:42:29 +0000 | [diff] [blame] | 785 | #if defined(__ia64__) || defined(__alpha__) || defined(__amd64__) |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 786 | GCCArgs.push_back("-fPIC"); // Requires shared objs to contain PIC |
Chris Lattner | 1c81f13 | 2005-03-09 03:31:02 +0000 | [diff] [blame] | 787 | #endif |
Chris Lattner | fdcc71e | 2006-02-04 05:02:27 +0000 | [diff] [blame] | 788 | #ifdef __sparc__ |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 789 | GCCArgs.push_back("-mcpu=v9"); |
Chris Lattner | fdcc71e | 2006-02-04 05:02:27 +0000 | [diff] [blame] | 790 | #endif |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 791 | GCCArgs.push_back("-o"); |
| 792 | GCCArgs.push_back(OutputFile.c_str()); // Output to the right filename. |
| 793 | GCCArgs.push_back("-O2"); // Optimize the program a bit. |
| 794 | |
| 795 | |
| 796 | |
| 797 | // Add any arguments intended for GCC. We locate them here because this is |
| 798 | // most likely -L and -l options that need to come before other libraries but |
| 799 | // after the source. Other options won't be sensitive to placement on the |
| 800 | // command line, so this should be safe. |
| 801 | for (unsigned i = 0, e = ArgsForGCC.size(); i != e; ++i) |
| 802 | GCCArgs.push_back(ArgsForGCC[i].c_str()); |
| 803 | GCCArgs.push_back(0); // NULL terminator |
| 804 | |
| 805 | |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 806 | |
Dan Gohman | a1bdced | 2009-07-15 17:29:42 +0000 | [diff] [blame] | 807 | outs() << "<gcc>"; outs().flush(); |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 808 | DEBUG(errs() << "\nAbout to run:\t"; |
Evan Cheng | 7f7fdcc | 2007-01-03 07:44:30 +0000 | [diff] [blame] | 809 | for (unsigned i=0, e = GCCArgs.size()-1; i != e; ++i) |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 810 | errs() << " " << GCCArgs[i]; |
| 811 | errs() << "\n"; |
Evan Cheng | 7f7fdcc | 2007-01-03 07:44:30 +0000 | [diff] [blame] | 812 | ); |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 813 | if (RunProgramWithTimeout(GCCPath, &GCCArgs[0], sys::Path(), sys::Path(), |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 814 | sys::Path())) { |
Chris Lattner | 130e2a3 | 2006-06-27 20:35:36 +0000 | [diff] [blame] | 815 | ProcessFailure(GCCPath, &GCCArgs[0]); |
Chris Lattner | 1798e4a | 2003-10-14 21:07:25 +0000 | [diff] [blame] | 816 | return 1; |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 817 | } |
| 818 | return 0; |
| 819 | } |
| 820 | |
Chris Lattner | 7915a1e | 2003-10-14 21:34:11 +0000 | [diff] [blame] | 821 | /// create - Try to find the `gcc' executable |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 822 | /// |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 823 | GCC *GCC::create(const std::string &ProgramPath, std::string &Message, |
| 824 | const std::vector<std::string> *Args) { |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 825 | sys::Path GCCPath = FindExecutable("gcc", ProgramPath); |
| 826 | if (GCCPath.isEmpty()) { |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 827 | Message = "Cannot find `gcc' in executable directory or PATH!\n"; |
| 828 | return 0; |
| 829 | } |
| 830 | |
Evan Cheng | 70f684f | 2008-09-09 06:11:26 +0000 | [diff] [blame] | 831 | sys::Path RemoteClientPath; |
| 832 | if (!RemoteClient.empty()) |
| 833 | RemoteClientPath = FindExecutable(RemoteClient.c_str(), ProgramPath); |
Evan Cheng | 34e400e | 2007-05-03 18:36:15 +0000 | [diff] [blame] | 834 | |
Reid Spencer | b31baa8 | 2004-12-19 18:00:21 +0000 | [diff] [blame] | 835 | Message = "Found gcc: " + GCCPath.toString() + "\n"; |
Bill Wendling | 38efa38 | 2009-03-02 23:13:18 +0000 | [diff] [blame] | 836 | return new GCC(GCCPath, RemoteClientPath, Args); |
Misha Brukman | 9558c6a | 2003-09-29 22:39:25 +0000 | [diff] [blame] | 837 | } |