Commit f57a5160 authored by Stefan Weil's avatar Stefan Weil Committed by Blue Swirl
Browse files

w64: Fix data type of parameters for flush_icache_range



flush_icache_range takes two address parameters which must be large
enough to address any address of the host.

For hosts with sizeof(unsigned long) == sizeof(void *), this patch
changes nothing. All currently supported hosts fall into this category.

For w64 hosts, sizeof(unsigned long) is 4 while sizeof(void *) is 8,
so the use of tcg_target_ulong is needed for i386 and tci (the tcg
targets which work with w64).

Signed-off-by: default avatarStefan Weil <sw@weilnetz.de>
Signed-off-by: default avatarBlue Swirl <blauwirbel@gmail.com>
parent c38bb94a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -123,6 +123,7 @@ typedef enum {
# define TCG_AREG0 TCG_REG_EBP
#endif

static inline void flush_icache_range(unsigned long start, unsigned long stop)
static inline void flush_icache_range(tcg_target_ulong start,
                                      tcg_target_ulong stop)
{
}
+2 −1
Original line number Diff line number Diff line
@@ -157,7 +157,8 @@ void tci_disas(uint8_t opc);
unsigned long tcg_qemu_tb_exec(CPUState *env, uint8_t *tb_ptr);
#define tcg_qemu_tb_exec tcg_qemu_tb_exec

static inline void flush_icache_range(unsigned long start, unsigned long stop)
static inline void flush_icache_range(tcg_target_ulong start,
                                      tcg_target_ulong stop)
{
}