Home
last modified time | relevance | path

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

/qemu/target/ppc/
H A Dmmu-hash64.c68 PRIx64 "\n", __func__, n, slb->esid, slb->vsid); in slb_lookup()
74 if (((slb->esid == esid_256M) && in slb_lookup()
76 || ((slb->esid == esid_1T) && in slb_lookup()
95 slbe = env->slb[i].esid; in dump_slb()
164 if (!(slb->esid & SLB_ESID_V)) { in helper_SLBIA()
174 slb->esid &= ~SLB_ESID_V; in helper_SLBIA()
200 slb->esid &= ~SLB_ESID_V; in helper_SLBIAG()
216 if (slb->esid & SLB_ESID_V) { in __helper_slbie()
217 slb->esid &= ~SLB_ESID_V; in __helper_slbie()
241 target_ulong esid, target_ulong vsid) in ppc_store_slb() argument
[all …]
H A Dmachine.c433 v->esid = qemu_get_be64(f); in get_slbe()
444 qemu_put_be64(f, v->esid); in put_slbe()
480 if (ppc_store_slb(cpu, i, env->slb[i].esid, env->slb[i].vsid) < 0) { in slb_post_load()
H A Dmmu-hash64.h11 target_ulong esid, target_ulong vsid);
H A Dmmu_helper.c350 uint64_t esid, vsid; in helper_store_sr() local
353 esid = ((uint64_t)(srnum & 0xf) << 28) | SLB_ESID_V; in helper_store_sr()
360 ppc_store_slb(cpu, srnum, esid, vsid); in helper_store_sr()
H A Dkvm.c885 sregs.u.s.ppc64.slb[i].slbe = env->slb[i].esid; in kvmppc_put_books_sregs()
886 if (env->slb[i].esid & SLB_ESID_V) { in kvmppc_put_books_sregs()
H A Dcpu.h398 uint64_t esid; member