llvm-project

Форк
0
/
FrontendActions.cpp 
1207 строк · 44.0 Кб
1
//===--- FrontendActions.cpp ----------------------------------------------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8

9
#include "clang/Frontend/FrontendActions.h"
10
#include "clang/AST/ASTConsumer.h"
11
#include "clang/AST/Decl.h"
12
#include "clang/Basic/FileManager.h"
13
#include "clang/Basic/LangStandard.h"
14
#include "clang/Basic/Module.h"
15
#include "clang/Basic/TargetInfo.h"
16
#include "clang/Frontend/ASTConsumers.h"
17
#include "clang/Frontend/CompilerInstance.h"
18
#include "clang/Frontend/FrontendDiagnostic.h"
19
#include "clang/Frontend/MultiplexConsumer.h"
20
#include "clang/Frontend/Utils.h"
21
#include "clang/Lex/DependencyDirectivesScanner.h"
22
#include "clang/Lex/HeaderSearch.h"
23
#include "clang/Lex/Preprocessor.h"
24
#include "clang/Lex/PreprocessorOptions.h"
25
#include "clang/Sema/TemplateInstCallback.h"
26
#include "clang/Serialization/ASTReader.h"
27
#include "clang/Serialization/ASTWriter.h"
28
#include "clang/Serialization/ModuleFile.h"
29
#include "llvm/Support/ErrorHandling.h"
30
#include "llvm/Support/FileSystem.h"
31
#include "llvm/Support/MemoryBuffer.h"
32
#include "llvm/Support/Path.h"
33
#include "llvm/Support/YAMLTraits.h"
34
#include "llvm/Support/raw_ostream.h"
35
#include <memory>
36
#include <optional>
37
#include <system_error>
38

39
using namespace clang;
40

41
namespace {
42
CodeCompleteConsumer *GetCodeCompletionConsumer(CompilerInstance &CI) {
43
  return CI.hasCodeCompletionConsumer() ? &CI.getCodeCompletionConsumer()
44
                                        : nullptr;
45
}
46

47
void EnsureSemaIsCreated(CompilerInstance &CI, FrontendAction &Action) {
48
  if (Action.hasCodeCompletionSupport() &&
49
      !CI.getFrontendOpts().CodeCompletionAt.FileName.empty())
50
    CI.createCodeCompletionConsumer();
51

52
  if (!CI.hasSema())
53
    CI.createSema(Action.getTranslationUnitKind(),
54
                  GetCodeCompletionConsumer(CI));
55
}
56
} // namespace
57

58
//===----------------------------------------------------------------------===//
59
// Custom Actions
60
//===----------------------------------------------------------------------===//
61

62
std::unique_ptr<ASTConsumer>
63
InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
64
  return std::make_unique<ASTConsumer>();
65
}
66

67
void InitOnlyAction::ExecuteAction() {
68
}
69

70
// Basically PreprocessOnlyAction::ExecuteAction.
71
void ReadPCHAndPreprocessAction::ExecuteAction() {
72
  Preprocessor &PP = getCompilerInstance().getPreprocessor();
73

74
  // Ignore unknown pragmas.
75
  PP.IgnorePragmas();
76

77
  Token Tok;
78
  // Start parsing the specified input file.
79
  PP.EnterMainSourceFile();
80
  do {
81
    PP.Lex(Tok);
82
  } while (Tok.isNot(tok::eof));
83
}
84

85
std::unique_ptr<ASTConsumer>
86
ReadPCHAndPreprocessAction::CreateASTConsumer(CompilerInstance &CI,
87
                                              StringRef InFile) {
88
  return std::make_unique<ASTConsumer>();
89
}
90

91
//===----------------------------------------------------------------------===//
92
// AST Consumer Actions
93
//===----------------------------------------------------------------------===//
94

95
std::unique_ptr<ASTConsumer>
96
ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
97
  if (std::unique_ptr<raw_ostream> OS =
98
          CI.createDefaultOutputFile(false, InFile))
99
    return CreateASTPrinter(std::move(OS), CI.getFrontendOpts().ASTDumpFilter);
100
  return nullptr;
101
}
102

103
std::unique_ptr<ASTConsumer>
104
ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
105
  const FrontendOptions &Opts = CI.getFrontendOpts();
106
  return CreateASTDumper(nullptr /*Dump to stdout.*/, Opts.ASTDumpFilter,
107
                         Opts.ASTDumpDecls, Opts.ASTDumpAll,
108
                         Opts.ASTDumpLookups, Opts.ASTDumpDeclTypes,
109
                         Opts.ASTDumpFormat);
110
}
111

112
std::unique_ptr<ASTConsumer>
113
ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
114
  return CreateASTDeclNodeLister();
115
}
116

117
std::unique_ptr<ASTConsumer>
118
ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
119
  return CreateASTViewer();
120
}
121

122
std::unique_ptr<ASTConsumer>
123
GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
124
  std::string Sysroot;
125
  if (!ComputeASTConsumerArguments(CI, /*ref*/ Sysroot))
126
    return nullptr;
127

128
  std::string OutputFile;
129
  std::unique_ptr<raw_pwrite_stream> OS =
130
      CreateOutputFile(CI, InFile, /*ref*/ OutputFile);
131
  if (!OS)
132
    return nullptr;
133

134
  if (!CI.getFrontendOpts().RelocatablePCH)
135
    Sysroot.clear();
136

137
  const auto &FrontendOpts = CI.getFrontendOpts();
138
  auto Buffer = std::make_shared<PCHBuffer>();
139
  std::vector<std::unique_ptr<ASTConsumer>> Consumers;
140
  Consumers.push_back(std::make_unique<PCHGenerator>(
141
      CI.getPreprocessor(), CI.getModuleCache(), OutputFile, Sysroot, Buffer,
142
      FrontendOpts.ModuleFileExtensions,
143
      CI.getPreprocessorOpts().AllowPCHWithCompilerErrors,
144
      FrontendOpts.IncludeTimestamps, FrontendOpts.BuildingImplicitModule,
145
      +CI.getLangOpts().CacheGeneratedPCH));
146
  Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator(
147
      CI, std::string(InFile), OutputFile, std::move(OS), Buffer));
148

149
  return std::make_unique<MultiplexConsumer>(std::move(Consumers));
150
}
151

152
bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI,
153
                                                    std::string &Sysroot) {
154
  Sysroot = CI.getHeaderSearchOpts().Sysroot;
155
  if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
156
    CI.getDiagnostics().Report(diag::err_relocatable_without_isysroot);
157
    return false;
158
  }
159

160
  return true;
161
}
162

163
std::unique_ptr<llvm::raw_pwrite_stream>
164
GeneratePCHAction::CreateOutputFile(CompilerInstance &CI, StringRef InFile,
165
                                    std::string &OutputFile) {
166
  // Because this is exposed via libclang we must disable RemoveFileOnSignal.
167
  std::unique_ptr<raw_pwrite_stream> OS = CI.createDefaultOutputFile(
168
      /*Binary=*/true, InFile, /*Extension=*/"", /*RemoveFileOnSignal=*/false);
169
  if (!OS)
170
    return nullptr;
171

172
  OutputFile = CI.getFrontendOpts().OutputFile;
173
  return OS;
174
}
175

176
bool GeneratePCHAction::shouldEraseOutputFiles() {
177
  if (getCompilerInstance().getPreprocessorOpts().AllowPCHWithCompilerErrors)
178
    return false;
179
  return ASTFrontendAction::shouldEraseOutputFiles();
180
}
181

182
bool GeneratePCHAction::BeginSourceFileAction(CompilerInstance &CI) {
183
  CI.getLangOpts().CompilingPCH = true;
184
  return true;
185
}
186

187
std::vector<std::unique_ptr<ASTConsumer>>
188
GenerateModuleAction::CreateMultiplexConsumer(CompilerInstance &CI,
189
                                              StringRef InFile) {
190
  std::unique_ptr<raw_pwrite_stream> OS = CreateOutputFile(CI, InFile);
191
  if (!OS)
192
    return {};
193

194
  std::string OutputFile = CI.getFrontendOpts().OutputFile;
195
  std::string Sysroot;
196

197
  auto Buffer = std::make_shared<PCHBuffer>();
198
  std::vector<std::unique_ptr<ASTConsumer>> Consumers;
199

200
  Consumers.push_back(std::make_unique<PCHGenerator>(
201
      CI.getPreprocessor(), CI.getModuleCache(), OutputFile, Sysroot, Buffer,
202
      CI.getFrontendOpts().ModuleFileExtensions,
203
      /*AllowASTWithErrors=*/
204
      +CI.getFrontendOpts().AllowPCMWithCompilerErrors,
205
      /*IncludeTimestamps=*/
206
      +CI.getFrontendOpts().BuildingImplicitModule &&
207
          +CI.getFrontendOpts().IncludeTimestamps,
208
      /*BuildingImplicitModule=*/+CI.getFrontendOpts().BuildingImplicitModule,
209
      /*ShouldCacheASTInMemory=*/
210
      +CI.getFrontendOpts().BuildingImplicitModule));
211
  Consumers.push_back(CI.getPCHContainerWriter().CreatePCHContainerGenerator(
212
      CI, std::string(InFile), OutputFile, std::move(OS), Buffer));
213
  return Consumers;
214
}
215

216
std::unique_ptr<ASTConsumer>
217
GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI,
218
                                        StringRef InFile) {
219
  std::vector<std::unique_ptr<ASTConsumer>> Consumers =
220
      CreateMultiplexConsumer(CI, InFile);
221
  if (Consumers.empty())
222
    return nullptr;
223

224
  return std::make_unique<MultiplexConsumer>(std::move(Consumers));
225
}
226

227
bool GenerateModuleAction::shouldEraseOutputFiles() {
228
  return !getCompilerInstance().getFrontendOpts().AllowPCMWithCompilerErrors &&
229
         ASTFrontendAction::shouldEraseOutputFiles();
230
}
231

232
bool GenerateModuleFromModuleMapAction::BeginSourceFileAction(
233
    CompilerInstance &CI) {
234
  if (!CI.getLangOpts().Modules) {
235
    CI.getDiagnostics().Report(diag::err_module_build_requires_fmodules);
236
    return false;
237
  }
238

239
  return GenerateModuleAction::BeginSourceFileAction(CI);
240
}
241

242
std::unique_ptr<raw_pwrite_stream>
243
GenerateModuleFromModuleMapAction::CreateOutputFile(CompilerInstance &CI,
244
                                                    StringRef InFile) {
245
  // If no output file was provided, figure out where this module would go
246
  // in the module cache.
247
  if (CI.getFrontendOpts().OutputFile.empty()) {
248
    StringRef ModuleMapFile = CI.getFrontendOpts().OriginalModuleMap;
249
    if (ModuleMapFile.empty())
250
      ModuleMapFile = InFile;
251

252
    HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
253
    CI.getFrontendOpts().OutputFile =
254
        HS.getCachedModuleFileName(CI.getLangOpts().CurrentModule,
255
                                   ModuleMapFile);
256
  }
257

258
  // Because this is exposed via libclang we must disable RemoveFileOnSignal.
259
  return CI.createDefaultOutputFile(/*Binary=*/true, InFile, /*Extension=*/"",
260
                                    /*RemoveFileOnSignal=*/false,
261
                                    /*CreateMissingDirectories=*/true,
262
                                    /*ForceUseTemporary=*/true);
263
}
264

265
bool GenerateModuleInterfaceAction::BeginSourceFileAction(
266
    CompilerInstance &CI) {
267
  CI.getLangOpts().setCompilingModule(LangOptions::CMK_ModuleInterface);
268

269
  return GenerateModuleAction::BeginSourceFileAction(CI);
270
}
271

272
std::unique_ptr<ASTConsumer>
273
GenerateModuleInterfaceAction::CreateASTConsumer(CompilerInstance &CI,
274
                                                 StringRef InFile) {
275
  std::vector<std::unique_ptr<ASTConsumer>> Consumers;
276

277
  if (CI.getFrontendOpts().GenReducedBMI &&
278
      !CI.getFrontendOpts().ModuleOutputPath.empty()) {
279
    Consumers.push_back(std::make_unique<ReducedBMIGenerator>(
280
        CI.getPreprocessor(), CI.getModuleCache(),
281
        CI.getFrontendOpts().ModuleOutputPath));
282
  }
283

284
  Consumers.push_back(std::make_unique<CXX20ModulesGenerator>(
285
      CI.getPreprocessor(), CI.getModuleCache(),
286
      CI.getFrontendOpts().OutputFile));
287

288
  return std::make_unique<MultiplexConsumer>(std::move(Consumers));
289
}
290

291
std::unique_ptr<raw_pwrite_stream>
292
GenerateModuleInterfaceAction::CreateOutputFile(CompilerInstance &CI,
293
                                                StringRef InFile) {
294
  return CI.createDefaultOutputFile(/*Binary=*/true, InFile, "pcm");
295
}
296

297
std::unique_ptr<ASTConsumer>
298
GenerateReducedModuleInterfaceAction::CreateASTConsumer(CompilerInstance &CI,
299
                                                        StringRef InFile) {
300
  return std::make_unique<ReducedBMIGenerator>(CI.getPreprocessor(),
301
                                               CI.getModuleCache(),
302
                                               CI.getFrontendOpts().OutputFile);
303
}
304

305
bool GenerateHeaderUnitAction::BeginSourceFileAction(CompilerInstance &CI) {
306
  if (!CI.getLangOpts().CPlusPlusModules) {
307
    CI.getDiagnostics().Report(diag::err_module_interface_requires_cpp_modules);
308
    return false;
309
  }
310
  CI.getLangOpts().setCompilingModule(LangOptions::CMK_HeaderUnit);
311
  return GenerateModuleAction::BeginSourceFileAction(CI);
312
}
313

314
std::unique_ptr<raw_pwrite_stream>
315
GenerateHeaderUnitAction::CreateOutputFile(CompilerInstance &CI,
316
                                           StringRef InFile) {
317
  return CI.createDefaultOutputFile(/*Binary=*/true, InFile, "pcm");
318
}
319

320
SyntaxOnlyAction::~SyntaxOnlyAction() {
321
}
322

323
std::unique_ptr<ASTConsumer>
324
SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
325
  return std::make_unique<ASTConsumer>();
326
}
327

328
std::unique_ptr<ASTConsumer>
329
DumpModuleInfoAction::CreateASTConsumer(CompilerInstance &CI,
330
                                        StringRef InFile) {
331
  return std::make_unique<ASTConsumer>();
332
}
333

334
std::unique_ptr<ASTConsumer>
335
VerifyPCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
336
  return std::make_unique<ASTConsumer>();
337
}
338

339
void VerifyPCHAction::ExecuteAction() {
340
  CompilerInstance &CI = getCompilerInstance();
341
  bool Preamble = CI.getPreprocessorOpts().PrecompiledPreambleBytes.first != 0;
342
  const std::string &Sysroot = CI.getHeaderSearchOpts().Sysroot;
343
  std::unique_ptr<ASTReader> Reader(new ASTReader(
344
      CI.getPreprocessor(), CI.getModuleCache(), &CI.getASTContext(),
345
      CI.getPCHContainerReader(), CI.getFrontendOpts().ModuleFileExtensions,
346
      Sysroot.empty() ? "" : Sysroot.c_str(),
347
      DisableValidationForModuleKind::None,
348
      /*AllowASTWithCompilerErrors*/ false,
349
      /*AllowConfigurationMismatch*/ true,
350
      /*ValidateSystemInputs*/ true));
351

352
  Reader->ReadAST(getCurrentFile(),
353
                  Preamble ? serialization::MK_Preamble
354
                           : serialization::MK_PCH,
355
                  SourceLocation(),
356
                  ASTReader::ARR_ConfigurationMismatch);
357
}
358

359
namespace {
360
struct TemplightEntry {
361
  std::string Name;
362
  std::string Kind;
363
  std::string Event;
364
  std::string DefinitionLocation;
365
  std::string PointOfInstantiation;
366
};
367
} // namespace
368

369
namespace llvm {
370
namespace yaml {
371
template <> struct MappingTraits<TemplightEntry> {
372
  static void mapping(IO &io, TemplightEntry &fields) {
373
    io.mapRequired("name", fields.Name);
374
    io.mapRequired("kind", fields.Kind);
375
    io.mapRequired("event", fields.Event);
376
    io.mapRequired("orig", fields.DefinitionLocation);
377
    io.mapRequired("poi", fields.PointOfInstantiation);
378
  }
379
};
380
} // namespace yaml
381
} // namespace llvm
382

383
namespace {
384
class DefaultTemplateInstCallback : public TemplateInstantiationCallback {
385
  using CodeSynthesisContext = Sema::CodeSynthesisContext;
386

387
public:
388
  void initialize(const Sema &) override {}
389

390
  void finalize(const Sema &) override {}
391

392
  void atTemplateBegin(const Sema &TheSema,
393
                       const CodeSynthesisContext &Inst) override {
394
    displayTemplightEntry<true>(llvm::outs(), TheSema, Inst);
395
  }
396

397
  void atTemplateEnd(const Sema &TheSema,
398
                     const CodeSynthesisContext &Inst) override {
399
    displayTemplightEntry<false>(llvm::outs(), TheSema, Inst);
400
  }
401

402
private:
403
  static std::string toString(CodeSynthesisContext::SynthesisKind Kind) {
404
    switch (Kind) {
405
    case CodeSynthesisContext::TemplateInstantiation:
406
      return "TemplateInstantiation";
407
    case CodeSynthesisContext::DefaultTemplateArgumentInstantiation:
408
      return "DefaultTemplateArgumentInstantiation";
409
    case CodeSynthesisContext::DefaultFunctionArgumentInstantiation:
410
      return "DefaultFunctionArgumentInstantiation";
411
    case CodeSynthesisContext::ExplicitTemplateArgumentSubstitution:
412
      return "ExplicitTemplateArgumentSubstitution";
413
    case CodeSynthesisContext::DeducedTemplateArgumentSubstitution:
414
      return "DeducedTemplateArgumentSubstitution";
415
    case CodeSynthesisContext::LambdaExpressionSubstitution:
416
      return "LambdaExpressionSubstitution";
417
    case CodeSynthesisContext::PriorTemplateArgumentSubstitution:
418
      return "PriorTemplateArgumentSubstitution";
419
    case CodeSynthesisContext::DefaultTemplateArgumentChecking:
420
      return "DefaultTemplateArgumentChecking";
421
    case CodeSynthesisContext::ExceptionSpecEvaluation:
422
      return "ExceptionSpecEvaluation";
423
    case CodeSynthesisContext::ExceptionSpecInstantiation:
424
      return "ExceptionSpecInstantiation";
425
    case CodeSynthesisContext::DeclaringSpecialMember:
426
      return "DeclaringSpecialMember";
427
    case CodeSynthesisContext::DeclaringImplicitEqualityComparison:
428
      return "DeclaringImplicitEqualityComparison";
429
    case CodeSynthesisContext::DefiningSynthesizedFunction:
430
      return "DefiningSynthesizedFunction";
431
    case CodeSynthesisContext::RewritingOperatorAsSpaceship:
432
      return "RewritingOperatorAsSpaceship";
433
    case CodeSynthesisContext::Memoization:
434
      return "Memoization";
435
    case CodeSynthesisContext::ConstraintsCheck:
436
      return "ConstraintsCheck";
437
    case CodeSynthesisContext::ConstraintSubstitution:
438
      return "ConstraintSubstitution";
439
    case CodeSynthesisContext::ConstraintNormalization:
440
      return "ConstraintNormalization";
441
    case CodeSynthesisContext::RequirementParameterInstantiation:
442
      return "RequirementParameterInstantiation";
443
    case CodeSynthesisContext::ParameterMappingSubstitution:
444
      return "ParameterMappingSubstitution";
445
    case CodeSynthesisContext::RequirementInstantiation:
446
      return "RequirementInstantiation";
447
    case CodeSynthesisContext::NestedRequirementConstraintsCheck:
448
      return "NestedRequirementConstraintsCheck";
449
    case CodeSynthesisContext::InitializingStructuredBinding:
450
      return "InitializingStructuredBinding";
451
    case CodeSynthesisContext::MarkingClassDllexported:
452
      return "MarkingClassDllexported";
453
    case CodeSynthesisContext::BuildingBuiltinDumpStructCall:
454
      return "BuildingBuiltinDumpStructCall";
455
    case CodeSynthesisContext::BuildingDeductionGuides:
456
      return "BuildingDeductionGuides";
457
    case CodeSynthesisContext::TypeAliasTemplateInstantiation:
458
      return "TypeAliasTemplateInstantiation";
459
    }
460
    return "";
461
  }
462

463
  template <bool BeginInstantiation>
464
  static void displayTemplightEntry(llvm::raw_ostream &Out, const Sema &TheSema,
465
                                    const CodeSynthesisContext &Inst) {
466
    std::string YAML;
467
    {
468
      llvm::raw_string_ostream OS(YAML);
469
      llvm::yaml::Output YO(OS);
470
      TemplightEntry Entry =
471
          getTemplightEntry<BeginInstantiation>(TheSema, Inst);
472
      llvm::yaml::EmptyContext Context;
473
      llvm::yaml::yamlize(YO, Entry, true, Context);
474
    }
475
    Out << "---" << YAML << "\n";
476
  }
477

478
  static void printEntryName(const Sema &TheSema, const Decl *Entity,
479
                             llvm::raw_string_ostream &OS) {
480
    auto *NamedTemplate = cast<NamedDecl>(Entity);
481

482
    PrintingPolicy Policy = TheSema.Context.getPrintingPolicy();
483
    // FIXME: Also ask for FullyQualifiedNames?
484
    Policy.SuppressDefaultTemplateArgs = false;
485
    NamedTemplate->getNameForDiagnostic(OS, Policy, true);
486

487
    if (!OS.str().empty())
488
      return;
489

490
    Decl *Ctx = Decl::castFromDeclContext(NamedTemplate->getDeclContext());
491
    NamedDecl *NamedCtx = dyn_cast_or_null<NamedDecl>(Ctx);
492

493
    if (const auto *Decl = dyn_cast<TagDecl>(NamedTemplate)) {
494
      if (const auto *R = dyn_cast<RecordDecl>(Decl)) {
495
        if (R->isLambda()) {
496
          OS << "lambda at ";
497
          Decl->getLocation().print(OS, TheSema.getSourceManager());
498
          return;
499
        }
500
      }
501
      OS << "unnamed " << Decl->getKindName();
502
      return;
503
    }
504

505
    assert(NamedCtx && "NamedCtx cannot be null");
506

507
    if (const auto *Decl = dyn_cast<ParmVarDecl>(NamedTemplate)) {
508
      OS << "unnamed function parameter " << Decl->getFunctionScopeIndex()
509
         << " ";
510
      if (Decl->getFunctionScopeDepth() > 0)
511
        OS << "(at depth " << Decl->getFunctionScopeDepth() << ") ";
512
      OS << "of ";
513
      NamedCtx->getNameForDiagnostic(OS, TheSema.getLangOpts(), true);
514
      return;
515
    }
516

517
    if (const auto *Decl = dyn_cast<TemplateTypeParmDecl>(NamedTemplate)) {
518
      if (const Type *Ty = Decl->getTypeForDecl()) {
519
        if (const auto *TTPT = dyn_cast_or_null<TemplateTypeParmType>(Ty)) {
520
          OS << "unnamed template type parameter " << TTPT->getIndex() << " ";
521
          if (TTPT->getDepth() > 0)
522
            OS << "(at depth " << TTPT->getDepth() << ") ";
523
          OS << "of ";
524
          NamedCtx->getNameForDiagnostic(OS, TheSema.getLangOpts(), true);
525
          return;
526
        }
527
      }
528
    }
529

530
    if (const auto *Decl = dyn_cast<NonTypeTemplateParmDecl>(NamedTemplate)) {
531
      OS << "unnamed template non-type parameter " << Decl->getIndex() << " ";
532
      if (Decl->getDepth() > 0)
533
        OS << "(at depth " << Decl->getDepth() << ") ";
534
      OS << "of ";
535
      NamedCtx->getNameForDiagnostic(OS, TheSema.getLangOpts(), true);
536
      return;
537
    }
538

539
    if (const auto *Decl = dyn_cast<TemplateTemplateParmDecl>(NamedTemplate)) {
540
      OS << "unnamed template template parameter " << Decl->getIndex() << " ";
541
      if (Decl->getDepth() > 0)
542
        OS << "(at depth " << Decl->getDepth() << ") ";
543
      OS << "of ";
544
      NamedCtx->getNameForDiagnostic(OS, TheSema.getLangOpts(), true);
545
      return;
546
    }
547

548
    llvm_unreachable("Failed to retrieve a name for this entry!");
549
    OS << "unnamed identifier";
550
  }
551

552
  template <bool BeginInstantiation>
553
  static TemplightEntry getTemplightEntry(const Sema &TheSema,
554
                                          const CodeSynthesisContext &Inst) {
555
    TemplightEntry Entry;
556
    Entry.Kind = toString(Inst.Kind);
557
    Entry.Event = BeginInstantiation ? "Begin" : "End";
558
    llvm::raw_string_ostream OS(Entry.Name);
559
    printEntryName(TheSema, Inst.Entity, OS);
560
    const PresumedLoc DefLoc =
561
        TheSema.getSourceManager().getPresumedLoc(Inst.Entity->getLocation());
562
    if (!DefLoc.isInvalid())
563
      Entry.DefinitionLocation = std::string(DefLoc.getFilename()) + ":" +
564
                                 std::to_string(DefLoc.getLine()) + ":" +
565
                                 std::to_string(DefLoc.getColumn());
566
    const PresumedLoc PoiLoc =
567
        TheSema.getSourceManager().getPresumedLoc(Inst.PointOfInstantiation);
568
    if (!PoiLoc.isInvalid()) {
569
      Entry.PointOfInstantiation = std::string(PoiLoc.getFilename()) + ":" +
570
                                   std::to_string(PoiLoc.getLine()) + ":" +
571
                                   std::to_string(PoiLoc.getColumn());
572
    }
573
    return Entry;
574
  }
575
};
576
} // namespace
577

578
std::unique_ptr<ASTConsumer>
579
TemplightDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
580
  return std::make_unique<ASTConsumer>();
581
}
582

583
void TemplightDumpAction::ExecuteAction() {
584
  CompilerInstance &CI = getCompilerInstance();
585

586
  // This part is normally done by ASTFrontEndAction, but needs to happen
587
  // before Templight observers can be created
588
  // FIXME: Move the truncation aspect of this into Sema, we delayed this till
589
  // here so the source manager would be initialized.
590
  EnsureSemaIsCreated(CI, *this);
591

592
  CI.getSema().TemplateInstCallbacks.push_back(
593
      std::make_unique<DefaultTemplateInstCallback>());
594
  ASTFrontendAction::ExecuteAction();
595
}
596

597
namespace {
598
  /// AST reader listener that dumps module information for a module
599
  /// file.
600
  class DumpModuleInfoListener : public ASTReaderListener {
601
    llvm::raw_ostream &Out;
602

603
  public:
604
    DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { }
605

606
#define DUMP_BOOLEAN(Value, Text)                       \
607
    Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
608

609
    bool ReadFullVersionInformation(StringRef FullVersion) override {
610
      Out.indent(2)
611
        << "Generated by "
612
        << (FullVersion == getClangFullRepositoryVersion()? "this"
613
                                                          : "a different")
614
        << " Clang: " << FullVersion << "\n";
615
      return ASTReaderListener::ReadFullVersionInformation(FullVersion);
616
    }
617

618
    void ReadModuleName(StringRef ModuleName) override {
619
      Out.indent(2) << "Module name: " << ModuleName << "\n";
620
    }
621
    void ReadModuleMapFile(StringRef ModuleMapPath) override {
622
      Out.indent(2) << "Module map file: " << ModuleMapPath << "\n";
623
    }
624

625
    bool ReadLanguageOptions(const LangOptions &LangOpts, bool Complain,
626
                             bool AllowCompatibleDifferences) override {
627
      Out.indent(2) << "Language options:\n";
628
#define LANGOPT(Name, Bits, Default, Description) \
629
      DUMP_BOOLEAN(LangOpts.Name, Description);
630
#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
631
      Out.indent(4) << Description << ": "                   \
632
                    << static_cast<unsigned>(LangOpts.get##Name()) << "\n";
633
#define VALUE_LANGOPT(Name, Bits, Default, Description) \
634
      Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
635
#define BENIGN_LANGOPT(Name, Bits, Default, Description)
636
#define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
637
#include "clang/Basic/LangOptions.def"
638

639
      if (!LangOpts.ModuleFeatures.empty()) {
640
        Out.indent(4) << "Module features:\n";
641
        for (StringRef Feature : LangOpts.ModuleFeatures)
642
          Out.indent(6) << Feature << "\n";
643
      }
644

645
      return false;
646
    }
647

648
    bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
649
                           bool AllowCompatibleDifferences) override {
650
      Out.indent(2) << "Target options:\n";
651
      Out.indent(4) << "  Triple: " << TargetOpts.Triple << "\n";
652
      Out.indent(4) << "  CPU: " << TargetOpts.CPU << "\n";
653
      Out.indent(4) << "  TuneCPU: " << TargetOpts.TuneCPU << "\n";
654
      Out.indent(4) << "  ABI: " << TargetOpts.ABI << "\n";
655

656
      if (!TargetOpts.FeaturesAsWritten.empty()) {
657
        Out.indent(4) << "Target features:\n";
658
        for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size();
659
             I != N; ++I) {
660
          Out.indent(6) << TargetOpts.FeaturesAsWritten[I] << "\n";
661
        }
662
      }
663

664
      return false;
665
    }
666

667
    bool ReadDiagnosticOptions(IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts,
668
                               bool Complain) override {
669
      Out.indent(2) << "Diagnostic options:\n";
670
#define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name);
671
#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
672
      Out.indent(4) << #Name << ": " << DiagOpts->get##Name() << "\n";
673
#define VALUE_DIAGOPT(Name, Bits, Default) \
674
      Out.indent(4) << #Name << ": " << DiagOpts->Name << "\n";
675
#include "clang/Basic/DiagnosticOptions.def"
676

677
      Out.indent(4) << "Diagnostic flags:\n";
678
      for (const std::string &Warning : DiagOpts->Warnings)
679
        Out.indent(6) << "-W" << Warning << "\n";
680
      for (const std::string &Remark : DiagOpts->Remarks)
681
        Out.indent(6) << "-R" << Remark << "\n";
682

683
      return false;
684
    }
685

686
    bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
687
                                 StringRef SpecificModuleCachePath,
688
                                 bool Complain) override {
689
      Out.indent(2) << "Header search options:\n";
690
      Out.indent(4) << "System root [-isysroot=]: '" << HSOpts.Sysroot << "'\n";
691
      Out.indent(4) << "Resource dir [ -resource-dir=]: '" << HSOpts.ResourceDir << "'\n";
692
      Out.indent(4) << "Module Cache: '" << SpecificModuleCachePath << "'\n";
693
      DUMP_BOOLEAN(HSOpts.UseBuiltinIncludes,
694
                   "Use builtin include directories [-nobuiltininc]");
695
      DUMP_BOOLEAN(HSOpts.UseStandardSystemIncludes,
696
                   "Use standard system include directories [-nostdinc]");
697
      DUMP_BOOLEAN(HSOpts.UseStandardCXXIncludes,
698
                   "Use standard C++ include directories [-nostdinc++]");
699
      DUMP_BOOLEAN(HSOpts.UseLibcxx,
700
                   "Use libc++ (rather than libstdc++) [-stdlib=]");
701
      return false;
702
    }
703

704
    bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts,
705
                               bool Complain) override {
706
      Out.indent(2) << "Header search paths:\n";
707
      Out.indent(4) << "User entries:\n";
708
      for (const auto &Entry : HSOpts.UserEntries)
709
        Out.indent(6) << Entry.Path << "\n";
710
      Out.indent(4) << "System header prefixes:\n";
711
      for (const auto &Prefix : HSOpts.SystemHeaderPrefixes)
712
        Out.indent(6) << Prefix.Prefix << "\n";
713
      Out.indent(4) << "VFS overlay files:\n";
714
      for (const auto &Overlay : HSOpts.VFSOverlayFiles)
715
        Out.indent(6) << Overlay << "\n";
716
      return false;
717
    }
718

719
    bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
720
                                 bool ReadMacros, bool Complain,
721
                                 std::string &SuggestedPredefines) override {
722
      Out.indent(2) << "Preprocessor options:\n";
723
      DUMP_BOOLEAN(PPOpts.UsePredefines,
724
                   "Uses compiler/target-specific predefines [-undef]");
725
      DUMP_BOOLEAN(PPOpts.DetailedRecord,
726
                   "Uses detailed preprocessing record (for indexing)");
727

728
      if (ReadMacros) {
729
        Out.indent(4) << "Predefined macros:\n";
730
      }
731

732
      for (std::vector<std::pair<std::string, bool/*isUndef*/> >::const_iterator
733
             I = PPOpts.Macros.begin(), IEnd = PPOpts.Macros.end();
734
           I != IEnd; ++I) {
735
        Out.indent(6);
736
        if (I->second)
737
          Out << "-U";
738
        else
739
          Out << "-D";
740
        Out << I->first << "\n";
741
      }
742
      return false;
743
    }
744

745
    /// Indicates that a particular module file extension has been read.
746
    void readModuleFileExtension(
747
           const ModuleFileExtensionMetadata &Metadata) override {
748
      Out.indent(2) << "Module file extension '"
749
                    << Metadata.BlockName << "' " << Metadata.MajorVersion
750
                    << "." << Metadata.MinorVersion;
751
      if (!Metadata.UserInfo.empty()) {
752
        Out << ": ";
753
        Out.write_escaped(Metadata.UserInfo);
754
      }
755

756
      Out << "\n";
757
    }
758

759
    /// Tells the \c ASTReaderListener that we want to receive the
760
    /// input files of the AST file via \c visitInputFile.
761
    bool needsInputFileVisitation() override { return true; }
762

763
    /// Tells the \c ASTReaderListener that we want to receive the
764
    /// input files of the AST file via \c visitInputFile.
765
    bool needsSystemInputFileVisitation() override { return true; }
766

767
    /// Indicates that the AST file contains particular input file.
768
    ///
769
    /// \returns true to continue receiving the next input file, false to stop.
770
    bool visitInputFile(StringRef Filename, bool isSystem,
771
                        bool isOverridden, bool isExplicitModule) override {
772

773
      Out.indent(2) << "Input file: " << Filename;
774

775
      if (isSystem || isOverridden || isExplicitModule) {
776
        Out << " [";
777
        if (isSystem) {
778
          Out << "System";
779
          if (isOverridden || isExplicitModule)
780
            Out << ", ";
781
        }
782
        if (isOverridden) {
783
          Out << "Overridden";
784
          if (isExplicitModule)
785
            Out << ", ";
786
        }
787
        if (isExplicitModule)
788
          Out << "ExplicitModule";
789

790
        Out << "]";
791
      }
792

793
      Out << "\n";
794

795
      return true;
796
    }
797

798
    /// Returns true if this \c ASTReaderListener wants to receive the
799
    /// imports of the AST file via \c visitImport, false otherwise.
800
    bool needsImportVisitation() const override { return true; }
801

802
    /// If needsImportVisitation returns \c true, this is called for each
803
    /// AST file imported by this AST file.
804
    void visitImport(StringRef ModuleName, StringRef Filename) override {
805
      Out.indent(2) << "Imports module '" << ModuleName
806
                    << "': " << Filename.str() << "\n";
807
    }
808
#undef DUMP_BOOLEAN
809
  };
810
}
811

812
bool DumpModuleInfoAction::BeginInvocation(CompilerInstance &CI) {
813
  // The Object file reader also supports raw ast files and there is no point in
814
  // being strict about the module file format in -module-file-info mode.
815
  CI.getHeaderSearchOpts().ModuleFormat = "obj";
816
  return true;
817
}
818

819
static StringRef ModuleKindName(Module::ModuleKind MK) {
820
  switch (MK) {
821
  case Module::ModuleMapModule:
822
    return "Module Map Module";
823
  case Module::ModuleInterfaceUnit:
824
    return "Interface Unit";
825
  case Module::ModuleImplementationUnit:
826
    return "Implementation Unit";
827
  case Module::ModulePartitionInterface:
828
    return "Partition Interface";
829
  case Module::ModulePartitionImplementation:
830
    return "Partition Implementation";
831
  case Module::ModuleHeaderUnit:
832
    return "Header Unit";
833
  case Module::ExplicitGlobalModuleFragment:
834
    return "Global Module Fragment";
835
  case Module::ImplicitGlobalModuleFragment:
836
    return "Implicit Module Fragment";
837
  case Module::PrivateModuleFragment:
838
    return "Private Module Fragment";
839
  }
840
  llvm_unreachable("unknown module kind!");
841
}
842

843
void DumpModuleInfoAction::ExecuteAction() {
844
  assert(isCurrentFileAST() && "dumping non-AST?");
845
  // Set up the output file.
846
  CompilerInstance &CI = getCompilerInstance();
847
  StringRef OutputFileName = CI.getFrontendOpts().OutputFile;
848
  if (!OutputFileName.empty() && OutputFileName != "-") {
849
    std::error_code EC;
850
    OutputStream.reset(new llvm::raw_fd_ostream(
851
        OutputFileName.str(), EC, llvm::sys::fs::OF_TextWithCRLF));
852
  }
853
  llvm::raw_ostream &Out = OutputStream ? *OutputStream : llvm::outs();
854

855
  Out << "Information for module file '" << getCurrentFile() << "':\n";
856
  auto &FileMgr = CI.getFileManager();
857
  auto Buffer = FileMgr.getBufferForFile(getCurrentFile());
858
  StringRef Magic = (*Buffer)->getMemBufferRef().getBuffer();
859
  bool IsRaw = Magic.starts_with("CPCH");
860
  Out << "  Module format: " << (IsRaw ? "raw" : "obj") << "\n";
861

862
  Preprocessor &PP = CI.getPreprocessor();
863
  DumpModuleInfoListener Listener(Out);
864
  HeaderSearchOptions &HSOpts = PP.getHeaderSearchInfo().getHeaderSearchOpts();
865

866
  // The FrontendAction::BeginSourceFile () method loads the AST so that much
867
  // of the information is already available and modules should have been
868
  // loaded.
869

870
  const LangOptions &LO = getCurrentASTUnit().getLangOpts();
871
  if (LO.CPlusPlusModules && !LO.CurrentModule.empty()) {
872
    ASTReader *R = getCurrentASTUnit().getASTReader().get();
873
    unsigned SubModuleCount = R->getTotalNumSubmodules();
874
    serialization::ModuleFile &MF = R->getModuleManager().getPrimaryModule();
875
    Out << "  ====== C++20 Module structure ======\n";
876

877
    if (MF.ModuleName != LO.CurrentModule)
878
      Out << "  Mismatched module names : " << MF.ModuleName << " and "
879
          << LO.CurrentModule << "\n";
880

881
    struct SubModInfo {
882
      unsigned Idx;
883
      Module *Mod;
884
      Module::ModuleKind Kind;
885
      std::string &Name;
886
      bool Seen;
887
    };
888
    std::map<std::string, SubModInfo> SubModMap;
889
    auto PrintSubMapEntry = [&](std::string Name, Module::ModuleKind Kind) {
890
      Out << "    " << ModuleKindName(Kind) << " '" << Name << "'";
891
      auto I = SubModMap.find(Name);
892
      if (I == SubModMap.end())
893
        Out << " was not found in the sub modules!\n";
894
      else {
895
        I->second.Seen = true;
896
        Out << " is at index #" << I->second.Idx << "\n";
897
      }
898
    };
899
    Module *Primary = nullptr;
900
    for (unsigned Idx = 0; Idx <= SubModuleCount; ++Idx) {
901
      Module *M = R->getModule(Idx);
902
      if (!M)
903
        continue;
904
      if (M->Name == LO.CurrentModule) {
905
        Primary = M;
906
        Out << "  " << ModuleKindName(M->Kind) << " '" << LO.CurrentModule
907
            << "' is the Primary Module at index #" << Idx << "\n";
908
        SubModMap.insert({M->Name, {Idx, M, M->Kind, M->Name, true}});
909
      } else
910
        SubModMap.insert({M->Name, {Idx, M, M->Kind, M->Name, false}});
911
    }
912
    if (Primary) {
913
      if (!Primary->submodules().empty())
914
        Out << "   Sub Modules:\n";
915
      for (auto *MI : Primary->submodules()) {
916
        PrintSubMapEntry(MI->Name, MI->Kind);
917
      }
918
      if (!Primary->Imports.empty())
919
        Out << "   Imports:\n";
920
      for (auto *IMP : Primary->Imports) {
921
        PrintSubMapEntry(IMP->Name, IMP->Kind);
922
      }
923
      if (!Primary->Exports.empty())
924
        Out << "   Exports:\n";
925
      for (unsigned MN = 0, N = Primary->Exports.size(); MN != N; ++MN) {
926
        if (Module *M = Primary->Exports[MN].getPointer()) {
927
          PrintSubMapEntry(M->Name, M->Kind);
928
        }
929
      }
930
    }
931

932
    // Emit the macro definitions in the module file so that we can know how
933
    // much definitions in the module file quickly.
934
    // TODO: Emit the macro definition bodies completely.
935
    if (auto FilteredMacros = llvm::make_filter_range(
936
            R->getPreprocessor().macros(),
937
            [](const auto &Macro) { return Macro.first->isFromAST(); });
938
        !FilteredMacros.empty()) {
939
      Out << "   Macro Definitions:\n";
940
      for (/*<IdentifierInfo *, MacroState> pair*/ const auto &Macro :
941
           FilteredMacros)
942
        Out << "     " << Macro.first->getName() << "\n";
943
    }
944

945
    // Now let's print out any modules we did not see as part of the Primary.
946
    for (const auto &SM : SubModMap) {
947
      if (!SM.second.Seen && SM.second.Mod) {
948
        Out << "  " << ModuleKindName(SM.second.Kind) << " '" << SM.first
949
            << "' at index #" << SM.second.Idx
950
            << " has no direct reference in the Primary\n";
951
      }
952
    }
953
    Out << "  ====== ======\n";
954
  }
955

956
  // The reminder of the output is produced from the listener as the AST
957
  // FileCcontrolBlock is (re-)parsed.
958
  ASTReader::readASTFileControlBlock(
959
      getCurrentFile(), FileMgr, CI.getModuleCache(),
960
      CI.getPCHContainerReader(),
961
      /*FindModuleFileExtensions=*/true, Listener,
962
      HSOpts.ModulesValidateDiagnosticOptions);
963
}
964

965
//===----------------------------------------------------------------------===//
966
// Preprocessor Actions
967
//===----------------------------------------------------------------------===//
968

969
void DumpRawTokensAction::ExecuteAction() {
970
  Preprocessor &PP = getCompilerInstance().getPreprocessor();
971
  SourceManager &SM = PP.getSourceManager();
972

973
  // Start lexing the specified input file.
974
  llvm::MemoryBufferRef FromFile = SM.getBufferOrFake(SM.getMainFileID());
975
  Lexer RawLex(SM.getMainFileID(), FromFile, SM, PP.getLangOpts());
976
  RawLex.SetKeepWhitespaceMode(true);
977

978
  Token RawTok;
979
  RawLex.LexFromRawLexer(RawTok);
980
  while (RawTok.isNot(tok::eof)) {
981
    PP.DumpToken(RawTok, true);
982
    llvm::errs() << "\n";
983
    RawLex.LexFromRawLexer(RawTok);
984
  }
985
}
986

987
void DumpTokensAction::ExecuteAction() {
988
  Preprocessor &PP = getCompilerInstance().getPreprocessor();
989
  // Start preprocessing the specified input file.
990
  Token Tok;
991
  PP.EnterMainSourceFile();
992
  do {
993
    PP.Lex(Tok);
994
    PP.DumpToken(Tok, true);
995
    llvm::errs() << "\n";
996
  } while (Tok.isNot(tok::eof));
997
}
998

999
void PreprocessOnlyAction::ExecuteAction() {
1000
  Preprocessor &PP = getCompilerInstance().getPreprocessor();
1001

1002
  // Ignore unknown pragmas.
1003
  PP.IgnorePragmas();
1004

1005
  Token Tok;
1006
  // Start parsing the specified input file.
1007
  PP.EnterMainSourceFile();
1008
  do {
1009
    PP.Lex(Tok);
1010
  } while (Tok.isNot(tok::eof));
1011
}
1012

1013
void PrintPreprocessedAction::ExecuteAction() {
1014
  CompilerInstance &CI = getCompilerInstance();
1015
  // Output file may need to be set to 'Binary', to avoid converting Unix style
1016
  // line feeds (<LF>) to Microsoft style line feeds (<CR><LF>) on Windows.
1017
  //
1018
  // Look to see what type of line endings the file uses. If there's a
1019
  // CRLF, then we won't open the file up in binary mode. If there is
1020
  // just an LF or CR, then we will open the file up in binary mode.
1021
  // In this fashion, the output format should match the input format, unless
1022
  // the input format has inconsistent line endings.
1023
  //
1024
  // This should be a relatively fast operation since most files won't have
1025
  // all of their source code on a single line. However, that is still a
1026
  // concern, so if we scan for too long, we'll just assume the file should
1027
  // be opened in binary mode.
1028

1029
  bool BinaryMode = false;
1030
  if (llvm::Triple(LLVM_HOST_TRIPLE).isOSWindows()) {
1031
    BinaryMode = true;
1032
    const SourceManager &SM = CI.getSourceManager();
1033
    if (std::optional<llvm::MemoryBufferRef> Buffer =
1034
            SM.getBufferOrNone(SM.getMainFileID())) {
1035
      const char *cur = Buffer->getBufferStart();
1036
      const char *end = Buffer->getBufferEnd();
1037
      const char *next = (cur != end) ? cur + 1 : end;
1038

1039
      // Limit ourselves to only scanning 256 characters into the source
1040
      // file.  This is mostly a check in case the file has no
1041
      // newlines whatsoever.
1042
      if (end - cur > 256)
1043
        end = cur + 256;
1044

1045
      while (next < end) {
1046
        if (*cur == 0x0D) {  // CR
1047
          if (*next == 0x0A) // CRLF
1048
            BinaryMode = false;
1049

1050
          break;
1051
        } else if (*cur == 0x0A) // LF
1052
          break;
1053

1054
        ++cur;
1055
        ++next;
1056
      }
1057
    }
1058
  }
1059

1060
  std::unique_ptr<raw_ostream> OS =
1061
      CI.createDefaultOutputFile(BinaryMode, getCurrentFileOrBufferName());
1062
  if (!OS) return;
1063

1064
  // If we're preprocessing a module map, start by dumping the contents of the
1065
  // module itself before switching to the input buffer.
1066
  auto &Input = getCurrentInput();
1067
  if (Input.getKind().getFormat() == InputKind::ModuleMap) {
1068
    if (Input.isFile()) {
1069
      (*OS) << "# 1 \"";
1070
      OS->write_escaped(Input.getFile());
1071
      (*OS) << "\"\n";
1072
    }
1073
    getCurrentModule()->print(*OS);
1074
    (*OS) << "#pragma clang module contents\n";
1075
  }
1076

1077
  DoPrintPreprocessedInput(CI.getPreprocessor(), OS.get(),
1078
                           CI.getPreprocessorOutputOpts());
1079
}
1080

1081
void PrintPreambleAction::ExecuteAction() {
1082
  switch (getCurrentFileKind().getLanguage()) {
1083
  case Language::C:
1084
  case Language::CXX:
1085
  case Language::ObjC:
1086
  case Language::ObjCXX:
1087
  case Language::OpenCL:
1088
  case Language::OpenCLCXX:
1089
  case Language::CUDA:
1090
  case Language::HIP:
1091
  case Language::HLSL:
1092
  case Language::CIR:
1093
    break;
1094

1095
  case Language::Unknown:
1096
  case Language::Asm:
1097
  case Language::LLVM_IR:
1098
  case Language::RenderScript:
1099
    // We can't do anything with these.
1100
    return;
1101
  }
1102

1103
  // We don't expect to find any #include directives in a preprocessed input.
1104
  if (getCurrentFileKind().isPreprocessed())
1105
    return;
1106

1107
  CompilerInstance &CI = getCompilerInstance();
1108
  auto Buffer = CI.getFileManager().getBufferForFile(getCurrentFile());
1109
  if (Buffer) {
1110
    unsigned Preamble =
1111
        Lexer::ComputePreamble((*Buffer)->getBuffer(), CI.getLangOpts()).Size;
1112
    llvm::outs().write((*Buffer)->getBufferStart(), Preamble);
1113
  }
1114
}
1115

1116
void DumpCompilerOptionsAction::ExecuteAction() {
1117
  CompilerInstance &CI = getCompilerInstance();
1118
  std::unique_ptr<raw_ostream> OSP =
1119
      CI.createDefaultOutputFile(false, getCurrentFile());
1120
  if (!OSP)
1121
    return;
1122

1123
  raw_ostream &OS = *OSP;
1124
  const Preprocessor &PP = CI.getPreprocessor();
1125
  const LangOptions &LangOpts = PP.getLangOpts();
1126

1127
  // FIXME: Rather than manually format the JSON (which is awkward due to
1128
  // needing to remove trailing commas), this should make use of a JSON library.
1129
  // FIXME: Instead of printing enums as an integral value and specifying the
1130
  // type as a separate field, use introspection to print the enumerator.
1131

1132
  OS << "{\n";
1133
  OS << "\n\"features\" : [\n";
1134
  {
1135
    llvm::SmallString<128> Str;
1136
#define FEATURE(Name, Predicate)                                               \
1137
  ("\t{\"" #Name "\" : " + llvm::Twine(Predicate ? "true" : "false") + "},\n") \
1138
      .toVector(Str);
1139
#include "clang/Basic/Features.def"
1140
#undef FEATURE
1141
    // Remove the newline and comma from the last entry to ensure this remains
1142
    // valid JSON.
1143
    OS << Str.substr(0, Str.size() - 2);
1144
  }
1145
  OS << "\n],\n";
1146

1147
  OS << "\n\"extensions\" : [\n";
1148
  {
1149
    llvm::SmallString<128> Str;
1150
#define EXTENSION(Name, Predicate)                                             \
1151
  ("\t{\"" #Name "\" : " + llvm::Twine(Predicate ? "true" : "false") + "},\n") \
1152
      .toVector(Str);
1153
#include "clang/Basic/Features.def"
1154
#undef EXTENSION
1155
    // Remove the newline and comma from the last entry to ensure this remains
1156
    // valid JSON.
1157
    OS << Str.substr(0, Str.size() - 2);
1158
  }
1159
  OS << "\n]\n";
1160

1161
  OS << "}";
1162
}
1163

1164
void PrintDependencyDirectivesSourceMinimizerAction::ExecuteAction() {
1165
  CompilerInstance &CI = getCompilerInstance();
1166
  SourceManager &SM = CI.getPreprocessor().getSourceManager();
1167
  llvm::MemoryBufferRef FromFile = SM.getBufferOrFake(SM.getMainFileID());
1168

1169
  llvm::SmallVector<dependency_directives_scan::Token, 16> Tokens;
1170
  llvm::SmallVector<dependency_directives_scan::Directive, 32> Directives;
1171
  if (scanSourceForDependencyDirectives(
1172
          FromFile.getBuffer(), Tokens, Directives, &CI.getDiagnostics(),
1173
          SM.getLocForStartOfFile(SM.getMainFileID()))) {
1174
    assert(CI.getDiagnostics().hasErrorOccurred() &&
1175
           "no errors reported for failure");
1176

1177
    // Preprocess the source when verifying the diagnostics to capture the
1178
    // 'expected' comments.
1179
    if (CI.getDiagnosticOpts().VerifyDiagnostics) {
1180
      // Make sure we don't emit new diagnostics!
1181
      CI.getDiagnostics().setSuppressAllDiagnostics(true);
1182
      Preprocessor &PP = getCompilerInstance().getPreprocessor();
1183
      PP.EnterMainSourceFile();
1184
      Token Tok;
1185
      do {
1186
        PP.Lex(Tok);
1187
      } while (Tok.isNot(tok::eof));
1188
    }
1189
    return;
1190
  }
1191
  printDependencyDirectivesAsSource(FromFile.getBuffer(), Directives,
1192
                                    llvm::outs());
1193
}
1194

1195
void GetDependenciesByModuleNameAction::ExecuteAction() {
1196
  CompilerInstance &CI = getCompilerInstance();
1197
  Preprocessor &PP = CI.getPreprocessor();
1198
  SourceManager &SM = PP.getSourceManager();
1199
  FileID MainFileID = SM.getMainFileID();
1200
  SourceLocation FileStart = SM.getLocForStartOfFile(MainFileID);
1201
  SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
1202
  IdentifierInfo *ModuleID = PP.getIdentifierInfo(ModuleName);
1203
  Path.push_back(std::make_pair(ModuleID, FileStart));
1204
  auto ModResult = CI.loadModule(FileStart, Path, Module::Hidden, false);
1205
  PPCallbacks *CB = PP.getPPCallbacks();
1206
  CB->moduleImport(SourceLocation(), Path, ModResult);
1207
}
1208

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.