1
0
mirror of https://github.com/golang/go synced 2024-11-23 00:40:08 -07:00
go/usr/austin/eval
Austin Clements 8f694f6661 Flatten the Frame tree. Now each function call produces a
single frame and non-overlapping variables reuse frame slots.
As a result, entering and exiting blocks no longer requires
code execution, which means jumps across block boundaries
should be doable now.  Frame slot initialization happens at
definition time now, instead of at frame creation time.  As an
added bonus, Scope's are now exclusively compile-time objects
and we no longer need to specially track the function
activation frame for access to out vars.

R=rsc
APPROVED=rsc
DELTA=313  (102 added, 90 deleted, 121 changed)
OCL=32416
CL=32420
2009-07-29 11:57:46 -07:00
..
compiler.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
decls.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
expr.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
func.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
scope.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
stmt.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
type.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
typec.go Flatten the Frame tree. Now each function call produces a 2009-07-29 11:57:46 -07:00
util.go Implement array types and index expressions. 2009-07-20 17:41:40 -07:00
value.go Implement multi-valued functions, multi-valued return, and 2009-07-27 17:32:35 -07:00