summaryrefslogtreecommitdiff
path: root/src/runtime/lfstack_amd64.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-11-11 17:07:54 -0500
committerRuss Cox <rsc@golang.org>2014-11-11 17:07:54 -0500
commitd32c79fe8c5b9363c2ae40e36c7d2e87f2da3e5a (patch)
tree81eac31410198ece20bdc76c9985dbf335cb0bb5 /src/runtime/lfstack_amd64.go
parent763659ff899249423696d32e8ee2152ce6464a1d (diff)
downloadgo-d32c79fe8c5b9363c2ae40e36c7d2e87f2da3e5a.tar.gz
[dev.cc] runtime: convert parallel support code from C to Go
The conversion was done with an automated tool and then modified only as necessary to make it compile and run. [This CL is part of the removal of C code from package runtime. See golang.org/s/dev.cc for an overview.] LGTM=r R=r, austin CC=dvyukov, golang-codereviews, iant, khr https://codereview.appspot.com/172250043
Diffstat (limited to 'src/runtime/lfstack_amd64.go')
-rw-r--r--src/runtime/lfstack_amd64.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/runtime/lfstack_amd64.go b/src/runtime/lfstack_amd64.go
new file mode 100644
index 000000000..124555781
--- /dev/null
+++ b/src/runtime/lfstack_amd64.go
@@ -0,0 +1,12 @@
+// Copyright 2014 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package runtime
+
+// Amd64 uses 48-bit virtual addresses, 47-th bit is used as kernel/user flag.
+// So we use 17msb of pointers as ABA counter.
+const (
+ lfPtrBits = 47
+ lfCountMask = 1<<17 - 1
+)