[Qemu-devel] [PATCH v3 00/10] target/arm: SB, PredInv, CondM, FRINT extensions

Richard Henderson posted 10 patches 6 years, 8 months ago
Test asan passed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu failed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190301200501.16533-1-richard.henderson@linaro.org
Maintainers: Riku Voipio <riku.voipio@iki.fi>, Peter Maydell <peter.maydell@linaro.org>, Laurent Vivier <laurent@vivier.eu>
target/arm/cpu.h           |  64 ++++-
target/arm/helper-a64.h    |   3 +
target/arm/helper.h        |   8 +-
target/arm/internals.h     |  15 ++
target/arm/translate.h     |  34 +++
linux-user/elfload.c       |   2 +
target/arm/cpu.c           |   2 +
target/arm/cpu64.c         |   6 +
target/arm/helper-a64.c    |  30 +++
target/arm/helper.c        |  63 ++++-
target/arm/op_helper.c     |  47 ----
target/arm/translate-a64.c | 476 ++++++++++++++++++++++++++++---------
target/arm/translate.c     |  33 ++-
target/arm/vfp_helper.c    |  96 ++++++++
14 files changed, 688 insertions(+), 191 deletions(-)
[Qemu-devel] [PATCH v3 00/10] target/arm: SB, PredInv, CondM, FRINT extensions
Posted by Richard Henderson 6 years, 8 months ago
These 5 extensions are small, and all previous editions have
minor patch conflicts with master.  Therefore, rebase them all
together for simplicity.


r~


Richard Henderson (10):
  target/arm: Split out arm_sctlr
  target/arm: Implement ARMv8.0-SB
  target/arm: Implement ARMv8.0-PredInv
  target/arm: Split helper_msr_i_pstate into 3
  target/arm: Add set/clear_pstate_bits, share gen_ss_advance
  target/arm: Rearrange disas_data_proc_reg
  target/arm: Implement ARMv8.4-CondM
  target/arm: Implement ARMv8.5-CondM
  target/arm: Restructure handle_fp_1src_{single,double}
  target/arm: Implement ARMv8.5-FRINT

 target/arm/cpu.h           |  64 ++++-
 target/arm/helper-a64.h    |   3 +
 target/arm/helper.h        |   8 +-
 target/arm/internals.h     |  15 ++
 target/arm/translate.h     |  34 +++
 linux-user/elfload.c       |   2 +
 target/arm/cpu.c           |   2 +
 target/arm/cpu64.c         |   6 +
 target/arm/helper-a64.c    |  30 +++
 target/arm/helper.c        |  63 ++++-
 target/arm/op_helper.c     |  47 ----
 target/arm/translate-a64.c | 476 ++++++++++++++++++++++++++++---------
 target/arm/translate.c     |  33 ++-
 target/arm/vfp_helper.c    |  96 ++++++++
 14 files changed, 688 insertions(+), 191 deletions(-)

-- 
2.17.2


Re: [Qemu-devel] [PATCH v3 00/10] target/arm: SB, PredInv, CondM, FRINT extensions
Posted by Peter Maydell 6 years, 8 months ago
On Fri, 1 Mar 2019 at 20:05, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> These 5 extensions are small, and all previous editions have
> minor patch conflicts with master.  Therefore, rebase them all
> together for simplicity.
>
>
> r~
>
>



Applied to target-arm.next, thanks.

-- PMM