exec: Rename USUFFIX to LSUFFIX
In a following patch, there will be confusion between multiple "unsigned" suffixes; rename this one so as to imply "load". Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
5bcebc253c
commit
701e3a5cc0
@ -28,19 +28,19 @@
|
|||||||
|
|
||||||
#if DATA_SIZE == 8
|
#if DATA_SIZE == 8
|
||||||
#define SUFFIX q
|
#define SUFFIX q
|
||||||
#define USUFFIX q
|
#define LSUFFIX q
|
||||||
#define DATA_TYPE uint64_t
|
#define DATA_TYPE uint64_t
|
||||||
#elif DATA_SIZE == 4
|
#elif DATA_SIZE == 4
|
||||||
#define SUFFIX l
|
#define SUFFIX l
|
||||||
#define USUFFIX l
|
#define LSUFFIX l
|
||||||
#define DATA_TYPE uint32_t
|
#define DATA_TYPE uint32_t
|
||||||
#elif DATA_SIZE == 2
|
#elif DATA_SIZE == 2
|
||||||
#define SUFFIX w
|
#define SUFFIX w
|
||||||
#define USUFFIX uw
|
#define LSUFFIX uw
|
||||||
#define DATA_TYPE uint16_t
|
#define DATA_TYPE uint16_t
|
||||||
#elif DATA_SIZE == 1
|
#elif DATA_SIZE == 1
|
||||||
#define SUFFIX b
|
#define SUFFIX b
|
||||||
#define USUFFIX ub
|
#define LSUFFIX ub
|
||||||
#define DATA_TYPE uint8_t
|
#define DATA_TYPE uint8_t
|
||||||
#else
|
#else
|
||||||
#error unsupported data size
|
#error unsupported data size
|
||||||
@ -147,7 +147,7 @@ glue(glue(helper_ret_ld, SUFFIX), MMUSUFFIX)(CPUArchState *env,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
haddr = addr + env->tlb_table[mmu_idx][index].addend;
|
haddr = addr + env->tlb_table[mmu_idx][index].addend;
|
||||||
return glue(glue(ld, USUFFIX), _raw)((uint8_t *)haddr);
|
return glue(glue(ld, LSUFFIX), _raw)((uint8_t *)haddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
DATA_TYPE
|
DATA_TYPE
|
||||||
@ -264,6 +264,6 @@ glue(glue(helper_st, SUFFIX), MMUSUFFIX)(CPUArchState *env, target_ulong addr,
|
|||||||
#undef SHIFT
|
#undef SHIFT
|
||||||
#undef DATA_TYPE
|
#undef DATA_TYPE
|
||||||
#undef SUFFIX
|
#undef SUFFIX
|
||||||
#undef USUFFIX
|
#undef LSUFFIX
|
||||||
#undef DATA_SIZE
|
#undef DATA_SIZE
|
||||||
#undef ADDR_READ
|
#undef ADDR_READ
|
||||||
|
Loading…
Reference in New Issue
Block a user