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 88 if (!RC || RC->isAllocatable())
98 if (SubRC->isAllocatable())
132 assert(RC->isAllocatable() && "invalid for nonallocatable sets");
149 if ((*I)->isAllocatable())
MachineRegisterInfo.cpp 47 assert(RC && RC->isAllocatable() && "Invalid RC for virtual register");
99 assert(RegClass->isAllocatable() &&
414 if (!def_empty(*AI) || isAllocatable(*AI))
CalcSpillWeights.cpp 158 if (hweight > bestPhys && mri.isAllocatable(hint))
RegAllocFast.cpp 520 !RC->contains(Hint) || !MRI->isAllocatable(Hint)))
797 if (MRI->isAllocatable(*I))
    [all...]
AggressiveAntiDepBreaker.cpp 632 if (!MRI.isAllocatable(NewSuperReg)) continue;
815 if (!MRI.isAllocatable(AntiDepReg)) {
    [all...]
MachineVerifier.cpp 188 bool isAllocatable(unsigned Reg) {
189 return Reg < TRI->getNumRegs() && MRI->isAllocatable(Reg);
512 if (isAllocatable(reg) && !MBB->isLandingPad() &&
    [all...]
CriticalAntiDepBreaker.cpp 570 if (!MRI.isAllocatable(AntiDepReg))
MachineCSE.cpp 277 if (MRI->isAllocatable(PhysDefs[i]) || MRI->isReserved(PhysDefs[i]))
RegAllocPBQP.cpp 344 if (!mf->getRegInfo().isAllocatable(dst)) {
RegisterPressure.cpp 349 else if (MRI->isAllocatable(Reg)) {
    [all...]
  /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/MC/
MCRegisterInfo.h 97 /// isAllocatable - Return true if this register class may be used to create
99 bool isAllocatable() const { return Allocatable; }
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 722 /// isAllocatable - Returns true when PhysReg belongs to an allocatable
728 bool isAllocatable(unsigned PhysReg) const {
    [all...]

Completed in 539 milliseconds