qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/24] target-sparc improvements
@ 2016-07-12 19:01 Richard Henderson
  2016-07-12 19:01 ` [Qemu-devel] [PULL 01/24] target-sparc: Mark more flags for helpers Richard Henderson
                   ` (24 more replies)
  0 siblings, 25 replies; 26+ messages in thread
From: Richard Henderson @ 2016-07-12 19:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, mark.cave-ayland

This is v4, rebased onto master, with Mark's Tested-by.
Mark asked me via private email to submit my branch for pull.

This does *not* include the tcg fixes for the sparc windowed registers,
so an i686 host is expected to fail with or without this patch set.


r~


The following changes since commit ca3d87d4c84032f19478010b5604cac88b045c25:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-include-2016-07-12' into staging (2016-07-12 16:04:36 +0100)

are available in the git repository at:

  git://github.com/rth7680/qemu.git tags/pull-rth-20160712

for you to fetch changes up to f9c816c00cf4242542472ae6b2a579b11b7e86f1:

  target-sparc: Elide duplicate updates to fprs (2016-07-12 11:03:01 -0700)

----------------------------------------------------------------
target-sparc improvements, v4

----------------------------------------------------------------
Richard Henderson (24):
      target-sparc: Mark more flags for helpers
      target-sparc: Remove softint as a TCG global
      target-sparc: Store mmu index in TB flags
      target-sparc: Create gen_exception
      target-sparc: Unify asi handling between 32 and 64-bit
      target-sparc: Store %asi in TB flags
      target-sparc: Introduce get_asi
      target-sparc: Pass TCGMemOp to gen_ld/st_asi
      target-sparc: Import linux/arch/sparc/include/uapi/asm/asi.h
      target-sparc: Add UA2005 defines to asi.h
      target-sparc: Use defines from asi.h
      target-sparc: Directly implement easy ld/st asis
      target-sparc: Use QT0 to return results from ldda
      target-sparc: Introduce gen_check_align
      target-sparc: Directly implement easy ldd/std asis
      target-sparc: Fix obvious error in ASI_M_BFILL
      target-sparc: Pass TCGMemOp constants to helper_ld/st_asi
      target-sparc: Directly implement easy ldf/stf asis
      target-sparc: Directly implement block and short ldf/stf asis
      target-sparc: Remove helper_ldf_asi, helper_stf_asi
      target-sparc: Use explicit writes to cpu_fsr
      target-sparc: Use cpu_fsr in stfsr
      target-sparc: Use cpu_loop_exit_restore from helper_check_ieee_exceptions
      target-sparc: Elide duplicate updates to fprs

 target-sparc/asi.h         |  311 +++++++++++
 target-sparc/cpu.h         |   28 +-
 target-sparc/fop_helper.c  |  230 +++-----
 target-sparc/helper.h      |  168 +++---
 target-sparc/ldst_helper.c |  696 +++++++++++-------------
 target-sparc/translate.c   | 1273 ++++++++++++++++++++++++++++----------------
 6 files changed, 1607 insertions(+), 1099 deletions(-)
 create mode 100644 target-sparc/asi.h

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

end of thread, other threads:[~2016-07-14 10:48 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-12 19:01 [Qemu-devel] [PULL 00/24] target-sparc improvements Richard Henderson
2016-07-12 19:01 ` [Qemu-devel] [PULL 01/24] target-sparc: Mark more flags for helpers Richard Henderson
2016-07-12 19:01 ` [Qemu-devel] [PULL 02/24] target-sparc: Remove softint as a TCG global Richard Henderson
2016-07-12 19:01 ` [Qemu-devel] [PULL 03/24] target-sparc: Store mmu index in TB flags Richard Henderson
2016-07-12 19:01 ` [Qemu-devel] [PULL 04/24] target-sparc: Create gen_exception Richard Henderson
2016-07-12 19:01 ` [Qemu-devel] [PULL 05/24] target-sparc: Unify asi handling between 32 and 64-bit Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 06/24] target-sparc: Store %asi in TB flags Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 07/24] target-sparc: Introduce get_asi Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 08/24] target-sparc: Pass TCGMemOp to gen_ld/st_asi Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 09/24] target-sparc: Import linux/arch/sparc/include/uapi/asm/asi.h Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 10/24] target-sparc: Add UA2005 defines to asi.h Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 11/24] target-sparc: Use defines from asi.h Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 12/24] target-sparc: Directly implement easy ld/st asis Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 13/24] target-sparc: Use QT0 to return results from ldda Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 14/24] target-sparc: Introduce gen_check_align Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 15/24] target-sparc: Directly implement easy ldd/std asis Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 16/24] target-sparc: Fix obvious error in ASI_M_BFILL Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 17/24] target-sparc: Pass TCGMemOp constants to helper_ld/st_asi Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 18/24] target-sparc: Directly implement easy ldf/stf asis Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 19/24] target-sparc: Directly implement block and short " Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 20/24] target-sparc: Remove helper_ldf_asi, helper_stf_asi Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 21/24] target-sparc: Use explicit writes to cpu_fsr Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 22/24] target-sparc: Use cpu_fsr in stfsr Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 23/24] target-sparc: Use cpu_loop_exit_restore from helper_check_ieee_exceptions Richard Henderson
2016-07-12 19:02 ` [Qemu-devel] [PULL 24/24] target-sparc: Elide duplicate updates to fprs Richard Henderson
2016-07-14 10:48 ` [Qemu-devel] [PULL 00/24] target-sparc improvements Peter Maydell

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).