Searched refs:succ_doms (Results 1 – 1 of 1) sorted by relevance
1128 BitVector* succ_doms = dominators[succ->id().ToSize()]; in Run() local1130 if (succ_doms == nullptr) { in Run()1132 succ_doms = new (zone) BitVector(static_cast<int>(count), zone); in Run()1133 succ_doms->CopyFrom(*block_doms); in Run()1134 succ_doms->Add(block->id().ToInt()); in Run()1135 dominators[succ->id().ToSize()] = succ_doms; in Run()1139 bool had = succ_doms->Contains(block->id().ToInt()); in Run()1140 if (had) succ_doms->Remove(block->id().ToInt()); in Run()1141 if (succ_doms->IntersectIsChanged(*block_doms)) queue.push(succ); in Run()1142 if (had) succ_doms->Add(block->id().ToInt()); in Run()