-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathalloc.go
139 lines (136 loc) · 2.23 KB
/
alloc.go
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package main
import (
. "github.com/ktye/wg/module"
)
func minit(a, b int32) {
p := int32(1 << a)
for a < b {
SetI32(4*a, p)
SetI32(p, 0)
p *= 2
a++
}
SetI32(128, b)
}
func alloc(n, s int32) int32 {
size := n * s
t := bucket(size)
if int64(n)*int64(s) > 2147483647 /*|| t > 31*/ {
trap() //grow (oom)
}
i := 4 * t
m := 4 * I32(128)
for I32(i) == 0 {
if i >= m {
m = 4 * grow(i)
} else {
i += 4
}
}
a := I32(i)
SetI32(i, I32(a))
for j := i - 4; j >= 4*t; j -= 4 {
u := a + int32(1)<<(j>>2)
SetI32(u, I32(j))
SetI32(j, u)
}
if a&31 != 0 {
trap() //memory corruption
}
return a + vl
}
func grow(p int32) int32 {
n := 1 + (p >> 2) // required total mem (log2)
g := (1 << (n - 16)) - Memorysize() // grow by 64k blocks
if g > 0 {
if Memorygrow(g) < 0 {
trap() //grow
}
}
minit(I32(128), n)
return n
}
func mfree(x, bs int32) {
if x&31 != 0 {
trap() //memory corruption
}
t := 4 * bs
SetI32(x, I32(t))
SetI32(t, x)
}
func bucket(size int32) int32 { return maxi(b0, int32(32)-I32clz(bs+size)) }
func mk(t T, n int32) K {
if t < 17 {
trap() //type
}
/*
x := alloc(n, sz(t))
SetI32(x+12, 1) //rc
SetI32(x+4, n)
return ti(t, x+16)
*/
x := alloc(n, sz(t))
SetI32(x-4, 1) //rc
SetI32(x-12, n)
return ti(t, x)
}
func tp(x K) T { return T(uint64(x) >> 59) }
func nn(x K) int32 { return I32(int32(x) - 12) }
func ep(x K) int32 { return int32(x) + sz(tp(x))*nn(x) }
func sz(t T) int32 {
if t < 16 {
return 8
} else if t < 19 {
return 1
} else if t < 21 {
return 4
} else if t == Zt {
return 16
}
return 8
}
func rx(x K) K {
if tp(x) > 4 {
p := int32(x) - 4
SetI32(p, 1+I32(p))
}
return x
}
func dx(x K) {
t := tp(x)
if t < 5 {
return
}
p := int32(x) - vl
rc := I32(p + vl - 4)
SetI32(p+vl-4, rc-1)
if rc == 0 {
trap() //unref
}
if rc == 1 {
n := nn(x)
if t&15 > 6 {
if t == 14 || t == 24 || t == 25 {
n = 2 // nat | D | T
} else if t == 12 || t == 13 {
n = 3 // prj | lam
}
p := int32(x)
e := p + 8*n
for p < e {
dx(K(I64(p)))
p += 8
}
}
mfree(p, bucket(sz(t)*n))
}
}
func dxy(x, y K) { dx(x); dx(y) }
func rl(x K) { // ref list elements
e := ep(x)
p := int32(x)
for e > p {
e -= 8
rx(K(I64(e)))
}
}