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

  /external/llvm/unittests/ADT/
PostOrderIteratorTest.cpp 24 PIS.insertEdge(Null, Null);
27 PIS.insertEdge(Null, Null);
33 PI.insertEdge(NullBB, NullBB);
35 PIExt.insertEdge(NullBB, NullBB);
  /external/llvm/include/llvm/ADT/
PostOrderIterator.h 45 // edges can be pruned by returning false in the insertEdge() function. This
49 // the post-order. The insertEdge() function is called in a pre-order, while
60 bool insertEdge(NodeType *From, NodeType *To) {
80 template <class NodeType> bool insertEdge(NodeType *From, NodeType *To) {
108 if (this->insertEdge(VisitStack.back().first, BB)) {
116 this->insertEdge((NodeType*)nullptr, BB);
124 if (this->insertEdge((NodeType*)nullptr, BB)) {
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 117 bool insertEdge(BasicBlock *From, BasicBlock *To);
170 insertEdge(BasicBlock *From, BasicBlock *To) {
LazyCallGraph.h 448 void insertEdge(Node &Caller, Function &Callee);
451 void insertEdge(Function &Caller, Function &Callee) {
452 return insertEdge(get(Caller), Callee);
  /external/llvm/unittests/Analysis/
LazyCallGraphTest.cpp 301 CG.insertEdge(B, lookupFunction(*M, "c"));
306 CG.insertEdge(C, B.getFunction());
310 CG.insertEdge(C, C.getFunction());
  /external/llvm/lib/Analysis/
LazyCallGraph.cpp 531 void LazyCallGraph::insertEdge(Node &CallerN, Function &Callee) {
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 433 bool insertEdge(const MachineBasicBlock *From, const MachineBasicBlock *To) {
    [all...]

Completed in 372 milliseconds