mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-24 12:36:30 +00:00
Add method to assign stack slot to virtual register without creating a
new one. llvm-svn: 13895
This commit is contained in:
parent
c5923ac8b1
commit
516e16441b
@ -61,6 +61,14 @@ int VirtRegMap::assignVirt2StackSlot(unsigned virtReg)
|
||||
return frameIndex;
|
||||
}
|
||||
|
||||
void VirtRegMap::assignVirt2StackSlot(unsigned virtReg, int frameIndex)
|
||||
{
|
||||
assert(MRegisterInfo::isVirtualRegister(virtReg));
|
||||
assert(v2ssMap_[virtReg] == NO_STACK_SLOT &&
|
||||
"attempt to assign stack slot to already spilled register");
|
||||
v2ssMap_[virtReg] = frameIndex;
|
||||
}
|
||||
|
||||
void VirtRegMap::virtFolded(unsigned virtReg,
|
||||
MachineInstr* oldMI,
|
||||
MachineInstr* newMI)
|
||||
|
@ -97,6 +97,7 @@ namespace llvm {
|
||||
}
|
||||
|
||||
int assignVirt2StackSlot(unsigned virtReg);
|
||||
void assignVirt2StackSlot(unsigned virtReg, int frameIndex);
|
||||
|
||||
void virtFolded(unsigned virtReg,
|
||||
MachineInstr* oldMI,
|
||||
|
Loading…
Reference in New Issue
Block a user