Home | History | Annotate | Download | only in Analysis

Lines Matching refs:BFS

243   std::queue<const BasicBlock *> BFS;
244 BFS.push(Src);
246 while(BFS.size() && !hasFoundPath) {
247 BB = BFS.front();
248 BFS.pop();
263 BFS.push(*Succ);
674 std::queue<const BasicBlock *> BFS;
676 BFS.push(BB);
679 while (BFS.size()) {
680 BB = BFS.front(); BFS.pop();
702 BFS.push(*NBB);