Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 1 | //===--- FrontendAction.cpp -----------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "clang/Frontend/FrontendAction.h" |
Sebastian Redl | 07a89a8 | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 11 | #include "clang/AST/ASTConsumer.h" |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 12 | #include "clang/AST/ASTContext.h" |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 13 | #include "clang/AST/DeclGroup.h" |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 14 | #include "clang/Frontend/ASTUnit.h" |
| 15 | #include "clang/Frontend/CompilerInstance.h" |
| 16 | #include "clang/Frontend/FrontendDiagnostic.h" |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 17 | #include "clang/Frontend/FrontendPluginRegistry.h" |
Douglas Gregor | e9fc377 | 2012-01-26 07:55:45 +0000 | [diff] [blame] | 18 | #include "clang/Frontend/LayoutOverrideSource.h" |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 19 | #include "clang/Frontend/MultiplexConsumer.h" |
Chandler Carruth | 5553d0d | 2014-01-07 11:51:46 +0000 | [diff] [blame] | 20 | #include "clang/Frontend/Utils.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "clang/Lex/HeaderSearch.h" |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 22 | #include "clang/Lex/LiteralSupport.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 23 | #include "clang/Lex/Preprocessor.h" |
Mehdi Amini | 9670f84 | 2016-07-18 19:02:11 +0000 | [diff] [blame] | 24 | #include "clang/Lex/PreprocessorOptions.h" |
John McCall | 8b0666c | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 25 | #include "clang/Parse/ParseAST.h" |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 26 | #include "clang/Serialization/ASTDeserializationListener.h" |
Jonathan D. Turner | 0248f57 | 2011-08-05 22:17:03 +0000 | [diff] [blame] | 27 | #include "clang/Serialization/ASTReader.h" |
Douglas Gregor | 5e306b1 | 2013-01-23 22:38:11 +0000 | [diff] [blame] | 28 | #include "clang/Serialization/GlobalModuleIndex.h" |
David Blaikie | 9941da4 | 2018-11-17 18:04:13 +0000 | [diff] [blame] | 29 | #include "llvm/Support/BuryPointer.h" |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 30 | #include "llvm/Support/ErrorHandling.h" |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 31 | #include "llvm/Support/FileSystem.h" |
Mehdi Amini | 9670f84 | 2016-07-18 19:02:11 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Path.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Timer.h" |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 34 | #include "llvm/Support/raw_ostream.h" |
Rafael Espindola | 8a8e554 | 2014-06-12 17:19:42 +0000 | [diff] [blame] | 35 | #include <system_error> |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 36 | using namespace clang; |
| 37 | |
John Brawn | 4d79ec7 | 2016-08-05 11:01:08 +0000 | [diff] [blame] | 38 | LLVM_INSTANTIATE_REGISTRY(FrontendPluginRegistry) |
NAKAMURA Takumi | ad4c06c | 2014-07-11 15:06:24 +0000 | [diff] [blame] | 39 | |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 40 | namespace { |
| 41 | |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 42 | class DelegatingDeserializationListener : public ASTDeserializationListener { |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 43 | ASTDeserializationListener *Previous; |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 44 | bool DeletePrevious; |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 45 | |
| 46 | public: |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 47 | explicit DelegatingDeserializationListener( |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 48 | ASTDeserializationListener *Previous, bool DeletePrevious) |
| 49 | : Previous(Previous), DeletePrevious(DeletePrevious) {} |
Alexander Kornienko | 34eb207 | 2015-04-11 02:00:23 +0000 | [diff] [blame] | 50 | ~DelegatingDeserializationListener() override { |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 51 | if (DeletePrevious) |
| 52 | delete Previous; |
| 53 | } |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 54 | |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 55 | void ReaderInitialized(ASTReader *Reader) override { |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 56 | if (Previous) |
| 57 | Previous->ReaderInitialized(Reader); |
| 58 | } |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 59 | void IdentifierRead(serialization::IdentID ID, |
| 60 | IdentifierInfo *II) override { |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 61 | if (Previous) |
| 62 | Previous->IdentifierRead(ID, II); |
| 63 | } |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 64 | void TypeRead(serialization::TypeIdx Idx, QualType T) override { |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 65 | if (Previous) |
| 66 | Previous->TypeRead(Idx, T); |
| 67 | } |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 68 | void DeclRead(serialization::DeclID ID, const Decl *D) override { |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 69 | if (Previous) |
| 70 | Previous->DeclRead(ID, D); |
| 71 | } |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 72 | void SelectorRead(serialization::SelectorID ID, Selector Sel) override { |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 73 | if (Previous) |
| 74 | Previous->SelectorRead(ID, Sel); |
| 75 | } |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 76 | void MacroDefinitionRead(serialization::PreprocessedEntityID PPID, |
Richard Smith | 66a8186 | 2015-05-04 02:25:31 +0000 | [diff] [blame] | 77 | MacroDefinitionRecord *MD) override { |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 78 | if (Previous) |
| 79 | Previous->MacroDefinitionRead(PPID, MD); |
| 80 | } |
| 81 | }; |
| 82 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 83 | /// Dumps deserialized declarations. |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 84 | class DeserializedDeclsDumper : public DelegatingDeserializationListener { |
| 85 | public: |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 86 | explicit DeserializedDeclsDumper(ASTDeserializationListener *Previous, |
| 87 | bool DeletePrevious) |
| 88 | : DelegatingDeserializationListener(Previous, DeletePrevious) {} |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 89 | |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 90 | void DeclRead(serialization::DeclID ID, const Decl *D) override { |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 91 | llvm::outs() << "PCH DECL: " << D->getDeclKindName(); |
Vassil Vassilev | da31c93 | 2018-05-20 09:38:52 +0000 | [diff] [blame] | 92 | if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) { |
| 93 | llvm::outs() << " - "; |
| 94 | ND->printQualifiedName(llvm::outs()); |
| 95 | } |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 96 | llvm::outs() << "\n"; |
| 97 | |
Argyrios Kyrtzidis | b12986f | 2011-10-28 22:54:31 +0000 | [diff] [blame] | 98 | DelegatingDeserializationListener::DeclRead(ID, D); |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 99 | } |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 100 | }; |
| 101 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 102 | /// Checks deserialized declarations and emits error if a name |
David Blaikie | 48b8128 | 2012-05-29 17:05:42 +0000 | [diff] [blame] | 103 | /// matches one given in command-line using -error-on-deserialized-decl. |
| 104 | class DeserializedDeclsChecker : public DelegatingDeserializationListener { |
| 105 | ASTContext &Ctx; |
| 106 | std::set<std::string> NamesToCheck; |
Argyrios Kyrtzidis | 0427be9 | 2010-10-14 20:14:25 +0000 | [diff] [blame] | 107 | |
David Blaikie | 48b8128 | 2012-05-29 17:05:42 +0000 | [diff] [blame] | 108 | public: |
| 109 | DeserializedDeclsChecker(ASTContext &Ctx, |
| 110 | const std::set<std::string> &NamesToCheck, |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 111 | ASTDeserializationListener *Previous, |
| 112 | bool DeletePrevious) |
| 113 | : DelegatingDeserializationListener(Previous, DeletePrevious), Ctx(Ctx), |
| 114 | NamesToCheck(NamesToCheck) {} |
Argyrios Kyrtzidis | 0427be9 | 2010-10-14 20:14:25 +0000 | [diff] [blame] | 115 | |
Craig Topper | afa7cb3 | 2014-03-13 06:07:04 +0000 | [diff] [blame] | 116 | void DeclRead(serialization::DeclID ID, const Decl *D) override { |
David Blaikie | 48b8128 | 2012-05-29 17:05:42 +0000 | [diff] [blame] | 117 | if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
| 118 | if (NamesToCheck.find(ND->getNameAsString()) != NamesToCheck.end()) { |
| 119 | unsigned DiagID |
| 120 | = Ctx.getDiagnostics().getCustomDiagID(DiagnosticsEngine::Error, |
| 121 | "%0 was deserialized"); |
| 122 | Ctx.getDiagnostics().Report(Ctx.getFullLoc(D->getLocation()), DiagID) |
| 123 | << ND->getNameAsString(); |
| 124 | } |
Argyrios Kyrtzidis | 0427be9 | 2010-10-14 20:14:25 +0000 | [diff] [blame] | 125 | |
David Blaikie | 48b8128 | 2012-05-29 17:05:42 +0000 | [diff] [blame] | 126 | DelegatingDeserializationListener::DeclRead(ID, D); |
| 127 | } |
Argyrios Kyrtzidis | 0427be9 | 2010-10-14 20:14:25 +0000 | [diff] [blame] | 128 | }; |
| 129 | |
Argyrios Kyrtzidis | a11aca4 | 2010-10-14 20:14:18 +0000 | [diff] [blame] | 130 | } // end anonymous namespace |
| 131 | |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 132 | FrontendAction::FrontendAction() : Instance(nullptr) {} |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 133 | |
Angel Garcia Gomez | 637d1e6 | 2015-10-20 13:23:58 +0000 | [diff] [blame] | 134 | FrontendAction::~FrontendAction() {} |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 135 | |
Douglas Gregor | 32fbe31 | 2012-01-20 16:28:04 +0000 | [diff] [blame] | 136 | void FrontendAction::setCurrentInput(const FrontendInputFile &CurrentInput, |
David Blaikie | f62d4e7 | 2014-08-10 17:03:42 +0000 | [diff] [blame] | 137 | std::unique_ptr<ASTUnit> AST) { |
Douglas Gregor | 32fbe31 | 2012-01-20 16:28:04 +0000 | [diff] [blame] | 138 | this->CurrentInput = CurrentInput; |
David Blaikie | f62d4e7 | 2014-08-10 17:03:42 +0000 | [diff] [blame] | 139 | CurrentASTUnit = std::move(AST); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 142 | Module *FrontendAction::getCurrentModule() const { |
| 143 | CompilerInstance &CI = getCompilerInstance(); |
| 144 | return CI.getPreprocessor().getHeaderSearchInfo().lookupModule( |
| 145 | CI.getLangOpts().CurrentModule, /*AllowSearch*/false); |
| 146 | } |
| 147 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 148 | std::unique_ptr<ASTConsumer> |
| 149 | FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, |
| 150 | StringRef InFile) { |
| 151 | std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile); |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 152 | if (!Consumer) |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 153 | return nullptr; |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 154 | |
John Brawn | 6c78974 | 2016-03-15 12:51:40 +0000 | [diff] [blame] | 155 | // If there are no registered plugins we don't need to wrap the consumer |
Ivan Donchevskii | f70d28b | 2018-05-17 09:15:22 +0000 | [diff] [blame] | 156 | if (FrontendPluginRegistry::begin() == FrontendPluginRegistry::end()) |
| 157 | return Consumer; |
| 158 | |
Ivan Donchevskii | 270ef5b | 2018-05-17 09:21:07 +0000 | [diff] [blame] | 159 | // If this is a code completion run, avoid invoking the plugin consumers |
| 160 | if (CI.hasCodeCompletionConsumer()) |
| 161 | return Consumer; |
| 162 | |
Ivan Donchevskii | f70d28b | 2018-05-17 09:15:22 +0000 | [diff] [blame] | 163 | // Collect the list of plugins that go before the main action (in Consumers) |
| 164 | // or after it (in AfterConsumers) |
| 165 | std::vector<std::unique_ptr<ASTConsumer>> Consumers; |
John Brawn | 6c78974 | 2016-03-15 12:51:40 +0000 | [diff] [blame] | 166 | std::vector<std::unique_ptr<ASTConsumer>> AfterConsumers; |
| 167 | for (FrontendPluginRegistry::iterator it = FrontendPluginRegistry::begin(), |
| 168 | ie = FrontendPluginRegistry::end(); |
| 169 | it != ie; ++it) { |
| 170 | std::unique_ptr<PluginASTAction> P = it->instantiate(); |
| 171 | PluginASTAction::ActionType ActionType = P->getActionType(); |
| 172 | if (ActionType == PluginASTAction::Cmdline) { |
| 173 | // This is O(|plugins| * |add_plugins|), but since both numbers are |
| 174 | // way below 50 in practice, that's ok. |
| 175 | for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size(); |
| 176 | i != e; ++i) { |
| 177 | if (it->getName() == CI.getFrontendOpts().AddPluginActions[i]) { |
| 178 | ActionType = PluginASTAction::AddAfterMainAction; |
| 179 | break; |
| 180 | } |
| 181 | } |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 182 | } |
John Brawn | 6c78974 | 2016-03-15 12:51:40 +0000 | [diff] [blame] | 183 | if ((ActionType == PluginASTAction::AddBeforeMainAction || |
| 184 | ActionType == PluginASTAction::AddAfterMainAction) && |
| 185 | P->ParseArgs(CI, CI.getFrontendOpts().PluginArgs[it->getName()])) { |
| 186 | std::unique_ptr<ASTConsumer> PluginConsumer = P->CreateASTConsumer(CI, InFile); |
| 187 | if (ActionType == PluginASTAction::AddBeforeMainAction) { |
| 188 | Consumers.push_back(std::move(PluginConsumer)); |
| 189 | } else { |
| 190 | AfterConsumers.push_back(std::move(PluginConsumer)); |
| 191 | } |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | // Add to Consumers the main consumer, then all the plugins that go after it |
| 196 | Consumers.push_back(std::move(Consumer)); |
| 197 | for (auto &C : AfterConsumers) { |
| 198 | Consumers.push_back(std::move(C)); |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 199 | } |
| 200 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 201 | return llvm::make_unique<MultiplexConsumer>(std::move(Consumers)); |
Nico Weber | 2992efa | 2011-01-25 20:34:14 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 204 | /// For preprocessed files, if the first line is the linemarker and specifies |
| 205 | /// the original source file name, use that name as the input file name. |
| 206 | /// Returns the location of the first token after the line marker directive. |
| 207 | /// |
| 208 | /// \param CI The compiler instance. |
| 209 | /// \param InputFile Populated with the filename from the line marker. |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 210 | /// \param IsModuleMap If \c true, add a line note corresponding to this line |
| 211 | /// directive. (We need to do this because the directive will not be |
| 212 | /// visited by the preprocessor.) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 213 | static SourceLocation ReadOriginalFileName(CompilerInstance &CI, |
| 214 | std::string &InputFile, |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 215 | bool IsModuleMap = false) { |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 216 | auto &SourceMgr = CI.getSourceManager(); |
| 217 | auto MainFileID = SourceMgr.getMainFileID(); |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 218 | |
| 219 | bool Invalid = false; |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 220 | const auto *MainFileBuf = SourceMgr.getBuffer(MainFileID, &Invalid); |
| 221 | if (Invalid) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 222 | return SourceLocation(); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 223 | |
| 224 | std::unique_ptr<Lexer> RawLexer( |
| 225 | new Lexer(MainFileID, MainFileBuf, SourceMgr, CI.getLangOpts())); |
| 226 | |
| 227 | // If the first line has the syntax of |
| 228 | // |
| 229 | // # NUM "FILENAME" |
| 230 | // |
| 231 | // we use FILENAME as the input file name. |
| 232 | Token T; |
| 233 | if (RawLexer->LexFromRawLexer(T) || T.getKind() != tok::hash) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 234 | return SourceLocation(); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 235 | if (RawLexer->LexFromRawLexer(T) || T.isAtStartOfLine() || |
| 236 | T.getKind() != tok::numeric_constant) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 237 | return SourceLocation(); |
| 238 | |
| 239 | unsigned LineNo; |
| 240 | SourceLocation LineNoLoc = T.getLocation(); |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 241 | if (IsModuleMap) { |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 242 | llvm::SmallString<16> Buffer; |
| 243 | if (Lexer::getSpelling(LineNoLoc, Buffer, SourceMgr, CI.getLangOpts()) |
| 244 | .getAsInteger(10, LineNo)) |
| 245 | return SourceLocation(); |
| 246 | } |
| 247 | |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 248 | RawLexer->LexFromRawLexer(T); |
| 249 | if (T.isAtStartOfLine() || T.getKind() != tok::string_literal) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 250 | return SourceLocation(); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 251 | |
| 252 | StringLiteralParser Literal(T, CI.getPreprocessor()); |
| 253 | if (Literal.hadError) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 254 | return SourceLocation(); |
| 255 | RawLexer->LexFromRawLexer(T); |
| 256 | if (T.isNot(tok::eof) && !T.isAtStartOfLine()) |
| 257 | return SourceLocation(); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 258 | InputFile = Literal.GetString().str(); |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 259 | |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 260 | if (IsModuleMap) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 261 | CI.getSourceManager().AddLineNote( |
Reid Kleckner | eb00ee0 | 2017-05-22 21:42:58 +0000 | [diff] [blame] | 262 | LineNoLoc, LineNo, SourceMgr.getLineTableFilenameID(InputFile), false, |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 263 | false, SrcMgr::C_User_ModuleMap); |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 264 | |
| 265 | return T.getLocation(); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 268 | static SmallVectorImpl<char> & |
| 269 | operator+=(SmallVectorImpl<char> &Includes, StringRef RHS) { |
| 270 | Includes.append(RHS.begin(), RHS.end()); |
| 271 | return Includes; |
| 272 | } |
| 273 | |
| 274 | static void addHeaderInclude(StringRef HeaderName, |
| 275 | SmallVectorImpl<char> &Includes, |
| 276 | const LangOptions &LangOpts, |
| 277 | bool IsExternC) { |
| 278 | if (IsExternC && LangOpts.CPlusPlus) |
| 279 | Includes += "extern \"C\" {\n"; |
Erik Pilkington | fa98390 | 2018-10-30 20:31:30 +0000 | [diff] [blame] | 280 | if (LangOpts.ObjC) |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 281 | Includes += "#import \""; |
| 282 | else |
| 283 | Includes += "#include \""; |
| 284 | |
| 285 | Includes += HeaderName; |
| 286 | |
| 287 | Includes += "\"\n"; |
| 288 | if (IsExternC && LangOpts.CPlusPlus) |
| 289 | Includes += "}\n"; |
| 290 | } |
| 291 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 292 | /// Collect the set of header includes needed to construct the given |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 293 | /// module and update the TopHeaders file set of the module. |
| 294 | /// |
| 295 | /// \param Module The module we're collecting includes from. |
| 296 | /// |
| 297 | /// \param Includes Will be augmented with the set of \#includes or \#imports |
| 298 | /// needed to load all of the named headers. |
Richard Smith | 040e126 | 2017-06-02 01:55:39 +0000 | [diff] [blame] | 299 | static std::error_code collectModuleHeaderIncludes( |
| 300 | const LangOptions &LangOpts, FileManager &FileMgr, DiagnosticsEngine &Diag, |
| 301 | ModuleMap &ModMap, clang::Module *Module, SmallVectorImpl<char> &Includes) { |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 302 | // Don't collect any headers for unavailable modules. |
| 303 | if (!Module->isAvailable()) |
| 304 | return std::error_code(); |
| 305 | |
Richard Smith | 040e126 | 2017-06-02 01:55:39 +0000 | [diff] [blame] | 306 | // Resolve all lazy header directives to header files. |
| 307 | ModMap.resolveHeaderDirectives(Module); |
| 308 | |
| 309 | // If any headers are missing, we can't build this module. In most cases, |
| 310 | // diagnostics for this should have already been produced; we only get here |
| 311 | // if explicit stat information was provided. |
| 312 | // FIXME: If the name resolves to a file with different stat information, |
| 313 | // produce a better diagnostic. |
| 314 | if (!Module->MissingHeaders.empty()) { |
| 315 | auto &MissingHeader = Module->MissingHeaders.front(); |
| 316 | Diag.Report(MissingHeader.FileNameLoc, diag::err_module_header_missing) |
| 317 | << MissingHeader.IsUmbrella << MissingHeader.FileName; |
| 318 | return std::error_code(); |
| 319 | } |
| 320 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 321 | // Add includes for each of these headers. |
| 322 | for (auto HK : {Module::HK_Normal, Module::HK_Private}) { |
| 323 | for (Module::Header &H : Module->Headers[HK]) { |
| 324 | Module->addTopHeader(H.Entry); |
| 325 | // Use the path as specified in the module map file. We'll look for this |
| 326 | // file relative to the module build directory (the directory containing |
| 327 | // the module map file) so this will find the same file that we found |
| 328 | // while parsing the module map. |
| 329 | addHeaderInclude(H.NameAsWritten, Includes, LangOpts, Module->IsExternC); |
| 330 | } |
| 331 | } |
| 332 | // Note that Module->PrivateHeaders will not be a TopHeader. |
| 333 | |
| 334 | if (Module::Header UmbrellaHeader = Module->getUmbrellaHeader()) { |
| 335 | Module->addTopHeader(UmbrellaHeader.Entry); |
| 336 | if (Module->Parent) |
| 337 | // Include the umbrella header for submodules. |
| 338 | addHeaderInclude(UmbrellaHeader.NameAsWritten, Includes, LangOpts, |
| 339 | Module->IsExternC); |
| 340 | } else if (Module::DirectoryName UmbrellaDir = Module->getUmbrellaDir()) { |
| 341 | // Add all of the headers we find in this subdirectory. |
| 342 | std::error_code EC; |
| 343 | SmallString<128> DirNative; |
| 344 | llvm::sys::path::native(UmbrellaDir.Entry->getName(), DirNative); |
| 345 | |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 346 | llvm::vfs::FileSystem &FS = *FileMgr.getVirtualFileSystem(); |
| 347 | for (llvm::vfs::recursive_directory_iterator Dir(FS, DirNative, EC), End; |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 348 | Dir != End && !EC; Dir.increment(EC)) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 349 | // Check whether this entry has an extension typically associated with |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 350 | // headers. |
Sam McCall | 0ae0056 | 2018-09-14 12:47:38 +0000 | [diff] [blame] | 351 | if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path())) |
| 352 | .Cases(".h", ".H", ".hh", ".hpp", true) |
| 353 | .Default(false)) |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 354 | continue; |
| 355 | |
Sam McCall | 0ae0056 | 2018-09-14 12:47:38 +0000 | [diff] [blame] | 356 | const FileEntry *Header = FileMgr.getFile(Dir->path()); |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 357 | // FIXME: This shouldn't happen unless there is a file system race. Is |
| 358 | // that worth diagnosing? |
| 359 | if (!Header) |
| 360 | continue; |
| 361 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 362 | // If this header is marked 'unavailable' in this module, don't include |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 363 | // it. |
| 364 | if (ModMap.isHeaderUnavailableInModule(Header, Module)) |
| 365 | continue; |
| 366 | |
| 367 | // Compute the relative path from the directory to this file. |
| 368 | SmallVector<StringRef, 16> Components; |
Sam McCall | 0ae0056 | 2018-09-14 12:47:38 +0000 | [diff] [blame] | 369 | auto PathIt = llvm::sys::path::rbegin(Dir->path()); |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 370 | for (int I = 0; I != Dir.level() + 1; ++I, ++PathIt) |
| 371 | Components.push_back(*PathIt); |
| 372 | SmallString<128> RelativeHeader(UmbrellaDir.NameAsWritten); |
| 373 | for (auto It = Components.rbegin(), End = Components.rend(); It != End; |
| 374 | ++It) |
| 375 | llvm::sys::path::append(RelativeHeader, *It); |
| 376 | |
| 377 | // Include this header as part of the umbrella directory. |
| 378 | Module->addTopHeader(Header); |
| 379 | addHeaderInclude(RelativeHeader, Includes, LangOpts, Module->IsExternC); |
| 380 | } |
| 381 | |
| 382 | if (EC) |
| 383 | return EC; |
| 384 | } |
| 385 | |
| 386 | // Recurse into submodules. |
| 387 | for (clang::Module::submodule_iterator Sub = Module->submodule_begin(), |
| 388 | SubEnd = Module->submodule_end(); |
| 389 | Sub != SubEnd; ++Sub) |
| 390 | if (std::error_code Err = collectModuleHeaderIncludes( |
Richard Smith | 040e126 | 2017-06-02 01:55:39 +0000 | [diff] [blame] | 391 | LangOpts, FileMgr, Diag, ModMap, *Sub, Includes)) |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 392 | return Err; |
| 393 | |
| 394 | return std::error_code(); |
| 395 | } |
| 396 | |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 397 | static bool loadModuleMapForModuleBuild(CompilerInstance &CI, bool IsSystem, |
Richard Smith | 8b70610 | 2017-05-31 20:56:55 +0000 | [diff] [blame] | 398 | bool IsPreprocessed, |
| 399 | std::string &PresumedModuleMapFile, |
| 400 | unsigned &Offset) { |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 401 | auto &SrcMgr = CI.getSourceManager(); |
| 402 | HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); |
| 403 | |
| 404 | // Map the current input to a file. |
| 405 | FileID ModuleMapID = SrcMgr.getMainFileID(); |
| 406 | const FileEntry *ModuleMap = SrcMgr.getFileEntryForID(ModuleMapID); |
| 407 | |
| 408 | // If the module map is preprocessed, handle the initial line marker; |
| 409 | // line directives are not part of the module map syntax in general. |
| 410 | Offset = 0; |
| 411 | if (IsPreprocessed) { |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 412 | SourceLocation EndOfLineMarker = |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 413 | ReadOriginalFileName(CI, PresumedModuleMapFile, /*IsModuleMap*/ true); |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 414 | if (EndOfLineMarker.isValid()) |
| 415 | Offset = CI.getSourceManager().getDecomposedLoc(EndOfLineMarker).second; |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 416 | } |
| 417 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 418 | // Load the module map file. |
Richard Smith | 8b70610 | 2017-05-31 20:56:55 +0000 | [diff] [blame] | 419 | if (HS.loadModuleMapFile(ModuleMap, IsSystem, ModuleMapID, &Offset, |
| 420 | PresumedModuleMapFile)) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 421 | return true; |
| 422 | |
| 423 | if (SrcMgr.getBuffer(ModuleMapID)->getBufferSize() == Offset) |
| 424 | Offset = 0; |
| 425 | |
| 426 | return false; |
| 427 | } |
| 428 | |
| 429 | static Module *prepareToBuildModule(CompilerInstance &CI, |
| 430 | StringRef ModuleMapFilename) { |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 431 | if (CI.getLangOpts().CurrentModule.empty()) { |
| 432 | CI.getDiagnostics().Report(diag::err_missing_module_name); |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 433 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 434 | // FIXME: Eventually, we could consider asking whether there was just |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 435 | // a single module described in the module map, and use that as a |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 436 | // default. Then it would be fairly trivial to just "compile" a module |
| 437 | // map with a single module (the common case). |
| 438 | return nullptr; |
| 439 | } |
| 440 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 441 | // Dig out the module definition. |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 442 | HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo(); |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 443 | Module *M = HS.lookupModule(CI.getLangOpts().CurrentModule, |
| 444 | /*AllowSearch=*/false); |
| 445 | if (!M) { |
| 446 | CI.getDiagnostics().Report(diag::err_missing_module) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 447 | << CI.getLangOpts().CurrentModule << ModuleMapFilename; |
| 448 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 449 | return nullptr; |
| 450 | } |
| 451 | |
| 452 | // Check whether we can build this module at all. |
Richard Smith | 27e5aa0 | 2017-06-05 18:57:56 +0000 | [diff] [blame] | 453 | if (Preprocessor::checkModuleIsAvailable(CI.getLangOpts(), CI.getTarget(), |
| 454 | CI.getDiagnostics(), M)) |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 455 | return nullptr; |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 456 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 457 | // Inform the preprocessor that includes from within the input buffer should |
| 458 | // be resolved relative to the build directory of the module map file. |
| 459 | CI.getPreprocessor().setMainFileDir(M->Directory); |
| 460 | |
| 461 | // If the module was inferred from a different module map (via an expanded |
| 462 | // umbrella module definition), track that fact. |
| 463 | // FIXME: It would be preferable to fill this in as part of processing |
| 464 | // the module map, rather than adding it after the fact. |
| 465 | StringRef OriginalModuleMapName = CI.getFrontendOpts().OriginalModuleMap; |
| 466 | if (!OriginalModuleMapName.empty()) { |
| 467 | auto *OriginalModuleMap = |
| 468 | CI.getFileManager().getFile(OriginalModuleMapName, |
| 469 | /*openFile*/ true); |
| 470 | if (!OriginalModuleMap) { |
| 471 | CI.getDiagnostics().Report(diag::err_module_map_not_found) |
| 472 | << OriginalModuleMapName; |
| 473 | return nullptr; |
| 474 | } |
| 475 | if (OriginalModuleMap != CI.getSourceManager().getFileEntryForID( |
| 476 | CI.getSourceManager().getMainFileID())) { |
| 477 | M->IsInferred = true; |
| 478 | CI.getPreprocessor().getHeaderSearchInfo().getModuleMap() |
| 479 | .setInferredModuleAllowedBy(M, OriginalModuleMap); |
| 480 | } |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 483 | // If we're being run from the command-line, the module build stack will not |
| 484 | // have been filled in yet, so complete it now in order to allow us to detect |
| 485 | // module cycles. |
| 486 | SourceManager &SourceMgr = CI.getSourceManager(); |
| 487 | if (SourceMgr.getModuleBuildStack().empty()) |
| 488 | SourceMgr.pushModuleBuildStack(CI.getLangOpts().CurrentModule, |
| 489 | FullSourceLoc(SourceLocation(), SourceMgr)); |
| 490 | return M; |
| 491 | } |
| 492 | |
| 493 | /// Compute the input buffer that should be used to build the specified module. |
| 494 | static std::unique_ptr<llvm::MemoryBuffer> |
| 495 | getInputBufferForModule(CompilerInstance &CI, Module *M) { |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 496 | FileManager &FileMgr = CI.getFileManager(); |
| 497 | |
| 498 | // Collect the set of #includes we need to build the module. |
| 499 | SmallString<256> HeaderContents; |
| 500 | std::error_code Err = std::error_code(); |
| 501 | if (Module::Header UmbrellaHeader = M->getUmbrellaHeader()) |
| 502 | addHeaderInclude(UmbrellaHeader.NameAsWritten, HeaderContents, |
| 503 | CI.getLangOpts(), M->IsExternC); |
| 504 | Err = collectModuleHeaderIncludes( |
Richard Smith | 040e126 | 2017-06-02 01:55:39 +0000 | [diff] [blame] | 505 | CI.getLangOpts(), FileMgr, CI.getDiagnostics(), |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 506 | CI.getPreprocessor().getHeaderSearchInfo().getModuleMap(), M, |
| 507 | HeaderContents); |
| 508 | |
| 509 | if (Err) { |
| 510 | CI.getDiagnostics().Report(diag::err_module_cannot_create_includes) |
| 511 | << M->getFullModuleName() << Err.message(); |
| 512 | return nullptr; |
| 513 | } |
| 514 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 515 | return llvm::MemoryBuffer::getMemBufferCopy( |
| 516 | HeaderContents, Module::getModuleInputBufferName()); |
| 517 | } |
| 518 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 519 | bool FrontendAction::BeginSourceFile(CompilerInstance &CI, |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 520 | const FrontendInputFile &RealInput) { |
| 521 | FrontendInputFile Input(RealInput); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 522 | assert(!Instance && "Already processing a source file!"); |
Argyrios Kyrtzidis | 873c858 | 2012-11-09 19:40:39 +0000 | [diff] [blame] | 523 | assert(!Input.isEmpty() && "Unexpected empty filename!"); |
Douglas Gregor | 32fbe31 | 2012-01-20 16:28:04 +0000 | [diff] [blame] | 524 | setCurrentInput(Input); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 525 | setCompilerInstance(&CI); |
| 526 | |
Jordan Rose | ea762b0 | 2012-08-10 01:06:08 +0000 | [diff] [blame] | 527 | bool HasBegunSourceFile = false; |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 528 | bool ReplayASTFile = Input.getKind().getFormat() == InputKind::Precompiled && |
| 529 | usesPreprocessorOnly(); |
Argyrios Kyrtzidis | 90b6a2a | 2011-06-18 00:53:41 +0000 | [diff] [blame] | 530 | if (!BeginInvocation(CI)) |
| 531 | goto failure; |
| 532 | |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 533 | // If we're replaying the build of an AST file, import it and set up |
| 534 | // the initial state from its build. |
| 535 | if (ReplayASTFile) { |
| 536 | IntrusiveRefCntPtr<DiagnosticsEngine> Diags(&CI.getDiagnostics()); |
| 537 | |
| 538 | // The AST unit populates its own diagnostics engine rather than ours. |
| 539 | IntrusiveRefCntPtr<DiagnosticsEngine> ASTDiags( |
| 540 | new DiagnosticsEngine(Diags->getDiagnosticIDs(), |
| 541 | &Diags->getDiagnosticOptions())); |
| 542 | ASTDiags->setClient(Diags->getClient(), /*OwnsClient*/false); |
| 543 | |
Richard Smith | d6509cf | 2018-09-15 01:21:15 +0000 | [diff] [blame] | 544 | // FIXME: What if the input is a memory buffer? |
| 545 | StringRef InputFile = Input.getFile(); |
| 546 | |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 547 | std::unique_ptr<ASTUnit> AST = ASTUnit::LoadFromASTFile( |
Richard Smith | dbafb6c | 2017-06-29 23:23:46 +0000 | [diff] [blame] | 548 | InputFile, CI.getPCHContainerReader(), ASTUnit::LoadPreprocessorOnly, |
| 549 | ASTDiags, CI.getFileSystemOpts(), CI.getCodeGenOpts().DebugTypeExtRefs); |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 550 | if (!AST) |
| 551 | goto failure; |
| 552 | |
| 553 | // Options relating to how we treat the input (but not what we do with it) |
| 554 | // are inherited from the AST unit. |
Richard Smith | 1893475 | 2017-06-06 00:32:01 +0000 | [diff] [blame] | 555 | CI.getHeaderSearchOpts() = AST->getHeaderSearchOpts(); |
| 556 | CI.getPreprocessorOpts() = AST->getPreprocessorOpts(); |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 557 | CI.getLangOpts() = AST->getLangOpts(); |
| 558 | |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 559 | // Set the shared objects, these are reset when we finish processing the |
| 560 | // file, otherwise the CompilerInstance will happily destroy them. |
| 561 | CI.setFileManager(&AST->getFileManager()); |
| 562 | CI.createSourceManager(CI.getFileManager()); |
| 563 | CI.getSourceManager().initializeForReplay(AST->getSourceManager()); |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 564 | |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 565 | // Preload all the module files loaded transitively by the AST unit. Also |
| 566 | // load all module map files that were parsed as part of building the AST |
| 567 | // unit. |
| 568 | if (auto ASTReader = AST->getASTReader()) { |
| 569 | auto &MM = ASTReader->getModuleManager(); |
| 570 | auto &PrimaryModule = MM.getPrimaryModule(); |
| 571 | |
Sam McCall | 5da4d75 | 2018-10-12 12:21:29 +0000 | [diff] [blame] | 572 | for (serialization::ModuleFile &MF : MM) |
Richard Smith | f3f8461 | 2017-06-29 02:19:42 +0000 | [diff] [blame] | 573 | if (&MF != &PrimaryModule) |
| 574 | CI.getFrontendOpts().ModuleFiles.push_back(MF.FileName); |
| 575 | |
| 576 | ASTReader->visitTopLevelModuleMaps(PrimaryModule, |
| 577 | [&](const FileEntry *FE) { |
| 578 | CI.getFrontendOpts().ModuleMapFiles.push_back(FE->getName()); |
| 579 | }); |
| 580 | } |
| 581 | |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 582 | // Set up the input file for replay purposes. |
| 583 | auto Kind = AST->getInputKind(); |
| 584 | if (Kind.getFormat() == InputKind::ModuleMap) { |
| 585 | Module *ASTModule = |
| 586 | AST->getPreprocessor().getHeaderSearchInfo().lookupModule( |
| 587 | AST->getLangOpts().CurrentModule, /*AllowSearch*/ false); |
Richard Smith | dbafb6c | 2017-06-29 23:23:46 +0000 | [diff] [blame] | 588 | assert(ASTModule && "module file does not define its own module"); |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 589 | Input = FrontendInputFile(ASTModule->PresumedModuleMapFile, Kind); |
| 590 | } else { |
Richard Smith | 8b464f2 | 2018-09-15 01:21:18 +0000 | [diff] [blame] | 591 | auto &OldSM = AST->getSourceManager(); |
| 592 | FileID ID = OldSM.getMainFileID(); |
| 593 | if (auto *File = OldSM.getFileEntryForID(ID)) |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 594 | Input = FrontendInputFile(File->getName(), Kind); |
| 595 | else |
Richard Smith | 8b464f2 | 2018-09-15 01:21:18 +0000 | [diff] [blame] | 596 | Input = FrontendInputFile(OldSM.getBuffer(ID), Kind); |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 597 | } |
| 598 | setCurrentInput(Input, std::move(AST)); |
| 599 | } |
| 600 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 601 | // AST files follow a very different path, since they share objects via the |
| 602 | // AST unit. |
Richard Smith | 40c0efa | 2017-04-26 18:57:40 +0000 | [diff] [blame] | 603 | if (Input.getKind().getFormat() == InputKind::Precompiled) { |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 604 | assert(!usesPreprocessorOnly() && "this case was handled above"); |
Daniel Dunbar | fa6214c | 2010-06-07 23:24:43 +0000 | [diff] [blame] | 605 | assert(hasASTFileSupport() && |
| 606 | "This action does not have AST file support!"); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 607 | |
Dylan Noblesmith | c95d819 | 2012-02-20 14:00:23 +0000 | [diff] [blame] | 608 | IntrusiveRefCntPtr<DiagnosticsEngine> Diags(&CI.getDiagnostics()); |
Alp Toker | 965f882 | 2013-11-27 05:22:15 +0000 | [diff] [blame] | 609 | |
Richard Smith | d6509cf | 2018-09-15 01:21:15 +0000 | [diff] [blame] | 610 | // FIXME: What if the input is a memory buffer? |
| 611 | StringRef InputFile = Input.getFile(); |
| 612 | |
Adrian Prantl | 6b21ab2 | 2015-08-27 19:46:20 +0000 | [diff] [blame] | 613 | std::unique_ptr<ASTUnit> AST = ASTUnit::LoadFromASTFile( |
Richard Smith | dbafb6c | 2017-06-29 23:23:46 +0000 | [diff] [blame] | 614 | InputFile, CI.getPCHContainerReader(), ASTUnit::LoadEverything, Diags, |
| 615 | CI.getFileSystemOpts(), CI.getCodeGenOpts().DebugTypeExtRefs); |
David Blaikie | f62d4e7 | 2014-08-10 17:03:42 +0000 | [diff] [blame] | 616 | |
Daniel Dunbar | 5920300 | 2009-12-03 01:45:44 +0000 | [diff] [blame] | 617 | if (!AST) |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 618 | goto failure; |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 619 | |
Argyrios Kyrtzidis | c00f43a | 2013-03-18 22:55:24 +0000 | [diff] [blame] | 620 | // Inform the diagnostic client we are processing a source file. |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 621 | CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), nullptr); |
Argyrios Kyrtzidis | c00f43a | 2013-03-18 22:55:24 +0000 | [diff] [blame] | 622 | HasBegunSourceFile = true; |
| 623 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 624 | // Set the shared objects, these are reset when we finish processing the |
| 625 | // file, otherwise the CompilerInstance will happily destroy them. |
| 626 | CI.setFileManager(&AST->getFileManager()); |
| 627 | CI.setSourceManager(&AST->getSourceManager()); |
David Blaikie | 4156546 | 2017-01-05 19:48:07 +0000 | [diff] [blame] | 628 | CI.setPreprocessor(AST->getPreprocessorPtr()); |
David Blaikie | ee12322 | 2017-02-08 20:51:11 +0000 | [diff] [blame] | 629 | Preprocessor &PP = CI.getPreprocessor(); |
| 630 | PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), |
| 631 | PP.getLangOpts()); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 632 | CI.setASTContext(&AST->getASTContext()); |
| 633 | |
David Blaikie | f62d4e7 | 2014-08-10 17:03:42 +0000 | [diff] [blame] | 634 | setCurrentInput(Input, std::move(AST)); |
| 635 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 636 | // Initialize the action. |
Richard Smith | d9259c2 | 2017-06-09 01:36:10 +0000 | [diff] [blame] | 637 | if (!BeginSourceFileAction(CI)) |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 638 | goto failure; |
| 639 | |
James Dennett | f831767 | 2013-01-23 00:45:44 +0000 | [diff] [blame] | 640 | // Create the AST consumer. |
Argyrios Kyrtzidis | 873c858 | 2012-11-09 19:40:39 +0000 | [diff] [blame] | 641 | CI.setASTConsumer(CreateWrappedASTConsumer(CI, InputFile)); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 642 | if (!CI.hasASTConsumer()) |
| 643 | goto failure; |
| 644 | |
| 645 | return true; |
| 646 | } |
| 647 | |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 648 | // Set up the file and source managers, if needed. |
Raphael Isemann | abc3d04 | 2017-09-12 16:54:53 +0000 | [diff] [blame] | 649 | if (!CI.hasFileManager()) { |
| 650 | if (!CI.createFileManager()) { |
| 651 | goto failure; |
| 652 | } |
| 653 | } |
Daniel Dunbar | aed46fc | 2010-06-07 23:23:50 +0000 | [diff] [blame] | 654 | if (!CI.hasSourceManager()) |
Chris Lattner | 5159f61 | 2010-11-23 08:35:12 +0000 | [diff] [blame] | 655 | CI.createSourceManager(CI.getFileManager()); |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 656 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 657 | // Set up embedding for any specified files. Do this before we load any |
| 658 | // source files, including the primary module map for the compilation. |
| 659 | for (const auto &F : CI.getFrontendOpts().ModulesEmbedFiles) { |
| 660 | if (const auto *FE = CI.getFileManager().getFile(F, /*openFile*/true)) |
| 661 | CI.getSourceManager().setFileIsTransient(FE); |
| 662 | else |
| 663 | CI.getDiagnostics().Report(diag::err_modules_embed_file_not_found) << F; |
| 664 | } |
| 665 | if (CI.getFrontendOpts().ModulesEmbedAllFiles) |
| 666 | CI.getSourceManager().setAllFilesAreTransient(true); |
| 667 | |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 668 | // IR files bypass the rest of initialization. |
Richard Smith | 40c0efa | 2017-04-26 18:57:40 +0000 | [diff] [blame] | 669 | if (Input.getKind().getLanguage() == InputKind::LLVM_IR) { |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 670 | assert(hasIRSupport() && |
| 671 | "This action does not have IR file support!"); |
| 672 | |
| 673 | // Inform the diagnostic client we are processing a source file. |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 674 | CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), nullptr); |
Jordan Rose | ea762b0 | 2012-08-10 01:06:08 +0000 | [diff] [blame] | 675 | HasBegunSourceFile = true; |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 676 | |
| 677 | // Initialize the action. |
Richard Smith | d9259c2 | 2017-06-09 01:36:10 +0000 | [diff] [blame] | 678 | if (!BeginSourceFileAction(CI)) |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 679 | goto failure; |
| 680 | |
Ben Langmuir | beee15e | 2014-04-14 18:00:01 +0000 | [diff] [blame] | 681 | // Initialize the main file entry. |
| 682 | if (!CI.InitializeSourceManager(CurrentInput)) |
| 683 | goto failure; |
| 684 | |
Daniel Dunbar | 9507f9c | 2010-06-07 23:26:47 +0000 | [diff] [blame] | 685 | return true; |
| 686 | } |
| 687 | |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 688 | // If the implicit PCH include is actually a directory, rather than |
| 689 | // a single file, search for a suitable PCH file in that directory. |
| 690 | if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { |
| 691 | FileManager &FileMgr = CI.getFileManager(); |
| 692 | PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); |
| 693 | StringRef PCHInclude = PPOpts.ImplicitPCHInclude; |
Argyrios Kyrtzidis | bd0b651 | 2015-02-19 20:12:20 +0000 | [diff] [blame] | 694 | std::string SpecificModuleCachePath = CI.getSpecificModuleCachePath(); |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 695 | if (const DirectoryEntry *PCHDir = FileMgr.getDirectory(PCHInclude)) { |
Rafael Espindola | c080917 | 2014-06-12 14:02:15 +0000 | [diff] [blame] | 696 | std::error_code EC; |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 697 | SmallString<128> DirNative; |
| 698 | llvm::sys::path::native(PCHDir->getName(), DirNative); |
| 699 | bool Found = false; |
Jonas Devlieghere | fc51490 | 2018-10-10 13:27:25 +0000 | [diff] [blame] | 700 | llvm::vfs::FileSystem &FS = *FileMgr.getVirtualFileSystem(); |
| 701 | for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC), |
| 702 | DirEnd; |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 703 | Dir != DirEnd && !EC; Dir.increment(EC)) { |
| 704 | // Check whether this is an acceptable AST file. |
Adrian Prantl | bb165fb | 2015-06-20 18:53:08 +0000 | [diff] [blame] | 705 | if (ASTReader::isAcceptableASTFile( |
Sam McCall | 0ae0056 | 2018-09-14 12:47:38 +0000 | [diff] [blame] | 706 | Dir->path(), FileMgr, CI.getPCHContainerReader(), |
Adrian Prantl | bb165fb | 2015-06-20 18:53:08 +0000 | [diff] [blame] | 707 | CI.getLangOpts(), CI.getTargetOpts(), CI.getPreprocessorOpts(), |
| 708 | SpecificModuleCachePath)) { |
Sam McCall | 0ae0056 | 2018-09-14 12:47:38 +0000 | [diff] [blame] | 709 | PPOpts.ImplicitPCHInclude = Dir->path(); |
Argyrios Kyrtzidis | 48b72d8 | 2013-02-05 16:36:52 +0000 | [diff] [blame] | 710 | Found = true; |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 711 | break; |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | if (!Found) { |
| 716 | CI.getDiagnostics().Report(diag::err_fe_no_pch_in_dir) << PCHInclude; |
Richard Smith | 81c7248 | 2015-09-04 21:44:32 +0000 | [diff] [blame] | 717 | goto failure; |
Douglas Gregor | fc9e7a2 | 2012-10-23 06:18:24 +0000 | [diff] [blame] | 718 | } |
| 719 | } |
| 720 | } |
| 721 | |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 722 | // Set up the preprocessor if needed. When parsing model files the |
| 723 | // preprocessor of the original source is reused. |
| 724 | if (!isModelParsingAction()) |
| 725 | CI.createPreprocessor(getTranslationUnitKind()); |
Daniel Dunbar | aed46fc | 2010-06-07 23:23:50 +0000 | [diff] [blame] | 726 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 727 | // Inform the diagnostic client we are processing a source file. |
| 728 | CI.getDiagnosticClient().BeginSourceFile(CI.getLangOpts(), |
| 729 | &CI.getPreprocessor()); |
Jordan Rose | ea762b0 | 2012-08-10 01:06:08 +0000 | [diff] [blame] | 730 | HasBegunSourceFile = true; |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 731 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 732 | // Initialize the main file entry. |
| 733 | if (!CI.InitializeSourceManager(Input)) |
| 734 | goto failure; |
| 735 | |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 736 | // For module map files, we first parse the module map and synthesize a |
| 737 | // "<module-includes>" buffer before more conventional processing. |
| 738 | if (Input.getKind().getFormat() == InputKind::ModuleMap) { |
| 739 | CI.getLangOpts().setCompilingModule(LangOptions::CMK_ModuleMap); |
| 740 | |
Richard Smith | 8b70610 | 2017-05-31 20:56:55 +0000 | [diff] [blame] | 741 | std::string PresumedModuleMapFile; |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 742 | unsigned OffsetToContents; |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 743 | if (loadModuleMapForModuleBuild(CI, Input.isSystem(), |
Richard Smith | 8b70610 | 2017-05-31 20:56:55 +0000 | [diff] [blame] | 744 | Input.isPreprocessed(), |
| 745 | PresumedModuleMapFile, OffsetToContents)) |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 746 | goto failure; |
| 747 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 748 | auto *CurrentModule = prepareToBuildModule(CI, Input.getFile()); |
| 749 | if (!CurrentModule) |
| 750 | goto failure; |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 751 | |
Richard Smith | 8b70610 | 2017-05-31 20:56:55 +0000 | [diff] [blame] | 752 | CurrentModule->PresumedModuleMapFile = PresumedModuleMapFile; |
| 753 | |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 754 | if (OffsetToContents) |
| 755 | // If the module contents are in the same file, skip to them. |
| 756 | CI.getPreprocessor().setSkipMainFilePreamble(OffsetToContents, true); |
| 757 | else { |
| 758 | // Otherwise, convert the module description to a suitable input buffer. |
| 759 | auto Buffer = getInputBufferForModule(CI, CurrentModule); |
| 760 | if (!Buffer) |
| 761 | goto failure; |
| 762 | |
| 763 | // Reinitialize the main file entry to refer to the new input. |
Richard Smith | 6d9bc27 | 2017-09-09 01:14:04 +0000 | [diff] [blame] | 764 | auto Kind = CurrentModule->IsSystem ? SrcMgr::C_System : SrcMgr::C_User; |
| 765 | auto &SourceMgr = CI.getSourceManager(); |
| 766 | auto BufferID = SourceMgr.createFileID(std::move(Buffer), Kind); |
| 767 | assert(BufferID.isValid() && "couldn't creaate module buffer ID"); |
| 768 | SourceMgr.setMainFileID(BufferID); |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 769 | } |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 770 | } |
| 771 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 772 | // Initialize the action. |
Richard Smith | d9259c2 | 2017-06-09 01:36:10 +0000 | [diff] [blame] | 773 | if (!BeginSourceFileAction(CI)) |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 774 | goto failure; |
| 775 | |
Bruno Cardoso Lopes | 7315d2d | 2018-07-19 12:32:06 +0000 | [diff] [blame] | 776 | // If we were asked to load any module map files, do so now. |
| 777 | for (const auto &Filename : CI.getFrontendOpts().ModuleMapFiles) { |
| 778 | if (auto *File = CI.getFileManager().getFile(Filename)) |
| 779 | CI.getPreprocessor().getHeaderSearchInfo().loadModuleMapFile( |
| 780 | File, /*IsSystem*/false); |
| 781 | else |
| 782 | CI.getDiagnostics().Report(diag::err_module_map_not_found) << Filename; |
| 783 | } |
| 784 | |
| 785 | // Add a module declaration scope so that modules from -fmodule-map-file |
| 786 | // arguments may shadow modules found implicitly in search paths. |
| 787 | CI.getPreprocessor() |
| 788 | .getHeaderSearchInfo() |
| 789 | .getModuleMap() |
| 790 | .finishModuleDeclarationScope(); |
| 791 | |
James Dennett | f831767 | 2013-01-23 00:45:44 +0000 | [diff] [blame] | 792 | // Create the AST context and consumer unless this is a preprocessor only |
| 793 | // action. |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 794 | if (!usesPreprocessorOnly()) { |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 795 | // Parsing a model file should reuse the existing ASTContext. |
| 796 | if (!isModelParsingAction()) |
| 797 | CI.createASTContext(); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 798 | |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 799 | // For preprocessed files, check if the first line specifies the original |
| 800 | // source file name with a linemarker. |
Richard Smith | d6509cf | 2018-09-15 01:21:15 +0000 | [diff] [blame] | 801 | std::string PresumedInputFile = getCurrentFileOrBufferName(); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 802 | if (Input.isPreprocessed()) |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 803 | ReadOriginalFileName(CI, PresumedInputFile); |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 804 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 805 | std::unique_ptr<ASTConsumer> Consumer = |
Richard Smith | 8128f33 | 2017-05-05 22:18:51 +0000 | [diff] [blame] | 806 | CreateWrappedASTConsumer(CI, PresumedInputFile); |
Fariborz Jahanian | 2129ccf | 2010-10-29 19:49:13 +0000 | [diff] [blame] | 807 | if (!Consumer) |
| 808 | goto failure; |
Sebastian Redl | 07a89a8 | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 809 | |
Ted Kremenek | eeccb30 | 2014-08-27 15:14:15 +0000 | [diff] [blame] | 810 | // FIXME: should not overwrite ASTMutationListener when parsing model files? |
| 811 | if (!isModelParsingAction()) |
| 812 | CI.getASTContext().setASTMutationListener(Consumer->GetASTMutationListener()); |
Richard Smith | e842a47 | 2014-10-22 02:05:46 +0000 | [diff] [blame] | 813 | |
Argyrios Kyrtzidis | 35dcda7 | 2011-03-09 17:21:42 +0000 | [diff] [blame] | 814 | if (!CI.getPreprocessorOpts().ChainedIncludes.empty()) { |
| 815 | // Convert headers to PCH and chain them. |
Alp Toker | 9e0523d | 2014-07-07 11:07:10 +0000 | [diff] [blame] | 816 | IntrusiveRefCntPtr<ExternalSemaSource> source, FinalReader; |
| 817 | source = createChainedIncludesSource(CI, FinalReader); |
Argyrios Kyrtzidis | 35dcda7 | 2011-03-09 17:21:42 +0000 | [diff] [blame] | 818 | if (!source) |
| 819 | goto failure; |
Alp Toker | 9e0523d | 2014-07-07 11:07:10 +0000 | [diff] [blame] | 820 | CI.setModuleManager(static_cast<ASTReader *>(FinalReader.get())); |
Argyrios Kyrtzidis | 35dcda7 | 2011-03-09 17:21:42 +0000 | [diff] [blame] | 821 | CI.getASTContext().setExternalSource(source); |
Vassil Vassilev | a2c2d94 | 2017-02-07 21:49:41 +0000 | [diff] [blame] | 822 | } else if (CI.getLangOpts().Modules || |
| 823 | !CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { |
| 824 | // Use PCM or PCH. |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 825 | assert(hasPCHSupport() && "This action does not have PCH support!"); |
Douglas Gregor | 925296b | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 826 | ASTDeserializationListener *DeserialListener = |
| 827 | Consumer->GetASTDeserializationListener(); |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 828 | bool DeleteDeserialListener = false; |
| 829 | if (CI.getPreprocessorOpts().DumpDeserializedPCHDecls) { |
| 830 | DeserialListener = new DeserializedDeclsDumper(DeserialListener, |
| 831 | DeleteDeserialListener); |
| 832 | DeleteDeserialListener = true; |
| 833 | } |
| 834 | if (!CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn.empty()) { |
| 835 | DeserialListener = new DeserializedDeclsChecker( |
| 836 | CI.getASTContext(), |
| 837 | CI.getPreprocessorOpts().DeserializedPCHDeclsToErrorOn, |
| 838 | DeserialListener, DeleteDeserialListener); |
| 839 | DeleteDeserialListener = true; |
| 840 | } |
Vassil Vassilev | a2c2d94 | 2017-02-07 21:49:41 +0000 | [diff] [blame] | 841 | if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { |
| 842 | CI.createPCHExternalASTSource( |
| 843 | CI.getPreprocessorOpts().ImplicitPCHInclude, |
| 844 | CI.getPreprocessorOpts().DisablePCHValidation, |
Nico Weber | 824285e | 2014-05-08 04:26:47 +0000 | [diff] [blame] | 845 | CI.getPreprocessorOpts().AllowPCHWithCompilerErrors, DeserialListener, |
Vassil Vassilev | a2c2d94 | 2017-02-07 21:49:41 +0000 | [diff] [blame] | 846 | DeleteDeserialListener); |
| 847 | if (!CI.getASTContext().getExternalSource()) |
| 848 | goto failure; |
| 849 | } |
| 850 | // If modules are enabled, create the module manager before creating |
| 851 | // any builtins, so that all declarations know that they might be |
| 852 | // extended by an external source. |
| 853 | if (CI.getLangOpts().Modules || !CI.hasASTContext() || |
| 854 | !CI.getASTContext().getExternalSource()) { |
| 855 | CI.createModuleManager(); |
| 856 | CI.getModuleManager()->setDeserializationListener(DeserialListener, |
| 857 | DeleteDeserialListener); |
| 858 | } |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 859 | } |
Sebastian Redl | 4d3af3e | 2010-07-09 21:00:24 +0000 | [diff] [blame] | 860 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 861 | CI.setASTConsumer(std::move(Consumer)); |
Sebastian Redl | 4d3af3e | 2010-07-09 21:00:24 +0000 | [diff] [blame] | 862 | if (!CI.hasASTConsumer()) |
| 863 | goto failure; |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 864 | } |
| 865 | |
Jonathan D. Turner | 0248f57 | 2011-08-05 22:17:03 +0000 | [diff] [blame] | 866 | // Initialize built-in info as long as we aren't using an external AST |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 867 | // source. |
Vassil Vassilev | a2c2d94 | 2017-02-07 21:49:41 +0000 | [diff] [blame] | 868 | if (CI.getLangOpts().Modules || !CI.hasASTContext() || |
| 869 | !CI.getASTContext().getExternalSource()) { |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 870 | Preprocessor &PP = CI.getPreprocessor(); |
Eric Christopher | 02d5d86 | 2015-08-06 01:01:12 +0000 | [diff] [blame] | 871 | PP.getBuiltinInfo().initializeBuiltins(PP.getIdentifierTable(), |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 872 | PP.getLangOpts()); |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 873 | } else { |
| 874 | // FIXME: If this is a problem, recover from it by creating a multiplex |
| 875 | // source. |
| 876 | assert((!CI.getLangOpts().Modules || CI.getModuleManager()) && |
| 877 | "modules enabled but created an external source that " |
| 878 | "doesn't support modules"); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 879 | } |
| 880 | |
Richard Smith | d4b230b | 2014-10-27 23:01:16 +0000 | [diff] [blame] | 881 | // If we were asked to load any module files, do so now. |
| 882 | for (const auto &ModuleFile : CI.getFrontendOpts().ModuleFiles) |
| 883 | if (!CI.loadModuleFile(ModuleFile)) |
Richard Smith | e842a47 | 2014-10-22 02:05:46 +0000 | [diff] [blame] | 884 | goto failure; |
Richard Smith | e842a47 | 2014-10-22 02:05:46 +0000 | [diff] [blame] | 885 | |
Douglas Gregor | e9fc377 | 2012-01-26 07:55:45 +0000 | [diff] [blame] | 886 | // If there is a layout overrides file, attach an external AST source that |
| 887 | // provides the layouts from that file. |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 888 | if (!CI.getFrontendOpts().OverrideRecordLayoutsFile.empty() && |
Douglas Gregor | e9fc377 | 2012-01-26 07:55:45 +0000 | [diff] [blame] | 889 | CI.hasASTContext() && !CI.getASTContext().getExternalSource()) { |
Taewook Oh | 06b1af5 | 2017-03-07 20:20:23 +0000 | [diff] [blame] | 890 | IntrusiveRefCntPtr<ExternalASTSource> |
Douglas Gregor | e9fc377 | 2012-01-26 07:55:45 +0000 | [diff] [blame] | 891 | Override(new LayoutOverrideSource( |
| 892 | CI.getFrontendOpts().OverrideRecordLayoutsFile)); |
| 893 | CI.getASTContext().setExternalSource(Override); |
| 894 | } |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 895 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 896 | return true; |
| 897 | |
| 898 | // If we failed, reset state since the client will not end up calling the |
| 899 | // matching EndSourceFile(). |
Richard Smith | ab75597 | 2017-06-05 18:10:11 +0000 | [diff] [blame] | 900 | failure: |
Jordan Rose | ea762b0 | 2012-08-10 01:06:08 +0000 | [diff] [blame] | 901 | if (HasBegunSourceFile) |
| 902 | CI.getDiagnosticClient().EndSourceFile(); |
Benjamin Kramer | 3c717b4 | 2012-10-14 19:21:21 +0000 | [diff] [blame] | 903 | CI.clearOutputFiles(/*EraseFiles=*/true); |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 904 | CI.getLangOpts().setCompilingModule(LangOptions::CMK_None); |
Douglas Gregor | 32fbe31 | 2012-01-20 16:28:04 +0000 | [diff] [blame] | 905 | setCurrentInput(FrontendInputFile()); |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 906 | setCompilerInstance(nullptr); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 907 | return false; |
| 908 | } |
| 909 | |
Argyrios Kyrtzidis | 1416e17 | 2012-06-08 05:48:06 +0000 | [diff] [blame] | 910 | bool FrontendAction::Execute() { |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 911 | CompilerInstance &CI = getCompilerInstance(); |
| 912 | |
Kovarththanan Rajaratnam | 5505dff | 2009-11-29 09:57:35 +0000 | [diff] [blame] | 913 | if (CI.hasFrontendTimer()) { |
| 914 | llvm::TimeRegion Timer(CI.getFrontendTimer()); |
| 915 | ExecuteAction(); |
| 916 | } |
| 917 | else ExecuteAction(); |
Argyrios Kyrtzidis | 1416e17 | 2012-06-08 05:48:06 +0000 | [diff] [blame] | 918 | |
Douglas Gregor | 5e306b1 | 2013-01-23 22:38:11 +0000 | [diff] [blame] | 919 | // If we are supposed to rebuild the global module index, do so now unless |
Douglas Gregor | c1bbec8 | 2013-01-25 00:45:27 +0000 | [diff] [blame] | 920 | // there were any module-build failures. |
| 921 | if (CI.shouldBuildGlobalModuleIndex() && CI.hasFileManager() && |
| 922 | CI.hasPreprocessor()) { |
Richard Smith | 3938f0c | 2015-08-15 00:34:15 +0000 | [diff] [blame] | 923 | StringRef Cache = |
| 924 | CI.getPreprocessor().getHeaderSearchInfo().getModuleCachePath(); |
| 925 | if (!Cache.empty()) |
| 926 | GlobalModuleIndex::writeIndex(CI.getFileManager(), |
| 927 | CI.getPCHContainerReader(), Cache); |
Douglas Gregor | 5e306b1 | 2013-01-23 22:38:11 +0000 | [diff] [blame] | 928 | } |
| 929 | |
Argyrios Kyrtzidis | 1416e17 | 2012-06-08 05:48:06 +0000 | [diff] [blame] | 930 | return true; |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | void FrontendAction::EndSourceFile() { |
| 934 | CompilerInstance &CI = getCompilerInstance(); |
| 935 | |
Douglas Gregor | 1388a89 | 2011-02-09 18:47:31 +0000 | [diff] [blame] | 936 | // Inform the diagnostic client we are done with this source file. |
| 937 | CI.getDiagnosticClient().EndSourceFile(); |
| 938 | |
Benjamin Kramer | 88d99e4 | 2014-08-07 20:51:16 +0000 | [diff] [blame] | 939 | // Inform the preprocessor we are done. |
| 940 | if (CI.hasPreprocessor()) |
| 941 | CI.getPreprocessor().EndSourceFile(); |
| 942 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 943 | // Finalize the action. |
| 944 | EndSourceFileAction(); |
| 945 | |
Nico Weber | 7de358e | 2014-04-24 02:42:04 +0000 | [diff] [blame] | 946 | // Sema references the ast consumer, so reset sema first. |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 947 | // |
| 948 | // FIXME: There is more per-file stuff we could just drop here? |
Nico Weber | 7de358e | 2014-04-24 02:42:04 +0000 | [diff] [blame] | 949 | bool DisableFree = CI.getFrontendOpts().DisableFree; |
| 950 | if (DisableFree) { |
Duncan P. N. Exon Smith | 4a8212a | 2015-05-04 14:59:20 +0000 | [diff] [blame] | 951 | CI.resetAndLeakSema(); |
| 952 | CI.resetAndLeakASTContext(); |
David Blaikie | 9941da4 | 2018-11-17 18:04:13 +0000 | [diff] [blame] | 953 | llvm::BuryPointer(CI.takeASTConsumer().get()); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 954 | } else { |
Duncan P. N. Exon Smith | 4a8212a | 2015-05-04 14:59:20 +0000 | [diff] [blame] | 955 | CI.setSema(nullptr); |
| 956 | CI.setASTContext(nullptr); |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 957 | CI.setASTConsumer(nullptr); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 958 | } |
| 959 | |
| 960 | if (CI.getFrontendOpts().ShowStats) { |
| 961 | llvm::errs() << "\nSTATISTICS FOR '" << getCurrentFile() << "':\n"; |
| 962 | CI.getPreprocessor().PrintStats(); |
| 963 | CI.getPreprocessor().getIdentifierTable().PrintStats(); |
| 964 | CI.getPreprocessor().getHeaderSearchInfo().PrintStats(); |
| 965 | CI.getSourceManager().PrintStats(); |
| 966 | llvm::errs() << "\n"; |
| 967 | } |
| 968 | |
Argyrios Kyrtzidis | f0168de | 2013-06-11 00:36:55 +0000 | [diff] [blame] | 969 | // Cleanup the output streams, and erase the output files if instructed by the |
| 970 | // FrontendAction. |
| 971 | CI.clearOutputFiles(/*EraseFiles=*/shouldEraseOutputFiles()); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 972 | |
Nico Weber | 1f29ccf | 2014-04-24 03:31:27 +0000 | [diff] [blame] | 973 | if (isCurrentFileAST()) { |
Duncan P. N. Exon Smith | 4a8212a | 2015-05-04 14:59:20 +0000 | [diff] [blame] | 974 | if (DisableFree) { |
| 975 | CI.resetAndLeakPreprocessor(); |
| 976 | CI.resetAndLeakSourceManager(); |
| 977 | CI.resetAndLeakFileManager(); |
David Blaikie | 9941da4 | 2018-11-17 18:04:13 +0000 | [diff] [blame] | 978 | llvm::BuryPointer(std::move(CurrentASTUnit)); |
Duncan P. N. Exon Smith | 4a8212a | 2015-05-04 14:59:20 +0000 | [diff] [blame] | 979 | } else { |
| 980 | CI.setPreprocessor(nullptr); |
| 981 | CI.setSourceManager(nullptr); |
| 982 | CI.setFileManager(nullptr); |
| 983 | } |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 986 | setCompilerInstance(nullptr); |
Douglas Gregor | 32fbe31 | 2012-01-20 16:28:04 +0000 | [diff] [blame] | 987 | setCurrentInput(FrontendInputFile()); |
Richard Smith | f74d946 | 2017-04-28 01:49:42 +0000 | [diff] [blame] | 988 | CI.getLangOpts().setCompilingModule(LangOptions::CMK_None); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 989 | } |
| 990 | |
Argyrios Kyrtzidis | f0168de | 2013-06-11 00:36:55 +0000 | [diff] [blame] | 991 | bool FrontendAction::shouldEraseOutputFiles() { |
| 992 | return getCompilerInstance().getDiagnostics().hasErrorOccurred(); |
| 993 | } |
| 994 | |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 995 | //===----------------------------------------------------------------------===// |
| 996 | // Utility Actions |
| 997 | //===----------------------------------------------------------------------===// |
| 998 | |
| 999 | void ASTFrontendAction::ExecuteAction() { |
| 1000 | CompilerInstance &CI = getCompilerInstance(); |
Rafael Espindola | 5150f2f | 2013-07-28 13:23:37 +0000 | [diff] [blame] | 1001 | if (!CI.hasPreprocessor()) |
| 1002 | return; |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 1003 | |
| 1004 | // FIXME: Move the truncation aspect of this into Sema, we delayed this till |
| 1005 | // here so the source manager would be initialized. |
| 1006 | if (hasCodeCompletionSupport() && |
| 1007 | !CI.getFrontendOpts().CodeCompletionAt.FileName.empty()) |
| 1008 | CI.createCodeCompletionConsumer(); |
| 1009 | |
| 1010 | // Use a code completion consumer? |
Craig Topper | 49a2790 | 2014-05-22 04:46:25 +0000 | [diff] [blame] | 1011 | CodeCompleteConsumer *CompletionConsumer = nullptr; |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 1012 | if (CI.hasCodeCompletionConsumer()) |
| 1013 | CompletionConsumer = &CI.getCodeCompletionConsumer(); |
| 1014 | |
Douglas Gregor | 0e93f01 | 2010-08-12 23:31:19 +0000 | [diff] [blame] | 1015 | if (!CI.hasSema()) |
Douglas Gregor | 69f74f8 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 1016 | CI.createSema(getTranslationUnitKind(), CompletionConsumer); |
Douglas Gregor | 0e93f01 | 2010-08-12 23:31:19 +0000 | [diff] [blame] | 1017 | |
Erik Verbruggen | 6e92251 | 2012-04-12 10:11:59 +0000 | [diff] [blame] | 1018 | ParseAST(CI.getSema(), CI.getFrontendOpts().ShowStats, |
| 1019 | CI.getFrontendOpts().SkipFunctionBodies); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 1022 | void PluginASTAction::anchor() { } |
| 1023 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 1024 | std::unique_ptr<ASTConsumer> |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 1025 | PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1026 | StringRef InFile) { |
Jeffrey Yasskin | 1615d45 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 1027 | llvm_unreachable("Invalid CreateASTConsumer on preprocessor action!"); |
Daniel Dunbar | a0ff58d | 2009-11-14 10:42:35 +0000 | [diff] [blame] | 1028 | } |
Chandler Carruth | b570351 | 2011-06-16 16:17:05 +0000 | [diff] [blame] | 1029 | |
David Blaikie | 6beb6aa | 2014-08-10 19:56:51 +0000 | [diff] [blame] | 1030 | std::unique_ptr<ASTConsumer> |
| 1031 | WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, |
| 1032 | StringRef InFile) { |
Chandler Carruth | b570351 | 2011-06-16 16:17:05 +0000 | [diff] [blame] | 1033 | return WrappedAction->CreateASTConsumer(CI, InFile); |
| 1034 | } |
Argyrios Kyrtzidis | 90b6a2a | 2011-06-18 00:53:41 +0000 | [diff] [blame] | 1035 | bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { |
| 1036 | return WrappedAction->BeginInvocation(CI); |
| 1037 | } |
Richard Smith | d9259c2 | 2017-06-09 01:36:10 +0000 | [diff] [blame] | 1038 | bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI) { |
Douglas Gregor | 32fbe31 | 2012-01-20 16:28:04 +0000 | [diff] [blame] | 1039 | WrappedAction->setCurrentInput(getCurrentInput()); |
Argyrios Kyrtzidis | 90b6a2a | 2011-06-18 00:53:41 +0000 | [diff] [blame] | 1040 | WrappedAction->setCompilerInstance(&CI); |
Richard Smith | d9259c2 | 2017-06-09 01:36:10 +0000 | [diff] [blame] | 1041 | auto Ret = WrappedAction->BeginSourceFileAction(CI); |
Argyrios Kyrtzidis | e89a179 | 2016-02-16 05:39:33 +0000 | [diff] [blame] | 1042 | // BeginSourceFileAction may change CurrentInput, e.g. during module builds. |
| 1043 | setCurrentInput(WrappedAction->getCurrentInput()); |
| 1044 | return Ret; |
Chandler Carruth | b570351 | 2011-06-16 16:17:05 +0000 | [diff] [blame] | 1045 | } |
| 1046 | void WrapperFrontendAction::ExecuteAction() { |
| 1047 | WrappedAction->ExecuteAction(); |
| 1048 | } |
| 1049 | void WrapperFrontendAction::EndSourceFileAction() { |
| 1050 | WrappedAction->EndSourceFileAction(); |
| 1051 | } |
| 1052 | |
| 1053 | bool WrapperFrontendAction::usesPreprocessorOnly() const { |
| 1054 | return WrappedAction->usesPreprocessorOnly(); |
| 1055 | } |
Douglas Gregor | 69f74f8 | 2011-08-25 22:30:56 +0000 | [diff] [blame] | 1056 | TranslationUnitKind WrapperFrontendAction::getTranslationUnitKind() { |
| 1057 | return WrappedAction->getTranslationUnitKind(); |
Chandler Carruth | b570351 | 2011-06-16 16:17:05 +0000 | [diff] [blame] | 1058 | } |
| 1059 | bool WrapperFrontendAction::hasPCHSupport() const { |
| 1060 | return WrappedAction->hasPCHSupport(); |
| 1061 | } |
| 1062 | bool WrapperFrontendAction::hasASTFileSupport() const { |
| 1063 | return WrappedAction->hasASTFileSupport(); |
| 1064 | } |
| 1065 | bool WrapperFrontendAction::hasIRSupport() const { |
| 1066 | return WrappedAction->hasIRSupport(); |
| 1067 | } |
| 1068 | bool WrapperFrontendAction::hasCodeCompletionSupport() const { |
| 1069 | return WrappedAction->hasCodeCompletionSupport(); |
| 1070 | } |
| 1071 | |
Argyrios Kyrtzidis | d35e98f | 2016-02-07 19:28:36 +0000 | [diff] [blame] | 1072 | WrapperFrontendAction::WrapperFrontendAction( |
| 1073 | std::unique_ptr<FrontendAction> WrappedAction) |
| 1074 | : WrappedAction(std::move(WrappedAction)) {} |
Chandler Carruth | b570351 | 2011-06-16 16:17:05 +0000 | [diff] [blame] | 1075 | |