[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 31/52] exec-all: Widen tb_page_addr_t for user-only
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v2 31/52] exec-all: Widen tb_page_addr_t for user-only |
|
Date: |
Tue, 23 May 2023 06:53:01 -0700 |
This is a step toward making TranslationBlock agnostic
to the address size of the guest.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/exec/exec-all.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h
index ecded1f112..8c8526d9f8 100644
--- a/include/exec/exec-all.h
+++ b/include/exec/exec-all.h
@@ -34,8 +34,8 @@
addresses in userspace mode. Define tb_page_addr_t to be an appropriate
type. */
#if defined(CONFIG_USER_ONLY)
-typedef abi_ulong tb_page_addr_t;
-#define TB_PAGE_ADDR_FMT TARGET_ABI_FMT_lx
+typedef vaddr tb_page_addr_t;
+#define TB_PAGE_ADDR_FMT "%" VADDR_PRIx
#else
typedef ram_addr_t tb_page_addr_t;
#define TB_PAGE_ADDR_FMT RAM_ADDR_FMT
--
2.34.1
- [PATCH v2 26/52] tcg: Add insn_start_words to TCGContext, (continued)
- [PATCH v2 26/52] tcg: Add insn_start_words to TCGContext, Richard Henderson, 2023/05/23
- [PATCH v2 30/52] tcg: Remove NO_CPU_IO_DEFS, Richard Henderson, 2023/05/23
- [PATCH v2 28/52] tcg: Move TLB_FLAGS_MASK check out of get_alignment_bits, Richard Henderson, 2023/05/23
- [PATCH v2 29/52] tcg: Split tcg/tcg-op-gvec.h, Richard Henderson, 2023/05/23
- [PATCH v2 33/52] tcg: Remove DEBUG_DISAS, Richard Henderson, 2023/05/23
- [PATCH v2 32/52] exec-all: Widen TranslationBlock pc and cs_base to 64-bits, Richard Henderson, 2023/05/23
- [PATCH v2 24/52] tcg: Split helper-gen.h, Richard Henderson, 2023/05/23
- [PATCH v2 36/52] include/exec: Remove CODE_GEN_AVG_BLOCK_SIZE, Richard Henderson, 2023/05/23
- [PATCH v2 31/52] exec-all: Widen tb_page_addr_t for user-only,
Richard Henderson <=
- [PATCH v2 37/52] accel/tcg: Move most of gen-icount.h into translator.c, Richard Henderson, 2023/05/23
- [PATCH v2 27/52] tcg: Add guest_mo to TCGContext, Richard Henderson, 2023/05/23
- [PATCH v2 39/52] accel/tcg: Move translator_fake_ldb out of line, Richard Henderson, 2023/05/23
- [PATCH v2 38/52] accel/tcg: Introduce translator_io_start, Richard Henderson, 2023/05/23
- [PATCH v2 34/52] tcg: Remove USE_TCG_OPTIMIZATIONS, Richard Henderson, 2023/05/23
- [PATCH v2 41/52] target/mips: Tidy helpers for translation, Richard Henderson, 2023/05/23
- [PATCH v2 42/52] *: Add missing includes of exec/translation-block.h, Richard Henderson, 2023/05/23
- [PATCH v2 40/52] target/arm: Tidy helpers for translation, Richard Henderson, 2023/05/23
- [PATCH v2 45/52] tcg: Define IN_TCG, Richard Henderson, 2023/05/23