forked from OSchip/llvm-project
Add method to assign stack slot to virtual register without creating a
new one. llvm-svn: 13895
This commit is contained in:
parent
e3cec71bdc
commit
fd735bcf28
|
@ -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