Lines Matching refs:use_block
1444 BasicBlock* use_block = GetBlockForUse(edge);
1445 if (use_block == nullptr || marked_[use_block->id().ToSize()]) continue;
1446 if (use_block == block) {
1452 MarkBlock(use_block);
1486 BasicBlock* use_block = GetBlockForUse(edge);
1487 if (use_block == nullptr) continue;
1488 while (marked_[use_block->dominator()->id().ToSize()]) {
1489 use_block = use_block->dominator();
1491 auto& use_node = dominators[use_block];
1494 // Place the {node} at {use_block}.
1495 block = use_block;
1500 // Place a copy of {node} at {use_block}.
1503 use_node->op()->mnemonic(), use_block->id().ToInt());
1534 BasicBlock* use_block = GetBlockForUse(edge);
1536 ? use_block
1537 : use_block == nullptr
1539 : BasicBlock::GetCommonDominator(block, use_block);