qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 00/20] target-mips: add MSA module
@ 2014-10-29  1:41 Yongbok Kim
  2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 01/20] target-mips: add MSA defines and data structure Yongbok Kim
                   ` (19 more replies)
  0 siblings, 20 replies; 41+ messages in thread
From: Yongbok Kim @ 2014-10-29  1:41 UTC (permalink / raw)
  To: qemu-devel; +Cc: leon.alrae, aurelien

The following patchset implements MIPS SIMD Architecture module.
MSA adds new instructions to MIPS Architecture that allow efficient
parallel processing of vector operations.

For more information refer to:
MIPS Architecture Reference Manual
Volume IV-j: The MIPS32 SIMD Architecture Module
The document (MD00867) is available at:
http://www.imgtec.com/mips/architectures/simd.asp

The MSA floating-point is compliant with the IEEE Standard for Floating-Point
Arithmetic 754TM-2008. However this patchset is not set up with the IEEE-2008
option as QEMU softfloat for MIPS has not been updated yet.

v2:
* fixes for Leon's and James' comments
* rebased top of R6 patchset
* Code refactored mainly for msa_helper.c

Yongbok Kim (20):
  target-mips: add MSA defines and data structure
  target-mips: add MSA exceptions
  target-mips: remove duplicated mips/ieee mapping function
  target-mips: add 16, 64 bit load and store
  target-mips: stop translation after ctc1
  target-mips: add MSA opcode enum
  target-mips: add msa_reset(), global msa register
  target-mips: add msa_helper.c
  target-mips: add MSA branch instructions
  target-mips: add MSA I8 format instructions
  target-mips: add MSA I5 format instruction
  target-mips: add MSA BIT format instructions
  target-mips: add MSA 3R format instructions
  target-mips: add MSA ELM format instructions
  target-mips: add MSA 3RF format instructions
  target-mips: add MSA VEC/2R format instructions
  target-mips: add MSA 2RF format instructions
  target-mips: add MSA MI10 format instructions
  disas/mips.c: disassemble MSA instructions
  target-mips: add MSA support to mips32r5-generic

 disas/mips.c                 |  716 +++++++++-
 target-mips/Makefile.objs    |    2 +-
 target-mips/cpu.h            |   56 +-
 target-mips/gdbstub.c        |    7 -
 target-mips/helper.c         |   10 +
 target-mips/helper.h         |  184 +++
 target-mips/mips-defs.h      |    1 +
 target-mips/msa_helper.c     | 3461 ++++++++++++++++++++++++++++++++++++++++++
 target-mips/op_helper.c      |   89 +-
 target-mips/translate.c      | 1653 +++++++++++++++++++--
 target-mips/translate_init.c |   39 +-
 11 files changed, 6081 insertions(+), 137 deletions(-)
 create mode 100644 target-mips/msa_helper.c

-- 
1.7.4

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

end of thread, other threads:[~2014-11-06 11:49 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-29  1:41 [Qemu-devel] [PATCH v2 00/20] target-mips: add MSA module Yongbok Kim
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 01/20] target-mips: add MSA defines and data structure Yongbok Kim
2014-10-29  9:50   ` James Hogan
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 02/20] target-mips: add MSA exceptions Yongbok Kim
2014-10-29  9:56   ` James Hogan
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 03/20] target-mips: remove duplicated mips/ieee mapping function Yongbok Kim
2014-10-29 10:04   ` James Hogan
2014-10-29 22:55   ` Leon Alrae
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 04/20] target-mips: add 16, 64 bit load and store Yongbok Kim
2014-10-29 10:21   ` James Hogan
2014-10-29 22:56   ` Leon Alrae
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 05/20] target-mips: stop translation after ctc1 Yongbok Kim
2014-10-29 10:26   ` James Hogan
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 06/20] target-mips: add MSA opcode enum Yongbok Kim
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 07/20] target-mips: add msa_reset(), global msa register Yongbok Kim
2014-10-29 10:36   ` James Hogan
2014-11-05 17:36   ` Richard Henderson
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 08/20] target-mips: add msa_helper.c Yongbok Kim
2014-10-29 10:50   ` James Hogan
2014-10-29 22:57   ` Leon Alrae
2014-11-05 17:38   ` Richard Henderson
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 09/20] target-mips: add MSA branch instructions Yongbok Kim
2014-10-29 11:19   ` James Hogan
2014-11-05 17:41   ` Richard Henderson
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 10/20] target-mips: add MSA I8 format instructions Yongbok Kim
2014-10-29 11:38   ` James Hogan
2014-11-05 17:43   ` Richard Henderson
2014-11-06 11:49     ` Yongbok Kim
2014-10-29  1:41 ` [Qemu-devel] [PATCH v2 11/20] target-mips: add MSA I5 format instruction Yongbok Kim
2014-10-29 23:23   ` James Hogan
2014-10-29 23:27   ` Leon Alrae
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 12/20] target-mips: add MSA BIT format instructions Yongbok Kim
2014-10-30  8:02   ` Leon Alrae
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 13/20] target-mips: add MSA 3R " Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 14/20] target-mips: add MSA ELM " Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 15/20] target-mips: add MSA 3RF " Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 16/20] target-mips: add MSA VEC/2R " Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 17/20] target-mips: add MSA 2RF " Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 18/20] target-mips: add MSA MI10 " Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 19/20] disas/mips.c: disassemble MSA instructions Yongbok Kim
2014-10-29  1:42 ` [Qemu-devel] [PATCH v2 20/20] target-mips: add MSA support to mips32r5-generic Yongbok Kim

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