107c107
< CopyStringOut(tc, comm, task + name_off, sizeof(comm));
---
> tc->getVirtProxy().readString(comm, task + name_off, sizeof(comm));
167,168c167
< MachInst inst;
< CopyOut(tc, (uint8_t *)&inst, pc, sizeof(MachInst));
---
> MachInst inst = tc->getVirtProxy().read<MachInst>(pc);
179c178
< CopyOut(tc, (uint8_t *)&ra, sp + disp, sizeof(Addr));
---
> ra = tc->getVirtProxy().read<Addr>(sp + disp);