forked from OSchip/llvm-project
[SDag] Verify DAG divergence after dumping. NFC.
When debugging, it's useful to be able to see the DAG that has just failed divergence verification.
This commit is contained in:
parent
d6b04f3937
commit
781edd501c
|
@ -779,6 +779,11 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
if (ViewDAGCombine1 && MatchFilterBB)
|
||||
CurDAG->viewGraph("dag-combine1 input for " + BlockName);
|
||||
|
||||
|
@ -789,16 +794,16 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
CurDAG->Combine(BeforeLegalizeTypes, AA, OptLevel);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
LLVM_DEBUG(dbgs() << "Optimized lowered selection DAG: "
|
||||
<< printMBBReference(*FuncInfo->MBB) << " '" << BlockName
|
||||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
// Second step, hack on the DAG until it only uses operations and types that
|
||||
// the target supports.
|
||||
if (ViewLegalizeTypesDAGs && MatchFilterBB)
|
||||
|
@ -811,16 +816,16 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
Changed = CurDAG->LegalizeTypes();
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
LLVM_DEBUG(dbgs() << "Type-legalized selection DAG: "
|
||||
<< printMBBReference(*FuncInfo->MBB) << " '" << BlockName
|
||||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
// Only allow creation of legal node types.
|
||||
CurDAG->NewNodesMustHaveLegalTypes = true;
|
||||
|
||||
|
@ -835,15 +840,15 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
CurDAG->Combine(AfterLegalizeTypes, AA, OptLevel);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
LLVM_DEBUG(dbgs() << "Optimized type-legalized selection DAG: "
|
||||
<< printMBBReference(*FuncInfo->MBB) << " '" << BlockName
|
||||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -858,6 +863,11 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
{
|
||||
NamedRegionTimer T("legalize_types2", "Type Legalization 2", GroupName,
|
||||
GroupDescription, TimePassesIsEnabled);
|
||||
|
@ -869,6 +879,11 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
if (ViewDAGCombineLT && MatchFilterBB)
|
||||
CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
|
||||
|
||||
|
@ -899,16 +914,16 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
CurDAG->Legalize();
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
LLVM_DEBUG(dbgs() << "Legalized selection DAG: "
|
||||
<< printMBBReference(*FuncInfo->MBB) << " '" << BlockName
|
||||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
if (ViewDAGCombine2 && MatchFilterBB)
|
||||
CurDAG->viewGraph("dag-combine2 input for " + BlockName);
|
||||
|
||||
|
@ -919,16 +934,16 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
|
|||
CurDAG->Combine(AfterLegalizeDAG, AA, OptLevel);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
LLVM_DEBUG(dbgs() << "Optimized legalized selection DAG: "
|
||||
<< printMBBReference(*FuncInfo->MBB) << " '" << BlockName
|
||||
<< "'\n";
|
||||
CurDAG->dump());
|
||||
|
||||
#ifndef NDEBUG
|
||||
if (TTI.hasBranchDivergence())
|
||||
CurDAG->VerifyDAGDiverence();
|
||||
#endif
|
||||
|
||||
if (OptLevel != CodeGenOpt::None)
|
||||
ComputeLiveOutVRegInfo();
|
||||
|
||||
|
|
Loading…
Reference in New Issue