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

  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 54 /// UsedPhysRegs - This is a bit vector that is computed and set by the
59 BitVector UsedPhysRegs;
285 bool isPhysRegUsed(unsigned Reg) const { return UsedPhysRegs[Reg]; }
289 void setPhysRegUsed(unsigned Reg) { UsedPhysRegs[Reg] = true; }
293 void addPhysRegsUsed(const BitVector &Regs) { UsedPhysRegs |= Regs; }
297 void setPhysRegUnused(unsigned Reg) { UsedPhysRegs[Reg] = false; }
299 /// closePhysRegsUsed - Expand UsedPhysRegs to its transitive closure over
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 24 UsedPhysRegs.resize(TRI.getNumRegs());
36 for (unsigned i = 0, e = UsedPhysRegs.size(); i != e; ++i)
246 for (int i = UsedPhysRegs.find_first(); i >= 0;
247 i = UsedPhysRegs.find_next(i))
251 UsedPhysRegs.set(SubReg);

Completed in 23 milliseconds