From patchwork Fri May 21 20:17:50 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Bruno Larsen (billionai)" X-Patchwork-Id: 1482320 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) 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 ozlabs.org (Postfix) with ESMTPS id 4FmydH1kXqz9sVt for ; Sat, 22 May 2021 06:19:47 +1000 (AEST) Received: from localhost ([::1]:41314 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lkBcW-0005tk-Q4 for incoming@patchwork.ozlabs.org; Fri, 21 May 2021 16:19:44 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49914) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lkBbK-0005sW-5R; Fri, 21 May 2021 16:18:30 -0400 Received: from [201.28.113.2] (port=1319 helo=outlook.eldorado.org.br) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lkBbE-0001Nf-Ee; Fri, 21 May 2021 16:18:26 -0400 Received: from power9a ([10.10.71.235]) by outlook.eldorado.org.br with Microsoft SMTPSVC(8.5.9600.16384); Fri, 21 May 2021 17:18:19 -0300 Received: from eldorado.org.br (unknown [10.10.71.235]) by power9a (Postfix) with ESMTP id 0EB208013E3; Fri, 21 May 2021 17:18:19 -0300 (-03) From: "Bruno Larsen (billionai)" To: qemu-devel@nongnu.org Subject: [PATCH v3 0/9] target/ppc: add support to disable-tcg Date: Fri, 21 May 2021 17:17:50 -0300 Message-Id: <20210521201759.85475-1-bruno.larsen@eldorado.org.br> X-Mailer: git-send-email 2.17.1 X-OriginalArrivalTime: 21 May 2021 20:18:19.0198 (UTC) FILETIME=[708EEDE0:01D74E7E] X-Host-Lookup-Failed: Reverse DNS lookup failed for 201.28.113.2 (failed) Received-SPF: pass client-ip=201.28.113.2; envelope-from=bruno.larsen@eldorado.org.br; helo=outlook.eldorado.org.br X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action 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: farosas@linux.ibm.com, richard.henderson@linaro.org, luis.pires@eldorado.org.br, lucas.araujo@eldorado.org.br, fernando.valle@eldorado.org.br, qemu-ppc@nongnu.org, matheus.ferst@eldorado.org.br, david@gibson.dropbear.id.au Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" This patch series finishes the the changes required to support disabling TCG for ppc targets. With the current version of the patch, the project compiles and runs ok, but we need some more testing to ensure that no regressions happened, especially with relation to gdb. For patch 7, if we were to avoid ifdef'ing the header files, we'd need to change the configure script, and we wanted to restrict the amount of subsystems touched. We can add it to the list of future cleanup if everything is merged. Based-on: <20210518201146.794854-1-richard.henderson@linaro.org> Changelog for v3: * undone split, since rth's patch fixes what we needed * changed commit message for patch 1 * added some fixes suggested by dgibson for patch 7 Changelog for v2: * split the patch series * added a fix for 5d145639e, which no longer compiles with linux-user * removed patches ther were already accepted * applied rth's cleanup to ppc_store_sdr1 * changed destination of ppc_store_msr * undone change to helper-proto, now fewer files include it Bruno Larsen (billionai) (9): target/ppc: cleaned error_report from ppc_store_sdr1 target/ppc: moved ppc_store_lpcr and ppc_store_msr to cpu.c target/ppc: reduce usage of fpscr_set_rounding_mode target/ppc: overhauled and moved logic of storing fpscr target/ppc: removed unnecessary inclusion of helper-proto.h target/ppc: moved ppc_cpu_do_interrupt to cpu.c target/ppc: Added options to disable many TCG-only functions target/ppc: created tcg-stub.c file target/ppc: updated meson.build to support disable-tcg target/ppc/cpu.c | 88 +++++++++++++- target/ppc/cpu.h | 13 ++- target/ppc/cpu_init.c | 12 +- target/ppc/excp_helper.c | 104 ++++++++--------- target/ppc/fpu_helper.c | 246 +++------------------------------------ target/ppc/gdbstub.c | 7 +- target/ppc/meson.build | 11 +- target/ppc/misc_helper.c | 16 --- target/ppc/mmu-hash32.c | 1 - target/ppc/mmu-hash64.c | 11 +- target/ppc/mmu-radix64.c | 1 - target/ppc/mmu_helper.c | 16 ++- target/ppc/tcg-stub.c | 25 ++++ 13 files changed, 225 insertions(+), 326 deletions(-) create mode 100644 target/ppc/tcg-stub.c