mirror of
https://github.com/golang/go
synced 2024-11-22 20:40:03 -07:00
c39bc22c14
Use the new SwissTable-based map in internal/runtime/maps as the basis for the runtime map when GOEXPERIMENT=swissmap. Integration is complete enough to pass all.bash. Notable missing features: * Race integration / concurrent write detection * Stack-allocated maps * Specialized "fast" map variants * Indirect key / elem For #54766. Cq-Include-Trybots: luci.golang.try:gotip-linux-ppc64_power10,gotip-linux-amd64-longtest-swissmap Change-Id: Ie97b656b6d8e05c0403311ae08fef9f51756a639 Reviewed-on: https://go-review.googlesource.com/c/go/+/594596 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
60 lines
1.1 KiB
Go
60 lines
1.1 KiB
Go
// run
|
|
|
|
//go:build !goexperiment.swissmap
|
|
|
|
// Copyright 2024 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 main
|
|
|
|
import (
|
|
"maps"
|
|
_ "unsafe"
|
|
)
|
|
|
|
func main() {
|
|
for i := 0; i < 100; i++ {
|
|
f()
|
|
}
|
|
}
|
|
|
|
const NB = 4
|
|
|
|
func f() {
|
|
// Make a map with NB buckets, at max capacity.
|
|
// 6.5 entries/bucket.
|
|
ne := NB * 13 / 2
|
|
m := map[int]int{}
|
|
for i := 0; i < ne; i++ {
|
|
m[i] = i
|
|
}
|
|
|
|
// delete/insert a lot, to hopefully get lots of overflow buckets
|
|
// and trigger a same-size grow.
|
|
ssg := false
|
|
for i := ne; i < ne+1000; i++ {
|
|
delete(m, i-ne)
|
|
m[i] = i
|
|
if sameSizeGrow(m) {
|
|
ssg = true
|
|
break
|
|
}
|
|
}
|
|
if !ssg {
|
|
return
|
|
}
|
|
|
|
// Insert 1 more entry, which would ordinarily trigger a growth.
|
|
// We can't grow while growing, so we instead go over our
|
|
// target capacity.
|
|
m[-1] = -1
|
|
|
|
// Cloning in this state will make a map with a destination bucket
|
|
// array twice the size of the source.
|
|
_ = maps.Clone(m)
|
|
}
|
|
|
|
//go:linkname sameSizeGrow runtime.sameSizeGrowForIssue69110Test
|
|
func sameSizeGrow(m map[int]int) bool
|