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

References

include/llvm/CodeGen/LivePhysRegs.h
  106   bool contains(MCPhysReg Reg) const { return LiveRegs.count(Reg); }
include/llvm/CodeGen/RegisterPressure.h
  536     return UntiedDefs.count(VirtReg);
lib/CodeGen/IfConversion.cpp
 1499       if (LiveBeforeMI.count(Reg))
 1510     if (LiveBeforeMI.count(Reg))
 1515         if (!LiveBeforeMI.count(*S))
lib/CodeGen/LivePhysRegs.cpp
  145   if (LiveRegs.count(Reg))
  150     if (LiveRegs.count(*R))
lib/CodeGen/RegAllocFast.cpp
  150         if (UsedInInstr.count(*Units))
lib/CodeGen/ScheduleDAGInstrs.cpp
 1288       else if (RootSet.count(PredNum)) {
unittests/ADT/SparseSetTest.cpp
   57   EXPECT_FALSE(Set.count(0));
   58   EXPECT_TRUE(Set.count(5));
  112   EXPECT_FALSE(Set.count(4));
  115   EXPECT_FALSE(Set.count(4));
  118   EXPECT_TRUE(Set.count(5));
  122   EXPECT_FALSE(Set.count(5));
  125   EXPECT_FALSE(Set.count(5));
  142   EXPECT_FALSE(Set.count(5));
  153     EXPECT_TRUE(Set.count(i));
  155   EXPECT_FALSE(Set.count(99));
  156   EXPECT_FALSE(Set.count(800));