aboutsummaryrefslogtreecommitdiff
path: root/src/race.bash
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/race.bash
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/race.bash')
-rwxr-xr-xsrc/race.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/race.bash b/src/race.bash
index cafd834777..73cb1e583b 100755
--- a/src/race.bash
+++ b/src/race.bash
@@ -9,7 +9,7 @@
set -e
function usage {
- echo 'race detector is only supported on linux/amd64, freebsd/amd64 and darwin/amd64' 1>&2
+ echo 'race detector is only supported on linux/amd64, linux/ppc64le, freebsd/amd64 and darwin/amd64' 1>&2
exit 1
}
@@ -21,7 +21,7 @@ case $(uname) in
fi
;;
"Linux")
- if [ $(uname -m) != "x86_64" ]; then
+ if [ $(uname -m) != "x86_64" ] && [ $(uname -m) != "ppc64le" ]; then
usage
fi
;;