From owner-freebsd-arm@freebsd.org Tue Apr 12 18:25:13 2016 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71101B0E544 for ; Tue, 12 Apr 2016 18:25:13 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from erouter6.ore.mailhop.org (erouter6.ore.mailhop.org [54.187.213.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BE0B1819 for ; Tue, 12 Apr 2016 18:25:12 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-User: bc6028de-00db-11e6-827e-7d17a39bef25 X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 73.34.117.227 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [73.34.117.227]) by outbound3.ore.mailhop.org (Halon Mail Gateway) with ESMTPSA; Tue, 12 Apr 2016 18:24:03 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.14.9) with ESMTP id u3CIPAbx016927; Tue, 12 Apr 2016 12:25:10 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1460485510.52955.16.camel@freebsd.org> Subject: Re: Float point in beaglebone From: Ian Lepore To: =?ISO-8859-1?Q?Otac=EDlio?= , "freebsd-arm@freebsd.org" Date: Tue, 12 Apr 2016 12:25:10 -0600 In-Reply-To: <570D2E3D.2010801@bsd.com.br> References: <570D2E3D.2010801@bsd.com.br> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.16.5 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2016 18:25:13 -0000 On Tue, 2016-04-12 at 14:19 -0300, Otacílio wrote: > Dears > > Now, how is made the float point calculations in beaglebone using > freebsd, by software or by hardware? > Hardware. Armv6/v7 systems on freebsd 11 have always used floating point hardware, but they pass arguments in the integer registers, which costs a small bit of performance. The upcoming change will switch to passing arguments in floating point registers, but for most apps the performance improvement will be small. -- Ian