2016-03-01 15:57:46 -07:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
math: 386 FPU functions
sin, cos, tan, asin, acos, atan, exp, log, log10,
floor, ceil, and fabs
R=rsc
CC=golang-dev
https://golang.org/cl/189083
2010-01-15 14:21:36 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-08-12 18:04:45 -06:00
|
|
|
#include "textflag.h"
|
2013-08-12 11:25:18 -06:00
|
|
|
|
math: 386 FPU functions
sin, cos, tan, asin, acos, atan, exp, log, log10,
floor, ceil, and fabs
R=rsc
CC=golang-dev
https://golang.org/cl/189083
2010-01-15 14:21:36 -07:00
|
|
|
// func Exp(x float64) float64
|
2013-08-12 11:25:18 -06:00
|
|
|
TEXT ·Exp(SB),NOSPLIT,$0
|
2016-10-03 20:33:49 -06:00
|
|
|
// Used to use 387 assembly (FLDL2E+F2XM1) here,
|
|
|
|
// but it was both slower and less accurate than the portable Go code.
|
|
|
|
JMP ·exp(SB)
|