Lines Matching full:visited
674 static bool IsConstantEquivalent(HInstruction* insn1, HInstruction* insn2, BitVector* visited) {
679 if (visited->IsBitSet(insn1->GetId())) {
682 visited->SetBit(insn1->GetId());
685 if (!IsConstantEquivalent(insn1->InputAt(i), insn2->InputAt(i), visited)) {
821 ArenaBitVector& visited = visited_storage_;
822 visited.SetBit(GetGraph()->GetCurrentInstructionId());
823 visited.ClearAllBits();
824 if (!IsConstantEquivalent(phi, other_phi, &visited)) {