Home
last modified time | relevance | path

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

/openbmc/qemu/target/mips/tcg/sysemu/
H A Dcp0_helper.c256 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in helper_mftc0_tcstatus()
273 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in helper_mftc0_tcbind()
290 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in helper_mftc0_tcrestart()
307 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in helper_mftc0_tchalt()
324 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in helper_mftc0_tccontext()
341 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in helper_mftc0_tcschedule()
540 newval = (env->CP0_VPEControl & ~mask) | (arg1 & mask); in helper_mtc0_vpecontrol()
549 env->CP0_VPEControl = newval; in helper_mtc0_vpecontrol()
561 newval = (other->CP0_VPEControl & ~mask) | (arg1 & mask); in helper_mttc0_vpecontrol()
565 other->CP0_VPEControl = newval; in helper_mttc0_vpecontrol()
[all …]
/openbmc/qemu/target/mips/tcg/
H A Dop_helper.c161 if (env->CP0_VPEControl & (1 << CP0VPECo_YSI) && in helper_yield()
163 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT); in helper_yield()
164 env->CP0_VPEControl |= 4 << CP0VPECo_EXCPT; in helper_yield()
171 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT); in helper_yield()
178 env->CP0_VPEControl &= ~(0x7 << CP0VPECo_EXCPT); in helper_yield()
179 env->CP0_VPEControl |= 2 << CP0VPECo_EXCPT; in helper_yield()
H A Dtranslate.c5364 gen_mfc0_load32(arg, offsetof(CPUMIPSState, CP0_VPEControl)); in gen_mfc0()
6871 gen_mfc0_load32(arg, offsetof(CPUMIPSState, CP0_VPEControl)); in gen_dmfc0()
8283 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in gen_mftr()
8290 } else if ((env->CP0_VPEControl & (0xff << CP0VPECo_TargTC)) > in gen_mftr()
8507 int other_tc = env->CP0_VPEControl & (0xff << CP0VPECo_TargTC); in gen_mttr()
8516 } else if ((env->CP0_VPEControl & (0xff << CP0VPECo_TargTC)) > in gen_mttr()
/openbmc/qemu/target/mips/sysemu/
H A Dmachine.c251 VMSTATE_INT32(env.CP0_VPEControl, MIPSCPU),
/openbmc/qemu/target/mips/
H A Dcpu.h561 int32_t CP0_VPEControl; member