From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LQ6PS-000428-MC for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:44:18 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LQ6PR-000414-0N for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:44:18 -0500 Received: from [199.232.76.173] (port=38012 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LQ6PQ-00040o-Pb for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:44:16 -0500 Received: from mx20.gnu.org ([199.232.41.8]:40959) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LQ6PQ-0005Jx-Gk for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:44:16 -0500 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LQ6PP-0005il-OS for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:44:16 -0500 From: Nathan Froyd Date: Thu, 22 Jan 2009 12:44:00 -0800 Message-Id: <1232657054-30100-1-git-send-email-froydnj@codesourcery.com> Subject: [Qemu-devel] [PATCH 00/14] target-ppc: add floating-point AltiVec instructions Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch series adds support for nearly all of the floating-point AltiVec instructions. It is broken up into separate patches for each instruction "family" (add/sub, min/max, comparison instructions, etc.), as the previous AltiVec integer instructions patch series was. This patch series does not implement vexptefp and vlogefp, both of which require functionality not implemented in the soft-float emulation code. The instructions are straightforward, if tedious, to implement (find a decent powf and log2f implementation, translate into soft-float emulation calls). -Nathan