blob: b83db60b40f118abe35999d1729e19cb86cffd81 [file] [log] [blame] [edit]
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package arm64
import "testing"
func testvmovs() (r1, r2 uint64)
func testvmovd() (r1, r2 uint64)
func testvmovq() (r1, r2 uint64)
func TestVMOV(t *testing.T) {
tests := []struct {
op string
vmovFunc func() (uint64, uint64)
wantA, wantB uint64
}{
{"VMOVS", testvmovs, 0x80402010, 0},
{"VMOVD", testvmovd, 0x7040201008040201, 0},
{"VMOVQ", testvmovq, 0x7040201008040201, 0x3040201008040201},
}
for _, test := range tests {
gotA, gotB := test.vmovFunc()
if gotA != test.wantA || gotB != test.wantB {
t.Errorf("%v: got: a=0x%x, b=0x%x, want: a=0x%x, b=0x%x", test.op, gotA, gotB, test.wantA, test.wantB)
}
}
}
func testmovk() uint64
// TestMOVK makes sure MOVK with a very large constant works. See issue 52261.
func TestMOVK(t *testing.T) {
x := testmovk()
want := uint64(40000 << 48)
if x != want {
t.Errorf("Got %x want %x\n", x, want)
}
}
func testCombined() (a uint64, b uint64)
func TestCombined(t *testing.T) {
got1, got2 := testCombined()
want1 := uint64(0xaaaaaaaaaaaaaaab)
want2 := uint64(0x0ff019940ff00ff0)
if got1 != want1 {
t.Errorf("First result, got %x want %x", got1, want1)
}
if got2 != want2 {
t.Errorf("First result, got %x want %x", got2, want2)
}
}