2016-03-01 15:57:46 -07:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-02-05 15:55:19 -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
|
|
|
|
2010-02-05 15:55:19 -07:00
|
|
|
// func Atan2(y, x float64) float64 // =atan(y/x)
|
2013-08-12 11:25:18 -06:00
|
|
|
TEXT ·Atan2(SB),NOSPLIT,$0
|
2010-02-05 15:55:19 -07:00
|
|
|
FMOVD y+0(FP), F0 // F0=y
|
|
|
|
FMOVD x+8(FP), F0 // F0=x, F1=y
|
|
|
|
FPATAN // F0=atan(F1/F0)
|
2013-03-22 10:57:55 -06:00
|
|
|
FMOVDP F0, ret+16(FP)
|
2010-02-05 15:55:19 -07:00
|
|
|
RET
|