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
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
|
|
// 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 Ceil(x float64) float64
|
2013-08-12 11:25:18 -06:00
|
|
|
TEXT ·Ceil(SB),NOSPLIT,$0
|
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
|
|
|
FMOVD x+0(FP), F0 // F0=x
|
|
|
|
FSTCW -2(SP) // save old Control Word
|
|
|
|
MOVW -2(SP), AX
|
|
|
|
ANDW $0xf3ff, AX
|
2010-02-01 23:21:40 -07:00
|
|
|
ORW $0x0800, AX // Rounding Control set to +Inf
|
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
|
|
|
MOVW AX, -4(SP) // store new Control Word
|
|
|
|
FLDCW -4(SP) // load new Control Word
|
|
|
|
FRNDINT // F0=Ceil(x)
|
|
|
|
FLDCW -2(SP) // load old Control Word
|
2013-03-22 10:57:55 -06:00
|
|
|
FMOVDP F0, ret+8(FP)
|
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
|
|
|
RET
|
|
|
|
|
|
|
|
// func Floor(x float64) float64
|
2013-08-12 11:25:18 -06:00
|
|
|
TEXT ·Floor(SB),NOSPLIT,$0
|
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
|
|
|
FMOVD x+0(FP), F0 // F0=x
|
|
|
|
FSTCW -2(SP) // save old Control Word
|
|
|
|
MOVW -2(SP), AX
|
|
|
|
ANDW $0xf3ff, AX
|
2010-02-01 23:21:40 -07:00
|
|
|
ORW $0x0400, AX // Rounding Control set to -Inf
|
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
|
|
|
MOVW AX, -4(SP) // store new Control Word
|
|
|
|
FLDCW -4(SP) // load new Control Word
|
2010-02-01 23:21:40 -07:00
|
|
|
FRNDINT // F0=Floor(x)
|
|
|
|
FLDCW -2(SP) // load old Control Word
|
2013-03-22 10:57:55 -06:00
|
|
|
FMOVDP F0, ret+8(FP)
|
2010-02-01 23:21:40 -07:00
|
|
|
RET
|
|
|
|
|
|
|
|
// func Trunc(x float64) float64
|
2013-08-12 11:25:18 -06:00
|
|
|
TEXT ·Trunc(SB),NOSPLIT,$0
|
2010-02-01 23:21:40 -07:00
|
|
|
FMOVD x+0(FP), F0 // F0=x
|
|
|
|
FSTCW -2(SP) // save old Control Word
|
|
|
|
MOVW -2(SP), AX
|
|
|
|
ORW $0x0c00, AX // Rounding Control set to truncate
|
|
|
|
MOVW AX, -4(SP) // store new Control Word
|
|
|
|
FLDCW -4(SP) // load new Control Word
|
|
|
|
FRNDINT // F0=Trunc(x)
|
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
|
|
|
FLDCW -2(SP) // load old Control Word
|
2013-03-22 10:57:55 -06:00
|
|
|
FMOVDP F0, ret+8(FP)
|
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
|
|
|
RET
|