mbox

[PULL,00/11] MIPS queue for August 20th, 2019

Message ID 1566283083-21838-1-git-send-email-aleksandar.markovic@rt-rk.com
State New
Headers show

Pull-request

https://github.com/AMarkovic/qemu tags/mips-queue-aug-20-2019

Message

Aleksandar Markovic Aug. 20, 2019, 6:37 a.m. UTC
From: Aleksandar Markovic <amarkovic@wavecomp.com>

The following changes since commit 50d69ee0d82378c7c21f482492dacfe0916b4863:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-softfloat-headers-190819-1' into staging (2019-08-19 15:58:01 +0100)

are available in the git repository at:

  https://github.com/AMarkovic/qemu tags/mips-queue-aug-20-2019

for you to fetch changes up to 6eed53f71b33c3716e5d94eba506e4706d8dace8:

  target/mips: tests/tcg: Fix target configurations for MSA tests (2019-08-19 19:53:37 +0200)

----------------------------------------------------------------

MIPS queue for August 20th, 2019

Highlights:

  - this pull request consists of selected patches from "target/mips:
    Misc patches for 4.2" series; most of them are checkpatch cleanups,
    and the rest are improvements of MSA TCG tests

Note:

  - an instance of checkpatch warning on updating MAINTAINERS for a patch
    can be ignored

----------------------------------------------------------------

Aleksandar Markovic (11):
  target/mips: Style improvements in cp0_timer.c
  target/mips: Style improvements in cpu.c
  target/mips: Style improvements in machine.c
  target/mips: Style improvements in translate.c
  target/mips: Style improvements in cps.c
  target/mips: Style improvements in mips_fulong2e.c
  target/mips: Style improvements in mips_int.c
  target/mips: Style improvements in mips_malta.c
  target/mips: Style improvements in mips_mipssim.c
  target/mips: tests/tcg: Add optional printing of more detailed failure
    info
  target/mips: tests/tcg: Fix target configurations for MSA tests

 hw/mips/cps.c                                      |   6 +-
 hw/mips/mips_fulong2e.c                            |  96 ++-
 hw/mips/mips_int.c                                 |   3 +-
 hw/mips/mips_malta.c                               | 216 +++--
 hw/mips/mips_mipssim.c                             |  19 +-
 target/mips/cp0_timer.c                            |  42 +-
 target/mips/cpu.c                                  |  17 +-
 target/mips/machine.c                              |   4 +-
 target/mips/translate.c                            | 773 ++++++++---------
 tests/tcg/mips/include/test_utils_128.h            |  23 +-
 .../mips/user/ase/msa/test_msa_compile_32r5eb.sh   | 917 +++++++++++++++++++++
 .../mips/user/ase/msa/test_msa_compile_32r5el.sh   | 917 +++++++++++++++++++++
 .../mips/user/ase/msa/test_msa_compile_32r6eb.sh   | 643 ---------------
 .../mips/user/ase/msa/test_msa_compile_32r6el.sh   | 643 ---------------
 tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh | 371 +++++++++
 tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh | 371 +++++++++
 tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh | 371 ---------
 tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh | 371 ---------
 18 files changed, 3231 insertions(+), 2572 deletions(-)
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh
 delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
 delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh
 create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh
 delete mode 100644 tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
 delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh

Comments

Peter Maydell Aug. 20, 2019, 1:14 p.m. UTC | #1
On Tue, 20 Aug 2019 at 07:38, Aleksandar Markovic
<aleksandar.markovic@rt-rk.com> wrote:
>
> From: Aleksandar Markovic <amarkovic@wavecomp.com>
>
> The following changes since commit 50d69ee0d82378c7c21f482492dacfe0916b4863:
>
>   Merge remote-tracking branch 'remotes/stsquad/tags/pull-softfloat-headers-190819-1' into staging (2019-08-19 15:58:01 +0100)
>
> are available in the git repository at:
>
>   https://github.com/AMarkovic/qemu tags/mips-queue-aug-20-2019
>
> for you to fetch changes up to 6eed53f71b33c3716e5d94eba506e4706d8dace8:
>
>   target/mips: tests/tcg: Fix target configurations for MSA tests (2019-08-19 19:53:37 +0200)
>
> ----------------------------------------------------------------
>
> MIPS queue for August 20th, 2019
>
> Highlights:
>
>   - this pull request consists of selected patches from "target/mips:
>     Misc patches for 4.2" series; most of them are checkpatch cleanups,
>     and the rest are improvements of MSA TCG tests
>
> Note:
>
>   - an instance of checkpatch warning on updating MAINTAINERS for a patch
>     can be ignored
>


Applied, thanks.

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

-- PMM