mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Move MachineRegisterInfo::setRegClass out of line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69126 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
593ea05957
commit
33f1c68cba
@ -152,23 +152,8 @@ public:
|
|||||||
|
|
||||||
/// setRegClass - Set the register class of the specified virtual register.
|
/// setRegClass - Set the register class of the specified virtual register.
|
||||||
///
|
///
|
||||||
void setRegClass(unsigned Reg, const TargetRegisterClass *RC) {
|
void setRegClass(unsigned Reg, const TargetRegisterClass *RC);
|
||||||
unsigned VR = Reg;
|
|
||||||
Reg -= TargetRegisterInfo::FirstVirtualRegister;
|
|
||||||
assert(Reg < VRegInfo.size() && "Invalid vreg!");
|
|
||||||
const TargetRegisterClass *OldRC = VRegInfo[Reg].first;
|
|
||||||
VRegInfo[Reg].first = RC;
|
|
||||||
|
|
||||||
// Remove from old register class's vregs list. This may be slow but
|
|
||||||
// fortunately this operation is rarely needed.
|
|
||||||
std::vector<unsigned> &VRegs = RegClass2VRegMap[OldRC->getID()];
|
|
||||||
std::vector<unsigned>::iterator I=std::find(VRegs.begin(), VRegs.end(), VR);
|
|
||||||
VRegs.erase(I);
|
|
||||||
|
|
||||||
// Add to new register class's vregs list.
|
|
||||||
RegClass2VRegMap[RC->getID()].push_back(VR);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// createVirtualRegister - Create and return a new virtual register in the
|
/// createVirtualRegister - Create and return a new virtual register in the
|
||||||
/// function with the specified register class.
|
/// function with the specified register class.
|
||||||
///
|
///
|
||||||
|
@ -35,6 +35,26 @@ MachineRegisterInfo::~MachineRegisterInfo() {
|
|||||||
delete [] PhysRegUseDefLists;
|
delete [] PhysRegUseDefLists;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// setRegClass - Set the register class of the specified virtual register.
|
||||||
|
///
|
||||||
|
void
|
||||||
|
MachineRegisterInfo::setRegClass(unsigned Reg, const TargetRegisterClass *RC) {
|
||||||
|
unsigned VR = Reg;
|
||||||
|
Reg -= TargetRegisterInfo::FirstVirtualRegister;
|
||||||
|
assert(Reg < VRegInfo.size() && "Invalid vreg!");
|
||||||
|
const TargetRegisterClass *OldRC = VRegInfo[Reg].first;
|
||||||
|
VRegInfo[Reg].first = RC;
|
||||||
|
|
||||||
|
// Remove from old register class's vregs list. This may be slow but
|
||||||
|
// fortunately this operation is rarely needed.
|
||||||
|
std::vector<unsigned> &VRegs = RegClass2VRegMap[OldRC->getID()];
|
||||||
|
std::vector<unsigned>::iterator I=std::find(VRegs.begin(), VRegs.end(), VR);
|
||||||
|
VRegs.erase(I);
|
||||||
|
|
||||||
|
// Add to new register class's vregs list.
|
||||||
|
RegClass2VRegMap[RC->getID()].push_back(VR);
|
||||||
|
}
|
||||||
|
|
||||||
/// createVirtualRegister - Create and return a new virtual register in the
|
/// createVirtualRegister - Create and return a new virtual register in the
|
||||||
/// function with the specified register class.
|
/// function with the specified register class.
|
||||||
///
|
///
|
||||||
|
Loading…
x
Reference in New Issue
Block a user