114c114
< CopyStringOut(tc, comm, task + name_off, sizeof(comm));
---
> tc->getVirtProxy().readString(comm, task + name_off, sizeof(comm));
314,315c314
< MachInst inst;
< CopyOut(tc, (uint8_t *)&inst, pc, sizeof(MachInst));
---
> MachInst inst = tc->getVirtProxy().read<MachInst>(pc);
326c325
< CopyOut(tc, (uint8_t *)&ra, sp + disp, sizeof(Addr));
---
> ra = tc->getVirtProxy().read<Addr>(sp + disp);