From nobody Tue Feb 10 21:59:36 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org ARC-Seal: i=1; a=rsa-sha256; t=1555601831; cv=none; d=zoho.com; s=zohoarc; b=MyJO4+m8+991a4i0d5fX/bA8Z181DxWweGXmlnop6pcjwsMfuoGsNncbs5UW3Z54CNX7yLh9KsQ3sJq5jLdZ+3NqRBirfDwx4JBop7sgi2rGjZ2bBfJiNQDiTlrAvITrA4sYXwsap/EUx0bBLSXheNv3DyzD12SahY/TQdYhqes= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1555601831; h=Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=/B2B7YWIvcQDQBgZE0nuOjUEt/vzj6gyKQ8kWyYUTAg=; b=KwtoxyGSdjpZLp8YJn39xgHAMcbsOBLnFVxBRLRu47AvfSiaYV6nCwUOw+FXCjlqHpt/zJcvR2R6wBgMhyWBGz5ZDspN1i58P0c5OnkVn42azMpwl0wRZFfOzhFp+l9yTO7J9QqDlcVTB6C5M0DClVrjKtTjBjQ2Vpw/yn5ZyAY= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 155560183167743.54235395709395; Thu, 18 Apr 2019 08:37:11 -0700 (PDT) Received: from localhost ([127.0.0.1]:43119 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hH95z-0000no-Ru for importer@patchew.org; Thu, 18 Apr 2019 11:37:03 -0400 Received: from eggs.gnu.org ([209.51.188.92]:43724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hH93z-0007d8-KF for qemu-devel@nongnu.org; Thu, 18 Apr 2019 11:35:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hH8yX-000348-I7 for qemu-devel@nongnu.org; Thu, 18 Apr 2019 11:29:22 -0400 Received: from mx2.rt-rk.com ([89.216.37.149]:36902 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 1hH8yX-00033P-BM for qemu-devel@nongnu.org; Thu, 18 Apr 2019 11:29:21 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id 5BD951A2462; Thu, 18 Apr 2019 17:29:18 +0200 (CEST) Received: from rtrkw310-lin.domain.local (rtrkw310-lin.domain.local [10.10.13.97]) by mail.rt-rk.com (Postfix) with ESMTPSA id 345AD1A2435; Thu, 18 Apr 2019 17:29:18 +0200 (CEST) X-Virus-Scanned: amavisd-new at rt-rk.com From: Mateja Marjanovic To: qemu-devel@nongnu.org Date: Thu, 18 Apr 2019 17:29:10 +0200 Message-Id: <1555601350-4176-7-git-send-email-mateja.marjanovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1555601350-4176-1-git-send-email-mateja.marjanovic@rt-rk.com> References: <1555601350-4176-1-git-send-email-mateja.marjanovic@rt-rk.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 89.216.37.149 Subject: [Qemu-devel] [PATCH v9 6/6] target/mips: Merge implementation of ILVOD.D and ILVL.D 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, richard.henderson@linaro.org, philmd@redhat.com, amarkovic@wavecomp.com, aurelien@aurel32.net Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" From: Mateja Marjanovic The implementation for ILVOD.D and ILVL.D instructions is equivalent, so use a single handler for both of them. Suggested-by: Aleksandar Markovic Signed-off-by: Mateja Marjanovic --- target/mips/translate.c | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/target/mips/translate.c b/target/mips/translate.c index 019a2c0..020a659 100644 --- a/target/mips/translate.c +++ b/target/mips/translate.c @@ -28310,19 +28310,6 @@ static inline void gen_ilvl_w(CPUMIPSState *env, u= int32_t wd, } =20 /* - * [MSA] ILVL.D wd, ws, wt - * - * Vector Interleave Left (doubleword data elements) - * - */ -static inline void gen_ilvl_d(CPUMIPSState *env, uint32_t wd, - uint32_t ws, uint32_t wt) -{ - tcg_gen_mov_i64(msa_wr_d[wd * 2], msa_wr_d[wt * 2 + 1]); - tcg_gen_mov_i64(msa_wr_d[wd * 2 + 1], msa_wr_d[ws * 2 + 1]); -} - -/* * [MSA] ILVOD. wd, ws, wt * * Vector Interleave Odd ( data elements) @@ -28388,9 +28375,15 @@ static inline void gen_ilvod_w(CPUMIPSState *env, = uint32_t wd, * * Vector Interleave Odd (doubleword data elements) * + * [MSA] ILVL.D wd, ws, wt + * + * Vector Interleave Left (doubleword data elements) + * + * These two instructions are functionally equivalent. + * */ -static inline void gen_ilvod_d(CPUMIPSState *env, uint32_t wd, - uint32_t ws, uint32_t wt) +static inline void gen_ilvod_ilvl_d(CPUMIPSState *env, uint32_t wd, + uint32_t ws, uint32_t wt) { tcg_gen_mov_i64(msa_wr_d[wd * 2], msa_wr_d[wt * 2 + 1]); tcg_gen_mov_i64(msa_wr_d[wd * 2 + 1], msa_wr_d[ws * 2 + 1]); @@ -28603,7 +28596,7 @@ static void gen_msa_3r(CPUMIPSState *env, DisasCont= ext *ctx) gen_ilvl_w(env, wd, ws, wt); break; case DF_DOUBLE: - gen_ilvl_d(env, wd, ws, wt); + gen_ilvod_ilvl_d(env, wd, ws, wt); break; default: assert(0); @@ -28699,7 +28692,7 @@ static void gen_msa_3r(CPUMIPSState *env, DisasCont= ext *ctx) gen_ilvod_w(env, wd, ws, wt); break; case DF_DOUBLE: - gen_ilvod_d(env, wd, ws, wt); + gen_ilvod_ilvl_d(env, wd, ws, wt); break; default: assert(0); --=20 2.7.4