2012-01-19 11:14:56 -07:00
|
|
|
// Copyright 2011 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.
|
|
|
|
|
2011-10-12 11:23:34 -06:00
|
|
|
package runtime_test
|
|
|
|
|
|
|
|
import (
|
2013-02-21 11:30:31 -07:00
|
|
|
"os"
|
2011-10-12 11:23:34 -06:00
|
|
|
"runtime"
|
2013-03-19 15:17:39 -06:00
|
|
|
"runtime/debug"
|
2011-10-12 11:23:34 -06:00
|
|
|
"testing"
|
2014-05-02 10:32:42 -06:00
|
|
|
"time"
|
2014-07-29 01:01:02 -06:00
|
|
|
"unsafe"
|
2011-10-12 11:23:34 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGcSys(t *testing.T) {
|
2013-02-21 11:30:31 -07:00
|
|
|
if os.Getenv("GOGC") == "off" {
|
2013-03-30 16:10:53 -06:00
|
|
|
t.Skip("skipping test; GOGC=off in environment")
|
2013-02-21 11:30:31 -07:00
|
|
|
}
|
2013-03-01 23:36:06 -07:00
|
|
|
data := struct{ Short bool }{testing.Short()}
|
|
|
|
got := executeTest(t, testGCSysSource, &data)
|
|
|
|
want := "OK\n"
|
|
|
|
if got != want {
|
|
|
|
t.Fatalf("expected %q, but got %q", want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const testGCSysSource = `
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
runtime.GOMAXPROCS(1)
|
2012-02-06 11:16:26 -07:00
|
|
|
memstats := new(runtime.MemStats)
|
2011-12-13 16:12:55 -07:00
|
|
|
runtime.GC()
|
2012-02-06 11:16:26 -07:00
|
|
|
runtime.ReadMemStats(memstats)
|
|
|
|
sys := memstats.Sys
|
2011-12-13 16:12:55 -07:00
|
|
|
|
2012-04-20 12:36:06 -06:00
|
|
|
runtime.MemProfileRate = 0 // disable profiler
|
|
|
|
|
2012-02-14 14:13:19 -07:00
|
|
|
itercount := 1000000
|
2013-03-01 23:36:06 -07:00
|
|
|
{{if .Short}}
|
|
|
|
itercount = 100000
|
|
|
|
{{end}}
|
2012-02-14 14:13:19 -07:00
|
|
|
for i := 0; i < itercount; i++ {
|
2011-10-12 11:23:34 -06:00
|
|
|
workthegc()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should only be using a few MB.
|
2012-05-21 22:07:13 -06:00
|
|
|
// We allocated 100 MB or (if not short) 1 GB.
|
2012-02-06 11:16:26 -07:00
|
|
|
runtime.ReadMemStats(memstats)
|
|
|
|
if sys > memstats.Sys {
|
2011-12-13 16:12:55 -07:00
|
|
|
sys = 0
|
|
|
|
} else {
|
2012-02-06 11:16:26 -07:00
|
|
|
sys = memstats.Sys - sys
|
2011-12-13 16:12:55 -07:00
|
|
|
}
|
2012-05-21 22:07:13 -06:00
|
|
|
if sys > 16<<20 {
|
2013-03-01 23:36:06 -07:00
|
|
|
fmt.Printf("using too much memory: %d bytes\n", sys)
|
|
|
|
return
|
2011-10-12 11:23:34 -06:00
|
|
|
}
|
2013-03-01 23:36:06 -07:00
|
|
|
fmt.Printf("OK\n")
|
2011-10-12 11:23:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func workthegc() []byte {
|
|
|
|
return make([]byte, 1029)
|
|
|
|
}
|
2013-03-01 23:36:06 -07:00
|
|
|
`
|
2012-09-12 10:08:27 -06:00
|
|
|
|
|
|
|
func TestGcDeepNesting(t *testing.T) {
|
|
|
|
type T [2][2][2][2][2][2][2][2][2][2]*int
|
|
|
|
a := new(T)
|
|
|
|
|
|
|
|
// Prevent the compiler from applying escape analysis.
|
|
|
|
// This makes sure new(T) is allocated on heap, not on the stack.
|
|
|
|
t.Logf("%p", a)
|
|
|
|
|
|
|
|
a[0][0][0][0][0][0][0][0][0][0] = new(int)
|
|
|
|
*a[0][0][0][0][0][0][0][0][0][0] = 13
|
|
|
|
runtime.GC()
|
|
|
|
if *a[0][0][0][0][0][0][0][0][0][0] != 13 {
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
2013-03-19 15:17:39 -06:00
|
|
|
|
|
|
|
func TestGcHashmapIndirection(t *testing.T) {
|
|
|
|
defer debug.SetGCPercent(debug.SetGCPercent(1))
|
|
|
|
runtime.GC()
|
|
|
|
type T struct {
|
|
|
|
a [256]int
|
|
|
|
}
|
|
|
|
m := make(map[T]T)
|
|
|
|
for i := 0; i < 2000; i++ {
|
|
|
|
var a T
|
|
|
|
a.a[0] = i
|
|
|
|
m[a] = T{}
|
|
|
|
}
|
|
|
|
}
|
2013-05-15 13:50:32 -06:00
|
|
|
|
|
|
|
func TestGcArraySlice(t *testing.T) {
|
|
|
|
type X struct {
|
|
|
|
buf [1]byte
|
|
|
|
nextbuf []byte
|
|
|
|
next *X
|
|
|
|
}
|
|
|
|
var head *X
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
p := &X{}
|
|
|
|
p.buf[0] = 42
|
|
|
|
p.next = head
|
|
|
|
if head != nil {
|
|
|
|
p.nextbuf = head.buf[:]
|
|
|
|
}
|
|
|
|
head = p
|
|
|
|
runtime.GC()
|
|
|
|
}
|
|
|
|
for p := head; p != nil; p = p.next {
|
|
|
|
if p.buf[0] != 42 {
|
|
|
|
t.Fatal("corrupted heap")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-28 09:17:47 -06:00
|
|
|
|
|
|
|
func TestGcRescan(t *testing.T) {
|
|
|
|
type X struct {
|
|
|
|
c chan error
|
|
|
|
nextx *X
|
|
|
|
}
|
|
|
|
type Y struct {
|
|
|
|
X
|
|
|
|
nexty *Y
|
|
|
|
p *int
|
|
|
|
}
|
|
|
|
var head *Y
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
p := &Y{}
|
|
|
|
p.c = make(chan error)
|
2013-08-15 09:51:04 -06:00
|
|
|
if head != nil {
|
|
|
|
p.nextx = &head.X
|
|
|
|
}
|
2013-05-28 09:17:47 -06:00
|
|
|
p.nexty = head
|
|
|
|
p.p = new(int)
|
|
|
|
*p.p = 42
|
|
|
|
head = p
|
|
|
|
runtime.GC()
|
|
|
|
}
|
|
|
|
for p := head; p != nil; p = p.nexty {
|
|
|
|
if *p.p != 42 {
|
|
|
|
t.Fatal("corrupted heap")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-02-26 16:52:58 -07:00
|
|
|
|
2014-05-02 10:32:42 -06:00
|
|
|
func TestGcLastTime(t *testing.T) {
|
|
|
|
ms := new(runtime.MemStats)
|
|
|
|
t0 := time.Now().UnixNano()
|
|
|
|
runtime.GC()
|
|
|
|
t1 := time.Now().UnixNano()
|
|
|
|
runtime.ReadMemStats(ms)
|
|
|
|
last := int64(ms.LastGC)
|
|
|
|
if t0 > last || last > t1 {
|
|
|
|
t.Fatalf("bad last GC time: got %v, want [%v, %v]", last, t0, t1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 01:01:02 -06:00
|
|
|
var hugeSink interface{}
|
|
|
|
|
|
|
|
func TestHugeGCInfo(t *testing.T) {
|
|
|
|
// The test ensures that compiler can chew these huge types even on weakest machines.
|
|
|
|
// The types are not allocated at runtime.
|
|
|
|
if hugeSink != nil {
|
|
|
|
// 400MB on 32 bots, 4TB on 64-bits.
|
|
|
|
const n = (400 << 20) + (unsafe.Sizeof(uintptr(0))-4)<<40
|
|
|
|
hugeSink = new([n]*byte)
|
|
|
|
hugeSink = new([n]uintptr)
|
|
|
|
hugeSink = new(struct {
|
|
|
|
x float64
|
|
|
|
y [n]*byte
|
|
|
|
z []string
|
|
|
|
})
|
|
|
|
hugeSink = new(struct {
|
|
|
|
x float64
|
|
|
|
y [n]uintptr
|
|
|
|
z []string
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-26 16:52:58 -07:00
|
|
|
func BenchmarkSetTypeNoPtr1(b *testing.B) {
|
|
|
|
type NoPtr1 struct {
|
|
|
|
p uintptr
|
|
|
|
}
|
|
|
|
var p *NoPtr1
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p = &NoPtr1{}
|
|
|
|
}
|
|
|
|
_ = p
|
|
|
|
}
|
|
|
|
func BenchmarkSetTypeNoPtr2(b *testing.B) {
|
|
|
|
type NoPtr2 struct {
|
|
|
|
p, q uintptr
|
|
|
|
}
|
|
|
|
var p *NoPtr2
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p = &NoPtr2{}
|
|
|
|
}
|
|
|
|
_ = p
|
|
|
|
}
|
|
|
|
func BenchmarkSetTypePtr1(b *testing.B) {
|
|
|
|
type Ptr1 struct {
|
|
|
|
p *byte
|
|
|
|
}
|
|
|
|
var p *Ptr1
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p = &Ptr1{}
|
|
|
|
}
|
|
|
|
_ = p
|
|
|
|
}
|
|
|
|
func BenchmarkSetTypePtr2(b *testing.B) {
|
|
|
|
type Ptr2 struct {
|
|
|
|
p, q *byte
|
|
|
|
}
|
|
|
|
var p *Ptr2
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
p = &Ptr2{}
|
|
|
|
}
|
|
|
|
_ = p
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkAllocation(b *testing.B) {
|
|
|
|
type T struct {
|
|
|
|
x, y *byte
|
|
|
|
}
|
|
|
|
ngo := runtime.GOMAXPROCS(0)
|
|
|
|
work := make(chan bool, b.N+ngo)
|
|
|
|
result := make(chan *T)
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
work <- true
|
|
|
|
}
|
|
|
|
for i := 0; i < ngo; i++ {
|
|
|
|
work <- false
|
|
|
|
}
|
|
|
|
for i := 0; i < ngo; i++ {
|
|
|
|
go func() {
|
|
|
|
var x *T
|
|
|
|
for <-work {
|
|
|
|
for i := 0; i < 1000; i++ {
|
|
|
|
x = &T{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result <- x
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
for i := 0; i < ngo; i++ {
|
|
|
|
<-result
|
|
|
|
}
|
|
|
|
}
|
2014-07-31 14:48:48 -06:00
|
|
|
|
|
|
|
func TestPrintGC(t *testing.T) {
|
|
|
|
if testing.Short() {
|
|
|
|
t.Skip("Skipping in short mode")
|
|
|
|
}
|
|
|
|
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(2))
|
|
|
|
done := make(chan bool)
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
runtime.GC()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
for i := 0; i < 1e4; i++ {
|
|
|
|
func() {
|
|
|
|
defer print("")
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
close(done)
|
|
|
|
}
|