From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id iG8OCSgWUWMesA4AWB0awg (envelope-from ) for ; Thu, 20 Oct 2022 05:34:32 -0400 Received: by simark.ca (Postfix, from userid 112) id 22E801E112; Thu, 20 Oct 2022 05:34:32 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=vV/phZBo; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 1276C1E0D5 for ; Thu, 20 Oct 2022 05:34:28 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 4DB7A382DB3A for ; Thu, 20 Oct 2022 09:34:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4DB7A382DB3A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666258440; bh=DXz9bKcG2s3vOJIkvo7ieI+PBuJ7GJWC8f6SzvURX8w=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=vV/phZBom31a02mEYRlrug+f1GiKaA7G2wOTrQysd6zeyLnIZExBf9deaKJz/bQvc bjdEd78CcaM+5xwKXEud1uR9aijFoQ272mhQmSFe8Pm8HUs9Q1STE7180ep1SIvAaa cg+RyCSPp//sjxzMkT2yFz7Hic2G7G6Nr4RqfABQ= Received: from mail-sender-0.a4lg.com (mail-sender-0.a4lg.com [IPv6:2401:2500:203:30b:4000:6bfe:4757:0]) by sourceware.org (Postfix) with ESMTPS id 921A73AA9909 for ; Thu, 20 Oct 2022 09:32:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 921A73AA9909 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mail-sender-0.a4lg.com (Postfix) with ESMTPSA id DBBC3300089; Thu, 20 Oct 2022 09:32:53 +0000 (UTC) To: Tsukasa OI , Andrew Burgess , Mike Frysinger , Nick Clifton Subject: [PATCH 00/40] sim+gdb: Suppress warnings if built with Clang (big batch 1) Date: Thu, 20 Oct 2022 09:32:05 +0000 Message-Id: Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Tsukasa OI via Gdb-patches Reply-To: Tsukasa OI Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Hi all, In my environment (Ubuntu 22.04.1 LTS + LLVM Clang 15.0.0/15.0.3), I have finally managed to build almost default configuration of all-arch Binutils + GDB ("--enable-targets=all") with Clang and -Werror enabled (by default). This patchset is what I originally intended to split to multiple parts (in fact, I submitted several patchsets that are originally a part of this) but shared here (without splitting) to discuss and share information who wants to build Binutils + GDB with Clang. Related components (for review): - 3 : cpu (Binutils) - PATCH 04/40 (CRIS) - PATCH 05/40 (CRIS) - PATCH 11/40 (FR-V) - 1 : gdb (GDB) - PATCH 01/40 (same patch as below): - 36 : sim (GDB) Each resolves relatively small issue and/or non-issue (which Clang thinks it is a problem). [Credit] PATCH 16/40 is entirely authored by Andrew Burgess (exactly the same as): [Limitation] I only tested this on Linux (x86_64) and with almost default configuration. My initial submission of gdb patch above confirmed broken on Mac due to different C++ standard library (fixed though) but I cannot guarantee whether this patchset is all we need. So, non-default components and non-default configurations may still have problems building with Clang (e.g. assemblers except x86). [Shared Technique: Explicit cast to CGEN_INSN_TYPE] - PATCH 07/40: CRIS (in the process of regenerating all files) - PATCH 14/40: FR-V - PATCH 17/40: LatticeMicro32 - PATCH 23/40: M32R - PATCH 38/40: BPF - PATCH 39/40: IQ2000 - PATCH 40/40: OpenRISC 1000 In CGEN-generated instruction decoder, instruction type has CGEN_INSN_TYPE values but some contain CGEN_INSN_VIRTUAL_TYPE values. On such cases, CGEN_INSN_VIRTUAL_TYPE values must be explicitly converted to CGEN_INSN_TYPE to prevent build failure caused by Clang warnings ("-Wenum-conversion"). I'm going to upstream this change to CGEN but due to known regressions, I did not regenerate those files using CGEN (except CRIS (PATCH 07/40), which I used a WIP version of CGEN). [Related Patches] - PATCH 02/40 is a prerequisite of PATCH 26/40. We don't want to declare getrusage ourself (as possible). If we have a known declaration of getrusage with known prototype, we no longer need to declare getrusage with indeterminate arguments (without prototype). This is similar to getopt in Binutils. Thanks, Tsukasa Andrew Burgess (1): sim/lm32: fix some missing function declaration warnings Tsukasa OI (39): gdb/unittests: PR28413, suppress warnings generated by Gnulib sim: Check known getrusage declaration existence sim/aarch64: Remove unused functions cpu/cris: Initialize some variables on CRIS CPU cpu/cris: Add u-stall virtual unit to CRIS v32 sim/cris: Move declarations of f_specific_init sim/cris: Regenerate with CGEN sim/erc32: Insert void parameter sim/erc32: Use int32_t as event callback argument sim/erc32: Use int32_t as IRQ callback argument cpu/frv: Initialize some variables sim/frv: Initialize nesr variable sim/frv: Initialize some variables sim/frv: Add explicit casts sim/h8300: Add "+ 0x0" to avoid self-assignments sim/lm32: Add explicit casts sim/m32c: Stop using middle dot sim/m32r: Initialize "list" variable sim/m32r: Prepare required functions sim/m32r: Declare all required functions sim/m32r: Fixes to Linux emulator sim/m32r: Add explicit casts sim/mips: Fix enum type-related issues on cp1.c sim/mn10300: Add an explicit cast sim/ppc: Remove getrusage declarations if possible sim/ppc: Add extra parenthesis to avoid ambiguity sim/ppc: Initialize stat type buffer sim/ppc: Fix indentation on generated code sim/ppc: Use TRACE with initialized entry_point sim/ppc: Initialize help variables sim/ppc: Add an explicit cast sim/ppc: Initialize reg and control_nr sim/rx: Mark unused function sim/sh: Initialize some variables sim/sh: Use fabs instead of abs sim/sh: Remove redundant function declaration sim/bpf: Add explicit casts sim/iq2000: Add explicit casts sim/or1k: Add explicit casts cpu/cris.cpu | 4 ++++ cpu/frv.cpu | 3 +++ gdb/unittests/string_view-selftests.c | 7 ++++++ sim/aarch64/simulator.c | 16 -------------- sim/bpf/decode-be.c | 14 ++++++------ sim/bpf/decode-le.c | 14 ++++++------ sim/config.h.in | 4 ++++ sim/configure | 32 +++++++++++++++++++++++++++ sim/configure.ac | 10 +++++++++ sim/cris/arch.c | 5 +++-- sim/cris/arch.h | 21 +++++++++++++----- sim/cris/cpuall.h | 5 +++-- sim/cris/cpuv10.c | 6 +++-- sim/cris/cpuv10.h | 5 +++-- sim/cris/cpuv32.c | 6 +++-- sim/cris/cpuv32.h | 5 +++-- sim/cris/cris-tmpl.c | 2 ++ sim/cris/decodev10.c | 21 +++++++++--------- sim/cris/decodev10.h | 6 ++--- sim/cris/decodev32.c | 21 +++++++++--------- sim/cris/decodev32.h | 8 +++---- sim/cris/modelv10.c | 5 +++-- sim/cris/modelv32.c | 5 +++-- sim/cris/semcrisv10f-switch.c | 20 +++++++++++------ sim/cris/semcrisv32f-switch.c | 20 +++++++++++------ sim/erc32/erc32.c | 28 +++++++++++------------ sim/erc32/func.c | 14 ++++++------ sim/erc32/sis.h | 8 +++---- sim/frv/decode.c | 14 ++++++------ sim/frv/sem.c | 4 ++++ sim/frv/traps.c | 2 +- sim/h8300/compile.c | 4 ++-- sim/iq2000/decode.c | 14 ++++++------ sim/lm32/Makefile.in | 3 --- sim/lm32/cpu.h | 11 +++++++++ sim/lm32/decode.c | 14 ++++++------ sim/lm32/dv-lm32cpu.c | 3 +++ sim/lm32/user.c | 3 +++ sim/m32c/mem.c | 2 +- sim/m32r/decode.c | 14 ++++++------ sim/m32r/decode2.c | 14 ++++++------ sim/m32r/decodex.c | 14 ++++++------ sim/m32r/m32r-sim.h | 24 +++++++++++++++----- sim/m32r/m32r2.c | 5 +++++ sim/m32r/m32rx.c | 5 +++++ sim/m32r/sim-if.c | 4 ++++ sim/m32r/traps.c | 28 +++++++++++++++++++++-- sim/mips/cp1.c | 8 +++---- sim/mn10300/op_utils.c | 5 +++-- sim/or1k/decode.c | 14 ++++++------ sim/ppc/altivec.igen | 2 +- sim/ppc/emul_netbsd.c | 4 +++- sim/ppc/emul_unix.c | 2 ++ sim/ppc/hw_ide.c | 8 +++---- sim/ppc/hw_phb.c | 2 +- sim/ppc/hw_sem.c | 4 ++-- sim/ppc/igen.c | 2 +- sim/ppc/mon.c | 2 ++ sim/ppc/sim_calls.c | 4 ++-- sim/rx/rx.c | 2 +- sim/sh/gencode.c | 4 ++-- sim/sh/interp.c | 4 +--- 62 files changed, 358 insertions(+), 206 deletions(-) base-commit: 837e225ba1992f9745e5bbbd5e8443243a7f475f -- 2.34.1