Giter Club home page Giter Club logo

Comments (1)

galaxyzen avatar galaxyzen commented on May 21, 2024
package main

//go:noinline
func add(a, b int32) (int32, bool) { return a + b, true }

func main() { add(10, 32) }

版本:go1.16.15 amd64

go1.16.15 tool compile -S -N -l main.go 后,add的Go汇编:

"".add STEXT nosplit size=31 args=0x10 locals=0x0 funcid=0x0
        0x0000 00000 (main.go:4)        TEXT    "".add(SB), NOSPLIT|ABIInternal, $0-16
        0x0000 00000 (main.go:4)        FUNCDATA        $0, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
        0x0000 00000 (main.go:4)        FUNCDATA        $1, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
        0x0000 00000 (main.go:4)        MOVL    $0, "".~r2+16(SP)
        0x0008 00008 (main.go:4)        MOVB    $0, "".~r3+20(SP)
        0x000d 00013 (main.go:4)        MOVL    "".a+8(SP), AX
        0x0011 00017 (main.go:4)        ADDL    "".b+12(SP), AX
        0x0015 00021 (main.go:4)        MOVL    AX, "".~r2+16(SP)
        0x0019 00025 (main.go:4)        MOVB    $1, "".~r3+20(SP)
        0x001e 00030 (main.go:4)        RET

[pseudo SP + 8]定位到实参a[pseudo SP + 12]定位到实参b,所以pseudo SP的值应该是parent return address的起始位置?

from advanced-go-programming-book.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.