From: Richard Henderson <richard.henderson@linaro.org>
To: Anton Johansson <anjo@rev.ng>, qemu-devel@nongnu.org
Cc: ale@rev.ng, pbonzini@redhat.com, eduardo@habkost.net,
philmd@linaro.org, marcel.apfelbaum@gmail.com,
wangyanan55@huawei.com
Subject: Re: [PATCH v3 00/12] Start replacing target_ulong with vaddr
Date: Fri, 23 Jun 2023 07:51:13 +0200 [thread overview]
Message-ID: <8eb6866b-1b2f-99b3-d42a-4e5808727a88@linaro.org> (raw)
In-Reply-To: <20230621135633.1649-1-anjo@rev.ng>
On 6/21/23 15:56, Anton Johansson wrote:
> This is a first patchset in removing target_ulong from non-target/
> directories. As use of target_ulong is spread accross the codebase we
> are attempting to target as few maintainers as possible with each
> patchset in order to ease reviewing.
>
> The following instances of target_ulong remain in accel/ and tcg/
> - atomic helpers (atomic_common.c.inc), cpu_atomic_*()
> (atomic_template.h,) and cpu_[st|ld]*()
> (cputlb.c/ldst_common.c.inc) are only used in target/ and can
> be pulled out into a separate target-specific file;
>
> - walk_memory_regions() is used in user-exec.c and
> linux-user/elfload.c;
>
> - kvm_find_sw_breakpoint() in kvm-all.c used in target/;
>
> Changes in v2:
> - addr argument in tb_invalidate_phys_addr() changed from vaddr
> to hwaddr;
>
> - Removed previous patch:
>
> "[PATCH 4/8] accel/tcg: Replace target_ulong with vaddr in helper_unaligned_*()"
>
> as these functions are removed by Richard's patches;
>
> - First patch:
>
> "[PATCH 1/8] accel: Replace `target_ulong` with `vaddr` in TB/TLB"
>
> has been split into patches 1-7 to ease reviewing;
>
> - Pulled in target/ changes to cpu_get_tb_cpu_state() into this
> patchset. This was done to avoid pointer casts to target_ulong *
> which would break for 32-bit targets on a 64-bit BE host;
>
> Note the small target/ changes are collected in a single
> patch to not break bisection. If it's still desirable to split
> based on maintainer, let me know;
>
> - `last` argument of pageflags_[find|next] changed from target_long
> to vaddr. This change was left out of the last patchset due to
> triggering a "Bad ram pointer" error (softmmu/physmem.c:2273)
> when running make check for a i386-softmmu target.
>
> I was not able to recreate this on master or post rebase on
> Richard's tcg-once branch.
>
> Changes in v3:
> - Rebased on master
>
> Finally, the grand goal is to allow for heterogeneous QEMU binaries
> consisting of multiple frontends.
>
> RFC: https://lists.nongnu.org/archive/html/qemu-devel/2022-12/msg04518.html
>
> Anton Johansson (12):
> accel: Replace target_ulong in tlb_*()
> accel/tcg/translate-all.c: Widen pc and cs_base
> target: Widen pc/cs_base in cpu_get_tb_cpu_state
> accel/tcg/cputlb.c: Widen CPUTLBEntry access functions
> accel/tcg/cputlb.c: Widen addr in MMULookupPageData
> accel/tcg/cpu-exec.c: Widen pc to vaddr
> accel/tcg: Widen pc to vaddr in CPUJumpCache
> accel: Replace target_ulong with vaddr in probe_*()
> accel/tcg: Replace target_ulong with vaddr in *_mmu_lookup()
> accel/tcg: Replace target_ulong with vaddr in translator_*()
> accel/tcg: Replace target_ulong with vaddr in page_*()
> cpu: Replace target_ulong with hwaddr in tb_invalidate_phys_addr()
>
> accel/stubs/tcg-stub.c | 6 +-
> accel/tcg/cpu-exec.c | 43 ++++---
> accel/tcg/cputlb.c | 233 +++++++++++++++++------------------
> accel/tcg/internal.h | 6 +-
> accel/tcg/tb-hash.h | 12 +-
> accel/tcg/tb-jmp-cache.h | 2 +-
> accel/tcg/tb-maint.c | 2 +-
> accel/tcg/translate-all.c | 13 +-
> accel/tcg/translator.c | 10 +-
> accel/tcg/user-exec.c | 58 +++++----
> cpu.c | 2 +-
> include/exec/cpu-all.h | 10 +-
> include/exec/cpu-defs.h | 4 +-
> include/exec/cpu_ldst.h | 10 +-
> include/exec/exec-all.h | 95 +++++++-------
> include/exec/translate-all.h | 2 +-
> include/exec/translator.h | 6 +-
> include/qemu/plugin-memory.h | 2 +-
> target/alpha/cpu.h | 4 +-
> target/arm/cpu.h | 4 +-
> target/arm/helper.c | 4 +-
> target/avr/cpu.h | 4 +-
> target/cris/cpu.h | 4 +-
> target/hexagon/cpu.h | 4 +-
> target/hppa/cpu.h | 5 +-
> target/i386/cpu.h | 4 +-
> target/loongarch/cpu.h | 6 +-
> target/m68k/cpu.h | 4 +-
> target/microblaze/cpu.h | 4 +-
> target/mips/cpu.h | 4 +-
> target/nios2/cpu.h | 4 +-
> target/openrisc/cpu.h | 5 +-
> target/ppc/cpu.h | 8 +-
> target/ppc/helper_regs.c | 4 +-
> target/riscv/cpu.h | 4 +-
> target/riscv/cpu_helper.c | 4 +-
> target/rx/cpu.h | 4 +-
> target/s390x/cpu.h | 4 +-
> target/sh4/cpu.h | 4 +-
> target/sparc/cpu.h | 4 +-
> target/tricore/cpu.h | 4 +-
> target/xtensa/cpu.h | 4 +-
> 42 files changed, 307 insertions(+), 313 deletions(-)
>
> --
> 2.41.0
Queued to tcg-next, thanks.
r~
prev parent reply other threads:[~2023-06-23 5:51 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-21 13:56 [PATCH v3 00/12] Start replacing target_ulong with vaddr Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 01/12] accel: Replace target_ulong in tlb_*() Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 02/12] accel/tcg/translate-all.c: Widen pc and cs_base Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 03/12] target: Widen pc/cs_base in cpu_get_tb_cpu_state Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 04/12] accel/tcg/cputlb.c: Widen CPUTLBEntry access functions Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 05/12] accel/tcg/cputlb.c: Widen addr in MMULookupPageData Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 06/12] accel/tcg/cpu-exec.c: Widen pc to vaddr Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 07/12] accel/tcg: Widen pc to vaddr in CPUJumpCache Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 08/12] accel: Replace target_ulong with vaddr in probe_*() Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 09/12] accel/tcg: Replace target_ulong with vaddr in *_mmu_lookup() Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 10/12] accel/tcg: Replace target_ulong with vaddr in translator_*() Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 11/12] accel/tcg: Replace target_ulong with vaddr in page_*() Anton Johansson via
2023-06-26 13:59 ` Richard Henderson
2023-06-26 15:04 ` Anton Johansson via
2023-06-21 13:56 ` [PATCH v3 12/12] cpu: Replace target_ulong with hwaddr in tb_invalidate_phys_addr() Anton Johansson via
2023-06-23 5:51 ` Richard Henderson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8eb6866b-1b2f-99b3-d42a-4e5808727a88@linaro.org \
--to=richard.henderson@linaro.org \
--cc=ale@rev.ng \
--cc=anjo@rev.ng \
--cc=eduardo@habkost.net \
--cc=marcel.apfelbaum@gmail.com \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=wangyanan55@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).