From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 125140 invoked by alias); 7 Dec 2017 17:59:57 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 125130 invoked by uid 89); 7 Dec 2017 17:59:57 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=HX-Google-Smtp-Source:AGs4zMZ, HTo:D*us.ibm.com X-HELO: mail-ot0-f196.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=UIikbyreKLSjnzVLbh9j8SQI73craKFh5tcUvYtWYKE=; b=jfC757Bl8LwMc5e+e5wxYy+4cm9k8ZHqF55dwetzLQ8VRrng3Jw+x158bAVFuBtB9W sBxylXyNh/mH6rrVL5z1L/JrE1dej9xtxkCDauMeRV5Ad7nRsPufhbMd4sdB0v1/9Dld /nDNxF9ozRkt2M13d1Xbyrpxw6Ppj8GyRM3uzu5OnY7VhKHjbGQmOAmrr3t3hY4ImEZp 0gX8WQSTOqpBdvc05DZrqk9bCspmasi6pzwzypyGVK7bNM/l9V3oTVTHc2c++Dvy5iT1 Cig0fOQgUE7EW6gkRgzwuUxPRYrb20C//kXu09xLR01vshqfolwFx6eJAdpfFGCfGyDZ G8HA== X-Gm-Message-State: AJaThX4I6bJHShD/zZDhjuXhyYkwC9sadzPkcYiGEHlNEIGgNgetiwkI GaQkwqgKpLFLIv6zRVR7oFQp8ekWnzbUtKAharM= X-Google-Smtp-Source: AGs4zMZ+SVFqN8LyYw48reh34GWi7T3MGNZObBvmgrenrlPHAQCqMyDrU4Kv3bYjOQumbC5MsnIzkiFxAwgyTAWQ4Z4= X-Received: by 10.157.65.210 with SMTP id v18mr24623268oti.365.1512669594328; Thu, 07 Dec 2017 09:59:54 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: From: "H.J. Lu" Date: Thu, 07 Dec 2017 17:59:00 -0000 Message-ID: Subject: Re: [PATCH v3] New generic cosf To: Paul Clarke Cc: GNU C Library , Joseph Myers , Matt Turner , Andreas Schwab Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2017-12/txt/msg00210.txt.bz2 On Thu, Dec 7, 2017 at 9:07 AM, Paul Clarke wrote: > The same logic used in s_cosf.S version for x86 and powerpc > is used to create a generic s_cosf.c, so there is no performance > improvement in x86_64 and powerpc64. > > 2017-12-06 Paul A. Clarke > > * sysdeps/ieee754/flt-32/s_cosf.c: New implementation. Please take a look at sysdeps/ieee754/flt-32/math_config.h to see how to share constants between s_cosf.c and s_sinf.c. -- H.J.