From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id B04273858D28 for ; Wed, 15 Feb 2023 20:12:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B04273858D28 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=polymtl.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=polymtl.ca Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 31FKCSsh028223 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 15 Feb 2023 15:12:32 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 31FKCSsh028223 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1676491953; bh=SdgI1w5Hsg8EILPiLWoFLL77sXMbVpCEx9qGcLOfCfA=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=uZbVxjhQySoeQ6pdDVD4MWXqF9GAr8vgy8W3YQUUrb1lrjXc+dzJQnBPMInnBZbbZ nGkWZ2XHl5mbeAq46qMiPTnXyqbrUyPO/IX9N0LM8R3Dg/IF34W7jUx1Y7Yuy9fPZg WaByjxPaZonqhWOkwyvyq6Mq3ReoCFnbiJFoW7ww= Received: from [10.0.0.111] (modemcable162.249-56-74.mc.videotron.ca [74.56.249.162]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id D62031E112; Wed, 15 Feb 2023 15:12:27 -0500 (EST) Message-ID: Date: Wed, 15 Feb 2023 15:12:27 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.2 Subject: Re: [PATCH v2 1/3] gdb/dwarf2: move some things to read.h Content-Language: fr To: Tom Tromey , Simon Marchi via Gdb-patches Cc: Simon Marchi References: <20230214195558.341695-1-simon.marchi@efficios.com> <87bklwrmy0.fsf@tromey.com> From: Simon Marchi In-Reply-To: <87bklwrmy0.fsf@tromey.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Wed, 15 Feb 2023 20:12:28 +0000 X-Spam-Status: No, score=-3031.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS,TXREP 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: On 2/14/23 15:50, Tom Tromey wrote: >>>>>> "Simon" == Simon Marchi via Gdb-patches writes: > > Simon> From: Simon Marchi > Simon> New in v2: > > Simon> - do not move offset_view > Simon> - move read_addrmap_from_aranges and create_cu_from_index_list in this > Simon> patch, instead of in subsequent patches > Simon> - fix formatting of declarations, add extern keyword > > Simon> The following 2 patches move .gdb_index and .debug_names reading code to > Simon> their own file. Prepare this by exposing some things used by that code > Simon> to read.h. > > Thank you. > Approved-By: Tom Tromey > > Tom Thanks, I will push the series. Simon