Home
last modified time | relevance | path

Searched refs:SEGBITS (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/target/mips/
H A Dcpu-defs.c.inc73 .SEGBITS = 32,
95 .SEGBITS = 32,
115 .SEGBITS = 32,
135 .SEGBITS = 32,
155 .SEGBITS = 32,
176 .SEGBITS = 32,
197 .SEGBITS = 32,
219 .SEGBITS = 32,
241 .SEGBITS = 32,
267 .SEGBITS = 32,
[all …]
H A Dcpu.c225 env->SEGBITS = env->cpu_model->SEGBITS; in mips_cpu_reset_hold()
226 env->SEGMask = (target_ulong)((1ULL << env->cpu_model->SEGBITS) - 1); in mips_cpu_reset_hold()
H A Dinternal.h67 int32_t SEGBITS; member
H A Dcpu.h534 uint32_t SEGBITS; member
/openbmc/qemu/target/mips/tcg/sysemu/
H A Dtlb_helper.c568 (env->CP0_XContext & ((~0ULL) << (env->SEGBITS - 7))) | /* PTEBase */ in raise_mmu_exception()
569 (extract64(address, 62, 2) << (env->SEGBITS - 9)) | /* R */ in raise_mmu_exception()
570 (extract64(address, 13, env->SEGBITS - 13) << 4); /* BadVPN2 */ in raise_mmu_exception()
H A Dcp0_helper.c1352 target_ulong mask = (1ULL << (env->SEGBITS - 7)) - 1; in helper_mtc0_xcontext()