Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Virt2PhysMap

60     /// Virt2PhysMap - This is a virtual to physical register
65 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysMap;
146 VirtRegMap() : MachineFunctionPass(ID), Virt2PhysMap(NO_PHYS_REG),
179 return Virt2PhysMap[virtReg];
187 assert(Virt2PhysMap[virtReg] == NO_PHYS_REG &&
190 Virt2PhysMap[virtReg] = physReg;
197 assert(Virt2PhysMap[virtReg] != NO_PHYS_REG &&
199 Virt2PhysMap[virtReg] = NO_PHYS_REG;
204 Virt2PhysMap.clear();
243 return (Virt2SplitMap[virtReg] && Virt2PhysMap[virtReg] != NO_PHYS_REG);