mirror of https://github.com/xqemu/xqemu.git
translate-all: define and use DEBUG_TB_INVALIDATE_GATE
This gets rid of an ifdef check while ensuring that the debug code is compiled, which prevents bit rot. Suggested-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
67a5b5d2f6
commit
dae9e03aed
|
@ -65,6 +65,12 @@
|
||||||
/* make various TB consistency checks */
|
/* make various TB consistency checks */
|
||||||
/* #define DEBUG_TB_CHECK */
|
/* #define DEBUG_TB_CHECK */
|
||||||
|
|
||||||
|
#ifdef DEBUG_TB_INVALIDATE
|
||||||
|
#define DEBUG_TB_INVALIDATE_GATE 1
|
||||||
|
#else
|
||||||
|
#define DEBUG_TB_INVALIDATE_GATE 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG_TB_FLUSH
|
#ifdef DEBUG_TB_FLUSH
|
||||||
#define DEBUG_TB_FLUSH_GATE 1
|
#define DEBUG_TB_FLUSH_GATE 1
|
||||||
#else
|
#else
|
||||||
|
@ -1192,9 +1198,9 @@ static inline void tb_alloc_page(TranslationBlock *tb,
|
||||||
}
|
}
|
||||||
mprotect(g2h(page_addr), qemu_host_page_size,
|
mprotect(g2h(page_addr), qemu_host_page_size,
|
||||||
(prot & PAGE_BITS) & ~PAGE_WRITE);
|
(prot & PAGE_BITS) & ~PAGE_WRITE);
|
||||||
#ifdef DEBUG_TB_INVALIDATE
|
if (DEBUG_TB_INVALIDATE_GATE) {
|
||||||
printf("protecting code page: 0x" TB_PAGE_ADDR_FMT "\n", page_addr);
|
printf("protecting code page: 0x" TB_PAGE_ADDR_FMT "\n", page_addr);
|
||||||
#endif
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
/* if some code is already present, then the pages are already
|
/* if some code is already present, then the pages are already
|
||||||
|
|
Loading…
Reference in New Issue