]> Cypherpunks repositories - gostls13.git/commit
runtime: add GODEBUG wbshadow for finding missing write barriers
authorRuss Cox <rsc@golang.org>
Mon, 22 Dec 2014 15:53:51 +0000 (10:53 -0500)
committerRuss Cox <rsc@golang.org>
Tue, 6 Jan 2015 00:26:35 +0000 (00:26 +0000)
commitdcec123a4923437242c52d2693ace80d2f3c704e
tree9f1d6a2a5bcf75e86e84a657a7aca5b522947ab5
parent3191a235158233bb6f6d960d7ae0cb925606f817
runtime: add GODEBUG wbshadow for finding missing write barriers

This is the detection code. It works well enough that I know of
a handful of missing write barriers. However, those are subtle
enough that I'll address them in separate followup CLs.

GODEBUG=wbshadow=1 checks for a write that bypassed the
write barrier at the next write barrier of the same word.
If a bug can be detected in this mode it is typically easy to
understand, since the crash says quite clearly what kind of
word has missed a write barrier.

GODEBUG=wbshadow=2 adds a check of the write barrier
shadow copy during garbage collection. Bugs detected at
garbage collection can be difficult to understand, because
there is no context for what the found word means.
Typically you have to reproduce the problem with allocfreetrace=1
in order to understand the type of the badly updated word.

Change-Id: If863837308e7c50d96b5bdc7d65af4969bf53a6e
Reviewed-on: https://go-review.googlesource.com/2061
Reviewed-by: Austin Clements <austin@google.com>
src/runtime/extern.go
src/runtime/malloc.go
src/runtime/malloc1.go
src/runtime/malloc2.go
src/runtime/mgc.go
src/runtime/mgc0.go
src/runtime/panic.go
src/runtime/proc1.go
src/runtime/runtime1.go
src/runtime/runtime2.go
src/runtime/stack1.go