35c35
< ExecContext *xc)
---
> ThreadContext *tc)
50c50
< //xc->getCpuPtr()->checkInterrupts = true;
---
> //tc->getCpuPtr()->checkInterrupts = true;
54c54
< return setRegWithEffect(miscReg, ~val & softint, xc);
---
> return setRegWithEffect(miscReg, ~val & softint, tc);
56c56
< return setRegWithEffect(miscReg, val | softint, xc);
---
> return setRegWithEffect(miscReg, val | softint, tc);
62c62
< tickCompare = new TickCompareEvent(this, xc);
---
> tickCompare = new TickCompareEvent(this, tc);
68c68
< tickCompare.schedule(time * xc->getCpuPtr()->cycles(1));
---
> tickCompare.schedule(time * tc->getCpuPtr()->cycles(1));
76c76
< sys = dynamic_cast<SparcSystem*>(xc->getSystemPtr());
---
> sys = dynamic_cast<SparcSystem*>(tc->getSystemPtr());
86,87c86,87
< sTickCompare = new STickCompareEvent(this, xc);
< sys = dynamic_cast<SparcSystem*>(xc->getSystemPtr());
---
> sTickCompare = new STickCompareEvent(this, tc);
> sys = dynamic_cast<SparcSystem*>(tc->getSystemPtr());
101c101
< //xc->getCpuPtr()->checkInterrupts;
---
> //tc->getCpuPtr()->checkInterrupts;
130,131c130,131
< hSTickCompare = new HSTickCompareEvent(this, xc);
< sys = dynamic_cast<SparcSystem*>(xc->getSystemPtr());
---
> hSTickCompare = new HSTickCompareEvent(this, tc);
> sys = dynamic_cast<SparcSystem*>(tc->getSystemPtr());
146c146
< MiscRegFile::readFSRegWithEffect(int miscReg, Fault &fault, ExecContext * xc)
---
> MiscRegFile::readFSRegWithEffect(int miscReg, Fault &fault, ThreadContext * tc)
169c169
< sys = dynamic_cast<SparcSystem*>(xc->getSystemPtr());
---
> sys = dynamic_cast<SparcSystem*>(tc->getSystemPtr());
207c207
< MiscRegFile::processTickCompare(ExecContext *xc)
---
> MiscRegFile::processTickCompare(ThreadContext *tc)
213c213
< MiscRegFile::processSTickCompare(ExecContext *xc)
---
> MiscRegFile::processSTickCompare(ThreadContext *tc)
219c219
< MiscRegFile::processHSTickCompare(ExecContext *xc)
---
> MiscRegFile::processHSTickCompare(ThreadContext *tc)