Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit d2536a6

Browse files
committed
Revert r144703. It was a dumb idea anyway; will add the new bits more
incrementally with a new frontend action. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144723 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 3bc4515 commit d2536a6

File tree

4 files changed

+13
-70
lines changed

4 files changed

+13
-70
lines changed

include/clang/Frontend/FrontendActions.h

+5-23
Original file line numberDiff line numberDiff line change
@@ -67,40 +67,22 @@ class DeclContextPrintAction : public ASTFrontendAction {
6767
};
6868

6969
class GeneratePCHAction : public ASTFrontendAction {
70+
bool MakeModule;
71+
7072
protected:
7173
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
7274
StringRef InFile);
7375

7476
virtual TranslationUnitKind getTranslationUnitKind() {
75-
return TU_Prefix;
77+
return MakeModule? TU_Module : TU_Prefix;
7678
}
7779

7880
virtual bool hasASTFileSupport() const { return false; }
7981

8082
public:
81-
/// \brief Compute the AST consumer arguments that will be used to
82-
/// create the PCHGenerator instance returned by CreateASTConsumer.
83-
///
84-
/// \returns true if an error occurred, false otherwise.
85-
static bool ComputeASTConsumerArguments(CompilerInstance &CI,
86-
StringRef InFile,
87-
std::string &Sysroot,
88-
std::string &OutputFile,
89-
raw_ostream *&OS);
90-
};
91-
92-
class GenerateModuleAction : public ASTFrontendAction {
93-
protected:
94-
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
95-
StringRef InFile);
96-
97-
virtual TranslationUnitKind getTranslationUnitKind() {
98-
return TU_Module;
99-
}
83+
/// \brief Create a new action
84+
explicit GeneratePCHAction(bool MakeModule) : MakeModule(MakeModule) { }
10085

101-
virtual bool hasASTFileSupport() const { return false; }
102-
103-
public:
10486
/// \brief Compute the AST consumer arguments that will be used to
10587
/// create the PCHGenerator instance returned by CreateASTConsumer.
10688
///

lib/Frontend/CompilerInstance.cpp

+5-6
Original file line numberDiff line numberDiff line change
@@ -647,14 +647,13 @@ bool CompilerInstance::ExecuteAction(FrontendAction &Act) {
647647
llvm::EnableStatistics();
648648

649649
for (unsigned i = 0, e = getFrontendOpts().Inputs.size(); i != e; ++i) {
650-
InputKind InKind = getFrontendOpts().Inputs[i].first;
651-
std::string InFile = getFrontendOpts().Inputs[i].second;
652-
650+
const std::string &InFile = getFrontendOpts().Inputs[i].second;
651+
653652
// Reset the ID tables if we are reusing the SourceManager.
654653
if (hasSourceManager())
655654
getSourceManager().clearIDTables();
656655

657-
if (Act.BeginSourceFile(*this, InFile, InKind)) {
656+
if (Act.BeginSourceFile(*this, InFile, getFrontendOpts().Inputs[i].first)) {
658657
Act.Execute();
659658
Act.EndSourceFile();
660659
}
@@ -699,7 +698,7 @@ static InputKind getSourceInputKindFromOptions(const LangOptions &LangOpts) {
699698
namespace {
700699
struct CompileModuleData {
701700
CompilerInstance &Instance;
702-
GenerateModuleAction &CreateModuleAction;
701+
GeneratePCHAction &CreateModuleAction;
703702
};
704703
}
705704

@@ -1024,7 +1023,7 @@ static void compileModule(CompilerInstance &ImportingInstance,
10241023
/*ShouldCloneClient=*/true);
10251024

10261025
// Construct a module-generating action.
1027-
GenerateModuleAction CreateModuleAction;
1026+
GeneratePCHAction CreateModuleAction(true);
10281027

10291028
// Execute the action to actually build the module in-place. Use a separate
10301029
// thread so that we get a stack large enough.

lib/Frontend/FrontendActions.cpp

+1-39
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI,
8585

8686
if (!CI.getFrontendOpts().RelocatablePCH)
8787
Sysroot.clear();
88-
return new PCHGenerator(CI.getPreprocessor(), OutputFile, /*Module=*/false,
88+
return new PCHGenerator(CI.getPreprocessor(), OutputFile, MakeModule,
8989
Sysroot, OS);
9090
}
9191

@@ -113,44 +113,6 @@ bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI,
113113
return false;
114114
}
115115

116-
ASTConsumer *GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI,
117-
StringRef InFile) {
118-
std::string Sysroot;
119-
std::string OutputFile;
120-
raw_ostream *OS = 0;
121-
if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
122-
return 0;
123-
124-
if (!CI.getFrontendOpts().RelocatablePCH)
125-
Sysroot.clear();
126-
return new PCHGenerator(CI.getPreprocessor(), OutputFile, /*Module=*/true,
127-
Sysroot, OS);
128-
}
129-
130-
bool GenerateModuleAction::ComputeASTConsumerArguments(CompilerInstance &CI,
131-
StringRef InFile,
132-
std::string &Sysroot,
133-
std::string &OutputFile,
134-
raw_ostream *&OS) {
135-
Sysroot = CI.getHeaderSearchOpts().Sysroot;
136-
if (CI.getFrontendOpts().RelocatablePCH && Sysroot.empty()) {
137-
CI.getDiagnostics().Report(diag::err_relocatable_without_isysroot);
138-
return true;
139-
}
140-
141-
// We use createOutputFile here because this is exposed via libclang, and we
142-
// must disable the RemoveFileOnSignal behavior.
143-
// We use a temporary to avoid race conditions.
144-
OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
145-
/*RemoveFileOnSignal=*/false, InFile,
146-
/*Extension=*/"", /*useTemporary=*/true);
147-
if (!OS)
148-
return true;
149-
150-
OutputFile = CI.getFrontendOpts().OutputFile;
151-
return false;
152-
}
153-
154116
ASTConsumer *SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI,
155117
StringRef InFile) {
156118
return new ASTConsumer();

lib/FrontendTool/ExecuteCompilerInvocation.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
4949
case EmitCodeGenOnly: return new EmitCodeGenOnlyAction();
5050
case EmitObj: return new EmitObjAction();
5151
case FixIt: return new FixItAction();
52-
case GenerateModule: return new GenerateModuleAction();
53-
case GeneratePCH: return new GeneratePCHAction();
52+
case GenerateModule: return new GeneratePCHAction(true);
53+
case GeneratePCH: return new GeneratePCHAction(false);
5454
case GeneratePTH: return new GeneratePTHAction();
5555
case InitOnly: return new InitOnlyAction();
5656
case ParseSyntaxOnly: return new SyntaxOnlyAction();

0 commit comments

Comments
 (0)