blob: 7ed502558463be2c58a5c96ca9226487010de598 [file] [log] [blame]
Russ Cox5fce15a2014-11-14 12:55:23 -05001// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Russ Cox09d92b62014-12-05 19:13:20 -05005// +build ppc64 ppc64le
Russ Cox5fce15a2014-11-14 12:55:23 -05006// +build linux
7
8package runtime
9
10import "unsafe"
11
Russ Cox09d92b62014-12-05 19:13:20 -050012// On ppc64, Linux limits the user address space to 46 bits (see
Austin Clementsb76e8362014-11-19 11:30:58 -050013// TASK_SIZE_USER64 in the Linux kernel). This has grown over time,
14// so here we allow 48 bit addresses.
15//
16// In addition to the 16 bits taken from the top, we can take 3 from the
17// bottom, because node must be pointer-aligned, giving a total of 19 bits
Russ Cox5fce15a2014-11-14 12:55:23 -050018// of count.
Austin Clementsb76e8362014-11-19 11:30:58 -050019const (
20 addrBits = 48
21 cntBits = 64 - addrBits + 3
22)
Russ Cox5fce15a2014-11-14 12:55:23 -050023
24func lfstackPack(node *lfnode, cnt uintptr) uint64 {
Austin Clementsb76e8362014-11-19 11:30:58 -050025 return uint64(uintptr(unsafe.Pointer(node)))<<(64-addrBits) | uint64(cnt&(1<<cntBits-1))
Russ Cox5fce15a2014-11-14 12:55:23 -050026}
27
28func lfstackUnpack(val uint64) (node *lfnode, cnt uintptr) {
Austin Clementsb76e8362014-11-19 11:30:58 -050029 node = (*lfnode)(unsafe.Pointer(uintptr(val >> cntBits << 3)))
30 cnt = uintptr(val & (1<<cntBits - 1))
Russ Cox5fce15a2014-11-14 12:55:23 -050031 return
32}