• Matthew Dempsky's avatar
    cmd/compile: discard duplicate inline method bodies · f0b36269
    Matthew Dempsky authored
    If we've already imported a named type, then there's no need to
    process its associated methods except to validate that the signature
    matches the existing known method.
    
    However, the current import code still creates a new function node for
    each method, saves its inline body (if any), and adds the node to the
    global importlist. Because of this, the duplicate methods are never
    garbage collected.
    
    This CL changes the compiler to avoid amassing uncollectable garbage
    or performing any unnecessary processing.
    
    This is particularly noticeable for protobuf-heavy code. For the
    motivating Go package, this CL reduced compile max-RSS from ~12GB to
    ~3GB and compile time from ~65s to ~50s.
    
    Passes toolstash -cmp for std, cmd, and k8s.io/kubernetes/cmd/....
    
    Change-Id: Ib53ba9f2ad3212995671cf6ba220ee8a56d8d009
    Reviewed-on: https://go-review.googlesource.com/51331
    Run-TryBot: Austin Clements <austin@google.com>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    Reviewed-by: 's avatarAustin Clements <austin@google.com>
    f0b36269
Name
Last commit
Last update
.github Loading commit data...
api Loading commit data...
doc Loading commit data...
lib/time Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README.md Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...