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

  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 456 /// isAllocatable - Returns true when PhysReg belongs to an allocatable
462 bool isAllocatable(unsigned PhysReg) const {
  /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/lib/CodeGen/
MachineVerifier.cpp 187 bool isAllocatable(unsigned Reg) {
188 return Reg < TRI->getNumRegs() && MRI->isAllocatable(Reg);
498 if (isAllocatable(reg) && !MBB->isLandingPad() &&
    [all...]

Completed in 185 milliseconds