blob: cfdd9c342acbbac0d4b6244c620d7ae9bba878a1 [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 Dunbar2c6f6f32009-03-04 08:33:23 +000018
Daniel Dunbar510d7322009-03-18 02:11:26 +000019#include "llvm/ADT/SmallString.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000020#include "llvm/ADT/OwningPtr.h"
Daniel Dunbardd98e2c2009-03-10 23:41:59 +000021#include "llvm/Config/config.h"
Daniel Dunbar8f25c792009-03-18 01:38:48 +000022#include "llvm/Support/ManagedStatic.h"
23#include "llvm/Support/PrettyStackTrace.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000024#include "llvm/Support/raw_ostream.h"
Daniel Dunbaraf07f932009-03-31 17:35:15 +000025#include "llvm/System/Host.h"
Daniel Dunbar365c02f2009-03-10 20:52:46 +000026#include "llvm/System/Path.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000027#include "llvm/System/Signals.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000028using namespace clang;
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000029using namespace clang::driver;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000030
Daniel Dunbar510d7322009-03-18 02:11:26 +000031class DriverDiagnosticPrinter : public DiagnosticClient {
32 std::string ProgName;
33 llvm::raw_ostream &OS;
34
35public:
Daniel Dunbar237a31b2009-07-17 18:10:27 +000036 DriverDiagnosticPrinter(const std::string _ProgName,
Daniel Dunbar510d7322009-03-18 02:11:26 +000037 llvm::raw_ostream &_OS)
38 : ProgName(_ProgName),
39 OS(_OS) {}
40
41 virtual void HandleDiagnostic(Diagnostic::Level DiagLevel,
42 const DiagnosticInfo &Info);
43};
44
45void DriverDiagnosticPrinter::HandleDiagnostic(Diagnostic::Level Level,
46 const DiagnosticInfo &Info) {
47 OS << ProgName << ": ";
48
49 switch (Level) {
50 case Diagnostic::Ignored: assert(0 && "Invalid diagnostic type");
51 case Diagnostic::Note: OS << "note: "; break;
52 case Diagnostic::Warning: OS << "warning: "; break;
53 case Diagnostic::Error: OS << "error: "; break;
54 case Diagnostic::Fatal: OS << "fatal error: "; break;
55 }
Daniel Dunbar237a31b2009-07-17 18:10:27 +000056
Daniel Dunbar510d7322009-03-18 02:11:26 +000057 llvm::SmallString<100> OutStr;
58 Info.FormatDiagnostic(OutStr);
59 OS.write(OutStr.begin(), OutStr.size());
60 OS << '\n';
61}
62
Rafael Espindola0f4c59c2009-12-04 19:31:58 +000063llvm::sys::Path GetExecutablePath(const char *Argv0, bool CanonicalPrefixes) {
64 if (!CanonicalPrefixes)
65 return llvm::sys::Path(Argv0);
66
Daniel Dunbar734932c2009-03-18 20:25:53 +000067 // This just needs to be some symbol in the binary; C++ doesn't
68 // allow taking the address of ::main however.
69 void *P = (void*) (intptr_t) GetExecutablePath;
70 return llvm::sys::Path::GetMainExecutable(Argv0, P);
71}
72
Daniel Dunbar237a31b2009-07-17 18:10:27 +000073static const char *SaveStringInSet(std::set<std::string> &SavedStrings,
Daniel Dunbarec9587d2009-04-17 01:54:00 +000074 const std::string &S) {
75 return SavedStrings.insert(S).first->c_str();
76}
77
78/// ApplyQAOverride - Apply a list of edits to the input argument lists.
79///
80/// The input string is a space separate list of edits to perform,
81/// they are applied in order to the input argument lists. Edits
82/// should be one of the following forms:
83///
Daniel Dunbare3d60232009-07-16 21:32:51 +000084/// '#': Silence information about the changes to the command line arguments.
85///
Daniel Dunbarec9587d2009-04-17 01:54:00 +000086/// '^': Add FOO as a new argument at the beginning of the command line.
87///
88/// '+': Add FOO as a new argument at the end of the command line.
89///
90/// 's/XXX/YYY/': Replace the literal argument XXX by YYY in the
91/// command line.
92///
93/// 'xOPTION': Removes all instances of the literal argument OPTION.
94///
95/// 'XOPTION': Removes all instances of the literal argument OPTION,
96/// and the following argument.
97///
98/// 'Ox': Removes all flags matching 'O' or 'O[sz0-9]' and adds 'Ox'
99/// at the end of the command line.
Daniel Dunbare3d60232009-07-16 21:32:51 +0000100///
101/// \param OS - The stream to write edit information to.
102/// \param Args - The vector of command line arguments.
103/// \param Edit - The override command to perform.
104/// \param SavedStrings - Set to use for storing string representations.
105void ApplyOneQAOverride(llvm::raw_ostream &OS,
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000106 std::vector<const char*> &Args,
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000107 const std::string &Edit,
108 std::set<std::string> &SavedStrings) {
109 // This does not need to be efficient.
110
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000111 if (Edit[0] == '^') {
112 const char *Str =
113 SaveStringInSet(SavedStrings, Edit.substr(1, std::string::npos));
114 OS << "### Adding argument " << Str << " at beginning\n";
115 Args.insert(Args.begin() + 1, Str);
116 } else if (Edit[0] == '+') {
117 const char *Str =
118 SaveStringInSet(SavedStrings, Edit.substr(1, std::string::npos));
119 OS << "### Adding argument " << Str << " at end\n";
120 Args.push_back(Str);
121 } else if (Edit[0] == 'x' || Edit[0] == 'X') {
122 std::string Option = Edit.substr(1, std::string::npos);
123 for (unsigned i = 1; i < Args.size();) {
124 if (Option == Args[i]) {
125 OS << "### Deleting argument " << Args[i] << '\n';
126 Args.erase(Args.begin() + i);
127 if (Edit[0] == 'X') {
128 if (i < Args.size()) {
129 OS << "### Deleting argument " << Args[i] << '\n';
130 Args.erase(Args.begin() + i);
131 } else
132 OS << "### Invalid X edit, end of command line!\n";
133 }
134 } else
135 ++i;
136 }
137 } else if (Edit[0] == 'O') {
138 for (unsigned i = 1; i < Args.size();) {
139 const char *A = Args[i];
140 if (A[0] == '-' && A[1] == 'O' &&
141 (A[2] == '\0' ||
142 (A[3] == '\0' && (A[2] == 's' || A[2] == 'z' ||
143 ('0' <= A[2] && A[2] <= '9'))))) {
144 OS << "### Deleting argument " << Args[i] << '\n';
145 Args.erase(Args.begin() + i);
146 } else
147 ++i;
148 }
149 OS << "### Adding argument " << Edit << " at end\n";
150 Args.push_back(SaveStringInSet(SavedStrings, '-' + Edit));
151 } else {
152 OS << "### Unrecognized edit: " << Edit << "\n";
153 }
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000154}
155
156/// ApplyQAOverride - Apply a comma separate list of edits to the
157/// input argument lists. See ApplyOneQAOverride.
158void ApplyQAOverride(std::vector<const char*> &Args, const char *OverrideStr,
159 std::set<std::string> &SavedStrings) {
Daniel Dunbare3d60232009-07-16 21:32:51 +0000160 llvm::raw_ostream *OS = &llvm::errs();
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000161
Daniel Dunbare3d60232009-07-16 21:32:51 +0000162 if (OverrideStr[0] == '#') {
163 ++OverrideStr;
164 OS = &llvm::nulls();
165 }
166
167 *OS << "### QA_OVERRIDE_GCC3_OPTIONS: " << OverrideStr << "\n";
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000168
169 // This does not need to be efficient.
170
171 const char *S = OverrideStr;
172 while (*S) {
173 const char *End = ::strchr(S, ' ');
174 if (!End)
175 End = S + strlen(S);
176 if (End != S)
Daniel Dunbare3d60232009-07-16 21:32:51 +0000177 ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings);
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000178 S = End;
179 if (*S != '\0')
180 ++S;
181 }
182}
183
Daniel Dunbarc88aa792009-11-30 07:18:13 +0000184extern int cc1_main(const char **ArgBegin, const char **ArgEnd,
Daniel Dunbar545c2812009-11-29 20:58:32 +0000185 const char *Argv0, void *MainAddr);
Daniel Dunbar217acbf2009-11-19 07:37:51 +0000186
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000187int main(int argc, const char **argv) {
188 llvm::sys::PrintStackTraceOnErrorSignal();
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000189 llvm::PrettyStackTraceProgram X(argc, argv);
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000190
Daniel Dunbarc88aa792009-11-30 07:18:13 +0000191 // Dispatch to cc1_main if appropriate.
192 if (argc > 1 && llvm::StringRef(argv[1]) == "-cc1")
193 return cc1_main(argv+2, argv+argc, argv[0],
194 (void*) (intptr_t) GetExecutablePath);
195
Rafael Espindola0f4c59c2009-12-04 19:31:58 +0000196 bool CanonicalPrefixes = true;
197 for (int i = 1; i < argc; ++i) {
198 if (llvm::StringRef(argv[i]) == "-no-canonical-prefixes") {
199 CanonicalPrefixes = false;
200 break;
201 }
202 }
203
204 llvm::sys::Path Path = GetExecutablePath(argv[0], CanonicalPrefixes);
205
Daniel Dunbar8e6e7092009-05-26 16:15:44 +0000206 DriverDiagnosticPrinter DiagClient(Path.getBasename(), llvm::errs());
Daniel Dunbar510d7322009-03-18 02:11:26 +0000207
Daniel Dunbar8e6e7092009-05-26 16:15:44 +0000208 Diagnostic Diags(&DiagClient);
Daniel Dunbar510d7322009-03-18 02:11:26 +0000209
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000210#ifdef CLANG_IS_PRODUCTION
211 bool IsProduction = true;
212#else
213 bool IsProduction = false;
214#endif
Jeffrey Yasskine3fdca22009-12-08 01:46:24 +0000215 Driver TheDriver(Path.getBasename(), Path.getDirname(),
216 llvm::sys::getHostTriple(),
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000217 "a.out", IsProduction, Diags);
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000218
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000219 // Check for ".*++" or ".*++-[^-]*" to determine if we are a C++
220 // compiler. This matches things like "c++", "clang++", and "clang++-1.1".
221 //
222 // Note that we intentionally want to use argv[0] here, to support "clang++"
223 // being a symlink.
Benjamin Kramerd5dc9f32009-11-20 11:49:06 +0000224 //
225 // We use *argv instead of argv[0] to work around a bogus g++ warning.
226 std::string ProgName(llvm::sys::Path(*argv).getBasename());
Daniel Dunbare26bd902009-11-11 10:10:25 +0000227 if (llvm::StringRef(ProgName).endswith("++") ||
228 llvm::StringRef(ProgName).rsplit('-').first.endswith("++"))
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000229 TheDriver.CCCIsCXX = true;
230
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000231 llvm::OwningPtr<Compilation> C;
232
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000233 // Handle QA_OVERRIDE_GCC3_OPTIONS and CCC_ADD_ARGS, used for editing a
234 // command line behind the scenes.
Daniel Dunbara1e2fd92009-04-10 18:32:59 +0000235 std::set<std::string> SavedStrings;
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000236 if (const char *OverrideStr = ::getenv("QA_OVERRIDE_GCC3_OPTIONS")) {
237 // FIXME: Driver shouldn't take extra initial argument.
238 std::vector<const char*> StringPointers(argv, argv + argc);
239
240 ApplyQAOverride(StringPointers, OverrideStr, SavedStrings);
241
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000242 C.reset(TheDriver.BuildCompilation(StringPointers.size(),
Daniel Dunbar0311d472009-05-26 18:00:25 +0000243 &StringPointers[0]));
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000244 } else if (const char *Cur = ::getenv("CCC_ADD_ARGS")) {
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000245 std::vector<const char*> StringPointers;
246
247 // FIXME: Driver shouldn't take extra initial argument.
248 StringPointers.push_back(argv[0]);
249
250 for (;;) {
251 const char *Next = strchr(Cur, ',');
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000252
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000253 if (Next) {
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000254 StringPointers.push_back(SaveStringInSet(SavedStrings,
255 std::string(Cur, Next)));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000256 Cur = Next + 1;
257 } else {
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000258 if (*Cur != '\0')
259 StringPointers.push_back(SaveStringInSet(SavedStrings, Cur));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000260 break;
261 }
262 }
263
264 StringPointers.insert(StringPointers.end(), argv + 1, argv + argc);
265
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000266 C.reset(TheDriver.BuildCompilation(StringPointers.size(),
Daniel Dunbar0311d472009-05-26 18:00:25 +0000267 &StringPointers[0]));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000268 } else
Daniel Dunbar8e6e7092009-05-26 16:15:44 +0000269 C.reset(TheDriver.BuildCompilation(argc, argv));
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000270
Daniel Dunbaraf96def2009-03-21 00:40:53 +0000271 int Res = 0;
272 if (C.get())
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000273 Res = TheDriver.ExecuteCompilation(*C);
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000274
275 llvm::llvm_shutdown();
276
Daniel Dunbaraf96def2009-03-21 00:40:53 +0000277 return Res;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000278}