mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
Fix reg mask slot test, and preserve LiveIntervals and VirtRegMap in the PBQP
allocator. Fixes PR13945. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165201 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -231,7 +231,7 @@ std::auto_ptr<PBQPRAProblem> PBQPBuilder::build(MachineFunction *mf,
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
// vregLI crosses a regmask operand that clobbers preg.
|
// vregLI crosses a regmask operand that clobbers preg.
|
||||||
if (!regMaskOverlaps.empty() && !regMaskOverlaps.test(preg))
|
if (!regMaskOverlaps.empty() && regMaskOverlaps.test(preg))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// vregLI overlaps fixed regunit interference.
|
// vregLI overlaps fixed regunit interference.
|
||||||
@ -432,6 +432,7 @@ void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const {
|
|||||||
au.addRequired<SlotIndexes>();
|
au.addRequired<SlotIndexes>();
|
||||||
au.addPreserved<SlotIndexes>();
|
au.addPreserved<SlotIndexes>();
|
||||||
au.addRequired<LiveIntervals>();
|
au.addRequired<LiveIntervals>();
|
||||||
|
au.addPreserved<LiveIntervals>();
|
||||||
//au.addRequiredID(SplitCriticalEdgesID);
|
//au.addRequiredID(SplitCriticalEdgesID);
|
||||||
if (customPassID)
|
if (customPassID)
|
||||||
au.addRequiredID(*customPassID);
|
au.addRequiredID(*customPassID);
|
||||||
@ -443,6 +444,7 @@ void RegAllocPBQP::getAnalysisUsage(AnalysisUsage &au) const {
|
|||||||
au.addRequired<MachineLoopInfo>();
|
au.addRequired<MachineLoopInfo>();
|
||||||
au.addPreserved<MachineLoopInfo>();
|
au.addPreserved<MachineLoopInfo>();
|
||||||
au.addRequired<VirtRegMap>();
|
au.addRequired<VirtRegMap>();
|
||||||
|
au.addPreserved<VirtRegMap>();
|
||||||
MachineFunctionPass::getAnalysisUsage(au);
|
MachineFunctionPass::getAnalysisUsage(au);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user