[Qemu-devel] [PATCH v3 0/5] target/arm: Preparatory work for SVE

Richard Henderson posted 5 patches 6 years, 3 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180123035349.24538-1-richard.henderson@linaro.org
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test s390x passed
target/arm/cpu.h           |  84 ++++++++++++++++++------
target/arm/translate.h     |   2 +
target/arm/helper.c        | 156 ++++++++++++++++++++++++++++++++++++++++++++-
target/arm/machine.c       |  88 ++++++++++++++++++++++++-
target/arm/translate-a64.c |  10 +--
target/arm/translate.c     |   7 +-
6 files changed, 318 insertions(+), 29 deletions(-)
[Qemu-devel] [PATCH v3 0/5] target/arm: Preparatory work for SVE
Posted by Richard Henderson 6 years, 3 months ago
Based on PMM's target-arm.next branch, which now has most of v2.

While looking again at ZCR_ELx, I think that there's an existing
bug in the FPCR/FPSR system registers, wherein we do not have an
access function for when the FPU is disabled.


r~


Richard Henderson (5):
  target/arm: Expand vector registers for SVE
  target/arm: Add predicate registers for SVE
  target/arm: Add SVE to migration state
  target/arm: Add ZCR_ELx
  target/arm: Add SVE state to TB->FLAGS

 target/arm/cpu.h           |  84 ++++++++++++++++++------
 target/arm/translate.h     |   2 +
 target/arm/helper.c        | 156 ++++++++++++++++++++++++++++++++++++++++++++-
 target/arm/machine.c       |  88 ++++++++++++++++++++++++-
 target/arm/translate-a64.c |  10 +--
 target/arm/translate.c     |   7 +-
 6 files changed, 318 insertions(+), 29 deletions(-)

-- 
2.14.3


Re: [Qemu-devel] [PATCH v3 0/5] target/arm: Preparatory work for SVE
Posted by Peter Maydell 6 years, 2 months ago
On 23 January 2018 at 03:53, Richard Henderson
<richard.henderson@linaro.org> wrote:
> Based on PMM's target-arm.next branch, which now has most of v2.
>
> While looking again at ZCR_ELx, I think that there's an existing
> bug in the FPCR/FPSR system registers, wherein we do not have an
> access function for when the FPU is disabled.

Applied to target-arm.next, thanks.

-- PMM