Home | History | Annotate | Download | only in src

Lines Matching full:phis

34   // Gather all phis from all blocks first.
39 for (int j = 0; j < block->phis()->length(); j++) {
40 all_phis.Add(block->phis()->at(j), zone());
44 // Iteratively reduce all phis in the list.
48 // Make sure that we *really* removed all redundant phis.
50 for (int j = 0; j < blocks->at(i)->phis()->length(); j++) {
51 ASSERT(blocks->at(i)->phis()->at(j)->GetRedundantReplacement() == NULL);
59 ProcessPhis(block->phis());
63 void HRedundantPhiEliminationPhase::ProcessPhis(const ZoneList<HPhi*>* phis) {
66 // Iterately replace all redundant phis in the given list.
68 for (int i = 0; i < phis->length(); i++) {
69 HPhi* phi = phis->at(i);