Home
last modified time | relevance | path

Searched refs:CP0_WatchHi (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/target/mips/tcg/system/
H A Dcp0_helper.c420 return (int32_t) env->CP0_WatchHi[sel]; in helper_mfc0_watchhi()
425 return env->CP0_WatchHi[sel] >> 32; in helper_mfhc0_watchhi()
498 return env->CP0_WatchHi[sel]; in helper_dmfc0_watchhi()
1325 uint64_t m_bit = env->CP0_WatchHi[sel] & (1 << CP0WH_M); /* read-only */ in helper_mtc0_watchhi()
1329 env->CP0_WatchHi[sel] = m_bit | (arg1 & mask); in helper_mtc0_watchhi()
1330 env->CP0_WatchHi[sel] &= ~(env->CP0_WatchHi[sel] & arg1 & 0x7); in helper_mtc0_watchhi()
1335 env->CP0_WatchHi[sel] = ((uint64_t) (arg1) << 32) | in helper_mthc0_watchhi()
1336 (env->CP0_WatchHi[sel] & 0x00000000ffffffffULL); in helper_mthc0_watchhi()
/openbmc/qemu/target/mips/system/
H A Dmachine.c313 VMSTATE_UINT64_ARRAY(env.CP0_WatchHi, MIPSCPU, 8),
/openbmc/qemu/target/mips/
H A Dcpu.h1005 uint64_t CP0_WatchHi[8]; member