mirror of
https://github.com/golang/go
synced 2024-11-12 07:10:22 -07:00
da0a7d7b8f
use malloc by default. free stacks. R=r DELTA=424 (333 added, 29 deleted, 62 changed) OCL=21553 CL=21584
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
// $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.
|
|
|
|
// Repeated malloc test.
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag";
|
|
"malloc"
|
|
)
|
|
|
|
var chatty bool;
|
|
var chatty_flag = flag.Bool("v", false, &chatty, "chatty");
|
|
|
|
var oldsys uint64;
|
|
func bigger() {
|
|
if st := malloc.GetStats(); oldsys < st.sys {
|
|
oldsys = st.sys;
|
|
if chatty {
|
|
println(st.sys, " system bytes for ", st.alloc, " Go bytes");
|
|
}
|
|
if st.sys > 1e9 {
|
|
panicln("too big");
|
|
}
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
flag.Parse();
|
|
malloc.GetStats().alloc = 0; // ignore stacks
|
|
for i := 0; i < 1<<8; i++ {
|
|
for j := 1; j <= 1<<22; j<<=1 {
|
|
if i == 0 && chatty {
|
|
println("First alloc:", j);
|
|
}
|
|
b := malloc.Alloc(uint64(j));
|
|
during := malloc.GetStats().alloc;
|
|
malloc.Free(b);
|
|
if a := malloc.GetStats().alloc; a != 0 {
|
|
panicln("malloc wrong count", a, "after", j, "during", during);
|
|
}
|
|
bigger();
|
|
}
|
|
if i%(1<<10) == 0 && chatty {
|
|
println(i);
|
|
}
|
|
if i == 0 {
|
|
if chatty {
|
|
println("Primed", i);
|
|
}
|
|
// malloc.frozen = true;
|
|
}
|
|
}
|
|
}
|