mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Stop LiveVariables from using BasicBlocks as part of the mapping, instead
use MachineBasicBlocks. llvm-svn: 13300
This commit is contained in:
parent
939685e14b
commit
dd7eb23ccf
@ -100,10 +100,9 @@ private:
|
||||
|
||||
private: // Intermediate data structures
|
||||
|
||||
/// BBMap - Maps LLVM basic blocks to their corresponding machine basic block.
|
||||
/// This also provides a numbering of the basic blocks in the function.
|
||||
std::map<const BasicBlock*, std::pair<MachineBasicBlock*, unsigned> > BBMap;
|
||||
|
||||
/// BBMap - This provides a numbering of the basic blocks in the function.
|
||||
///
|
||||
std::map<MachineBasicBlock*, unsigned> BBMap;
|
||||
|
||||
/// BBIdxMap - This contains the inverse mapping of BBMap, going from block ID
|
||||
/// numbers to the corresponding MachineBasicBlock. This is lazily computed
|
||||
@ -125,11 +124,8 @@ public:
|
||||
/// getMachineBasicBlockIndex - Turn a MachineBasicBlock into an index number
|
||||
/// suitable for use with VarInfo's.
|
||||
///
|
||||
const std::pair<MachineBasicBlock*, unsigned>
|
||||
&getMachineBasicBlockInfo(MachineBasicBlock *MBB) const;
|
||||
const std::pair<MachineBasicBlock*, unsigned>
|
||||
&getBasicBlockInfo(const BasicBlock *BB) const {
|
||||
return BBMap.find(BB)->second;
|
||||
unsigned getMachineBasicBlockIndex(MachineBasicBlock *MBB) const {
|
||||
return BBMap.find(MBB)->second;
|
||||
}
|
||||
|
||||
/// getIndexMachineBasicBlock() - Given a block index, return the
|
||||
@ -269,7 +265,7 @@ public:
|
||||
return AllocatablePhysicalRegisters;
|
||||
}
|
||||
|
||||
void MarkVirtRegAliveInBlock(VarInfo &VRInfo, const BasicBlock *BB);
|
||||
void MarkVirtRegAliveInBlock(VarInfo &VRInfo, MachineBasicBlock *BB);
|
||||
void HandleVirtRegUse(VarInfo &VRInfo, MachineBasicBlock *MBB,
|
||||
MachineInstr *MI);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user