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

  /external/llvm/lib/CodeGen/
RegisterClassInfo.h 119 /// isAllocatable - Returns true when PhysReg belongs to an allocatable
125 bool isAllocatable(unsigned PhysReg) const {
CalcSpillWeights.cpp 146 if (hweight > bestPhys && LIS.isAllocatable(hint))
MachineRegisterInfo.cpp 100 assert(RegClass->isAllocatable() &&
RegAllocFast.cpp 516 !RC->contains(Hint) || !RegClassInfo.isAllocatable(Hint)))
841 if (RegClassInfo.isAllocatable(*I))
    [all...]
LiveIntervalAnalysis.cpp 420 assert(!isAllocatable(interval.reg) && "Physregs shouldn't be live out!");
463 assert((!isAllocatable(interval.reg) || MBB->getParent()->begin() ||
516 if (isAllocatable(interval.reg) ||
814 if (TargetRegisterInfo::isPhysicalRegister(Reg) && !isAllocatable(Reg))
    [all...]
AggressiveAntiDepBreaker.cpp 642 if (!RegClassInfo.isAllocatable(NewSuperReg)) continue;
826 if (!RegClassInfo.isAllocatable(AntiDepReg)) {
    [all...]
CriticalAntiDepBreaker.cpp 553 if (!RegClassInfo.isAllocatable(AntiDepReg))
MachineVerifier.cpp 182 bool isAllocatable(unsigned Reg) {
420 if (isAllocatable(reg) && !MBB->isLandingPad() &&
    [all...]
RegAllocPBQP.cpp 415 if (!lis->isAllocatable(dst)) {
RegisterCoalescer.cpp     [all...]
  /external/llvm/lib/Target/
TargetRegisterInfo.cpp 87 if ((*I)->isAllocatable())
  /external/llvm/include/llvm/Target/
TargetRegisterInfo.h 97 /// isAllocatable - Return true if this register class may be used to create
99 bool isAllocatable() const { return MC->isAllocatable(); }
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 128 /// isAllocatable - is the physical register reg allocatable in the current
130 bool isAllocatable(unsigned reg) const {
  /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; }

Completed in 2580 milliseconds