From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 43881 invoked by alias); 12 Oct 2015 14:12:15 -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 43872 invoked by uid 89); 12 Oct 2015 14:12:14 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL,BAYES_00,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (208.118.235.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 12 Oct 2015 14:12:12 +0000 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56870) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1Zldph-0005zE-FB for gcc-patches@gnu.org; Mon, 12 Oct 2015 10:12:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zldpb-0006ib-My for gcc-patches@gnu.org; Mon, 12 Oct 2015 10:12:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38630) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zldpb-0006iG-Gb for gcc-patches@gnu.org; Mon, 12 Oct 2015 10:12:03 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 1B6DEAB982; Mon, 12 Oct 2015 14:12:03 +0000 (UTC) Received: from localhost.localdomain (vpn1-5-110.ams2.redhat.com [10.36.5.110]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9CEC1ke029827; Mon, 12 Oct 2015 10:12:02 -0400 Subject: Re: [PATCH, 4/5] Support DEFPARAMENUM in params.def To: Tom de Vries References: <560100FF.9060904@mentor.com> <5601343C.9010104@redhat.com> <56114774.9090108@mentor.com> <561394CA.1050504@redhat.com> <5618F121.4070100@mentor.com> <5618FF17.1050309@mentor.com> Cc: "gcc-patches@gnu.org" From: Bernd Schmidt Message-ID: <561BBFB1.2060808@redhat.com> Date: Mon, 12 Oct 2015 14:12:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <5618FF17.1050309@mentor.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 X-IsSubscribed: yes X-SW-Source: 2015-10/txt/msg01137.txt.bz2 On 10/10/2015 02:05 PM, Tom de Vries wrote: > On 10/10/15 13:06, Tom de Vries wrote: >> OK, I'll repost with the patch split up, as follows: >> >> 1 Handle simple latch in expand_omp_for_generic >> 2 Add missing phis in expand_omp_for_generic >> 3 Handle original loop tree in expand_omp_for_generic >> 4 Support DEFPARAMENUM in params.def >> 5 Add param parloops-schedule >> > > this patch adds support for DEFPARAMENUM in params.def. > > Using this support, we're able to define a param parloops-schedule with > values names "static, dynamic, guided, auto, runtime" and default value > "static" like this in params.def: This and the next one are ok once all the prerequisites are in. Bernd