Inheritance: Reko.Core.ProcessorArchitecture
Beispiel #1
0
 public VaxDisassembler(VaxArchitecture arch, EndianImageReader imageReader)
 {
     this.arch = arch;
     this.rdr  = imageReader;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
Beispiel #2
0
 public VaxProcessorState(VaxProcessorState that)
     : base(that)
 {
     this.arch = that.arch;
     this.regs = (uint[])that.regs.Clone();
     this.isValid = (bool[])that.isValid.Clone();
 }
 public VaxProcessorState(VaxProcessorState that)
     : base(that)
 {
     this.arch    = that.arch;
     this.regs    = (uint[])that.regs.Clone();
     this.isValid = (bool[])that.isValid.Clone();
 }
Beispiel #4
0
 public VaxRewriter(VaxArchitecture arch, ImageReader rdr, ProcessorState state, Frame frame, IRewriterHost host)
 {
     this.arch  = arch;
     this.rdr   = rdr;
     this.state = state;
     this.frame = frame;
     this.host  = host;
     this.dasm  = new VaxDisassembler(arch, rdr).GetEnumerator();
 }
Beispiel #5
0
 public VaxRewriter(VaxArchitecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.rdr    = rdr;
     this.state  = state;
     this.binder = binder;
     this.host   = host;
     this.dasm   = new VaxDisassembler(arch, rdr).GetEnumerator();
 }
Beispiel #6
0
 public VaxDisassembler(VaxArchitecture arch, EndianImageReader imageReader)
 {
     this.arch = arch;
     this.rdr  = imageReader;
 }
Beispiel #7
0
 public VaxProcessorState(VaxArchitecture arch)
 {
     Debug.Assert(arch != null);
     this.arch = arch;
 }
Beispiel #8
0
 public VaxProcessorState(VaxArchitecture arch)
 {
     this.arch = arch;
 }
Beispiel #9
0
 public VaxProcessorState(VaxArchitecture arch)
 {
     this.arch = arch;
 }
Beispiel #10
0
 public VaxProcessorState(VaxArchitecture arch)
 {
     Debug.Assert(arch != null);
     this.arch = arch;
 }