reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/LiveInterval.cpp
  766     if (S->valno != V1) continue;  // Not a V1 Segment.
  770     if (S != begin()) {
  771       iterator Prev = S-1;
  772       if (Prev->valno == V2 && Prev->end == S->start) {
  773         Prev->end = S->end;
  776         segments.erase(S);
  778         S = Prev;
  784     S->valno = V2;
  790       if (I->start == S->end && I->valno == V2) {
  791         S->end = I->end;
  793         I = S+1;