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

  /external/llvm/lib/Analysis/
PathNumbering.cpp 236 std::stack<BallLarusNode*> dfsStack;
242 dfsStack.push(getRoot());
245 while(dfsStack.size())
246 buildNode(inDag, dfsStack);
364 void BallLarusDag::buildNode(BLBlockNodeMap& inDag, BLNodeStack& dfsStack) {
365 BallLarusNode* currentNode = dfsStack.top();
370 dfsStack.pop();
410 buildEdge(inDag, dfsStack, currentNode, succBB, duplicateNumber);
417 dfsStack, BallLarusNode* currentNode,
438 dfsStack.push(childNode)
    [all...]
  /external/llvm/include/llvm/Analysis/
PathNumbering.h 287 void buildNode(BLBlockNodeMap& inDag, std::stack<BallLarusNode*>& dfsStack);
290 void buildEdge(BLBlockNodeMap& inDag, std::stack<BallLarusNode*>& dfsStack,
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 579 std::stack<BallLarusNode*> dfsStack;
586 dfsStack.push(getRoot());
587 while(dfsStack.size() > 0) {
588 BallLarusNode* node = dfsStack.top();
589 dfsStack.pop();
    [all...]

Completed in 56 milliseconds