From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 102324 invoked by alias); 20 Nov 2019 15:02:08 -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 102307 invoked by uid 89); 20 Nov 2019 15:02:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-15.1 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy=H*MI:sk:70f81ce, H*f:sk:70f81ce, H*i:sk:70f81ce X-HELO: us-smtp-1.mimecast.com Received: from us-smtp-delivery-1.mimecast.com (HELO us-smtp-1.mimecast.com) (205.139.110.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 20 Nov 2019 15:02:06 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574262125; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=gq1QYel6rf5Tbb9ZYb+18lcGsJCv0Ky36N4JH7WdoHw=; b=RXr8rhzj4/N/lNYelESX9JIelqcT1/ICHWEV2CY40ciR3MM90rGkfKZk5yfqJlzmBDQmNu Lp1ht4Lx3u8gGaKnmKNjbxEHRDhPGhxzCFYEHVdjHyIXaIG3jn/rUEGwrtH124F8DnMD66 2u0Q+nx7nYhpAs7ouSvOlEyapt1tDzg= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-2-t8iHBDYqMp-Zt19la3on0w-1; Wed, 20 Nov 2019 10:02:02 -0500 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 35DFA8E2DD6; Wed, 20 Nov 2019 15:02:01 +0000 (UTC) Received: from ovpn-116-76.phx2.redhat.com (ovpn-116-76.phx2.redhat.com [10.3.116.76]) by smtp.corp.redhat.com (Postfix) with ESMTP id B7EB03DA7; Wed, 20 Nov 2019 15:02:00 +0000 (UTC) Message-ID: <7ae0ed946407d7e8c5447c496a8ea36acec3b64e.camel@redhat.com> Subject: Re: [PATCH 2/7] Include new generated gcc/params.opt file. From: David Malcolm To: Martin =?UTF-8?Q?Li=C5=A1ka?= , gcc-patches@gcc.gnu.org Date: Wed, 20 Nov 2019 15:03:00 -0000 In-Reply-To: <70f81ce1-3bb5-2aee-64ab-e4fa7b238b0f@suse.cz> References: <7ba4c3c175a8d41248697577519649515a6b86b7.1573125297.git.mliska@suse.cz> <427dce6a805fad23afc41bebd90e6f3088d68ce0.camel@redhat.com> <70f81ce1-3bb5-2aee-64ab-e4fa7b238b0f@suse.cz> User-Agent: Evolution 3.32.4 (3.32.4-1.fc30) MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2019-11/txt/msg01960.txt.bz2 On Wed, 2019-11-20 at 15:51 +0100, Martin Li=C5=A1ka wrote: > On 11/20/19 3:49 PM, David Malcolm wrote: > > On Wed, 2019-11-06 at 11:30 +0100, Martin Liska wrote: > > > gcc/ChangeLog: > > >=20 > > > 2019-11-06 Martin Liska > > >=20 > > > * Makefile.in: Include params.opt. > > > * flag-types.h (enum parloops_schedule_type): Add > > > parloops_schedule_type used in params.opt. > > > * params.opt: New file. > > > --- > > > gcc/Makefile.in | 2 +- > > > gcc/flag-types.h | 11 + > > > gcc/params.opt | 967 > > > +++++++++++++++++++++++++++++++++++++++++++++++ > > > 3 files changed, 979 insertions(+), 1 deletion(-) > > > create mode 100644 gcc/params.opt > >=20 > > Is your params.def -> params.opt script available > > somewhere? (sorry if > > I missed it, I didn't see it looking over the patch kit) >=20 > Hi David. >=20 > > (I'm rebasing my static analyzer patch kit and am about to convert > > my > > params.def additions to be params.opt additions, though I'm only > > adding > > 4 params, so hopefully doing it by hand will be trivial) >=20 > No, it's not public. Please convert it by hand, it will be faster ;) Fair enough. Does this new machinery mean we can have per-frontend params (by putting the Param options in the pertinent .opt file) ? (not sure what that will do to LTO) Dave