diff options
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAGInstrs.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/ScheduleDAGInstrs.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp index b1d744378481..6d3b3f34e8ca 100644 --- a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp +++ b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp @@ -908,7 +908,7 @@ void ScheduleDAGInstrs::buildSchedGraph(AAResults *AA, BarrierChain = SU; LLVM_DEBUG(dbgs() << "Global memory object and new barrier chain: SU(" - << BarrierChain->NodeNum << ").\n";); + << BarrierChain->NodeNum << ").\n"); // Add dependencies against everything below it and clear maps. addBarrierChain(Stores); @@ -929,7 +929,7 @@ void ScheduleDAGInstrs::buildSchedGraph(AAResults *AA, FPExceptions.insert(SU, UnknownValue); if (FPExceptions.size() >= HugeRegion) { - LLVM_DEBUG(dbgs() << "Reducing FPExceptions map.\n";); + LLVM_DEBUG(dbgs() << "Reducing FPExceptions map.\n"); Value2SUsMap empty; reduceHugeMemNodeMaps(FPExceptions, empty, getReductionSize()); } @@ -1012,12 +1012,11 @@ void ScheduleDAGInstrs::buildSchedGraph(AAResults *AA, // Reduce maps if they grow huge. if (Stores.size() + Loads.size() >= HugeRegion) { - LLVM_DEBUG(dbgs() << "Reducing Stores and Loads maps.\n";); + LLVM_DEBUG(dbgs() << "Reducing Stores and Loads maps.\n"); reduceHugeMemNodeMaps(Stores, Loads, getReductionSize()); } if (NonAliasStores.size() + NonAliasLoads.size() >= HugeRegion) { - LLVM_DEBUG( - dbgs() << "Reducing NonAliasStores and NonAliasLoads maps.\n";); + LLVM_DEBUG(dbgs() << "Reducing NonAliasStores and NonAliasLoads maps.\n"); reduceHugeMemNodeMaps(NonAliasStores, NonAliasLoads, getReductionSize()); } } @@ -1090,11 +1089,11 @@ void ScheduleDAGInstrs::reduceHugeMemNodeMaps(Value2SUsMap &stores, BarrierChain->addPredBarrier(newBarrierChain); BarrierChain = newBarrierChain; LLVM_DEBUG(dbgs() << "Inserting new barrier chain: SU(" - << BarrierChain->NodeNum << ").\n";); + << BarrierChain->NodeNum << ").\n"); } else LLVM_DEBUG(dbgs() << "Keeping old barrier chain: SU(" - << BarrierChain->NodeNum << ").\n";); + << BarrierChain->NodeNum << ").\n"); } else BarrierChain = newBarrierChain; |
