mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time being. Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
bc6291a1b9
commit
99a0949b72
316 changed files with 3325 additions and 3332 deletions
|
@ -49,7 +49,7 @@
|
|||
static DATA_TYPE glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
|
||||
int mmu_idx,
|
||||
void *retaddr);
|
||||
static inline DATA_TYPE glue(io_read, SUFFIX)(target_phys_addr_t physaddr,
|
||||
static inline DATA_TYPE glue(io_read, SUFFIX)(a_target_phys_addr physaddr,
|
||||
target_ulong addr,
|
||||
void *retaddr)
|
||||
{
|
||||
|
@ -85,7 +85,7 @@ DATA_TYPE REGPARM glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
|
|||
DATA_TYPE res;
|
||||
int index;
|
||||
target_ulong tlb_addr;
|
||||
target_phys_addr_t addend;
|
||||
a_target_phys_addr addend;
|
||||
void *retaddr;
|
||||
|
||||
/* test if there is match for unaligned or IO access */
|
||||
|
@ -141,7 +141,7 @@ static DATA_TYPE glue(glue(slow_ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
|
|||
{
|
||||
DATA_TYPE res, res1, res2;
|
||||
int index, shift;
|
||||
target_phys_addr_t addend;
|
||||
a_target_phys_addr addend;
|
||||
target_ulong tlb_addr, addr1, addr2;
|
||||
|
||||
index = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1);
|
||||
|
@ -191,7 +191,7 @@ static void glue(glue(slow_st, SUFFIX), MMUSUFFIX)(target_ulong addr,
|
|||
int mmu_idx,
|
||||
void *retaddr);
|
||||
|
||||
static inline void glue(io_write, SUFFIX)(target_phys_addr_t physaddr,
|
||||
static inline void glue(io_write, SUFFIX)(a_target_phys_addr physaddr,
|
||||
DATA_TYPE val,
|
||||
target_ulong addr,
|
||||
void *retaddr)
|
||||
|
@ -223,7 +223,7 @@ void REGPARM glue(glue(__st, SUFFIX), MMUSUFFIX)(target_ulong addr,
|
|||
DATA_TYPE val,
|
||||
int mmu_idx)
|
||||
{
|
||||
target_phys_addr_t addend;
|
||||
a_target_phys_addr addend;
|
||||
target_ulong tlb_addr;
|
||||
void *retaddr;
|
||||
int index;
|
||||
|
@ -276,7 +276,7 @@ static void glue(glue(slow_st, SUFFIX), MMUSUFFIX)(target_ulong addr,
|
|||
int mmu_idx,
|
||||
void *retaddr)
|
||||
{
|
||||
target_phys_addr_t addend;
|
||||
a_target_phys_addr addend;
|
||||
target_ulong tlb_addr;
|
||||
int index, i;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue