From owner-cvs-src@FreeBSD.ORG Mon Feb 21 17:44:57 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9819316A4CE; Mon, 21 Feb 2005 17:44:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53F3743D49; Mon, 21 Feb 2005 17:44:57 +0000 (GMT) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1LHivUg053451; Mon, 21 Feb 2005 17:44:57 GMT (envelope-from das@repoman.freebsd.org) Received: (from das@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1LHiv1g053450; Mon, 21 Feb 2005 17:44:57 GMT (envelope-from das) Message-Id: <200502211744.j1LHiv1g053450@repoman.freebsd.org> From: David Schultz Date: Mon, 21 Feb 2005 17:44:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/msun/src e_expf.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2005 17:44:57 -0000 das 2005-02-21 17:44:57 UTC FreeBSD src repository Modified files: lib/msun/src e_expf.c Log: Use double arithmetic instead of simulating it with two floats. This results in a performance gain on the order of 10% for amd64 (sledge), ia64 (pluto1), i386+SSE (Pentium 4), and sparc64 (panther), and a negligible improvement for i386 without SSE. (The i386 port still uses the hardware instruction, though.) Revision Changes Path 1.8 +8 -13 src/lib/msun/src/e_expf.c