qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/18] MIPS + misc queue for June 15th, 2020
@ 2020-06-15 19:28 Aleksandar Markovic
  2020-06-15 19:28 ` [PULL 01/18] target/mips: Legalize Loongson insn flags Aleksandar Markovic
                   ` (18 more replies)
  0 siblings, 19 replies; 21+ messages in thread
From: Aleksandar Markovic @ 2020-06-15 19:28 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: aleksandar.qemu.devel

The following changes since commit 7d3660e79830a069f1848bb4fa1cdf8f666424fb:

  Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2020-06-12 23:06:22 +0100)

are available in the git repository at:

  https://github.com/AMarkovic/qemu tags/mips-queue-jun-15-2020

for you to fetch changes up to 250bc43a406f7d46e319abe87c19548d4f027828:

  translations: Add Swedish language (2020-06-15 20:51:10 +0200)

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

MIPS + misc queue for June 15th, 2020

  Highlights:

    This pull request, just exceptionally, contains two non-MIPS patches:

      - adjust sh4 maintainership
      - add Swedish translations

    The rest are MIPS patches:

      - refactor emulation of a number of MSA instructions
      - activate Loongson-related insn_flags

    Notes:

      - one checkpatch warning is benign
      - some of make check iotest-qcow2 tests fail on my system, both before
        and after applying the patches from this pull request

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


Aleksandar Markovic (15):
  target/mips: msa: Split helpers for MADDV.<B|H|W|D>
  target/mips: msa: Split helpers for MSUBV.<B|H|W|D>
  target/mips: msa: Split helpers for DPADD_S.<H|W|D>
  target/mips: msa: Split helpers for DPADD_U.<H|W|D>
  target/mips: msa: Split helpers for DPSUB_S.<H|W|D>
  target/mips: msa: Split helpers for DPSUB_U.<H|W|D>
  target/mips: msa: Split helpers for DOTP_S.<H|W|D>
  target/mips: msa: Split helpers for DOTP_U.<H|W|D>
  target/mips: msa: Split helpers for SUBS_S.<B|H|W|D>
  target/mips: msa: Split helpers for SUBS_U.<B|H|W|D>
  target/mips: msa: Split helpers for SUBSUS_U.<B|H|W|D>
  target/mips: msa: Split helpers for SUBSUU_S.<B|H|W|D>
  target/mips: msa: Split helpers for SUBV.<B|H|W|D>
  target/mips: msa: Split helpers for MULV.<B|H|W|D>
  MAINTAINERS: Adjust sh4 maintainership

Jiaxun Yang (2):
  target/mips: Legalize Loongson insn flags
  target/mips: Add comments for vendor-specific ASEs

Sebastian Rasmussen (1):
  translations: Add Swedish language

 target/mips/helper.h     |   73 ++-
 target/mips/mips-defs.h  |    8 +-
 target/mips/msa_helper.c | 1296 ++++++++++++++++++++++++++++++++++++----------
 target/mips/translate.c  |  213 +++++++-
 MAINTAINERS              |    8 +-
 po/sv.po                 |   75 +++
 6 files changed, 1364 insertions(+), 309 deletions(-)
 create mode 100644 po/sv.po

-- 
2.7.4



^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL 00/18] MIPS + misc queue for June 15th, 2020
@ 2020-06-15 19:22 Aleksandar Markovic
  2020-06-15 19:22 ` [PULL 06/18] target/mips: msa: Split helpers for DPADD_U.<H|W|D> Aleksandar Markovic
  0 siblings, 1 reply; 21+ messages in thread
From: Aleksandar Markovic @ 2020-06-15 19:22 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: aleksandar.qemu.devel

The following changes since commit 81b53858fed8a316a4715c2f7f92cdfb4a7b4dd8:

  target/mips: msa: Split helpers for SUBS_U.<B|H|W|D> (2020-06-15 20:50:40 +0200)

are available in the git repository at:

  https://github.com/AMarkovic/qemu tags/mips-queue-jun-15-2020

for you to fetch changes up to 250bc43a406f7d46e319abe87c19548d4f027828:

  translations: Add Swedish language (2020-06-15 20:51:10 +0200)

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

MIPS + misc queue for June 15th, 2020

  Highlights:

    This pull request, just exceptionally, contains two non-MIPS patches:

      - adjust sh4 maintainership
      - add Swedish translations

    The rest are MIPS patches:

      - refactor emulation of a number of MSA instructions
      - activate Loongson-related insn_flags

    Notes:

      - one checkpatch warning is benign
      - some of make check iotest-qcow2 tests fail on my system, both before
        and after applying the patches from this pull request

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


Aleksandar Markovic (15):
  target/mips: msa: Split helpers for MADDV.<B|H|W|D>
  target/mips: msa: Split helpers for MSUBV.<B|H|W|D>
  target/mips: msa: Split helpers for DPADD_S.<H|W|D>
  target/mips: msa: Split helpers for DPADD_U.<H|W|D>
  target/mips: msa: Split helpers for DPSUB_S.<H|W|D>
  target/mips: msa: Split helpers for DPSUB_U.<H|W|D>
  target/mips: msa: Split helpers for DOTP_S.<H|W|D>
  target/mips: msa: Split helpers for DOTP_U.<H|W|D>
  target/mips: msa: Split helpers for SUBS_S.<B|H|W|D>
  target/mips: msa: Split helpers for SUBS_U.<B|H|W|D>
  target/mips: msa: Split helpers for SUBSUS_U.<B|H|W|D>
  target/mips: msa: Split helpers for SUBSUU_S.<B|H|W|D>
  target/mips: msa: Split helpers for SUBV.<B|H|W|D>
  target/mips: msa: Split helpers for MULV.<B|H|W|D>
  MAINTAINERS: Adjust sh4 maintainership

Jiaxun Yang (2):
  target/mips: Legalize Loongson insn flags
  target/mips: Add comments for vendor-specific ASEs

Sebastian Rasmussen (1):
  translations: Add Swedish language

 target/mips/helper.h     |   73 ++-
 target/mips/mips-defs.h  |    8 +-
 target/mips/msa_helper.c | 1296 ++++++++++++++++++++++++++++++++++++----------
 target/mips/translate.c  |  213 +++++++-
 MAINTAINERS              |    8 +-
 po/sv.po                 |   75 +++
 6 files changed, 1364 insertions(+), 309 deletions(-)
 create mode 100644 po/sv.po

-- 
2.7.4



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

end of thread, other threads:[~2020-06-16 10:49 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-15 19:28 [PULL v2 00/18] MIPS + misc queue for June 15th, 2020 Aleksandar Markovic
2020-06-15 19:28 ` [PULL 01/18] target/mips: Legalize Loongson insn flags Aleksandar Markovic
2020-06-15 19:28 ` [PULL 02/18] target/mips: Add comments for vendor-specific ASEs Aleksandar Markovic
2020-06-15 19:28 ` [PULL 03/18] target/mips: msa: Split helpers for MADDV.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 04/18] target/mips: msa: Split helpers for MSUBV.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 05/18] target/mips: msa: Split helpers for DPADD_S.<H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 06/18] target/mips: msa: Split helpers for DPADD_U.<H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 07/18] target/mips: msa: Split helpers for DPSUB_S.<H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 08/18] target/mips: msa: Split helpers for DPSUB_U.<H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 09/18] target/mips: msa: Split helpers for DOTP_S.<H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 10/18] target/mips: msa: Split helpers for DOTP_U.<H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 11/18] target/mips: msa: Split helpers for SUBS_S.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 12/18] target/mips: msa: Split helpers for SUBS_U.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 13/18] target/mips: msa: Split helpers for SUBSUS_U.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 14/18] target/mips: msa: Split helpers for SUBSUU_S.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 15/18] target/mips: msa: Split helpers for SUBV.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 16/18] target/mips: msa: Split helpers for MULV.<B|H|W|D> Aleksandar Markovic
2020-06-15 19:28 ` [PULL 17/18] MAINTAINERS: Adjust sh4 maintainership Aleksandar Markovic
2020-06-15 19:29 ` [PULL 18/18] translations: Add Swedish language Aleksandar Markovic
2020-06-16 10:48 ` [PULL v2 00/18] MIPS + misc queue for June 15th, 2020 Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2020-06-15 19:22 [PULL " Aleksandar Markovic
2020-06-15 19:22 ` [PULL 06/18] target/mips: msa: Split helpers for DPADD_U.<H|W|D> Aleksandar Markovic

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).