Beispiel #1
0
 public PowerPcState(PowerPcState other)
 {
     this.arch = other.arch;
     this.regs = new ulong[other.regs.Length];
     this.valid = new bool[other.valid.Length];
     for (int i = 0; i < other.regs.Length; ++i)
     {
         this.regs[i] = other.regs[i];
         this.valid[i] = other.valid[i];
     }
 }
Beispiel #2
0
 public PowerPcState(PowerPcState other) : base(other)
 {
     this.arch  = other.arch;
     this.regs  = new ulong[other.regs.Length];
     this.valid = new ulong[other.valid.Length];
     for (int i = 0; i < other.regs.Length; ++i)
     {
         this.regs[i]  = other.regs[i];
         this.valid[i] = other.valid[i];
     }
 }
Beispiel #3
0
 public PowerPcState(PowerPcState other) : base(other)
 {
     this.arch = other.arch;
     this.regs = new Dictionary <RegisterStorage, Constant>(other.regs);
 }