Home | History | Annotate | Download | only in ssa

Lines Matching refs:ss

24 //   ss      ss        ss     ss
26 // If all Phi ops in ss have identical variables for slots corresponding to
33 // TODO: If ss doesn't contain any OpPhis, are s0 and s1 dead code anyway.
60 ss := ss0
65 for _, v := range ss.Values {
71 // Now we have two of following b->ss, b->s0->ss and b->s1->ss,
73 // We can replace it with b->ss without if all OpPhis in ss
77 // Replace edge b->s0->ss with b->ss.
79 b.Succs[0] = Edge{ss, i0}
80 ss.Preds[i0] = Edge{b, 0}