From: Richard Henderson <rth@twiddle.net>
To: qemu-devel@nongnu.org
Cc: afaerber@suse.de, aurelien@aurel32.net
Subject: [Qemu-devel] [PATCH v2 00/18] tcg: decouple tcg_target_long from pointer size
Date: Thu, 29 Aug 2013 14:09:28 -0700 [thread overview]
Message-ID: <1377810586-19931-1-git-send-email-rth@twiddle.net> (raw)
Changes v1-v2:
* Rebased vs master, resolving trivial conflicts
* Added a comment in patch 17, as requested during review
* For patch 1, Andreas and I appear to disagree on which change is more
appropriate. I did re-word the commit message to better explain my
rationale, but I did not change the patch itself.
The patch set is available from
git://github.com/rth7680/qemu.git x32
r~
Richard Henderson (18):
qtest: Fix FMT_timeval vs time_t
tcg: Change flush_icache_range arguments to uintptr_t
tcg: Change tcg_qemu_tb_exec return to uintptr_t
tcg: Fix next_tb type in cpu_exec
tcg: Allow TCG_TARGET_REG_BITS to be specified independantly
tcg: Define TCG_TYPE_PTR properly
tcg: Define TCG_ptr properly
tcg: Change frame pointer offsets to intptr_t
tcg: Change memory offsets to intptr_t
tcg: Change relocation offsets to intptr_t
tcg: Use uintptr_t in TCGHelperInfo
tcg: Change tcg_gen_exit_tb argument to uintptr_t
tcg: Change tcg_out_ld/st offset to intptr_t
tcg: Use appropriate types in tcg_reg_alloc_call
tcg: Fix jit debug for x32
tcg-i386: Use intptr_t appropriately
tcg-i386: Adjust tcg_out_tlb_load for x32
configure: Allow x32 as a host
configure | 27 ++++++++-----
cpu-exec.c | 4 +-
include/exec/gen-icount.h | 4 +-
qtest.c | 8 ++--
target-alpha/translate.c | 8 ++--
target-arm/translate.c | 2 +-
target-cris/translate.c | 2 +-
target-i386/translate.c | 2 +-
target-lm32/translate.c | 2 +-
target-m68k/translate.c | 2 +-
target-microblaze/translate.c | 2 +-
target-mips/translate.c | 2 +-
target-moxie/translate.c | 2 +-
target-openrisc/translate.c | 2 +-
target-ppc/translate.c | 2 +-
target-s390x/translate.c | 8 ++--
target-sh4/translate.c | 2 +-
target-sparc/translate.c | 2 +-
target-unicore32/translate.c | 2 +-
target-xtensa/translate.c | 2 +-
tcg/aarch64/tcg-target.c | 6 +--
tcg/aarch64/tcg-target.h | 3 +-
tcg/arm/tcg-target.c | 12 +++---
tcg/arm/tcg-target.h | 9 ++---
tcg/hppa/tcg-target.c | 14 ++++---
tcg/hppa/tcg-target.h | 7 +---
tcg/i386/tcg-target.c | 88 ++++++++++++++++++++++++-------------------
tcg/i386/tcg-target.h | 13 ++++---
tcg/ia64/tcg-target.c | 18 ++++-----
tcg/ia64/tcg-target.h | 3 +-
tcg/mips/tcg-target.c | 20 +++++-----
tcg/mips/tcg-target.h | 3 +-
tcg/ppc/tcg-target.c | 10 ++---
tcg/ppc/tcg-target.h | 2 +-
tcg/ppc64/tcg-target.c | 10 ++---
tcg/s390/tcg-target.c | 10 ++---
tcg/s390/tcg-target.h | 3 +-
tcg/sparc/tcg-target.c | 10 ++---
tcg/sparc/tcg-target.h | 20 ++++++----
tcg/tcg-op.h | 2 +-
tcg/tcg.c | 60 +++++++++++++----------------
tcg/tcg.h | 60 +++++++++++++++--------------
tcg/tci/tcg-target.c | 6 +--
tcg/tci/tcg-target.h | 13 +++++--
tci.c | 4 +-
45 files changed, 257 insertions(+), 236 deletions(-)
--
1.8.1.4
next reply other threads:[~2013-08-29 21:10 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-29 21:09 Richard Henderson [this message]
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 01/18] qtest: Fix FMT_timeval vs time_t Richard Henderson
2013-09-02 11:10 ` Aurelien Jarno
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 02/18] tcg: Change flush_icache_range arguments to uintptr_t Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 03/18] tcg: Change tcg_qemu_tb_exec return " Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 04/18] tcg: Fix next_tb type in cpu_exec Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 05/18] tcg: Allow TCG_TARGET_REG_BITS to be specified independantly Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 06/18] tcg: Define TCG_TYPE_PTR properly Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 07/18] tcg: Define TCG_ptr properly Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 08/18] tcg: Change frame pointer offsets to intptr_t Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 09/18] tcg: Change memory " Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 10/18] tcg: Change relocation " Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 11/18] tcg: Use uintptr_t in TCGHelperInfo Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 12/18] tcg: Change tcg_gen_exit_tb argument to uintptr_t Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 13/18] tcg: Change tcg_out_ld/st offset to intptr_t Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 14/18] tcg: Use appropriate types in tcg_reg_alloc_call Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 15/18] tcg: Fix jit debug for x32 Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 16/18] tcg-i386: Use intptr_t appropriately Richard Henderson
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 17/18] tcg-i386: Adjust tcg_out_tlb_load for x32 Richard Henderson
2013-09-02 11:10 ` Aurelien Jarno
2013-08-29 21:09 ` [Qemu-devel] [PATCH v2 18/18] configure: Allow x32 as a host Richard Henderson
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=1377810586-19931-1-git-send-email-rth@twiddle.net \
--to=rth@twiddle.net \
--cc=afaerber@suse.de \
--cc=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.org \
/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).