[PULL v2 00/12] Hexagon (target/hexagon) queue

Taylor Simpson posted 12 patches 2 years, 1 month ago
Test checkpatch passed
Failed in applying to current master (apply log)
Maintainers: Taylor Simpson <tsimpson@quicinc.com>
target/hexagon/fma_emu.h          |    6 +-
target/hexagon/macros.h           |    4 +-
target/hexagon/mmvec/macros.h     |    6 +-
target/hexagon/arch.c             |    6 +-
target/hexagon/genptr.c           |   14 +-
target/hexagon/op_helper.c        |   28 +-
tests/tcg/hexagon/circ.c          |    5 +-
tests/tcg/hexagon/fpstuff.c       |  123 +++-
tests/tcg/hexagon/hvx_misc.c      |   71 ++-
tests/tcg/hexagon/overflow.c      |   61 +-
tests/tcg/hexagon/preg_alias.c    |   84 ++-
tests/tcg/hexagon/usr.c           | 1141 +++++++++++++++++++++++++++++++++++++
tests/tcg/hexagon/Makefile.target |    8 +-
13 files changed, 1474 insertions(+), 83 deletions(-)
create mode 100644 tests/tcg/hexagon/usr.c
[PULL v2 00/12] Hexagon (target/hexagon) queue
Posted by Taylor Simpson 2 years, 1 month ago
The following changes since commit 1416688c53be6535be755b44c15fb2eb9defd20f:

  Merge remote-tracking branch 'remotes/mcayland/tags/q800-updates-for-7.0-20220309' into staging (2022-03-10 13:16:37 +0000)

are available in the Git repository at:

  https://github.com/quic/qemu tags/pull-hex-20220312-1

for you to fetch changes up to 4a818b3767220dcd21cf5cc7f12e33e28c2073ed:

  target/hexagon: remove unused variable (2022-03-12 09:14:22 -0800)

----------------------------------------------------------------
Hexagon bug fixes and additional tests

Also includes a patch from Zongyuan Li <zongyuan.li@smartx.com> to remove an unused variable

******** Changes in v2 ********
Fix problems with build-user-hexagon CI job

----------------------------------------------------------------
Michael Lambert (1):
      Hexagon (target/hexagon) fix bug in circular addressing

Taylor Simpson (10):
      Hexagon HVX (target/hexagon) fix bug in HVX saturate instructions
      Hexagon (target/hexagon) properly set FPINVF bit in sfcmp.uo and dfcmp.uo
      Hexagon (target/hexagon) properly handle denorm in arch_sf_recip_common
      Hexagon (target/hexagon) properly handle NaN in dfmin/dfmax/sfmin/sfmax
      Hexagon (tests/tcg/hexagon) test instructions that might set bits in USR
      Hexagon (tests/tcg/hexagon) add floating point instructions to usr.c
      Hexagon (tests/tcg/hexagon) update overflow test
      Hexagon (tests/tcg/hexagon) fix inline asm in preg_alias.c
      Hexagon (target/hexagon) fix bug in conv_df2uw_chop
      Hexagon (target/hexagon) assignment to c4 should wait until packet commit

Zongyuan Li (1):
      target/hexagon: remove unused variable

 target/hexagon/fma_emu.h          |    6 +-
 target/hexagon/macros.h           |    4 +-
 target/hexagon/mmvec/macros.h     |    6 +-
 target/hexagon/arch.c             |    6 +-
 target/hexagon/genptr.c           |   14 +-
 target/hexagon/op_helper.c        |   28 +-
 tests/tcg/hexagon/circ.c          |    5 +-
 tests/tcg/hexagon/fpstuff.c       |  123 +++-
 tests/tcg/hexagon/hvx_misc.c      |   71 ++-
 tests/tcg/hexagon/overflow.c      |   61 +-
 tests/tcg/hexagon/preg_alias.c    |   84 ++-
 tests/tcg/hexagon/usr.c           | 1141 +++++++++++++++++++++++++++++++++++++
 tests/tcg/hexagon/Makefile.target |    8 +-
 13 files changed, 1474 insertions(+), 83 deletions(-)
 create mode 100644 tests/tcg/hexagon/usr.c
Re: [PULL v2 00/12] Hexagon (target/hexagon) queue
Posted by Peter Maydell 2 years, 1 month ago
On Sat, 12 Mar 2022 at 20:13, Taylor Simpson <tsimpson@quicinc.com> wrote:
>
> The following changes since commit 1416688c53be6535be755b44c15fb2eb9defd20f:
>
>   Merge remote-tracking branch 'remotes/mcayland/tags/q800-updates-for-7.0-20220309' into staging (2022-03-10 13:16:37 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/quic/qemu tags/pull-hex-20220312-1
>
> for you to fetch changes up to 4a818b3767220dcd21cf5cc7f12e33e28c2073ed:
>
>   target/hexagon: remove unused variable (2022-03-12 09:14:22 -0800)
>
> ----------------------------------------------------------------
> Hexagon bug fixes and additional tests
>
> Also includes a patch from Zongyuan Li <zongyuan.li@smartx.com> to remove an unused variable
>
> ******** Changes in v2 ********
> Fix problems with build-user-hexagon CI job


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/7.0
for any user-visible changes.

-- PMM