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 X-Spam-Level: X-Spam-Status: No, score=-12.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 06D89C07E96 for ; Thu, 8 Jul 2021 17:27:52 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id B4E3061874 for ; Thu, 8 Jul 2021 17:27:51 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B4E3061874 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=eldorado.org.br Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:34300 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m1XoU-0001CP-Oe for qemu-devel@archiver.kernel.org; Thu, 08 Jul 2021 13:27:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:44846) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m1XFF-0008EP-G8; Thu, 08 Jul 2021 12:51:25 -0400 Received: from [201.28.113.2] (port=18772 helo=outlook.eldorado.org.br) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m1XFE-0003G3-2r; Thu, 08 Jul 2021 12:51:25 -0400 Received: from power9a ([10.10.71.235]) by outlook.eldorado.org.br with Microsoft SMTPSVC(8.5.9600.16384); Thu, 8 Jul 2021 13:50:19 -0300 Received: from eldorado.org.br (unknown [10.10.71.235]) by power9a (Postfix) with ESMTP id 769F4800976; Thu, 8 Jul 2021 13:50:19 -0300 (-03) From: "Lucas Mateus Castro (alqotel)" To: qemu-devel@nongnu.org, qemu-ppc@nongnu.org Subject: [PATCH v3 0/4] target/ppc: MMU clean up Date: Thu, 8 Jul 2021 13:49:53 -0300 Message-Id: <20210708164957.28096-1-lucas.araujo@eldorado.org.br> X-Mailer: git-send-email 2.17.1 X-OriginalArrivalTime: 08 Jul 2021 16:50:19.0602 (UTC) FILETIME=[55F7B320:01D77419] 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=lucas.araujo@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, PDS_HP_HELO_NORDNS=0.001, 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: "Lucas Mateus Castro \(alqotel\)" , luis.pires@eldorado.org.br, fernando.valle@eldorado.org.br, matheus.ferst@eldorado.org.br, david@gibson.dropbear.id.au Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" This patch series aims to clean up some of the code mmu_helper.c, including removing the #includes inside ifdef. This version of the patch has been rebased on the current ppc-for-6.1 branch as adapted accordingly. Comments are welcome, thanks, Lucas Mateus. Based-on: 13ee4a0b436a75b7c1f4ddf12699800388f929d4 Lucas Mateus Castro (alqotel) (4): target/ppc: Don't compile ppc_tlb_invalid_all without TCG target/ppc: divided mmu_helper.c in 2 files target/ppc: moved ppc_store_sdr1 to mmu_common.c target/ppc: moved store_40x_sler to helper_regs.c target/ppc/cpu.c | 28 - target/ppc/cpu.h | 20 + target/ppc/cpu_init.c | 2 + target/ppc/helper_regs.c | 12 + target/ppc/internal.h | 28 + target/ppc/meson.build | 8 +- target/ppc/mmu_common.c | 1620 ++++++++++++++++++++++++++++++++++++++ target/ppc/mmu_helper.c | 1586 +------------------------------------ 8 files changed, 1688 insertions(+), 1616 deletions(-) create mode 100644 target/ppc/mmu_common.c -- 2.17.1