From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id CC902C433EF for ; Fri, 20 May 2022 13:54:05 +0000 (UTC) Received: from localhost ([::1]:47510 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ns34u-0007cK-N7 for qemu-devel@archiver.kernel.org; Fri, 20 May 2022 09:54:04 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:43352) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ns32b-0004s8-86; Fri, 20 May 2022 09:51:41 -0400 Received: from [187.72.171.209] (port=41153 helo=outlook.eldorado.org.br) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ns32Z-0007xw-IX; Fri, 20 May 2022 09:51:41 -0400 Received: from p9ibm ([10.10.71.235]) by outlook.eldorado.org.br over TLS secured channel with Microsoft SMTPSVC(8.5.9600.16384); Fri, 20 May 2022 10:51:32 -0300 Received: from eldorado.org.br (unknown [10.10.70.45]) by p9ibm (Postfix) with ESMTP id 1CFA78000A0; Fri, 20 May 2022 10:51:32 -0300 (-03) From: "Lucas Mateus Castro(alqotel)" To: qemu-ppc@nongnu.org Cc: richard.henderson@linaro.org, "Lucas Mateus Castro (alqotel)" , =?UTF-8?q?Alex=20Benn=C3=A9e?= , Daniel Henrique Barboza , qemu-devel@nongnu.org, David Gibson , Greg Kurz Subject: [PATCH v4 0/8] VSX MMA Implementation Date: Fri, 20 May 2022 10:51:21 -0300 Message-Id: <20220520135129.63664-1-lucas.araujo@eldorado.org.br> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 20 May 2022 13:51:32.0389 (UTC) FILETIME=[B695E550:01D86C50] X-Host-Lookup-Failed: Reverse DNS lookup failed for 187.72.171.209 (failed) Received-SPF: pass client-ip=187.72.171.209; envelope-from=lucas.araujo@eldorado.org.br; helo=outlook.eldorado.org.br X-Spam_score_int: -4 X-Spam_score: -0.5 X-Spam_bar: / X-Spam_report: (-0.5 / 5.0 requ) BAYES_00=-1.9, PDS_HP_HELO_NORDNS=0.659, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" From: "Lucas Mateus Castro (alqotel)" Based-on: <20220517161522.36132-1-victor.colombo@eldorado.org.br> This patch series is a patch series of the Matrix-Multiply Assist (MMA) instructions implementation from the PowerISA 3.1 These and the VDIV/VMOD implementation are the last new PowerISA 3.1 instructions left to be implemented. The XVFGER instructions accumulate the exception status and at the end set the FPSCR and take a Program interrupt on a trap-enabled exception, previous versions were based on Victor's rework of FPU exceptions, but as that patch was rejected this version worked around the fact that OX/UX/XX and invalid instructions were handled in different functions by disabling all enable bits then re-enabling them and calling the mtfsf deferred exception helper. Patch without review: 5 v4 changes: - Changed VSXGER16 accumulation to always use float32_sum and negate the elements according to the type of accumulation v3 changes: - GER helpers now use ppc_acc_t instead of ppc_vsr_t for passing acc - Removed do_ger_XX3 and updated the decodetree to pass the masks in 32 bits instructions - Removed unnecessary rounding mode function - Moved float32_neg to fpu_helper.c and renamed it bfp32_negate to make it clearer that it's a 32 bit version of the PowerISA bfp_NEGATE - Negated accumulation now a subtraction - Changed exception handling by disabling all enable FPSCR enable bits to set all FPSCR bits (except FEX) correctly, then re-enable them and call do_fpscr_check_status to raise the exception accordingly and set FEX if necessary v2 changes: - Changed VSXGER, VSXGER16 and XVIGER macros to functions - Set rounding mode in floating-point instructions based on RN before operations - Separated accumulate and with saturation instructions in different helpers - Used FIELD, FIELD_EX32 and FIELD_DP32 for packing/unpacking masks Joel Stanley (1): linux-user: Add PowerPC ISA 3.1 and MMA to hwcap Lucas Mateus Castro (alqotel) (7): target/ppc: Implement xxm[tf]acc and xxsetaccz target/ppc: Implemented xvi*ger* instructions target/ppc: Implemented pmxvi*ger* instructions target/ppc: Implemented xvf*ger* target/ppc: Implemented xvf16ger* target/ppc: Implemented pmxvf*ger* target/ppc: Implemented [pm]xvbf16ger2* linux-user/elfload.c | 4 + target/ppc/cpu.h | 13 ++ target/ppc/fpu_helper.c | 326 +++++++++++++++++++++++++++- target/ppc/helper.h | 33 +++ target/ppc/insn32.decode | 52 +++++ target/ppc/insn64.decode | 79 +++++++ target/ppc/int_helper.c | 130 +++++++++++ target/ppc/internal.h | 15 ++ target/ppc/translate/vsx-impl.c.inc | 130 +++++++++++ 9 files changed, 780 insertions(+), 2 deletions(-) -- 2.31.1