All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/8] tcg queued patches
@ 2017-12-29 19:31 Richard Henderson
  2017-12-29 19:31 ` [Qemu-devel] [PULL 1/8] target/*helper: don't check retaddr before calling cpu_restore_state Richard Henderson
                   ` (11 more replies)
  0 siblings, 12 replies; 16+ messages in thread
From: Richard Henderson @ 2017-12-29 19:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Two reviewed patches from the 2.11 soft-freeze era, and five
preparatory patches extract from my host vector patch set.


r~


The following changes since commit 281f327487c9c9b1599f93c589a408bbf4a651b8:

  Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-2.12-pull-request' into staging (2017-12-22 00:11:36 +0000)

are available in the Git repository at:

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

for you to fetch changes up to d034b92af6687e1ba436ee9541c91f78af20b47f:

  tcg: add cs_base and flags to -d exec output (2017-12-28 20:38:54 -0800)

----------------------------------------------------------------
Queued TCG patches

----------------------------------------------------------------
Alex Bennée (1):
      target/*helper: don't check retaddr before calling cpu_restore_state

Paolo Bonzini (1):
      tcg: add cs_base and flags to -d exec output

Richard Henderson (6):
      target/moxie: Fix tlb_fill
      tcg: Remove TCGV_UNUSED* and TCGV_IS_UNUSED*
      tcg: Dynamically allocate TCGOps
      tcg: Generalize TCGOp parameters
      tcg: Add tcg_signed_cond
      tcg: Allow 6 arguments to TCG helpers

 include/exec/gen-icount.h                  |   9 +-
 include/exec/helper-gen.h                  |  11 +++
 include/exec/helper-head.h                 |   2 +
 include/exec/helper-proto.h                |   5 +
 include/exec/helper-tcg.h                  |   7 ++
 include/qemu/queue.h                       |   5 +
 target/arm/translate.h                     |  10 +-
 tcg/tcg-op.h                               |   4 -
 tcg/tcg.h                                  |  60 +++++-------
 accel/tcg/cpu-exec.c                       |   6 +-
 accel/tcg/tcg-runtime.c                    |   5 +-
 target/alpha/mem_helper.c                  |  13 +--
 target/alpha/translate.c                   |  22 ++---
 target/arm/op_helper.c                     |  18 ++--
 target/arm/translate-a64.c                 |  37 ++++---
 target/arm/translate.c                     |  31 +++---
 target/cris/translate.c                    |   4 +-
 target/hppa/translate.c                    |  63 ++++++------
 target/i386/svm_helper.c                   |   4 +-
 target/i386/translate.c                    |  13 ++-
 target/lm32/op_helper.c                    |   7 +-
 target/lm32/translate.c                    |   2 -
 target/m68k/op_helper.c                    |   7 +-
 target/m68k/translate.c                    |  14 +--
 target/microblaze/op_helper.c              |   7 +-
 target/microblaze/translate.c              |   4 -
 target/mips/translate.c                    |   2 +-
 target/moxie/helper.c                      |   5 +-
 target/nios2/mmu.c                         |   7 +-
 target/nios2/translate.c                   |   6 +-
 target/openrisc/mmu_helper.c               |   6 +-
 target/ppc/translate.c                     |   2 +-
 target/s390x/translate.c                   |  42 ++++----
 target/sh4/translate.c                     |   2 +-
 target/sparc/translate.c                   |   2 +-
 target/tilegx/translate.c                  |  10 +-
 target/tricore/op_helper.c                 |  13 +--
 target/unicore32/op_helper.c               |   7 +-
 target/unicore32/translate.c               |   4 +-
 tcg/optimize.c                             |  20 +---
 tcg/tcg-op.c                               |  24 -----
 tcg/tcg.c                                  | 149 +++++++++++------------------
 tcg/tci.c                                  |  12 ++-
 tcg/tci/tcg-target.inc.c                   |   6 +-
 scripts/coccinelle/cpu_restore_state.cocci |  19 ++++
 45 files changed, 312 insertions(+), 396 deletions(-)
 create mode 100644 scripts/coccinelle/cpu_restore_state.cocci

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 0/8] tcg queued patches
@ 2016-02-23 18:33 Richard Henderson
  2016-02-25  9:47 ` Peter Maydell
  0 siblings, 1 reply; 16+ messages in thread
From: Richard Henderson @ 2016-02-23 18:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

A revision of the Feb 15 pull, with patch 5 adjusted to work around
the reported Werror bug in gcc 4.8.2, and Peter's renaming patch
set included.


r~


The following changes since commit 90ce6e2644db2c47d72f364b4de57342e50bd10a:

  include: Clean up includes (2016-02-23 12:43:05 +0000)

are available in the git repository at:

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

for you to fetch changes up to c3b7f66800fbf9f47fddbcf2e2cd30ea932e0aae:

  tcg: Remove unnecessary osdep.h includes from tcg-target.inc.c (2016-02-23 08:31:03 -0800)

----------------------------------------------------------------
Queued TCG patches

----------------------------------------------------------------
Peter Maydell (3):
      tcg: Rename tcg-target.c to tcg-target.inc.c
      scripts/clean-includes: Ignore .inc.c files
      tcg: Remove unnecessary osdep.h includes from tcg-target.inc.c

Richard Henderson (5):
      tcg: Work around clang bug wrt enum ranges, part 2
      tcg: Implement indirect memory registers
      tcg: Allocate indirect_base temporaries in a different order
      target-sparc: Tidy global register initialization
      target-sparc: Use global registers for the register window

 qemu-tech.texi                                 |   2 +-
 scripts/clean-includes                         |   5 +
 target-sparc/translate.c                       | 204 ++++++++++++-------------
 tcg/README                                     |   5 +-
 tcg/aarch64/{tcg-target.c => tcg-target.inc.c} |   1 -
 tcg/arm/{tcg-target.c => tcg-target.inc.c}     |   1 -
 tcg/i386/{tcg-target.c => tcg-target.inc.c}    |   1 -
 tcg/ia64/{tcg-target.c => tcg-target.inc.c}    |   0
 tcg/mips/{tcg-target.c => tcg-target.inc.c}    |   1 -
 tcg/ppc/{tcg-target.c => tcg-target.inc.c}     |   1 -
 tcg/s390/{tcg-target.c => tcg-target.inc.c}    |   1 -
 tcg/sparc/{tcg-target.c => tcg-target.inc.c}   |   1 -
 tcg/tcg.c                                      | 145 ++++++++++++------
 tcg/tcg.h                                      |   4 +-
 tcg/tci/README                                 |   4 +-
 tcg/tci/{tcg-target.c => tcg-target.inc.c}     |   1 -
 16 files changed, 214 insertions(+), 163 deletions(-)
 rename tcg/aarch64/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/arm/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/i386/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/ia64/{tcg-target.c => tcg-target.inc.c} (100%)
 rename tcg/mips/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/ppc/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/s390/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/sparc/{tcg-target.c => tcg-target.inc.c} (99%)
 rename tcg/tci/{tcg-target.c => tcg-target.inc.c} (99%)

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2018-01-08 21:02 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-29 19:31 [Qemu-devel] [PULL 0/8] tcg queued patches Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 1/8] target/*helper: don't check retaddr before calling cpu_restore_state Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 2/8] target/moxie: Fix tlb_fill Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 3/8] tcg: Remove TCGV_UNUSED* and TCGV_IS_UNUSED* Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 4/8] tcg: Dynamically allocate TCGOps Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 5/8] tcg: Generalize TCGOp parameters Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 6/8] tcg: Add tcg_signed_cond Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 7/8] tcg: Allow 6 arguments to TCG helpers Richard Henderson
2017-12-29 19:31 ` [Qemu-devel] [PULL 8/8] tcg: add cs_base and flags to -d exec output Richard Henderson
2017-12-29 20:01 ` [Qemu-devel] [PULL 0/8] tcg queued patches no-reply
2017-12-29 20:02 ` no-reply
2017-12-29 20:17 ` no-reply
2017-12-29 20:56 ` [Qemu-devel] [PULL v2 " Richard Henderson
2018-01-08 21:01   ` Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2016-02-23 18:33 [Qemu-devel] [PULL " Richard Henderson
2016-02-25  9:47 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.