Commit 4addec3a authored by Russ Cox's avatar Russ Cox

runtime: reenable bad pointer check in GC

The last time we tried this, linux/arm64 broke.
The series of CLs leading to this one fixes that problem.
Let's try again.

Fixes #9880.

Change-Id: I67bc1d959175ec972d4dcbe4aa6f153790f74251
Reviewed-on: https://go-review.googlesource.com/12849Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: 's avatarAustin Clements <austin@google.com>
parent 034a10d4
...@@ -201,7 +201,7 @@ func heapBitsForObject(p uintptr) (base uintptr, hbits heapBits, s *mspan) { ...@@ -201,7 +201,7 @@ func heapBitsForObject(p uintptr) (base uintptr, hbits heapBits, s *mspan) {
// The following ensures that we are rigorous about what data // The following ensures that we are rigorous about what data
// structures hold valid pointers. // structures hold valid pointers.
// TODO(rsc): Check if this still happens. // TODO(rsc): Check if this still happens.
if false { if true {
// Still happens sometimes. We don't know why. // Still happens sometimes. We don't know why.
printlock() printlock()
print("runtime:objectstart Span weird: p=", hex(p), " k=", hex(k)) print("runtime:objectstart Span weird: p=", hex(p), " k=", hex(k))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment