406c406
< cpuXC->copyArchRegs(unverifiedInst->xcBase());
---
> thread->copyArchRegs(unverifiedInst->tcBase());
410,411c410,411
< cpuXC->setPC(cpuXC->readNextPC());
< cpuXC->setNextPC(cpuXC->readNextPC() + sizeof(MachInst));
---
> thread->setPC(thread->readNextPC());
> thread->setNextPC(thread->readNextPC() + sizeof(MachInst));
414,416c414,416
< cpuXC->setPC(cpuXC->readNextPC());
< cpuXC->setNextPC(cpuXC->readNextNPC());
< cpuXC->setNextNPC(cpuXC->readNextNPC() + sizeof(MachInst));
---
> thread->setPC(thread->readNextPC());
> thread->setNextPC(thread->readNextNPC());
> thread->setNextNPC(thread->readNextNPC() + sizeof(MachInst));
418a419
> }