Lines Matching refs:VRM

480   void rewriteLocations(VirtRegMap &VRM, const MachineFunction &MF,
486 void emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS,
669 void emitDebugValues(VirtRegMap *VRM);
1511 void UserValue::rewriteLocations(VirtRegMap &VRM, const MachineFunction &MF, in rewriteLocations() argument
1532 if (VRM.isAssignedReg(VirtReg) && in rewriteLocations()
1533 Register::isPhysicalRegister(VRM.getPhys(VirtReg))) { in rewriteLocations()
1537 Loc.substPhysReg(VRM.getPhys(VirtReg), TRI); in rewriteLocations()
1538 } else if (VRM.getStackSlot(VirtReg) != VirtRegMap::NO_STACK_SLOT) { in rewriteLocations()
1549 Loc = MachineOperand::CreateFI(VRM.getStackSlot(VirtReg)); in rewriteLocations()
1743 void UserValue::emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS, in emitDebugValues() argument
1748 MachineFunction::iterator MFEnd = VRM->getMachineFunction().end(); in emitDebugValues()
1810 void LDVImpl::emitDebugValues(VirtRegMap *VRM) { in emitDebugValues() argument
1820 userValue->rewriteLocations(*VRM, *MF, *TII, *TRI, SpillOffsets); in emitDebugValues()
1821 userValue->emitDebugValues(VRM, *LIS, *TII, *TRI, SpillOffsets, in emitDebugValues()
1842 if (VRM->isAssignedReg(Reg) && in emitDebugValues()
1843 Register::isPhysicalRegister(VRM->getPhys(Reg))) { in emitDebugValues()
1844 unsigned PhysReg = VRM->getPhys(Reg); in emitDebugValues()
1852 } else if (VRM->getStackSlot(Reg) != VirtRegMap::NO_STACK_SLOT) { in emitDebugValues()
1870 Builder.addFrameIndex(VRM->getStackSlot(Reg)); in emitDebugValues()
1961 void LiveDebugVariables::emitDebugValues(VirtRegMap *VRM) { in emitDebugValues() argument
1963 static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM); in emitDebugValues()