Home
last modified time | relevance | path

Searched refs:last_way (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/target/ppc/
H A Dmmu-booke.c470 env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_ESEL_SHIFT; in booke206_update_mas_tlb_miss()
471 env->last_way++; in booke206_update_mas_tlb_miss()
472 env->last_way &= booke206_tlb_ways(env, 0) - 1; in booke206_update_mas_tlb_miss()
473 env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_NV_SHIFT; in booke206_update_mas_tlb_miss()
H A Dmmu_helper.c107 env->last_way = way; in ppc6xx_tlb_store()
1141 env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_NV_SHIFT; in booke206_tlb_to_mas()
1209 env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_ESEL_SHIFT; in helper_booke206_tlbsx()
1210 env->last_way++; in helper_booke206_tlbsx()
1211 env->last_way &= booke206_tlb_ways(env, 0) - 1; in helper_booke206_tlbsx()
1212 env->spr[SPR_BOOKE_MAS0] |= env->last_way << MAS0_NV_SHIFT; in helper_booke206_tlbsx()
H A Dexcp_helper.c708 msr |= ((env->last_way + 1) & (env->nb_ways - 1)) << 17; in powerpc_excp_6xx()
860 msr |= ((env->last_way + 1) & (env->nb_ways - 1)) << 17; in powerpc_excp_7xx()
H A Dcpu.h1270 int last_way; /* Last used way used to allocate TLB in a LRU way */ member