From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 80497 invoked by alias); 16 Jul 2015 15:02:21 -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 80460 invoked by uid 89); 16 Jul 2015 15:02:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: foss.arm.com Received: from foss.arm.com (HELO foss.arm.com) (217.140.101.70) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 16 Jul 2015 15:02:18 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 4E1A375; Thu, 16 Jul 2015 08:02:36 -0700 (PDT) Received: from e105689-lin.cambridge.arm.com (e105689-lin.cambridge.arm.com [10.2.207.32]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id E96793F21A; Thu, 16 Jul 2015 08:02:15 -0700 (PDT) Message-ID: <55A7C776.20605@foss.arm.com> Date: Thu, 16 Jul 2015 15:20:00 -0000 From: Richard Earnshaw User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Michael Matz CC: Jim Wilson , Richard Biener , Jeff Law , "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH, ARM] stop changing signedness in PROMOTE_MODE References: <559BEB2D.7040800@redhat.com> <55A53519.6040305@foss.arm.com> <55A775B9.8040701@foss.arm.com> In-Reply-To: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg01418.txt.bz2 On 16/07/15 16:00, Michael Matz wrote: > Hi, > > On Thu, 16 Jul 2015, Richard Earnshaw wrote: > >>>>> Now that we do have the problem, we can't fix it without an ARM port >>>>> ABI change, which is undesirable, so we may have to fix it with a MI >>>>> change. >>>> >>>> What's the ABI implication of fixing the inconsistency? >>> >> >> I think that's the wrong question. We wouldn't change the ABI to fix an >> internal problem in GCC. So the real question is what's the performance >> impact of changing PROMOTE_MODE to be the same as the ABI requirements? > > Perhaps, I really only wanted to get a feeling what type of changes > in code generation would result with the flip. I wonder why this ABI > implication was no problem back when PROMOTE_MODE and > target.promote_function_mode were seperated and the inconsistency > introduced. > > > Ciao, > Michael. > Promote_function_mode requirements were new with the EABI. However, I think it's probably only recent changes in the mid-end that have exposed the problem. R.