mbox series

[v3,00/10] target/arm: SB, PredInv, CondM, FRINT extensions

Message ID 20190301200501.16533-1-richard.henderson@linaro.org (mailing list archive)
Headers show
Series target/arm: SB, PredInv, CondM, FRINT extensions | expand

Message

Richard Henderson March 1, 2019, 8:04 p.m. UTC
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(-)

Comments

Peter Maydell March 4, 2019, 5:43 p.m. UTC | #1
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