1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
package pass
import (
"strings"
"testing"
"github.com/mmcloughlin/avo/ir"
"github.com/mmcloughlin/avo/operand"
"github.com/mmcloughlin/avo/reg"
)
func TestVerifyMemOperands(t *testing.T) {
i := &ir.Instruction{
Operands: []operand.Op{
reg.RAX,
operand.Mem{
Base: reg.R10,
Disp: 42,
},
},
}
if err := VerifyMemOperands(i); err != nil {
t.Fatal(err)
}
}
func TestVerifyMemOperandsErrors(t *testing.T) {
cases := []struct {
Operands []operand.Op
ErrorSubstring string
}{
{
Operands: []operand.Op{
reg.RAX,
operand.Mem{
Disp: 42,
},
},
ErrorSubstring: "missing base",
},
{
Operands: []operand.Op{
operand.Mem{
Base: reg.EBX,
Index: reg.R9L,
},
reg.ECX,
},
ErrorSubstring: "index register with scale 0",
},
}
for _, c := range cases {
i := &ir.Instruction{Operands: c.Operands}
if err := VerifyMemOperands(i); err == nil || !strings.Contains(err.Error(), c.ErrorSubstring) {
t.Errorf("got error %v; expected error to contain %q", err, c.ErrorSubstring)
}
}
}
|