2009-03-03 03:59:07 +08:00
|
|
|
//===-- driver.cpp - Clang GCC-Compatible Driver --------------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-03-03 03:59:07 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-03-03 13:55:11 +08:00
|
|
|
// This is the entry point to the clang driver; it is a thin wrapper
|
|
|
|
// for functionality in the Driver clang library.
|
2009-03-03 03:59:07 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-04-14 04:57:57 +08:00
|
|
|
#include "clang/Driver/Driver.h"
|
2012-10-24 06:26:28 +08:00
|
|
|
#include "clang/Basic/DiagnosticOptions.h"
|
Improve behavior in the case of stack exhaustion.
Summary:
Clang performs various recursive operations (such as template instantiation),
and may use non-trivial amounts of stack space in each recursive step (for
instance, due to recursive AST walks). While we try to keep the stack space
used by such steps to a minimum and we have explicit limits on the number of
such steps we perform, it's impractical to guarantee that we won't blow out the
stack on deeply recursive template instantiations on complex ASTs, even with
only a moderately high instantiation depth limit.
The user experience in these cases is generally terrible: we crash with
no hint of what went wrong. Under this patch, we attempt to do better:
* Detect when the stack is nearly exhausted, and produce a warning with a
nice template instantiation backtrace, telling the user that we might
run slowly or crash.
* For cases where we're forced to trigger recursive template
instantiation in arbitrarily-deeply-nested contexts, check whether
we're nearly out of stack space and allocate a new stack (by spawning
a new thread) after producing the warning.
Reviewers: rnk, aaron.ballman
Subscribers: mgorny, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D66361
llvm-svn: 369940
2019-08-27 02:18:07 +08:00
|
|
|
#include "clang/Basic/Stack.h"
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
#include "clang/Config/config.h"
|
2009-03-03 03:59:07 +08:00
|
|
|
#include "clang/Driver/Compilation.h"
|
2012-12-26 05:56:27 +08:00
|
|
|
#include "clang/Driver/DriverDiagnostic.h"
|
2012-12-04 17:25:21 +08:00
|
|
|
#include "clang/Driver/Options.h"
|
2015-09-26 01:44:31 +08:00
|
|
|
#include "clang/Driver/ToolChain.h"
|
2014-10-24 06:20:11 +08:00
|
|
|
#include "clang/Frontend/ChainedDiagnosticConsumer.h"
|
2015-01-14 19:23:58 +08:00
|
|
|
#include "clang/Frontend/CompilerInvocation.h"
|
2014-10-24 06:20:11 +08:00
|
|
|
#include "clang/Frontend/SerializedDiagnosticPrinter.h"
|
2010-02-25 11:23:43 +08:00
|
|
|
#include "clang/Frontend/TextDiagnosticPrinter.h"
|
2012-03-14 04:09:56 +08:00
|
|
|
#include "clang/Frontend/Utils.h"
|
2011-03-23 12:04:01 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2009-03-18 10:11:26 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-07-19 23:20:12 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2013-06-15 01:17:23 +08:00
|
|
|
#include "llvm/Option/ArgList.h"
|
|
|
|
#include "llvm/Option/OptTable.h"
|
|
|
|
#include "llvm/Option/Option.h"
|
2020-03-13 20:15:20 +08:00
|
|
|
#include "llvm/Support/BuryPointer.h"
|
2013-07-19 04:00:53 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
#include "llvm/Support/CrashRecoveryContext.h"
|
2010-07-19 23:20:12 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-12-22 00:45:57 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2012-12-04 17:25:21 +08:00
|
|
|
#include "llvm/Support/Host.h"
|
2018-04-14 04:57:57 +08:00
|
|
|
#include "llvm/Support/InitLLVM.h"
|
2010-11-30 02:12:39 +08:00
|
|
|
#include "llvm/Support/Path.h"
|
2020-03-26 18:26:59 +08:00
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2013-10-07 15:33:27 +08:00
|
|
|
#include "llvm/Support/Process.h"
|
2010-11-30 02:12:39 +08:00
|
|
|
#include "llvm/Support/Program.h"
|
2012-12-04 17:25:21 +08:00
|
|
|
#include "llvm/Support/Regex.h"
|
2010-11-30 02:12:39 +08:00
|
|
|
#include "llvm/Support/Signals.h"
|
2015-06-13 20:50:07 +08:00
|
|
|
#include "llvm/Support/StringSaver.h"
|
2011-08-25 02:09:14 +08:00
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2012-12-04 17:25:21 +08:00
|
|
|
#include "llvm/Support/Timer.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2014-03-09 19:36:40 +08:00
|
|
|
#include <memory>
|
2016-07-19 03:02:11 +08:00
|
|
|
#include <set>
|
2014-06-13 01:19:42 +08:00
|
|
|
#include <system_error>
|
2009-03-12 16:55:43 +08:00
|
|
|
using namespace clang;
|
2009-03-05 04:49:20 +08:00
|
|
|
using namespace clang::driver;
|
2013-06-15 01:17:23 +08:00
|
|
|
using namespace llvm::opt;
|
2009-03-03 03:59:07 +08:00
|
|
|
|
2013-06-26 13:03:40 +08:00
|
|
|
std::string GetExecutablePath(const char *Argv0, bool CanonicalPrefixes) {
|
2017-06-17 06:40:18 +08:00
|
|
|
if (!CanonicalPrefixes) {
|
|
|
|
SmallString<128> ExecutablePath(Argv0);
|
|
|
|
// Do a PATH lookup if Argv0 isn't a valid path.
|
|
|
|
if (!llvm::sys::fs::exists(ExecutablePath))
|
|
|
|
if (llvm::ErrorOr<std::string> P =
|
|
|
|
llvm::sys::findProgramByName(ExecutablePath))
|
|
|
|
ExecutablePath = *P;
|
2020-01-29 03:23:46 +08:00
|
|
|
return std::string(ExecutablePath.str());
|
2017-06-17 06:40:18 +08:00
|
|
|
}
|
2009-12-05 03:31:58 +08:00
|
|
|
|
2009-03-19 04:25:53 +08:00
|
|
|
// This just needs to be some symbol in the binary; C++ doesn't
|
|
|
|
// allow taking the address of ::main however.
|
|
|
|
void *P = (void*) (intptr_t) GetExecutablePath;
|
2013-06-26 13:03:40 +08:00
|
|
|
return llvm::sys::fs::getMainExecutable(Argv0, P);
|
2009-03-19 04:25:53 +08:00
|
|
|
}
|
|
|
|
|
2014-08-16 03:23:53 +08:00
|
|
|
static const char *GetStableCStr(std::set<std::string> &SavedStrings,
|
|
|
|
StringRef S) {
|
2020-01-29 03:23:46 +08:00
|
|
|
return SavedStrings.insert(std::string(S)).first->c_str();
|
2009-04-17 09:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ApplyQAOverride - Apply a list of edits to the input argument lists.
|
|
|
|
///
|
|
|
|
/// The input string is a space separate list of edits to perform,
|
|
|
|
/// they are applied in order to the input argument lists. Edits
|
|
|
|
/// should be one of the following forms:
|
|
|
|
///
|
2009-07-17 05:32:51 +08:00
|
|
|
/// '#': Silence information about the changes to the command line arguments.
|
|
|
|
///
|
2009-04-17 09:54:00 +08:00
|
|
|
/// '^': Add FOO as a new argument at the beginning of the command line.
|
|
|
|
///
|
|
|
|
/// '+': Add FOO as a new argument at the end of the command line.
|
|
|
|
///
|
2010-02-18 05:00:34 +08:00
|
|
|
/// 's/XXX/YYY/': Substitute the regular expression XXX with YYY in the command
|
|
|
|
/// line.
|
2009-04-17 09:54:00 +08:00
|
|
|
///
|
|
|
|
/// 'xOPTION': Removes all instances of the literal argument OPTION.
|
|
|
|
///
|
|
|
|
/// 'XOPTION': Removes all instances of the literal argument OPTION,
|
|
|
|
/// and the following argument.
|
|
|
|
///
|
|
|
|
/// 'Ox': Removes all flags matching 'O' or 'O[sz0-9]' and adds 'Ox'
|
|
|
|
/// at the end of the command line.
|
2009-07-17 05:32:51 +08:00
|
|
|
///
|
|
|
|
/// \param OS - The stream to write edit information to.
|
|
|
|
/// \param Args - The vector of command line arguments.
|
|
|
|
/// \param Edit - The override command to perform.
|
|
|
|
/// \param SavedStrings - Set to use for storing string representations.
|
2011-07-23 18:55:15 +08:00
|
|
|
static void ApplyOneQAOverride(raw_ostream &OS,
|
|
|
|
SmallVectorImpl<const char*> &Args,
|
|
|
|
StringRef Edit,
|
2010-03-30 13:39:52 +08:00
|
|
|
std::set<std::string> &SavedStrings) {
|
2009-04-17 09:54:00 +08:00
|
|
|
// This does not need to be efficient.
|
|
|
|
|
2009-07-18 02:10:27 +08:00
|
|
|
if (Edit[0] == '^') {
|
|
|
|
const char *Str =
|
2014-08-16 03:23:53 +08:00
|
|
|
GetStableCStr(SavedStrings, Edit.substr(1));
|
2009-07-18 02:10:27 +08:00
|
|
|
OS << "### Adding argument " << Str << " at beginning\n";
|
|
|
|
Args.insert(Args.begin() + 1, Str);
|
|
|
|
} else if (Edit[0] == '+') {
|
|
|
|
const char *Str =
|
2014-08-16 03:23:53 +08:00
|
|
|
GetStableCStr(SavedStrings, Edit.substr(1));
|
2009-07-18 02:10:27 +08:00
|
|
|
OS << "### Adding argument " << Str << " at end\n";
|
|
|
|
Args.push_back(Str);
|
2010-02-18 05:00:34 +08:00
|
|
|
} else if (Edit[0] == 's' && Edit[1] == '/' && Edit.endswith("/") &&
|
2011-07-23 18:55:15 +08:00
|
|
|
Edit.slice(2, Edit.size()-1).find('/') != StringRef::npos) {
|
|
|
|
StringRef MatchPattern = Edit.substr(2).split('/').first;
|
|
|
|
StringRef ReplPattern = Edit.substr(2).split('/').second;
|
2010-02-18 05:00:34 +08:00
|
|
|
ReplPattern = ReplPattern.slice(0, ReplPattern.size()-1);
|
|
|
|
|
|
|
|
for (unsigned i = 1, e = Args.size(); i != e; ++i) {
|
2014-08-23 03:29:30 +08:00
|
|
|
// Ignore end-of-line response file markers
|
|
|
|
if (Args[i] == nullptr)
|
|
|
|
continue;
|
2010-02-18 05:00:34 +08:00
|
|
|
std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
|
|
|
|
|
|
|
|
if (Repl != Args[i]) {
|
|
|
|
OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
|
2014-08-16 03:23:53 +08:00
|
|
|
Args[i] = GetStableCStr(SavedStrings, Repl);
|
2010-02-18 05:00:34 +08:00
|
|
|
}
|
|
|
|
}
|
2009-07-18 02:10:27 +08:00
|
|
|
} else if (Edit[0] == 'x' || Edit[0] == 'X') {
|
2016-02-13 21:42:54 +08:00
|
|
|
auto Option = Edit.substr(1);
|
2009-07-18 02:10:27 +08:00
|
|
|
for (unsigned i = 1; i < Args.size();) {
|
|
|
|
if (Option == Args[i]) {
|
|
|
|
OS << "### Deleting argument " << Args[i] << '\n';
|
|
|
|
Args.erase(Args.begin() + i);
|
|
|
|
if (Edit[0] == 'X') {
|
|
|
|
if (i < Args.size()) {
|
|
|
|
OS << "### Deleting argument " << Args[i] << '\n';
|
|
|
|
Args.erase(Args.begin() + i);
|
|
|
|
} else
|
|
|
|
OS << "### Invalid X edit, end of command line!\n";
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
} else if (Edit[0] == 'O') {
|
|
|
|
for (unsigned i = 1; i < Args.size();) {
|
|
|
|
const char *A = Args[i];
|
2014-08-23 03:29:30 +08:00
|
|
|
// Ignore end-of-line response file markers
|
|
|
|
if (A == nullptr)
|
|
|
|
continue;
|
2009-07-18 02:10:27 +08:00
|
|
|
if (A[0] == '-' && A[1] == 'O' &&
|
|
|
|
(A[2] == '\0' ||
|
|
|
|
(A[3] == '\0' && (A[2] == 's' || A[2] == 'z' ||
|
|
|
|
('0' <= A[2] && A[2] <= '9'))))) {
|
|
|
|
OS << "### Deleting argument " << Args[i] << '\n';
|
|
|
|
Args.erase(Args.begin() + i);
|
|
|
|
} else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
OS << "### Adding argument " << Edit << " at end\n";
|
2014-08-16 03:23:53 +08:00
|
|
|
Args.push_back(GetStableCStr(SavedStrings, '-' + Edit.str()));
|
2009-07-18 02:10:27 +08:00
|
|
|
} else {
|
|
|
|
OS << "### Unrecognized edit: " << Edit << "\n";
|
|
|
|
}
|
2009-04-17 09:54:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// ApplyQAOverride - Apply a comma separate list of edits to the
|
|
|
|
/// input argument lists. See ApplyOneQAOverride.
|
2011-07-23 18:55:15 +08:00
|
|
|
static void ApplyQAOverride(SmallVectorImpl<const char*> &Args,
|
2010-03-30 13:39:52 +08:00
|
|
|
const char *OverrideStr,
|
|
|
|
std::set<std::string> &SavedStrings) {
|
2011-07-23 18:55:15 +08:00
|
|
|
raw_ostream *OS = &llvm::errs();
|
2009-07-18 02:10:27 +08:00
|
|
|
|
2009-07-17 05:32:51 +08:00
|
|
|
if (OverrideStr[0] == '#') {
|
|
|
|
++OverrideStr;
|
|
|
|
OS = &llvm::nulls();
|
|
|
|
}
|
|
|
|
|
2014-01-15 09:41:52 +08:00
|
|
|
*OS << "### CCC_OVERRIDE_OPTIONS: " << OverrideStr << "\n";
|
2009-04-17 09:54:00 +08:00
|
|
|
|
|
|
|
// This does not need to be efficient.
|
|
|
|
|
|
|
|
const char *S = OverrideStr;
|
|
|
|
while (*S) {
|
|
|
|
const char *End = ::strchr(S, ' ');
|
|
|
|
if (!End)
|
|
|
|
End = S + strlen(S);
|
|
|
|
if (End != S)
|
2009-07-17 05:32:51 +08:00
|
|
|
ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings);
|
2009-04-17 09:54:00 +08:00
|
|
|
S = End;
|
|
|
|
if (*S != '\0')
|
|
|
|
++S;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-16 05:38:36 +08:00
|
|
|
extern int cc1_main(ArrayRef<const char *> Argv, const char *Argv0,
|
|
|
|
void *MainAddr);
|
|
|
|
extern int cc1as_main(ArrayRef<const char *> Argv, const char *Argv0,
|
|
|
|
void *MainAddr);
|
2018-04-07 08:03:27 +08:00
|
|
|
extern int cc1gen_reproducer_main(ArrayRef<const char *> Argv,
|
|
|
|
const char *Argv0, void *MainAddr);
|
2009-11-19 15:37:51 +08:00
|
|
|
|
2017-08-29 13:22:26 +08:00
|
|
|
static void insertTargetAndModeArgs(const ParsedClangName &NameParts,
|
2015-09-26 01:44:31 +08:00
|
|
|
SmallVectorImpl<const char *> &ArgVector,
|
|
|
|
std::set<std::string> &SavedStrings) {
|
2017-09-20 23:22:27 +08:00
|
|
|
// Put target and mode arguments at the start of argument list so that
|
|
|
|
// arguments specified in command line could override them. Avoid putting
|
|
|
|
// them at index 0, as an option like '-cc1' must remain the first.
|
2018-03-20 00:13:43 +08:00
|
|
|
int InsertionPoint = 0;
|
|
|
|
if (ArgVector.size() > 0)
|
2017-09-20 23:22:27 +08:00
|
|
|
++InsertionPoint;
|
|
|
|
|
2017-08-29 13:22:26 +08:00
|
|
|
if (NameParts.DriverMode) {
|
2015-09-26 01:44:31 +08:00
|
|
|
// Add the mode flag to the arguments.
|
2018-03-20 00:13:43 +08:00
|
|
|
ArgVector.insert(ArgVector.begin() + InsertionPoint,
|
2017-08-29 13:22:26 +08:00
|
|
|
GetStableCStr(SavedStrings, NameParts.DriverMode));
|
2015-07-16 06:42:37 +08:00
|
|
|
}
|
2014-10-18 01:07:59 +08:00
|
|
|
|
2017-08-29 13:22:26 +08:00
|
|
|
if (NameParts.TargetIsValid) {
|
|
|
|
const char *arr[] = {"-target", GetStableCStr(SavedStrings,
|
|
|
|
NameParts.TargetPrefix)};
|
2018-03-20 00:13:43 +08:00
|
|
|
ArgVector.insert(ArgVector.begin() + InsertionPoint,
|
|
|
|
std::begin(arr), std::end(arr));
|
2011-03-17 04:15:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 02:16:32 +08:00
|
|
|
static void getCLEnvVarOptions(std::string &EnvValue, llvm::StringSaver &Saver,
|
|
|
|
SmallVectorImpl<const char *> &Opts) {
|
|
|
|
llvm::cl::TokenizeWindowsCommandLine(EnvValue, Saver, Opts);
|
|
|
|
// The first instance of '#' should be replaced with '=' in each option.
|
|
|
|
for (const char *Opt : Opts)
|
|
|
|
if (char *NumberSignPtr = const_cast<char *>(::strchr(Opt, '#')))
|
|
|
|
*NumberSignPtr = '=';
|
|
|
|
}
|
|
|
|
|
2014-08-16 04:59:03 +08:00
|
|
|
static void SetBackdoorDriverOutputsFromEnvVars(Driver &TheDriver) {
|
2014-08-16 02:50:00 +08:00
|
|
|
// Handle CC_PRINT_OPTIONS and CC_PRINT_OPTIONS_FILE.
|
|
|
|
TheDriver.CCPrintOptions = !!::getenv("CC_PRINT_OPTIONS");
|
|
|
|
if (TheDriver.CCPrintOptions)
|
|
|
|
TheDriver.CCPrintOptionsFilename = ::getenv("CC_PRINT_OPTIONS_FILE");
|
|
|
|
|
|
|
|
// Handle CC_PRINT_HEADERS and CC_PRINT_HEADERS_FILE.
|
|
|
|
TheDriver.CCPrintHeaders = !!::getenv("CC_PRINT_HEADERS");
|
|
|
|
if (TheDriver.CCPrintHeaders)
|
|
|
|
TheDriver.CCPrintHeadersFilename = ::getenv("CC_PRINT_HEADERS_FILE");
|
|
|
|
|
|
|
|
// Handle CC_LOG_DIAGNOSTICS and CC_LOG_DIAGNOSTICS_FILE.
|
|
|
|
TheDriver.CCLogDiagnostics = !!::getenv("CC_LOG_DIAGNOSTICS");
|
|
|
|
if (TheDriver.CCLogDiagnostics)
|
|
|
|
TheDriver.CCLogDiagnosticsFilename = ::getenv("CC_LOG_DIAGNOSTICS_FILE");
|
|
|
|
}
|
|
|
|
|
2014-08-16 02:58:09 +08:00
|
|
|
static void FixupDiagPrefixExeName(TextDiagnosticPrinter *DiagClient,
|
|
|
|
const std::string &Path) {
|
|
|
|
// If the clang binary happens to be named cl.exe for compatibility reasons,
|
|
|
|
// use clang-cl.exe as the prefix to avoid confusion between clang and MSVC.
|
2018-08-23 07:53:39 +08:00
|
|
|
StringRef ExeBasename(llvm::sys::path::stem(Path));
|
|
|
|
if (ExeBasename.equals_lower("cl"))
|
|
|
|
ExeBasename = "clang-cl";
|
2020-01-29 03:23:46 +08:00
|
|
|
DiagClient->setPrefix(std::string(ExeBasename));
|
2014-08-16 02:58:09 +08:00
|
|
|
}
|
|
|
|
|
2014-08-16 02:58:12 +08:00
|
|
|
// This lets us create the DiagnosticsEngine with a properly-filled-out
|
|
|
|
// DiagnosticOptions instance.
|
|
|
|
static DiagnosticOptions *
|
2020-01-15 23:45:02 +08:00
|
|
|
CreateAndPopulateDiagOpts(ArrayRef<const char *> argv, bool &UseNewCC1Process) {
|
2014-08-16 02:58:12 +08:00
|
|
|
auto *DiagOpts = new DiagnosticOptions;
|
|
|
|
unsigned MissingArgIndex, MissingArgCount;
|
2019-09-04 22:26:28 +08:00
|
|
|
InputArgList Args = getDriverOptTable().ParseArgs(
|
|
|
|
argv.slice(1), MissingArgIndex, MissingArgCount);
|
2014-08-16 02:58:12 +08:00
|
|
|
// We ignore MissingArgCount and the return value of ParseDiagnosticArgs.
|
|
|
|
// Any errors that would be diagnosed here will also be diagnosed later,
|
|
|
|
// when the DiagnosticsEngine actually exists.
|
2015-06-23 06:07:27 +08:00
|
|
|
(void)ParseDiagnosticArgs(*DiagOpts, Args);
|
2020-01-15 23:45:02 +08:00
|
|
|
|
|
|
|
UseNewCC1Process =
|
|
|
|
Args.hasFlag(clang::driver::options::OPT_fno_integrated_cc1,
|
|
|
|
clang::driver::options::OPT_fintegrated_cc1,
|
|
|
|
/*Default=*/CLANG_SPAWN_CC1);
|
|
|
|
|
2014-08-16 02:58:12 +08:00
|
|
|
return DiagOpts;
|
|
|
|
}
|
|
|
|
|
2014-08-16 02:58:15 +08:00
|
|
|
static void SetInstallDir(SmallVectorImpl<const char *> &argv,
|
2015-08-06 01:07:33 +08:00
|
|
|
Driver &TheDriver, bool CanonicalPrefixes) {
|
2014-08-16 02:58:15 +08:00
|
|
|
// Attempt to find the original path used to invoke the driver, to determine
|
|
|
|
// the installed path. We do this manually, because we want to support that
|
|
|
|
// path being a symlink.
|
|
|
|
SmallString<128> InstalledPath(argv[0]);
|
|
|
|
|
|
|
|
// Do a PATH lookup, if there are no directory components.
|
2014-11-08 05:30:32 +08:00
|
|
|
if (llvm::sys::path::filename(InstalledPath) == InstalledPath)
|
|
|
|
if (llvm::ErrorOr<std::string> Tmp = llvm::sys::findProgramByName(
|
|
|
|
llvm::sys::path::filename(InstalledPath.str())))
|
2014-11-04 09:30:55 +08:00
|
|
|
InstalledPath = *Tmp;
|
2015-08-06 01:07:33 +08:00
|
|
|
|
|
|
|
// FIXME: We don't actually canonicalize this, we just make it absolute.
|
|
|
|
if (CanonicalPrefixes)
|
|
|
|
llvm::sys::fs::make_absolute(InstalledPath);
|
|
|
|
|
2016-01-16 06:29:34 +08:00
|
|
|
StringRef InstalledPathParent(llvm::sys::path::parent_path(InstalledPath));
|
|
|
|
if (llvm::sys::fs::exists(InstalledPathParent))
|
|
|
|
TheDriver.setInstalledDir(InstalledPathParent);
|
2014-08-16 02:58:15 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 05:53:38 +08:00
|
|
|
static int ExecuteCC1Tool(SmallVectorImpl<const char *> &ArgV) {
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
// If we call the cc1 tool from the clangDriver library (through
|
2020-01-15 23:45:02 +08:00
|
|
|
// Driver::CC1Main), we need to clean up the options usage count. The options
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
// are currently global, and they might have been used previously by the
|
|
|
|
// driver.
|
|
|
|
llvm::cl::ResetAllOptionOccurrences();
|
2020-01-23 05:53:38 +08:00
|
|
|
|
|
|
|
llvm::BumpPtrAllocator A;
|
|
|
|
llvm::StringSaver Saver(A);
|
|
|
|
llvm::cl::ExpandResponseFiles(Saver, &llvm::cl::TokenizeGNUCommandLine, ArgV,
|
|
|
|
/*MarkEOLs=*/false);
|
|
|
|
StringRef Tool = ArgV[1];
|
|
|
|
void *GetExecutablePathVP = (void *)(intptr_t)GetExecutablePath;
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
if (Tool == "-cc1")
|
2020-01-23 05:53:38 +08:00
|
|
|
return cc1_main(makeArrayRef(ArgV).slice(2), ArgV[0], GetExecutablePathVP);
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
if (Tool == "-cc1as")
|
2020-01-23 05:53:38 +08:00
|
|
|
return cc1as_main(makeArrayRef(ArgV).slice(2), ArgV[0],
|
|
|
|
GetExecutablePathVP);
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
if (Tool == "-cc1gen-reproducer")
|
2020-01-23 05:53:38 +08:00
|
|
|
return cc1gen_reproducer_main(makeArrayRef(ArgV).slice(2), ArgV[0],
|
|
|
|
GetExecutablePathVP);
|
2014-08-16 03:23:47 +08:00
|
|
|
// Reject unknown tools.
|
2018-01-16 05:05:40 +08:00
|
|
|
llvm::errs() << "error: unknown integrated tool '" << Tool << "'. "
|
|
|
|
<< "Valid tools include '-cc1' and '-cc1as'.\n";
|
2014-08-16 03:23:47 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-07-19 23:20:12 +08:00
|
|
|
int main(int argc_, const char **argv_) {
|
Improve behavior in the case of stack exhaustion.
Summary:
Clang performs various recursive operations (such as template instantiation),
and may use non-trivial amounts of stack space in each recursive step (for
instance, due to recursive AST walks). While we try to keep the stack space
used by such steps to a minimum and we have explicit limits on the number of
such steps we perform, it's impractical to guarantee that we won't blow out the
stack on deeply recursive template instantiations on complex ASTs, even with
only a moderately high instantiation depth limit.
The user experience in these cases is generally terrible: we crash with
no hint of what went wrong. Under this patch, we attempt to do better:
* Detect when the stack is nearly exhausted, and produce a warning with a
nice template instantiation backtrace, telling the user that we might
run slowly or crash.
* For cases where we're forced to trigger recursive template
instantiation in arbitrarily-deeply-nested contexts, check whether
we're nearly out of stack space and allocate a new stack (by spawning
a new thread) after producing the warning.
Reviewers: rnk, aaron.ballman
Subscribers: mgorny, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D66361
llvm-svn: 369940
2019-08-27 02:18:07 +08:00
|
|
|
noteBottomOfStack();
|
2018-04-14 04:57:57 +08:00
|
|
|
llvm::InitLLVM X(argc_, argv_);
|
2020-03-26 18:26:59 +08:00
|
|
|
llvm::setBugReportMsg("PLEASE submit a bug report to " BUG_REPORT_URL
|
|
|
|
" and include the crash backtrace, preprocessed "
|
|
|
|
"source, and associated run script.\n");
|
2018-04-14 04:57:57 +08:00
|
|
|
SmallVector<const char *, 256> argv(argv_, argv_ + argc_);
|
2010-07-19 23:20:12 +08:00
|
|
|
|
2014-10-07 07:52:23 +08:00
|
|
|
if (llvm::sys::Process::FixupStandardFileDescriptors())
|
|
|
|
return 1;
|
|
|
|
|
2015-09-26 01:44:31 +08:00
|
|
|
llvm::InitializeAllTargets();
|
2017-08-29 13:22:26 +08:00
|
|
|
auto TargetAndMode = ToolChain::getTargetAndModeFromProgramName(argv[0]);
|
2015-07-16 06:42:37 +08:00
|
|
|
|
2015-06-13 20:50:07 +08:00
|
|
|
llvm::BumpPtrAllocator A;
|
2015-08-13 09:07:06 +08:00
|
|
|
llvm::StringSaver Saver(A);
|
2009-03-03 03:59:07 +08:00
|
|
|
|
2015-07-16 06:42:37 +08:00
|
|
|
// Parse response files using the GNU syntax, unless we're in CL mode. There
|
|
|
|
// are two ways to put clang in CL compatibility mode: argv[0] is either
|
|
|
|
// clang-cl or cl, or --driver-mode=cl is on the command line. The normal
|
|
|
|
// command line parsing can't happen until after response file parsing, so we
|
|
|
|
// have to manually search for a --driver-mode=cl argument the hard way.
|
|
|
|
// Finally, our -cc1 tools don't care which tokenization mode we use because
|
|
|
|
// response files written by clang will tokenize the same way in either mode.
|
2016-04-20 08:33:06 +08:00
|
|
|
bool ClangCLMode = false;
|
2017-08-29 13:22:26 +08:00
|
|
|
if (StringRef(TargetAndMode.DriverMode).equals("--driver-mode=cl") ||
|
2019-03-31 16:48:19 +08:00
|
|
|
llvm::find_if(argv, [](const char *F) {
|
2015-07-16 06:42:37 +08:00
|
|
|
return F && strcmp(F, "--driver-mode=cl") == 0;
|
|
|
|
}) != argv.end()) {
|
2016-04-20 08:33:06 +08:00
|
|
|
ClangCLMode = true;
|
2015-07-16 06:42:37 +08:00
|
|
|
}
|
2016-04-26 05:15:49 +08:00
|
|
|
enum { Default, POSIX, Windows } RSPQuoting = Default;
|
|
|
|
for (const char *F : argv) {
|
|
|
|
if (strcmp(F, "--rsp-quoting=posix") == 0)
|
|
|
|
RSPQuoting = POSIX;
|
|
|
|
else if (strcmp(F, "--rsp-quoting=windows") == 0)
|
|
|
|
RSPQuoting = Windows;
|
|
|
|
}
|
2015-07-16 06:42:37 +08:00
|
|
|
|
2014-08-23 03:29:30 +08:00
|
|
|
// Determines whether we want nullptr markers in argv to indicate response
|
2016-04-20 08:33:06 +08:00
|
|
|
// files end-of-lines. We only use this for the /LINK driver argument with
|
|
|
|
// clang-cl.exe on Windows.
|
2016-04-26 05:15:49 +08:00
|
|
|
bool MarkEOLs = ClangCLMode;
|
2016-04-20 08:33:06 +08:00
|
|
|
|
2016-04-26 05:15:49 +08:00
|
|
|
llvm::cl::TokenizerCallback Tokenizer;
|
|
|
|
if (RSPQuoting == Windows || (RSPQuoting == Default && ClangCLMode))
|
2016-04-20 08:33:06 +08:00
|
|
|
Tokenizer = &llvm::cl::TokenizeWindowsCommandLine;
|
2016-04-26 05:15:49 +08:00
|
|
|
else
|
|
|
|
Tokenizer = &llvm::cl::TokenizeGNUCommandLine;
|
2016-04-20 08:33:06 +08:00
|
|
|
|
|
|
|
if (MarkEOLs && argv.size() > 1 && StringRef(argv[1]).startswith("-cc1"))
|
2014-08-23 03:29:30 +08:00
|
|
|
MarkEOLs = false;
|
2015-07-16 06:42:37 +08:00
|
|
|
llvm::cl::ExpandResponseFiles(Saver, Tokenizer, argv, MarkEOLs);
|
2014-08-23 03:29:30 +08:00
|
|
|
|
|
|
|
// Handle -cc1 integrated tools, even if -cc1 was expanded from a response
|
|
|
|
// file.
|
|
|
|
auto FirstArg = std::find_if(argv.begin() + 1, argv.end(),
|
|
|
|
[](const char *A) { return A != nullptr; });
|
|
|
|
if (FirstArg != argv.end() && StringRef(*FirstArg).startswith("-cc1")) {
|
|
|
|
// If -cc1 came from a response file, remove the EOL sentinels.
|
|
|
|
if (MarkEOLs) {
|
|
|
|
auto newEnd = std::remove(argv.begin(), argv.end(), nullptr);
|
|
|
|
argv.resize(newEnd - argv.begin());
|
|
|
|
}
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
return ExecuteCC1Tool(argv);
|
2014-08-23 03:29:30 +08:00
|
|
|
}
|
2009-11-30 15:18:13 +08:00
|
|
|
|
2020-01-15 23:45:02 +08:00
|
|
|
// Handle options that need handling before the real command line parsing in
|
|
|
|
// Driver::BuildCompilation()
|
2009-12-05 03:31:58 +08:00
|
|
|
bool CanonicalPrefixes = true;
|
2010-07-19 23:20:12 +08:00
|
|
|
for (int i = 1, size = argv.size(); i < size; ++i) {
|
2014-08-23 03:29:30 +08:00
|
|
|
// Skip end-of-line response file markers
|
|
|
|
if (argv[i] == nullptr)
|
|
|
|
continue;
|
2011-07-23 18:55:15 +08:00
|
|
|
if (StringRef(argv[i]) == "-no-canonical-prefixes") {
|
2009-12-05 03:31:58 +08:00
|
|
|
CanonicalPrefixes = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 02:16:32 +08:00
|
|
|
// Handle CL and _CL_ which permits additional command line options to be
|
|
|
|
// prepended or appended.
|
2016-09-06 18:48:27 +08:00
|
|
|
if (ClangCLMode) {
|
2015-08-11 02:16:32 +08:00
|
|
|
// Arguments in "CL" are prepended.
|
|
|
|
llvm::Optional<std::string> OptCL = llvm::sys::Process::GetEnv("CL");
|
|
|
|
if (OptCL.hasValue()) {
|
|
|
|
SmallVector<const char *, 8> PrependedOpts;
|
|
|
|
getCLEnvVarOptions(OptCL.getValue(), Saver, PrependedOpts);
|
|
|
|
|
|
|
|
// Insert right after the program name to prepend to the argument list.
|
|
|
|
argv.insert(argv.begin() + 1, PrependedOpts.begin(), PrependedOpts.end());
|
|
|
|
}
|
|
|
|
// Arguments in "_CL_" are appended.
|
|
|
|
llvm::Optional<std::string> Opt_CL_ = llvm::sys::Process::GetEnv("_CL_");
|
|
|
|
if (Opt_CL_.hasValue()) {
|
|
|
|
SmallVector<const char *, 8> AppendedOpts;
|
|
|
|
getCLEnvVarOptions(Opt_CL_.getValue(), Saver, AppendedOpts);
|
|
|
|
|
|
|
|
// Insert at the end of the argument list to append.
|
|
|
|
argv.append(AppendedOpts.begin(), AppendedOpts.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-13 20:50:07 +08:00
|
|
|
std::set<std::string> SavedStrings;
|
2014-01-15 09:41:52 +08:00
|
|
|
// Handle CCC_OVERRIDE_OPTIONS, used for editing a command line behind the
|
2014-02-23 08:11:56 +08:00
|
|
|
// scenes.
|
2014-01-15 09:41:52 +08:00
|
|
|
if (const char *OverrideStr = ::getenv("CCC_OVERRIDE_OPTIONS")) {
|
2013-02-22 02:56:55 +08:00
|
|
|
// FIXME: Driver shouldn't take extra initial argument.
|
|
|
|
ApplyQAOverride(argv, OverrideStr, SavedStrings);
|
|
|
|
}
|
|
|
|
|
2013-06-26 13:03:40 +08:00
|
|
|
std::string Path = GetExecutablePath(argv[0], CanonicalPrefixes);
|
2009-12-05 03:31:58 +08:00
|
|
|
|
2020-01-15 23:45:02 +08:00
|
|
|
// Whether the cc1 tool should be called inside the current process, or if we
|
|
|
|
// should spawn a new clang subprocess (old behavior).
|
|
|
|
// Not having an additional process saves some execution time of Windows,
|
|
|
|
// and makes debugging and profiling easier.
|
|
|
|
bool UseNewCC1Process;
|
|
|
|
|
2014-08-16 02:58:12 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts =
|
2020-01-15 23:45:02 +08:00
|
|
|
CreateAndPopulateDiagOpts(argv, UseNewCC1Process);
|
2014-08-16 02:58:12 +08:00
|
|
|
|
2010-08-19 06:29:43 +08:00
|
|
|
TextDiagnosticPrinter *DiagClient
|
2012-10-24 06:26:28 +08:00
|
|
|
= new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts);
|
2014-08-16 02:58:09 +08:00
|
|
|
FixupDiagPrefixExeName(DiagClient, Path);
|
2013-09-04 09:37:22 +08:00
|
|
|
|
2012-02-20 22:00:23 +08:00
|
|
|
IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
|
2012-03-14 04:09:56 +08:00
|
|
|
|
2012-10-24 06:26:28 +08:00
|
|
|
DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient);
|
2014-10-24 06:20:11 +08:00
|
|
|
|
|
|
|
if (!DiagOpts->DiagnosticSerializationFile.empty()) {
|
|
|
|
auto SerializedConsumer =
|
|
|
|
clang::serialized_diags::create(DiagOpts->DiagnosticSerializationFile,
|
|
|
|
&*DiagOpts, /*MergeChildRecords=*/true);
|
|
|
|
Diags.setClient(new ChainedDiagnosticConsumer(
|
2014-11-18 07:46:02 +08:00
|
|
|
Diags.takeClient(), std::move(SerializedConsumer)));
|
2014-10-24 06:20:11 +08:00
|
|
|
}
|
|
|
|
|
2013-01-15 09:21:53 +08:00
|
|
|
ProcessWarningOptions(Diags, *DiagOpts, /*ReportDiags=*/false);
|
2009-03-18 10:11:26 +08:00
|
|
|
|
2014-05-16 06:26:36 +08:00
|
|
|
Driver TheDriver(Path, llvm::sys::getDefaultTargetTriple(), Diags);
|
2015-08-06 01:07:33 +08:00
|
|
|
SetInstallDir(argv, TheDriver, CanonicalPrefixes);
|
2017-08-29 13:22:26 +08:00
|
|
|
TheDriver.setTargetAndMode(TargetAndMode);
|
2010-08-02 06:29:51 +08:00
|
|
|
|
2017-08-29 13:22:26 +08:00
|
|
|
insertTargetAndModeArgs(TargetAndMode, argv, SavedStrings);
|
2011-03-07 07:31:01 +08:00
|
|
|
|
2014-08-16 04:59:03 +08:00
|
|
|
SetBackdoorDriverOutputsFromEnvVars(TheDriver);
|
2011-04-08 02:01:20 +08:00
|
|
|
|
2020-01-15 23:45:02 +08:00
|
|
|
if (!UseNewCC1Process) {
|
|
|
|
TheDriver.CC1Main = &ExecuteCC1Tool;
|
|
|
|
// Ensure the CC1Command actually catches cc1 crashes
|
|
|
|
llvm::CrashRecoveryContext::Enable();
|
|
|
|
}
|
|
|
|
|
2014-03-08 04:03:18 +08:00
|
|
|
std::unique_ptr<Compilation> C(TheDriver.BuildCompilation(argv));
|
2017-05-24 22:57:17 +08:00
|
|
|
int Res = 1;
|
2020-03-13 20:15:20 +08:00
|
|
|
bool IsCrash = false;
|
2017-06-30 21:21:27 +08:00
|
|
|
if (C && !C->containsError()) {
|
2017-05-24 22:57:17 +08:00
|
|
|
SmallVector<std::pair<int, const Command *>, 4> FailingCommands;
|
2013-01-30 04:15:05 +08:00
|
|
|
Res = TheDriver.ExecuteCompilation(*C, FailingCommands);
|
2011-08-03 01:58:04 +08:00
|
|
|
|
2017-05-24 22:57:17 +08:00
|
|
|
// Force a crash to test the diagnostics.
|
|
|
|
if (TheDriver.GenReproducer) {
|
|
|
|
Diags.Report(diag::err_drv_force_crash)
|
2017-04-13 05:46:20 +08:00
|
|
|
<< !::getenv("FORCE_CLANG_DIAGNOSTICS_CRASH");
|
2014-10-21 05:02:05 +08:00
|
|
|
|
2017-05-24 22:57:17 +08:00
|
|
|
// Pretend that every command failed.
|
|
|
|
FailingCommands.clear();
|
|
|
|
for (const auto &J : C->getJobs())
|
|
|
|
if (const Command *C = dyn_cast<Command>(&J))
|
|
|
|
FailingCommands.push_back(std::make_pair(-1, C));
|
|
|
|
}
|
2012-04-21 01:08:59 +08:00
|
|
|
|
2017-05-24 22:57:17 +08:00
|
|
|
for (const auto &P : FailingCommands) {
|
|
|
|
int CommandRes = P.first;
|
|
|
|
const Command *FailingCommand = P.second;
|
|
|
|
if (!Res)
|
|
|
|
Res = CommandRes;
|
|
|
|
|
|
|
|
// If result status is < 0, then the driver command signalled an error.
|
|
|
|
// If result status is 70, then the driver command reported a fatal error.
|
|
|
|
// On Windows, abort will return an exit code of 3. In these cases,
|
|
|
|
// generate additional diagnostic information if possible.
|
2020-03-13 20:15:20 +08:00
|
|
|
IsCrash = CommandRes < 0 || CommandRes == 70;
|
2018-04-28 03:11:14 +08:00
|
|
|
#ifdef _WIN32
|
2020-03-13 20:15:20 +08:00
|
|
|
IsCrash |= CommandRes == 3;
|
2014-07-08 04:23:27 +08:00
|
|
|
#endif
|
2020-03-13 20:15:20 +08:00
|
|
|
if (IsCrash) {
|
2017-05-24 22:57:17 +08:00
|
|
|
TheDriver.generateCompilationDiagnostics(*C, *FailingCommand);
|
|
|
|
break;
|
|
|
|
}
|
2013-01-30 04:15:05 +08:00
|
|
|
}
|
|
|
|
}
|
2011-08-03 01:58:04 +08:00
|
|
|
|
2014-10-24 06:20:11 +08:00
|
|
|
Diags.getClient()->finish();
|
|
|
|
|
2020-03-13 20:15:20 +08:00
|
|
|
if (!UseNewCC1Process && IsCrash) {
|
|
|
|
// When crashing in -fintegrated-cc1 mode, bury the timer pointers, because
|
|
|
|
// the internal linked list might point to already released stack frames.
|
|
|
|
llvm::BuryPointer(llvm::TimerGroup::aquireDefaultGroup());
|
|
|
|
} else {
|
|
|
|
// If any timers were active but haven't been destroyed yet, print their
|
|
|
|
// results now. This happens in -disable-free mode.
|
|
|
|
llvm::TimerGroup::printAll(llvm::errs());
|
|
|
|
llvm::TimerGroup::clearAll();
|
|
|
|
}
|
2014-10-24 06:20:11 +08:00
|
|
|
|
2018-04-28 03:11:14 +08:00
|
|
|
#ifdef _WIN32
|
2012-07-17 13:09:29 +08:00
|
|
|
// Exit status should not be negative on Win32, unless abnormal termination.
|
[Clang][Driver] Re-use the calling process instead of creating a new process for the cc1 invocation
With this patch, the clang tool will now call the -cc1 invocation directly inside the same process. Previously, the -cc1 invocation was creating, and waiting for, a new process.
This patch therefore reduces the number of created processes during a build, thus it reduces build times on platforms where process creation can be costly (Windows) and/or impacted by a antivirus.
It also makes debugging a bit easier, as there's no need to attach to the secondary -cc1 process anymore, breakpoints will be hit inside the same process.
Crashes or signaling inside the -cc1 invocation will have the same side-effect as before, and will be reported through the same means.
This behavior can be controlled at compile-time through the CLANG_SPAWN_CC1 cmake flag, which defaults to OFF. Setting it to ON will revert to the previous behavior, where any -cc1 invocation will create/fork a secondary process.
At run-time, it is also possible to tweak the CLANG_SPAWN_CC1 environment variable. Setting it and will override the compile-time setting. A value of 0 calls -cc1 inside the calling process; a value of 1 will create a secondary process, as before.
Differential Revision: https://reviews.llvm.org/D69825
2020-01-13 23:40:04 +08:00
|
|
|
// Once abnormal termination was caught, negative status should not be
|
2012-07-17 13:09:29 +08:00
|
|
|
// propagated.
|
|
|
|
if (Res < 0)
|
|
|
|
Res = 1;
|
|
|
|
#endif
|
|
|
|
|
2013-01-30 04:15:05 +08:00
|
|
|
// If we have multiple failing commands, we return the result of the first
|
|
|
|
// failing command.
|
2009-03-21 08:40:53 +08:00
|
|
|
return Res;
|
2009-03-03 03:59:07 +08:00
|
|
|
}
|