From: Aurelien Jarno <aurelien@aurel32.net>
To: Richard Henderson <rth@twiddle.net>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v6 00/20] tcg-arm improvments
Date: Sat, 27 Apr 2013 02:20:23 +0200 [thread overview]
Message-ID: <20130427002023.GJ5000@ohm.aurel32.net> (raw)
In-Reply-To: <1366750012-25015-1-git-send-email-rth@twiddle.net>
On Tue, Apr 23, 2013 at 01:46:32PM -0700, Richard Henderson wrote:
> Changes v5-v6, feedback from Aurelien:
> * Drop tcg_out_goto changes.
> * Add Z constraint for deposit.
> * Small comment cleanups.
> * Rebase vs master.
>
> The following changes since commit 456736710df19c2275192269fe67a3f0b2583835:
>
> block: Fix build with tracing enabled (2013-04-22 11:31:41 -0500)
>
> are available in the git repository at:
>
> git://github.com/rth7680/qemu.git tcg-arm-2
>
> for you to fetch changes up to 1394dedd76bd16489cc2327e40df28ab2095a22e:
>
> tcg-arm: Remove long jump from tcg_out_goto_label (2013-04-23 13:34:28 -0700)
>
>
> r~
>
>
> Richard Henderson (20):
> tcg-arm: Fix local stack frame
> tcg: Log the contents of the prologue with -d out_asm
> tcg-arm: Use bic to implement and with constant
> tcg-arm: Handle negated constant arguments to and/sub
> tcg-arm: Allow constant first argument to sub
> tcg-arm: Use tcg_out_dat_rIN for compares
> tcg-arm: Handle constant arguments to add2/sub2
> tcg-arm: Improve constant generation
> tcg-arm: Implement deposit for armv7
> tcg-arm: Implement division instructions
> tcg-arm: Use TCG_REG_TMP name for the tcg temporary
> tcg-arm: Use R12 for the tcg temporary
> tcg-arm: Cleanup multiply subroutines
> tcg-arm: Cleanup most primitive load store subroutines
> tcg-arm: Split out tcg_out_tlb_read
> tcg-arm: Improve scheduling of tcg_out_tlb_read
> tcg-arm: Delete the 'S' constraint
> tcg-arm: Use movi32 + blx for calls on v7
> tcg-arm: Convert to CONFIG_QEMU_LDST_OPTIMIZATION
> tcg-arm: Remove long jump from tcg_out_goto_label
>
> configure | 2 +-
> disas/arm.c | 4 +
> include/exec/exec-all.h | 17 +
> tcg/arm/tcg-target.c | 1435 +++++++++++++++++++++++++++--------------------
> tcg/arm/tcg-target.h | 14 +-
> tcg/tcg.c | 10 +
> 6 files changed, 862 insertions(+), 620 deletions(-)
>
Thanks, I have applied this series, fixing the second patch as explained
in the corresponding mail.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
prev parent reply other threads:[~2013-04-27 0:20 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-23 20:46 [Qemu-devel] [PATCH v6 00/20] tcg-arm improvments Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 01/20] tcg-arm: Fix local stack frame Richard Henderson
2013-04-24 7:42 ` Aurelien Jarno
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 02/20] tcg: Log the contents of the prologue with -d out_asm Richard Henderson
2013-04-26 5:27 ` Aurelien Jarno
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 03/20] tcg-arm: Use bic to implement and with constant Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 04/20] tcg-arm: Handle negated constant arguments to and/sub Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 05/20] tcg-arm: Allow constant first argument to sub Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 06/20] tcg-arm: Use tcg_out_dat_rIN for compares Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 07/20] tcg-arm: Handle constant arguments to add2/sub2 Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 08/20] tcg-arm: Improve constant generation Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 09/20] tcg-arm: Implement deposit for armv7 Richard Henderson
2013-04-24 7:42 ` Aurelien Jarno
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 10/20] tcg-arm: Implement division instructions Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 11/20] tcg-arm: Use TCG_REG_TMP name for the tcg temporary Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 12/20] tcg-arm: Use R12 " Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 13/20] tcg-arm: Cleanup multiply subroutines Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 14/20] tcg-arm: Cleanup most primitive load store subroutines Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 15/20] tcg-arm: Split out tcg_out_tlb_read Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 16/20] tcg-arm: Improve scheduling of tcg_out_tlb_read Richard Henderson
2013-04-24 7:43 ` Aurelien Jarno
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 17/20] tcg-arm: Delete the 'S' constraint Richard Henderson
2013-04-24 7:43 ` Aurelien Jarno
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 18/20] tcg-arm: Use movi32 + blx for calls on v7 Richard Henderson
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 19/20] tcg-arm: Convert to CONFIG_QEMU_LDST_OPTIMIZATION Richard Henderson
2013-04-24 7:43 ` Aurelien Jarno
2013-04-23 20:46 ` [Qemu-devel] [PATCH v6 20/20] tcg-arm: Remove long jump from tcg_out_goto_label Richard Henderson
2013-04-24 7:43 ` Aurelien Jarno
2013-04-26 10:08 ` [Qemu-devel] [PATCH v6 00/20] tcg-arm improvments Peter Maydell
2013-04-27 0:20 ` Aurelien Jarno [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=20130427002023.GJ5000@ohm.aurel32.net \
--to=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).