From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from nikam.ms.mff.cuni.cz (nikam.ms.mff.cuni.cz [195.113.20.16]) by sourceware.org (Postfix) with ESMTPS id 865B5395B40E for ; Wed, 16 Nov 2022 13:48:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 865B5395B40E Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=ucw.cz Authentication-Results: sourceware.org; spf=none smtp.mailfrom=kam.mff.cuni.cz Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id 5C90A284AB2; Wed, 16 Nov 2022 14:48:14 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ucw.cz; s=gen1; t=1668606494; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=4pG640PhK5ussc9PpnOXBeBg0Hrlwm6rdmdhIxEs2gw=; b=r+/ZjTMsYcPNfLl1Hi5cncdG8VkMEi3cSRwB+G2Qwicq8HZ7NuRFbq7t94Z8GRs7OpthTu tVZaV5y5NDI7YPGJYGlH9/J86KzeoVpqwF48scmMA1vnELSG3n0l7rtFmFppncWgBvMKnY qhdHnBy7woCW/QcZZWU6vZfHiSe5RTY= Date: Wed, 16 Nov 2022 14:48:14 +0100 From: Jan Hubicka To: Martin Jambor Cc: GCC Patches Subject: Re: [PATCH 05/12] ipa-sra: Dump edge summaries also for non-candidates Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Status: No, score=-5.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Hi, > > this should have been part of r12-578-g717d278af93a4a. Call edge > summaries provide information required for IPA-SRA transformations in > the callees but are generated when analyzing callers and thus also > callers which are not IPA-SRA candidates themselves. Therefore we > analyze them but don't dump them, which makes the dumops quite > incomplete. This patch fixes that. > > Bootstrapped and tested on x86_64-linux. OK for master? > > Thanks, > > Martin > > > gcc/ChangeLog: > > 2021-12-14 Martin Jambor > > * ipa-sra.c (ipa_sra_dump_all_summaries): Dump edge summaries even > for non-candidates. OK, thanks! Honza