[Qemu-devel] [PATCH v3 00/10] target/arm: Rely on id regs instead of features

Richard Henderson posted 10 patches 7 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20181008212205.17752-1-richard.henderson@linaro.org
Test docker-clang@ubuntu failed
Test checkpatch passed
Test asan passed
Test docker-mingw@fedora failed
Test docker-quick@centos7 failed
There is a newer version of this series
target/arm/cpu.h            | 275 +++++++++++++++++++++++++++++++++---
target/arm/translate-a64.h  |  22 +++
target/arm/translate.h      |  20 +++
linux-user/aarch64/signal.c |   4 +-
linux-user/elfload.c        |  60 ++++----
linux-user/syscall.c        |  10 +-
target/arm/cpu.c            |  65 +++++----
target/arm/cpu64.c          |  66 +++++----
target/arm/helper.c         |  29 ++--
target/arm/machine.c        |   6 +-
target/arm/op_helper.c      |   6 +-
target/arm/translate-a64.c  | 145 ++++++++++---------
target/arm/translate.c      |  48 +++----
13 files changed, 538 insertions(+), 218 deletions(-)
[Qemu-devel] [PATCH v3 00/10] target/arm: Rely on id regs instead of features
Posted by Richard Henderson 7 years ago
This edition fixes a number of conflicts with master, and adds
a few field definitions from ARMv8.5, courtesy of Philippe.

It also fixes a big think-o in a last-minute change to the
sve system mode patch set that was applied to master today.
That would be patch 1.  Sorry for not testing the original
more thoroughly.


r~


Richard Henderson (10):
  target/arm: Fix aarch64_sve_change_el wrt EL0
  target/arm: Define fields of ISAR registers
  target/arm: Convert v8 extensions from feature bits to isar tests
  target/arm: Align cortex-r5 id_isar0
  target/arm: Fix cortex-a7 id_isar0
  target/arm: Convert division from feature bits to isar0 tests
  target/arm: Convert jazelle from feature bit to isar1 test
  target/arm: Convert t32ee from feature bit to isar3 test
  target/arm: Convert sve from feature bit to aa64pfr0 test
  target/arm: Convert v8.2-fp16 from feature bit to aa64pfr0 test

 target/arm/cpu.h            | 275 +++++++++++++++++++++++++++++++++---
 target/arm/translate-a64.h  |  22 +++
 target/arm/translate.h      |  20 +++
 linux-user/aarch64/signal.c |   4 +-
 linux-user/elfload.c        |  60 ++++----
 linux-user/syscall.c        |  10 +-
 target/arm/cpu.c            |  65 +++++----
 target/arm/cpu64.c          |  66 +++++----
 target/arm/helper.c         |  29 ++--
 target/arm/machine.c        |   6 +-
 target/arm/op_helper.c      |   6 +-
 target/arm/translate-a64.c  | 145 ++++++++++---------
 target/arm/translate.c      |  48 +++----
 13 files changed, 538 insertions(+), 218 deletions(-)

-- 
2.17.1


Re: [Qemu-devel] [PATCH v3 00/10] target/arm: Rely on id regs instead of features
Posted by Peter Maydell 7 years ago
On 8 October 2018 at 22:21, Richard Henderson
<richard.henderson@linaro.org> wrote:
> This edition fixes a number of conflicts with master, and adds
> a few field definitions from ARMv8.5, courtesy of Philippe.
>
> It also fixes a big think-o in a last-minute change to the
> sve system mode patch set that was applied to master today.
> That would be patch 1.  Sorry for not testing the original
> more thoroughly.
>
>
> r~
>
>
> Richard Henderson (10):
>   target/arm: Fix aarch64_sve_change_el wrt EL0
>   target/arm: Define fields of ISAR registers
>   target/arm: Align cortex-r5 id_isar0
>   target/arm: Fix cortex-a7 id_isar0

I'm applying these patches (1,2,4,5) to target-arm.next.

thanks
-- PMM