41c41
< SkipFuncEvent::process(ExecContext *xc)
---
> SkipFuncEvent::process(ThreadContext *tc)
43c43
< Addr newpc = xc->readIntReg(ReturnAddressReg);
---
> Addr newpc = tc->readIntReg(ReturnAddressReg);
46c46
< xc->readPC(), newpc);
---
> tc->readPC(), newpc);
48,49c48,49
< xc->setPC(newpc);
< xc->setNextPC(xc->readPC() + sizeof(TheISA::MachInst));
---
> tc->setPC(newpc);
> tc->setNextPC(tc->readPC() + sizeof(TheISA::MachInst));
51c51
< BranchPred *bp = xc->getCpuPtr()->getBranchPred();
---
> BranchPred *bp = tc->getCpuPtr()->getBranchPred();
53c53
< bp->popRAS(xc->getThreadNum());
---
> bp->popRAS(tc->getThreadNum());
66c66
< FnEvent::process(ExecContext *xc)
---
> FnEvent::process(ThreadContext *tc)
68c68
< if (xc->misspeculating())
---
> if (tc->misspeculating())
71c71
< xc->getSystemPtr()->kernelBinning->call(xc, mybin);
---
> tc->getSystemPtr()->kernelBinning->call(tc, mybin);
75c75
< IdleStartEvent::process(ExecContext *xc)
---
> IdleStartEvent::process(ThreadContext *tc)
77,79c77,79
< if (xc->getKernelStats())
< xc->getKernelStats()->setIdleProcess(
< xc->readMiscReg(AlphaISA::IPR_PALtemp23), xc);
---
> if (tc->getKernelStats())
> tc->getKernelStats()->setIdleProcess(
> tc->readMiscReg(AlphaISA::IPR_PALtemp23), tc);
84c84
< InterruptStartEvent::process(ExecContext *xc)
---
> InterruptStartEvent::process(ThreadContext *tc)
86,87c86,87
< if (xc->getKernelStats())
< xc->getKernelStats()->mode(Kernel::interrupt, xc);
---
> if (tc->getKernelStats())
> tc->getKernelStats()->mode(Kernel::interrupt, tc);
91c91
< InterruptEndEvent::process(ExecContext *xc)
---
> InterruptEndEvent::process(ThreadContext *tc)
95,96c95,96
< if (xc->getKernelStats())
< xc->getKernelStats()->mode(Kernel::kernel, xc);
---
> if (tc->getKernelStats())
> tc->getKernelStats()->mode(Kernel::kernel, tc);