mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 17:25:21 +00:00
Track the BB's where each virtual register is used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35135 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -79,6 +79,10 @@ public:
|
||||
///
|
||||
BitVector AliveBlocks;
|
||||
|
||||
/// UsedBlocks - Set of blocks of which this value is actually used. This
|
||||
/// is a bit set which uses the basic block number as an index.
|
||||
BitVector UsedBlocks;
|
||||
|
||||
/// Kills - List of MachineInstruction's which are the last use of this
|
||||
/// virtual register (kill it) in their basic block.
|
||||
///
|
||||
@@ -116,6 +120,8 @@ private:
|
||||
BitVector ReservedRegisters;
|
||||
|
||||
private: // Intermediate data structures
|
||||
MachineFunction *MF;
|
||||
|
||||
const MRegisterInfo *RegInfo;
|
||||
|
||||
MachineInstr **PhysRegInfo;
|
||||
|
Reference in New Issue
Block a user