aboutsummaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2017-08-29 18:59:04 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2017-08-29 18:59:04 +0000
commita2aa807ef9537ab75e81dd0470e90f5a54d75031 (patch)
tree1a6c55e2682a3c977bbf937160cdb3fec6dd3ec9 /libgo
parent4e395d91ad396f1f03b28a97cb9d25bd6b85e755 (diff)
downloadgcc-a2aa807ef9537ab75e81dd0470e90f5a54d75031.zip
gcc-a2aa807ef9537ab75e81dd0470e90f5a54d75031.tar.gz
gcc-a2aa807ef9537ab75e81dd0470e90f5a54d75031.tar.bz2
runtime: fix lfstack for 64-bit AIX
Reviewed-on: https://go-review.googlesource.com/57550 From-SVN: r251420
Diffstat (limited to 'libgo')
-rw-r--r--libgo/go/runtime/lfstack_64bit.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/libgo/go/runtime/lfstack_64bit.go b/libgo/go/runtime/lfstack_64bit.go
index 3d5588d..44cbf74 100644
--- a/libgo/go/runtime/lfstack_64bit.go
+++ b/libgo/go/runtime/lfstack_64bit.go
@@ -43,6 +43,14 @@ const (
// 52 address bits each (with 64k page size).
ia64AddrBits = 55
ia64CntBits = 64 - ia64AddrBits + 3
+
+ // On AIX, 64-bit addresses are split into 36-bit segment number and 28-bit
+ // offset in segment. Segment numbers in the range 0x070000000-0x07FFFFFFF
+ // and 0x0A0000000-0x0AFFFFFFF(LSA) are available for mmap.
+ // We assume all lfnode addresses are from memory allocated with mmap.
+ // We use one bit to distinguish between the two ranges.
+ aixAddrBits = 57
+ aixCntBits = 64 - aixAddrBits + 3
)
func lfstackPack(node *lfnode, cnt uintptr) uint64 {
@@ -54,6 +62,9 @@ func lfstackPack(node *lfnode, cnt uintptr) uint64 {
val := uint64(uintptr(unsafe.Pointer(node)))
return (val<<(64-ia64AddrBits))&(1<<(64-3)-1) | val&^(1<<(64-3)-1) | uint64(cnt&(1<<ia64CntBits-1))
}
+ if GOARCH == "ppc64" && GOOS == "aix" {
+ return uint64(uintptr(unsafe.Pointer(node)))<<(64-aixAddrBits) | uint64(cnt&(1<<aixCntBits-1))
+ }
return uint64(uintptr(unsafe.Pointer(node)))<<(64-addrBits) | uint64(cnt&(1<<cntBits-1))
}
@@ -69,5 +80,12 @@ func lfstackUnpack(val uint64) *lfnode {
if GOARCH == "ia64" {
return (*lfnode)(unsafe.Pointer(uintptr((val>>ia64CntBits<<3)&(1<<(64-3)-1) | val&^(1<<(64-3)-1))))
}
+ if GOARCH == "ppc64" && GOOS == "aix" {
+ if val&(1<<63) != 0 {
+ return (*lfnode)(unsafe.Pointer(uintptr((val >> aixCntBits << 3) | 0x7<<56)))
+ } else {
+ return (*lfnode)(unsafe.Pointer(uintptr((val >> aixCntBits << 3) | 0xa<<56)))
+ }
+ }
return (*lfnode)(unsafe.Pointer(uintptr(val >> cntBits << 3)))
}