blob: 594b07bd2ce286b4f93a0894dbb611051bc39ba2 [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"
Rafael Espindola8a1af322010-07-19 15:20:12 +000022#include "llvm/ADT/SmallVector.h"
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000023#include "llvm/ADT/OwningPtr.h"
Daniel Dunbardd98e2c2009-03-10 23:41:59 +000024#include "llvm/Config/config.h"
Rafael Espindola8a1af322010-07-19 15:20:12 +000025#include "llvm/Support/ErrorHandling.h"
Michael J. Spencerfbfd1802010-12-21 16:45:57 +000026#include "llvm/Support/FileSystem.h"
Daniel Dunbar8f25c792009-03-18 01:38:48 +000027#include "llvm/Support/ManagedStatic.h"
Rafael Espindola8a1af322010-07-19 15:20:12 +000028#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbar8f25c792009-03-18 01:38:48 +000029#include "llvm/Support/PrettyStackTrace.h"
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000030#include "llvm/Support/Regex.h"
Chris Lattner30bc7e82010-03-30 05:39:52 +000031#include "llvm/Support/Timer.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000032#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000033#include "llvm/Support/Host.h"
34#include "llvm/Support/Path.h"
35#include "llvm/Support/Program.h"
36#include "llvm/Support/Signals.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000037#include "llvm/Support/system_error.h"
Daniel Dunbar4ad4b3e2009-03-12 08:55:43 +000038using namespace clang;
Daniel Dunbar1b3bb6e2009-03-04 20:49:20 +000039using namespace clang::driver;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +000040
Benjamin Krameraeed3da2010-10-30 17:32:40 +000041llvm::sys::Path GetExecutablePath(const char *Argv0, bool CanonicalPrefixes) {
Rafael Espindola0f4c59c2009-12-04 19:31:58 +000042 if (!CanonicalPrefixes)
43 return llvm::sys::Path(Argv0);
44
Daniel Dunbar734932c2009-03-18 20:25:53 +000045 // This just needs to be some symbol in the binary; C++ doesn't
46 // allow taking the address of ::main however.
47 void *P = (void*) (intptr_t) GetExecutablePath;
48 return llvm::sys::Path::GetMainExecutable(Argv0, P);
49}
50
Daniel Dunbar237a31b2009-07-17 18:10:27 +000051static const char *SaveStringInSet(std::set<std::string> &SavedStrings,
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000052 llvm::StringRef S) {
Daniel Dunbarec9587d2009-04-17 01:54:00 +000053 return SavedStrings.insert(S).first->c_str();
54}
55
56/// ApplyQAOverride - Apply a list of edits to the input argument lists.
57///
58/// The input string is a space separate list of edits to perform,
59/// they are applied in order to the input argument lists. Edits
60/// should be one of the following forms:
61///
Daniel Dunbare3d60232009-07-16 21:32:51 +000062/// '#': Silence information about the changes to the command line arguments.
63///
Daniel Dunbarec9587d2009-04-17 01:54:00 +000064/// '^': Add FOO as a new argument at the beginning of the command line.
65///
66/// '+': Add FOO as a new argument at the end of the command line.
67///
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000068/// 's/XXX/YYY/': Substitute the regular expression XXX with YYY in the command
69/// line.
Daniel Dunbarec9587d2009-04-17 01:54:00 +000070///
71/// 'xOPTION': Removes all instances of the literal argument OPTION.
72///
73/// 'XOPTION': Removes all instances of the literal argument OPTION,
74/// and the following argument.
75///
76/// 'Ox': Removes all flags matching 'O' or 'O[sz0-9]' and adds 'Ox'
77/// at the end of the command line.
Daniel Dunbare3d60232009-07-16 21:32:51 +000078///
79/// \param OS - The stream to write edit information to.
80/// \param Args - The vector of command line arguments.
81/// \param Edit - The override command to perform.
82/// \param SavedStrings - Set to use for storing string representations.
Chris Lattner30bc7e82010-03-30 05:39:52 +000083static void ApplyOneQAOverride(llvm::raw_ostream &OS,
Daniel Dunbare5d69672010-07-20 02:47:40 +000084 llvm::SmallVectorImpl<const char*> &Args,
Chris Lattner30bc7e82010-03-30 05:39:52 +000085 llvm::StringRef Edit,
86 std::set<std::string> &SavedStrings) {
Daniel Dunbarec9587d2009-04-17 01:54:00 +000087 // This does not need to be efficient.
88
Daniel Dunbar237a31b2009-07-17 18:10:27 +000089 if (Edit[0] == '^') {
90 const char *Str =
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000091 SaveStringInSet(SavedStrings, Edit.substr(1));
Daniel Dunbar237a31b2009-07-17 18:10:27 +000092 OS << "### Adding argument " << Str << " at beginning\n";
93 Args.insert(Args.begin() + 1, Str);
94 } else if (Edit[0] == '+') {
95 const char *Str =
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000096 SaveStringInSet(SavedStrings, Edit.substr(1));
Daniel Dunbar237a31b2009-07-17 18:10:27 +000097 OS << "### Adding argument " << Str << " at end\n";
98 Args.push_back(Str);
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +000099 } else if (Edit[0] == 's' && Edit[1] == '/' && Edit.endswith("/") &&
100 Edit.slice(2, Edit.size()-1).find('/') != llvm::StringRef::npos) {
101 llvm::StringRef MatchPattern = Edit.substr(2).split('/').first;
102 llvm::StringRef ReplPattern = Edit.substr(2).split('/').second;
103 ReplPattern = ReplPattern.slice(0, ReplPattern.size()-1);
104
105 for (unsigned i = 1, e = Args.size(); i != e; ++i) {
106 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
107
108 if (Repl != Args[i]) {
109 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
110 Args[i] = SaveStringInSet(SavedStrings, Repl);
111 }
112 }
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000113 } else if (Edit[0] == 'x' || Edit[0] == 'X') {
114 std::string Option = Edit.substr(1, std::string::npos);
115 for (unsigned i = 1; i < Args.size();) {
116 if (Option == Args[i]) {
117 OS << "### Deleting argument " << Args[i] << '\n';
118 Args.erase(Args.begin() + i);
119 if (Edit[0] == 'X') {
120 if (i < Args.size()) {
121 OS << "### Deleting argument " << Args[i] << '\n';
122 Args.erase(Args.begin() + i);
123 } else
124 OS << "### Invalid X edit, end of command line!\n";
125 }
126 } else
127 ++i;
128 }
129 } else if (Edit[0] == 'O') {
130 for (unsigned i = 1; i < Args.size();) {
131 const char *A = Args[i];
132 if (A[0] == '-' && A[1] == 'O' &&
133 (A[2] == '\0' ||
134 (A[3] == '\0' && (A[2] == 's' || A[2] == 'z' ||
135 ('0' <= A[2] && A[2] <= '9'))))) {
136 OS << "### Deleting argument " << Args[i] << '\n';
137 Args.erase(Args.begin() + i);
138 } else
139 ++i;
140 }
141 OS << "### Adding argument " << Edit << " at end\n";
Daniel Dunbar0de9a7b2010-02-17 21:00:34 +0000142 Args.push_back(SaveStringInSet(SavedStrings, '-' + Edit.str()));
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000143 } else {
144 OS << "### Unrecognized edit: " << Edit << "\n";
145 }
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000146}
147
148/// ApplyQAOverride - Apply a comma separate list of edits to the
149/// input argument lists. See ApplyOneQAOverride.
Daniel Dunbare5d69672010-07-20 02:47:40 +0000150static void ApplyQAOverride(llvm::SmallVectorImpl<const char*> &Args,
Chris Lattner30bc7e82010-03-30 05:39:52 +0000151 const char *OverrideStr,
152 std::set<std::string> &SavedStrings) {
Daniel Dunbare3d60232009-07-16 21:32:51 +0000153 llvm::raw_ostream *OS = &llvm::errs();
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000154
Daniel Dunbare3d60232009-07-16 21:32:51 +0000155 if (OverrideStr[0] == '#') {
156 ++OverrideStr;
157 OS = &llvm::nulls();
158 }
159
160 *OS << "### QA_OVERRIDE_GCC3_OPTIONS: " << OverrideStr << "\n";
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000161
162 // This does not need to be efficient.
163
164 const char *S = OverrideStr;
165 while (*S) {
166 const char *End = ::strchr(S, ' ');
167 if (!End)
168 End = S + strlen(S);
169 if (End != S)
Daniel Dunbare3d60232009-07-16 21:32:51 +0000170 ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings);
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000171 S = End;
172 if (*S != '\0')
173 ++S;
174 }
175}
176
Daniel Dunbarc88aa792009-11-30 07:18:13 +0000177extern int cc1_main(const char **ArgBegin, const char **ArgEnd,
Daniel Dunbar545c2812009-11-29 20:58:32 +0000178 const char *Argv0, void *MainAddr);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000179extern int cc1as_main(const char **ArgBegin, const char **ArgEnd,
180 const char *Argv0, void *MainAddr);
Daniel Dunbar217acbf2009-11-19 07:37:51 +0000181
Rafael Espindola8a1af322010-07-19 15:20:12 +0000182static void ExpandArgsFromBuf(const char *Arg,
Daniel Dunbare5d69672010-07-20 02:47:40 +0000183 llvm::SmallVectorImpl<const char*> &ArgVector,
Rafael Espindola8a1af322010-07-19 15:20:12 +0000184 std::set<std::string> &SavedStrings) {
185 const char *FName = Arg + 1;
Michael J. Spencer4eeebc42010-12-16 03:28:14 +0000186 llvm::OwningPtr<llvm::MemoryBuffer> MemBuf;
187 if (llvm::MemoryBuffer::getFile(FName, MemBuf)) {
Rafael Espindola8a1af322010-07-19 15:20:12 +0000188 ArgVector.push_back(SaveStringInSet(SavedStrings, Arg));
189 return;
190 }
191
192 const char *Buf = MemBuf->getBufferStart();
193 char InQuote = ' ';
194 std::string CurArg;
195
196 for (const char *P = Buf; ; ++P) {
197 if (*P == '\0' || (isspace(*P) && InQuote == ' ')) {
198 if (!CurArg.empty()) {
199
200 if (CurArg[0] != '@') {
201 ArgVector.push_back(SaveStringInSet(SavedStrings, CurArg));
202 } else {
203 ExpandArgsFromBuf(CurArg.c_str(), ArgVector, SavedStrings);
204 }
205
206 CurArg = "";
207 }
208 if (*P == '\0')
209 break;
210 else
211 continue;
212 }
213
214 if (isspace(*P)) {
215 if (InQuote != ' ')
216 CurArg.push_back(*P);
217 continue;
218 }
219
220 if (*P == '"' || *P == '\'') {
221 if (InQuote == *P)
222 InQuote = ' ';
223 else if (InQuote == ' ')
224 InQuote = *P;
225 else
226 CurArg.push_back(*P);
227 continue;
228 }
229
230 if (*P == '\\') {
231 ++P;
232 if (*P != '\0')
233 CurArg.push_back(*P);
234 continue;
235 }
236 CurArg.push_back(*P);
237 }
Rafael Espindola8a1af322010-07-19 15:20:12 +0000238}
239
240static void ExpandArgv(int argc, const char **argv,
Daniel Dunbare5d69672010-07-20 02:47:40 +0000241 llvm::SmallVectorImpl<const char*> &ArgVector,
Rafael Espindola8a1af322010-07-19 15:20:12 +0000242 std::set<std::string> &SavedStrings) {
243 for (int i = 0; i < argc; ++i) {
244 const char *Arg = argv[i];
245 if (Arg[0] != '@') {
246 ArgVector.push_back(SaveStringInSet(SavedStrings, std::string(Arg)));
247 continue;
248 }
249
250 ExpandArgsFromBuf(Arg, ArgVector, SavedStrings);
251 }
252}
253
254int main(int argc_, const char **argv_) {
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000255 llvm::sys::PrintStackTraceOnErrorSignal();
Rafael Espindola8a1af322010-07-19 15:20:12 +0000256 llvm::PrettyStackTraceProgram X(argc_, argv_);
257
258 std::set<std::string> SavedStrings;
Daniel Dunbare5d69672010-07-20 02:47:40 +0000259 llvm::SmallVector<const char*, 256> argv;
Rafael Espindola8a1af322010-07-19 15:20:12 +0000260
261 ExpandArgv(argc_, argv_, argv, SavedStrings);
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000262
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000263 // Handle -cc1 integrated tools.
Rafael Espindola8a1af322010-07-19 15:20:12 +0000264 if (argv.size() > 1 && llvm::StringRef(argv[1]).startswith("-cc1")) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000265 llvm::StringRef Tool = argv[1] + 4;
266
267 if (Tool == "")
Daniel Dunbare5d69672010-07-20 02:47:40 +0000268 return cc1_main(argv.data()+2, argv.data()+argv.size(), argv[0],
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000269 (void*) (intptr_t) GetExecutablePath);
270 if (Tool == "as")
Daniel Dunbare5d69672010-07-20 02:47:40 +0000271 return cc1as_main(argv.data()+2, argv.data()+argv.size(), argv[0],
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000272 (void*) (intptr_t) GetExecutablePath);
273
274 // Reject unknown tools.
275 llvm::errs() << "error: unknown integrated tool '" << Tool << "'\n";
276 return 1;
277 }
Daniel Dunbarc88aa792009-11-30 07:18:13 +0000278
Rafael Espindola0f4c59c2009-12-04 19:31:58 +0000279 bool CanonicalPrefixes = true;
Rafael Espindola8a1af322010-07-19 15:20:12 +0000280 for (int i = 1, size = argv.size(); i < size; ++i) {
Rafael Espindola0f4c59c2009-12-04 19:31:58 +0000281 if (llvm::StringRef(argv[i]) == "-no-canonical-prefixes") {
282 CanonicalPrefixes = false;
283 break;
284 }
285 }
286
287 llvm::sys::Path Path = GetExecutablePath(argv[0], CanonicalPrefixes);
288
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000289 TextDiagnosticPrinter *DiagClient
290 = new TextDiagnosticPrinter(llvm::errs(), DiagnosticOptions());
Michael J. Spencerd5b08be2010-12-18 04:13:32 +0000291 DiagClient->setPrefix(llvm::sys::path::stem(Path.str()));
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000292 llvm::IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
293 Diagnostic Diags(DiagID, DiagClient);
Daniel Dunbar510d7322009-03-18 02:11:26 +0000294
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000295#ifdef CLANG_IS_PRODUCTION
Kovarththanan Rajaratnam240c7342010-03-08 18:33:04 +0000296 const bool IsProduction = true;
Daniel Dunbar5d93ed32010-04-01 18:21:41 +0000297# ifdef CLANGXX_IS_PRODUCTION
298 const bool CXXIsProduction = true;
299# else
300 const bool CXXIsProduction = false;
301# endif
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000302#else
Kovarththanan Rajaratnam240c7342010-03-08 18:33:04 +0000303 const bool IsProduction = false;
Daniel Dunbar5d93ed32010-04-01 18:21:41 +0000304 const bool CXXIsProduction = false;
Daniel Dunbarf44c5852009-09-22 22:31:13 +0000305#endif
Daniel Dunbar0bbad512010-07-19 00:44:04 +0000306 Driver TheDriver(Path.str(), llvm::sys::getHostTriple(),
Daniel Dunbar5d93ed32010-04-01 18:21:41 +0000307 "a.out", IsProduction, CXXIsProduction,
308 Diags);
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000309
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000310 // Attempt to find the original path used to invoke the driver, to determine
311 // the installed path. We do this manually, because we want to support that
312 // path being a symlink.
Michael J. Spencerfbfd1802010-12-21 16:45:57 +0000313 {
314 llvm::SmallString<128> InstalledPath(argv[0]);
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000315
Michael J. Spencerfbfd1802010-12-21 16:45:57 +0000316 // Do a PATH lookup, if there are no directory components.
317 if (llvm::sys::path::filename(InstalledPath) == InstalledPath) {
318 llvm::sys::Path Tmp = llvm::sys::Program::FindProgramByName(
319 llvm::sys::path::filename(InstalledPath.str()));
320 if (!Tmp.empty())
321 InstalledPath = Tmp.str();
322 }
323 llvm::sys::fs::make_absolute(InstalledPath);
324 InstalledPath = llvm::sys::path::parent_path(InstalledPath);
325 bool exists;
326 if (!llvm::sys::fs::exists(InstalledPath.str(), exists) && exists)
327 TheDriver.setInstalledDir(InstalledPath);
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000328 }
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000329
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000330 // Check for ".*++" or ".*++-[^-]*" to determine if we are a C++
331 // compiler. This matches things like "c++", "clang++", and "clang++-1.1".
332 //
333 // Note that we intentionally want to use argv[0] here, to support "clang++"
334 // being a symlink.
Benjamin Kramerd5dc9f32009-11-20 11:49:06 +0000335 //
336 // We use *argv instead of argv[0] to work around a bogus g++ warning.
Rafael Espindola8a1af322010-07-19 15:20:12 +0000337 const char *progname = argv_[0];
Michael J. Spencerd5b08be2010-12-18 04:13:32 +0000338 std::string ProgName(llvm::sys::path::stem(progname));
Daniel Dunbare26bd902009-11-11 10:10:25 +0000339 if (llvm::StringRef(ProgName).endswith("++") ||
Daniel Dunbar0dea4be2009-12-25 20:21:23 +0000340 llvm::StringRef(ProgName).rsplit('-').first.endswith("++")) {
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000341 TheDriver.CCCIsCXX = true;
Daniel Dunbar0dea4be2009-12-25 20:21:23 +0000342 }
Daniel Dunbar8fa01c82009-11-10 18:47:41 +0000343
Daniel Dunbar4c00fcd2010-03-20 08:01:59 +0000344 // Handle CC_PRINT_OPTIONS and CC_PRINT_OPTIONS_FILE.
345 TheDriver.CCPrintOptions = !!::getenv("CC_PRINT_OPTIONS");
346 if (TheDriver.CCPrintOptions)
347 TheDriver.CCPrintOptionsFilename = ::getenv("CC_PRINT_OPTIONS_FILE");
348
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000349 // Handle QA_OVERRIDE_GCC3_OPTIONS and CCC_ADD_ARGS, used for editing a
350 // command line behind the scenes.
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000351 if (const char *OverrideStr = ::getenv("QA_OVERRIDE_GCC3_OPTIONS")) {
352 // FIXME: Driver shouldn't take extra initial argument.
Rafael Espindola8a1af322010-07-19 15:20:12 +0000353 ApplyQAOverride(argv, OverrideStr, SavedStrings);
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000354 } else if (const char *Cur = ::getenv("CCC_ADD_ARGS")) {
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000355 // FIXME: Driver shouldn't take extra initial argument.
Rafael Espindola8a1af322010-07-19 15:20:12 +0000356 std::vector<const char*> ExtraArgs;
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000357
358 for (;;) {
359 const char *Next = strchr(Cur, ',');
Daniel Dunbar237a31b2009-07-17 18:10:27 +0000360
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000361 if (Next) {
Rafael Espindola8a1af322010-07-19 15:20:12 +0000362 ExtraArgs.push_back(SaveStringInSet(SavedStrings,
363 std::string(Cur, Next)));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000364 Cur = Next + 1;
365 } else {
Daniel Dunbarec9587d2009-04-17 01:54:00 +0000366 if (*Cur != '\0')
Rafael Espindola8a1af322010-07-19 15:20:12 +0000367 ExtraArgs.push_back(SaveStringInSet(SavedStrings, Cur));
Daniel Dunbare5be6da2009-04-01 19:08:46 +0000368 break;
369 }
370 }
371
Daniel Dunbare5d69672010-07-20 02:47:40 +0000372 argv.insert(&argv[1], ExtraArgs.begin(), ExtraArgs.end());
Rafael Espindola06e35d32010-07-18 22:03:55 +0000373 }
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000374
Daniel Dunbar5633c1e2010-08-01 22:29:47 +0000375 llvm::OwningPtr<Compilation> C(TheDriver.BuildCompilation(argv.size(),
376 &argv[0]));
Daniel Dunbaraf96def2009-03-21 00:40:53 +0000377 int Res = 0;
378 if (C.get())
Daniel Dunbarc88a88f2009-07-01 20:03:04 +0000379 Res = TheDriver.ExecuteCompilation(*C);
Chris Lattner30bc7e82010-03-30 05:39:52 +0000380
381 // If any timers were active but haven't been destroyed yet, print their
382 // results now. This happens in -disable-free mode.
383 llvm::TimerGroup::printAll(llvm::errs());
384
Daniel Dunbar8f25c792009-03-18 01:38:48 +0000385 llvm::llvm_shutdown();
386
Daniel Dunbaraf96def2009-03-21 00:40:53 +0000387 return Res;
Daniel Dunbar3ede8d02009-03-02 19:59:07 +0000388}