mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-24 13:05:11 +00:00
exec-all: introduce TB_PAGE_ADDR_FMT
And fix the following warning when DEBUG_TB_INVALIDATE is enabled in translate-all.c: CC mipsn32-linux-user/accel/tcg/translate-all.o /data/src/qemu/accel/tcg/translate-all.c: In function ‘tb_alloc_page’: /data/src/qemu/accel/tcg/translate-all.c:1201:16: error: format ‘%lx’ expects argument of type ‘long unsigned int’, but argument 2 has type ‘tb_page_addr_t {aka unsigned int}’ [-Werror=format=] printf("protecting code page: 0x" TARGET_FMT_lx "\n", ^ cc1: all warnings being treated as errors /data/src/qemu/rules.mak:66: recipe for target 'accel/tcg/translate-all.o' failed make[1]: *** [accel/tcg/translate-all.o] Error 1 Makefile:328: recipe for target 'subdir-mipsn32-linux-user' failed make: *** [subdir-mipsn32-linux-user] Error 2 cota@flamenco:/data/src/qemu/build ((18f3fe1...) *$)$ Backports commit 67a5b5d2f6eb6d3b980570223ba5c478487ddb6f from qemu
This commit is contained in:
parent
79f53cf97b
commit
5fc83f3eb2
|
@ -31,8 +31,10 @@
|
||||||
type. */
|
type. */
|
||||||
#if defined(CONFIG_USER_ONLY)
|
#if defined(CONFIG_USER_ONLY)
|
||||||
typedef abi_ulong tb_page_addr_t;
|
typedef abi_ulong tb_page_addr_t;
|
||||||
|
#define TB_PAGE_ADDR_FMT TARGET_ABI_FMT_lx
|
||||||
#else
|
#else
|
||||||
typedef ram_addr_t tb_page_addr_t;
|
typedef ram_addr_t tb_page_addr_t;
|
||||||
|
#define TB_PAGE_ADDR_FMT RAM_ADDR_FMT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "qemu/log.h"
|
#include "qemu/log.h"
|
||||||
|
|
|
@ -1250,8 +1250,7 @@ static inline void tb_alloc_page(struct uc_struct *uc, TranslationBlock *tb,
|
||||||
mprotect(g2h(page_addr), uc->qemu_host_page_size,
|
mprotect(g2h(page_addr), uc->qemu_host_page_size,
|
||||||
(prot & PAGE_BITS) & ~PAGE_WRITE);
|
(prot & PAGE_BITS) & ~PAGE_WRITE);
|
||||||
#ifdef DEBUG_TB_INVALIDATE
|
#ifdef DEBUG_TB_INVALIDATE
|
||||||
printf("protecting code page: 0x" TARGET_FMT_lx "\n",
|
printf("protecting code page: 0x" TB_PAGE_ADDR_FMT "\n", page_addr);
|
||||||
page_addr);
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue