summaryrefslogtreecommitdiff
path: root/test/mallocrep.go
blob: 2911b4a0517fdee1c81b4dd222dfc9b1b9b0dbdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// $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();
	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));
			malloc.Free(b);
			if a := malloc.GetStats().alloc; a != 0 {
				panicln("malloc wrong count", a);
			}
			bigger();
		}
		if i%(1<<10) == 0 && chatty {
			println(i);
		}
		if i == 0 {
			if chatty {
				println("Primed", i);
			}
		//	malloc.frozen = true;
		}
	}
}