Lines Matching refs:BlockQueue
922 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
925 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
933 BlockQueue.push_back(B); in fillReachableBlocks()
936 while (!BlockQueue.empty()) { in fillReachableBlocks()
937 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
938 BlockQueue.pop_front(); in fillReachableBlocks()
943 BlockQueue.push_back(*I); in fillReachableBlocks()
954 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
955 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
956 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
957 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
1008 std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()