From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:57213) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdz17-0005eF-1M for qemu-devel@nongnu.org; Mon, 31 Dec 2018 09:58:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdz14-0003z6-7t for qemu-devel@nongnu.org; Mon, 31 Dec 2018 09:58:08 -0500 Received: from mx2.rt-rk.com ([89.216.37.149]:57100 helo=mail.rt-rk.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gdz13-0002SF-SM for qemu-devel@nongnu.org; Mon, 31 Dec 2018 09:58:06 -0500 From: Aleksandar Markovic Date: Mon, 31 Dec 2018 15:55:56 +0100 Message-Id: <1546268200-26966-1-git-send-email-aleksandar.markovic@rt-rk.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL v2 00/44] MIPS pull request for December 2018 - v2 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, amarkovic@wavecomp.com From: Aleksandar Markovic The following changes since commit 9b2e891ec5ccdb4a7d583b77988848282606fd= ea: Merge remote-tracking branch 'remotes/marcel/tags/rdma-pull-request' in= to staging (2018-12-22 11:25:31 +0000) are available in the git repository at: https://github.com/AMarkovic/qemu tags/mips-queue-dec-2018-v2 for you to fetch changes up to 96446398f47b70cf0998412314730709570e08c5: tests/tcg: mips: Test R5900 three-operand MADDU1 (2018-12-31 15:47:28 += 0100) ---------------------------------------------------------------- MIPS queue for December 2018 - v2 - this queue contains various amendments to MIPS code - there are three checkpatch warnings that should be ingnored in given circumstances - most of the patches are not yet visible/noticeable to the end user, just a single note related to Paul's patch will be added to ChangeLog v1->v2: - added three patches that were meanwhile tested better ---------------------------------------------------------------- Aleksandar Markovic (36): MAINTAINERS: target/mips: Add MIPS files under default-configs directory MAINTAINERS: target/mips: Add filter for mips in email subjects MAINTAINERS: target/mips: Reorder items alphabetically MAINTAINERS: Add Aleksandar Rikalo as a reviewer for MIPS content target/mips: MXU: Add missing opcodes/decoding for LX* instructions target/mips: MXU: Add generic naming for optn2 constants target/mips: MXU: Improve the comment containing MXU overview target/mips: MXU: Add handlers for logic instructions target/mips: MXU: Add handlers for max/min instructions target/mips: MXU: Add handler for an align instruction disas: nanoMIPS: Fix preamble text in nanomips.* files disas: nanoMIPS: Remove functions that are not used disas: nanoMIPS: Fix a function misnomer disas: nanoMIPS: Fix order of some invocations disas: nanoMIPS: Name some functions in a more descriptive way disas: nanoMIPS: Fix an FP-related misnomer 1 disas: nanoMIPS: Fix an FP-related misnomer 2 disas: nanoMIPS: Fix an FP-related misnomer 3 disas: nanoMIPS: Name more functions in a more descriptive way disas: nanoMIPS: Fix order of more invocations disas: nanoMIPS: Rename the decoder of 'gpr3' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr3' gpr encoding type disas: nanoMIPS: Rename the decoder of 'gpr3.src.store' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr3.src.store' gpr encoding type disas: nanoMIPS: Rename the decoder of 'gpr4' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr4' gpr encoding type disas: nanoMIPS: Rename the decoder of 'gpr4.zero' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr4.zero' gpr encoding type disas: nanoMIPS: Rename the decoder of 'gpr2.reg1' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr2.reg1' gpr encoding type disas: nanoMIPS: Rename the decoder of 'gpr2.reg2' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr2.reg2' gpr encoding type disas: nanoMIPS: Rename the decoder of 'gpr1' gpr encoding type disas: nanoMIPS: Comment the decoder of 'gpr1' gpr encoding type disas: nanoMIPS: Reorder declarations and definitions of gpr decoders disas: nanoMIPS: Add a note on documentation Fredrik Noring (5): target/mips: Support R5900 three-operand MADD1 and MADDU1 instructions tests/tcg: mips: Test R5900 three-operand MADD tests/tcg: mips: Test R5900 three-operand MADD1 tests/tcg: mips: Test R5900 three-operand MADDU tests/tcg: mips: Test R5900 three-operand MADDU1 Paul Burton (1): atomics: Set ATOMIC_REG_SIZE=3D8 for MIPS n32 Philippe Mathieu-Daud=C3=A9 (1): target/mips: Support R5900 three-operand MADD and MADDU instructions Stefan Weil (1): disas: nanoMIPS: Fix types and format strings MAINTAINERS | 21 +- disas/nanomips.cpp | 2155 ++++++++++++++++++-------------= ------ disas/nanomips.h | 125 +-- include/qemu/atomic.h | 5 +- target/mips/translate.c | 1007 ++++++++++++++--- tests/tcg/mips/mipsr5900/Makefile | 2 + tests/tcg/mips/mipsr5900/madd.c | 78 ++ tests/tcg/mips/mipsr5900/maddu.c | 70 ++ 8 files changed, 2178 insertions(+), 1285 deletions(-) create mode 100644 tests/tcg/mips/mipsr5900/madd.c create mode 100644 tests/tcg/mips/mipsr5900/maddu.c --=20 2.7.4