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

  /external/llvm/lib/CodeGen/
MIRPrinter.cpp 240 const BitVector &UsedPhysRegMask = RegInfo.getUsedPhysRegsMask();
241 if (UsedPhysRegMask.none())
244 for (unsigned I = 0, E = UsedPhysRegMask.size(); I != E; ++I) {
245 if (!UsedPhysRegMask[I]) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 97 /// UsedPhysRegMask - Additional used physregs including aliases.
99 BitVector UsedPhysRegMask;
708 /// in the UsedPhysRegMask.
714 /// in the UsedPhysRegMask.
720 UsedPhysRegMask.setBitsNotInMask(RegMask);
723 const BitVector &getUsedPhysRegsMask() const { return UsedPhysRegMask; }
725 void setUsedPhysRegMask(BitVector &Mask) { UsedPhysRegMask = Mask; }
    [all...]

Completed in 91 milliseconds