返回介绍

上卷 程序设计

中卷 标准库

下卷 运行时

源码剖析

附录

1.1 引导

发布于 2024-10-12 19:16:01 字数 1556 浏览 0 评论 0 收藏 0

通过编译程序入口(entry point)确认。

使用 gdb starti 命令定位第一行代码,可以获取文件名和行号。

也可以先 info files 获取入口地址,随后 b *address 插入断点。

亦或者使用 gnu addr2line 在命令行输出。

// rt0_linux_amd64.s

TEXT _rt0_amd64_linux(SB),NOSPLIT,$-8
   JMP _rt0_amd64(SB)
// asm_amd64.s

// _rt0_amd64 is common startup code for most amd64 systems when using
// internal linking. This is the entry point for the program from the
// kernel for an ordinary -buildmode=exe program. The stack holds the
// number of arguments and the C-style argv.

TEXT _rt0_amd64(SB),NOSPLIT,$-8
    MOVQ    0(SP), DI                 // argc
    LEAQ    8(SP), SI                 // argv
    JMP runtime·rt0_go(SB)
TEXT runtime·rt0_go(SB),NOSPLIT,$0
    CALL    runtime·args(SB)
    CALL    runtime·osinit(SB)
    CALL    runtime·schedinit(SB)
    
    // create a new goroutine to start program
    MOVQ    $runtime·mainPC(SB), AX               // entry
    PUSHQ   AX
    PUSHQ   $0                                    // arg size
    CALL    runtime·newproc(SB)                   // func newproc(siz int32, fn *funcval)
    POPQ    AX
    POPQ    AX
    
    // start this M
    CALL    runtime·mstart(SB)
    CALL    runtime·abort(SB)                     // mstart should never return
    RET
DATA runtime·mainPC+0(SB)/8, $runtime·main(SB)

创建 main goroutine (runtime.main),调用 M.mstart 让主线程进入调度(schedule)循环。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文