diff options
author | Pete Cooper <peter_cooper@apple.com> | 2012-04-02 22:22:53 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2012-04-02 22:22:53 +0000 |
commit | 2bde2f42b1edbb7c4632c5ba0be541bf5c094f38 (patch) | |
tree | 05e8768ee2e9c3d91248531a983c6b89e0776bd8 /llvm/lib/CodeGen/RegAllocBasic.cpp | |
parent | 932b992888e5cb602dd87c7650046adfe2343e01 (diff) | |
download | bcm5719-llvm-2bde2f42b1edbb7c4632c5ba0be541bf5c094f38.tar.gz bcm5719-llvm-2bde2f42b1edbb7c4632c5ba0be541bf5c094f38.zip |
Refactored the LiveRangeEdit interface so that MachineFunction, TargetInstrInfo, MachineRegisterInfo, LiveIntervals, and VirtRegMap are all passed into the constructor and stored as members instead of passed in to each method.
llvm-svn: 153903
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocBasic.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocBasic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAllocBasic.cpp b/llvm/lib/CodeGen/RegAllocBasic.cpp index f39a21c058a..52f88e3b595 100644 --- a/llvm/lib/CodeGen/RegAllocBasic.cpp +++ b/llvm/lib/CodeGen/RegAllocBasic.cpp @@ -187,7 +187,7 @@ void RABasic::spillReg(LiveInterval& VirtReg, unsigned PhysReg, unassign(SpilledVReg, PhysReg); // Spill the extracted interval. - LiveRangeEdit LRE(SpilledVReg, SplitVRegs); + LiveRangeEdit LRE(SpilledVReg, SplitVRegs, *MF, *LIS, VRM); spiller().spill(LRE); } // After extracting segments, the query's results are invalid. But keep the @@ -287,7 +287,7 @@ unsigned RABasic::selectOrSplit(LiveInterval &VirtReg, DEBUG(dbgs() << "spilling: " << VirtReg << '\n'); if (!VirtReg.isSpillable()) return ~0u; - LiveRangeEdit LRE(VirtReg, SplitVRegs); + LiveRangeEdit LRE(VirtReg, SplitVRegs, *MF, *LIS, VRM); spiller().spill(LRE); // The live virtual register requesting allocation was spilled, so tell |