Esempio n. 1
0
 public IA64Disassembler(IA64Architecture arch, EndianImageReader rdr)
 {
     this.arch  = arch;
     this.rdr   = rdr;
     this.ops   = new List <MachineOperand>();
     this.qpReg = Registers.PredicateRegisters[0];
 }
Esempio n. 2
0
 public IA64Rewriter(IA64Architecture 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 IA64Disassembler(arch, rdr).GetEnumerator();
 }
Esempio n. 3
0
 public IA64ProcessorState(IA64Architecture arch)
 {
     this.arch = arch;
 }