Lines Matching refs:BlockQueue
739 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
742 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
751 BlockQueue.push_back(B); in fillReachableBlocks()
754 while (!BlockQueue.empty()) { in fillReachableBlocks()
755 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
756 BlockQueue.pop_front(); in fillReachableBlocks()
761 BlockQueue.push_back(*I); in fillReachableBlocks()
772 std::deque<const CFGBlock*> BlockQueue; in checkFallThroughIntoBlock() local
774 std::copy(B.pred_begin(), B.pred_end(), std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()
776 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
777 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
778 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
828 std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()