From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (wildebeest.demon.nl [212.238.236.112]) by sourceware.org (Postfix) with ESMTPS id 5DDE0385801D for ; Fri, 5 Mar 2021 00:45:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 5DDE0385801D Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mark@klomp.org Received: from librem (deer0x15.wildebeest.org [172.31.17.151]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id 58C90304319F; Fri, 5 Mar 2021 01:45:15 +0100 (CET) Received: by librem (Postfix, from userid 1000) id 8EE14C1869; Fri, 5 Mar 2021 01:44:01 +0100 (CET) Date: Fri, 5 Mar 2021 01:44:01 +0100 From: Mark Wielaard To: Tom de Vries Cc: dwz@sourceware.org, jakub@redhat.com Subject: Re: [PATCH] Add --devel-progress-mem Message-ID: <20210305004401.GN3014@wildebeest.org> References: <20210304122513.GA27486@delia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210304122513.GA27486@delia> User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: dwz@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Dwz mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Mar 2021 00:45:17 -0000 Hi Tom, On Thu, Mar 04, 2021 at 01:25:14PM +0100, Tom de Vries wrote: > Add an option --devel-progress-mem that adds memory usage printing to > --devel-progress: > ... > $ dwz cc1 -lnone -o cc1.z --devel-progress-mem > read_debug_info .debug_info > user: 4.70 > sys : 0.18 > VM Peak: 1178532 (1.1G) > VM Current: 1174432 (1.1G) > RSS Peak: 1091784 (1.0G) > RSS Current: 1087992 (1.0G) > partition_dups > user: 0.11 > sys : 0.00 > VM Peak: 1178532 (1.1G) > VM Current: 1174860 (1.1G) > RSS Peak: 1091784 (1.0G) > RSS Current: 1088372 (1.0G) > ... > > Any comments? Looks useful. Thanks, Mark