diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-12-08 01:06:06 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-12-08 01:06:06 +0000 |
commit | 1b19dc1d8b7594434ea9a157bfe2ae68eabf9f05 (patch) | |
tree | 308afe1bb40b417cdf3afe11efada61850aa7405 /lib/CodeGen/RegAllocBase.h | |
parent | 255eafbd498e7d41ceef45ee0ad13bfde573ff82 (diff) |
Move RABasic::addMBBLiveIns to the base class, it is generally useful.
Minor optimization to the use of IntervalMap iterators. They are fairly
heavyweight, so prefer SI.valid() over SI != end().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocBase.h')
-rw-r--r-- | lib/CodeGen/RegAllocBase.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/RegAllocBase.h b/lib/CodeGen/RegAllocBase.h index 32f5e0870e..7f38c9b95a 100644 --- a/lib/CodeGen/RegAllocBase.h +++ b/lib/CodeGen/RegAllocBase.h @@ -149,6 +149,9 @@ protected: bool spillInterferences(LiveInterval &VirtReg, unsigned PhysReg, SmallVectorImpl<LiveInterval*> &SplitVRegs); + /// addMBBLiveIns - Add physreg liveins to basic blocks. + void addMBBLiveIns(MachineFunction *); + #ifndef NDEBUG // Verify each LiveIntervalUnion. void verify(); |