Ejemplo n.º 1
0
 public void Visit(StoreIndEntry entry)
 {
     _indent++;
     entry.Addr.Accept(this);
     _indent--;
     Print($"STORE_IND offset={entry.FieldOffset} size={entry.ExactSize}");
     _indent++;
     entry.Op1.Accept(this);
     _indent--;
 }
Ejemplo n.º 2
0
 public void Visit(StoreIndEntry entry)
 {
     _sb.AppendLine($"       ┌──▌  t{entry.Op1.TreeID}");
     _sb.AppendLine($"       storeind {entry.Addr.TreeID}");
 }
Ejemplo n.º 3
0
 public void Visit(StoreIndEntry entry)
 {
     _genericStackEntryVisitor.Visit <StoreIndEntry>(entry);
 }
Ejemplo n.º 4
0
 public void Visit(StoreIndEntry entry)
 {
     entry.Op1.Accept(this);
     entry.Addr.Accept(this);
     SetNext(entry);
 }