예제 #1
0
        public override ProcessorState Clone()
        {
            var state = new AArch32ProcessorState(this);

            return(state);
        }
예제 #2
0
 public ThumbRewriterRetired(Dictionary <int, RegisterStorage> regs, INativeArchitecture nArch, EndianImageReader rdr, AArch32ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.regs   = regs;
     this.nArch  = nArch;
     this.rdr    = rdr;
     this.binder = binder;
     this.host   = host;
 }
예제 #3
0
 public AArch32ProcessorState(AArch32ProcessorState that) : base(that)
 {
     this.arch    = that.arch;
     this.regData = new Dictionary <int, ulong>(that.regData);
     this.pc      = that.pc;
 }