From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 83C2E1F461 for ; Mon, 8 Jul 2019 18:31:05 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; q=dns; s=default; b=P0HYGRdduRCVT0p7 8PoLHCmpMGJr1/jKg4o3g5YVhyE73bCTUC+Btw7XAQ/HTLdRJuXsuKFDm3yv9d4n 5sx6wEaHZ674yZ/9iviedsGu4ECceUkt5+SsAR0YoYb9lhordxUx9NJOWCx4TjJc UK30DocDFm46hju7t928FkTcJ4I= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:subject:to:cc:references:from:message-id:date :mime-version:in-reply-to:content-type :content-transfer-encoding; s=default; bh=KYfy92lrBMnlIdWi1O2QO+ RLb8g=; b=RHlXnuIxU4WZkS67fAj11mb17Qt+fnd4uQtr/fqwgs2LrItom56mTb zv/dNLlQTfqn80Jo2Bb5sqGBDai5TaS4qNSVcjB5u3xcONrPYAd4Enry/rWwmU+q zi5M5n5z9x2h2cO0nOaQ3hDQUycG/6drJDqYFpWLbYNCYsN0ZRvAw= Received: (qmail 84794 invoked by alias); 8 Jul 2019 18:31:03 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 84782 invoked by uid 89); 8 Jul 2019 18:31:02 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mail-qk1-f194.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=subject:to:cc:references:from:openpgp:autocrypt:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=1OnZqYmL2jFIdw5LK/HK1c7ZzZHwJDYJNkH/dv+YjBU=; b=xxXfTx76VtfnWdbhDxDIVx3YJHISqqrVinyAftQQbZeOGOmPz9xTD04xnWM+jC/b+j S91Jbs3qNyEtSTb0cNxpLJoivPn5o0fkzv/T/RG0UR1TCMU3sxqfgIgz66FdN2RSjQm7 faqo+PdFNxgtO3f/A2vHvPz5uNfKZ+YLigK9qDeM1shU0WfXKN0QUeO1eTocLzjEVKnN 1n15xJb/pXns0QQ3eHISdpdMeahWvcmSESUPp/9VlDmABf98s2fH/MKH3bDCjnZ8rme3 ITZoJIqtuDPxYfUM8TbdNCCkmJI85Hab+D3ut8/xE+pYncFaolSLwwB9383cDIxn3G9K cvRg== Subject: Re: [PATCH 25/28] powerpc: Refactor modf{f} To: "Gabriel F. T. Gomes" Cc: libc-alpha@sourceware.org References: <20190329133529.22523-1-adhemerval.zanella@linaro.org> <20190329133529.22523-26-adhemerval.zanella@linaro.org> <20190705012301.GA7290@tereshkova> From: Adhemerval Zanella Openpgp: preference=signencrypt Message-ID: <491465d2-35e3-441a-526a-39fcc23de8a1@linaro.org> Date: Mon, 8 Jul 2019 15:30:57 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 In-Reply-To: <20190705012301.GA7290@tereshkova> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit On 04/07/2019 22:23, Gabriel F. T. Gomes wrote: > On Fri, Mar 29 2019, Adhemerval Zanella wrote: >> The modf{f} optimization is not an optimization for ISA 2.07+. This >> patch move the IFUNC for powerpc64 only, move the power5+ to generic >> location, and include the generic implementation for ISA 2.07+. > > Looks good to me. Thanks. > > Reviewed-by: Gabriel F. T. Gomes > If no one opposes it, I will commit this shortly.