qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/11] MIPS queue for August 20th, 2019
@ 2019-08-20  6:37 Aleksandar Markovic
  2019-08-20  6:37 ` [Qemu-devel] [PULL 01/11] target/mips: Style improvements in cp0_timer.c Aleksandar Markovic
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Aleksandar Markovic @ 2019-08-20  6:37 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, amarkovic

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

-- 
2.7.4



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2019-08-20 13:15 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-20  6:37 [Qemu-devel] [PULL 00/11] MIPS queue for August 20th, 2019 Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 01/11] target/mips: Style improvements in cp0_timer.c Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 02/11] target/mips: Style improvements in cpu.c Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 03/11] target/mips: Style improvements in machine.c Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 04/11] target/mips: Style improvements in translate.c Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 05/11] target/mips: Style improvements in cps.c Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 06/11] target/mips: Style improvements in mips_fulong2e.c Aleksandar Markovic
2019-08-20  6:37 ` [Qemu-devel] [PULL 07/11] target/mips: Style improvements in mips_int.c Aleksandar Markovic
2019-08-20  6:38 ` [Qemu-devel] [PULL 08/11] target/mips: Style improvements in mips_malta.c Aleksandar Markovic
2019-08-20  6:38 ` [Qemu-devel] [PULL 09/11] target/mips: Style improvements in mips_mipssim.c Aleksandar Markovic
2019-08-20  6:38 ` [Qemu-devel] [PULL 10/11] target/mips: tests/tcg: Add optional printing of more detailed failure info Aleksandar Markovic
2019-08-20  6:38 ` [Qemu-devel] [PULL 11/11] target/mips: tests/tcg: Fix target configurations for MSA tests Aleksandar Markovic
2019-08-20 13:14 ` [Qemu-devel] [PULL 00/11] MIPS queue for August 20th, 2019 Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).