// 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 ( "bytes" "fmt" "internal/testenv" "os" "path/filepath" "regexp" "testing" ) func runAssembler(t *testing.T, srcdata string) []byte { dir := t.TempDir() defer os.RemoveAll(dir) srcfile := filepath.Join(dir, "testdata.s") outfile := filepath.Join(dir, "testdata.o") os.WriteFile(srcfile, []byte(srcdata), 0644) cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "asm", "-S", "-o", outfile, srcfile) cmd.Env = append(os.Environ(), "GOOS=linux", "GOARCH=arm64") out, err := cmd.CombinedOutput() if err != nil { t.Errorf("The build failed: %v, output:\n%s", err, out) } return out } func TestSplitImm24uScaled(t *testing.T) { tests := []struct { v int32 shift int wantErr bool wantHi int32 wantLo int32 }{ { v: 0, shift: 0, wantHi: 0, wantLo: 0, }, { v: 0x1001, shift: 0, wantHi: 0x1000, wantLo: 0x1, }, { v: 0xffffff, shift: 0, wantHi: 0xfff000, wantLo: 0xfff, }, { v: 0xffffff, shift: 1, wantErr: true, }, { v: 0xfe, shift: 1, wantHi: 0x0, wantLo: 0x7f, }, { v: 0x10fe, shift: 1, wantHi: 0x0, wantLo: 0x87f, }, { v: 0x2002, shift: 1, wantHi: 0x2000, wantLo: 0x1, }, { v: 0xfffffe, shift: 1, wantHi: 0xffe000, wantLo: 0xfff, }, { v: 0x1000ffe, shift: 1, wantHi: 0xfff000, wantLo: 0xfff, }, { v: 0x1001000, shift: 1, wantErr: true, }, { v: 0xfffffe, shift: 2, wantErr: true, }, { v: 0x4004, shift: 2, wantHi: 0x4000, wantLo: 0x1, }, { v: 0xfffffc, shift: 2, wantHi: 0xffc000, wantLo: 0xfff, }, { v: 0x1002ffc, shift: 2, wantHi: 0xfff000, wantLo: 0xfff, }, { v: 0x1003000, shift: 2, wantErr: true, }, { v: 0xfffffe, shift: 3, wantErr: true, }, { v: 0x8008, shift: 3, wantHi: 0x8000, wantLo: 0x1, }, { v: 0xfffff8, shift: 3, wantHi: 0xff8000, wantLo: 0xfff, }, { v: 0x1006ff8, shift: 3, wantHi: 0xfff000, wantLo: 0xfff, }, { v: 0x1007000, shift: 3, wantErr: true, }, } for _, test := range tests { hi, lo, err := splitImm24uScaled(test.v, test.shift) switch { case err == nil && test.wantErr: t.Errorf("splitImm24uScaled(%v, %v) succeeded, want error", test.v, test.shift) case err != nil && !test.wantErr: t.Errorf("splitImm24uScaled(%v, %v) failed: %v", test.v, test.shift, err) case !test.wantErr: if got, want := hi, test.wantHi; got != want { t.Errorf("splitImm24uScaled(%x, %x) - got hi %x, want %x", test.v, test.shift, got, want) } if got, want := lo, test.wantLo; got != want { t.Errorf("splitImm24uScaled(%x, %x) - got lo %x, want %x", test.v, test.shift, got, want) } } } for shift := 0; shift <= 3; shift++ { for v := int32(0); v < 0xfff000+0xfff<