我们可以很容易将一个golang程序转变成汇编语言。

比如我写了一个main.go:

package mainfunc g(p int) int {     return p+1;
}func main() {     c := g(4) + 1
     _ = c}

使用命令:

GOOS=linux GOARCH=386 go tool compile -S main.go >> main.S

我们就获取了main.S是main.go的汇编版本。

"".g t=1 size=16 value=0 args=0x10 locals=0x0
     0x0000 00000 (main.go:4)     TEXT     "".g(SB), $0-16
     0x0000 00000 (main.go:4)     NOP     0x0000 00000 (main.go:4)     NOP     0x0000 00000 (main.go:4)     FUNCDATA     $0, gclocals·23e8278e2b69a3a75fa59b23c49ed6ad(SB)     0x0000 00000 (main.go:4)     FUNCDATA     $1, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)     0x0000 00000 (main.go:5)     MOVQ     "".p+8(FP), BX     0x0005 00005 (main.go:5)     INCQ     BX     0x0008 00008 (main.go:5)     MOVQ     BX, "".~r1+16(FP)     0x000d 00013 (main.go:5)     RET     0x0000 48 8b 5c 24 08 48 ff c3 48 89 5c 24 10 c3        H.\$.H..H.\$.."".main t=1 size=16 value=0 args=0x0&n