]> Cypherpunks repositories - gostls13.git/commit
cmd/gc: correct liveness for fat variables
authorRuss Cox <rsc@golang.org>
Sat, 15 Feb 2014 15:58:55 +0000 (10:58 -0500)
committerRuss Cox <rsc@golang.org>
Sat, 15 Feb 2014 15:58:55 +0000 (10:58 -0500)
commit7a7c0ffb478847a0711f6b829a615ef4eea5dc67
treeb3bb2f452ef4e85c6ef7c58bfce43c55f2c7b5d9
parent15d294991fe31d962a09f4ab4d4778168c04ceb6
cmd/gc: correct liveness for fat variables

The VARDEF placement must be before the initialization
but after any final use. If you have something like s = ... using s ...
the rhs must be evaluated, then the VARDEF, then the lhs
assigned.

There is a large comment in pgen.c on gvardef explaining
this in more detail.

This CL also includes Ian's suggestions from earlier CLs,
namely commenting the use of mode in link.h and fixing
the precedence of the ~r check in dcl.c.

This CL enables the check that if liveness analysis decides
a variable is live on entry to the function, that variable must
be a function parameter (not a result, and not a local variable).
If this check fails, it indicates a bug in the liveness analysis or
in the generated code being analyzed.

The race detector generates invalid code for append(x, y...).
The code declares a temporary t and then uses cap(t) before
initializing t. The new liveness check catches this bug and
stops the compiler from writing out the buggy code.
Consequently, this CL disables the race detector tests in
run.bash until the race detector bug can be fixed
(golang.org/issue/7334).

Except for the race detector bug, the liveness analysis check
does not detect any problems (this CL and the previous CLs
fixed all the detected problems).

The net test still fails with GOGC=0 but the rest of the tests
now pass or time out (because GOGC=0 is so slow).

TBR=iant
CC=golang-codereviews
https://golang.org/cl/64170043
20 files changed:
include/link.h
src/cmd/5g/cgen.c
src/cmd/5g/ggen.c
src/cmd/5g/peep.c
src/cmd/5g/reg.c
src/cmd/6g/cgen.c
src/cmd/6g/ggen.c
src/cmd/6g/peep.c
src/cmd/6g/reg.c
src/cmd/8g/cgen.c
src/cmd/8g/ggen.c
src/cmd/8g/peep.c
src/cmd/8g/reg.c
src/cmd/gc/dcl.c
src/cmd/gc/gen.c
src/cmd/gc/pgen.c
src/cmd/gc/plive.c
src/run.bash
test/live.go
test/live1.go