qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Anthony Liguori <aliguori@amazon.com>
Cc: Blue Swirl <blauwirbel@gmail.com>,
	qemu-devel@nongnu.org, Aurelien Jarno <aurelien@aurel32.net>
Subject: [Qemu-devel] [PULL 00/30] target-arm queue
Date: Thu, 20 Feb 2014 11:17:04 +0000	[thread overview]
Message-ID: <1392895054-13232-1-git-send-email-peter.maydell@linaro.org> (raw)

Here's the latest target-arm pull request. There are definitely
more things still in the pipeline so there will be at least one
more before softfreeze...

thanks
-- PMM

The following changes since commit 46eef33b89e936ca793e13c4aeea1414e97e8dbb:

  Fix QEMU build on OpenBSD on x86 archs (2014-02-17 11:44:00 +0000)

are available in the git repository at:

  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20140220

for you to fetch changes up to 2ea5a2ca1f1dc302652d2ad5035e0b209ccaa177:

  linux-user: AArch64: Fix exclusive store of the zero register (2014-02-20 10:35:56 +0000)

----------------------------------------------------------------
target-arm queue:
 * Fix a bug causing an assertion in the NVIC on ARMv7M models
 * More A64 Neon instructions
 * Refactor cpreg API to separate out access check functions, as
   groundwork for AArch64 system mode
 * Fix bug in linux-user A64 store-exclusive of XZR

----------------------------------------------------------------
Alex Bennée (2):
      target-arm: A64: Implement SIMD FP compare and set insns
      target-arm: A64: Implement floating point pairwise insns

Janne Grunau (1):
      linux-user: AArch64: Fix exclusive store of the zero register

Peter Maydell (27):
      hw/intc/arm_gic: Fix NVIC assertion failure
      target-arm: A64: Implement plain vector SIMD indexed element insns
      target-arm: A64: Implement long vector x indexed insns
      target-arm: A64: Implement SIMD scalar indexed instructions
      target-arm: A64: Implement scalar three different instructions
      softfloat: Support halving the result of muladd operation
      target-arm: A64: Implement remaining 3-same instructions
      target-arm/kvm-consts.h: Define QEMU constants for known KVM CPUs
      target-arm: Define names for SCTLR bits
      target-arm: Restrict check_ap() use of S and R bits to v6 and earlier
      target-arm: Remove unused ARMCPUState sr substruct
      target-arm: Log bad system register accesses with LOG_UNIMP
      target-arm: Stop underdecoding ARM946 PRBS registers
      target-arm: Split cpreg access checks out from read/write functions
      target-arm: Convert performance monitor reginfo to accessfn
      target-arm: Convert generic timer reginfo to accessfn
      target-arm: Convert miscellaneous reginfo structs to accessfn
      target-arm: Drop success/fail return from cpreg read and write functions
      target-arm: Remove unnecessary code now read/write fns can't fail
      target-arm: Remove failure status return from read/write_raw_cp_reg
      target-arm: Fix incorrect type for value argument to write_raw_cp_reg
      target-arm: A64: Implement store-exclusive for system mode
      target-arm: A64: Add opcode comments to disas_simd_three_reg_diff
      target-arm: A64: Add most remaining three-reg-diff widening ops
      target-arm: A64: Implement the wide 3-reg-different operations
      target-arm: A64: Implement narrowing three-reg-diff operations
      target-arm: A64: Implement unprivileged load/store

 fpu/softfloat.c            |   38 ++
 hw/arm/pxa2xx.c            |   36 +-
 hw/arm/pxa2xx_pic.c        |   11 +-
 hw/intc/arm_gic.c          |    2 +-
 include/fpu/softfloat.h    |    3 +
 linux-user/main.c          |    6 +-
 target-arm/cpu.c           |    8 +-
 target-arm/cpu.h           |  105 +++-
 target-arm/helper-a64.c    |  105 ++++
 target-arm/helper-a64.h    |    9 +
 target-arm/helper.c        |  620 +++++++++-----------
 target-arm/helper.h        |    3 +
 target-arm/kvm-consts.h    |   16 +-
 target-arm/neon_helper.c   |   16 +
 target-arm/op_helper.c     |   46 +-
 target-arm/translate-a64.c | 1358 ++++++++++++++++++++++++++++++++++++++------
 target-arm/translate.c     |   28 +-
 17 files changed, 1815 insertions(+), 595 deletions(-)

             reply	other threads:[~2014-02-20 11:18 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-20 11:17 Peter Maydell [this message]
2014-02-20 11:17 ` [Qemu-devel] [PULL 01/30] hw/intc/arm_gic: Fix NVIC assertion failure Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 02/30] target-arm: A64: Implement plain vector SIMD indexed element insns Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 03/30] target-arm: A64: Implement long vector x indexed insns Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 04/30] target-arm: A64: Implement SIMD scalar indexed instructions Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 05/30] target-arm: A64: Implement scalar three different instructions Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 06/30] target-arm: A64: Implement SIMD FP compare and set insns Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 07/30] target-arm: A64: Implement floating point pairwise insns Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 08/30] softfloat: Support halving the result of muladd operation Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 09/30] target-arm: A64: Implement remaining 3-same instructions Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 10/30] target-arm/kvm-consts.h: Define QEMU constants for known KVM CPUs Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 11/30] target-arm: Define names for SCTLR bits Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 12/30] target-arm: Restrict check_ap() use of S and R bits to v6 and earlier Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 13/30] target-arm: Remove unused ARMCPUState sr substruct Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 14/30] target-arm: Log bad system register accesses with LOG_UNIMP Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 15/30] target-arm: Stop underdecoding ARM946 PRBS registers Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 16/30] target-arm: Split cpreg access checks out from read/write functions Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 17/30] target-arm: Convert performance monitor reginfo to accessfn Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 18/30] target-arm: Convert generic timer " Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 19/30] target-arm: Convert miscellaneous reginfo structs " Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 20/30] target-arm: Drop success/fail return from cpreg read and write functions Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 21/30] target-arm: Remove unnecessary code now read/write fns can't fail Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 22/30] target-arm: Remove failure status return from read/write_raw_cp_reg Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 23/30] target-arm: Fix incorrect type for value argument to write_raw_cp_reg Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 24/30] target-arm: A64: Implement store-exclusive for system mode Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 25/30] target-arm: A64: Add opcode comments to disas_simd_three_reg_diff Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 26/30] target-arm: A64: Add most remaining three-reg-diff widening ops Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 27/30] target-arm: A64: Implement the wide 3-reg-different operations Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 28/30] target-arm: A64: Implement narrowing three-reg-diff operations Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 29/30] target-arm: A64: Implement unprivileged load/store Peter Maydell
2014-02-20 11:17 ` [Qemu-devel] [PULL 30/30] linux-user: AArch64: Fix exclusive store of the zero register Peter Maydell
2014-02-21 16:01 ` [Qemu-devel] [PULL 00/30] target-arm queue Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2016-03-04 11:41 Peter Maydell
2016-03-04 14:05 ` Peter Maydell
2016-06-14 14:13 Peter Maydell
2017-02-27 18:04 Peter Maydell
2017-02-27 19:14 ` no-reply
2017-02-28 12:07 ` Peter Maydell
2018-02-09 11:02 Peter Maydell
2018-02-09 14:38 ` Peter Maydell
2018-08-16 13:34 Peter Maydell
2018-08-16 16:18 ` 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=1392895054-13232-1-git-send-email-peter.maydell@linaro.org \
    --to=peter.maydell@linaro.org \
    --cc=aliguori@amazon.com \
    --cc=aurelien@aurel32.net \
    --cc=blauwirbel@gmail.com \
    --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).