HomeSort by relevance Sort by last modified time
    Searched refs:Virt2PhysMap (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
VirtRegMap.h 46 /// Virt2PhysMap - This is a virtual to physical register
51 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysMap;
71 VirtRegMap() : MachineFunctionPass(ID), Virt2PhysMap(NO_PHYS_REG),
100 return Virt2PhysMap[virtReg];
108 assert(Virt2PhysMap[virtReg] == NO_PHYS_REG &&
111 Virt2PhysMap[virtReg] = physReg;
118 assert(Virt2PhysMap[virtReg] != NO_PHYS_REG &&
120 Virt2PhysMap[virtReg] = NO_PHYS_REG;
125 Virt2PhysMap.clear();
163 return (Virt2SplitMap[virtReg] && Virt2PhysMap[virtReg] != NO_PHYS_REG)
    [all...]
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 62 Virt2PhysMap.clear();
72 Virt2PhysMap.resize(NumRegs);
124 if (Virt2PhysMap[Reg] != (unsigned)VirtRegMap::NO_PHYS_REG) {
126 << PrintReg(Virt2PhysMap[Reg], TRI) << "] "

Completed in 260 milliseconds