• Josh Bleecher Snyder's avatar
    cmd/compile: define roles for ssa.Func, ssa.Config, and ssa.Cache · 43afcb5c
    Josh Bleecher Snyder authored
    The line between ssa.Func and ssa.Config has blurred.
    Concurrent compilation in the backend will require more precision.
    This CL lays out an (aspirational) organization.
    The implementation will come in follow-up CLs,
    once the organization is settled.
    
    ssa.Config holds basic compiler configuration,
    mostly arch-specific information.
    It is configured once, early on, and is readonly,
    so it is safe for concurrent use.
    
    ssa.Func is a single-shot object used for
    compiling a single Func. It is not concurrency-safe
    and not re-usable.
    
    ssa.Cache is a multi-use object used to avoid
    expensive allocations during compilation.
    Each ssa.Func is given an ssa.Cache to use.
    ssa.Cache is not concurrency-safe.
    
    Change-Id: Id02809b6f3541541cac6c27bbb598834888ce1cc
    Reviewed-on: https://go-review.googlesource.com/38160Reviewed-by: 's avatarKeith Randall <khr@golang.org>
    43afcb5c
Name
Last commit
Last update
..
addr2line Loading commit data...
api Loading commit data...
asm Loading commit data...
cgo Loading commit data...
compile Loading commit data...
cover Loading commit data...
dist Loading commit data...
doc Loading commit data...
fix Loading commit data...
go Loading commit data...
gofmt Loading commit data...
internal Loading commit data...
link Loading commit data...
nm Loading commit data...
objdump Loading commit data...
pack Loading commit data...
pprof Loading commit data...
trace Loading commit data...
vendor Loading commit data...
vet Loading commit data...