From patchwork Tue Jul 2 11:50:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aleksandar Markovic X-Patchwork-Id: 11027761 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 66193138B for ; Tue, 2 Jul 2019 12:06:28 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4E0A2288E6 for ; Tue, 2 Jul 2019 12:06:28 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 42D8F288EA; Tue, 2 Jul 2019 12:06:28 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id D1FD6281B7 for ; Tue, 2 Jul 2019 12:06:27 +0000 (UTC) Received: from localhost ([::1]:52060 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hiHYJ-00052m-4d for patchwork-qemu-devel@patchwork.kernel.org; Tue, 02 Jul 2019 08:06:27 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36003) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hiHKG-0001DA-6N for qemu-devel@nongnu.org; Tue, 02 Jul 2019 07:51:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hiHKE-0006u3-Ub for qemu-devel@nongnu.org; Tue, 02 Jul 2019 07:51:56 -0400 Received: from mx2.rt-rk.com ([89.216.37.149]:40745 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 1hiHKE-0005HV-Mp for qemu-devel@nongnu.org; Tue, 02 Jul 2019 07:51:54 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id 5FB2B1A2183; Tue, 2 Jul 2019 13:50:42 +0200 (CEST) X-Virus-Scanned: amavisd-new at rt-rk.com Received: from rtrkw774-lin.domain.local (rtrkw774-lin.domain.local [10.10.13.43]) by mail.rt-rk.com (Postfix) with ESMTPSA id A7CF61A219E; Tue, 2 Jul 2019 13:50:29 +0200 (CEST) From: Aleksandar Markovic To: qemu-devel@nongnu.org, arikalo@wavecomp.com Date: Tue, 2 Jul 2019 13:50:06 +0200 Message-Id: <1562068213-11307-1-git-send-email-aleksandar.markovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 89.216.37.149 Subject: [Qemu-devel] [PATCH v2 0/7] target/mips: Misc improvements for 4.1 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: amarkovic@wavecomp.com Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Aleksandar Markovic A collection of misc MIPS improvements that would be nice to be integrated into 4.1. Aleksandar Markovic (7): tcg/tests: target/mips: Amend MSA fixed point multiply tests tcg/tests: target/mips: Amend MSA integer multiply tests tcg/tests: target/mips: Correct MSA test compilation and execution order target/mips: Correct comments in translate.c target/mips: Correct comments in msa_helper.c target/mips: Unroll loops for MSA float max/min instructions target/mips: Correct helper for MSA FCLASS. instructions target/mips/msa_helper.c | 260 +++++++---- target/mips/translate.c | 497 +++++++++++++-------- tests/tcg/mips/include/wrappers_msa.h | 16 + .../ase/msa/fixed-multiply/test_msa_madd_q_h.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_madd_q_w.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_maddr_q_h.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_maddr_q_w.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_msub_q_h.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_msub_q_w.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_msubr_q_h.c | 216 +++++++++ .../ase/msa/fixed-multiply/test_msa_msubr_q_w.c | 216 +++++++++ .../user/ase/msa/int-multiply/test_msa_maddv_b.c | 224 +++++----- .../user/ase/msa/int-multiply/test_msa_maddv_d.c | 214 ++++----- .../user/ase/msa/int-multiply/test_msa_maddv_h.c | 224 +++++----- .../user/ase/msa/int-multiply/test_msa_maddv_w.c | 224 +++++----- .../user/ase/msa/int-multiply/test_msa_msubv_b.c | 224 +++++----- .../user/ase/msa/int-multiply/test_msa_msubv_d.c | 224 +++++----- .../user/ase/msa/int-multiply/test_msa_msubv_h.c | 224 +++++----- .../user/ase/msa/int-multiply/test_msa_msubv_w.c | 224 +++++----- .../mips/user/ase/msa/test_msa_compile_32r6eb.sh | 32 +- .../mips/user/ase/msa/test_msa_compile_32r6el.sh | 32 +- .../mips/user/ase/msa/test_msa_compile_64r6eb.sh | 32 +- .../mips/user/ase/msa/test_msa_compile_64r6el.sh | 32 +- tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh | 16 +- tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh | 16 +- tests/tcg/mips/user/ase/msa/test_msa_run_64r6eb.sh | 16 +- tests/tcg/mips/user/ase/msa/test_msa_run_64r6el.sh | 16 +- 27 files changed, 3262 insertions(+), 1213 deletions(-) create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_madd_q_h.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_madd_q_w.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_maddr_q_h.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_maddr_q_w.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msub_q_h.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msub_q_w.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msubr_q_h.c create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msubr_q_w.c