• Heschi Kreinick's avatar
    cmd/compile/internal/ssa: track stack-only vars · 44e65f2c
    Heschi Kreinick authored
    User variables that cannot be SSA'd, either because their addresses are
    taken or because they are too large for the decomposition heuristic, do
    not explicitly appear as operands of SSA values. Instead they are written
    to directly via the stack pointer.
    
    This hid them from the location list generation, which is only
    interested in the named value table. Fortunately, the lifetime of
    stack-only variables is delineated by VarDef/VarKill ops, and it's easy
    enough to turn those into location list bounds.
    
    One wrinkle: stack frame information is not explicitly available in the
    SSA phases, because it's owned by the frontend in AllocFrame. It would
    be easier if the set of live LocalSlots were returned by that, but this
    is the minimal change to fix missing variables. Or VarDef/VarKills
    could appear in NamedValues, which would make this change even easier.
    
    Change-Id: Ice6654dad6f9babb0286e95c7ec28594561dc91f
    Reviewed-on: https://go-review.googlesource.com/100458Reviewed-by: 's avatarDavid Chase <drchase@google.com>
    Run-TryBot: David Chase <drchase@google.com>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    44e65f2c
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...