Esempio 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--;
 }
Esempio n. 2
0
 public void Visit(StoreIndEntry entry)
 {
     _sb.AppendLine($"       ┌──▌  t{entry.Op1.TreeID}");
     _sb.AppendLine($"       storeind {entry.Addr.TreeID}");
 }
 public void Visit(StoreIndEntry entry)
 {
     _genericStackEntryVisitor.Visit <StoreIndEntry>(entry);
 }
Esempio n. 4
0
 public void Visit(StoreIndEntry entry)
 {
     entry.Op1.Accept(this);
     entry.Addr.Accept(this);
     SetNext(entry);
 }