From: Richard Henderson <rth@twiddle.net>
To: qemu-devel@nongnu.org
Cc: ulrich.weigand@de.ibm.com, av1474@comtv.ru
Subject: [Qemu-devel] [PATCH 00/26] Merge ppc32/ppc64 tcg backends
Date: Thu, 1 May 2014 08:44:21 -0700 [thread overview]
Message-ID: <1398959087-23590-1-git-send-email-rth@twiddle.net> (raw)
The ppc32 backend isn't getting much love and attention recently, with
all of the improvements coming from me into the ppc64 backend. Let's
reduce the maint burden a bit and combine them.
This does have a few other patches that are not strictly related to the
merge of the backends, such as addition of ELFv2 support, but I think
those come naturally at the point we're merging the two other ABIs from
the 32-bit port.
Please review, and if you've got an ELFv2 system (nudge nudge), please
give it a try and make sure it works.
This is based on my tcg call/mov cleanup branch. Full tree is at
git://github.com/rth7680/qemu.git tcg-ppc-merge
r~
Richard Henderson (25):
tcg-ppc: Use uintptr_t in ppc_tb_set_jmp_target
tcg-ppc64: Avoid some hard-codings of TCG_TYPE_I64
tcg-ppc64: Move functions around
tcg-ppc64: Relax register restrictions in tcg_out_mem_long
tcg-ppc64: Use tcg_out_{ld,st,cmp} internally
tcg-ppc64: Make TCG_AREG0 and TCG_REG_CALL_STACK enum constants
tcg-ppc64: Move call macros out of tcg-target.h
tcg-ppc64: Fix TCG_TARGET_CALL_STACK_OFFSET
tcg-ppc64: Better parameterize the stack frame
tcg-ppc64: Use the correct test in tcg_out_call
tcg-ppc64: Support the ppc64 elfv2 ABI
tcg-ppc64: Merge 32-bit ABIs into the prologue / frame code
tcg-ppc64: Fix sub2 implementation
tcg-ppc64: Begin merging ppc32 with ppc64
tcg-ppc64: Merge ppc32 brcond2, setcond2, muluh
tcg-ppc64: Merge ppc32 qemu_ld/st
tcg-ppc64: Merge ppc32 register usage
tcg-ppc64: Support mulsh_i32
tcg-ppc64: Merge ppc32 shifts
tcg-ppc: Remove the backend
tcg-ppc: Rename the tcg/ppc64 backend
qemu/osdep: Remove the need for qemu_init_auxval
tcg-ppc: Merge cache-utils into the backend
tcg-ppc64: Use the return address as a base pointer
tcg-ppc: Streamline USE_DIRECT_JUMP
Ulrich Weigand (1):
tcg-ppc64: Adjust tcg_out_call for ELFv2
configure | 2 +
exec.c | 1 -
include/exec/exec-all.h | 2 +-
include/qemu/cache-utils.h | 44 -
include/qemu/osdep.h | 12 -
linux-user/main.c | 4 -
tcg/ppc/tcg-target.c | 3211 +++++++++++++++++++++++++++-----------------
tcg/ppc/tcg-target.h | 116 +-
tcg/ppc64/tcg-target.c | 2186 ------------------------------
tcg/ppc64/tcg-target.h | 133 --
tcg/tcg.c | 1 -
translate-all.c | 2 +
util/Makefile.objs | 2 +-
util/cache-utils.c | 86 --
util/getauxval.c | 51 +-
vl.c | 4 -
16 files changed, 2117 insertions(+), 3740 deletions(-)
delete mode 100644 include/qemu/cache-utils.h
delete mode 100644 tcg/ppc64/tcg-target.c
delete mode 100644 tcg/ppc64/tcg-target.h
delete mode 100644 util/cache-utils.c
--
1.9.0
next reply other threads:[~2014-05-01 15:45 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-01 15:44 Richard Henderson [this message]
2014-05-01 15:44 ` [Qemu-devel] [PATCH 01/26] tcg-ppc: Use uintptr_t in ppc_tb_set_jmp_target Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 02/26] tcg-ppc64: Avoid some hard-codings of TCG_TYPE_I64 Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 03/26] tcg-ppc64: Move functions around Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 04/26] tcg-ppc64: Relax register restrictions in tcg_out_mem_long Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 05/26] tcg-ppc64: Use tcg_out_{ld, st, cmp} internally Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 06/26] tcg-ppc64: Make TCG_AREG0 and TCG_REG_CALL_STACK enum constants Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 07/26] tcg-ppc64: Move call macros out of tcg-target.h Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 08/26] tcg-ppc64: Fix TCG_TARGET_CALL_STACK_OFFSET Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 09/26] tcg-ppc64: Better parameterize the stack frame Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 10/26] tcg-ppc64: Use the correct test in tcg_out_call Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 11/26] tcg-ppc64: Support the ppc64 elfv2 ABI Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 12/26] tcg-ppc64: Adjust tcg_out_call for ELFv2 Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 13/26] tcg-ppc64: Merge 32-bit ABIs into the prologue / frame code Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 14/26] tcg-ppc64: Fix sub2 implementation Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 15/26] tcg-ppc64: Begin merging ppc32 with ppc64 Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 16/26] tcg-ppc64: Merge ppc32 brcond2, setcond2, muluh Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 17/26] tcg-ppc64: Merge ppc32 qemu_ld/st Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 18/26] tcg-ppc64: Merge ppc32 register usage Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 19/26] tcg-ppc64: Support mulsh_i32 Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 20/26] tcg-ppc64: Merge ppc32 shifts Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 21/26] tcg-ppc: Remove the backend Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 22/26] tcg-ppc: Rename the tcg/ppc64 backend Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 23/26] qemu/osdep: Remove the need for qemu_init_auxval Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 24/26] tcg-ppc: Merge cache-utils into the backend Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 25/26] tcg-ppc64: Use the return address as a base pointer Richard Henderson
2014-05-01 15:44 ` [Qemu-devel] [PATCH 26/26] tcg-ppc: Streamline USE_DIRECT_JUMP Richard Henderson
2014-05-02 14:56 ` [Qemu-devel] [PATCH 00/26] Merge ppc32/ppc64 tcg backends Tom Musta
2014-05-02 16:30 ` Ulrich Weigand
2014-05-02 16:43 ` Richard Henderson
2014-05-05 20:32 ` Tom Musta
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=1398959087-23590-1-git-send-email-rth@twiddle.net \
--to=rth@twiddle.net \
--cc=av1474@comtv.ru \
--cc=qemu-devel@nongnu.org \
--cc=ulrich.weigand@de.ibm.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).