mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	Clear virtual registers after they are no longer referenced.
Passes after RegAlloc should be able to rely on MRI->getNumVirtRegs() == 0. This makes sharing code for pre/postRA passes more robust. Now, to check if a pass is running before the RA pipeline begins, use MRI->isSSA(). To check if a pass is running after the RA pipeline ends, use !MRI->getNumVirtRegs(). PEI resets virtual regs when it's done scavenging. PTX will either have to provide its own PEI pass or assign physregs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151032 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
		| @@ -31,9 +31,7 @@ MachineRegisterInfo::MachineRegisterInfo(const TargetRegisterInfo &TRI) | ||||
|  | ||||
| MachineRegisterInfo::~MachineRegisterInfo() { | ||||
| #ifndef NDEBUG | ||||
|   for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i) | ||||
|     assert(VRegInfo[TargetRegisterInfo::index2VirtReg(i)].second == 0 && | ||||
|            "Vreg use list non-empty still?"); | ||||
|   clearVirtRegs(); | ||||
|   for (unsigned i = 0, e = UsedPhysRegs.size(); i != e; ++i) | ||||
|     assert(!PhysRegUseDefLists[i] && | ||||
|            "PhysRegUseDefLists has entries after all instructions are deleted"); | ||||
| @@ -118,6 +116,16 @@ MachineRegisterInfo::createVirtualRegister(const TargetRegisterClass *RegClass){ | ||||
|   return Reg; | ||||
| } | ||||
|  | ||||
| /// clearVirtRegs - Remove all virtual registers (after physreg assignment). | ||||
| void MachineRegisterInfo::clearVirtRegs() { | ||||
| #ifndef NDEBUG | ||||
|   for (unsigned i = 0, e = getNumVirtRegs(); i != e; ++i) | ||||
|     assert(VRegInfo[TargetRegisterInfo::index2VirtReg(i)].second == 0 && | ||||
|            "Vreg use list non-empty still?"); | ||||
| #endif | ||||
|   VRegInfo.clear(); | ||||
| } | ||||
|  | ||||
| /// HandleVRegListReallocation - We just added a virtual register to the | ||||
| /// VRegInfo info list and it reallocated.  Update the use/def lists info | ||||
| /// pointers. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user