[PULL 0/2] Hexagon (target/hexagon) bug fixes for mem_noshuf

Taylor Simpson posted 2 patches 1 year, 9 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220719232631.25316-1-tsimpson@quicinc.com
Maintainers: Taylor Simpson <tsimpson@quicinc.com>
target/hexagon/gen_tcg.h                 |  10 ++-
target/hexagon/helper.h                  |   1 +
target/hexagon/macros.h                  |  37 +++++---
target/hexagon/genptr.c                  |   7 ++
target/hexagon/op_helper.c               |  23 +++--
tests/tcg/hexagon/mem_noshuf.c           | 122 ++++++++++++++++++++++++--
tests/tcg/hexagon/mem_noshuf_exception.c | 146 +++++++++++++++++++++++++++++++
tests/tcg/hexagon/Makefile.target        |   1 +
8 files changed, 323 insertions(+), 24 deletions(-)
create mode 100644 tests/tcg/hexagon/mem_noshuf_exception.c
[PULL 0/2] Hexagon (target/hexagon) bug fixes for mem_noshuf
Posted by Taylor Simpson 1 year, 9 months ago
The following changes since commit d48125de38f48a61d6423ef6a01156d6dff9ee2c:

  Merge tag 'kraxel-20220719-pull-request' of https://gitlab.com/kraxel/qemu into staging (2022-07-19 17:40:36 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 15fc6badbd28a126346f84c1acae48e273b66b67:

  Hexagon (target/hexagon) fix bug in mem_noshuf load exception (2022-07-19 14:20:08 -0700)

----------------------------------------------------------------
Recall that the semantics of a Hexagon mem_noshuf packet are that the
store effectively happens before the load.  There are two bug fixes
in this series.

----------------------------------------------------------------
Taylor Simpson (2):
      Hexagon (target/hexagon) fix store w/mem_noshuf & predicated load
      Hexagon (target/hexagon) fix bug in mem_noshuf load exception

 target/hexagon/gen_tcg.h                 |  10 ++-
 target/hexagon/helper.h                  |   1 +
 target/hexagon/macros.h                  |  37 +++++---
 target/hexagon/genptr.c                  |   7 ++
 target/hexagon/op_helper.c               |  23 +++--
 tests/tcg/hexagon/mem_noshuf.c           | 122 ++++++++++++++++++++++++--
 tests/tcg/hexagon/mem_noshuf_exception.c | 146 +++++++++++++++++++++++++++++++
 tests/tcg/hexagon/Makefile.target        |   1 +
 8 files changed, 323 insertions(+), 24 deletions(-)
 create mode 100644 tests/tcg/hexagon/mem_noshuf_exception.c
Re: [PULL 0/2] Hexagon (target/hexagon) bug fixes for mem_noshuf
Posted by Peter Maydell 1 year, 9 months ago
On Wed, 20 Jul 2022 at 00:27, Taylor Simpson <tsimpson@quicinc.com> wrote:
>
> The following changes since commit d48125de38f48a61d6423ef6a01156d6dff9ee2c:
>
>   Merge tag 'kraxel-20220719-pull-request' of https://gitlab.com/kraxel/qemu into staging (2022-07-19 17:40:36 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/quic/qemu tags/pull-hex-20220719-1
>
> for you to fetch changes up to 15fc6badbd28a126346f84c1acae48e273b66b67:
>
>   Hexagon (target/hexagon) fix bug in mem_noshuf load exception (2022-07-19 14:20:08 -0700)
>
> ----------------------------------------------------------------
> Recall that the semantics of a Hexagon mem_noshuf packet are that the
> store effectively happens before the load.  There are two bug fixes
> in this series.
>


Applied, thanks.

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

-- PMM