Files
avo/x86/inst_test.go
Michael McLoughlin b985ff5775 ci: bump to go 1.23 (#453)
Upgrade to Go 1.23.

Upgrade also requires bumping `golangci-lint` to v1.62.2, and upgrading
third-party test versions for some failing cases.
2024-12-22 16:01:48 -08:00

101 lines
3.0 KiB
Go

package x86
import (
"reflect"
"testing"
"github.com/mmcloughlin/avo/ir"
"github.com/mmcloughlin/avo/operand"
"github.com/mmcloughlin/avo/reg"
)
func TestCases(t *testing.T) {
must := MustInstruction(t)
m128 := operand.Mem{Base: reg.RAX}
cases := []struct {
Name string
Instruction *ir.Instruction
Expect *ir.Instruction
}{
// In the merge-masking case, the output register should also be an
// input. This test confirms that Z3 appears in the input operands list.
{
Name: "avx512_masking_merging_input_registers",
Instruction: must(VPADDD(reg.Z1, reg.Z2, reg.K1, reg.Z3)),
Expect: &ir.Instruction{
Opcode: "VPADDD",
Operands: []operand.Op{reg.Z1, reg.Z2, reg.K1, reg.Z3},
Inputs: []operand.Op{reg.Z1, reg.Z2, reg.K1, reg.Z3},
Outputs: []operand.Op{reg.Z3},
ISA: []string{"AVX512F"},
},
},
// In the zeroing-masking case, the output register is not an input.
// This test case is the same as above, but with the zeroing suffix. In
// this case Z3 should not be an input.
{
Name: "avx512_masking_zeroing_input_registers",
Instruction: must(VPADDD_Z(reg.Z1, reg.Z2, reg.K1, reg.Z3)),
Expect: &ir.Instruction{
Opcode: "VPADDD",
Suffixes: []string{"Z"},
Operands: []operand.Op{reg.Z1, reg.Z2, reg.K1, reg.Z3},
Inputs: []operand.Op{reg.Z1, reg.Z2, reg.K1}, // not Z3
Outputs: []operand.Op{reg.Z3},
ISA: []string{"AVX512F"},
},
},
// Many existing AVX instructions gained EVEX-encoded forms when AVX-512
// was added. In a previous broken implementation, this led to multiple
// forms of the same instruction in the database, both the VEX and EVEX
// encoded versions. This causes the computed ISA list to be wrong,
// since it can think AVX-512 is required when in fact the instruction
// existed before. These test cases confirm the correct ISA is selected.
{
Name: "vex_evex_xmm_xmm_xmm",
Instruction: must(VFMADD132PS(reg.X1, reg.X2, reg.X3)),
Expect: &ir.Instruction{
Opcode: "VFMADD132PS",
Operands: []operand.Op{reg.X1, reg.X2, reg.X3},
Inputs: []operand.Op{reg.X1, reg.X2, reg.X3},
Outputs: []operand.Op{reg.X3},
ISA: []string{"FMA3"}, // not AVX512F
},
},
{
Name: "vex_evex_m128_xmm_xmm",
Instruction: must(VFMADD132PS(m128, reg.X2, reg.X3)),
Expect: &ir.Instruction{
Opcode: "VFMADD132PS",
Operands: []operand.Op{m128, reg.X2, reg.X3},
Inputs: []operand.Op{m128, reg.X2, reg.X3},
Outputs: []operand.Op{reg.X3},
ISA: []string{"FMA3"}, // not AVX512F
},
},
}
for _, c := range cases {
t.Run(c.Name, func(t *testing.T) {
if !reflect.DeepEqual(c.Instruction, c.Expect) {
t.Logf(" got = %#v", c.Instruction)
t.Logf("expect = %#v", c.Expect)
t.FailNow()
}
})
}
}
func MustInstruction(t *testing.T) func(*ir.Instruction, error) *ir.Instruction {
t.Helper()
return func(i *ir.Instruction, err error) *ir.Instruction {
t.Helper()
if err != nil {
t.Fatal(err)
}
return i
}
}