1 //===--- FrontendAction.cpp -----------------------------------------------===// 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 "clang/Frontend/FrontendAction.h" 10 #include "clang/AST/ASTConsumer.h" 11 #include "clang/AST/ASTContext.h" 12 #include "clang/AST/DeclGroup.h" 13 #include "clang/Basic/Builtins.h" 14 #include "clang/Basic/LangStandard.h" 15 #include "clang/Frontend/ASTUnit.h" 16 #include "clang/Frontend/CompilerInstance.h" 17 #include "clang/Frontend/FrontendDiagnostic.h" 18 #include "clang/Frontend/FrontendPluginRegistry.h" 19 #include "clang/Frontend/LayoutOverrideSource.h" 20 #include "clang/Frontend/MultiplexConsumer.h" 21 #include "clang/Frontend/Utils.h" 22 #include "clang/Lex/HeaderSearch.h" 23 #include "clang/Lex/LiteralSupport.h" 24 #include "clang/Lex/Preprocessor.h" 25 #include "clang/Lex/PreprocessorOptions.h" 26 #include "clang/Parse/ParseAST.h" 27 #include "clang/Sema/HLSLExternalSemaSource.h" 28 #include "clang/Serialization/ASTDeserializationListener.h" 29 #include "clang/Serialization/ASTReader.h" 30 #include "clang/Serialization/GlobalModuleIndex.h" 31 #include "llvm/ADT/ScopeExit.h" 32 #include "llvm/Support/BuryPointer.h" 33 #include "llvm/Support/ErrorHandling.h" 34 #include "llvm/Support/FileSystem.h" 35 #include "llvm/Support/Path.h" 36 #include "llvm/Support/Timer.h" 37 #include "llvm/Support/raw_ostream.h" 38 #include <system_error> 39 using namespace clang; 40 41 LLVM_INSTANTIATE_REGISTRY(FrontendPluginRegistry) 42 43 namespace { 44 45 class DelegatingDeserializationListener : public ASTDeserializationListener { 46 ASTDeserializationListener *Previous; 47 bool DeletePrevious; 48 49 public: 50 explicit DelegatingDeserializationListener( 51 ASTDeserializationListener *Previous, bool DeletePrevious) 52 : Previous(Previous), DeletePrevious(DeletePrevious) {} 53 ~DelegatingDeserializationListener() override { 54 if (DeletePrevious) 55 delete Previous; 56 } 57 58 void ReaderInitialized(ASTReader *Reader) override { 59 if (Previous) 60 Previous->ReaderInitialized(Reader); 61 } 62 void IdentifierRead(serialization::IdentID ID, 63 IdentifierInfo *II) override { 64 if (Previous) 65 Previous->IdentifierRead(ID, II); 66 } 67 void TypeRead(serialization::TypeIdx Idx, QualType T) override { 68 if (Previous) 69 Previous->TypeRead(Idx, T); 70 } 71 void DeclRead(serialization::DeclID ID, const Decl *D) override { 72 if (Previous) 73 Previous->DeclRead(ID, D); 74 } 75 void SelectorRead(serialization::SelectorID ID, Selector Sel) override { 76 if (Previous) 77 Previous->SelectorRead(ID, Sel); 78 } 79 void MacroDefinitionRead(serialization::PreprocessedEntityID PPID, 80 MacroDefinitionRecord *MD) override { 81 if (Previous) 82 Previous->MacroDefinitionRead(PPID, MD); 83 } 84 }; 85 86 /// Dumps deserialized declarations. 87 class DeserializedDeclsDumper : public DelegatingDeserializationListener { 88 public: 89 explicit DeserializedDeclsDumper(ASTDeserializationListener *Previous, 90 bool DeletePrevious) 91 : DelegatingDeserializationListener(Previous, DeletePrevious) {} 92 93 void DeclRead(serialization::DeclID ID, const Decl *D) override { 94 llvm::outs() << "PCH DECL: " << D->getDeclKindName(); 95 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) { 96 llvm::outs() << " - "; 97 ND->printQualifiedName(llvm::outs()); 98 } 99 llvm::outs() << "\n"; 100 101 DelegatingDeserializationListener::DeclRead(ID, D); 102 } 103 }; 104 105 /// Checks deserialized declarations and emits error if a name 106 /// matches one given in command-line using -error-on-deserialized-decl. 107 class DeserializedDeclsChecker : public DelegatingDeserializationListener { 108 ASTContext &Ctx; 109 std::set<std::string> NamesToCheck; 110 111 public: 112 DeserializedDeclsChecker(ASTContext &Ctx, 113 const std::set<std::string> &NamesToCheck, 114 ASTDeserializationListener *Previous, 115 bool DeletePrevious) 116 : DelegatingDeserializationListener(Previous, DeletePrevious), Ctx(Ctx), 117 NamesToCheck(NamesToCheck) {} 118 119 void DeclRead(serialization::DeclID ID, const Decl *D) override { 120 if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) 121 if (NamesToCheck.find(ND->getNameAsString()) != NamesToCheck.end()) { 122 unsigned DiagID 123 = Ctx.getDiagnostics().getCustomDiagID(DiagnosticsEngine::Error, 124 "%0 was deserialized"); 125 Ctx.getDiagnostics().Report(Ctx.getFullLoc(D->getLocation()), DiagID) 126 << ND; 127 } 128 129 DelegatingDeserializationListener::DeclRead(ID, D); 130 } 131 }; 132 133 } // end anonymous namespace 134 135 FrontendAction::FrontendAction() : Instance(nullptr) {} 136 137 FrontendAction::~FrontendAction() {} 138 139 void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput, 140 std::unique_ptr<ASTUnit> AST) { 141 this->CurrentInput = CurrentInput; 142 CurrentASTUnit = std::move(AST); 143 } 144 145 Module *FrontendAction::getCurrentModule() const { 146 CompilerInstance &CI = getCompilerInstance(); 147 return CI.getPreprocessor().getHeaderSearchInfo().lookupModule( 148 CI.getLangOpts().CurrentModule, SourceLocation(), /*AllowSearch*/false); 149 } 150 151 std::unique_ptr<ASTConsumer> 152 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, 153 StringRef InFile) { 154 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile); 155 if (!Consumer) 156 return nullptr; 157 158 // Validate -add-plugin args. 159 bool FoundAllPlugins = true; 160 for (const std::string &Arg : CI.getFrontendOpts().AddPluginActions) { 161 bool Found = false; 162 for (const FrontendPluginRegistry::entry &Plugin : 163 FrontendPluginRegistry::entries()) { 164 if (Plugin.getName() == Arg) 165 Found = true; 166 } 167 if (!Found) { 168 CI.getDiagnostics().Report(diag::err_fe_invalid_plugin_name) << Arg; 169 FoundAllPlugins = false; 170 } 171 } 172 if (!FoundAllPlugins) 173 return nullptr; 174 175 // If there are no registered plugins we don't need to wrap the consumer 176 if (FrontendPluginRegistry::begin() == FrontendPluginRegistry::end()) 177 return Consumer; 178 179 // If this is a code completion run, avoid invoking the plugin consumers 180 if (CI.hasCodeCompletionConsumer()) 181 return Consumer; 182 183 // Collect the list of plugins that go before the main action (in Consumers) 184 // or after it (in AfterConsumers) 185 std::vector<std::unique_ptr<ASTConsumer>> Consumers; 186 std::vector<std::unique_ptr<ASTConsumer>> AfterConsumers; 187 for (const FrontendPluginRegistry::entry &Plugin : 188 FrontendPluginRegistry::entries()) { 189 std::unique_ptr<PluginASTAction> P = Plugin.instantiate(); 190 PluginASTAction::ActionType ActionType = P->getActionType(); 191 if (ActionType == PluginASTAction::CmdlineAfterMainAction || 192 ActionType == PluginASTAction::CmdlineBeforeMainAction) { 193 // This is O(|plugins| * |add_plugins|), but since both numbers are 194 // way below 50 in practice, that's ok. 195 if (llvm::any_of(CI.getFrontendOpts().AddPluginActions, 196 [&](const std::string &PluginAction) { 197 return PluginAction == Plugin.getName(); 198 })) { 199 if (ActionType == PluginASTAction::CmdlineBeforeMainAction) 200 ActionType = PluginASTAction::AddBeforeMainAction; 201 else 202 ActionType = PluginASTAction::AddAfterMainAction; 203 } 204 } 205 if ((ActionType == PluginASTAction::AddBeforeMainAction || 206 ActionType == PluginASTAction::AddAfterMainAction) && 207 P->ParseArgs( 208 CI, 209 CI.getFrontendOpts().PluginArgs[std::string(Plugin.getName())])) { 210 std::unique_ptr<ASTConsumer> PluginConsumer = P->CreateASTConsumer(CI, InFile); 211 if (ActionType == PluginASTAction::AddBeforeMainAction) { 212 Consumers.push_back(std::move(PluginConsumer)); 213 } else { 214 AfterConsumers.push_back(std::move(PluginConsumer)); 215 } 216 } 217 } 218 219 // Add to Consumers the main consumer, then all the plugins that go after it 220 Consumers.push_back(std::move(Consumer)); 221 if (!AfterConsumers.empty()) { 222 // If we have plugins after the main consumer, which may be the codegen 223 // action, they likely will need the ASTContext, so don't clear it in the 224 // codegen action. 225 CI.getCodeGenOpts().ClearASTBeforeBackend = false; 226 for (auto &C : AfterConsumers) 227 Consumers.push_back(std::move(C)); 228 } 229 230 return std::make_unique<MultiplexConsumer>(std::move(Consumers)); 231 } 232 233 /// For preprocessed files, if the first line is the linemarker and specifies 234 /// the original source file name, use that name as the input file name. 235 /// Returns the location of the first token after the line marker directive. 236 /// 237 /// \param CI The compiler instance. 238 /// \param InputFile Populated with the filename from the line marker. 239 /// \param IsModuleMap If \c true, add a line note corresponding to this line 240 /// directive. (We need to do this because the directive will not be 241 /// visited by the preprocessor.) 242 static SourceLocation ReadOriginalFileName(CompilerInstance &CI, 243 std::string &InputFile, 244 bool IsModuleMap = false) { 245 auto &SourceMgr = CI.getSourceManager(); 246 auto MainFileID = SourceMgr.getMainFileID(); 247 248 auto MainFileBuf = SourceMgr.getBufferOrNone(MainFileID); 249 if (!MainFileBuf) 250 return SourceLocation(); 251 252 std::unique_ptr<Lexer> RawLexer( 253 new Lexer(MainFileID, *MainFileBuf, SourceMgr, CI.getLangOpts())); 254 255 // If the first line has the syntax of 256 // 257 // # NUM "FILENAME" 258 // 259 // we use FILENAME as the input file name. 260 Token T; 261 if (RawLexer->LexFromRawLexer(T) || T.getKind() != tok::hash) 262 return SourceLocation(); 263 if (RawLexer->LexFromRawLexer(T) || T.isAtStartOfLine() || 264 T.getKind() != tok::numeric_constant) 265 return SourceLocation(); 266 267 unsigned LineNo; 268 SourceLocation LineNoLoc = T.getLocation(); 269 if (IsModuleMap) { 270 llvm::SmallString<16> Buffer; 271 if (Lexer::getSpelling(LineNoLoc, Buffer, SourceMgr, CI.getLangOpts()) 272 .getAsInteger(10, LineNo)) 273 return SourceLocation(); 274 } 275 276 RawLexer->LexFromRawLexer(T); 277 if (T.isAtStartOfLine() || T.getKind() != tok::string_literal) 278 return SourceLocation(); 279 280 StringLiteralParser Literal(T, CI.getPreprocessor()); 281 if (Literal.hadError) 282 return SourceLocation(); 283 RawLexer->LexFromRawLexer(T); 284 if (T.isNot(tok::eof) && !T.isAtStartOfLine()) 285 return SourceLocation(); 286 InputFile = Literal.GetString().str(); 287 288 if (IsModuleMap) 289 CI.getSourceManager().AddLineNote( 290 LineNoLoc, LineNo, SourceMgr.getLineTableFilenameID(InputFile), false, 291 false, SrcMgr::C_User_ModuleMap); 292 293 return T.getLocation(); 294 } 295 296 static SmallVectorImpl<char> & 297 operator+=(SmallVectorImpl<char> &Includes, StringRef RHS) { 298 Includes.append(RHS.begin(), RHS.end()); 299 return Includes; 300 } 301 302 static void addHeaderInclude(StringRef HeaderName, 303 SmallVectorImpl<char> &Includes, 304 const LangOptions &LangOpts, 305 bool IsExternC) { 306 if (IsExternC && LangOpts.CPlusPlus) 307 Includes += "extern \"C\" {\n"; 308 if (LangOpts.ObjC) 309 Includes += "#import \""; 310 else 311 Includes += "#include \""; 312 313 Includes += HeaderName; 314 315 Includes += "\"\n"; 316 if (IsExternC && LangOpts.CPlusPlus) 317 Includes += "}\n"; 318 } 319 320 /// Collect the set of header includes needed to construct the given 321 /// module and update the TopHeaders file set of the module. 322 /// 323 /// \param Module The module we're collecting includes from. 324 /// 325 /// \param Includes Will be augmented with the set of \#includes or \#imports 326 /// needed to load all of the named headers. 327 static std::error_code collectModuleHeaderIncludes( 328 const LangOptions &LangOpts, FileManager &FileMgr, DiagnosticsEngine &Diag, 329 ModuleMap &ModMap, clang::Module *Module, SmallVectorImpl<char> &Includes) { 330 // Don't collect any headers for unavailable modules. 331 if (!Module->isAvailable()) 332 return std::error_code(); 333 334 // Resolve all lazy header directives to header files. 335 ModMap.resolveHeaderDirectives(Module, /*File=*/llvm::None); 336 337 // If any headers are missing, we can't build this module. In most cases, 338 // diagnostics for this should have already been produced; we only get here 339 // if explicit stat information was provided. 340 // FIXME: If the name resolves to a file with different stat information, 341 // produce a better diagnostic. 342 if (!Module->MissingHeaders.empty()) { 343 auto &MissingHeader = Module->MissingHeaders.front(); 344 Diag.Report(MissingHeader.FileNameLoc, diag::err_module_header_missing) 345 << MissingHeader.IsUmbrella << MissingHeader.FileName; 346 return std::error_code(); 347 } 348 349 // Add includes for each of these headers. 350 for (auto HK : {Module::HK_Normal, Module::HK_Private}) { 351 for (Module::Header &H : Module->Headers[HK]) { 352 Module->addTopHeader(H.Entry); 353 // Use the path as specified in the module map file. We'll look for this 354 // file relative to the module build directory (the directory containing 355 // the module map file) so this will find the same file that we found 356 // while parsing the module map. 357 addHeaderInclude(H.PathRelativeToRootModuleDirectory, Includes, LangOpts, 358 Module->IsExternC); 359 } 360 } 361 // Note that Module->PrivateHeaders will not be a TopHeader. 362 363 if (Module::Header UmbrellaHeader = Module->getUmbrellaHeader()) { 364 Module->addTopHeader(UmbrellaHeader.Entry); 365 if (Module->Parent) 366 // Include the umbrella header for submodules. 367 addHeaderInclude(UmbrellaHeader.PathRelativeToRootModuleDirectory, 368 Includes, LangOpts, Module->IsExternC); 369 } else if (Module::DirectoryName UmbrellaDir = Module->getUmbrellaDir()) { 370 // Add all of the headers we find in this subdirectory. 371 std::error_code EC; 372 SmallString<128> DirNative; 373 llvm::sys::path::native(UmbrellaDir.Entry->getName(), DirNative); 374 375 llvm::vfs::FileSystem &FS = FileMgr.getVirtualFileSystem(); 376 SmallVector<std::pair<std::string, const FileEntry *>, 8> Headers; 377 for (llvm::vfs::recursive_directory_iterator Dir(FS, DirNative, EC), End; 378 Dir != End && !EC; Dir.increment(EC)) { 379 // Check whether this entry has an extension typically associated with 380 // headers. 381 if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path())) 382 .Cases(".h", ".H", ".hh", ".hpp", true) 383 .Default(false)) 384 continue; 385 386 auto Header = FileMgr.getFile(Dir->path()); 387 // FIXME: This shouldn't happen unless there is a file system race. Is 388 // that worth diagnosing? 389 if (!Header) 390 continue; 391 392 // If this header is marked 'unavailable' in this module, don't include 393 // it. 394 if (ModMap.isHeaderUnavailableInModule(*Header, Module)) 395 continue; 396 397 // Compute the relative path from the directory to this file. 398 SmallVector<StringRef, 16> Components; 399 auto PathIt = llvm::sys::path::rbegin(Dir->path()); 400 for (int I = 0; I != Dir.level() + 1; ++I, ++PathIt) 401 Components.push_back(*PathIt); 402 SmallString<128> RelativeHeader( 403 UmbrellaDir.PathRelativeToRootModuleDirectory); 404 for (auto It = Components.rbegin(), End = Components.rend(); It != End; 405 ++It) 406 llvm::sys::path::append(RelativeHeader, *It); 407 408 std::string RelName = RelativeHeader.c_str(); 409 Headers.push_back(std::make_pair(RelName, *Header)); 410 } 411 412 if (EC) 413 return EC; 414 415 // Sort header paths and make the header inclusion order deterministic 416 // across different OSs and filesystems. 417 llvm::sort(Headers.begin(), Headers.end(), llvm::less_first()); 418 for (auto &H : Headers) { 419 // Include this header as part of the umbrella directory. 420 Module->addTopHeader(H.second); 421 addHeaderInclude(H.first, Includes, LangOpts, Module->IsExternC); 422 } 423 } 424 425 // Recurse into submodules. 426 for (clang::Module::submodule_iterator Sub = Module->submodule_begin(), 427 SubEnd = Module->submodule_end(); 428 Sub != SubEnd; ++Sub) 429 if (std::error_code Err = collectModuleHeaderIncludes( 430 LangOpts, FileMgr, Diag, ModMap, *Sub, Includes)) 431 return Err; 432 433 return std::error_code(); 434 } 435 436 static bool loadModuleMapForModuleBuild(CompilerInstance &CI, bool IsSystem, 437 bool IsPreprocessed, 438 std::string &PresumedModuleMapFile, 439 unsigned &Offset) { 440 auto &SrcMgr = CI.getSourceManager(); 441 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); 442 443 // Map the current input to a file. 444 FileID ModuleMapID = SrcMgr.getMainFileID(); 445 const FileEntry *ModuleMap = SrcMgr.getFileEntryForID(ModuleMapID); 446 447 // If the module map is preprocessed, handle the initial line marker; 448 // line directives are not part of the module map syntax in general. 449 Offset = 0; 450 if (IsPreprocessed) { 451 SourceLocation EndOfLineMarker = 452 ReadOriginalFileName(CI, PresumedModuleMapFile, /*IsModuleMap*/ true); 453 if (EndOfLineMarker.isValid()) 454 Offset = CI.getSourceManager().getDecomposedLoc(EndOfLineMarker).second; 455 } 456 457 // Load the module map file. 458 if (HS.loadModuleMapFile(ModuleMap, IsSystem, ModuleMapID, &Offset, 459 PresumedModuleMapFile)) 460 return true; 461 462 if (SrcMgr.getBufferOrFake(ModuleMapID).getBufferSize() == Offset) 463 Offset = 0; 464 465 // Infer framework module if possible. 466 if (HS.getModuleMap().canInferFrameworkModule(ModuleMap->getDir())) { 467 SmallString<128> InferredFrameworkPath = ModuleMap->getDir()->getName(); 468 llvm::sys::path::append(InferredFrameworkPath, 469 CI.getLangOpts().ModuleName + ".framework"); 470 if (auto Dir = CI.getFileManager().getDirectory(InferredFrameworkPath)) 471 (void)HS.getModuleMap().inferFrameworkModule(*Dir, IsSystem, nullptr); 472 } 473 474 return false; 475 } 476 477 static Module *prepareToBuildModule(CompilerInstance &CI, 478 StringRef ModuleMapFilename) { 479 if (CI.getLangOpts().CurrentModule.empty()) { 480 CI.getDiagnostics().Report(diag::err_missing_module_name); 481 482 // FIXME: Eventually, we could consider asking whether there was just 483 // a single module described in the module map, and use that as a 484 // default. Then it would be fairly trivial to just "compile" a module 485 // map with a single module (the common case). 486 return nullptr; 487 } 488 489 // Dig out the module definition. 490 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); 491 Module *M = HS.lookupModule(CI.getLangOpts().CurrentModule, SourceLocation(), 492 /*AllowSearch=*/true); 493 if (!M) { 494 CI.getDiagnostics().Report(diag::err_missing_module) 495 << CI.getLangOpts().CurrentModule << ModuleMapFilename; 496 497 return nullptr; 498 } 499 500 // Check whether we can build this module at all. 501 if (Preprocessor::checkModuleIsAvailable(CI.getLangOpts(), CI.getTarget(), 502 CI.getDiagnostics(), M)) 503 return nullptr; 504 505 // Inform the preprocessor that includes from within the input buffer should 506 // be resolved relative to the build directory of the module map file. 507 CI.getPreprocessor().setMainFileDir(M->Directory); 508 509 // If the module was inferred from a different module map (via an expanded 510 // umbrella module definition), track that fact. 511 // FIXME: It would be preferable to fill this in as part of processing 512 // the module map, rather than adding it after the fact. 513 StringRef OriginalModuleMapName = CI.getFrontendOpts().OriginalModuleMap; 514 if (!OriginalModuleMapName.empty()) { 515 auto OriginalModuleMap = 516 CI.getFileManager().getFile(OriginalModuleMapName, 517 /*openFile*/ true); 518 if (!OriginalModuleMap) { 519 CI.getDiagnostics().Report(diag::err_module_map_not_found) 520 << OriginalModuleMapName; 521 return nullptr; 522 } 523 if (*OriginalModuleMap != CI.getSourceManager().getFileEntryForID( 524 CI.getSourceManager().getMainFileID())) { 525 M->IsInferred = true; 526 CI.getPreprocessor().getHeaderSearchInfo().getModuleMap() 527 .setInferredModuleAllowedBy(M, *OriginalModuleMap); 528 } 529 } 530 531 // If we're being run from the command-line, the module build stack will not 532 // have been filled in yet, so complete it now in order to allow us to detect 533 // module cycles. 534 SourceManager &SourceMgr = CI.getSourceManager(); 535 if (SourceMgr.getModuleBuildStack().empty()) 536 SourceMgr.pushModuleBuildStack(CI.getLangOpts().CurrentModule, 537 FullSourceLoc(SourceLocation(), SourceMgr)); 538 return M; 539 } 540 541 /// Compute the input buffer that should be used to build the specified module. 542 static std::unique_ptr<llvm::MemoryBuffer> 543 getInputBufferForModule(CompilerInstance &CI, Module *M) { 544 FileManager &FileMgr = CI.getFileManager(); 545 546 // Collect the set of #includes we need to build the module. 547 SmallString<256> HeaderContents; 548 std::error_code Err = std::error_code(); 549 if (Module::Header UmbrellaHeader = M->getUmbrellaHeader()) 550 addHeaderInclude(UmbrellaHeader.PathRelativeToRootModuleDirectory, 551 HeaderContents, CI.getLangOpts(), M->IsExternC); 552 Err = collectModuleHeaderIncludes( 553 CI.getLangOpts(), FileMgr, CI.getDiagnostics(), 554 CI.getPreprocessor().getHeaderSearchInfo().getModuleMap(), M, 555 HeaderContents); 556 557 if (Err) { 558 CI.getDiagnostics().Report(diag::err_module_cannot_create_includes) 559 << M->getFullModuleName() << Err.message(); 560 return nullptr; 561 } 562 563 return llvm::MemoryBuffer::getMemBufferCopy( 564 HeaderContents, Module::getModuleInputBufferName()); 565 } 566 567 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, 568 const FrontendInputFile &RealInput) { 569 FrontendInputFile Input(RealInput); 570 assert(!Instance && "Already processing a source file!"); 571 assert(!Input.isEmpty() && "Unexpected empty filename!"); 572 setCurrentInput(Input); 573 setCompilerInstance(&CI); 574 575 bool HasBegunSourceFile = false; 576 bool ReplayASTFile = Input.getKind().getFormat() == InputKind::Precompiled && 577 usesPreprocessorOnly(); 578 579 // If we fail, reset state since the client will not end up calling the 580 // matching EndSourceFile(). All paths that return true should release this. 581 auto FailureCleanup = llvm::make_scope_exit([&]() { 582 if (HasBegunSourceFile) 583 CI.getDiagnosticClient().EndSourceFile(); 584 CI.clearOutputFiles(/*EraseFiles=*/true); 585 CI.getLangOpts().setCompilingModule(LangOptions::CMK_None); 586 setCurrentInput(FrontendInputFile()); 587 setCompilerInstance(nullptr); 588 }); 589 590 if (!BeginInvocation(CI)) 591 return false; 592 593 // If we're replaying the build of an AST file, import it and set up 594 // the initial state from its build. 595 if (ReplayASTFile) { 596 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(&CI.getDiagnostics()); 597 598 // The AST unit populates its own diagnostics engine rather than ours. 599 IntrusiveRefCntPtr<DiagnosticsEngine> ASTDiags( 600 new DiagnosticsEngine(Diags->getDiagnosticIDs(), 601 &Diags->getDiagnosticOptions())); 602 ASTDiags->setClient(Diags->getClient(), /*OwnsClient*/false); 603 604 // FIXME: What if the input is a memory buffer? 605 StringRef InputFile = Input.getFile(); 606 607 std::unique_ptr<ASTUnit> AST = ASTUnit::LoadFromASTFile( 608 std::string(InputFile), CI.getPCHContainerReader(), 609 ASTUnit::LoadPreprocessorOnly, ASTDiags, CI.getFileSystemOpts(), 610 CI.getCodeGenOpts().DebugTypeExtRefs); 611 if (!AST) 612 return false; 613 614 // Options relating to how we treat the input (but not what we do with it) 615 // are inherited from the AST unit. 616 CI.getHeaderSearchOpts() = AST->getHeaderSearchOpts(); 617 CI.getPreprocessorOpts() = AST->getPreprocessorOpts(); 618 CI.getLangOpts() = AST->getLangOpts(); 619 620 // Set the shared objects, these are reset when we finish processing the 621 // file, otherwise the CompilerInstance will happily destroy them. 622 CI.setFileManager(&AST->getFileManager()); 623 CI.createSourceManager(CI.getFileManager()); 624 CI.getSourceManager().initializeForReplay(AST->getSourceManager()); 625 626 // Preload all the module files loaded transitively by the AST unit. Also 627 // load all module map files that were parsed as part of building the AST 628 // unit. 629 if (auto ASTReader = AST->getASTReader()) { 630 auto &MM = ASTReader->getModuleManager(); 631 auto &PrimaryModule = MM.getPrimaryModule(); 632 633 for (serialization::ModuleFile &MF : MM) 634 if (&MF != &PrimaryModule) 635 CI.getFrontendOpts().ModuleFiles.push_back(MF.FileName); 636 637 ASTReader->visitTopLevelModuleMaps( 638 PrimaryModule, [&](const FileEntry *FE) { 639 CI.getFrontendOpts().ModuleMapFiles.push_back( 640 std::string(FE->getName())); 641 }); 642 } 643 644 // Set up the input file for replay purposes. 645 auto Kind = AST->getInputKind(); 646 if (Kind.getFormat() == InputKind::ModuleMap) { 647 Module *ASTModule = 648 AST->getPreprocessor().getHeaderSearchInfo().lookupModule( 649 AST->getLangOpts().CurrentModule, SourceLocation(), 650 /*AllowSearch*/ false); 651 assert(ASTModule && "module file does not define its own module"); 652 Input = FrontendInputFile(ASTModule->PresumedModuleMapFile, Kind); 653 } else { 654 auto &OldSM = AST->getSourceManager(); 655 FileID ID = OldSM.getMainFileID(); 656 if (auto *File = OldSM.getFileEntryForID(ID)) 657 Input = FrontendInputFile(File->getName(), Kind); 658 else 659 Input = FrontendInputFile(OldSM.getBufferOrFake(ID), Kind); 660 } 661 setCurrentInput(Input, std::move(AST)); 662 } 663 664 // AST files follow a very different path, since they share objects via the 665 // AST unit. 666 if (Input.getKind().getFormat() == InputKind::Precompiled) { 667 assert(!usesPreprocessorOnly() && "this case was handled above"); 668 assert(hasASTFileSupport() && 669 "This action does not have AST file support!"); 670 671 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(&CI.getDiagnostics()); 672 673 // FIXME: What if the input is a memory buffer? 674 StringRef InputFile = Input.getFile(); 675 676 std::unique_ptr<ASTUnit> AST = ASTUnit::LoadFromASTFile( 677 std::string(InputFile), CI.getPCHContainerReader(), 678 ASTUnit::LoadEverything, Diags, CI.getFileSystemOpts(), 679 CI.getCodeGenOpts().DebugTypeExtRefs); 680 681 if (!AST) 682 return false; 683 684 // Inform the diagnostic client we are processing a source file. 685 CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), nullptr); 686 HasBegunSourceFile = true; 687 688 // Set the shared objects, these are reset when we finish processing the 689 // file, otherwise the CompilerInstance will happily destroy them. 690 CI.setFileManager(&AST->getFileManager()); 691 CI.setSourceManager(&AST->getSourceManager()); 692 CI.setPreprocessor(AST->getPreprocessorPtr()); 693 Preprocessor &PP = CI.getPreprocessor(); 694 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), 695 PP.getLangOpts()); 696 CI.setASTContext(&AST->getASTContext()); 697 698 setCurrentInput(Input, std::move(AST)); 699 700 // Initialize the action. 701 if (!BeginSourceFileAction(CI)) 702 return false; 703 704 // Create the AST consumer. 705 CI.setASTConsumer(CreateWrappedASTConsumer(CI, InputFile)); 706 if (!CI.hasASTConsumer()) 707 return false; 708 709 FailureCleanup.release(); 710 return true; 711 } 712 713 // Set up the file and source managers, if needed. 714 if (!CI.hasFileManager()) { 715 if (!CI.createFileManager()) { 716 return false; 717 } 718 } 719 if (!CI.hasSourceManager()) 720 CI.createSourceManager(CI.getFileManager()); 721 722 // Set up embedding for any specified files. Do this before we load any 723 // source files, including the primary module map for the compilation. 724 for (const auto &F : CI.getFrontendOpts().ModulesEmbedFiles) { 725 if (auto FE = CI.getFileManager().getFile(F, /*openFile*/true)) 726 CI.getSourceManager().setFileIsTransient(*FE); 727 else 728 CI.getDiagnostics().Report(diag::err_modules_embed_file_not_found) << F; 729 } 730 if (CI.getFrontendOpts().ModulesEmbedAllFiles) 731 CI.getSourceManager().setAllFilesAreTransient(true); 732 733 // IR files bypass the rest of initialization. 734 if (Input.getKind().getLanguage() == Language::LLVM_IR) { 735 assert(hasIRSupport() && 736 "This action does not have IR file support!"); 737 738 // Inform the diagnostic client we are processing a source file. 739 CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), nullptr); 740 HasBegunSourceFile = true; 741 742 // Initialize the action. 743 if (!BeginSourceFileAction(CI)) 744 return false; 745 746 // Initialize the main file entry. 747 if (!CI.InitializeSourceManager(CurrentInput)) 748 return false; 749 750 FailureCleanup.release(); 751 return true; 752 } 753 754 // If the implicit PCH include is actually a directory, rather than 755 // a single file, search for a suitable PCH file in that directory. 756 if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { 757 FileManager &FileMgr = CI.getFileManager(); 758 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); 759 StringRef PCHInclude = PPOpts.ImplicitPCHInclude; 760 std::string SpecificModuleCachePath = CI.getSpecificModuleCachePath(); 761 if (auto PCHDir = FileMgr.getOptionalDirectoryRef(PCHInclude)) { 762 std::error_code EC; 763 SmallString<128> DirNative; 764 llvm::sys::path::native(PCHDir->getName(), DirNative); 765 bool Found = false; 766 llvm::vfs::FileSystem &FS = FileMgr.getVirtualFileSystem(); 767 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC), 768 DirEnd; 769 Dir != DirEnd && !EC; Dir.increment(EC)) { 770 // Check whether this is an acceptable AST file. 771 if (ASTReader::isAcceptableASTFile( 772 Dir->path(), FileMgr, CI.getPCHContainerReader(), 773 CI.getLangOpts(), CI.getTargetOpts(), CI.getPreprocessorOpts(), 774 SpecificModuleCachePath)) { 775 PPOpts.ImplicitPCHInclude = std::string(Dir->path()); 776 Found = true; 777 break; 778 } 779 } 780 781 if (!Found) { 782 CI.getDiagnostics().Report(diag::err_fe_no_pch_in_dir) << PCHInclude; 783 return false; 784 } 785 } 786 } 787 788 // Set up the preprocessor if needed. When parsing model files the 789 // preprocessor of the original source is reused. 790 if (!isModelParsingAction()) 791 CI.createPreprocessor(getTranslationUnitKind()); 792 793 // Inform the diagnostic client we are processing a source file. 794 CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), 795 &CI.getPreprocessor()); 796 HasBegunSourceFile = true; 797 798 // Handle C++20 header units. 799 // Here, the user has the option to specify that the header name should be 800 // looked up in the pre-processor search paths (and the main filename as 801 // passed by the driver might therefore be incomplete until that look-up). 802 if (CI.getLangOpts().CPlusPlusModules && Input.getKind().isHeaderUnit() && 803 !Input.getKind().isPreprocessed()) { 804 StringRef FileName = Input.getFile(); 805 InputKind Kind = Input.getKind(); 806 if (Kind.getHeaderUnitKind() != InputKind::HeaderUnit_Abs) { 807 assert(CI.hasPreprocessor() && 808 "trying to build a header unit without a Pre-processor?"); 809 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); 810 // Relative searches begin from CWD. 811 const DirectoryEntry *Dir = nullptr; 812 if (auto DirOrErr = CI.getFileManager().getDirectory(".")) 813 Dir = *DirOrErr; 814 SmallVector<std::pair<const FileEntry *, const DirectoryEntry *>, 1> CWD; 815 CWD.push_back({nullptr, Dir}); 816 Optional<FileEntryRef> FE = 817 HS.LookupFile(FileName, SourceLocation(), 818 /*Angled*/ Input.getKind().getHeaderUnitKind() == 819 InputKind::HeaderUnit_System, 820 nullptr, nullptr, CWD, nullptr, nullptr, nullptr, 821 nullptr, nullptr, nullptr); 822 if (!FE) { 823 CI.getDiagnostics().Report(diag::err_module_header_file_not_found) 824 << FileName; 825 return false; 826 } 827 // We now have the filename... 828 FileName = FE->getFileEntry().getName(); 829 // ... still a header unit, but now use the path as written. 830 Kind = Input.getKind().withHeaderUnit(InputKind::HeaderUnit_Abs); 831 Input = FrontendInputFile(FileName, Kind, Input.isSystem()); 832 } 833 // Unless the user has overridden the name, the header unit module name is 834 // the pathname for the file. 835 if (CI.getLangOpts().ModuleName.empty()) 836 CI.getLangOpts().ModuleName = std::string(FileName); 837 CI.getLangOpts().CurrentModule = CI.getLangOpts().ModuleName; 838 } 839 840 if (!CI.InitializeSourceManager(Input)) 841 return false; 842 843 if (CI.getLangOpts().CPlusPlusModules && Input.getKind().isHeaderUnit() && 844 Input.getKind().isPreprocessed() && !usesPreprocessorOnly()) { 845 // We have an input filename like foo.iih, but we want to find the right 846 // module name (and original file, to build the map entry). 847 // Check if the first line specifies the original source file name with a 848 // linemarker. 849 std::string PresumedInputFile = std::string(getCurrentFileOrBufferName()); 850 ReadOriginalFileName(CI, PresumedInputFile); 851 // Unless the user overrides this, the module name is the name by which the 852 // original file was known. 853 if (CI.getLangOpts().ModuleName.empty()) 854 CI.getLangOpts().ModuleName = std::string(PresumedInputFile); 855 CI.getLangOpts().CurrentModule = CI.getLangOpts().ModuleName; 856 } 857 858 // For module map files, we first parse the module map and synthesize a 859 // "<module-includes>" buffer before more conventional processing. 860 if (Input.getKind().getFormat() == InputKind::ModuleMap) { 861 CI.getLangOpts().setCompilingModule(LangOptions::CMK_ModuleMap); 862 863 std::string PresumedModuleMapFile; 864 unsigned OffsetToContents; 865 if (loadModuleMapForModuleBuild(CI, Input.isSystem(), 866 Input.isPreprocessed(), 867 PresumedModuleMapFile, OffsetToContents)) 868 return false; 869 870 auto *CurrentModule = prepareToBuildModule(CI, Input.getFile()); 871 if (!CurrentModule) 872 return false; 873 874 CurrentModule->PresumedModuleMapFile = PresumedModuleMapFile; 875 876 if (OffsetToContents) 877 // If the module contents are in the same file, skip to them. 878 CI.getPreprocessor().setSkipMainFilePreamble(OffsetToContents, true); 879 else { 880 // Otherwise, convert the module description to a suitable input buffer. 881 auto Buffer = getInputBufferForModule(CI, CurrentModule); 882 if (!Buffer) 883 return false; 884 885 // Reinitialize the main file entry to refer to the new input. 886 auto Kind = CurrentModule->IsSystem ? SrcMgr::C_System : SrcMgr::C_User; 887 auto &SourceMgr = CI.getSourceManager(); 888 auto BufferID = SourceMgr.createFileID(std::move(Buffer), Kind); 889 assert(BufferID.isValid() && "couldn't create module buffer ID"); 890 SourceMgr.setMainFileID(BufferID); 891 } 892 } 893 894 // Initialize the action. 895 if (!BeginSourceFileAction(CI)) 896 return false; 897 898 // If we were asked to load any module map files, do so now. 899 for (const auto &Filename : CI.getFrontendOpts().ModuleMapFiles) { 900 if (auto File = CI.getFileManager().getFile(Filename)) 901 CI.getPreprocessor().getHeaderSearchInfo().loadModuleMapFile( 902 *File, /*IsSystem*/false); 903 else 904 CI.getDiagnostics().Report(diag::err_module_map_not_found) << Filename; 905 } 906 907 // Add a module declaration scope so that modules from -fmodule-map-file 908 // arguments may shadow modules found implicitly in search paths. 909 CI.getPreprocessor() 910 .getHeaderSearchInfo() 911 .getModuleMap() 912 .finishModuleDeclarationScope(); 913 914 // Create the AST context and consumer unless this is a preprocessor only 915 // action. 916 if (!usesPreprocessorOnly()) { 917 // Parsing a model file should reuse the existing ASTContext. 918 if (!isModelParsingAction()) 919 CI.createASTContext(); 920 921 // For preprocessed files, check if the first line specifies the original 922 // source file name with a linemarker. 923 std::string PresumedInputFile = std::string(getCurrentFileOrBufferName()); 924 if (Input.isPreprocessed()) 925 ReadOriginalFileName(CI, PresumedInputFile); 926 927 std::unique_ptr<ASTConsumer> Consumer = 928 CreateWrappedASTConsumer(CI, PresumedInputFile); 929 if (!Consumer) 930 return false; 931 932 // FIXME: should not overwrite ASTMutationListener when parsing model files? 933 if (!isModelParsingAction()) 934 CI.getASTContext().setASTMutationListener(Consumer->GetASTMutationListener()); 935 936 if (!CI.getPreprocessorOpts().ChainedIncludes.empty()) { 937 // Convert headers to PCH and chain them. 938 IntrusiveRefCntPtr<ExternalSemaSource> source, FinalReader; 939 source = createChainedIncludesSource(CI, FinalReader); 940 if (!source) 941 return false; 942 CI.setASTReader(static_cast<ASTReader *>(FinalReader.get())); 943 CI.getASTContext().setExternalSource(source); 944 } else if (CI.getLangOpts().Modules || 945 !CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { 946 // Use PCM or PCH. 947 assert(hasPCHSupport() && "This action does not have PCH support!"); 948 ASTDeserializationListener *DeserialListener = 949 Consumer->GetASTDeserializationListener(); 950 bool DeleteDeserialListener = false; 951 if (CI.getPreprocessorOpts().DumpDeserializedPCHDecls) { 952 DeserialListener = new DeserializedDeclsDumper(DeserialListener, 953 DeleteDeserialListener); 954 DeleteDeserialListener = true; 955 } 956 if (!CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn.empty()) { 957 DeserialListener = new DeserializedDeclsChecker( 958 CI.getASTContext(), 959 CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn, 960 DeserialListener, DeleteDeserialListener); 961 DeleteDeserialListener = true; 962 } 963 if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { 964 CI.createPCHExternalASTSource( 965 CI.getPreprocessorOpts().ImplicitPCHInclude, 966 CI.getPreprocessorOpts().DisablePCHOrModuleValidation, 967 CI.getPreprocessorOpts().AllowPCHWithCompilerErrors, 968 DeserialListener, DeleteDeserialListener); 969 if (!CI.getASTContext().getExternalSource()) 970 return false; 971 } 972 // If modules are enabled, create the AST reader before creating 973 // any builtins, so that all declarations know that they might be 974 // extended by an external source. 975 if (CI.getLangOpts().Modules || !CI.hasASTContext() || 976 !CI.getASTContext().getExternalSource()) { 977 CI.createASTReader(); 978 CI.getASTReader()->setDeserializationListener(DeserialListener, 979 DeleteDeserialListener); 980 } 981 } 982 983 CI.setASTConsumer(std::move(Consumer)); 984 if (!CI.hasASTConsumer()) 985 return false; 986 } 987 988 // Initialize built-in info as long as we aren't using an external AST 989 // source. 990 if (CI.getLangOpts().Modules || !CI.hasASTContext() || 991 !CI.getASTContext().getExternalSource()) { 992 Preprocessor &PP = CI.getPreprocessor(); 993 PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), 994 PP.getLangOpts()); 995 } else { 996 // FIXME: If this is a problem, recover from it by creating a multiplex 997 // source. 998 assert((!CI.getLangOpts().Modules || CI.getASTReader()) && 999 "modules enabled but created an external source that " 1000 "doesn't support modules"); 1001 } 1002 1003 // If we were asked to load any module files, do so now. 1004 for (const auto &ModuleFile : CI.getFrontendOpts().ModuleFiles) 1005 if (!CI.loadModuleFile(ModuleFile)) 1006 return false; 1007 1008 // If there is a layout overrides file, attach an external AST source that 1009 // provides the layouts from that file. 1010 if (!CI.getFrontendOpts().OverrideRecordLayoutsFile.empty() && 1011 CI.hasASTContext() && !CI.getASTContext().getExternalSource()) { 1012 IntrusiveRefCntPtr<ExternalASTSource> 1013 Override(new LayoutOverrideSource( 1014 CI.getFrontendOpts().OverrideRecordLayoutsFile)); 1015 CI.getASTContext().setExternalSource(Override); 1016 } 1017 1018 // Setup HLSL External Sema Source 1019 if (CI.getLangOpts().HLSL && CI.hasASTContext()) { 1020 IntrusiveRefCntPtr<ExternalASTSource> HLSLSema( 1021 new HLSLExternalSemaSource()); 1022 CI.getASTContext().setExternalSource(HLSLSema); 1023 } 1024 1025 FailureCleanup.release(); 1026 return true; 1027 } 1028 1029 llvm::Error FrontendAction::Execute() { 1030 CompilerInstance &CI = getCompilerInstance(); 1031 1032 if (CI.hasFrontendTimer()) { 1033 llvm::TimeRegion Timer(CI.getFrontendTimer()); 1034 ExecuteAction(); 1035 } 1036 else ExecuteAction(); 1037 1038 // If we are supposed to rebuild the global module index, do so now unless 1039 // there were any module-build failures. 1040 if (CI.shouldBuildGlobalModuleIndex() && CI.hasFileManager() && 1041 CI.hasPreprocessor()) { 1042 StringRef Cache = 1043 CI.getPreprocessor().getHeaderSearchInfo().getModuleCachePath(); 1044 if (!Cache.empty()) { 1045 if (llvm::Error Err = GlobalModuleIndex::writeIndex( 1046 CI.getFileManager(), CI.getPCHContainerReader(), Cache)) { 1047 // FIXME this drops the error on the floor, but 1048 // Index/pch-from-libclang.c seems to rely on dropping at least some of 1049 // the error conditions! 1050 consumeError(std::move(Err)); 1051 } 1052 } 1053 } 1054 1055 return llvm::Error::success(); 1056 } 1057 1058 void FrontendAction::EndSourceFile() { 1059 CompilerInstance &CI = getCompilerInstance(); 1060 1061 // Inform the diagnostic client we are done with this source file. 1062 CI.getDiagnosticClient().EndSourceFile(); 1063 1064 // Inform the preprocessor we are done. 1065 if (CI.hasPreprocessor()) 1066 CI.getPreprocessor().EndSourceFile(); 1067 1068 // Finalize the action. 1069 EndSourceFileAction(); 1070 1071 // Sema references the ast consumer, so reset sema first. 1072 // 1073 // FIXME: There is more per-file stuff we could just drop here? 1074 bool DisableFree = CI.getFrontendOpts().DisableFree; 1075 if (DisableFree) { 1076 CI.resetAndLeakSema(); 1077 CI.resetAndLeakASTContext(); 1078 llvm::BuryPointer(CI.takeASTConsumer().get()); 1079 } else { 1080 CI.setSema(nullptr); 1081 CI.setASTContext(nullptr); 1082 CI.setASTConsumer(nullptr); 1083 } 1084 1085 if (CI.getFrontendOpts().ShowStats) { 1086 llvm::errs() << "\nSTATISTICS FOR '" << getCurrentFileOrBufferName() << "':\n"; 1087 CI.getPreprocessor().PrintStats(); 1088 CI.getPreprocessor().getIdentifierTable().PrintStats(); 1089 CI.getPreprocessor().getHeaderSearchInfo().PrintStats(); 1090 CI.getSourceManager().PrintStats(); 1091 llvm::errs() << "\n"; 1092 } 1093 1094 // Cleanup the output streams, and erase the output files if instructed by the 1095 // FrontendAction. 1096 CI.clearOutputFiles(/*EraseFiles=*/shouldEraseOutputFiles()); 1097 1098 if (isCurrentFileAST()) { 1099 if (DisableFree) { 1100 CI.resetAndLeakPreprocessor(); 1101 CI.resetAndLeakSourceManager(); 1102 CI.resetAndLeakFileManager(); 1103 llvm::BuryPointer(std::move(CurrentASTUnit)); 1104 } else { 1105 CI.setPreprocessor(nullptr); 1106 CI.setSourceManager(nullptr); 1107 CI.setFileManager(nullptr); 1108 } 1109 } 1110 1111 setCompilerInstance(nullptr); 1112 setCurrentInput(FrontendInputFile()); 1113 CI.getLangOpts().setCompilingModule(LangOptions::CMK_None); 1114 } 1115 1116 bool FrontendAction::shouldEraseOutputFiles() { 1117 return getCompilerInstance().getDiagnostics().hasErrorOccurred(); 1118 } 1119 1120 //===----------------------------------------------------------------------===// 1121 // Utility Actions 1122 //===----------------------------------------------------------------------===// 1123 1124 void ASTFrontendAction::ExecuteAction() { 1125 CompilerInstance &CI = getCompilerInstance(); 1126 if (!CI.hasPreprocessor()) 1127 return; 1128 1129 // FIXME: Move the truncation aspect of this into Sema, we delayed this till 1130 // here so the source manager would be initialized. 1131 if (hasCodeCompletionSupport() && 1132 !CI.getFrontendOpts().CodeCompletionAt.FileName.empty()) 1133 CI.createCodeCompletionConsumer(); 1134 1135 // Use a code completion consumer? 1136 CodeCompleteConsumer *CompletionConsumer = nullptr; 1137 if (CI.hasCodeCompletionConsumer()) 1138 CompletionConsumer = &CI.getCodeCompletionConsumer(); 1139 1140 if (!CI.hasSema()) 1141 CI.createSema(getTranslationUnitKind(), CompletionConsumer); 1142 1143 ParseAST(CI.getSema(), CI.getFrontendOpts().ShowStats, 1144 CI.getFrontendOpts().SkipFunctionBodies); 1145 } 1146 1147 void PluginASTAction::anchor() { } 1148 1149 std::unique_ptr<ASTConsumer> 1150 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, 1151 StringRef InFile) { 1152 llvm_unreachable("Invalid CreateASTConsumer on preprocessor action!"); 1153 } 1154 1155 bool WrapperFrontendAction::PrepareToExecuteAction(CompilerInstance &CI) { 1156 return WrappedAction->PrepareToExecuteAction(CI); 1157 } 1158 std::unique_ptr<ASTConsumer> 1159 WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, 1160 StringRef InFile) { 1161 return WrappedAction->CreateASTConsumer(CI, InFile); 1162 } 1163 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { 1164 return WrappedAction->BeginInvocation(CI); 1165 } 1166 bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI) { 1167 WrappedAction->setCurrentInput(getCurrentInput()); 1168 WrappedAction->setCompilerInstance(&CI); 1169 auto Ret = WrappedAction->BeginSourceFileAction(CI); 1170 // BeginSourceFileAction may change CurrentInput, e.g. during module builds. 1171 setCurrentInput(WrappedAction->getCurrentInput()); 1172 return Ret; 1173 } 1174 void WrapperFrontendAction::ExecuteAction() { 1175 WrappedAction->ExecuteAction(); 1176 } 1177 void WrapperFrontendAction::EndSourceFile() { WrappedAction->EndSourceFile(); } 1178 void WrapperFrontendAction::EndSourceFileAction() { 1179 WrappedAction->EndSourceFileAction(); 1180 } 1181 bool WrapperFrontendAction::shouldEraseOutputFiles() { 1182 return WrappedAction->shouldEraseOutputFiles(); 1183 } 1184 1185 bool WrapperFrontendAction::usesPreprocessorOnly() const { 1186 return WrappedAction->usesPreprocessorOnly(); 1187 } 1188 TranslationUnitKind WrapperFrontendAction::getTranslationUnitKind() { 1189 return WrappedAction->getTranslationUnitKind(); 1190 } 1191 bool WrapperFrontendAction::hasPCHSupport() const { 1192 return WrappedAction->hasPCHSupport(); 1193 } 1194 bool WrapperFrontendAction::hasASTFileSupport() const { 1195 return WrappedAction->hasASTFileSupport(); 1196 } 1197 bool WrapperFrontendAction::hasIRSupport() const { 1198 return WrappedAction->hasIRSupport(); 1199 } 1200 bool WrapperFrontendAction::hasCodeCompletionSupport() const { 1201 return WrappedAction->hasCodeCompletionSupport(); 1202 } 1203 1204 WrapperFrontendAction::WrapperFrontendAction( 1205 std::unique_ptr<FrontendAction> WrappedAction) 1206 : WrappedAction(std::move(WrappedAction)) {} 1207 1208