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

  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 80 if (!RC || RC->isAllocatable())
90 if (SubRC->isAllocatable())
124 assert(RC->isAllocatable() && "invalid for nonallocatable sets");
141 if ((*I)->isAllocatable())
MachineRegisterInfo.cpp 44 assert(RC && RC->isAllocatable() && "Invalid RC for virtual register");
103 assert(RegClass->isAllocatable() &&
416 if (!def_empty(*AI) || isAllocatable(*AI))
CalcSpillWeights.cpp 170 if (hweight > bestPhys && mri.isAllocatable(hint))
RegAllocFast.cpp 519 !RC->contains(Hint) || !MRI->isAllocatable(Hint)))
793 if (MRI->isAllocatable(*I))
    [all...]
AggressiveAntiDepBreaker.cpp 621 if (!MRI.isAllocatable(NewSuperReg)) continue;
804 if (!MRI.isAllocatable(AntiDepReg)) {
    [all...]
MachineVerifier.cpp 188 bool isAllocatable(unsigned Reg) {
189 return Reg < TRI->getNumRegs() && MRI->isAllocatable(Reg);
505 if (isAllocatable(reg) && !MBB->isLandingPad() &&
    [all...]
CriticalAntiDepBreaker.cpp 524 if (!MRI.isAllocatable(AntiDepReg))
MachineCSE.cpp 261 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
RegAllocPBQP.cpp 356 if (!mf->getRegInfo().isAllocatable(dst)) {
RegisterPressure.cpp 379 else if (MRI->isAllocatable(Reg)) {
  /external/llvm/include/llvm/Target/
TargetRegisterInfo.h 98 /// isAllocatable - Return true if this register class may be used to create
100 bool isAllocatable() const { return MC->isAllocatable(); }
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 470 /// isAllocatable - Returns true when PhysReg belongs to an allocatable
476 bool isAllocatable(unsigned PhysReg) const {
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 97 /// isAllocatable - Return true if this register class may be used to create
99 bool isAllocatable() const { return Allocatable; }

Completed in 466 milliseconds