41c41
< #include "cpu/exec_context.hh"
---
> #include "cpu/thread_context.hh"
75c75
< FreebsdAlphaSystem::doCalibrateClocks(ExecContext *xc)
---
> FreebsdAlphaSystem::doCalibrateClocks(ThreadContext *tc)
80,81c80,81
< ppc_vaddr = (Addr)xc->readIntReg(ArgumentReg1);
< timer_vaddr = (Addr)xc->readIntReg(ArgumentReg2);
---
> ppc_vaddr = (Addr)tc->readIntReg(ArgumentReg1);
> timer_vaddr = (Addr)tc->readIntReg(ArgumentReg2);
89c89
< FreebsdAlphaSystem::SkipCalibrateClocksEvent::process(ExecContext *xc)
---
> FreebsdAlphaSystem::SkipCalibrateClocksEvent::process(ThreadContext *tc)
91,92c91,92
< SkipFuncEvent::process(xc);
< ((FreebsdAlphaSystem *)xc->getSystemPtr())->doCalibrateClocks(xc);
---
> SkipFuncEvent::process(tc);
> ((FreebsdAlphaSystem *)tc->getSystemPtr())->doCalibrateClocks(tc);