29 #ifndef __ARCH_MIPS_MT_HH__
30 #define __ARCH_MIPS_MT_HH__
65 switch (
reg.classValue()) {
75 panic(
"Unexpected reg class! (%s)",
reg.className());
89 switch (
reg.classValue()) {
99 panic(
"Unexpected reg class! (%s)",
reg.className());
122 return tcbind.curVPE;
130 return vpeCtrl.targTC;
137 if (tc->status() == TC::Active) {
146 warn(
"%i: Halting thread %i in %s @ PC %x, setting restart PC to %x",
147 curTick(), tc->threadId(), tc->getCpuPtr()->name(),
156 if (tc->status() != TC::Active) {
161 tc->pcState(restartPC);
164 warn(
"%i: Restoring thread %i in %s @ PC %x",
165 curTick(), tc->threadId(), tc->getCpuPtr()->name(), restartPC);
174 int num_threads = mvpConf.ptc + 1;
177 for (
ThreadID tid = 0; tid < num_threads && success == 0; tid++) {
178 TCBindReg tidTCBind =
182 if (tidTCBind.curVPE == tcBind.curVPE) {
184 TCStatusReg tidTCStatus =
188 TCHaltReg tidTCHalt =
192 if (tidTCStatus.da == 1 && tidTCHalt.h == 0 &&
193 tidTCStatus.a == 0 && success == 0) {
203 tidTCStatus.rnst = 0;
211 tidTCStatus.tksu =
status.ksu;
213 tidTCStatus.asid = tcStatus.asid;
223 std::cerr <<
"Bad VPEs" << std::endl;
228 VPEControlReg vpeControl =
230 vpeControl.excpt = 1;
232 fault = std::make_shared<ThreadFault>();
243 ThreadID num_threads = mvpConf0.ptc + 1;
250 for (
ThreadID tid = 0; tid < num_threads; tid++) {
251 TCStatusReg tidTCStatus =
254 TCHaltReg tidTCHalt =
257 TCBindReg tidTCBind =
261 if (tidTCBind.curVPE == tcBind.curVPE &&
262 tidTCBind.curTC == tcBind.curTC &&
263 tidTCStatus.da == 1 &&
265 tidTCStatus.a == 1) {
274 warn(
"%i: Deactivating Hardware Thread Context #%i",
277 }
else if (src_reg > 0) {
278 if ((src_reg & ~yield_mask) != 0) {
280 vpeControl.excpt = 2;
282 fault = std::make_shared<ThreadFault>();
285 }
else if (src_reg != -2) {
287 VPEControlReg vpeControl =
290 if (vpeControl.ysi == 1 && tcStatus.dt == 1 ) {
291 vpeControl.excpt = 4;
292 fault = std::make_shared<ThreadFault>();
297 return src_reg & yield_mask;
314 status.ksu = tcStatus.tksu;
332 tcStatus.tksu =
status.ksu;