qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, amarkovic@wavecomp.com
Subject: [Qemu-devel] [PULL 00/11] MIPS queue for August 20th, 2019
Date: Tue, 20 Aug 2019 08:37:52 +0200	[thread overview]
Message-ID: <1566283083-21838-1-git-send-email-aleksandar.markovic@rt-rk.com> (raw)

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



             reply	other threads:[~2019-08-20  6:40 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-20  6:37 Aleksandar Markovic [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1566283083-21838-1-git-send-email-aleksandar.markovic@rt-rk.com \
    --to=aleksandar.markovic@rt-rk.com \
    --cc=amarkovic@wavecomp.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).