Searched refs:access_id (Results 1 – 4 of 4) sorted by relevance
/qemu/target/hppa/ |
H A D | mem_helper.c | 162 static int match_prot_id_1(uint32_t access_id, uint32_t prot_id) in match_prot_id_1() argument 164 if (((access_id ^ (prot_id >> 1)) & ACCESS_ID_MASK) == 0) { in match_prot_id_1() 172 static int match_prot_id32(CPUHPPAState *env, uint32_t access_id) in match_prot_id32() argument 177 r = match_prot_id_1(access_id, env->cr[i]); in match_prot_id32() 185 static int match_prot_id64(CPUHPPAState *env, uint32_t access_id) in match_prot_id64() argument 190 r = match_prot_id_1(access_id, env->cr[i]); in match_prot_id64() 194 r = match_prot_id_1(access_id, env->cr[i] >> 32); in match_prot_id64() 280 if (ent->access_id && MMU_IDX_TO_P(mmu_idx)) { in hppa_get_physical_address() 282 ? match_prot_id64(env, ent->access_id) in hppa_get_physical_address() 283 : match_prot_id32(env, ent->access_id)); in hppa_get_physical_address() [all …]
|
H A D | trace-events | 11 …tlbp(void *env, void *ent, int access_id, int u, int pl2, int pl1, int type, int b, int d, int t) …
|
H A D | machine.c | 68 ent->access_id = extract64(val, 1, 31); in get_tlb() 91 val = deposit64(val, 1, 31, ent->access_id); in put_tlb()
|
H A D | cpu.h | 201 unsigned access_id : 16; member
|