blob: daab519e95fbe1c54aa2af6e79448ac69a5f9778 [file] [log] [blame]
Daniel Dunbar3ede8d02009-03-02 19:59:07 +00001//===-- driver.cpp - Clang GCC-Compatible Driver --------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Daniel Dunbar1eb4e642009-03-03 05:55:11 +000010// This is the entry point to the clang driver; it is a thin wrapper
11// for functionality in the Driver clang library.
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Driver/Compilation.h"
16#include "clang/Driver/Driver.h"
Daniel Dunbar2c6f6f32009-03-04 08:33:23 +000017#include "clang/Driver/Option.h"
Daniel Dunbaraf20afb2010-02-25 03:23:43 +000018#include "clang/Frontend/DiagnosticOptions.h"
19#include "clang/Frontend/TextDiagnosticPrinter.h"
Daniel Dunbar2c6f6f32009-03-04 08:33:23 +000020
Daniel Dunbar510d7322009-03-18 02:11:26 +000021#include "llvm/ADT/SmallString.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000022#include "llvm/ADT/OwningPtr.h"
Daniel Dunbardd98e2c2009-03-10 23:41:59 +000023#include "llvm/Config/config.h"
Daniel Dunbar8f25c792009-03-18 01:38:48 +000024#include "llvm/Support/ManagedStatic.h"
25#include "llvm/Support/PrettyStackTrace.h"
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000026#include "llvm/Support/Regex.h"
Chris Lattner30bc7e82010-03-30 05:39:52 +000027#include "llvm/Support/Timer.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000028#include "llvm/Support/raw_ostream.h"
Daniel Dunbaraf07f932009-03-31 17:35:15 +000029#include "llvm/System/Host.h"
Daniel Dunbar365c02f2009-03-10 20:52:46 +000030#include "llvm/System/Path.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000031#include "llvm/System/Signals.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000032using namespace clang;
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000033using namespace clang::driver;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000034
Rafael Espindola0f4c59c2009-12-04 19:31:58 +000035llvm::sys::Path GetExecutablePath(const char *Argv0, bool CanonicalPrefixes) {
36 if (!CanonicalPrefixes)
37 return llvm::sys::Path(Argv0);
38
Daniel Dunbar734932c2009-03-18 20:25:53 +000039 // This just needs to be some symbol in the binary; C++ doesn't
40 // allow taking the address of ::main however.
41 void *P = (void*) (intptr_t) GetExecutablePath;
42 return llvm::sys::Path::GetMainExecutable(Argv0, P);
43}
44
Daniel Dunbar237a31b2009-07-17 18:10:27 +000045static const char *SaveStringInSet(std::set<std::string> &SavedStrings,
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000046 llvm::StringRef S) {
Daniel Dunbarec9587d2009-04-17 01:54:00 +000047 return SavedStrings.insert(S).first->c_str();
48}
49
50/// ApplyQAOverride - Apply a list of edits to the input argument lists.
51///
52/// The input string is a space separate list of edits to perform,
53/// they are applied in order to the input argument lists. Edits
54/// should be one of the following forms:
55///
Daniel Dunbare3d60232009-07-16 21:32:51 +000056/// '#': Silence information about the changes to the command line arguments.
57///
Daniel Dunbarec9587d2009-04-17 01:54:00 +000058/// '^': Add FOO as a new argument at the beginning of the command line.
59///
60/// '+': Add FOO as a new argument at the end of the command line.
61///
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000062/// 's/XXX/YYY/': Substitute the regular expression XXX with YYY in the command
63/// line.
Daniel Dunbarec9587d2009-04-17 01:54:00 +000064///
65/// 'xOPTION': Removes all instances of the literal argument OPTION.
66///
67/// 'XOPTION': Removes all instances of the literal argument OPTION,
68/// and the following argument.
69///
70/// 'Ox': Removes all flags matching 'O' or 'O[sz0-9]' and adds 'Ox'
71/// at the end of the command line.
Daniel Dunbare3d60232009-07-16 21:32:51 +000072///
73/// \param OS - The stream to write edit information to.
74/// \param Args - The vector of command line arguments.
75/// \param Edit - The override command to perform.
76/// \param SavedStrings - Set to use for storing string representations.
Chris Lattner30bc7e82010-03-30 05:39:52 +000077static void ApplyOneQAOverride(llvm::raw_ostream &OS,
78 std::vector<const char*> &Args,
79 llvm::StringRef Edit,
80 std::set<std::string> &SavedStrings) {
Daniel Dunbarec9587d2009-04-17 01:54:00 +000081 // This does not need to be efficient.
82
Daniel Dunbar237a31b2009-07-17 18:10:27 +000083 if (Edit[0] == '^') {
84 const char *Str =
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000085 SaveStringInSet(SavedStrings, Edit.substr(1));
Daniel Dunbar237a31b2009-07-17 18:10:27 +000086 OS << "### Adding argument " << Str << " at beginning\n";
87 Args.insert(Args.begin() + 1, Str);
88 } else if (Edit[0] == '+') {
89 const char *Str =
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000090 SaveStringInSet(SavedStrings, Edit.substr(1));
Daniel Dunbar237a31b2009-07-17 18:10:27 +000091 OS << "### Adding argument " << Str << " at end\n";
92 Args.push_back(Str);
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000093 } else if (Edit[0] == 's' && Edit[1] == '/' && Edit.endswith("/") &&
94 Edit.slice(2, Edit.size()-1).find('/') != llvm::StringRef::npos) {
95 llvm::StringRef MatchPattern = Edit.substr(2).split('/').first;
96 llvm::StringRef ReplPattern = Edit.substr(2).split('/').second;
97 ReplPattern = ReplPattern.slice(0, ReplPattern.size()-1);
98
99 for (unsigned i = 1, e = Args.size(); i != e; ++i) {
100 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
101
102 if (Repl != Args[i]) {
103 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
104 Args[i] = SaveStringInSet(SavedStrings, Repl);
105 }
106 }
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000107 } else if (Edit[0] == 'x' || Edit[0] == 'X') {
108 std::string Option = Edit.substr(1, std::string::npos);
109 for (unsigned i = 1; i < Args.size();) {
110 if (Option == Args[i]) {
111 OS << "### Deleting argument " << Args[i] << '\n';
112 Args.erase(Args.begin() + i);
113 if (Edit[0] == 'X') {
114 if (i < Args.size()) {
115 OS << "### Deleting argument " << Args[i] << '\n';
116 Args.erase(Args.begin() + i);
117 } else
118 OS << "### Invalid X edit, end of command line!\n";
119 }
120 } else
121 ++i;
122 }
123 } else if (Edit[0] == 'O') {
124 for (unsigned i = 1; i < Args.size();) {
125 const char *A = Args[i];
126 if (A[0] == '-' && A[1] == 'O' &&
127 (A[2] == '\0' ||
128 (A[3] == '\0' && (A[2] == 's' || A[2] == 'z' ||
129 ('0' <= A[2] && A[2] <= '9'))))) {
130 OS << "### Deleting argument " << Args[i] << '\n';
131 Args.erase(Args.begin() + i);
132 } else
133 ++i;
134 }
135 OS << "### Adding argument " << Edit << " at end\n";
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +0000136 Args.push_back(SaveStringInSet(SavedStrings, '-' + Edit.str()));
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000137 } else {
138 OS << "### Unrecognized edit: " << Edit << "\n";
139 }
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000140}
141
142/// ApplyQAOverride - Apply a comma separate list of edits to the
143/// input argument lists. See ApplyOneQAOverride.
Chris Lattner30bc7e82010-03-30 05:39:52 +0000144static void ApplyQAOverride(std::vector<const char*> &Args,
145 const char *OverrideStr,
146 std::set<std::string> &SavedStrings) {
Daniel Dunbare3d60232009-07-16 21:32:51 +0000147 llvm::raw_ostream *OS = &llvm::errs();
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000148
Daniel Dunbare3d60232009-07-16 21:32:51 +0000149 if (OverrideStr[0] == '#') {
150 ++OverrideStr;
151 OS = &llvm::nulls();
152 }
153
154 *OS << "### QA_OVERRIDE_GCC3_OPTIONS: " << OverrideStr << "\n";
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000155
156 // This does not need to be efficient.
157
158 const char *S = OverrideStr;
159 while (*S) {
160 const char *End = ::strchr(S, ' ');
161 if (!End)
162 End = S + strlen(S);
163 if (End != S)
Daniel Dunbare3d60232009-07-16 21:32:51 +0000164 ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings);
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000165 S = End;
166 if (*S != '\0')
167 ++S;
168 }
169}
170
Daniel Dunbarc88aa792009-11-30 07:18:13 +0000171extern int cc1_main(const char **ArgBegin, const char **ArgEnd,
Daniel Dunbar545c2812009-11-29 20:58:32 +0000172 const char *Argv0, void *MainAddr);
Daniel Dunbar217acbf2009-11-19 07:37:51 +0000173
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000174int main(int argc, const char **argv) {
175 llvm::sys::PrintStackTraceOnErrorSignal();
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000176 llvm::PrettyStackTraceProgram X(argc, argv);
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000177
Daniel Dunbarc88aa792009-11-30 07:18:13 +0000178 // Dispatch to cc1_main if appropriate.
179 if (argc > 1 && llvm::StringRef(argv[1]) == "-cc1")
180 return cc1_main(argv+2, argv+argc, argv[0],
181 (void*) (intptr_t) GetExecutablePath);
182
Rafael Espindola0f4c59c2009-12-04 19:31:58 +0000183 bool CanonicalPrefixes = true;
184 for (int i = 1; i < argc; ++i) {
185 if (llvm::StringRef(argv[i]) == "-no-canonical-prefixes") {
186 CanonicalPrefixes = false;
187 break;
188 }
189 }
190
191 llvm::sys::Path Path = GetExecutablePath(argv[0], CanonicalPrefixes);
192
Daniel Dunbaraf20afb2010-02-25 03:23:43 +0000193 TextDiagnosticPrinter DiagClient(llvm::errs(), DiagnosticOptions());
194 DiagClient.setPrefix(Path.getBasename());
Daniel Dunbar510d7322009-03-18 02:11:26 +0000195
Daniel Dunbar8e6e7092009-05-26 16:15:44 +0000196 Diagnostic Diags(&DiagClient);
Daniel Dunbar510d7322009-03-18 02:11:26 +0000197
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000198#ifdef CLANG_IS_PRODUCTION
Kovarththanan Rajaratnam240c7342010-03-08 18:33:04 +0000199 const bool IsProduction = true;
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000200#else
Kovarththanan Rajaratnam240c7342010-03-08 18:33:04 +0000201 const bool IsProduction = false;
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000202#endif
Jeffrey Yasskine3fdca22009-12-08 01:46:24 +0000203 Driver TheDriver(Path.getBasename(), Path.getDirname(),
204 llvm::sys::getHostTriple(),
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000205 "a.out", IsProduction, Diags);
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000206
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000207 // Check for ".*++" or ".*++-[^-]*" to determine if we are a C++
208 // compiler. This matches things like "c++", "clang++", and "clang++-1.1".
209 //
210 // Note that we intentionally want to use argv[0] here, to support "clang++"
211 // being a symlink.
Benjamin Kramerd5dc9f32009-11-20 11:49:06 +0000212 //
213 // We use *argv instead of argv[0] to work around a bogus g++ warning.
214 std::string ProgName(llvm::sys::Path(*argv).getBasename());
Daniel Dunbare26bd902009-11-11 10:10:25 +0000215 if (llvm::StringRef(ProgName).endswith("++") ||
Daniel Dunbar0dea4be2009-12-25 20:21:23 +0000216 llvm::StringRef(ProgName).rsplit('-').first.endswith("++")) {
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000217 TheDriver.CCCIsCXX = true;
Daniel Dunbar0dea4be2009-12-25 20:21:23 +0000218 TheDriver.CCCGenericGCCName = "g++";
219 }
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000220
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000221 llvm::OwningPtr<Compilation> C;
222
Daniel Dunbar4c00fcd2010-03-20 08:01:59 +0000223 // Handle CC_PRINT_OPTIONS and CC_PRINT_OPTIONS_FILE.
224 TheDriver.CCPrintOptions = !!::getenv("CC_PRINT_OPTIONS");
225 if (TheDriver.CCPrintOptions)
226 TheDriver.CCPrintOptionsFilename = ::getenv("CC_PRINT_OPTIONS_FILE");
227
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000228 // Handle QA_OVERRIDE_GCC3_OPTIONS and CCC_ADD_ARGS, used for editing a
229 // command line behind the scenes.
Daniel Dunbara1e2fd92009-04-10 18:32:59 +0000230 std::set<std::string> SavedStrings;
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000231 if (const char *OverrideStr = ::getenv("QA_OVERRIDE_GCC3_OPTIONS")) {
232 // FIXME: Driver shouldn't take extra initial argument.
233 std::vector<const char*> StringPointers(argv, argv + argc);
234
235 ApplyQAOverride(StringPointers, OverrideStr, SavedStrings);
236
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000237 C.reset(TheDriver.BuildCompilation(StringPointers.size(),
Daniel Dunbar0311d472009-05-26 18:00:25 +0000238 &StringPointers[0]));
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000239 } else if (const char *Cur = ::getenv("CCC_ADD_ARGS")) {
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000240 std::vector<const char*> StringPointers;
241
242 // FIXME: Driver shouldn't take extra initial argument.
243 StringPointers.push_back(argv[0]);
244
245 for (;;) {
246 const char *Next = strchr(Cur, ',');
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000247
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000248 if (Next) {
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000249 StringPointers.push_back(SaveStringInSet(SavedStrings,
250 std::string(Cur, Next)));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000251 Cur = Next + 1;
252 } else {
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000253 if (*Cur != '\0')
254 StringPointers.push_back(SaveStringInSet(SavedStrings, Cur));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000255 break;
256 }
257 }
258
259 StringPointers.insert(StringPointers.end(), argv + 1, argv + argc);
260
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000261 C.reset(TheDriver.BuildCompilation(StringPointers.size(),
Daniel Dunbar0311d472009-05-26 18:00:25 +0000262 &StringPointers[0]));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000263 } else
Daniel Dunbar8e6e7092009-05-26 16:15:44 +0000264 C.reset(TheDriver.BuildCompilation(argc, argv));
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000265
Daniel Dunbaraf96def2009-03-21 00:40:53 +0000266 int Res = 0;
267 if (C.get())
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000268 Res = TheDriver.ExecuteCompilation(*C);
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000269
Chris Lattner30bc7e82010-03-30 05:39:52 +0000270
271 // If any timers were active but haven't been destroyed yet, print their
272 // results now. This happens in -disable-free mode.
273 llvm::TimerGroup::printAll(llvm::errs());
274
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000275 llvm::llvm_shutdown();
276
Daniel Dunbaraf96def2009-03-21 00:40:53 +0000277 return Res;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000278}