Get rid of _t suffix
[qemu/kraxel.git] / targphys.h
blob2a5b1bd5469413ce1e550d77015a7e4eb31424a6
1 /* Define a_target_phys_addr if it exists. */
3 #ifndef TARGPHYS_H
4 #define TARGPHYS_H
6 #ifdef TARGET_PHYS_ADDR_BITS
7 /* a_target_phys_addr is the type of a physical address (its size can
8 be different from 'target_ulong'). We have sizeof(target_phys_addr)
9 = max(sizeof(unsigned long),
10 sizeof(size_of_target_physical_address)) because we must pass a
11 host pointer to memory operations in some cases */
13 #if TARGET_PHYS_ADDR_BITS == 32
14 typedef uint32_t a_target_phys_addr;
15 #define TARGET_PHYS_ADDR_MAX UINT32_MAX
16 #define TARGET_FMT_plx "%08x"
17 #elif TARGET_PHYS_ADDR_BITS == 64
18 typedef uint64_t a_target_phys_addr;
19 #define TARGET_PHYS_ADDR_MAX UINT64_MAX
20 #define TARGET_FMT_plx "%016" PRIx64
21 #endif
22 #endif
24 #endif