@@ -361,12 +361,9 @@ namespace {
361
361
struct InsertedPass {
362
362
AnalysisID TargetPassID;
363
363
IdentifyingPassPtr InsertedPassID;
364
- bool VerifyAfter;
365
364
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) {}
370
367
371
368
Pass *getInsertedPass () const {
372
369
assert (InsertedPassID.isValid () && " Illegal Pass ID!" );
@@ -641,14 +638,13 @@ CodeGenOpt::Level TargetPassConfig::getOptLevel() const {
641
638
642
639
// / Insert InsertedPassID pass after TargetPassID.
643
640
void TargetPassConfig::insertPass (AnalysisID TargetPassID,
644
- IdentifyingPassPtr InsertedPassID,
645
- bool VerifyAfter) {
641
+ IdentifyingPassPtr InsertedPassID) {
646
642
assert (((!InsertedPassID.isInstance () &&
647
643
TargetPassID != InsertedPassID.getID ()) ||
648
644
(InsertedPassID.isInstance () &&
649
645
TargetPassID != InsertedPassID.getInstance ()->getPassID ())) &&
650
646
" Insert a pass after itself!" );
651
- Impl->InsertedPasses .emplace_back (TargetPassID, InsertedPassID, VerifyAfter );
647
+ Impl->InsertedPasses .emplace_back (TargetPassID, InsertedPassID);
652
648
}
653
649
654
650
// / createPassConfig - Create a pass configuration object to be used by
@@ -726,7 +722,7 @@ bool TargetPassConfig::isPassSubstitutedOrOverridden(AnalysisID ID) const {
726
722
// / a later pass or that it should stop after an earlier pass, then do not add
727
723
// / the pass. Finally, compare the current pass against the StartAfter
728
724
// / and StopAfter options and change the Started/Stopped flags accordingly.
729
- void TargetPassConfig::addPass (Pass *P, bool verifyAfter ) {
725
+ void TargetPassConfig::addPass (Pass *P) {
730
726
assert (!Initialized && " PassConfig is immutable" );
731
727
732
728
// 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) {
744
740
addMachinePrePasses ();
745
741
std::string Banner;
746
742
// Construct banner message before PM->add() as that may delete the pass.
747
- if (AddingMachinePasses && verifyAfter )
743
+ if (AddingMachinePasses)
748
744
Banner = std::string (" After " ) + std::string (P->getPassName ());
749
745
PM->add (P);
750
746
if (AddingMachinePasses)
751
- addMachinePostPasses (Banner, /* AllowVerify */ verifyAfter );
747
+ addMachinePostPasses (Banner);
752
748
753
749
// Add the passes after the pass P if there is any.
754
750
for (const auto &IP : Impl->InsertedPasses ) {
755
751
if (IP.TargetPassID == PassID)
756
- addPass (IP.getInsertedPass (), IP. VerifyAfter );
752
+ addPass (IP.getInsertedPass ());
757
753
}
758
754
} else {
759
755
delete P;
@@ -773,7 +769,7 @@ void TargetPassConfig::addPass(Pass *P, bool verifyAfter) {
773
769
// /
774
770
// / addPass cannot return a pointer to the pass instance because is internal the
775
771
// / 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) {
777
773
IdentifyingPassPtr TargetID = getPassSubstitution (PassID);
778
774
IdentifyingPassPtr FinalPtr = overridePass (PassID, TargetID);
779
775
if (!FinalPtr.isValid ())
@@ -788,7 +784,7 @@ AnalysisID TargetPassConfig::addPass(AnalysisID PassID, bool verifyAfter) {
788
784
llvm_unreachable (" Pass ID not registered" );
789
785
}
790
786
AnalysisID FinalID = P->getPassID ();
791
- addPass (P, verifyAfter ); // Ends the lifetime of P.
787
+ addPass (P); // Ends the lifetime of P.
792
788
793
789
return FinalID;
794
790
}
@@ -832,17 +828,15 @@ void TargetPassConfig::addMachinePrePasses(bool AllowDebugify) {
832
828
addDebugifyPass ();
833
829
}
834
830
835
- void TargetPassConfig::addMachinePostPasses (const std::string &Banner,
836
- bool AllowVerify, bool AllowStrip) {
831
+ void TargetPassConfig::addMachinePostPasses (const std::string &Banner) {
837
832
if (DebugifyIsSafe) {
838
833
if (DebugifyCheckAndStripAll == cl::BOU_TRUE) {
839
834
addCheckDebugPass ();
840
835
addStripDebugPass ();
841
836
} else if (DebugifyAndStripAll == cl::BOU_TRUE)
842
837
addStripDebugPass ();
843
838
}
844
- if (AllowVerify)
845
- addVerifyPass (Banner);
839
+ addVerifyPass (Banner);
846
840
}
847
841
848
842
// / Add common target configurable passes that perform LLVM IR to IR transforms
@@ -1247,10 +1241,10 @@ void TargetPassConfig::addMachinePasses() {
1247
1241
1248
1242
// FIXME: Some backends are incompatible with running the verifier after
1249
1243
// addPreEmitPass. Maybe only pass "false" here for those targets?
1250
- addPass (&FuncletLayoutID, false );
1244
+ addPass (&FuncletLayoutID);
1251
1245
1252
- addPass (&StackMapLivenessID, false );
1253
- addPass (&LiveDebugValuesID, false );
1246
+ addPass (&StackMapLivenessID);
1247
+ addPass (&LiveDebugValuesID);
1254
1248
1255
1249
if (TM->Options .EnableMachineOutliner && getOptLevel () != CodeGenOpt::None &&
1256
1250
EnableMachineOutliner != RunOutliner::NeverOutline) {
0 commit comments