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

References

include/llvm/ADT/SmallBitVector.h
  477       return getPointer()->anyCommon(*RHS.getPointer());
lib/CodeGen/GlobalMerge.cpp
  422     if (PickedGlobals.anyCommon(UGS.Globals))
lib/CodeGen/SafeStackColoring.h
   65       return bv.anyCommon(Other.bv);
lib/Target/AMDGPU/GCNHazardRecognizer.cpp
  534   return ClauseDefs.anyCommon(ClauseUses) ? 1 : 0;
lib/Target/Hexagon/HexagonBitSimplify.cpp
  140       return BitVector::anyCommon(Rs);
lib/Target/Hexagon/HexagonGenInsert.cpp
  156       return BitVector::anyCommon(Rs);
lib/Target/Hexagon/RDFRegisters.cpp
  242     return Units.anyCommon(PRI.getMaskUnits(RR.Reg));
tools/llvm-exegesis/lib/MCInstrDescView.cpp
  183   return ImplDefRegs.anyCommon(ImplUseRegs);
  331   if (UseInstruction.AllUseRegs.anyCommon(DefInstruction.AllDefRegs)) {
unittests/ADT/BitVectorTest.cpp
  702     EXPECT_FALSE(Small.anyCommon(Big));
  703     EXPECT_FALSE(Big.anyCommon(Small));
  705     EXPECT_TRUE(Small.anyCommon(Big));
  706     EXPECT_TRUE(Big.anyCommon(Small));
  790   EXPECT_FALSE(A.anyCommon(B));
  791   EXPECT_FALSE(B.anyCommon(B));
  795   EXPECT_FALSE(A.anyCommon(B));
  796   EXPECT_FALSE(B.anyCommon(A));
  799   EXPECT_FALSE(A.anyCommon(B));
  800   EXPECT_FALSE(B.anyCommon(A));
  803   EXPECT_TRUE(A.anyCommon(B));
  804   EXPECT_TRUE(B.anyCommon(A));
  810   EXPECT_FALSE(A.anyCommon(B));
  811   EXPECT_FALSE(B.anyCommon(A));
utils/TableGen/CodeGenRegisters.cpp
 2254       if (!TopoSigs.anyCommon(SubRC.getTopoSigs()))