Home
last modified time | relevance | path

Searched refs:CP0_TCStatus (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/target/mips/sysemu/
H A Dcp0.c51 tcst = &cpu->active_tc.CP0_TCStatus; in sync_c0_status()
53 tcst = &cpu->tcs[tc].CP0_TCStatus; in sync_c0_status()
H A Dmachine.c92 VMSTATE_INT32(CP0_TCStatus, TCState),
/openbmc/qemu/target/mips/tcg/sysemu/
H A Dcp0_helper.c194 tcst = &cpu->active_tc.CP0_TCStatus; in sync_c0_entryhi()
196 tcst = &cpu->tcs[tc].CP0_TCStatus; in sync_c0_entryhi()
251 return env->active_tc.CP0_TCStatus; in helper_mfc0_tcstatus()
260 return other->active_tc.CP0_TCStatus; in helper_mftc0_tcstatus()
262 return other->tcs[other_tc].CP0_TCStatus; in helper_mftc0_tcstatus()
670 newval = (env->active_tc.CP0_TCStatus & ~mask) | (arg1 & mask); in helper_mtc0_tcstatus()
672 env->active_tc.CP0_TCStatus = newval; in helper_mtc0_tcstatus()
682 other->active_tc.CP0_TCStatus = arg1; in helper_mttc0_tcstatus()
684 other->tcs[other_tc].CP0_TCStatus = arg1; in helper_mttc0_tcstatus()
723 env->active_tc.CP0_TCStatus &= ~(1 << CP0TCSt_TDS); in helper_mtc0_tcrestart()
[all …]
/openbmc/qemu/target/mips/
H A Dinternal.h178 !(env->active_tc.CP0_TCStatus & (1 << CP0TCSt_IXMT)); in cpu_mips_hw_interrupts_enabled()
268 if (!(env->active_tc.CP0_TCStatus & (1 << CP0TCSt_A))) { in mips_vpe_active()
H A Dcpu.c352 env->active_tc.CP0_TCStatus = (1 << CP0TCSt_A); in mips_cpu_reset_hold()
353 env->tcs[0].CP0_TCStatus = (1 << CP0TCSt_A); in mips_cpu_reset_hold()
H A Dcpu.h476 int32_t CP0_TCStatus; member
/openbmc/qemu/target/mips/tcg/
H A Dop_helper.c162 env->active_tc.CP0_TCStatus & (1 << CP0TCSt_DT)) { in helper_yield()