This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm.go
328 lines (310 loc) · 7.11 KB
/
vm.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
package goal
import "fmt"
func (ctx *Context) execute(ops []opcode) (int, error) {
for ip := 0; ip < len(ops); {
op := ops[ip]
//fmt.Printf("op: %s\n", op)
ip++
switch op {
case opConst:
ctx.push(ctx.constants[ops[ip]])
ip++
case opInt:
ctx.pushNoRC(NewI(int64(ops[ip])))
ip++
case opNil:
ctx.pushNoRC(V{})
case opGlobal:
x := ctx.globals[ops[ip]]
if x.kind == valNil {
return ip - 1, fmt.Errorf("undefined global: %s",
ctx.gNames[ops[ip]])
}
ctx.push(x)
ip++
case opGlobalLast:
x := ctx.globals[ops[ip]]
if x.kind == valNil {
return ip - 1, fmt.Errorf("undefined global: %s",
ctx.gNames[ops[ip]])
}
ctx.pushNoRC(x)
ip++
case opLocal:
x := ctx.stack[ctx.frameIdx-int32(ops[ip])]
if x.kind == valNil {
return ip - 1, fmt.Errorf("undefined local: %s",
ctx.lambdas[ctx.lambda].Names[int32(ops[ip])])
}
ctx.push(x)
ip++
case opLocalLast:
x := ctx.stack[ctx.frameIdx-int32(ops[ip])]
if x.kind == valNil {
return ip - 1, fmt.Errorf("undefined local: %s",
ctx.lambdas[ctx.lambda].Names[int32(ops[ip])])
}
ctx.pushNoRC(x)
ip++
case opAssignGlobal:
x := ctx.top()
x.IncrRC()
ctx.globals[ops[ip]] = x
ip++
case opAssignLocal:
x := ctx.top()
x.IncrRC()
ctx.stack[ctx.frameIdx-int32(ops[ip])] = x
ip++
case opListAssignGlobal:
x := ctx.top()
ids := ctx.gAssignLists[ops[ip]]
err := ctx.assignGlobals(ids, x)
if err != nil {
return ip - 1, err
}
ip++
case opListAssignLocal:
x := ctx.top()
ids := ctx.lambdas[ctx.lambda].AssignLists[ops[ip]]
err := ctx.assignLocals(ids, x)
if err != nil {
return ip - 1, err
}
ip++
case opVariadic:
ctx.pushNoRC(newVariadic(variadic(ops[ip])))
ip++
case opLambda:
ctx.pushNoRC(newLambda(lambda(ops[ip])))
ip++
case opApply:
x := ctx.pop()
r := x.applyN(ctx, 1)
if r.IsPanic() {
return ip - 1, newExecError(r)
}
ctx.replaceTop(r)
case opApplyV:
v := variadic(ops[ip])
r := v.apply(ctx)
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip) // currently unnecessary case (but could be in the future)
return ip - 1, newExecError(r)
}
ctx.replaceTop(r)
ip++
case opApplyGlobal:
x := ctx.globals[ops[ip]]
if x.kind == valNil {
return ip - 1, fmt.Errorf("undefined global: %s",
ctx.gNames[ops[ip]])
}
r := x.applyN(ctx, 1)
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip) // currently unnecessary case
return ip - 1, newExecError(r)
}
ctx.replaceTop(r)
ip++
case opDerive:
v := variadic(ops[ip])
ctx.stack[len(ctx.stack)-1] = NewV(&derivedVerb{Fun: v, Arg: ctx.top()})
ip++
case opApply2:
x := ctx.pop()
r := x.applyN(ctx, 2)
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip-1) // currently unnecessary case
return ip - 1, newExecError(r)
}
ctx.replaceTop(r)
case opApply2V:
v := variadic(ops[ip])
r := v.apply2(ctx)
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip)
return ip - 1, newExecError(r)
}
ctx.replaceTop(r)
ip++
case opApplyN:
x := ctx.pop()
r := x.applyN(ctx, int(ops[ip]))
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip) // currently unnecessary case
return ip - 1, newExecError(r)
}
ctx.replaceTop(r)
ip++
case opApplyNV:
v := variadic(ops[ip])
ip++
r := v.applyN(ctx, int(ops[ip]))
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip)
return ip - 2, newExecError(r)
}
ctx.replaceTop(r)
ip++
case opApplyNGlobal:
x := ctx.globals[ops[ip]]
if x.kind == valNil {
return ip - 1, fmt.Errorf("undefined global: %s",
ctx.gNames[ops[ip]])
}
ip++
r := x.applyN(ctx, int(ops[ip]))
if r.IsPanic() {
ctx.clearAssignOnPanic(ops, ip) // currently unnecessary case
return ip - 2, newExecError(r)
}
ctx.replaceTop(r)
ip++
case opDrop:
ctx.drop()
case opJump:
ip += int(ops[ip])
case opJumpFalse:
if ctx.top().IsFalse() {
ip += int(ops[ip])
} else {
ip++
}
case opJumpTrue:
if ctx.top().IsTrue() {
ip += int(ops[ip])
} else {
ip++
}
case opReturn:
return len(ops), nil
case opTry:
if ctx.top().IsError() {
return len(ops), nil
}
}
//fmt.Printf("stack: %v\n", ctx.stack)
}
return len(ops), nil
}
const maxCallDepth = 100000
func (ctx *Context) push(x V) {
x.IncrRC()
ctx.stack = append(ctx.stack, x)
}
func (ctx *Context) pushNoRC(x V) {
ctx.stack = append(ctx.stack, x)
}
func (ctx *Context) pushArgs(args []V) {
rcincrArgs(args)
ctx.stack = append(ctx.stack, args...)
}
func (ctx *Context) pop() V {
arg := ctx.stack[len(ctx.stack)-1]
if arg.kind == valBoxed {
arg.rcdecrRefCounter()
ctx.stack[len(ctx.stack)-1].bv = nil
}
ctx.stack = ctx.stack[:len(ctx.stack)-1]
return arg
}
func (ctx *Context) top() V {
return ctx.stack[len(ctx.stack)-1]
}
func (ctx *Context) replaceTop(x V) {
v := &ctx.stack[len(ctx.stack)-1]
if v.kind == valBoxed {
v.rcdecrRefCounter()
}
*v = x
x.IncrRC()
}
func (ctx *Context) peek() []V {
return ctx.stack[len(ctx.stack)-1:]
}
func (ctx *Context) peekN(n int) []V {
return ctx.stack[len(ctx.stack)-n:]
}
func (ctx *Context) drop() {
if v := &ctx.stack[len(ctx.stack)-1]; v.kind == valBoxed {
v.rcdecrRefCounter()
v.bv = nil
}
ctx.stack = ctx.stack[:len(ctx.stack)-1]
}
func (ctx *Context) dropN(n int) {
topN := ctx.stack[len(ctx.stack)-n:]
for i := range topN {
v := &topN[i]
if v.kind == valBoxed {
v.rcdecrRefCounter()
v.bv = nil
}
}
ctx.stack = ctx.stack[:len(ctx.stack)-n]
}
func (ctx *Context) dropNnoRC(n int) {
topN := ctx.stack[len(ctx.stack)-n:]
for i := range topN {
v := &topN[i]
if v.kind == valBoxed {
v.bv = nil
}
}
ctx.stack = ctx.stack[:len(ctx.stack)-n]
}
func (ctx *Context) assignGlobals(ids []int, x V) error {
switch xv := x.bv.(type) {
case Array:
if len(ids) > xv.Len() {
return fmt.Errorf("length mismatch in list assignment (%d > %d)", len(ids), xv.Len())
}
for i, id := range ids {
xi := xv.VAt(i)
xi.IncrRC()
ctx.globals[id] = xi
}
return nil
default:
return fmt.Errorf("non-array value in list assignment (%s)", x.Type())
}
}
func (ctx *Context) assignLocals(ids []int32, x V) error {
switch xv := x.bv.(type) {
case Array:
if len(ids) > xv.Len() {
return fmt.Errorf("length error in list assignment (%d > %d)", len(ids), xv.Len())
}
for i, id := range ids {
xi := xv.VAt(i)
xi.IncrRC()
ctx.stack[ctx.frameIdx-id] = xi
}
return nil
default:
return fmt.Errorf("non-array value in list assignment (%s)", x.Type())
}
}
func rcincrArgs(args []V) {
for _, v := range args {
v.IncrRC()
}
}
func (ctx *Context) clearAssignOnPanic(ops []opcode, ip int) {
// NOTE: it's not a perfect solution, because ideally we would want to
// preserve the old value, instead of clearing.
// With current optimizations, only simple global assignement patterns
// can get in-place modification. Local assignement doesn't need
// clearing, because on panic, local variables in panic's context are
// no longer accessible.
ip++
if ip >= len(ops) {
return
}
op := ops[ip]
ip++
if op == opAssignGlobal {
ctx.globals[ops[ip]] = V{}
}
}