2018-12-27 13:48:31 -08:00
|
|
|
package printer_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2019-01-05 18:18:49 -08:00
|
|
|
"github.com/mmcloughlin/avo/attr"
|
2018-12-27 13:48:31 -08:00
|
|
|
"github.com/mmcloughlin/avo/build"
|
|
|
|
|
"github.com/mmcloughlin/avo/printer"
|
|
|
|
|
"github.com/mmcloughlin/avo/reg"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestBasic(t *testing.T) {
|
|
|
|
|
ctx := build.NewContext()
|
|
|
|
|
ctx.Function("add")
|
|
|
|
|
ctx.SignatureExpr("func(x, y uint64) uint64")
|
|
|
|
|
x := ctx.Load(ctx.Param("x"), reg.RAX)
|
|
|
|
|
y := ctx.Load(ctx.Param("y"), reg.R9)
|
|
|
|
|
ctx.ADDQ(x, y)
|
|
|
|
|
ctx.Store(y, ctx.ReturnIndex(0))
|
|
|
|
|
ctx.RET()
|
|
|
|
|
|
|
|
|
|
AssertPrintsLines(t, ctx, printer.NewGoAsm, []string{
|
|
|
|
|
"// Code generated by avo. DO NOT EDIT.",
|
|
|
|
|
"",
|
|
|
|
|
"// func add(x uint64, y uint64) uint64",
|
2018-12-30 23:35:49 -08:00
|
|
|
"TEXT ·add(SB), $0-24",
|
2019-01-10 21:21:41 -08:00
|
|
|
"\tMOVQ x(FP), AX",
|
|
|
|
|
"\tMOVQ y+8(FP), R9",
|
|
|
|
|
"\tADDQ AX, R9",
|
|
|
|
|
"\tMOVQ R9, ret+16(FP)",
|
2018-12-27 13:48:31 -08:00
|
|
|
"\tRET",
|
|
|
|
|
"",
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-30 23:35:49 -08:00
|
|
|
func TestTextDecl(t *testing.T) {
|
2018-12-27 13:48:31 -08:00
|
|
|
ctx := build.NewContext()
|
|
|
|
|
|
|
|
|
|
ctx.Function("noargs")
|
|
|
|
|
ctx.SignatureExpr("func()")
|
|
|
|
|
ctx.AllocLocal(16)
|
|
|
|
|
ctx.RET()
|
|
|
|
|
|
|
|
|
|
ctx.Function("withargs")
|
|
|
|
|
ctx.SignatureExpr("func(x, y uint64) uint64")
|
|
|
|
|
ctx.RET()
|
|
|
|
|
|
2018-12-30 23:35:49 -08:00
|
|
|
ctx.Function("withattr")
|
|
|
|
|
ctx.SignatureExpr("func()")
|
2019-01-05 18:18:49 -08:00
|
|
|
ctx.Attributes(attr.NOSPLIT | attr.TLSBSS)
|
2018-12-30 23:35:49 -08:00
|
|
|
ctx.RET()
|
|
|
|
|
|
2018-12-27 13:48:31 -08:00
|
|
|
AssertPrintsLines(t, ctx, printer.NewGoAsm, []string{
|
|
|
|
|
"// Code generated by avo. DO NOT EDIT.",
|
|
|
|
|
"",
|
|
|
|
|
"// func noargs()",
|
2018-12-30 23:35:49 -08:00
|
|
|
"TEXT ·noargs(SB), $16", // expect only the frame size
|
2018-12-27 13:48:31 -08:00
|
|
|
"\tRET",
|
|
|
|
|
"",
|
|
|
|
|
"// func withargs(x uint64, y uint64) uint64",
|
2018-12-30 23:35:49 -08:00
|
|
|
"TEXT ·withargs(SB), $0-24", // expect both frame size and argument size
|
|
|
|
|
"\tRET",
|
|
|
|
|
"",
|
|
|
|
|
"// func withattr()",
|
|
|
|
|
"TEXT ·withattr(SB), NOSPLIT|TLSBSS, $0", // expect to see attributes
|
2018-12-27 13:48:31 -08:00
|
|
|
"\tRET",
|
|
|
|
|
"",
|
|
|
|
|
})
|
|
|
|
|
}
|
2019-01-02 21:35:17 -08:00
|
|
|
|
|
|
|
|
func TestConstraints(t *testing.T) {
|
|
|
|
|
ctx := build.NewContext()
|
2019-01-02 21:55:43 -08:00
|
|
|
ctx.ConstraintExpr("linux,386 darwin,!cgo")
|
|
|
|
|
ctx.ConstraintExpr("!noasm")
|
2019-01-02 21:35:17 -08:00
|
|
|
|
|
|
|
|
AssertPrintsLines(t, ctx, printer.NewGoAsm, []string{
|
|
|
|
|
"// Code generated by avo. DO NOT EDIT.",
|
|
|
|
|
"",
|
|
|
|
|
"// +build linux,386 darwin,!cgo",
|
|
|
|
|
"// +build !noasm",
|
|
|
|
|
"",
|
|
|
|
|
})
|
|
|
|
|
}
|