Searched refs:succ_doms (Results 1 – 1 of 1) sorted by relevance
378 BitVector* succ_doms = dominators[succ->id()]; in Run() local380 if (succ_doms == NULL) { in Run()382 succ_doms = new (zone) BitVector(count, zone); in Run()383 succ_doms->CopyFrom(*block_doms); in Run()384 succ_doms->Add(block->id()); in Run()385 dominators[succ->id()] = succ_doms; in Run()389 bool had = succ_doms->Contains(block->id()); in Run()390 if (had) succ_doms->Remove(block->id()); in Run()391 if (succ_doms->IntersectIsChanged(*block_doms)) queue.push(succ); in Run()392 if (had) succ_doms->Add(block->id()); in Run()