Home
last modified time | relevance | path

Searched refs:CP0_TCHalt (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/target/mips/
H A Dcpu.c339 env->tcs[i].CP0_TCHalt = 1; in mips_cpu_reset_hold()
341 env->active_tc.CP0_TCHalt = 1; in mips_cpu_reset_hold()
351 env->active_tc.CP0_TCHalt = 0; in mips_cpu_reset_hold()
352 env->tcs[0].CP0_TCHalt = 0; in mips_cpu_reset_hold()
H A Dinternal.h262 if (env->active_tc.CP0_TCHalt & 1) { in mips_vpe_active()
H A Dcpu.h494 target_ulong CP0_TCHalt; member
/openbmc/qemu/target/mips/tcg/sysemu/
H A Dcp0_helper.c302 return env->active_tc.CP0_TCHalt; in helper_mfc0_tchalt()
311 return other->active_tc.CP0_TCHalt; in helper_mftc0_tchalt()
313 return other->tcs[other_tc].CP0_TCHalt; in helper_mftc0_tchalt()
462 return env->active_tc.CP0_TCHalt; in helper_dmfc0_tchalt()
753 env->active_tc.CP0_TCHalt = arg1 & 0x1; in helper_mtc0_tchalt()
756 if (env->active_tc.CP0_TCHalt & 1) { in helper_mtc0_tchalt()
772 other->active_tc.CP0_TCHalt = arg1; in helper_mttc0_tchalt()
774 other->tcs[other_tc].CP0_TCHalt = arg1; in helper_mttc0_tchalt()
/openbmc/qemu/target/mips/sysemu/
H A Dmachine.c94 VMSTATE_UINTTL(CP0_TCHalt, TCState),