• Russ Cox's avatar
    cmd/ld: clear unused ctxt before morestack · c2dd33a4
    Russ Cox authored
    For non-closure functions, the context register is uninitialized
    on entry and will not be used, but morestack saves it and then the
    garbage collector treats it as live. This can be a source of memory
    leaks if the context register points at otherwise dead memory.
    Avoid this by introducing a parallel set of morestack functions
    that clear the context register, and use those for the non-closure functions.
    
    I hope this will help with some of the finalizer flakiness, but it probably won't.
    
    Fixes #7244.
    
    LGTM=dvyukov
    R=khr, dvyukov
    CC=golang-codereviews
    https://golang.org/cl/71030044
    c2dd33a4
Name
Last commit
Last update
..
plan9 Loading commit data...
README Loading commit data...
ar.h Loading commit data...
bio.h Loading commit data...
bootexec.h Loading commit data...
fmt.h Loading commit data...
libc.h Loading commit data...
link.h Loading commit data...
mach.h Loading commit data...
u.h Loading commit data...
ureg_amd64.h Loading commit data...
ureg_arm.h Loading commit data...
ureg_x86.h Loading commit data...
utf.h Loading commit data...