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

Declarations

include/llvm/Analysis/LazyCallGraph.h
  155     bool isCall() const;

References

include/llvm/Analysis/LazyCallGraph.h
  237         while (I != E && (!*I || !I->isCall()))
lib/Analysis/CGSCCPassManager.cpp
  467           if (!E->isCall())
  489     if (E->isCall())
  511     if (&TargetRC == RC && E.isCall()) {
lib/Analysis/LazyCallGraph.cpp
  338         if (!E.isCall())
  532   assert(!(*SourceN)[TargetN].isCall() && "Must start with a ref edge!");
  605           if (!E.isCall())
  680   assert((*SourceN)[TargetN].isCall() && "Must start with a call edge!");
  702   assert((*SourceN)[TargetN].isCall() && "Must start with a call edge!");
  889   assert(!(*SourceN)[TargetN].isCall() && "Must start with a ref edge!");
  911   assert((*SourceN)[TargetN].isCall() && "Must start with a call edge!");
 1148     assert(!(*SourceN)[*TargetN].isCall() &&
 1404     if (E.isCall())
 1748     OS << "    " << (E.isCall() ? "call" : "ref ") << " -> "
 1796     if (!E.isCall()) // It is a ref edge.
unittests/Analysis/LazyCallGraphTest.cpp
  645   EXPECT_TRUE(NewE.isCall());
  668   EXPECT_FALSE(NewE.isCall());
  689   EXPECT_TRUE(NewE.isCall());