qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 00/14] tcg: remainder and tcg-arm updates
@ 2013-07-03 21:29 Richard Henderson
  2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 01/14] tcg: Add myself to general TCG maintainership Richard Henderson
                   ` (14 more replies)
  0 siblings, 15 replies; 31+ messages in thread
From: Richard Henderson @ 2013-07-03 21:29 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori, claudio.fontana, afaerber

Changes v2-v3:
  * Add myself to tcg maintainers, as per afaerber's suggestion.
  * Fix rebase error wrt aarch64, as per claudio.
  * Include tcg-arm unwind patch set; no point in half measures.


r~


The following changes since commit ab8bf29078e0ab8347e2ff8b4e5542f7a0c751cf:

  Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2013-07-03 08:37:00 -0500)

are available in the git repository at:

  git://github.com/rth7680/qemu.git tcg-next

for you to fetch changes up to 6688d5d7eefa67b5f50b6f03a2456e4635781b3b:

  tcg-arm: Implement tcg_register_jit (2013-07-03 11:17:57 -0700)

----------------------------------------------------------------
Richard Henderson (14):
      tcg: Add myself to general TCG maintainership
      tcg: Split rem requirement from div requirement
      tcg-arm: Don't implement rem
      tcg-ppc: Don't implement rem
      tcg-ppc64: Don't implement rem
      tcg: Allow non-constant control macros
      tcg: Simplify logic using TCG_OPF_NOT_PRESENT
      tcg-arm: Make use of conditional availability of opcodes for divide
      tcg-arm: Simplify logic in detecting the ARM ISA in use
      tcg-arm: Use AT_PLATFORM to detect the host ISA
      tcg: Fix high_pc fields in .debug_info
      tcg: Move the CIE and FDE header definitions to common code
      tcg-i386: Use QEMU_BUILD_BUG_ON instead of assert for frame size
      tcg-arm: Implement tcg_register_jit

 MAINTAINERS              |   1 +
 tcg/aarch64/tcg-target.h |   2 +
 tcg/arm/tcg-target.c     | 172 ++++++++++++++++++++++++++++++-----------------
 tcg/arm/tcg-target.h     |  15 +++--
 tcg/hppa/tcg-target.c    |  35 +++-------
 tcg/hppa/tcg-target.h    |   1 +
 tcg/i386/tcg-target.c    |  45 +++++--------
 tcg/ia64/tcg-target.h    |   2 +
 tcg/mips/tcg-target.h    |   1 +
 tcg/ppc/tcg-target.c     |  14 ----
 tcg/ppc/tcg-target.h     |   1 +
 tcg/ppc64/tcg-target.c   |  26 -------
 tcg/ppc64/tcg-target.h   |   2 +
 tcg/sparc/tcg-target.c   |  35 +++-------
 tcg/sparc/tcg-target.h   |   2 +
 tcg/tcg-op.h             |  32 +++++++--
 tcg/tcg-opc.h            |  36 +++++-----
 tcg/tcg.c                |  26 +++++--
 tcg/tcg.h                |   6 +-
 tcg/tci/tcg-target.h     |   2 +
 20 files changed, 242 insertions(+), 214 deletions(-)

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

end of thread, other threads:[~2013-07-04 19:29 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-03 21:29 [Qemu-devel] [PATCH v3 00/14] tcg: remainder and tcg-arm updates Richard Henderson
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 01/14] tcg: Add myself to general TCG maintainership Richard Henderson
2013-07-04 10:38   ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 02/14] tcg: Split rem requirement from div requirement Richard Henderson
2013-07-04 10:44   ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 03/14] tcg-arm: Don't implement rem Richard Henderson
2013-07-04 10:45   ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 04/14] tcg-ppc: " Richard Henderson
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 05/14] tcg-ppc64: " Richard Henderson
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 06/14] tcg: Allow non-constant control macros Richard Henderson
2013-07-04 10:53   ` Peter Maydell
2013-07-04 17:28     ` Richard Henderson
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 07/14] tcg: Simplify logic using TCG_OPF_NOT_PRESENT Richard Henderson
2013-07-04 10:54   ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 08/14] tcg-arm: Make use of conditional availability of opcodes for divide Richard Henderson
2013-07-04 11:02   ` Peter Maydell
2013-07-04 17:33     ` Richard Henderson
2013-07-04 17:39       ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 09/14] tcg-arm: Simplify logic in detecting the ARM ISA in use Richard Henderson
2013-07-04 11:22   ` Peter Maydell
2013-07-04 17:44     ` Richard Henderson
2013-07-04 19:29       ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 10/14] tcg-arm: Use AT_PLATFORM to detect the host ISA Richard Henderson
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 11/14] tcg: Fix high_pc fields in .debug_info Richard Henderson
2013-07-04 11:25   ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 12/14] tcg: Move the CIE and FDE header definitions to common code Richard Henderson
2013-07-04 11:29   ` Peter Maydell
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 13/14] tcg-i386: Use QEMU_BUILD_BUG_ON instead of assert for frame size Richard Henderson
2013-07-03 21:29 ` [Qemu-devel] [PATCH v3 14/14] tcg-arm: Implement tcg_register_jit Richard Henderson
2013-07-04 11:29   ` Peter Maydell
2013-07-04  9:28 ` [Qemu-devel] [PATCH v3 00/14] tcg: remainder and tcg-arm updates Claudio Fontana

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