blob: 1acaf6862e3a5c0990d6d13710e6682c5b62c9ef [file] [log] [blame]
Daniel Dunbar02bd2d72009-11-14 10:42:46 +00001//===--- FrontendActions.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/FrontendActions.h"
11#include "clang/AST/ASTConsumer.h"
12#include "clang/Basic/FileManager.h"
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000013#include "clang/Frontend/ASTConsumers.h"
14#include "clang/Frontend/ASTUnit.h"
15#include "clang/Frontend/CompilerInstance.h"
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000016#include "clang/Frontend/FrontendDiagnostic.h"
17#include "clang/Frontend/Utils.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/Lex/HeaderSearch.h"
19#include "clang/Lex/Pragma.h"
20#include "clang/Lex/Preprocessor.h"
21#include "clang/Parse/Parser.h"
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +000022#include "clang/Serialization/ASTReader.h"
Sebastian Redl1914c6f2010-08-18 23:56:37 +000023#include "clang/Serialization/ASTWriter.h"
Douglas Gregor524e33e2011-12-08 19:11:24 +000024#include "llvm/Support/FileSystem.h"
Douglas Gregoraf82e352010-07-20 20:18:03 +000025#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000026#include "llvm/Support/raw_ostream.h"
Ahmed Charlesdfca6f92014-03-09 11:36:40 +000027#include <memory>
Rafael Espindola8a8e5542014-06-12 17:19:42 +000028#include <system_error>
Douglas Gregor52da28b2011-09-23 23:43:36 +000029
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000030using namespace clang;
31
Daniel Dunbar88357802009-11-14 10:42:57 +000032//===----------------------------------------------------------------------===//
Daniel Dunbar1c201fb2010-03-19 19:44:04 +000033// Custom Actions
34//===----------------------------------------------------------------------===//
35
David Blaikie6beb6aa2014-08-10 19:56:51 +000036std::unique_ptr<ASTConsumer>
37InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
38 return llvm::make_unique<ASTConsumer>();
Daniel Dunbar1c201fb2010-03-19 19:44:04 +000039}
40
41void InitOnlyAction::ExecuteAction() {
42}
43
44//===----------------------------------------------------------------------===//
Daniel Dunbar88357802009-11-14 10:42:57 +000045// AST Consumer Actions
46//===----------------------------------------------------------------------===//
47
David Blaikie6beb6aa2014-08-10 19:56:51 +000048std::unique_ptr<ASTConsumer>
49ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +000050 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
Alexander Kornienko3db68ee2012-07-26 16:01:23 +000051 return CreateASTPrinter(OS, CI.getFrontendOpts().ASTDumpFilter);
Craig Topper49a27902014-05-22 04:46:25 +000052 return nullptr;
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000053}
54
David Blaikie6beb6aa2014-08-10 19:56:51 +000055std::unique_ptr<ASTConsumer>
56ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Richard Smith6ea05822013-06-24 01:45:33 +000057 return CreateASTDumper(CI.getFrontendOpts().ASTDumpFilter,
Richard Smith35f986d2014-08-11 22:11:07 +000058 CI.getFrontendOpts().ASTDumpDecls,
Richard Smith6ea05822013-06-24 01:45:33 +000059 CI.getFrontendOpts().ASTDumpLookups);
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000060}
61
David Blaikie6beb6aa2014-08-10 19:56:51 +000062std::unique_ptr<ASTConsumer>
63ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Alexander Kornienko4de03592012-07-31 09:37:40 +000064 return CreateASTDeclNodeLister();
65}
66
David Blaikie6beb6aa2014-08-10 19:56:51 +000067std::unique_ptr<ASTConsumer>
68ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000069 return CreateASTViewer();
70}
71
David Blaikie6beb6aa2014-08-10 19:56:51 +000072std::unique_ptr<ASTConsumer>
73DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
74 StringRef InFile) {
Daniel Dunbar02bd2d72009-11-14 10:42:46 +000075 return CreateDeclContextPrinter();
76}
77
David Blaikie6beb6aa2014-08-10 19:56:51 +000078std::unique_ptr<ASTConsumer>
79GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
Douglas Gregor48c8cd32010-08-03 08:14:03 +000080 std::string Sysroot;
Argyrios Kyrtzidis10b23682011-02-15 17:54:22 +000081 std::string OutputFile;
Rafael Espindola47de1492015-04-10 12:54:53 +000082 raw_ostream *OS =
83 ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
84 if (!OS)
Craig Topper49a27902014-05-22 04:46:25 +000085 return nullptr;
Douglas Gregor48c8cd32010-08-03 08:14:03 +000086
Douglas Gregorc567ba22011-07-22 16:35:34 +000087 if (!CI.getFrontendOpts().RelocatablePCH)
88 Sysroot.clear();
Adrian Prantlcbc368c2015-02-25 02:44:04 +000089 return llvm::make_unique<PCHGenerator>(CI.getPreprocessor(), OutputFile,
90 nullptr, Sysroot, OS);
Douglas Gregor48c8cd32010-08-03 08:14:03 +000091}
92
Rafael Espindola47de1492015-04-10 12:54:53 +000093raw_ostream *GeneratePCHAction::ComputeASTConsumerArguments(
94 CompilerInstance &CI, StringRef InFile, std::string &Sysroot,
95 std::string &OutputFile) {
Douglas Gregor48c8cd32010-08-03 08:14:03 +000096 Sysroot = CI.getHeaderSearchOpts().Sysroot;
97 if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
Sebastian Redlea68af42010-08-17 17:55:38 +000098 CI.getDiagnostics().Report(diag::err_relocatable_without_isysroot);
Rafael Espindola47de1492015-04-10 12:54:53 +000099 return nullptr;
Daniel Dunbar02bd2d72009-11-14 10:42:46 +0000100 }
101
Daniel Dunbara2867c72011-01-31 22:00:44 +0000102 // We use createOutputFile here because this is exposed via libclang, and we
103 // must disable the RemoveFileOnSignal behavior.
Argyrios Kyrtzidis08a2bfd2011-07-28 00:45:10 +0000104 // We use a temporary to avoid race conditions.
Rafael Espindola47de1492015-04-10 12:54:53 +0000105 raw_ostream *OS =
106 CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
107 /*RemoveFileOnSignal=*/false, InFile,
108 /*Extension=*/"", /*useTemporary=*/true);
Daniel Dunbar75546992009-12-03 09:13:30 +0000109 if (!OS)
Rafael Espindola47de1492015-04-10 12:54:53 +0000110 return nullptr;
Daniel Dunbar75546992009-12-03 09:13:30 +0000111
Argyrios Kyrtzidis10b23682011-02-15 17:54:22 +0000112 OutputFile = CI.getFrontendOpts().OutputFile;
Rafael Espindola47de1492015-04-10 12:54:53 +0000113 return OS;
Daniel Dunbar02bd2d72009-11-14 10:42:46 +0000114}
115
David Blaikie6beb6aa2014-08-10 19:56:51 +0000116std::unique_ptr<ASTConsumer>
117GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI,
118 StringRef InFile) {
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000119 std::string Sysroot;
120 std::string OutputFile;
Rafael Espindolabfd25d42015-04-10 13:14:31 +0000121 raw_ostream *OS =
122 ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
123 if (!OS)
Craig Topper49a27902014-05-22 04:46:25 +0000124 return nullptr;
125
Adrian Prantlcbc368c2015-02-25 02:44:04 +0000126 return llvm::make_unique<PCHGenerator>(CI.getPreprocessor(), OutputFile,
127 Module, Sysroot, OS);
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000128}
129
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000130static SmallVectorImpl<char> &
131operator+=(SmallVectorImpl<char> &Includes, StringRef RHS) {
132 Includes.append(RHS.begin(), RHS.end());
133 return Includes;
134}
135
Rafael Espindolac0809172014-06-12 14:02:15 +0000136static std::error_code addHeaderInclude(StringRef HeaderName,
137 SmallVectorImpl<char> &Includes,
138 const LangOptions &LangOpts,
139 bool IsExternC) {
Richard Smith9bca2982014-03-08 00:03:56 +0000140 if (IsExternC && LangOpts.CPlusPlus)
Richard Smith77944862014-03-02 05:58:18 +0000141 Includes += "extern \"C\" {\n";
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000142 if (LangOpts.ObjC1)
143 Includes += "#import \"";
144 else
145 Includes += "#include \"";
Richard Smith3c1a41a2014-12-02 00:08:08 +0000146
147 Includes += HeaderName;
148
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000149 Includes += "\"\n";
Richard Smith9bca2982014-03-08 00:03:56 +0000150 if (IsExternC && LangOpts.CPlusPlus)
Richard Smith77944862014-03-02 05:58:18 +0000151 Includes += "}\n";
Rafael Espindolac0809172014-06-12 14:02:15 +0000152 return std::error_code();
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000153}
154
Rafael Espindolac0809172014-06-12 14:02:15 +0000155static std::error_code addHeaderInclude(const FileEntry *Header,
156 SmallVectorImpl<char> &Includes,
157 const LangOptions &LangOpts,
158 bool IsExternC) {
Richard Smith3c1a41a2014-12-02 00:08:08 +0000159 // Use an absolute path if we don't have a filename as written in the module
160 // map file; this ensures that we will identify the right file independent of
161 // header search paths.
162 if (llvm::sys::path::is_absolute(Header->getName()))
163 return addHeaderInclude(Header->getName(), Includes, LangOpts, IsExternC);
164
165 SmallString<256> AbsName(Header->getName());
166 if (std::error_code Err = llvm::sys::fs::make_absolute(AbsName))
167 return Err;
168 return addHeaderInclude(AbsName, Includes, LangOpts, IsExternC);
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000169}
170
Douglas Gregor4332b322011-11-16 17:04:00 +0000171/// \brief Collect the set of header includes needed to construct the given
Argyrios Kyrtzidisc597c8c2012-10-05 00:22:33 +0000172/// module and update the TopHeaders file set of the module.
Douglas Gregor4332b322011-11-16 17:04:00 +0000173///
174/// \param Module The module we're collecting includes from.
Douglas Gregore5626c42011-12-06 17:15:11 +0000175///
James Dennettc423c532012-06-15 21:48:19 +0000176/// \param Includes Will be augmented with the set of \#includes or \#imports
Douglas Gregore5626c42011-12-06 17:15:11 +0000177/// needed to load all of the named headers.
Rafael Espindolac0809172014-06-12 14:02:15 +0000178static std::error_code
Richard Smith723928c2014-03-11 02:02:47 +0000179collectModuleHeaderIncludes(const LangOptions &LangOpts, FileManager &FileMgr,
180 ModuleMap &ModMap, clang::Module *Module,
181 SmallVectorImpl<char> &Includes) {
Douglas Gregor1fb5c3a2011-12-31 04:05:44 +0000182 // Don't collect any headers for unavailable modules.
183 if (!Module->isAvailable())
Rafael Espindolac0809172014-06-12 14:02:15 +0000184 return std::error_code();
Douglas Gregor1fb5c3a2011-12-31 04:05:44 +0000185
Douglas Gregore5626c42011-12-06 17:15:11 +0000186 // Add includes for each of these headers.
Richard Smith3c1a41a2014-12-02 00:08:08 +0000187 for (Module::Header &H : Module->Headers[Module::HK_Normal]) {
188 Module->addTopHeader(H.Entry);
189 // Use the path as specified in the module map file. We'll look for this
190 // file relative to the module build directory (the directory containing
191 // the module map file) so this will find the same file that we found
192 // while parsing the module map.
193 if (std::error_code Err = addHeaderInclude(H.NameAsWritten, Includes,
194 LangOpts, Module->IsExternC))
Richard Smith723928c2014-03-11 02:02:47 +0000195 return Err;
Douglas Gregor3ec66632012-02-02 18:42:48 +0000196 }
Lawrence Crowlb53e5482013-06-20 21:14:14 +0000197 // Note that Module->PrivateHeaders will not be a TopHeader.
Douglas Gregore5626c42011-12-06 17:15:11 +0000198
Douglas Gregor73141fa2011-12-08 17:39:04 +0000199 if (const FileEntry *UmbrellaHeader = Module->getUmbrellaHeader()) {
Richard Smith3c1a41a2014-12-02 00:08:08 +0000200 // FIXME: Track the name as written here.
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +0000201 Module->addTopHeader(UmbrellaHeader);
Douglas Gregor3ec66632012-02-02 18:42:48 +0000202 if (Module->Parent) {
203 // Include the umbrella header for submodules.
Rafael Espindolac0809172014-06-12 14:02:15 +0000204 if (std::error_code Err = addHeaderInclude(UmbrellaHeader, Includes,
205 LangOpts, Module->IsExternC))
Richard Smith723928c2014-03-11 02:02:47 +0000206 return Err;
Douglas Gregor3ec66632012-02-02 18:42:48 +0000207 }
Douglas Gregor524e33e2011-12-08 19:11:24 +0000208 } else if (const DirectoryEntry *UmbrellaDir = Module->getUmbrellaDir()) {
Douglas Gregord2a8fe12012-01-05 00:04:05 +0000209 // Add all of the headers we find in this subdirectory.
Rafael Espindolac0809172014-06-12 14:02:15 +0000210 std::error_code EC;
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000211 SmallString<128> DirNative;
Douglas Gregor524e33e2011-12-08 19:11:24 +0000212 llvm::sys::path::native(UmbrellaDir->getName(), DirNative);
Yaron Keren92e1b622015-03-18 10:17:07 +0000213 for (llvm::sys::fs::recursive_directory_iterator Dir(DirNative, EC),
Douglas Gregorc1aaf8c2011-12-12 19:13:53 +0000214 DirEnd;
Douglas Gregor524e33e2011-12-08 19:11:24 +0000215 Dir != DirEnd && !EC; Dir.increment(EC)) {
216 // Check whether this entry has an extension typically associated with
217 // headers.
218 if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path()))
219 .Cases(".h", ".H", ".hh", ".hpp", true)
220 .Default(false))
221 continue;
Richard Smith3c1a41a2014-12-02 00:08:08 +0000222
223 const FileEntry *Header = FileMgr.getFile(Dir->path());
224 // FIXME: This shouldn't happen unless there is a file system race. Is
225 // that worth diagnosing?
226 if (!Header)
227 continue;
228
Douglas Gregord2a8fe12012-01-05 00:04:05 +0000229 // If this header is marked 'unavailable' in this module, don't include
230 // it.
Richard Smith3c1a41a2014-12-02 00:08:08 +0000231 if (ModMap.isHeaderUnavailableInModule(Header, Module))
232 continue;
233
Richard Smith723928c2014-03-11 02:02:47 +0000234 // Include this header as part of the umbrella directory.
Richard Smith3c1a41a2014-12-02 00:08:08 +0000235 // FIXME: Track the name as written through to here.
236 Module->addTopHeader(Header);
237 if (std::error_code Err =
238 addHeaderInclude(Header, Includes, LangOpts, Module->IsExternC))
Richard Smith723928c2014-03-11 02:02:47 +0000239 return Err;
Douglas Gregor524e33e2011-12-08 19:11:24 +0000240 }
Richard Smith723928c2014-03-11 02:02:47 +0000241
242 if (EC)
243 return EC;
Douglas Gregor4332b322011-11-16 17:04:00 +0000244 }
Richard Smith3c1a41a2014-12-02 00:08:08 +0000245
Douglas Gregor4332b322011-11-16 17:04:00 +0000246 // Recurse into submodules.
Douglas Gregoreb90e832012-01-04 23:32:19 +0000247 for (clang::Module::submodule_iterator Sub = Module->submodule_begin(),
248 SubEnd = Module->submodule_end();
Douglas Gregore5626c42011-12-06 17:15:11 +0000249 Sub != SubEnd; ++Sub)
Rafael Espindolac0809172014-06-12 14:02:15 +0000250 if (std::error_code Err = collectModuleHeaderIncludes(
Richard Smith723928c2014-03-11 02:02:47 +0000251 LangOpts, FileMgr, ModMap, *Sub, Includes))
252 return Err;
253
Rafael Espindolac0809172014-06-12 14:02:15 +0000254 return std::error_code();
Douglas Gregor4332b322011-11-16 17:04:00 +0000255}
256
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000257bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI,
258 StringRef Filename) {
259 // Find the module map file.
260 const FileEntry *ModuleMap = CI.getFileManager().getFile(Filename);
261 if (!ModuleMap) {
262 CI.getDiagnostics().Report(diag::err_module_map_not_found)
263 << Filename;
264 return false;
265 }
266
267 // Parse the module map file.
268 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
Douglas Gregor963c5532013-06-21 16:28:10 +0000269 if (HS.loadModuleMapFile(ModuleMap, IsSystem))
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000270 return false;
271
272 if (CI.getLangOpts().CurrentModule.empty()) {
273 CI.getDiagnostics().Report(diag::err_missing_module_name);
274
275 // FIXME: Eventually, we could consider asking whether there was just
276 // a single module described in the module map, and use that as a
277 // default. Then it would be fairly trivial to just "compile" a module
278 // map with a single module (the common case).
279 return false;
280 }
Richard Smith7bea1d42014-03-05 20:55:36 +0000281
282 // If we're being run from the command-line, the module build stack will not
283 // have been filled in yet, so complete it now in order to allow us to detect
284 // module cycles.
285 SourceManager &SourceMgr = CI.getSourceManager();
286 if (SourceMgr.getModuleBuildStack().empty())
287 SourceMgr.pushModuleBuildStack(CI.getLangOpts().CurrentModule,
288 FullSourceLoc(SourceLocation(), SourceMgr));
289
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000290 // Dig out the module definition.
Douglas Gregor279a6c32012-01-29 17:08:11 +0000291 Module = HS.lookupModule(CI.getLangOpts().CurrentModule,
292 /*AllowSearch=*/false);
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000293 if (!Module) {
294 CI.getDiagnostics().Report(diag::err_missing_module)
295 << CI.getLangOpts().CurrentModule << Filename;
296
297 return false;
298 }
Douglas Gregor1fb5c3a2011-12-31 04:05:44 +0000299
300 // Check whether we can build this module at all.
Richard Smitha3feee22013-10-28 22:18:19 +0000301 clang::Module::Requirement Requirement;
Richard Smith3c1a41a2014-12-02 00:08:08 +0000302 clang::Module::UnresolvedHeaderDirective MissingHeader;
Daniel Jasper0761a8a2013-12-17 10:31:37 +0000303 if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Requirement,
304 MissingHeader)) {
305 if (MissingHeader.FileNameLoc.isValid()) {
Ben Langmuirec8c9752014-04-18 22:07:31 +0000306 CI.getDiagnostics().Report(MissingHeader.FileNameLoc,
307 diag::err_module_header_missing)
Daniel Jasper0761a8a2013-12-17 10:31:37 +0000308 << MissingHeader.IsUmbrella << MissingHeader.FileName;
309 } else {
310 CI.getDiagnostics().Report(diag::err_module_unavailable)
311 << Module->getFullModuleName()
312 << Requirement.second << Requirement.first;
313 }
Douglas Gregor1fb5c3a2011-12-31 04:05:44 +0000314
315 return false;
316 }
317
Ben Langmuir9d6448b2014-08-09 00:57:23 +0000318 if (ModuleMapForUniquing && ModuleMapForUniquing != ModuleMap) {
319 Module->IsInferred = true;
320 HS.getModuleMap().setInferredModuleAllowedBy(Module, ModuleMapForUniquing);
321 } else {
Ben Langmuirbeee15e2014-04-14 18:00:01 +0000322 ModuleMapForUniquing = ModuleMap;
Ben Langmuir9d6448b2014-08-09 00:57:23 +0000323 }
Ben Langmuirbeee15e2014-04-14 18:00:01 +0000324
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000325 FileManager &FileMgr = CI.getFileManager();
326
Douglas Gregor4332b322011-11-16 17:04:00 +0000327 // Collect the set of #includes we need to build the module.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000328 SmallString<256> HeaderContents;
Rafael Espindola8e650d72014-06-12 20:37:59 +0000329 std::error_code Err = std::error_code();
Argyrios Kyrtzidis130190f2012-10-10 02:12:39 +0000330 if (const FileEntry *UmbrellaHeader = Module->getUmbrellaHeader())
Richard Smith3c1a41a2014-12-02 00:08:08 +0000331 // FIXME: Track the file name as written.
Richard Smith723928c2014-03-11 02:02:47 +0000332 Err = addHeaderInclude(UmbrellaHeader, HeaderContents, CI.getLangOpts(),
333 Module->IsExternC);
334 if (!Err)
335 Err = collectModuleHeaderIncludes(
336 CI.getLangOpts(), FileMgr,
337 CI.getPreprocessor().getHeaderSearchInfo().getModuleMap(), Module,
338 HeaderContents);
339
340 if (Err) {
341 CI.getDiagnostics().Report(diag::err_module_cannot_create_includes)
342 << Module->getFullModuleName() << Err.message();
343 return false;
344 }
Douglas Gregor4332b322011-11-16 17:04:00 +0000345
Richard Smith3c1a41a2014-12-02 00:08:08 +0000346 // Inform the preprocessor that includes from within the input buffer should
347 // be resolved relative to the build directory of the module map file.
348 CI.getPreprocessor().setMainFileDir(Module->Directory);
349
Rafael Espindolad87f8d72014-08-27 20:03:29 +0000350 std::unique_ptr<llvm::MemoryBuffer> InputBuffer =
Argyrios Kyrtzidis52595242012-11-15 18:57:27 +0000351 llvm::MemoryBuffer::getMemBufferCopy(HeaderContents,
352 Module::getModuleInputBufferName());
Alp Tokerf6a24ce2013-12-05 16:25:25 +0000353 // Ownership of InputBuffer will be transferred to the SourceManager.
Rafael Espindolad87f8d72014-08-27 20:03:29 +0000354 setCurrentInput(FrontendInputFile(InputBuffer.release(), getCurrentFileKind(),
Douglas Gregora686e1b2012-01-27 19:52:33 +0000355 Module->IsSystem));
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000356 return true;
357}
358
Rafael Espindolabfd25d42015-04-10 13:14:31 +0000359raw_ostream *GenerateModuleAction::ComputeASTConsumerArguments(
360 CompilerInstance &CI, StringRef InFile, std::string &Sysroot,
361 std::string &OutputFile) {
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000362 // If no output file was provided, figure out where this module would go
363 // in the module cache.
364 if (CI.getFrontendOpts().OutputFile.empty()) {
365 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
Ben Langmuirbeee15e2014-04-14 18:00:01 +0000366 CI.getFrontendOpts().OutputFile =
367 HS.getModuleFileName(CI.getLangOpts().CurrentModule,
Ben Langmuird89dc562015-02-19 20:23:22 +0000368 ModuleMapForUniquing->getName());
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000369 }
Rafael Espindolabfd25d42015-04-10 13:14:31 +0000370
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000371 // We use createOutputFile here because this is exposed via libclang, and we
372 // must disable the RemoveFileOnSignal behavior.
373 // We use a temporary to avoid race conditions.
Rafael Espindolabfd25d42015-04-10 13:14:31 +0000374 raw_ostream *OS =
375 CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
376 /*RemoveFileOnSignal=*/false, InFile,
377 /*Extension=*/"", /*useTemporary=*/true,
378 /*CreateMissingDirectories=*/true);
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000379 if (!OS)
Rafael Espindolabfd25d42015-04-10 13:14:31 +0000380 return nullptr;
381
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000382 OutputFile = CI.getFrontendOpts().OutputFile;
Rafael Espindolabfd25d42015-04-10 13:14:31 +0000383 return OS;
Douglas Gregor2b20cb82011-11-16 00:09:06 +0000384}
385
David Blaikie6beb6aa2014-08-10 19:56:51 +0000386std::unique_ptr<ASTConsumer>
387SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
388 return llvm::make_unique<ASTConsumer>();
Daniel Dunbar02bd2d72009-11-14 10:42:46 +0000389}
390
David Blaikie6beb6aa2014-08-10 19:56:51 +0000391std::unique_ptr<ASTConsumer>
392DumpModuleInfoAction::CreateASTConsumer(CompilerInstance &CI,
393 StringRef InFile) {
394 return llvm::make_unique<ASTConsumer>();
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000395}
396
David Blaikie6beb6aa2014-08-10 19:56:51 +0000397std::unique_ptr<ASTConsumer>
398VerifyPCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
399 return llvm::make_unique<ASTConsumer>();
Ben Langmuir2cb4a782014-02-05 22:21:15 +0000400}
401
402void VerifyPCHAction::ExecuteAction() {
Ben Langmuir3d4417c2014-02-07 17:31:11 +0000403 CompilerInstance &CI = getCompilerInstance();
404 bool Preamble = CI.getPreprocessorOpts().PrecompiledPreambleBytes.first != 0;
405 const std::string &Sysroot = CI.getHeaderSearchOpts().Sysroot;
Ahmed Charlesb8984322014-03-07 20:03:18 +0000406 std::unique_ptr<ASTReader> Reader(
407 new ASTReader(CI.getPreprocessor(), CI.getASTContext(),
408 Sysroot.empty() ? "" : Sysroot.c_str(),
409 /*DisableValidation*/ false,
410 /*AllowPCHWithCompilerErrors*/ false,
411 /*AllowConfigurationMismatch*/ true,
412 /*ValidateSystemInputs*/ true));
Ben Langmuir3d4417c2014-02-07 17:31:11 +0000413
414 Reader->ReadAST(getCurrentFile(),
415 Preamble ? serialization::MK_Preamble
416 : serialization::MK_PCH,
417 SourceLocation(),
418 ASTReader::ARR_ConfigurationMismatch);
Ben Langmuir2cb4a782014-02-05 22:21:15 +0000419}
420
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000421namespace {
422 /// \brief AST reader listener that dumps module information for a module
423 /// file.
424 class DumpModuleInfoListener : public ASTReaderListener {
425 llvm::raw_ostream &Out;
426
427 public:
428 DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { }
429
430#define DUMP_BOOLEAN(Value, Text) \
431 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
432
Craig Topperafa7cb32014-03-13 06:07:04 +0000433 bool ReadFullVersionInformation(StringRef FullVersion) override {
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000434 Out.indent(2)
435 << "Generated by "
436 << (FullVersion == getClangFullRepositoryVersion()? "this"
437 : "a different")
438 << " Clang: " << FullVersion << "\n";
439 return ASTReaderListener::ReadFullVersionInformation(FullVersion);
440 }
441
Ben Langmuir4f5212a2014-04-14 22:12:44 +0000442 void ReadModuleName(StringRef ModuleName) override {
443 Out.indent(2) << "Module name: " << ModuleName << "\n";
444 }
445 void ReadModuleMapFile(StringRef ModuleMapPath) override {
446 Out.indent(2) << "Module map file: " << ModuleMapPath << "\n";
447 }
448
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000449 bool ReadLanguageOptions(const LangOptions &LangOpts, bool Complain,
450 bool AllowCompatibleDifferences) override {
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000451 Out.indent(2) << "Language options:\n";
452#define LANGOPT(Name, Bits, Default, Description) \
453 DUMP_BOOLEAN(LangOpts.Name, Description);
454#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
455 Out.indent(4) << Description << ": " \
456 << static_cast<unsigned>(LangOpts.get##Name()) << "\n";
457#define VALUE_LANGOPT(Name, Bits, Default, Description) \
458 Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
459#define BENIGN_LANGOPT(Name, Bits, Default, Description)
460#define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
461#include "clang/Basic/LangOptions.def"
462 return false;
463 }
464
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000465 bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
466 bool AllowCompatibleDifferences) override {
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000467 Out.indent(2) << "Target options:\n";
468 Out.indent(4) << " Triple: " << TargetOpts.Triple << "\n";
469 Out.indent(4) << " CPU: " << TargetOpts.CPU << "\n";
470 Out.indent(4) << " ABI: " << TargetOpts.ABI << "\n";
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000471
472 if (!TargetOpts.FeaturesAsWritten.empty()) {
473 Out.indent(4) << "Target features:\n";
474 for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size();
475 I != N; ++I) {
476 Out.indent(6) << TargetOpts.FeaturesAsWritten[I] << "\n";
477 }
478 }
479
480 return false;
481 }
482
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000483 bool ReadDiagnosticOptions(IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts,
484 bool Complain) override {
Ben Langmuirb92de022014-04-29 16:25:26 +0000485 Out.indent(2) << "Diagnostic options:\n";
486#define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name);
487#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
488 Out.indent(4) << #Name << ": " << DiagOpts->get##Name() << "\n";
489#define VALUE_DIAGOPT(Name, Bits, Default) \
490 Out.indent(4) << #Name << ": " << DiagOpts->Name << "\n";
491#include "clang/Basic/DiagnosticOptions.def"
492
Richard Smith3be1cb22014-08-07 00:24:21 +0000493 Out.indent(4) << "Diagnostic flags:\n";
494 for (const std::string &Warning : DiagOpts->Warnings)
Ben Langmuirb92de022014-04-29 16:25:26 +0000495 Out.indent(6) << "-W" << Warning << "\n";
Richard Smith3be1cb22014-08-07 00:24:21 +0000496 for (const std::string &Remark : DiagOpts->Remarks)
497 Out.indent(6) << "-R" << Remark << "\n";
Ben Langmuirb92de022014-04-29 16:25:26 +0000498
499 return false;
500 }
501
Craig Topperafa7cb32014-03-13 06:07:04 +0000502 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +0000503 StringRef SpecificModuleCachePath,
Craig Topperafa7cb32014-03-13 06:07:04 +0000504 bool Complain) override {
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000505 Out.indent(2) << "Header search options:\n";
506 Out.indent(4) << "System root [-isysroot=]: '" << HSOpts.Sysroot << "'\n";
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +0000507 Out.indent(4) << "Module Cache: '" << SpecificModuleCachePath << "'\n";
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000508 DUMP_BOOLEAN(HSOpts.UseBuiltinIncludes,
509 "Use builtin include directories [-nobuiltininc]");
510 DUMP_BOOLEAN(HSOpts.UseStandardSystemIncludes,
511 "Use standard system include directories [-nostdinc]");
512 DUMP_BOOLEAN(HSOpts.UseStandardCXXIncludes,
513 "Use standard C++ include directories [-nostdinc++]");
514 DUMP_BOOLEAN(HSOpts.UseLibcxx,
515 "Use libc++ (rather than libstdc++) [-stdlib=]");
516 return false;
517 }
518
Craig Topperafa7cb32014-03-13 06:07:04 +0000519 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
520 bool Complain,
521 std::string &SuggestedPredefines) override {
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000522 Out.indent(2) << "Preprocessor options:\n";
523 DUMP_BOOLEAN(PPOpts.UsePredefines,
524 "Uses compiler/target-specific predefines [-undef]");
525 DUMP_BOOLEAN(PPOpts.DetailedRecord,
526 "Uses detailed preprocessing record (for indexing)");
527
528 if (!PPOpts.Macros.empty()) {
529 Out.indent(4) << "Predefined macros:\n";
530 }
531
532 for (std::vector<std::pair<std::string, bool/*isUndef*/> >::const_iterator
533 I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end();
534 I != IEnd; ++I) {
535 Out.indent(6);
536 if (I->second)
537 Out << "-U";
538 else
539 Out << "-D";
540 Out << I->first << "\n";
541 }
542 return false;
543 }
544#undef DUMP_BOOLEAN
545 };
546}
547
548void DumpModuleInfoAction::ExecuteAction() {
549 // Set up the output file.
Ahmed Charlesb8984322014-03-07 20:03:18 +0000550 std::unique_ptr<llvm::raw_fd_ostream> OutFile;
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000551 StringRef OutputFileName = getCompilerInstance().getFrontendOpts().OutputFile;
552 if (!OutputFileName.empty() && OutputFileName != "-") {
Rafael Espindoladae941a2014-08-25 18:17:04 +0000553 std::error_code EC;
554 OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str(), EC,
555 llvm::sys::fs::F_Text));
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +0000556 }
557 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs();
558
559 Out << "Information for module file '" << getCurrentFile() << "':\n";
560 DumpModuleInfoListener Listener(Out);
561 ASTReader::readASTFileControlBlock(getCurrentFile(),
562 getCompilerInstance().getFileManager(),
563 Listener);
564}
565
Daniel Dunbar88357802009-11-14 10:42:57 +0000566//===----------------------------------------------------------------------===//
567// Preprocessor Actions
568//===----------------------------------------------------------------------===//
569
570void DumpRawTokensAction::ExecuteAction() {
571 Preprocessor &PP = getCompilerInstance().getPreprocessor();
572 SourceManager &SM = PP.getSourceManager();
573
574 // Start lexing the specified input file.
Chris Lattner710bb872009-11-30 04:18:44 +0000575 const llvm::MemoryBuffer *FromFile = SM.getBuffer(SM.getMainFileID());
David Blaikiebbafb8a2012-03-11 07:00:24 +0000576 Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOpts());
Daniel Dunbar88357802009-11-14 10:42:57 +0000577 RawLex.SetKeepWhitespaceMode(true);
578
579 Token RawTok;
580 RawLex.LexFromRawLexer(RawTok);
581 while (RawTok.isNot(tok::eof)) {
582 PP.DumpToken(RawTok, true);
Daniel Dunbar75024622009-11-25 10:27:48 +0000583 llvm::errs() << "\n";
Daniel Dunbar88357802009-11-14 10:42:57 +0000584 RawLex.LexFromRawLexer(RawTok);
585 }
586}
587
588void DumpTokensAction::ExecuteAction() {
589 Preprocessor &PP = getCompilerInstance().getPreprocessor();
590 // Start preprocessing the specified input file.
591 Token Tok;
Chris Lattnerfb24a3a2010-04-20 20:35:58 +0000592 PP.EnterMainSourceFile();
Daniel Dunbar88357802009-11-14 10:42:57 +0000593 do {
594 PP.Lex(Tok);
595 PP.DumpToken(Tok, true);
Daniel Dunbar75024622009-11-25 10:27:48 +0000596 llvm::errs() << "\n";
Daniel Dunbar88357802009-11-14 10:42:57 +0000597 } while (Tok.isNot(tok::eof));
598}
599
600void GeneratePTHAction::ExecuteAction() {
601 CompilerInstance &CI = getCompilerInstance();
Daniel Dunbar88357802009-11-14 10:42:57 +0000602 llvm::raw_fd_ostream *OS =
603 CI.createDefaultOutputFile(true, getCurrentFile());
Rafael Espindolad7e306f2015-04-10 18:16:30 +0000604 if (!OS)
605 return;
606
607 if (!OS->supportsSeeking()) {
608 // FIXME: Don't fail this way.
609 llvm::report_fatal_error("PTH requires a seekable file for output!");
610 }
Daniel Dunbar75546992009-12-03 09:13:30 +0000611
Daniel Dunbar88357802009-11-14 10:42:57 +0000612 CacheTokens(CI.getPreprocessor(), OS);
613}
614
Daniel Dunbar88357802009-11-14 10:42:57 +0000615void PreprocessOnlyAction::ExecuteAction() {
616 Preprocessor &PP = getCompilerInstance().getPreprocessor();
617
Daniel Dunbard839e772010-06-11 20:10:12 +0000618 // Ignore unknown pragmas.
Lubos Lunak576a0412014-05-01 12:54:03 +0000619 PP.IgnorePragmas();
Daniel Dunbard839e772010-06-11 20:10:12 +0000620
Daniel Dunbar88357802009-11-14 10:42:57 +0000621 Token Tok;
622 // Start parsing the specified input file.
Chris Lattnerfb24a3a2010-04-20 20:35:58 +0000623 PP.EnterMainSourceFile();
Daniel Dunbar88357802009-11-14 10:42:57 +0000624 do {
625 PP.Lex(Tok);
626 } while (Tok.isNot(tok::eof));
627}
628
Daniel Dunbar88357802009-11-14 10:42:57 +0000629void PrintPreprocessedAction::ExecuteAction() {
630 CompilerInstance &CI = getCompilerInstance();
Douglas Gregor52da28b2011-09-23 23:43:36 +0000631 // Output file may need to be set to 'Binary', to avoid converting Unix style
Steve Naroff3d38a682010-01-05 17:33:23 +0000632 // line feeds (<LF>) to Microsoft style line feeds (<CR><LF>).
Douglas Gregor52da28b2011-09-23 23:43:36 +0000633 //
634 // Look to see what type of line endings the file uses. If there's a
635 // CRLF, then we won't open the file up in binary mode. If there is
636 // just an LF or CR, then we will open the file up in binary mode.
637 // In this fashion, the output format should match the input format, unless
638 // the input format has inconsistent line endings.
639 //
640 // This should be a relatively fast operation since most files won't have
641 // all of their source code on a single line. However, that is still a
642 // concern, so if we scan for too long, we'll just assume the file should
643 // be opened in binary mode.
644 bool BinaryMode = true;
645 bool InvalidFile = false;
646 const SourceManager& SM = CI.getSourceManager();
647 const llvm::MemoryBuffer *Buffer = SM.getBuffer(SM.getMainFileID(),
648 &InvalidFile);
649 if (!InvalidFile) {
650 const char *cur = Buffer->getBufferStart();
651 const char *end = Buffer->getBufferEnd();
652 const char *next = (cur != end) ? cur + 1 : end;
653
654 // Limit ourselves to only scanning 256 characters into the source
655 // file. This is mostly a sanity check in case the file has no
656 // newlines whatsoever.
657 if (end - cur > 256) end = cur + 256;
658
659 while (next < end) {
660 if (*cur == 0x0D) { // CR
661 if (*next == 0x0A) // CRLF
662 BinaryMode = false;
663
664 break;
665 } else if (*cur == 0x0A) // LF
666 break;
667
668 ++cur, ++next;
669 }
670 }
671
672 raw_ostream *OS = CI.createDefaultOutputFile(BinaryMode, getCurrentFile());
Daniel Dunbar75546992009-12-03 09:13:30 +0000673 if (!OS) return;
674
Daniel Dunbar88357802009-11-14 10:42:57 +0000675 DoPrintPreprocessedInput(CI.getPreprocessor(), OS,
676 CI.getPreprocessorOutputOpts());
677}
Douglas Gregoraf82e352010-07-20 20:18:03 +0000678
679void PrintPreambleAction::ExecuteAction() {
680 switch (getCurrentFileKind()) {
681 case IK_C:
682 case IK_CXX:
683 case IK_ObjC:
684 case IK_ObjCXX:
685 case IK_OpenCL:
Peter Collingbourne62089b82010-12-01 03:15:20 +0000686 case IK_CUDA:
Douglas Gregoraf82e352010-07-20 20:18:03 +0000687 break;
688
689 case IK_None:
690 case IK_Asm:
691 case IK_PreprocessedC:
Artem Belevich83a6dcc2015-03-19 17:32:06 +0000692 case IK_PreprocessedCuda:
Douglas Gregoraf82e352010-07-20 20:18:03 +0000693 case IK_PreprocessedCXX:
694 case IK_PreprocessedObjC:
695 case IK_PreprocessedObjCXX:
696 case IK_AST:
697 case IK_LLVM_IR:
698 // We can't do anything with these.
699 return;
700 }
Rafael Espindola6406f7b2014-08-26 19:54:40 +0000701
Argyrios Kyrtzidis71731d62010-11-03 22:45:23 +0000702 CompilerInstance &CI = getCompilerInstance();
Benjamin Kramera8857962014-10-26 22:44:13 +0000703 auto Buffer = CI.getFileManager().getBufferForFile(getCurrentFile());
704 if (Buffer) {
Rafael Espindolacd0b3802014-08-12 15:46:24 +0000705 unsigned Preamble =
Benjamin Kramera8857962014-10-26 22:44:13 +0000706 Lexer::ComputePreamble((*Buffer)->getBuffer(), CI.getLangOpts()).first;
707 llvm::outs().write((*Buffer)->getBufferStart(), Preamble);
Douglas Gregoraf82e352010-07-20 20:18:03 +0000708 }
709}