Lines Matching refs:BlockQueue
1093 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
1096 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
1104 BlockQueue.push_back(B); in fillReachableBlocks()
1107 while (!BlockQueue.empty()) { in fillReachableBlocks()
1108 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
1109 BlockQueue.pop_front(); in fillReachableBlocks()
1112 BlockQueue.push_back(B); in fillReachableBlocks()
1124 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
1125 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
1126 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
1127 BlockQueue.pop_front(); in checkFallThroughIntoBlock()
1180 std::back_inserter(BlockQueue)); in checkFallThroughIntoBlock()