| // $G $D/$F.go && $L $F.$A && ./$A.out |
| // Copyright 2009 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. |
| var chatty = flag.Bool("v", false, "chatty") |
| if st := runtime.MemStats; oldsys < st.Sys { |
| println(st.Sys, " system bytes for ", st.Alloc, " Go bytes") |
| runtime.GC() // clean up garbage from init |
| runtime.MemProfileRate = 0 // disable profiler |
| runtime.MemStats.Alloc = 0 // ignore stacks |
| for i := 0; i < 1<<7; i++ { |
| for j := 1; j <= 1<<22; j <<= 1 { |
| println("First alloc:", j) |
| if a := runtime.MemStats.Alloc; a != 0 { |
| println("no allocations but stats report", a, "bytes allocated") |
| b := runtime.Alloc(uintptr(j)) |
| during := runtime.MemStats.Alloc |
| if a := runtime.MemStats.Alloc; a != 0 { |
| println("allocated ", j, ": wrong stats: during=", during, " after=", a, " (want 0)") |
| if i%(1<<10) == 0 && *chatty { |