From f778c02bbcf87da18fafdc320f7ebc9e2d893503 Mon Sep 17 00:00:00 2001 From: "Emilio G. Cota" Date: Mon, 5 Mar 2018 02:50:23 -0500 Subject: [PATCH] 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. Backports commit dae9e03aed8e652f5dce2e5cab05dff83aa193b8 from qemu --- qemu/translate-all.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/qemu/translate-all.c b/qemu/translate-all.c index f79f8f48..976d0761 100644 --- a/qemu/translate-all.c +++ b/qemu/translate-all.c @@ -66,6 +66,12 @@ /* make various TB consistency checks */ /* #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 #define DEBUG_TB_FLUSH_GATE 1 #else @@ -1249,9 +1255,9 @@ static inline void tb_alloc_page(struct uc_struct *uc, TranslationBlock *tb, } mprotect(g2h(page_addr), uc->qemu_host_page_size, (prot & PAGE_BITS) & ~PAGE_WRITE); -#ifdef DEBUG_TB_INVALIDATE - printf("protecting code page: 0x" TB_PAGE_ADDR_FMT "\n", page_addr); -#endif + if (DEBUG_TB_INVALIDATE_GATE) { + printf("protecting code page: 0x" TB_PAGE_ADDR_FMT "\n", page_addr); + } } #else /* if some code is already present, then the pages are already