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 64 // Disable any dependency outputting, we don't want to generate files or write 65 // to stdout/stderr. 66 CI->getDependencyOutputOpts().ShowIncludesDest = 67 ShowIncludesDestination::None; 68 CI->getDependencyOutputOpts().OutputFile.clear(); 69 CI->getDependencyOutputOpts().HeaderIncludeOutputFile.clear(); 70 CI->getDependencyOutputOpts().DOTOutputFile.clear(); 71 CI->getDependencyOutputOpts().ModuleDependencyOutputDir.clear(); 72 73 // Disable any pch generation/usage operations. Since serialized preamble 74 // format is unstable, using an incompatible one might result in unexpected 75 // behaviours, including crashes. 76 CI->getPreprocessorOpts().ImplicitPCHInclude.clear(); 77 CI->getPreprocessorOpts().PrecompiledPreambleBytes = {0, false}; 78 CI->getPreprocessorOpts().PCHThroughHeader.clear(); 79 CI->getPreprocessorOpts().PCHWithHdrStop = false; 80 CI->getPreprocessorOpts().PCHWithHdrStopCreate = false; 81 // Don't crash on `#pragma clang __debug parser_crash` 82 CI->getPreprocessorOpts().DisablePragmaDebugCrash = true; 83 84 // Recovery expression currently only works for C++. 85 if (CI->getLangOpts()->CPlusPlus) { 86 CI->getLangOpts()->RecoveryAST = Inputs.Opts.BuildRecoveryAST; 87 CI->getLangOpts()->RecoveryASTType = Inputs.Opts.PreserveRecoveryASTType; 88 } 89 return CI; 90 } 91 92 std::unique_ptr<CompilerInstance> 93 prepareCompilerInstance(std::unique_ptr<clang::CompilerInvocation> CI, 94 const PrecompiledPreamble *Preamble, 95 std::unique_ptr<llvm::MemoryBuffer> Buffer, 96 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS, 97 DiagnosticConsumer &DiagsClient) { 98 assert(VFS && "VFS is null"); 99 assert(!CI->getPreprocessorOpts().RetainRemappedFileBuffers && 100 "Setting RetainRemappedFileBuffers to true will cause a memory leak " 101 "of ContentsBuffer"); 102 103 // NOTE: we use Buffer.get() when adding remapped files, so we have to make 104 // sure it will be released if no error is emitted. 105 if (Preamble) { 106 Preamble->OverridePreamble(*CI, VFS, Buffer.get()); 107 } else { 108 CI->getPreprocessorOpts().addRemappedFile( 109 CI->getFrontendOpts().Inputs[0].getFile(), Buffer.get()); 110 } 111 112 auto Clang = std::make_unique<CompilerInstance>( 113 std::make_shared<PCHContainerOperations>()); 114 Clang->setInvocation(std::move(CI)); 115 Clang->createDiagnostics(&DiagsClient, false); 116 117 if (auto VFSWithRemapping = createVFSFromCompilerInvocation( 118 Clang->getInvocation(), Clang->getDiagnostics(), VFS)) 119 VFS = VFSWithRemapping; 120 Clang->createFileManager(VFS); 121 122 Clang->setTarget(TargetInfo::CreateTargetInfo( 123 Clang->getDiagnostics(), Clang->getInvocation().TargetOpts)); 124 if (!Clang->hasTarget()) 125 return nullptr; 126 127 // RemappedFileBuffers will handle the lifetime of the Buffer pointer, 128 // release it. 129 Buffer.release(); 130 return Clang; 131 } 132 133 } // namespace clangd 134 } // namespace clang 135