2014-07-31 16:12:53 -06:00
|
|
|
// 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
|
|
|
|
|
2015-11-11 10:39:30 -07:00
|
|
|
import (
|
|
|
|
"runtime/internal/sys"
|
|
|
|
"unsafe"
|
|
|
|
)
|
2014-07-31 16:12:53 -06:00
|
|
|
|
|
|
|
const (
|
2015-11-11 10:39:30 -07:00
|
|
|
c0 = uintptr((8-sys.PtrSize)/4*2860486313 + (sys.PtrSize-4)/4*33054211828000289)
|
|
|
|
c1 = uintptr((8-sys.PtrSize)/4*3267000013 + (sys.PtrSize-4)/4*23344194077549503)
|
2014-07-31 16:12:53 -06:00
|
|
|
)
|
|
|
|
|
2014-08-29 22:40:56 -06:00
|
|
|
// type algorithms - known to compiler
|
2014-07-31 16:12:53 -06:00
|
|
|
const (
|
2016-02-20 23:52:15 -07:00
|
|
|
alg_NOEQ = iota
|
2014-07-31 16:12:53 -06:00
|
|
|
alg_MEM0
|
|
|
|
alg_MEM8
|
|
|
|
alg_MEM16
|
|
|
|
alg_MEM32
|
|
|
|
alg_MEM64
|
|
|
|
alg_MEM128
|
|
|
|
alg_STRING
|
|
|
|
alg_INTER
|
|
|
|
alg_NILINTER
|
|
|
|
alg_FLOAT32
|
|
|
|
alg_FLOAT64
|
|
|
|
alg_CPLX64
|
|
|
|
alg_CPLX128
|
|
|
|
alg_max
|
|
|
|
)
|
|
|
|
|
2015-01-27 02:04:11 -07:00
|
|
|
// typeAlg is also copied/used in reflect/type.go.
|
|
|
|
// keep them in sync.
|
2014-08-29 22:40:56 -06:00
|
|
|
type typeAlg struct {
|
|
|
|
// function for hashing objects of this type
|
2015-01-06 17:42:48 -07:00
|
|
|
// (ptr to object, seed) -> hash
|
|
|
|
hash func(unsafe.Pointer, uintptr) uintptr
|
2014-08-29 22:40:56 -06:00
|
|
|
// function for comparing objects of this type
|
2015-01-06 17:42:48 -07:00
|
|
|
// (ptr to object A, ptr to object B) -> ==?
|
|
|
|
equal func(unsafe.Pointer, unsafe.Pointer) bool
|
2014-08-29 22:40:56 -06:00
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func memhash0(p unsafe.Pointer, h uintptr) uintptr {
|
|
|
|
return h
|
|
|
|
}
|
2017-08-27 06:05:11 -06:00
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func memhash8(p unsafe.Pointer, h uintptr) uintptr {
|
|
|
|
return memhash(p, h, 1)
|
|
|
|
}
|
2017-08-27 06:05:11 -06:00
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func memhash16(p unsafe.Pointer, h uintptr) uintptr {
|
|
|
|
return memhash(p, h, 2)
|
|
|
|
}
|
2017-08-27 06:05:11 -06:00
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func memhash128(p unsafe.Pointer, h uintptr) uintptr {
|
|
|
|
return memhash(p, h, 16)
|
|
|
|
}
|
|
|
|
|
2017-08-05 00:44:00 -06:00
|
|
|
//go:nosplit
|
|
|
|
func memhash_varlen(p unsafe.Pointer, h uintptr) uintptr {
|
|
|
|
ptr := getclosureptr()
|
|
|
|
size := *(*uintptr)(unsafe.Pointer(ptr + unsafe.Sizeof(h)))
|
|
|
|
return memhash(p, h, size)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
|
2014-08-29 22:40:56 -06:00
|
|
|
var algarray = [alg_max]typeAlg{
|
2016-02-20 23:52:15 -07:00
|
|
|
alg_NOEQ: {nil, nil},
|
2015-01-06 17:42:48 -07:00
|
|
|
alg_MEM0: {memhash0, memequal0},
|
|
|
|
alg_MEM8: {memhash8, memequal8},
|
|
|
|
alg_MEM16: {memhash16, memequal16},
|
|
|
|
alg_MEM32: {memhash32, memequal32},
|
|
|
|
alg_MEM64: {memhash64, memequal64},
|
|
|
|
alg_MEM128: {memhash128, memequal128},
|
2014-08-29 22:40:56 -06:00
|
|
|
alg_STRING: {strhash, strequal},
|
|
|
|
alg_INTER: {interhash, interequal},
|
|
|
|
alg_NILINTER: {nilinterhash, nilinterequal},
|
|
|
|
alg_FLOAT32: {f32hash, f32equal},
|
|
|
|
alg_FLOAT64: {f64hash, f64equal},
|
|
|
|
alg_CPLX64: {c64hash, c64equal},
|
|
|
|
alg_CPLX128: {c128hash, c128equal},
|
|
|
|
}
|
|
|
|
|
|
|
|
var useAeshash bool
|
2014-07-31 16:12:53 -06:00
|
|
|
|
|
|
|
// in asm_*.s
|
2015-01-06 17:42:48 -07:00
|
|
|
func aeshash(p unsafe.Pointer, h, s uintptr) uintptr
|
|
|
|
func aeshash32(p unsafe.Pointer, h uintptr) uintptr
|
|
|
|
func aeshash64(p unsafe.Pointer, h uintptr) uintptr
|
|
|
|
func aeshashstr(p unsafe.Pointer, h uintptr) uintptr
|
2014-07-31 16:12:53 -06:00
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func strhash(a unsafe.Pointer, h uintptr) uintptr {
|
2014-12-10 18:02:58 -07:00
|
|
|
x := (*stringStruct)(a)
|
2015-01-06 17:42:48 -07:00
|
|
|
return memhash(x.str, h, uintptr(x.len))
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: Because NaN != NaN, a map can contain any
|
|
|
|
// number of (mostly useless) entries keyed with NaNs.
|
|
|
|
// To avoid long hash chains, we assign a random number
|
|
|
|
// as the hash value for a NaN.
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func f32hash(p unsafe.Pointer, h uintptr) uintptr {
|
2014-08-29 22:40:56 -06:00
|
|
|
f := *(*float32)(p)
|
2014-07-31 16:12:53 -06:00
|
|
|
switch {
|
|
|
|
case f == 0:
|
|
|
|
return c1 * (c0 ^ h) // +0, -0
|
|
|
|
case f != f:
|
2016-06-28 10:22:46 -06:00
|
|
|
return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
|
2014-07-31 16:12:53 -06:00
|
|
|
default:
|
2015-01-06 17:42:48 -07:00
|
|
|
return memhash(p, h, 4)
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func f64hash(p unsafe.Pointer, h uintptr) uintptr {
|
2014-08-29 22:40:56 -06:00
|
|
|
f := *(*float64)(p)
|
2014-07-31 16:12:53 -06:00
|
|
|
switch {
|
|
|
|
case f == 0:
|
|
|
|
return c1 * (c0 ^ h) // +0, -0
|
|
|
|
case f != f:
|
2016-06-28 10:22:46 -06:00
|
|
|
return c1 * (c0 ^ h ^ uintptr(fastrand())) // any kind of NaN
|
2014-07-31 16:12:53 -06:00
|
|
|
default:
|
2015-01-06 17:42:48 -07:00
|
|
|
return memhash(p, h, 8)
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func c64hash(p unsafe.Pointer, h uintptr) uintptr {
|
2014-08-29 22:40:56 -06:00
|
|
|
x := (*[2]float32)(p)
|
2015-01-06 17:42:48 -07:00
|
|
|
return f32hash(unsafe.Pointer(&x[1]), f32hash(unsafe.Pointer(&x[0]), h))
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func c128hash(p unsafe.Pointer, h uintptr) uintptr {
|
2014-08-29 22:40:56 -06:00
|
|
|
x := (*[2]float64)(p)
|
2015-01-06 17:42:48 -07:00
|
|
|
return f64hash(unsafe.Pointer(&x[1]), f64hash(unsafe.Pointer(&x[0]), h))
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func interhash(p unsafe.Pointer, h uintptr) uintptr {
|
2014-08-29 22:40:56 -06:00
|
|
|
a := (*iface)(p)
|
2014-08-06 14:42:00 -06:00
|
|
|
tab := a.tab
|
2014-08-06 14:22:52 -06:00
|
|
|
if tab == nil {
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
t := tab._type
|
2014-12-27 21:32:11 -07:00
|
|
|
fn := t.alg.hash
|
2014-08-29 22:40:56 -06:00
|
|
|
if fn == nil {
|
2016-04-07 14:29:16 -06:00
|
|
|
panic(errorString("hash of unhashable type " + t.string()))
|
2014-08-06 14:22:52 -06:00
|
|
|
}
|
2014-08-18 19:13:11 -06:00
|
|
|
if isDirectIface(t) {
|
2015-01-06 17:42:48 -07:00
|
|
|
return c1 * fn(unsafe.Pointer(&a.data), h^c0)
|
2014-08-06 14:22:52 -06:00
|
|
|
} else {
|
2015-01-06 17:42:48 -07:00
|
|
|
return c1 * fn(a.data, h^c0)
|
2014-08-06 14:22:52 -06:00
|
|
|
}
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func nilinterhash(p unsafe.Pointer, h uintptr) uintptr {
|
2014-08-29 22:40:56 -06:00
|
|
|
a := (*eface)(p)
|
2014-08-06 14:42:00 -06:00
|
|
|
t := a._type
|
2014-07-31 16:12:53 -06:00
|
|
|
if t == nil {
|
|
|
|
return h
|
|
|
|
}
|
2014-12-27 21:32:11 -07:00
|
|
|
fn := t.alg.hash
|
2014-08-29 22:40:56 -06:00
|
|
|
if fn == nil {
|
2016-04-07 14:29:16 -06:00
|
|
|
panic(errorString("hash of unhashable type " + t.string()))
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
2014-08-18 19:13:11 -06:00
|
|
|
if isDirectIface(t) {
|
2015-01-06 17:42:48 -07:00
|
|
|
return c1 * fn(unsafe.Pointer(&a.data), h^c0)
|
2014-07-31 16:12:53 -06:00
|
|
|
} else {
|
2015-01-06 17:42:48 -07:00
|
|
|
return c1 * fn(a.data, h^c0)
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-06 17:42:48 -07:00
|
|
|
func memequal0(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return true
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func memequal8(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*int8)(p) == *(*int8)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func memequal16(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*int16)(p) == *(*int16)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func memequal32(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*int32)(p) == *(*int32)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func memequal64(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*int64)(p) == *(*int64)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func memequal128(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*[2]int64)(p) == *(*[2]int64)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func f32equal(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*float32)(p) == *(*float32)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func f64equal(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*float64)(p) == *(*float64)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func c64equal(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*complex64)(p) == *(*complex64)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func c128equal(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*complex128)(p) == *(*complex128)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func strequal(p, q unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
return *(*string)(p) == *(*string)(q)
|
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func interequal(p, q unsafe.Pointer) bool {
|
2017-03-24 15:03:15 -06:00
|
|
|
x := *(*iface)(p)
|
|
|
|
y := *(*iface)(q)
|
|
|
|
return x.tab == y.tab && ifaceeq(x.tab, x.data, y.data)
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2015-01-06 17:42:48 -07:00
|
|
|
func nilinterequal(p, q unsafe.Pointer) bool {
|
2017-03-24 15:03:15 -06:00
|
|
|
x := *(*eface)(p)
|
|
|
|
y := *(*eface)(q)
|
|
|
|
return x._type == y._type && efaceeq(x._type, x.data, y.data)
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2017-03-24 15:03:15 -06:00
|
|
|
func efaceeq(t *_type, x, y unsafe.Pointer) bool {
|
2014-08-07 15:52:55 -06:00
|
|
|
if t == nil {
|
|
|
|
return true
|
|
|
|
}
|
2014-12-27 21:32:11 -07:00
|
|
|
eq := t.alg.equal
|
2014-08-29 22:40:56 -06:00
|
|
|
if eq == nil {
|
2016-04-07 14:29:16 -06:00
|
|
|
panic(errorString("comparing uncomparable type " + t.string()))
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2014-08-18 19:13:11 -06:00
|
|
|
if isDirectIface(t) {
|
2017-03-24 15:03:15 -06:00
|
|
|
return eq(noescape(unsafe.Pointer(&x)), noescape(unsafe.Pointer(&y)))
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2017-03-24 15:03:15 -06:00
|
|
|
return eq(x, y)
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2017-03-24 15:03:15 -06:00
|
|
|
func ifaceeq(tab *itab, x, y unsafe.Pointer) bool {
|
|
|
|
if tab == nil {
|
2014-08-07 15:52:55 -06:00
|
|
|
return true
|
|
|
|
}
|
2017-03-24 15:03:15 -06:00
|
|
|
t := tab._type
|
2014-12-27 21:32:11 -07:00
|
|
|
eq := t.alg.equal
|
2014-08-29 22:40:56 -06:00
|
|
|
if eq == nil {
|
2016-04-07 14:29:16 -06:00
|
|
|
panic(errorString("comparing uncomparable type " + t.string()))
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2014-08-18 19:13:11 -06:00
|
|
|
if isDirectIface(t) {
|
2017-03-24 15:03:15 -06:00
|
|
|
return eq(noescape(unsafe.Pointer(&x)), noescape(unsafe.Pointer(&y)))
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
2017-03-24 15:03:15 -06:00
|
|
|
return eq(x, y)
|
2014-08-07 15:52:55 -06:00
|
|
|
}
|
|
|
|
|
2014-07-31 16:12:53 -06:00
|
|
|
// Testing adapters for hash quality tests (see hash_test.go)
|
|
|
|
func stringHash(s string, seed uintptr) uintptr {
|
2015-01-06 17:42:48 -07:00
|
|
|
return algarray[alg_STRING].hash(noescape(unsafe.Pointer(&s)), seed)
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func bytesHash(b []byte, seed uintptr) uintptr {
|
2015-04-10 16:01:54 -06:00
|
|
|
s := (*slice)(unsafe.Pointer(&b))
|
2015-01-06 17:42:48 -07:00
|
|
|
return memhash(s.array, seed, uintptr(s.len))
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func int32Hash(i uint32, seed uintptr) uintptr {
|
2015-01-06 17:42:48 -07:00
|
|
|
return algarray[alg_MEM32].hash(noescape(unsafe.Pointer(&i)), seed)
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func int64Hash(i uint64, seed uintptr) uintptr {
|
2015-01-06 17:42:48 -07:00
|
|
|
return algarray[alg_MEM64].hash(noescape(unsafe.Pointer(&i)), seed)
|
2014-07-31 16:12:53 -06:00
|
|
|
}
|
2014-08-07 13:33:20 -06:00
|
|
|
|
|
|
|
func efaceHash(i interface{}, seed uintptr) uintptr {
|
2015-01-06 17:42:48 -07:00
|
|
|
return algarray[alg_NILINTER].hash(noescape(unsafe.Pointer(&i)), seed)
|
2014-08-07 13:33:20 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func ifaceHash(i interface {
|
|
|
|
F()
|
|
|
|
}, seed uintptr) uintptr {
|
2015-01-06 17:42:48 -07:00
|
|
|
return algarray[alg_INTER].hash(noescape(unsafe.Pointer(&i)), seed)
|
2014-08-07 13:33:20 -06:00
|
|
|
}
|
2014-08-20 15:02:11 -06:00
|
|
|
|
2015-11-11 10:39:30 -07:00
|
|
|
const hashRandomBytes = sys.PtrSize / 4 * 64
|
2014-08-29 22:40:56 -06:00
|
|
|
|
2015-01-06 10:06:44 -07:00
|
|
|
// used in asm_{386,amd64}.s to seed the hash function
|
2014-08-29 22:40:56 -06:00
|
|
|
var aeskeysched [hashRandomBytes]byte
|
|
|
|
|
2015-01-06 10:06:44 -07:00
|
|
|
// used in hash{32,64}.go to seed the hash function
|
|
|
|
var hashkey [4]uintptr
|
2014-08-29 22:40:56 -06:00
|
|
|
|
2016-08-04 11:09:29 -06:00
|
|
|
func alginit() {
|
2014-08-29 22:40:56 -06:00
|
|
|
// Install aes hash algorithm if we have the instructions we need
|
2015-01-06 10:06:44 -07:00
|
|
|
if (GOARCH == "386" || GOARCH == "amd64") &&
|
|
|
|
GOOS != "nacl" &&
|
2017-04-27 00:30:27 -06:00
|
|
|
support_aes && // AESENC
|
|
|
|
support_ssse3 && // PSHUFB
|
|
|
|
support_sse41 { // PINSR{D,Q}
|
2014-08-29 22:40:56 -06:00
|
|
|
useAeshash = true
|
|
|
|
algarray[alg_MEM32].hash = aeshash32
|
|
|
|
algarray[alg_MEM64].hash = aeshash64
|
|
|
|
algarray[alg_STRING].hash = aeshashstr
|
|
|
|
// Initialize with random data so hash collisions will be hard to engineer.
|
2014-12-09 15:40:40 -07:00
|
|
|
getRandomData(aeskeysched[:])
|
2015-01-06 10:06:44 -07:00
|
|
|
return
|
2014-08-29 22:40:56 -06:00
|
|
|
}
|
2015-11-11 10:39:30 -07:00
|
|
|
getRandomData((*[len(hashkey) * sys.PtrSize]byte)(unsafe.Pointer(&hashkey))[:])
|
2015-08-31 17:26:12 -06:00
|
|
|
hashkey[0] |= 1 // make sure these numbers are odd
|
|
|
|
hashkey[1] |= 1
|
|
|
|
hashkey[2] |= 1
|
|
|
|
hashkey[3] |= 1
|
2014-08-29 22:40:56 -06:00
|
|
|
}
|