From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sender4-op-o16.zoho.com (sender4-op-o16.zoho.com [136.143.188.16]) by sourceware.org (Postfix) with ESMTPS id C345D38378CB; Fri, 9 Dec 2022 02:44:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C345D38378CB Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=icenowy.me Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=icenowy.me ARC-Seal: i=1; a=rsa-sha256; t=1670553849; cv=none; d=zohomail.com; s=zohoarc; b=LbvE37APLuQzSp3ywRu1kg+Xnl1AHqlH7gq8LBiy/d/pS+QmmNftkD3ER8YBTjfMW0u6WTclwweGyNrVOhCF02IxsrmHEnCBR6X3zt4PuuGucCkMvxjj4OC5A+6lf155/WqG4naUbXJFLBcpTs48wgO/tS1NM5JoyAYDzlM6gNk= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1670553849; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=+PA6/OhoJmH4b1jTd72kVKHOXcGMxkp6DP8RSNB3qVE=; b=idmJ7mfeF23D5eh+Rg7VXJppnvUzOVM+ZtD269H8nbGQVLK4QgrMYUITrm2c6n9l852xIwRgV5MkZHqxbNG7Qq99sQIIw/0LpM9/2WVQpDKe8YbcsR6/VbbEyhCc4/dwqcZ0l5wflLetWAV1IDey3JF5/vncGR9h2MtoaRkHq1Y= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=icenowy.me; spf=pass smtp.mailfrom=uwu@icenowy.me; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1670553849; s=zmail; d=icenowy.me; i=uwu@icenowy.me; h=From:From:To:To:Cc:Cc:Subject:Subject:Date:Date:Message-Id:Message-Id:In-Reply-To:References:MIME-Version:Content-Transfer-Encoding:Reply-To; bh=+PA6/OhoJmH4b1jTd72kVKHOXcGMxkp6DP8RSNB3qVE=; b=MEbOfKRAKDWOnt8W0y4Wo5NQfGR4GfHlIp5FjC+RsXdGn4Hu4WH02BKM3/FWPQg3 FM9jyop+nll5GPNUaxAyQJ9IjF45F+uJuTbe8J697VWsf9I3rLSvAGygQYmOTDCBmdZ WON/p/MkVxkMTcznBM2cyBImSq8ZynKRsaVEBpO8= Received: from edelgard.fodlan.icenowy.me (120.85.99.143 [120.85.99.143]) by mx.zohomail.com with SMTPS id 1670553848345595.5200839822688; Thu, 8 Dec 2022 18:44:08 -0800 (PST) From: Icenowy Zheng To: gcc-patches@gcc.gnu.org Cc: Xi Ruoyao , jit@gcc.gnu.org, Icenowy Zheng Subject: [PATCH 2/2] LoongArch: drop loongarch-driver Date: Fri, 9 Dec 2022 10:43:49 +0800 Message-Id: <20221209024349.845948-3-uwu@icenowy.me> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221209024349.845948-1-uwu@icenowy.me> References: <20221209024349.845948-1-uwu@icenowy.me> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-ZohoMailClient: External X-Spam-Status: No, score=-3.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_INFOUSMEBIZ,KAM_SHORT,RCVD_IN_BARRACUDACENTRAL,RCVD_IN_BL_SPAMCOP_NET,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_PASS,TXREP,URIBL_BLACK autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Currently the loongarch-driver code tries to parse the values of some -m flags to numeric representation, and then output the strings corresponding to the numeric representations. This is mostly an no-op, and it leads to duplication of these flags' parse code, which makes building libgccjit fail by having multiple copies of this code to link. However, this driver code is previously used to generate default values for these -m flags, which is now obsoleted by respecting the values of --with-* build-time configure flags (or their default values determined in config.gcc). Some other architectures include driver code to handle -m{arch,tune}=native by converting it to the current CPU type. However as the LoongArch compiler itself can handle native value, such a driver is not necessary on LoongArch. Drop loongarch-driver now as it's mostly useless. The specs snippets that handles -mabi values are moved to loongarch.h as they're still useful and does not depend on the driver. gcc/ChangeLog: * config/loongarch/loongarch.h (ABI_GRLEN_SPEC): Moved from loongarch-driver.h. * config/loongarch/loongarch.h (ABI_SPEC): Ditto. * config/loongarch/loongarch-driver.h: Removed. * config/loongarch/loongarch-driver.cc: Removed. Signed-off-by: Icenowy Zheng --- gcc/config.gcc | 1 - gcc/config/loongarch/loongarch-driver.cc | 187 ----------------------- gcc/config/loongarch/loongarch-driver.h | 68 --------- gcc/config/loongarch/loongarch.h | 10 +- 4 files changed, 8 insertions(+), 258 deletions(-) delete mode 100644 gcc/config/loongarch/loongarch-driver.cc delete mode 100644 gcc/config/loongarch/loongarch-driver.h diff --git a/gcc/config.gcc b/gcc/config.gcc index b5eda046033..dc1b1cdaa9d 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -459,7 +459,6 @@ loongarch*-*-*) cpu_type=loongarch extra_headers="larchintrin.h" extra_objs="loongarch-c.o loongarch-builtins.o loongarch-cpu.o loongarch-opts.o loongarch-def.o" - extra_gcc_objs="loongarch-driver.o loongarch-cpu.o loongarch-opts.o loongarch-def.o" extra_options="${extra_options} g.opt fused-madd.opt" ;; nds32*) diff --git a/gcc/config/loongarch/loongarch-driver.cc b/gcc/config/loongarch/loongarch-driver.cc deleted file mode 100644 index 0adcc923b7d..00000000000 --- a/gcc/config/loongarch/loongarch-driver.cc +++ /dev/null @@ -1,187 +0,0 @@ -/* Subroutines for the gcc driver. - Copyright (C) 2021-2022 Free Software Foundation, Inc. - Contributed by Loongson Ltd. - -This file is part of GCC. - -GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3, or (at your option) -any later version. - -GCC is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with GCC; see the file COPYING3. If not see -. */ - -#define IN_TARGET_CODE 1 - -#include "config.h" -#include "system.h" -#include "coretypes.h" -#include "tm.h" -#include "obstack.h" -#include "diagnostic-core.h" - -#include "loongarch-opts.h" -#include "loongarch-driver.h" - -static int - opt_arch_driver = M_OPTION_NOT_SEEN, - opt_tune_driver = M_OPTION_NOT_SEEN, - opt_fpu_driver = M_OPTION_NOT_SEEN, - opt_abi_base_driver = M_OPTION_NOT_SEEN, - opt_abi_ext_driver = M_OPTION_NOT_SEEN, - opt_cmodel_driver = M_OPTION_NOT_SEEN; - -int opt_switches = 0; - -/* This flag is set to 1 if we believe that the user might be avoiding - linking (implicitly) against something from the startfile search paths. */ -static int no_link = 0; - -#define LARCH_DRIVER_SET_M_FLAG(OPTS_ARRAY, N_OPTS, FLAG, STR) \ - for (int i = 0; i < (N_OPTS); i++) \ - { \ - if ((OPTS_ARRAY)[i] != 0) \ - if (strcmp ((STR), (OPTS_ARRAY)[i]) == 0) \ - (FLAG) = i; \ - } - -/* Use the public obstack from the gcc driver (defined in gcc.c). - This is for allocating space for the returned string. */ -extern struct obstack opts_obstack; - -#define APPEND_LTR(S) \ - obstack_grow (&opts_obstack, (const void*) (S), \ - sizeof ((S)) / sizeof (char) -1) - -#define APPEND_VAL(S) \ - obstack_grow (&opts_obstack, (const void*) (S), strlen ((S))) - - -const char* -driver_set_m_flag (int argc, const char **argv) -{ - int parm_off = 0; - - if (argc != 1) - return "%eset_m_flag requires exactly 1 argument."; - -#undef PARM -#define PARM (argv[0] + parm_off) - -/* Note: sizeof (OPTSTR_##NAME) equals the length of "