diff options
| author | David Crawshaw <crawshaw@golang.org> | 2016-05-25 13:19:11 -0400 |
|---|---|---|
| committer | David Crawshaw <crawshaw@golang.org> | 2016-05-26 14:43:27 +0000 |
| commit | 56e5e0b69c92c9157c7db39112e27a4b5c026b48 (patch) | |
| tree | 598e2e36ec88b4028f11d7cddf44d59f1dc13ed1 /src/runtime | |
| parent | 6247ca2dbbdc13d6c80666119d182e119a2e7a5b (diff) | |
| download | go-56e5e0b69c92c9157c7db39112e27a4b5c026b48.tar.xz | |
runtime: tell race detector about reflectOffs.lock
Fixes #15832
Change-Id: I6f3f45e3c21edd0e093ecb1d8a067907863478f5
Reviewed-on: https://go-review.googlesource.com/23441
Reviewed-by: Dmitry Vyukov <dvyukov@google.com>
Diffstat (limited to 'src/runtime')
| -rw-r--r-- | src/runtime/runtime1.go | 4 | ||||
| -rw-r--r-- | src/runtime/type.go | 26 |
2 files changed, 22 insertions, 8 deletions
diff --git a/src/runtime/runtime1.go b/src/runtime/runtime1.go index 9089383904..302f58de5f 100644 --- a/src/runtime/runtime1.go +++ b/src/runtime/runtime1.go @@ -509,7 +509,7 @@ func reflect_resolveTextOff(rtype unsafe.Pointer, off int32) unsafe.Pointer { // reflect_addReflectOff adds a pointer to the reflection offset lookup map. //go:linkname reflect_addReflectOff reflect.addReflectOff func reflect_addReflectOff(ptr unsafe.Pointer) int32 { - lock(&reflectOffs.lock) + reflectOffsLock() if reflectOffs.m == nil { reflectOffs.m = make(map[int32]unsafe.Pointer) reflectOffs.minv = make(map[unsafe.Pointer]int32) @@ -522,6 +522,6 @@ func reflect_addReflectOff(ptr unsafe.Pointer) int32 { reflectOffs.m[id] = ptr reflectOffs.minv[ptr] = id } - unlock(&reflectOffs.lock) + reflectOffsUnlock() return id } diff --git a/src/runtime/type.go b/src/runtime/type.go index 608c601abd..d7ec5573a9 100644 --- a/src/runtime/type.go +++ b/src/runtime/type.go @@ -169,6 +169,20 @@ var reflectOffs struct { minv map[unsafe.Pointer]int32 } +func reflectOffsLock() { + lock(&reflectOffs.lock) + if raceenabled { + raceacquire(unsafe.Pointer(&reflectOffs.lock)) + } +} + +func reflectOffsUnlock() { + if raceenabled { + racerelease(unsafe.Pointer(&reflectOffs.lock)) + } + unlock(&reflectOffs.lock) +} + func resolveNameOff(ptrInModule unsafe.Pointer, off nameOff) name { if off == 0 { return name{} @@ -182,9 +196,9 @@ func resolveNameOff(ptrInModule unsafe.Pointer, off nameOff) name { } } if md == nil { - lock(&reflectOffs.lock) + reflectOffsLock() res, found := reflectOffs.m[int32(off)] - unlock(&reflectOffs.lock) + reflectOffsUnlock() if !found { println("runtime: nameOff", hex(off), "base", hex(base), "not in ranges:") for next := &firstmoduledata; next != nil; next = next.next { @@ -219,9 +233,9 @@ func (t *_type) typeOff(off typeOff) *_type { } } if md == nil { - lock(&reflectOffs.lock) + reflectOffsLock() res := reflectOffs.m[int32(off)] - unlock(&reflectOffs.lock) + reflectOffsUnlock() if res == nil { println("runtime: typeOff", hex(off), "base", hex(base), "not in ranges:") for next := &firstmoduledata; next != nil; next = next.next { @@ -252,9 +266,9 @@ func (t *_type) textOff(off textOff) unsafe.Pointer { } } if md == nil { - lock(&reflectOffs.lock) + reflectOffsLock() res := reflectOffs.m[int32(off)] - unlock(&reflectOffs.lock) + reflectOffsUnlock() if res == nil { println("runtime: textOff", hex(off), "base", hex(base), "not in ranges:") for next := &firstmoduledata; next != nil; next = next.next { |
