]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
Update LLDB snapshot to upstream r241361
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Frontend / FrontendActions.cpp
1 //===--- 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"
13 #include "clang/Frontend/ASTConsumers.h"
14 #include "clang/Frontend/ASTUnit.h"
15 #include "clang/Frontend/CompilerInstance.h"
16 #include "clang/Frontend/FrontendDiagnostic.h"
17 #include "clang/Frontend/MultiplexConsumer.h"
18 #include "clang/Frontend/Utils.h"
19 #include "clang/Lex/HeaderSearch.h"
20 #include "clang/Lex/Pragma.h"
21 #include "clang/Lex/Preprocessor.h"
22 #include "clang/Parse/Parser.h"
23 #include "clang/Serialization/ASTReader.h"
24 #include "clang/Serialization/ASTWriter.h"
25 #include "llvm/Support/FileSystem.h"
26 #include "llvm/Support/MemoryBuffer.h"
27 #include "llvm/Support/raw_ostream.h"
28 #include <memory>
29 #include <system_error>
30
31 using namespace clang;
32
33 //===----------------------------------------------------------------------===//
34 // Custom Actions
35 //===----------------------------------------------------------------------===//
36
37 std::unique_ptr<ASTConsumer>
38 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
39   return llvm::make_unique<ASTConsumer>();
40 }
41
42 void InitOnlyAction::ExecuteAction() {
43 }
44
45 //===----------------------------------------------------------------------===//
46 // AST Consumer Actions
47 //===----------------------------------------------------------------------===//
48
49 std::unique_ptr<ASTConsumer>
50 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
51   if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
52     return CreateASTPrinter(OS, CI.getFrontendOpts().ASTDumpFilter);
53   return nullptr;
54 }
55
56 std::unique_ptr<ASTConsumer>
57 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
58   return CreateASTDumper(CI.getFrontendOpts().ASTDumpFilter,
59                          CI.getFrontendOpts().ASTDumpDecls,
60                          CI.getFrontendOpts().ASTDumpLookups);
61 }
62
63 std::unique_ptr<ASTConsumer>
64 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
65   return CreateASTDeclNodeLister();
66 }
67
68 std::unique_ptr<ASTConsumer>
69 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
70   return CreateASTViewer();
71 }
72
73 std::unique_ptr<ASTConsumer>
74 DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
75                                           StringRef InFile) {
76   return CreateDeclContextPrinter();
77 }
78
79 std::unique_ptr<ASTConsumer>
80 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
81   std::string Sysroot;
82   std::string OutputFile;
83   raw_pwrite_stream *OS =
84       ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
85   if (!OS)
86     return nullptr;
87
88   if (!CI.getFrontendOpts().RelocatablePCH)
89     Sysroot.clear();
90
91   auto Buffer = std::make_shared<PCHBuffer>();
92   std::vector<std::unique_ptr<ASTConsumer>> Consumers;
93   Consumers.push_back(llvm::make_unique<PCHGenerator>(
94       CI.getPreprocessor(), OutputFile, nullptr, Sysroot, Buffer));
95   Consumers.push_back(
96       CI.getPCHContainerOperations()->CreatePCHContainerGenerator(
97           CI.getDiagnostics(), CI.getHeaderSearchOpts(),
98           CI.getPreprocessorOpts(), CI.getTargetOpts(), CI.getLangOpts(),
99           InFile, OutputFile, OS, Buffer));
100
101   return llvm::make_unique<MultiplexConsumer>(std::move(Consumers));
102 }
103
104 raw_pwrite_stream *GeneratePCHAction::ComputeASTConsumerArguments(
105     CompilerInstance &CI, StringRef InFile, std::string &Sysroot,
106     std::string &OutputFile) {
107   Sysroot = CI.getHeaderSearchOpts().Sysroot;
108   if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
109     CI.getDiagnostics().Report(diag::err_relocatable_without_isysroot);
110     return nullptr;
111   }
112
113   // We use createOutputFile here because this is exposed via libclang, and we
114   // must disable the RemoveFileOnSignal behavior.
115   // We use a temporary to avoid race conditions.
116   raw_pwrite_stream *OS =
117       CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
118                           /*RemoveFileOnSignal=*/false, InFile,
119                           /*Extension=*/"", /*useTemporary=*/true);
120   if (!OS)
121     return nullptr;
122
123   OutputFile = CI.getFrontendOpts().OutputFile;
124   return OS;
125 }
126
127 std::unique_ptr<ASTConsumer>
128 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI,
129                                         StringRef InFile) {
130   std::string Sysroot;
131   std::string OutputFile;
132   raw_pwrite_stream *OS =
133       ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile);
134   if (!OS)
135     return nullptr;
136
137   auto Buffer = std::make_shared<PCHBuffer>();
138   std::vector<std::unique_ptr<ASTConsumer>> Consumers;
139   Consumers.push_back(llvm::make_unique<PCHGenerator>(
140       CI.getPreprocessor(), OutputFile, Module, Sysroot, Buffer));
141   Consumers.push_back(
142       CI.getPCHContainerOperations()->CreatePCHContainerGenerator(
143           CI.getDiagnostics(), CI.getHeaderSearchOpts(),
144           CI.getPreprocessorOpts(), CI.getTargetOpts(), CI.getLangOpts(),
145           InFile, OutputFile, OS, Buffer));
146   return llvm::make_unique<MultiplexConsumer>(std::move(Consumers));
147 }
148
149 static SmallVectorImpl<char> &
150 operator+=(SmallVectorImpl<char> &Includes, StringRef RHS) {
151   Includes.append(RHS.begin(), RHS.end());
152   return Includes;
153 }
154
155 static std::error_code addHeaderInclude(StringRef HeaderName,
156                                         SmallVectorImpl<char> &Includes,
157                                         const LangOptions &LangOpts,
158                                         bool IsExternC) {
159   if (IsExternC && LangOpts.CPlusPlus)
160     Includes += "extern \"C\" {\n";
161   if (LangOpts.ObjC1)
162     Includes += "#import \"";
163   else
164     Includes += "#include \"";
165
166   Includes += HeaderName;
167
168   Includes += "\"\n";
169   if (IsExternC && LangOpts.CPlusPlus)
170     Includes += "}\n";
171   return std::error_code();
172 }
173
174 /// \brief Collect the set of header includes needed to construct the given 
175 /// module and update the TopHeaders file set of the module.
176 ///
177 /// \param Module The module we're collecting includes from.
178 ///
179 /// \param Includes Will be augmented with the set of \#includes or \#imports
180 /// needed to load all of the named headers.
181 static std::error_code
182 collectModuleHeaderIncludes(const LangOptions &LangOpts, FileManager &FileMgr,
183                             ModuleMap &ModMap, clang::Module *Module,
184                             SmallVectorImpl<char> &Includes) {
185   // Don't collect any headers for unavailable modules.
186   if (!Module->isAvailable())
187     return std::error_code();
188
189   // Add includes for each of these headers.
190   for (Module::Header &H : Module->Headers[Module::HK_Normal]) {
191     Module->addTopHeader(H.Entry);
192     // Use the path as specified in the module map file. We'll look for this
193     // file relative to the module build directory (the directory containing
194     // the module map file) so this will find the same file that we found
195     // while parsing the module map.
196     if (std::error_code Err = addHeaderInclude(H.NameAsWritten, Includes,
197                                                LangOpts, Module->IsExternC))
198       return Err;
199   }
200   // Note that Module->PrivateHeaders will not be a TopHeader.
201
202   if (Module::Header UmbrellaHeader = Module->getUmbrellaHeader()) {
203     Module->addTopHeader(UmbrellaHeader.Entry);
204     if (Module->Parent) {
205       // Include the umbrella header for submodules.
206       if (std::error_code Err = addHeaderInclude(UmbrellaHeader.NameAsWritten,
207                                                  Includes, LangOpts,
208                                                  Module->IsExternC))
209         return Err;
210     }
211   } else if (Module::DirectoryName UmbrellaDir = Module->getUmbrellaDir()) {
212     // Add all of the headers we find in this subdirectory.
213     std::error_code EC;
214     SmallString<128> DirNative;
215     llvm::sys::path::native(UmbrellaDir.Entry->getName(), DirNative);
216     for (llvm::sys::fs::recursive_directory_iterator Dir(DirNative, EC), 
217                                                      DirEnd;
218          Dir != DirEnd && !EC; Dir.increment(EC)) {
219       // Check whether this entry has an extension typically associated with 
220       // headers.
221       if (!llvm::StringSwitch<bool>(llvm::sys::path::extension(Dir->path()))
222           .Cases(".h", ".H", ".hh", ".hpp", true)
223           .Default(false))
224         continue;
225
226       const FileEntry *Header = FileMgr.getFile(Dir->path());
227       // FIXME: This shouldn't happen unless there is a file system race. Is
228       // that worth diagnosing?
229       if (!Header)
230         continue;
231
232       // If this header is marked 'unavailable' in this module, don't include 
233       // it.
234       if (ModMap.isHeaderUnavailableInModule(Header, Module))
235         continue;
236
237       // Compute the relative path from the directory to this file.
238       SmallVector<StringRef, 16> Components;
239       auto PathIt = llvm::sys::path::rbegin(Dir->path());
240       for (int I = 0; I != Dir.level() + 1; ++I, ++PathIt)
241         Components.push_back(*PathIt);
242       SmallString<128> RelativeHeader(UmbrellaDir.NameAsWritten);
243       for (auto It = Components.rbegin(), End = Components.rend(); It != End;
244            ++It)
245         llvm::sys::path::append(RelativeHeader, *It);
246
247       // Include this header as part of the umbrella directory.
248       Module->addTopHeader(Header);
249       if (std::error_code Err = addHeaderInclude(RelativeHeader, Includes,
250                                                  LangOpts, Module->IsExternC))
251         return Err;
252     }
253
254     if (EC)
255       return EC;
256   }
257
258   // Recurse into submodules.
259   for (clang::Module::submodule_iterator Sub = Module->submodule_begin(),
260                                       SubEnd = Module->submodule_end();
261        Sub != SubEnd; ++Sub)
262     if (std::error_code Err = collectModuleHeaderIncludes(
263             LangOpts, FileMgr, ModMap, *Sub, Includes))
264       return Err;
265
266   return std::error_code();
267 }
268
269 bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI, 
270                                                  StringRef Filename) {
271   // Find the module map file.  
272   const FileEntry *ModuleMap = CI.getFileManager().getFile(Filename);
273   if (!ModuleMap)  {
274     CI.getDiagnostics().Report(diag::err_module_map_not_found)
275       << Filename;
276     return false;
277   }
278   
279   // Parse the module map file.
280   HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
281   if (HS.loadModuleMapFile(ModuleMap, IsSystem))
282     return false;
283   
284   if (CI.getLangOpts().CurrentModule.empty()) {
285     CI.getDiagnostics().Report(diag::err_missing_module_name);
286     
287     // FIXME: Eventually, we could consider asking whether there was just
288     // a single module described in the module map, and use that as a 
289     // default. Then it would be fairly trivial to just "compile" a module
290     // map with a single module (the common case).
291     return false;
292   }
293
294   // If we're being run from the command-line, the module build stack will not
295   // have been filled in yet, so complete it now in order to allow us to detect
296   // module cycles.
297   SourceManager &SourceMgr = CI.getSourceManager();
298   if (SourceMgr.getModuleBuildStack().empty())
299     SourceMgr.pushModuleBuildStack(CI.getLangOpts().CurrentModule,
300                                    FullSourceLoc(SourceLocation(), SourceMgr));
301
302   // Dig out the module definition.
303   Module = HS.lookupModule(CI.getLangOpts().CurrentModule, 
304                            /*AllowSearch=*/false);
305   if (!Module) {
306     CI.getDiagnostics().Report(diag::err_missing_module)
307       << CI.getLangOpts().CurrentModule << Filename;
308     
309     return false;
310   }
311
312   // Check whether we can build this module at all.
313   clang::Module::Requirement Requirement;
314   clang::Module::UnresolvedHeaderDirective MissingHeader;
315   if (!Module->isAvailable(CI.getLangOpts(), CI.getTarget(), Requirement,
316                            MissingHeader)) {
317     if (MissingHeader.FileNameLoc.isValid()) {
318       CI.getDiagnostics().Report(MissingHeader.FileNameLoc,
319                                  diag::err_module_header_missing)
320         << MissingHeader.IsUmbrella << MissingHeader.FileName;
321     } else {
322       CI.getDiagnostics().Report(diag::err_module_unavailable)
323         << Module->getFullModuleName()
324         << Requirement.second << Requirement.first;
325     }
326
327     return false;
328   }
329
330   if (ModuleMapForUniquing && ModuleMapForUniquing != ModuleMap) {
331     Module->IsInferred = true;
332     HS.getModuleMap().setInferredModuleAllowedBy(Module, ModuleMapForUniquing);
333   } else {
334     ModuleMapForUniquing = ModuleMap;
335   }
336
337   FileManager &FileMgr = CI.getFileManager();
338
339   // Collect the set of #includes we need to build the module.
340   SmallString<256> HeaderContents;
341   std::error_code Err = std::error_code();
342   if (Module::Header UmbrellaHeader = Module->getUmbrellaHeader())
343     Err = addHeaderInclude(UmbrellaHeader.NameAsWritten, HeaderContents,
344                            CI.getLangOpts(), Module->IsExternC);
345   if (!Err)
346     Err = collectModuleHeaderIncludes(
347         CI.getLangOpts(), FileMgr,
348         CI.getPreprocessor().getHeaderSearchInfo().getModuleMap(), Module,
349         HeaderContents);
350
351   if (Err) {
352     CI.getDiagnostics().Report(diag::err_module_cannot_create_includes)
353       << Module->getFullModuleName() << Err.message();
354     return false;
355   }
356
357   // Inform the preprocessor that includes from within the input buffer should
358   // be resolved relative to the build directory of the module map file.
359   CI.getPreprocessor().setMainFileDir(Module->Directory);
360
361   std::unique_ptr<llvm::MemoryBuffer> InputBuffer =
362       llvm::MemoryBuffer::getMemBufferCopy(HeaderContents,
363                                            Module::getModuleInputBufferName());
364   // Ownership of InputBuffer will be transferred to the SourceManager.
365   setCurrentInput(FrontendInputFile(InputBuffer.release(), getCurrentFileKind(),
366                                     Module->IsSystem));
367   return true;
368 }
369
370 raw_pwrite_stream *GenerateModuleAction::ComputeASTConsumerArguments(
371     CompilerInstance &CI, StringRef InFile, std::string &Sysroot,
372     std::string &OutputFile) {
373   // If no output file was provided, figure out where this module would go
374   // in the module cache.
375   if (CI.getFrontendOpts().OutputFile.empty()) {
376     HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
377     CI.getFrontendOpts().OutputFile =
378         HS.getModuleFileName(CI.getLangOpts().CurrentModule,
379                              ModuleMapForUniquing->getName());
380   }
381
382   // We use createOutputFile here because this is exposed via libclang, and we
383   // must disable the RemoveFileOnSignal behavior.
384   // We use a temporary to avoid race conditions.
385   raw_pwrite_stream *OS =
386       CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
387                           /*RemoveFileOnSignal=*/false, InFile,
388                           /*Extension=*/"", /*useTemporary=*/true,
389                           /*CreateMissingDirectories=*/true);
390   if (!OS)
391     return nullptr;
392
393   OutputFile = CI.getFrontendOpts().OutputFile;
394   return OS;
395 }
396
397 std::unique_ptr<ASTConsumer>
398 SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
399   return llvm::make_unique<ASTConsumer>();
400 }
401
402 std::unique_ptr<ASTConsumer>
403 DumpModuleInfoAction::CreateASTConsumer(CompilerInstance &CI,
404                                         StringRef InFile) {
405   return llvm::make_unique<ASTConsumer>();
406 }
407
408 std::unique_ptr<ASTConsumer>
409 VerifyPCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
410   return llvm::make_unique<ASTConsumer>();
411 }
412
413 void VerifyPCHAction::ExecuteAction() {
414   CompilerInstance &CI = getCompilerInstance();
415   bool Preamble = CI.getPreprocessorOpts().PrecompiledPreambleBytes.first != 0;
416   const std::string &Sysroot = CI.getHeaderSearchOpts().Sysroot;
417   std::unique_ptr<ASTReader> Reader(new ASTReader(
418       CI.getPreprocessor(), CI.getASTContext(), *CI.getPCHContainerOperations(),
419       Sysroot.empty() ? "" : Sysroot.c_str(),
420       /*DisableValidation*/ false,
421       /*AllowPCHWithCompilerErrors*/ false,
422       /*AllowConfigurationMismatch*/ true,
423       /*ValidateSystemInputs*/ true));
424
425   Reader->ReadAST(getCurrentFile(),
426                   Preamble ? serialization::MK_Preamble
427                            : serialization::MK_PCH,
428                   SourceLocation(),
429                   ASTReader::ARR_ConfigurationMismatch);
430 }
431
432 namespace {
433   /// \brief AST reader listener that dumps module information for a module
434   /// file.
435   class DumpModuleInfoListener : public ASTReaderListener {
436     llvm::raw_ostream &Out;
437
438   public:
439     DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { }
440
441 #define DUMP_BOOLEAN(Value, Text)                       \
442     Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
443
444     bool ReadFullVersionInformation(StringRef FullVersion) override {
445       Out.indent(2)
446         << "Generated by "
447         << (FullVersion == getClangFullRepositoryVersion()? "this"
448                                                           : "a different")
449         << " Clang: " << FullVersion << "\n";
450       return ASTReaderListener::ReadFullVersionInformation(FullVersion);
451     }
452
453     void ReadModuleName(StringRef ModuleName) override {
454       Out.indent(2) << "Module name: " << ModuleName << "\n";
455     }
456     void ReadModuleMapFile(StringRef ModuleMapPath) override {
457       Out.indent(2) << "Module map file: " << ModuleMapPath << "\n";
458     }
459
460     bool ReadLanguageOptions(const LangOptions &LangOpts, bool Complain,
461                              bool AllowCompatibleDifferences) override {
462       Out.indent(2) << "Language options:\n";
463 #define LANGOPT(Name, Bits, Default, Description) \
464       DUMP_BOOLEAN(LangOpts.Name, Description);
465 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
466       Out.indent(4) << Description << ": "                   \
467                     << static_cast<unsigned>(LangOpts.get##Name()) << "\n";
468 #define VALUE_LANGOPT(Name, Bits, Default, Description) \
469       Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
470 #define BENIGN_LANGOPT(Name, Bits, Default, Description)
471 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
472 #include "clang/Basic/LangOptions.def"
473       return false;
474     }
475
476     bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
477                            bool AllowCompatibleDifferences) override {
478       Out.indent(2) << "Target options:\n";
479       Out.indent(4) << "  Triple: " << TargetOpts.Triple << "\n";
480       Out.indent(4) << "  CPU: " << TargetOpts.CPU << "\n";
481       Out.indent(4) << "  ABI: " << TargetOpts.ABI << "\n";
482
483       if (!TargetOpts.FeaturesAsWritten.empty()) {
484         Out.indent(4) << "Target features:\n";
485         for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size();
486              I != N; ++I) {
487           Out.indent(6) << TargetOpts.FeaturesAsWritten[I] << "\n";
488         }
489       }
490
491       return false;
492     }
493
494     bool ReadDiagnosticOptions(IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts,
495                                bool Complain) override {
496       Out.indent(2) << "Diagnostic options:\n";
497 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name);
498 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
499       Out.indent(4) << #Name << ": " << DiagOpts->get##Name() << "\n";
500 #define VALUE_DIAGOPT(Name, Bits, Default) \
501       Out.indent(4) << #Name << ": " << DiagOpts->Name << "\n";
502 #include "clang/Basic/DiagnosticOptions.def"
503
504       Out.indent(4) << "Diagnostic flags:\n";
505       for (const std::string &Warning : DiagOpts->Warnings)
506         Out.indent(6) << "-W" << Warning << "\n";
507       for (const std::string &Remark : DiagOpts->Remarks)
508         Out.indent(6) << "-R" << Remark << "\n";
509
510       return false;
511     }
512
513     bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
514                                  StringRef SpecificModuleCachePath,
515                                  bool Complain) override {
516       Out.indent(2) << "Header search options:\n";
517       Out.indent(4) << "System root [-isysroot=]: '" << HSOpts.Sysroot << "'\n";
518       Out.indent(4) << "Module Cache: '" << SpecificModuleCachePath << "'\n";
519       DUMP_BOOLEAN(HSOpts.UseBuiltinIncludes,
520                    "Use builtin include directories [-nobuiltininc]");
521       DUMP_BOOLEAN(HSOpts.UseStandardSystemIncludes,
522                    "Use standard system include directories [-nostdinc]");
523       DUMP_BOOLEAN(HSOpts.UseStandardCXXIncludes,
524                    "Use standard C++ include directories [-nostdinc++]");
525       DUMP_BOOLEAN(HSOpts.UseLibcxx,
526                    "Use libc++ (rather than libstdc++) [-stdlib=]");
527       return false;
528     }
529
530     bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
531                                  bool Complain,
532                                  std::string &SuggestedPredefines) override {
533       Out.indent(2) << "Preprocessor options:\n";
534       DUMP_BOOLEAN(PPOpts.UsePredefines,
535                    "Uses compiler/target-specific predefines [-undef]");
536       DUMP_BOOLEAN(PPOpts.DetailedRecord,
537                    "Uses detailed preprocessing record (for indexing)");
538
539       if (!PPOpts.Macros.empty()) {
540         Out.indent(4) << "Predefined macros:\n";
541       }
542
543       for (std::vector<std::pair<std::string, bool/*isUndef*/> >::const_iterator
544              I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end();
545            I != IEnd; ++I) {
546         Out.indent(6);
547         if (I->second)
548           Out << "-U";
549         else
550           Out << "-D";
551         Out << I->first << "\n";
552       }
553       return false;
554     }
555 #undef DUMP_BOOLEAN
556   };
557 }
558
559 void DumpModuleInfoAction::ExecuteAction() {
560   // Set up the output file.
561   std::unique_ptr<llvm::raw_fd_ostream> OutFile;
562   StringRef OutputFileName = getCompilerInstance().getFrontendOpts().OutputFile;
563   if (!OutputFileName.empty() && OutputFileName != "-") {
564     std::error_code EC;
565     OutFile.reset(new llvm::raw_fd_ostream(OutputFileName.str(), EC,
566                                            llvm::sys::fs::F_Text));
567   }
568   llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs();
569
570   Out << "Information for module file '" << getCurrentFile() << "':\n";
571   DumpModuleInfoListener Listener(Out);
572   ASTReader::readASTFileControlBlock(
573       getCurrentFile(), getCompilerInstance().getFileManager(),
574       *getCompilerInstance().getPCHContainerOperations(), Listener);
575 }
576
577 //===----------------------------------------------------------------------===//
578 // Preprocessor Actions
579 //===----------------------------------------------------------------------===//
580
581 void DumpRawTokensAction::ExecuteAction() {
582   Preprocessor &PP = getCompilerInstance().getPreprocessor();
583   SourceManager &SM = PP.getSourceManager();
584
585   // Start lexing the specified input file.
586   const llvm::MemoryBuffer *FromFile = SM.getBuffer(SM.getMainFileID());
587   Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOpts());
588   RawLex.SetKeepWhitespaceMode(true);
589
590   Token RawTok;
591   RawLex.LexFromRawLexer(RawTok);
592   while (RawTok.isNot(tok::eof)) {
593     PP.DumpToken(RawTok, true);
594     llvm::errs() << "\n";
595     RawLex.LexFromRawLexer(RawTok);
596   }
597 }
598
599 void DumpTokensAction::ExecuteAction() {
600   Preprocessor &PP = getCompilerInstance().getPreprocessor();
601   // Start preprocessing the specified input file.
602   Token Tok;
603   PP.EnterMainSourceFile();
604   do {
605     PP.Lex(Tok);
606     PP.DumpToken(Tok, true);
607     llvm::errs() << "\n";
608   } while (Tok.isNot(tok::eof));
609 }
610
611 void GeneratePTHAction::ExecuteAction() {
612   CompilerInstance &CI = getCompilerInstance();
613   raw_pwrite_stream *OS = CI.createDefaultOutputFile(true, getCurrentFile());
614   if (!OS)
615     return;
616
617   CacheTokens(CI.getPreprocessor(), OS);
618 }
619
620 void PreprocessOnlyAction::ExecuteAction() {
621   Preprocessor &PP = getCompilerInstance().getPreprocessor();
622
623   // Ignore unknown pragmas.
624   PP.IgnorePragmas();
625
626   Token Tok;
627   // Start parsing the specified input file.
628   PP.EnterMainSourceFile();
629   do {
630     PP.Lex(Tok);
631   } while (Tok.isNot(tok::eof));
632 }
633
634 void PrintPreprocessedAction::ExecuteAction() {
635   CompilerInstance &CI = getCompilerInstance();
636   // Output file may need to be set to 'Binary', to avoid converting Unix style
637   // line feeds (<LF>) to Microsoft style line feeds (<CR><LF>).
638   //
639   // Look to see what type of line endings the file uses. If there's a
640   // CRLF, then we won't open the file up in binary mode. If there is
641   // just an LF or CR, then we will open the file up in binary mode.
642   // In this fashion, the output format should match the input format, unless
643   // the input format has inconsistent line endings.
644   //
645   // This should be a relatively fast operation since most files won't have
646   // all of their source code on a single line. However, that is still a 
647   // concern, so if we scan for too long, we'll just assume the file should
648   // be opened in binary mode.
649   bool BinaryMode = true;
650   bool InvalidFile = false;
651   const SourceManager& SM = CI.getSourceManager();
652   const llvm::MemoryBuffer *Buffer = SM.getBuffer(SM.getMainFileID(), 
653                                                      &InvalidFile);
654   if (!InvalidFile) {
655     const char *cur = Buffer->getBufferStart();
656     const char *end = Buffer->getBufferEnd();
657     const char *next = (cur != end) ? cur + 1 : end;
658
659     // Limit ourselves to only scanning 256 characters into the source
660     // file.  This is mostly a sanity check in case the file has no 
661     // newlines whatsoever.
662     if (end - cur > 256) end = cur + 256;
663           
664     while (next < end) {
665       if (*cur == 0x0D) {  // CR
666         if (*next == 0x0A)  // CRLF
667           BinaryMode = false;
668
669         break;
670       } else if (*cur == 0x0A)  // LF
671         break;
672
673       ++cur, ++next;
674     }
675   }
676
677   raw_ostream *OS = CI.createDefaultOutputFile(BinaryMode, getCurrentFile());
678   if (!OS) return;
679
680   DoPrintPreprocessedInput(CI.getPreprocessor(), OS,
681                            CI.getPreprocessorOutputOpts());
682 }
683
684 void PrintPreambleAction::ExecuteAction() {
685   switch (getCurrentFileKind()) {
686   case IK_C:
687   case IK_CXX:
688   case IK_ObjC:
689   case IK_ObjCXX:
690   case IK_OpenCL:
691   case IK_CUDA:
692     break;
693       
694   case IK_None:
695   case IK_Asm:
696   case IK_PreprocessedC:
697   case IK_PreprocessedCuda:
698   case IK_PreprocessedCXX:
699   case IK_PreprocessedObjC:
700   case IK_PreprocessedObjCXX:
701   case IK_AST:
702   case IK_LLVM_IR:
703     // We can't do anything with these.
704     return;
705   }
706
707   CompilerInstance &CI = getCompilerInstance();
708   auto Buffer = CI.getFileManager().getBufferForFile(getCurrentFile());
709   if (Buffer) {
710     unsigned Preamble =
711         Lexer::ComputePreamble((*Buffer)->getBuffer(), CI.getLangOpts()).first;
712     llvm::outs().write((*Buffer)->getBufferStart(), Preamble);
713   }
714 }