2013-05-15 11:22:32 -06:00
|
|
|
// Copyright 2013 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_test
|
|
|
|
|
|
|
|
import (
|
2013-10-02 09:59:53 -06:00
|
|
|
"flag"
|
runtime: account for all sys memory in MemStats
Currently lots of sys allocations are not accounted in any of XxxSys,
including GC bitmap, spans table, GC roots blocks, GC finalizer blocks,
iface table, netpoll descriptors and more. Up to ~20% can unaccounted.
This change introduces 2 new stats: GCSys and OtherSys for GC metadata
and all other misc allocations, respectively.
Also ensures that all XxxSys indeed sum up to Sys. All sys memory allocation
functions require the stat for accounting, so that it's impossible to miss something.
Also fix updating of mcache_sys/inuse, they were not updated after deallocation.
test/bench/garbage/parser before:
Sys 670064344
HeapSys 610271232
StackSys 65536
MSpanSys 14204928
MCacheSys 16384
BuckHashSys 1439992
after:
Sys 670064344
HeapSys 610271232
StackSys 65536
MSpanSys 14188544
MCacheSys 16384
BuckHashSys 3194304
GCSys 39198688
OtherSys 3129656
Fixes #5799.
R=rsc, dave, alex.brainman
CC=golang-dev
https://golang.org/cl/12946043
2013-09-06 14:55:40 -06:00
|
|
|
. "runtime"
|
2013-05-15 11:22:32 -06:00
|
|
|
"testing"
|
2013-10-02 09:59:53 -06:00
|
|
|
"time"
|
2013-05-15 11:22:32 -06:00
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
runtime: account for all sys memory in MemStats
Currently lots of sys allocations are not accounted in any of XxxSys,
including GC bitmap, spans table, GC roots blocks, GC finalizer blocks,
iface table, netpoll descriptors and more. Up to ~20% can unaccounted.
This change introduces 2 new stats: GCSys and OtherSys for GC metadata
and all other misc allocations, respectively.
Also ensures that all XxxSys indeed sum up to Sys. All sys memory allocation
functions require the stat for accounting, so that it's impossible to miss something.
Also fix updating of mcache_sys/inuse, they were not updated after deallocation.
test/bench/garbage/parser before:
Sys 670064344
HeapSys 610271232
StackSys 65536
MSpanSys 14204928
MCacheSys 16384
BuckHashSys 1439992
after:
Sys 670064344
HeapSys 610271232
StackSys 65536
MSpanSys 14188544
MCacheSys 16384
BuckHashSys 3194304
GCSys 39198688
OtherSys 3129656
Fixes #5799.
R=rsc, dave, alex.brainman
CC=golang-dev
https://golang.org/cl/12946043
2013-09-06 14:55:40 -06:00
|
|
|
func TestMemStats(t *testing.T) {
|
|
|
|
// Test that MemStats has sane values.
|
|
|
|
st := new(MemStats)
|
|
|
|
ReadMemStats(st)
|
|
|
|
if st.HeapSys == 0 || st.StackSys == 0 || st.MSpanSys == 0 || st.MCacheSys == 0 ||
|
|
|
|
st.BuckHashSys == 0 || st.GCSys == 0 || st.OtherSys == 0 {
|
|
|
|
t.Fatalf("Zero sys value: %+v", *st)
|
|
|
|
}
|
|
|
|
if st.Sys != st.HeapSys+st.StackSys+st.MSpanSys+st.MCacheSys+
|
|
|
|
st.BuckHashSys+st.GCSys+st.OtherSys {
|
|
|
|
t.Fatalf("Bad sys value: %+v", *st)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-15 11:22:32 -06:00
|
|
|
var mallocSink uintptr
|
|
|
|
|
|
|
|
func BenchmarkMalloc8(b *testing.B) {
|
|
|
|
var x uintptr
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p := new(int64)
|
|
|
|
x ^= uintptr(unsafe.Pointer(p))
|
|
|
|
}
|
|
|
|
mallocSink = x
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMalloc16(b *testing.B) {
|
|
|
|
var x uintptr
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p := new([2]int64)
|
|
|
|
x ^= uintptr(unsafe.Pointer(p))
|
|
|
|
}
|
|
|
|
mallocSink = x
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMallocTypeInfo8(b *testing.B) {
|
|
|
|
var x uintptr
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p := new(struct {
|
|
|
|
p [8 / unsafe.Sizeof(uintptr(0))]*int
|
|
|
|
})
|
|
|
|
x ^= uintptr(unsafe.Pointer(p))
|
|
|
|
}
|
|
|
|
mallocSink = x
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMallocTypeInfo16(b *testing.B) {
|
|
|
|
var x uintptr
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p := new(struct {
|
|
|
|
p [16 / unsafe.Sizeof(uintptr(0))]*int
|
|
|
|
})
|
|
|
|
x ^= uintptr(unsafe.Pointer(p))
|
|
|
|
}
|
|
|
|
mallocSink = x
|
|
|
|
}
|
2013-10-02 09:59:53 -06:00
|
|
|
|
|
|
|
var n = flag.Int("n", 1000, "number of goroutines")
|
|
|
|
|
|
|
|
func BenchmarkGoroutineSelect(b *testing.B) {
|
|
|
|
quit := make(chan struct{})
|
|
|
|
read := func(ch chan struct{}) {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case _, ok := <-ch:
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case <-quit:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
benchHelper(b, *n, read)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkGoroutineBlocking(b *testing.B) {
|
|
|
|
read := func(ch chan struct{}) {
|
|
|
|
for {
|
|
|
|
if _, ok := <-ch; !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
benchHelper(b, *n, read)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkGoroutineForRange(b *testing.B) {
|
|
|
|
read := func(ch chan struct{}) {
|
|
|
|
for _ = range ch {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
benchHelper(b, *n, read)
|
|
|
|
}
|
|
|
|
|
|
|
|
func benchHelper(b *testing.B, n int, read func(chan struct{})) {
|
|
|
|
m := make([]chan struct{}, n)
|
|
|
|
for i := range m {
|
|
|
|
m[i] = make(chan struct{}, 1)
|
|
|
|
go read(m[i])
|
|
|
|
}
|
|
|
|
b.StopTimer()
|
|
|
|
b.ResetTimer()
|
|
|
|
GC()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
for _, ch := range m {
|
|
|
|
if ch != nil {
|
|
|
|
ch <- struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
b.StartTimer()
|
|
|
|
GC()
|
|
|
|
b.StopTimer()
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ch := range m {
|
|
|
|
close(ch)
|
|
|
|
}
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkGoroutineIdle(b *testing.B) {
|
|
|
|
quit := make(chan struct{})
|
|
|
|
fn := func() {
|
|
|
|
<-quit
|
|
|
|
}
|
|
|
|
for i := 0; i < *n; i++ {
|
|
|
|
go fn()
|
|
|
|
}
|
|
|
|
|
|
|
|
GC()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
GC()
|
|
|
|
}
|
|
|
|
|
|
|
|
b.StopTimer()
|
|
|
|
close(quit)
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
}
|