qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <rth@twiddle.net>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org
Subject: [Qemu-devel] [PULL v3 00/18] tcg queued patches
Date: Mon, 12 Sep 2016 16:39:34 -0700	[thread overview]
Message-ID: <1473723592-524-1-git-send-email-rth@twiddle.net> (raw)

Mostly the same as v2, except rebased and the tcg/mips patch
adjusted for the mips32r6 discussion with Leon.


r~


The following changes since commit c2a57aae9a1c3dd7de77daf5478df10379aeeebf:

  Merge remote-tracking branch 'remotes/famz/tags/docker-pull-request' into staging (2016-09-09 12:49:41 +0100)

are available in the git repository at:

  git://github.com/rth7680/qemu.git tags/pull-tcg-20160912

for you to fetch changes up to 3c8951649d996facd9581752b87b6c09d2dbab06:

  tcg: Optimize fence instructions (2016-09-12 16:29:50 -0700)

----------------------------------------------------------------
queued tcg patches

----------------------------------------------------------------
Pranith Kumar (15):
      Introduce TCGOpcode for memory barrier
      tcg/i386: Add support for fence
      tcg/aarch64: Add support for fence
      tcg/arm: Add support for fence
      tcg/ia64: Add support for fence
      tcg/mips: Add support for fence
      tcg/ppc: Add support for fence
      tcg/s390: Add support for fence
      tcg/sparc: Add support for fence
      tcg/tci: Add support for fence
      target-arm: Generate fences in ARMv7 frontend
      target-alpha: Generate fence op
      target-aarch64: Generate fences for aarch64
      target-i386: Generate fences for x86
      tcg: Optimize fence instructions

Richard Henderson (3):
      tcg: Support arbitrary size + alignment
      tcg: Merge GETPC and GETRA
      cpu-exec: Check -dfilter for -d cpu

 cpu-exec.c                   |  3 +-
 cputlb.c                     |  6 ++--
 include/exec/exec-all.h      |  9 ++---
 softmmu_template.h           | 48 ++++++++------------------
 target-alpha/translate.c     |  4 +--
 target-arm/helper.c          |  6 ++--
 target-arm/translate-a64.c   | 14 +++++++-
 target-arm/translate.c       |  4 +--
 target-i386/translate.c      |  8 +++++
 target-mips/op_helper.c      | 18 +++++-----
 tcg/README                   | 17 ++++++++++
 tcg/aarch64/tcg-target.inc.c | 35 +++++++++++++++----
 tcg/arm/tcg-target.inc.c     | 37 ++++++++++++++++----
 tcg/i386/tcg-target.inc.c    | 33 +++++++++++++-----
 tcg/ia64/tcg-target.inc.c    | 27 +++++++++++----
 tcg/mips/tcg-target.inc.c    | 42 +++++++++++++++++++++--
 tcg/optimize.c               | 54 +++++++++++++++++++++++++++++
 tcg/ppc/tcg-target.inc.c     | 78 +++++++++++++++++++++++++++---------------
 tcg/s390/tcg-target.inc.c    | 24 ++++++++-----
 tcg/sparc/tcg-target.inc.c   | 30 ++++++++++++----
 tcg/tcg-op.c                 | 17 ++++++++++
 tcg/tcg-op.h                 |  2 ++
 tcg/tcg-opc.h                |  2 ++
 tcg/tcg.h                    | 81 +++++++++++++++++++++++++++-----------------
 tcg/tci/tcg-target.inc.c     |  3 ++
 tci.c                        |  4 +++
 translate-all.c              |  1 +
 user-exec.c                  |  7 ++--
 28 files changed, 445 insertions(+), 169 deletions(-)

             reply	other threads:[~2016-09-12 23:41 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-12 23:39 Richard Henderson [this message]
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 01/18] tcg: Support arbitrary size + alignment Richard Henderson
2016-09-20 10:16   ` Bharata B Rao
2016-09-20 18:57     ` Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 02/18] tcg: Merge GETPC and GETRA Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 03/18] cpu-exec: Check -dfilter for -d cpu Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 04/18] Introduce TCGOpcode for memory barrier Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 05/18] tcg/i386: Add support for fence Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 06/18] tcg/aarch64: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 07/18] tcg/arm: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 08/18] tcg/ia64: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 09/18] tcg/mips: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 10/18] tcg/ppc: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 11/18] tcg/s390: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 12/18] tcg/sparc: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 13/18] tcg/tci: " Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 14/18] target-arm: Generate fences in ARMv7 frontend Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 15/18] target-alpha: Generate fence op Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 16/18] target-aarch64: Generate fences for aarch64 Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 17/18] target-i386: Generate fences for x86 Richard Henderson
2016-09-12 23:39 ` [Qemu-devel] [PULL v3 18/18] tcg: Optimize fence instructions Richard Henderson
2016-09-13 10:39 ` [Qemu-devel] [PULL v3 00/18] tcg queued patches Peter Maydell

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=1473723592-524-1-git-send-email-rth@twiddle.net \
    --to=rth@twiddle.net \
    --cc=peter.maydell@linaro.org \
    --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).