mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Add a map
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7620 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6ae3117582
commit
c393c57afc
@ -69,6 +69,10 @@ class PhyRegAlloc {
|
||||
// AddedInstrMap - Used to store instrns added in this phase
|
||||
std::map<const MachineInstr *, AddedInstrns> AddedInstrMap;
|
||||
|
||||
// ScratchRegsUsed - Contains scratch register uses for a particular MI.
|
||||
typedef std::multimap<const MachineInstr*, int> ScratchRegsUsedTy;
|
||||
ScratchRegsUsedTy ScratchRegsUsed;
|
||||
|
||||
AddedInstrns AddedInstrAtEntry; // to store instrns added at entry
|
||||
LoopInfo *LoopDepthCalc; // to calculate loop depths
|
||||
|
||||
|
@ -69,6 +69,10 @@ class PhyRegAlloc {
|
||||
// AddedInstrMap - Used to store instrns added in this phase
|
||||
std::map<const MachineInstr *, AddedInstrns> AddedInstrMap;
|
||||
|
||||
// ScratchRegsUsed - Contains scratch register uses for a particular MI.
|
||||
typedef std::multimap<const MachineInstr*, int> ScratchRegsUsedTy;
|
||||
ScratchRegsUsedTy ScratchRegsUsed;
|
||||
|
||||
AddedInstrns AddedInstrAtEntry; // to store instrns added at entry
|
||||
LoopInfo *LoopDepthCalc; // to calculate loop depths
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user