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

  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 80 unsigned physReg = Hint.second;
81 if (TargetRegisterInfo::isVirtualRegister(physReg) && hasPhys(physReg))
82 physReg = getPhys(physReg);
84 return (TargetRegisterInfo::isPhysicalRegister(physReg))
85 ? physReg : 0;
86 return TRI->ResolveRegAllocHint(Hint.first, physReg, *MF);
138 unsigned PhysReg = getPhys(VirtReg);
139 assert(PhysReg != NO_PHYS_REG && "Instruction uses unmapped VirtReg")
    [all...]
RegAllocPBQP.cpp 591 unsigned physReg = vrm->getRegAllocPref(li->reg);
593 if (physReg == 0) {
595 physReg = liRC->getRawAllocationOrder(*mf).front();
598 vrm->assignVirt2Phys(li->reg, physReg);
632 // And add the physreg for this interval to their live-in sets.

Completed in 79 milliseconds