From patchwork Mon Mar 4 15:13:12 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mateja Marjanovic X-Patchwork-Id: 10837917 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 1E53D1515 for ; Mon, 4 Mar 2019 15:16:17 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 08A5F2A766 for ; Mon, 4 Mar 2019 15:16:17 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id F03A52A770; Mon, 4 Mar 2019 15:16:16 +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=-2.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id A3AD82A766 for ; Mon, 4 Mar 2019 15:16:06 +0000 (UTC) Received: from localhost ([127.0.0.1]:55592 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h0pK0-0005JE-Q7 for patchwork-qemu-devel@patchwork.kernel.org; Mon, 04 Mar 2019 10:16:04 -0500 Received: from eggs.gnu.org ([209.51.188.92]:57092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h0pIb-0003z9-Ri for qemu-devel@nongnu.org; Mon, 04 Mar 2019 10:14:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h0pIa-0007na-TX for qemu-devel@nongnu.org; Mon, 04 Mar 2019 10:14:37 -0500 Received: from mx2.rt-rk.com ([89.216.37.149]:39135 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 1h0pIa-0006Kk-Jc for qemu-devel@nongnu.org; Mon, 04 Mar 2019 10:14:36 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id E04A01A213D; Mon, 4 Mar 2019 16:13:32 +0100 (CET) X-Virus-Scanned: amavisd-new at rt-rk.com Received: from rtrkw310-lin.domain.local (rtrkw310-lin.domain.local [10.10.13.57]) by mail.rt-rk.com (Postfix) with ESMTPSA id BE7AE1A2124; Mon, 4 Mar 2019 16:13:32 +0100 (CET) From: Mateja Marjanovic To: qemu-devel@nongnu.org Date: Mon, 4 Mar 2019 16:13:12 +0100 Message-Id: <1551712405-2530-1-git-send-email-mateja.marjanovic@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 v3 00/13] target/mips: Add emulation of data communication MMI instructions X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: arikalo@wavecomp.com, amarkovic@wavecomp.com, aurelien@aurel32.net Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Mateja Marjanovic This series adds emulation of PCPYH, PCPYLD, and PCPYUD MMI instructions. v3: - Added MMI instructions PEXEH, PEXEW, PEXTLB, PEXTLH, PEXTLW, PEXTUB, PEXTUH, and PEXTUW - Minor bugs fixed from previous patches v2: - The patch for PCPYH is split into two patches - Cleaned up handler for PCPYH - Fixed bugs and cleaned up in handler for PCPYLD - Fixed bugs and cleaned up in handler for PCPYUD - Added handler for MMI instruction PEXCH - Added handler for MMI instruction PEXCW Mateja Marjanovic (13): target/mips: Add emulation of MMI instruction PCPYH target/mips: Add emulation of MMI instruction PCPYLD target/mips: Add emulation of MMI instruction PCPYUD target/mips: Add emulation of MMI instruction PEXCH target/mips: Add emulation of MMI instruction PEXCW target/mips: Add emulation of MMI instruction PEXEH target/mips: Add emulation of MMI instruction PEXEW target/mips: Add emulation of MMI instruction PEXTLB target/mips: Add emulation of MMI instruction PEXTLH target/mips: Add emulation of MMI instruction PEXTLW target/mips: Add emulation of MMI instruction PEXTUB target/mips: Add emulation of MMI instruction PEXTUH target/mips: Add emulation of MMI instruction PEXTUW target/mips/translate.c | 909 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 896 insertions(+), 13 deletions(-)