diff options
| author | Andrew Trick <atrick@apple.com> | 2013-08-23 17:48:33 +0000 |
|---|---|---|
| committer | Andrew Trick <atrick@apple.com> | 2013-08-23 17:48:33 +0000 |
| commit | a53e101627f6484f74bacd6cb640706207c1ad5b (patch) | |
| tree | 4128fc54a30baa10f4e3e5b90fee8849b354fd7c /llvm/lib/CodeGen/ScheduleDAGInstrs.cpp | |
| parent | db6adaba6835fbd14e5ff7d6ebfc906c497935a0 (diff) | |
| download | bcm5719-llvm-a53e101627f6484f74bacd6cb640706207c1ad5b.tar.gz bcm5719-llvm-a53e101627f6484f74bacd6cb640706207c1ad5b.zip | |
mi-sched: Don't call MBB.size() in initSUnits. The driver already has instr count.
This fixes a pathological compile time problem with very large blocks
and lots of scheduling boundaries.
llvm-svn: 189116
Diffstat (limited to 'llvm/lib/CodeGen/ScheduleDAGInstrs.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/ScheduleDAGInstrs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp index 892903c2388..b0245d5c3c7 100644 --- a/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp +++ b/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp @@ -178,11 +178,11 @@ void ScheduleDAGInstrs::finishBlock() { void ScheduleDAGInstrs::enterRegion(MachineBasicBlock *bb, MachineBasicBlock::iterator begin, MachineBasicBlock::iterator end, - unsigned endcount) { + unsigned regioninstrs) { assert(bb == BB && "startBlock should set BB"); RegionBegin = begin; RegionEnd = end; - EndIndex = endcount; + NumRegionInstrs = regioninstrs; MISUnitMap.clear(); ScheduleDAG::clearDAG(); @@ -664,7 +664,7 @@ void addChainDependency (AliasAnalysis *AA, const MachineFrameInfo *MFI, void ScheduleDAGInstrs::initSUnits() { // We'll be allocating one SUnit for each real instruction in the region, // which is contained within a basic block. - SUnits.reserve(BB->size()); + SUnits.reserve(NumRegionInstrs); for (MachineBasicBlock::iterator I = RegionBegin; I != RegionEnd; ++I) { MachineInstr *MI = I; |

