exec/memory_ldst_cached: Sort declarations
To ease the file review, sort the declarations by the size of the access (8, 16, 32). Simple code movement, no logical change. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20210518183655.1711377-2-philmd@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
0319ad22bd
commit
0a73d7ac9a
@ -24,6 +24,18 @@
|
|||||||
#define LD_P(size) \
|
#define LD_P(size) \
|
||||||
glue(glue(ld, size), glue(ENDIANNESS, _p))
|
glue(glue(ld, size), glue(ENDIANNESS, _p))
|
||||||
|
|
||||||
|
static inline uint32_t ADDRESS_SPACE_LD_CACHED(uw)(MemoryRegionCache *cache,
|
||||||
|
hwaddr addr, MemTxAttrs attrs, MemTxResult *result)
|
||||||
|
{
|
||||||
|
assert(addr < cache->len && 2 <= cache->len - addr);
|
||||||
|
fuzz_dma_read_cb(cache->xlat + addr, 2, cache->mrs.mr);
|
||||||
|
if (likely(cache->ptr)) {
|
||||||
|
return LD_P(uw)(cache->ptr + addr);
|
||||||
|
} else {
|
||||||
|
return ADDRESS_SPACE_LD_CACHED_SLOW(uw)(cache, addr, attrs, result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static inline uint32_t ADDRESS_SPACE_LD_CACHED(l)(MemoryRegionCache *cache,
|
static inline uint32_t ADDRESS_SPACE_LD_CACHED(l)(MemoryRegionCache *cache,
|
||||||
hwaddr addr, MemTxAttrs attrs, MemTxResult *result)
|
hwaddr addr, MemTxAttrs attrs, MemTxResult *result)
|
||||||
{
|
{
|
||||||
@ -48,18 +60,6 @@ static inline uint64_t ADDRESS_SPACE_LD_CACHED(q)(MemoryRegionCache *cache,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline uint32_t ADDRESS_SPACE_LD_CACHED(uw)(MemoryRegionCache *cache,
|
|
||||||
hwaddr addr, MemTxAttrs attrs, MemTxResult *result)
|
|
||||||
{
|
|
||||||
assert(addr < cache->len && 2 <= cache->len - addr);
|
|
||||||
fuzz_dma_read_cb(cache->xlat + addr, 2, cache->mrs.mr);
|
|
||||||
if (likely(cache->ptr)) {
|
|
||||||
return LD_P(uw)(cache->ptr + addr);
|
|
||||||
} else {
|
|
||||||
return ADDRESS_SPACE_LD_CACHED_SLOW(uw)(cache, addr, attrs, result);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#undef ADDRESS_SPACE_LD_CACHED
|
#undef ADDRESS_SPACE_LD_CACHED
|
||||||
#undef ADDRESS_SPACE_LD_CACHED_SLOW
|
#undef ADDRESS_SPACE_LD_CACHED_SLOW
|
||||||
#undef LD_P
|
#undef LD_P
|
||||||
@ -71,17 +71,6 @@ static inline uint32_t ADDRESS_SPACE_LD_CACHED(uw)(MemoryRegionCache *cache,
|
|||||||
#define ST_P(size) \
|
#define ST_P(size) \
|
||||||
glue(glue(st, size), glue(ENDIANNESS, _p))
|
glue(glue(st, size), glue(ENDIANNESS, _p))
|
||||||
|
|
||||||
static inline void ADDRESS_SPACE_ST_CACHED(l)(MemoryRegionCache *cache,
|
|
||||||
hwaddr addr, uint32_t val, MemTxAttrs attrs, MemTxResult *result)
|
|
||||||
{
|
|
||||||
assert(addr < cache->len && 4 <= cache->len - addr);
|
|
||||||
if (likely(cache->ptr)) {
|
|
||||||
ST_P(l)(cache->ptr + addr, val);
|
|
||||||
} else {
|
|
||||||
ADDRESS_SPACE_ST_CACHED_SLOW(l)(cache, addr, val, attrs, result);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void ADDRESS_SPACE_ST_CACHED(w)(MemoryRegionCache *cache,
|
static inline void ADDRESS_SPACE_ST_CACHED(w)(MemoryRegionCache *cache,
|
||||||
hwaddr addr, uint32_t val, MemTxAttrs attrs, MemTxResult *result)
|
hwaddr addr, uint32_t val, MemTxAttrs attrs, MemTxResult *result)
|
||||||
{
|
{
|
||||||
@ -93,6 +82,17 @@ static inline void ADDRESS_SPACE_ST_CACHED(w)(MemoryRegionCache *cache,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void ADDRESS_SPACE_ST_CACHED(l)(MemoryRegionCache *cache,
|
||||||
|
hwaddr addr, uint32_t val, MemTxAttrs attrs, MemTxResult *result)
|
||||||
|
{
|
||||||
|
assert(addr < cache->len && 4 <= cache->len - addr);
|
||||||
|
if (likely(cache->ptr)) {
|
||||||
|
ST_P(l)(cache->ptr + addr, val);
|
||||||
|
} else {
|
||||||
|
ADDRESS_SPACE_ST_CACHED_SLOW(l)(cache, addr, val, attrs, result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static inline void ADDRESS_SPACE_ST_CACHED(q)(MemoryRegionCache *cache,
|
static inline void ADDRESS_SPACE_ST_CACHED(q)(MemoryRegionCache *cache,
|
||||||
hwaddr addr, uint64_t val, MemTxAttrs attrs, MemTxResult *result)
|
hwaddr addr, uint64_t val, MemTxAttrs attrs, MemTxResult *result)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user