Lines Matching refs:BlockQueue
911 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
914 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
922 BlockQueue.push_back(B); in fillReachableBlocks()
925 while (!BlockQueue.empty()) { in fillReachableBlocks()
926 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
927 BlockQueue.pop_front(); in fillReachableBlocks()
932 BlockQueue.push_back(*I); in fillReachableBlocks()
943 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
944 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
945 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
946 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
997 std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()