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(); }
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 !; }
public PaRiscState(PaRiscArchitecture arch) { this.arch = arch; }