Skip to content

Commit 012248b

Browse files
committed
Remove the verifyAfter mechanism that was replaced by D111397
Differential Revision: https://reviews.llvm.org/D111872
1 parent 36deb9a commit 012248b

9 files changed

+38
-50
lines changed

llvm/include/llvm/CodeGen/TargetPassConfig.h

+4-10
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ class TargetPassConfig : public ImmutablePass {
187187
void substitutePass(AnalysisID StandardID, IdentifyingPassPtr TargetID);
188188

189189
/// Insert InsertedPassID pass after TargetPassID pass.
190-
void insertPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID,
191-
bool VerifyAfter = true);
190+
void insertPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID);
192191

193192
/// Allow the target to enable a specific standard pass by default.
194193
void enablePass(AnalysisID PassID) { substitutePass(PassID, PassID); }
@@ -323,8 +322,7 @@ class TargetPassConfig : public ImmutablePass {
323322

324323
/// Add standard passes after a pass that has just been added. For example,
325324
/// the MachineVerifier if it is enabled.
326-
void addMachinePostPasses(const std::string &Banner, bool AllowVerify = true,
327-
bool AllowStrip = true);
325+
void addMachinePostPasses(const std::string &Banner);
328326

329327
/// Check whether or not GlobalISel should abort on error.
330328
/// When this is disabled, GlobalISel will fall back on SDISel instead of
@@ -449,16 +447,12 @@ class TargetPassConfig : public ImmutablePass {
449447

450448
/// Add a CodeGen pass at this point in the pipeline after checking overrides.
451449
/// Return the pass that was added, or zero if no pass was added.
452-
/// @p verifyAfter if true and adding a machine function pass add an extra
453-
/// machine verification pass afterwards.
454-
AnalysisID addPass(AnalysisID PassID, bool verifyAfter = true);
450+
AnalysisID addPass(AnalysisID PassID);
455451

456452
/// Add a pass to the PassManager if that pass is supposed to be run, as
457453
/// determined by the StartAfter and StopAfter options. Takes ownership of the
458454
/// pass.
459-
/// @p verifyAfter if true and adding a machine function pass add an extra
460-
/// machine verification pass afterwards.
461-
void addPass(Pass *P, bool verifyAfter = true);
455+
void addPass(Pass *P);
462456

463457
/// addMachinePasses helper to create the target-selected or overriden
464458
/// regalloc pass.

llvm/lib/CodeGen/TargetPassConfig.cpp

+15-21
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,9 @@ namespace {
361361
struct InsertedPass {
362362
AnalysisID TargetPassID;
363363
IdentifyingPassPtr InsertedPassID;
364-
bool VerifyAfter;
365364

366-
InsertedPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID,
367-
bool VerifyAfter)
368-
: TargetPassID(TargetPassID), InsertedPassID(InsertedPassID),
369-
VerifyAfter(VerifyAfter) {}
365+
InsertedPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID)
366+
: TargetPassID(TargetPassID), InsertedPassID(InsertedPassID) {}
370367

371368
Pass *getInsertedPass() const {
372369
assert(InsertedPassID.isValid() && "Illegal Pass ID!");
@@ -641,14 +638,13 @@ CodeGenOpt::Level TargetPassConfig::getOptLevel() const {
641638

642639
/// Insert InsertedPassID pass after TargetPassID.
643640
void TargetPassConfig::insertPass(AnalysisID TargetPassID,
644-
IdentifyingPassPtr InsertedPassID,
645-
bool VerifyAfter) {
641+
IdentifyingPassPtr InsertedPassID) {
646642
assert(((!InsertedPassID.isInstance() &&
647643
TargetPassID != InsertedPassID.getID()) ||
648644
(InsertedPassID.isInstance() &&
649645
TargetPassID != InsertedPassID.getInstance()->getPassID())) &&
650646
"Insert a pass after itself!");
651-
Impl->InsertedPasses.emplace_back(TargetPassID, InsertedPassID, VerifyAfter);
647+
Impl->InsertedPasses.emplace_back(TargetPassID, InsertedPassID);
652648
}
653649

654650
/// createPassConfig - Create a pass configuration object to be used by
@@ -726,7 +722,7 @@ bool TargetPassConfig::isPassSubstitutedOrOverridden(AnalysisID ID) const {
726722
/// a later pass or that it should stop after an earlier pass, then do not add
727723
/// the pass. Finally, compare the current pass against the StartAfter
728724
/// and StopAfter options and change the Started/Stopped flags accordingly.
729-
void TargetPassConfig::addPass(Pass *P, bool verifyAfter) {
725+
void TargetPassConfig::addPass(Pass *P) {
730726
assert(!Initialized && "PassConfig is immutable");
731727

732728
// Cache the Pass ID here in case the pass manager finds this pass is
@@ -744,16 +740,16 @@ void TargetPassConfig::addPass(Pass *P, bool verifyAfter) {
744740
addMachinePrePasses();
745741
std::string Banner;
746742
// Construct banner message before PM->add() as that may delete the pass.
747-
if (AddingMachinePasses && verifyAfter)
743+
if (AddingMachinePasses)
748744
Banner = std::string("After ") + std::string(P->getPassName());
749745
PM->add(P);
750746
if (AddingMachinePasses)
751-
addMachinePostPasses(Banner, /*AllowVerify*/ verifyAfter);
747+
addMachinePostPasses(Banner);
752748

753749
// Add the passes after the pass P if there is any.
754750
for (const auto &IP : Impl->InsertedPasses) {
755751
if (IP.TargetPassID == PassID)
756-
addPass(IP.getInsertedPass(), IP.VerifyAfter);
752+
addPass(IP.getInsertedPass());
757753
}
758754
} else {
759755
delete P;
@@ -773,7 +769,7 @@ void TargetPassConfig::addPass(Pass *P, bool verifyAfter) {
773769
///
774770
/// addPass cannot return a pointer to the pass instance because is internal the
775771
/// PassManager and the instance we create here may already be freed.
776-
AnalysisID TargetPassConfig::addPass(AnalysisID PassID, bool verifyAfter) {
772+
AnalysisID TargetPassConfig::addPass(AnalysisID PassID) {
777773
IdentifyingPassPtr TargetID = getPassSubstitution(PassID);
778774
IdentifyingPassPtr FinalPtr = overridePass(PassID, TargetID);
779775
if (!FinalPtr.isValid())
@@ -788,7 +784,7 @@ AnalysisID TargetPassConfig::addPass(AnalysisID PassID, bool verifyAfter) {
788784
llvm_unreachable("Pass ID not registered");
789785
}
790786
AnalysisID FinalID = P->getPassID();
791-
addPass(P, verifyAfter); // Ends the lifetime of P.
787+
addPass(P); // Ends the lifetime of P.
792788

793789
return FinalID;
794790
}
@@ -832,17 +828,15 @@ void TargetPassConfig::addMachinePrePasses(bool AllowDebugify) {
832828
addDebugifyPass();
833829
}
834830

835-
void TargetPassConfig::addMachinePostPasses(const std::string &Banner,
836-
bool AllowVerify, bool AllowStrip) {
831+
void TargetPassConfig::addMachinePostPasses(const std::string &Banner) {
837832
if (DebugifyIsSafe) {
838833
if (DebugifyCheckAndStripAll == cl::BOU_TRUE) {
839834
addCheckDebugPass();
840835
addStripDebugPass();
841836
} else if (DebugifyAndStripAll == cl::BOU_TRUE)
842837
addStripDebugPass();
843838
}
844-
if (AllowVerify)
845-
addVerifyPass(Banner);
839+
addVerifyPass(Banner);
846840
}
847841

848842
/// Add common target configurable passes that perform LLVM IR to IR transforms
@@ -1247,10 +1241,10 @@ void TargetPassConfig::addMachinePasses() {
12471241

12481242
// FIXME: Some backends are incompatible with running the verifier after
12491243
// addPreEmitPass. Maybe only pass "false" here for those targets?
1250-
addPass(&FuncletLayoutID, false);
1244+
addPass(&FuncletLayoutID);
12511245

1252-
addPass(&StackMapLivenessID, false);
1253-
addPass(&LiveDebugValuesID, false);
1246+
addPass(&StackMapLivenessID);
1247+
addPass(&LiveDebugValuesID);
12541248

12551249
if (TM->Options.EnableMachineOutliner && getOptLevel() != CodeGenOpt::None &&
12561250
EnableMachineOutliner != RunOutliner::NeverOutline) {

llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ void GCNPassConfig::addFastRegAlloc() {
11981198
// This must be run immediately after phi elimination and before
11991199
// TwoAddressInstructions, otherwise the processing of the tied operand of
12001200
// SI_ELSE will introduce a copy of the tied operand source after the else.
1201-
insertPass(&PHIEliminationID, &SILowerControlFlowID, false);
1201+
insertPass(&PHIEliminationID, &SILowerControlFlowID);
12021202

12031203
insertPass(&TwoAddressInstructionPassID, &SIWholeQuadModeID);
12041204
insertPass(&TwoAddressInstructionPassID, &SIPreAllocateWWMRegsID);
@@ -1228,11 +1228,11 @@ void GCNPassConfig::addOptimizedRegAlloc() {
12281228
// the register in LiveVariables, this would trigger a failure in verifier,
12291229
// we should fix it and enable the verifier.
12301230
if (OptVGPRLiveRange)
1231-
insertPass(&LiveVariablesID, &SIOptimizeVGPRLiveRangeID, false);
1231+
insertPass(&LiveVariablesID, &SIOptimizeVGPRLiveRangeID);
12321232
// This must be run immediately after phi elimination and before
12331233
// TwoAddressInstructions, otherwise the processing of the tied operand of
12341234
// SI_ELSE will introduce a copy of the tied operand source after the else.
1235-
insertPass(&PHIEliminationID, &SILowerControlFlowID, false);
1235+
insertPass(&PHIEliminationID, &SILowerControlFlowID);
12361236

12371237
if (EnableDCEInRA)
12381238
insertPass(&DetectDeadLanesID, &DeadMachineInstructionElimID);

llvm/lib/Target/AMDGPU/R600TargetMachine.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -124,18 +124,18 @@ bool R600PassConfig::addInstSelector() {
124124
void R600PassConfig::addPreRegAlloc() { addPass(createR600VectorRegMerger()); }
125125

126126
void R600PassConfig::addPreSched2() {
127-
addPass(createR600EmitClauseMarkers(), false);
127+
addPass(createR600EmitClauseMarkers());
128128
if (EnableR600IfConvert)
129-
addPass(&IfConverterID, false);
130-
addPass(createR600ClauseMergePass(), false);
129+
addPass(&IfConverterID);
130+
addPass(createR600ClauseMergePass());
131131
}
132132

133133
void R600PassConfig::addPreEmitPass() {
134-
addPass(createAMDGPUCFGStructurizerPass(), false);
135-
addPass(createR600ExpandSpecialInstrsPass(), false);
136-
addPass(&FinalizeMachineBundlesID, false);
137-
addPass(createR600Packetizer(), false);
138-
addPass(createR600ControlFlowFinalizer(), false);
134+
addPass(createAMDGPUCFGStructurizerPass());
135+
addPass(createR600ExpandSpecialInstrsPass());
136+
addPass(&FinalizeMachineBundlesID);
137+
addPass(createR600Packetizer());
138+
addPass(createR600ControlFlowFinalizer());
139139
}
140140

141141
TargetPassConfig *R600TargetMachine::createPassConfig(PassManagerBase &PM) {

llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -447,11 +447,11 @@ void HexagonPassConfig::addPreEmitPass() {
447447
}
448448

449449
// Packetization is mandatory: it handles gather/scatter at all opt levels.
450-
addPass(createHexagonPacketizer(NoOpt), false);
450+
addPass(createHexagonPacketizer(NoOpt));
451451

452452
if (EnableVectorPrint)
453-
addPass(createHexagonVectorPrint(), false);
453+
addPass(createHexagonVectorPrint());
454454

455455
// Add CFI instructions if necessary.
456-
addPass(createHexagonCallFrameInformation(), false);
456+
addPass(createHexagonCallFrameInformation());
457457
}

llvm/lib/Target/MSP430/MSP430TargetMachine.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ bool MSP430PassConfig::addInstSelector() {
8181

8282
void MSP430PassConfig::addPreEmitPass() {
8383
// Must run branch selection immediately preceding the asm printer.
84-
addPass(createMSP430BranchSelectionPass(), false);
84+
addPass(createMSP430BranchSelectionPass());
8585
}

llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ void NVPTXPassConfig::addPreRegAlloc() {
350350
}
351351

352352
void NVPTXPassConfig::addPostRegAlloc() {
353-
addPass(createNVPTXPrologEpilogPass(), false);
353+
addPass(createNVPTXPrologEpilogPass());
354354
if (getOptLevel() != CodeGenOpt::None) {
355355
// NVPTXPrologEpilogPass calculates frame object offset and replace frame
356356
// index with VRFrame register. NVPTXPeephole need to be run after that and

llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ void SystemZPassConfig::addPreEmitPass() {
285285
// vector instructions will be shortened into opcodes that compare
286286
// elimination recognizes.
287287
if (getOptLevel() != CodeGenOpt::None)
288-
addPass(createSystemZShortenInstPass(getSystemZTargetMachine()), false);
288+
addPass(createSystemZShortenInstPass(getSystemZTargetMachine()));
289289

290290
// We eliminate comparisons here rather than earlier because some
291291
// transformations can change the set of available CC values and we
@@ -311,7 +311,7 @@ void SystemZPassConfig::addPreEmitPass() {
311311
// between the comparison and the branch, but it isn't clear whether
312312
// preventing that would be a win or not.
313313
if (getOptLevel() != CodeGenOpt::None)
314-
addPass(createSystemZElimComparePass(getSystemZTargetMachine()), false);
314+
addPass(createSystemZElimComparePass(getSystemZTargetMachine()));
315315
addPass(createSystemZLongBranchPass(getSystemZTargetMachine()));
316316

317317
// Do final scheduling after all other optimizations, to get an

llvm/lib/Target/XCore/XCoreTargetMachine.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ bool XCorePassConfig::addInstSelector() {
9999
}
100100

101101
void XCorePassConfig::addPreEmitPass() {
102-
addPass(createXCoreFrameToArgsOffsetEliminationPass(), false);
102+
addPass(createXCoreFrameToArgsOffsetEliminationPass());
103103
}
104104

105105
// Force static initialization.

0 commit comments

Comments
 (0)