mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-11 21:38:19 +00:00
StackSlotColoring does not use a VirtRegMap
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151031 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -12,7 +12,6 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define DEBUG_TYPE "stackcoloring"
|
#define DEBUG_TYPE "stackcoloring"
|
||||||
#include "VirtRegMap.h"
|
|
||||||
#include "llvm/Function.h"
|
#include "llvm/Function.h"
|
||||||
#include "llvm/Module.h"
|
#include "llvm/Module.h"
|
||||||
#include "llvm/CodeGen/Passes.h"
|
#include "llvm/CodeGen/Passes.h"
|
||||||
@ -92,8 +91,6 @@ namespace {
|
|||||||
AU.addRequired<SlotIndexes>();
|
AU.addRequired<SlotIndexes>();
|
||||||
AU.addPreserved<SlotIndexes>();
|
AU.addPreserved<SlotIndexes>();
|
||||||
AU.addRequired<LiveStacks>();
|
AU.addRequired<LiveStacks>();
|
||||||
AU.addRequired<VirtRegMap>();
|
|
||||||
AU.addPreserved<VirtRegMap>();
|
|
||||||
AU.addRequired<MachineLoopInfo>();
|
AU.addRequired<MachineLoopInfo>();
|
||||||
AU.addPreserved<MachineLoopInfo>();
|
AU.addPreserved<MachineLoopInfo>();
|
||||||
AU.addPreservedID(MachineDominatorsID);
|
AU.addPreservedID(MachineDominatorsID);
|
||||||
@ -121,7 +118,6 @@ INITIALIZE_PASS_BEGIN(StackSlotColoring, "stack-slot-coloring",
|
|||||||
"Stack Slot Coloring", false, false)
|
"Stack Slot Coloring", false, false)
|
||||||
INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
|
INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
|
||||||
INITIALIZE_PASS_DEPENDENCY(LiveStacks)
|
INITIALIZE_PASS_DEPENDENCY(LiveStacks)
|
||||||
INITIALIZE_PASS_DEPENDENCY(VirtRegMap)
|
|
||||||
INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
|
INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
|
||||||
INITIALIZE_PASS_END(StackSlotColoring, "stack-slot-coloring",
|
INITIALIZE_PASS_END(StackSlotColoring, "stack-slot-coloring",
|
||||||
"Stack Slot Coloring", false, false)
|
"Stack Slot Coloring", false, false)
|
||||||
|
Reference in New Issue
Block a user