Lines Matching refs:BlockQueue
1066 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
1069 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
1077 BlockQueue.push_back(B); in fillReachableBlocks()
1080 while (!BlockQueue.empty()) { in fillReachableBlocks()
1081 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
1082 BlockQueue.pop_front(); in fillReachableBlocks()
1087 BlockQueue.push_back(*I); in fillReachableBlocks()
1099 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
1100 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
1101 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
1102 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
1157 std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()