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

  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 89 if (!RC || RC->isAllocatable())
99 if (SubRC->isAllocatable())
133 assert(RC->isAllocatable() && "invalid for nonallocatable sets");
150 if ((*I)->isAllocatable())
MachineRegisterInfo.cpp 42 assert(RC && RC->isAllocatable() && "Invalid RC for virtual register");
94 assert(RegClass->isAllocatable() &&
425 if (!def_empty(*AI) || isAllocatable(*AI))
CalcSpillWeights.cpp 160 if (hweight > bestPhys && mri.isAllocatable(hint))
RegAllocFast.cpp 527 !RC->contains(Hint) || !MRI->isAllocatable(Hint)))
804 if (MRI->isAllocatable(*I))
    [all...]
AggressiveAntiDepBreaker.cpp 634 if (!MRI.isAllocatable(NewSuperReg)) continue;
832 if (!MRI.isAllocatable(AntiDepReg)) {
    [all...]
MachineVerifier.cpp 187 bool isAllocatable(unsigned Reg) {
188 return Reg < TRI->getNumRegs() && MRI->isAllocatable(Reg);
504 if (isAllocatable(reg) && !MBB->isLandingPad() &&
    [all...]
CriticalAntiDepBreaker.cpp 547 if (!MRI.isAllocatable(AntiDepReg))
MachineCSE.cpp 285 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
RegAllocPBQP.cpp 425 if (!MF.getRegInfo().isAllocatable(DstReg))
RegisterPressure.cpp 349 else if (MRI->isAllocatable(Reg)) {
    [all...]
  /external/llvm/include/llvm/Target/
TargetRegisterInfo.h 100 /// isAllocatable - Return true if this register class may be used to create
102 bool isAllocatable() const { return MC->isAllocatable(); }
    [all...]
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 93 /// isAllocatable - Return true if this register class may be used to create
95 bool isAllocatable() const { return Allocatable; }
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 749 /// isAllocatable - Returns true when PhysReg belongs to an allocatable
755 bool isAllocatable(unsigned PhysReg) const {
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 120 bool SaveR2 = MF->getRegInfo().isAllocatable(PPC::X2);
    [all...]

Completed in 1089 milliseconds