1 //===--- Compiler.cpp --------------------------------------------*- C++-*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "Compiler.h" 10 #include "support/Logger.h" 11 #include "clang/Basic/TargetInfo.h" 12 #include "clang/Lex/PreprocessorOptions.h" 13 #include "clang/Serialization/PCHContainerOperations.h" 14 #include "llvm/ADT/StringRef.h" 15 #include "llvm/Support/Format.h" 16 #include "llvm/Support/FormatVariadic.h" 17 18 namespace clang { 19 namespace clangd { 20 21 void IgnoreDiagnostics::log(DiagnosticsEngine::Level DiagLevel, 22 const clang::Diagnostic &Info) { 23 // FIXME: format lazily, in case vlog is off. 24 llvm::SmallString<64> Message; 25 Info.FormatDiagnostic(Message); 26 27 llvm::SmallString<64> Location; 28 if (Info.hasSourceManager() && Info.getLocation().isValid()) { 29 auto &SourceMgr = Info.getSourceManager(); 30 auto Loc = SourceMgr.getFileLoc(Info.getLocation()); 31 llvm::raw_svector_ostream OS(Location); 32 Loc.print(OS, SourceMgr); 33 OS << ":"; 34 } 35 36 clangd::vlog("Ignored diagnostic. {0}{1}", Location, Message); 37 } 38 39 void IgnoreDiagnostics::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, 40 const clang::Diagnostic &Info) { 41 IgnoreDiagnostics::log(DiagLevel, Info); 42 } 43 44 std::unique_ptr<CompilerInvocation> 45 buildCompilerInvocation(const ParseInputs &Inputs, clang::DiagnosticConsumer &D, 46 std::vector<std::string> *CC1Args) { 47 std::vector<const char *> ArgStrs; 48 for (const auto &S : Inputs.CompileCommand.CommandLine) 49 ArgStrs.push_back(S.c_str()); 50 51 auto VFS = Inputs.TFS->view(Inputs.CompileCommand.Directory); 52 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> CommandLineDiagsEngine = 53 CompilerInstance::createDiagnostics(new DiagnosticOptions, &D, false); 54 std::unique_ptr<CompilerInvocation> CI = createInvocationFromCommandLine( 55 ArgStrs, CommandLineDiagsEngine, std::move(VFS), 56 /*ShouldRecoverOnErrors=*/true, CC1Args); 57 if (!CI) 58 return nullptr; 59 // createInvocationFromCommandLine sets DisableFree. 60 CI->getFrontendOpts().DisableFree = false; 61 CI->getLangOpts()->CommentOpts.ParseAllComments = true; 62 CI->getLangOpts()->RetainCommentsFromSystemHeaders = true; 63 // Disable "clang -verify" diagnostics, they are rarely useful in clangd, and 64 // our compiler invocation set-up doesn't seem to work with it (leading 65 // assertions in VerifyDiagnosticConsumer). 66 CI->getDiagnosticOpts().VerifyDiagnostics = false; 67 68 // Disable any dependency outputting, we don't want to generate files or write 69 // to stdout/stderr. 70 CI->getDependencyOutputOpts().ShowIncludesDest = 71 ShowIncludesDestination::None; 72 CI->getDependencyOutputOpts().OutputFile.clear(); 73 CI->getDependencyOutputOpts().HeaderIncludeOutputFile.clear(); 74 CI->getDependencyOutputOpts().DOTOutputFile.clear(); 75 CI->getDependencyOutputOpts().ModuleDependencyOutputDir.clear(); 76 77 // Disable any pch generation/usage operations. Since serialized preamble 78 // format is unstable, using an incompatible one might result in unexpected 79 // behaviours, including crashes. 80 CI->getPreprocessorOpts().ImplicitPCHInclude.clear(); 81 CI->getPreprocessorOpts().PrecompiledPreambleBytes = {0, false}; 82 CI->getPreprocessorOpts().PCHThroughHeader.clear(); 83 CI->getPreprocessorOpts().PCHWithHdrStop = false; 84 CI->getPreprocessorOpts().PCHWithHdrStopCreate = false; 85 // Don't crash on `#pragma clang __debug parser_crash` 86 CI->getPreprocessorOpts().DisablePragmaDebugCrash = true; 87 88 return CI; 89 } 90 91 std::unique_ptr<CompilerInstance> 92 prepareCompilerInstance(std::unique_ptr<clang::CompilerInvocation> CI, 93 const PrecompiledPreamble *Preamble, 94 std::unique_ptr<llvm::MemoryBuffer> Buffer, 95 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 96 DiagnosticConsumer &DiagsClient) { 97 assert(VFS && "VFS is null"); 98 assert(!CI->getPreprocessorOpts().RetainRemappedFileBuffers && 99 "Setting RetainRemappedFileBuffers to true will cause a memory leak " 100 "of ContentsBuffer"); 101 102 // NOTE: we use Buffer.get() when adding remapped files, so we have to make 103 // sure it will be released if no error is emitted. 104 if (Preamble) { 105 Preamble->OverridePreamble(*CI, VFS, Buffer.get()); 106 } else { 107 CI->getPreprocessorOpts().addRemappedFile( 108 CI->getFrontendOpts().Inputs[0].getFile(), Buffer.get()); 109 } 110 111 auto Clang = std::make_unique<CompilerInstance>( 112 std::make_shared<PCHContainerOperations>()); 113 Clang->setInvocation(std::move(CI)); 114 Clang->createDiagnostics(&DiagsClient, false); 115 116 if (auto VFSWithRemapping = createVFSFromCompilerInvocation( 117 Clang->getInvocation(), Clang->getDiagnostics(), VFS)) 118 VFS = VFSWithRemapping; 119 Clang->createFileManager(VFS); 120 121 if (!Clang->createTarget()) 122 return nullptr; 123 124 // RemappedFileBuffers will handle the lifetime of the Buffer pointer, 125 // release it. 126 Buffer.release(); 127 return Clang; 128 } 129 130 } // namespace clangd 131 } // namespace clang 132