Skip to content

Commit

Permalink
Support go:build pragma (#41)
Browse files Browse the repository at this point in the history
* Add go:build pragma testdata

Signed-off-by: Koichi Shiraishi <[email protected]>
  • Loading branch information
zchee authored Jun 7, 2021
1 parent 6459045 commit 4800c6a
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 1 deletion.
2 changes: 1 addition & 1 deletion asmfmt.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func (f *fstate) addLine(b []byte) error {
// is a whitespace
ts := strings.TrimSpace(s)
var q string
if (ts != s && len(ts) > 0) || (len(s) > 0 && strings.ContainsAny(string(s[0]), `+/`)) {
if (ts != s && len(ts) > 0) || (len(s) > 0 && strings.ContainsAny(string(s[0]), `+/`)) || (len(s) >= 8 && s[:8] == "go:build") {
q = fmt.Sprint("//" + s)
} else if len(ts) > 0 {
// Insert a space before the comment
Expand Down
58 changes: 58 additions & 0 deletions testdata/asm_linux_amd64.golden
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
// Copyright 2009 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.

//go:build gc
// +build gc

#include "textflag.h"

//
// System calls for AMD64, Linux
//

// Just jump to package syscall's implementation for all these functions.
// The runtime may know about them.

TEXT ·Syscall(SB), NOSPLIT, $0-56
JMP syscall·Syscall(SB)

TEXT ·Syscall6(SB), NOSPLIT, $0-80
JMP syscall·Syscall6(SB)

TEXT ·SyscallNoError(SB), NOSPLIT, $0-48
CALL runtime·entersyscall(SB)
MOVQ a1+8(FP), DI
MOVQ a2+16(FP), SI
MOVQ a3+24(FP), DX
MOVQ $0, R10
MOVQ $0, R8
MOVQ $0, R9
MOVQ trap+0(FP), AX // syscall entry
SYSCALL
MOVQ AX, r1+32(FP)
MOVQ DX, r2+40(FP)
CALL runtime·exitsyscall(SB)
RET

TEXT ·RawSyscall(SB), NOSPLIT, $0-56
JMP syscall·RawSyscall(SB)

TEXT ·RawSyscall6(SB), NOSPLIT, $0-80
JMP syscall·RawSyscall6(SB)

TEXT ·RawSyscallNoError(SB), NOSPLIT, $0-48
MOVQ a1+8(FP), DI
MOVQ a2+16(FP), SI
MOVQ a3+24(FP), DX
MOVQ $0, R10
MOVQ $0, R8
MOVQ $0, R9
MOVQ trap+0(FP), AX // syscall entry
SYSCALL
MOVQ AX, r1+32(FP)
MOVQ DX, r2+40(FP)
RET

TEXT ·gettimeofday(SB), NOSPLIT, $0-16
JMP syscall·gettimeofday(SB)
58 changes: 58 additions & 0 deletions testdata/asm_linux_amd64.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
// Copyright 2009 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.

//go:build gc
// +build gc

#include "textflag.h"

//
// System calls for AMD64, Linux
//

// Just jump to package syscall's implementation for all these functions.
// The runtime may know about them.

TEXT ·Syscall(SB), NOSPLIT, $0-56
JMP syscall·Syscall(SB)

TEXT ·Syscall6(SB), NOSPLIT, $0-80
JMP syscall·Syscall6(SB)

TEXT ·SyscallNoError(SB), NOSPLIT, $0-48
CALL runtime·entersyscall(SB)
MOVQ a1+8(FP), DI
MOVQ a2+16(FP), SI
MOVQ a3+24(FP), DX
MOVQ $0, R10
MOVQ $0, R8
MOVQ $0, R9
MOVQ trap+0(FP), AX // syscall entry
SYSCALL
MOVQ AX, r1+32(FP)
MOVQ DX, r2+40(FP)
CALL runtime·exitsyscall(SB)
RET

TEXT ·RawSyscall(SB), NOSPLIT, $0-56
JMP syscall·RawSyscall(SB)

TEXT ·RawSyscall6(SB), NOSPLIT, $0-80
JMP syscall·RawSyscall6(SB)

TEXT ·RawSyscallNoError(SB), NOSPLIT, $0-48
MOVQ a1+8(FP), DI
MOVQ a2+16(FP), SI
MOVQ a3+24(FP), DX
MOVQ $0, R10
MOVQ $0, R8
MOVQ $0, R9
MOVQ trap+0(FP), AX // syscall entry
SYSCALL
MOVQ AX, r1+32(FP)
MOVQ DX, r2+40(FP)
RET

TEXT ·gettimeofday(SB), NOSPLIT, $0-16
JMP syscall·gettimeofday(SB)

0 comments on commit 4800c6a

Please sign in to comment.