2018-08-14 18:03:32 +02:00
|
|
|
//===--- Compiler.cpp --------------------------------------------*- C++-*-===//
|
2017-12-04 14:49:59 +01:00
|
|
|
//
|
2019-01-19 09:50:56 +01: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
|
2017-12-04 14:49:59 +01:00
|
|
|
//
|
2018-08-14 18:03:32 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2017-12-14 22:22:03 +01:00
|
|
|
|
2017-12-04 14:49:59 +01:00
|
|
|
#include "Compiler.h"
|
[clangd] Move non-clang base pieces into separate support/ lib. NFCI
Summary:
This enforces layering, reduces a sprawling clangd/ directory, and makes life
easier for embedders.
Reviewers: kbobyrev
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, usaxena95, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D79014
2020-04-28 17:49:17 +02:00
|
|
|
#include "support/Logger.h"
|
2017-12-04 14:49:59 +01:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
|
|
|
#include "clang/Lex/PreprocessorOptions.h"
|
2019-04-04 14:56:03 +02:00
|
|
|
#include "clang/Serialization/PCHContainerOperations.h"
|
2018-02-12 13:48:51 +01:00
|
|
|
#include "llvm/Support/Format.h"
|
|
|
|
#include "llvm/Support/FormatVariadic.h"
|
2017-12-04 14:49:59 +01:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
|
2018-02-12 13:48:51 +01:00
|
|
|
void IgnoreDiagnostics::log(DiagnosticsEngine::Level DiagLevel,
|
|
|
|
const clang::Diagnostic &Info) {
|
2018-11-02 13:51:26 +01:00
|
|
|
// FIXME: format lazily, in case vlog is off.
|
2019-01-07 16:45:19 +01:00
|
|
|
llvm::SmallString<64> Message;
|
2018-02-12 13:48:51 +01:00
|
|
|
Info.FormatDiagnostic(Message);
|
|
|
|
|
2019-01-07 16:45:19 +01:00
|
|
|
llvm::SmallString<64> Location;
|
2018-02-12 13:48:51 +01:00
|
|
|
if (Info.hasSourceManager() && Info.getLocation().isValid()) {
|
|
|
|
auto &SourceMgr = Info.getSourceManager();
|
|
|
|
auto Loc = SourceMgr.getFileLoc(Info.getLocation());
|
2019-01-07 16:45:19 +01:00
|
|
|
llvm::raw_svector_ostream OS(Location);
|
2018-02-12 13:48:51 +01:00
|
|
|
Loc.print(OS, SourceMgr);
|
|
|
|
OS << ":";
|
|
|
|
}
|
|
|
|
|
2018-11-02 13:51:26 +01:00
|
|
|
clangd::vlog("Ignored diagnostic. {0}{1}", Location, Message);
|
2018-02-12 13:48:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void IgnoreDiagnostics::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
|
|
|
|
const clang::Diagnostic &Info) {
|
|
|
|
IgnoreDiagnostics::log(DiagLevel, Info);
|
|
|
|
}
|
|
|
|
|
2019-01-22 10:58:53 +01:00
|
|
|
std::unique_ptr<CompilerInvocation>
|
2020-05-09 12:34:06 +02:00
|
|
|
buildCompilerInvocation(const ParseInputs &Inputs, clang::DiagnosticConsumer &D,
|
2019-11-28 19:22:50 +01:00
|
|
|
std::vector<std::string> *CC1Args) {
|
2019-01-22 10:58:53 +01:00
|
|
|
std::vector<const char *> ArgStrs;
|
|
|
|
for (const auto &S : Inputs.CompileCommand.CommandLine)
|
|
|
|
ArgStrs.push_back(S.c_str());
|
|
|
|
|
2020-06-04 18:26:52 +02:00
|
|
|
auto VFS = Inputs.FSProvider->getFileSystem();
|
|
|
|
if (VFS->setCurrentWorkingDirectory(Inputs.CompileCommand.Directory)) {
|
2019-01-22 10:58:53 +01:00
|
|
|
log("Couldn't set working directory when creating compiler invocation.");
|
|
|
|
// We proceed anyway, our lit-tests rely on results for non-existing working
|
|
|
|
// dirs.
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::IntrusiveRefCntPtr<DiagnosticsEngine> CommandLineDiagsEngine =
|
[clangd] Surface errors from command-line parsing
Summary:
Those errors are exposed at the first character of a file,
for a lack of a better place.
Previously, all errors were stored inside the AST and report
accordingly. However, errors in command-line argument parsing could
result in failure to produce the AST, so we need an alternative ways to
report those errors.
We take the following approach in this patch:
- buildCompilerInvocation() now requires an explicit DiagnosticConsumer.
- TUScheduler and TestTU now collect the diagnostics produced when
parsing command line arguments.
If pasing of the AST failed, diagnostics are reported via a new
ParsingCallbacks::onFailedAST method.
If parsing of the AST succeeded, any errors produced during
command-line parsing are stored alongside the AST inside the
ParsedAST instance and reported as previously by calling the
ParsingCallbacks::onMainAST method;
- The client code that uses ClangdServer's DiagnosticConsumer
does not need to change, it will receive new diagnostics in the
onDiagnosticsReady() callback
Errors produced when parsing command-line arguments are collected using
the same StoreDiags class that is used to collect all other errors. They
are recognized by their location being invalid. IIUC, the location is
invalid as there is no source manager at this point, it is created at a
later stage.
Although technically we might also get diagnostics that mention the
command-line arguments FileID with after the source manager was created
(and they have valid source locations), we choose to not handle those
and they are dropped as not coming from the main file. AFAICT, those
diagnostics should always be notes, therefore it's safe to drop them
without loosing too much information.
Reviewers: kadircet
Reviewed By: kadircet
Subscribers: nridge, javed.absar, MaskRay, jkorous, arphaman, cfe-commits, gribozavr
Tags: #clang
Differential Revision: https://reviews.llvm.org/D66759
llvm-svn: 370177
2019-08-28 11:24:55 +02:00
|
|
|
CompilerInstance::createDiagnostics(new DiagnosticOptions, &D, false);
|
2019-01-22 10:58:53 +01:00
|
|
|
std::unique_ptr<CompilerInvocation> CI = createInvocationFromCommandLine(
|
2020-06-04 18:26:52 +02:00
|
|
|
ArgStrs, CommandLineDiagsEngine, std::move(VFS),
|
2019-11-28 19:22:50 +01:00
|
|
|
/*ShouldRecoverOnErrors=*/true, CC1Args);
|
2019-01-22 10:58:53 +01:00
|
|
|
if (!CI)
|
|
|
|
return nullptr;
|
|
|
|
// createInvocationFromCommandLine sets DisableFree.
|
|
|
|
CI->getFrontendOpts().DisableFree = false;
|
|
|
|
CI->getLangOpts()->CommentOpts.ParseAllComments = true;
|
2019-11-07 09:53:07 +01:00
|
|
|
CI->getLangOpts()->RetainCommentsFromSystemHeaders = true;
|
2020-04-24 23:52:19 +02:00
|
|
|
|
|
|
|
// Disable any dependency outputting, we don't want to generate files or write
|
|
|
|
// to stdout/stderr.
|
|
|
|
CI->getDependencyOutputOpts().ShowIncludesDest =
|
|
|
|
ShowIncludesDestination::None;
|
|
|
|
CI->getDependencyOutputOpts().OutputFile.clear();
|
|
|
|
CI->getDependencyOutputOpts().HeaderIncludeOutputFile.clear();
|
|
|
|
CI->getDependencyOutputOpts().DOTOutputFile.clear();
|
|
|
|
CI->getDependencyOutputOpts().ModuleDependencyOutputDir.clear();
|
2020-05-09 12:34:06 +02:00
|
|
|
|
|
|
|
// Disable any pch generation/usage operations. Since serialized preamble
|
|
|
|
// format is unstable, using an incompatible one might result in unexpected
|
|
|
|
// behaviours, including crashes.
|
|
|
|
CI->getPreprocessorOpts().ImplicitPCHInclude.clear();
|
|
|
|
CI->getPreprocessorOpts().PrecompiledPreambleBytes = {0, false};
|
|
|
|
CI->getPreprocessorOpts().PCHThroughHeader.clear();
|
|
|
|
CI->getPreprocessorOpts().PCHWithHdrStop = false;
|
|
|
|
CI->getPreprocessorOpts().PCHWithHdrStopCreate = false;
|
2020-05-14 13:08:59 +02:00
|
|
|
|
|
|
|
// Recovery expression currently only works for C++.
|
2020-05-19 15:21:50 +02:00
|
|
|
if (CI->getLangOpts()->CPlusPlus) {
|
2020-05-14 13:08:59 +02:00
|
|
|
CI->getLangOpts()->RecoveryAST = Inputs.Opts.BuildRecoveryAST;
|
2020-05-19 15:21:50 +02:00
|
|
|
CI->getLangOpts()->RecoveryASTType = Inputs.Opts.PreserveRecoveryASTType;
|
|
|
|
}
|
2019-01-22 10:58:53 +01:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2019-01-07 16:45:19 +01:00
|
|
|
std::unique_ptr<CompilerInstance>
|
|
|
|
prepareCompilerInstance(std::unique_ptr<clang::CompilerInvocation> CI,
|
|
|
|
const PrecompiledPreamble *Preamble,
|
|
|
|
std::unique_ptr<llvm::MemoryBuffer> Buffer,
|
|
|
|
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS,
|
|
|
|
DiagnosticConsumer &DiagsClient) {
|
2017-12-04 14:49:59 +01:00
|
|
|
assert(VFS && "VFS is null");
|
|
|
|
assert(!CI->getPreprocessorOpts().RetainRemappedFileBuffers &&
|
|
|
|
"Setting RetainRemappedFileBuffers to true will cause a memory leak "
|
|
|
|
"of ContentsBuffer");
|
|
|
|
|
|
|
|
// NOTE: we use Buffer.get() when adding remapped files, so we have to make
|
|
|
|
// sure it will be released if no error is emitted.
|
|
|
|
if (Preamble) {
|
2018-01-18 16:17:00 +01:00
|
|
|
Preamble->OverridePreamble(*CI, VFS, Buffer.get());
|
2017-12-04 14:49:59 +01:00
|
|
|
} else {
|
|
|
|
CI->getPreprocessorOpts().addRemappedFile(
|
|
|
|
CI->getFrontendOpts().Inputs[0].getFile(), Buffer.get());
|
|
|
|
}
|
|
|
|
|
2019-08-15 01:52:23 +02:00
|
|
|
auto Clang = std::make_unique<CompilerInstance>(
|
2019-04-04 14:56:03 +02:00
|
|
|
std::make_shared<PCHContainerOperations>());
|
2017-12-04 14:49:59 +01:00
|
|
|
Clang->setInvocation(std::move(CI));
|
|
|
|
Clang->createDiagnostics(&DiagsClient, false);
|
|
|
|
|
|
|
|
if (auto VFSWithRemapping = createVFSFromCompilerInvocation(
|
|
|
|
Clang->getInvocation(), Clang->getDiagnostics(), VFS))
|
|
|
|
VFS = VFSWithRemapping;
|
2019-03-26 23:18:52 +01:00
|
|
|
Clang->createFileManager(VFS);
|
2017-12-04 14:49:59 +01:00
|
|
|
|
|
|
|
Clang->setTarget(TargetInfo::CreateTargetInfo(
|
|
|
|
Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
|
|
|
|
if (!Clang->hasTarget())
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
// RemappedFileBuffers will handle the lifetime of the Buffer pointer,
|
|
|
|
// release it.
|
|
|
|
Buffer.release();
|
|
|
|
return Clang;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|