Files
avo/examples/complex/asm.go

36 lines
681 B
Go
Raw Normal View History

2018-12-12 00:02:22 -08:00
// +build ignore
package main
import (
. "github.com/mmcloughlin/avo/build"
)
func main() {
2018-12-27 23:09:44 -08:00
TEXT("Real", "func(z complex128) float64")
Doc("Real returns the real part of z.")
r := Load(Param("z").Real(), Xv())
2018-12-12 00:02:22 -08:00
Store(r, ReturnIndex(0))
RET()
2018-12-27 23:09:44 -08:00
TEXT("Imag", "func(z complex128) float64")
Doc("Imag returns the imaginary part of z.")
i := Load(Param("z").Imag(), Xv())
2018-12-12 00:02:22 -08:00
Store(i, ReturnIndex(0))
RET()
2018-12-27 23:09:44 -08:00
TEXT("Norm", "func(z complex128) float64")
Doc("Norm returns the complex norm of z.")
r = Load(Param("z").Real(), Xv())
i = Load(Param("z").Imag(), Xv())
2018-12-12 00:02:22 -08:00
MULSD(r, r)
MULSD(i, i)
ADDSD(i, r)
n := Xv()
SQRTSD(r, n)
Store(n, ReturnIndex(0))
RET()
Generate()
}