diff options
author | Chris Lattner <sabre@nondot.org> | 2002-02-05 02:52:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-02-05 02:52:05 +0000 |
commit | b0af9cdbda0dd2ee243d5185259f59537211579d (patch) | |
tree | 77b9723f5b42691b5f3f4960871758b6902cd144 /llvm/lib/Target/Sparc/SparcRegInfo.cpp | |
parent | b1def732afe963862ea0df03ac10274ccb1d3b3f (diff) | |
download | bcm5719-llvm-b0af9cdbda0dd2ee243d5185259f59537211579d.tar.gz bcm5719-llvm-b0af9cdbda0dd2ee243d5185259f59537211579d.zip |
* Eliminate the LiveVarSet class, making applyTranferFuncForMInst a static
function in the one .cpp file that uses it. Use ValueSet's instead.
* Prepare to delete LiveVarSet.h & LiveVarSet.cpp
* Eliminate the ValueSet class, making all old member functions into global
templates that will eventually be moved to Support.
* Eliminate some irrelevant const's
llvm-svn: 1712
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcRegInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcRegInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/Sparc/SparcRegInfo.cpp b/llvm/lib/Target/Sparc/SparcRegInfo.cpp index 6e2c1b0cd67..879b01efc44 100644 --- a/llvm/lib/Target/Sparc/SparcRegInfo.cpp +++ b/llvm/lib/Target/Sparc/SparcRegInfo.cpp @@ -11,7 +11,7 @@ #include "llvm/CodeGen/MachineCodeForMethod.h" #include "llvm/CodeGen/PhyRegAlloc.h" #include "llvm/CodeGen/MachineInstr.h" -#include "llvm/Analysis/LiveVar/LiveVarSet.h" +#include "llvm/Analysis/LiveVar/ValueSet.h" #include "llvm/Analysis/LiveVar/MethodLiveVarInfo.h" #include "llvm/iTerminators.h" #include "llvm/iOther.h" @@ -1252,8 +1252,8 @@ void UltraSparcRegInfo::insertCallerSavingCode(const MachineInstr *MInst, } - const LiveVarSet *LVSetAft = PRA.LVI->getLiveVarSetAfterMInst(MInst, BB); - LiveVarSet::const_iterator LIt = LVSetAft->begin(); + const ValueSet *LVSetAft = PRA.LVI->getLiveVarSetAfterMInst(MInst, BB); + ValueSet::const_iterator LIt = LVSetAft->begin(); // for each live var in live variable set after machine inst for( ; LIt != LVSetAft->end(); ++LIt) { @@ -1303,7 +1303,7 @@ void UltraSparcRegInfo::insertCallerSavingCode(const MachineInstr *MInst, // Handle IntCCRegType specially since we cannot directly // push %ccr on to the stack - const LiveVarSet *LVSetBef = + const ValueSet *LVSetBef = PRA.LVI->getLiveVarSetBeforeMInst(MInst, BB); // get a free INTEGER register |