Lines Matching refs:V2
218 const BitTracker::BitValue &V2) const;
225 const BitTracker::BitValue &V2) const {
226 if (V1 == V2)
228 // V1==0 => true, V2==0 => false
229 if (V1.is(0) || V2.is(0))
231 // Neither of V1,V2 is 0, and V1!=V2.
232 // V2==1 => false, V1==1 => true
233 if (V2.is(1) || V1.is(1))
234 return !V2.is(1);
235 // Both V1,V2 are refs.
236 unsigned Ind1 = BaseOrd[V1.RefI.Reg], Ind2 = BaseOrd[V2.RefI.Reg];
239 // If V1.Pos==V2.Pos
240 assert(V1.RefI.Pos != V2.RefI.Pos && "Bit values should be different");
241 return V1.RefI.Pos < V2.RefI.Pos;
319 const BitTracker::BitValue &V1 = RC1[i], &V2 = RC2[i];
320 if (V1 != V2)
321 return BitOrd(V1, V2);
350 const BitTracker::BitValue &V1 = RC1[Bit1], V2 = RC2[Bit2];
351 if (V1 != V2)
352 return BitOrd(V1, V2);