From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 121894 invoked by alias); 8 Sep 2019 19:56:05 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 121815 invoked by uid 89); 8 Sep 2019 19:56:05 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=greater X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 08 Sep 2019 19:56:03 +0000 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 345ED7E449; Sun, 8 Sep 2019 19:56:02 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-3.rdu2.redhat.com [10.10.112.3]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4FAC510016E9; Sun, 8 Sep 2019 19:56:01 +0000 (UTC) Subject: Re: [PATCH] genemit: Print file+line in the "Splitting with" message To: Segher Boessenkool , gcc-patches@gcc.gnu.org References: <1abb1af2913b31ece951c44700b51a1fcab8075a.1567797611.git.segher@kernel.crashing.org> From: Jeff Law Openpgp: preference=signencrypt Message-ID: <99716bf2-d974-a6de-2680-3c33f66ed4ef@redhat.com> Date: Sun, 08 Sep 2019 19:56:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 In-Reply-To: <1abb1af2913b31ece951c44700b51a1fcab8075a.1567797611.git.segher@kernel.crashing.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-09/txt/msg00454.txt.bz2 On 9/6/19 1:25 PM, Segher Boessenkool wrote: > It's tiresome to have to look in insn-emit.c to see where some split > came from, so let's print that info to the dump file as well. But > don't print the full path, just the basename, for greater readability. > > Testing on powerpc64-linux {-m32,-m64}. Is this okay for trunk if that > succeeds? > > > Segher > > > 2019-09-06 Segher Boessenkool > > * genemit.c (gen_split): Print the filename and line number where the > splitter (or peephole2) was defined, to the dump file. OK jeff