aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/race.go
diff options
context:
space:
mode:
authorLynn Boger <laboger@linux.vnet.ibm.com>2018-03-29 11:15:18 -0400
committerBrad Fitzpatrick <bradfitz@golang.org>2018-06-11 17:45:36 +0000
commit9e9ff565cdef4ef4db2955f0e96c9e83d452b4af (patch)
treefed58dd34c434721d1c404c5507946d470dba416 /src/runtime/race.go
parent1de0dcfc7b50a2e74e572374d3bbbf3d12d7ff4f (diff)
downloadgo-9e9ff565cdef4ef4db2955f0e96c9e83d452b4af.tar.gz
go-9e9ff565cdef4ef4db2955f0e96c9e83d452b4af.zip
runtime/race: implement race detector for ppc64le
This adds the support to enable the race detector for ppc64le. Added runtime/race_ppc64le.s to manage the calls from Go to the LLVM tsan functions, mostly converting from the Go ABI to the PPC64 ABI expected by Clang generated code. Changed racewalk.go to call racefuncenterfp instead of racefuncenter on ppc64le to allow the caller pc to be obtained in the asm code before calling the tsan version. Changed the set up code for racecallbackthunk so it doesn't use the autogenerated save and restore of the link register since that sequence uses registers inconsistent with the normal ppc64 ABI. Made various changes to recognize that race is supported for ppc64le. Ensured that tls_g is updated and accessible from race_linux_ppc64le.s so that the race ctx can be obtained and passed to tsan functions. This enables the race tests for ppc64le in cmd/dist/test.go and increases the timeout when running the benchmarks with the -race option to avoid timing out. Updates #24354, #23731 Change-Id: Ib97dc7ac313e6313c836dc7d2fb698f9d8fba3ef Reviewed-on: https://go-review.googlesource.com/107935 Run-TryBot: Lynn Boger <laboger@linux.vnet.ibm.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/race.go')
-rw-r--r--src/runtime/race.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/race.go b/src/runtime/race.go
index 09a8356770..0124e231fa 100644
--- a/src/runtime/race.go
+++ b/src/runtime/race.go
@@ -292,6 +292,7 @@ var racearenastart uintptr
var racearenaend uintptr
func racefuncenter(uintptr)
+func racefuncenterfp()
func racefuncexit()
func racereadrangepc1(uintptr, uintptr, uintptr)
func racewriterangepc1(uintptr, uintptr, uintptr)