reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/SparseSet.h
  236     return find(Key) == end() ? 0 : 1;
include/llvm/CodeGen/LivePhysRegs.h
  149   const_iterator end() const { return LiveRegs.end(); }
include/llvm/CodeGen/RegisterPressure.h
  298     if (I == Regs.end())
  334     for (const IndexMaskPair &P : Regs) {
lib/CodeGen/RegAllocFast.cpp
  576     assert(LRI != LiveVirtRegs.end() && LRI->PhysReg &&
  597       assert(LRI != LiveVirtRegs.end() && LRI->PhysReg &&
unittests/ADT/SparseSetTest.cpp
   34   EXPECT_TRUE(CSet.begin() == CSet.end());
   36   EXPECT_TRUE(CSet.find(0) == CSet.end());
   38   EXPECT_TRUE(I == CSet.end());