Home | History | Annotate | Download | only in CodeGen

Lines Matching full:otherv

1994     Val &OtherV = Other.Vals[OtherVNI->id];
1996 if (!OtherV.isAnalyzed())
2003 if (V.ValidLanes & OtherV.ValidLanes)
2021 Val &OtherV = Other.Vals[V.OtherVNI->id];
2023 // Check if OtherV is an IMPLICIT_DEF that extends beyond its basic block.
2030 if (OtherV.ErasableImplicitDef && DefMI &&
2035 OtherV.ErasableImplicitDef = false;
2048 && (V.WriteLanes & (OtherV.ValidLanes | OtherV.WriteLanes)) == 0)
2058 V.ValidLanes &= ~V.WriteLanes | OtherV.ValidLanes;
2088 if ((V.WriteLanes & OtherV.ValidLanes) == 0)
2154 Val &OtherV = Other.Vals[V.OtherVNI->id];
2157 if ((OtherV.WriteLanes & ~V.ValidLanes) != 0 && TrackSubRegLiveness)
2158 OtherV.ErasableImplicitDef = false;
2159 OtherV.Pruned = true;
2252 const Val &OtherV = Other.Vals[V.OtherVNI->id];
2257 LaneBitmask TaintedLanes = V.WriteLanes & OtherV.ValidLanes;
2333 Val &OtherV = Other.Vals[Vals[i].OtherVNI->id];
2334 bool EraseImpDef = OtherV.ErasableImplicitDef &&
2335 OtherV.Resolution == CR_Keep;