Lines Matching refs:BlockQueue
1069 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
1072 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
1080 BlockQueue.push_back(B); in fillReachableBlocks()
1083 while (!BlockQueue.empty()) { in fillReachableBlocks()
1084 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
1085 BlockQueue.pop_front(); in fillReachableBlocks()
1088 BlockQueue.push_back(B); in fillReachableBlocks()
1100 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
1101 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
1102 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
1103 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
1156 std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()