Home
last modified time | relevance | path

Searched defs:ptel (Results 1 – 2 of 2) sorted by relevance

/qemu/target/sh4/
H A Dcpu.h180 uint32_t ptel; /* page table entry low register */ member
319 #define cpu_ptel_v(ptel) (((ptel) & PTEL_V) >> 8) argument
321 #define cpu_ptel_c(ptel) (((ptel) & PTEL_C) >> 3) argument
323 #define cpu_ptel_d(ptel) (((ptel) & PTEL_D) >> 2) argument
325 #define cpu_ptel_sh(ptel)(((ptel) & PTEL_SH) >> 1) argument
327 #define cpu_ptel_wt(ptel) ((ptel) & PTEL_WT) argument
333 static inline int cpu_ptel_sz (uint32_t ptel) in cpu_ptel_sz()
346 static inline int cpu_ptel_ppn (uint32_t ptel) in cpu_ptel_ppn()
355 static inline int cpu_ptel_pr (uint32_t ptel) in cpu_ptel_pr()
/qemu/hw/ppc/
H A Dspapr_vhyp_mmu.c38 target_ulong ptel = args[3]; in h_enter() local