Ejemplo n.º 1
0
 public PaRiscRewriter(PaRiscArchitecture 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 PaRiscDisassembler(arch, rdr).GetEnumerator();
 }
Ejemplo n.º 2
0
 public PaRiscRewriter(PaRiscArchitecture 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 PaRiscDisassembler(arch, rdr).GetEnumerator();
     this.instrs = new List <RtlInstruction>();
     this.m      = new RtlEmitter(instrs);
     this.instr  = null !;
 }
Ejemplo n.º 3
0
 public PaRiscState(PaRiscArchitecture arch)
 {
     this.arch = arch;
 }